diff --git a/.gitignore b/.gitignore index 84c048a..9785597 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -/build/ +build +.cache diff --git a/.gitmodules b/.gitmodules index 6104934..34c665a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,4 @@ -[submodule "lib/b64"] - path = lib/b64 - url = https://github.com/liamHowatt/b64.git -[submodule "lib/jsmn"] - path = lib/jsmn - url = https://github.com/zserge/jsmn.git [submodule "lvgl"] path = lvgl - url = https://github.com/lvgl/lvgl.git + url = https://github.com/FishOfTheNorthStar/lvgl_pr_patch_func.git + branch = pr_3_mouse_ex diff --git a/CMakeLists.txt b/CMakeLists.txt index a3e692c..fc16d22 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,38 +1,168 @@ -cmake_minimum_required(VERSION 3.28) +cmake_minimum_required(VERSION 3.25.1) +project(gltf_view LANGUAGES C CXX) -project(lvgl_workspace LANGUAGES C CXX) +# Set policy to allow to run the target_link_libraries cmd on targets that are +# build in another directory. Currently, the linking is not handled by +# env_support/cmake/os.cmake This means that if a driver is enabled and it +# requires linking an external library it needs to be handled in the top-level +# project. +cmake_policy(SET CMP0079 NEW) -set(CONFIG_LV_BUILD_EXAMPLES 1) -set(CONFIG_LV_BUILD_DEMOS 1) +include(FetchContent) -# LVGL -include(${CMAKE_CURRENT_LIST_DIR}/lvgl/CMakeLists.txt) -include_directories(${CMAKE_CURRENT_LIST_DIR}) +find_package(PkgConfig REQUIRED) +find_package(OpenGL REQUIRED) +find_package(glfw3 REQUIRED) +find_package(GLEW REQUIRED) -# find_package(Freetype REQUIRED) -# include_directories(${FREETYPE_INCLUDE_DIRS}) +FetchContent_Declare( + fastgltf + GIT_REPOSITORY https://github.com/spnda/fastgltf + GIT_TAG 4e2261350888bae7c35a1f39991f6233d57795f5 + GIT_SHALLOW TRUE) -add_executable(lvgl_workspace - main.c - mouse_cursor_icon.c - gltf_loader.c -) +set(FASTGLTF_ENABLE_DEPRECATED_EXT + ON + CACHE BOOL "" FORCE) -set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -Wall -Wextra -fsanitize=address -Wno-unused-parameter -Wunused-parameter -Wshadow") -set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -Wall -Wextra -fsanitize=address -Wno-unused-parameter") -set (CMAKE_LINKER_FLAGS "${CMAKE_LINKER_FLAGS} -fsanitize=address -Wno-unused-parameter") +FetchContent_MakeAvailable(fastgltf) -target_link_libraries(lvgl_workspace lvgl) -target_link_libraries(lvgl_workspace pthread) -target_link_libraries(lvgl_workspace m) -# target_link_libraries(lvgl_workspace lvgl_thorvg) -# target_link_libraries(lvgl_workspace lvgl_examples) -# target_link_libraries(lvgl_workspace lvgl_demos) +FetchContent_Declare( + webp + GIT_REPOSITORY https://github.com/webmproject/libwebp + GIT_TAG fa6f56496a442eed59b103250021e4b14ebf1427 + GIT_SHALLOW TRUE) -target_link_libraries(lvgl_workspace GL) -target_link_libraries(lvgl_workspace GLEW) -target_link_libraries(lvgl_workspace glfw) +FetchContent_MakeAvailable(webp) -# target_link_libraries(lvgl_workspace jpeg) -# target_link_libraries(lvgl_workspace png) -# target_link_libraries(lvgl_workspace ${FREETYPE_LIBRARIES}) +# Compiler settings +set(CMAKE_C_STANDARD 99) +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wpedantic -ggdb") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -pedantic -ggdb") +set(CONFIG_LV_BUILD_EXAMPLES + OFF + CACHE BOOL "disable lvgl examples" FORCE) +set(CONFIG_LV_BUILD_DEMOS + OFF + CACHE BOOL "disable lvgl demos" FORCE) +set(CONFIG_LV_USE_THORVG_INTERNAL + OFF + CACHE BOOL "disable thorvg internal" FORCE) + +add_subdirectory(lvgl) + +# Define common include directories +set(LVGL_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/lvgl ${CMAKE_SOURCE_DIR}/lvgl/src) +set(PROTO_INCLUDE_DIRS lib/lv_gltf/data/deps/) + +# Create library targets +add_library(lvgl_opengl_shader_cache + lib/lv_opengl_shader_cache/lv_opengl_shader_cache.cpp) +target_include_directories(lvgl_opengl_shader_cache + PRIVATE ${LVGL_INCLUDE_DIRS}) + +add_library( + lvgl_gltfdata + lib/lv_gltf/data/lv_gltf_override.cpp lib/lv_gltf/data/sup/utils.cpp + lib/lv_gltf/data/sup/injest.cpp lib/lv_gltf/data/sup/reports.cpp + lib/lv_gltf/data/sup/datatypes.cpp) + +target_include_directories(lvgl_gltfdata PRIVATE fastgltf ${LVGL_INCLUDE_DIRS} + ${PROTO_INCLUDE_DIRS}) +target_link_libraries(lvgl_gltfdata PRIVATE lvgl_opengl_shader_cache fastgltf) + +target_compile_definitions(lvgl_gltfdata PRIVATE LVGL_ENABLE_WEBP_IMAGES) + +add_library( + lvgl_gltfview + lib/lv_gltf/view/lv_gltf_view.cpp + lib/lv_gltf/view/sup/datatypes.cpp + lib/lv_gltf/view/sup/utils.cpp + lib/lv_gltf/view/sup/setup.cpp + lib/lv_gltf/view/sup/animation.cpp + lib/lv_gltf/view/sup/ibl_sampler.cpp + lib/lv_gltf/view/sup/shader_includes.cpp) + +target_include_directories(lvgl_gltfview PRIVATE ${LVGL_INCLUDE_DIRS} + ${PROTO_INCLUDE_DIRS}) +target_link_libraries(lvgl_gltfview PRIVATE lvgl_opengl_shader_cache fastgltf + webp) +target_link_libraries(lvgl_gltfview PRIVATE lvgl_gltfdata fastgltf) + +# Main executable +add_executable( + gltf_view + src/demo.cpp + src/demo_ui.c + src/demo_cli.c + src/demo_nav.c + src/demo_os_integrate.c + src/demo_file_load_dialog.c + src/demo_misc_utils.c + src/mouse_cursor_icon.c + src/lvgl_icon_40px_ARGB888.c + src/sprites1_32x32x7.c) + +add_executable(demo src/simple_demo.c) + +# Build type definitions +if(CMAKE_BUILD_TYPE STREQUAL "Release") + add_definitions(-DNDEBUG) +endif() + +if(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") + add_definitions(-DNDEBUG) +endif() + +# Optional: Enable AddressSanitizer for Debug builds (can be disabled if +# problematic) +option(ENABLE_ASAN "Enable AddressSanitizer in Debug builds" OFF) + +if(ENABLE_ASAN AND CMAKE_BUILD_TYPE STREQUAL "Debug") + target_compile_options(gltf_view PRIVATE -fsanitize=address) + target_link_options(gltf_view PRIVATE -fsanitize=address) +endif() + +# Additional optimization for MinSizeRel +if(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel") + target_link_options(gltf_view PRIVATE -Wl,--gc-sections) +endif() + +target_link_libraries( + gltf_view + PRIVATE lvgl + lvgl_gltfview + lvgl_gltfdata + m + OpenGL::GL + GLEW::GLEW + glfw + webp + fastgltf) + +target_link_libraries( + demo + PRIVATE lvgl + lvgl_gltfview + lvgl_gltfdata + m + OpenGL::GL + GLEW::GLEW + glfw + webp + fastgltf) + +target_include_directories( + gltf_view PRIVATE ./lib/lv_gltf ./lib/lv_gltf/data/deps lvgl lvgl/src) + +set_target_properties(gltf_view PROPERTIES COMPILE_DEFINITIONS + "${LVGL_COMPILER_DEFINES}") + +set_target_properties(demo PROPERTIES COMPILE_DEFINITIONS + "${LVGL_COMPILER_DEFINES}") + +target_include_directories(demo PRIVATE ./lib/lv_gltf ./lib/lv_gltf/data/deps + lvgl lvgl/src) diff --git a/README.md b/README.md index 8f732c9..e71af82 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,46 @@ -# `lv_example_3dtexture` +# `lv_gltf_viewer` -Example usage of the LVGL `3dtexture` widget. +A simple glTF file viewer, made using the LVGL `3dtexture` widget. -![example running screenclip](readme_image.png) +![example running screenclip one](media/readme/readme_image.png) Ensure [GLFW is installed](https://docs.lvgl.io/master/details/integration/driver/opengles.html) for this example. +## Getting Started + ```shell +git clone git submodule update --init -cmake -B build -S . -make -C build -j$(nproc) lvgl_workspace -./build/lvgl_workspace +cmake -B build +cmake --build build -j$(nproc) +./build/gltf_view -in ./gltfs/logo1.glb +``` + +--- + +The STB Image library is included temporarily, just copied from the latest build. Ultimately it should probably be added as a git submodule, but it seems like that will add a few other things that aren't necessary so I'd like to look into a more minimal install for that. + +--- + +To make this the default gltf / glb file viewer on your Raspberry Pi, you can do the following: + +(from the root directory of this project) +```bash +cp ./EXAMPLE_gltf-view.desktop ~/.local/share/applications/gltf-view.desktop +xdg-mime default gltf-view.desktop model/gltf-binary +xdg-mime default gltf-view.desktop model/gltf-json ``` -For demonstration purposes, there is a very simple -glTF loader implemented in `gltf_loader.c`. It can only -handle very simple glTFs with one mesh described by -a `float` triangle vertex array and a `uint16_t` index array. -Textured meshes are ignored. +Now when you double click a gltf file in your file-manager, it should open glTF-View. + +You can confirm the mime-types are setup correctly by viewing +``` +~/.config/mimeapps.list +``` + +--- +More Samples: + +![example running screenclip two](media/readme/screenshot_image1.png) + +![example running screenclip three](media/readme/screenshot_image2.png) diff --git a/assets/hdr/00_chromatic.h b/assets/hdr/00_chromatic.h new file mode 100644 index 0000000..a2cdc8e --- /dev/null +++ b/assets/hdr/00_chromatic.h @@ -0,0 +1,3283 @@ +unsigned char chromatic_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x4b, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x30, 0x36, + 0x3a, 0x31, 0x30, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x35, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, + 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, + 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, + 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, + 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, + 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, + 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xf2, 0xef, 0xca, 0x97, 0x8f, 0x4a, 0x66, 0xf5, 0x1c, 0x16, + 0x19, 0xa3, 0xcc, 0x4f, 0xef, 0x0a, 0x49, 0x33, 0x9d, 0xa6, 0x87, 0xf1, + 0xe8, 0x29, 0x38, 0xa6, 0xf9, 0xa9, 0xfd, 0xe1, 0x47, 0x9a, 0x9f, 0xde, + 0x14, 0xec, 0xc4, 0x3f, 0x8f, 0x4a, 0x38, 0xf4, 0xa6, 0x79, 0xa9, 0xfd, + 0xe1, 0x47, 0x9a, 0xbf, 0xde, 0x14, 0x59, 0x88, 0x76, 0x05, 0x18, 0xa6, + 0xf9, 0xab, 0xfd, 0xe1, 0x49, 0xe6, 0x2f, 0xa8, 0xa7, 0x66, 0x1a, 0x8f, + 0xfc, 0xa8, 0xe3, 0xd0, 0x53, 0x77, 0xaf, 0xa8, 0xa3, 0x78, 0xf5, 0xa5, + 0x60, 0x1f, 0xc7, 0xa5, 0x18, 0x1e, 0x94, 0xcd, 0xe3, 0xd6, 0x8d, 0xc3, + 0xd6, 0x8b, 0x00, 0xec, 0x0f, 0x4a, 0x38, 0xf4, 0xa6, 0xee, 0x14, 0x6e, + 0x14, 0x05, 0xc7, 0x71, 0xe9, 0x47, 0x1e, 0x94, 0xdd, 0xd4, 0x6e, 0xa0, + 0x2e, 0x3b, 0x8f, 0x4a, 0x38, 0xf4, 0x14, 0xdc, 0xd1, 0x9a, 0x04, 0x3b, + 0x8f, 0x6a, 0x38, 0xf4, 0x14, 0xdc, 0xd1, 0x9a, 0x43, 0xb8, 0xee, 0x28, + 0xe2, 0x9b, 0x9a, 0x28, 0x0b, 0x8e, 0xe3, 0xd2, 0x8e, 0x3d, 0x29, 0xb9, + 0xa2, 0x80, 0xb8, 0xee, 0x28, 0xe2, 0x9b, 0x45, 0x31, 0x5c, 0x77, 0x1e, + 0x94, 0x71, 0xe9, 0x4d, 0xa2, 0x80, 0xb8, 0xee, 0x3d, 0x28, 0xe3, 0xd2, + 0x92, 0x92, 0x80, 0xb8, 0xee, 0x28, 0xe3, 0xd2, 0x9b, 0x45, 0x01, 0x71, + 0xdc, 0x51, 0xc5, 0x36, 0x8a, 0x07, 0x71, 0xdc, 0x51, 0xc5, 0x36, 0x8a, + 0x42, 0xb8, 0xee, 0x3d, 0x28, 0xe3, 0xd2, 0x9b, 0x45, 0x3b, 0x05, 0xc5, + 0xe2, 0x8e, 0x29, 0x28, 0xa2, 0xc1, 0x71, 0x78, 0xa3, 0x8f, 0x4a, 0x4a, + 0x28, 0xb0, 0x5c, 0x5e, 0x3d, 0x28, 0xc8, 0xf4, 0x14, 0x94, 0x53, 0xb0, + 0x73, 0x0e, 0xe3, 0xd0, 0x52, 0x64, 0x7a, 0x0a, 0x4a, 0x28, 0xb0, 0xae, + 0x2e, 0x47, 0xa5, 0x1c, 0x7a, 0x52, 0x62, 0x8a, 0x2c, 0x17, 0x17, 0x8f, + 0x4a, 0x38, 0xf4, 0xa3, 0x14, 0x98, 0xa7, 0x61, 0x73, 0x0b, 0x91, 0xe9, + 0x47, 0x1e, 0x82, 0x93, 0x14, 0x51, 0x61, 0xf3, 0x31, 0x72, 0x3d, 0x28, + 0xc8, 0xf4, 0xa4, 0xa3, 0x14, 0x59, 0x0b, 0x99, 0x8b, 0x91, 0xe9, 0x46, + 0x47, 0xa5, 0x26, 0x28, 0xc5, 0x16, 0x41, 0xcc, 0xc5, 0xc8, 0xf4, 0xa3, + 0x23, 0xd0, 0x52, 0x62, 0x93, 0x14, 0x59, 0x07, 0x33, 0x17, 0x70, 0xf4, + 0xa3, 0x70, 0xf4, 0xa6, 0xe2, 0x92, 0x8b, 0x20, 0xbb, 0x1f, 0xbc, 0x7a, + 0x52, 0x6f, 0x1e, 0x95, 0x19, 0xcd, 0x34, 0x93, 0x4a, 0xc8, 0x77, 0x64, + 0xa6, 0x50, 0x3b, 0x55, 0xab, 0x5b, 0x67, 0xba, 0x19, 0x52, 0x07, 0xd6, + 0xb3, 0x19, 0x88, 0xa9, 0xf4, 0xe3, 0x33, 0xdd, 0x2a, 0xc4, 0xfb, 0x7d, + 0x6b, 0x1a, 0xcd, 0xc6, 0x0d, 0xc5, 0xd8, 0xd6, 0x95, 0x9c, 0xad, 0x24, + 0x6b, 0x7f, 0x63, 0x4d, 0xfd, 0xf4, 0xfc, 0xa8, 0xfe, 0xc6, 0x9f, 0xfb, + 0xe9, 0xf9, 0x56, 0xdc, 0x41, 0x82, 0x00, 0xc7, 0x26, 0xa4, 0xfc, 0x2b, + 0xc5, 0x78, 0xfa, 0xcb, 0xa9, 0xdf, 0xf5, 0x7a, 0x7d, 0x8c, 0x58, 0xf4, + 0x43, 0xfc, 0x72, 0xfe, 0x42, 0xa7, 0x5d, 0x16, 0x01, 0xd5, 0xdc, 0xd6, + 0x9f, 0x3e, 0x94, 0x6d, 0x35, 0x94, 0xb1, 0x95, 0x9f, 0xda, 0x29, 0x51, + 0x82, 0xe8, 0x50, 0x5d, 0x22, 0xd0, 0x75, 0x0c, 0x7f, 0x1a, 0x90, 0x69, + 0x96, 0x43, 0xfe, 0x59, 0x7e, 0x75, 0x6f, 0x06, 0x97, 0x15, 0x9b, 0xc4, + 0x55, 0x7f, 0x69, 0x96, 0xa9, 0xc5, 0x74, 0x2b, 0x0b, 0x0b, 0x21, 0xff, + 0x00, 0x2c, 0x45, 0x38, 0x59, 0x59, 0x8f, 0xf9, 0x60, 0xbf, 0x95, 0x4f, + 0xb6, 0x8c, 0x1a, 0x9f, 0x6d, 0x37, 0xf6, 0x9f, 0xde, 0x3e, 0x55, 0xd8, + 0x8b, 0xec, 0x76, 0x9f, 0xf3, 0xc1, 0x3f, 0x2a, 0x5f, 0xb2, 0xda, 0x8f, + 0xf9, 0x62, 0x9f, 0x95, 0x49, 0x83, 0x46, 0xd3, 0x4b, 0xda, 0x4f, 0xbb, + 0x1f, 0x2a, 0xec, 0x30, 0x5b, 0x5b, 0x7f, 0xcf, 0x14, 0xfc, 0xa9, 0x7e, + 0xcf, 0x6f, 0xff, 0x00, 0x3c, 0x53, 0xf2, 0xa7, 0x6d, 0xa5, 0xda, 0x69, + 0x73, 0xcb, 0xbb, 0x0b, 0x21, 0xbe, 0x44, 0x1f, 0xf3, 0xc9, 0x3f, 0x2a, + 0x5f, 0x26, 0x0f, 0xf9, 0xe4, 0x9f, 0x95, 0x2e, 0x0d, 0x18, 0x34, 0x73, + 0xcb, 0xb8, 0xec, 0x27, 0x93, 0x0f, 0xfc, 0xf3, 0x4f, 0xca, 0x97, 0xca, + 0x87, 0xfe, 0x79, 0xaf, 0xe5, 0x46, 0x3d, 0xe8, 0xa5, 0xcd, 0x2e, 0xe1, + 0xa0, 0x79, 0x51, 0x7f, 0xcf, 0x35, 0xfc, 0xa9, 0x7c, 0x98, 0xbf, 0xe7, + 0x9a, 0xfe, 0x54, 0x9c, 0xfa, 0xd2, 0xe4, 0xd1, 0xcd, 0x2e, 0xe1, 0xa0, + 0x79, 0x31, 0x7f, 0xcf, 0x35, 0xfc, 0xa8, 0xf2, 0x62, 0xff, 0x00, 0x9e, + 0x6b, 0xf9, 0x51, 0xcd, 0x2f, 0x34, 0xb9, 0xa5, 0xdc, 0x7a, 0x07, 0x95, + 0x17, 0xf7, 0x17, 0xf2, 0xa3, 0xc9, 0x8b, 0xfb, 0x8b, 0xf9, 0x51, 0x9a, + 0x33, 0x45, 0xe5, 0xdc, 0x34, 0x17, 0xca, 0x8f, 0xfb, 0x8b, 0xf9, 0x51, + 0xe5, 0x47, 0xfd, 0xc5, 0xfc, 0xa8, 0xcd, 0x19, 0xa5, 0x79, 0x77, 0x00, + 0xf2, 0xa3, 0xfe, 0xe2, 0xfe, 0x54, 0xbe, 0x54, 0x7f, 0xf3, 0xcd, 0x7f, + 0x2a, 0x33, 0x46, 0x68, 0xe6, 0x97, 0x70, 0xd0, 0x3c, 0xa8, 0xff, 0x00, + 0xb8, 0xbf, 0x95, 0x1e, 0x4c, 0x5f, 0xdc, 0x5f, 0xca, 0x97, 0x34, 0x66, + 0x97, 0x34, 0xbb, 0x8f, 0x40, 0xf2, 0xa2, 0xfe, 0xe2, 0xfe, 0x54, 0x79, + 0x31, 0x7f, 0x71, 0x7f, 0x2a, 0x5c, 0xd1, 0x45, 0xe5, 0xdc, 0x34, 0x13, + 0xc9, 0x8f, 0xfb, 0x8b, 0xf9, 0x51, 0xe4, 0xc7, 0xfd, 0xc5, 0xfc, 0xa9, + 0xc0, 0xd2, 0xe6, 0x8e, 0x69, 0x77, 0x0b, 0x21, 0x9e, 0x4c, 0x7f, 0xdc, + 0x5f, 0xca, 0x8f, 0x26, 0x3f, 0xee, 0x2f, 0xe5, 0x52, 0x51, 0x47, 0x34, + 0xbb, 0x85, 0x91, 0x1f, 0x93, 0x1f, 0xf7, 0x17, 0xf2, 0xa3, 0xc8, 0x8f, + 0xfe, 0x79, 0xaf, 0xe5, 0x52, 0x66, 0x96, 0x8e, 0x69, 0x05, 0x91, 0x1f, + 0x91, 0x1f, 0xf7, 0x17, 0xf2, 0xa3, 0xc8, 0x8f, 0xfb, 0x8b, 0xf9, 0x54, + 0x94, 0x51, 0xcd, 0x2e, 0xe1, 0x64, 0x47, 0xe4, 0x47, 0xfd, 0xc5, 0xfc, + 0xa8, 0xf2, 0x23, 0xff, 0x00, 0x9e, 0x6b, 0xf9, 0x54, 0x94, 0x51, 0xcc, + 0xfb, 0x85, 0x91, 0x1f, 0x91, 0x1f, 0xf7, 0x17, 0xf2, 0xa3, 0xc8, 0x8b, + 0xfb, 0x8b, 0xf9, 0x54, 0x94, 0x51, 0xcc, 0xfb, 0x85, 0x91, 0x1f, 0x91, + 0x1f, 0xf7, 0x17, 0xf2, 0xa4, 0xf2, 0x62, 0xff, 0x00, 0x9e, 0x6b, 0xf9, + 0x54, 0xb4, 0x51, 0xcc, 0xfb, 0x85, 0x91, 0x17, 0x91, 0x17, 0xfc, 0xf3, + 0x5f, 0xca, 0x8f, 0x22, 0x2f, 0xf9, 0xe6, 0xbf, 0x95, 0x4b, 0x45, 0x1c, + 0xcc, 0x2c, 0x88, 0xbe, 0xcf, 0x17, 0xfc, 0xf3, 0x5f, 0xca, 0x93, 0xec, + 0xf1, 0x7f, 0xcf, 0x35, 0xfc, 0xaa, 0x5e, 0x28, 0xa3, 0x99, 0xf7, 0x0b, + 0x22, 0x3f, 0xb3, 0xc3, 0xff, 0x00, 0x3c, 0xd3, 0xf2, 0xa4, 0xfb, 0x34, + 0x3f, 0xf3, 0xc9, 0x7f, 0x2a, 0x96, 0x92, 0x8e, 0x69, 0x77, 0x0b, 0x22, + 0x3f, 0xb3, 0x43, 0xff, 0x00, 0x3c, 0x97, 0xf2, 0xa3, 0xec, 0xb0, 0x7f, + 0xcf, 0x24, 0xfc, 0xaa, 0x5a, 0x4a, 0x39, 0xe5, 0xdc, 0x2c, 0x88, 0xbe, + 0xcb, 0x07, 0xfc, 0xf1, 0x4f, 0xca, 0x93, 0xec, 0x96, 0xff, 0x00, 0xf3, + 0xc5, 0x3f, 0xef, 0x9a, 0x9a, 0x8a, 0x7c, 0xf2, 0xee, 0x1c, 0xa8, 0x83, + 0xec, 0x76, 0xdf, 0xf3, 0xc6, 0x3f, 0xfb, 0xe6, 0x8f, 0xb1, 0x5b, 0x7f, + 0xcf, 0x08, 0xff, 0x00, 0xef, 0x9a, 0xb0, 0x05, 0x14, 0xfd, 0xac, 0xfb, + 0x8b, 0x95, 0x76, 0x2b, 0x7d, 0x82, 0xd4, 0xff, 0x00, 0xcb, 0x08, 0xff, + 0x00, 0x2a, 0x6f, 0xf6, 0x75, 0xa1, 0xff, 0x00, 0x96, 0x09, 0xf9, 0x55, + 0xac, 0x51, 0x4d, 0x55, 0xa9, 0xfc, 0xcc, 0x39, 0x23, 0xd8, 0xa6, 0x74, + 0xab, 0x23, 0xff, 0x00, 0x2c, 0x56, 0x98, 0xda, 0x35, 0x91, 0xff, 0x00, + 0x96, 0x78, 0xab, 0xf9, 0xa3, 0x23, 0xd6, 0x9a, 0xaf, 0x59, 0x7d, 0xa6, + 0x2f, 0x67, 0x1e, 0xc6, 0x5b, 0x68, 0x56, 0xa7, 0xa6, 0x45, 0x41, 0x27, + 0x87, 0xd3, 0x1f, 0x24, 0x9f, 0x98, 0xad, 0xac, 0x8f, 0x51, 0x49, 0xbd, + 0x7d, 0x45, 0x6a, 0xb1, 0x75, 0xd6, 0xd2, 0x25, 0xd0, 0x83, 0xe8, 0x72, + 0xf7, 0x1a, 0x4c, 0xf0, 0x73, 0xb4, 0x30, 0xf6, 0xaa, 0x05, 0x70, 0x70, + 0x46, 0x0d, 0x76, 0xc5, 0xd0, 0x8c, 0x1c, 0x1a, 0xc5, 0xd5, 0x2c, 0x51, + 0xd4, 0xc9, 0x16, 0x01, 0x1d, 0x85, 0x77, 0xe1, 0xb1, 0xf2, 0x93, 0xe5, + 0xa8, 0x73, 0xd5, 0xc2, 0xd9, 0x5e, 0x26, 0x4e, 0xa9, 0xa6, 0x6f, 0x53, + 0x34, 0x23, 0x0c, 0x3a, 0x81, 0xde, 0xb0, 0x83, 0x10, 0x70, 0x7a, 0xd7, + 0x6d, 0xd5, 0x79, 0x15, 0xcd, 0xeb, 0x36, 0x42, 0x09, 0x44, 0xc8, 0x3e, + 0x56, 0xeb, 0xec, 0x6b, 0xa7, 0x01, 0x8b, 0x6d, 0xfb, 0x29, 0xfc, 0x8e, + 0xcc, 0x66, 0x1d, 0x35, 0xcf, 0x13, 0x3f, 0x34, 0xb4, 0xd5, 0xe9, 0x4e, + 0xaf, 0x64, 0xf2, 0x45, 0xa2, 0x8a, 0x28, 0x10, 0x51, 0x45, 0x2d, 0x00, + 0x27, 0x34, 0x73, 0xeb, 0x4b, 0x45, 0x00, 0x19, 0x3e, 0xb4, 0x6e, 0x6f, + 0x53, 0x45, 0x14, 0x08, 0x5d, 0xcd, 0xea, 0x68, 0xde, 0xde, 0xa6, 0x92, + 0x8a, 0x2c, 0x80, 0x77, 0x98, 0xde, 0xb4, 0xbe, 0x6b, 0x7a, 0xd3, 0x28, + 0xa3, 0x95, 0x05, 0x91, 0x2f, 0x9c, 0xde, 0xb4, 0xa2, 0x76, 0xa8, 0x68, + 0xa5, 0xc8, 0x82, 0xc8, 0xb0, 0x27, 0xf6, 0xa5, 0x13, 0x0a, 0xad, 0x9a, + 0x33, 0x4b, 0xd9, 0xa1, 0x72, 0xa2, 0xd8, 0x95, 0x7d, 0x69, 0xe1, 0xc1, + 0xef, 0x54, 0x73, 0x46, 0xe3, 0x53, 0xec, 0x90, 0xb9, 0x0b, 0xf9, 0xa2, + 0xa9, 0x09, 0x18, 0x77, 0xa7, 0x8b, 0x86, 0x1d, 0x6a, 0x5d, 0x36, 0x4f, + 0x2b, 0x2d, 0xd1, 0x50, 0xad, 0xc2, 0x9e, 0xbc, 0x54, 0xa1, 0x81, 0xe8, + 0x6a, 0x5c, 0x5a, 0x13, 0x4d, 0x0b, 0x45, 0x14, 0x52, 0x10, 0x51, 0x45, + 0x14, 0x58, 0x2e, 0x14, 0xb4, 0x94, 0x51, 0x60, 0xb8, 0x52, 0xd2, 0x52, + 0xd1, 0x60, 0x0a, 0x28, 0xa2, 0x8b, 0x00, 0x51, 0x45, 0x14, 0xec, 0x20, + 0xa2, 0x8a, 0x5a, 0x00, 0x4a, 0x28, 0xa2, 0x80, 0x0a, 0x28, 0xa5, 0xa0, + 0x02, 0x8a, 0x28, 0xa6, 0x02, 0x62, 0x97, 0x14, 0x52, 0xd2, 0x01, 0x28, + 0xc5, 0x2d, 0x14, 0x00, 0x98, 0xa3, 0x14, 0xec, 0x51, 0x40, 0x58, 0x6e, + 0x28, 0xc5, 0x3b, 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x2e, + 0xda, 0x00, 0x65, 0x18, 0xa7, 0x84, 0x34, 0xf1, 0x0b, 0xb7, 0x45, 0x27, + 0xf0, 0xa0, 0x64, 0x18, 0xa3, 0x6d, 0x5e, 0x8f, 0x4e, 0xb9, 0x94, 0xe1, + 0x20, 0x91, 0xbe, 0x8b, 0x57, 0x22, 0xf0, 0xd6, 0xab, 0x2f, 0xdd, 0xb1, + 0x98, 0xff, 0x00, 0xc0, 0x4d, 0x01, 0x66, 0x61, 0x95, 0xa6, 0x98, 0xeb, + 0xab, 0x8b, 0xc1, 0x3a, 0xd4, 0x9d, 0x2c, 0xd8, 0x7d, 0x4e, 0x2a, 0xe4, + 0x5f, 0x0f, 0x35, 0x99, 0x3e, 0xf4, 0x68, 0x9f, 0x56, 0xa2, 0xc3, 0xe5, + 0x67, 0x04, 0xe8, 0x45, 0x4b, 0xa7, 0xdb, 0x5d, 0x4b, 0x70, 0x1e, 0xde, + 0x32, 0xdb, 0x4f, 0x38, 0xaf, 0x42, 0x5f, 0x86, 0x3a, 0x83, 0x8f, 0x9a, + 0x68, 0x45, 0x6c, 0x69, 0x7e, 0x01, 0xb8, 0xd3, 0xe1, 0x31, 0xf9, 0xb1, + 0x12, 0x4e, 0x49, 0xe6, 0xb0, 0xaf, 0x19, 0xb8, 0x5a, 0x0a, 0xec, 0xde, + 0x8c, 0x6d, 0x2b, 0xcb, 0x43, 0x9d, 0x82, 0x26, 0x68, 0x94, 0xba, 0xe1, + 0xb1, 0xc8, 0xa9, 0x3c, 0x93, 0xe9, 0x5d, 0x8a, 0xf8, 0x4a, 0x4e, 0xf2, + 0xa5, 0x48, 0x3c, 0x25, 0xeb, 0x30, 0xfc, 0xab, 0xc7, 0xfe, 0xce, 0xac, + 0xfa, 0x1d, 0xfe, 0xda, 0x07, 0x17, 0xe4, 0x9a, 0x5f, 0x24, 0xd7, 0x6c, + 0x3c, 0x27, 0x1f, 0x79, 0x8f, 0xe5, 0x52, 0x2f, 0x85, 0x60, 0x1d, 0x64, + 0x63, 0xf8, 0x52, 0xfe, 0xcc, 0xac, 0x1e, 0xde, 0x07, 0x0b, 0xe5, 0x1f, + 0x4a, 0x3c, 0xa3, 0xe9, 0x5d, 0xdf, 0xfc, 0x22, 0xd6, 0xdf, 0xdf, 0x6a, + 0x4f, 0xf8, 0x45, 0xad, 0xff, 0x00, 0xbe, 0xdf, 0x95, 0x1f, 0xd9, 0x95, + 0x83, 0xdb, 0xc0, 0xe1, 0x7c, 0xa3, 0x47, 0x95, 0xed, 0x5d, 0xc9, 0xf0, + 0xb4, 0x1d, 0xa5, 0x6f, 0xca, 0x98, 0x7c, 0x2b, 0x17, 0x69, 0x4f, 0xe5, + 0x4b, 0xfb, 0x36, 0xb0, 0xfd, 0xb4, 0x0e, 0x24, 0xc6, 0x7d, 0x29, 0x3c, + 0xb3, 0x5d, 0xa3, 0x78, 0x55, 0x7b, 0x4b, 0xfa, 0x54, 0x6d, 0xe1, 0x56, + 0xed, 0x22, 0xd4, 0xbc, 0xbe, 0xb2, 0xe8, 0x1e, 0xda, 0x07, 0x1f, 0xe5, + 0xfb, 0x51, 0xe5, 0xd7, 0x56, 0xde, 0x17, 0x98, 0x74, 0x65, 0x35, 0x0b, + 0x78, 0x6a, 0xe4, 0x74, 0x50, 0x7f, 0x1a, 0xcd, 0xe0, 0x6b, 0xaf, 0xb2, + 0x57, 0xb5, 0x87, 0x73, 0x9a, 0xd9, 0x4d, 0xd9, 0x5d, 0x03, 0xe8, 0x17, + 0x4b, 0xff, 0x00, 0x2c, 0xc9, 0xa8, 0x1f, 0x48, 0xb8, 0x5e, 0xb0, 0xb7, + 0xe5, 0x50, 0xf0, 0xd5, 0x56, 0xe8, 0x7c, 0xf1, 0xee, 0x63, 0x6d, 0xa3, + 0x6d, 0x69, 0x35, 0x84, 0xab, 0xd5, 0x08, 0xfc, 0x2a, 0x26, 0xb5, 0x61, + 0xda, 0xa3, 0xd9, 0x49, 0x6e, 0x3b, 0xa2, 0x8e, 0xda, 0x36, 0xd5, 0xa3, + 0x01, 0x1d, 0xa9, 0xa6, 0x23, 0xe9, 0x47, 0x20, 0x15, 0xf1, 0x46, 0x2a, + 0x63, 0x19, 0xa6, 0x94, 0x34, 0xf9, 0x00, 0x8b, 0x14, 0x53, 0xca, 0xd2, + 0x62, 0x8e, 0x50, 0x1b, 0x4b, 0x46, 0x28, 0xa3, 0x95, 0x00, 0x51, 0x45, + 0x15, 0x36, 0x40, 0x2d, 0x14, 0x94, 0xb5, 0x2d, 0x0c, 0x29, 0x69, 0x28, + 0xa5, 0x60, 0x1d, 0x45, 0x25, 0x2d, 0x03, 0x16, 0x94, 0x52, 0x51, 0x45, + 0x80, 0x5a, 0x5a, 0x4a, 0x28, 0xb0, 0x0b, 0x46, 0x68, 0xa2, 0x93, 0x18, + 0x51, 0x46, 0x68, 0xcd, 0x2b, 0x00, 0xb4, 0x94, 0x66, 0x97, 0x34, 0x00, + 0x94, 0xb4, 0x53, 0x59, 0x95, 0x79, 0x27, 0x14, 0x80, 0x75, 0x26, 0x6a, + 0x07, 0xba, 0x8d, 0x7a, 0x64, 0xd4, 0x0d, 0x78, 0xc7, 0xee, 0x80, 0x2a, + 0xd4, 0x1b, 0x2d, 0x53, 0x93, 0x2e, 0xd2, 0x16, 0x03, 0xa9, 0x15, 0x9c, + 0xd3, 0xc8, 0xdf, 0xc4, 0x6a, 0x32, 0xcc, 0x7a, 0x93, 0x57, 0xec, 0xfb, + 0xb3, 0x45, 0x41, 0xf5, 0x66, 0x99, 0x9a, 0x31, 0xd5, 0x85, 0x30, 0xdc, + 0xc6, 0x3b, 0xe6, 0xb3, 0xb9, 0xa5, 0xa7, 0xec, 0xd1, 0x6a, 0x82, 0x2f, + 0x1b, 0xb4, 0xf4, 0x34, 0xc3, 0x7a, 0x3b, 0x2f, 0xeb, 0x55, 0x28, 0xa7, + 0xc9, 0x12, 0xbd, 0x8c, 0x0b, 0x5f, 0x6d, 0x6e, 0xca, 0x29, 0x0d, 0xe3, + 0xfb, 0x55, 0x5a, 0x4c, 0xd3, 0xe5, 0x5d, 0x87, 0xec, 0xe3, 0xd8, 0xb0, + 0x6e, 0xa4, 0x3f, 0xc5, 0x49, 0xf6, 0x97, 0x3f, 0xc5, 0x50, 0x51, 0x4e, + 0xc8, 0x7c, 0xb1, 0xec, 0x4a, 0x66, 0x73, 0xfc, 0x47, 0xf3, 0xa4, 0xf3, + 0x5b, 0xfb, 0xc7, 0xf3, 0xa8, 0xa8, 0xa6, 0x3b, 0x22, 0x5f, 0x35, 0xbd, + 0x4d, 0x27, 0x98, 0x4f, 0x7a, 0x8f, 0x34, 0x01, 0x40, 0x0f, 0xde, 0x7d, + 0x68, 0xdf, 0x4d, 0xa2, 0x81, 0x8b, 0xb8, 0xd2, 0x13, 0x95, 0x34, 0x94, + 0x1e, 0x86, 0x81, 0x08, 0x3a, 0x0a, 0x82, 0xf2, 0xdc, 0x5c, 0xdb, 0xbc, + 0x67, 0xb8, 0xe2, 0xac, 0x8e, 0x82, 0x8c, 0x55, 0x46, 0x4e, 0x2e, 0xe8, + 0x4d, 0x5d, 0x59, 0x9c, 0x51, 0x46, 0x8d, 0xd9, 0x1b, 0xaa, 0x9c, 0x52, + 0xd6, 0x86, 0xb1, 0x00, 0x8a, 0xec, 0x38, 0xe8, 0xe3, 0x35, 0x9f, 0x5f, + 0x55, 0x42, 0xa7, 0xb4, 0xa6, 0xa7, 0xdc, 0xf9, 0xfa, 0xf4, 0xfd, 0x9d, + 0x47, 0x10, 0xa2, 0x8a, 0x2b, 0x63, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, + 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, + 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x15, 0xc2, + 0x8a, 0x28, 0xc5, 0x3b, 0x05, 0xc4, 0xa2, 0x97, 0x14, 0x62, 0x8b, 0x05, + 0xc2, 0x94, 0x31, 0x07, 0x82, 0x68, 0x02, 0x8c, 0x51, 0x61, 0x5c, 0x99, + 0x2e, 0x08, 0xe1, 0xb9, 0xab, 0x0a, 0xc1, 0x86, 0x41, 0xaa, 0x58, 0xa7, + 0xa1, 0x2a, 0x78, 0xa8, 0x74, 0xd3, 0xd8, 0x86, 0xbb, 0x17, 0x28, 0xa5, + 0x8c, 0x17, 0x5c, 0x8a, 0x90, 0x42, 0xc7, 0xa2, 0x93, 0xf8, 0x56, 0x76, + 0x33, 0xd4, 0x8a, 0x8a, 0xb2, 0x2d, 0x25, 0x3d, 0x23, 0x6f, 0xca, 0x9e, + 0x34, 0xf9, 0xcf, 0x48, 0x9b, 0xf2, 0xa5, 0xa0, 0xf9, 0x64, 0xfa, 0x14, + 0xe9, 0x6a, 0xf0, 0xd2, 0xee, 0x4f, 0xfc, 0xb2, 0x34, 0xef, 0xec, 0xab, + 0x9f, 0xf9, 0xe6, 0x68, 0xba, 0x1f, 0x24, 0xfb, 0x19, 0xf8, 0xa5, 0xc5, + 0x5f, 0xfe, 0xcc, 0xb8, 0x1d, 0x63, 0x34, 0x7f, 0x67, 0x4e, 0x3f, 0xe5, + 0x9b, 0x7e, 0x54, 0x68, 0x1c, 0xb2, 0xec, 0x50, 0xc5, 0x18, 0xab, 0xdf, + 0xd9, 0xf3, 0xff, 0x00, 0xcf, 0x36, 0xfc, 0xa9, 0x0d, 0x8c, 0xc3, 0xfe, + 0x59, 0xb7, 0xe5, 0x46, 0x82, 0xe5, 0x97, 0x62, 0x96, 0x28, 0xc5, 0x5b, + 0x36, 0x72, 0x8f, 0xe0, 0x6f, 0xca, 0x9a, 0x6d, 0x9c, 0x7f, 0x09, 0xfc, + 0xa9, 0xe8, 0x1a, 0x95, 0xb1, 0x46, 0x2a, 0xc7, 0x90, 0xde, 0x94, 0x9e, + 0x51, 0xf4, 0xa2, 0xc2, 0xd4, 0x87, 0x14, 0x62, 0xa5, 0xf2, 0x8f, 0xa5, + 0x1e, 0x59, 0xf4, 0xa2, 0xc1, 0x72, 0x2c, 0x51, 0x8a, 0x97, 0xcb, 0xa3, + 0x65, 0x2b, 0x0e, 0xe4, 0x78, 0xa3, 0x15, 0x26, 0xc3, 0x46, 0xca, 0x2c, + 0x17, 0x19, 0x8a, 0x31, 0x52, 0xac, 0x2e, 0xe7, 0x0a, 0xa4, 0x9f, 0x61, + 0x5a, 0x76, 0x7e, 0x1a, 0xd5, 0x6f, 0x88, 0xf2, 0x6c, 0xe4, 0x20, 0xf7, + 0x23, 0x14, 0xac, 0x52, 0x57, 0x32, 0x31, 0x4a, 0x16, 0xbb, 0xab, 0x1f, + 0x86, 0x9a, 0x84, 0xd8, 0x37, 0x33, 0x24, 0x23, 0xd0, 0x72, 0x6b, 0xa5, + 0xb1, 0xf8, 0x6f, 0xa5, 0xdb, 0xe0, 0xdc, 0x33, 0xcc, 0xde, 0xe7, 0x02, + 0x82, 0xd4, 0x19, 0xe4, 0xb1, 0x5b, 0x4b, 0x29, 0xc2, 0x23, 0x31, 0xf6, + 0x15, 0xaf, 0x67, 0xe1, 0x3d, 0x5e, 0xf0, 0x8f, 0x2e, 0xd1, 0xc0, 0x3d, + 0xd8, 0x60, 0x57, 0xb4, 0x59, 0xe8, 0x5a, 0x7d, 0x8a, 0x81, 0x6f, 0x6b, + 0x1a, 0xe3, 0xbe, 0xde, 0x6b, 0x41, 0x62, 0x03, 0xa0, 0x02, 0x82, 0xd5, + 0x3e, 0xe7, 0x93, 0x5a, 0x7c, 0x34, 0xbf, 0x93, 0x06, 0x79, 0xa3, 0x8c, + 0x7a, 0x0e, 0x6b, 0x6e, 0xdb, 0xe1, 0x95, 0x9a, 0x60, 0xcf, 0x71, 0x23, + 0x9f, 0x41, 0xc5, 0x7a, 0x00, 0x4a, 0x70, 0x4a, 0x0a, 0xe4, 0x47, 0x2b, + 0x6d, 0xe0, 0x4d, 0x16, 0x0c, 0x1f, 0xb3, 0xef, 0x3f, 0xed, 0x1c, 0xd6, + 0xa4, 0x1e, 0x1f, 0xd3, 0x20, 0x03, 0xcb, 0xb2, 0x88, 0x63, 0xfd, 0x9a, + 0xd8, 0x09, 0x4b, 0xb2, 0x81, 0xd9, 0x14, 0x96, 0xce, 0x08, 0xc6, 0x16, + 0x14, 0x1f, 0x45, 0xa9, 0x04, 0x4a, 0x07, 0x0a, 0x05, 0x5a, 0xd9, 0x46, + 0xcf, 0x6a, 0x06, 0x57, 0xd8, 0x3d, 0x28, 0xd9, 0x56, 0x36, 0x52, 0xec, + 0xa0, 0x0a, 0xdb, 0x28, 0xdb, 0x56, 0x36, 0x52, 0x79, 0x74, 0x01, 0x5c, + 0xad, 0x1b, 0x2a, 0xc7, 0x97, 0x47, 0x97, 0x40, 0x15, 0x8a, 0x7b, 0x51, + 0xb6, 0xac, 0x6c, 0xa4, 0xd9, 0xed, 0x40, 0x15, 0xf6, 0xd1, 0xb2, 0xa7, + 0x29, 0x49, 0xb2, 0x90, 0x10, 0x6c, 0xa4, 0xdb, 0x53, 0x95, 0xa4, 0xdb, + 0x40, 0x10, 0x6c, 0xa4, 0x2b, 0x53, 0xed, 0xa6, 0x95, 0xa6, 0x04, 0x05, + 0x69, 0x36, 0xd4, 0xfb, 0x69, 0xbb, 0x69, 0x0c, 0x84, 0xad, 0x34, 0xa8, + 0xf4, 0xa9, 0x8a, 0xd3, 0x48, 0xa0, 0x08, 0x1a, 0x14, 0x6e, 0xaa, 0x0f, + 0xe1, 0x50, 0x3d, 0x8d, 0xbb, 0xfd, 0xe8, 0x97, 0xf2, 0xab, 0x84, 0x52, + 0x11, 0x52, 0xe2, 0x9e, 0xe8, 0x77, 0x32, 0xe4, 0xd1, 0xad, 0x1f, 0xf8, + 0x31, 0xf4, 0xaa, 0x72, 0xf8, 0x7a, 0x23, 0x9d, 0x8e, 0x47, 0xd6, 0xb7, + 0x88, 0xa6, 0x91, 0x59, 0x4b, 0x0f, 0x4e, 0x5b, 0xa2, 0x94, 0xe4, 0xba, + 0x9c, 0xa4, 0xde, 0x1f, 0x99, 0x72, 0x53, 0x0d, 0x59, 0xf3, 0x69, 0x73, + 0x45, 0xf7, 0xa3, 0x23, 0xf0, 0xae, 0xe4, 0x8a, 0x6b, 0x28, 0x6e, 0xa0, + 0x1a, 0xe7, 0x9e, 0x06, 0x9b, 0xdb, 0x43, 0x45, 0x5a, 0x5d, 0x4f, 0x3c, + 0x7b, 0x66, 0x1d, 0xaa, 0x26, 0x8b, 0x1d, 0xab, 0xbc, 0x9f, 0x4e, 0xb7, + 0x98, 0x1c, 0xc6, 0x01, 0xf5, 0x15, 0x95, 0x73, 0xa0, 0x9e, 0x4c, 0x4d, + 0x9f, 0x63, 0x5c, 0xb5, 0x30, 0x53, 0x5b, 0x6a, 0x69, 0x1a, 0xd1, 0x7b, + 0x9c, 0xa1, 0x4a, 0x69, 0x5a, 0xd5, 0xb8, 0xb0, 0x92, 0x13, 0x86, 0x42, + 0x3f, 0x0a, 0xa4, 0xd1, 0x11, 0xda, 0xb8, 0xa5, 0x4d, 0xc7, 0x73, 0x64, + 0xee, 0x55, 0xc5, 0x25, 0x4c, 0xc9, 0x4c, 0x2b, 0x59, 0xb8, 0x8c, 0x65, + 0x19, 0xa5, 0x2b, 0x49, 0x8a, 0x96, 0x80, 0x33, 0x4b, 0x9a, 0x6f, 0x4a, + 0x2a, 0x1a, 0x01, 0xd9, 0x34, 0xb4, 0xdc, 0xd3, 0x85, 0x21, 0x8e, 0xa5, + 0xa4, 0x14, 0xea, 0x1a, 0x01, 0x28, 0xa5, 0xa2, 0x90, 0x05, 0x14, 0x7e, + 0x34, 0x99, 0xa5, 0x70, 0x16, 0x8a, 0x6e, 0x68, 0xcd, 0x2b, 0x8c, 0x75, + 0x31, 0xe5, 0x48, 0xc7, 0xcc, 0x6a, 0x19, 0xae, 0x02, 0x70, 0xbd, 0x6a, + 0x8b, 0xb1, 0x63, 0x92, 0x72, 0x6a, 0xe3, 0x4e, 0xfb, 0x9a, 0xc2, 0x93, + 0x96, 0xac, 0xb3, 0x25, 0xe1, 0x3c, 0x20, 0xc0, 0xf5, 0xaa, 0xed, 0x23, + 0x31, 0xe4, 0x93, 0x4d, 0xc7, 0xbd, 0x19, 0xad, 0x92, 0x4b, 0x63, 0xa6, + 0x30, 0x51, 0xd8, 0x5a, 0x4a, 0x4a, 0x33, 0x41, 0x42, 0xd1, 0x9a, 0x4a, + 0x28, 0x01, 0x69, 0x33, 0x49, 0x40, 0xa6, 0x02, 0xe6, 0x8c, 0xd1, 0x45, + 0x00, 0x19, 0xa2, 0x8a, 0x4a, 0x00, 0x29, 0x3b, 0xd2, 0xd1, 0x8a, 0x04, + 0x18, 0xcd, 0x28, 0x14, 0x51, 0x40, 0xc3, 0x14, 0x52, 0x66, 0x8a, 0x04, + 0x2f, 0x4a, 0x4a, 0x28, 0xa0, 0x03, 0x34, 0x1e, 0x94, 0x62, 0x8c, 0x70, + 0x68, 0x01, 0x47, 0x4a, 0x33, 0x4a, 0x22, 0x97, 0x03, 0xf7, 0x6f, 0xf9, + 0x52, 0x14, 0x93, 0xfb, 0x8d, 0xf9, 0x56, 0xfe, 0xc2, 0x7d, 0x85, 0xcc, + 0x8c, 0x6d, 0x71, 0x73, 0xe5, 0x1f, 0xad, 0x63, 0x56, 0xfe, 0xb1, 0x13, + 0xb4, 0x29, 0xf2, 0xb7, 0x07, 0xd2, 0xb1, 0xbc, 0x96, 0x1f, 0xc2, 0x6b, + 0xdf, 0xc0, 0xa6, 0xa8, 0xa4, 0xcf, 0x17, 0x1d, 0xfc, 0x52, 0x1c, 0x51, + 0x8a, 0x97, 0xcb, 0x3e, 0x94, 0x9e, 0x59, 0xf4, 0xae, 0xc3, 0x88, 0x8e, + 0x8c, 0x53, 0xf6, 0x1a, 0x4d, 0xa6, 0x81, 0x0c, 0xa3, 0x14, 0xfd, 0xb4, + 0x98, 0xa0, 0x06, 0xe2, 0x8a, 0x76, 0x29, 0x31, 0x40, 0x0d, 0xa5, 0xa5, + 0xa4, 0xa0, 0x04, 0xa5, 0xa3, 0x14, 0x53, 0x15, 0xc4, 0xa5, 0xa3, 0x14, + 0xb8, 0xa0, 0x57, 0x12, 0x8a, 0x76, 0x29, 0x42, 0x93, 0x4c, 0x43, 0x31, + 0x4a, 0x05, 0x6a, 0x59, 0x68, 0x3a, 0x8d, 0xf9, 0x1e, 0x45, 0xac, 0x8c, + 0x0f, 0xf1, 0x11, 0x81, 0xf9, 0xd7, 0x4d, 0x65, 0xf0, 0xee, 0xea, 0x45, + 0x0d, 0x75, 0x70, 0xb1, 0x67, 0xb2, 0x8c, 0x9a, 0x97, 0x34, 0x8a, 0x51, + 0x6c, 0xe1, 0xb6, 0xd4, 0x89, 0x0b, 0xc8, 0x70, 0x8a, 0xcc, 0x7d, 0x00, + 0xaf, 0x52, 0xb1, 0xf0, 0x0e, 0x99, 0x6c, 0x43, 0x4e, 0xcf, 0x3b, 0x0f, + 0x5e, 0x05, 0x74, 0x36, 0xda, 0x5d, 0x85, 0xa2, 0x85, 0x86, 0xd6, 0x25, + 0x03, 0xfd, 0x9a, 0x97, 0x51, 0x74, 0x29, 0x53, 0xee, 0x78, 0xe5, 0xb7, + 0x87, 0xb5, 0x3b, 0xaf, 0xf5, 0x56, 0x72, 0x9f, 0xaa, 0xe3, 0xf9, 0xd6, + 0xbd, 0xbf, 0x80, 0xb5, 0x79, 0xb0, 0x5d, 0x12, 0x31, 0xfe, 0xd3, 0x57, + 0xac, 0x0c, 0x28, 0xc0, 0x00, 0x0f, 0x6a, 0x5c, 0xd4, 0x3a, 0x8c, 0xae, + 0x44, 0x79, 0xe5, 0xbf, 0xc3, 0x69, 0x08, 0x06, 0x7b, 0xc5, 0x1e, 0xca, + 0xb5, 0xa5, 0x0f, 0xc3, 0xad, 0x3d, 0x3f, 0xd6, 0x4f, 0x23, 0xfe, 0x95, + 0xd9, 0x66, 0x8c, 0xd4, 0xf3, 0x37, 0xd4, 0x7c, 0xa8, 0xc0, 0xb7, 0xf0, + 0x76, 0x95, 0x6e, 0x00, 0x11, 0x93, 0xf5, 0x35, 0x7a, 0x3d, 0x03, 0x4d, + 0x8f, 0xa5, 0xba, 0xd6, 0x8e, 0x69, 0x73, 0x53, 0x62, 0xae, 0x54, 0x5d, + 0x2e, 0xc9, 0x7a, 0x5b, 0xa7, 0xe5, 0x52, 0x0b, 0x0b, 0x51, 0xd2, 0xde, + 0x3f, 0xfb, 0xe4, 0x54, 0xf9, 0xa5, 0xa2, 0xc8, 0x2e, 0x42, 0x2d, 0x2d, + 0xfb, 0x43, 0x1f, 0xfd, 0xf2, 0x29, 0xdf, 0x63, 0x80, 0xf5, 0x89, 0x31, + 0xf4, 0xa9, 0x45, 0x2d, 0x3b, 0x01, 0x07, 0xf6, 0x65, 0x93, 0x75, 0x81, + 0x69, 0x3f, 0xb2, 0x2c, 0x0f, 0xfc, 0xbb, 0xad, 0x5a, 0x06, 0x97, 0x34, + 0xec, 0x17, 0x29, 0xff, 0x00, 0x63, 0x58, 0x1f, 0xf9, 0x77, 0x5a, 0x43, + 0xa1, 0x69, 0xe7, 0xfe, 0x5d, 0xc7, 0xe6, 0x6a, 0xf8, 0x34, 0xec, 0xd1, + 0x60, 0xbb, 0x33, 0x0f, 0x87, 0xb4, 0xf3, 0xff, 0x00, 0x2c, 0xb1, 0xf8, + 0xd4, 0x6d, 0xe1, 0x8d, 0x3d, 0xbb, 0x30, 0xfc, 0x6b, 0x64, 0x53, 0x85, + 0x2b, 0x21, 0x5d, 0x9c, 0xf3, 0x78, 0x42, 0xc9, 0xba, 0x33, 0x0f, 0xa8, + 0x15, 0x04, 0x9e, 0x09, 0xb7, 0x6f, 0xbb, 0x22, 0xfe, 0x2b, 0x5d, 0x50, + 0x14, 0xe0, 0x28, 0xb2, 0x0b, 0x9c, 0x44, 0xbe, 0x04, 0x24, 0x7c, 0x86, + 0x33, 0xfa, 0x55, 0x37, 0xf0, 0x2d, 0xc6, 0xec, 0x04, 0x1f, 0x50, 0xd5, + 0xe8, 0xc0, 0x53, 0x80, 0xa2, 0xc1, 0x64, 0xfa, 0x1c, 0x34, 0x5f, 0x0e, + 0xa0, 0x68, 0x7f, 0x79, 0x70, 0xc2, 0x4f, 0x61, 0xc5, 0x57, 0x97, 0xe1, + 0xb3, 0xe7, 0xf7, 0x77, 0x6a, 0x47, 0xba, 0xd7, 0xa2, 0x01, 0x4f, 0x0b, + 0x4e, 0xe4, 0x38, 0x44, 0xf3, 0xb8, 0x7e, 0x19, 0xf3, 0xfb, 0xdb, 0xce, + 0x3d, 0x15, 0x6b, 0x62, 0xd3, 0xe1, 0xe6, 0x91, 0x06, 0x0c, 0xa1, 0xe5, + 0x3f, 0xed, 0x1e, 0x2b, 0xaf, 0x0b, 0x4f, 0x0b, 0x45, 0xc1, 0x42, 0x2b, + 0xa1, 0x97, 0x69, 0xa0, 0x69, 0xb6, 0x60, 0x08, 0x6c, 0xe2, 0x5c, 0x77, + 0xdb, 0x5a, 0x49, 0x12, 0xa8, 0xc2, 0xa8, 0x03, 0xd8, 0x54, 0xc1, 0x69, + 0xe1, 0x68, 0x28, 0x88, 0x2d, 0x3c, 0x25, 0x48, 0x16, 0x9c, 0x16, 0x80, + 0x23, 0x09, 0x4e, 0x09, 0x52, 0x84, 0xa7, 0x84, 0xa0, 0x08, 0x42, 0x52, + 0x84, 0xab, 0x01, 0x29, 0x42, 0x52, 0x02, 0x00, 0x94, 0xe0, 0x95, 0x38, + 0x8e, 0x9c, 0x23, 0xa0, 0x0a, 0xfb, 0x29, 0x7c, 0xba, 0xb0, 0x12, 0x9d, + 0xe5, 0x8a, 0x00, 0xab, 0xe5, 0xd2, 0xf9, 0x75, 0x67, 0x65, 0x1b, 0x29, + 0x0c, 0xad, 0xe5, 0xd2, 0x18, 0xea, 0xd6, 0xca, 0x4d, 0x94, 0x08, 0xaa, + 0x63, 0xa4, 0x31, 0xd5, 0xb2, 0x94, 0x9b, 0x29, 0x81, 0x53, 0xcb, 0xa4, + 0x29, 0x56, 0x8a, 0x52, 0x14, 0xa4, 0x05, 0x4d, 0x94, 0x9b, 0x2a, 0xd1, + 0x8e, 0x9a, 0x52, 0x98, 0x15, 0x76, 0x52, 0x15, 0xab, 0x25, 0x29, 0xa5, + 0x28, 0x19, 0x58, 0xa7, 0xb5, 0x34, 0xad, 0x58, 0x29, 0x4d, 0x2b, 0x48, + 0x0a, 0xe5, 0x69, 0xa5, 0x6a, 0xc1, 0x5a, 0x61, 0x5a, 0x00, 0x80, 0xad, + 0x30, 0xad, 0x4e, 0x56, 0x98, 0x45, 0x00, 0x42, 0x56, 0x98, 0x45, 0x4e, + 0x45, 0x30, 0x8a, 0x00, 0x88, 0x8a, 0x69, 0x15, 0x21, 0x14, 0xd2, 0x28, + 0x19, 0x19, 0x14, 0xd2, 0x2a, 0x42, 0x29, 0xa4, 0x52, 0x02, 0x32, 0x29, + 0xa4, 0x54, 0x84, 0x53, 0x4d, 0x16, 0x02, 0x09, 0x21, 0x49, 0x17, 0x0e, + 0xa0, 0x8f, 0x7a, 0xc9, 0xbc, 0xd1, 0x63, 0x70, 0x5a, 0x1f, 0x94, 0xfa, + 0x56, 0xd1, 0xa6, 0x9a, 0xce, 0x74, 0xe3, 0x35, 0x69, 0x22, 0xa3, 0x26, + 0xb6, 0x38, 0x7b, 0x9b, 0x39, 0x20, 0x62, 0x1d, 0x08, 0xaa, 0x6c, 0x98, + 0xae, 0xf6, 0x68, 0x23, 0x99, 0x70, 0xea, 0x0d, 0x66, 0x49, 0xa1, 0xc0, + 0xec, 0x48, 0x62, 0x07, 0xa5, 0x79, 0xb5, 0xb0, 0x0e, 0xfe, 0xe1, 0xd1, + 0x1a, 0xeb, 0xed, 0x1c, 0x89, 0x14, 0xd2, 0xb5, 0xd6, 0xff, 0x00, 0x60, + 0x5b, 0x77, 0x66, 0x34, 0xa3, 0x42, 0xb3, 0x1d, 0x98, 0xfe, 0x35, 0x8f, + 0xf6, 0x7d, 0x5f, 0x22, 0xfd, 0xb4, 0x4e, 0x43, 0x6f, 0xb5, 0x26, 0xd3, + 0x5d, 0x90, 0xd1, 0xec, 0xc7, 0xfc, 0xb2, 0xcf, 0xd4, 0xd2, 0xff, 0x00, + 0x65, 0xd9, 0xff, 0x00, 0xcf, 0x15, 0xa3, 0xfb, 0x3a, 0xa3, 0xea, 0x85, + 0xed, 0xe2, 0x71, 0x7b, 0x4f, 0xa5, 0x38, 0x71, 0xda, 0xbb, 0x3f, 0xec, + 0xab, 0x2e, 0xf0, 0x8a, 0x5f, 0xec, 0x9b, 0x1f, 0xf9, 0xe0, 0xb4, 0x7f, + 0x65, 0xd4, 0x7f, 0x69, 0x07, 0xd6, 0x23, 0xd8, 0xe3, 0x73, 0x49, 0x93, + 0x5d, 0x97, 0xf6, 0x4d, 0x91, 0xff, 0x00, 0x96, 0x0b, 0x48, 0x74, 0x7b, + 0x13, 0xff, 0x00, 0x2c, 0x45, 0x3f, 0xec, 0xba, 0x9d, 0xd0, 0x7d, 0x62, + 0x27, 0x1b, 0xba, 0x93, 0x78, 0x15, 0xd7, 0xb6, 0x87, 0x62, 0xdf, 0xf2, + 0xcc, 0x8f, 0xc6, 0xab, 0x5c, 0x78, 0x7a, 0xd0, 0xc2, 0xe6, 0x30, 0xfb, + 0xf1, 0xc7, 0x34, 0x9e, 0x59, 0x55, 0x75, 0x41, 0xed, 0xe2, 0x72, 0xed, + 0x32, 0x20, 0xc9, 0x60, 0x2a, 0x06, 0xd4, 0x2d, 0xd7, 0xac, 0xaa, 0x3f, + 0x1a, 0xe4, 0x75, 0x99, 0x2e, 0x6d, 0xae, 0xa7, 0x8a, 0xe5, 0xd9, 0x5d, + 0x5b, 0x0a, 0xb9, 0xed, 0x58, 0x81, 0xa6, 0x95, 0xf8, 0x24, 0xd5, 0xc7, + 0x2a, 0xba, 0xd5, 0x83, 0xac, 0x7a, 0x5a, 0xde, 0xc0, 0xff, 0x00, 0x76, + 0x55, 0x3f, 0x8d, 0x32, 0x6b, 0xb5, 0x03, 0x6a, 0x1c, 0x9a, 0xf3, 0x36, + 0x96, 0x54, 0x7e, 0x18, 0xa9, 0x1e, 0x95, 0x76, 0xc2, 0xfe, 0xed, 0x66, + 0x0a, 0x1d, 0x9c, 0x1e, 0xc7, 0x9a, 0x99, 0x65, 0x9c, 0xba, 0xa6, 0x69, + 0x4a, 0xb2, 0xe6, 0xd5, 0x1d, 0xa9, 0x7c, 0xd2, 0x66, 0xaa, 0xc4, 0xec, + 0xc8, 0x09, 0xeb, 0x52, 0x82, 0x6b, 0x91, 0xc6, 0xc7, 0xa4, 0x99, 0x2f, + 0xe3, 0x4b, 0x51, 0x83, 0x4b, 0x9a, 0x9b, 0x0e, 0xe3, 0xe8, 0xa4, 0xcf, + 0x14, 0x66, 0x81, 0x8b, 0x45, 0x02, 0x8a, 0x00, 0x31, 0x45, 0x14, 0x50, + 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x21, 0x34, 0x99, 0xa7, 0x60, 0x1d, + 0xde, 0x90, 0xd2, 0x66, 0x8c, 0xd3, 0xe5, 0x60, 0x2f, 0x14, 0x99, 0xa4, + 0xcd, 0x2d, 0x57, 0x23, 0x10, 0x51, 0x45, 0x2e, 0x0d, 0x3f, 0x66, 0xc2, + 0xe2, 0x52, 0x8a, 0x4c, 0x7b, 0x52, 0xe0, 0xd1, 0xec, 0x98, 0x5c, 0x28, + 0x3d, 0x29, 0x42, 0xb1, 0x3c, 0x29, 0x3f, 0x41, 0x4a, 0x62, 0x97, 0x1f, + 0xea, 0xdb, 0xfe, 0xf9, 0xa6, 0xa8, 0x4f, 0xb0, 0xb9, 0x91, 0xf4, 0xd7, + 0xd9, 0xa0, 0xc6, 0x3c, 0xa4, 0xc7, 0xd2, 0x9a, 0x6c, 0xad, 0x8f, 0xfc, + 0xb0, 0x8c, 0xff, 0x00, 0xc0, 0x45, 0x4b, 0xda, 0x8a, 0xfa, 0x8d, 0x4f, + 0x9b, 0xbb, 0x2a, 0x49, 0xa4, 0xe9, 0xd2, 0x8f, 0xde, 0x59, 0x5b, 0xbf, + 0xd6, 0x30, 0x6a, 0xab, 0xf8, 0x6b, 0x44, 0x93, 0xef, 0xe9, 0x56, 0x67, + 0xfe, 0xd8, 0xaf, 0xf8, 0x56, 0xa5, 0x1d, 0xa9, 0xdd, 0xf7, 0x15, 0xcc, + 0x53, 0xe0, 0xff, 0x00, 0x0e, 0x90, 0x7f, 0xe2, 0x4f, 0x67, 0xcf, 0xfd, + 0x31, 0x5f, 0xf0, 0xaa, 0x57, 0x1f, 0x0f, 0x7c, 0x2f, 0x73, 0xf7, 0xf4, + 0x98, 0x57, 0xfd, 0xc1, 0xb7, 0xf9, 0x57, 0x4e, 0x4d, 0x21, 0x34, 0x73, + 0x48, 0x0e, 0x12, 0x7f, 0x84, 0xbe, 0x16, 0x94, 0x9d, 0xb6, 0xd2, 0xc7, + 0xfe, 0xec, 0xa6, 0xb2, 0xee, 0xfe, 0x0b, 0x68, 0xb2, 0x67, 0xec, 0xf7, + 0x77, 0x31, 0x7b, 0x1c, 0x35, 0x7a, 0x75, 0x14, 0xf9, 0x98, 0x1e, 0x29, + 0x75, 0xf0, 0x46, 0x70, 0xc7, 0xec, 0xda, 0x9a, 0x15, 0xff, 0x00, 0x6d, + 0x39, 0xac, 0x0b, 0xff, 0x00, 0x84, 0xbe, 0x20, 0xb4, 0xc9, 0x85, 0x62, + 0xb8, 0x51, 0xdd, 0x5b, 0x06, 0xbe, 0x88, 0x20, 0x1a, 0x63, 0x20, 0xc1, + 0xa7, 0x71, 0x68, 0x7c, 0xa5, 0x7d, 0xe1, 0x7d, 0x67, 0x4f, 0x27, 0xed, + 0x3a, 0x7c, 0xe8, 0x07, 0x7d, 0xa4, 0x8a, 0xc9, 0x68, 0x99, 0x0e, 0x19, + 0x48, 0x3e, 0x84, 0x57, 0xd7, 0x52, 0xdb, 0xa3, 0xa9, 0x0c, 0x8a, 0xc3, + 0xdc, 0x56, 0x0d, 0xf7, 0x85, 0xf4, 0x8b, 0xb2, 0x5a, 0x6d, 0x3e, 0x06, + 0x27, 0xbe, 0xc1, 0x45, 0xd0, 0x59, 0x1f, 0x30, 0x6d, 0xa4, 0xc5, 0x7b, + 0xae, 0xa7, 0xf0, 0xc7, 0x44, 0xb9, 0xdc, 0x61, 0x47, 0xb7, 0x63, 0xfd, + 0xc3, 0xc7, 0xe5, 0x5c, 0x86, 0xa3, 0xf0, 0xae, 0xf2, 0x12, 0xcd, 0x67, + 0x74, 0x92, 0x0e, 0xca, 0xe3, 0x06, 0x9d, 0xd0, 0x9c, 0x59, 0xe7, 0x38, + 0xa3, 0x15, 0xb1, 0xa8, 0x78, 0x6b, 0x55, 0xd3, 0x09, 0x17, 0x16, 0x92, + 0x05, 0x1f, 0xc4, 0x06, 0x45, 0x67, 0xc5, 0x6d, 0x2c, 0xf2, 0x88, 0xe2, + 0x8d, 0x99, 0xc9, 0xc0, 0x50, 0x39, 0xaa, 0x21, 0xa6, 0x41, 0x8a, 0x9e, + 0xde, 0xd2, 0x7b, 0xa9, 0x04, 0x70, 0x44, 0xd2, 0x39, 0xec, 0xa3, 0x35, + 0xd9, 0x68, 0xbe, 0x00, 0x9e, 0x70, 0xb3, 0x6a, 0x0d, 0xe5, 0x27, 0x5f, + 0x2c, 0x75, 0x35, 0xdc, 0xd8, 0xe9, 0x36, 0x5a, 0x64, 0x61, 0x2d, 0xa0, + 0x54, 0xf5, 0x38, 0xe4, 0xd6, 0x72, 0xa8, 0x96, 0xc5, 0x28, 0x5f, 0x73, + 0xcf, 0xf4, 0xbf, 0x01, 0x5e, 0x5c, 0xe1, 0xef, 0x18, 0x40, 0x9e, 0x9d, + 0x4d, 0x76, 0x3a, 0x7f, 0x84, 0xf4, 0xad, 0x3c, 0x02, 0xb0, 0x09, 0x1c, + 0x7f, 0x13, 0xf3, 0x5b, 0x79, 0xa4, 0xcd, 0x64, 0xe4, 0xd9, 0xa2, 0x8a, + 0x40, 0x88, 0x91, 0x8c, 0x22, 0x85, 0x1e, 0x80, 0x53, 0xb3, 0x4c, 0xcd, + 0x19, 0xa4, 0x50, 0xfc, 0xd1, 0x9a, 0x66, 0x69, 0x33, 0x40, 0x12, 0x6e, + 0xa5, 0xcd, 0x47, 0x9a, 0x33, 0x40, 0x89, 0x33, 0x4b, 0x9a, 0x8f, 0x75, + 0x1b, 0xa8, 0x02, 0x5c, 0xd1, 0x9a, 0x8f, 0x75, 0x2e, 0xea, 0x06, 0x49, + 0x9a, 0x50, 0x6a, 0x3d, 0xd4, 0xa1, 0xa8, 0x02, 0x50, 0x69, 0x73, 0x51, + 0x83, 0x4a, 0x0d, 0x00, 0x48, 0x0d, 0x28, 0xa6, 0x03, 0x4e, 0x06, 0x98, + 0x89, 0x05, 0x38, 0x54, 0x60, 0xd3, 0xc1, 0xa0, 0x07, 0x8a, 0x78, 0xa6, + 0x0a, 0x78, 0xa0, 0x07, 0x8a, 0x70, 0x14, 0xd1, 0x52, 0x28, 0xa0, 0x05, + 0x02, 0xa4, 0x02, 0x90, 0x0a, 0x90, 0x0a, 0x00, 0x55, 0x14, 0xf0, 0xb4, + 0x28, 0xa9, 0x14, 0x50, 0x20, 0x0b, 0x4f, 0x02, 0x80, 0x2a, 0x40, 0xb4, + 0x00, 0x80, 0x54, 0x81, 0x69, 0x55, 0x6a, 0x45, 0x5a, 0x00, 0x68, 0x5a, + 0x78, 0x4a, 0x90, 0x2d, 0x3c, 0x25, 0x20, 0x23, 0x09, 0x52, 0x04, 0xa9, + 0x02, 0xd3, 0x82, 0xd1, 0x70, 0x23, 0x0b, 0x4e, 0xdb, 0xed, 0x52, 0x6d, + 0xa5, 0xc5, 0x20, 0x23, 0xdb, 0x4a, 0x16, 0xa5, 0x0b, 0x4b, 0xb6, 0x81, + 0x8c, 0x09, 0x4a, 0x10, 0x53, 0xf6, 0xd2, 0x85, 0xa4, 0x21, 0x9b, 0x46, + 0x28, 0xda, 0x2a, 0x4d, 0xb4, 0x6d, 0xa0, 0x08, 0xb6, 0xd1, 0x8a, 0x97, + 0x6d, 0x1b, 0x68, 0x02, 0x1d, 0xb4, 0x6d, 0xa9, 0x76, 0xd2, 0x6d, 0xa0, + 0x08, 0xb6, 0xd2, 0x14, 0xa9, 0x76, 0xd2, 0x11, 0x40, 0x10, 0xec, 0xa6, + 0x94, 0xa9, 0xf1, 0x48, 0x45, 0x00, 0x56, 0x29, 0x4c, 0x29, 0x56, 0x8a, + 0xd3, 0x4a, 0x0a, 0x00, 0xa8, 0x52, 0x98, 0x52, 0xad, 0x94, 0xa8, 0xca, + 0x53, 0xb8, 0x15, 0x4a, 0xd3, 0x0a, 0xd5, 0xa6, 0x4a, 0x8c, 0xa5, 0x17, + 0x19, 0x58, 0xad, 0x30, 0xad, 0x58, 0x2b, 0x4c, 0x2b, 0x40, 0x15, 0x8a, + 0xd3, 0x08, 0xab, 0x0c, 0xb5, 0x19, 0x14, 0x01, 0x01, 0x14, 0xc3, 0x52, + 0xb0, 0xa8, 0xcd, 0x30, 0x18, 0x45, 0x34, 0x8a, 0x71, 0xa6, 0x9a, 0x43, + 0x18, 0x69, 0x86, 0xa4, 0x34, 0xc3, 0x40, 0x0c, 0x34, 0xc3, 0x4f, 0x3c, + 0x53, 0x0d, 0x00, 0x30, 0xd3, 0x0d, 0x3c, 0xd3, 0x0d, 0x20, 0x1a, 0x69, + 0xa6, 0x9c, 0x69, 0x84, 0xd2, 0xb0, 0xc0, 0xd2, 0x52, 0x1a, 0x42, 0x68, + 0x01, 0x73, 0x46, 0x69, 0xb9, 0xa4, 0xcd, 0x30, 0x1f, 0x9a, 0x33, 0x4c, + 0xcd, 0x19, 0xa6, 0x03, 0xf3, 0x48, 0x4f, 0x14, 0xcd, 0xd4, 0x6e, 0xa0, + 0x0f, 0x24, 0xf8, 0x84, 0xf2, 0x49, 0xaa, 0x0d, 0xfa, 0x7f, 0x96, 0xab, + 0xc0, 0x97, 0xfb, 0xf5, 0x4f, 0xc3, 0xba, 0x6a, 0x5d, 0x4a, 0x85, 0x37, + 0xc8, 0xbd, 0xd1, 0x57, 0x81, 0xf8, 0xd7, 0x49, 0xf1, 0x2a, 0x7c, 0x8b, + 0x68, 0x07, 0x52, 0x73, 0x5d, 0x17, 0x83, 0xec, 0x96, 0xcf, 0x41, 0x83, + 0x2a, 0x03, 0x30, 0xdc, 0x78, 0xa7, 0x07, 0x68, 0x8e, 0x5b, 0x19, 0xb6, + 0x9f, 0x0f, 0xf4, 0x99, 0xff, 0x00, 0x7d, 0x75, 0x04, 0x81, 0xc9, 0xce, + 0xdd, 0xd5, 0xbf, 0x67, 0xe1, 0x8d, 0x1e, 0xc9, 0x71, 0x0d, 0x8c, 0x43, + 0xdc, 0x8c, 0x9a, 0xd4, 0xcd, 0x2e, 0x69, 0x36, 0x24, 0x66, 0x4d, 0xe1, + 0xdd, 0x32, 0x6f, 0xf9, 0x76, 0x54, 0xf7, 0x4e, 0x2b, 0x3e, 0x7f, 0x07, + 0xdb, 0xb7, 0x30, 0xcc, 0xc9, 0xec, 0x46, 0x6b, 0xa4, 0xcd, 0x38, 0x56, + 0x32, 0xa1, 0x4e, 0x5b, 0xa3, 0x68, 0xd7, 0xa9, 0x1d, 0x99, 0xc3, 0xdc, + 0x78, 0x4e, 0xfa, 0x30, 0x4c, 0x7b, 0x25, 0x1e, 0xc7, 0x15, 0x97, 0x3e, + 0x9d, 0x77, 0x6c, 0x71, 0x2c, 0x0e, 0xa0, 0x77, 0x23, 0x8a, 0xf4, 0xf5, + 0x15, 0x20, 0x8d, 0x5c, 0x61, 0x94, 0x11, 0xee, 0x2b, 0x9e, 0x79, 0x7d, + 0x37, 0xf0, 0xe8, 0x74, 0x47, 0x1d, 0x35, 0xf1, 0x2b, 0x9e, 0x49, 0x82, + 0x28, 0xaf, 0x4f, 0xb9, 0xf0, 0xee, 0x9d, 0x78, 0x0e, 0xf8, 0x15, 0x58, + 0xff, 0x00, 0x12, 0x70, 0x6b, 0x06, 0xfb, 0xc0, 0xd2, 0xae, 0x5e, 0xca, + 0x50, 0xe3, 0xfb, 0xad, 0xc1, 0xae, 0x3a, 0x99, 0x7d, 0x58, 0xfc, 0x3a, + 0x9d, 0x50, 0xc6, 0x53, 0x96, 0x8f, 0x43, 0x8f, 0xa2, 0xad, 0xdd, 0xe9, + 0x97, 0x96, 0x0e, 0x56, 0xe2, 0x07, 0x4f, 0x72, 0x38, 0xaa, 0x86, 0xb8, + 0xa5, 0x09, 0x45, 0xd9, 0xa3, 0xa9, 0x34, 0xd5, 0xd0, 0x51, 0x49, 0x9a, + 0x33, 0x42, 0x8b, 0x63, 0x0a, 0x29, 0xf0, 0xdb, 0xcd, 0x70, 0xe1, 0x21, + 0x89, 0xe4, 0x63, 0xd9, 0x46, 0x6b, 0xa3, 0xd3, 0x3c, 0x05, 0xae, 0xea, + 0x2e, 0x37, 0x5b, 0xfd, 0x9e, 0x33, 0xfc, 0x72, 0xf1, 0xfa, 0x57, 0x45, + 0x3c, 0x2d, 0x49, 0xec, 0x8c, 0xe5, 0x56, 0x31, 0xf8, 0x99, 0xcc, 0x52, + 0x7e, 0x15, 0xea, 0xb6, 0x3f, 0x0a, 0x2d, 0x97, 0x06, 0xfa, 0xfe, 0x47, + 0x3d, 0xd6, 0x31, 0xb4, 0x57, 0x47, 0x67, 0xe0, 0x3f, 0x0f, 0x59, 0xe0, + 0x8b, 0x21, 0x2b, 0x0e, 0xf2, 0x31, 0x3f, 0xfd, 0x6a, 0xee, 0x86, 0x5d, + 0x2f, 0xb4, 0xce, 0x59, 0x63, 0xa9, 0x2d, 0xb5, 0x3c, 0x3e, 0xde, 0xca, + 0xea, 0xed, 0xb6, 0xdb, 0xdb, 0xc9, 0x2b, 0x7a, 0x2a, 0x93, 0x5b, 0x76, + 0x9e, 0x05, 0xf1, 0x05, 0xe6, 0x36, 0xd8, 0x3c, 0x63, 0xd6, 0x5f, 0x97, + 0xf9, 0xd7, 0xb9, 0xdb, 0x59, 0x5a, 0xd9, 0xa6, 0xcb, 0x6b, 0x78, 0xa2, + 0x5f, 0x44, 0x50, 0x2a, 0x7a, 0xea, 0x86, 0x02, 0x9a, 0xdf, 0x53, 0x9a, + 0x59, 0x84, 0xbe, 0xca, 0x3c, 0x8a, 0xcb, 0xe1, 0x4e, 0xa5, 0x21, 0x06, + 0xea, 0xea, 0x18, 0x57, 0xb8, 0x5f, 0x98, 0xd6, 0xfd, 0xb7, 0xc2, 0xad, + 0x32, 0x3c, 0x79, 0xf7, 0x73, 0xc8, 0x7d, 0xb0, 0x2b, 0xbf, 0xa0, 0x56, + 0xeb, 0x0f, 0x4a, 0x3b, 0x44, 0xc2, 0x58, 0xca, 0xb2, 0xea, 0x72, 0xd6, + 0xff, 0x00, 0x0e, 0xfc, 0x3b, 0x06, 0x33, 0x6a, 0xd2, 0x91, 0xfd, 0xf7, + 0x35, 0xa1, 0x1f, 0x84, 0x34, 0x08, 0xfe, 0xee, 0x97, 0x6f, 0xf8, 0xae, + 0x6b, 0x68, 0x51, 0x5a, 0x28, 0xa5, 0xb2, 0x32, 0x75, 0xaa, 0x3d, 0xdb, + 0x33, 0x57, 0xc3, 0x7a, 0x22, 0x8e, 0x34, 0xbb, 0x4f, 0xfb, 0xf2, 0xbf, + 0xe1, 0x4f, 0x5f, 0x0f, 0x68, 0xc0, 0xe4, 0x69, 0x96, 0x83, 0xfe, 0xd8, + 0xaf, 0xf8, 0x56, 0x85, 0x2d, 0x32, 0x79, 0xe4, 0xfa, 0x95, 0xa2, 0xd2, + 0xb4, 0xf8, 0x58, 0x34, 0x56, 0x56, 0xe8, 0x47, 0x42, 0xb1, 0x81, 0x53, + 0x9b, 0x68, 0x0f, 0x58, 0x93, 0xf2, 0xa7, 0xe6, 0x8a, 0x5a, 0x85, 0xd8, + 0xdc, 0xd1, 0x9a, 0x6e, 0x69, 0x0d, 0x32, 0x47, 0x66, 0x8c, 0xd3, 0x68, + 0xa6, 0x02, 0xd0, 0x4d, 0x26, 0x69, 0x33, 0x40, 0x85, 0xa4, 0xa3, 0x34, + 0x94, 0xc0, 0x5a, 0x43, 0xcd, 0x25, 0x14, 0x00, 0xd6, 0x02, 0xa1, 0x91, + 0x38, 0xa9, 0xe9, 0xa6, 0x80, 0x33, 0x66, 0x8a, 0xa8, 0x4a, 0x98, 0xad, + 0x99, 0x53, 0x22, 0xb3, 0x67, 0x4c, 0x66, 0x93, 0x43, 0x32, 0xa7, 0x89, + 0x1c, 0x15, 0x75, 0x0c, 0x3d, 0x08, 0xac, 0xb4, 0xd2, 0x2c, 0x2d, 0xae, + 0x1a, 0x78, 0xad, 0x63, 0x49, 0x0f, 0x56, 0x0b, 0x5b, 0x52, 0x8e, 0xb5, + 0x4e, 0x41, 0x52, 0x32, 0xb3, 0xd4, 0x0d, 0x53, 0xbd, 0x57, 0x73, 0x52, + 0xc6, 0x30, 0x9a, 0x4d, 0xd4, 0xd6, 0x34, 0xcd, 0xd4, 0x86, 0x49, 0x9a, + 0x4d, 0xd4, 0xcc, 0xd2, 0x66, 0x90, 0x12, 0x6e, 0xa3, 0x75, 0x47, 0x9a, + 0x33, 0x40, 0x12, 0x6e, 0xa3, 0x75, 0x47, 0x9a, 0x33, 0x40, 0x12, 0x6e, + 0xa5, 0xdd, 0x51, 0x66, 0x97, 0x75, 0x30, 0x25, 0xdd, 0x4b, 0xba, 0xa2, + 0xdd, 0x46, 0xea, 0x00, 0x98, 0x1a, 0x50, 0x6a, 0x20, 0xd4, 0xe0, 0x68, + 0x02, 0x50, 0x69, 0xc0, 0xd4, 0x40, 0xd3, 0x81, 0xa0, 0x09, 0x41, 0xa7, + 0x03, 0x51, 0x03, 0x4f, 0x06, 0x98, 0x89, 0x41, 0xa7, 0x8a, 0x8c, 0x1a, + 0x78, 0x34, 0x01, 0x28, 0xa9, 0x16, 0xa3, 0x5a, 0x91, 0x68, 0x02, 0x45, + 0xa9, 0x56, 0xa3, 0x5a, 0x90, 0x50, 0x04, 0x80, 0x54, 0x8a, 0x2a, 0x35, + 0xa9, 0x56, 0x81, 0x0f, 0x51, 0x52, 0xa8, 0xa6, 0x28, 0xa9, 0x94, 0x50, + 0x31, 0x55, 0x6a, 0x45, 0x5a, 0x14, 0x54, 0xaa, 0xb4, 0x00, 0x2a, 0xd4, + 0xaa, 0xb4, 0xaa, 0xb5, 0x22, 0xa0, 0xa4, 0x21, 0x02, 0xd3, 0xc2, 0xd3, + 0x80, 0xa7, 0x01, 0x48, 0x06, 0x81, 0x4f, 0xc5, 0x28, 0x14, 0xe0, 0x28, + 0x01, 0xa0, 0x53, 0x82, 0xd3, 0x80, 0xa5, 0xa4, 0x02, 0x01, 0x4e, 0xc5, + 0x2d, 0x14, 0x00, 0x62, 0x8c, 0x53, 0xa8, 0xa0, 0x04, 0xc5, 0x2e, 0x29, + 0x68, 0xa0, 0x06, 0xe2, 0x8c, 0x52, 0xd1, 0x40, 0x86, 0xe2, 0x90, 0x8a, + 0x7d, 0x25, 0x03, 0x18, 0x45, 0x37, 0x14, 0xfa, 0x29, 0x01, 0x19, 0x14, + 0x84, 0x53, 0xcd, 0x25, 0x03, 0x19, 0x8a, 0x6e, 0x2a, 0x4a, 0x4c, 0x53, + 0x02, 0x22, 0x29, 0xa5, 0x6a, 0x5c, 0x52, 0x11, 0x40, 0x15, 0xca, 0xd3, + 0x19, 0x6a, 0xc1, 0x5a, 0x8d, 0x96, 0x80, 0x2b, 0x32, 0xd4, 0x2c, 0xb5, + 0x69, 0x85, 0x42, 0xc2, 0x98, 0x15, 0xd8, 0x54, 0x6c, 0x2a, 0x76, 0x15, + 0x13, 0x0a, 0x00, 0x81, 0x85, 0x46, 0xc2, 0xa6, 0x61, 0x51, 0xb0, 0xa0, + 0x08, 0x08, 0xa6, 0x1a, 0x95, 0x85, 0x46, 0x69, 0x81, 0x19, 0xa6, 0x93, + 0x4e, 0x6a, 0x8c, 0x9a, 0x43, 0x03, 0x51, 0xb5, 0x3b, 0x34, 0xd2, 0x68, + 0x02, 0x33, 0x4c, 0x34, 0xf6, 0xa8, 0xcd, 0x00, 0x34, 0x9a, 0x69, 0x34, + 0xa6, 0x98, 0x69, 0x0c, 0x42, 0x69, 0x09, 0xa0, 0x9a, 0x69, 0x34, 0x08, + 0x33, 0x49, 0x9a, 0x42, 0x69, 0xa4, 0xd3, 0x18, 0xec, 0xd2, 0x66, 0x9b, + 0x9a, 0x4d, 0xd4, 0x00, 0xfd, 0xd4, 0x6e, 0xa8, 0xf3, 0x46, 0xea, 0x00, + 0xf3, 0x5f, 0x1b, 0x31, 0xbb, 0xf1, 0x3d, 0xb5, 0xb0, 0xe7, 0x18, 0x1f, + 0x99, 0xaf, 0x47, 0xb2, 0x8c, 0x43, 0x69, 0x14, 0x63, 0xf8, 0x54, 0x0a, + 0xf3, 0x9b, 0x91, 0xf6, 0xef, 0x88, 0xaa, 0xbd, 0x42, 0x37, 0xf2, 0xaf, + 0x4a, 0x53, 0x80, 0x05, 0x0b, 0xe1, 0x43, 0x64, 0xb9, 0xa5, 0xcd, 0x47, + 0x9a, 0x5c, 0xd0, 0x04, 0x80, 0xd3, 0xd6, 0xa2, 0x06, 0xa5, 0x5a, 0x00, + 0x99, 0x6a, 0x64, 0xa8, 0x16, 0xa7, 0x4a, 0x62, 0x27, 0x4a, 0xb1, 0x18, + 0xcd, 0x40, 0x82, 0xad, 0xc2, 0xb9, 0x22, 0xa9, 0x08, 0x79, 0xb2, 0x86, + 0xea, 0x33, 0x1c, 0xd1, 0x2c, 0x8a, 0x7b, 0x30, 0xcd, 0x73, 0xda, 0xaf, + 0xc3, 0x8b, 0x6b, 0xb5, 0x69, 0x2c, 0x24, 0xf2, 0x24, 0xeb, 0xb0, 0xf2, + 0xa6, 0xbb, 0x2b, 0x78, 0xf0, 0x33, 0x57, 0x14, 0x60, 0x52, 0x9d, 0x28, + 0x54, 0x56, 0x92, 0xb9, 0x70, 0xad, 0x3a, 0x6e, 0xf1, 0x67, 0x8e, 0x41, + 0xf0, 0xe3, 0x5c, 0x96, 0xe8, 0xc4, 0xeb, 0x1c, 0x51, 0x83, 0xfe, 0xb0, + 0xb6, 0x41, 0xfa, 0x57, 0x5d, 0xa4, 0xfc, 0x32, 0xd3, 0x2d, 0x70, 0xf7, + 0xd2, 0x3d, 0xd3, 0xff, 0x00, 0x77, 0xee, 0xad, 0x77, 0x00, 0xd2, 0xe6, + 0xa6, 0x9e, 0x16, 0x95, 0x3d, 0x91, 0xa4, 0xf1, 0x95, 0x67, 0xd6, 0xc5, + 0x5b, 0x3d, 0x2e, 0xc6, 0xc1, 0x02, 0x5a, 0xda, 0xc5, 0x10, 0x1f, 0xdd, + 0x51, 0x9a, 0xb9, 0x4d, 0xcd, 0x2d, 0x6e, 0x73, 0x36, 0xde, 0xe2, 0xd2, + 0xd3, 0x69, 0x68, 0x10, 0xea, 0x5a, 0x66, 0x68, 0xa0, 0x07, 0xe6, 0x8c, + 0xd3, 0x45, 0x14, 0x84, 0x3f, 0x34, 0xb9, 0xa6, 0x66, 0x97, 0x34, 0x00, + 0xec, 0xd2, 0xe6, 0x99, 0x9a, 0x5c, 0xd2, 0x18, 0xec, 0xd2, 0xe7, 0x8a, + 0x6d, 0x19, 0xe2, 0x80, 0x19, 0x9a, 0x33, 0x49, 0xda, 0x92, 0xaa, 0xc2, + 0x17, 0x34, 0x66, 0x9b, 0x9a, 0x33, 0x45, 0x80, 0x76, 0x69, 0x09, 0xa6, + 0xe6, 0x8c, 0xd0, 0x03, 0xb3, 0x49, 0x9a, 0x6e, 0x68, 0xcd, 0x30, 0x1f, + 0x9a, 0x4c, 0xd3, 0x73, 0x46, 0x68, 0x01, 0x69, 0x28, 0xcd, 0x21, 0xa0, + 0x43, 0x58, 0x55, 0x1b, 0xa4, 0xe3, 0x35, 0x78, 0xf4, 0xaa, 0xd3, 0x8c, + 0xa9, 0xa0, 0x68, 0xc4, 0x9f, 0x82, 0x6a, 0x8c, 0x86, 0xaf, 0x5c, 0xf0, + 0x4d, 0x67, 0x4a, 0x6b, 0x36, 0x51, 0x5e, 0x43, 0x55, 0xdc, 0xd4, 0xb2, + 0x1a, 0xac, 0xe6, 0xa4, 0x63, 0x18, 0xd4, 0x64, 0xd2, 0xb1, 0xa8, 0xc9, + 0xa9, 0x18, 0xfc, 0xd2, 0x6e, 0xa6, 0x6e, 0xa4, 0xdd, 0x40, 0x12, 0x66, + 0x8d, 0xd5, 0x1e, 0xea, 0x37, 0x50, 0x32, 0x5d, 0xd4, 0x66, 0xa2, 0xdd, + 0x4b, 0x9a, 0x00, 0x7e, 0xea, 0x5d, 0xd5, 0x16, 0xea, 0x5d, 0xd4, 0x08, + 0x97, 0x34, 0xb9, 0xa8, 0x83, 0x52, 0xe6, 0x80, 0x25, 0x06, 0x9c, 0x0d, + 0x44, 0x1a, 0x9c, 0x1a, 0x80, 0x26, 0x06, 0x9c, 0x0d, 0x42, 0x1a, 0x9e, + 0x0d, 0x30, 0x26, 0x06, 0x9e, 0x0d, 0x42, 0x0d, 0x48, 0xa6, 0x98, 0x89, + 0x81, 0xa9, 0x16, 0xa2, 0x53, 0x52, 0x2d, 0x00, 0x4c, 0xb5, 0x32, 0xd4, + 0x2a, 0x6a, 0x45, 0xa0, 0x09, 0x96, 0xa4, 0x5a, 0x89, 0x6a, 0x65, 0xa6, + 0x04, 0x8b, 0x53, 0x28, 0xa8, 0x96, 0xa6, 0x51, 0x48, 0x09, 0x16, 0xa5, + 0x5a, 0x62, 0x0a, 0x95, 0x45, 0x20, 0x24, 0x41, 0x53, 0xa8, 0xa8, 0x94, + 0x54, 0xe9, 0x40, 0x12, 0x28, 0xa9, 0x00, 0xa6, 0x8a, 0x70, 0xa4, 0x03, + 0x80, 0xa7, 0x0a, 0x68, 0xa5, 0xcd, 0x00, 0x38, 0x53, 0x85, 0x33, 0x34, + 0xb9, 0xa4, 0x21, 0xf9, 0xa5, 0x06, 0xa3, 0xcd, 0x2e, 0x69, 0xd8, 0x09, + 0x33, 0x4b, 0x51, 0xee, 0xa7, 0x6e, 0xa4, 0x03, 0xe9, 0x69, 0x81, 0xa8, + 0x2d, 0x40, 0x87, 0xe6, 0x93, 0x22, 0xa2, 0x2f, 0x4d, 0xdd, 0x40, 0xec, + 0x4f, 0x91, 0x46, 0x6a, 0x0d, 0xf4, 0xa1, 0xe8, 0x0b, 0x13, 0x1a, 0x4a, + 0x6e, 0xea, 0x42, 0xd4, 0x00, 0xe2, 0x69, 0xb9, 0xa6, 0x93, 0x49, 0x9a, + 0x00, 0x71, 0x34, 0x99, 0xa6, 0xee, 0xa3, 0x34, 0x0c, 0x5a, 0x33, 0x4d, + 0xcd, 0x19, 0xa0, 0x05, 0xa4, 0xa4, 0xcd, 0x21, 0x34, 0x00, 0x1a, 0x8d, + 0xa9, 0xc4, 0xd4, 0x64, 0xd0, 0x03, 0x18, 0x54, 0x4c, 0x2a, 0x52, 0x6a, + 0x33, 0x40, 0x10, 0xb0, 0xa8, 0x98, 0x54, 0xcd, 0x51, 0x35, 0x00, 0x42, + 0xc2, 0xa2, 0x61, 0x53, 0xb0, 0xa8, 0x5a, 0x98, 0x10, 0x35, 0x44, 0xd5, + 0x33, 0x54, 0x4d, 0x40, 0x11, 0x35, 0x44, 0xd5, 0x2b, 0x54, 0x6d, 0x40, + 0x11, 0x93, 0x8a, 0x69, 0x34, 0xad, 0x51, 0x93, 0x40, 0x03, 0x53, 0x0d, + 0x38, 0x9a, 0x63, 0x50, 0x31, 0x84, 0xd3, 0x09, 0xa7, 0x13, 0x51, 0x93, + 0x48, 0x04, 0x26, 0x98, 0x4d, 0x29, 0x6a, 0x8c, 0xb5, 0x30, 0x17, 0x34, + 0xd2, 0x69, 0x0b, 0x53, 0x4b, 0x50, 0x31, 0xd9, 0xa4, 0xcd, 0x30, 0xb5, + 0x21, 0x34, 0x00, 0xfc, 0xd2, 0x13, 0xf2, 0x93, 0x4c, 0xcd, 0x36, 0x56, + 0xc4, 0x4c, 0x7d, 0x01, 0xa4, 0xc0, 0xe1, 0x3c, 0x3e, 0x9f, 0x69, 0xf1, + 0xd5, 0xf4, 0xdd, 0x42, 0x67, 0xf9, 0xd7, 0xa1, 0x83, 0x5c, 0x1f, 0x81, + 0xd3, 0xcc, 0xd4, 0xf5, 0x3b, 0x93, 0xde, 0x4c, 0x03, 0x5d, 0xce, 0x6a, + 0x9e, 0xc9, 0x0d, 0xee, 0x49, 0x9a, 0x50, 0x6a, 0x2c, 0xd3, 0x81, 0xa4, + 0x04, 0xea, 0x6a, 0x55, 0x35, 0x5d, 0x4d, 0x4a, 0xa6, 0x81, 0x16, 0x10, + 0xd4, 0xe9, 0x55, 0x90, 0xd5, 0x88, 0xcd, 0x52, 0x02, 0xdc, 0x43, 0x35, + 0xa5, 0x6d, 0x1e, 0x48, 0xaa, 0x10, 0x0c, 0x91, 0x5b, 0x36, 0xc9, 0x85, + 0xcd, 0x52, 0x42, 0x65, 0xa8, 0xd7, 0x00, 0x54, 0xb9, 0xa8, 0xc5, 0x3a, + 0xac, 0x91, 0xf9, 0xa2, 0x9b, 0x4b, 0x9a, 0x62, 0x1d, 0x9a, 0x5c, 0xe2, + 0x99, 0x4a, 0x29, 0x00, 0xec, 0xd1, 0x49, 0x9a, 0x33, 0x40, 0x0e, 0xa2, + 0x9b, 0x9a, 0x33, 0x40, 0x0f, 0xa3, 0x34, 0xcc, 0xd2, 0x83, 0x40, 0x87, + 0x66, 0x97, 0x34, 0xcc, 0xd2, 0xd1, 0x60, 0x1d, 0x9a, 0x5c, 0xd3, 0x29, + 0x68, 0xb0, 0x0f, 0xcd, 0x21, 0x3c, 0x52, 0x50, 0x7a, 0x51, 0x60, 0x12, + 0x8a, 0x28, 0xa6, 0x02, 0x52, 0x52, 0xd2, 0x1a, 0x00, 0x4a, 0x28, 0x26, + 0x92, 0x98, 0x05, 0x25, 0x14, 0x99, 0xa4, 0x01, 0x9a, 0x33, 0x4d, 0xa4, + 0xdd, 0x40, 0x87, 0xe7, 0x14, 0x66, 0xa3, 0xdd, 0x4d, 0x2d, 0x40, 0xc9, + 0x09, 0xa8, 0x25, 0x3f, 0x29, 0xa7, 0x16, 0xa8, 0x25, 0x6f, 0x96, 0x80, + 0x32, 0xae, 0xcf, 0x26, 0xb2, 0xa5, 0x35, 0xa5, 0x78, 0x79, 0x35, 0x93, + 0x33, 0x72, 0x6a, 0x19, 0x48, 0x82, 0x43, 0x55, 0x9d, 0xaa, 0x49, 0x1a, + 0xab, 0x31, 0xa8, 0x63, 0x1a, 0xcd, 0x51, 0x93, 0x4a, 0xc6, 0xa2, 0x66, + 0xa9, 0x18, 0xed, 0xd4, 0x6e, 0xa8, 0xf7, 0x52, 0x6e, 0xa0, 0x64, 0xbb, + 0xa9, 0x37, 0x54, 0x5b, 0xa8, 0xdd, 0x40, 0x12, 0xee, 0xa5, 0xdd, 0x50, + 0xee, 0xa3, 0x75, 0x20, 0x26, 0xdd, 0x46, 0xea, 0x88, 0x35, 0x2e, 0xea, + 0x00, 0x94, 0x35, 0x38, 0x35, 0x43, 0xba, 0x94, 0x1a, 0x62, 0x26, 0x0d, + 0x4f, 0x0d, 0x50, 0x03, 0x4f, 0x06, 0x81, 0x93, 0x03, 0x52, 0x03, 0x50, + 0x03, 0x4f, 0x06, 0x80, 0x27, 0x06, 0xa4, 0x53, 0x50, 0x29, 0xa9, 0x14, + 0xd5, 0x08, 0xb2, 0xb5, 0x2a, 0xd4, 0x08, 0x6a, 0x65, 0x34, 0x01, 0x32, + 0xd4, 0xab, 0x50, 0xad, 0x4c, 0xb4, 0xc4, 0x4c, 0xb5, 0x32, 0xd4, 0x29, + 0x53, 0x2d, 0x20, 0x26, 0x41, 0x53, 0x28, 0xa8, 0x96, 0xa6, 0x4a, 0x40, + 0x4a, 0xb5, 0x32, 0xd4, 0x4b, 0x52, 0xa9, 0xa0, 0x09, 0x56, 0xa6, 0x53, + 0x50, 0x2b, 0x54, 0x8a, 0x68, 0x02, 0x70, 0x69, 0xe0, 0xd4, 0x20, 0xd3, + 0x83, 0x50, 0x04, 0xc0, 0xd2, 0xe6, 0xa1, 0xde, 0x3d, 0x68, 0xf3, 0x05, + 0x16, 0x11, 0x36, 0x68, 0xdd, 0x51, 0x6f, 0xf7, 0xa4, 0xde, 0xbe, 0xb4, + 0x01, 0x2e, 0xea, 0x37, 0xd4, 0x5b, 0xbd, 0x01, 0x34, 0x65, 0x89, 0xec, + 0x28, 0x02, 0x5d, 0xc4, 0xd2, 0xe4, 0xfa, 0xd4, 0x3c, 0xff, 0x00, 0x78, + 0xd1, 0x81, 0xdc, 0x9f, 0xce, 0x80, 0x26, 0xdd, 0xef, 0x49, 0xbd, 0x7f, + 0xbc, 0x2a, 0x02, 0x54, 0x76, 0x14, 0xd3, 0x38, 0x14, 0x05, 0x89, 0xcc, + 0xaa, 0x3b, 0xfe, 0x54, 0xdf, 0x39, 0x7f, 0xda, 0xfc, 0xaa, 0xb3, 0x5c, + 0x0a, 0x84, 0xdc, 0xd2, 0x1d, 0x8b, 0xfe, 0x70, 0xf4, 0x6f, 0xca, 0x97, + 0xcd, 0x07, 0xb3, 0x7e, 0x55, 0x9e, 0xb3, 0x93, 0xde, 0xac, 0x24, 0xb4, + 0x05, 0x8b, 0x62, 0x51, 0xe8, 0xdf, 0x95, 0x1e, 0x60, 0x3d, 0x8f, 0xe5, + 0x50, 0x87, 0xc9, 0xa7, 0xe7, 0x3c, 0x0a, 0x2c, 0x03, 0x8c, 0x83, 0xdf, + 0xf2, 0xa0, 0xc8, 0xbf, 0xde, 0x14, 0xdc, 0xf6, 0xa2, 0x8b, 0x00, 0xed, + 0xc0, 0xf7, 0x14, 0xb9, 0xa8, 0xf0, 0x3d, 0x05, 0x1b, 0x47, 0x6e, 0x3e, + 0x94, 0x58, 0x09, 0x33, 0x46, 0x6a, 0x3d, 0xa7, 0x3c, 0x31, 0xa0, 0xee, + 0x1d, 0xc1, 0xa2, 0xc0, 0x3f, 0x3c, 0x53, 0x4b, 0x54, 0x66, 0x46, 0xee, + 0xa7, 0xf0, 0xa6, 0xf9, 0x80, 0x9c, 0x67, 0x1f, 0x5a, 0x04, 0x48, 0x4d, + 0x31, 0x8d, 0x21, 0x6c, 0xf4, 0xa6, 0x93, 0x40, 0xc4, 0x26, 0x98, 0x4d, + 0x29, 0x34, 0xc2, 0x68, 0x01, 0xa4, 0xd4, 0x6c, 0x69, 0xc4, 0xd3, 0x0d, + 0x20, 0x18, 0xd5, 0x13, 0x54, 0x84, 0xd4, 0x6d, 0x40, 0xc8, 0x5a, 0xa2, + 0x61, 0x53, 0x35, 0x42, 0xc6, 0x80, 0x22, 0x61, 0x51, 0x35, 0x4a, 0xc6, + 0xa1, 0x6a, 0x00, 0x8d, 0x8d, 0x42, 0xd5, 0x23, 0x54, 0x4d, 0x40, 0x0d, + 0xce, 0x29, 0x09, 0xcd, 0x35, 0x8d, 0x37, 0x7d, 0x00, 0x23, 0x1a, 0x8d, + 0x8d, 0x39, 0x8d, 0x44, 0xc6, 0x81, 0x88, 0x4d, 0x30, 0x9a, 0x09, 0xa6, + 0x13, 0x40, 0x01, 0x34, 0xd2, 0x68, 0x26, 0x98, 0x5a, 0x80, 0x1c, 0x4d, + 0x37, 0x34, 0xc2, 0xd4, 0x85, 0xa9, 0x81, 0x20, 0x35, 0x0d, 0xe3, 0xec, + 0xb3, 0x99, 0xbd, 0x10, 0xd3, 0x81, 0xaa, 0x9a, 0xbc, 0x9b, 0x34, 0x9b, + 0xa6, 0xf4, 0x8d, 0xbf, 0x95, 0x27, 0xb0, 0xcc, 0x3f, 0x01, 0xa6, 0x34, + 0xeb, 0x89, 0x4f, 0xf1, 0xcc, 0x4d, 0x75, 0xbb, 0xab, 0x9a, 0xf0, 0x6a, + 0x79, 0x7e, 0x1e, 0x84, 0xff, 0x00, 0x78, 0x93, 0xfa, 0xd7, 0x41, 0xba, + 0xa9, 0xee, 0x04, 0xbb, 0xa9, 0xc1, 0xaa, 0x00, 0xd4, 0xe0, 0xd4, 0x80, + 0xb2, 0x1a, 0xa5, 0x46, 0xaa, 0x8a, 0xd5, 0x2a, 0xb5, 0x02, 0x2e, 0xa1, + 0xab, 0x31, 0x1e, 0x6a, 0x8c, 0x6f, 0x57, 0x21, 0x6e, 0x45, 0x52, 0x03, + 0x56, 0xd4, 0x72, 0x2b, 0x66, 0x1e, 0x16, 0xb2, 0x2d, 0x0e, 0x31, 0x5a, + 0x91, 0xbf, 0x15, 0xa2, 0x25, 0x96, 0x81, 0xa7, 0x66, 0xa0, 0x0e, 0x29, + 0x77, 0xe6, 0x99, 0x24, 0xdb, 0xa8, 0xcd, 0x44, 0x1a, 0x9d, 0xba, 0x80, + 0x25, 0xdd, 0x46, 0xea, 0x8b, 0x34, 0xa0, 0xd0, 0x04, 0xb9, 0xa2, 0x98, + 0x29, 0xd4, 0x00, 0xb4, 0xb4, 0xda, 0x75, 0x31, 0x0b, 0x45, 0x14, 0xb4, + 0xc0, 0x29, 0x68, 0xc5, 0x14, 0x00, 0x52, 0x8a, 0x29, 0x45, 0x20, 0x0a, + 0x0d, 0x2d, 0x21, 0xa0, 0x02, 0x94, 0xd2, 0xe3, 0x8a, 0x43, 0x40, 0xc6, + 0xd3, 0x4d, 0x38, 0xd3, 0x4d, 0x02, 0x10, 0xd3, 0x69, 0x69, 0xa6, 0x98, + 0x05, 0x26, 0x69, 0x09, 0xa6, 0x16, 0xa4, 0x21, 0x49, 0xa8, 0xcb, 0x52, + 0x33, 0xe2, 0xa1, 0x69, 0x47, 0xad, 0x03, 0x24, 0x2e, 0x05, 0x34, 0xc9, + 0x55, 0xda, 0x5a, 0x8c, 0xcb, 0xef, 0x45, 0xc0, 0xb4, 0x65, 0xa8, 0x64, + 0x93, 0x22, 0xab, 0x99, 0x7d, 0xea, 0x36, 0x97, 0x8a, 0x00, 0xad, 0x78, + 0x7a, 0xd6, 0x44, 0xc6, 0xb4, 0xae, 0x5b, 0x20, 0xd6, 0x44, 0xed, 0xcd, + 0x43, 0x29, 0x10, 0x48, 0xd5, 0x5d, 0xda, 0x96, 0x47, 0xaa, 0xee, 0xf5, + 0x0c, 0x60, 0xcd, 0x51, 0x96, 0xa4, 0x67, 0xa8, 0xcb, 0x54, 0x8c, 0x71, + 0x6a, 0x42, 0xf5, 0x11, 0x6a, 0x6e, 0xea, 0x06, 0x4d, 0xba, 0x8d, 0xd5, + 0x06, 0xfa, 0x37, 0xd2, 0x02, 0x7d, 0xd4, 0x6f, 0xa8, 0x37, 0xd2, 0x6f, + 0xa0, 0x0b, 0x3b, 0xe9, 0x43, 0xd5, 0x5f, 0x32, 0x98, 0xf7, 0x01, 0x14, + 0xb1, 0xce, 0x05, 0x00, 0x5e, 0xdf, 0x4a, 0x1c, 0x7a, 0xd6, 0x14, 0x9a, + 0xdc, 0x78, 0x28, 0x8a, 0xfb, 0x8f, 0xa2, 0xe6, 0x9f, 0x6e, 0xf3, 0x3f, + 0xcc, 0x77, 0x04, 0x3e, 0xa7, 0x9a, 0x4d, 0xd8, 0x69, 0x5c, 0xdd, 0x12, + 0x2f, 0xad, 0x3c, 0x4c, 0x83, 0xab, 0x0a, 0xc8, 0x0c, 0x07, 0x76, 0x3f, + 0x8d, 0x3c, 0x12, 0x7b, 0x7e, 0x74, 0xae, 0x3b, 0x1b, 0x0b, 0x2a, 0x37, + 0x46, 0x06, 0xa4, 0x56, 0x1e, 0xb5, 0x8a, 0x0f, 0xa7, 0x1f, 0x4a, 0x70, + 0x72, 0x3b, 0x9f, 0xce, 0x9d, 0xc2, 0xc6, 0xe0, 0x61, 0xea, 0x2a, 0x45, + 0x61, 0xea, 0x2b, 0x0d, 0x59, 0xf1, 0xd7, 0x15, 0x22, 0xb3, 0x72, 0x4b, + 0x11, 0x4e, 0xec, 0x2c, 0x8d, 0xe1, 0x22, 0xa8, 0xe5, 0x87, 0xe7, 0x52, + 0xc5, 0x22, 0xbf, 0x46, 0x07, 0xf1, 0xae, 0x75, 0x77, 0xb7, 0x73, 0x8f, + 0x53, 0x52, 0x46, 0x8e, 0x8c, 0x4a, 0x13, 0x93, 0xd4, 0xd1, 0x76, 0x2b, + 0x23, 0xa7, 0x5a, 0x99, 0x41, 0xae, 0x71, 0x27, 0x9d, 0x7f, 0xe5, 0xa7, + 0xe1, 0x53, 0xa5, 0xe5, 0xc2, 0xf4, 0x26, 0x9d, 0xd8, 0x59, 0x1d, 0x12, + 0xd4, 0xcb, 0x58, 0x11, 0xea, 0x57, 0x03, 0xa8, 0xcd, 0x58, 0x8f, 0x56, + 0x93, 0x3c, 0xc7, 0x9a, 0x39, 0x83, 0x94, 0xde, 0x4a, 0x99, 0x4d, 0x63, + 0x47, 0xab, 0x03, 0xf7, 0xa3, 0xab, 0x03, 0x57, 0xb7, 0x00, 0xee, 0x38, + 0x3f, 0x5a, 0x39, 0x85, 0xca, 0xcd, 0x65, 0x35, 0x20, 0x35, 0x4a, 0xd2, + 0xf2, 0x09, 0xc0, 0x58, 0xe5, 0x52, 0x40, 0xf5, 0xab, 0xbb, 0x48, 0xa1, + 0x31, 0x34, 0x48, 0x0d, 0x3c, 0x35, 0x56, 0x32, 0x62, 0x9b, 0xe7, 0x0e, + 0xdc, 0xfd, 0x2a, 0x84, 0x5b, 0xf3, 0x69, 0x0c, 0xbe, 0xf5, 0x58, 0x16, + 0x6f, 0x6a, 0x7a, 0x80, 0x4f, 0x3c, 0x9f, 0x7a, 0x00, 0x94, 0x4b, 0x9e, + 0x80, 0x9a, 0x70, 0x2c, 0x79, 0xc8, 0x03, 0xda, 0xa2, 0x5c, 0xab, 0x71, + 0xd2, 0xa5, 0x54, 0xcd, 0x00, 0x48, 0xa1, 0x41, 0xe7, 0x27, 0xeb, 0x53, + 0xae, 0x31, 0xc0, 0xa8, 0x95, 0x2a, 0x51, 0x45, 0x80, 0x39, 0xa4, 0x39, + 0xcd, 0x48, 0x06, 0x68, 0x22, 0x81, 0x11, 0x10, 0x69, 0xa5, 0x4d, 0x4d, + 0x8a, 0x4c, 0x50, 0x32, 0xbb, 0x29, 0xc5, 0x40, 0xea, 0x6a, 0xf3, 0x0a, + 0x82, 0x44, 0xa9, 0x63, 0x29, 0xb0, 0xa8, 0x89, 0x02, 0xa7, 0x71, 0x8a, + 0xac, 0xec, 0x01, 0xea, 0x29, 0x0c, 0x7a, 0xb8, 0x06, 0xa7, 0x49, 0x2b, + 0x22, 0xe6, 0xf9, 0x6d, 0xca, 0xe4, 0x8e, 0x7d, 0xea, 0x4b, 0x3d, 0x42, + 0x39, 0xe4, 0x2a, 0x08, 0x18, 0xf7, 0xa5, 0x71, 0xd8, 0xdb, 0x47, 0xef, + 0x53, 0x29, 0xe2, 0xa9, 0xc7, 0x22, 0x9f, 0xe2, 0x1f, 0x9d, 0x5a, 0x56, + 0x18, 0xe0, 0x8c, 0xd5, 0x5c, 0x9b, 0x12, 0x8a, 0x5a, 0x45, 0xa5, 0xa6, + 0x20, 0xa5, 0xa3, 0x14, 0x53, 0x01, 0x7a, 0x54, 0x6c, 0xd4, 0xac, 0x6a, + 0x33, 0xcd, 0x16, 0x10, 0x8c, 0xfd, 0x85, 0x37, 0x8c, 0x73, 0x4b, 0x8a, + 0x4d, 0xb4, 0x00, 0xc2, 0x06, 0x70, 0xb9, 0xcf, 0xb5, 0x21, 0x2c, 0x0e, + 0x33, 0x9a, 0x90, 0xf0, 0x38, 0xa8, 0x59, 0xb1, 0x48, 0x62, 0x19, 0x07, + 0x71, 0x8a, 0x69, 0x39, 0xe8, 0x69, 0xa4, 0xfa, 0xf4, 0xf4, 0xa8, 0xce, + 0x49, 0x24, 0x0c, 0x7a, 0x62, 0x8b, 0x00, 0xf2, 0x6a, 0x32, 0x68, 0x25, + 0x97, 0x96, 0x03, 0x15, 0x56, 0x5d, 0x46, 0xd6, 0x2c, 0x87, 0x9d, 0x14, + 0x8e, 0xc4, 0xd4, 0xb7, 0x6d, 0xc6, 0x93, 0x7b, 0x13, 0x93, 0x51, 0x31, + 0xac, 0xe9, 0x3c, 0x43, 0xa5, 0xa1, 0xc3, 0x5d, 0xa5, 0x56, 0x9b, 0xc4, + 0xfa, 0x5a, 0xa9, 0x2b, 0x71, 0xb8, 0xfa, 0x01, 0x50, 0xea, 0xc1, 0x75, + 0x34, 0x54, 0x6a, 0x7f, 0x2b, 0x35, 0x59, 0xaa, 0x26, 0x35, 0x84, 0x3c, + 0x4a, 0x93, 0x0c, 0x44, 0x8b, 0xbb, 0xdc, 0xd4, 0x72, 0x5f, 0xdd, 0xcc, + 0x08, 0xce, 0xdf, 0xa5, 0x0a, 0x49, 0xec, 0x27, 0x06, 0xb7, 0x36, 0x9d, + 0xd5, 0x7a, 0xb0, 0x1f, 0x8d, 0x40, 0xd7, 0x11, 0x7f, 0xcf, 0x45, 0xfc, + 0xeb, 0x02, 0x44, 0x9e, 0x5c, 0xee, 0x73, 0x9f, 0xad, 0x47, 0xe4, 0x1d, + 0xb9, 0xc9, 0xa2, 0xec, 0x2c, 0x8d, 0xa9, 0x2f, 0xad, 0xd7, 0xac, 0x82, + 0xaa, 0xbe, 0xa7, 0x6e, 0x3f, 0x88, 0xfe, 0x55, 0x9f, 0xf6, 0x75, 0x6e, + 0xbc, 0xd3, 0x7c, 0x84, 0xce, 0x31, 0x45, 0xd8, 0x59, 0x16, 0xdb, 0x54, + 0x83, 0xfd, 0xaf, 0xca, 0xa1, 0x93, 0x53, 0x89, 0x46, 0x70, 0xd5, 0x03, + 0x42, 0xb9, 0xc6, 0x39, 0xa4, 0x78, 0x97, 0x68, 0xe0, 0x71, 0x4e, 0xec, + 0x34, 0x26, 0x4d, 0x5a, 0x17, 0x40, 0x48, 0x61, 0xf5, 0x14, 0x7f, 0x68, + 0xc0, 0x7a, 0x13, 0x54, 0x42, 0x2a, 0xb9, 0xc8, 0xe0, 0xd4, 0x73, 0x40, + 0xaa, 0x43, 0x28, 0xa3, 0x50, 0xd0, 0xd0, 0x3a, 0x84, 0x1e, 0xa7, 0xf2, + 0xa6, 0x9b, 0xe8, 0x3f, 0xbf, 0x59, 0xfb, 0x15, 0x97, 0xdc, 0x54, 0x4f, + 0x12, 0xe3, 0x23, 0xa5, 0x2b, 0xb0, 0xd0, 0xd3, 0xfb, 0x5c, 0x4d, 0xd2, + 0x45, 0xa0, 0xcf, 0x19, 0xfe, 0x31, 0xf9, 0xd6, 0x39, 0x88, 0x15, 0x38, + 0x3d, 0x2a, 0x06, 0x8c, 0x9e, 0x8d, 0x83, 0x45, 0xd8, 0x59, 0x1b, 0xa6, + 0x55, 0xec, 0x45, 0x34, 0x48, 0x18, 0xf0, 0x73, 0x5c, 0xfb, 0x34, 0xa8, + 0x70, 0x1c, 0xe7, 0xeb, 0x59, 0x37, 0x5a, 0xb5, 0xfe, 0x99, 0x38, 0x92, + 0x24, 0x33, 0x2b, 0x7d, 0xe5, 0xf4, 0xa7, 0xce, 0x96, 0xe1, 0xcb, 0xd8, + 0xee, 0x37, 0xd6, 0x67, 0x88, 0x25, 0xdb, 0xa1, 0x5d, 0x9f, 0xfa, 0x66, + 0x6b, 0x13, 0x4d, 0xf1, 0x84, 0x57, 0xb2, 0x18, 0xa4, 0x81, 0xe3, 0x71, + 0xd6, 0xa5, 0xf1, 0x06, 0xa5, 0x14, 0xba, 0x1d, 0xc2, 0xa9, 0x39, 0x23, + 0x14, 0x39, 0x2d, 0x86, 0xa2, 0xde, 0xa6, 0xaf, 0x87, 0x57, 0xca, 0xd0, + 0xad, 0x17, 0xfd, 0x80, 0x6b, 0x53, 0x75, 0x64, 0x69, 0x57, 0x10, 0xae, + 0x9b, 0x6e, 0x82, 0x45, 0xe2, 0x30, 0x3f, 0x4a, 0xd0, 0x12, 0xa9, 0xe8, + 0xc0, 0xfe, 0x35, 0x4d, 0xa6, 0xc4, 0xd3, 0x2c, 0x6e, 0xa7, 0x06, 0xaa, + 0xe1, 0xa9, 0xc1, 0xa8, 0x11, 0x64, 0x35, 0x48, 0xad, 0x55, 0x43, 0x54, + 0x8a, 0xf4, 0xc4, 0x5e, 0x8d, 0xb9, 0xab, 0xd0, 0x1e, 0x45, 0x65, 0xc6, + 0xd5, 0x7e, 0x07, 0xaa, 0x42, 0x37, 0x2d, 0xdc, 0x00, 0x2a, 0xea, 0x4a, + 0x3d, 0x6b, 0x22, 0x29, 0x30, 0x2a, 0xc0, 0x9b, 0x03, 0xad, 0x5a, 0x62, + 0x35, 0x04, 0xbe, 0xf4, 0xf5, 0x7a, 0xc4, 0x7d, 0x46, 0x28, 0x8f, 0xcc, + 0xe3, 0x3e, 0xd5, 0x19, 0xd7, 0xe3, 0x51, 0xf2, 0xa3, 0x1a, 0xc2, 0xa6, + 0x32, 0x85, 0x3d, 0x25, 0x24, 0x52, 0xa7, 0x27, 0xb2, 0x3a, 0x30, 0xf4, + 0xe0, 0xf5, 0xcb, 0xff, 0x00, 0xc2, 0x46, 0x73, 0xc4, 0x3f, 0xad, 0x4b, + 0x17, 0x88, 0xd4, 0x9c, 0x3c, 0x44, 0x7d, 0x0d, 0x67, 0x1c, 0xc7, 0x0d, + 0x27, 0x65, 0x21, 0xba, 0x33, 0x5d, 0x0e, 0x98, 0x35, 0x3c, 0x1a, 0xcd, + 0xb4, 0xd4, 0x60, 0xba, 0xc7, 0x96, 0xfc, 0xfa, 0x1e, 0xb5, 0x7c, 0x1a, + 0xec, 0x8c, 0xa3, 0x25, 0x78, 0xbb, 0x99, 0xb4, 0xd6, 0xe4, 0xa2, 0x9c, + 0x29, 0x80, 0xd3, 0xc5, 0x50, 0x87, 0x0a, 0x5a, 0x41, 0x4b, 0x4c, 0x05, + 0x14, 0xec, 0x52, 0x01, 0x4e, 0x14, 0x08, 0x4c, 0x52, 0xe2, 0x94, 0x52, + 0xe2, 0x90, 0xc4, 0xc5, 0x38, 0x0a, 0x00, 0xa7, 0x01, 0x40, 0x09, 0x8a, + 0x69, 0x1c, 0x53, 0xf1, 0x48, 0x47, 0x14, 0x80, 0x76, 0x38, 0xa6, 0x9a, + 0x92, 0x26, 0x49, 0xd7, 0x28, 0x1c, 0x71, 0x9f, 0x99, 0x71, 0xfc, 0xe9, + 0xc6, 0x1f, 0x7f, 0xd2, 0xa2, 0x33, 0x4f, 0x62, 0x9c, 0x5a, 0xdc, 0xae, + 0x69, 0x8d, 0x56, 0x0c, 0x2d, 0x8e, 0xa2, 0xa3, 0x68, 0x9b, 0xdb, 0x1f, + 0x5a, 0xb4, 0xd1, 0x36, 0x64, 0x26, 0x9a, 0x69, 0xe5, 0x4f, 0xa5, 0x30, + 0xf1, 0xd6, 0x9d, 0xc5, 0x62, 0x36, 0xa8, 0x24, 0x7c, 0x54, 0x8e, 0xc6, + 0xaa, 0x4a, 0x68, 0x02, 0x39, 0x24, 0x35, 0x56, 0x49, 0x0f, 0xad, 0x3e, + 0x46, 0xaa, 0xae, 0xd5, 0x23, 0x11, 0xa6, 0x3e, 0xb5, 0x11, 0xb8, 0x3d, + 0xe9, 0x8e, 0xd5, 0x5d, 0x9e, 0x90, 0x16, 0x4d, 0xc5, 0x30, 0xdc, 0x7b, + 0xd5, 0x27, 0x99, 0x57, 0xbd, 0x42, 0x6e, 0x45, 0x17, 0x1d, 0x8b, 0x53, + 0x4d, 0x91, 0x59, 0x73, 0xc9, 0x92, 0x6a, 0x49, 0x2e, 0x41, 0x15, 0x4a, + 0x59, 0xd7, 0x9c, 0x9a, 0x4d, 0x81, 0x0c, 0x8f, 0x50, 0x33, 0xd3, 0x66, + 0xbb, 0x84, 0x1e, 0x64, 0x5f, 0xce, 0xab, 0x1b, 0xa8, 0x98, 0xf0, 0xea, + 0x7f, 0x1a, 0x86, 0x35, 0x24, 0x4e, 0xcf, 0x51, 0x96, 0xa8, 0xcc, 0x80, + 0xf4, 0x35, 0x1b, 0x4a, 0xaa, 0x39, 0x20, 0x52, 0x28, 0x94, 0xb5, 0x34, + 0xb7, 0xbd, 0x42, 0x24, 0x67, 0x1f, 0x24, 0x6c, 0xc3, 0xd7, 0x18, 0x15, + 0x4e, 0xe3, 0x50, 0x8a, 0x03, 0x89, 0x6e, 0x22, 0x43, 0xfd, 0xd5, 0x3b, + 0x8d, 0x4d, 0xc7, 0x63, 0x43, 0xcc, 0xa6, 0x34, 0xca, 0xbd, 0x58, 0x0f, + 0xc6, 0xb0, 0xe7, 0xd5, 0xe2, 0xce, 0x10, 0x4b, 0x27, 0xb9, 0x38, 0x15, + 0x07, 0xf6, 0xa4, 0xa4, 0x1d, 0x91, 0xc6, 0x9f, 0x86, 0x4d, 0x4b, 0x91, + 0x4a, 0x07, 0x40, 0x6e, 0x93, 0xb1, 0x2c, 0x7d, 0x85, 0x34, 0xdd, 0x10, + 0x3f, 0xd5, 0x91, 0xee, 0x4e, 0x2b, 0x9b, 0x92, 0xfa, 0xe9, 0x8e, 0x1a, + 0x76, 0xc1, 0xec, 0x38, 0xac, 0xf7, 0x79, 0x04, 0xd8, 0x79, 0x19, 0x95, + 0xbb, 0x93, 0x49, 0xcc, 0xa5, 0x03, 0xad, 0x7b, 0xf5, 0x5e, 0xb2, 0x42, + 0xbf, 0x57, 0xaa, 0x4f, 0xad, 0x6f, 0x9b, 0xc9, 0x03, 0x72, 0x74, 0x2e, + 0x07, 0x02, 0xb9, 0xe8, 0xd7, 0x64, 0xe4, 0x13, 0x90, 0xd4, 0x93, 0x5c, + 0x2c, 0x72, 0xac, 0x58, 0xf9, 0x98, 0x8e, 0x45, 0x09, 0xdd, 0x89, 0xab, + 0x23, 0xa1, 0x8e, 0xf1, 0x62, 0xbb, 0x11, 0x31, 0x28, 0xad, 0xdf, 0x1d, + 0x6b, 0x7b, 0x68, 0x58, 0xc0, 0x1c, 0x8a, 0xe3, 0xb5, 0x04, 0x79, 0xf5, + 0x58, 0x21, 0x55, 0x25, 0x41, 0x5c, 0x91, 0xda, 0xbb, 0x16, 0x00, 0x2a, + 0xae, 0x78, 0x02, 0x86, 0xb5, 0x04, 0xf4, 0x13, 0x20, 0x74, 0x14, 0xf0, + 0x09, 0xe4, 0xd4, 0x7b, 0x95, 0x05, 0x26, 0xe6, 0x73, 0xc7, 0x4a, 0xb2, + 0x49, 0xc6, 0x0f, 0x00, 0xd3, 0xb7, 0x2a, 0xf4, 0xe4, 0xd4, 0x01, 0x58, + 0x70, 0x2a, 0x54, 0x40, 0x3a, 0xf5, 0xa0, 0x09, 0x15, 0x99, 0xba, 0x55, + 0x85, 0x50, 0xaa, 0x33, 0xd6, 0xa2, 0x40, 0x49, 0x00, 0x0c, 0x0a, 0x97, + 0x70, 0xdd, 0xeb, 0x4c, 0x44, 0x8b, 0x52, 0xaf, 0x35, 0x0a, 0x9f, 0x5a, + 0x90, 0x49, 0x8a, 0x60, 0x4e, 0xab, 0x52, 0x02, 0xa3, 0xa9, 0xaa, 0xbe, + 0x61, 0x34, 0xe5, 0x0c, 0xd4, 0x01, 0x67, 0xce, 0x45, 0xa5, 0x17, 0x0c, + 0x78, 0x45, 0xc5, 0x46, 0x91, 0x0e, 0xf5, 0x91, 0xac, 0xf8, 0x8a, 0x1d, + 0x2d, 0xbc, 0x98, 0x93, 0xcc, 0x9f, 0x1d, 0x3b, 0x0a, 0x69, 0x37, 0xa2, + 0x13, 0x69, 0x6e, 0x6e, 0x85, 0x91, 0xfe, 0xf3, 0x60, 0x52, 0x33, 0x59, + 0xc3, 0xfe, 0xba, 0x64, 0x07, 0xfd, 0xa6, 0xaf, 0x39, 0xb9, 0xf1, 0x06, + 0xa1, 0x76, 0xc4, 0xb4, 0xec, 0xaa, 0x7f, 0x85, 0x78, 0x15, 0x45, 0xe6, + 0x91, 0xce, 0x5d, 0xd9, 0x8f, 0xb9, 0xad, 0x55, 0x07, 0xd5, 0x99, 0xba, + 0xcb, 0xa1, 0xea, 0x3f, 0xda, 0xfa, 0x62, 0x36, 0x05, 0xdc, 0x6a, 0x7d, + 0x8d, 0x5d, 0xb6, 0xf1, 0x04, 0x59, 0xdb, 0x06, 0xa0, 0x18, 0xfa, 0x6e, + 0xcd, 0x78, 0xe9, 0x34, 0xe8, 0x9d, 0x95, 0xb2, 0x09, 0x07, 0xd4, 0x53, + 0x74, 0x17, 0x71, 0x7b, 0x63, 0xdc, 0xa3, 0xd5, 0xa7, 0x63, 0x97, 0x45, + 0x91, 0x7f, 0x2a, 0xbd, 0x0e, 0xa5, 0x6e, 0xd8, 0xdc, 0x1a, 0x23, 0xee, + 0x38, 0xaf, 0x1e, 0xd3, 0x3c, 0x41, 0x7d, 0x64, 0xca, 0x04, 0xa5, 0xe3, + 0xee, 0xad, 0xcd, 0x77, 0xba, 0x46, 0xa1, 0x6f, 0xab, 0xc1, 0xb9, 0x5b, + 0x0e, 0x3e, 0xf2, 0x1e, 0xd5, 0x94, 0xa0, 0xe2, 0x69, 0x19, 0x29, 0x1d, + 0xa4, 0x4c, 0x93, 0x0c, 0xa4, 0x8a, 0xdf, 0x43, 0x56, 0x51, 0x3d, 0x6b, + 0x97, 0x11, 0x24, 0x7c, 0xab, 0x95, 0x3e, 0xc6, 0xa7, 0x8b, 0x57, 0x9e, + 0x06, 0xda, 0x5b, 0xcd, 0x5f, 0x7e, 0xb4, 0x94, 0x86, 0xe2, 0x74, 0xc1, + 0x05, 0x48, 0x05, 0x65, 0xda, 0x6b, 0x11, 0x4c, 0x76, 0xc8, 0x8d, 0x11, + 0xff, 0x00, 0x6b, 0xa5, 0x58, 0x93, 0x55, 0xb6, 0x88, 0x72, 0xf9, 0xfa, + 0x50, 0xe4, 0x96, 0xe2, 0x51, 0x6f, 0x62, 0xf6, 0x29, 0xe3, 0xd6, 0xb9, + 0xab, 0xcf, 0x16, 0x5a, 0xda, 0x83, 0x96, 0x8d, 0x3d, 0xd9, 0xab, 0x9b, + 0xbe, 0xf8, 0x85, 0x12, 0x92, 0x23, 0x99, 0x9b, 0xd9, 0x07, 0x15, 0x9c, + 0xab, 0xc6, 0x26, 0x8a, 0x8c, 0x99, 0xe9, 0x0d, 0x34, 0x71, 0x8c, 0xbb, + 0xaa, 0xfd, 0x4d, 0x56, 0x9b, 0x59, 0xb0, 0x85, 0xb6, 0xbd, 0xc2, 0xee, + 0xf4, 0x15, 0xe5, 0x23, 0xc5, 0x17, 0xba, 0x96, 0xe3, 0x6e, 0xaa, 0xaa, + 0x0f, 0x2c, 0xed, 0xd3, 0xf0, 0xa8, 0x5a, 0xe2, 0xe6, 0x41, 0x99, 0xaf, + 0x02, 0x9f, 0xf6, 0x05, 0x47, 0xb6, 0x94, 0xb6, 0x2b, 0xd9, 0x45, 0x6e, + 0x7a, 0x8c, 0xbe, 0x24, 0xb2, 0x8f, 0xa6, 0x48, 0xf7, 0xe2, 0xb3, 0x6e, + 0x3c, 0x65, 0x6b, 0x17, 0x43, 0x18, 0x3e, 0xed, 0x5e, 0x6d, 0x34, 0xb1, + 0xf4, 0xdf, 0x24, 0xcd, 0xee, 0xd5, 0x51, 0x8b, 0x12, 0x7e, 0x44, 0x41, + 0xee, 0x68, 0xbc, 0xdf, 0x50, 0xb4, 0x16, 0xc8, 0xf4, 0x69, 0xbc, 0x68, + 0x5a, 0x1f, 0x35, 0x19, 0x7c, 0xbc, 0xed, 0xca, 0xae, 0x79, 0xaa, 0x8f, + 0xe2, 0x6b, 0x99, 0xa2, 0x79, 0x14, 0xca, 0x42, 0xf6, 0xc6, 0x33, 0x5c, + 0x75, 0xa5, 0xdb, 0x5b, 0xa7, 0x94, 0xc1, 0x5e, 0x09, 0x0f, 0x4c, 0x70, + 0x0f, 0xad, 0x2c, 0xfa, 0x95, 0xdc, 0x84, 0x47, 0x10, 0x08, 0x83, 0xb0, + 0x14, 0xac, 0xde, 0xec, 0x39, 0xbb, 0x23, 0xa1, 0x5f, 0x11, 0x5c, 0x5c, + 0xae, 0x63, 0x8d, 0xce, 0x0e, 0x0e, 0x5a, 0x9a, 0xda, 0x85, 0xe3, 0x8e, + 0x8a, 0xbf, 0x56, 0xae, 0x3a, 0x19, 0xaf, 0xa1, 0xbc, 0x9a, 0x3d, 0xe0, + 0x2b, 0xfc, 0xe3, 0xfa, 0xd4, 0xea, 0xd7, 0x92, 0xc4, 0xd2, 0x6e, 0x24, + 0x0e, 0x80, 0x1e, 0xb4, 0x72, 0x0b, 0x9d, 0x9a, 0x57, 0x69, 0x7d, 0x2b, + 0xf9, 0x8f, 0x76, 0x06, 0xd3, 0x91, 0x8e, 0xd4, 0xd8, 0xef, 0x2f, 0xad, + 0x66, 0x45, 0x5b, 0x94, 0x70, 0xe3, 0x3d, 0x2a, 0xac, 0x51, 0xc9, 0x35, + 0xbe, 0xed, 0xfc, 0x1e, 0x9f, 0x35, 0x53, 0x96, 0xd6, 0x58, 0xe6, 0x4c, + 0x3e, 0x78, 0x3d, 0xe9, 0x7b, 0x34, 0x3f, 0x68, 0xee, 0x76, 0x6b, 0xaa, + 0xdc, 0x2a, 0x8c, 0xac, 0x79, 0xff, 0x00, 0x7a, 0x9d, 0xfd, 0xbb, 0x70, + 0x8c, 0x00, 0x51, 0x9f, 0x69, 0x2b, 0x8b, 0x02, 0xe2, 0x57, 0x64, 0x52, + 0x48, 0x5e, 0x09, 0xdd, 0x52, 0xa4, 0x53, 0x60, 0xa8, 0x98, 0xa9, 0x1d, + 0x72, 0x69, 0xf2, 0x21, 0x7b, 0x47, 0xdc, 0xec, 0x5b, 0xc5, 0x72, 0xda, + 0xa1, 0x79, 0x9d, 0x91, 0x7d, 0x77, 0x66, 0xa5, 0xb6, 0xf1, 0xd2, 0xc8, + 0x03, 0x0b, 0xa3, 0x8f, 0x7a, 0xf3, 0xbd, 0x4d, 0xa6, 0x86, 0x20, 0x24, + 0x97, 0x72, 0x9e, 0x95, 0x97, 0xf6, 0x82, 0xa1, 0x10, 0x64, 0x93, 0xcd, + 0x67, 0xf6, 0xf9, 0x51, 0xa7, 0x37, 0xbb, 0x76, 0x7b, 0x64, 0x3e, 0x33, + 0x0d, 0x81, 0xe6, 0x23, 0x67, 0xda, 0xad, 0x8f, 0x17, 0x28, 0xdb, 0x98, + 0x37, 0xe7, 0x8f, 0x94, 0xe3, 0x15, 0xe4, 0x1a, 0x4d, 0xf1, 0x86, 0x4d, + 0xd2, 0x44, 0x4f, 0x18, 0x04, 0xf6, 0xad, 0x51, 0xa9, 0x4a, 0x09, 0xc2, + 0xf3, 0xd7, 0xad, 0x6a, 0x93, 0x5d, 0x4c, 0xdc, 0x93, 0xdd, 0x1e, 0xb1, + 0x1f, 0x88, 0x6d, 0x24, 0xc6, 0x43, 0x2e, 0x7d, 0xf3, 0x56, 0xa3, 0xd4, + 0x6d, 0x66, 0xfb, 0xb2, 0x8f, 0xc7, 0x8a, 0xf2, 0x25, 0xd6, 0x5d, 0x71, + 0xe6, 0x64, 0x55, 0x84, 0xf1, 0x02, 0x02, 0x06, 0x48, 0xfa, 0x1c, 0x55, + 0x73, 0x4d, 0x75, 0x15, 0xa0, 0xfa, 0x1e, 0xba, 0xac, 0x8f, 0xf7, 0x5c, + 0x1f, 0xa1, 0xa7, 0x1e, 0x2b, 0xca, 0xe2, 0xf1, 0x42, 0xc6, 0xca, 0x82, + 0xe1, 0x95, 0xd8, 0xf0, 0xa6, 0xb6, 0xad, 0xfc, 0x4f, 0x70, 0x80, 0x65, + 0x83, 0x8f, 0x63, 0x9a, 0x7e, 0xd1, 0xf5, 0x42, 0xe4, 0x4f, 0x66, 0x76, + 0xac, 0x6a, 0x23, 0x5c, 0xfc, 0x1e, 0x29, 0x8e, 0x51, 0x82, 0xb9, 0x23, + 0xa8, 0x15, 0x6d, 0xb5, 0x7d, 0xca, 0x3c, 0xa8, 0x98, 0x93, 0xd7, 0x77, + 0x00, 0x53, 0x55, 0x22, 0xc4, 0xe9, 0xc9, 0x1a, 0x67, 0x0a, 0xa5, 0x8f, + 0x00, 0x75, 0x35, 0xcd, 0x6a, 0x7e, 0x2e, 0xb5, 0xb4, 0x2d, 0x1d, 0xb2, + 0xf9, 0xb2, 0x0e, 0xfd, 0xa9, 0x75, 0x2b, 0xbb, 0xa9, 0x74, 0xf9, 0xc3, + 0x49, 0xb4, 0x05, 0x3c, 0x2f, 0x15, 0xe7, 0xae, 0xdc, 0x9a, 0xe5, 0xc5, + 0xe2, 0x25, 0x4d, 0x25, 0x1e, 0xa7, 0x6e, 0x0f, 0x0d, 0x1a, 0x97, 0x94, + 0xba, 0x1a, 0x1a, 0x87, 0x88, 0x75, 0x0b, 0xd7, 0x25, 0xa7, 0x64, 0x5f, + 0xee, 0xa7, 0x15, 0x90, 0xf2, 0xbc, 0x87, 0x2e, 0xec, 0xc7, 0xdc, 0xe6, + 0x86, 0x35, 0x19, 0x6a, 0xf1, 0xea, 0x55, 0x94, 0x9e, 0xac, 0xf5, 0xa3, + 0x08, 0xc5, 0x5a, 0x28, 0x09, 0xa3, 0x34, 0xcc, 0xd1, 0xba, 0xb1, 0xb9, + 0x44, 0xa0, 0x91, 0xc8, 0x38, 0x35, 0x7e, 0xd7, 0x56, 0x96, 0x0c, 0x2b, + 0xfc, 0xeb, 0xfa, 0xd6, 0x68, 0x6a, 0x4c, 0xd6, 0xd0, 0xab, 0x2a, 0x6e, + 0xf1, 0x66, 0x73, 0xa7, 0x19, 0xab, 0x49, 0x1d, 0x75, 0xb5, 0xe4, 0x57, + 0x71, 0xef, 0x43, 0xf5, 0x1e, 0x95, 0x21, 0xc7, 0x23, 0xd6, 0xb9, 0xad, + 0x22, 0x56, 0x4b, 0xe0, 0xa0, 0xf0, 0xc3, 0x9a, 0xe8, 0xc9, 0xaf, 0x6b, + 0x0f, 0x57, 0xda, 0xc2, 0xec, 0xf1, 0xb1, 0x14, 0x95, 0x39, 0xd9, 0x0d, + 0x53, 0x4d, 0x3f, 0x78, 0x9a, 0x0a, 0xb6, 0x7d, 0xa8, 0x6d, 0xbd, 0xdb, + 0xf2, 0xad, 0x8c, 0x06, 0x31, 0xe6, 0x9a, 0x4e, 0x41, 0x1d, 0xf1, 0xc5, + 0x0c, 0xc3, 0xf8, 0x45, 0x34, 0x3f, 0x34, 0xc0, 0xae, 0x49, 0x64, 0xcf, + 0x7a, 0x55, 0x70, 0x57, 0x0d, 0x4c, 0x39, 0x59, 0x59, 0x0f, 0x4e, 0xa2, + 0xa2, 0xc9, 0x53, 0x40, 0x04, 0x8b, 0xe5, 0xb6, 0x41, 0xe0, 0xd3, 0x32, + 0x0e, 0x45, 0x4c, 0x18, 0x3a, 0xe0, 0xd5, 0x77, 0x52, 0x8d, 0x40, 0x0c, + 0xdd, 0xb1, 0xfa, 0x70, 0x69, 0xae, 0x9d, 0xc0, 0xa7, 0xba, 0xef, 0x5f, + 0x7a, 0x8b, 0x79, 0x5e, 0xb4, 0xec, 0x22, 0x29, 0x86, 0x57, 0x70, 0x1c, + 0x8e, 0xb5, 0x8b, 0xa9, 0x96, 0x82, 0x65, 0x7c, 0x8d, 0xac, 0xa7, 0x19, + 0x15, 0xbe, 0xcb, 0xb8, 0x64, 0x77, 0xeb, 0x59, 0x7a, 0xbc, 0x1e, 0x66, + 0x9a, 0xcd, 0x8e, 0x53, 0x9a, 0xce, 0xa4, 0x6e, 0x8b, 0x83, 0x38, 0x19, + 0xae, 0xda, 0x2d, 0x41, 0x66, 0x8c, 0x64, 0xee, 0xc9, 0x5e, 0x99, 0xa9, + 0xb5, 0x6d, 0x6e, 0x4b, 0xe8, 0x95, 0x16, 0x0f, 0x25, 0x7f, 0x8b, 0x0d, + 0xd6, 0xa3, 0xbb, 0xb7, 0x51, 0x7e, 0xca, 0xa4, 0xb6, 0x39, 0x06, 0xa0, + 0xb8, 0x45, 0xf2, 0xf2, 0x7a, 0xe6, 0xab, 0x95, 0x68, 0x2b, 0xb2, 0x68, + 0x35, 0x6b, 0xd4, 0x45, 0x45, 0x9d, 0x80, 0x1d, 0x2b, 0x56, 0x0f, 0x13, + 0x5c, 0x2a, 0xaa, 0xb1, 0x6c, 0x83, 0x82, 0xd8, 0xe2, 0xb1, 0x60, 0x76, + 0xb7, 0x72, 0xe8, 0xa9, 0x9f, 0xf6, 0x86, 0x68, 0x9e, 0x72, 0xf2, 0x96, + 0x31, 0x80, 0x4f, 0x65, 0x18, 0x14, 0x38, 0xdf, 0xa0, 0xd4, 0x9a, 0x7b, + 0x9e, 0x85, 0x6b, 0xa9, 0x99, 0x11, 0x4c, 0x77, 0xd0, 0xb1, 0xc7, 0x42, + 0xd8, 0xfe, 0x75, 0x7e, 0x3b, 0xfb, 0xb1, 0x8c, 0xc4, 0x24, 0x1e, 0xab, + 0xcf, 0xf2, 0xaf, 0x30, 0x4c, 0x30, 0x04, 0x13, 0x9e, 0xf5, 0x6a, 0x2b, + 0xbb, 0x88, 0x30, 0x62, 0x9a, 0x44, 0xc7, 0xa3, 0x54, 0xf2, 0xdb, 0x61, + 0xf3, 0x5f, 0x73, 0xd3, 0x06, 0xac, 0x88, 0x40, 0x99, 0x1a, 0x3c, 0xfa, + 0x8a, 0xbd, 0x05, 0xec, 0x12, 0xe3, 0x6c, 0xaa, 0x7f, 0x1a, 0xf3, 0x58, + 0x7c, 0x4d, 0xa8, 0x46, 0xb8, 0x92, 0x45, 0x95, 0x3a, 0x11, 0x22, 0xe7, + 0x35, 0x7e, 0xdb, 0xc4, 0xd6, 0x52, 0x60, 0x5c, 0x59, 0x34, 0x67, 0xfb, + 0xf0, 0xb7, 0xf4, 0xa6, 0x9c, 0x85, 0xee, 0x9e, 0x95, 0x1b, 0x67, 0xa1, + 0xab, 0xd6, 0xf9, 0xcd, 0x70, 0x76, 0x5a, 0xad, 0xb4, 0xb8, 0xfb, 0x1e, + 0xa8, 0xa1, 0xbf, 0xb9, 0x3f, 0xcb, 0x5d, 0x0d, 0xae, 0xab, 0x7d, 0x02, + 0xe6, 0x7b, 0x43, 0x22, 0x0f, 0xe3, 0x8f, 0x91, 0x56, 0xa7, 0x6d, 0xd1, + 0x3c, 0xb7, 0xd9, 0x9d, 0x3b, 0xce, 0x20, 0x8b, 0x79, 0xaa, 0x12, 0xde, + 0xcb, 0x2f, 0xf1, 0x60, 0x7a, 0x0a, 0xa8, 0xda, 0xc5, 0xb5, 0xfc, 0x21, + 0x22, 0x24, 0x3e, 0x79, 0x52, 0x39, 0xa0, 0x1e, 0x2b, 0xc2, 0xcd, 0xb1, + 0x73, 0x53, 0x54, 0xe0, 0xf4, 0xb1, 0xd3, 0x42, 0x9a, 0xb5, 0xda, 0xd4, + 0x93, 0x3c, 0xd1, 0x9a, 0x66, 0x69, 0x0b, 0x57, 0x87, 0x7b, 0xb3, 0xa0, + 0x71, 0x6a, 0x55, 0x6e, 0x6a, 0x22, 0xd4, 0x81, 0xb9, 0xad, 0xa9, 0xee, + 0x44, 0x8d, 0x5b, 0x49, 0x0a, 0xb0, 0x20, 0xe0, 0xd7, 0x4f, 0xa7, 0xdd, + 0xbc, 0x98, 0x47, 0x39, 0xf4, 0x35, 0xc8, 0x5b, 0x3f, 0xcc, 0x2b, 0xa5, + 0xd2, 0x9b, 0x33, 0x25, 0x7a, 0xf8, 0x5a, 0xd2, 0xa6, 0xd3, 0x8b, 0x39, + 0xa7, 0x14, 0xce, 0x81, 0x4d, 0x4a, 0xb5, 0x10, 0xeb, 0x52, 0xad, 0x7d, + 0x22, 0x39, 0x09, 0x05, 0x3b, 0x14, 0xd1, 0x4f, 0x02, 0x98, 0x0a, 0x05, + 0x28, 0x14, 0xa0, 0x7b, 0x53, 0xc4, 0x6c, 0x7a, 0x03, 0x45, 0xc2, 0xc2, + 0x01, 0x4b, 0x8a, 0x90, 0x44, 0xde, 0x94, 0xef, 0x28, 0xfb, 0x52, 0xe6, + 0x45, 0x58, 0x88, 0x0a, 0x70, 0x15, 0x27, 0x94, 0x69, 0xc2, 0x13, 0x49, + 0xc9, 0x05, 0x88, 0xb1, 0x4d, 0x23, 0x8a, 0xb3, 0xe4, 0x13, 0xde, 0xa1, + 0x98, 0x2c, 0x2a, 0x4b, 0xee, 0x20, 0x0c, 0xfc, 0xab, 0x9a, 0x9e, 0x74, + 0xb7, 0x1a, 0x8b, 0x7b, 0x13, 0x71, 0xed, 0x4d, 0x20, 0x7b, 0x56, 0x0d, + 0xbd, 0xd4, 0xf6, 0x90, 0x84, 0x5d, 0xac, 0xbd, 0x7e, 0x61, 0x9a, 0x56, + 0xd6, 0xa6, 0x4e, 0xb0, 0x46, 0x7f, 0x4a, 0x94, 0xc9, 0x69, 0x9b, 0x84, + 0x0a, 0x61, 0x51, 0xef, 0x58, 0x0d, 0xe2, 0x32, 0xbd, 0x6d, 0x47, 0xe0, + 0xff, 0x00, 0xfd, 0x6a, 0x84, 0xf8, 0xaa, 0x25, 0xfb, 0xf6, 0xb2, 0x0f, + 0xa3, 0xd5, 0x5d, 0x13, 0x66, 0x74, 0x2c, 0x99, 0x18, 0xcf, 0xe9, 0x54, + 0xe4, 0xb2, 0x56, 0x72, 0xc0, 0x81, 0x91, 0xe9, 0xfe, 0x15, 0x8b, 0x2f, + 0x8c, 0x2d, 0xd7, 0xa5, 0xbc, 0xff, 0x00, 0xf7, 0xd0, 0xac, 0xf7, 0xf1, + 0x9a, 0x29, 0x6f, 0xdd, 0xdc, 0x00, 0x7a, 0x60, 0xa9, 0xc7, 0xe9, 0x45, + 0xd0, 0x7b, 0xc6, 0xfc, 0xb6, 0x57, 0x2b, 0x9f, 0x2a, 0x4c, 0x8f, 0xf7, + 0x8f, 0xf5, 0xac, 0xdb, 0x8f, 0xb7, 0xc3, 0x9c, 0xc6, 0xe4, 0x7a, 0xed, + 0x07, 0xf9, 0x55, 0x05, 0xf1, 0x8d, 0xb9, 0xfb, 0xd7, 0x13, 0xa1, 0xff, + 0x00, 0x6a, 0x35, 0x3f, 0xd2, 0x9e, 0x3c, 0x57, 0x13, 0x7d, 0xdb, 0xd8, + 0x0f, 0xfb, 0xe8, 0x57, 0xfa, 0xd2, 0xd0, 0xab, 0xbe, 0xa4, 0x32, 0x6a, + 0x2c, 0xa7, 0x0e, 0x83, 0x3e, 0xff, 0x00, 0x2f, 0xf3, 0xa8, 0x24, 0xd4, + 0x17, 0x1c, 0xa3, 0x28, 0xf5, 0xeb, 0x56, 0xe4, 0xd7, 0x61, 0x9c, 0x61, + 0xe3, 0xb7, 0x94, 0x7f, 0xb2, 0xe0, 0xff, 0x00, 0x3a, 0xa1, 0x3c, 0xda, + 0x73, 0x9d, 0xdf, 0x67, 0x92, 0x32, 0x7a, 0x98, 0xdb, 0x1f, 0xd6, 0x8b, + 0xbe, 0xe1, 0x75, 0xd8, 0x85, 0xb5, 0x08, 0x5c, 0x7c, 0xb2, 0x29, 0xfc, + 0x6a, 0xac, 0xb7, 0x4c, 0xdd, 0x0f, 0x15, 0xe7, 0x9a, 0xee, 0xa2, 0xd6, + 0x5a, 0xcd, 0xc4, 0x51, 0x82, 0x63, 0x0d, 0x95, 0x39, 0xc3, 0x62, 0xaa, + 0x47, 0xe2, 0x29, 0xd7, 0xee, 0xdd, 0x48, 0x87, 0xd1, 0xf9, 0x14, 0xb9, + 0x99, 0x56, 0x47, 0xa2, 0x34, 0x84, 0xf7, 0xa8, 0xcc, 0x95, 0xc5, 0x47, + 0xe2, 0xab, 0xd4, 0xe5, 0x91, 0x26, 0x5f, 0x55, 0x35, 0x6a, 0x1f, 0x18, + 0xdb, 0x3b, 0x05, 0x96, 0x27, 0x46, 0xfa, 0x51, 0xcc, 0x83, 0x94, 0xea, + 0x37, 0x17, 0x38, 0xcd, 0x66, 0xde, 0xb1, 0x04, 0x8c, 0xf1, 0x4b, 0xa7, + 0x6a, 0xb0, 0x5f, 0xb9, 0xf2, 0x0b, 0x10, 0x07, 0x27, 0x1c, 0x54, 0x77, + 0xc7, 0x93, 0x5a, 0x46, 0xd6, 0x38, 0xeb, 0xc9, 0xf3, 0x58, 0xc8, 0x98, + 0xf2, 0x6a, 0x02, 0x6a, 0x49, 0x8f, 0x26, 0xab, 0x93, 0x43, 0x31, 0x44, + 0xcb, 0x3c, 0x88, 0x30, 0x18, 0xe2, 0x99, 0x75, 0xab, 0xc9, 0x69, 0x6d, + 0x98, 0x2d, 0xe2, 0x2e, 0x07, 0xcc, 0xef, 0xf3, 0x1f, 0xd6, 0xa3, 0x26, + 0xaa, 0xde, 0x73, 0x6d, 0x27, 0xd2, 0xa1, 0xc5, 0x33, 0x68, 0x54, 0x94, + 0x59, 0x91, 0x73, 0xad, 0xde, 0xdd, 0x31, 0xf3, 0x67, 0x76, 0x53, 0xfc, + 0x20, 0xe0, 0x0a, 0xa6, 0x6e, 0x0f, 0xa6, 0x7e, 0xb5, 0x01, 0x34, 0x99, + 0xa8, 0xe5, 0x47, 0x6f, 0x33, 0x2d, 0xfd, 0xba, 0x50, 0xb8, 0xc0, 0xab, + 0xb6, 0xb7, 0x3b, 0xe2, 0xdc, 0xdd, 0x7a, 0x56, 0x36, 0x6a, 0xe5, 0xb4, + 0x8e, 0x22, 0xc0, 0xc6, 0x33, 0x59, 0xd4, 0x49, 0x2b, 0xa3, 0x48, 0x49, + 0xb7, 0xa9, 0xa7, 0xb8, 0x35, 0x46, 0xf8, 0x65, 0xda, 0x7a, 0xf6, 0xa8, + 0x36, 0xc9, 0xfc, 0x4d, 0x8a, 0x53, 0x18, 0x03, 0x25, 0xeb, 0x0e, 0x63, + 0x7b, 0x0e, 0xce, 0x63, 0xce, 0x46, 0xe1, 0xc5, 0x4f, 0x19, 0x8d, 0xda, + 0x26, 0x21, 0x4b, 0xe4, 0x64, 0x55, 0x5d, 0xaa, 0xd8, 0x5c, 0xd4, 0x96, + 0xb2, 0x22, 0x5f, 0x24, 0x44, 0x82, 0x4b, 0x0c, 0x11, 0x42, 0x93, 0x6c, + 0x4d, 0x24, 0x8e, 0x8a, 0xc9, 0x43, 0xf8, 0x82, 0x54, 0x3c, 0xf0, 0x08, + 0xf6, 0xc5, 0x6f, 0x4c, 0x4e, 0xfc, 0x01, 0xcd, 0x65, 0xe9, 0x70, 0x2f, + 0xf6, 0xcd, 0xdc, 0xa0, 0x1c, 0x80, 0x06, 0x6b, 0x51, 0x89, 0x2e, 0x71, + 0x5b, 0x45, 0x7b, 0xcd, 0x98, 0xb7, 0xa1, 0x18, 0x8f, 0xbb, 0x1a, 0x91, + 0x46, 0x7a, 0x70, 0x29, 0xa4, 0xaa, 0x75, 0xf9, 0x9a, 0x93, 0xe7, 0x93, + 0xd8, 0x56, 0x84, 0x93, 0x01, 0xe8, 0x78, 0xf5, 0xa5, 0xdc, 0xab, 0xd3, + 0x93, 0x51, 0x79, 0x6d, 0xd3, 0x3c, 0x54, 0xab, 0x1e, 0x3b, 0x66, 0x98, + 0x89, 0x63, 0x62, 0x72, 0x69, 0xc0, 0x81, 0xf5, 0xa4, 0x03, 0x11, 0xf5, + 0xc6, 0x69, 0xca, 0xbe, 0x94, 0xc0, 0x70, 0x24, 0xd4, 0x8a, 0x99, 0xa1, + 0x40, 0x1d, 0x4d, 0x3f, 0xcc, 0xc7, 0x4a, 0x00, 0x91, 0x10, 0x0e, 0xb5, + 0x26, 0xf5, 0x5e, 0x95, 0x5f, 0x71, 0x34, 0xf5, 0xa0, 0x09, 0xbc, 0xc2, + 0x6b, 0xcd, 0xf5, 0xc7, 0xdf, 0xac, 0xdc, 0x1f, 0xf6, 0xab, 0xd1, 0xb2, + 0x00, 0x35, 0xe6, 0x3a, 0x8b, 0xef, 0xd4, 0xee, 0x1b, 0xfd, 0xb3, 0x5b, + 0x50, 0xdc, 0xca, 0xb6, 0xc4, 0x6b, 0x4e, 0xa6, 0x2d, 0x38, 0xd7, 0x49, + 0xce, 0x34, 0x9a, 0x72, 0x1e, 0x6a, 0x32, 0x69, 0xc8, 0x68, 0x1a, 0x2e, + 0x46, 0x6b, 0xa6, 0xf0, 0x8b, 0x49, 0xfd, 0xa9, 0x84, 0x27, 0xee, 0x9c, + 0xd7, 0x2b, 0x19, 0xae, 0xb7, 0xc1, 0x67, 0x1a, 0x9b, 0xb7, 0xa2, 0x56, + 0x75, 0x3e, 0x16, 0x69, 0x4f, 0xe2, 0x47, 0x7b, 0x1c, 0x2c, 0xdc, 0xbb, + 0x53, 0x91, 0x91, 0x25, 0xc0, 0x19, 0xc5, 0x31, 0xa5, 0x25, 0x78, 0xa8, + 0xa0, 0x6c, 0xca, 0x6b, 0x88, 0xe9, 0x34, 0x59, 0xb7, 0x8f, 0x9b, 0xa7, + 0xa5, 0x56, 0x6b, 0x38, 0xa7, 0xdc, 0xa5, 0x0e, 0x18, 0x63, 0x8a, 0x97, + 0x3c, 0x55, 0xdb, 0x39, 0x04, 0x6d, 0x92, 0xb9, 0xa4, 0x33, 0x92, 0xd5, + 0xbe, 0x1d, 0x9b, 0xb8, 0x8c, 0xd6, 0x77, 0x0e, 0x24, 0x3c, 0xec, 0x90, + 0xe7, 0x3f, 0x8d, 0x70, 0xda, 0x96, 0x8b, 0x7d, 0xa5, 0x3f, 0x95, 0x7b, + 0x6c, 0xf1, 0x11, 0xc2, 0xbe, 0x3e, 0x53, 0xf8, 0xd7, 0xd0, 0x09, 0xa8, + 0x90, 0xb8, 0x58, 0x05, 0x41, 0x75, 0x03, 0x6a, 0xd1, 0x18, 0xae, 0x6c, + 0x92, 0x48, 0xcf, 0x66, 0x1c, 0x56, 0x73, 0xc3, 0xc2, 0x7a, 0xad, 0x19, + 0x71, 0xab, 0x25, 0xbe, 0xa7, 0xcf, 0x16, 0xf7, 0x52, 0xd9, 0x4d, 0xbd, + 0x18, 0xe0, 0xf0, 0xcb, 0xd8, 0x8a, 0xdb, 0x8a, 0xf6, 0x19, 0x8f, 0x99, + 0x80, 0x50, 0xf4, 0xe7, 0x18, 0xf6, 0x35, 0xd9, 0x6b, 0x9f, 0x0a, 0xda, + 0x75, 0x79, 0x74, 0xe6, 0x11, 0x37, 0x51, 0x19, 0x3f, 0x2f, 0xd0, 0x57, + 0x9a, 0x4f, 0x65, 0x7f, 0xa1, 0x6a, 0x2d, 0x6f, 0x7d, 0x6d, 0x22, 0x60, + 0xe1, 0x94, 0x8e, 0x08, 0xf5, 0x06, 0xb2, 0x8c, 0x27, 0x4f, 0x7d, 0x8b, + 0x6e, 0x33, 0xdb, 0x73, 0xa5, 0x4b, 0xa8, 0x14, 0x63, 0x62, 0x81, 0x55, + 0x75, 0x2b, 0x9b, 0x71, 0x06, 0x23, 0x1f, 0x39, 0xee, 0x2b, 0x3c, 0x4b, + 0x0c, 0x67, 0x38, 0x05, 0x0f, 0xbf, 0x4a, 0x12, 0xfa, 0x34, 0x2d, 0x88, + 0xc1, 0x24, 0xf1, 0x5a, 0xf3, 0xc7, 0xb9, 0x97, 0x2b, 0x2d, 0x9b, 0xf3, + 0x25, 0xaf, 0x95, 0x1c, 0x6c, 0x0e, 0xdc, 0x70, 0xb4, 0x96, 0x97, 0x97, + 0x2f, 0x6e, 0x10, 0xc4, 0x4b, 0x8e, 0x09, 0xa8, 0x85, 0xdc, 0xed, 0x86, + 0x8e, 0x22, 0x01, 0xe2, 0xa2, 0x5b, 0x96, 0x8e, 0x66, 0x12, 0x3e, 0xc9, + 0x1c, 0xe5, 0x54, 0x7a, 0xd3, 0x52, 0x13, 0x88, 0x9a, 0x84, 0x93, 0x24, + 0x91, 0x31, 0x04, 0x1c, 0xe0, 0xe3, 0xd0, 0xd5, 0xe8, 0xee, 0x2e, 0x15, + 0x02, 0xa0, 0x18, 0xaa, 0x57, 0x0d, 0xe6, 0x23, 0xef, 0x50, 0x7f, 0xe0, + 0x54, 0xeb, 0x5b, 0x86, 0x96, 0xdc, 0x48, 0x90, 0x65, 0x07, 0x53, 0xc9, + 0xc5, 0x2e, 0x67, 0xd8, 0x39, 0x7c, 0xc9, 0x16, 0x6b, 0x98, 0x25, 0x60, + 0xc4, 0x05, 0x6e, 0x70, 0x3b, 0x54, 0x57, 0x57, 0x6e, 0x1d, 0x7a, 0x9e, + 0x0d, 0x3d, 0xae, 0xa3, 0x6c, 0xe1, 0x11, 0x88, 0xec, 0x41, 0xaa, 0xb2, + 0xdc, 0xfe, 0xfa, 0x3c, 0x24, 0x5f, 0x30, 0x3d, 0xa8, 0xe6, 0x7d, 0x83, + 0x95, 0x77, 0x2e, 0xdb, 0x9b, 0xa5, 0x8f, 0xe5, 0x00, 0x67, 0x92, 0x49, + 0xa7, 0x34, 0xb3, 0x21, 0xde, 0x71, 0xef, 0x83, 0x55, 0x7e, 0xd6, 0xe4, + 0x1c, 0xb2, 0x00, 0x0e, 0x32, 0x01, 0xa6, 0x3c, 0xb2, 0xe0, 0x90, 0x63, + 0x61, 0xf8, 0xd1, 0xcc, 0xfb, 0x07, 0x2a, 0xee, 0x57, 0xd4, 0xee, 0x1a, + 0x47, 0x08, 0x7b, 0x73, 0x54, 0xed, 0x96, 0x49, 0x6e, 0x06, 0x71, 0xc9, + 0xfd, 0x2a, 0x39, 0x2f, 0x23, 0x91, 0x8b, 0x34, 0x6a, 0x30, 0x71, 0x9c, + 0xf5, 0xab, 0x16, 0x73, 0xa8, 0x62, 0x63, 0x40, 0x71, 0xdc, 0x9a, 0x98, + 0xbd, 0x6f, 0x62, 0xda, 0xd2, 0xc7, 0x41, 0x13, 0xf9, 0x28, 0x0e, 0xdc, + 0x80, 0x30, 0x45, 0x4e, 0xba, 0x84, 0x41, 0x32, 0xe8, 0x47, 0xb9, 0x15, + 0x8e, 0xb7, 0x92, 0x46, 0x7e, 0xe6, 0x47, 0xa8, 0x39, 0xa8, 0xa4, 0xd4, + 0xc1, 0xf9, 0x4e, 0x40, 0x27, 0x9c, 0x8a, 0xd3, 0x9d, 0x11, 0xc8, 0xcd, + 0x43, 0x79, 0x04, 0xb3, 0x86, 0x2e, 0xa0, 0x0e, 0x81, 0xaa, 0x37, 0xb9, + 0x82, 0x07, 0x38, 0x90, 0x3e, 0xef, 0xba, 0x00, 0xef, 0x55, 0x6d, 0x8f, + 0xdb, 0xa7, 0x58, 0xed, 0xed, 0xbc, 0xe9, 0x4f, 0x01, 0x40, 0xae, 0xfb, + 0xc3, 0xdf, 0x0c, 0x7c, 0xf6, 0x5b, 0xcd, 0x5c, 0xa8, 0x07, 0x91, 0x14, + 0x67, 0xa5, 0x34, 0xd3, 0xd8, 0x4d, 0x34, 0x73, 0x3a, 0x56, 0x81, 0x7d, + 0xa8, 0xc9, 0xbe, 0xde, 0x36, 0x96, 0x56, 0xea, 0xc0, 0x70, 0xbf, 0x8d, + 0x76, 0xfa, 0x4f, 0x80, 0xfc, 0xbc, 0x4d, 0xa9, 0x4e, 0xce, 0xc3, 0x9f, + 0x2d, 0x0f, 0x03, 0xea, 0x6b, 0xba, 0xb4, 0xb4, 0xb4, 0xb0, 0xb3, 0x10, + 0x5a, 0x44, 0xb1, 0x46, 0xa3, 0x18, 0x02, 0x99, 0x3b, 0xaa, 0xc5, 0xb1, + 0x0e, 0x7b, 0x9a, 0x60, 0x73, 0xdf, 0x60, 0xb6, 0x86, 0x37, 0x48, 0xa2, + 0x0a, 0x33, 0xc7, 0x1c, 0xd4, 0x78, 0xc0, 0xad, 0x19, 0x57, 0x09, 0x9a, + 0xa3, 0x27, 0x5a, 0x4c, 0x65, 0x2b, 0xe6, 0xcd, 0x94, 0xfe, 0xea, 0x6b, + 0xcf, 0xdc, 0xf2, 0x6b, 0xbf, 0xbe, 0xe6, 0xce, 0x5f, 0xf7, 0x4d, 0x79, + 0xf3, 0x9e, 0x4d, 0x79, 0xd8, 0xff, 0x00, 0xb2, 0x7a, 0x78, 0x0f, 0x85, + 0x91, 0xb9, 0xa8, 0x89, 0xa7, 0xb1, 0xa8, 0xc9, 0xaf, 0x2d, 0xb3, 0xbc, + 0x29, 0x40, 0xa6, 0xe6, 0x94, 0x54, 0x20, 0x1d, 0x8a, 0x42, 0x3d, 0x29, + 0x73, 0x41, 0x35, 0x6d, 0x81, 0x36, 0x9c, 0xdb, 0x6f, 0xe3, 0xcf, 0xad, + 0x74, 0xe2, 0x50, 0x3a, 0x0c, 0x57, 0x2b, 0x6a, 0x71, 0x77, 0x19, 0xff, + 0x00, 0x6a, 0xba, 0x03, 0x9a, 0xf5, 0xf0, 0x0e, 0xf4, 0xd9, 0xe5, 0x63, + 0x97, 0xbe, 0x8b, 0x2d, 0x20, 0x3d, 0x4e, 0x6a, 0x33, 0xb7, 0xd6, 0xa1, + 0xc1, 0x34, 0x6d, 0x35, 0xde, 0x70, 0x92, 0x1c, 0x7a, 0xd2, 0x60, 0x53, + 0x76, 0xd2, 0x60, 0xfa, 0xd0, 0x03, 0x2e, 0x00, 0x59, 0x51, 0x80, 0xeb, + 0xc5, 0x44, 0xeb, 0xf3, 0x7b, 0x1a, 0x96, 0x75, 0x26, 0x0d, 0xd9, 0xfb, + 0xa6, 0x93, 0x19, 0x50, 0x68, 0x11, 0x58, 0x82, 0xa7, 0x22, 0x94, 0x90, + 0xc3, 0x06, 0xa5, 0x65, 0x15, 0x13, 0x28, 0x14, 0xc0, 0x8d, 0x86, 0x0d, + 0x30, 0xa8, 0x71, 0x82, 0x33, 0x4f, 0x6a, 0x61, 0xeb, 0x40, 0x10, 0x8d, + 0xd1, 0x9c, 0x76, 0xa2, 0x68, 0x84, 0xf6, 0x92, 0xa6, 0x3e, 0xf2, 0x9a, + 0x97, 0x39, 0xea, 0x32, 0x29, 0x50, 0x00, 0x7e, 0x5e, 0x87, 0xb5, 0x29, + 0x6c, 0x54, 0x77, 0x3c, 0xce, 0xfc, 0x34, 0x3a, 0xab, 0x79, 0x40, 0xe4, + 0x2e, 0x30, 0x6b, 0x36, 0x43, 0xf2, 0xf3, 0xd4, 0x9a, 0xe8, 0x35, 0x98, + 0x6d, 0xce, 0xbb, 0x70, 0xb7, 0x12, 0x98, 0x80, 0x1c, 0x63, 0xbd, 0x65, + 0x5d, 0x5b, 0x5a, 0xa4, 0x5b, 0xe1, 0xb8, 0x12, 0x1c, 0xf4, 0xa1, 0x09, + 0x95, 0xd1, 0x0c, 0x87, 0x1b, 0xb6, 0x8f, 0x5a, 0x74, 0xf0, 0xf9, 0x17, + 0x0e, 0x9e, 0x66, 0xf0, 0x3a, 0x1a, 0x48, 0x4f, 0x5a, 0x5b, 0x9e, 0x67, + 0x62, 0x39, 0x15, 0x7d, 0x09, 0x19, 0x9a, 0x5d, 0xc7, 0xd6, 0x99, 0x9a, + 0x5c, 0xd4, 0x8c, 0x79, 0x39, 0xc6, 0x69, 0xc0, 0x81, 0x51, 0x83, 0x4b, + 0x9a, 0x56, 0x41, 0x72, 0x50, 0x4b, 0x77, 0xc0, 0xf4, 0xad, 0x1b, 0x0d, + 0x77, 0x51, 0xd3, 0x18, 0x1b, 0x5b, 0xb9, 0x10, 0x7a, 0x67, 0x20, 0xfe, + 0x15, 0x96, 0x0d, 0x48, 0x0e, 0x40, 0x07, 0xa0, 0xa5, 0xcb, 0x6d, 0x87, + 0xcd, 0x7d, 0xcf, 0x44, 0xd0, 0x3c, 0x4b, 0x2e, 0xb5, 0x39, 0x8e, 0xe6, + 0xd6, 0x01, 0x32, 0x0c, 0xf9, 0xd1, 0xae, 0xd2, 0x7e, 0xb5, 0xd4, 0x29, + 0xe2, 0xbc, 0xf7, 0xc1, 0x88, 0xa9, 0x7d, 0x21, 0x1d, 0x76, 0xd7, 0x7e, + 0xa7, 0x8a, 0xf9, 0x9c, 0xd2, 0xfe, 0xdf, 0xe4, 0x76, 0x50, 0xf8, 0x09, + 0x73, 0x4d, 0x26, 0x9b, 0x9a, 0x69, 0x35, 0xe7, 0x1b, 0x0a, 0x4d, 0x01, + 0xa9, 0x84, 0xd2, 0x67, 0x9a, 0xd6, 0x04, 0x32, 0xf4, 0x0f, 0xc8, 0xae, + 0x97, 0x48, 0x7f, 0xde, 0xa5, 0x72, 0x70, 0xb6, 0x08, 0xae, 0x93, 0x49, + 0x7f, 0xde, 0x27, 0x35, 0xe8, 0xd1, 0x66, 0x12, 0x3a, 0x31, 0x7f, 0x0c, + 0x64, 0x89, 0x64, 0x55, 0xc1, 0xee, 0x6a, 0x78, 0xef, 0xe0, 0x62, 0x02, + 0x96, 0x62, 0x7d, 0x05, 0x40, 0x9a, 0x2e, 0x9c, 0x8e, 0x65, 0x9a, 0x4d, + 0xe4, 0xf3, 0xf3, 0x30, 0x02, 0xb4, 0x6d, 0xe5, 0xb2, 0x4e, 0x20, 0x0a, + 0x7f, 0xdd, 0x5c, 0xfe, 0xb5, 0xf4, 0xe9, 0xca, 0xc7, 0x1d, 0xe2, 0x3e, + 0x16, 0x79, 0x3a, 0x42, 0xc0, 0x7a, 0x93, 0x56, 0xd2, 0x36, 0xf4, 0x14, + 0xc1, 0x72, 0xaa, 0xb9, 0x61, 0xb0, 0x7f, 0xb4, 0x40, 0xa8, 0x9f, 0x56, + 0xb2, 0x8f, 0xef, 0xdd, 0xdb, 0x83, 0xe9, 0xbc, 0x1a, 0x7f, 0x31, 0x73, + 0x76, 0x45, 0xe0, 0x87, 0xb7, 0x14, 0xf0, 0xbc, 0xff, 0x00, 0x80, 0xac, + 0x96, 0xf1, 0x0e, 0x9e, 0x3a, 0x5c, 0x6e, 0x3f, 0xec, 0xa1, 0xa6, 0x7f, + 0xc2, 0x43, 0x6e, 0xdc, 0x24, 0x72, 0xb1, 0xf7, 0x00, 0x54, 0xe8, 0x3b, + 0xb6, 0x6d, 0x81, 0xeb, 0x9a, 0x5c, 0x0a, 0xc8, 0x4d, 0x63, 0x7f, 0x48, + 0x0f, 0xe2, 0xd5, 0x61, 0x2f, 0x8b, 0xff, 0x00, 0xcb, 0x20, 0x3f, 0x1a, + 0x2e, 0x16, 0x66, 0x86, 0x00, 0xa3, 0x8f, 0x6a, 0xa7, 0xf6, 0x93, 0xfd, + 0xc1, 0x47, 0xda, 0x1b, 0xd1, 0x7f, 0x2a, 0x43, 0xb3, 0x2e, 0x64, 0x7a, + 0xd2, 0x12, 0x0f, 0x04, 0x8a, 0xa6, 0x67, 0x93, 0xd1, 0x7f, 0x2a, 0xa9, + 0x77, 0x2c, 0xb2, 0xc0, 0xe8, 0x70, 0x01, 0x1d, 0x85, 0x17, 0x15, 0x99, + 0x03, 0xa0, 0xd8, 0x3e, 0x95, 0x46, 0x64, 0x15, 0x6c, 0xbf, 0xc8, 0x3e, + 0x95, 0x56, 0x56, 0xaa, 0xb0, 0xee, 0x67, 0x4d, 0x1d, 0x67, 0xcd, 0x1d, + 0x69, 0xcb, 0x54, 0xa5, 0x14, 0x58, 0x57, 0x32, 0xa5, 0x8b, 0x35, 0x46, + 0x58, 0x85, 0x6b, 0x4a, 0x2a, 0x8c, 0xab, 0x4a, 0xc0, 0x65, 0x49, 0x15, + 0x55, 0x92, 0x3a, 0xd4, 0x91, 0x6a, 0xa4, 0x8b, 0x4a, 0xc3, 0x33, 0x1d, + 0x48, 0xa8, 0xd5, 0x9c, 0x1c, 0x6e, 0x6f, 0xce, 0xae, 0x48, 0x95, 0x06, + 0xde, 0x69, 0x58, 0x0e, 0x33, 0xc5, 0xea, 0xd6, 0xf7, 0x91, 0x4d, 0xb9, + 0x80, 0x91, 0x70, 0x7e, 0xa2, 0xb9, 0xbf, 0xb5, 0x9f, 0xef, 0x0f, 0xc4, + 0x57, 0x6f, 0xe3, 0x5b, 0x5f, 0x33, 0x47, 0x49, 0x80, 0xe6, 0x27, 0xfe, + 0x75, 0xe7, 0x75, 0x49, 0x01, 0x7d, 0x6e, 0xd9, 0x4e, 0x41, 0xc1, 0xf5, + 0x06, 0x9e, 0xda, 0x9c, 0xbb, 0x30, 0x08, 0xdd, 0xd8, 0x91, 0xc8, 0xac, + 0xda, 0x29, 0xd8, 0x47, 0x75, 0xe0, 0x4b, 0x99, 0x65, 0xb9, 0xb9, 0x0d, + 0x21, 0x2a, 0x14, 0x1c, 0x76, 0xcd, 0x75, 0x17, 0xa7, 0xad, 0x72, 0x3e, + 0x00, 0xe2, 0x7b, 0xb3, 0xfe, 0xc8, 0xae, 0xaa, 0xf0, 0xf5, 0xab, 0x8e, + 0xc7, 0x0d, 0x5f, 0x8d, 0x99, 0x32, 0x9e, 0x6a, 0xb9, 0x35, 0x24, 0xc7, + 0x9a, 0x87, 0x34, 0x99, 0x08, 0x5c, 0xd5, 0x7b, 0xa3, 0x98, 0x1f, 0xe9, + 0x53, 0x13, 0x50, 0x4f, 0xcc, 0x4d, 0xf4, 0xa0, 0x67, 0x24, 0x5b, 0x93, + 0x49, 0xba, 0x91, 0xbe, 0xf1, 0xfa, 0xd2, 0x56, 0x6c, 0xf4, 0x10, 0xed, + 0xd5, 0x34, 0x53, 0x84, 0x5d, 0xac, 0x48, 0x19, 0xed, 0x55, 0xea, 0x19, + 0x7e, 0xf5, 0x27, 0x1e, 0x6d, 0x0a, 0x52, 0xe5, 0xd4, 0xda, 0x8e, 0x54, + 0x70, 0x01, 0x3f, 0x42, 0xcd, 0x51, 0x9b, 0xb8, 0x54, 0xe0, 0xba, 0x7e, + 0xa6, 0xb1, 0xa8, 0xa8, 0x54, 0x51, 0x7e, 0xd8, 0xd9, 0x5b, 0xfb, 0x75, + 0xfe, 0x3f, 0xc9, 0x6a, 0x7d, 0x3a, 0xe6, 0x1b, 0x8d, 0x56, 0xda, 0x34, + 0x56, 0xdc, 0xd2, 0x0e, 0xa2, 0xb0, 0x2b, 0x77, 0xc2, 0x56, 0xc9, 0x73, + 0xaf, 0x40, 0x1c, 0x65, 0x54, 0x83, 0x4f, 0xd9, 0xa5, 0xa8, 0xbd, 0xa3, + 0x7a, 0x1e, 0x8b, 0x61, 0x0f, 0x96, 0x6e, 0x5f, 0x1f, 0x79, 0xcd, 0x48, + 0x41, 0x3d, 0x4e, 0x07, 0xa0, 0xa2, 0x18, 0x36, 0x23, 0xb2, 0xb1, 0x23, + 0x24, 0x60, 0x9a, 0x5e, 0x47, 0xf0, 0xd2, 0x88, 0xd8, 0x81, 0x54, 0x76, + 0xa7, 0xe4, 0xf6, 0x14, 0x99, 0xf6, 0xa5, 0x06, 0xa8, 0x90, 0xde, 0x45, + 0x28, 0x25, 0x8f, 0x24, 0xd2, 0xd2, 0x80, 0x72, 0x2a, 0x80, 0x79, 0xc0, + 0xc0, 0xc7, 0x41, 0x4f, 0x0c, 0x7e, 0x94, 0x8c, 0x0e, 0xf3, 0x4a, 0x05, + 0x30, 0x1e, 0x33, 0xeb, 0x4e, 0x02, 0x9a, 0x29, 0xe2, 0x80, 0x1c, 0x38, + 0xa7, 0x83, 0x51, 0x8a, 0x70, 0x34, 0x08, 0x73, 0x9c, 0x46, 0xc7, 0xd0, + 0x57, 0x98, 0x5c, 0xb6, 0xeb, 0xb9, 0x4f, 0xab, 0x9f, 0xe7, 0x5e, 0x95, + 0x70, 0xdb, 0x6d, 0xa5, 0x3e, 0x8a, 0x6b, 0xcc, 0x5c, 0xe6, 0x66, 0x3e, + 0xa4, 0xd6, 0xf4, 0x3a, 0x98, 0xd6, 0x7b, 0x12, 0xaf, 0x4a, 0x18, 0xd2, + 0x2f, 0x4a, 0x46, 0x35, 0xb9, 0x88, 0xd2, 0x79, 0xa7, 0x29, 0xa8, 0xc9, + 0xa7, 0x29, 0xa0, 0x68, 0xb4, 0x86, 0xba, 0xdf, 0x06, 0x0f, 0xf4, 0xc9, + 0x4f, 0xfb, 0x35, 0xc7, 0xa1, 0xae, 0xc7, 0xc1, 0x7f, 0xf1, 0xf1, 0x31, + 0xff, 0x00, 0x64, 0x56, 0x55, 0x3e, 0x16, 0x6b, 0x4f, 0xe2, 0x3b, 0x49, + 0x5c, 0xaa, 0x71, 0x4d, 0xb4, 0x72, 0x5c, 0xd3, 0x66, 0x6c, 0x25, 0x16, + 0x5c, 0x92, 0x6b, 0x8c, 0xe9, 0x34, 0x94, 0xe4, 0xd6, 0x95, 0x99, 0xc1, + 0x1c, 0x02, 0x3d, 0xeb, 0x31, 0x3a, 0xd5, 0xe8, 0x3b, 0x63, 0x8a, 0x43, + 0x3a, 0x3b, 0x7b, 0x8b, 0x70, 0xa3, 0x2a, 0x01, 0xfa, 0x54, 0xed, 0xa8, + 0xc3, 0x18, 0xf9, 0x46, 0x7e, 0x95, 0x8d, 0x16, 0xe6, 0xc0, 0xcd, 0x5d, + 0x82, 0xde, 0x3e, 0xac, 0x73, 0x4c, 0x9b, 0x16, 0x16, 0xe6, 0xe6, 0xe5, + 0xbe, 0x40, 0x11, 0x3d, 0x4d, 0x56, 0xd4, 0x34, 0x3b, 0x1d, 0x52, 0x16, + 0x8e, 0xea, 0x25, 0x93, 0x70, 0xc1, 0x66, 0x19, 0x35, 0x7d, 0x48, 0x03, + 0x0a, 0x30, 0x29, 0x41, 0xa2, 0xe3, 0xb1, 0xe3, 0x7e, 0x26, 0xf8, 0x6b, + 0x7b, 0xa7, 0x99, 0x67, 0xd2, 0x73, 0x34, 0x07, 0x93, 0x19, 0xe4, 0xaf, + 0xd2, 0xbc, 0xff, 0x00, 0xed, 0xd2, 0xda, 0x5c, 0x49, 0x14, 0xd1, 0xf9, + 0x72, 0x29, 0xe4, 0x15, 0xe4, 0x57, 0xd4, 0xa4, 0xf1, 0x5c, 0x87, 0x8a, + 0x7c, 0x01, 0xa5, 0xf8, 0x8e, 0x26, 0x90, 0x20, 0x82, 0xef, 0x1f, 0x2c, + 0xa8, 0x3b, 0xfb, 0xd2, 0xb2, 0xe8, 0x3d, 0x7a, 0x9e, 0x11, 0x3e, 0xac, + 0x0a, 0x36, 0xdd, 0xc5, 0xbb, 0x55, 0x69, 0x2f, 0x5d, 0xe1, 0x50, 0x38, + 0x61, 0xdf, 0x35, 0x7f, 0xc4, 0xbe, 0x15, 0xbf, 0xf0, 0xcd, 0xdf, 0x95, + 0x78, 0x18, 0xc6, 0x7e, 0xec, 0xaa, 0x38, 0x35, 0xce, 0x93, 0x1a, 0x30, + 0xc9, 0x62, 0x0d, 0x66, 0xdd, 0x86, 0xa3, 0x73, 0x49, 0x75, 0x07, 0x68, + 0xc7, 0x23, 0xde, 0xa7, 0xd2, 0x35, 0x09, 0x02, 0xcf, 0x02, 0xc8, 0x42, + 0xe7, 0x38, 0xcd, 0x63, 0x87, 0x84, 0x36, 0x02, 0xb5, 0x4b, 0x6d, 0x3a, + 0x45, 0x76, 0x02, 0x2e, 0xdd, 0xe3, 0x19, 0xcd, 0x0a, 0x40, 0xe0, 0x5a, + 0x97, 0x50, 0x99, 0x66, 0x27, 0x70, 0xf4, 0x35, 0x51, 0xee, 0x64, 0x32, + 0x67, 0x7f, 0xd2, 0x9f, 0x34, 0xb1, 0xac, 0x8c, 0x19, 0x01, 0x24, 0xe7, + 0x35, 0x08, 0xb8, 0x8b, 0xa2, 0xc5, 0xcf, 0xd6, 0x93, 0x90, 0xd4, 0x49, + 0xd6, 0xf2, 0x65, 0x4d, 0x9e, 0x67, 0x1e, 0x94, 0xd3, 0x77, 0x20, 0x4d, + 0xbb, 0xcd, 0x47, 0xe7, 0xa7, 0x04, 0x46, 0xb9, 0xef, 0x51, 0xb4, 0xca, + 0x4f, 0x28, 0x39, 0xa4, 0xe4, 0xc6, 0xa2, 0x86, 0x48, 0xc4, 0x63, 0xad, + 0x4f, 0x05, 0xcb, 0x46, 0xa0, 0xaf, 0x51, 0xd6, 0xab, 0x99, 0x14, 0x75, + 0x5f, 0x7e, 0xb5, 0x66, 0xda, 0xda, 0x5b, 0xc9, 0xc4, 0x56, 0xf0, 0xb3, + 0xbb, 0x76, 0x5a, 0x51, 0x96, 0x83, 0x71, 0x27, 0x3a, 0x94, 0xb8, 0xe0, + 0x0a, 0xe9, 0xbc, 0x2f, 0xe0, 0xad, 0x5b, 0xc4, 0x8e, 0x24, 0x74, 0x68, + 0x6d, 0x89, 0xc9, 0x91, 0xc7, 0x5f, 0xa5, 0x75, 0x5e, 0x0b, 0xf8, 0x64, + 0x09, 0x4b, 0xdd, 0x59, 0x06, 0x47, 0x2b, 0x11, 0xe8, 0x2b, 0xd6, 0xa1, + 0x86, 0x3b, 0x78, 0x52, 0x38, 0x91, 0x51, 0x00, 0xc6, 0x00, 0xad, 0xd2, + 0xee, 0x64, 0xfc, 0x8c, 0x6d, 0x07, 0xc2, 0xba, 0x76, 0x81, 0x6c, 0xa2, + 0x08, 0x83, 0x4d, 0x8f, 0x9a, 0x46, 0x19, 0x26, 0xb7, 0xa1, 0x60, 0xa4, + 0xa9, 0xe0, 0x76, 0xa4, 0xee, 0x45, 0x34, 0x8e, 0x06, 0x7a, 0xfa, 0xd0, + 0xc4, 0x89, 0xe4, 0x08, 0x01, 0x2c, 0x2a, 0x93, 0x41, 0xb8, 0x7c, 0xbd, + 0x3a, 0x93, 0x56, 0x94, 0x7c, 0xa7, 0x82, 0xc6, 0xa2, 0x79, 0x59, 0x62, + 0xc0, 0x03, 0x38, 0xe8, 0x29, 0x5c, 0xab, 0x19, 0x17, 0x67, 0x0d, 0xb0, + 0x1c, 0xd5, 0x17, 0x15, 0xa0, 0xf0, 0x48, 0xcc, 0x59, 0xc6, 0x33, 0xde, + 0xa9, 0xca, 0x81, 0x78, 0x14, 0x01, 0x9d, 0x78, 0x3f, 0xd1, 0x65, 0xff, + 0x00, 0x74, 0xd7, 0x9d, 0x49, 0xf7, 0x8f, 0xd6, 0xbd, 0x22, 0xec, 0x7f, + 0xa3, 0xc9, 0xfe, 0xe9, 0xaf, 0x37, 0x97, 0xef, 0x37, 0xd6, 0xbc, 0xdc, + 0x7f, 0xd9, 0x3d, 0x2c, 0x06, 0xd2, 0x21, 0x63, 0x51, 0x93, 0x4e, 0x63, + 0x4c, 0xaf, 0x2e, 0x47, 0x78, 0xb9, 0xa5, 0x14, 0xda, 0x70, 0xa9, 0x40, + 0x3a, 0x8a, 0x4a, 0x2a, 0x98, 0x0f, 0x80, 0xe2, 0xe6, 0x33, 0xfe, 0xd0, + 0xae, 0x93, 0x77, 0x15, 0xcc, 0xa1, 0xc4, 0xaa, 0x7d, 0xc5, 0x74, 0x39, + 0xe0, 0x57, 0xab, 0x96, 0xbf, 0x75, 0xa3, 0xcc, 0xc7, 0xee, 0x87, 0x97, + 0xa4, 0xdf, 0x4c, 0xcd, 0x26, 0x6b, 0xd2, 0x3c, 0xf1, 0xfb, 0xa9, 0x33, + 0x4c, 0x2d, 0x48, 0x5a, 0x98, 0x89, 0x1c, 0xfe, 0xe2, 0x40, 0x7d, 0x2a, + 0x24, 0x6c, 0xc4, 0xbf, 0x4a, 0x71, 0x39, 0x8d, 0xb3, 0xe9, 0x51, 0xa1, + 0xfd, 0xd8, 0xa0, 0x05, 0x3c, 0xd3, 0x1a, 0x9d, 0x9a, 0x63, 0x1e, 0x28, + 0x02, 0x36, 0x14, 0xc2, 0x08, 0xa9, 0x28, 0xc5, 0x31, 0x10, 0x9c, 0x8e, + 0xd4, 0x09, 0x36, 0xf2, 0x41, 0xe2, 0x9f, 0xde, 0x95, 0x14, 0x16, 0xe9, + 0x4a, 0x5b, 0x15, 0x1d, 0xce, 0x07, 0xc5, 0xf6, 0x9f, 0x68, 0xbe, 0x6b, + 0x88, 0xd9, 0x54, 0xed, 0x19, 0x42, 0x70, 0x4d, 0x72, 0xd0, 0xe7, 0xe6, + 0x07, 0x35, 0xd3, 0xf8, 0xef, 0x29, 0xab, 0xae, 0xde, 0x3e, 0x41, 0x5c, + 0xbc, 0x24, 0xfc, 0xd4, 0x47, 0x60, 0x96, 0xe5, 0x94, 0x24, 0x29, 0x34, + 0xd1, 0x33, 0x90, 0x77, 0x01, 0xed, 0x4c, 0x25, 0xb6, 0x70, 0x69, 0xb9, + 0xe4, 0xf6, 0xf6, 0xa0, 0x69, 0xb5, 0xb1, 0x21, 0x6c, 0x9e, 0x98, 0xa4, + 0x06, 0x9b, 0x9a, 0x33, 0x41, 0x2c, 0x90, 0x1a, 0x76, 0x6a, 0x20, 0x69, + 0x72, 0x68, 0x02, 0x60, 0x6a, 0x45, 0x3c, 0xd5, 0x70, 0xd8, 0xea, 0x2a, + 0x44, 0x91, 0x49, 0xeb, 0x40, 0x8e, 0xcb, 0xc1, 0xff, 0x00, 0xf1, 0xfb, + 0x27, 0xfb, 0xb5, 0xdd, 0xa9, 0xe2, 0xb8, 0x2f, 0x07, 0xb0, 0x37, 0xb2, + 0x80, 0x73, 0xf2, 0x8a, 0xee, 0xd4, 0xf1, 0x5f, 0x2f, 0x9a, 0x7f, 0xbc, + 0x33, 0xba, 0x87, 0xc0, 0x3f, 0x34, 0xd2, 0x68, 0x26, 0x9a, 0x4d, 0x79, + 0xa6, 0xcc, 0x42, 0x69, 0x33, 0x48, 0x4d, 0x37, 0x35, 0xa4, 0x59, 0x0c, + 0xb1, 0x1b, 0x61, 0xab, 0x7b, 0x4b, 0x93, 0x0e, 0xb5, 0xce, 0xa1, 0xe6, + 0xb6, 0x74, 0xe7, 0xc3, 0x2d, 0x77, 0xd0, 0x66, 0x32, 0x23, 0xbf, 0xd7, + 0x6f, 0x05, 0xcc, 0xb1, 0x20, 0x45, 0x01, 0xb1, 0x9d, 0xb9, 0x3f, 0xad, + 0x57, 0x5d, 0x57, 0x51, 0x90, 0x60, 0xdd, 0xca, 0x07, 0xa2, 0xb6, 0x07, + 0xe9, 0x51, 0x5e, 0xae, 0x6f, 0xa5, 0x3f, 0xed, 0x52, 0xc2, 0x83, 0x35, + 0xf4, 0xd0, 0xd6, 0x28, 0xe4, 0xb2, 0x2c, 0xa1, 0x96, 0x43, 0x97, 0x76, + 0x63, 0xee, 0x73, 0x57, 0x60, 0x88, 0xd4, 0x31, 0x2d, 0x5f, 0x84, 0x0e, + 0x2a, 0xc0, 0xb5, 0x04, 0x5d, 0x2b, 0x4e, 0xde, 0x30, 0x2a, 0x94, 0x35, + 0x7e, 0x26, 0xa2, 0xc1, 0x72, 0xfc, 0x49, 0x57, 0x63, 0xc0, 0xaa, 0x11, + 0x3d, 0x5a, 0x49, 0x05, 0x3b, 0x05, 0xcb, 0x60, 0xd2, 0xe6, 0xa1, 0x0f, + 0x9a, 0x76, 0xea, 0x2c, 0x17, 0x24, 0x26, 0xa3, 0x93, 0x05, 0x1b, 0xe9, + 0x46, 0xea, 0x8e, 0x47, 0xf9, 0x1b, 0xe9, 0x45, 0x82, 0xe6, 0x69, 0x93, + 0xe4, 0x1f, 0x4a, 0x82, 0x49, 0x3d, 0xea, 0x2f, 0x37, 0xe4, 0x1f, 0x4a, + 0x89, 0xa4, 0xa6, 0x40, 0x92, 0x3d, 0x54, 0x91, 0xa9, 0xee, 0xf5, 0x5d, + 0xde, 0x80, 0x21, 0x90, 0xd5, 0x39, 0x6a, 0xcc, 0x8d, 0x55, 0x24, 0x34, + 0x01, 0x5e, 0x4a, 0xaa, 0xe2, 0xac, 0xb9, 0xaa, 0xcf, 0x48, 0x65, 0x59, + 0x00, 0xaa, 0xc4, 0x73, 0x56, 0x9c, 0x55, 0x77, 0xe0, 0xd2, 0x19, 0x4b, + 0x5a, 0xb6, 0xfb, 0x56, 0x89, 0x75, 0x16, 0x32, 0x4a, 0x12, 0x3e, 0xb5, + 0xe4, 0x67, 0x83, 0x8a, 0xf6, 0x90, 0x03, 0xc6, 0xc8, 0x7b, 0x82, 0x2b, + 0xc7, 0x6f, 0xe1, 0xfb, 0x3d, 0xfd, 0xc4, 0x3f, 0xdc, 0x90, 0x8f, 0xd6, + 0xa9, 0x08, 0xaf, 0x9a, 0x33, 0x45, 0x14, 0x01, 0xdb, 0x78, 0x08, 0x63, + 0xed, 0x4d, 0xec, 0x2b, 0xa6, 0xbc, 0x3c, 0x1a, 0xe6, 0xfc, 0x0d, 0xc4, + 0x17, 0x27, 0xdc, 0x0a, 0xe8, 0x6e, 0xcf, 0x06, 0xad, 0x6c, 0x70, 0x55, + 0xf8, 0xd9, 0x93, 0x31, 0xe4, 0xd4, 0x39, 0xa7, 0xca, 0x79, 0xa8, 0xb3, + 0x49, 0x92, 0x85, 0xcd, 0x45, 0x37, 0xdc, 0x6f, 0xa5, 0x3c, 0x9a, 0x8e, + 0x53, 0x95, 0x34, 0x01, 0xc8, 0xc8, 0x31, 0x23, 0x7d, 0x69, 0xb5, 0x24, + 0xdc, 0x4c, 0xff, 0x00, 0x53, 0x51, 0xd4, 0x1e, 0x8a, 0xd8, 0x33, 0x51, + 0x4b, 0xf7, 0xaa, 0x4a, 0x8e, 0x4e, 0xb4, 0x20, 0x64, 0x74, 0xb4, 0x51, + 0x4c, 0x42, 0xd7, 0x53, 0xe0, 0x38, 0x8c, 0x9a, 0xfc, 0x79, 0xe0, 0x71, + 0xfa, 0x57, 0x2b, 0x5b, 0x9e, 0x17, 0xb8, 0xb9, 0xb6, 0xd6, 0x63, 0x68, + 0x18, 0x06, 0x50, 0x48, 0x0d, 0xd3, 0xa5, 0x12, 0xd8, 0x11, 0xe9, 0xf6, + 0xe7, 0x74, 0x12, 0x11, 0xfd, 0xe3, 0xfc, 0xea, 0x32, 0xe4, 0x1e, 0x95, + 0x0e, 0x9b, 0x3b, 0x4b, 0x0c, 0x81, 0xd0, 0x03, 0xbb, 0xf8, 0x7a, 0x55, + 0xad, 0xa0, 0xf6, 0xac, 0xa2, 0x6b, 0x21, 0xa2, 0x45, 0x34, 0xe0, 0xc8, + 0x7b, 0xd3, 0x0c, 0x4a, 0x69, 0x3c, 0xac, 0x55, 0x08, 0x97, 0x6e, 0x7a, + 0x1a, 0x02, 0xb6, 0xe1, 0xcd, 0x45, 0xe5, 0xb7, 0x66, 0x35, 0x22, 0x02, + 0x18, 0x12, 0x49, 0xe6, 0x9a, 0x02, 0x46, 0x67, 0x2e, 0x78, 0xa7, 0xae, + 0xee, 0xf4, 0x85, 0xfe, 0x63, 0x4a, 0x32, 0x7b, 0xf1, 0x4c, 0x07, 0x83, + 0x4e, 0xcd, 0x36, 0x8c, 0xd0, 0x22, 0x40, 0x69, 0xc0, 0xd4, 0x60, 0xd3, + 0x81, 0xa0, 0x08, 0xaf, 0x9f, 0x6d, 0x84, 0xe7, 0xfd, 0x83, 0x5e, 0x66, + 0x0f, 0xcc, 0x6b, 0xd1, 0x75, 0x67, 0xdb, 0xa5, 0x5c, 0x1f, 0xf6, 0x0d, + 0x79, 0xca, 0xfd, 0xea, 0xe8, 0xa1, 0xb3, 0x30, 0xad, 0xba, 0x27, 0x1d, + 0x29, 0xac, 0x69, 0x7b, 0x54, 0x6c, 0x6b, 0x63, 0x21, 0x33, 0x4e, 0x53, + 0xcd, 0x47, 0x9a, 0x55, 0x34, 0x86, 0x8b, 0x48, 0x6b, 0xb3, 0xf0, 0x67, + 0xfa, 0xc9, 0xcf, 0xb0, 0xae, 0x29, 0x0d, 0x76, 0xde, 0x0d, 0xff, 0x00, + 0x96, 0xe7, 0xd8, 0x56, 0x55, 0x7e, 0x13, 0x5a, 0x7f, 0x11, 0xd5, 0x4e, + 0xdf, 0x2d, 0x4b, 0x65, 0xf7, 0x6a, 0xad, 0xc3, 0x71, 0x56, 0xac, 0xfe, + 0xe5, 0x72, 0x1d, 0x26, 0x84, 0x7d, 0x6a, 0xf4, 0x26, 0xa8, 0x46, 0x79, + 0xab, 0x91, 0x1a, 0x43, 0x35, 0x21, 0x35, 0xa1, 0x06, 0x2b, 0x2e, 0x13, + 0x5a, 0x56, 0xe6, 0x80, 0x2e, 0x0e, 0x94, 0xb4, 0x83, 0xa5, 0x28, 0xa5, + 0x71, 0x8b, 0x45, 0x14, 0x0a, 0x60, 0x52, 0xd4, 0xb4, 0x7b, 0x1d, 0x5a, + 0xd5, 0xad, 0xef, 0xa0, 0x49, 0x51, 0x87, 0xf1, 0x0e, 0x95, 0xe4, 0x5e, + 0x2d, 0xf8, 0x3d, 0x2c, 0x6a, 0xf7, 0x5a, 0x24, 0x9b, 0x94, 0x73, 0xe4, + 0x3f, 0xf4, 0x35, 0xed, 0x7d, 0x05, 0x32, 0x49, 0xd1, 0x14, 0xee, 0x19, + 0xf6, 0xa6, 0x2d, 0x8f, 0x90, 0xae, 0x74, 0xed, 0x42, 0xd2, 0x76, 0x86, + 0x7b, 0x59, 0x52, 0x45, 0x38, 0x20, 0xad, 0x37, 0xfb, 0x3e, 0xfc, 0xba, + 0x48, 0x96, 0xd2, 0x1c, 0x1a, 0xf6, 0xbf, 0x8a, 0x9e, 0x1e, 0x37, 0x9a, + 0x4b, 0xea, 0xb6, 0xac, 0xd6, 0xf3, 0xc4, 0x3e, 0xe8, 0x3c, 0x3f, 0x3d, + 0x2b, 0xc0, 0x24, 0xd4, 0x6f, 0x57, 0x31, 0x99, 0xdc, 0x60, 0xf3, 0xcd, + 0x47, 0x27, 0x61, 0xb9, 0x9b, 0xff, 0x00, 0xd8, 0xfa, 0x9d, 0xc7, 0xcc, + 0x96, 0xac, 0x47, 0xbe, 0x29, 0xe9, 0xe1, 0xcd, 0x59, 0x3e, 0x66, 0xb5, + 0xce, 0x7a, 0x65, 0x85, 0x73, 0x5f, 0xda, 0x57, 0xbb, 0x76, 0xfd, 0xa6, + 0x40, 0x3d, 0x37, 0x51, 0xfd, 0xa3, 0x78, 0x46, 0x0d, 0xcc, 0x98, 0xf4, + 0xdd, 0x47, 0xb3, 0xb8, 0xb9, 0xd9, 0xd2, 0x1d, 0x0f, 0x54, 0x5f, 0x98, + 0xdb, 0x71, 0xf5, 0x15, 0x55, 0xf4, 0xab, 0xec, 0x8c, 0xc2, 0x46, 0x3d, + 0x0d, 0x62, 0x8d, 0x46, 0xf3, 0x6e, 0xdf, 0xb4, 0x49, 0x8f, 0xad, 0x69, + 0xf8, 0x6b, 0x76, 0xa3, 0xe2, 0x3b, 0x0b, 0x4b, 0x99, 0x9c, 0xc5, 0x24, + 0xa0, 0x37, 0x3d, 0xa9, 0x38, 0x5b, 0x51, 0xa9, 0xb6, 0x6e, 0xe8, 0x9e, + 0x0c, 0xd5, 0xf5, 0x8b, 0x9d, 0xa9, 0x6e, 0xd1, 0xa6, 0x79, 0x77, 0x1c, + 0x62, 0xbd, 0xb3, 0xc2, 0xde, 0x07, 0xd3, 0xb4, 0x08, 0xa3, 0x1b, 0x04, + 0xb7, 0x04, 0x65, 0xa4, 0x61, 0xde, 0xb5, 0xb4, 0xfb, 0x58, 0xad, 0xe3, + 0x48, 0x61, 0x40, 0xa8, 0x00, 0x00, 0x01, 0xe9, 0x5a, 0xd6, 0xeb, 0x99, + 0x8b, 0x76, 0x1c, 0x0a, 0xa8, 0xa4, 0x95, 0xc5, 0x26, 0xdb, 0xb1, 0x3a, + 0x26, 0xdc, 0x81, 0xc6, 0x29, 0xe0, 0x70, 0x45, 0x28, 0x5e, 0x69, 0xd8, + 0xc1, 0xeb, 0x4e, 0xe2, 0xb0, 0xcc, 0x52, 0x6f, 0x44, 0xe5, 0xf3, 0x52, + 0x62, 0x9a, 0x00, 0x07, 0x3b, 0x46, 0x69, 0x0c, 0x72, 0xbb, 0x48, 0x32, + 0x01, 0x55, 0xa6, 0x2f, 0x0b, 0xd0, 0x67, 0xd6, 0xa5, 0x04, 0xb7, 0x5f, + 0xca, 0x9a, 0x14, 0x72, 0x3d, 0xea, 0x6e, 0x55, 0x8c, 0xcb, 0xc9, 0x0e, + 0x4a, 0x8c, 0x93, 0x59, 0xb2, 0x29, 0x35, 0xaf, 0x78, 0x00, 0x3e, 0xf5, + 0x9b, 0x20, 0xa6, 0x23, 0x36, 0xe9, 0x3f, 0x71, 0x27, 0xfb, 0xa6, 0xbc, + 0xca, 0x6f, 0xbe, 0xdf, 0x5a, 0xf5, 0x3b, 0x95, 0xcc, 0x2f, 0xfe, 0xe9, + 0xaf, 0x2c, 0xb8, 0xe2, 0x57, 0xfa, 0x9a, 0xf3, 0xf1, 0xfb, 0x23, 0xd0, + 0xc0, 0x7d, 0xa2, 0xb3, 0x53, 0x69, 0x5a, 0x9b, 0x5e, 0x4b, 0x3d, 0x01, + 0x45, 0x38, 0x53, 0x69, 0x45, 0x24, 0x21, 0xd4, 0xb4, 0xda, 0x5a, 0x6c, + 0x61, 0xd1, 0x85, 0x74, 0x4b, 0xca, 0x0f, 0xa5, 0x73, 0x86, 0xba, 0x18, + 0xce, 0x62, 0x53, 0xed, 0x5e, 0x9e, 0x5a, 0xfe, 0x24, 0x79, 0xd8, 0xf5, + 0xb0, 0x1a, 0x69, 0xa5, 0x26, 0x98, 0x72, 0x6b, 0xd5, 0x3c, 0xe1, 0x49, + 0xa4, 0xce, 0x29, 0x0e, 0x6a, 0x32, 0x68, 0x11, 0x29, 0x7f, 0x95, 0xbe, + 0x95, 0x0a, 0x36, 0x63, 0x1d, 0x29, 0xc0, 0x61, 0x18, 0xfb, 0x54, 0x4a, + 0x00, 0x41, 0x8a, 0x62, 0x25, 0xdd, 0xef, 0x41, 0x39, 0x15, 0x09, 0xa2, + 0x80, 0x1e, 0x68, 0xc8, 0xc5, 0x30, 0xfd, 0x69, 0x3a, 0x53, 0x10, 0xf0, + 0x32, 0x69, 0xf1, 0x9f, 0x9c, 0x81, 0x51, 0x02, 0x4f, 0x02, 0xa6, 0x8b, + 0x00, 0xe3, 0xbd, 0x12, 0xd8, 0xa8, 0xee, 0x70, 0x5f, 0x10, 0xa2, 0xdb, + 0x7f, 0x13, 0xe3, 0xaa, 0x0a, 0xe5, 0x2c, 0x16, 0x19, 0x2e, 0x04, 0x73, + 0xc8, 0x63, 0x56, 0xe3, 0x70, 0x1d, 0x2b, 0xb1, 0xf8, 0x8d, 0x73, 0x14, + 0x97, 0x76, 0xd0, 0xa2, 0xfc, 0xf1, 0xc6, 0x37, 0x9c, 0xd7, 0x17, 0x6c, + 0xe5, 0x0b, 0x10, 0x07, 0x4e, 0xe2, 0x85, 0xb0, 0x9e, 0xe6, 0xb7, 0xd9, + 0x12, 0xc3, 0x52, 0x85, 0x5a, 0x44, 0x91, 0x04, 0xa3, 0x91, 0xd0, 0x8f, + 0x5a, 0x83, 0x58, 0x68, 0xdf, 0x56, 0xb9, 0x68, 0x80, 0x08, 0x5c, 0xe3, + 0x15, 0x59, 0x24, 0x3b, 0xd5, 0xd8, 0x93, 0x86, 0x04, 0xd1, 0x70, 0xe1, + 0xee, 0x24, 0x61, 0xd0, 0xb1, 0x34, 0x25, 0xa0, 0x37, 0xa9, 0x15, 0x14, + 0x51, 0x40, 0x05, 0x1d, 0x28, 0xa2, 0x90, 0x00, 0x72, 0x29, 0xe1, 0xd4, + 0xfd, 0xe5, 0xa8, 0xe8, 0xa0, 0x0e, 0xd7, 0xc1, 0x4e, 0x1a, 0xf6, 0x6c, + 0x0c, 0x00, 0xa2, 0xbb, 0xf5, 0x3c, 0x57, 0x9e, 0x78, 0x1c, 0xff, 0x00, + 0xa6, 0xcd, 0xfe, 0xe8, 0xaf, 0x42, 0x5e, 0x95, 0xf2, 0xd9, 0xa7, 0xfb, + 0xc3, 0x3b, 0xa8, 0xfc, 0x23, 0x89, 0xa6, 0x13, 0x4a, 0x4d, 0x31, 0x8d, + 0x79, 0xc8, 0xd1, 0x88, 0x4d, 0x37, 0x34, 0x84, 0xd2, 0x66, 0xae, 0x24, + 0xb2, 0x55, 0x3c, 0xd6, 0xa5, 0x8b, 0xe1, 0xd6, 0xb2, 0x01, 0xad, 0x0b, + 0x27, 0xf9, 0xc5, 0x76, 0x51, 0x66, 0x52, 0x16, 0xf3, 0xfe, 0x3f, 0x64, + 0xfa, 0xd3, 0xe1, 0x14, 0xcb, 0xaf, 0xf8, 0xfc, 0x7f, 0xad, 0x3e, 0x3a, + 0xfa, 0xaa, 0x7f, 0x02, 0x38, 0xd9, 0x76, 0x2a, 0xbb, 0x11, 0xaa, 0x11, + 0xd5, 0xb8, 0xcd, 0x68, 0x23, 0x46, 0x36, 0xab, 0x71, 0xbd, 0x67, 0x46, + 0xd5, 0x65, 0x1e, 0x98, 0x1a, 0x51, 0xc9, 0x56, 0x12, 0x5a, 0xcc, 0x49, + 0x2a, 0x75, 0x96, 0x98, 0x8d, 0x25, 0x94, 0xd3, 0xc4, 0xd5, 0x9e, 0x25, + 0xf7, 0xa7, 0x09, 0xa8, 0x02, 0xe9, 0x9b, 0xde, 0xa3, 0x92, 0x5f, 0x91, + 0xbe, 0x95, 0x5b, 0xce, 0xa6, 0x49, 0x2f, 0xc8, 0xdf, 0x4a, 0x00, 0xcf, + 0xf3, 0x3e, 0x41, 0xf4, 0xa8, 0xd9, 0xea, 0x2d, 0xff, 0x00, 0x20, 0xfa, + 0x53, 0x19, 0xe9, 0x08, 0x57, 0x6a, 0x81, 0xda, 0x87, 0x7a, 0x85, 0x9e, + 0x80, 0x11, 0xcd, 0x55, 0x92, 0xa5, 0x76, 0xaa, 0xee, 0x68, 0x02, 0x17, + 0xaa, 0xee, 0x6a, 0x67, 0x39, 0xa8, 0x1e, 0x90, 0xc8, 0x1c, 0xd5, 0x77, + 0x35, 0x3b, 0xd4, 0x0f, 0x40, 0x08, 0x8d, 0x83, 0x5e, 0x67, 0xe2, 0xc8, + 0x3c, 0x8f, 0x10, 0x4f, 0xc7, 0x0f, 0x86, 0x15, 0xe8, 0xfb, 0xb0, 0xd5, + 0xc4, 0xf8, 0xea, 0x1c, 0x5d, 0x5b, 0x5c, 0x0f, 0xe2, 0x52, 0xa7, 0xf0, + 0xa1, 0x01, 0xc9, 0x52, 0xd3, 0x69, 0xd4, 0xc0, 0xee, 0x3c, 0x12, 0x31, + 0x65, 0x70, 0x7f, 0xdb, 0xad, 0xdb, 0xa3, 0xf2, 0x9a, 0xc3, 0xf0, 0x77, + 0x1a, 0x64, 0xc7, 0xd6, 0x4f, 0xe9, 0x5b, 0x37, 0x27, 0x28, 0x6a, 0xd6, + 0xc7, 0x9f, 0x53, 0xe3, 0x66, 0x54, 0xa7, 0x9a, 0x8b, 0x34, 0xe9, 0x4f, + 0xcc, 0x6a, 0x3c, 0xd2, 0x64, 0xa1, 0x49, 0xa6, 0x3f, 0xdd, 0x34, 0xec, + 0xd3, 0x1f, 0xee, 0xd0, 0x33, 0x95, 0xb8, 0xff, 0x00, 0x8f, 0x89, 0x3f, + 0xde, 0x35, 0x15, 0x4b, 0x73, 0xff, 0x00, 0x1f, 0x32, 0x7f, 0xbc, 0x6a, + 0x2a, 0x86, 0x7a, 0x11, 0xd8, 0x33, 0x51, 0xc9, 0xd6, 0x9f, 0x51, 0xc9, + 0xd6, 0x84, 0x36, 0x32, 0x8a, 0x28, 0xaa, 0x10, 0xaa, 0x70, 0x46, 0x6b, + 0xb8, 0xf0, 0x65, 0xe5, 0x8c, 0xb3, 0x5c, 0x2d, 0xcc, 0x71, 0x89, 0x4a, + 0x10, 0x99, 0x1c, 0x91, 0x8a, 0xe1, 0x6b, 0xae, 0xf8, 0x77, 0x60, 0x75, + 0x3f, 0x14, 0xc1, 0x68, 0x3a, 0xc9, 0xf2, 0xfe, 0x75, 0x2f, 0x61, 0xa3, + 0xb6, 0xd2, 0x14, 0x7d, 0x9a, 0x60, 0x98, 0xda, 0x1c, 0xe3, 0x15, 0x33, + 0x06, 0x15, 0x32, 0x59, 0x1b, 0x09, 0x2e, 0xed, 0xf3, 0xfe, 0xae, 0x52, + 0xb5, 0x16, 0xee, 0xc6, 0xb3, 0x89, 0xa4, 0x81, 0x5f, 0xd4, 0x54, 0x99, + 0xcd, 0x42, 0xdc, 0xf7, 0xa6, 0x87, 0x2b, 0xde, 0xa8, 0x44, 0xc6, 0x84, + 0xde, 0x5c, 0x64, 0x71, 0x9a, 0x60, 0x98, 0xfb, 0x53, 0xe3, 0x76, 0x69, + 0x17, 0x38, 0xc5, 0x50, 0x87, 0x6f, 0x00, 0x9c, 0xad, 0x38, 0x3e, 0x4d, + 0x37, 0xbf, 0xde, 0xa5, 0x00, 0x7b, 0x50, 0x31, 0xe0, 0xd3, 0xf3, 0x51, + 0xd2, 0x8a, 0x62, 0x24, 0x06, 0x9c, 0x0d, 0x47, 0x9a, 0x50, 0x69, 0x01, + 0x47, 0x5d, 0x6d, 0xba, 0x3d, 0xc1, 0xff, 0x00, 0x66, 0xbc, 0xfd, 0x7a, + 0xd7, 0x75, 0xe2, 0x26, 0xc6, 0x8f, 0x2f, 0xbe, 0x05, 0x70, 0xa9, 0xd6, + 0xba, 0x68, 0xec, 0x73, 0xd6, 0xdc, 0x98, 0x9e, 0x2a, 0x26, 0x34, 0xf2, + 0x78, 0xa8, 0x98, 0xd6, 0xa6, 0x62, 0x66, 0x9c, 0x0d, 0x47, 0x4e, 0x53, + 0x48, 0xa4, 0x5a, 0x8e, 0xbb, 0x6f, 0x07, 0x70, 0x93, 0x1f, 0xa5, 0x70, + 0xf1, 0x1a, 0xec, 0xfc, 0x2b, 0x2f, 0x97, 0x0c, 0xa6, 0xb2, 0xab, 0xf0, + 0x9a, 0xd2, 0xf8, 0x8e, 0x9a, 0x76, 0xe4, 0x0a, 0xbf, 0x6b, 0xfe, 0xac, + 0x56, 0x33, 0x4d, 0xbd, 0xc5, 0x6c, 0x5a, 0x9f, 0xdd, 0x8a, 0xe3, 0x3a, + 0x51, 0x7a, 0x3e, 0xb5, 0x72, 0x2a, 0xa5, 0x15, 0x5d, 0x87, 0xad, 0x03, + 0x2f, 0xc3, 0x5a, 0xb6, 0xc2, 0xb2, 0xe0, 0x19, 0x22, 0xb6, 0xad, 0x23, + 0xca, 0x8a, 0x43, 0x48, 0x98, 0x74, 0xa3, 0x35, 0x24, 0x89, 0xb4, 0x54, + 0x19, 0xa4, 0x31, 0xf9, 0xa7, 0x02, 0x0d, 0x30, 0x53, 0x86, 0x29, 0x8a, + 0xc3, 0xb6, 0xe6, 0x8f, 0x25, 0x07, 0xcc, 0xdf, 0xad, 0x1b, 0xb1, 0xd2, + 0xa3, 0x62, 0xd2, 0x71, 0xda, 0x98, 0xac, 0x79, 0xdf, 0xc6, 0x3b, 0x93, + 0x17, 0x82, 0x66, 0xda, 0x76, 0xef, 0x70, 0xa3, 0x1f, 0x5a, 0xf9, 0x99, + 0xb2, 0x4e, 0x4f, 0x26, 0xbe, 0x85, 0xf8, 0xeb, 0x3e, 0xcf, 0x0d, 0xdb, + 0x42, 0x0f, 0xde, 0x98, 0x7f, 0x23, 0x5f, 0x3d, 0x1a, 0xa8, 0xec, 0x44, + 0x84, 0xa4, 0xa5, 0xa2, 0x99, 0x22, 0x63, 0x8c, 0xd6, 0x96, 0x83, 0x3f, + 0xd9, 0xb5, 0xdb, 0x29, 0x81, 0xc6, 0xd9, 0x94, 0xfe, 0xb5, 0x9c, 0x3e, + 0xe1, 0xfa, 0xd4, 0x96, 0xcf, 0xe5, 0xdc, 0xc4, 0xff, 0x00, 0xdd, 0x60, + 0x7f, 0x5a, 0x4f, 0x54, 0xc6, 0xb7, 0x3e, 0xbe, 0xb2, 0x20, 0xa2, 0x3f, + 0x51, 0xb4, 0x56, 0x9d, 0xb2, 0xfc, 0xb9, 0xf5, 0xac, 0x1d, 0x0a, 0x7f, + 0xb5, 0x68, 0xd6, 0x4e, 0xbc, 0x99, 0x22, 0x56, 0x27, 0xf0, 0xae, 0x8e, + 0x25, 0xda, 0x80, 0x56, 0x71, 0x7a, 0x1a, 0x49, 0x6a, 0x49, 0x46, 0x29, + 0x71, 0x4e, 0xdb, 0x45, 0xc2, 0xc3, 0x28, 0xa7, 0xe2, 0x9b, 0x8a, 0x2e, + 0x16, 0x10, 0x1f, 0x53, 0x42, 0x72, 0xcd, 0xf5, 0xa4, 0x20, 0xf6, 0xa7, + 0x42, 0x99, 0x66, 0xfa, 0xd4, 0xb2, 0x91, 0x5e, 0xe9, 0x01, 0x53, 0xeb, + 0x59, 0x32, 0x2f, 0x26, 0xba, 0x66, 0xb7, 0x05, 0x2b, 0x1e, 0xe2, 0xd7, + 0x0e, 0xd8, 0xa3, 0x60, 0xdc, 0xc8, 0x9d, 0x7f, 0x72, 0xff, 0x00, 0x43, + 0x5e, 0x4d, 0x77, 0xc4, 0xf2, 0x0f, 0xf6, 0x8d, 0x7b, 0x44, 0x96, 0xdf, + 0xb9, 0x6f, 0xa1, 0xaf, 0x19, 0xd4, 0x06, 0xdb, 0xc9, 0x97, 0xd1, 0xcd, + 0x71, 0x63, 0xbe, 0x14, 0x77, 0x60, 0x77, 0x91, 0x49, 0x8f, 0x34, 0xda, + 0x56, 0x3c, 0xd3, 0x6b, 0xc8, 0x67, 0x78, 0xe1, 0x4a, 0x29, 0xa2, 0x96, + 0x90, 0x0e, 0xcd, 0x2e, 0x69, 0xb9, 0xa3, 0x34, 0x80, 0x52, 0x6b, 0xa0, + 0x80, 0xe6, 0xde, 0x33, 0xfe, 0xc8, 0xae, 0x74, 0x9a, 0xe8, 0x2d, 0x0e, + 0x6d, 0x22, 0xff, 0x00, 0x74, 0x57, 0xa5, 0x96, 0xbf, 0x7a, 0x47, 0x0e, + 0x39, 0x7b, 0xa8, 0x90, 0xae, 0x69, 0x38, 0x14, 0xe2, 0x70, 0x6a, 0x26, + 0x39, 0x24, 0x57, 0xae, 0x79, 0xa3, 0x5d, 0x89, 0xe0, 0x52, 0x6d, 0xa5, + 0x03, 0x14, 0x8c, 0xd8, 0xa6, 0x21, 0xae, 0x7e, 0x47, 0xfa, 0x54, 0x48, + 0x54, 0xa0, 0x22, 0xa5, 0xc6, 0x62, 0x7f, 0xa5, 0x57, 0x89, 0x41, 0x8c, + 0x61, 0xa8, 0x13, 0x24, 0x38, 0xa0, 0x9a, 0x69, 0x51, 0x48, 0x4f, 0x1d, + 0x69, 0x88, 0x09, 0xa3, 0xad, 0x34, 0x91, 0x4a, 0xa6, 0x98, 0x87, 0x83, + 0xb0, 0x53, 0xe2, 0x38, 0x3b, 0x8d, 0x42, 0x4e, 0x4f, 0x35, 0x20, 0xe5, + 0x40, 0xf7, 0xa5, 0x2d, 0x8a, 0x8e, 0xe7, 0x9d, 0x78, 0xdd, 0xb7, 0x6b, + 0x92, 0x60, 0xf4, 0x51, 0x5c, 0xe4, 0x3f, 0xc5, 0x5d, 0x2f, 0x8d, 0xa2, + 0x0b, 0xa9, 0x2c, 0x80, 0xf2, 0xc3, 0x06, 0xb9, 0xc8, 0x01, 0xd9, 0x27, + 0x1d, 0x85, 0x38, 0xec, 0x0f, 0x71, 0xcd, 0xfe, 0xa4, 0xd2, 0x0e, 0x94, + 0x3f, 0xfa, 0xa3, 0xf5, 0xa4, 0x5e, 0x94, 0x08, 0x75, 0x14, 0x51, 0x40, + 0x05, 0x25, 0x14, 0x50, 0x02, 0x52, 0x52, 0x9a, 0x4a, 0x04, 0x76, 0x1e, + 0x06, 0xff, 0x00, 0x8f, 0xe9, 0xbf, 0xdd, 0x15, 0xe8, 0x6b, 0xd2, 0xbc, + 0xeb, 0xc0, 0xff, 0x00, 0xf1, 0xfd, 0x2f, 0xfb, 0xa2, 0xbd, 0x11, 0x7a, + 0x57, 0xca, 0xe6, 0x9f, 0xef, 0x0c, 0xef, 0xa3, 0xf0, 0x8a, 0x6a, 0x36, + 0x34, 0xf6, 0x35, 0x13, 0x1a, 0xf3, 0x51, 0xa3, 0x10, 0xd2, 0x52, 0x1a, + 0x2a, 0xd1, 0x23, 0x81, 0xab, 0x96, 0x8d, 0x89, 0x05, 0x51, 0x06, 0xad, + 0x5b, 0x37, 0xef, 0x05, 0x75, 0x51, 0x7a, 0x99, 0xc8, 0xb7, 0x75, 0xff, + 0x00, 0x1f, 0x4d, 0x4e, 0x8e, 0x99, 0x70, 0x73, 0x70, 0x4d, 0x39, 0x0d, + 0x7d, 0x65, 0x1f, 0xe1, 0xaf, 0x43, 0x89, 0xee, 0x5a, 0x8c, 0xd5, 0xa8, + 0xda, 0xa9, 0xa1, 0xab, 0x08, 0xd5, 0xa8, 0x8b, 0xa8, 0xf5, 0x3a, 0x3d, + 0x52, 0x56, 0xa9, 0x95, 0xe8, 0x11, 0x75, 0x5e, 0xa5, 0x57, 0xf7, 0xaa, + 0x4a, 0xf5, 0x20, 0x7a, 0x60, 0x5c, 0x12, 0x7b, 0xd3, 0xfc, 0xca, 0xa4, + 0x1c, 0xd3, 0xb7, 0xd0, 0x05, 0xb3, 0x25, 0x31, 0xe4, 0xf9, 0x1b, 0xe9, + 0x55, 0xfc, 0xca, 0x6b, 0xbf, 0xc8, 0x7e, 0x94, 0x08, 0xaa, 0x1f, 0xe5, + 0x1f, 0x4a, 0x61, 0x7a, 0x8c, 0x1f, 0x94, 0x7d, 0x29, 0xa5, 0xa8, 0x01, + 0x59, 0xaa, 0x26, 0x6e, 0x28, 0x66, 0xa8, 0xd8, 0xd0, 0x03, 0x59, 0xaa, + 0x07, 0x6a, 0x91, 0x8d, 0x42, 0xd4, 0x01, 0x19, 0x35, 0x0b, 0x9a, 0x91, + 0x8d, 0x42, 0xe6, 0x90, 0xc8, 0x9a, 0xa0, 0x7a, 0x99, 0xaa, 0x27, 0xa0, + 0x0a, 0xce, 0x2b, 0x98, 0xf1, 0x9c, 0x7e, 0x66, 0x97, 0x1c, 0x98, 0xe5, + 0x1f, 0xf9, 0xd7, 0x52, 0xe2, 0xb2, 0xf5, 0x7b, 0x1f, 0xb7, 0xe9, 0xd3, + 0x42, 0x3e, 0xf1, 0x5c, 0x8f, 0xad, 0x00, 0x79, 0x7d, 0x28, 0xa4, 0x65, + 0x28, 0xe5, 0x58, 0x60, 0x83, 0x82, 0x29, 0x45, 0x30, 0x3b, 0xaf, 0x0a, + 0x1d, 0x9a, 0x4b, 0x1f, 0x57, 0xad, 0x69, 0x9f, 0x72, 0x1a, 0xca, 0xf0, + 0xcc, 0x6c, 0xda, 0x42, 0x00, 0x0e, 0x0b, 0x1a, 0xd7, 0xb8, 0x89, 0x61, + 0xb7, 0x67, 0x6e, 0xb8, 0xe2, 0xb4, 0x5b, 0x1e, 0x6c, 0xfe, 0x26, 0x62, + 0xc8, 0x7e, 0x63, 0x4c, 0xcd, 0x23, 0x36, 0x5a, 0x93, 0x35, 0x20, 0x87, + 0x66, 0x9a, 0xdd, 0x0d, 0x2e, 0x69, 0xad, 0xd0, 0xd0, 0x07, 0x2f, 0x77, + 0xff, 0x00, 0x1f, 0x52, 0x7d, 0x6a, 0x1a, 0x9e, 0xf7, 0xfe, 0x3e, 0xa4, + 0xfa, 0xd5, 0x7a, 0x86, 0x7a, 0x11, 0xd9, 0x06, 0x6a, 0x37, 0xeb, 0x52, + 0x66, 0xa3, 0x7e, 0xb4, 0x22, 0x86, 0xa8, 0xcb, 0x01, 0x4e, 0x72, 0xa0, + 0xe1, 0x47, 0x4e, 0xfe, 0xb4, 0x44, 0x0b, 0x4a, 0xa1, 0x7a, 0xd3, 0x18, + 0xfc, 0xc7, 0xeb, 0x4c, 0x40, 0x1b, 0x07, 0x38, 0x06, 0xbb, 0x3f, 0x87, + 0x77, 0x8b, 0xa7, 0xf8, 0xaa, 0xda, 0xf9, 0x46, 0x04, 0x67, 0x71, 0x15, + 0xc5, 0x57, 0x4b, 0xe1, 0x40, 0xe2, 0x69, 0x64, 0x03, 0xe5, 0x0b, 0xd6, + 0x94, 0xb6, 0x29, 0x6e, 0x7b, 0x37, 0x88, 0x6d, 0xa2, 0xb7, 0x9e, 0x29, + 0x23, 0x6d, 0xc6, 0xe6, 0x15, 0x9d, 0xb9, 0xee, 0xdc, 0x9a, 0xc0, 0x61, + 0xb8, 0x7a, 0x1a, 0x51, 0x7d, 0xf6, 0x8b, 0x28, 0x7c, 0xc9, 0x37, 0x3a, + 0x20, 0x5c, 0x7a, 0x01, 0x51, 0x0b, 0x85, 0xee, 0x2b, 0x38, 0x6c, 0x5c, + 0xdd, 0xd8, 0x10, 0xdd, 0x29, 0x8c, 0x8d, 0x52, 0xf9, 0xe9, 0x48, 0x67, + 0x5f, 0x4a, 0xb2, 0x48, 0x36, 0xb7, 0xae, 0x2a, 0x68, 0x54, 0x07, 0xce, + 0xf2, 0x70, 0x29, 0x7c, 0xc8, 0xcf, 0x24, 0xe2, 0x95, 0x19, 0x00, 0x62, + 0x09, 0xa6, 0x02, 0x8e, 0xbd, 0x4d, 0x48, 0xa4, 0x7b, 0xd3, 0x16, 0x44, + 0x3d, 0xe9, 0xfb, 0x96, 0x81, 0x8f, 0xcd, 0x2e, 0x69, 0x9b, 0xa9, 0x43, + 0x73, 0x4c, 0x44, 0x99, 0xa7, 0x54, 0x79, 0xa7, 0x03, 0x48, 0x0c, 0x8f, + 0x13, 0x36, 0x34, 0x92, 0x3d, 0x58, 0x57, 0x14, 0x9d, 0x6b, 0xb1, 0xf1, + 0x4b, 0x7f, 0xc4, 0xb1, 0x47, 0xab, 0x8a, 0xe3, 0x93, 0xad, 0x75, 0x51, + 0xf8, 0x4e, 0x6a, 0xbf, 0x10, 0xf6, 0x35, 0x11, 0x34, 0xf6, 0x35, 0x11, + 0x35, 0xa1, 0x08, 0x33, 0x4e, 0x5a, 0x66, 0x69, 0x41, 0xa4, 0x51, 0x6a, + 0x23, 0xcd, 0x76, 0x9e, 0x15, 0x8c, 0x3d, 0xb4, 0xa4, 0xfa, 0xd7, 0x13, + 0x11, 0xe6, 0xbb, 0x7f, 0x09, 0x9c, 0x5a, 0x4b, 0xf5, 0xac, 0x6b, 0x7c, + 0x26, 0xd4, 0xbe, 0x23, 0x64, 0x26, 0x25, 0xc0, 0xad, 0xbb, 0x61, 0x84, + 0x15, 0x8a, 0xa7, 0x33, 0x56, 0xc4, 0x2d, 0x85, 0x15, 0xc8, 0xce, 0x94, + 0x5e, 0x88, 0xf3, 0x57, 0x62, 0x6e, 0x6b, 0x3a, 0x36, 0xf9, 0xaa, 0xe4, + 0x47, 0x9a, 0x43, 0x35, 0x6d, 0xdb, 0x91, 0x5b, 0x36, 0xb2, 0x61, 0x45, + 0x60, 0x42, 0xd8, 0x22, 0xb5, 0x20, 0x93, 0x0b, 0x48, 0x68, 0xd0, 0x96, + 0x6c, 0xad, 0x55, 0x59, 0x77, 0x64, 0x54, 0x72, 0x4b, 0x95, 0xaa, 0xe9, + 0x26, 0x1c, 0xfd, 0x69, 0x88, 0xd1, 0x49, 0x37, 0x0f, 0x7a, 0x90, 0x35, + 0x51, 0x57, 0xc3, 0x7d, 0x6a, 0xc2, 0xc9, 0x40, 0x16, 0x37, 0x52, 0x96, + 0xc0, 0xa8, 0x83, 0x8a, 0x46, 0x7a, 0x00, 0xf1, 0xef, 0x8e, 0x72, 0xc6, + 0x6d, 0xac, 0xe2, 0x95, 0x98, 0x0c, 0x92, 0xb8, 0xee, 0xde, 0xf5, 0xe1, + 0x06, 0xbd, 0xe3, 0xe3, 0x84, 0x22, 0x4d, 0x1a, 0xda, 0xe3, 0x8f, 0x96, + 0x60, 0xbe, 0xfc, 0x83, 0x5e, 0x0e, 0x6a, 0xa1, 0xb1, 0x9c, 0xf7, 0x12, + 0x8a, 0x29, 0xc8, 0x37, 0x9d, 0xb8, 0xea, 0x7a, 0xfa, 0x55, 0x37, 0x62, + 0x46, 0x76, 0x3f, 0x5a, 0x72, 0x7d, 0xe1, 0x48, 0xeb, 0xb5, 0x99, 0x7d, + 0x0d, 0x2c, 0x7f, 0x7d, 0x7e, 0xb4, 0x01, 0xf5, 0x57, 0x80, 0xe4, 0x12, + 0x78, 0x4f, 0x4f, 0x20, 0xe7, 0x11, 0x81, 0x5d, 0x8a, 0x60, 0x0a, 0xe0, + 0xfe, 0x1c, 0x5c, 0x09, 0x7c, 0x21, 0x66, 0x54, 0x63, 0x68, 0xdb, 0xf9, + 0x57, 0x73, 0x1b, 0x71, 0xcd, 0x62, 0xb6, 0x36, 0x7b, 0x93, 0x03, 0x4b, + 0x9a, 0x66, 0xe1, 0x46, 0xfa, 0x00, 0x79, 0x34, 0x6e, 0xa8, 0x4c, 0x80, + 0x53, 0x0c, 0xd4, 0x58, 0x2e, 0x4c, 0x5a, 0xa4, 0xb7, 0x70, 0x18, 0xfd, + 0x6a, 0x8b, 0xca, 0x71, 0xc5, 0x32, 0x29, 0x88, 0x72, 0x33, 0x9c, 0x1a, + 0x4d, 0x0c, 0xdd, 0x69, 0x06, 0xda, 0xc9, 0xb9, 0x95, 0x55, 0xc8, 0xa9, + 0x44, 0xd9, 0x5a, 0xa3, 0x78, 0x3b, 0x8e, 0xa6, 0x95, 0xee, 0x34, 0xac, + 0x2b, 0xc8, 0x0c, 0x2d, 0xf4, 0x35, 0xe2, 0x7a, 0xa7, 0x1a, 0x85, 0xc7, + 0xfb, 0xe7, 0xf9, 0xd7, 0xaf, 0x34, 0x85, 0x62, 0x61, 0x9e, 0xd5, 0xe4, + 0x3a, 0xaf, 0xfc, 0x84, 0x2e, 0x3f, 0xdf, 0x35, 0xc7, 0x8e, 0xf8, 0x11, + 0xdb, 0x82, 0x7a, 0xb3, 0x35, 0xba, 0xd2, 0x66, 0x94, 0x9e, 0x69, 0x2b, + 0xc8, 0x67, 0x78, 0xa2, 0x97, 0x34, 0x94, 0x52, 0x01, 0xd9, 0xa4, 0x26, + 0x93, 0x38, 0xa6, 0x96, 0xa0, 0x42, 0x9a, 0xe8, 0x2c, 0x0e, 0x6c, 0xa3, + 0xfa, 0x57, 0x3d, 0x9c, 0xd6, 0xee, 0x9c, 0xe3, 0xec, 0x28, 0x3d, 0x09, + 0xae, 0xfc, 0xbd, 0xfe, 0xf1, 0xaf, 0x23, 0x8f, 0x19, 0xf0, 0x22, 0xd3, + 0x02, 0x4d, 0x33, 0x18, 0x34, 0x33, 0x7a, 0x53, 0x73, 0x5e, 0xc1, 0xe6, + 0x03, 0x12, 0x01, 0xa8, 0xb3, 0xce, 0x4d, 0x3d, 0x8e, 0x45, 0x46, 0x45, + 0x31, 0x31, 0xe8, 0x43, 0x12, 0x3b, 0x62, 0xa9, 0x84, 0x74, 0x5e, 0x08, + 0xab, 0x31, 0xb6, 0xd7, 0x15, 0x1b, 0x8f, 0x98, 0xe3, 0x8e, 0x69, 0x88, + 0x84, 0x48, 0xc7, 0x83, 0x4e, 0x0d, 0xd4, 0x1a, 0x46, 0x4a, 0x40, 0x08, + 0x34, 0x00, 0xa7, 0xd6, 0x95, 0x5a, 0x9b, 0xcd, 0x28, 0xaa, 0x10, 0xfc, + 0xe7, 0x8a, 0x96, 0x3f, 0xbc, 0x2a, 0x10, 0x3b, 0xd5, 0x9b, 0x49, 0xbc, + 0x9b, 0xa8, 0xdf, 0x6a, 0xb1, 0x52, 0x1b, 0x0c, 0x32, 0x0f, 0xd6, 0x94, + 0xb6, 0x1c, 0x77, 0x38, 0x3f, 0x1d, 0x5b, 0xfe, 0xfe, 0x39, 0x50, 0x31, + 0x23, 0x3b, 0xce, 0x38, 0x1e, 0x95, 0x8b, 0xe1, 0xf7, 0xb4, 0x06, 0xe9, + 0x2f, 0x18, 0x2a, 0x34, 0x78, 0x07, 0x1d, 0xeb, 0x73, 0xc7, 0xd7, 0x44, + 0xea, 0x6e, 0x98, 0x40, 0xae, 0x37, 0xe0, 0x0c, 0x60, 0x93, 0xda, 0xb8, + 0xd8, 0x9b, 0x01, 0xbd, 0xe8, 0x5b, 0x03, 0xdc, 0x9a, 0x70, 0xa1, 0x18, + 0x29, 0xc8, 0xdd, 0xc5, 0x31, 0x7a, 0x50, 0xff, 0x00, 0xea, 0xbf, 0x1a, + 0x45, 0xe9, 0x4c, 0x43, 0xa8, 0xa4, 0xa2, 0x98, 0x0b, 0x49, 0x9a, 0x4c, + 0xd2, 0x13, 0x40, 0x85, 0xa4, 0xa0, 0xd2, 0x66, 0x90, 0x1d, 0x7f, 0x82, + 0x0f, 0xfa, 0x74, 0xbf, 0xee, 0x8a, 0xf4, 0x45, 0xe9, 0x5e, 0x73, 0xe0, + 0x83, 0xfe, 0x9f, 0x27, 0xfb, 0xa2, 0xbd, 0x15, 0x7a, 0x57, 0xca, 0xe6, + 0xbf, 0xc7, 0x67, 0x7d, 0x1f, 0x84, 0x18, 0xd4, 0x64, 0xd3, 0xda, 0xa2, + 0x26, 0xbc, 0xe4, 0x68, 0xc4, 0xa2, 0x93, 0x34, 0x55, 0x90, 0x19, 0xab, + 0x10, 0x1c, 0x38, 0xaa, 0xd5, 0x2c, 0x27, 0x0e, 0x2b, 0x6a, 0x4f, 0x52, + 0x24, 0x68, 0x4e, 0x7f, 0x7b, 0x9f, 0x6a, 0x72, 0x1a, 0x64, 0xc7, 0xe7, + 0x1f, 0x4a, 0x14, 0xd7, 0xd7, 0x50, 0xfe, 0x1c, 0x7d, 0x0e, 0x29, 0x6e, + 0x5a, 0x43, 0x53, 0xa9, 0xaa, 0x88, 0x6a, 0x75, 0x6a, 0xd4, 0x45, 0xa5, + 0x6a, 0x95, 0x5a, 0xaa, 0xab, 0x54, 0x81, 0xa9, 0x81, 0x68, 0x3d, 0x3c, + 0x3d, 0x55, 0x0f, 0x4f, 0x0d, 0x40, 0x8b, 0x42, 0x4a, 0x76, 0xf1, 0x55, + 0x77, 0x52, 0x86, 0x34, 0xc0, 0xb0, 0x5e, 0x9a, 0xef, 0xf2, 0x9f, 0xa5, + 0x45, 0xb8, 0xd3, 0x5d, 0xbe, 0x43, 0xf4, 0xa0, 0x44, 0x21, 0x86, 0xd1, + 0xf4, 0xa6, 0x96, 0xa8, 0xc3, 0x7c, 0xa3, 0xe9, 0x48, 0x4d, 0x03, 0x14, + 0xb5, 0x30, 0x9a, 0x42, 0x69, 0x84, 0xd0, 0x21, 0x18, 0xd4, 0x6c, 0x69, + 0xc4, 0xd4, 0x4d, 0x40, 0x0c, 0x63, 0x51, 0x35, 0x48, 0xc6, 0xa2, 0x6a, + 0x43, 0x23, 0x6a, 0x85, 0x85, 0x4a, 0xd5, 0x13, 0x50, 0x04, 0x2f, 0x51, + 0x74, 0x35, 0x33, 0x54, 0x0d, 0x40, 0x1e, 0x73, 0xe2, 0x9b, 0x0f, 0xb1, + 0x6a, 0xee, 0xca, 0x31, 0x1c, 0xbf, 0x38, 0xfe, 0xb5, 0x8c, 0x2b, 0xbc, + 0xf1, 0x75, 0x9f, 0xda, 0x74, 0xb1, 0x3a, 0x8c, 0xbc, 0x27, 0x3f, 0x85, + 0x70, 0x62, 0x98, 0x1e, 0x8b, 0xe1, 0x36, 0xc6, 0x88, 0x83, 0xdc, 0xd5, + 0x8d, 0x4e, 0x6d, 0xcb, 0xb7, 0xb5, 0x52, 0xf0, 0xcb, 0x6d, 0xd1, 0x10, + 0xfb, 0x9a, 0x5b, 0xd9, 0x37, 0x13, 0x5a, 0x74, 0x3c, 0xd9, 0xfc, 0x4c, + 0xa2, 0x7a, 0xd2, 0x66, 0x90, 0x9e, 0x68, 0xa9, 0x10, 0xec, 0xd2, 0x1e, + 0x94, 0x66, 0x90, 0xf4, 0xa1, 0x0c, 0xe6, 0x6f, 0xbf, 0xe3, 0xee, 0x4f, + 0xad, 0x56, 0xcd, 0x58, 0xbf, 0xff, 0x00, 0x8f, 0xc9, 0x3e, 0xb5, 0x5a, + 0xa1, 0xee, 0x7a, 0x10, 0xf8, 0x50, 0xb9, 0xa6, 0x39, 0xe6, 0x9d, 0x4c, + 0x7e, 0xb4, 0x22, 0x8b, 0x1a, 0x7a, 0xef, 0xbb, 0x19, 0xe8, 0xa0, 0x93, + 0x55, 0x9f, 0xef, 0xb7, 0xd6, 0xad, 0x58, 0x12, 0xad, 0x29, 0x1d, 0x4a, + 0x15, 0xfc, 0xe9, 0x5a, 0xc0, 0x64, 0x9f, 0xb4, 0x47, 0x47, 0x50, 0xe8, + 0x52, 0xae, 0x97, 0xc3, 0x0c, 0x45, 0xbd, 0xce, 0x0e, 0x3f, 0xfd, 0x55, + 0x8d, 0xf6, 0x10, 0x7a, 0x5c, 0x47, 0x5b, 0xda, 0x34, 0x5f, 0x66, 0xb5, + 0x91, 0x32, 0x09, 0x60, 0x4e, 0x45, 0x29, 0x6c, 0x35, 0xb9, 0xda, 0x69, + 0x6c, 0x8f, 0x69, 0xbd, 0x46, 0x59, 0x78, 0x6a, 0xb2, 0xe1, 0x71, 0x90, + 0x2b, 0x07, 0xc2, 0xf7, 0x8a, 0x75, 0x1b, 0xcb, 0x56, 0x3c, 0x10, 0x19, + 0x45, 0x6d, 0xb3, 0x18, 0xe5, 0x65, 0xfe, 0x12, 0x78, 0xa8, 0x89, 0x72, + 0x1a, 0x59, 0x7d, 0x29, 0x37, 0x2f, 0xa5, 0x3c, 0xe0, 0xfa, 0x53, 0x5a, + 0x3f, 0x4a, 0xb2, 0x46, 0xed, 0xc9, 0xe0, 0xd4, 0xe8, 0x08, 0x8c, 0xe4, + 0xf7, 0xaa, 0xfb, 0x48, 0x3c, 0xe6, 0xa4, 0x52, 0xbe, 0x5f, 0x2c, 0x47, + 0x34, 0xc0, 0x93, 0x6d, 0x3c, 0x71, 0x51, 0xa9, 0xff, 0x00, 0x6b, 0x34, + 0xbb, 0xb3, 0x40, 0x12, 0xe6, 0x94, 0x1a, 0x8c, 0x1a, 0x76, 0x69, 0x81, + 0x28, 0x34, 0xa0, 0xd4, 0x60, 0xd3, 0x81, 0xa0, 0x0c, 0x4f, 0x14, 0x9f, + 0xf4, 0x18, 0xc7, 0xfb, 0x55, 0xc9, 0xa5, 0x75, 0x1e, 0x2a, 0x6f, 0xf4, + 0x68, 0x47, 0xfb, 0x55, 0xcb, 0xa7, 0x4a, 0xe9, 0xa5, 0xf0, 0x9c, 0xd5, + 0x7e, 0x20, 0x63, 0x51, 0xe6, 0x9c, 0xc6, 0x99, 0x56, 0x4a, 0x0a, 0x50, + 0x69, 0xb4, 0xb4, 0x14, 0x58, 0x88, 0xf3, 0x5d, 0xbf, 0x85, 0xb8, 0xb2, + 0x97, 0xfd, 0xea, 0xe1, 0xa2, 0x3c, 0xd7, 0x6d, 0xe1, 0x83, 0x8b, 0x19, + 0x3f, 0xde, 0xac, 0x6b, 0x7c, 0x26, 0xb4, 0xbe, 0x23, 0x76, 0x23, 0x99, + 0xab, 0x5e, 0x23, 0xc0, 0xac, 0x78, 0x0e, 0x65, 0xad, 0x68, 0xcf, 0x02, + 0xb9, 0x19, 0xd2, 0x8b, 0x71, 0x1f, 0x9b, 0xf0, 0xab, 0xb1, 0x1e, 0x6b, + 0x3e, 0x36, 0xf9, 0xaa, 0xe4, 0x6d, 0x48, 0x66, 0x8c, 0x4d, 0xcd, 0x5e, + 0x8a, 0x4f, 0x92, 0xb2, 0xa3, 0x7e, 0x6a, 0xe2, 0x3f, 0xcb, 0x48, 0x0b, + 0x85, 0xfe, 0x53, 0x50, 0x07, 0xc4, 0x94, 0xdd, 0xfc, 0x54, 0x45, 0xbe, + 0x60, 0x69, 0xa1, 0x32, 0xf8, 0x7c, 0x8a, 0x99, 0x24, 0xe2, 0xa8, 0xab, + 0xd4, 0xaa, 0xf4, 0xc0, 0xbb, 0xe6, 0x53, 0x1a, 0x5e, 0xbe, 0xd5, 0x5c, + 0xc9, 0x51, 0x3c, 0xbc, 0x62, 0x80, 0x3c, 0x9b, 0xe3, 0x55, 0xcb, 0xf9, + 0x16, 0xb0, 0x67, 0xe4, 0x2f, 0xbb, 0xf4, 0xaf, 0x18, 0x35, 0xeb, 0xdf, + 0x19, 0x33, 0x20, 0xb6, 0x7c, 0x80, 0x15, 0xb6, 0x90, 0x7a, 0xe6, 0xbc, + 0x84, 0xd5, 0x43, 0x62, 0x27, 0xb8, 0x95, 0x24, 0x6c, 0xa8, 0x32, 0x6a, + 0x3a, 0x71, 0xff, 0x00, 0x51, 0xee, 0x1a, 0x89, 0x09, 0x16, 0x6f, 0x27, + 0x82, 0xe1, 0x50, 0xc3, 0x0f, 0x96, 0x54, 0x61, 0x8e, 0x7e, 0xf1, 0xaa, + 0x82, 0x93, 0x3c, 0x62, 0x81, 0x4d, 0x2b, 0x68, 0x23, 0xe9, 0x4f, 0x85, + 0xf2, 0x8f, 0xf8, 0x42, 0xed, 0x30, 0x7d, 0x7f, 0x9d, 0x77, 0x51, 0xcb, + 0x8e, 0xf5, 0xe6, 0x9f, 0x0a, 0xe4, 0x27, 0xc2, 0x10, 0x0c, 0xf4, 0x27, + 0xf9, 0xd7, 0xa0, 0x46, 0xe4, 0xd6, 0x51, 0xd8, 0xd6, 0x4f, 0x53, 0x43, + 0xcd, 0xf7, 0xa3, 0xcc, 0xaa, 0xc0, 0x9c, 0x53, 0x81, 0x34, 0xc5, 0x72, + 0x52, 0xf9, 0xa6, 0x34, 0x98, 0xa6, 0x13, 0x51, 0x97, 0xa0, 0x64, 0x8c, + 0xfc, 0x72, 0x6a, 0x18, 0x26, 0x2b, 0x24, 0x80, 0x1f, 0xe2, 0xa6, 0xb4, + 0xbe, 0x95, 0x04, 0x52, 0x1f, 0xb4, 0xc9, 0x83, 0xd4, 0x03, 0x48, 0x66, + 0xba, 0x4d, 0x9e, 0xb4, 0x93, 0x90, 0xcb, 0x54, 0xc4, 0xa4, 0x0e, 0x6a, + 0x4f, 0x30, 0x11, 0xef, 0x50, 0xca, 0x46, 0x7d, 0xc3, 0xed, 0x2c, 0x3d, + 0x6b, 0xca, 0x75, 0x5f, 0xf9, 0x08, 0xdc, 0x7f, 0xbe, 0x6b, 0xd4, 0xaf, + 0x0f, 0xcc, 0x6b, 0xcb, 0x75, 0x6f, 0xf9, 0x08, 0xcf, 0xfe, 0xf9, 0xae, + 0x4c, 0x77, 0xf0, 0xd1, 0xd9, 0x82, 0xf8, 0x99, 0x9a, 0x7a, 0xd2, 0x50, + 0x68, 0xaf, 0x1c, 0xf4, 0x05, 0xa3, 0x34, 0x52, 0x52, 0x10, 0x86, 0x93, + 0x69, 0x34, 0xec, 0x52, 0x8e, 0xb4, 0x20, 0x19, 0xb1, 0x85, 0x6d, 0x69, + 0xa4, 0x9b, 0x40, 0x3d, 0xcd, 0x65, 0x93, 0x81, 0x5a, 0x7a, 0x77, 0xfc, + 0x7a, 0x0f, 0xa9, 0xae, 0xec, 0x07, 0xf1, 0x5f, 0xa1, 0xc9, 0x8c, 0xfe, + 0x19, 0x70, 0x8c, 0x77, 0x14, 0xd3, 0xd6, 0x92, 0x83, 0xd6, 0xbd, 0x93, + 0xcc, 0x10, 0xd2, 0x11, 0x9a, 0x53, 0x4d, 0x90, 0xec, 0x43, 0x4c, 0x43, + 0x23, 0x3b, 0xa6, 0x1e, 0x80, 0xd2, 0x4d, 0xb9, 0x5c, 0x90, 0x32, 0xa4, + 0xd4, 0xb6, 0xe9, 0x82, 0xa3, 0xf3, 0xa4, 0x98, 0x91, 0x2b, 0x63, 0xa1, + 0x34, 0xc4, 0x57, 0x0f, 0x9e, 0xd4, 0x31, 0xf4, 0xa5, 0xc6, 0x7b, 0x54, + 0x6c, 0x08, 0x34, 0x08, 0x0b, 0x73, 0x49, 0x9e, 0x69, 0x0d, 0x00, 0x73, + 0x9a, 0x62, 0x1f, 0xbb, 0x02, 0x9f, 0x6e, 0x49, 0x94, 0x67, 0xa5, 0x57, + 0xea, 0xd5, 0x62, 0x11, 0xdf, 0xa5, 0x12, 0xd8, 0x71, 0xdc, 0xf3, 0xef, + 0x1b, 0x3e, 0xfd, 0x5f, 0x39, 0xfe, 0x1a, 0xe6, 0xe2, 0x3d, 0x45, 0x6e, + 0xf8, 0xb4, 0xe7, 0x54, 0xeb, 0x9f, 0x96, 0xb0, 0x63, 0xea, 0x68, 0x5b, + 0x09, 0xee, 0x48, 0xff, 0x00, 0x72, 0x90, 0x74, 0xa1, 0xfe, 0xe8, 0xa0, + 0x74, 0xa6, 0x0c, 0x5a, 0x29, 0x28, 0xa6, 0x20, 0xcd, 0x26, 0x68, 0xa4, + 0xa4, 0x00, 0x68, 0xef, 0x49, 0x49, 0x40, 0x1d, 0x77, 0x82, 0x4f, 0xfc, + 0x4c, 0x5f, 0xfd, 0xda, 0xf4, 0x65, 0xe9, 0x5e, 0x6d, 0xe0, 0xa3, 0x8d, + 0x49, 0xbf, 0xdd, 0xaf, 0x49, 0x5f, 0xbb, 0x5f, 0x2d, 0x9a, 0xff, 0x00, + 0x1c, 0xef, 0xa1, 0xf0, 0x88, 0xc6, 0xa2, 0x3d, 0x69, 0xec, 0x6a, 0x32, + 0x6b, 0xce, 0x45, 0xb1, 0x28, 0xa3, 0x34, 0x95, 0x44, 0x85, 0x49, 0x19, + 0xf9, 0x85, 0x45, 0x4e, 0x43, 0xf3, 0x0a, 0xd6, 0x9e, 0xe4, 0xc8, 0xd2, + 0x94, 0xfc, 0xcb, 0xfe, 0xed, 0x0a, 0x69, 0x92, 0x1c, 0xed, 0xff, 0x00, + 0x76, 0x95, 0x6b, 0xeb, 0x70, 0xff, 0x00, 0xc2, 0x8f, 0xa1, 0xc5, 0x2d, + 0xcb, 0x0a, 0x6a, 0x55, 0x35, 0x59, 0x4d, 0x4a, 0xad, 0x5b, 0x92, 0x58, + 0x06, 0xa4, 0x0d, 0x50, 0x03, 0x4f, 0x0d, 0x40, 0x16, 0x03, 0x53, 0xc3, + 0x55, 0x60, 0xd4, 0xf0, 0xd4, 0xc4, 0x58, 0xdd, 0x4b, 0xba, 0xab, 0xee, + 0x34, 0xed, 0xc6, 0x80, 0x25, 0xdd, 0x48, 0xef, 0xf2, 0x9f, 0xa5, 0x47, + 0xbb, 0x34, 0xd6, 0x3f, 0x29, 0xfa, 0x50, 0x03, 0x01, 0xf9, 0x47, 0xd2, + 0x90, 0x9a, 0x60, 0x6f, 0x94, 0x7d, 0x29, 0x09, 0xa0, 0x05, 0x26, 0x98, + 0x4d, 0x04, 0xd3, 0x49, 0xa0, 0x42, 0x13, 0x51, 0x93, 0x4e, 0x63, 0x51, + 0x93, 0x4c, 0x06, 0x9a, 0x8d, 0xa9, 0xec, 0x6a, 0x33, 0x48, 0x06, 0x35, + 0x44, 0xd5, 0x23, 0x54, 0x4c, 0x68, 0x19, 0x13, 0x54, 0x0f, 0x53, 0xb5, + 0x42, 0xc2, 0x80, 0x2a, 0x5c, 0xc4, 0x27, 0x82, 0x48, 0x98, 0x64, 0x3a, + 0x90, 0x6b, 0xcc, 0x2e, 0xad, 0xde, 0xd6, 0xea, 0x48, 0x5c, 0x61, 0x91, + 0xb1, 0x5e, 0xaa, 0xc2, 0xb9, 0x3f, 0x17, 0x69, 0xbb, 0xa3, 0x5b, 0xf8, + 0x97, 0x95, 0xf9, 0x64, 0xc7, 0xa7, 0xad, 0x08, 0x0b, 0x9a, 0x01, 0xc6, + 0x83, 0x1e, 0x3b, 0x93, 0xfc, 0xe9, 0x2e, 0x5b, 0x9e, 0xb4, 0xcd, 0x15, + 0xb6, 0xe8, 0x50, 0xfe, 0x3f, 0xce, 0x99, 0x33, 0x65, 0xab, 0x4e, 0x87, + 0x99, 0x3f, 0x89, 0x91, 0xd1, 0x49, 0x45, 0x48, 0x0a, 0x0d, 0x07, 0xa1, + 0xa4, 0xa0, 0x9e, 0x29, 0xa0, 0x39, 0xab, 0xff, 0x00, 0xf8, 0xfc, 0x93, + 0xeb, 0x55, 0xaa, 0xc5, 0xff, 0x00, 0xfc, 0x7e, 0x3f, 0xd6, 0xab, 0x54, + 0x3d, 0xcf, 0x46, 0x1f, 0x0a, 0x16, 0xa3, 0x6e, 0xb4, 0xfa, 0x63, 0x75, + 0xa1, 0x14, 0x4f, 0x0f, 0xcb, 0x6b, 0x2b, 0x77, 0x24, 0x0a, 0xac, 0xc4, + 0xe4, 0xf3, 0xde, 0xac, 0x67, 0x6d, 0x90, 0x1f, 0xde, 0x7a, 0x4c, 0xdb, + 0xff, 0x00, 0x12, 0xbe, 0x7b, 0xd3, 0x02, 0xbe, 0x48, 0xef, 0x5b, 0xda, + 0x14, 0xcf, 0x2b, 0x4b, 0xbc, 0xf0, 0xa8, 0x14, 0x56, 0x47, 0xfa, 0x37, + 0xa3, 0xd6, 0xbe, 0x8b, 0xe5, 0x62, 0x63, 0x1e, 0x7a, 0x73, 0x9a, 0x89, + 0x6c, 0x35, 0xb9, 0x6f, 0x48, 0xbc, 0xfb, 0x27, 0x8b, 0xe3, 0x24, 0xe1, + 0x5f, 0xe4, 0x3f, 0x8d, 0x77, 0xd7, 0x24, 0x3b, 0x63, 0xa1, 0xea, 0x2b, + 0xca, 0x6f, 0xe4, 0x30, 0x6a, 0xe2, 0x41, 0xd5, 0x48, 0x35, 0xea, 0x22, + 0x51, 0x71, 0x61, 0x0c, 0xe8, 0xbd, 0x54, 0x1c, 0xd4, 0x2e, 0x86, 0x8f, + 0xa8, 0xc5, 0x6c, 0x8f, 0xe7, 0x41, 0x2c, 0x39, 0x04, 0xd2, 0x1e, 0x46, + 0xf1, 0xd0, 0xf5, 0xa4, 0xce, 0xda, 0xd0, 0x80, 0xfb, 0x41, 0xe8, 0x46, + 0x6a, 0x54, 0x3b, 0xe2, 0x3c, 0x77, 0xa8, 0xba, 0x73, 0xda, 0xa5, 0x89, + 0xd4, 0x21, 0x22, 0x98, 0x0a, 0x16, 0x9e, 0x01, 0xa0, 0x30, 0x3d, 0x05, + 0x29, 0x20, 0x0e, 0xb4, 0x00, 0xb9, 0xa7, 0x03, 0x51, 0xe7, 0x26, 0x9c, + 0x0d, 0x30, 0x24, 0xcd, 0x38, 0x54, 0x79, 0xa7, 0x66, 0x90, 0x18, 0x1e, + 0x2a, 0x3f, 0xba, 0x80, 0x7b, 0x9a, 0xe6, 0x97, 0xa5, 0x74, 0x5e, 0x28, + 0x39, 0x8e, 0x0f, 0xa9, 0xae, 0x74, 0x7d, 0xda, 0xea, 0xa5, 0xf0, 0x9c, + 0xb5, 0x3e, 0x21, 0x8c, 0x79, 0xa6, 0xd2, 0x9e, 0xb4, 0xda, 0xb1, 0x21, + 0x68, 0xa4, 0xa2, 0x91, 0x44, 0xf1, 0x1e, 0x6b, 0xb5, 0xf0, 0xd1, 0xff, + 0x00, 0x41, 0x93, 0xfd, 0xea, 0xe2, 0x22, 0x3c, 0xd7, 0x6b, 0xe1, 0xb3, + 0xfe, 0x82, 0xff, 0x00, 0xef, 0x56, 0x55, 0xbe, 0x13, 0x5a, 0x7f, 0x11, + 0xbd, 0x6d, 0xfe, 0xb2, 0xb5, 0x10, 0xf0, 0x2b, 0x2e, 0xdb, 0xef, 0x56, + 0x8a, 0x1e, 0x95, 0xc8, 0x74, 0x16, 0x90, 0xf3, 0x56, 0xe3, 0x6e, 0x2a, + 0x8c, 0x66, 0xac, 0xa3, 0x71, 0x48, 0x65, 0xf8, 0xdb, 0x91, 0x56, 0x91, + 0xf8, 0xaa, 0x11, 0xb7, 0x4a, 0xb0, 0xad, 0xf2, 0x9a, 0x00, 0xb5, 0xbf, + 0x8e, 0xb4, 0xc2, 0xdd, 0x7e, 0xb5, 0x1e, 0xea, 0x09, 0xe4, 0x8f, 0x6a, + 0x62, 0x2c, 0xa3, 0xf1, 0x52, 0x07, 0xaa, 0x68, 0xd5, 0x20, 0x6a, 0x00, + 0xb3, 0xe6, 0x71, 0x4c, 0x2f, 0xce, 0x6a, 0x2d, 0xfe, 0xf4, 0xcf, 0x33, + 0x2e, 0x3d, 0x07, 0x34, 0xc5, 0x73, 0xc8, 0x7e, 0x31, 0x5c, 0x99, 0x2f, + 0xad, 0xe2, 0xec, 0xbf, 0xce, 0xbc, 0xb2, 0xbb, 0xff, 0x00, 0x89, 0xd7, + 0x1e, 0x7e, 0xaa, 0x79, 0xfb, 0xb2, 0xb2, 0xfe, 0x82, 0xb8, 0x0a, 0xa8, + 0xec, 0x4c, 0xb7, 0x0a, 0x70, 0xff, 0x00, 0x52, 0xdf, 0x51, 0x4c, 0xa7, + 0xff, 0x00, 0xcb, 0x13, 0xec, 0x69, 0x30, 0x44, 0x74, 0x51, 0x40, 0xa6, + 0x23, 0xdf, 0x3e, 0x13, 0x4c, 0x92, 0x78, 0x60, 0x0e, 0xe8, 0xc4, 0x11, + 0x5e, 0x88, 0x8e, 0x31, 0x5e, 0x47, 0xf0, 0x72, 0xe7, 0x36, 0x37, 0x96, + 0xf9, 0xe5, 0x58, 0x36, 0x2b, 0xd4, 0x91, 0xeb, 0x38, 0xa3, 0x46, 0x68, + 0x09, 0x78, 0xa5, 0xf3, 0x6a, 0xa0, 0x7f, 0x94, 0x52, 0xef, 0xa7, 0x60, + 0x27, 0x69, 0x3d, 0xea, 0x32, 0xf5, 0x11, 0x7a, 0x8d, 0x9e, 0x90, 0x12, + 0x33, 0xd4, 0x2b, 0x28, 0x5b, 0xa3, 0x9c, 0xfd, 0xda, 0x69, 0x7e, 0x4d, + 0x46, 0x8d, 0x99, 0xfe, 0x61, 0xfc, 0x34, 0x98, 0xcb, 0xfe, 0x68, 0x61, + 0x47, 0x9b, 0xef, 0x55, 0x0b, 0x05, 0xe8, 0x69, 0x3c, 0xce, 0x07, 0x35, + 0x2c, 0xa4, 0x2d, 0xd3, 0x66, 0xbc, 0xcb, 0x58, 0xe3, 0x52, 0x9f, 0xfd, + 0xe3, 0x5e, 0x8f, 0x2b, 0x64, 0x1a, 0xf3, 0x8d, 0x6f, 0x8d, 0x4a, 0x7f, + 0xf7, 0xab, 0x8f, 0x1b, 0xfc, 0x33, 0xb7, 0x05, 0xf1, 0xb3, 0x2c, 0xd1, + 0x41, 0xa2, 0xbc, 0x63, 0xbc, 0x5a, 0x31, 0x45, 0x14, 0x80, 0x28, 0x14, + 0x51, 0x4c, 0x05, 0x63, 0xf2, 0xd6, 0xae, 0x9f, 0xff, 0x00, 0x1e, 0x6b, + 0xf5, 0x35, 0x90, 0xdd, 0x2b, 0x5a, 0xcb, 0x8b, 0x44, 0x15, 0xe8, 0x65, + 0xff, 0x00, 0x1b, 0x39, 0x31, 0x9f, 0x02, 0x2c, 0xd2, 0x67, 0xa5, 0x21, + 0x34, 0x57, 0xae, 0x79, 0x83, 0x8f, 0x4a, 0x86, 0x73, 0x9c, 0x01, 0x52, + 0x92, 0x36, 0x9a, 0x8a, 0x25, 0xf3, 0x25, 0xdd, 0xda, 0x98, 0x8b, 0x0b, + 0xfb, 0xb4, 0x5f, 0xef, 0x31, 0xc5, 0x24, 0xa0, 0x09, 0x0a, 0x91, 0x49, + 0xbb, 0xcc, 0xbb, 0x45, 0x1d, 0x16, 0x9d, 0x76, 0x0a, 0xca, 0xc5, 0x7a, + 0x53, 0x11, 0x03, 0xa6, 0x33, 0x8a, 0x61, 0x5c, 0x9a, 0x77, 0x98, 0x48, + 0xc1, 0xa3, 0x19, 0x34, 0x08, 0x88, 0xaf, 0x5a, 0x8d, 0xce, 0xd1, 0x8e, + 0xf5, 0x3c, 0x84, 0x28, 0x35, 0x4b, 0x26, 0x47, 0xa6, 0x22, 0x54, 0x1d, + 0xbd, 0x7a, 0xd4, 0x93, 0xc9, 0xe5, 0x5a, 0x48, 0xfe, 0x9c, 0x53, 0x57, + 0xe5, 0x1e, 0xf5, 0x47, 0x5b, 0xb8, 0xfb, 0x36, 0x96, 0x46, 0x79, 0x77, + 0x55, 0xfd, 0x69, 0x4b, 0x62, 0x91, 0xc3, 0xf8, 0xa0, 0xe7, 0x51, 0x07, + 0xfd, 0x81, 0x58, 0x91, 0xf7, 0xad, 0x7f, 0x12, 0x1c, 0xdf, 0xaf, 0xfb, + 0x82, 0xb1, 0xd3, 0xbd, 0x35, 0xb1, 0x2f, 0x71, 0xed, 0xf7, 0x45, 0x03, + 0xa5, 0x0d, 0xf7, 0x45, 0x20, 0xe9, 0x4c, 0x18, 0xb4, 0x66, 0x92, 0x8a, + 0x04, 0x19, 0xa4, 0xa2, 0x92, 0x80, 0x0a, 0x28, 0xa4, 0xa0, 0x0e, 0xa7, + 0xc1, 0x87, 0x1a, 0xae, 0x3f, 0xd9, 0xaf, 0x4a, 0x5f, 0xbb, 0x5e, 0x63, + 0xe0, 0xe3, 0x8d, 0x5d, 0x7f, 0xdd, 0x35, 0xe9, 0xcb, 0xf7, 0x45, 0x7c, + 0xc6, 0x6d, 0xfc, 0x6f, 0x91, 0xdd, 0x43, 0xe1, 0x1a, 0xe6, 0xa3, 0x34, + 0xe7, 0x35, 0x1d, 0x79, 0xa8, 0xb6, 0x2d, 0x25, 0x14, 0x95, 0x42, 0x03, + 0x4e, 0x53, 0xf3, 0x0a, 0x6d, 0x00, 0xf3, 0x57, 0x0d, 0xc9, 0x66, 0x83, + 0x1e, 0x13, 0xe9, 0x4a, 0xb4, 0xc2, 0x7e, 0x54, 0xfa, 0x53, 0x81, 0xaf, + 0xad, 0xc3, 0x7f, 0x06, 0x3e, 0x87, 0x14, 0xb7, 0x26, 0x5a, 0x90, 0x1a, + 0x84, 0x54, 0x82, 0xb7, 0x24, 0x98, 0x35, 0x38, 0x35, 0x44, 0x0d, 0x38, + 0x1a, 0x62, 0x26, 0x06, 0x9e, 0x0d, 0x42, 0x0d, 0x38, 0x1a, 0x00, 0x97, + 0x34, 0xb9, 0xa8, 0x83, 0x52, 0xee, 0xa0, 0x09, 0x33, 0x48, 0xc7, 0xe5, + 0x3f, 0x4a, 0x6e, 0xea, 0x46, 0x3f, 0x29, 0xfa, 0x53, 0x01, 0x83, 0xee, + 0x8f, 0xa5, 0x06, 0x9a, 0x0f, 0xca, 0x3e, 0x94, 0x13, 0x40, 0x01, 0xa6, + 0x9a, 0x0b, 0x53, 0x49, 0xa0, 0x42, 0x1a, 0x61, 0xa5, 0x26, 0x9a, 0x69, + 0x80, 0xc3, 0x51, 0x9a, 0x91, 0x8d, 0x46, 0x69, 0x00, 0xc6, 0xa8, 0x9a, + 0xa5, 0x35, 0x19, 0xa6, 0x04, 0x4d, 0x51, 0x35, 0x4c, 0x6a, 0x26, 0x14, + 0x80, 0x81, 0xaa, 0xbc, 0xf1, 0x24, 0xf0, 0x3c, 0x32, 0x0c, 0xab, 0x8c, + 0x1a, 0xb2, 0xc2, 0xa2, 0x65, 0xa0, 0x66, 0x0c, 0x30, 0x1b, 0x1b, 0x05, + 0xb7, 0x6e, 0xaa, 0x48, 0xfc, 0x33, 0x55, 0x58, 0xe4, 0xd5, 0xfd, 0x4d, + 0x8f, 0x9d, 0xb4, 0x7a, 0x56, 0x76, 0x0d, 0x59, 0xe6, 0x4f, 0x49, 0x30, + 0xcd, 0x19, 0xa4, 0xc5, 0x18, 0xa0, 0x91, 0x68, 0x3d, 0x29, 0x33, 0x41, + 0xe9, 0x40, 0xce, 0x6a, 0xfc, 0xff, 0x00, 0xa6, 0x3f, 0xd6, 0xaa, 0xe6, + 0xac, 0xea, 0x1f, 0xf1, 0xfa, 0xf5, 0x57, 0x35, 0x0f, 0x73, 0xd2, 0x87, + 0xc2, 0x87, 0x66, 0x93, 0x61, 0x6e, 0x94, 0x95, 0x34, 0x38, 0xda, 0x6a, + 0x64, 0xec, 0x8d, 0x12, 0x16, 0x44, 0x61, 0x04, 0x43, 0xea, 0x4d, 0x46, + 0x6d, 0xe5, 0x6e, 0x44, 0x6c, 0x47, 0xa8, 0x15, 0x6a, 0x4c, 0x70, 0x3d, + 0x16, 0x9f, 0x15, 0xcc, 0xd1, 0xa0, 0x09, 0x21, 0x02, 0xa7, 0x9e, 0xc1, + 0xca, 0x50, 0x36, 0xf3, 0x7f, 0xcf, 0x36, 0xfc, 0xab, 0x67, 0x44, 0x8d, + 0xe3, 0x86, 0x72, 0xcb, 0x8e, 0x95, 0x08, 0xbd, 0xb8, 0xfe, 0xff, 0x00, + 0xe9, 0x57, 0xad, 0x2e, 0x64, 0x7b, 0x79, 0x37, 0xf2, 0x49, 0x00, 0x1a, + 0x4e, 0x57, 0xd1, 0x0d, 0x2b, 0x6e, 0x65, 0xea, 0x5c, 0x6a, 0x6c, 0xc5, + 0x49, 0x03, 0x15, 0xe8, 0xde, 0x1b, 0xb9, 0xfb, 0x46, 0x86, 0x88, 0xdc, + 0x6c, 0xe3, 0x07, 0xd2, 0xbc, 0xfa, 0xf1, 0xc9, 0xb9, 0x76, 0x7c, 0x0a, + 0xe8, 0x3c, 0x15, 0x7c, 0x24, 0xb9, 0x92, 0xd1, 0xdc, 0x8d, 0xcb, 0x91, + 0xf8, 0x52, 0x57, 0xb6, 0xa5, 0x75, 0x3a, 0x8e, 0x11, 0x8f, 0xf7, 0x4f, + 0x5a, 0x42, 0x31, 0xf2, 0x9f, 0xc0, 0xd3, 0xe4, 0x50, 0x92, 0xb2, 0x76, + 0xa8, 0xcf, 0x4d, 0xad, 0xd4, 0x74, 0x35, 0xaa, 0x24, 0x60, 0x7c, 0x70, + 0x6a, 0x54, 0x21, 0x90, 0xe0, 0x62, 0xa1, 0x65, 0xee, 0x3a, 0x53, 0xe1, + 0x3f, 0x2b, 0x66, 0x98, 0x89, 0x46, 0x45, 0x29, 0x34, 0x80, 0x8a, 0x33, + 0xcd, 0x30, 0x1e, 0x0d, 0x3c, 0x54, 0x42, 0xa4, 0x5a, 0x00, 0x7f, 0x7a, + 0x52, 0x71, 0x4d, 0xef, 0x4a, 0x4d, 0x20, 0x30, 0x3c, 0x50, 0x7e, 0x48, + 0x3f, 0x1a, 0xe7, 0x7a, 0x2d, 0x74, 0x1e, 0x27, 0x3c, 0x5b, 0xfe, 0x35, + 0xcf, 0x31, 0xe2, 0xba, 0xa9, 0xfc, 0x27, 0x2d, 0x4f, 0x8c, 0x61, 0xa4, + 0xa2, 0x93, 0x35, 0x60, 0x85, 0xa2, 0x92, 0x8a, 0x43, 0x44, 0xb1, 0xf5, + 0xae, 0xd3, 0xc3, 0x7f, 0xf1, 0xe2, 0xdf, 0xef, 0x57, 0x12, 0x9d, 0x6b, + 0xb6, 0xf0, 0xe7, 0xfc, 0x78, 0x1f, 0xf7, 0xab, 0x2a, 0xdf, 0x09, 0xb5, + 0x2d, 0xcd, 0xfb, 0x6f, 0xbd, 0x57, 0xd0, 0xf4, 0xac, 0xfb, 0x7e, 0xa6, + 0xaf, 0x21, 0xe9, 0x5c, 0x87, 0x41, 0x65, 0x0f, 0x26, 0xac, 0xc6, 0x78, + 0xaa, 0x8a, 0x7e, 0x63, 0x56, 0x10, 0xf1, 0x48, 0x0b, 0x91, 0x9e, 0x2a, + 0x74, 0x6e, 0xb5, 0x55, 0x0f, 0x02, 0xa6, 0x43, 0xcd, 0x30, 0x2c, 0x6e, + 0xe2, 0x86, 0x6f, 0x9c, 0x7d, 0x2a, 0x30, 0x78, 0xa5, 0x63, 0xd0, 0xd0, + 0x21, 0xc1, 0xb0, 0x71, 0x52, 0x6e, 0xa8, 0xbb, 0xd3, 0xb3, 0xc5, 0x31, + 0x0e, 0x2d, 0x4d, 0x0d, 0x84, 0x66, 0x34, 0xd3, 0xcf, 0x14, 0xcb, 0xa6, + 0xd9, 0x6f, 0x26, 0x3f, 0x85, 0x09, 0xfd, 0x28, 0x06, 0x78, 0x37, 0x8c, + 0xe6, 0x6b, 0x9b, 0xa6, 0x93, 0x04, 0xe6, 0xe2, 0x4f, 0xd0, 0x81, 0x5c, + 0x9e, 0xd3, 0xe8, 0x6b, 0xd0, 0x6f, 0xad, 0x21, 0x92, 0xea, 0x18, 0xde, + 0x4f, 0x95, 0xe5, 0x6c, 0x9f, 0x73, 0xcd, 0x58, 0x7f, 0x0d, 0x5a, 0xb4, + 0x78, 0x8f, 0xcc, 0x0f, 0xea, 0xd8, 0xc5, 0x17, 0x64, 0xb3, 0xcd, 0x70, + 0x7d, 0x0d, 0x38, 0x64, 0x23, 0x0c, 0x1f, 0x5a, 0xee, 0xe5, 0xf0, 0xab, + 0xba, 0x10, 0x92, 0x85, 0x3e, 0xbb, 0x6a, 0xb1, 0xf0, 0x65, 0xc3, 0x0c, + 0x1b, 0xac, 0x8f, 0x75, 0xa2, 0xed, 0x86, 0x88, 0xe3, 0x02, 0x13, 0x19, + 0x6c, 0x8e, 0x0f, 0x4a, 0x6d, 0x75, 0x17, 0xfe, 0x15, 0x92, 0xca, 0x2d, + 0xe6, 0x65, 0x6e, 0xa7, 0x18, 0xec, 0x2b, 0x11, 0x56, 0x05, 0x53, 0xe6, + 0x29, 0x39, 0xe8, 0x47, 0x6a, 0x77, 0x12, 0xd4, 0xee, 0xfe, 0x11, 0x5d, + 0x18, 0xf5, 0xe9, 0xe0, 0xcf, 0x12, 0x45, 0x9c, 0x7d, 0x2b, 0xda, 0xb3, + 0x83, 0x5e, 0x23, 0xf0, 0xde, 0x16, 0x83, 0x5e, 0x8e, 0xe5, 0x47, 0xee, + 0xc8, 0x31, 0x92, 0x4f, 0xad, 0x7b, 0x60, 0xe5, 0x6a, 0x51, 0x57, 0x26, + 0x53, 0xf2, 0x51, 0xba, 0x9a, 0xa7, 0xe4, 0x14, 0xd2, 0x69, 0x80, 0xf2, + 0xdc, 0xd3, 0x09, 0xa6, 0x96, 0xa6, 0x16, 0xa4, 0x31, 0x59, 0xb9, 0xc5, + 0x30, 0x30, 0xfb, 0x40, 0xf4, 0xc7, 0x5a, 0x61, 0x6f, 0x9b, 0x9a, 0x72, + 0x15, 0x66, 0x20, 0xfa, 0x52, 0x29, 0x0f, 0x76, 0x19, 0xc5, 0x46, 0x5f, + 0x8a, 0x6b, 0x65, 0x4f, 0x3c, 0x8a, 0x85, 0x9e, 0xa4, 0x64, 0xcc, 0xd9, + 0xcf, 0x35, 0xc0, 0x6b, 0xbc, 0x6a, 0x73, 0x7d, 0x6b, 0xb6, 0xdd, 0xfb, + 0xc3, 0x5c, 0x56, 0xbc, 0x31, 0xa9, 0xcb, 0x5c, 0x58, 0xef, 0xe1, 0x1d, + 0x98, 0x2f, 0x8d, 0x99, 0x07, 0xad, 0x03, 0xa5, 0x25, 0x28, 0xaf, 0x18, + 0xf4, 0x45, 0xa5, 0xa2, 0x96, 0x90, 0xc4, 0xa2, 0x8a, 0x4a, 0x60, 0x23, + 0x74, 0xad, 0x7b, 0x61, 0x8b, 0x68, 0xfe, 0x95, 0x90, 0x7a, 0x56, 0xc4, + 0x3c, 0x41, 0x18, 0xff, 0x00, 0x64, 0x57, 0xa3, 0x97, 0x7c, 0x52, 0x38, + 0x71, 0x9f, 0x0a, 0x1f, 0x9a, 0x5a, 0x6d, 0x19, 0xe2, 0xbd, 0x63, 0xce, + 0x11, 0xdb, 0x27, 0x14, 0xf8, 0xff, 0x00, 0x75, 0x06, 0x7b, 0xd4, 0x4b, + 0xf3, 0x37, 0xe3, 0x4b, 0x33, 0xe4, 0x85, 0x1d, 0x05, 0x31, 0x13, 0xd8, + 0x2e, 0xe9, 0x8b, 0x9a, 0x7d, 0xc1, 0x61, 0x3b, 0x67, 0x90, 0x4d, 0x3a, + 0xd1, 0x36, 0x47, 0xfc, 0xe9, 0xb2, 0x1d, 0xf2, 0x33, 0x0f, 0x5a, 0x04, + 0x57, 0x74, 0x1b, 0x96, 0x97, 0x38, 0xcd, 0x3d, 0xbe, 0x7e, 0x6a, 0x09, + 0x0f, 0x51, 0x40, 0x15, 0xe7, 0x72, 0xc7, 0x68, 0xa6, 0x8f, 0x90, 0x7b, + 0xd3, 0xb0, 0x06, 0x58, 0xd3, 0x54, 0x6e, 0x39, 0x34, 0xc4, 0x39, 0x0e, + 0xe7, 0x15, 0xce, 0xf8, 0xc6, 0xe0, 0xab, 0xd9, 0x5b, 0x83, 0xd6, 0x4d, + 0xc6, 0xba, 0x68, 0x13, 0x9c, 0xd7, 0x13, 0xe2, 0xb9, 0x84, 0x9e, 0x25, + 0xb7, 0x8f, 0x3c, 0x47, 0xb4, 0x1f, 0xae, 0x68, 0x63, 0x46, 0x3f, 0x88, + 0x79, 0xbd, 0x5f, 0xf7, 0x05, 0x64, 0xa7, 0x7a, 0xd9, 0xd7, 0xa3, 0xdd, + 0xa8, 0xaa, 0xfa, 0xa8, 0xac, 0xd9, 0x2d, 0xc4, 0x4a, 0x48, 0x24, 0xd0, + 0x98, 0x9a, 0x22, 0x6e, 0x82, 0x92, 0x94, 0xf4, 0x14, 0x94, 0xc4, 0xc2, + 0x8a, 0x29, 0x29, 0x88, 0x28, 0xa2, 0x92, 0x80, 0x0a, 0x4a, 0x5a, 0x4a, + 0x40, 0x74, 0x7e, 0x11, 0x38, 0xd6, 0x53, 0xfd, 0xd3, 0x5e, 0xa0, 0xa7, + 0xe4, 0x15, 0xe5, 0x9e, 0x14, 0x38, 0xd6, 0x62, 0xfa, 0x1a, 0xf5, 0x15, + 0x3f, 0x20, 0xaf, 0x9a, 0xcd, 0xff, 0x00, 0x8c, 0xbd, 0x0e, 0xda, 0x1f, + 0x08, 0xd6, 0x35, 0x1e, 0x69, 0xc4, 0xe6, 0x93, 0x15, 0xe6, 0xa2, 0xd8, + 0xda, 0x0d, 0x2e, 0x29, 0x31, 0x4c, 0x41, 0x40, 0x3c, 0xd2, 0x52, 0x77, + 0xab, 0x44, 0xb2, 0xf8, 0xe6, 0x34, 0xfa, 0x53, 0xc5, 0x44, 0x87, 0xf7, + 0x6b, 0x52, 0x29, 0xaf, 0xac, 0xc2, 0x7f, 0x06, 0x27, 0x1c, 0xb7, 0x25, + 0x14, 0xf0, 0x6a, 0x30, 0x69, 0xe2, 0xba, 0x09, 0x24, 0x14, 0xe1, 0x51, + 0x83, 0x4e, 0x06, 0x81, 0x12, 0x8a, 0x70, 0x35, 0x18, 0x6a, 0x70, 0x6a, + 0x60, 0x49, 0x4b, 0x51, 0xee, 0xa5, 0xdd, 0x40, 0x0f, 0xc5, 0x23, 0x7d, + 0xd3, 0xf4, 0xa4, 0xdd, 0x48, 0xc7, 0xe5, 0x3f, 0x4a, 0x00, 0x68, 0xfb, + 0xa3, 0xe9, 0x49, 0x48, 0xa7, 0xe5, 0x1f, 0x4a, 0x09, 0xa6, 0x20, 0x34, + 0xd3, 0x4b, 0x9a, 0x69, 0x34, 0xc0, 0x43, 0x4c, 0x34, 0xe3, 0x4d, 0x34, + 0x00, 0xc3, 0x4c, 0x34, 0xf3, 0x4c, 0x34, 0x80, 0x61, 0xa6, 0x35, 0x48, + 0x69, 0x84, 0x53, 0x02, 0x22, 0x2a, 0x36, 0xa9, 0x48, 0xa6, 0x30, 0xa0, + 0x08, 0x1a, 0xa2, 0x61, 0x53, 0xb0, 0xa8, 0xd8, 0x50, 0x06, 0x16, 0xa3, + 0xc5, 0xc9, 0xfa, 0x55, 0x32, 0x01, 0xab, 0xba, 0x97, 0xfc, 0x7c, 0x1a, + 0xa3, 0x9a, 0xb3, 0xcd, 0xa9, 0xf1, 0xb1, 0x0a, 0xd3, 0x4a, 0x53, 0xf3, + 0x46, 0x68, 0x20, 0x8f, 0x65, 0x23, 0x26, 0xd0, 0x4e, 0x6a, 0x4c, 0xd4, + 0x6e, 0x72, 0x28, 0x19, 0xcd, 0xdf, 0xdb, 0xc8, 0xf7, 0x4e, 0xca, 0xb9, + 0x15, 0x50, 0xdb, 0xcb, 0xfd, 0xd3, 0x5d, 0x03, 0xa6, 0x5c, 0xf1, 0x49, + 0xe4, 0x8e, 0x37, 0x10, 0x33, 0xd2, 0xb0, 0x6d, 0xdc, 0xf5, 0x21, 0x6e, + 0x54, 0x60, 0x79, 0x12, 0xff, 0x00, 0x70, 0xd5, 0xdb, 0x3d, 0x3a, 0xee, + 0xe1, 0x4f, 0x95, 0x09, 0x60, 0xbc, 0xb1, 0xf4, 0xab, 0xde, 0x43, 0x33, + 0x60, 0x77, 0xe9, 0x53, 0xc9, 0x2b, 0xc7, 0x11, 0x86, 0x16, 0x2a, 0x9f, + 0xc5, 0x8f, 0xe2, 0xa5, 0x7b, 0xee, 0x5d, 0xfb, 0x10, 0x36, 0x8f, 0x72, + 0xc7, 0x98, 0xfb, 0x7f, 0x78, 0x53, 0x7f, 0xb1, 0xee, 0x50, 0x8d, 0xb0, + 0x16, 0x1f, 0xef, 0x0a, 0xa9, 0x22, 0x5d, 0x2c, 0xaa, 0xa9, 0x70, 0x1f, + 0x70, 0xce, 0x41, 0xe9, 0xed, 0x46, 0xcb, 0xf1, 0xff, 0x00, 0x2d, 0xff, + 0x00, 0x5a, 0x1d, 0x81, 0x36, 0x5f, 0x1a, 0x75, 0xd8, 0xce, 0x6d, 0x80, + 0xfa, 0x53, 0xbc, 0xa9, 0x23, 0xb3, 0x75, 0x93, 0x82, 0x58, 0x63, 0xe9, + 0x59, 0xb9, 0xd4, 0x07, 0xfc, 0xbc, 0x37, 0xfd, 0xf5, 0x57, 0x20, 0x2d, + 0x1d, 0x8b, 0x1b, 0x8d, 0xcd, 0x93, 0x80, 0xc0, 0xd1, 0x1b, 0x5c, 0x24, + 0xdb, 0x32, 0x6f, 0x15, 0xc3, 0xfc, 0xf9, 0xc7, 0x63, 0x53, 0xe8, 0x97, + 0x66, 0xc7, 0x56, 0x82, 0x7c, 0xe0, 0x06, 0xc1, 0xfa, 0x54, 0x33, 0xaf, + 0x98, 0x46, 0xc9, 0x37, 0x63, 0xb3, 0x75, 0xa8, 0xa3, 0x46, 0x59, 0x57, + 0x2a, 0x7a, 0x8a, 0xa5, 0xb0, 0xcf, 0x57, 0x92, 0x54, 0x95, 0xb7, 0x23, + 0x06, 0xe3, 0x9c, 0x50, 0x1c, 0x30, 0xf9, 0xbe, 0xf0, 0xac, 0x8d, 0x03, + 0x52, 0x8a, 0xf2, 0xc9, 0xe0, 0xe0, 0x5c, 0x44, 0x70, 0x73, 0xd5, 0x85, + 0x68, 0x09, 0x17, 0x77, 0x3d, 0xa8, 0x8b, 0xe8, 0x39, 0x2e, 0xa4, 0x87, + 0x03, 0xfd, 0xd3, 0xfa, 0x52, 0xa7, 0x04, 0x8a, 0x52, 0x30, 0x32, 0x39, + 0x53, 0x4c, 0x07, 0xcb, 0x3c, 0xf2, 0xbe, 0xbe, 0x94, 0xc4, 0x49, 0x9a, + 0x70, 0x34, 0xcc, 0x7b, 0xf1, 0x4e, 0x00, 0xd5, 0x21, 0x0f, 0x15, 0x20, + 0xa8, 0xd7, 0x34, 0xf1, 0x9f, 0x4a, 0x00, 0x7e, 0x68, 0x3f, 0x7b, 0x14, + 0xd1, 0x9f, 0x4a, 0x5f, 0xe2, 0xe9, 0x40, 0x18, 0x3e, 0x27, 0x1f, 0xea, + 0x3f, 0x1a, 0xe7, 0x18, 0xd7, 0x47, 0xe2, 0x66, 0xf9, 0x60, 0x18, 0xe7, + 0x26, 0xb9, 0xb6, 0x19, 0x35, 0xd3, 0x4f, 0xe1, 0x39, 0xaa, 0x7c, 0x43, + 0x68, 0xa4, 0xc5, 0x15, 0x64, 0x85, 0x14, 0x94, 0x66, 0x91, 0x48, 0x95, + 0x3a, 0xd7, 0x6b, 0xe1, 0xcf, 0xf9, 0x07, 0xe7, 0xde, 0xb8, 0x84, 0x3c, + 0x8a, 0xed, 0xbc, 0x3b, 0xff, 0x00, 0x20, 0xdf, 0xf8, 0x15, 0x65, 0x5b, + 0xe1, 0x36, 0xa5, 0xb9, 0xd0, 0x5b, 0xf5, 0x35, 0x75, 0x4f, 0x4a, 0xa7, + 0x08, 0xab, 0x8a, 0x33, 0x81, 0x5c, 0x87, 0x41, 0x32, 0xfd, 0xea, 0xb2, + 0x95, 0x5d, 0x06, 0x0d, 0x59, 0x8e, 0x81, 0x13, 0xa5, 0x4c, 0x95, 0x0a, + 0xd4, 0xcb, 0x40, 0x12, 0x76, 0xa7, 0x1e, 0x56, 0x9a, 0x29, 0xd8, 0xa0, + 0x05, 0x1c, 0x8c, 0xd3, 0xc0, 0xa5, 0x58, 0xf2, 0x38, 0xa7, 0xac, 0x47, + 0xb8, 0xaa, 0x15, 0xc6, 0x00, 0x33, 0xef, 0x59, 0xda, 0xcc, 0xde, 0x4d, + 0x8b, 0x20, 0x3f, 0x3c, 0x9c, 0x0a, 0xd6, 0x70, 0x22, 0x52, 0xcd, 0xc0, + 0xac, 0x1b, 0xbb, 0x79, 0x2f, 0xae, 0xbc, 0xd7, 0xe1, 0x17, 0x85, 0x14, + 0x32, 0x6e, 0x79, 0x99, 0xb6, 0x37, 0x3e, 0x20, 0xb4, 0x86, 0x58, 0xe4, + 0xf2, 0xcc, 0xa4, 0xb3, 0xe3, 0xee, 0x1e, 0xd5, 0xdb, 0x8b, 0x0e, 0xc1, + 0x49, 0xc7, 0x7a, 0xbe, 0xfa, 0x62, 0xfd, 0xe5, 0x45, 0x0e, 0x3a, 0x1c, + 0x54, 0xab, 0x1b, 0x8e, 0x59, 0x40, 0x34, 0xac, 0x26, 0xcc, 0xc1, 0xa7, + 0xe0, 0x7c, 0xc2, 0x8f, 0xb1, 0x20, 0xea, 0x3f, 0x4a, 0xd6, 0xf9, 0x87, + 0xf0, 0x8a, 0x4e, 0x4f, 0x55, 0x14, 0x08, 0xe2, 0xfc, 0x45, 0xa6, 0x4f, + 0x36, 0x9d, 0x77, 0xe4, 0x2e, 0xe9, 0x19, 0x42, 0xa0, 0x1e, 0x9d, 0xeb, + 0xcc, 0xff, 0x00, 0xb2, 0xef, 0x52, 0x50, 0xb2, 0xda, 0xc8, 0x00, 0x3c, + 0xe5, 0x4e, 0x2b, 0xdf, 0x5a, 0x3d, 0xc7, 0xee, 0x0a, 0xab, 0xa8, 0x59, + 0xb4, 0xf6, 0x8d, 0x1c, 0x50, 0xa6, 0xe2, 0x47, 0x6a, 0x63, 0x4e, 0xc7, + 0x0f, 0xe1, 0x0d, 0x3a, 0x5b, 0x35, 0x2f, 0x71, 0x6d, 0x22, 0xcb, 0xe6, + 0x64, 0x1c, 0xe0, 0x01, 0x5e, 0xbb, 0x6b, 0x22, 0xcf, 0x6e, 0x92, 0x29, + 0xc8, 0x23, 0x9f, 0xad, 0x61, 0x47, 0x6e, 0xe1, 0x30, 0x55, 0x73, 0x8e, + 0x78, 0xab, 0x56, 0x12, 0x4b, 0x67, 0x23, 0x2c, 0xbc, 0xc2, 0xdd, 0x0f, + 0xa1, 0xa9, 0xd8, 0x66, 0xd8, 0x1f, 0x25, 0x46, 0xdd, 0x6a, 0x48, 0xd9, + 0x5b, 0x8c, 0x8c, 0x1e, 0x41, 0xa4, 0x91, 0x30, 0x69, 0x81, 0x09, 0xa8, + 0x9c, 0xd4, 0xac, 0x0d, 0x44, 0xd9, 0xa4, 0x51, 0x19, 0x3d, 0xe9, 0xa8, + 0x72, 0x4e, 0x3a, 0xf5, 0x14, 0xaf, 0xd2, 0x98, 0x32, 0xad, 0xb8, 0x76, + 0xa4, 0x32, 0x42, 0xfb, 0x97, 0xde, 0xab, 0x37, 0x5a, 0x9d, 0xf9, 0x1b, + 0x85, 0x40, 0xc7, 0x26, 0xa4, 0xa1, 0xa0, 0xfe, 0xf4, 0xfd, 0x2b, 0x8f, + 0xf1, 0x0f, 0x1a, 0x93, 0x9f, 0x50, 0x2b, 0xae, 0x04, 0x6f, 0x27, 0xf0, + 0xae, 0x47, 0xc4, 0x63, 0xfe, 0x26, 0x1f, 0x55, 0x15, 0xc9, 0x8d, 0xfe, + 0x11, 0xd7, 0x83, 0xfe, 0x21, 0x90, 0xb8, 0x34, 0xe0, 0xa0, 0x54, 0x78, + 0xc5, 0x38, 0x1a, 0xf1, 0x0f, 0x4c, 0x7e, 0x00, 0xa2, 0x99, 0x9a, 0x33, + 0x48, 0x2e, 0x3b, 0x34, 0xda, 0x28, 0xa0, 0x42, 0x56, 0xcc, 0x78, 0x11, + 0xa8, 0xf6, 0xac, 0x63, 0x5b, 0x2b, 0xfe, 0xad, 0x7e, 0x95, 0xe9, 0xe5, + 0xdb, 0xc8, 0xe1, 0xc6, 0x6c, 0x83, 0xbd, 0x23, 0x1e, 0xb4, 0xb4, 0xc3, + 0xc9, 0xaf, 0x50, 0xe0, 0x14, 0x1d, 0xa0, 0xfa, 0x9a, 0x58, 0x93, 0x7c, + 0xa0, 0x7e, 0x74, 0xd2, 0x71, 0xcf, 0x7e, 0xd5, 0x7a, 0xd2, 0x1d, 0x88, + 0x64, 0x61, 0xef, 0x4c, 0x43, 0x9c, 0xed, 0xdb, 0x18, 0xeb, 0xde, 0xab, + 0xb6, 0x44, 0x8d, 0xf5, 0xa4, 0x96, 0x60, 0x8e, 0x18, 0xfd, 0xf6, 0x3c, + 0x0a, 0x6b, 0x82, 0x49, 0x22, 0x81, 0x0a, 0x5b, 0xda, 0xab, 0x3b, 0x0c, + 0xd3, 0x9d, 0xca, 0xf1, 0x50, 0xf2, 0xc7, 0x9a, 0x62, 0x10, 0xfc, 0xc7, + 0xda, 0x87, 0x6d, 0xa3, 0x02, 0xa5, 0x0b, 0xb4, 0x64, 0xf1, 0x51, 0x63, + 0x71, 0xc8, 0x1f, 0x8d, 0x30, 0x2c, 0xa4, 0x89, 0x0d, 0xb9, 0x91, 0xbf, + 0x85, 0x73, 0x5e, 0x6d, 0x31, 0x17, 0x7a, 0xa4, 0x97, 0x73, 0xb6, 0x5d, + 0xa4, 0xca, 0xa8, 0x35, 0xb9, 0xaf, 0x6a, 0x92, 0x3c, 0x8b, 0x6d, 0x11, + 0x60, 0xaa, 0x72, 0xf8, 0xef, 0x5c, 0xd2, 0x5b, 0xca, 0x93, 0x99, 0xc2, + 0x31, 0x39, 0xc8, 0xf4, 0xa9, 0xb8, 0xec, 0x4b, 0xab, 0x49, 0x1d, 0xc5, + 0xe4, 0x64, 0xe6, 0x3f, 0x97, 0x04, 0x9a, 0x82, 0x3b, 0x56, 0xbd, 0x88, + 0xac, 0x4e, 0xa5, 0x81, 0xef, 0xc6, 0x6a, 0x2b, 0xb9, 0x1e, 0x6b, 0x80, + 0x26, 0x1b, 0x4f, 0x7a, 0xb5, 0x02, 0xda, 0x44, 0xbf, 0xeb, 0x98, 0x7b, + 0x83, 0x51, 0x39, 0x72, 0xa2, 0xa0, 0x93, 0x7a, 0x99, 0xb7, 0x16, 0xf2, + 0x5b, 0x48, 0x23, 0x90, 0x61, 0x85, 0x43, 0x57, 0xef, 0x59, 0x1e, 0xf1, + 0x0a, 0xbb, 0x3a, 0xe4, 0x72, 0x6b, 0x56, 0x43, 0x6d, 0x3c, 0x6a, 0x0c, + 0x19, 0x38, 0xeb, 0x80, 0x29, 0xfb, 0x4b, 0x25, 0xa6, 0xe2, 0x70, 0x4d, + 0xbb, 0x33, 0x9a, 0xa2, 0xb6, 0xff, 0x00, 0xb2, 0xad, 0xdd, 0x97, 0xe6, + 0x75, 0x07, 0xaf, 0xb5, 0x48, 0xfe, 0x1c, 0x5d, 0xea, 0x22, 0xba, 0x57, + 0x0d, 0xf9, 0xd5, 0x7b, 0x58, 0xf5, 0x23, 0x95, 0x98, 0x14, 0x95, 0xd1, + 0x1f, 0x0d, 0xc8, 0x9f, 0x79, 0x5d, 0xbe, 0x94, 0x9f, 0xd9, 0x51, 0x45, + 0xf7, 0xa1, 0x3f, 0xf0, 0x21, 0x4f, 0xda, 0x45, 0xec, 0x2b, 0x1c, 0xf0, + 0x04, 0xf4, 0x19, 0xa7, 0xad, 0xbc, 0xaf, 0xd1, 0x0f, 0xe5, 0x5d, 0x12, + 0xdb, 0x44, 0xbd, 0x10, 0x0f, 0xc2, 0x9e, 0x23, 0x1e, 0x94, 0xb9, 0x82, + 0xc4, 0x1e, 0x1c, 0x82, 0x48, 0x75, 0x88, 0x4b, 0xae, 0x01, 0xaf, 0x4d, + 0x07, 0xf7, 0x62, 0xb8, 0x6d, 0x39, 0x7f, 0xe2, 0x63, 0x11, 0x0a, 0x07, + 0x3d, 0xab, 0xb6, 0x1c, 0xa0, 0xaf, 0x9f, 0xcd, 0x97, 0xef, 0x13, 0xf2, + 0x3a, 0xe8, 0xbf, 0x74, 0x42, 0x68, 0xcd, 0x1b, 0x69, 0x08, 0xaf, 0x30, + 0xd0, 0x5c, 0xd2, 0x16, 0xa6, 0x93, 0x8a, 0x69, 0xcd, 0x52, 0x44, 0xb6, + 0x29, 0x6a, 0x33, 0x49, 0x8a, 0x36, 0xd5, 0x24, 0x4d, 0xcb, 0x90, 0x9c, + 0xc6, 0x2a, 0x75, 0xaa, 0xf0, 0x7f, 0xaa, 0x1f, 0x5a, 0x9c, 0x57, 0xd5, + 0x61, 0x3f, 0x81, 0x1f, 0x43, 0x92, 0x7f, 0x13, 0x24, 0x14, 0xf1, 0x51, + 0x8a, 0x78, 0xae, 0x92, 0x47, 0x8a, 0x70, 0xa6, 0x03, 0x4e, 0x06, 0x80, + 0x1e, 0x29, 0xc2, 0x98, 0x0d, 0x3b, 0x34, 0x08, 0x70, 0x34, 0xea, 0x66, + 0x69, 0x73, 0x4c, 0x07, 0x52, 0x31, 0xf9, 0x4f, 0xd2, 0x93, 0x34, 0x8c, + 0x7e, 0x53, 0xf4, 0xa0, 0x08, 0x44, 0xf1, 0xed, 0x1f, 0x38, 0xe9, 0xeb, + 0x4f, 0x0e, 0x18, 0x70, 0x41, 0xae, 0x7c, 0xb6, 0x50, 0x7d, 0x29, 0xb0, + 0xcf, 0x2c, 0x57, 0x0b, 0xb0, 0x92, 0x09, 0xe4, 0x56, 0x9c, 0xa7, 0x22, + 0xc4, 0xeb, 0x66, 0x8e, 0x8a, 0x92, 0x9a, 0x93, 0x47, 0x27, 0x46, 0x19, + 0xf4, 0xa9, 0x31, 0x52, 0x74, 0xa6, 0x9e, 0xc4, 0x66, 0x93, 0x15, 0x26, + 0x29, 0x31, 0x40, 0xc8, 0x88, 0xa6, 0x91, 0x52, 0x91, 0x4d, 0x22, 0x80, + 0x22, 0x22, 0x98, 0x45, 0x4a, 0x45, 0x30, 0xd0, 0x22, 0x32, 0x2a, 0x36, + 0x15, 0x29, 0xa6, 0x35, 0x00, 0x40, 0xc2, 0xa2, 0x61, 0x53, 0xb0, 0xa8, + 0x98, 0x50, 0x07, 0x3f, 0xa9, 0xff, 0x00, 0xc7, 0xc1, 0xaa, 0x06, 0xb4, + 0x35, 0x3f, 0xf8, 0xf9, 0x35, 0x9e, 0x6a, 0xcf, 0x32, 0x7f, 0x1b, 0x12, + 0x8a, 0x29, 0x28, 0x24, 0x0d, 0x46, 0xf4, 0xf3, 0x4c, 0x6a, 0x06, 0x56, + 0x38, 0xc9, 0xcd, 0x3d, 0xee, 0x8c, 0x91, 0x47, 0x14, 0xbd, 0x53, 0xee, + 0x9c, 0x76, 0xa7, 0x08, 0x04, 0x8b, 0x93, 0x9a, 0xad, 0x35, 0xa4, 0xc4, + 0xe1, 0x18, 0x63, 0x15, 0xcc, 0xdd, 0x9b, 0x3d, 0x58, 0x7c, 0x28, 0x97, + 0x78, 0x55, 0x3e, 0xa7, 0xa1, 0xf6, 0xa8, 0x58, 0x8f, 0x5a, 0x16, 0xd6, + 0x50, 0x7e, 0x63, 0x9a, 0x98, 0x43, 0xc7, 0x4a, 0x9d, 0xf6, 0x2f, 0x45, + 0xab, 0x28, 0x7d, 0x9f, 0x12, 0x17, 0x0e, 0x79, 0xa5, 0x28, 0x7d, 0x4d, + 0x5f, 0xf2, 0x97, 0xbe, 0x69, 0xeb, 0x66, 0xce, 0xb9, 0x54, 0x62, 0x3d, + 0x40, 0xa3, 0x51, 0xa6, 0xba, 0x19, 0x7e, 0x5b, 0x1e, 0xe6, 0x91, 0x91, + 0xf6, 0x15, 0xc9, 0xc5, 0x6a, 0x9b, 0x09, 0x3f, 0xe7, 0x9b, 0x7e, 0x55, + 0x13, 0xda, 0xba, 0x7d, 0xe5, 0x23, 0xeb, 0x46, 0xa0, 0x73, 0xf2, 0x5a, + 0x30, 0x62, 0x43, 0x73, 0xef, 0x4f, 0xb1, 0xb9, 0x92, 0xd2, 0xed, 0x19, + 0x95, 0x5c, 0x03, 0xd1, 0x86, 0x41, 0xad, 0x66, 0xb7, 0xcf, 0x04, 0x55, + 0x67, 0xb4, 0x40, 0xc0, 0xe3, 0x1c, 0xd5, 0x26, 0xf6, 0x0d, 0x19, 0x76, + 0xfe, 0x4b, 0x70, 0xf6, 0xda, 0xb6, 0x9a, 0xa6, 0x06, 0x63, 0x89, 0x63, + 0x1d, 0x01, 0xad, 0xfb, 0x6b, 0xb5, 0xbc, 0xb5, 0x13, 0x81, 0x87, 0xee, + 0x2b, 0x9d, 0xb7, 0x45, 0xf2, 0x64, 0xb7, 0x63, 0xf2, 0xb9, 0x24, 0x7d, + 0x6a, 0xc6, 0x93, 0x2b, 0xdb, 0xc8, 0x61, 0x73, 0x95, 0x27, 0xb7, 0x6a, + 0x27, 0x26, 0xb5, 0xb1, 0x51, 0x49, 0xab, 0x1d, 0x2d, 0xad, 0xda, 0xe7, + 0x6b, 0x74, 0xab, 0x8d, 0x18, 0x2b, 0xb9, 0x79, 0x53, 0x59, 0x8d, 0x6f, + 0xb8, 0x06, 0x43, 0xf8, 0x8a, 0x7c, 0x37, 0x33, 0x5b, 0x36, 0x1c, 0x65, + 0x6b, 0x44, 0x49, 0x75, 0x4f, 0x97, 0xc7, 0x55, 0xf4, 0xf4, 0xa9, 0x80, + 0xc8, 0xc8, 0xe4, 0x52, 0x45, 0x24, 0x17, 0x4b, 0x95, 0x60, 0x1b, 0xd2, + 0xa5, 0x10, 0x32, 0x64, 0xa8, 0xff, 0x00, 0xeb, 0xd5, 0x08, 0x66, 0x29, + 0xc2, 0x9d, 0x80, 0x7d, 0x8f, 0xa5, 0x2e, 0xde, 0x69, 0x5c, 0x2c, 0x1d, + 0x07, 0x5a, 0x4f, 0xe2, 0xa3, 0x70, 0x2c, 0x40, 0xed, 0x4a, 0xa3, 0xbd, + 0x00, 0x73, 0x5e, 0x24, 0x6f, 0xf4, 0x88, 0x57, 0xd0, 0x13, 0x58, 0x47, + 0xad, 0x6c, 0x78, 0x89, 0xb3, 0xa8, 0xa8, 0xf4, 0x41, 0x58, 0xe6, 0xba, + 0xe1, 0xf0, 0xa3, 0x96, 0x7f, 0x13, 0x13, 0x14, 0xd2, 0x0d, 0x3a, 0x8a, + 0xa1, 0x0c, 0xc5, 0x1b, 0x69, 0xd4, 0x50, 0x31, 0x14, 0x10, 0x6b, 0xb8, + 0xf0, 0xe0, 0xff, 0x00, 0x89, 0x72, 0xff, 0x00, 0xbd, 0x5c, 0x40, 0xeb, + 0x5d, 0xdf, 0x86, 0x57, 0x3a, 0x6a, 0x9f, 0xf6, 0x8d, 0x63, 0x5b, 0xe1, + 0x37, 0xa5, 0xb9, 0xbf, 0x18, 0xf9, 0x7d, 0xea, 0xc2, 0x9e, 0x56, 0x99, + 0x1a, 0xd4, 0x98, 0xc1, 0x15, 0xca, 0x6e, 0x59, 0x41, 0x96, 0xab, 0x48, + 0xbd, 0x2a, 0x18, 0x87, 0x4a, 0xb9, 0x12, 0x16, 0xed, 0x40, 0xae, 0x39, + 0x56, 0xa5, 0x55, 0xa9, 0x23, 0xb7, 0x63, 0xda, 0xac, 0x25, 0xbe, 0x3a, + 0xd1, 0x60, 0xb9, 0x02, 0xa5, 0x48, 0x23, 0x27, 0xb5, 0x58, 0x0b, 0x1c, + 0x63, 0x2e, 0xc0, 0x0a, 0x86, 0x4d, 0x42, 0x24, 0x18, 0x89, 0x77, 0x1f, + 0x5a, 0x76, 0x15, 0xc7, 0x2c, 0x2e, 0x7b, 0x11, 0xef, 0x4a, 0xf7, 0x09, + 0x6c, 0x36, 0x86, 0xf3, 0x1f, 0xdb, 0xb5, 0x52, 0x7b, 0x99, 0x65, 0xfb, + 0xee, 0x71, 0xe8, 0x2a, 0x3c, 0xd0, 0x4b, 0x64, 0xae, 0xed, 0x2b, 0x6e, + 0x90, 0xe7, 0xda, 0x9a, 0x71, 0x4d, 0xdd, 0x48, 0x5a, 0x81, 0x01, 0xa6, + 0x91, 0x4b, 0x9a, 0x4a, 0x40, 0x26, 0x07, 0xa5, 0x26, 0xd1, 0xe9, 0x4b, + 0x4b, 0x4c, 0x06, 0xed, 0x1e, 0x94, 0xbb, 0x47, 0xa5, 0x2d, 0x2d, 0x20, + 0x00, 0xa3, 0xd2, 0x9d, 0xb4, 0x63, 0xa5, 0x26, 0x69, 0x73, 0x40, 0x0e, + 0x52, 0xc9, 0xf7, 0x4f, 0x1e, 0x95, 0x3a, 0x5e, 0x2e, 0x36, 0xc9, 0xc7, + 0xbd, 0x56, 0xdd, 0x48, 0x48, 0x34, 0x0c, 0xbb, 0xb9, 0x5f, 0xee, 0x9c, + 0xfd, 0x2a, 0x37, 0x15, 0x4c, 0xe0, 0x1c, 0x8e, 0x0f, 0xb5, 0x31, 0xe4, + 0x93, 0x1c, 0x48, 0x7f, 0x1a, 0x07, 0x72, 0xc3, 0x72, 0x69, 0xb9, 0x02, + 0x4c, 0x1e, 0x84, 0x55, 0x4f, 0xb4, 0xce, 0x87, 0xe6, 0x40, 0xe3, 0xd4, + 0x51, 0xf6, 0xa4, 0x76, 0x19, 0xca, 0x9f, 0x7a, 0x96, 0x52, 0x65, 0xa3, + 0x94, 0x3e, 0xd5, 0x0c, 0xa7, 0x1d, 0x29, 0xc2, 0x50, 0xc3, 0x9a, 0x89, + 0xcf, 0x34, 0x8a, 0x19, 0xd8, 0xd7, 0x2d, 0xe2, 0x31, 0xfe, 0x9a, 0xa7, + 0xfd, 0x9a, 0xea, 0x77, 0x70, 0xd5, 0xcb, 0xf8, 0x8f, 0xfe, 0x3e, 0xa3, + 0x3f, 0xec, 0x57, 0x26, 0x35, 0x7e, 0xe5, 0x9d, 0x78, 0x4f, 0xe2, 0x18, + 0x94, 0x51, 0x45, 0x78, 0x67, 0xa6, 0x14, 0xb4, 0x94, 0x52, 0x01, 0x68, + 0xa4, 0xa2, 0x80, 0x03, 0xd2, 0xb6, 0x63, 0xe6, 0x25, 0xfa, 0x56, 0x31, + 0xad, 0xa8, 0x7f, 0xe3, 0xde, 0x3f, 0x75, 0x15, 0xe9, 0xe5, 0xdb, 0xc8, + 0xe1, 0xc6, 0x6c, 0x80, 0xd2, 0x6d, 0xc7, 0x26, 0xa4, 0x29, 0xb4, 0x6e, + 0x73, 0x8f, 0x6a, 0x6a, 0xc6, 0x66, 0x3b, 0x9b, 0x84, 0x15, 0xea, 0x9c, + 0x02, 0xc1, 0x11, 0x99, 0xf7, 0x11, 0xf2, 0xd5, 0xab, 0xa9, 0xd6, 0x08, + 0x82, 0x0e, 0xbe, 0x95, 0x19, 0x9c, 0x22, 0xed, 0x88, 0x67, 0xde, 0xa0, + 0xf2, 0x8b, 0xb6, 0xf7, 0x39, 0x34, 0x08, 0xac, 0xaa, 0xf2, 0xcc, 0x24, + 0x6f, 0xc2, 0xac, 0x13, 0xb5, 0x4f, 0xa9, 0xed, 0x4a, 0xa5, 0x77, 0xf1, + 0xce, 0x3b, 0x0a, 0x40, 0xac, 0xc7, 0x91, 0x8a, 0xa4, 0x89, 0x65, 0x76, + 0x42, 0xc6, 0x9c, 0x10, 0x01, 0x52, 0xb2, 0xe0, 0xd3, 0x4a, 0x16, 0xf6, + 0x14, 0x01, 0x09, 0xcc, 0x8d, 0x81, 0xd2, 0xa7, 0x28, 0xb1, 0xc4, 0x7e, + 0x94, 0x2a, 0xac, 0x62, 0xaa, 0x4f, 0x76, 0xac, 0xe5, 0x77, 0x70, 0x3a, + 0xd4, 0xb7, 0x61, 0xa5, 0x73, 0x92, 0xd4, 0x87, 0xfc, 0x4c, 0xc8, 0x1d, + 0x0b, 0x55, 0x09, 0x67, 0x68, 0xdd, 0x93, 0x07, 0x83, 0x57, 0x6f, 0xb3, + 0x3d, 0xc3, 0xb8, 0xfe, 0xf7, 0x15, 0x54, 0xdb, 0x93, 0xc9, 0x1c, 0xd2, + 0x11, 0x9b, 0x34, 0x4f, 0x3d, 0xc2, 0xbe, 0xde, 0x07, 0x5a, 0xb6, 0xb6, + 0xd0, 0x91, 0xfe, 0xac, 0x55, 0x81, 0x6f, 0xed, 0x4f, 0x58, 0x0d, 0x17, + 0x03, 0x16, 0xea, 0x35, 0x5b, 0x9d, 0xaa, 0x30, 0x32, 0x2b, 0x45, 0x6c, + 0xd0, 0xa8, 0x21, 0x98, 0x7e, 0x35, 0x4a, 0xf1, 0x7f, 0xd3, 0x71, 0xee, + 0x2b, 0x69, 0x63, 0x21, 0x45, 0x00, 0xc7, 0xa4, 0x0a, 0xd6, 0xaa, 0x23, + 0x46, 0x2e, 0x83, 0x2e, 0xc4, 0xd3, 0x02, 0x11, 0xc8, 0xa8, 0x9e, 0xe6, + 0x14, 0x99, 0x63, 0x76, 0x3d, 0x79, 0x55, 0x3d, 0x6a, 0xc9, 0x04, 0xe1, + 0xd5, 0x76, 0xab, 0x72, 0xa3, 0x39, 0xe2, 0xb2, 0x8b, 0xe5, 0x97, 0x2b, + 0x0f, 0x31, 0xd1, 0xcf, 0x34, 0x7f, 0x76, 0x56, 0x1f, 0x8d, 0x5e, 0xb7, + 0xd4, 0x37, 0x41, 0x27, 0x98, 0xdb, 0xa6, 0x5e, 0x8a, 0x54, 0x60, 0xd6, + 0x5b, 0xbb, 0x2f, 0x55, 0xa8, 0x12, 0x63, 0xe7, 0xe4, 0x12, 0xa4, 0xf1, + 0xc7, 0x7a, 0xae, 0x48, 0x3d, 0xd0, 0x6a, 0x6c, 0xfd, 0xb2, 0xdd, 0xff, + 0x00, 0xd6, 0xd9, 0xa1, 0x3e, 0xa2, 0xa9, 0xca, 0xa8, 0xd2, 0x93, 0x12, + 0x6d, 0x4e, 0xc0, 0xd2, 0xa2, 0x39, 0x19, 0x22, 0xa5, 0x08, 0x68, 0x51, + 0x51, 0xd8, 0x57, 0x16, 0xc1, 0x3f, 0xd3, 0x63, 0x38, 0xef, 0x5d, 0x82, + 0xfd, 0xc1, 0x5c, 0xcd, 0x9c, 0x2f, 0xf6, 0x84, 0x6d, 0xa7, 0x00, 0xf5, + 0xc5, 0x74, 0xc3, 0xfd, 0x58, 0xaf, 0x13, 0x35, 0xf8, 0xe2, 0x74, 0xd1, + 0xd9, 0x8c, 0x2d, 0x4d, 0x2d, 0x4e, 0xa4, 0x22, 0xbc, 0xd4, 0x58, 0xca, + 0x33, 0x4b, 0x8a, 0x36, 0xd5, 0x08, 0x4d, 0xc6, 0x97, 0x39, 0xa3, 0x6d, + 0x14, 0x21, 0x17, 0x20, 0x1f, 0xbb, 0x1f, 0x5a, 0x98, 0x0a, 0x8a, 0xd8, + 0x7e, 0xeb, 0xf1, 0xab, 0x00, 0x57, 0xd5, 0x60, 0xff, 0x00, 0x81, 0x13, + 0x92, 0x7f, 0x10, 0x0a, 0x70, 0xa0, 0x0a, 0x70, 0x15, 0xd2, 0x48, 0x0a, + 0x70, 0xa0, 0x0a, 0x78, 0x14, 0x08, 0x41, 0x4b, 0x9a, 0x50, 0xb4, 0xcb, + 0x87, 0x10, 0xc0, 0xf2, 0x1f, 0xe1, 0x19, 0xa0, 0x2e, 0x3b, 0x70, 0x1d, + 0xe9, 0x3c, 0xc5, 0xf5, 0x15, 0xcc, 0x9b, 0xc9, 0xe6, 0x62, 0x5a, 0x43, + 0x83, 0xda, 0x9e, 0xb2, 0xb7, 0x76, 0x35, 0xa2, 0x89, 0xcc, 0xf1, 0x2b, + 0xa2, 0x3a, 0x3f, 0x35, 0x7f, 0xbc, 0x29, 0xad, 0x3a, 0x6d, 0x3f, 0x30, + 0xe9, 0x58, 0x82, 0x50, 0x7f, 0x8a, 0x94, 0xb8, 0xd8, 0x70, 0x69, 0xf2, + 0x93, 0xf5, 0x9f, 0x22, 0x6d, 0x2a, 0xc5, 0xb5, 0x27, 0x28, 0xad, 0xb4, + 0x01, 0xc9, 0xab, 0x97, 0x5a, 0x2b, 0xe9, 0xa8, 0x24, 0x79, 0x15, 0x8b, + 0x1c, 0x00, 0x2b, 0x2f, 0x4c, 0x92, 0x68, 0x22, 0x25, 0x25, 0x2b, 0xbb, + 0xb0, 0xab, 0xb2, 0xcf, 0x2c, 0xd8, 0xf3, 0x1d, 0x9b, 0x1d, 0x32, 0x69, + 0xab, 0xdc, 0xc6, 0xf0, 0xe5, 0xdb, 0x52, 0x3a, 0x72, 0xdc, 0x4b, 0x1f, + 0xdd, 0x73, 0xf4, 0x34, 0xc2, 0x69, 0xb5, 0x44, 0x29, 0x35, 0xb1, 0x6d, + 0x75, 0x1c, 0x7f, 0xac, 0x4f, 0xc4, 0x54, 0xc9, 0x79, 0x0b, 0xf4, 0x7c, + 0x1f, 0x7a, 0xcc, 0x38, 0xc5, 0x57, 0x7f, 0xbd, 0xc5, 0x2e, 0x54, 0x68, + 0xb1, 0x12, 0x5b, 0x9d, 0x06, 0xe5, 0x3d, 0x08, 0x34, 0x86, 0xb9, 0xf1, + 0x2b, 0xa7, 0xdd, 0x62, 0x3f, 0x1a, 0x95, 0x75, 0x09, 0xd3, 0xf8, 0xb3, + 0xf5, 0xa5, 0xc8, 0x6b, 0x1c, 0x4c, 0x7a, 0x9b, 0x26, 0x98, 0x45, 0x67, + 0x2e, 0xac, 0x7f, 0x8e, 0x3f, 0xca, 0xa5, 0x5d, 0x52, 0x06, 0xeb, 0x91, + 0x53, 0xca, 0xcd, 0x15, 0x68, 0x3e, 0xa5, 0x92, 0x29, 0x84, 0x53, 0x45, + 0xed, 0xbb, 0x74, 0x90, 0x53, 0xbc, 0xd8, 0xdb, 0xa3, 0xaf, 0xe7, 0x45, + 0x8b, 0x52, 0x4f, 0x66, 0x31, 0x85, 0x42, 0xcb, 0x56, 0x4e, 0xd3, 0xd0, + 0x8a, 0x89, 0x80, 0xa0, 0x67, 0x35, 0xaa, 0x7f, 0xc7, 0xcb, 0x56, 0x71, + 0xad, 0x1d, 0x57, 0xfe, 0x3e, 0x9e, 0xb3, 0x8d, 0x59, 0xe6, 0x4d, 0xfb, + 0xec, 0x4a, 0x4a, 0x28, 0x34, 0x08, 0x69, 0xa6, 0x35, 0x3c, 0xd3, 0x1a, + 0x80, 0x37, 0x34, 0xc0, 0xad, 0x60, 0xa1, 0x94, 0x1e, 0x4f, 0x51, 0x4e, + 0x9a, 0xda, 0xd3, 0xab, 0x2a, 0xaf, 0xd0, 0xd6, 0x3c, 0x37, 0x32, 0x24, + 0x5b, 0x15, 0xc8, 0x1e, 0x82, 0x90, 0xc8, 0x58, 0xe4, 0x92, 0x7e, 0xb5, + 0x1c, 0x97, 0x3b, 0x16, 0x21, 0x28, 0xa4, 0x91, 0x6e, 0x48, 0x6d, 0x09, + 0xc2, 0x4a, 0x47, 0xe1, 0x55, 0x1d, 0x42, 0x39, 0x50, 0x77, 0x01, 0xde, + 0x93, 0x78, 0xa6, 0x96, 0xcd, 0x35, 0x04, 0x9d, 0xcc, 0xa7, 0x5e, 0x53, + 0x56, 0x60, 0x40, 0xa9, 0x52, 0xe6, 0x78, 0x93, 0x6c, 0x72, 0x32, 0xaf, + 0xa0, 0x35, 0x69, 0x34, 0xa9, 0xe4, 0xb6, 0x13, 0x29, 0x4c, 0x11, 0x9c, + 0x67, 0x9a, 0xa2, 0x46, 0x0e, 0x0d, 0x3d, 0x19, 0x36, 0x94, 0x35, 0xd8, + 0x90, 0xdd, 0xdc, 0x9e, 0xb3, 0x3f, 0xe7, 0x51, 0x3b, 0xb3, 0x9c, 0xb3, + 0x12, 0x7d, 0xe9, 0x0d, 0x2a, 0x23, 0x48, 0xe1, 0x54, 0x64, 0x9e, 0x82, + 0x8b, 0x21, 0x73, 0x49, 0xf5, 0x21, 0x91, 0x41, 0x15, 0x5f, 0xa9, 0xe7, + 0x9a, 0xd2, 0xbd, 0xb0, 0xb9, 0xb5, 0x81, 0x65, 0x92, 0x3c, 0x21, 0xef, + 0xe9, 0x59, 0xb5, 0xa4, 0x20, 0x9b, 0xe6, 0x37, 0x87, 0x34, 0x55, 0x98, + 0xb8, 0xa7, 0xc2, 0xfe, 0x4c, 0xa2, 0x45, 0x03, 0x22, 0x98, 0x29, 0x6b, + 0x49, 0x42, 0x33, 0x5c, 0xb2, 0x5a, 0x1a, 0x46, 0x4e, 0x2e, 0xe8, 0xba, + 0x75, 0x59, 0xd4, 0xe5, 0x10, 0x03, 0xe9, 0x9e, 0x2a, 0x58, 0xf5, 0x8d, + 0xff, 0x00, 0xeb, 0xa2, 0x2a, 0x7d, 0x47, 0x22, 0xb3, 0xa9, 0x6b, 0x28, + 0xe1, 0xa1, 0x05, 0x68, 0xec, 0x5b, 0xaf, 0x26, 0xee, 0xcd, 0x5f, 0xed, + 0x2b, 0x70, 0x72, 0x37, 0x83, 0xec, 0x2a, 0xcc, 0x1e, 0x23, 0xf2, 0xb8, + 0x39, 0x61, 0xee, 0x2b, 0x06, 0x96, 0x87, 0x43, 0xb3, 0x1a, 0xad, 0xdd, + 0x1d, 0x6c, 0x1a, 0xed, 0x95, 0xcf, 0x0c, 0x0a, 0xb7, 0xd2, 0xae, 0xac, + 0xb1, 0xb8, 0xca, 0x49, 0x91, 0xef, 0x5c, 0x5c, 0x77, 0x32, 0xc5, 0xf7, + 0x1b, 0x1f, 0x85, 0x58, 0x5d, 0x56, 0xed, 0x7f, 0x8c, 0x1f, 0xc2, 0xa7, + 0xd8, 0x48, 0xaf, 0x6c, 0x8e, 0xa1, 0xa4, 0x54, 0x7d, 0xdf, 0xca, 0x8f, + 0xb5, 0xc6, 0x0f, 0x2a, 0x40, 0xf5, 0xc5, 0x73, 0x63, 0x59, 0xb8, 0x1d, + 0x42, 0x9f, 0xc2, 0x9e, 0x35, 0xa9, 0x7b, 0xc6, 0x86, 0x97, 0xb1, 0x90, + 0xfd, 0xac, 0x4a, 0x7a, 0xd4, 0xa2, 0x6d, 0x52, 0x42, 0xa7, 0x20, 0x60, + 0x0a, 0xcf, 0x35, 0x24, 0xf2, 0x99, 0xee, 0x5e, 0x42, 0x00, 0x2c, 0x7b, + 0x54, 0x66, 0xba, 0x52, 0xb2, 0x48, 0xe5, 0x6e, 0xed, 0xb1, 0xa6, 0x92, + 0x94, 0xd2, 0x50, 0x50, 0x52, 0x51, 0x45, 0x03, 0x1c, 0xbd, 0x6b, 0xbd, + 0xf0, 0xc4, 0x8a, 0x34, 0xc5, 0x52, 0x79, 0xc9, 0xae, 0x09, 0x6b, 0x5e, + 0xd2, 0xea, 0x68, 0xa0, 0x0a, 0x92, 0x15, 0x1e, 0xd5, 0x9d, 0x48, 0xb9, + 0x2b, 0x23, 0x48, 0x49, 0x47, 0x73, 0xd1, 0xd2, 0x45, 0x1d, 0xc5, 0x48, + 0x5d, 0x4e, 0x3e, 0x61, 0x5c, 0x86, 0x9d, 0xab, 0x42, 0x13, 0x6d, 0xd3, + 0x31, 0x6c, 0xf5, 0xad, 0xa8, 0x6f, 0xec, 0x9f, 0x1b, 0x65, 0x4f, 0xc6, + 0xb9, 0x5c, 0x24, 0x8d, 0x94, 0xd3, 0x3a, 0x1b, 0x4b, 0xa8, 0x58, 0x9d, + 0xcc, 0x3e, 0x5e, 0x2a, 0xe8, 0xd4, 0x62, 0x4e, 0x11, 0x49, 0xfc, 0x2b, + 0x8a, 0xd4, 0x75, 0xaf, 0xb1, 0x48, 0x91, 0xc0, 0x11, 0x89, 0x19, 0x26, + 0xa2, 0x8f, 0xc4, 0x93, 0x8c, 0x6e, 0x8d, 0x0d, 0x52, 0xa7, 0x26, 0xae, + 0x27, 0x51, 0x6c, 0x77, 0x07, 0x53, 0x99, 0xbe, 0xea, 0x85, 0xfa, 0xd0, + 0xd7, 0xeb, 0xb3, 0x33, 0x5d, 0x14, 0x3e, 0x82, 0xb9, 0xb8, 0xbc, 0x4b, + 0x63, 0xe5, 0x0f, 0x35, 0x64, 0x0f, 0x8e, 0x71, 0x58, 0x72, 0xeb, 0x4b, + 0x71, 0x77, 0x23, 0x06, 0xe3, 0x77, 0x00, 0xfa, 0x57, 0x26, 0x2e, 0xac, + 0xe8, 0xc2, 0xe9, 0x6a, 0x74, 0xe1, 0x69, 0x46, 0xb4, 0xac, 0xde, 0x87, + 0x68, 0x2f, 0xe3, 0x67, 0x39, 0x76, 0x61, 0xea, 0x4d, 0x58, 0x4b, 0x88, + 0xdb, 0xa3, 0x0a, 0xe3, 0x62, 0xd4, 0x01, 0xef, 0x57, 0x23, 0xbe, 0x07, + 0xbd, 0x79, 0x51, 0xcc, 0xea, 0xc7, 0xe2, 0x57, 0x3d, 0x39, 0x65, 0xf4, + 0x65, 0xf0, 0xbb, 0x1d, 0x58, 0x70, 0x69, 0x77, 0x57, 0x3b, 0x1d, 0xe9, + 0x1d, 0x1c, 0xfe, 0x75, 0x65, 0x2f, 0xdf, 0xfb, 0xc0, 0xd7, 0x4c, 0x33, + 0x4a, 0x6f, 0xe2, 0x4d, 0x1c, 0xf2, 0xcb, 0x27, 0xf6, 0x5d, 0xcb, 0xcb, + 0xa8, 0x44, 0x2f, 0xe5, 0x86, 0x57, 0xda, 0xa8, 0x80, 0xf1, 0xeb, 0x58, + 0x83, 0xc4, 0x93, 0x8b, 0xa6, 0x46, 0x44, 0xf2, 0xb2, 0x42, 0x91, 0xd7, + 0x15, 0x15, 0xd5, 0x99, 0xb8, 0xb9, 0x79, 0xd6, 0x66, 0x46, 0x7e, 0xa3, + 0xb5, 0x2c, 0xf6, 0x62, 0xe1, 0x63, 0x47, 0xc2, 0xaa, 0xf7, 0x4e, 0x09, + 0xab, 0x96, 0x63, 0x4b, 0xec, 0xbd, 0x3a, 0xf7, 0xf9, 0x19, 0xac, 0x05, + 0x45, 0xac, 0x91, 0x6e, 0x3f, 0x10, 0xca, 0xd2, 0x2e, 0xe8, 0xe3, 0x11, + 0x97, 0x0b, 0x9c, 0xf3, 0xf9, 0x56, 0xf8, 0x6c, 0x8c, 0xd7, 0x11, 0x2e, + 0x96, 0x23, 0x46, 0xf2, 0xf7, 0x33, 0x6e, 0xca, 0xf3, 0x5d, 0x5c, 0x17, + 0x0a, 0x61, 0x4d, 0xcc, 0x03, 0x63, 0x9a, 0xea, 0x85, 0x7a, 0x72, 0x49, + 0xc6, 0x47, 0x34, 0xe8, 0xd4, 0x4f, 0xe1, 0x68, 0xd0, 0x8b, 0xcb, 0x2f, + 0xfb, 0xc3, 0x81, 0xed, 0x56, 0x7c, 0xbb, 0x56, 0xe9, 0x26, 0x3f, 0x1a, + 0xc4, 0xb8, 0xba, 0x28, 0x40, 0x42, 0x2a, 0x21, 0x77, 0x2f, 0xa8, 0xae, + 0x7a, 0xb9, 0x8d, 0x1a, 0x53, 0xe4, 0x91, 0xd1, 0x4f, 0x2f, 0xab, 0x52, + 0x0a, 0x4a, 0xc6, 0xb4, 0x9b, 0x43, 0x90, 0x87, 0x23, 0xd6, 0x9b, 0xba, + 0xb3, 0x05, 0xe4, 0x9e, 0xd5, 0x66, 0x3d, 0x46, 0x25, 0x40, 0x1a, 0x1c, + 0xb7, 0x73, 0x9a, 0x98, 0xe6, 0x78, 0x79, 0x75, 0xb0, 0xe5, 0x96, 0xd7, + 0x5d, 0x2e, 0x5a, 0xdd, 0x4b, 0xba, 0xaa, 0x9d, 0x4a, 0x2c, 0x71, 0x6f, + 0xf9, 0x9a, 0xaa, 0x6e, 0xe4, 0x24, 0xe0, 0x81, 0x4e, 0x59, 0x95, 0x08, + 0xec, 0xee, 0x11, 0xcb, 0x6b, 0x3d, 0xf4, 0x34, 0xcb, 0x53, 0x77, 0x8f, + 0x5a, 0xca, 0x69, 0xe4, 0x27, 0xef, 0x9a, 0x61, 0x91, 0x98, 0x63, 0x71, + 0xfc, 0xeb, 0x07, 0x9b, 0x42, 0xf6, 0x51, 0x37, 0x59, 0x5c, 0xad, 0xac, + 0x8d, 0x62, 0xfe, 0xf4, 0xc2, 0xd5, 0x5a, 0xd9, 0x97, 0xc9, 0x00, 0x7e, + 0x39, 0x35, 0x23, 0x30, 0xf5, 0xaf, 0x4e, 0x13, 0x52, 0x8a, 0x97, 0x73, + 0xcd, 0x9d, 0x37, 0x19, 0x38, 0xf6, 0x14, 0xb5, 0x44, 0xd8, 0x3d, 0x69, + 0x19, 0xc7, 0xad, 0x46, 0xd2, 0xa0, 0xfe, 0x21, 0x43, 0x9c, 0x56, 0xec, + 0x15, 0x39, 0xbd, 0x90, 0xec, 0x95, 0xfb, 0xac, 0x45, 0x28, 0xb9, 0x71, + 0xc3, 0x00, 0xd5, 0x01, 0x9d, 0x09, 0xc0, 0x39, 0x3e, 0xd4, 0x36, 0x40, + 0xe4, 0x11, 0xf5, 0xa5, 0x19, 0xc2, 0x5f, 0x0b, 0xb8, 0xe5, 0x4e, 0x70, + 0xf8, 0x95, 0x8b, 0x22, 0xe6, 0x33, 0xc1, 0xe0, 0xfb, 0xd7, 0x3f, 0xe2, + 0x12, 0x1a, 0x78, 0x88, 0x20, 0xfc, 0xbd, 0xab, 0x4c, 0xb5, 0x63, 0x6b, + 0x1f, 0x7a, 0x3c, 0x7a, 0x1a, 0xe7, 0xc6, 0xaf, 0xdc, 0xb3, 0xa3, 0x06, + 0xff, 0x00, 0x7a, 0x8c, 0x9a, 0x31, 0x4b, 0x4b, 0x5e, 0x01, 0xeb, 0x8d, + 0xa3, 0x14, 0xea, 0x28, 0x10, 0xda, 0x29, 0x68, 0xa0, 0x03, 0xb5, 0x6c, + 0xdb, 0xcc, 0x89, 0x6b, 0x1e, 0x39, 0x6d, 0xa2, 0xb1, 0xaa, 0xdd, 0xb3, + 0xed, 0x88, 0x66, 0x26, 0x6f, 0x70, 0x6b, 0xd1, 0xcb, 0x9f, 0xbe, 0xd1, + 0xc5, 0x8c, 0xf8, 0x51, 0x7f, 0xcc, 0x0c, 0xd9, 0x6f, 0x98, 0xfa, 0x76, + 0xa7, 0x16, 0x2f, 0xfe, 0x15, 0x5c, 0x5e, 0x44, 0xbd, 0x61, 0x71, 0xf8, + 0x53, 0xbf, 0xb4, 0x60, 0x1f, 0xc2, 0x47, 0xd4, 0x57, 0xae, 0x79, 0xc5, + 0x95, 0x43, 0x4e, 0xd8, 0xc4, 0x7a, 0x55, 0x61, 0xaa, 0x43, 0xd8, 0x8a, + 0x43, 0xa9, 0x46, 0x7f, 0x88, 0x7e, 0x74, 0xee, 0x16, 0x2c, 0xc7, 0x02, + 0x47, 0x93, 0x8e, 0x69, 0x5b, 0x00, 0x55, 0x33, 0xa8, 0x47, 0xb4, 0xfc, + 0xc3, 0x3f, 0x5a, 0xaf, 0x25, 0xf6, 0x47, 0x06, 0x93, 0x60, 0xa2, 0x5f, + 0x20, 0x1e, 0xf5, 0x1b, 0x38, 0x51, 0xd6, 0xb2, 0xda, 0xf5, 0xb3, 0xf7, + 0xaa, 0x29, 0x6f, 0x95, 0x10, 0xb4, 0x92, 0x71, 0x53, 0x76, 0x55, 0x91, + 0x6a, 0xee, 0xf1, 0x21, 0x89, 0x9d, 0xdb, 0x00, 0x56, 0x09, 0xd4, 0x14, + 0xbf, 0xee, 0xc8, 0x6f, 0x5c, 0xd4, 0x57, 0x77, 0x6d, 0x78, 0x42, 0x2a, + 0x9d, 0x80, 0xf7, 0xef, 0x4d, 0x8e, 0xd5, 0xdb, 0xa2, 0x1f, 0xca, 0xa6, + 0x52, 0x4b, 0x70, 0x49, 0xbd, 0x10, 0x86, 0x44, 0x2c, 0xe4, 0xc7, 0xd7, + 0xa6, 0x0d, 0x48, 0x10, 0x11, 0x56, 0x62, 0xd3, 0x1d, 0xfe, 0xf1, 0xda, + 0x2a, 0x69, 0x34, 0xdd, 0x91, 0x16, 0x56, 0x25, 0x85, 0x61, 0xf5, 0xba, + 0x5c, 0xdc, 0xb7, 0x35, 0x58, 0x5a, 0xad, 0x5e, 0xc5, 0x21, 0x12, 0xd5, + 0xc8, 0x74, 0x99, 0x26, 0x80, 0xca, 0xb8, 0x03, 0x19, 0x19, 0xef, 0x4e, + 0xd3, 0xb4, 0xe6, 0xb8, 0x98, 0x17, 0x04, 0x20, 0xeb, 0x9e, 0xf5, 0xd3, + 0x2c, 0x6a, 0x91, 0xed, 0x03, 0x80, 0x2b, 0x97, 0x19, 0x8e, 0xf6, 0x4f, + 0x92, 0x9e, 0xe6, 0x71, 0x85, 0xf7, 0x3c, 0x92, 0xed, 0xf3, 0x78, 0xcc, + 0xc3, 0x04, 0x37, 0x23, 0xe9, 0x5a, 0xb7, 0x12, 0xcb, 0xba, 0x3b, 0x7b, + 0x65, 0xf3, 0x27, 0x90, 0x0c, 0x05, 0xe7, 0x19, 0xaa, 0x7a, 0xb4, 0x68, + 0xda, 0xb5, 0xca, 0x28, 0xe4, 0xc8, 0x40, 0xc5, 0x69, 0x69, 0x49, 0x7d, + 0xe1, 0xf7, 0x17, 0x32, 0xd9, 0x79, 0xb1, 0xb8, 0x1f, 0x30, 0xe4, 0x81, + 0x5d, 0xae, 0xaa, 0x50, 0x4f, 0xab, 0xe8, 0x43, 0x8e, 0xa0, 0xbe, 0x1d, + 0xbd, 0xb5, 0x81, 0xe7, 0x9a, 0x26, 0x2e, 0x46, 0x59, 0x8f, 0x6a, 0x6d, + 0xad, 0x95, 0xd3, 0x48, 0x97, 0x08, 0xa7, 0xcb, 0x23, 0x0c, 0x2b, 0xae, + 0xb4, 0xf1, 0x15, 0x8e, 0xa2, 0x9e, 0x5e, 0x70, 0xec, 0x30, 0x51, 0xb8, + 0xab, 0x7a, 0x75, 0xaf, 0xd9, 0x11, 0xd3, 0x19, 0x8d, 0x8e, 0x54, 0x7a, + 0x57, 0x0c, 0xf3, 0x07, 0x06, 0xef, 0x1b, 0x32, 0x95, 0x3b, 0xf5, 0x39, + 0x53, 0x06, 0xf3, 0x82, 0x84, 0x9f, 0x4c, 0x54, 0xf0, 0xe9, 0x4e, 0xe4, + 0x11, 0x0e, 0x3d, 0xcd, 0x75, 0xa6, 0x18, 0x99, 0xb3, 0xe5, 0xa8, 0x3e, + 0xb8, 0xa3, 0xec, 0xb9, 0xe9, 0x5a, 0xd2, 0xcc, 0x68, 0x4b, 0xe3, 0xd0, + 0x97, 0x4e, 0x4b, 0x63, 0x0e, 0x1d, 0x1b, 0xbc, 0xb2, 0x63, 0xd8, 0x55, + 0xe8, 0xb4, 0xfb, 0x58, 0xba, 0x47, 0xb8, 0xfa, 0x9a, 0xbb, 0xf6, 0x67, + 0x1d, 0xa8, 0xf2, 0x98, 0x75, 0x06, 0xbb, 0xe9, 0xd7, 0xa3, 0x2f, 0x86, + 0x48, 0xcd, 0xa9, 0x22, 0x17, 0x45, 0x58, 0x88, 0x55, 0x00, 0x63, 0xb5, + 0x28, 0xfb, 0x82, 0x9f, 0x22, 0x91, 0x19, 0xe2, 0xa3, 0xfe, 0x11, 0x5e, + 0x36, 0x71, 0xf1, 0xc4, 0xe8, 0xc3, 0xec, 0xc6, 0x9a, 0x29, 0x0d, 0x19, + 0xaf, 0x29, 0x1a, 0x30, 0xa2, 0x92, 0x8a, 0x04, 0x29, 0x34, 0x94, 0x50, + 0x29, 0x88, 0xbd, 0x6c, 0x3f, 0x75, 0xf8, 0xd5, 0x80, 0x2a, 0x1b, 0x61, + 0xfb, 0xaf, 0xc6, 0xac, 0x01, 0x5f, 0x53, 0x83, 0xfe, 0x04, 0x7d, 0x0e, + 0x59, 0xfc, 0x4c, 0x50, 0x29, 0xc0, 0x50, 0x05, 0x38, 0x0a, 0xea, 0x20, + 0x00, 0xa7, 0x01, 0x4e, 0x58, 0x9d, 0xba, 0x29, 0xab, 0x09, 0x67, 0x23, + 0x75, 0xc0, 0x15, 0x94, 0xeb, 0x53, 0xa7, 0xf1, 0x4a, 0xc3, 0x51, 0x6f, + 0x62, 0xb0, 0x15, 0x97, 0xae, 0xcf, 0xe5, 0xdb, 0x08, 0xc1, 0xe5, 0xcd, + 0x74, 0xd1, 0xda, 0x46, 0xbf, 0x78, 0xe6, 0x99, 0x77, 0xa7, 0x59, 0xde, + 0x28, 0x59, 0x62, 0x07, 0x1d, 0x08, 0xed, 0x5c, 0x52, 0xcd, 0x68, 0x46, + 0x56, 0x5a, 0x8e, 0x54, 0x27, 0x28, 0xb4, 0x8f, 0x3e, 0x53, 0x81, 0x4e, + 0xdf, 0x57, 0x75, 0xad, 0x3f, 0xfb, 0x3a, 0xe8, 0x2a, 0x67, 0xca, 0x61, + 0x95, 0x26, 0xb3, 0x37, 0x57, 0xa9, 0x4e, 0xa4, 0x6a, 0x45, 0x4e, 0x3b, + 0x33, 0xcb, 0x9c, 0x1c, 0x1f, 0x2b, 0x2c, 0x09, 0x31, 0x4e, 0xf3, 0x86, + 0x0d, 0x55, 0xdd, 0x48, 0x5b, 0x83, 0x5a, 0x12, 0x36, 0xde, 0xff, 0x00, + 0x00, 0x73, 0x5a, 0x31, 0x5f, 0x06, 0xea, 0x6b, 0x96, 0x65, 0x96, 0x0f, + 0xbc, 0x0f, 0x15, 0x24, 0x57, 0x64, 0x77, 0xa2, 0xec, 0x9b, 0x9d, 0x72, + 0xcc, 0xad, 0xd0, 0xd3, 0xb3, 0x5c, 0xec, 0x57, 0xe4, 0x77, 0xab, 0xb1, + 0x5f, 0x82, 0x39, 0x34, 0xd3, 0x03, 0x48, 0xd4, 0x4e, 0x2a, 0x34, 0xb9, + 0x56, 0x1d, 0x6a, 0x4d, 0xe0, 0x8e, 0xb5, 0x40, 0xc8, 0x4d, 0x21, 0xa9, + 0x08, 0xcd, 0x46, 0x45, 0x04, 0x0c, 0x35, 0x19, 0xa9, 0x0d, 0x46, 0xd4, + 0xc4, 0x30, 0xd3, 0x4b, 0x11, 0xd0, 0xd3, 0xba, 0xd3, 0x48, 0xa0, 0x57, + 0x10, 0xcb, 0x20, 0xe8, 0xed, 0xf9, 0xd3, 0x0c, 0xd3, 0x7f, 0xcf, 0x46, + 0xfc, 0xe9, 0xc6, 0x80, 0xb4, 0x58, 0x39, 0xa5, 0xdc, 0xa9, 0x39, 0x24, + 0xfc, 0xc7, 0x26, 0xab, 0x1a, 0xbd, 0x34, 0x0c, 0xdc, 0xaf, 0x3e, 0xd5, + 0x4d, 0xe2, 0x90, 0x75, 0x43, 0x49, 0xa1, 0x26, 0x33, 0x34, 0xdc, 0xd2, + 0x1c, 0x8e, 0xa0, 0xd2, 0x6e, 0xa4, 0x55, 0xc5, 0xa6, 0xb5, 0x19, 0xa4, + 0x39, 0x3d, 0xa9, 0x0e, 0xe4, 0x05, 0xc8, 0x6c, 0x0a, 0x70, 0x72, 0x69, + 0xe2, 0xdd, 0xd8, 0xe7, 0x15, 0x20, 0xb7, 0x22, 0x8b, 0x15, 0xcc, 0x88, + 0xc1, 0x26, 0x9c, 0x01, 0xa9, 0x96, 0x0a, 0x78, 0x8c, 0x0a, 0x76, 0x0b, + 0x8c, 0x57, 0x94, 0x29, 0x50, 0xec, 0x01, 0xed, 0x9a, 0x69, 0x1b, 0x47, + 0x26, 0xa6, 0x22, 0xa1, 0x92, 0x16, 0x61, 0xf2, 0x9a, 0x12, 0x29, 0x3b, + 0xee, 0x57, 0x79, 0x5b, 0xf8, 0x45, 0x43, 0xe6, 0xcc, 0x1b, 0x21, 0xc8, + 0x23, 0xd2, 0xa7, 0x31, 0x3a, 0xf5, 0x5f, 0xca, 0x9b, 0xb4, 0x1a, 0xdd, + 0x46, 0x26, 0xf1, 0x51, 0xe8, 0x36, 0x6b, 0xcb, 0xab, 0x85, 0x0b, 0x2c, + 0xce, 0xca, 0x3b, 0x13, 0x50, 0x8a, 0x98, 0xc7, 0x4d, 0x31, 0xd3, 0x4a, + 0xdb, 0x17, 0x76, 0xc6, 0x83, 0x4e, 0x06, 0x8d, 0xb4, 0x80, 0x62, 0x98, + 0x0e, 0xa5, 0xa4, 0xa2, 0x81, 0x0e, 0xa2, 0x92, 0x8c, 0xd0, 0x31, 0x68, + 0xa4, 0xcd, 0x19, 0xa0, 0x05, 0xa4, 0xcd, 0x25, 0x21, 0x3c, 0x50, 0x04, + 0x43, 0x96, 0x34, 0xa6, 0x91, 0x69, 0x4d, 0x0c, 0x48, 0x4a, 0x4a, 0x5a, + 0x43, 0x48, 0xa1, 0x0d, 0x25, 0x2d, 0x25, 0x03, 0x15, 0x6a, 0xfc, 0x07, + 0xf7, 0x62, 0xa8, 0x0a, 0xbd, 0x01, 0xfd, 0xd8, 0xa4, 0x32, 0xc0, 0x34, + 0xf0, 0xd5, 0x08, 0x34, 0xf1, 0x40, 0x8b, 0x56, 0xe0, 0x4b, 0x3a, 0x2c, + 0x8f, 0xb5, 0x49, 0xc1, 0x63, 0xda, 0xba, 0x99, 0x7c, 0x2a, 0xc2, 0xcb, + 0xcf, 0xb6, 0x9f, 0xce, 0x38, 0xce, 0x31, 0xd6, 0xb9, 0x15, 0xe2, 0xb4, + 0xed, 0x75, 0xdb, 0xfb, 0x38, 0x3c, 0x98, 0x66, 0x21, 0x3b, 0x67, 0xb5, + 0x44, 0xd4, 0xbe, 0xc9, 0x71, 0x71, 0xea, 0x41, 0x2a, 0xb2, 0x31, 0x46, + 0x04, 0x30, 0xe0, 0x83, 0x54, 0xa4, 0xb7, 0x2c, 0xd9, 0x04, 0x83, 0xed, + 0x56, 0xe6, 0xba, 0x92, 0xe6, 0x53, 0x24, 0xad, 0xb9, 0xcf, 0x53, 0x4d, + 0xcd, 0x53, 0x8a, 0x6a, 0xcc, 0x14, 0x9c, 0x5d, 0xd3, 0x2a, 0xab, 0x5c, + 0xc3, 0xd1, 0xb7, 0x0a, 0x99, 0x35, 0x73, 0x11, 0x02, 0x50, 0x53, 0xdc, + 0xf4, 0xa9, 0x38, 0x35, 0x0d, 0xc4, 0x0b, 0x22, 0x10, 0x46, 0x6b, 0x8a, + 0xb6, 0x5d, 0x42, 0xa7, 0x4b, 0x1d, 0x94, 0xb1, 0xf5, 0x63, 0xbe, 0xa6, + 0xac, 0x1a, 0x90, 0x70, 0x08, 0x6c, 0xfe, 0x35, 0x76, 0x3b, 0xf3, 0xeb, + 0x50, 0xc1, 0xa0, 0xdb, 0xdc, 0x59, 0x45, 0x22, 0x02, 0xa4, 0xa8, 0xe9, + 0x51, 0xc9, 0xa1, 0xdd, 0x45, 0xfe, 0xaa, 0x72, 0x7d, 0x8d, 0x78, 0xb5, + 0x32, 0xb7, 0xf6, 0x59, 0xe9, 0xc3, 0x30, 0x8f, 0x53, 0x4d, 0x2f, 0xbd, + 0xea, 0x75, 0xbc, 0x07, 0xbd, 0x73, 0xad, 0x6f, 0xa9, 0x41, 0xd6, 0x20, + 0xe3, 0xda, 0x90, 0x5e, 0x4b, 0x1f, 0x12, 0xc3, 0x22, 0x7e, 0x19, 0xae, + 0x39, 0xe0, 0x2b, 0x47, 0xa1, 0xd5, 0x0c, 0x5d, 0x39, 0x75, 0x3a, 0x85, + 0xb9, 0x53, 0xde, 0xa4, 0x13, 0x29, 0xef, 0x5c, 0xca, 0x6a, 0x51, 0x9e, + 0x37, 0xe0, 0xfa, 0x1e, 0x2a, 0xd2, 0x5e, 0x03, 0xd1, 0x81, 0xfc, 0x6b, + 0x96, 0x54, 0x65, 0x1d, 0xd1, 0xd1, 0x1a, 0x89, 0xec, 0x6e, 0xf9, 0x83, + 0xd6, 0x9c, 0x1c, 0x7a, 0xd6, 0x32, 0xdd, 0x1f, 0x5a, 0x94, 0x5d, 0x1a, + 0xcd, 0xc4, 0xbe, 0x63, 0x57, 0x7f, 0xbd, 0x1b, 0xbd, 0xeb, 0x34, 0x5d, + 0xd3, 0x85, 0xd5, 0x2b, 0x0f, 0x98, 0xd1, 0xdf, 0xef, 0x46, 0xfa, 0xa0, + 0x2e, 0x85, 0x2f, 0xda, 0x45, 0x3b, 0x85, 0xcb, 0xdb, 0xe8, 0xdf, 0x54, + 0xbe, 0xd2, 0x28, 0xfb, 0x40, 0xf5, 0xa7, 0xcc, 0x05, 0xd1, 0x21, 0x1d, + 0x0d, 0x34, 0xca, 0x7f, 0xbc, 0x6a, 0x9f, 0x9f, 0x48, 0x67, 0xaa, 0xf6, + 0xb2, 0xd8, 0x56, 0x45, 0xa2, 0xf9, 0xef, 0x4c, 0x2d, 0xef, 0x55, 0x4d, + 0xc7, 0xbd, 0x31, 0xae, 0x29, 0x73, 0xb0, 0x2d, 0x6f, 0xc1, 0x04, 0x1c, + 0x11, 0x57, 0x17, 0x53, 0x43, 0x16, 0xd9, 0xd7, 0x71, 0x1d, 0x08, 0xac, + 0x17, 0xb9, 0x3e, 0xb5, 0x09, 0x92, 0x57, 0xe8, 0xa6, 0xb7, 0xa3, 0x88, + 0xa9, 0x4b, 0x58, 0x98, 0xd5, 0xa5, 0x0a, 0x8a, 0xd2, 0x46, 0x9b, 0x5f, + 0x92, 0xed, 0x85, 0xc0, 0xcf, 0x00, 0x9c, 0xd5, 0x3b, 0xe9, 0x7c, 0xe0, + 0xa4, 0xe3, 0x8a, 0x8e, 0x28, 0xe5, 0x2d, 0x97, 0x18, 0x14, 0xb7, 0x2b, + 0xb5, 0x05, 0x39, 0xe2, 0xaa, 0xcf, 0xdd, 0x72, 0xd1, 0x92, 0xa8, 0x53, + 0x8b, 0xba, 0x5a, 0x94, 0xe9, 0x68, 0xa2, 0xb3, 0x18, 0x52, 0x52, 0xd1, + 0x40, 0x84, 0xa2, 0x8a, 0x29, 0x88, 0x2b, 0x42, 0xd7, 0x1f, 0x67, 0x5a, + 0xcf, 0xab, 0x30, 0x9f, 0xdd, 0x8a, 0xe8, 0xc3, 0x62, 0x15, 0x09, 0x73, + 0x35, 0x73, 0x1a, 0xd4, 0x7d, 0xaa, 0xe5, 0xbd, 0x8b, 0x84, 0x0a, 0x69, + 0x54, 0x3d, 0x40, 0xa8, 0x09, 0xf7, 0xa6, 0x13, 0x5d, 0x9f, 0xda, 0x8b, + 0xa4, 0x4e, 0x7f, 0xec, 0xfe, 0xf2, 0x27, 0x31, 0xc4, 0x7a, 0x85, 0xa6, + 0x18, 0xa0, 0xee, 0x16, 0x99, 0x91, 0x45, 0x4b, 0xcd, 0x1f, 0x48, 0x94, + 0xb2, 0xf8, 0xf5, 0x90, 0x18, 0x6d, 0xf3, 0xf7, 0x47, 0xe5, 0x4d, 0x31, + 0xc3, 0xd9, 0x29, 0x68, 0xac, 0xa5, 0x99, 0x55, 0x7b, 0x24, 0x5a, 0xc0, + 0xd3, 0x5b, 0x8c, 0x31, 0x46, 0x7f, 0x80, 0x52, 0x18, 0x23, 0x3d, 0x55, + 0x7f, 0x2a, 0x7e, 0x69, 0x0b, 0xe0, 0x64, 0x9e, 0x2b, 0x19, 0x63, 0x2b, + 0xcb, 0xed, 0x1a, 0xc7, 0x0d, 0x4a, 0x3d, 0x08, 0xde, 0x38, 0x62, 0x42, + 0xec, 0xaa, 0x00, 0xe7, 0x35, 0x8c, 0x26, 0xb9, 0xd5, 0x67, 0x64, 0xb7, + 0x6f, 0x26, 0xdd, 0x4e, 0x37, 0x01, 0xc9, 0xa2, 0xfa, 0xe5, 0xf5, 0x2b, + 0x9f, 0xb1, 0xdb, 0x9f, 0xdd, 0x83, 0xf3, 0xb0, 0xad, 0x6b, 0x68, 0xa3, + 0xb5, 0x81, 0x63, 0x8c, 0x60, 0x01, 0x4d, 0xc9, 0xc1, 0x73, 0x4b, 0x59, + 0x3f, 0xc0, 0x2c, 0xa4, 0xec, 0xb4, 0x46, 0x73, 0x69, 0xda, 0x8c, 0x3c, + 0x5b, 0x5e, 0x65, 0x7f, 0xdb, 0x19, 0xa6, 0xed, 0xd6, 0xd3, 0xfe, 0x5a, + 0xc4, 0xdf, 0x85, 0x6b, 0x19, 0x40, 0xa6, 0x19, 0x33, 0x52, 0xab, 0x4f, + 0xaa, 0x5f, 0x70, 0xfd, 0x94, 0x7a, 0x37, 0xf7, 0x94, 0x23, 0xbc, 0xd7, + 0x60, 0x5f, 0x96, 0x38, 0x08, 0xfa, 0xd4, 0x37, 0x1a, 0xb7, 0x88, 0x49, + 0xf9, 0x63, 0x55, 0x18, 0xfe, 0x11, 0x9a, 0xd4, 0x04, 0x13, 0x53, 0x2d, + 0x54, 0xab, 0xc6, 0xf7, 0x70, 0x46, 0x3f, 0x54, 0x8b, 0xea, 0xce, 0x0d, + 0xbe, 0xd2, 0xf7, 0x79, 0x90, 0x1f, 0x35, 0x9f, 0x27, 0x8e, 0xf5, 0xea, + 0x16, 0x71, 0x19, 0x2c, 0x22, 0x13, 0x28, 0xdd, 0xb0, 0x64, 0x55, 0x18, + 0x2c, 0xa2, 0x79, 0xc4, 0xa6, 0x31, 0xb8, 0x77, 0xc5, 0x6a, 0x47, 0xb9, + 0x78, 0xea, 0x2b, 0x0c, 0x5e, 0x25, 0x55, 0xb2, 0x4a, 0xd6, 0x39, 0x5d, + 0x25, 0x09, 0x35, 0x7b, 0x98, 0xfa, 0x87, 0x85, 0xec, 0xee, 0xc9, 0x78, + 0xd7, 0xc9, 0x97, 0xfb, 0xc9, 0xc5, 0x65, 0x18, 0x75, 0xed, 0x14, 0xe6, + 0x37, 0x37, 0x30, 0x0e, 0xc7, 0x93, 0x5d, 0xa0, 0x39, 0xa5, 0x2a, 0x08, + 0xe9, 0x59, 0xc3, 0x17, 0x34, 0xb9, 0x65, 0xef, 0x2f, 0x33, 0x37, 0x0e, + 0xc7, 0x35, 0x61, 0xe2, 0xfb, 0x57, 0x61, 0x1d, 0xe4, 0x4d, 0x04, 0x9d, + 0xf2, 0x38, 0xae, 0x8e, 0xde, 0xea, 0xde, 0xed, 0x43, 0xc3, 0x2a, 0xba, + 0xfb, 0x1a, 0xa3, 0x7b, 0xa2, 0xd9, 0x5f, 0x29, 0x12, 0xc0, 0xb9, 0xfe, + 0xf0, 0x1c, 0xd7, 0x35, 0x7b, 0xa1, 0x5e, 0x68, 0x8d, 0xf6, 0xbd, 0x36, + 0x67, 0x31, 0xaf, 0x25, 0x33, 0x5a, 0x28, 0x50, 0xac, 0xed, 0x17, 0xca, + 0xfc, 0xf6, 0x15, 0xda, 0xdc, 0xee, 0xc2, 0x8a, 0x7e, 0xd1, 0x5c, 0xf6, + 0x81, 0xaf, 0xa6, 0xa9, 0x0e, 0xc7, 0x21, 0x67, 0x4f, 0xbc, 0xbe, 0xb5, + 0xb8, 0x1c, 0xd7, 0x25, 0x4a, 0x72, 0xa7, 0x2e, 0x59, 0x6e, 0x52, 0x69, + 0x8b, 0x3a, 0x2f, 0x90, 0xe7, 0x1d, 0xab, 0x28, 0xf4, 0xad, 0x59, 0x49, + 0xf2, 0x1f, 0xe9, 0x59, 0x24, 0xd2, 0x4d, 0xbd, 0xca, 0x43, 0x4d, 0x25, + 0x19, 0xa2, 0xb4, 0x44, 0x85, 0x14, 0xb4, 0x62, 0x98, 0x83, 0x14, 0xa0, + 0x50, 0x05, 0x3d, 0x45, 0x43, 0x60, 0x6b, 0x69, 0xd6, 0xbe, 0x74, 0x19, + 0xce, 0x30, 0x6b, 0x45, 0x34, 0xe5, 0xee, 0xc6, 0xa1, 0xd2, 0x38, 0xb7, + 0x3f, 0x5a, 0xd3, 0x06, 0xba, 0x21, 0x8f, 0xad, 0x18, 0x28, 0xc6, 0x5a, + 0x22, 0x1d, 0x38, 0xde, 0xe5, 0x57, 0xb4, 0x8e, 0x30, 0x08, 0x19, 0xfa, + 0xd0, 0xa8, 0x8b, 0xd1, 0x45, 0x5a, 0xeb, 0xc1, 0xa4, 0xf2, 0xd4, 0xd6, + 0x55, 0x31, 0x35, 0xe7, 0xf6, 0x99, 0x4a, 0x31, 0x5d, 0x08, 0x81, 0xc7, + 0x4a, 0x37, 0x35, 0x4c, 0x23, 0x14, 0xe1, 0x18, 0xae, 0x7f, 0x79, 0xee, + 0xca, 0xba, 0x20, 0xc9, 0xa3, 0x26, 0xac, 0x79, 0x62, 0x97, 0xcb, 0x15, + 0x4a, 0x2c, 0x2e, 0x64, 0x6a, 0xd6, 0x2b, 0x7f, 0x64, 0xc9, 0x8f, 0x9d, + 0x79, 0x53, 0xef, 0x5c, 0x5b, 0x5a, 0x14, 0x24, 0x15, 0x20, 0x8a, 0xf4, + 0xc5, 0x8d, 0x01, 0xe4, 0x55, 0x2d, 0x53, 0x4e, 0xb3, 0x92, 0xd5, 0x8e, + 0x02, 0x30, 0xe4, 0x30, 0x15, 0xf4, 0x39, 0x45, 0x5e, 0x58, 0x38, 0xc9, + 0x9e, 0x7e, 0x32, 0x8f, 0x3b, 0xe6, 0x5b, 0x9e, 0x7a, 0x60, 0xf6, 0xaa, + 0xf7, 0x23, 0xca, 0x8c, 0xb1, 0xe9, 0x5b, 0x6d, 0x18, 0xc9, 0x15, 0x4e, + 0xfa, 0xdc, 0x3d, 0xb3, 0x80, 0x32, 0x71, 0xc5, 0x7b, 0xd6, 0x3c, 0xb1, + 0xd2, 0x5a, 0x47, 0x2a, 0xfc, 0xca, 0x0d, 0x67, 0xcd, 0xa2, 0x44, 0xe7, + 0x2b, 0x95, 0x3e, 0xd5, 0xb4, 0x07, 0x02, 0x8c, 0x53, 0x26, 0xc7, 0x38, + 0xda, 0x2c, 0xc9, 0xf7, 0x24, 0xcf, 0xd6, 0xa2, 0x6b, 0x3b, 0xa8, 0x79, + 0x2b, 0x90, 0x3d, 0x2b, 0xa7, 0xc5, 0x31, 0xd4, 0x11, 0x45, 0x90, 0xac, + 0x73, 0x09, 0x76, 0xc8, 0xdb, 0x49, 0xc1, 0xf4, 0x35, 0x6a, 0x3b, 0xe3, + 0xeb, 0x56, 0xae, 0x2c, 0xa0, 0x92, 0x65, 0x32, 0xa6, 0x57, 0x3c, 0xd5, + 0xd6, 0xf0, 0x9c, 0x12, 0x20, 0x7b, 0x79, 0xdd, 0x41, 0x19, 0x1c, 0xe4, + 0x52, 0x7a, 0x1a, 0xd3, 0xa6, 0xe6, 0xb4, 0x65, 0x24, 0xbc, 0x06, 0xa5, + 0x13, 0xab, 0x77, 0xa1, 0xfc, 0x31, 0x79, 0x1f, 0xfa, 0xb9, 0x91, 0xfe, + 0xa3, 0x15, 0x09, 0xd1, 0xb5, 0x28, 0xff, 0x00, 0xe5, 0x90, 0x6f, 0xf7, + 0x5a, 0x92, 0x90, 0xdd, 0x19, 0xf6, 0x2c, 0x6e, 0x07, 0xa1, 0xa6, 0x30, + 0xcd, 0x41, 0xf6, 0x4b, 0xf4, 0xeb, 0x6e, 0xf4, 0xb8, 0xb9, 0x5f, 0xbd, + 0x0b, 0xfe, 0x55, 0x5c, 0xc6, 0x6e, 0x9b, 0xec, 0x38, 0x82, 0x29, 0x86, + 0x9c, 0x1a, 0x4e, 0xf1, 0x3f, 0xfd, 0xf2, 0x69, 0x76, 0x96, 0xfe, 0x06, + 0xfc, 0x8d, 0x3e, 0x64, 0x4b, 0xa7, 0x2e, 0xc4, 0x54, 0xf5, 0x14, 0xa2, + 0x09, 0x09, 0xe1, 0x18, 0xfe, 0x15, 0x65, 0x2d, 0x26, 0x23, 0x88, 0xdb, + 0xf2, 0xa7, 0x74, 0x4f, 0x24, 0xbb, 0x10, 0x54, 0x6c, 0xb9, 0xab, 0xe3, + 0x4e, 0xb9, 0x3f, 0xc1, 0x8f, 0xad, 0x3c, 0x69, 0x33, 0x9e, 0xbb, 0x47, + 0xe3, 0x4b, 0x99, 0x15, 0xec, 0x66, 0xfa, 0x19, 0x26, 0x31, 0xe9, 0x4c, + 0x31, 0x0f, 0x4a, 0xdc, 0x1a, 0x39, 0xfe, 0x29, 0x07, 0xe5, 0x52, 0x2e, + 0x91, 0x10, 0xfb, 0xcc, 0xc6, 0x97, 0x3a, 0x29, 0x61, 0x66, 0xce, 0x74, + 0xc2, 0x3d, 0x28, 0x16, 0xe5, 0xba, 0x2e, 0x7f, 0x0a, 0xe9, 0xd7, 0x4f, + 0xb7, 0x4f, 0xf9, 0x66, 0x0f, 0xd6, 0x89, 0x9a, 0x1b, 0x68, 0xcb, 0x10, + 0x07, 0xa0, 0x14, 0xb9, 0xfb, 0x1a, 0xac, 0x2d, 0xb5, 0x93, 0x39, 0x89, + 0x2d, 0x65, 0x89, 0x37, 0x14, 0x20, 0x7b, 0xd4, 0x7b, 0x72, 0x39, 0xab, + 0xd7, 0x33, 0xb5, 0xc4, 0x9b, 0x9b, 0xa7, 0x61, 0x55, 0x88, 0xaa, 0x5e, + 0x67, 0x3c, 0xb9, 0x6f, 0xee, 0x91, 0x6d, 0xa4, 0xdb, 0x52, 0x62, 0x90, + 0x8a, 0x00, 0x66, 0x29, 0x36, 0xd3, 0xf1, 0x46, 0x28, 0x01, 0x9b, 0x69, + 0xa6, 0x24, 0x6e, 0xaa, 0x2a, 0x5c, 0x51, 0x8a, 0x06, 0x99, 0x58, 0xda, + 0xaf, 0xf0, 0x92, 0x2a, 0x33, 0x6e, 0xe3, 0xd0, 0xd5, 0xdc, 0x51, 0x8a, + 0xa5, 0x36, 0x68, 0xa7, 0x24, 0x67, 0x34, 0x44, 0x75, 0x04, 0x54, 0x65, + 0x6b, 0x54, 0xa8, 0x23, 0x91, 0x56, 0x5f, 0x4d, 0x5b, 0xb8, 0x11, 0xe2, + 0x0a, 0x8d, 0xdf, 0x8e, 0xb5, 0x5e, 0xd7, 0xb9, 0xbc, 0x1b, 0x99, 0xcf, + 0xed, 0xa4, 0xdb, 0x5a, 0xd2, 0x68, 0xf7, 0x49, 0xff, 0x00, 0x2c, 0xc3, + 0x7d, 0x0d, 0x54, 0x92, 0xd2, 0x58, 0xf8, 0x68, 0xd8, 0x7e, 0x15, 0x6a, + 0x49, 0xec, 0x57, 0x2b, 0x45, 0x4c, 0x51, 0x52, 0x98, 0xcd, 0x34, 0xa1, + 0xaa, 0x11, 0x1d, 0x21, 0xa9, 0x0a, 0xd3, 0x4a, 0xd2, 0x19, 0x19, 0x34, + 0xc6, 0x6e, 0x29, 0xe5, 0x6a, 0x27, 0x53, 0x40, 0x5c, 0x54, 0xa7, 0x54, + 0x6a, 0xd4, 0xfc, 0xd0, 0x4a, 0x0a, 0x4a, 0x33, 0x49, 0x91, 0x48, 0xa1, + 0x69, 0xa6, 0x82, 0xc3, 0xd6, 0x9a, 0x58, 0x7a, 0xd0, 0x03, 0x85, 0x5c, + 0x88, 0xfc, 0x82, 0xa9, 0xa8, 0x66, 0x3c, 0x03, 0x57, 0x23, 0x52, 0x8a, + 0x33, 0x45, 0x87, 0x72, 0x65, 0xa9, 0x54, 0x8a, 0x89, 0x79, 0xa9, 0x55, + 0x68, 0x01, 0xe0, 0xd3, 0x85, 0x20, 0x14, 0xb8, 0xf7, 0xa0, 0x05, 0xdc, + 0x05, 0x39, 0x58, 0x93, 0x4d, 0x00, 0x0a, 0x78, 0x34, 0x00, 0xf0, 0x69, + 0x4f, 0x22, 0x98, 0x0d, 0x3b, 0x3c, 0x52, 0x28, 0xe9, 0xfc, 0x3f, 0x70, + 0x25, 0xb2, 0xf2, 0x8f, 0xde, 0x8c, 0xe3, 0xf0, 0xad, 0x6d, 0x80, 0xd7, + 0x25, 0xa1, 0xcc, 0xd1, 0xea, 0x2a, 0xa0, 0xf0, 0xfc, 0x11, 0x5d, 0x7e, + 0x6b, 0x8e, 0xac, 0x6d, 0x23, 0xa6, 0x0e, 0xe8, 0x61, 0x88, 0x1e, 0xd5, + 0x13, 0x5b, 0x46, 0xdd, 0x54, 0x55, 0x8c, 0xd1, 0x59, 0x14, 0x67, 0xc9, + 0xa5, 0xdb, 0x49, 0xf7, 0xa2, 0x53, 0xf8, 0x55, 0x29, 0xf4, 0x3b, 0x44, + 0x5d, 0xea, 0x85, 0x4e, 0x78, 0xc1, 0xad, 0xda, 0xa7, 0x76, 0xd9, 0x75, + 0x41, 0xdb, 0x9a, 0xe7, 0xc5, 0xcd, 0x42, 0x8c, 0x99, 0xd5, 0x85, 0x8b, + 0x95, 0x54, 0x8a, 0x49, 0x63, 0x12, 0xae, 0x31, 0xfa, 0xd0, 0xd6, 0x2a, + 0x7e, 0xe9, 0x22, 0xad, 0x03, 0x4b, 0x5f, 0x26, 0xdc, 0x8f, 0xa1, 0x49, + 0x19, 0xed, 0x65, 0x20, 0xfb, 0xaf, 0xf9, 0x8a, 0x61, 0xb5, 0xb8, 0x1d, + 0x0a, 0xd6, 0x9d, 0x14, 0xf9, 0xa4, 0x16, 0x33, 0x3e, 0xcf, 0x70, 0x3f, + 0xbb, 0x47, 0x93, 0x72, 0x3f, 0x84, 0x7e, 0x75, 0xa7, 0x49, 0x8a, 0x7c, + 0xcc, 0x2c, 0x66, 0x18, 0xee, 0x47, 0xf0, 0x0f, 0xce, 0x81, 0x1d, 0xd1, + 0xfe, 0x05, 0x1f, 0x8d, 0x69, 0xd2, 0xe2, 0x8e, 0x67, 0xd8, 0x2c, 0x51, + 0x4b, 0x79, 0x8f, 0xde, 0x20, 0x7d, 0x2a, 0x61, 0x6d, 0xea, 0xc6, 0xac, + 0x51, 0x53, 0xab, 0x19, 0x46, 0x5b, 0x20, 0xe7, 0x89, 0x59, 0x47, 0xb5, + 0x49, 0x1d, 0xac, 0x51, 0xae, 0x39, 0x6f, 0x72, 0x6a, 0xc9, 0xe4, 0x54, + 0x52, 0x06, 0x03, 0x29, 0xd7, 0xd2, 0xaa, 0xee, 0xd6, 0x15, 0x96, 0xe2, + 0x79, 0x08, 0x3a, 0x28, 0xa4, 0xd8, 0x05, 0x2a, 0x19, 0x19, 0x72, 0x50, + 0xfe, 0x14, 0xa4, 0xe6, 0xaa, 0x74, 0xa7, 0x0f, 0x89, 0x13, 0x19, 0xc6, + 0x5b, 0x32, 0x32, 0x2a, 0xbd, 0xd7, 0xfa, 0xba, 0xb0, 0xd5, 0x5e, 0xe3, + 0xfd, 0x5d, 0x28, 0xbd, 0x46, 0xf6, 0x29, 0x52, 0x52, 0x9a, 0x4a, 0xd8, + 0xc5, 0x89, 0x45, 0x14, 0x53, 0x10, 0x51, 0x49, 0x45, 0x02, 0x0a, 0x9a, + 0x37, 0xc2, 0xe2, 0xa1, 0xa5, 0x06, 0x86, 0x86, 0x89, 0xf7, 0x51, 0x9a, + 0x8c, 0x52, 0x8c, 0xd4, 0x94, 0x3e, 0x96, 0x90, 0x52, 0xd0, 0x01, 0x45, + 0x14, 0xb4, 0x80, 0x6d, 0x32, 0x48, 0x84, 0xb1, 0x94, 0x6e, 0x87, 0x8a, + 0x97, 0x14, 0x62, 0x84, 0xed, 0xb0, 0xac, 0x50, 0xb6, 0xd3, 0x62, 0xb5, + 0xc8, 0x88, 0x11, 0x9e, 0xbc, 0xd5, 0xa1, 0x15, 0x4b, 0xc0, 0xa6, 0x34, + 0xf1, 0xaf, 0x05, 0x86, 0x7d, 0x05, 0x5d, 0xe7, 0x37, 0xdd, 0x93, 0x68, + 0xc5, 0x11, 0x34, 0x78, 0x34, 0xe5, 0x81, 0xdf, 0xa2, 0x93, 0x57, 0xad, + 0x42, 0x4a, 0x37, 0x18, 0xcf, 0xb6, 0xe1, 0x57, 0x02, 0x80, 0x38, 0x15, + 0x33, 0x72, 0x8e, 0x8d, 0x6a, 0x73, 0xcb, 0x12, 0x96, 0x91, 0x33, 0x23, + 0xb0, 0x72, 0x7e, 0x6e, 0x2a, 0xe4, 0x76, 0xb1, 0xa7, 0x6c, 0x9f, 0x7a, + 0xb1, 0x8a, 0x31, 0x58, 0xca, 0x4d, 0x98, 0x4a, 0xb4, 0x98, 0x83, 0x81, + 0x8a, 0x78, 0x34, 0xca, 0x4a, 0x8b, 0x19, 0x32, 0x60, 0xd4, 0x92, 0xcc, + 0x63, 0x8c, 0xb2, 0x8c, 0xe3, 0xb5, 0x45, 0xba, 0xa0, 0xba, 0x90, 0x84, + 0xc5, 0x6b, 0x87, 0xa2, 0xaa, 0x55, 0x8c, 0x5f, 0x52, 0x64, 0xec, 0xae, + 0x58, 0x8e, 0xfa, 0x39, 0x38, 0x3f, 0x2b, 0x7a, 0x1a, 0x99, 0x99, 0x5d, + 0x48, 0xe0, 0x83, 0x58, 0x65, 0xa8, 0x13, 0xc8, 0x9f, 0x75, 0x88, 0xaf, + 0x56, 0xae, 0x53, 0xd6, 0x9c, 0xbe, 0xf3, 0x25, 0x5b, 0xba, 0x39, 0xdd, + 0x5e, 0x19, 0x34, 0x0d, 0x6d, 0x2f, 0x6d, 0xc1, 0x11, 0x33, 0x64, 0x81, + 0xfa, 0x8a, 0xec, 0xed, 0x35, 0x24, 0xba, 0xb5, 0x49, 0xa3, 0x20, 0x86, + 0x19, 0xac, 0x4d, 0x57, 0xfe, 0x26, 0x16, 0x2f, 0x0c, 0x88, 0x0b, 0x63, + 0x2a, 0x7d, 0xeb, 0x13, 0xc3, 0x3a, 0x91, 0xb3, 0xba, 0x6d, 0x3e, 0xe1, + 0xb0, 0xa4, 0xfc, 0x84, 0xf6, 0xa8, 0xc4, 0x61, 0x6a, 0x4a, 0x8a, 0x73, + 0x5e, 0xf4, 0x7f, 0x14, 0x38, 0xc9, 0x5e, 0xc8, 0xee, 0x9e, 0xf1, 0x99, + 0x4a, 0xe3, 0x83, 0x55, 0xf3, 0x91, 0x4d, 0x38, 0xc7, 0x04, 0x1a, 0x6e, + 0x78, 0xaf, 0x29, 0x44, 0xd8, 0x75, 0x28, 0xa6, 0x83, 0x4e, 0x15, 0xa1, + 0x02, 0x81, 0x4e, 0x02, 0x80, 0x33, 0x52, 0x2a, 0xd6, 0x72, 0x95, 0x86, + 0x20, 0x5c, 0xd4, 0x8a, 0x94, 0xe5, 0x41, 0x53, 0xc7, 0x1e, 0x4f, 0x1c, + 0xd6, 0x32, 0x98, 0xec, 0x6b, 0xe9, 0x4b, 0xfe, 0x8e, 0x7e, 0xb5, 0x7b, + 0xa5, 0x56, 0xb1, 0x43, 0x14, 0x38, 0x3c, 0x66, 0xac, 0xe6, 0xb1, 0x8c, + 0x9b, 0x06, 0x85, 0x14, 0xe1, 0x4d, 0xa7, 0x0a, 0xda, 0x22, 0x16, 0x8a, + 0x05, 0x2e, 0x57, 0xd6, 0xad, 0x45, 0x88, 0x06, 0x69, 0x70, 0x69, 0x3c, + 0xc4, 0x1d, 0xc5, 0x35, 0xa7, 0x55, 0xee, 0x2a, 0x94, 0x04, 0x3f, 0x69, + 0xa1, 0x91, 0x48, 0xc3, 0x1e, 0x2a, 0x94, 0xda, 0x94, 0x69, 0xfc, 0x43, + 0xf3, 0xac, 0xe9, 0xb5, 0x95, 0xc9, 0x0b, 0x92, 0x6b, 0xa2, 0x9d, 0x0a, + 0xb2, 0xf8, 0x22, 0xd9, 0x12, 0x9c, 0x16, 0xec, 0x5d, 0x5f, 0x4f, 0x89, + 0x53, 0xce, 0x80, 0x00, 0x47, 0xde, 0x02, 0xb9, 0xf7, 0x19, 0x53, 0xf4, + 0xad, 0x37, 0xd4, 0xcb, 0x1f, 0x9e, 0x32, 0xcb, 0xdc, 0x66, 0xa8, 0xce, + 0x63, 0x2c, 0xc6, 0x30, 0x42, 0x91, 0xd0, 0xf6, 0xaf, 0xa5, 0xcb, 0xdd, + 0x75, 0x1e, 0x4a, 0xcb, 0xd0, 0xf2, 0xb1, 0x4a, 0x9b, 0x7c, 0xd4, 0xd9, + 0x18, 0xfb, 0xa3, 0xe9, 0x45, 0x35, 0x7a, 0x0a, 0x5c, 0xd7, 0xa2, 0x72, + 0x0b, 0x48, 0x68, 0xcd, 0x25, 0x00, 0x56, 0x99, 0x72, 0x0d, 0x5d, 0xd2, + 0x2f, 0xb6, 0x37, 0xd9, 0xa5, 0x3c, 0x1f, 0xba, 0x4d, 0x56, 0x71, 0x9a, + 0xa9, 0x20, 0x2a, 0xc1, 0x87, 0x04, 0x74, 0xa1, 0xab, 0x84, 0x26, 0xe1, + 0x2b, 0xa3, 0xb0, 0xa4, 0xc5, 0x52, 0xd3, 0x2f, 0x05, 0xd5, 0xb0, 0xc9, + 0xfd, 0xe2, 0xf0, 0x6a, 0xed, 0x66, 0x7a, 0x51, 0x69, 0xab, 0xa1, 0x08, + 0xa4, 0x20, 0x7a, 0x52, 0xd2, 0x52, 0x18, 0xd2, 0xa3, 0xd0, 0x52, 0x6c, + 0x5f, 0x41, 0x4e, 0xa4, 0x34, 0xc6, 0x37, 0x68, 0xf4, 0x14, 0x62, 0x96, + 0x92, 0x81, 0x08, 0x69, 0xa6, 0x9d, 0x4d, 0x34, 0x00, 0xd3, 0x4d, 0x34, + 0xfa, 0x8a, 0x59, 0x56, 0x14, 0x2c, 0xe7, 0x02, 0x80, 0xd8, 0x64, 0xd2, + 0x2c, 0x28, 0x5d, 0x8e, 0x00, 0xae, 0x7e, 0xea, 0x76, 0xb8, 0x94, 0xb1, + 0x3c, 0x76, 0x15, 0x35, 0xe5, 0xdb, 0x5c, 0x3f, 0xa2, 0x0e, 0x82, 0xa9, + 0x9a, 0xd2, 0x2a, 0xc7, 0x05, 0x7a, 0xdc, 0xfa, 0x2d, 0x86, 0x1a, 0x69, + 0x14, 0xf3, 0x4d, 0x35, 0x47, 0x38, 0xca, 0x4a, 0x7d, 0x25, 0x21, 0x8c, + 0xc5, 0x18, 0xa7, 0x52, 0x50, 0x02, 0x62, 0x8a, 0x5a, 0x28, 0x18, 0x94, + 0xb8, 0xa5, 0xc5, 0x2e, 0x28, 0x29, 0x09, 0x8a, 0xd1, 0xd3, 0x89, 0x00, + 0x8e, 0xd5, 0x44, 0x2d, 0x68, 0xd9, 0x2e, 0x05, 0x4c, 0xb6, 0x37, 0xa3, + 0xf1, 0x1a, 0x02, 0x82, 0x8a, 0xc3, 0x90, 0x0d, 0x02, 0x9d, 0x59, 0x9d, + 0xc8, 0xaf, 0x25, 0x8d, 0xb4, 0x9f, 0x7a, 0x25, 0xfc, 0xaa, 0xac, 0x9a, + 0x25, 0xa3, 0xf4, 0x52, 0xbf, 0x43, 0x5a, 0x74, 0x62, 0xa9, 0x49, 0xad, + 0x82, 0xc9, 0x98, 0x72, 0x78, 0x79, 0x0f, 0xdc, 0x94, 0x8f, 0xa8, 0xaa, + 0xb2, 0x78, 0x7a, 0x61, 0xf7, 0x24, 0x53, 0xf5, 0xae, 0x9b, 0x14, 0x62, + 0xa9, 0x55, 0x92, 0x27, 0xd9, 0xc4, 0xe4, 0x5f, 0x41, 0xbb, 0x1d, 0x15, + 0x4f, 0xd0, 0xd5, 0x77, 0xd1, 0xaf, 0x07, 0xfc, 0xb1, 0x27, 0xe8, 0x6b, + 0xb5, 0xc5, 0x26, 0x2a, 0xbd, 0xb4, 0x89, 0xf6, 0x48, 0xe1, 0x5b, 0x47, + 0xba, 0xef, 0x03, 0x54, 0x7f, 0xd8, 0xf7, 0x5f, 0xf3, 0xc5, 0xeb, 0xbd, + 0xdb, 0x46, 0xca, 0x3d, 0xb3, 0xec, 0x1e, 0xc9, 0x1c, 0x18, 0xd1, 0xae, + 0xcf, 0xfc, 0xb1, 0x7a, 0x7a, 0xe8, 0x57, 0x6d, 0xff, 0x00, 0x2c, 0x5b, + 0xf3, 0xae, 0xe7, 0x65, 0x2e, 0xca, 0x3d, 0xb3, 0xec, 0x1e, 0xc9, 0x1c, + 0x5a, 0x78, 0x76, 0xe4, 0xf5, 0x8c, 0x0f, 0xa9, 0xab, 0x71, 0x78, 0x66, + 0x63, 0xf7, 0x8a, 0x0a, 0xea, 0xc2, 0x53, 0xc2, 0xe2, 0x97, 0xb5, 0x90, + 0xfd, 0x94, 0x4e, 0x7a, 0x3f, 0x0c, 0x00, 0x3e, 0x69, 0xbf, 0x21, 0x59, + 0x7a, 0x9d, 0xbc, 0x36, 0xd3, 0x08, 0x61, 0x94, 0xbb, 0x0f, 0xbc, 0x7d, + 0x2b, 0x67, 0x5a, 0xd6, 0xbc, 0x80, 0x6d, 0xed, 0xce, 0x64, 0x3f, 0x79, + 0x87, 0x6a, 0xe6, 0x97, 0x2c, 0xdb, 0x98, 0xe4, 0x9e, 0xa4, 0xd6, 0xb4, + 0xf9, 0x9e, 0xb2, 0x33, 0x9f, 0x2a, 0xd1, 0x12, 0xc6, 0x30, 0x2a, 0x61, + 0x51, 0xaf, 0x14, 0xf1, 0x5a, 0x10, 0x3a, 0x96, 0x9b, 0x9a, 0x51, 0x40, + 0xc7, 0x0a, 0x5c, 0xd3, 0x68, 0xa4, 0x03, 0xc1, 0xa7, 0x66, 0xa3, 0x06, + 0x9c, 0x0d, 0x03, 0x2c, 0xd8, 0x4b, 0xe4, 0xdf, 0x44, 0xfe, 0x8d, 0x5d, + 0xb8, 0x39, 0x00, 0xd7, 0x00, 0xad, 0x86, 0x07, 0xd2, 0xbb, 0x7b, 0x39, + 0x84, 0xd6, 0x91, 0x38, 0x3d, 0x54, 0x57, 0x35, 0x75, 0xaa, 0x66, 0xf4, + 0xde, 0x85, 0x9c, 0xd1, 0x9a, 0x6e, 0x68, 0xcd, 0x73, 0x9a, 0x8e, 0x26, + 0xb3, 0x99, 0xfc, 0xc9, 0x99, 0xaa, 0xd5, 0xc4, 0x9b, 0x20, 0x63, 0xf8, + 0x55, 0x28, 0xfa, 0x57, 0x91, 0x9a, 0x54, 0xb2, 0x50, 0x3d, 0x5c, 0xb6, + 0x1b, 0xcc, 0x94, 0x1a, 0x76, 0x69, 0x82, 0x97, 0x35, 0xe1, 0xb3, 0xd6, + 0x1d, 0x46, 0x69, 0x33, 0x45, 0x00, 0x2e, 0x69, 0x33, 0x49, 0x9a, 0x33, + 0x40, 0x0e, 0xa3, 0x34, 0xdc, 0xd1, 0x9a, 0x56, 0x01, 0xd9, 0xa4, 0xa4, + 0xa3, 0x34, 0xc0, 0x5c, 0xd0, 0x69, 0x33, 0x49, 0x9a, 0x00, 0x55, 0x73, + 0x1b, 0x64, 0x74, 0xee, 0x2a, 0x71, 0xe5, 0xca, 0xb9, 0xc0, 0xaa, 0xf4, + 0xcc, 0x95, 0x39, 0x53, 0x83, 0x5d, 0xb8, 0x5c, 0x6b, 0xa5, 0xee, 0x4f, + 0x58, 0x9c, 0xb5, 0xf0, 0xca, 0xa7, 0xbd, 0x1d, 0x24, 0x4e, 0xf6, 0xea, + 0x7a, 0x12, 0x2a, 0x85, 0xe4, 0x4d, 0x1c, 0x64, 0xe7, 0x22, 0xaf, 0x47, + 0x38, 0x6e, 0x1b, 0x86, 0xfe, 0x74, 0xb2, 0xaa, 0xc8, 0x85, 0x58, 0x64, + 0x1a, 0xf5, 0xbe, 0xaf, 0x87, 0xaf, 0x1e, 0x68, 0x24, 0x79, 0xff, 0x00, + 0x58, 0xaf, 0x46, 0x5c, 0xb3, 0x39, 0xf2, 0x69, 0xb9, 0xad, 0x09, 0x2c, + 0x63, 0xcf, 0x00, 0x8f, 0xc6, 0xa1, 0x36, 0x49, 0xfe, 0xd7, 0xe7, 0x5c, + 0xbf, 0xd9, 0xd3, 0xee, 0x8d, 0xbe, 0xbb, 0x07, 0xd0, 0xab, 0x9a, 0x4c, + 0xd5, 0x93, 0x66, 0x9e, 0xff, 0x00, 0x9d, 0x27, 0xd8, 0xd3, 0xd0, 0xfe, + 0x74, 0x7f, 0x67, 0x4f, 0xb8, 0x7d, 0x72, 0x1d, 0x8a, 0xf9, 0x14, 0x55, + 0x81, 0x6a, 0x83, 0xb5, 0x38, 0x40, 0xa3, 0xb5, 0x0f, 0x2e, 0x9f, 0x46, + 0x81, 0x62, 0xe1, 0xd4, 0xac, 0x01, 0x34, 0xf5, 0x43, 0x56, 0x04, 0x42, + 0x94, 0x44, 0x3d, 0xea, 0x7f, 0xb3, 0xaa, 0xf7, 0x43, 0xfa, 0xe5, 0x25, + 0xdc, 0x84, 0x2d, 0x3a, 0xa4, 0xf2, 0x46, 0x73, 0x93, 0xf9, 0xd3, 0xfc, + 0xa5, 0xf4, 0xa3, 0xfb, 0x32, 0xaf, 0x74, 0x1f, 0x5e, 0xa7, 0xd9, 0x90, + 0x81, 0x41, 0x20, 0x0f, 0x98, 0x81, 0xf5, 0xa9, 0xfc, 0xb5, 0xf4, 0xa6, + 0xb4, 0x11, 0xbf, 0xde, 0x50, 0x6a, 0x96, 0x57, 0x2e, 0xb2, 0x25, 0xe6, + 0x10, 0xb6, 0x88, 0xae, 0x67, 0x88, 0x7f, 0x18, 0x3f, 0x4a, 0x4f, 0xb4, + 0x2f, 0xf0, 0xab, 0x37, 0xd0, 0x55, 0x95, 0xb7, 0x8d, 0x7a, 0x20, 0x1f, + 0x85, 0x48, 0x10, 0x0e, 0xd5, 0xbc, 0x72, 0xca, 0x6b, 0x76, 0xd9, 0x8b, + 0xcc, 0x25, 0xd1, 0x14, 0x7c, 0xd9, 0x5b, 0xee, 0xc2, 0x7f, 0x13, 0x8a, + 0x50, 0x97, 0x2f, 0xd4, 0xaa, 0x8f, 0x6e, 0x6a, 0xee, 0xda, 0x5c, 0x56, + 0xd1, 0xc1, 0x50, 0x8f, 0x43, 0x19, 0x63, 0x2a, 0xbe, 0xa5, 0x31, 0x67, + 0xbb, 0xfd, 0x63, 0xb3, 0x7e, 0x35, 0x66, 0x0b, 0x34, 0x07, 0x0a, 0x83, + 0xf2, 0xa9, 0xd2, 0x32, 0xe7, 0x15, 0x76, 0x38, 0x82, 0x8a, 0xc7, 0x15, + 0x89, 0xa7, 0x86, 0x8d, 0xa0, 0xb5, 0x22, 0x2a, 0x55, 0x1d, 0xe4, 0xc6, + 0x08, 0x82, 0xa0, 0x00, 0x50, 0x05, 0x4c, 0x45, 0x37, 0x6d, 0x7c, 0xfb, + 0x9b, 0x93, 0x6d, 0x9b, 0x11, 0xed, 0xa3, 0x14, 0xfc, 0x52, 0xe2, 0xa1, + 0x81, 0x16, 0x29, 0x31, 0x52, 0xed, 0xa4, 0x2b, 0x4a, 0xe0, 0x42, 0x45, + 0x53, 0xba, 0xfb, 0xa2, 0xaf, 0x30, 0xaa, 0x57, 0x7c, 0x90, 0x2b, 0xb7, + 0x2f, 0x5c, 0xd5, 0xe2, 0x45, 0x47, 0xee, 0x94, 0xfa, 0xd0, 0x56, 0x97, + 0x18, 0xa2, 0xbe, 0xa4, 0xe5, 0x18, 0x52, 0xb9, 0x9f, 0x11, 0x69, 0x8c, + 0x98, 0xbc, 0x84, 0x10, 0x47, 0x5c, 0x76, 0xf7, 0xae, 0xac, 0x52, 0x49, + 0x12, 0x4d, 0x1b, 0x23, 0x80, 0x55, 0x86, 0x08, 0xa4, 0xd0, 0x18, 0x5a, + 0x16, 0xa2, 0x6f, 0xed, 0x76, 0x17, 0x22, 0x64, 0xe0, 0x8c, 0xf5, 0xad, + 0xe8, 0xdd, 0xc2, 0x80, 0xc3, 0x27, 0xd6, 0xb8, 0x7b, 0xcb, 0x69, 0xfc, + 0x3f, 0xab, 0x09, 0xa2, 0xcf, 0x94, 0x4e, 0x47, 0xb8, 0xf4, 0xae, 0xcf, + 0x4f, 0xbb, 0x8a, 0xfa, 0xd9, 0x26, 0x88, 0xe4, 0x11, 0xc8, 0xf4, 0xac, + 0x2a, 0xe1, 0x69, 0xd5, 0x5e, 0xf2, 0x29, 0x4d, 0xa2, 0xc6, 0xe7, 0xec, + 0x9f, 0xad, 0x49, 0x19, 0x72, 0x7e, 0x60, 0x00, 0xa9, 0x11, 0x2a, 0x55, + 0x4a, 0xc3, 0xfb, 0x3e, 0x8d, 0xad, 0x61, 0xfb, 0x46, 0x2c, 0x7b, 0x3b, + 0x93, 0xf8, 0x0a, 0xb2, 0x89, 0x09, 0xea, 0xcd, 0x51, 0x2c, 0x75, 0x32, + 0x26, 0x2b, 0x19, 0x65, 0x34, 0x65, 0xd5, 0x95, 0xed, 0xa4, 0x8b, 0x51, + 0xc5, 0x07, 0xa8, 0xfc, 0x6a, 0xec, 0x5e, 0x4a, 0x74, 0x2b, 0x59, 0xca, + 0xb5, 0x2a, 0xd6, 0x5f, 0xd8, 0x74, 0x5e, 0xf2, 0x61, 0xed, 0xdf, 0x63, + 0x50, 0x5c, 0x46, 0x3f, 0x8a, 0x8f, 0xb5, 0x20, 0xac, 0xe0, 0x69, 0xc0, + 0xd6, 0x91, 0xc9, 0x68, 0xae, 0xac, 0x4e, 0xbb, 0x2f, 0x1b, 0xbf, 0x41, + 0x4c, 0x37, 0x8f, 0xd9, 0x6a, 0xae, 0x69, 0xd9, 0xad, 0x56, 0x53, 0x41, + 0x6e, 0xd9, 0x3e, 0xda, 0x44, 0x8d, 0x73, 0x39, 0xe8, 0x07, 0xe7, 0x51, + 0x34, 0x97, 0x4d, 0xd1, 0xd4, 0x7e, 0x19, 0xa5, 0xcd, 0x45, 0x75, 0x70, + 0x2d, 0xe0, 0x69, 0x09, 0xe9, 0xd3, 0xeb, 0x5b, 0x47, 0x2d, 0xc3, 0xaf, + 0xb2, 0x4b, 0xad, 0x2b, 0x5e, 0xe6, 0x65, 0xdd, 0xf5, 0xd2, 0x5c, 0x98, + 0xc4, 0xf9, 0x03, 0xae, 0x05, 0x47, 0xf6, 0x99, 0x9c, 0x7c, 0xd2, 0x31, + 0xfc, 0x6a, 0x9a, 0xb1, 0x92, 0x42, 0xed, 0xd4, 0x9c, 0xd4, 0xe0, 0xf1, + 0x5d, 0xb4, 0xb0, 0xd4, 0xa9, 0xfc, 0x31, 0x48, 0xf3, 0x2a, 0x56, 0x9c, + 0xde, 0xac, 0x79, 0x62, 0x7b, 0xd2, 0x66, 0x9b, 0x9a, 0x33, 0x5b, 0xd8, + 0xc8, 0x52, 0x69, 0xac, 0x78, 0x3f, 0x4a, 0x29, 0x18, 0xfc, 0xa6, 0x98, + 0x84, 0x07, 0x81, 0xf4, 0xa3, 0x34, 0xd1, 0xd0, 0x50, 0x68, 0x18, 0xec, + 0xd1, 0x4d, 0xcd, 0x19, 0xa0, 0x04, 0x6a, 0x82, 0x41, 0x53, 0x93, 0x51, + 0xb0, 0xa6, 0x4b, 0x44, 0x56, 0x97, 0x2d, 0x67, 0x74, 0x1c, 0x7d, 0xd3, + 0xc3, 0x0f, 0x6a, 0xea, 0x63, 0x91, 0x65, 0x8d, 0x5d, 0x4e, 0x41, 0x19, + 0xae, 0x4a, 0x55, 0xab, 0xfa, 0x45, 0xff, 0x00, 0x94, 0xff, 0x00, 0x67, + 0x90, 0xfc, 0xa7, 0xee, 0x93, 0xd8, 0xd4, 0xc9, 0x75, 0x37, 0xc3, 0xd4, + 0xe5, 0x7c, 0xac, 0xdf, 0xa4, 0xa2, 0x92, 0xa0, 0xee, 0x0a, 0x4a, 0x29, + 0x28, 0x00, 0x34, 0x94, 0x1a, 0x4c, 0xd2, 0x00, 0x34, 0x86, 0x94, 0xd5, + 0x6b, 0x9b, 0xb8, 0xe0, 0x53, 0x93, 0x96, 0xec, 0x29, 0x89, 0xb4, 0x95, + 0xd8, 0xf9, 0x65, 0x58, 0x90, 0xb3, 0x1c, 0x01, 0x58, 0x77, 0x77, 0x4d, + 0x70, 0xfe, 0x8a, 0x3a, 0x0a, 0x4b, 0x8b, 0x97, 0x9d, 0xb2, 0xc7, 0x8e, + 0xc2, 0xab, 0x13, 0x5a, 0x28, 0xd8, 0xe0, 0xad, 0x5b, 0x9f, 0x45, 0xb0, + 0x84, 0xd3, 0x0d, 0x38, 0xd3, 0x4d, 0x51, 0xce, 0x36, 0x92, 0x9c, 0x45, + 0x26, 0x28, 0x01, 0xa4, 0x52, 0x62, 0x9d, 0x46, 0x28, 0x01, 0x94, 0x94, + 0xfa, 0x4c, 0x50, 0x31, 0x98, 0xa3, 0x06, 0x9f, 0x45, 0x21, 0x8d, 0x14, + 0xf1, 0x49, 0x4b, 0x8a, 0x0a, 0x43, 0x96, 0xb5, 0x6c, 0xd7, 0x31, 0xe4, + 0x56, 0x5a, 0x8a, 0xbd, 0xa7, 0x3f, 0xef, 0x59, 0x09, 0xed, 0x91, 0x52, + 0xce, 0x8a, 0x3a, 0x48, 0xd2, 0x14, 0xb4, 0x62, 0x97, 0x15, 0x07, 0x60, + 0x52, 0xd1, 0x8a, 0x5c, 0x52, 0x18, 0x98, 0xa3, 0x14, 0xec, 0x51, 0x40, + 0xc6, 0xe2, 0x8c, 0x53, 0xb1, 0x4b, 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3b, + 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x00, 0xa7, 0x01, 0x4b, 0xd2, 0x80, 0x00, + 0x2b, 0x1b, 0x5a, 0xd5, 0xd6, 0xd1, 0x0c, 0x30, 0x9c, 0xcc, 0xdf, 0xf8, + 0xed, 0x3b, 0x56, 0xd6, 0x52, 0xd1, 0x0c, 0x50, 0x90, 0xd3, 0x1f, 0x4e, + 0xd5, 0xc9, 0xb3, 0x34, 0xb2, 0x17, 0x72, 0x4b, 0x13, 0x92, 0x4d, 0x6d, + 0x4e, 0x9d, 0xf5, 0x66, 0x55, 0x2a, 0x5b, 0x44, 0x27, 0x2e, 0xc5, 0x98, + 0xe4, 0x9e, 0x49, 0xa9, 0x54, 0x53, 0x54, 0x53, 0xc5, 0x74, 0x98, 0x0e, + 0x14, 0xe1, 0x4d, 0xa5, 0x14, 0x86, 0x3a, 0x94, 0x52, 0x51, 0x40, 0xc7, + 0x52, 0xd3, 0x41, 0xa5, 0xa4, 0x02, 0xe6, 0x97, 0x34, 0xda, 0x33, 0x40, + 0x0f, 0xcd, 0x74, 0xbe, 0x1f, 0xba, 0xdf, 0x03, 0x40, 0x4f, 0x2a, 0x72, + 0x3e, 0x95, 0xcc, 0x55, 0xed, 0x26, 0x63, 0x0e, 0xa1, 0x19, 0x0d, 0x80, + 0x4e, 0x0d, 0x67, 0x56, 0x37, 0x89, 0xa5, 0x37, 0x66, 0x76, 0x54, 0x66, + 0x93, 0x34, 0x66, 0xb8, 0x8e, 0x82, 0xa5, 0xf3, 0xfd, 0xd4, 0xf5, 0xe4, + 0xd4, 0x49, 0xd2, 0xa3, 0x95, 0xfc, 0xcb, 0x86, 0x3d, 0x87, 0x02, 0xa4, + 0x5a, 0xf9, 0xac, 0x75, 0x4f, 0x69, 0x55, 0xf9, 0x1f, 0x45, 0x84, 0xa7, + 0xc9, 0x49, 0x22, 0x41, 0x4b, 0x4d, 0xa5, 0xae, 0x13, 0xa8, 0x5a, 0x29, + 0x28, 0xcd, 0x00, 0x2d, 0x14, 0x94, 0x50, 0x02, 0xd2, 0x51, 0x45, 0x00, + 0x14, 0x51, 0x49, 0x40, 0x0b, 0x45, 0x25, 0x19, 0xa2, 0xc0, 0x14, 0x1a, + 0x4a, 0x29, 0x00, 0xd6, 0x19, 0xa1, 0x66, 0x78, 0xf8, 0x3f, 0x32, 0xd2, + 0xd3, 0x48, 0xad, 0x29, 0x56, 0xa9, 0x46, 0x5c, 0xd0, 0x66, 0x75, 0x29, + 0xc6, 0xa2, 0xb4, 0x91, 0x28, 0x65, 0x90, 0x65, 0x4d, 0x46, 0xcb, 0x51, + 0x15, 0xc1, 0xca, 0x9c, 0x1a, 0x55, 0x9c, 0x8e, 0x1c, 0x7e, 0x22, 0xbd, + 0xdc, 0x3e, 0x63, 0x4e, 0xa6, 0x93, 0xd1, 0x9e, 0x4d, 0x6c, 0x0c, 0xa1, + 0xac, 0x35, 0x42, 0x95, 0xa6, 0x95, 0xa9, 0x86, 0x18, 0x65, 0x4e, 0x69, + 0x0a, 0xd7, 0xa2, 0xac, 0xce, 0x17, 0x75, 0xb9, 0x0e, 0xda, 0x36, 0xd4, + 0xbb, 0x69, 0x31, 0x4e, 0xc2, 0xb9, 0x1e, 0xda, 0x36, 0xd3, 0xf1, 0x4b, + 0x8a, 0x61, 0x71, 0x9b, 0x68, 0xc5, 0x3f, 0x14, 0x62, 0x81, 0x0c, 0xc5, + 0x18, 0xa7, 0xe2, 0x8c, 0x50, 0x21, 0xb8, 0xa3, 0x14, 0xec, 0x50, 0x17, + 0x34, 0x9b, 0x49, 0x6a, 0x03, 0x71, 0x52, 0xa4, 0x25, 0xb9, 0x3d, 0x2a, + 0x48, 0xe1, 0x3d, 0x4d, 0x59, 0x58, 0xf1, 0x5e, 0x46, 0x2f, 0x32, 0x51, + 0xf7, 0x69, 0xef, 0xdc, 0xde, 0x14, 0xba, 0xc8, 0x64, 0x71, 0xed, 0x1d, + 0x2a, 0x50, 0x31, 0x4f, 0x0b, 0x46, 0x2b, 0xc1, 0x9d, 0x47, 0x27, 0x76, + 0x6e, 0x30, 0x8a, 0x4c, 0x54, 0x98, 0xa4, 0xc5, 0x4d, 0xc0, 0x8f, 0x14, + 0x62, 0xa4, 0xc5, 0x1b, 0x69, 0x73, 0x00, 0xcc, 0x52, 0x6d, 0xa9, 0x76, + 0xd1, 0xb6, 0x95, 0xc4, 0x57, 0x75, 0xe2, 0xb3, 0x65, 0x5c, 0xc8, 0x6b, + 0x52, 0x6e, 0x14, 0xd5, 0x02, 0xb9, 0x35, 0xef, 0x65, 0x14, 0xbe, 0x2a, + 0x8f, 0xd0, 0xc2, 0xb3, 0xe8, 0x55, 0x31, 0x9a, 0x69, 0x8c, 0xd5, 0xcd, + 0xb4, 0x6c, 0xaf, 0x72, 0xc6, 0x05, 0x12, 0xa7, 0xd2, 0x90, 0xee, 0x1d, + 0x01, 0xad, 0x0d, 0x83, 0xd2, 0x94, 0x46, 0x3d, 0x28, 0xb0, 0x5c, 0xc0, + 0xd4, 0xed, 0xc5, 0xed, 0xa3, 0x43, 0x24, 0x64, 0xfa, 0x1f, 0x43, 0x5c, + 0xfe, 0x8a, 0xd7, 0xba, 0x55, 0xf9, 0x89, 0xa3, 0x63, 0x0b, 0x1c, 0x11, + 0x8f, 0xd4, 0x57, 0xa0, 0x08, 0x97, 0xd0, 0x53, 0xd6, 0x24, 0xfe, 0xe8, + 0xfc, 0xa9, 0xa5, 0x61, 0x0c, 0x88, 0x6e, 0x40, 0x71, 0xd4, 0x66, 0xa6, + 0x55, 0xa7, 0x05, 0xa7, 0x81, 0x4a, 0xc0, 0x00, 0x53, 0xc0, 0xa4, 0x02, + 0x9c, 0x29, 0xd8, 0x07, 0x8a, 0x70, 0xa6, 0x0a, 0x70, 0xa0, 0x43, 0xc1, + 0xa7, 0x03, 0x51, 0x83, 0x4e, 0xa6, 0x03, 0xc1, 0xa7, 0x66, 0xa3, 0xcd, + 0x2e, 0x68, 0x01, 0xf9, 0xac, 0x1d, 0x4a, 0xef, 0xed, 0x13, 0xf9, 0x6a, + 0x7e, 0x45, 0xfd, 0x4d, 0x5d, 0xd4, 0xef, 0x3c, 0x88, 0x76, 0x29, 0xf9, + 0xdb, 0xf4, 0xac, 0x34, 0xeb, 0x93, 0x57, 0x14, 0x72, 0x62, 0x2a, 0x7d, + 0x94, 0x4e, 0x9c, 0x0a, 0x97, 0x35, 0x1a, 0xf0, 0x29, 0x73, 0x56, 0x72, + 0x8f, 0xcd, 0x26, 0x69, 0xb9, 0xa3, 0x34, 0xc0, 0x76, 0x69, 0x09, 0xe0, + 0xfd, 0x29, 0x33, 0x41, 0x3f, 0x29, 0xfa, 0x50, 0x03, 0x41, 0xe0, 0x51, + 0x9a, 0x60, 0x3c, 0x0a, 0x33, 0x40, 0x0f, 0xa3, 0x34, 0xdc, 0xd2, 0x66, + 0x81, 0x0e, 0xcd, 0x25, 0x26, 0x69, 0x33, 0x40, 0x0c, 0x75, 0xc8, 0xaa, + 0xce, 0xa4, 0x1c, 0x8e, 0xb5, 0x6c, 0xd4, 0x6e, 0xb9, 0xa6, 0x4b, 0x45, + 0xfd, 0x3b, 0x56, 0xce, 0x21, 0xb8, 0x3c, 0xf4, 0x0d, 0x5b, 0x20, 0x82, + 0x32, 0x2b, 0x8e, 0x74, 0x20, 0xe6, 0xaf, 0x59, 0x6a, 0xb2, 0x5b, 0x10, + 0x92, 0x65, 0xe3, 0xfd, 0x45, 0x4b, 0x8f, 0x63, 0xaa, 0x96, 0x23, 0xa4, + 0xce, 0x8e, 0x92, 0xa2, 0x86, 0xe2, 0x39, 0xd0, 0x34, 0x6c, 0x08, 0xa7, + 0x93, 0x50, 0x76, 0x01, 0xa6, 0xb3, 0xaa, 0x2e, 0x58, 0x80, 0x2a, 0xad, + 0xc5, 0xfc, 0x70, 0xf0, 0x3e, 0x66, 0xf6, 0xac, 0xb9, 0xee, 0xa4, 0x9c, + 0xfc, 0xcd, 0xc7, 0xa5, 0x35, 0x16, 0xcc, 0x6a, 0x57, 0x8c, 0x34, 0xea, + 0x5c, 0xba, 0xd4, 0xba, 0xac, 0x3f, 0x9d, 0x66, 0x3b, 0x96, 0x24, 0xb1, + 0xc9, 0x3e, 0xb4, 0xd2, 0x69, 0xa4, 0xd6, 0x89, 0x24, 0x71, 0x4e, 0xa4, + 0xa6, 0xf5, 0x02, 0x69, 0xa6, 0x82, 0x69, 0x0d, 0x33, 0x31, 0x0d, 0x25, + 0x14, 0x50, 0x01, 0x49, 0x45, 0x14, 0x00, 0x94, 0x86, 0x96, 0x92, 0x80, + 0x12, 0x8c, 0x53, 0xa9, 0x28, 0x01, 0xa4, 0x51, 0x8a, 0x5a, 0x5c, 0x50, + 0x31, 0x31, 0x4e, 0x14, 0x98, 0xa7, 0x0a, 0x45, 0x21, 0xc2, 0x9f, 0x69, + 0x27, 0x97, 0x7a, 0x87, 0xd7, 0x8a, 0x60, 0xa8, 0xd8, 0x95, 0x70, 0xc3, + 0xb1, 0xcd, 0x05, 0xa7, 0x66, 0x99, 0xd2, 0xe3, 0x8a, 0x5a, 0x8e, 0xde, + 0x51, 0x34, 0x0a, 0xe3, 0xb8, 0xa9, 0x6b, 0x23, 0xd0, 0x4e, 0xe2, 0x52, + 0xe2, 0x8a, 0x5a, 0x0a, 0x0c, 0x52, 0xd1, 0x45, 0x20, 0x0a, 0x29, 0x68, + 0xc5, 0x00, 0x25, 0x00, 0x53, 0xb1, 0x55, 0xee, 0xae, 0xe1, 0xb4, 0x8c, + 0xbc, 0xae, 0x14, 0x51, 0xb8, 0x12, 0x48, 0xe9, 0x12, 0x16, 0x76, 0x00, + 0x0e, 0xe6, 0xb9, 0xbd, 0x4f, 0x5f, 0x69, 0x33, 0x15, 0xa9, 0xc2, 0xf4, + 0x2f, 0x54, 0xb5, 0x3d, 0x5e, 0x5b, 0xe7, 0x28, 0xb9, 0x58, 0x87, 0x6f, + 0x5a, 0xcf, 0x0b, 0x9a, 0xe9, 0xa7, 0x4a, 0xda, 0xc8, 0xc2, 0x75, 0x2f, + 0xa2, 0x1a, 0x49, 0x66, 0x24, 0x92, 0x49, 0xee, 0x69, 0xea, 0xb4, 0xa1, + 0x69, 0xd5, 0xb1, 0x98, 0x01, 0x4b, 0x49, 0x4b, 0x40, 0x0b, 0x9a, 0x51, + 0x4d, 0xa5, 0xa0, 0x63, 0xa8, 0xa4, 0xcd, 0x14, 0x80, 0x75, 0x19, 0xa4, + 0xa3, 0x34, 0x0c, 0x76, 0x68, 0xcd, 0x37, 0x34, 0x66, 0x90, 0x0e, 0xcd, + 0x39, 0x5b, 0x6b, 0x02, 0x3a, 0x8a, 0x8f, 0x34, 0x66, 0x90, 0xd1, 0xdb, + 0x69, 0xd7, 0x6b, 0x75, 0x6a, 0xac, 0x0f, 0xcc, 0x06, 0x08, 0xa9, 0xae, + 0x65, 0xf2, 0xa2, 0x27, 0xb9, 0xe0, 0x57, 0x29, 0xa4, 0x5e, 0x9b, 0x6b, + 0xb0, 0x09, 0xf9, 0x1b, 0x83, 0x5b, 0x73, 0x4d, 0xe7, 0xcd, 0xc7, 0xdd, + 0x1d, 0x2b, 0xca, 0xc7, 0x54, 0x58, 0x78, 0x37, 0xf7, 0x1e, 0x96, 0x0e, + 0x9f, 0xb6, 0x9a, 0xec, 0x82, 0x31, 0x81, 0x53, 0x8a, 0x8d, 0x47, 0x14, + 0xf1, 0x5f, 0x2a, 0xdd, 0xcf, 0xa3, 0x43, 0xe8, 0xcd, 0x25, 0x15, 0x03, + 0x16, 0x8a, 0x4c, 0xd1, 0x9a, 0x40, 0x3b, 0x34, 0x66, 0x9b, 0x45, 0x00, + 0x3a, 0x8c, 0xd3, 0x73, 0x46, 0x68, 0x01, 0xd9, 0xa4, 0xcd, 0x26, 0x68, + 0xa0, 0x05, 0xcd, 0x26, 0x68, 0xa4, 0xa6, 0x02, 0xd2, 0x51, 0x45, 0x20, + 0x0a, 0x4a, 0x28, 0xa2, 0xc0, 0x21, 0xe6, 0x9a, 0x57, 0x34, 0xea, 0x0d, + 0x2b, 0x01, 0x0e, 0x0a, 0x9c, 0xa9, 0x20, 0xd3, 0xd6, 0x72, 0x38, 0x75, + 0xfc, 0x45, 0x2e, 0x29, 0xa5, 0x73, 0x5d, 0x54, 0x71, 0x75, 0x68, 0xfc, + 0x2f, 0x43, 0x0a, 0xb8, 0x7a, 0x75, 0x3e, 0x24, 0x4c, 0xae, 0xaf, 0xf7, + 0x48, 0x34, 0xb8, 0xaa, 0xa5, 0x3b, 0xf7, 0xa7, 0x09, 0x24, 0x5e, 0xf9, + 0x1e, 0xf5, 0xea, 0xd1, 0xcd, 0x61, 0x2d, 0x2a, 0x2b, 0x1e, 0x75, 0x4c, + 0xbe, 0x4b, 0xe0, 0x77, 0x27, 0xc5, 0x18, 0xa8, 0xc5, 0xc0, 0xfe, 0x25, + 0x22, 0xa4, 0x0e, 0x8d, 0xd1, 0x85, 0x7a, 0x14, 0xeb, 0xd3, 0xa9, 0xf0, + 0xbb, 0x9c, 0x53, 0xa3, 0x52, 0x1f, 0x12, 0x0c, 0x51, 0x8a, 0x5c, 0x8a, + 0x50, 0xac, 0xdd, 0x14, 0xd5, 0xca, 0x71, 0x8a, 0xbc, 0x9d, 0x8c, 0xd2, + 0x6f, 0x61, 0xb8, 0xa5, 0xc5, 0x4c, 0xb6, 0xec, 0x7a, 0xf1, 0x53, 0xa5, + 0xb8, 0x5a, 0xf3, 0xab, 0xe6, 0x94, 0x69, 0xe9, 0x1d, 0x59, 0xac, 0x68, + 0xb7, 0xb9, 0x55, 0x62, 0x66, 0xed, 0x53, 0xa4, 0x20, 0x55, 0x81, 0x18, + 0x14, 0xfd, 0xb5, 0xe3, 0x62, 0x31, 0xf5, 0x6b, 0x68, 0xdd, 0x91, 0xb4, + 0x60, 0xa3, 0xb1, 0x1a, 0xa6, 0x29, 0xe0, 0x53, 0xb1, 0x45, 0x71, 0x5e, + 0xe5, 0x09, 0x8a, 0x31, 0x4b, 0x8a, 0x3b, 0x50, 0x02, 0x62, 0x93, 0x6d, + 0x3e, 0x8c, 0x52, 0x01, 0x9b, 0x69, 0x42, 0xd3, 0xf1, 0x4a, 0x05, 0x20, + 0x1b, 0xb6, 0x82, 0x38, 0xa9, 0x31, 0x4d, 0x61, 0x81, 0x4d, 0x21, 0x32, + 0x95, 0xcf, 0xdd, 0xc5, 0x54, 0xdb, 0x56, 0xae, 0x0e, 0x5b, 0x15, 0x06, + 0x2b, 0xeb, 0xf0, 0x14, 0xf9, 0x28, 0x45, 0x1c, 0x75, 0x1d, 0xe4, 0x34, + 0x0a, 0x5d, 0xb4, 0xb8, 0xa7, 0x01, 0x5d, 0xa4, 0x0d, 0x0b, 0x4a, 0x05, + 0x3b, 0x14, 0xb8, 0xa0, 0x04, 0x02, 0x9c, 0x05, 0x02, 0x96, 0x80, 0x14, + 0x52, 0x8a, 0x05, 0x2d, 0x02, 0x14, 0x53, 0xa9, 0xb4, 0xa2, 0x80, 0x1c, + 0x29, 0xd4, 0xdc, 0xd2, 0x83, 0x40, 0x0e, 0xa5, 0xa6, 0xd2, 0xe6, 0x98, + 0x0e, 0xa8, 0xe7, 0x9d, 0x6d, 0xe1, 0x69, 0x1c, 0xf0, 0x29, 0x5e, 0x45, + 0x8d, 0x0b, 0x31, 0xc0, 0x1d, 0xeb, 0x9c, 0xbe, 0xbd, 0x6b, 0xc9, 0x70, + 0x38, 0x8c, 0x1e, 0x05, 0x34, 0xae, 0x65, 0x56, 0xa2, 0x82, 0x19, 0x2c, + 0xed, 0x73, 0x3b, 0x48, 0xfd, 0xfa, 0x7b, 0x53, 0xd0, 0x54, 0x48, 0xb5, + 0x3a, 0xd6, 0x88, 0xf3, 0xdb, 0x6d, 0xdd, 0x8e, 0xa3, 0x34, 0xdc, 0xd2, + 0x64, 0xd3, 0x01, 0xdb, 0xa8, 0xcd, 0x37, 0x34, 0xb9, 0xa0, 0x07, 0x66, + 0x82, 0x7e, 0x53, 0x4d, 0xcd, 0x04, 0x9d, 0xa6, 0x80, 0x18, 0x0f, 0x02, + 0x97, 0x34, 0xc0, 0x78, 0x14, 0x6e, 0xa0, 0x07, 0xe6, 0x8c, 0xd3, 0x37, + 0x51, 0xba, 0x81, 0x0e, 0xcd, 0x19, 0xa6, 0xe6, 0x8c, 0xd0, 0x03, 0xb3, + 0x48, 0x4d, 0x26, 0x69, 0x33, 0x4c, 0x06, 0xb0, 0xcd, 0x42, 0xc9, 0x53, + 0x9a, 0x61, 0x19, 0xa0, 0x96, 0x86, 0x45, 0x2c, 0xb6, 0xcf, 0xba, 0x36, + 0x22, 0xad, 0xbe, 0xab, 0x2c, 0xaa, 0x15, 0xbe, 0x5f, 0x5c, 0x55, 0x52, + 0x38, 0xa8, 0xca, 0xd1, 0x64, 0x35, 0x39, 0x45, 0x59, 0x32, 0xc6, 0xec, + 0x8c, 0xe7, 0x34, 0xd2, 0x6a, 0x0c, 0x95, 0xe9, 0x49, 0xe6, 0xfa, 0xd3, + 0x26, 0xe4, 0xa4, 0xd3, 0x73, 0x48, 0x0e, 0xee, 0x86, 0x97, 0xa5, 0x21, + 0x81, 0x34, 0x94, 0x52, 0x50, 0x01, 0x45, 0x25, 0x2d, 0x31, 0x09, 0x45, + 0x14, 0x50, 0x02, 0x51, 0x45, 0x14, 0x0c, 0x28, 0xa2, 0x92, 0x80, 0x16, + 0x8a, 0x4a, 0x5c, 0xd0, 0x31, 0x69, 0x69, 0xb4, 0xb4, 0x86, 0x04, 0xd4, + 0x6d, 0x52, 0x53, 0x48, 0xa0, 0x4d, 0x9a, 0x1a, 0x45, 0xc6, 0x18, 0xc2, + 0xc7, 0xaf, 0x22, 0xb6, 0x2b, 0x96, 0x47, 0x68, 0xa4, 0x57, 0x5e, 0xa0, + 0xd7, 0x49, 0x6b, 0x70, 0xb7, 0x10, 0x86, 0x07, 0x9e, 0xe2, 0xa2, 0x4b, + 0xa9, 0xd9, 0x87, 0x9d, 0xd7, 0x29, 0x2e, 0x29, 0x69, 0x68, 0xc5, 0x41, + 0xd2, 0x14, 0x51, 0x55, 0xae, 0x35, 0x0b, 0x6b, 0x51, 0xfb, 0xd9, 0x54, + 0x1f, 0x4e, 0xf4, 0xed, 0x7d, 0x82, 0xf6, 0x2c, 0xd4, 0x73, 0x5c, 0x45, + 0x02, 0x16, 0x91, 0xc2, 0x81, 0xea, 0x6b, 0x9f, 0xbb, 0xf1, 0x23, 0x1c, + 0xad, 0xb2, 0x60, 0x7f, 0x79, 0xab, 0x0e, 0x7b, 0x99, 0xae, 0x5b, 0x74, + 0xb2, 0x33, 0x1f, 0x73, 0x5a, 0xc6, 0x8b, 0x7b, 0x91, 0x2a, 0xa9, 0x6c, + 0x6f, 0xde, 0xf8, 0x95, 0x57, 0x29, 0x6a, 0xb9, 0x3f, 0xde, 0x35, 0xcf, + 0xcf, 0x71, 0x35, 0xd4, 0x9b, 0xe6, 0x72, 0xc7, 0xde, 0xa3, 0x03, 0x34, + 0xf0, 0xb5, 0xbc, 0x60, 0xa3, 0xb1, 0x8b, 0x93, 0x96, 0xe2, 0x2a, 0xd3, + 0xc0, 0xa3, 0x14, 0x55, 0x08, 0x5a, 0x4a, 0x28, 0xa0, 0x02, 0x96, 0x8a, + 0x28, 0x01, 0x68, 0xa4, 0xa3, 0x34, 0x86, 0x2d, 0x14, 0x94, 0x50, 0x02, + 0xd1, 0x49, 0x45, 0x21, 0x8b, 0x45, 0x25, 0x2d, 0x00, 0x14, 0x51, 0x4f, + 0x8d, 0x0c, 0x8e, 0x14, 0x77, 0xa5, 0x26, 0x92, 0xbb, 0x2a, 0x31, 0x72, + 0x76, 0x45, 0x9b, 0x0b, 0x7f, 0x36, 0x5d, 0xc4, 0x7c, 0xa2, 0xba, 0x08, + 0xd7, 0x02, 0xaa, 0xda, 0xc0, 0x22, 0x8c, 0x28, 0x15, 0x71, 0x45, 0x7c, + 0x6e, 0x3f, 0x14, 0xf1, 0x15, 0x6e, 0xb6, 0x5b, 0x1f, 0x53, 0x84, 0xc3, + 0xaa, 0x34, 0xd4, 0x7a, 0x92, 0x0a, 0x70, 0xa6, 0x8a, 0x75, 0x70, 0x33, + 0xac, 0x5a, 0x29, 0x33, 0x46, 0x69, 0x0c, 0x5a, 0x29, 0x28, 0xa4, 0x02, + 0xd2, 0x66, 0x92, 0x8a, 0x00, 0x5a, 0x33, 0x49, 0x45, 0x00, 0x3b, 0x34, + 0x66, 0x9b, 0x9a, 0x33, 0x4c, 0x05, 0xa2, 0x8c, 0xd1, 0x48, 0x02, 0x8a, + 0x4a, 0x28, 0x01, 0x69, 0x29, 0x69, 0x28, 0xb8, 0x05, 0x14, 0x51, 0x40, + 0x09, 0x45, 0x04, 0xe2, 0xae, 0x41, 0xa7, 0xbc, 0xa0, 0x33, 0x30, 0x0a, + 0x7d, 0x29, 0x36, 0x96, 0xe4, 0x4e, 0x71, 0x82, 0xbb, 0x29, 0xe3, 0x27, + 0x8a, 0x55, 0x81, 0xdf, 0x85, 0x43, 0x5b, 0x70, 0xda, 0x45, 0x08, 0xf9, + 0x57, 0x27, 0xd4, 0xd4, 0xc1, 0x40, 0xe8, 0x2a, 0x1c, 0xfb, 0x1c, 0xb2, + 0xc5, 0xff, 0x00, 0x2a, 0x31, 0x13, 0x4e, 0x91, 0xbe, 0xf7, 0x15, 0x32, + 0xe9, 0x91, 0xff, 0x00, 0x16, 0x4d, 0x6a, 0xe0, 0x52, 0x60, 0x54, 0xf3, + 0xcb, 0xa1, 0x84, 0xb1, 0x13, 0x91, 0x49, 0x2d, 0x23, 0x4e, 0x8b, 0x52, + 0x88, 0x80, 0xe8, 0x2a, 0xc6, 0x05, 0x26, 0x28, 0x94, 0xe7, 0x2d, 0xdd, + 0xcc, 0x48, 0xb6, 0xd2, 0xed, 0xa7, 0xe2, 0x93, 0x15, 0x22, 0x19, 0x8a, + 0x29, 0xd8, 0xa3, 0x14, 0xec, 0x21, 0xb4, 0x94, 0xea, 0x2a, 0x80, 0x4a, + 0x31, 0x4b, 0x4a, 0x05, 0x02, 0x00, 0x29, 0x71, 0x40, 0x14, 0xec, 0x54, + 0xb1, 0x88, 0x05, 0x2e, 0x29, 0xd8, 0xa5, 0xc5, 0x20, 0x1b, 0x8a, 0x63, + 0xf0, 0x2a, 0x43, 0xc5, 0x55, 0xb8, 0x7d, 0xaa, 0x47, 0x73, 0x5d, 0x18, + 0x7a, 0x4e, 0xad, 0x45, 0x04, 0x44, 0x9d, 0x95, 0xca, 0x72, 0x1d, 0xce, + 0x4d, 0x37, 0x14, 0xb4, 0x57, 0xd9, 0x45, 0x59, 0x58, 0xe3, 0x62, 0x62, + 0x96, 0x8a, 0x5a, 0xa1, 0x05, 0x2d, 0x14, 0x53, 0x01, 0x69, 0x69, 0x29, + 0x45, 0x00, 0x2d, 0x2d, 0x25, 0x2d, 0x00, 0x28, 0xa5, 0xa6, 0xd2, 0xd3, + 0x10, 0xb4, 0xb4, 0x94, 0x50, 0x03, 0x81, 0xa1, 0x9d, 0x51, 0x4b, 0x31, + 0xc0, 0x1d, 0xcd, 0x46, 0xf2, 0x2c, 0x68, 0x59, 0xc8, 0x00, 0x7a, 0xd6, + 0x06, 0xa1, 0xa9, 0x35, 0xc9, 0x31, 0xc7, 0x91, 0x18, 0xfd, 0x68, 0x4a, + 0xe6, 0x75, 0x2a, 0x28, 0x2d, 0x47, 0xea, 0x1a, 0x89, 0xba, 0x7f, 0x2e, + 0x33, 0x88, 0xc7, 0xeb, 0x55, 0x23, 0x15, 0x1a, 0x2d, 0x4e, 0xa3, 0x15, + 0xa2, 0x47, 0x9f, 0x29, 0x39, 0x3b, 0xb2, 0x40, 0x29, 0xe0, 0xd3, 0x01, + 0xa3, 0x35, 0x42, 0x1f, 0xba, 0x93, 0x34, 0xc2, 0x68, 0xcd, 0x02, 0x1d, + 0x9a, 0x50, 0x69, 0x99, 0xa5, 0xcd, 0x00, 0x3f, 0x34, 0x87, 0xa1, 0xfa, + 0x53, 0x73, 0x41, 0x3c, 0x1a, 0x06, 0x30, 0x1e, 0x05, 0x2e, 0x6b, 0x1b, + 0xfb, 0x7e, 0xd5, 0x70, 0x1c, 0x38, 0xfa, 0xad, 0x59, 0x8b, 0x55, 0xb5, + 0x98, 0x02, 0xae, 0x40, 0x3e, 0xa2, 0x8b, 0x94, 0xe1, 0x25, 0xd0, 0xbe, + 0x4d, 0x19, 0xa8, 0x92, 0x55, 0x71, 0x95, 0x60, 0x47, 0xb5, 0x3b, 0x75, + 0x04, 0x8f, 0xcd, 0x19, 0xa6, 0x66, 0x8c, 0xd0, 0x21, 0xf9, 0xa3, 0x34, + 0xcc, 0xd1, 0x9a, 0x60, 0x38, 0x9a, 0x4a, 0x6e, 0x68, 0xcd, 0x00, 0x2d, + 0x34, 0x8a, 0x5c, 0xd2, 0x50, 0x21, 0xa5, 0x69, 0x8c, 0xb9, 0xa9, 0x29, + 0x31, 0x40, 0xac, 0x41, 0x82, 0xa7, 0x83, 0x4a, 0x25, 0x23, 0xef, 0x0a, + 0x90, 0xad, 0x30, 0xa5, 0x31, 0x58, 0x70, 0x75, 0x6e, 0xf4, 0xb5, 0x09, + 0x4a, 0x4c, 0xba, 0xf4, 0x34, 0x05, 0xc9, 0xe8, 0x35, 0x0f, 0x9a, 0x7b, + 0x8a, 0x70, 0x95, 0x4f, 0xb5, 0x01, 0x71, 0xe6, 0x9b, 0x46, 0xe0, 0x7b, + 0xd2, 0x66, 0x81, 0x8e, 0xcd, 0x14, 0xda, 0x5c, 0xd0, 0x31, 0x69, 0x33, + 0x4d, 0xcd, 0x26, 0x68, 0x1d, 0x87, 0x51, 0x9a, 0x6e, 0xea, 0x4d, 0xd4, + 0x01, 0x26, 0x69, 0x41, 0xa8, 0x77, 0xd2, 0x07, 0x24, 0xe0, 0x02, 0x4f, + 0xb5, 0x00, 0x58, 0xa2, 0x9e, 0x96, 0xb3, 0xec, 0xde, 0xe9, 0xb4, 0x7b, + 0xd0, 0x53, 0x1d, 0x69, 0x5c, 0x4d, 0x35, 0xb9, 0x11, 0x15, 0x35, 0xa5, + 0xcb, 0x5a, 0xcb, 0x91, 0xf7, 0x4f, 0x51, 0x4c, 0x3b, 0x47, 0x56, 0x1f, + 0x9d, 0x46, 0xd2, 0x46, 0x3a, 0xb8, 0xa0, 0x51, 0x93, 0x8b, 0xba, 0x37, + 0xdb, 0x54, 0xb4, 0x48, 0xc3, 0x3c, 0xca, 0x3d, 0xbb, 0xd6, 0x7d, 0xc7, + 0x89, 0x21, 0x5c, 0x88, 0x63, 0x67, 0x3e, 0xa7, 0x81, 0x59, 0x32, 0x98, + 0x24, 0x1c, 0xb0, 0xcd, 0x53, 0x28, 0x01, 0xe3, 0x9a, 0xa8, 0x53, 0x8b, + 0xdc, 0xec, 0x55, 0xe5, 0x24, 0x5c, 0xb9, 0xd6, 0xaf, 0x2e, 0x32, 0x37, + 0xf9, 0x6b, 0xe8, 0xb5, 0x9e, 0xc5, 0x98, 0xe5, 0x89, 0x27, 0xde, 0x9f, + 0xb6, 0x8d, 0xb5, 0xb2, 0x49, 0x6c, 0x26, 0xdb, 0xdc, 0x8f, 0x69, 0xa5, + 0x09, 0x4f, 0xc5, 0x2d, 0x30, 0xb0, 0xd0, 0xb8, 0xa5, 0xa3, 0x22, 0x93, + 0x22, 0x81, 0x8b, 0x45, 0x34, 0xb0, 0xa4, 0xde, 0x29, 0x0c, 0x75, 0x14, + 0xcd, 0xd4, 0x66, 0x80, 0x1f, 0x9a, 0x33, 0x4c, 0xcd, 0x2e, 0x68, 0x01, + 0xd9, 0xa2, 0x92, 0x8c, 0xd0, 0x02, 0xd1, 0x9a, 0x4a, 0x29, 0x00, 0xb9, + 0xa5, 0xa6, 0xe6, 0x8a, 0x06, 0x3a, 0x8c, 0xd2, 0x50, 0x01, 0x27, 0x00, + 0x50, 0x34, 0xae, 0x2d, 0x6b, 0x69, 0xf6, 0xbb, 0x57, 0x7b, 0x0e, 0x4d, + 0x43, 0x67, 0x60, 0x59, 0x83, 0xc8, 0x38, 0xec, 0x2b, 0x66, 0x38, 0xf0, + 0x00, 0xaf, 0x9f, 0xcd, 0x31, 0xf1, 0x6b, 0xd9, 0x53, 0x7e, 0xa7, 0xb9, + 0x97, 0xe0, 0xdc, 0x3f, 0x79, 0x35, 0xaf, 0x41, 0xc8, 0x2a, 0x65, 0x18, + 0xa6, 0x81, 0x4f, 0x15, 0xf3, 0xc7, 0xb0, 0x85, 0xa5, 0xa4, 0xa2, 0x90, + 0xc5, 0xcd, 0x14, 0x94, 0x52, 0x18, 0xb9, 0xa2, 0x92, 0x8a, 0x40, 0x2d, + 0x25, 0x19, 0xa2, 0x80, 0x0a, 0x28, 0xa2, 0x80, 0x0a, 0x29, 0x28, 0xa6, + 0x21, 0x73, 0x46, 0x69, 0xb4, 0x51, 0x60, 0x1d, 0x9a, 0x33, 0x4c, 0xa2, + 0x8b, 0x00, 0xfc, 0xd1, 0x4c, 0xcd, 0x1b, 0xa8, 0xb0, 0x0f, 0xcd, 0x14, + 0xcd, 0xd4, 0x6e, 0xf7, 0xa5, 0x60, 0x1f, 0x9a, 0x9e, 0xda, 0xf1, 0xed, + 0x5b, 0x1c, 0xb4, 0x7e, 0x9e, 0x95, 0x57, 0x7d, 0x26, 0xfa, 0x39, 0x6f, + 0xb9, 0x32, 0x8c, 0x64, 0xac, 0xce, 0x8e, 0x29, 0xa3, 0x99, 0x03, 0x23, + 0x02, 0x2a, 0x4a, 0xe6, 0xe3, 0x9d, 0xa1, 0x7d, 0xd1, 0xb6, 0x0f, 0xf3, + 0xad, 0x4b, 0x7d, 0x4e, 0x39, 0x30, 0xb2, 0x7c, 0xad, 0xfa, 0x56, 0x52, + 0x83, 0x47, 0x05, 0x5c, 0x3c, 0xa3, 0xaa, 0xd5, 0x1a, 0x14, 0x94, 0xd1, + 0x22, 0x91, 0x90, 0x68, 0xde, 0x3d, 0x6a, 0x2c, 0x73, 0x0e, 0xc5, 0x25, + 0x05, 0x87, 0xad, 0x34, 0xc8, 0x9f, 0xde, 0x1f, 0x9d, 0x5d, 0x9a, 0xdc, + 0x41, 0x46, 0x69, 0x37, 0x03, 0xd0, 0x8a, 0x33, 0x40, 0x05, 0x14, 0x99, + 0xa4, 0xcd, 0x31, 0x0b, 0xc5, 0x18, 0x14, 0x99, 0xa4, 0xcd, 0x00, 0x3f, + 0x14, 0xb8, 0xa4, 0x53, 0x4e, 0xa7, 0x61, 0x00, 0x14, 0xe0, 0x29, 0x05, + 0x38, 0x52, 0x68, 0x62, 0x81, 0x4b, 0x49, 0x9a, 0x6b, 0x36, 0x2a, 0x6c, + 0x02, 0x39, 0xc0, 0xac, 0xd9, 0x64, 0xde, 0xc7, 0xd2, 0xa5, 0xb8, 0x9f, + 0x77, 0xca, 0xa7, 0x8e, 0xf5, 0x56, 0xbe, 0x8b, 0x2d, 0xc2, 0x3a, 0x51, + 0xe7, 0x9e, 0xec, 0xe7, 0xa9, 0x2b, 0xe8, 0x85, 0xa2, 0x92, 0x8a, 0xf5, + 0x8c, 0x47, 0x51, 0x49, 0x4b, 0x54, 0x21, 0x69, 0x69, 0xb9, 0xa5, 0xa6, + 0x02, 0xd2, 0xd2, 0x52, 0xd0, 0x02, 0xd1, 0x45, 0x14, 0x08, 0x5a, 0x33, + 0x8e, 0x69, 0x2a, 0x0b, 0xb9, 0x23, 0x4b, 0x77, 0x0f, 0x20, 0x4c, 0x8c, + 0x67, 0x34, 0x01, 0x14, 0xfa, 0xbd, 0x8d, 0xb3, 0x15, 0x92, 0xe1, 0x43, + 0x0e, 0xc0, 0xe4, 0xd4, 0x07, 0xc4, 0x16, 0x25, 0x09, 0x49, 0x37, 0x1e, + 0xc3, 0x15, 0xe7, 0x8e, 0x4c, 0x57, 0x92, 0x23, 0x31, 0x3f, 0x31, 0xe4, + 0xf7, 0xa9, 0x83, 0x63, 0xa1, 0xa1, 0x31, 0xb4, 0x75, 0x37, 0x37, 0xf2, + 0xde, 0x36, 0x4b, 0x61, 0x3b, 0x28, 0xa8, 0x95, 0x6b, 0x0a, 0x3b, 0xb9, + 0x23, 0x3c, 0x1a, 0xbf, 0x0e, 0xa6, 0x3a, 0x38, 0xad, 0x13, 0x47, 0x0d, + 0x4a, 0x13, 0x6e, 0xfb, 0x9a, 0x6a, 0x31, 0x52, 0x0a, 0xad, 0x1d, 0xdc, + 0x4f, 0xd1, 0xbf, 0x3a, 0x9c, 0x36, 0x7a, 0x1c, 0xd5, 0x23, 0x07, 0x16, + 0xb7, 0x24, 0xcd, 0x04, 0xd4, 0x7b, 0xa8, 0xdd, 0x4c, 0x43, 0xc9, 0xa4, + 0xcd, 0x37, 0x34, 0x6e, 0xa0, 0x43, 0xb3, 0x4a, 0x0d, 0x47, 0xba, 0x93, + 0x76, 0x28, 0x02, 0x5c, 0xd0, 0x4f, 0x06, 0xaa, 0xc9, 0x77, 0x0c, 0x5c, + 0xbc, 0xaa, 0xbf, 0x8d, 0x54, 0x7d, 0x6e, 0xd1, 0x72, 0x03, 0x96, 0x3f, + 0xec, 0x8c, 0xd1, 0x72, 0x94, 0x5b, 0x24, 0x97, 0xc1, 0x6b, 0x22, 0xee, + 0x37, 0x33, 0x71, 0xfd, 0xe5, 0xce, 0x2a, 0x8f, 0xf6, 0x25, 0xe5, 0xa3, + 0x2f, 0xd9, 0xae, 0x04, 0xa8, 0xa7, 0x94, 0x61, 0x83, 0x5a, 0xa3, 0xc5, + 0x20, 0x8c, 0x15, 0x60, 0x3e, 0xb4, 0xc1, 0xae, 0xda, 0xff, 0x00, 0x75, + 0xab, 0x33, 0xd0, 0x71, 0x4d, 0x5a, 0xc2, 0xc6, 0xad, 0x1a, 0xfc, 0xd1, + 0x6c, 0x27, 0xaf, 0x15, 0x20, 0x6a, 0x68, 0xd6, 0xed, 0x08, 0xe7, 0x77, + 0xe5, 0x41, 0xd4, 0x74, 0xf7, 0xea, 0xc5, 0x4f, 0xd2, 0xa9, 0x48, 0xe6, + 0x95, 0x07, 0xd0, 0x93, 0x34, 0x66, 0xb3, 0x2f, 0x75, 0x34, 0xb7, 0xf9, + 0xa0, 0x71, 0x2a, 0xfa, 0x63, 0x9a, 0x86, 0x1d, 0x7e, 0x37, 0xe1, 0xe3, + 0x65, 0xa7, 0x74, 0x66, 0xe8, 0xcd, 0x74, 0x36, 0xb3, 0x49, 0x9a, 0xa7, + 0x1e, 0xa3, 0x6d, 0x2f, 0x49, 0x00, 0x3e, 0xf5, 0x61, 0x65, 0x46, 0xfb, + 0xac, 0x0f, 0xd0, 0xd3, 0x33, 0x69, 0xad, 0xc9, 0x28, 0xcd, 0x37, 0x34, + 0x66, 0x98, 0x87, 0xe6, 0x92, 0x9b, 0x9a, 0x33, 0x40, 0x0b, 0x46, 0x69, + 0x33, 0x49, 0x9a, 0x00, 0x5a, 0x4a, 0x33, 0x49, 0x9a, 0x00, 0x0d, 0x34, + 0x8a, 0x75, 0x26, 0x68, 0x15, 0x86, 0x15, 0xa6, 0x95, 0xa7, 0x93, 0x48, + 0x69, 0x85, 0x88, 0xf6, 0xd2, 0x63, 0xd0, 0xd4, 0x86, 0x9b, 0x40, 0x58, + 0x40, 0xec, 0x3b, 0xd2, 0xf9, 0xad, 0xfd, 0xd5, 0x34, 0x94, 0xd3, 0x48, + 0x6a, 0xe8, 0x79, 0x97, 0xfd, 0x85, 0xa3, 0xcc, 0x5e, 0xe9, 0xfa, 0xd3, + 0x0d, 0x34, 0xd0, 0x3b, 0xb1, 0xfe, 0x62, 0x7f, 0x74, 0xfe, 0x74, 0xd2, + 0xe0, 0xf4, 0x04, 0x7d, 0x4d, 0x30, 0x9a, 0x61, 0x34, 0x05, 0xd9, 0xb5, + 0xa7, 0xe9, 0x51, 0x5d, 0xa8, 0x77, 0xb9, 0x40, 0x3f, 0xba, 0xa7, 0x9a, + 0xdb, 0x8a, 0xc2, 0xd6, 0xd1, 0x7f, 0x77, 0x18, 0x27, 0xfb, 0xc7, 0x93, + 0x5c, 0x3f, 0x9a, 0xc8, 0x72, 0xac, 0x54, 0xfa, 0x83, 0x53, 0x26, 0xb5, + 0x7d, 0x08, 0xc0, 0x97, 0x70, 0xf4, 0x6e, 0x6a, 0x1c, 0x59, 0xd1, 0x4e, + 0xad, 0x35, 0xa5, 0x8e, 0x9a, 0xee, 0xda, 0x7b, 0x82, 0x76, 0x06, 0xdb, + 0xea, 0x2b, 0x31, 0xf4, 0xb7, 0x24, 0xee, 0x94, 0x8a, 0xc8, 0x7d, 0x6a, + 0xf9, 0x5f, 0x7c, 0x77, 0x0e, 0x87, 0xd0, 0x74, 0xa0, 0x78, 0x9e, 0xfd, + 0x0f, 0xce, 0xc9, 0x27, 0xfb, 0xcb, 0x54, 0xa4, 0xd1, 0xab, 0x51, 0x7a, + 0x9a, 0x47, 0x49, 0xf5, 0x93, 0x3f, 0x85, 0x2a, 0xe9, 0x31, 0x77, 0x73, + 0xf9, 0x55, 0x15, 0xf1, 0x69, 0xff, 0x00, 0x96, 0xb6, 0x71, 0x37, 0xfb, + 0xa7, 0x15, 0x2a, 0xf8, 0xaa, 0xc5, 0xbe, 0xfd, 0xa4, 0x8b, 0xfe, 0xeb, + 0x66, 0x8e, 0x79, 0x77, 0x1a, 0x8c, 0x4b, 0xf1, 0xe9, 0x76, 0xc1, 0xc0, + 0x66, 0x66, 0x1f, 0x5a, 0xbb, 0xfd, 0x9b, 0xa6, 0xe3, 0x88, 0xcf, 0xe7, + 0x58, 0xa3, 0xc4, 0x5a, 0x53, 0x7f, 0xcf, 0x65, 0xfa, 0x8a, 0x7a, 0xeb, + 0x9a, 0x63, 0x74, 0xbb, 0x65, 0xfa, 0xa9, 0xa5, 0xcd, 0x2e, 0xe5, 0x24, + 0xbb, 0x1a, 0x8d, 0xa5, 0xd8, 0x1e, 0x8a, 0x47, 0xe3, 0x55, 0xa6, 0xd1, + 0x6d, 0x19, 0x49, 0x5b, 0x86, 0x8f, 0xf5, 0xa8, 0x06, 0xad, 0x62, 0xdf, + 0x76, 0xfe, 0x3f, 0xc6, 0x86, 0xbd, 0xb6, 0x90, 0x7f, 0xc7, 0xd4, 0x4c, + 0x3f, 0xde, 0xa5, 0xcd, 0x2e, 0xe3, 0xe5, 0x5d, 0x8c, 0x7b, 0xcd, 0x2e, + 0xed, 0x32, 0xd6, 0xf7, 0x1e, 0x6a, 0x8e, 0xc4, 0x60, 0xd6, 0x24, 0xd7, + 0x37, 0x30, 0x12, 0x1f, 0x78, 0x61, 0xd8, 0xd7, 0x66, 0xb7, 0x10, 0x63, + 0xfd, 0x7c, 0x58, 0xff, 0x00, 0x7c, 0x55, 0x2d, 0x4a, 0x4d, 0x31, 0xa3, + 0x3f, 0x68, 0x96, 0x22, 0x71, 0xfc, 0x2c, 0x09, 0xa3, 0x99, 0xf7, 0x0e, + 0x53, 0x99, 0x86, 0xfe, 0x56, 0xea, 0xfc, 0xfb, 0xd5, 0xc4, 0x9e, 0x43, + 0xf7, 0x80, 0xfc, 0x2b, 0x35, 0x5e, 0xd4, 0xcc, 0x76, 0x16, 0xda, 0x0f, + 0x15, 0xa7, 0x13, 0x46, 0xe3, 0xe5, 0x23, 0x35, 0xad, 0x36, 0xde, 0xec, + 0x89, 0xa4, 0xb6, 0x1f, 0xbc, 0x9a, 0x50, 0x4d, 0x3c, 0x25, 0x2e, 0xda, + 0xd4, 0xcc, 0x68, 0xcd, 0x3a, 0x9c, 0x05, 0x18, 0xa6, 0x02, 0x52, 0xd1, + 0x8a, 0x5a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x5a, 0x4a, 0x29, 0x42, 0x96, + 0x38, 0x03, 0x3f, 0x4a, 0x5b, 0x0d, 0x26, 0xf4, 0x42, 0x51, 0x56, 0x62, + 0xb1, 0x9a, 0x4c, 0x7c, 0xb8, 0x1e, 0xf5, 0x7e, 0x0d, 0x2d, 0x13, 0x97, + 0xf9, 0x8d, 0x70, 0xd7, 0xcc, 0x68, 0x51, 0xdd, 0xdd, 0xf9, 0x1d, 0xb4, + 0x70, 0x15, 0xaa, 0x74, 0xb2, 0xf3, 0x33, 0xa1, 0xb6, 0x92, 0x63, 0xf2, + 0x83, 0x8f, 0x5a, 0xd6, 0xb6, 0xb0, 0x48, 0xb0, 0x48, 0xcb, 0x7b, 0xd5, + 0xb8, 0xe2, 0x0a, 0x30, 0x00, 0x15, 0x30, 0x5a, 0xf0, 0x31, 0x79, 0xa5, + 0x5a, 0xde, 0xec, 0x74, 0x47, 0xb3, 0x87, 0xc0, 0xd3, 0xa3, 0xae, 0xec, + 0x6a, 0x26, 0x3b, 0x54, 0xa0, 0x50, 0x05, 0x2d, 0x79, 0x7b, 0x9d, 0xf6, + 0x14, 0x52, 0xd2, 0x66, 0x8a, 0x06, 0x3a, 0x8a, 0x6d, 0x19, 0xa4, 0x02, + 0xe6, 0x97, 0x38, 0xa6, 0xd2, 0xe6, 0x93, 0x01, 0x73, 0x45, 0x36, 0x8c, + 0xd2, 0x01, 0xd9, 0xa3, 0x34, 0xda, 0x5a, 0x00, 0x5a, 0x29, 0x28, 0xcd, + 0x34, 0x02, 0xd1, 0x45, 0x25, 0x00, 0x2d, 0x25, 0x2e, 0x69, 0x29, 0x80, + 0x51, 0x8a, 0x28, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xa8, 0xa2, 0xe0, 0x46, + 0x41, 0xa4, 0x20, 0xd4, 0x94, 0x98, 0xa6, 0x22, 0x2e, 0x69, 0x09, 0x35, + 0x2e, 0xda, 0x42, 0xa2, 0x8b, 0x8a, 0xc4, 0x25, 0xa9, 0xbb, 0xfd, 0x4d, + 0x4c, 0x50, 0x54, 0x6c, 0xa0, 0x0c, 0x9c, 0x01, 0xea, 0x6b, 0x6a, 0x70, + 0x94, 0xdf, 0xba, 0xae, 0x44, 0x9a, 0x8a, 0xbb, 0x63, 0xe5, 0xd4, 0x1a, + 0xc2, 0x1d, 0xe8, 0x65, 0x9f, 0x8c, 0xed, 0x51, 0xc5, 0x73, 0x93, 0xf8, + 0xc3, 0x53, 0xb8, 0x72, 0xb6, 0xb0, 0x08, 0x87, 0xa9, 0xe4, 0xd6, 0x84, + 0xf3, 0x4b, 0x23, 0x98, 0x6d, 0x9f, 0xe5, 0x3c, 0x31, 0x1d, 0x29, 0x2d, + 0xb4, 0xc8, 0xa1, 0x19, 0x60, 0x1d, 0xbf, 0x4a, 0xf6, 0xa9, 0x52, 0x84, + 0x57, 0xc0, 0x93, 0x3c, 0x8a, 0xdb, 0xde, 0xf7, 0x32, 0xd6, 0xef, 0x5f, + 0xba, 0x39, 0x69, 0x24, 0x60, 0x7b, 0x29, 0xc5, 0x4b, 0x25, 0x96, 0xb7, + 0x34, 0x63, 0xcb, 0xf3, 0x91, 0xfd, 0x4c, 0xdc, 0x56, 0xd2, 0xc7, 0x24, + 0x6c, 0x1a, 0x36, 0x0b, 0x8f, 0x7a, 0x9f, 0xed, 0x32, 0x63, 0xe6, 0x61, + 0x9f, 0x6a, 0xeb, 0x51, 0x83, 0xdc, 0xe4, 0x7c, 0xdd, 0x0c, 0x8d, 0x3e, + 0xcf, 0x5c, 0x84, 0xe6, 0xe2, 0x69, 0x1b, 0xd3, 0x13, 0x57, 0x43, 0x6a, + 0xd7, 0x88, 0x01, 0x79, 0x1c, 0xff, 0x00, 0xb2, 0xc4, 0x1a, 0xad, 0xf6, + 0x83, 0xfd, 0xea, 0x41, 0x72, 0x47, 0xf1, 0x1a, 0xca, 0xae, 0x0e, 0x85, + 0x4d, 0xd0, 0x29, 0x4d, 0x1a, 0xa2, 0xf4, 0x67, 0x0c, 0x70, 0x6a, 0x65, + 0xb9, 0x53, 0xfc, 0x42, 0xb0, 0x4c, 0xb9, 0x6c, 0xf3, 0x4e, 0x12, 0x1e, + 0xc1, 0xab, 0x8a, 0x79, 0x4d, 0x37, 0xf0, 0xb6, 0x68, 0xaa, 0xbe, 0xa7, + 0x40, 0x24, 0x07, 0xa1, 0xa7, 0x86, 0xae, 0x78, 0x4b, 0x28, 0xe9, 0xb8, + 0x52, 0x9b, 0xd9, 0xa3, 0x19, 0x32, 0x6d, 0xfa, 0x9a, 0xc5, 0xe4, 0xf3, + 0xe9, 0x22, 0xbd, 0xaa, 0x3a, 0x40, 0x69, 0xe0, 0xd7, 0x25, 0x2e, 0xba, + 0x22, 0x42, 0x5e, 0xfa, 0x34, 0xc7, 0xfb, 0x40, 0xd7, 0x3f, 0x3f, 0x8e, + 0xef, 0x6d, 0xae, 0x0a, 0xc5, 0x24, 0x77, 0x11, 0xf6, 0x3b, 0x48, 0xa9, + 0x96, 0x51, 0x5d, 0x6a, 0xac, 0x25, 0x56, 0x2c, 0xf4, 0xec, 0xd1, 0xbf, + 0x15, 0xe7, 0x96, 0xff, 0x00, 0x11, 0xa4, 0x38, 0xf3, 0xad, 0x47, 0xe1, + 0x5a, 0x31, 0x78, 0xee, 0xd6, 0x7c, 0x03, 0x11, 0x52, 0x7d, 0xeb, 0x07, + 0x80, 0xad, 0xb7, 0x29, 0x5c, 0xc8, 0xec, 0x5a, 0x50, 0x07, 0x5a, 0xa7, + 0x3d, 0xd6, 0xef, 0x95, 0x7a, 0x7a, 0xd6, 0x14, 0x9e, 0x22, 0x85, 0xe3, + 0xdc, 0x5c, 0x22, 0x7a, 0x93, 0x59, 0x17, 0x3e, 0x32, 0xb3, 0x84, 0x91, + 0x1a, 0x34, 0x84, 0x7a, 0x70, 0x2b, 0xd1, 0xc2, 0x65, 0xca, 0x97, 0xbf, + 0x57, 0x72, 0x25, 0x27, 0x2d, 0x11, 0xd5, 0xee, 0xa3, 0x35, 0xc3, 0x9f, + 0x1d, 0x9c, 0xfc, 0xb6, 0x7c, 0x7f, 0xbf, 0x40, 0xf1, 0xe3, 0xff, 0x00, + 0xcf, 0x98, 0xff, 0x00, 0xbe, 0xff, 0x00, 0xfa, 0xd5, 0xea, 0x68, 0x67, + 0xca, 0xce, 0xe3, 0x34, 0x57, 0x12, 0x3c, 0x76, 0xff, 0x00, 0xf3, 0xe4, + 0x3f, 0xef, 0xbf, 0xfe, 0xb5, 0x38, 0x78, 0xe8, 0xf7, 0xb3, 0x1f, 0xf7, + 0xdd, 0x17, 0x41, 0xc8, 0xce, 0xd6, 0x96, 0xb8, 0xe8, 0xbc, 0x70, 0x1c, + 0xf3, 0x66, 0x47, 0xfc, 0x0a, 0xb6, 0xb4, 0xcd, 0x7a, 0xdf, 0x52, 0x62, + 0x8a, 0x0a, 0x38, 0xfe, 0x13, 0x55, 0x62, 0x1e, 0x86, 0xbd, 0x2e, 0x6a, + 0x32, 0xea, 0x3a, 0x90, 0x2a, 0x37, 0xbc, 0xb7, 0x8f, 0xef, 0x4a, 0xbf, + 0x9d, 0x31, 0x36, 0x91, 0x67, 0x34, 0xb9, 0xac, 0xb9, 0x35, 0x9b, 0x74, + 0xfb, 0xbb, 0x9b, 0xe8, 0x2a, 0xa4, 0xba, 0xdc, 0x8d, 0xc4, 0x71, 0x85, + 0xf7, 0x34, 0xec, 0xcc, 0xe5, 0x5a, 0x0b, 0xa9, 0xbf, 0xb8, 0x01, 0xc9, + 0xc5, 0x56, 0x9b, 0x51, 0xb7, 0x80, 0x7c, 0xd2, 0x02, 0x7d, 0x05, 0x73, + 0x92, 0xde, 0x5c, 0x4d, 0xf7, 0xe5, 0x38, 0xf4, 0x15, 0x08, 0x04, 0xd5, + 0x28, 0x98, 0x4b, 0x13, 0xfc, 0xa8, 0xd6, 0xb8, 0xd6, 0xdd, 0xf2, 0x21, + 0x5d, 0xa3, 0xd4, 0xd6, 0x6b, 0xc9, 0x24, 0xcd, 0x99, 0x18, 0xb1, 0xf7, + 0xa4, 0x0b, 0x4f, 0x02, 0xa9, 0x23, 0x9e, 0x55, 0x25, 0x2d, 0xcc, 0x4d, + 0x62, 0xd0, 0x8c, 0x5c, 0x20, 0xe9, 0xd6, 0xa8, 0x45, 0x26, 0xe5, 0xae, + 0xa9, 0xe3, 0x59, 0x10, 0xa9, 0x1c, 0x11, 0x5c, 0xb5, 0xf5, 0xa3, 0xd8, + 0xdc, 0x1c, 0x64, 0xa1, 0xef, 0x8a, 0xcd, 0xab, 0x33, 0xb3, 0x0f, 0x53, + 0x99, 0x72, 0xbd, 0xc9, 0x01, 0xa5, 0x0d, 0x8a, 0x81, 0x24, 0x0c, 0x29, + 0xe1, 0xa8, 0x37, 0x27, 0x59, 0x08, 0xe8, 0x4d, 0x4c, 0x97, 0xb2, 0xc7, + 0xd1, 0x8d, 0x53, 0xcd, 0x2e, 0x69, 0x89, 0xa4, 0xf7, 0x35, 0x23, 0xd5, + 0x9c, 0x7d, 0xe1, 0x9a, 0xb2, 0x9a, 0xa4, 0x4d, 0xf7, 0x86, 0x2b, 0x07, + 0x34, 0x6e, 0xa7, 0xcc, 0xcc, 0x9d, 0x08, 0x3e, 0x87, 0x4a, 0xb7, 0x90, + 0xbf, 0x47, 0x15, 0x20, 0x95, 0x4f, 0x46, 0x07, 0xf1, 0xae, 0x58, 0x39, + 0x1d, 0x0d, 0x3c, 0x4c, 0xe3, 0xa3, 0x1a, 0x7c, 0xc6, 0x6f, 0x0c, 0xba, + 0x33, 0xa7, 0x19, 0x6f, 0xba, 0x33, 0x55, 0x27, 0xb1, 0xbe, 0xb9, 0x38, + 0xfb, 0x42, 0x40, 0x84, 0xf6, 0xe4, 0xd6, 0x4c, 0x77, 0xf3, 0xc7, 0xf7, + 0x64, 0x35, 0x3a, 0x6b, 0x17, 0x0b, 0xd5, 0x81, 0xfa, 0xd0, 0xe5, 0x71, + 0xc3, 0x0f, 0xca, 0xee, 0xf5, 0x34, 0x63, 0xf0, 0x60, 0x7f, 0x9a, 0x6b, + 0xa9, 0x64, 0xcf, 0xa2, 0xd4, 0xbf, 0xf0, 0x85, 0xc0, 0xa0, 0x95, 0x7b, + 0x81, 0xf4, 0xa8, 0x23, 0xf1, 0x55, 0xda, 0x28, 0x53, 0x8c, 0x0a, 0xb0, + 0xbe, 0x2e, 0x9b, 0x18, 0x65, 0x27, 0xe8, 0x69, 0x1b, 0x72, 0x9c, 0xae, + 0x68, 0xcd, 0x47, 0xba, 0x8c, 0xd2, 0x2c, 0x93, 0x34, 0x6e, 0x35, 0x1e, + 0x68, 0xdd, 0x40, 0x58, 0x7e, 0xea, 0x4c, 0x83, 0x4d, 0xdd, 0x49, 0xba, + 0x80, 0xb0, 0xfc, 0x0e, 0xdc, 0x50, 0x24, 0x95, 0x3e, 0xe4, 0x84, 0x53, + 0x37, 0x52, 0x6e, 0xa0, 0x4e, 0x29, 0x96, 0x17, 0x53, 0xbb, 0x8b, 0xf8, + 0x89, 0x15, 0x2a, 0xf8, 0x8a, 0x54, 0xfb, 0xe8, 0x0d, 0x51, 0x2d, 0x50, + 0x4a, 0xcb, 0x8c, 0x9a, 0x77, 0x64, 0x3a, 0x31, 0x7d, 0x0d, 0xb4, 0xf1, + 0x34, 0x24, 0xfc, 0xf1, 0x91, 0xf4, 0xab, 0xb0, 0xeb, 0x76, 0x53, 0x70, + 0x25, 0x0a, 0x7d, 0x0d, 0x71, 0x6e, 0x54, 0xfd, 0x6a, 0x3c, 0x7a, 0x1a, + 0x7c, 0xcc, 0xc9, 0xe1, 0xa2, 0xcf, 0x46, 0x49, 0x52, 0x41, 0x94, 0x70, + 0x47, 0xb1, 0xa7, 0x66, 0xbc, 0xf2, 0x3b, 0x99, 0xe1, 0x39, 0x49, 0x19, + 0x7f, 0x1a, 0xd0, 0x83, 0xc4, 0x37, 0x91, 0x70, 0xc4, 0x38, 0xf7, 0xa7, + 0xce, 0x65, 0x2c, 0x34, 0x96, 0xc7, 0x67, 0x9a, 0x33, 0x5c, 0xec, 0x3e, + 0x28, 0x8c, 0xf1, 0x2c, 0x44, 0x7b, 0x8a, 0xbf, 0x0e, 0xb7, 0x65, 0x37, + 0xfc, 0xb5, 0xda, 0x7d, 0x0d, 0x57, 0x32, 0x33, 0x74, 0xa6, 0xb7, 0x46, + 0x9d, 0x25, 0x44, 0x97, 0x11, 0x49, 0xca, 0x48, 0xad, 0xf4, 0x34, 0xe6, + 0x70, 0x06, 0x49, 0xc0, 0xa0, 0x8b, 0x0e, 0xcd, 0x25, 0x52, 0x9f, 0x53, + 0xb7, 0x88, 0x1f, 0xde, 0x02, 0x7d, 0x01, 0xac, 0x9b, 0x8d, 0x6e, 0x66, + 0x63, 0xe5, 0x61, 0x45, 0x0d, 0x97, 0x1a, 0x72, 0x96, 0xc7, 0x45, 0x48, + 0x6b, 0x94, 0x3a, 0x9d, 0xd3, 0x75, 0x9c, 0x8f, 0xa5, 0x44, 0xda, 0x85, + 0xc3, 0x1c, 0x09, 0x9d, 0x8f, 0xd6, 0x97, 0x31, 0xaa, 0xc3, 0x48, 0xeb, + 0x89, 0x1e, 0xb4, 0x85, 0xd4, 0x77, 0x15, 0xc8, 0x86, 0xba, 0x90, 0xe5, + 0xa5, 0x60, 0x3e, 0xb5, 0x32, 0x6e, 0x5f, 0xe2, 0x62, 0x7d, 0xcd, 0x4b, + 0x9a, 0x1f, 0xd5, 0x9f, 0x73, 0xa5, 0x32, 0x20, 0xea, 0xe3, 0xf3, 0xa8, + 0xde, 0xe2, 0x15, 0x1c, 0xc8, 0xbf, 0x9d, 0x73, 0xaf, 0x2e, 0xdf, 0xbc, + 0xe6, 0xaa, 0x4b, 0x74, 0x58, 0xe1, 0x69, 0xf3, 0x14, 0xb0, 0xbe, 0x67, + 0x50, 0xd7, 0xb6, 0xdf, 0xf3, 0xd5, 0x7f, 0x3a, 0x85, 0xb5, 0x1b, 0x51, + 0xff, 0x00, 0x2d, 0x01, 0xfa, 0x57, 0x2c, 0x5d, 0x8f, 0x56, 0x34, 0x9b, + 0x8f, 0xa9, 0xa5, 0xce, 0x57, 0xd5, 0x63, 0xdc, 0xe9, 0x1b, 0x52, 0xb6, + 0xec, 0x58, 0xfd, 0x05, 0x35, 0x6e, 0x16, 0x63, 0x88, 0xd1, 0xbf, 0x1e, + 0x2b, 0x9f, 0x57, 0x6f, 0x53, 0x53, 0x24, 0xaf, 0xd9, 0xc8, 0xa3, 0x9d, + 0x8b, 0xea, 0xd0, 0x47, 0x42, 0x2c, 0xae, 0x25, 0xfb, 0xa2, 0x31, 0xf5, + 0x71, 0x4d, 0x7d, 0x26, 0xef, 0xfe, 0x99, 0xe7, 0xfd, 0xfa, 0xc4, 0x86, + 0xf6, 0x51, 0x26, 0xdd, 0xd9, 0x15, 0xa4, 0x35, 0x19, 0xad, 0xd7, 0x74, + 0x78, 0x27, 0xfd, 0xa1, 0x9a, 0x4d, 0xad, 0xd9, 0x7c, 0x96, 0x24, 0x7d, + 0x1b, 0x50, 0x51, 0x9f, 0xb3, 0xe4, 0x7f, 0xb2, 0x73, 0x54, 0xa5, 0xb6, + 0x92, 0x13, 0x89, 0x51, 0xa3, 0x3f, 0xed, 0x0c, 0x54, 0xe3, 0xc4, 0x97, + 0xa8, 0x78, 0x7c, 0x7f, 0xc0, 0x6a, 0x1b, 0xad, 0x7a, 0xe2, 0xed, 0x36, + 0x4c, 0xc0, 0x8f, 0xf7, 0x69, 0x5c, 0x7c, 0xa4, 0x0d, 0x19, 0x1f, 0x4f, + 0x6a, 0x8c, 0xad, 0x44, 0x2e, 0x23, 0x1c, 0x64, 0xd3, 0xd6, 0x54, 0x6e, + 0x86, 0x98, 0x59, 0x81, 0x4a, 0x69, 0x4a, 0x93, 0x20, 0xd1, 0x8a, 0x40, + 0x44, 0x63, 0xcd, 0x47, 0x2a, 0x2a, 0xc7, 0x93, 0xd7, 0xb5, 0x59, 0xa0, + 0xaa, 0x38, 0xf9, 0x80, 0xa0, 0xa4, 0x53, 0x80, 0xe0, 0xd5, 0xe5, 0x62, + 0x3a, 0x53, 0x04, 0x6a, 0x87, 0x20, 0x52, 0x91, 0xe9, 0x4e, 0xf6, 0xd8, + 0xab, 0x5c, 0xb7, 0x1d, 0xec, 0x89, 0xc1, 0x39, 0x1e, 0xf5, 0x6e, 0x2b, + 0xf8, 0xdf, 0x86, 0xf9, 0x4d, 0x63, 0xe0, 0x8f, 0x5a, 0x39, 0xf5, 0xab, + 0x55, 0x9a, 0x21, 0xd2, 0x4c, 0xe8, 0xd4, 0xab, 0x0c, 0xa9, 0xc8, 0xa5, + 0xc5, 0x62, 0xda, 0xdc, 0x34, 0x4c, 0x39, 0xe2, 0xb6, 0x23, 0x90, 0x48, + 0x81, 0x81, 0xad, 0xe1, 0x35, 0x23, 0x39, 0xd3, 0x71, 0xd4, 0x76, 0x28, + 0xa2, 0x8a, 0xb3, 0x21, 0x29, 0xd1, 0x88, 0x99, 0xb0, 0xd2, 0x85, 0xfa, + 0xd3, 0x4d, 0x46, 0xca, 0x0f, 0x5a, 0x89, 0xc5, 0xb5, 0x64, 0xec, 0x6b, + 0x4e, 0x51, 0x8b, 0xbc, 0x95, 0xcd, 0x88, 0x2c, 0xad, 0x18, 0x0f, 0xdf, + 0x2b, 0x9f, 0x63, 0x57, 0xe2, 0xb5, 0x89, 0x07, 0xca, 0xa2, 0xb9, 0x43, + 0x1a, 0xf6, 0x38, 0xfa, 0x1a, 0x04, 0xb3, 0x47, 0xf7, 0x2e, 0x1d, 0x7f, + 0xe0, 0x55, 0xe4, 0xe2, 0x32, 0xea, 0xf5, 0x7f, 0xe5, 0xed, 0xcf, 0x52, + 0x8e, 0x3e, 0x84, 0x3e, 0xc5, 0xbd, 0x0e, 0xcd, 0x50, 0x0a, 0x78, 0x5a, + 0xe3, 0x97, 0x58, 0xbd, 0x8b, 0xfe, 0x5e, 0x54, 0x8f, 0xf6, 0x85, 0x4c, + 0xbe, 0x28, 0xb8, 0x8f, 0xef, 0x88, 0x9b, 0xf1, 0xaf, 0x32, 0x79, 0x46, + 0x21, 0x6c, 0xd3, 0x3b, 0xa1, 0x98, 0xd0, 0x7f, 0xf0, 0xc7, 0x5a, 0x05, + 0x2f, 0x4a, 0xe5, 0xd3, 0xc5, 0xf1, 0x83, 0xfb, 0xc8, 0x3f, 0x23, 0x53, + 0x8f, 0x18, 0x59, 0x6d, 0xc9, 0x8d, 0xf3, 0xe9, 0x5c, 0xb2, 0xcb, 0xf1, + 0x11, 0xfb, 0x27, 0x42, 0xc5, 0x51, 0x7f, 0x68, 0xe8, 0x85, 0x15, 0xca, + 0xcb, 0xe3, 0x38, 0x87, 0xfa, 0xab, 0x76, 0x3f, 0xef, 0x1a, 0xa6, 0xfe, + 0x31, 0xba, 0x6f, 0xb9, 0x0a, 0x8f, 0xd6, 0xaa, 0x39, 0x7d, 0x77, 0xd2, + 0xc4, 0xbc, 0x65, 0x15, 0xd4, 0xed, 0xb3, 0x45, 0x70, 0x4d, 0xe2, 0x8d, + 0x49, 0xba, 0x6d, 0x1f, 0x85, 0x30, 0xf8, 0x8f, 0x53, 0x3f, 0xf2, 0xd0, + 0x0a, 0xd3, 0xfb, 0x2e, 0xab, 0xea, 0x8c, 0xde, 0x61, 0x48, 0xf4, 0x0c, + 0xd0, 0x2b, 0xcf, 0x7f, 0xe1, 0x20, 0xd4, 0xff, 0x00, 0xe7, 0xad, 0x28, + 0xf1, 0x0e, 0xa6, 0x3f, 0xe5, 0xa8, 0xa7, 0xfd, 0x97, 0x57, 0xba, 0x0f, + 0xed, 0x0a, 0x47, 0xa0, 0xd1, 0x5c, 0x07, 0xfc, 0x24, 0x9a, 0x90, 0xff, + 0x00, 0x96, 0x8b, 0x47, 0xfc, 0x24, 0xfa, 0x8f, 0xf7, 0xd7, 0xf2, 0xa9, + 0xfe, 0xcb, 0xab, 0xdd, 0x0f, 0xeb, 0xf4, 0x8e, 0xfe, 0x8a, 0xe0, 0x47, + 0x8a, 0x75, 0x0f, 0xef, 0x27, 0xe5, 0x4b, 0xff, 0x00, 0x09, 0x56, 0xa1, + 0xfd, 0xe4, 0xfc, 0xa9, 0x7f, 0x65, 0xd6, 0xee, 0x87, 0xf5, 0xfa, 0x47, + 0x7b, 0x9a, 0x5c, 0xd7, 0x04, 0x3c, 0x53, 0xa8, 0x7f, 0x79, 0x3f, 0x2a, + 0x5f, 0xf8, 0x4a, 0x75, 0x1f, 0x54, 0xfc, 0xa8, 0xfe, 0xcb, 0xad, 0xe4, + 0x1f, 0x5f, 0xa4, 0x77, 0x94, 0x57, 0x14, 0x3c, 0x63, 0xa9, 0x00, 0x06, + 0xc8, 0x3f, 0xef, 0x81, 0x47, 0xfc, 0x26, 0x5a, 0x97, 0xfc, 0xf3, 0x83, + 0xfe, 0xf8, 0x15, 0xaf, 0xf6, 0x4c, 0xbf, 0x98, 0xcf, 0xfb, 0x46, 0x1d, + 0x8e, 0xd6, 0x96, 0xb8, 0xd4, 0xf1, 0xbe, 0xa0, 0xa7, 0x98, 0x60, 0x3f, + 0xf0, 0x0a, 0xb3, 0x1f, 0x8f, 0xee, 0x93, 0xef, 0xd9, 0x40, 0xdf, 0x86, + 0x2a, 0xbf, 0xb2, 0x5f, 0xf3, 0x07, 0xf6, 0x8c, 0x7b, 0x1d, 0x4f, 0x7a, + 0x33, 0x58, 0x70, 0x7c, 0x47, 0x40, 0x40, 0x97, 0x4e, 0x4f, 0xf8, 0x09, + 0xa4, 0x93, 0xc6, 0x7a, 0x75, 0xc4, 0xc5, 0xc4, 0x4f, 0x10, 0x3d, 0x45, + 0x67, 0x57, 0x2c, 0x94, 0x23, 0x78, 0xbb, 0x97, 0x4b, 0x1d, 0x19, 0xbb, + 0x49, 0x58, 0xdd, 0xeb, 0x45, 0x64, 0x47, 0xe2, 0x4d, 0x36, 0x4c, 0x7e, + 0xff, 0x00, 0x1f, 0x51, 0x57, 0x22, 0xd4, 0xec, 0x25, 0xfb, 0xb7, 0x90, + 0xff, 0x00, 0xdf, 0x55, 0xcb, 0x1c, 0x15, 0x79, 0x6d, 0x13, 0x79, 0x62, + 0x69, 0x47, 0x79, 0x16, 0xfb, 0x53, 0x4e, 0x71, 0xc5, 0x2a, 0x3c, 0x0f, + 0xf7, 0x6e, 0x10, 0xfd, 0x0d, 0x4c, 0x12, 0x23, 0xfc, 0x40, 0xfe, 0x35, + 0xd3, 0x4f, 0x2d, 0xaf, 0xd6, 0xc6, 0x12, 0xc7, 0xd1, 0x44, 0x3f, 0x5a, + 0x3a, 0xf4, 0xe6, 0x92, 0xee, 0xf2, 0xd2, 0xc6, 0x32, 0xf2, 0xba, 0x8f, + 0x6a, 0xe6, 0xef, 0x3c, 0x62, 0x01, 0x2b, 0x6d, 0x10, 0x03, 0xfb, 0xc6, + 0xb7, 0x8e, 0x53, 0xd6, 0x52, 0x32, 0x79, 0x85, 0xfe, 0x18, 0xfd, 0xe7, + 0x4d, 0xb4, 0x81, 0x93, 0x85, 0x1e, 0xe6, 0xaa, 0x4f, 0x7f, 0x69, 0x6e, + 0x0e, 0xf9, 0xd4, 0x9f, 0x45, 0xe6, 0xb8, 0x9b, 0x8d, 0x7a, 0xe2, 0xe4, + 0xe6, 0x47, 0x63, 0xed, 0xda, 0xaa, 0x35, 0xf9, 0x3e, 0xb5, 0xd1, 0x1c, + 0x0d, 0x28, 0x6d, 0x1b, 0xfa, 0x99, 0x4b, 0x19, 0x27, 0xbc, 0xbe, 0xe3, + 0xab, 0xb9, 0xf1, 0x00, 0x19, 0x10, 0x47, 0x8f, 0xf6, 0x9a, 0xb9, 0xbd, + 0x47, 0x58, 0xb9, 0x91, 0x8e, 0x66, 0x63, 0xed, 0x55, 0x0d, 0xd1, 0x6f, + 0x5a, 0xa5, 0x3b, 0x12, 0xc6, 0xba, 0xa1, 0x4d, 0xa3, 0x9e, 0x75, 0x93, + 0x34, 0xf4, 0xdf, 0x10, 0x5d, 0xd9, 0xe5, 0x76, 0x09, 0x53, 0x3c, 0xe6, + 0xb5, 0x3f, 0xe1, 0x2e, 0x1f, 0xc5, 0x62, 0xd9, 0xf6, 0x6a, 0xe5, 0xed, + 0xcb, 0x12, 0x50, 0x03, 0xcd, 0x4f, 0xf6, 0x69, 0x4f, 0xf0, 0x9a, 0xad, + 0x13, 0x33, 0xbb, 0x67, 0x43, 0xff, 0x00, 0x09, 0x72, 0x7f, 0xcf, 0xa3, + 0xff, 0x00, 0xdf, 0x54, 0x87, 0xc5, 0xc3, 0xb5, 0x97, 0xe6, 0xf5, 0xce, + 0x98, 0x19, 0x7a, 0xe3, 0xf3, 0xa6, 0x14, 0x3e, 0x95, 0x68, 0x86, 0xed, + 0xb9, 0xd1, 0x1f, 0x17, 0x49, 0xfc, 0x36, 0x71, 0x8f, 0xab, 0x53, 0x0f, + 0x8b, 0xae, 0xbf, 0x86, 0x08, 0x56, 0xb0, 0x36, 0x9f, 0x4a, 0x02, 0xd5, + 0x6a, 0x43, 0x68, 0xdb, 0x6f, 0x16, 0x6a, 0x27, 0xa1, 0x8d, 0x7e, 0x8b, + 0x50, 0xbf, 0x89, 0x75, 0x37, 0xff, 0x00, 0x96, 0xfb, 0x7f, 0xdd, 0x15, + 0x98, 0x11, 0x40, 0xc9, 0x35, 0x66, 0xd6, 0xd0, 0x5c, 0x9c, 0x2b, 0xc6, + 0x9e, 0xee, 0xd8, 0xa7, 0x72, 0x74, 0xec, 0x2b, 0xeb, 0x1a, 0x84, 0xbf, + 0x7a, 0xe6, 0x4f, 0xce, 0xab, 0xb5, 0xc4, 0xf2, 0x7d, 0xe9, 0x5c, 0xfd, + 0x58, 0xd6, 0xec, 0x5e, 0x1e, 0x81, 0x97, 0x2f, 0xa8, 0xc2, 0x3d, 0x96, + 0x97, 0xfb, 0x1f, 0x4f, 0x53, 0xb4, 0xdd, 0xbb, 0x1f, 0x60, 0x29, 0xde, + 0xe2, 0xb9, 0xce, 0xe0, 0x9e, 0xbc, 0xd0, 0x06, 0x3a, 0x57, 0x44, 0x9a, + 0x4d, 0x83, 0x36, 0x04, 0xf2, 0x0f, 0x73, 0x8a, 0x8a, 0xeb, 0x4c, 0xb3, + 0x84, 0x7c, 0x97, 0x0c, 0xcd, 0xe9, 0x81, 0x46, 0xe1, 0x76, 0x61, 0xf3, + 0x4d, 0xce, 0x0d, 0x5c, 0x68, 0x15, 0x4f, 0x2c, 0x2a, 0x33, 0x14, 0x67, + 0xb9, 0xa4, 0xd0, 0xd4, 0x88, 0x1e, 0xe2, 0x46, 0x1b, 0x4b, 0x1c, 0x54, + 0x59, 0xab, 0x0d, 0x04, 0x7f, 0xed, 0x7e, 0x55, 0x19, 0x8e, 0x21, 0xd9, + 0xaa, 0x39, 0x52, 0x36, 0x55, 0x1b, 0x19, 0x9a, 0x32, 0x29, 0xe1, 0x21, + 0xef, 0xba, 0xa5, 0x4b, 0x68, 0x1f, 0xf8, 0x88, 0xfc, 0x69, 0x72, 0x8f, + 0x9c, 0xaf, 0xe6, 0x28, 0xa6, 0x99, 0xbd, 0x2a, 0xf8, 0xd3, 0x61, 0x23, + 0xef, 0xb5, 0x2a, 0xe9, 0x70, 0xee, 0xe6, 0x56, 0xdb, 0xf4, 0xa4, 0xad, + 0x71, 0x4a, 0x6e, 0xc6, 0x70, 0x9a, 0x41, 0xd0, 0xe2, 0xb6, 0xf4, 0x34, + 0xb9, 0xf3, 0xbc, 0xe0, 0xec, 0xa0, 0x77, 0x14, 0xfb, 0x6d, 0x2b, 0x4f, + 0xdc, 0x37, 0x48, 0xec, 0x7d, 0x0d, 0x6f, 0xc1, 0x04, 0x50, 0xc6, 0x16, + 0x31, 0x81, 0x5b, 0xc5, 0x1c, 0x35, 0xab, 0x3d, 0x90, 0xf3, 0x24, 0xad, + 0xf7, 0x9d, 0x8f, 0xe3, 0x48, 0x01, 0xa9, 0x02, 0x8f, 0x5a, 0x5d, 0xb5, + 0x56, 0x39, 0x75, 0x7b, 0x91, 0xed, 0xa7, 0x05, 0xa7, 0x62, 0x96, 0x81, + 0x58, 0x40, 0x29, 0xc0, 0x0a, 0x4c, 0xd1, 0xb8, 0x0e, 0xa6, 0x98, 0x58, + 0x75, 0x2e, 0x6a, 0xac, 0xb7, 0xd6, 0xf0, 0x8f, 0xde, 0x4c, 0x8b, 0xf8, + 0xd6, 0x74, 0xfe, 0x24, 0xb4, 0x8b, 0x21, 0x37, 0x48, 0x7d, 0x85, 0x2b, + 0xa4, 0x52, 0x84, 0xa5, 0xb2, 0x36, 0xf3, 0x55, 0xef, 0x23, 0x8e, 0x78, + 0x0a, 0x48, 0x40, 0x1e, 0xf5, 0xcc, 0x5c, 0x78, 0x92, 0xe6, 0x4c, 0x88, + 0x90, 0x20, 0xf5, 0xea, 0x6a, 0x8b, 0x4d, 0x73, 0x74, 0x77, 0x4d, 0x3b, + 0xe3, 0xd3, 0x35, 0x12, 0x9a, 0xb1, 0xbc, 0x30, 0xd3, 0xbd, 0xf6, 0x2d, + 0xcd, 0x19, 0xb7, 0x95, 0x82, 0xb0, 0x65, 0x1e, 0x86, 0x9c, 0x92, 0x6e, + 0x15, 0x5a, 0x34, 0xc7, 0x0b, 0xc0, 0x3d, 0x7d, 0xea, 0x75, 0x01, 0x7a, + 0x54, 0x45, 0xb3, 0xb6, 0xda, 0x6a, 0x4d, 0xba, 0x8d, 0xd5, 0x1e, 0x69, + 0x77, 0x55, 0x0a, 0xc3, 0xf3, 0x46, 0x69, 0x99, 0xa3, 0x34, 0xc0, 0x7e, + 0x69, 0x73, 0x51, 0xe6, 0x8d, 0xd4, 0x05, 0x89, 0x33, 0x46, 0x6a, 0x3d, + 0xd4, 0x6e, 0xa0, 0x44, 0x9b, 0xa8, 0xdd, 0x51, 0xee, 0xa3, 0x34, 0x01, + 0x1e, 0x68, 0xcd, 0x37, 0x34, 0x6e, 0x14, 0xae, 0x55, 0x87, 0x66, 0x8c, + 0xd3, 0x37, 0x51, 0xba, 0x8b, 0x85, 0x87, 0xe6, 0x8c, 0xd3, 0x37, 0x8f, + 0x5a, 0x69, 0x91, 0x47, 0x7a, 0x2e, 0x16, 0x24, 0xcd, 0x21, 0x6a, 0xae, + 0xd3, 0xa8, 0xef, 0x50, 0xbd, 0xc6, 0x7a, 0x50, 0x05, 0x87, 0x98, 0x01, + 0xd6, 0xaa, 0x49, 0x29, 0x63, 0xed, 0x51, 0xb3, 0x96, 0xa4, 0xa2, 0xe0, + 0x14, 0xe1, 0x49, 0x4a, 0x01, 0xf4, 0xa9, 0xb8, 0xec, 0x3a, 0x8c, 0x0a, + 0x02, 0xb7, 0xa1, 0xa7, 0x08, 0xdc, 0xf4, 0x53, 0x47, 0x30, 0xf9, 0x44, + 0xda, 0x28, 0xda, 0x2a, 0x41, 0x04, 0x9f, 0xdd, 0x3f, 0x95, 0x3c, 0x5a, + 0xb9, 0xed, 0xf9, 0xd1, 0xcc, 0x1c, 0xa4, 0x68, 0xed, 0x19, 0xca, 0x31, + 0x07, 0xd8, 0xd4, 0xe6, 0xfa, 0xe9, 0x93, 0x69, 0x99, 0xc8, 0xfa, 0xd2, + 0x8b, 0x52, 0x3a, 0x95, 0x1f, 0x53, 0x4a, 0x22, 0x8d, 0x7e, 0xf4, 0xaa, + 0x3e, 0x94, 0xd3, 0x7d, 0x08, 0x71, 0x8f, 0x52, 0xbe, 0x1c, 0x9c, 0xf3, + 0x9a, 0x78, 0x89, 0xdb, 0xa9, 0xa9, 0xb7, 0xdb, 0xaf, 0x57, 0x27, 0xe9, + 0x4d, 0x37, 0x51, 0x2f, 0xdd, 0x4c, 0xfd, 0x69, 0xfb, 0xc3, 0xd3, 0xa0, + 0xa9, 0x6e, 0xbd, 0xf2, 0x6a, 0x75, 0x40, 0xa3, 0x80, 0x05, 0x54, 0x6b, + 0xc7, 0x3f, 0x74, 0x01, 0x50, 0xb4, 0xd2, 0x3f, 0x56, 0x34, 0xbd, 0x58, + 0xac, 0xd9, 0xa0, 0xd2, 0xc6, 0x9d, 0x5b, 0x3f, 0x4a, 0x82, 0x4b, 0xde, + 0xc8, 0x31, 0x54, 0xfa, 0xf5, 0x34, 0x94, 0x5f, 0xb0, 0x58, 0x7b, 0x48, + 0xcf, 0xd4, 0xd3, 0x73, 0x49, 0xc5, 0x2e, 0x28, 0xd5, 0x8e, 0xe1, 0x9a, + 0x33, 0x47, 0xd2, 0x94, 0x2e, 0x69, 0xd8, 0x4d, 0x80, 0xe7, 0xa5, 0x4b, + 0x9d, 0xa9, 0x48, 0x00, 0x41, 0x4c, 0x77, 0x2c, 0x71, 0xda, 0x93, 0xd7, + 0x44, 0x4e, 0xe3, 0xe1, 0xe6, 0x4c, 0xd5, 0xe7, 0x6c, 0x28, 0xaa, 0x96, + 0xe9, 0xce, 0x6a, 0xcc, 0xbf, 0x77, 0x15, 0x55, 0x34, 0xb2, 0x17, 0x52, + 0x36, 0x71, 0x50, 0xbb, 0x0a, 0x46, 0xe3, 0xae, 0x6a, 0x22, 0xe3, 0xde, + 0xb3, 0x5a, 0x8d, 0x83, 0x01, 0x51, 0xe7, 0x69, 0xe0, 0xd3, 0xfa, 0xd3, + 0x7c, 0xa2, 0x7b, 0x8a, 0xa4, 0x9a, 0x02, 0x45, 0x9c, 0x8e, 0xb5, 0x28, + 0x94, 0x9e, 0x98, 0xa8, 0x04, 0x0d, 0xea, 0x29, 0xc2, 0x16, 0x1d, 0xea, + 0xc9, 0xd0, 0x9f, 0x73, 0x11, 0xd4, 0x51, 0x86, 0x3f, 0xc5, 0x51, 0xaa, + 0x30, 0xef, 0x52, 0x00, 0x47, 0x7a, 0x04, 0x28, 0x53, 0xdd, 0xcd, 0x39, + 0x54, 0x0e, 0x84, 0x9a, 0x4c, 0x13, 0x4d, 0x2d, 0x8e, 0xa0, 0xd2, 0x1a, + 0x64, 0xe0, 0x8e, 0xf4, 0x6c, 0x46, 0xef, 0x55, 0xfc, 0xdc, 0x76, 0x34, + 0xdf, 0x3f, 0xfd, 0x93, 0x50, 0xd7, 0x99, 0xb2, 0x93, 0xea, 0x8b, 0x3e, + 0x41, 0xfe, 0x16, 0xa7, 0xc7, 0x2d, 0xd4, 0x1c, 0x29, 0x04, 0x55, 0x3f, + 0xb4, 0xb0, 0xe8, 0xa7, 0xf3, 0xa5, 0x17, 0x92, 0x0f, 0xe1, 0xcd, 0x24, + 0xe5, 0x1d, 0x8a, 0xf7, 0x24, 0xac, 0xcb, 0x8d, 0xa8, 0x5d, 0x7a, 0x11, + 0xf8, 0x53, 0x3f, 0xb4, 0x2e, 0x7b, 0xb7, 0xe9, 0x55, 0xfe, 0xdb, 0x27, + 0xf7, 0x05, 0x21, 0xba, 0x27, 0xac, 0x63, 0xf2, 0xab, 0xf6, 0xb5, 0x08, + 0x74, 0xa9, 0xf4, 0x64, 0xe6, 0xf6, 0xe4, 0x9f, 0xbe, 0x69, 0x86, 0xea, + 0x73, 0xff, 0x00, 0x2d, 0x48, 0xfc, 0x6a, 0x35, 0x9d, 0x03, 0x64, 0xc2, + 0xa6, 0xb5, 0x2d, 0xb5, 0xd5, 0xb7, 0x00, 0x7f, 0x67, 0xc0, 0xdf, 0x51, + 0x51, 0x3a, 0xb5, 0x12, 0xd1, 0x5f, 0xe6, 0x2f, 0x67, 0x1e, 0xe6, 0x69, + 0x9e, 0x53, 0xd6, 0x5f, 0xd6, 0x98, 0x5d, 0xbb, 0xc9, 0x5b, 0xb2, 0x78, + 0xa1, 0xdd, 0x71, 0x1d, 0x8d, 0xbc, 0x7e, 0xe1, 0x33, 0x59, 0x37, 0x77, + 0x33, 0x5e, 0xb6, 0x64, 0x61, 0xf4, 0x0a, 0x05, 0x4c, 0x2a, 0x55, 0x97, + 0xc5, 0x1b, 0x7c, 0xc1, 0xc5, 0x2d, 0x8a, 0xc5, 0xd7, 0xbc, 0x94, 0x9b, + 0xd3, 0xfb, 0xc6, 0x8f, 0xb3, 0xfb, 0xfe, 0x94, 0x9f, 0x66, 0x3e, 0xb5, + 0xa5, 0xc4, 0x06, 0x44, 0xf4, 0x27, 0xf1, 0xa4, 0xf3, 0x80, 0xe8, 0x9f, + 0x9d, 0x2f, 0xd9, 0x8f, 0xad, 0x1f, 0x67, 0x6a, 0x57, 0x1e, 0x82, 0x09, + 0x5d, 0x8f, 0xca, 0xa3, 0xf2, 0xa9, 0x53, 0xcd, 0xef, 0x8c, 0x52, 0x24, + 0x65, 0x0e, 0x6a, 0x5c, 0xd3, 0x15, 0xc5, 0x0a, 0x49, 0xc6, 0x72, 0x4f, + 0x61, 0x53, 0x8b, 0x67, 0x03, 0xe6, 0xc2, 0xfe, 0xa6, 0xa1, 0x49, 0x0c, + 0x6e, 0x19, 0x7a, 0x8f, 0x6a, 0xb4, 0x2f, 0xd4, 0xfd, 0xf8, 0xf9, 0xf5, + 0x15, 0x2f, 0x9a, 0xe3, 0x5b, 0x0b, 0x15, 0x8b, 0xc8, 0x70, 0xa1, 0x8d, + 0x5b, 0x4d, 0x12, 0x46, 0xe5, 0xb0, 0x3e, 0xbc, 0xd2, 0x5b, 0xea, 0xb1, + 0x44, 0x78, 0xc8, 0xfa, 0x8a, 0xbe, 0x9a, 0xe5, 0xb9, 0x1f, 0x31, 0x15, + 0x8c, 0xf9, 0xfa, 0x09, 0xdf, 0xa1, 0x4b, 0xfb, 0x32, 0xdd, 0x5f, 0x61, + 0x7c, 0xb0, 0xea, 0x14, 0x54, 0xab, 0xa5, 0x44, 0x7b, 0x1f, 0xce, 0xac, + 0x1b, 0xed, 0x36, 0x46, 0xdc, 0xc7, 0x0d, 0xea, 0x29, 0xeb, 0x77, 0x63, + 0xda, 0xe1, 0x80, 0xfa, 0xd6, 0x6f, 0x9c, 0x5e, 0xf1, 0x5f, 0xfb, 0x2a, + 0x1e, 0xe3, 0xf5, 0xa3, 0xfb, 0x1e, 0x23, 0xd0, 0x67, 0xf1, 0xab, 0x62, + 0xea, 0xcb, 0xfe, 0x7e, 0x0f, 0xe3, 0x4a, 0x2f, 0x6c, 0xd7, 0xa4, 0xf5, + 0x2d, 0xcf, 0xa0, 0xb5, 0x28, 0xb6, 0x8a, 0x83, 0xf8, 0x5b, 0xf0, 0x39, + 0xa8, 0x3f, 0xb2, 0x61, 0x67, 0xd8, 0xaf, 0xb5, 0xfd, 0x08, 0xad, 0x63, + 0xa8, 0xd9, 0xf7, 0xb8, 0x6a, 0x8f, 0xfb, 0x47, 0x4e, 0x46, 0xdc, 0x08, + 0x2d, 0xea, 0x69, 0xa7, 0x53, 0xb0, 0x6a, 0x65, 0xbe, 0x87, 0x2a, 0x72, + 0xb8, 0x3f, 0x8d, 0x53, 0x92, 0xc6, 0x68, 0xdb, 0x9e, 0x3e, 0xa2, 0xb7, + 0x9f, 0x5c, 0xb5, 0x1f, 0x74, 0xe6, 0xb3, 0xee, 0x35, 0x68, 0x65, 0xea, + 0x09, 0xfd, 0x2b, 0x68, 0x73, 0xf5, 0x43, 0xf7, 0x8c, 0xc9, 0x2d, 0xa5, + 0x8d, 0x37, 0x91, 0xc7, 0xb5, 0x41, 0x96, 0xab, 0xb3, 0x5f, 0xef, 0x42, + 0x8a, 0xa1, 0x56, 0xaa, 0x6f, 0x15, 0xaa, 0x4f, 0xa9, 0x5a, 0x91, 0xe5, + 0xd9, 0xb1, 0x81, 0xcf, 0x73, 0x56, 0x3f, 0xb3, 0xee, 0x8a, 0x6f, 0x10, + 0x87, 0x5f, 0x55, 0x35, 0x09, 0x61, 0x8e, 0x08, 0xfc, 0xeb, 0x5b, 0x41, + 0xd5, 0x63, 0xd3, 0xe7, 0xcd, 0xc1, 0x0d, 0x1f, 0xa6, 0x33, 0x53, 0x52, + 0x4e, 0x31, 0xba, 0x57, 0xf2, 0x29, 0x26, 0xcc, 0xa3, 0x04, 0xab, 0xd6, + 0x19, 0x05, 0x33, 0x0e, 0x3f, 0xbe, 0x3e, 0xa2, 0xbd, 0x10, 0xf8, 0xbf, + 0x41, 0x55, 0xe2, 0x0c, 0x9f, 0xf7, 0x2b, 0x27, 0x56, 0xf1, 0x1e, 0x97, + 0x7d, 0x01, 0x48, 0x2d, 0x95, 0x1b, 0xb3, 0x62, 0xb9, 0xe1, 0x89, 0x94, + 0x9d, 0x9d, 0x36, 0x8a, 0xe4, 0x7d, 0xce, 0x48, 0x4b, 0x20, 0xe9, 0x21, + 0xa9, 0x56, 0xf6, 0xed, 0x3e, 0xed, 0xc3, 0x8f, 0xa3, 0x11, 0x48, 0xcb, + 0x14, 0xac, 0x49, 0x90, 0x7e, 0x1c, 0x53, 0x96, 0x28, 0x07, 0xf1, 0x93, + 0xf8, 0xd7, 0x4b, 0x9a, 0x5b, 0x0f, 0xd9, 0xbe, 0xe3, 0x24, 0xba, 0xb9, + 0x98, 0xe6, 0x49, 0x19, 0xfe, 0xad, 0x9a, 0x8c, 0xb3, 0x9e, 0xc6, 0xad, + 0x8f, 0x20, 0x76, 0x06, 0x9c, 0x25, 0x89, 0x7a, 0x27, 0xe9, 0x4b, 0xda, + 0x37, 0xd0, 0x39, 0x17, 0x59, 0x14, 0xc0, 0x91, 0xba, 0x23, 0x7e, 0x55, + 0x32, 0x5a, 0xce, 0xff, 0x00, 0xc3, 0x8f, 0xad, 0x4f, 0xf6, 0xa0, 0x3a, + 0x2d, 0x21, 0xbc, 0x7e, 0xd8, 0x14, 0x9b, 0xa8, 0xf6, 0x41, 0x6a, 0x4b, + 0x76, 0x2a, 0x58, 0x3f, 0x56, 0x70, 0x29, 0x5e, 0x0b, 0x78, 0x87, 0xcf, + 0x96, 0xa8, 0x8d, 0xcc, 0x8d, 0xfc, 0x55, 0x1b, 0x48, 0xcd, 0xd4, 0x9f, + 0xce, 0x92, 0x85, 0x47, 0xbb, 0x0f, 0x69, 0x4d, 0x6c, 0x89, 0xbe, 0xdb, + 0x1c, 0x43, 0x11, 0xc6, 0x17, 0xdf, 0x15, 0x1b, 0x5d, 0x99, 0x3a, 0xbd, + 0x44, 0x71, 0xdc, 0x53, 0x70, 0x9e, 0x82, 0xb4, 0x8d, 0x28, 0xae, 0x86, + 0x72, 0xad, 0x26, 0x3f, 0x70, 0x3d, 0xc5, 0x28, 0xe7, 0xb8, 0xa8, 0x4f, + 0x96, 0x29, 0x85, 0xd2, 0xb4, 0xb1, 0x99, 0x64, 0x7d, 0x68, 0x27, 0x15, + 0x4c, 0xc9, 0xe9, 0x9a, 0x69, 0x76, 0x3d, 0xcd, 0x01, 0x62, 0xd3, 0x4a, + 0x16, 0xa2, 0x37, 0x0d, 0x9e, 0x05, 0x40, 0x49, 0x3d, 0xe9, 0xcb, 0x49, + 0xc8, 0x7c, 0xb6, 0x27, 0x59, 0x65, 0x6f, 0x4a, 0x90, 0x34, 0x87, 0xb8, + 0xa8, 0x43, 0x62, 0xa5, 0x59, 0x3d, 0xaa, 0x39, 0x98, 0x59, 0x12, 0x00, + 0xff, 0x00, 0xde, 0xab, 0x51, 0x12, 0x13, 0xad, 0x55, 0xf3, 0x05, 0x4f, + 0x11, 0xca, 0xd1, 0x7e, 0xe0, 0xd6, 0x85, 0x79, 0xdd, 0x83, 0xe6, 0x85, + 0x94, 0x91, 0xd6, 0x8b, 0x85, 0xef, 0x55, 0xd5, 0xf6, 0x9a, 0xd6, 0x4b, + 0x4b, 0xa2, 0x52, 0xba, 0x26, 0x66, 0x39, 0xa6, 0x13, 0x4e, 0xfb, 0xc2, + 0xa3, 0x61, 0x8a, 0x4b, 0x51, 0xa1, 0x37, 0x11, 0x48, 0x09, 0x1c, 0x83, + 0x8a, 0x32, 0x69, 0xbc, 0xd2, 0xb1, 0x69, 0x96, 0x63, 0xba, 0x74, 0x3d, + 0x6a, 0xd4, 0x77, 0xb1, 0xbf, 0x0d, 0xc1, 0xac, 0xce, 0x68, 0xcd, 0x27, + 0xae, 0xe0, 0x6d, 0x09, 0x14, 0xf2, 0x8e, 0x2a, 0x55, 0xb9, 0x99, 0x3e, + 0xec, 0x8c, 0x3f, 0x1a, 0xc1, 0x0e, 0xcb, 0xd0, 0x91, 0x52, 0xad, 0xd4, + 0xab, 0xde, 0x97, 0x2f, 0x66, 0x0e, 0x29, 0xee, 0x6f, 0xa6, 0xab, 0x3a, + 0x0c, 0x1d, 0xad, 0xf5, 0xa7, 0x1d, 0x72, 0x55, 0xff, 0x00, 0x96, 0x00, + 0xfd, 0x0d, 0x61, 0xad, 0xe9, 0xfe, 0x25, 0x06, 0xa4, 0x17, 0x51, 0x1e, + 0xa0, 0x8a, 0x77, 0x99, 0x9f, 0xb1, 0x87, 0x63, 0x53, 0xfe, 0x12, 0x29, + 0x47, 0x58, 0x00, 0xa5, 0x1e, 0x24, 0x1d, 0xe2, 0xac, 0xb3, 0x24, 0x4d, + 0xd2, 0x4f, 0xcc, 0x53, 0x4c, 0x48, 0xfd, 0x19, 0x0d, 0x2e, 0x79, 0x75, + 0x43, 0xf6, 0x14, 0xcb, 0xf3, 0xeb, 0xf3, 0xb8, 0xfd, 0xd6, 0xd5, 0xfc, + 0x2b, 0x36, 0x6b, 0xfb, 0xc9, 0xbe, 0xfd, 0xc1, 0xc7, 0xb1, 0xc5, 0x23, + 0x5b, 0x1e, 0xdf, 0xce, 0xa3, 0x36, 0xf2, 0x76, 0x06, 0xa6, 0xfd, 0xcd, + 0x23, 0x4a, 0x0b, 0x64, 0x44, 0x41, 0x27, 0x2c, 0xd9, 0x3f, 0x5a, 0x30, + 0xbe, 0xb4, 0xe3, 0x0c, 0x83, 0xf8, 0x4d, 0x30, 0xa3, 0x0e, 0xa0, 0xd2, + 0xd0, 0xd0, 0x72, 0xb2, 0x83, 0x92, 0x33, 0x53, 0xa3, 0x86, 0x35, 0x53, + 0x04, 0x76, 0x34, 0xa1, 0x88, 0xa7, 0x61, 0x5c, 0xd3, 0x56, 0xa7, 0x66, + 0xb3, 0x56, 0x76, 0x15, 0x28, 0xbb, 0xf5, 0x15, 0x42, 0x2f, 0x66, 0x8c, + 0xd5, 0x41, 0x76, 0xbd, 0xe9, 0xe2, 0xe5, 0x0f, 0x7a, 0x62, 0x2c, 0x66, + 0x8c, 0xd4, 0x3e, 0x7a, 0x1e, 0xf4, 0xbe, 0x6a, 0x9e, 0xe2, 0x8b, 0x81, + 0x36, 0x69, 0x33, 0x51, 0xef, 0x5f, 0x5a, 0x5d, 0xc3, 0xd4, 0x53, 0xb8, + 0x58, 0x93, 0x34, 0x99, 0xa6, 0xe4, 0x7a, 0xd1, 0x9a, 0x2e, 0x03, 0xb3, + 0x46, 0x69, 0xb9, 0xa3, 0x34, 0x5c, 0x56, 0x29, 0x16, 0x8f, 0x3f, 0xeb, + 0x5f, 0xf2, 0xa4, 0xdf, 0x1f, 0xfc, 0xf4, 0x7f, 0xca, 0x99, 0xe4, 0x36, + 0x7e, 0xeb, 0x7e, 0x54, 0x79, 0x0d, 0xfd, 0xd6, 0xfc, 0xa9, 0x0b, 0x98, + 0x7e, 0xe8, 0xbf, 0xe7, 0xa3, 0xd2, 0xee, 0x87, 0xfb, 0xef, 0x51, 0x79, + 0x0d, 0xfd, 0xd6, 0xfc, 0xa8, 0xfb, 0x3b, 0xff, 0x00, 0x75, 0xbf, 0x2a, + 0x03, 0x98, 0x93, 0x74, 0x1f, 0xde, 0x7a, 0x37, 0x5b, 0xff, 0x00, 0xb7, + 0xf9, 0xd4, 0x7e, 0x43, 0x7f, 0x75, 0xbf, 0x2a, 0x3c, 0x87, 0xfe, 0xeb, + 0x7e, 0x54, 0x58, 0x39, 0x89, 0x37, 0x5b, 0x7f, 0x75, 0xbf, 0x3a, 0x37, + 0x5b, 0xff, 0x00, 0xcf, 0x33, 0xf9, 0xd4, 0x7e, 0x43, 0xff, 0x00, 0x74, + 0xfe, 0x54, 0x79, 0x0d, 0xfd, 0xd6, 0xfc, 0xa8, 0xb0, 0x73, 0x12, 0xf9, + 0x90, 0x7f, 0xcf, 0x2f, 0xd6, 0x94, 0x4d, 0x10, 0xe9, 0x0a, 0xfe, 0x75, + 0x17, 0x90, 0xdf, 0xdd, 0x6f, 0xca, 0x8f, 0x21, 0xbf, 0xba, 0xdf, 0x95, + 0x16, 0x0e, 0x62, 0x6f, 0x3d, 0x7b, 0x45, 0x1d, 0x38, 0x5c, 0x91, 0xd1, + 0x23, 0x15, 0x5f, 0xc8, 0x7f, 0xee, 0xb7, 0xe5, 0x47, 0x90, 0xff, 0x00, + 0xdd, 0x6f, 0xca, 0x8b, 0x07, 0x31, 0x63, 0xed, 0x32, 0x1e, 0x9b, 0x05, + 0x27, 0x9d, 0x31, 0xfe, 0x35, 0xa8, 0x3c, 0x87, 0xfe, 0xe3, 0x7e, 0x54, + 0x79, 0x0f, 0xfd, 0xc6, 0xa0, 0x39, 0x91, 0x36, 0xf9, 0x4f, 0xfc, 0xb5, + 0xa6, 0x91, 0x29, 0xfe, 0x32, 0x7f, 0x1a, 0x8f, 0xc8, 0x93, 0xfb, 0xad, + 0x4b, 0xe4, 0x49, 0xfd, 0xd6, 0xa7, 0xaf, 0x70, 0xe6, 0x43, 0x8c, 0x6e, + 0x7b, 0xfe, 0xb4, 0xdf, 0x2d, 0xbd, 0x28, 0xf2, 0x24, 0xfe, 0xeb, 0x53, + 0x84, 0x72, 0x8f, 0xe1, 0x6a, 0x2d, 0xe6, 0x2e, 0x61, 0xbb, 0x1b, 0xd2, + 0x93, 0x63, 0x7a, 0x1a, 0x94, 0x2c, 0xbf, 0xdd, 0x34, 0xb8, 0x9b, 0xfb, + 0x86, 0x8b, 0x07, 0x31, 0x0e, 0xd6, 0xf4, 0xa3, 0x63, 0x7a, 0x1a, 0x9b, + 0x6c, 0xdf, 0xdc, 0xa3, 0x6c, 0xdf, 0xdd, 0xa4, 0x2e, 0x62, 0x1d, 0x8d, + 0xe8, 0x69, 0x76, 0x37, 0xa5, 0x4b, 0xb2, 0x7f, 0x4a, 0x3c, 0xb9, 0xcd, + 0x1a, 0x85, 0xc8, 0xb6, 0x1a, 0x50, 0x94, 0xff, 0x00, 0x26, 0x63, 0xde, + 0x8f, 0xb3, 0x48, 0x7a, 0x9a, 0x7a, 0x80, 0xdc, 0x28, 0xea, 0x69, 0x0c, + 0x80, 0x74, 0xa7, 0xfd, 0x95, 0xbb, 0xd3, 0x85, 0xb5, 0x1a, 0x75, 0x62, + 0xd0, 0x80, 0xb1, 0x6a, 0x74, 0x71, 0x92, 0x7a, 0x55, 0x85, 0x80, 0x0e, + 0xd5, 0x20, 0x5c, 0x76, 0xa7, 0xcf, 0x18, 0xec, 0x17, 0xec, 0x11, 0xa6, + 0x05, 0x2b, 0xd2, 0xf3, 0xe9, 0x48, 0x41, 0xf4, 0xac, 0xa5, 0x2b, 0x82, + 0x44, 0x0c, 0x2a, 0xbb, 0xc7, 0xdc, 0x55, 0xd2, 0x99, 0xa6, 0x98, 0x8d, + 0x4a, 0x76, 0x28, 0xa3, 0x92, 0x29, 0x43, 0xd5, 0xa3, 0x0e, 0x7b, 0x53, + 0x0d, 0xb6, 0x7b, 0x56, 0x8a, 0xa0, 0xac, 0x46, 0x25, 0xc5, 0x38, 0x4b, + 0x47, 0xd9, 0x4f, 0xbd, 0x27, 0xd9, 0x9f, 0xde, 0xab, 0xda, 0x21, 0x72, + 0x8f, 0x12, 0x0a, 0x76, 0xf5, 0xa8, 0xbe, 0xcf, 0x25, 0x27, 0x91, 0x2f, + 0xa5, 0x1c, 0xf1, 0x0e, 0x52, 0x60, 0x47, 0x63, 0x4e, 0xdf, 0xee, 0x2a, + 0xbf, 0x93, 0x2f, 0xa5, 0x1e, 0x5c, 0xc3, 0xf8, 0x68, 0xe6, 0x88, 0x72, + 0x93, 0xe4, 0x1e, 0xc2, 0x8c, 0x2f, 0x71, 0x50, 0xec, 0x9b, 0xfb, 0xa6, + 0x8d, 0xb3, 0x7f, 0x70, 0xd1, 0x78, 0x85, 0x99, 0x36, 0xd5, 0xa4, 0xd8, + 0xbe, 0xb5, 0x1e, 0x26, 0xfe, 0xe1, 0xa3, 0xf7, 0xdf, 0xdc, 0x34, 0xbd, + 0xd1, 0xde, 0x44, 0x9b, 0x17, 0xda, 0x8d, 0x82, 0xa3, 0xcc, 0xbf, 0xf3, + 0xcc, 0xd2, 0xee, 0x97, 0xfe, 0x79, 0x9a, 0x2d, 0x1e, 0xe3, 0xe6, 0x90, + 0xed, 0x94, 0xbb, 0x0f, 0xad, 0x33, 0x74, 0x9f, 0xf3, 0xcc, 0xd1, 0xba, + 0x4f, 0xf9, 0xe6, 0x68, 0xd3, 0xb8, 0x5d, 0xf6, 0x1f, 0xb5, 0xc7, 0x7a, + 0x3e, 0x7f, 0x5f, 0xd2, 0x99, 0xba, 0x4f, 0xf9, 0xe6, 0xdf, 0x95, 0x1b, + 0xa4, 0xfe, 0xe3, 0x7e, 0x54, 0x7c, 0xc2, 0xfe, 0x44, 0x9b, 0x9f, 0xda, + 0x8d, 0xcf, 0xe8, 0x2a, 0x3d, 0xef, 0xfd, 0xc6, 0xfc, 0xa8, 0xde, 0xff, + 0x00, 0xdc, 0x6f, 0xca, 0x8f, 0x98, 0xaf, 0xe4, 0x49, 0xbd, 0xbd, 0x05, + 0x1b, 0xdb, 0xd0, 0x7e, 0x75, 0x1e, 0xf7, 0xfe, 0xe3, 0x7e, 0x54, 0x6f, + 0x7f, 0xee, 0x37, 0xe5, 0x47, 0xcc, 0x34, 0xec, 0x49, 0xbc, 0xff, 0x00, + 0x74, 0x7e, 0x74, 0x6f, 0x3f, 0xdd, 0xfd, 0x6a, 0x3d, 0xef, 0xfd, 0xc6, + 0xfc, 0xa9, 0x77, 0xbf, 0xf7, 0x1b, 0xf2, 0xa3, 0xe6, 0x1a, 0x76, 0x1f, + 0xbc, 0xff, 0x00, 0x77, 0xf5, 0xa4, 0xde, 0x7f, 0xbb, 0xfa, 0xd3, 0x77, + 0xb7, 0xf7, 0x1b, 0xf2, 0xa3, 0x7b, 0x7f, 0x71, 0xbf, 0x2a, 0x3e, 0x61, + 0xa7, 0x61, 0xfb, 0xbf, 0xd9, 0xa3, 0x7f, 0xfb, 0x26, 0x99, 0xe6, 0x37, + 0xf7, 0x1b, 0xf2, 0xa3, 0x7b, 0x7f, 0x71, 0xbf, 0x2a, 0x3e, 0x61, 0xa7, + 0x61, 0xfb, 0xff, 0x00, 0xd9, 0xa3, 0x7f, 0xfb, 0x26, 0x99, 0xbd, 0xbf, + 0xe7, 0x9b, 0x7e, 0x54, 0x9b, 0xdb, 0xfe, 0x79, 0xb7, 0xe5, 0x47, 0xcc, + 0x34, 0xec, 0x49, 0xbf, 0xfd, 0x9a, 0x5d, 0xff, 0x00, 0xec, 0x9a, 0x8b, + 0x7b, 0x7f, 0x71, 0xbf, 0x2a, 0x37, 0x37, 0xf7, 0x1b, 0xf2, 0xa0, 0x2e, + 0xbb, 0x12, 0xef, 0xff, 0x00, 0x66, 0x93, 0xcc, 0xff, 0x00, 0x66, 0x99, + 0xbd, 0xbf, 0xb8, 0xdf, 0x95, 0x1b, 0xdb, 0xfb, 0x8d, 0xf9, 0x50, 0x1a, + 0x76, 0x1f, 0xbf, 0xfd, 0x9f, 0xd6, 0x93, 0x24, 0xff, 0x00, 0x0f, 0xeb, + 0x4d, 0xde, 0xdf, 0xdc, 0x6f, 0xca, 0x8d, 0xef, 0xfd, 0xc6, 0xfc, 0xa8, + 0xf9, 0x86, 0x9d, 0x85, 0xeb, 0xdb, 0xf5, 0xa6, 0xed, 0xf6, 0xfd, 0x69, + 0x77, 0xbf, 0xf7, 0x1b, 0xf2, 0xa3, 0x7b, 0xff, 0x00, 0xcf, 0x36, 0xfc, + 0xa9, 0xdf, 0xcc, 0x34, 0xec, 0x37, 0x67, 0xb0, 0xfc, 0xe8, 0xd9, 0xed, + 0x4e, 0xde, 0xff, 0x00, 0xf3, 0xcd, 0xbf, 0x2a, 0x37, 0xc9, 0xff, 0x00, + 0x3c, 0xdb, 0xf2, 0xa5, 0xf3, 0x0f, 0x90, 0xdf, 0x2c, 0xd2, 0x79, 0x46, + 0x9f, 0xba, 0x4f, 0xf9, 0xe6, 0xdf, 0x95, 0x1b, 0xa4, 0xff, 0x00, 0x9e, + 0x4d, 0xf9, 0x51, 0xf3, 0x0b, 0xf9, 0x0c, 0xf2, 0x5a, 0x97, 0xc9, 0x6f, + 0x5a, 0x76, 0x65, 0xff, 0x00, 0x9e, 0x4d, 0xf9, 0x51, 0x99, 0xbf, 0xe7, + 0x93, 0x7e, 0x54, 0x69, 0xdc, 0x35, 0xec, 0x37, 0xcb, 0x90, 0x77, 0xa7, + 0x04, 0x93, 0xfb, 0xf4, 0x9f, 0xbf, 0xff, 0x00, 0x9e, 0x4d, 0xf9, 0x52, + 0xe2, 0x7f, 0xf9, 0xe4, 0xdf, 0x95, 0x17, 0x5d, 0xc3, 0x5e, 0xc3, 0x82, + 0xb7, 0x77, 0x14, 0xb8, 0xf7, 0xa6, 0x62, 0x7f, 0xf9, 0xe4, 0xdf, 0x95, + 0x1b, 0x67, 0xff, 0x00, 0x9e, 0x4d, 0xf9, 0x53, 0xba, 0xee, 0x2b, 0x32, + 0x4e, 0x3d, 0x69, 0x38, 0xa8, 0xca, 0x5c, 0x7f, 0xcf, 0x26, 0xa4, 0xf2, + 0xee, 0x3f, 0xe7, 0x9b, 0x7e, 0x54, 0x73, 0x47, 0xb8, 0xb9, 0x59, 0x21, + 0xc5, 0x37, 0x62, 0x9a, 0x4f, 0x2a, 0xe3, 0xfe, 0x79, 0x9f, 0xca, 0x93, + 0xca, 0xb9, 0xfe, 0xe1, 0xfc, 0xa8, 0xe7, 0x8f, 0x71, 0xf2, 0xb1, 0x7c, + 0xb5, 0xa4, 0x31, 0x25, 0x1e, 0x45, 0xc1, 0xfe, 0x03, 0xf9, 0x51, 0xf6, + 0x69, 0xcf, 0xf0, 0x9f, 0xca, 0x8e, 0x78, 0xf7, 0x0e, 0x56, 0x30, 0xc6, + 0x9e, 0xb4, 0x9b, 0x12, 0xa4, 0xfb, 0x24, 0xff, 0x00, 0xdd, 0x3f, 0x95, + 0x1f, 0x63, 0x9b, 0xd1, 0xbf, 0x2a, 0x5c, 0xf1, 0x1d, 0x99, 0x09, 0x54, + 0xa4, 0xc8, 0x15, 0x60, 0x59, 0x49, 0xdd, 0x5b, 0xf2, 0xa7, 0x0b, 0x26, + 0xfe, 0xeb, 0x7e, 0x54, 0x9d, 0x48, 0x8e, 0xc5, 0x5d, 0xc6, 0xa4, 0x4d, + 0xc6, 0xac, 0x8b, 0x56, 0x1f, 0xc0, 0x7f, 0x2a, 0x78, 0x81, 0x87, 0xf0, + 0x1f, 0xca, 0xa1, 0xcc, 0x2c, 0x42, 0xab, 0x56, 0x23, 0xe0, 0x50, 0x22, + 0x71, 0xfc, 0x2d, 0xf9, 0x53, 0xb6, 0x3f, 0xf7, 0x5b, 0xf2, 0xa9, 0xb8, + 0x9a, 0x19, 0x22, 0xee, 0x15, 0x51, 0xe2, 0x20, 0xf4, 0xab, 0xfb, 0x1b, + 0xfb, 0xad, 0xf9, 0x52, 0x18, 0x98, 0xff, 0x00, 0x03, 0x7e, 0x55, 0xb4, + 0x6a, 0x25, 0xa3, 0x25, 0x5d, 0x19, 0xc0, 0xb2, 0xd3, 0x84, 0x83, 0xbd, + 0x5b, 0x36, 0xc4, 0xff, 0x00, 0x0b, 0x7e, 0x54, 0xc3, 0x66, 0xc7, 0xf8, + 0x5b, 0xf2, 0xa7, 0xee, 0x3d, 0x99, 0x44, 0x39, 0x07, 0xd2, 0x93, 0x68, + 0x3d, 0xea, 0x53, 0x64, 0xfd, 0x81, 0xfc, 0xa9, 0x3e, 0xc7, 0x28, 0xe8, + 0x0f, 0xe5, 0x45, 0xfc, 0xc5, 0x62, 0x2d, 0x94, 0x9b, 0x6a, 0x6f, 0xb2, + 0xcf, 0xe8, 0x7f, 0x2a, 0x3e, 0xcd, 0x3f, 0xf7, 0x4f, 0xe5, 0x45, 0xc0, + 0x83, 0x6d, 0x18, 0xa9, 0xbe, 0xcf, 0x3f, 0xf7, 0x0f, 0xe5, 0x47, 0x91, + 0x3f, 0xfc, 0xf3, 0x3f, 0x95, 0x17, 0x1e, 0xa4, 0x18, 0x34, 0x60, 0xd4, + 0xfe, 0x44, 0xdf, 0xf3, 0xc8, 0xd1, 0xe4, 0xcd, 0xff, 0x00, 0x3c, 0x8d, + 0x17, 0x43, 0xbb, 0x20, 0xe6, 0x8e, 0x6a, 0x6f, 0x22, 0x5f, 0xf9, 0xe4, + 0xd4, 0x79, 0x32, 0xff, 0x00, 0xcf, 0x26, 0xa2, 0xe8, 0x2e, 0xc8, 0xf7, + 0x30, 0xe8, 0x4d, 0x2f, 0x9b, 0x20, 0xfe, 0x23, 0x4f, 0xf2, 0x24, 0xff, + 0x00, 0x9e, 0x4d, 0xf9, 0x51, 0xe4, 0x3f, 0xfc, 0xf2, 0x7f, 0xca, 0x8b, + 0x85, 0xc4, 0x17, 0x12, 0x8f, 0xe2, 0xa5, 0xfb, 0x54, 0xbd, 0xc8, 0x3f, + 0x85, 0x1e, 0x4b, 0xff, 0x00, 0xcf, 0x37, 0xfc, 0xa8, 0xf2, 0x5f, 0xfe, + 0x79, 0xbf, 0xe5, 0x46, 0x81, 0x71, 0x7e, 0xd2, 0xdd, 0xd5, 0x4f, 0xe1, + 0x49, 0xe7, 0x8e, 0xf1, 0x27, 0xe5, 0x47, 0x92, 0xff, 0x00, 0xdc, 0x7f, + 0xca, 0x8f, 0x25, 0xbf, 0xb8, 0xff, 0x00, 0x95, 0x2d, 0x03, 0x99, 0x87, + 0x9c, 0x87, 0xac, 0x2b, 0x49, 0xbe, 0x23, 0xd6, 0x2f, 0xd6, 0x8f, 0x25, + 0xbf, 0xb8, 0xdf, 0x95, 0x2f, 0x94, 0x7f, 0xb8, 0xdf, 0x95, 0x16, 0x43, + 0xe6, 0x62, 0x66, 0x1f, 0xf9, 0xe6, 0x7f, 0x3a, 0x4c, 0xc1, 0xff, 0x00, + 0x3c, 0xdb, 0xf3, 0xa7, 0x79, 0x47, 0xfb, 0x8d, 0xf9, 0x51, 0xe5, 0xff, + 0x00, 0xb0, 0xdf, 0x95, 0x16, 0x41, 0xcc, 0x27, 0xee, 0x3f, 0xba, 0xdf, + 0x9d, 0x18, 0x87, 0xd1, 0xe9, 0xde, 0x59, 0xfe, 0xe3, 0x7e, 0x54, 0x9b, + 0x0f, 0xf7, 0x5b, 0xf2, 0xa0, 0x39, 0x84, 0xc4, 0x5e, 0xaf, 0x46, 0x23, + 0xfe, 0xf3, 0xfe, 0x54, 0xbe, 0x5b, 0x7f, 0x75, 0xbf, 0x2a, 0x4f, 0x29, + 0xbd, 0x1b, 0xf2, 0xa0, 0x39, 0x85, 0xfd, 0xdf, 0xf7, 0xdf, 0xf2, 0xa3, + 0x31, 0xff, 0x00, 0xcf, 0x47, 0xfc, 0xa9, 0xbe, 0x4b, 0x7a, 0x37, 0xe5, + 0x49, 0xe4, 0xb7, 0xa3, 0x7e, 0x54, 0x07, 0x30, 0xfd, 0xd1, 0xff, 0x00, + 0xcf, 0x57, 0xfc, 0xa8, 0xdd, 0x1e, 0x7f, 0xd6, 0xbf, 0xe5, 0x51, 0xf9, + 0x0d, 0xe8, 0xdf, 0x95, 0x02, 0x06, 0xcf, 0xdd, 0x6f, 0xca, 0x80, 0xe6, + 0x3f, 0xff, 0xd9 +}; +unsigned int chromatic_jpg_len = 39351; diff --git a/assets/hdr/01_directional.h b/assets/hdr/01_directional.h new file mode 100644 index 0000000..c5f70c9 --- /dev/null +++ b/assets/hdr/01_directional.h @@ -0,0 +1,2882 @@ +unsigned char directional_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x4b, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x30, 0x36, + 0x3a, 0x33, 0x33, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x34, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, + 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, + 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, + 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, + 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, + 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, + 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xf6, 0xf1, 0x12, 0x60, 0x7c, 0x8b, 0xf9, 0x52, 0xf9, 0x49, + 0xfd, 0xc5, 0xfc, 0xaa, 0x41, 0xd0, 0x51, 0x40, 0x11, 0xf9, 0x49, 0xfd, + 0xc5, 0xfc, 0xa8, 0xf2, 0x93, 0xfb, 0xab, 0xf9, 0x54, 0x94, 0x50, 0x04, + 0x7e, 0x52, 0x7f, 0x71, 0x7f, 0x2a, 0x3c, 0xa5, 0xfe, 0xe8, 0xfc, 0xaa, + 0x4a, 0x28, 0x02, 0x3f, 0x29, 0x7f, 0xba, 0x3f, 0x2a, 0x3c, 0xa5, 0xfe, + 0xea, 0xfe, 0x55, 0x25, 0x14, 0x00, 0xcf, 0x2d, 0x7f, 0xba, 0xbf, 0x95, + 0x1e, 0x5a, 0x7f, 0x71, 0x7f, 0x2a, 0x7d, 0x2d, 0x00, 0x47, 0xe5, 0xa7, + 0xf7, 0x47, 0xe5, 0x49, 0xe5, 0x27, 0xf7, 0x47, 0xe5, 0x52, 0xe2, 0x92, + 0x80, 0x23, 0xf2, 0x93, 0xfb, 0xa3, 0xf2, 0xa3, 0xca, 0x4f, 0xee, 0x8f, + 0xca, 0xa5, 0xc5, 0x18, 0xa0, 0x08, 0xbc, 0xa4, 0xfe, 0xea, 0xfe, 0x54, + 0x79, 0x4b, 0xfd, 0xc1, 0xf9, 0x54, 0xb8, 0xa3, 0x14, 0x01, 0x1f, 0x96, + 0xbf, 0xdd, 0x1f, 0x95, 0x1e, 0x5a, 0xff, 0x00, 0x74, 0x7e, 0x55, 0x26, + 0x28, 0xa0, 0x08, 0xfc, 0xb5, 0xfe, 0xe8, 0xfc, 0xa9, 0x3c, 0xb5, 0xfe, + 0xea, 0xfe, 0x55, 0x26, 0x28, 0xc5, 0x00, 0x47, 0xe5, 0xa7, 0xf7, 0x17, + 0xf2, 0xa3, 0xcb, 0x5f, 0xee, 0x0f, 0xca, 0xa4, 0xc5, 0x18, 0xa0, 0x08, + 0xfc, 0xa4, 0xfe, 0xe0, 0xfc, 0xa8, 0xf2, 0x93, 0xfb, 0x83, 0xf2, 0xa9, + 0x31, 0x46, 0x28, 0x02, 0x3f, 0x29, 0x3f, 0xba, 0xbf, 0x95, 0x1e, 0x52, + 0x7f, 0x75, 0x7f, 0x2a, 0x92, 0x8c, 0x50, 0x04, 0x7e, 0x52, 0x7f, 0x75, + 0x7f, 0x2a, 0x4f, 0x29, 0x3f, 0xb8, 0xbf, 0x95, 0x4b, 0x8a, 0x28, 0x02, + 0x2f, 0x29, 0x3f, 0xb8, 0xbf, 0x95, 0x1e, 0x5a, 0x7f, 0x71, 0x7f, 0x2a, + 0x97, 0x14, 0x98, 0xa0, 0x08, 0xfc, 0xb4, 0xfe, 0xe2, 0xfe, 0x54, 0x79, + 0x69, 0xfd, 0xc5, 0xfc, 0xaa, 0x4c, 0x51, 0x8a, 0x00, 0x8f, 0xcb, 0x4f, + 0xee, 0x2f, 0xe5, 0x47, 0x96, 0x9f, 0xdc, 0x1f, 0x95, 0x3e, 0x8a, 0x00, + 0x67, 0x96, 0x9f, 0xdc, 0x5f, 0xca, 0x8f, 0x2d, 0x3f, 0xb8, 0xbf, 0x95, + 0x3a, 0x8a, 0x00, 0x6f, 0x96, 0x9f, 0xdc, 0x5f, 0xca, 0x93, 0xcb, 0x4f, + 0xee, 0x2f, 0xe5, 0x4f, 0xa3, 0x14, 0x00, 0xcf, 0x2d, 0x3f, 0xb8, 0xbf, + 0x95, 0x1e, 0x5a, 0x7f, 0x71, 0x7f, 0x2a, 0x7d, 0x18, 0xa0, 0x06, 0x79, + 0x69, 0xfd, 0xd5, 0xfc, 0xa8, 0xf2, 0xd3, 0xfb, 0x8b, 0xf9, 0x53, 0xf1, + 0x45, 0x00, 0x33, 0xcb, 0x4f, 0xee, 0x2f, 0xe5, 0x47, 0x96, 0x9f, 0xdc, + 0x5f, 0xca, 0x9d, 0x45, 0x00, 0x37, 0xcb, 0x4f, 0xee, 0x2f, 0xe5, 0x49, + 0xe5, 0xa7, 0xf7, 0x57, 0xf2, 0xa7, 0xd1, 0x40, 0x0c, 0xf2, 0xd3, 0xfb, + 0x8b, 0xf9, 0x51, 0xe5, 0xa7, 0xf7, 0x17, 0xf2, 0xa7, 0xd2, 0x50, 0x02, + 0x79, 0x69, 0xfd, 0xc5, 0xfc, 0xa9, 0x3c, 0xb5, 0xfe, 0xe2, 0xfe, 0x54, + 0xea, 0x5a, 0x00, 0x67, 0x96, 0x9f, 0xdc, 0x5f, 0xca, 0x8d, 0x89, 0xfd, + 0xc5, 0xfc, 0xa9, 0xdc, 0xd1, 0x40, 0x0d, 0xf2, 0xd7, 0xfb, 0x8b, 0xf9, + 0x51, 0xe5, 0xa7, 0xf7, 0x57, 0xf2, 0xa7, 0x51, 0x40, 0x0d, 0xd8, 0x9f, + 0xdd, 0x5f, 0xca, 0x97, 0x62, 0x7f, 0x75, 0x7f, 0x2a, 0x5a, 0x4a, 0x00, + 0x4d, 0x8b, 0xfd, 0xc5, 0xfc, 0xa8, 0xd8, 0x9f, 0xdd, 0x1f, 0x95, 0x2d, + 0x14, 0x00, 0x9b, 0x13, 0xfb, 0xab, 0xf9, 0x51, 0xe5, 0xaf, 0xf7, 0x57, + 0xf2, 0xa5, 0xa2, 0x80, 0x13, 0xcb, 0x5f, 0xee, 0x2f, 0xe5, 0x49, 0xb1, + 0x3f, 0xb8, 0xbf, 0x95, 0x2d, 0x14, 0x00, 0x6c, 0x4f, 0xee, 0x2f, 0xe5, + 0x46, 0xc4, 0xfe, 0xe2, 0xfe, 0x54, 0xb4, 0x50, 0x02, 0x79, 0x69, 0xfd, + 0xc5, 0xfc, 0xa9, 0x3c, 0xb4, 0xfe, 0xe2, 0xfe, 0x54, 0xb4, 0x50, 0x02, + 0x6c, 0x8f, 0xfb, 0x8b, 0xf9, 0x51, 0xb2, 0x3f, 0xee, 0x2f, 0xe5, 0x4b, + 0x49, 0x40, 0x06, 0xc8, 0xff, 0x00, 0xb8, 0xbf, 0x95, 0x1b, 0x13, 0xfb, + 0x8b, 0xf9, 0x51, 0x45, 0x00, 0x1b, 0x53, 0xfb, 0xab, 0xf9, 0x52, 0xed, + 0x5f, 0xee, 0xaf, 0xe5, 0x49, 0x45, 0x00, 0x1b, 0x57, 0xfb, 0xab, 0xf9, + 0x51, 0xb1, 0x7f, 0xba, 0xbf, 0x95, 0x14, 0x50, 0x01, 0xb5, 0x7f, 0xba, + 0xbf, 0x95, 0x1b, 0x53, 0xfb, 0x8b, 0xf9, 0x51, 0x46, 0x68, 0x00, 0xda, + 0x9f, 0xdc, 0x5f, 0xca, 0x8d, 0xa9, 0xfd, 0xd5, 0xfc, 0xa8, 0xcd, 0x19, + 0xa0, 0x03, 0x6a, 0xff, 0x00, 0x75, 0x7f, 0x2a, 0x36, 0xaf, 0xf7, 0x57, + 0xf2, 0xa3, 0x22, 0x8c, 0x8f, 0x5a, 0x00, 0x36, 0xaf, 0xf7, 0x47, 0xe5, + 0x46, 0xd5, 0xfe, 0xea, 0xfe, 0x54, 0x66, 0x8c, 0xd0, 0x01, 0xb5, 0x7f, + 0xba, 0xbf, 0x95, 0x1b, 0x57, 0xfb, 0xab, 0xf9, 0x51, 0x9a, 0x33, 0x40, + 0x06, 0xd5, 0xfe, 0xe8, 0xfc, 0xa8, 0xda, 0xbf, 0xdd, 0x1f, 0x95, 0x19, + 0xa3, 0x34, 0x00, 0x6d, 0x5f, 0xee, 0x8f, 0xca, 0x8d, 0xab, 0xfd, 0xd1, + 0xf9, 0x51, 0x9a, 0x33, 0x40, 0x06, 0xc4, 0xfe, 0xe8, 0xfc, 0xa9, 0x76, + 0x27, 0xf7, 0x47, 0xe5, 0x46, 0xea, 0x4d, 0xd4, 0x00, 0xbb, 0x53, 0xfb, + 0xab, 0xf9, 0x51, 0xb5, 0x3f, 0xba, 0xbf, 0x95, 0x26, 0x68, 0xcd, 0x00, + 0x2e, 0xd4, 0xfe, 0xea, 0xfe, 0x54, 0x6d, 0x5f, 0xee, 0xaf, 0xe5, 0x49, + 0x9a, 0x5c, 0xd0, 0x01, 0xb1, 0x7f, 0xba, 0xbf, 0x95, 0x1b, 0x57, 0xfb, + 0xab, 0xf9, 0x51, 0x9a, 0x33, 0x40, 0x06, 0xd5, 0xfe, 0xe2, 0xfe, 0x54, + 0x6d, 0x4f, 0xee, 0xaf, 0xe5, 0x4b, 0x9a, 0x28, 0x00, 0xd8, 0x9f, 0xdd, + 0x5f, 0xca, 0x8d, 0x89, 0xfd, 0xd5, 0xfc, 0xa8, 0xcd, 0x2e, 0x68, 0x01, + 0x36, 0x27, 0xf7, 0x47, 0xe5, 0x46, 0xc4, 0xfe, 0xea, 0xfe, 0x54, 0xb9, + 0xa2, 0x80, 0x13, 0x62, 0x7f, 0x75, 0x7f, 0x2a, 0x36, 0x27, 0xf7, 0x57, + 0xf2, 0xa5, 0xa2, 0x80, 0x13, 0x62, 0x7f, 0x75, 0x7f, 0x2a, 0x36, 0x27, + 0xf7, 0x57, 0xf2, 0xa5, 0xa5, 0xa0, 0x06, 0xec, 0x4f, 0xee, 0x8f, 0xca, + 0x97, 0xcb, 0x4f, 0xee, 0xaf, 0xe5, 0x4b, 0x45, 0x00, 0x27, 0x96, 0x9f, + 0xdd, 0x5f, 0xca, 0x8d, 0x89, 0xfd, 0xd5, 0xfc, 0xa9, 0xd4, 0x50, 0x03, + 0x7c, 0xb4, 0xfe, 0xe2, 0xfe, 0x54, 0x79, 0x69, 0xfd, 0xc5, 0xfc, 0xa9, + 0xd4, 0x50, 0x03, 0x7c, 0xb4, 0xfe, 0xe2, 0xfe, 0x54, 0x79, 0x69, 0xfd, + 0xc5, 0xfc, 0xa9, 0xd4, 0xb4, 0x00, 0xcf, 0x2d, 0x3f, 0xb8, 0xbf, 0x95, + 0x1e, 0x5a, 0xff, 0x00, 0x75, 0x7f, 0x2a, 0x7d, 0x14, 0x00, 0xdf, 0x2d, + 0x7f, 0xba, 0xbf, 0x95, 0x1e, 0x5a, 0xff, 0x00, 0x70, 0x7e, 0x54, 0xea, + 0x5a, 0x00, 0x66, 0xc5, 0xfe, 0xe8, 0xfc, 0xa8, 0xf2, 0xd7, 0xfb, 0xa3, + 0xf2, 0xa7, 0xd1, 0x40, 0x0c, 0xf2, 0xd7, 0xfb, 0xa3, 0xf2, 0xa3, 0xcb, + 0x4f, 0xee, 0xaf, 0xe5, 0x4f, 0xa2, 0x80, 0x19, 0xe5, 0xa7, 0xf7, 0x17, + 0xf2, 0xa3, 0xcb, 0x4f, 0xee, 0x2f, 0xe5, 0x4f, 0xa5, 0xa0, 0x08, 0xfc, + 0xb4, 0xfe, 0xe0, 0xfc, 0xa8, 0xf2, 0xd3, 0xfb, 0x83, 0xf2, 0xa9, 0x29, + 0x28, 0x01, 0x9e, 0x52, 0x7f, 0x71, 0x7f, 0x2a, 0x43, 0x0c, 0x7b, 0x4e, + 0x51, 0x7f, 0x2a, 0x96, 0x90, 0xf4, 0x34, 0x00, 0xa3, 0xa5, 0x14, 0xe1, + 0xd2, 0x8c, 0x50, 0x02, 0x62, 0x8a, 0x75, 0x14, 0x00, 0xdc, 0x51, 0x4e, + 0xc5, 0x14, 0x00, 0xda, 0x29, 0xd4, 0x62, 0x80, 0x1b, 0x45, 0x3b, 0x14, + 0x62, 0x80, 0x1b, 0x45, 0x3b, 0x14, 0x62, 0x80, 0x12, 0x8a, 0x5c, 0x51, + 0x8a, 0x00, 0x4a, 0x29, 0x71, 0x49, 0x8a, 0x00, 0x28, 0xa2, 0x96, 0x80, + 0x12, 0x8a, 0x5a, 0x28, 0x01, 0x31, 0x46, 0x29, 0x71, 0x46, 0x28, 0x01, + 0x28, 0xc5, 0x2d, 0x14, 0x00, 0xdc, 0x51, 0x4e, 0xa3, 0x14, 0x00, 0xda, + 0x31, 0x4b, 0x8a, 0x28, 0x01, 0x28, 0xa5, 0xc5, 0x14, 0x00, 0xda, 0x29, + 0x68, 0xa0, 0x06, 0xd1, 0x4b, 0x45, 0x00, 0x25, 0x26, 0x29, 0xd8, 0xa2, + 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xa4, 0xa0, 0x04, 0xa2, 0x97, 0x14, 0x62, + 0x80, 0x1b, 0x45, 0x2e, 0x28, 0xc5, 0x00, 0x26, 0x28, 0xa5, 0xa2, 0x80, + 0x13, 0x14, 0x52, 0xe2, 0x8a, 0x00, 0x4c, 0x51, 0x8a, 0x28, 0xa0, 0x03, + 0x14, 0x98, 0xa5, 0xa2, 0x80, 0x12, 0x8c, 0x51, 0x45, 0x00, 0x25, 0x14, + 0xb4, 0x50, 0x02, 0x51, 0x45, 0x14, 0x00, 0x52, 0x52, 0xd1, 0x40, 0x09, + 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x02, 0x51, 0x41, 0xa2, 0x80, + 0x0a, 0x4a, 0x28, 0xa0, 0x02, 0x8a, 0x29, 0x28, 0x01, 0x68, 0xcd, 0x25, + 0x14, 0x00, 0xb4, 0x99, 0xa2, 0x92, 0x80, 0x17, 0x34, 0x66, 0x92, 0x93, + 0x34, 0x00, 0xea, 0x4c, 0xd3, 0x73, 0x46, 0x68, 0x01, 0xd9, 0xa4, 0xcd, + 0x37, 0x34, 0x6e, 0xa0, 0x07, 0xe6, 0x93, 0x22, 0x99, 0x91, 0x49, 0x9e, + 0x68, 0x02, 0x4c, 0xd0, 0x0d, 0x47, 0x93, 0x9a, 0x37, 0x50, 0x04, 0x99, + 0xf7, 0xa4, 0xdd, 0xef, 0x51, 0xee, 0xa3, 0x77, 0x34, 0x01, 0x2e, 0xea, + 0x4d, 0xd5, 0x11, 0x6a, 0x37, 0x50, 0x04, 0xbb, 0xa8, 0xdf, 0x50, 0xee, + 0xf7, 0xa5, 0xcd, 0x00, 0x4b, 0xba, 0x97, 0x77, 0x15, 0x0e, 0xfc, 0x51, + 0xbb, 0x9a, 0x00, 0x9b, 0x75, 0x1b, 0xaa, 0x2d, 0xde, 0xf4, 0x66, 0x80, + 0x25, 0xdd, 0x4b, 0xba, 0xa0, 0x0d, 0x4e, 0x0f, 0xef, 0x40, 0x12, 0xe6, + 0x97, 0x35, 0x16, 0xfa, 0x50, 0xd4, 0x01, 0x26, 0x69, 0x73, 0x51, 0x86, + 0xa5, 0xdd, 0x40, 0x0f, 0xa5, 0xcd, 0x33, 0x75, 0x2e, 0x68, 0x01, 0xd9, + 0xa5, 0xcd, 0x33, 0x34, 0xb9, 0xa0, 0x07, 0x66, 0x8c, 0xd3, 0x73, 0x4b, + 0x9a, 0x00, 0x76, 0x68, 0xcd, 0x37, 0x34, 0x66, 0x80, 0x1d, 0x46, 0x69, + 0xb9, 0xa5, 0xcd, 0x00, 0x3b, 0x34, 0x53, 0x68, 0xcd, 0x00, 0x3a, 0x8c, + 0xd2, 0x0a, 0x5a, 0x00, 0x5c, 0xd1, 0x48, 0x29, 0x71, 0x40, 0x0b, 0x46, + 0x68, 0xc5, 0x18, 0xa0, 0x02, 0x8a, 0x5c, 0x52, 0xe2, 0x80, 0x1b, 0x4b, + 0x4b, 0x45, 0x00, 0x25, 0x14, 0xb4, 0xb4, 0x00, 0xda, 0x5a, 0x5a, 0x28, + 0x01, 0x28, 0xa5, 0xa5, 0xa0, 0x06, 0xd0, 0x7a, 0x1a, 0x75, 0x27, 0x6a, + 0x00, 0x51, 0x4b, 0x48, 0x3a, 0x51, 0x40, 0x0b, 0x45, 0x14, 0x50, 0x02, + 0xd1, 0x49, 0x4b, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0xb4, 0x50, + 0x02, 0x51, 0x4b, 0x45, 0x00, 0x25, 0x2d, 0x14, 0x50, 0x01, 0x49, 0x4b, + 0x45, 0x00, 0x26, 0x28, 0xc5, 0x2d, 0x14, 0x00, 0x98, 0xa4, 0xc5, 0x3a, + 0x8a, 0x00, 0x4a, 0x28, 0xc5, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, + 0x45, 0x14, 0x00, 0x98, 0xa2, 0x96, 0x8a, 0x00, 0x4a, 0x29, 0x69, 0x28, + 0x01, 0x31, 0x49, 0x4e, 0xa4, 0xa0, 0x04, 0xa2, 0x8a, 0x28, 0x00, 0xa4, + 0xa5, 0xa4, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, + 0x8a, 0x28, 0xa0, 0x04, 0xa2, 0x96, 0x8a, 0x00, 0x4a, 0x4a, 0x5a, 0x28, + 0x01, 0x28, 0xc5, 0x2d, 0x14, 0x00, 0xda, 0x29, 0x68, 0xa0, 0x04, 0xc5, + 0x14, 0x51, 0x40, 0x09, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x94, 0x00, + 0x51, 0x45, 0x14, 0x00, 0x94, 0x51, 0x45, 0x00, 0x14, 0x94, 0x51, 0x40, + 0x05, 0x14, 0x94, 0x50, 0x01, 0x45, 0x25, 0x14, 0x00, 0xb4, 0x99, 0xa2, + 0x93, 0x34, 0x00, 0xb4, 0x99, 0xa4, 0xcd, 0x26, 0x68, 0x01, 0xd4, 0x99, + 0xa4, 0xcd, 0x26, 0x68, 0x01, 0x68, 0xa6, 0xe6, 0x8c, 0xd0, 0x02, 0x93, + 0x48, 0x4d, 0x26, 0x69, 0x09, 0xa0, 0x05, 0xa4, 0xcd, 0x21, 0x34, 0x84, + 0xd0, 0x02, 0x93, 0x49, 0xba, 0x93, 0x34, 0x84, 0xd0, 0x02, 0xee, 0xa3, + 0x76, 0x69, 0x86, 0x93, 0x34, 0x00, 0xfd, 0xd4, 0x85, 0xa9, 0x84, 0xd3, + 0x49, 0xe2, 0x80, 0x24, 0xdf, 0x46, 0xfa, 0x8b, 0x71, 0xa3, 0x34, 0x01, + 0x21, 0x63, 0x49, 0xb8, 0xd4, 0x79, 0xe6, 0x90, 0xb6, 0x47, 0x34, 0x01, + 0x2e, 0xff, 0x00, 0x5a, 0x37, 0x7b, 0xd4, 0x59, 0xc5, 0x1b, 0xb1, 0x40, + 0x12, 0xef, 0xe6, 0x97, 0x75, 0x41, 0xba, 0x8d, 0xc6, 0x80, 0x27, 0xdd, + 0x46, 0xfe, 0x6a, 0x0d, 0xd4, 0x6f, 0xa0, 0x0b, 0x21, 0xe9, 0x77, 0xd5, + 0x6d, 0xd4, 0xa1, 0xa8, 0x02, 0xc8, 0x7c, 0xd2, 0x87, 0xf7, 0xaa, 0xe1, + 0xe9, 0x77, 0x9a, 0x00, 0xb2, 0x1e, 0x97, 0x78, 0xaa, 0xdb, 0xe9, 0x77, + 0xd0, 0x05, 0x9d, 0xfc, 0x52, 0x87, 0xaa, 0xdb, 0xe8, 0xdf, 0x40, 0x16, + 0xb7, 0xd1, 0xba, 0xab, 0x07, 0xf7, 0xa7, 0x07, 0xa0, 0x0b, 0x1b, 0xa9, + 0x73, 0x50, 0x07, 0xa7, 0x06, 0xa0, 0x09, 0x81, 0xa5, 0xcd, 0x46, 0x1b, + 0x8a, 0x70, 0x34, 0x00, 0xfa, 0x5a, 0x6e, 0x68, 0xcd, 0x00, 0x3c, 0x52, + 0xd3, 0x01, 0xa5, 0xdd, 0x40, 0x0f, 0xa2, 0x99, 0x9a, 0x5d, 0xd4, 0x00, + 0xfa, 0x5a, 0x66, 0xea, 0x37, 0x50, 0x03, 0xe9, 0x69, 0x99, 0xa3, 0x34, + 0x00, 0xfa, 0x29, 0xb9, 0xa5, 0xcd, 0x00, 0x3a, 0x8a, 0x6e, 0x69, 0x73, + 0x40, 0x0b, 0x45, 0x26, 0x68, 0xa0, 0x05, 0xa2, 0x92, 0x96, 0x80, 0x16, + 0x83, 0x49, 0x47, 0x6a, 0x00, 0x07, 0x4a, 0x5a, 0x41, 0xd2, 0x96, 0x80, + 0x0a, 0x5a, 0x4a, 0x28, 0x01, 0x68, 0xa2, 0x8a, 0x00, 0x29, 0x69, 0x29, + 0x68, 0x00, 0xa5, 0xa4, 0xa2, 0x80, 0x16, 0x8a, 0x4a, 0x28, 0x01, 0x69, + 0x69, 0x28, 0xcd, 0x00, 0x2d, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, + 0x05, 0x25, 0x2d, 0x14, 0x00, 0x94, 0x51, 0x45, 0x00, 0x25, 0x14, 0xb4, + 0x94, 0x00, 0x52, 0xd2, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x25, + 0x2d, 0x25, 0x00, 0x14, 0xda, 0x71, 0xa4, 0xa0, 0x04, 0xa2, 0x8a, 0x28, + 0x00, 0xa4, 0xa5, 0xa4, 0xa0, 0x02, 0x96, 0x8a, 0x28, 0x01, 0x28, 0xa5, + 0xa4, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, 0x8a, + 0x29, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x01, 0x28, 0xa2, 0x8a, 0x00, 0x4a, + 0x28, 0xcd, 0x26, 0x68, 0x00, 0xa2, 0x93, 0x34, 0x99, 0xa0, 0x05, 0xa2, + 0x9b, 0x9a, 0x4c, 0xd0, 0x03, 0xb3, 0x46, 0x69, 0x99, 0xa4, 0xdd, 0x40, + 0x0f, 0xcd, 0x26, 0x6a, 0x3d, 0xd4, 0x85, 0xa8, 0x02, 0x5c, 0xd2, 0x66, + 0xa2, 0x2f, 0x48, 0x5a, 0x80, 0x25, 0xdc, 0x28, 0xdc, 0x2a, 0x0d, 0xd4, + 0x85, 0xa8, 0x02, 0x7d, 0xc2, 0x93, 0x78, 0xa8, 0x37, 0xd2, 0x6f, 0xa0, + 0x0b, 0x1b, 0xc5, 0x26, 0xf1, 0x55, 0x8b, 0xd1, 0xbe, 0x80, 0x2c, 0x6e, + 0xa3, 0x75, 0x56, 0xdf, 0x47, 0x99, 0x40, 0x16, 0x37, 0x52, 0x66, 0xa0, + 0xf3, 0x29, 0x3c, 0xca, 0x00, 0x9f, 0x34, 0x66, 0xa1, 0xf3, 0x28, 0xf3, + 0x3d, 0xe8, 0x02, 0x5c, 0xd2, 0x6e, 0xa8, 0xf7, 0xe6, 0x8d, 0xd4, 0x00, + 0xfc, 0xd2, 0x66, 0x99, 0xba, 0x93, 0x34, 0x00, 0xf2, 0x69, 0x33, 0x4c, + 0xcd, 0x26, 0xea, 0x00, 0x7e, 0x69, 0x09, 0xa6, 0x66, 0x93, 0x75, 0x00, + 0x38, 0x9a, 0x69, 0x34, 0x9b, 0xa9, 0xb9, 0xa0, 0x07, 0x13, 0x4d, 0x2d, + 0x48, 0x4f, 0x7a, 0x69, 0x34, 0x00, 0xe2, 0xd4, 0x6e, 0xa8, 0xc9, 0xa4, + 0x26, 0x80, 0x24, 0xdd, 0x49, 0xba, 0x99, 0xba, 0x93, 0x75, 0x00, 0x49, + 0xba, 0x8d, 0xd5, 0x1e, 0xea, 0x4d, 0xd4, 0x01, 0x2e, 0x68, 0x0d, 0x51, + 0x66, 0x97, 0x71, 0xa0, 0x09, 0x37, 0x53, 0x83, 0x54, 0x3b, 0xa9, 0x43, + 0x50, 0x04, 0xc1, 0xa9, 0x77, 0x63, 0xbd, 0x42, 0x0d, 0x3b, 0x34, 0x01, + 0x2e, 0xef, 0x7a, 0x37, 0x54, 0x5b, 0xa8, 0xcd, 0x00, 0x4b, 0xbe, 0x97, + 0x7d, 0x43, 0x4e, 0x14, 0x01, 0x28, 0x6a, 0x70, 0x6a, 0x88, 0x52, 0xe6, + 0x80, 0x26, 0x0d, 0xef, 0x4f, 0x0f, 0xcd, 0x40, 0x0d, 0x3b, 0x34, 0x01, + 0x3e, 0xfa, 0x78, 0x7a, 0xac, 0x1a, 0x8d, 0xf4, 0x01, 0x6c, 0x49, 0x4a, + 0x24, 0xaa, 0xa1, 0xe9, 0x77, 0xd0, 0x05, 0xa0, 0xe2, 0x97, 0x7d, 0x55, + 0x0d, 0x4e, 0x0d, 0x40, 0x16, 0x77, 0x52, 0xee, 0xaa, 0xfb, 0xe9, 0xc1, + 0xb8, 0xa0, 0x09, 0xf3, 0x46, 0x6a, 0x2d, 0xd4, 0xe0, 0x68, 0x02, 0x4c, + 0xd2, 0xe6, 0x99, 0x9a, 0x5c, 0xd0, 0x03, 0xf3, 0x4b, 0x9a, 0x66, 0x69, + 0x41, 0xa0, 0x07, 0x66, 0x9d, 0x9a, 0x65, 0x2d, 0x00, 0x3b, 0x34, 0xb9, + 0xa6, 0xd2, 0xe6, 0x80, 0x1d, 0x45, 0x25, 0x2d, 0x00, 0x14, 0x1e, 0x94, + 0x50, 0x7a, 0x50, 0x00, 0x3a, 0x52, 0xd2, 0x0e, 0x82, 0x8a, 0x00, 0x5a, + 0x5a, 0x4a, 0x28, 0x01, 0x69, 0x69, 0x28, 0xa0, 0x05, 0xa5, 0xa6, 0xd2, + 0xd0, 0x02, 0xd1, 0x49, 0x4b, 0x40, 0x05, 0x2d, 0x25, 0x14, 0x00, 0xb4, + 0x51, 0x45, 0x00, 0x14, 0x51, 0x8a, 0x28, 0x01, 0x68, 0xa4, 0xa2, 0x80, + 0x16, 0x8a, 0x28, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x04, 0xa2, 0x96, 0x92, + 0x80, 0x12, 0x8a, 0x5a, 0x4a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x28, 0xa2, + 0x92, 0x80, 0x0a, 0x4a, 0x29, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x01, 0x29, + 0x68, 0xa2, 0x80, 0x0a, 0x28, 0xa2, 0x80, 0x12, 0x8a, 0x28, 0xa0, 0x02, + 0x8a, 0x29, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x93, 0x34, 0x84, + 0xd0, 0x02, 0xe6, 0x93, 0x34, 0x99, 0xa6, 0xe6, 0x80, 0x1d, 0x9a, 0x4c, + 0xd3, 0x73, 0x49, 0x9a, 0x00, 0x76, 0x69, 0x33, 0x49, 0x49, 0x40, 0x0b, + 0x9a, 0x4c, 0xd1, 0x49, 0x40, 0x01, 0xa4, 0xcd, 0x2d, 0x34, 0xd0, 0x00, + 0x69, 0xb9, 0xa5, 0x34, 0x94, 0x00, 0x94, 0x84, 0xd0, 0x69, 0x28, 0x01, + 0x09, 0xa4, 0xcd, 0x29, 0xa4, 0x34, 0x00, 0x86, 0x9b, 0x9a, 0x53, 0x4d, + 0x34, 0x00, 0x99, 0xa4, 0x27, 0x9a, 0x5a, 0x69, 0xa0, 0x04, 0x26, 0x93, + 0x34, 0x53, 0x4d, 0x00, 0x19, 0xa0, 0x9a, 0x43, 0xc5, 0x27, 0x7a, 0x00, + 0x5d, 0xd4, 0x9b, 0x8d, 0x34, 0xd2, 0x66, 0x80, 0x1f, 0xba, 0x93, 0x7d, + 0x33, 0x34, 0x99, 0x34, 0x01, 0x2e, 0xfa, 0x37, 0xd4, 0x39, 0xa4, 0xcd, + 0x00, 0x4e, 0x24, 0xa5, 0xdf, 0x55, 0xf7, 0x51, 0xbe, 0x80, 0x2c, 0x6f, + 0xa3, 0x75, 0x41, 0xbe, 0x8d, 0xf4, 0x01, 0x36, 0xea, 0x4c, 0xd4, 0x7b, + 0xe8, 0xdd, 0x40, 0x0f, 0xcd, 0x26, 0xea, 0x61, 0x34, 0x99, 0xa0, 0x07, + 0x16, 0xa4, 0xcd, 0x37, 0x34, 0x99, 0xa0, 0x05, 0xcd, 0x26, 0x69, 0x33, + 0x4d, 0x26, 0x80, 0x1c, 0x4d, 0x21, 0x27, 0xbd, 0x34, 0x9a, 0x4c, 0xd0, + 0x03, 0xf3, 0x46, 0x69, 0x99, 0xa4, 0xcf, 0xbd, 0x00, 0x49, 0x9a, 0x5c, + 0xd4, 0x59, 0xa5, 0xcd, 0x00, 0x49, 0x9a, 0x5c, 0xd4, 0x60, 0xd2, 0xe6, + 0x80, 0x25, 0xcd, 0x2e, 0x6a, 0x20, 0x69, 0x73, 0x40, 0x12, 0x66, 0x97, + 0x34, 0xcc, 0xd3, 0x81, 0xa0, 0x07, 0x8a, 0x70, 0xa6, 0x8a, 0x75, 0x00, + 0x38, 0x52, 0x8a, 0x6e, 0x69, 0x68, 0x01, 0x68, 0xcd, 0x25, 0x26, 0x68, + 0x01, 0xdb, 0x8d, 0x1b, 0xa9, 0x99, 0xa4, 0xdd, 0x40, 0x12, 0xee, 0xa5, + 0xdd, 0x51, 0x66, 0x9c, 0x28, 0x02, 0x50, 0xd4, 0xe0, 0x6a, 0x11, 0x4f, + 0x14, 0x01, 0x2a, 0x9a, 0x78, 0x26, 0xa2, 0x06, 0x9e, 0x0d, 0x00, 0x4a, + 0x0e, 0x29, 0xc0, 0xd4, 0x40, 0xd3, 0xc1, 0xa0, 0x09, 0x29, 0xe0, 0xd4, + 0x60, 0xd2, 0x83, 0x40, 0x0f, 0x14, 0xea, 0x60, 0x34, 0xea, 0x00, 0x70, + 0xa5, 0x06, 0x9b, 0x4b, 0x40, 0x0e, 0x14, 0xb9, 0xa6, 0x8a, 0x5a, 0x00, + 0x76, 0x69, 0x41, 0xa6, 0xd2, 0xe6, 0x80, 0x1d, 0x41, 0xe8, 0x69, 0x05, + 0x07, 0xa1, 0xa0, 0x00, 0x74, 0x14, 0xb4, 0x83, 0xa0, 0xa5, 0xa0, 0x05, + 0xa2, 0x92, 0x96, 0x80, 0x0a, 0x5a, 0x4a, 0x5a, 0x00, 0x29, 0x69, 0x28, + 0xa0, 0x05, 0xa2, 0x8a, 0x28, 0x01, 0x68, 0xa4, 0xa5, 0xa0, 0x02, 0x8a, + 0x28, 0xa0, 0x05, 0xcd, 0x14, 0x94, 0x50, 0x02, 0xd1, 0x45, 0x14, 0x00, + 0x51, 0x45, 0x14, 0x00, 0x52, 0xd2, 0x51, 0x40, 0x0b, 0x49, 0x45, 0x14, + 0x00, 0x52, 0x52, 0xd2, 0x50, 0x02, 0x1a, 0x28, 0xa4, 0xa0, 0x05, 0xa2, + 0x92, 0x8a, 0x00, 0x29, 0x28, 0xa2, 0x80, 0x0a, 0x4a, 0x28, 0xa0, 0x02, + 0x8a, 0x28, 0xa0, 0x02, 0x8a, 0x29, 0x28, 0x01, 0x69, 0x28, 0xa4, 0xa0, + 0x05, 0xa2, 0x93, 0x34, 0x84, 0xd0, 0x02, 0xe6, 0x90, 0x9a, 0x69, 0x6a, + 0x4c, 0xd0, 0x02, 0x93, 0x48, 0x4d, 0x26, 0x68, 0xa0, 0x02, 0x92, 0x8a, + 0x28, 0x00, 0xa4, 0xa2, 0x8a, 0x00, 0x28, 0xa3, 0x34, 0x50, 0x01, 0x49, + 0x45, 0x14, 0x00, 0x52, 0x1a, 0x28, 0xa0, 0x06, 0x9a, 0x43, 0x4e, 0x34, + 0x84, 0x50, 0x03, 0x29, 0x29, 0xc6, 0x9a, 0x68, 0x01, 0x29, 0x0d, 0x29, + 0xa6, 0x9a, 0x00, 0x43, 0x4d, 0x34, 0xa6, 0x9a, 0x68, 0x01, 0x0d, 0x34, + 0xd2, 0x9e, 0x94, 0xd3, 0x40, 0x08, 0x69, 0xb4, 0xa6, 0x90, 0xd0, 0x02, + 0x1a, 0x42, 0x69, 0x69, 0xa6, 0x80, 0x12, 0x93, 0x34, 0x1a, 0x4a, 0x00, + 0x43, 0x49, 0x4b, 0x9a, 0x69, 0xa0, 0x00, 0xd2, 0x13, 0x45, 0x21, 0xa0, + 0x04, 0xa3, 0x34, 0x84, 0xd2, 0x13, 0x40, 0x0b, 0xba, 0x8d, 0xd4, 0xc2, + 0x69, 0xa5, 0xa8, 0x02, 0x5d, 0xf4, 0xa1, 0xea, 0x0d, 0xd4, 0x6f, 0xa0, + 0x0b, 0x1b, 0xa8, 0xcd, 0x40, 0x1e, 0x9c, 0x1e, 0x80, 0x24, 0xcd, 0x19, + 0xa6, 0x6e, 0xa3, 0x34, 0x00, 0xec, 0xd3, 0x49, 0xa4, 0xcd, 0x21, 0x34, + 0x00, 0xb9, 0xa4, 0xcd, 0x34, 0xb5, 0x34, 0xb5, 0x00, 0x3f, 0x75, 0x26, + 0x69, 0x9b, 0xa9, 0x33, 0xc5, 0x00, 0x3f, 0x77, 0x14, 0xbb, 0xaa, 0x2d, + 0xd4, 0x66, 0x80, 0x26, 0xdd, 0x4a, 0x1a, 0xa1, 0xcd, 0x28, 0x34, 0x01, + 0x36, 0xea, 0x50, 0x6a, 0x1d, 0xd4, 0xe0, 0x68, 0x02, 0x70, 0xd4, 0xf0, + 0x6a, 0x05, 0x35, 0x2a, 0x9a, 0x00, 0x94, 0x1a, 0x70, 0x35, 0x18, 0x34, + 0xe0, 0x68, 0x02, 0x4c, 0xd1, 0x9a, 0x65, 0x19, 0xa0, 0x07, 0x66, 0x8c, + 0xd3, 0x33, 0x45, 0x00, 0x29, 0x34, 0x52, 0x52, 0x8a, 0x00, 0x51, 0x4e, + 0x06, 0x9a, 0x29, 0x45, 0x00, 0x48, 0x29, 0xc2, 0xa3, 0x06, 0x9c, 0x0d, + 0x00, 0x48, 0x29, 0xc0, 0xd4, 0x60, 0xd3, 0x81, 0xa0, 0x09, 0x01, 0xa7, + 0x83, 0x50, 0x83, 0x4f, 0x06, 0x80, 0x25, 0x06, 0x9e, 0x0d, 0x44, 0x0d, + 0x3c, 0x50, 0x04, 0x80, 0xd3, 0xc1, 0xa8, 0xc5, 0x3c, 0x50, 0x03, 0x85, + 0x2d, 0x36, 0x9d, 0x40, 0x0b, 0x4b, 0x49, 0x4a, 0x28, 0x01, 0x69, 0x69, + 0x29, 0x68, 0x01, 0x68, 0x3d, 0x0d, 0x14, 0x1e, 0x86, 0x80, 0x14, 0x74, + 0x14, 0xb4, 0x01, 0xc0, 0xa5, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, 0x96, + 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x01, 0x68, 0xa2, 0x8a, 0x00, 0x28, + 0xa2, 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x29, 0x69, 0x28, 0xa0, 0x05, + 0xa2, 0x92, 0x8a, 0x00, 0x5a, 0x5a, 0x4a, 0x28, 0x00, 0xa5, 0xa4, 0xa2, + 0x80, 0x16, 0x8a, 0x4a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x01, 0x29, 0x29, + 0x4d, 0x21, 0xa0, 0x04, 0xa2, 0x8a, 0x4a, 0x00, 0x28, 0xa2, 0x92, 0x80, + 0x16, 0x92, 0x8a, 0x4a, 0x00, 0x5a, 0x29, 0x28, 0xcd, 0x00, 0x19, 0xa3, + 0x34, 0x94, 0x50, 0x02, 0xe6, 0x93, 0x34, 0x99, 0xa4, 0x26, 0x80, 0x14, + 0x9a, 0x69, 0x34, 0x85, 0xa9, 0xb9, 0xa0, 0x05, 0xcd, 0x14, 0xdc, 0xd2, + 0x66, 0x80, 0x1d, 0x9a, 0x5a, 0x66, 0x69, 0x73, 0x40, 0x0e, 0xa2, 0x9b, + 0x9a, 0x33, 0x40, 0x0b, 0x49, 0x4b, 0x49, 0x40, 0x05, 0x14, 0x84, 0xd2, + 0x66, 0x80, 0x1d, 0x45, 0x25, 0x14, 0x00, 0xb4, 0x94, 0x51, 0x40, 0x09, + 0x49, 0x4e, 0xa4, 0x34, 0x00, 0xc3, 0x48, 0x69, 0xc6, 0x9a, 0x4d, 0x00, + 0x34, 0xd3, 0x4d, 0x3b, 0x34, 0xc2, 0x68, 0x01, 0x0d, 0x30, 0xd3, 0x8d, + 0x30, 0x9a, 0x00, 0x43, 0x48, 0x68, 0x26, 0x98, 0x5b, 0x07, 0x14, 0x00, + 0xa6, 0x9a, 0x68, 0xdd, 0x4d, 0xcd, 0x00, 0x06, 0x9a, 0x4d, 0x04, 0xd2, + 0x13, 0x40, 0x01, 0xa4, 0x26, 0x90, 0x9a, 0x4c, 0xd0, 0x02, 0x93, 0x4d, + 0xa4, 0xcd, 0x21, 0x6a, 0x00, 0x52, 0x69, 0xa4, 0xd0, 0x4d, 0x30, 0xb5, + 0x00, 0x29, 0x34, 0xd2, 0xd4, 0xd2, 0x69, 0xa4, 0xd0, 0x03, 0x89, 0xa6, + 0x13, 0x48, 0x4d, 0x21, 0x34, 0x00, 0x13, 0x49, 0x9a, 0x42, 0x69, 0xa4, + 0xd0, 0x03, 0xb7, 0x52, 0x87, 0xc5, 0x44, 0x4d, 0x26, 0xea, 0x00, 0xb2, + 0x24, 0xa7, 0x6e, 0xaa, 0x81, 0xe9, 0xe1, 0xe8, 0x02, 0xc1, 0x34, 0x99, + 0xa8, 0xc3, 0x52, 0xee, 0xa0, 0x07, 0x13, 0x4d, 0xcd, 0x34, 0x9a, 0x42, + 0x68, 0x01, 0xd9, 0xa4, 0xdd, 0x4c, 0x26, 0x93, 0x34, 0x00, 0xfc, 0xd2, + 0x6e, 0xa6, 0x66, 0x8c, 0xd0, 0x04, 0x81, 0xa9, 0x43, 0x54, 0x79, 0xa5, + 0x06, 0x80, 0x24, 0xcd, 0x38, 0x1a, 0x8c, 0x1a, 0x70, 0x34, 0x01, 0x32, + 0x9a, 0x95, 0x6a, 0x15, 0x35, 0x20, 0x22, 0x80, 0x25, 0x06, 0x9c, 0x0d, + 0x46, 0x0d, 0x2e, 0xea, 0x00, 0x93, 0x34, 0x66, 0xa3, 0xdd, 0x4b, 0xba, + 0x80, 0x1f, 0x9a, 0x33, 0x4c, 0xdd, 0x46, 0x68, 0x02, 0x4c, 0xd1, 0x9a, + 0x66, 0x68, 0x0d, 0x40, 0x12, 0x03, 0x4b, 0x9a, 0x8f, 0x34, 0xb9, 0xa0, + 0x09, 0x01, 0xa7, 0x66, 0xa2, 0x06, 0x9e, 0x28, 0x02, 0x40, 0x69, 0xc2, + 0x98, 0x29, 0xe0, 0xd0, 0x03, 0xc7, 0xbd, 0x48, 0x31, 0x51, 0x03, 0x4f, + 0x06, 0x80, 0x25, 0x14, 0xf0, 0x6a, 0x21, 0x52, 0x0a, 0x00, 0x90, 0x53, + 0xc5, 0x46, 0x29, 0xe2, 0x80, 0x1c, 0x29, 0x69, 0x05, 0x28, 0xa0, 0x07, + 0x52, 0xd3, 0x69, 0xc2, 0x80, 0x01, 0x4b, 0x45, 0x28, 0xa0, 0x05, 0xa0, + 0xf4, 0x34, 0xa0, 0x50, 0x47, 0x14, 0x00, 0xf0, 0x38, 0xa5, 0xc5, 0x3b, + 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x18, 0xa0, 0x06, 0xe2, + 0x8c, 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb4, 0x52, 0xe2, 0x8a, 0x00, 0x4a, + 0x28, 0xa2, 0x80, 0x0a, 0x29, 0x28, 0xa0, 0x02, 0x8a, 0x29, 0x28, 0x01, + 0x68, 0xa4, 0xa2, 0x80, 0x16, 0x8a, 0x4c, 0xd1, 0x9a, 0x00, 0x76, 0x68, + 0xa4, 0xcd, 0x14, 0x00, 0xb4, 0xb4, 0xda, 0x5a, 0x00, 0x5a, 0x29, 0x28, + 0xa0, 0x05, 0xa4, 0xa2, 0x8a, 0x00, 0x0d, 0x36, 0x96, 0x90, 0xd0, 0x02, + 0x66, 0x8a, 0x69, 0x34, 0x99, 0xa0, 0x07, 0x13, 0x49, 0x9a, 0x4c, 0xd2, + 0x66, 0x80, 0x17, 0x34, 0x52, 0x66, 0x8c, 0xd0, 0x02, 0xe6, 0x93, 0x34, + 0x66, 0x9b, 0x40, 0x0e, 0xcd, 0x26, 0x69, 0x29, 0x09, 0xa0, 0x05, 0x26, + 0x9a, 0x4d, 0x35, 0x9b, 0x15, 0x19, 0x6a, 0x00, 0x79, 0x34, 0xdd, 0xd4, + 0xdd, 0xd4, 0xd2, 0xd4, 0x00, 0xfc, 0xd1, 0x9a, 0x66, 0xea, 0x4d, 0xd4, + 0x01, 0x26, 0x69, 0x73, 0x51, 0x6e, 0xa5, 0xdd, 0x40, 0x12, 0x66, 0x97, + 0x35, 0x16, 0xea, 0x5d, 0xd4, 0x01, 0x2e, 0x68, 0xcd, 0x46, 0x0d, 0x28, + 0x6a, 0x00, 0x75, 0x27, 0x4a, 0x33, 0x47, 0x5a, 0x00, 0x5c, 0xd1, 0x9a, + 0x69, 0x38, 0xa4, 0x2d, 0x40, 0x0f, 0xcd, 0x19, 0xa8, 0xf3, 0x9a, 0x70, + 0xa0, 0x07, 0x66, 0x92, 0x93, 0xad, 0x18, 0x38, 0xa0, 0x04, 0x26, 0x98, + 0x4d, 0x3b, 0x8f, 0x51, 0x4c, 0x2c, 0x83, 0xf8, 0x85, 0x00, 0x34, 0x9a, + 0x69, 0x34, 0xac, 0xf1, 0x8e, 0xad, 0x4c, 0x2e, 0xa4, 0xf5, 0x3f, 0x95, + 0x00, 0x04, 0xd3, 0x09, 0xa5, 0x24, 0x53, 0x09, 0x03, 0xd6, 0x80, 0x10, + 0x9a, 0x61, 0x34, 0xe2, 0xcb, 0xea, 0x7f, 0x2a, 0x61, 0x64, 0x27, 0x00, + 0xfe, 0x94, 0x00, 0x84, 0xd2, 0x13, 0x41, 0x2a, 0x7a, 0x11, 0x48, 0x71, + 0xfd, 0xe0, 0x4d, 0x00, 0x21, 0x34, 0xd2, 0xd4, 0x1c, 0x9a, 0x69, 0xcf, + 0xa5, 0x00, 0x2e, 0xea, 0x69, 0x34, 0x87, 0x8a, 0x4c, 0xd0, 0x02, 0x93, + 0x4d, 0x2d, 0x48, 0x5a, 0xa3, 0x2d, 0x40, 0x0f, 0x2d, 0x4d, 0x26, 0x98, + 0x5a, 0x93, 0x75, 0x00, 0x38, 0x9a, 0x6e, 0x69, 0x33, 0x49, 0x9a, 0x00, + 0x52, 0x69, 0xa4, 0xd1, 0x9a, 0x69, 0x34, 0x00, 0xb9, 0xa6, 0x93, 0x48, + 0x4d, 0x34, 0x9a, 0x00, 0x52, 0x69, 0x84, 0xd0, 0x4d, 0x34, 0x9a, 0x00, + 0x52, 0xd4, 0x07, 0xa8, 0xc9, 0xa6, 0x96, 0xa0, 0x0b, 0x2b, 0x25, 0x48, + 0x1e, 0xa8, 0xef, 0xc5, 0x48, 0xb2, 0xd0, 0x05, 0x9d, 0xd4, 0x85, 0xa9, + 0x9b, 0xb3, 0x4d, 0x2d, 0x40, 0x0f, 0x2d, 0x48, 0x5a, 0xa3, 0x2d, 0x4d, + 0x2f, 0x40, 0x12, 0xee, 0xa3, 0x75, 0x41, 0xbe, 0x93, 0x7f, 0xbd, 0x00, + 0x58, 0xdf, 0x4a, 0x1a, 0xab, 0x6f, 0xa7, 0x09, 0x28, 0x02, 0xd0, 0x6a, + 0x7a, 0x9a, 0xa8, 0x24, 0xa9, 0xa3, 0x6c, 0xd0, 0x05, 0xb5, 0x34, 0xf0, + 0x6a, 0x05, 0x6a, 0x76, 0xea, 0x00, 0x9f, 0x75, 0x1b, 0xaa, 0x1d, 0xd4, + 0x6f, 0xa0, 0x09, 0xb7, 0x52, 0xee, 0xa8, 0x37, 0xd2, 0xef, 0xa0, 0x09, + 0xf7, 0x51, 0xba, 0xa1, 0xdf, 0x46, 0xfa, 0x00, 0x9b, 0x75, 0x2e, 0xea, + 0x87, 0x7d, 0x00, 0xe6, 0x80, 0x27, 0x0d, 0x4e, 0x1c, 0xd4, 0x4b, 0x4f, + 0x0d, 0x40, 0x12, 0x8a, 0x78, 0x35, 0x08, 0x6a, 0x70, 0x6a, 0x00, 0x98, + 0x1a, 0x70, 0x35, 0x08, 0x6a, 0x70, 0x34, 0x01, 0x30, 0x34, 0xf0, 0xd5, + 0x08, 0x34, 0xe0, 0x68, 0x02, 0xc0, 0x35, 0x20, 0x35, 0x5d, 0x5a, 0xa4, + 0x56, 0xa0, 0x09, 0xc1, 0xa7, 0x83, 0x50, 0x83, 0x52, 0xad, 0x00, 0x48, + 0x29, 0xc2, 0x9a, 0x05, 0x3c, 0x50, 0x02, 0x8a, 0x70, 0x14, 0x80, 0x53, + 0xc0, 0xa0, 0x04, 0x02, 0x9c, 0x05, 0x38, 0x0a, 0x50, 0xb4, 0x00, 0x82, + 0x8c, 0x71, 0x4f, 0x0b, 0x46, 0x28, 0x01, 0xdd, 0xa8, 0xa4, 0xa2, 0x80, + 0x16, 0x8a, 0x4a, 0x28, 0x01, 0x68, 0xa4, 0xa2, 0x80, 0x16, 0x92, 0x8a, + 0x28, 0x00, 0xc5, 0x36, 0x9d, 0x45, 0x00, 0x32, 0x92, 0x9c, 0x69, 0xa6, + 0x80, 0x0a, 0x4a, 0x29, 0x09, 0xa0, 0x05, 0xa3, 0x34, 0xdc, 0xd1, 0x9a, + 0x00, 0x76, 0x68, 0xa6, 0xe6, 0x97, 0x34, 0x00, 0xb4, 0xb4, 0xdc, 0xd2, + 0xd0, 0x02, 0xd2, 0xe6, 0x92, 0x8a, 0x00, 0x5a, 0x33, 0x49, 0x9a, 0x33, + 0x40, 0x0b, 0x46, 0x69, 0x33, 0x46, 0x68, 0x01, 0x69, 0xa6, 0x8c, 0x8f, + 0x5a, 0x6b, 0x48, 0x80, 0x72, 0xc0, 0x7d, 0x4d, 0x00, 0x23, 0xd4, 0x61, + 0xb3, 0x4d, 0x92, 0xea, 0xdd, 0x41, 0xdd, 0x34, 0x63, 0xea, 0xc2, 0xab, + 0x2d, 0xf5, 0xb2, 0x8c, 0x19, 0xe3, 0xeb, 0xfd, 0xea, 0x00, 0xbb, 0x9a, + 0x33, 0x55, 0x3e, 0xdf, 0x6a, 0x47, 0x13, 0xc7, 0xf9, 0xd3, 0x96, 0xf2, + 0xdd, 0xba, 0x4c, 0x9f, 0xf7, 0xd0, 0xa0, 0x0b, 0x39, 0xa4, 0xa8, 0xc4, + 0xa8, 0xdc, 0x2b, 0xa9, 0xfa, 0x1a, 0x76, 0xee, 0x71, 0x40, 0x0e, 0xcd, + 0x25, 0x26, 0x68, 0xcd, 0x00, 0x19, 0xa6, 0xb3, 0x60, 0x52, 0x93, 0x55, + 0xe4, 0x7e, 0x68, 0x00, 0x67, 0xe6, 0xa3, 0xdf, 0x4c, 0x66, 0xa6, 0xe6, + 0x80, 0x25, 0xdd, 0x46, 0xea, 0x8b, 0x34, 0xb9, 0xa0, 0x07, 0xee, 0xa4, + 0xdd, 0x4c, 0x26, 0x90, 0xb5, 0x00, 0x49, 0xba, 0x8d, 0xd5, 0x09, 0x6a, + 0x4d, 0xf4, 0x01, 0x3e, 0xea, 0x5d, 0xf5, 0x5f, 0x7d, 0x1b, 0xe8, 0x02, + 0xce, 0xf1, 0x4a, 0x1e, 0xaa, 0x87, 0x35, 0x26, 0xe0, 0x39, 0x27, 0x14, + 0x01, 0x38, 0x6e, 0x69, 0xc1, 0xb9, 0xaa, 0xde, 0x70, 0xdd, 0x80, 0x09, + 0xa5, 0x12, 0xb1, 0x62, 0x3a, 0x7a, 0x50, 0x05, 0x93, 0xd3, 0x9a, 0x6e, + 0x71, 0xeb, 0x51, 0x86, 0xe3, 0xde, 0x9c, 0x5a, 0x80, 0x1d, 0xe6, 0x00, + 0x78, 0x19, 0xa6, 0xbc, 0xad, 0xb7, 0x23, 0x00, 0x93, 0x8a, 0x89, 0x9b, + 0x14, 0x6e, 0xde, 0x40, 0xec, 0x3a, 0xd0, 0x04, 0xac, 0xc4, 0x75, 0x63, + 0x4d, 0x5e, 0x49, 0x26, 0x9a, 0xcd, 0xb9, 0xbd, 0xa9, 0xd9, 0x00, 0x50, + 0x03, 0x4d, 0x30, 0xd3, 0x89, 0xa6, 0x92, 0x28, 0x01, 0xbb, 0x79, 0xc9, + 0xa3, 0x8a, 0x46, 0x6a, 0x8d, 0x9e, 0x80, 0x1f, 0xba, 0x98, 0x5b, 0x9a, + 0x66, 0xfa, 0x61, 0x7a, 0x00, 0x73, 0x36, 0x4d, 0x30, 0x9e, 0xc3, 0x81, + 0x4d, 0x2f, 0x4c, 0x2f, 0x40, 0x0a, 0xcd, 0xd8, 0x74, 0xa6, 0x1e, 0x94, + 0x6e, 0x14, 0xdd, 0xf4, 0x00, 0xb8, 0x3e, 0xb8, 0xfa, 0x52, 0x86, 0x61, + 0xd1, 0x8e, 0x3d, 0xe9, 0x85, 0xa9, 0x0b, 0xe6, 0x80, 0x24, 0x0e, 0x49, + 0xed, 0x8f, 0x7a, 0x6b, 0x38, 0xed, 0x51, 0xb4, 0xbd, 0x85, 0x42, 0x64, + 0xa0, 0x09, 0x89, 0x07, 0xbd, 0x34, 0x8f, 0x7f, 0xca, 0xa1, 0xce, 0x7a, + 0x9a, 0x69, 0x91, 0x57, 0xa1, 0x24, 0xfb, 0x50, 0x04, 0xd9, 0xfa, 0xd2, + 0x64, 0xd4, 0x62, 0x59, 0x3a, 0x91, 0xc7, 0xbf, 0x5a, 0x76, 0xf1, 0xdf, + 0x20, 0xd0, 0x03, 0xb3, 0x49, 0x9a, 0x42, 0x73, 0xd2, 0x9b, 0x9c, 0x50, + 0x03, 0xf3, 0x48, 0x69, 0xbb, 0x85, 0x04, 0xd0, 0x00, 0x4d, 0x30, 0xd2, + 0x93, 0x51, 0xb3, 0x50, 0x00, 0x4d, 0x30, 0xbd, 0x35, 0x98, 0xd4, 0x6c, + 0x68, 0x01, 0xc5, 0xe9, 0x85, 0xe9, 0x84, 0xd3, 0x09, 0xa0, 0x07, 0x19, + 0x28, 0x12, 0xe0, 0xd4, 0x0c, 0xd5, 0x19, 0x7c, 0x50, 0x06, 0x92, 0x4d, + 0x9a, 0x93, 0x76, 0x6b, 0x2d, 0x26, 0x2a, 0x79, 0x35, 0x6d, 0x25, 0x06, + 0x80, 0x27, 0x2d, 0x4c, 0x2d, 0x4d, 0x2d, 0xc6, 0x6a, 0x36, 0x6a, 0x00, + 0x79, 0x7a, 0x69, 0x7a, 0x89, 0x9f, 0x14, 0xd0, 0xf9, 0x23, 0xde, 0x80, + 0x27, 0xdf, 0x4b, 0xbe, 0xa0, 0xdf, 0x83, 0x8a, 0x5c, 0xfb, 0xd0, 0x04, + 0xe2, 0x4c, 0x9a, 0xb5, 0x13, 0x56, 0x60, 0x24, 0x4b, 0x83, 0x57, 0x51, + 0xf0, 0x28, 0x02, 0xf0, 0x7a, 0x5d, 0xd5, 0x57, 0xcc, 0xc0, 0xa7, 0x89, + 0x38, 0xeb, 0x40, 0x13, 0xee, 0xa3, 0x7d, 0x57, 0x32, 0x7b, 0xd2, 0x79, + 0x94, 0x01, 0x67, 0x7d, 0x1b, 0xea, 0xb7, 0x99, 0x47, 0x99, 0x40, 0x16, + 0xb7, 0xd1, 0xbe, 0xab, 0x2b, 0x96, 0x3c, 0x54, 0xaa, 0x71, 0x40, 0x13, + 0x83, 0xdc, 0xd3, 0xc3, 0xf6, 0xaa, 0xfb, 0xe8, 0xdf, 0x40, 0x16, 0x83, + 0xd3, 0x83, 0x55, 0x40, 0xf4, 0xf1, 0x25, 0x00, 0x5a, 0x0d, 0x4f, 0x0d, + 0x55, 0x43, 0xd3, 0x83, 0xd0, 0x05, 0xa0, 0xd4, 0xe0, 0xf5, 0x54, 0x49, + 0x4f, 0x0f, 0x40, 0x16, 0x83, 0x53, 0xc3, 0x55, 0x50, 0xd9, 0xa9, 0x54, + 0xfb, 0xd0, 0x05, 0x85, 0x6a, 0x99, 0x6a, 0xb2, 0xb0, 0xa9, 0x95, 0xe8, + 0x02, 0xc2, 0xd4, 0xe9, 0x55, 0x91, 0xaa, 0xc2, 0x73, 0x40, 0x13, 0x0a, + 0x78, 0xa4, 0x55, 0xa9, 0x55, 0x68, 0x00, 0x51, 0x4f, 0x02, 0x81, 0x4b, + 0x40, 0x0a, 0x29, 0x69, 0x29, 0x68, 0x01, 0x68, 0xa4, 0xa5, 0xa0, 0x04, + 0xa5, 0xa5, 0xdb, 0xf5, 0xa4, 0xdb, 0xf5, 0xa0, 0x02, 0x8a, 0x31, 0xef, + 0xfa, 0x51, 0x83, 0xea, 0x28, 0x00, 0xa2, 0x93, 0x9f, 0x4f, 0xd6, 0x8c, + 0xfb, 0x1a, 0x00, 0x28, 0xa4, 0xdc, 0x3d, 0x68, 0xc8, 0xa0, 0x05, 0xa4, + 0xcd, 0x14, 0x99, 0xa0, 0x05, 0xa4, 0x34, 0x99, 0xa4, 0xdd, 0x40, 0x01, + 0xa6, 0x9a, 0x0b, 0x53, 0x09, 0xa0, 0x05, 0xcd, 0x19, 0xa6, 0x6e, 0xa4, + 0xdc, 0x28, 0x02, 0x4c, 0xd2, 0xe6, 0xa3, 0xcd, 0x23, 0xca, 0x91, 0x8c, + 0xbb, 0x85, 0x1e, 0xa4, 0xd0, 0x04, 0xd9, 0xa5, 0xcd, 0x62, 0xdd, 0x78, + 0x93, 0x4f, 0xb5, 0xc8, 0xf3, 0x84, 0x8c, 0x3b, 0x27, 0x35, 0xce, 0x6a, + 0x5f, 0x11, 0x6d, 0x6d, 0x01, 0x01, 0xa2, 0x8b, 0xfd, 0xf6, 0xc9, 0xfc, + 0xa8, 0x03, 0xbd, 0xcd, 0x43, 0x2d, 0xed, 0xbc, 0x1f, 0xeb, 0x26, 0x45, + 0xfa, 0x9a, 0xf1, 0x9d, 0x47, 0xe2, 0x97, 0x98, 0x59, 0x63, 0x79, 0x64, + 0xf6, 0x1f, 0x28, 0xae, 0x76, 0x6f, 0x1e, 0x5f, 0xdd, 0x12, 0x22, 0xdb, + 0x1f, 0xea, 0x7f, 0x3a, 0x00, 0xf7, 0xa9, 0xbc, 0x43, 0x63, 0x1b, 0x05, + 0x56, 0x69, 0x09, 0xfe, 0xea, 0xf1, 0xf9, 0xd5, 0x69, 0x7c, 0x4b, 0x6e, + 0x91, 0x34, 0x86, 0x5b, 0x68, 0x94, 0x7f, 0xcf, 0x49, 0x86, 0x7f, 0x2a, + 0xf9, 0xf2, 0x6d, 0x7b, 0x50, 0xb8, 0x27, 0xcd, 0xbb, 0x91, 0xb3, 0xdb, + 0x38, 0xaa, 0xcd, 0x3b, 0xcd, 0x0b, 0x97, 0x72, 0x76, 0xf3, 0x92, 0x68, + 0x03, 0xda, 0x6e, 0xfe, 0x26, 0x69, 0x16, 0xd2, 0x14, 0x93, 0x54, 0x80, + 0x30, 0xfe, 0x18, 0xd4, 0x93, 0xfa, 0xd6, 0x5d, 0xc7, 0xc5, 0x6d, 0x2a, + 0x3c, 0x90, 0xf7, 0x92, 0x8f, 0x6c, 0x28, 0xaf, 0x15, 0xb9, 0xb5, 0x8e, + 0xe5, 0x49, 0x1c, 0x3f, 0x63, 0x59, 0xf1, 0xdc, 0xbc, 0x0c, 0xd6, 0xd7, + 0x3f, 0x40, 0xc6, 0x80, 0x3d, 0xc2, 0x4f, 0x89, 0x90, 0xc9, 0xcc, 0x56, + 0x12, 0x3e, 0x7b, 0xbc, 0xe6, 0xa8, 0x0f, 0x14, 0x5e, 0xea, 0xd7, 0xd9, + 0x40, 0x6d, 0xe1, 0x55, 0x24, 0xaa, 0x1c, 0xff, 0x00, 0x3a, 0xf3, 0x5b, + 0x49, 0xcf, 0x92, 0xaa, 0x1b, 0xa7, 0x7f, 0x6a, 0xd2, 0xb7, 0x9e, 0x47, + 0x3e, 0x5c, 0x6e, 0xca, 0xcd, 0xc0, 0xda, 0x68, 0x03, 0xaa, 0xbf, 0xd5, + 0x67, 0xb8, 0xb4, 0xdf, 0x67, 0x76, 0xc5, 0x95, 0xf0, 0xc1, 0xc0, 0xff, + 0x00, 0x1a, 0xb1, 0x3f, 0x8b, 0x75, 0x4d, 0x3d, 0xd6, 0xda, 0x58, 0x6c, + 0xce, 0xd4, 0x07, 0x71, 0x4e, 0xbf, 0xad, 0x70, 0xda, 0xb1, 0xba, 0xd3, + 0x5e, 0x31, 0xe6, 0x6e, 0x6d, 0xe3, 0x38, 0x35, 0x1f, 0x8e, 0xee, 0x65, + 0xfb, 0x7d, 0xa3, 0x23, 0x30, 0x0f, 0x02, 0x9e, 0x28, 0x03, 0xb4, 0xba, + 0xf1, 0xc5, 0xda, 0xdb, 0x97, 0x36, 0xd6, 0xc7, 0x1e, 0x8b, 0x8f, 0xeb, + 0x52, 0x5a, 0x78, 0xd2, 0x69, 0x22, 0x56, 0x7b, 0x48, 0xb9, 0xf4, 0x26, + 0xbc, 0xde, 0xca, 0xf2, 0x49, 0x74, 0xd9, 0x12, 0x52, 0x4b, 0x29, 0xc7, + 0x35, 0xb1, 0x61, 0x27, 0xca, 0xa0, 0x9e, 0x31, 0x40, 0x1e, 0x89, 0x6f, + 0xe3, 0x18, 0xe3, 0x7c, 0xc8, 0x24, 0x8b, 0x3d, 0x1a, 0x26, 0xcf, 0xf3, + 0xab, 0xa3, 0xc6, 0xca, 0x8d, 0x91, 0x7e, 0xeb, 0x9f, 0xef, 0xaf, 0xf8, + 0x57, 0x9c, 0x07, 0xcb, 0x15, 0x26, 0xa0, 0x92, 0x56, 0xc6, 0x3a, 0xd0, + 0x07, 0xac, 0xc1, 0xe3, 0x79, 0x4b, 0x7c, 0xb7, 0x30, 0xc8, 0x3f, 0xde, + 0xff, 0x00, 0x1a, 0xbf, 0x1f, 0x8d, 0x24, 0x07, 0xe7, 0x87, 0x70, 0xf5, + 0x5e, 0x7f, 0x95, 0x78, 0xc4, 0x4e, 0x42, 0xee, 0x3c, 0x1c, 0xd5, 0xc6, + 0xbf, 0x6b, 0x68, 0xf0, 0xae, 0x43, 0x11, 0x9c, 0xe7, 0xa5, 0x00, 0x7b, + 0x24, 0x1e, 0x37, 0xb1, 0x99, 0xcc, 0x72, 0x2b, 0x46, 0xdd, 0xb7, 0x77, + 0xad, 0x38, 0xb5, 0x4b, 0x4b, 0x90, 0x0a, 0x4a, 0xbc, 0xfa, 0x9a, 0xf0, + 0x85, 0xd6, 0xae, 0x84, 0x64, 0xe7, 0x7e, 0x06, 0x7e, 0x61, 0xc5, 0x4b, + 0x6f, 0xe2, 0xb3, 0x0c, 0x8a, 0x81, 0x19, 0x5c, 0xff, 0x00, 0xcf, 0x33, + 0x40, 0x1e, 0xf0, 0x1c, 0x31, 0xe0, 0x83, 0x4b, 0x8e, 0xf5, 0xe5, 0x56, + 0x3e, 0x33, 0x9a, 0x12, 0xa0, 0xc8, 0x48, 0xff, 0x00, 0x6a, 0xba, 0x7b, + 0x0f, 0x1a, 0xc1, 0x22, 0x81, 0x2e, 0x3f, 0x0a, 0x00, 0xeb, 0xc5, 0x2e, + 0x38, 0xac, 0xdb, 0x6d, 0x66, 0xd2, 0xe4, 0x65, 0x25, 0x1f, 0x4c, 0xd6, + 0x84, 0x72, 0x2c, 0x8b, 0xc1, 0xcd, 0x00, 0x29, 0x5a, 0x61, 0x14, 0xf6, + 0x90, 0x2a, 0xf3, 0x55, 0xda, 0x62, 0xed, 0x80, 0x30, 0x28, 0x01, 0x59, + 0xb1, 0x4c, 0x0d, 0x9a, 0x76, 0x3b, 0x9e, 0x94, 0xcf, 0x31, 0x49, 0xc2, + 0x7c, 0xc4, 0x77, 0xed, 0x40, 0x0b, 0xcd, 0x19, 0x03, 0xad, 0x00, 0x33, + 0x1c, 0x9a, 0x53, 0x17, 0x1c, 0x50, 0x03, 0x4c, 0x84, 0x74, 0xe2, 0x90, + 0x3f, 0x39, 0xa6, 0xb2, 0x30, 0xa8, 0xf2, 0x45, 0x00, 0x4c, 0x1f, 0xe7, + 0xcd, 0x4b, 0xbf, 0x27, 0x35, 0x53, 0x77, 0x34, 0xbe, 0x6e, 0x17, 0xad, + 0x00, 0x5e, 0x0f, 0x4b, 0xe6, 0x56, 0x73, 0xde, 0xc5, 0x1a, 0xfc, 0xd2, + 0x01, 0xf8, 0xd5, 0x1b, 0x8f, 0x11, 0x59, 0x5b, 0x83, 0xba, 0x65, 0xcf, + 0xb9, 0xa0, 0x0d, 0xd6, 0x7c, 0x8a, 0x88, 0xc8, 0x57, 0x8f, 0x5a, 0xe6, + 0x5f, 0xc5, 0xd6, 0x7e, 0x53, 0x38, 0xb8, 0x8d, 0x40, 0xed, 0x9e, 0x4d, + 0x67, 0xdc, 0xf8, 0xe2, 0xc3, 0xca, 0x3b, 0x3c, 0xe7, 0x61, 0xdf, 0x80, + 0x28, 0x03, 0xba, 0x59, 0x00, 0xea, 0x68, 0x33, 0xaf, 0x76, 0x1f, 0x9d, + 0x79, 0xbb, 0xfc, 0x41, 0x52, 0x08, 0x87, 0x4f, 0x77, 0x6f, 0x76, 0xa8, + 0x64, 0xf1, 0xc6, 0xa1, 0x24, 0x78, 0x4b, 0x18, 0x22, 0xf7, 0x26, 0x80, + 0x3d, 0x2d, 0xae, 0x13, 0xfb, 0xc2, 0x9a, 0x67, 0x1d, 0xb3, 0xf9, 0x57, + 0x93, 0x49, 0xe2, 0xed, 0x5a, 0x5d, 0xf1, 0xbd, 0xc2, 0xa3, 0x2f, 0xcc, + 0x36, 0x63, 0xa5, 0x65, 0x5d, 0xf8, 0x83, 0x56, 0xb8, 0x8d, 0xb6, 0xdf, + 0x3a, 0xf1, 0xc6, 0x0d, 0x00, 0x7b, 0x43, 0xdd, 0x28, 0xa8, 0x8d, 0xda, + 0x9e, 0x85, 0x7f, 0x16, 0x02, 0xbc, 0x29, 0x75, 0xcb, 0xf9, 0x2d, 0x95, + 0xe4, 0xba, 0x97, 0x3d, 0x0f, 0xcd, 0xde, 0x9c, 0xb7, 0xf7, 0x06, 0x44, + 0xf3, 0x2e, 0xa6, 0xe7, 0xfd, 0xaa, 0x00, 0xf5, 0xdb, 0xff, 0x00, 0x11, + 0xda, 0x59, 0x15, 0x0f, 0x32, 0x72, 0x71, 0x90, 0xc0, 0xe2, 0xa3, 0xb7, + 0xf1, 0x25, 0x9d, 0xcb, 0x61, 0x2e, 0x23, 0x38, 0xff, 0x00, 0x6a, 0xbc, + 0xa2, 0x78, 0x83, 0xac, 0x84, 0xb3, 0x1f, 0x9b, 0x3c, 0xd6, 0x72, 0x91, + 0x10, 0x66, 0xdc, 0xc3, 0x07, 0xa8, 0xa0, 0x0f, 0x76, 0x17, 0xd1, 0x37, + 0x47, 0x1f, 0x9d, 0x06, 0xee, 0x33, 0xfc, 0x55, 0xe1, 0xcb, 0xa8, 0x5c, + 0xe3, 0x70, 0xba, 0x99, 0x57, 0xea, 0x6a, 0x63, 0xa9, 0xdf, 0x20, 0xca, + 0xdd, 0x48, 0x7f, 0xe0, 0x54, 0x01, 0xed, 0x5f, 0x69, 0x43, 0xfc, 0x42, + 0x8f, 0x3d, 0x0f, 0x46, 0x15, 0xe0, 0xe7, 0xc5, 0x9a, 0xbc, 0x57, 0x1b, + 0x12, 0xe5, 0xb0, 0x0f, 0x39, 0xab, 0x90, 0xf8, 0xe7, 0x53, 0x5e, 0xb2, + 0x6e, 0xe6, 0x80, 0x3d, 0xb3, 0xcd, 0x07, 0xb8, 0xa6, 0x99, 0x7d, 0x2b, + 0xcb, 0x20, 0xf1, 0xbd, 0xee, 0xd0, 0xcc, 0x81, 0x87, 0x7a, 0xd1, 0x87, + 0xc6, 0xa1, 0x59, 0x64, 0x78, 0xdf, 0x0e, 0x31, 0xd7, 0x81, 0x40, 0x1d, + 0xf1, 0x7c, 0xd2, 0x6e, 0xae, 0x5a, 0x2f, 0x17, 0xda, 0x10, 0x3c, 0xc2, + 0x57, 0xea, 0x2b, 0x42, 0x0d, 0x7e, 0xc6, 0x70, 0x36, 0xcc, 0xa4, 0xfd, + 0x68, 0x03, 0x67, 0x83, 0xd6, 0x9c, 0x08, 0x15, 0x49, 0x2f, 0x22, 0x71, + 0xf2, 0xb8, 0x3f, 0x4a, 0x93, 0xcd, 0xcf, 0x43, 0x40, 0x16, 0x4b, 0x81, + 0x51, 0x96, 0x27, 0xdb, 0xde, 0xa2, 0xdf, 0x9a, 0x91, 0x17, 0x79, 0xa0, + 0x06, 0x99, 0x36, 0xfd, 0xdc, 0xfd, 0x69, 0xc9, 0x2c, 0xac, 0x79, 0x88, + 0xe3, 0xd6, 0xac, 0xac, 0x48, 0x8b, 0xb9, 0xf0, 0x2a, 0x29, 0x6f, 0x14, + 0x7c, 0xb1, 0x8f, 0xc6, 0x80, 0x1f, 0xf2, 0xe3, 0x34, 0xd2, 0xc3, 0xb5, + 0x55, 0x32, 0xb3, 0x1e, 0xa0, 0x7b, 0x9a, 0x0c, 0xc1, 0x7f, 0x88, 0xb7, + 0xd0, 0x50, 0x05, 0x82, 0x45, 0x21, 0x5d, 0xc3, 0x8a, 0x81, 0x65, 0xde, + 0x70, 0x38, 0x3e, 0x8d, 0xc5, 0x3b, 0xf7, 0xcb, 0xfc, 0x3f, 0x91, 0xa0, + 0x05, 0x64, 0x35, 0x0b, 0x0c, 0x54, 0xeb, 0x3f, 0x69, 0x17, 0x14, 0x38, + 0x56, 0x19, 0x53, 0x9a, 0x00, 0xa6, 0xc6, 0x99, 0x90, 0x69, 0xf2, 0x32, + 0x8e, 0xb5, 0x52, 0x57, 0x8c, 0x72, 0x5b, 0x6f, 0xd0, 0xd0, 0x04, 0x92, + 0x28, 0xef, 0x50, 0x30, 0x23, 0xa7, 0xcc, 0xb5, 0x56, 0x5d, 0x55, 0x21, + 0x3b, 0x43, 0x79, 0x87, 0xd0, 0x73, 0x59, 0x97, 0x5a, 0xd7, 0x96, 0x49, + 0xdf, 0x1c, 0x23, 0xd5, 0xdb, 0xfa, 0x50, 0x06, 0xc9, 0x23, 0x19, 0x07, + 0x8e, 0xe0, 0xd2, 0x7d, 0xba, 0x28, 0x47, 0xcf, 0x2a, 0x81, 0xee, 0x6b, + 0x8c, 0xb8, 0xf1, 0x45, 0x96, 0xe2, 0x1a, 0xea, 0x49, 0x98, 0x75, 0x58, + 0xc6, 0x07, 0xe7, 0x59, 0xb2, 0xf8, 0xbe, 0x16, 0x62, 0x2d, 0xf4, 0xf4, + 0x2c, 0xbd, 0xe5, 0x3b, 0x8d, 0x00, 0x7a, 0x42, 0xea, 0xb0, 0xb0, 0x21, + 0x1b, 0x79, 0xf6, 0xa7, 0x79, 0xb7, 0x32, 0xe0, 0xa5, 0xb4, 0x98, 0xf5, + 0x23, 0x02, 0xbc, 0xb0, 0xf8, 0xdb, 0x56, 0x65, 0x29, 0x1c, 0xa9, 0x00, + 0xff, 0x00, 0x61, 0x71, 0x54, 0x2e, 0x35, 0xfd, 0x4a, 0xe0, 0x7e, 0xf3, + 0x52, 0x98, 0x8f, 0x40, 0xf8, 0xfe, 0x54, 0x01, 0xec, 0x81, 0x2e, 0x5b, + 0xfd, 0x64, 0xd6, 0xb0, 0x0f, 0xfa, 0x69, 0x28, 0xa8, 0xa7, 0xfb, 0x15, + 0xba, 0x16, 0x9b, 0xc4, 0x36, 0x11, 0x63, 0xa8, 0x0d, 0x9a, 0xf0, 0xf7, + 0xbc, 0x96, 0x56, 0xc3, 0xce, 0xef, 0x9f, 0x56, 0x26, 0xa1, 0xb8, 0x23, + 0xca, 0x38, 0x3c, 0xd0, 0x07, 0xb9, 0x43, 0x7b, 0xe1, 0x46, 0x5c, 0xdc, + 0xf8, 0xac, 0x03, 0xdc, 0x46, 0x9f, 0xfd, 0x6a, 0x99, 0x6e, 0xfc, 0x11, + 0x27, 0xdd, 0xf1, 0x74, 0x88, 0x07, 0x50, 0xc9, 0xd7, 0xe9, 0xc5, 0x78, + 0x2c, 0x47, 0x31, 0x83, 0x9a, 0x94, 0x0c, 0xf7, 0xa0, 0x0f, 0xa1, 0xac, + 0xac, 0x7c, 0x29, 0x79, 0x6d, 0xf6, 0x81, 0xe2, 0x3b, 0xaf, 0x2b, 0x79, + 0x0a, 0xfb, 0x70, 0x0e, 0x0f, 0xfb, 0xb5, 0x0d, 0xcf, 0xfc, 0x23, 0x16, + 0xcd, 0xb3, 0xfe, 0x12, 0x99, 0x22, 0x25, 0xf0, 0xbe, 0x64, 0x7c, 0x11, + 0xeb, 0xd2, 0xbc, 0x72, 0xcb, 0x56, 0x9c, 0x69, 0xab, 0x62, 0x5d, 0xd9, + 0x14, 0x92, 0xaa, 0xa7, 0xa5, 0x51, 0xbd, 0xd4, 0x1a, 0xe6, 0x34, 0x89, + 0x81, 0xca, 0x1e, 0xa4, 0xf2, 0x68, 0x03, 0xdf, 0x22, 0xd3, 0x74, 0xf9, + 0xd4, 0x1b, 0x6f, 0x17, 0x58, 0xbf, 0xa6, 0xe2, 0x07, 0xf5, 0xa5, 0x7d, + 0x22, 0xfd, 0x7f, 0xe3, 0xdf, 0x54, 0xd3, 0xae, 0xbf, 0xdd, 0x98, 0x0a, + 0xf9, 0xcd, 0x8e, 0x06, 0x77, 0x62, 0xa3, 0x4b, 0xb9, 0xe2, 0x05, 0xe3, + 0x99, 0xd3, 0xfd, 0xd6, 0x22, 0x80, 0x3e, 0x8a, 0x92, 0xcb, 0x5c, 0x80, + 0x65, 0xac, 0x44, 0x83, 0xd6, 0x27, 0x0d, 0xfc, 0xaa, 0xa4, 0x97, 0xf3, + 0xda, 0x9c, 0x5c, 0xd9, 0xcf, 0x17, 0xfb, 0xca, 0x45, 0x78, 0x7d, 0x9f, + 0x88, 0x35, 0xab, 0x73, 0xbe, 0x2d, 0x4e, 0xed, 0x4f, 0x61, 0xe6, 0x93, + 0x5b, 0x10, 0xfc, 0x40, 0xf1, 0x3c, 0x44, 0x06, 0xd4, 0x64, 0x91, 0x47, + 0x69, 0x00, 0x22, 0x80, 0x3d, 0x5a, 0x3d, 0x66, 0xd6, 0x4e, 0x92, 0x60, + 0xfb, 0xd5, 0xa8, 0xae, 0xa2, 0x9b, 0x95, 0x91, 0x48, 0xf6, 0x35, 0xe6, + 0x71, 0x7c, 0x49, 0xb9, 0x68, 0xb6, 0x5e, 0xe9, 0x96, 0x73, 0x73, 0xcb, + 0x2a, 0x6d, 0x26, 0xac, 0xc1, 0xe3, 0x0f, 0x0f, 0xce, 0xf9, 0x7b, 0x6b, + 0xab, 0x22, 0x7b, 0xc4, 0xfb, 0x94, 0x7e, 0x14, 0x01, 0xe9, 0xab, 0x20, + 0xc7, 0x1d, 0x29, 0xde, 0x66, 0x2b, 0x8a, 0xb4, 0xd6, 0xed, 0x26, 0xc7, + 0xd8, 0xb5, 0x98, 0x5f, 0xfd, 0x89, 0xbe, 0x53, 0x5a, 0xab, 0xaa, 0xdd, + 0x42, 0x33, 0x35, 0xb9, 0x74, 0xfe, 0xfc, 0x67, 0x70, 0xfd, 0x28, 0x03, + 0xa1, 0xf3, 0x29, 0x7c, 0xca, 0xc6, 0x87, 0x5a, 0xb5, 0x98, 0x81, 0xbf, + 0x69, 0xf7, 0xab, 0x82, 0xe5, 0x18, 0x65, 0x58, 0x11, 0xec, 0x68, 0x02, + 0xf7, 0x99, 0x4a, 0x24, 0xaa, 0x3e, 0x76, 0x69, 0xea, 0xf9, 0xef, 0x40, + 0x17, 0x44, 0x95, 0x20, 0x72, 0x6a, 0x9a, 0xb8, 0x14, 0xf1, 0x35, 0x00, + 0x5c, 0x0d, 0xea, 0x6a, 0x45, 0x7a, 0xa0, 0x25, 0xa9, 0x52, 0x5a, 0x00, + 0xbc, 0xaf, 0x52, 0xab, 0xd5, 0x35, 0x7c, 0xd4, 0xca, 0xd4, 0x01, 0x6d, + 0x5a, 0xa6, 0x53, 0x55, 0x50, 0xd5, 0xa8, 0xd7, 0x34, 0x01, 0x62, 0x30, + 0x49, 0xad, 0x08, 0x57, 0x8a, 0xab, 0x12, 0xaa, 0xf2, 0xcc, 0x07, 0xd4, + 0xd4, 0xdf, 0x6c, 0xb7, 0x4f, 0xf9, 0x6a, 0xbf, 0x81, 0xa0, 0x0b, 0x80, + 0x53, 0xc5, 0x50, 0x4d, 0x4a, 0xdd, 0xc9, 0x0a, 0xdd, 0x3d, 0x78, 0xa9, + 0x16, 0xf5, 0x1f, 0x85, 0xe7, 0xe9, 0xcd, 0x00, 0x5c, 0xa2, 0xa0, 0x49, + 0x5d, 0xbf, 0x80, 0xfe, 0x46, 0xa5, 0x1b, 0x8f, 0x63, 0x40, 0x0f, 0xa5, + 0xa6, 0x80, 0x7d, 0x0d, 0x3c, 0x0f, 0x50, 0x7f, 0x3a, 0x00, 0x28, 0xed, + 0x59, 0x17, 0x76, 0x9a, 0xcb, 0xea, 0xa9, 0x2d, 0xa5, 0xd4, 0x29, 0x66, + 0x0a, 0xee, 0x89, 0xc1, 0x2c, 0x7d, 0x79, 0xed, 0x5b, 0x38, 0x07, 0xb1, + 0xfc, 0xe8, 0x01, 0x03, 0x8f, 0x7a, 0x37, 0x0a, 0xcb, 0x8e, 0xe6, 0x4d, + 0xa3, 0xe7, 0xcf, 0x15, 0x28, 0xb9, 0x93, 0xd4, 0x50, 0x06, 0x86, 0xe1, + 0xeb, 0x46, 0xe1, 0x54, 0x7e, 0xd4, 0xe3, 0xae, 0x28, 0x17, 0x87, 0xba, + 0xd0, 0x05, 0xee, 0x28, 0xc0, 0xaa, 0x42, 0xed, 0x7b, 0xad, 0x3c, 0x5d, + 0x46, 0x7b, 0x91, 0x40, 0x16, 0x0a, 0x83, 0xdc, 0xd3, 0x0c, 0x67, 0xb6, + 0x3f, 0x2a, 0x68, 0x9d, 0x0f, 0x47, 0x14, 0xef, 0x33, 0xe8, 0x68, 0x02, + 0x36, 0x59, 0x14, 0x70, 0x1b, 0xf0, 0x39, 0xfe, 0x75, 0xce, 0xdc, 0x78, + 0xa2, 0x4b, 0x2b, 0x87, 0x8a, 0xe2, 0xdc, 0x10, 0x0e, 0x06, 0xd3, 0x83, + 0xf9, 0x1a, 0xe9, 0xb7, 0xfb, 0x1a, 0xf0, 0xcf, 0x8b, 0xfa, 0xfd, 0xf4, + 0x3e, 0x20, 0x8e, 0xc5, 0x9b, 0x6d, 0xb4, 0x68, 0x24, 0x8f, 0x0b, 0x83, + 0x93, 0xd7, 0x9e, 0xf4, 0x01, 0xe9, 0xb1, 0xf8, 0xdf, 0x4a, 0x2d, 0xb6, + 0x67, 0x78, 0x5b, 0xfd, 0xb5, 0xad, 0x1b, 0x7d, 0x77, 0x4d, 0xba, 0xc7, + 0x95, 0x79, 0x11, 0xcf, 0x6d, 0xd5, 0xf3, 0x25, 0xb7, 0x89, 0xb5, 0x05, + 0x21, 0x44, 0xfb, 0xd0, 0x75, 0x12, 0x0d, 0xd5, 0x72, 0x3d, 0x76, 0x09, + 0x25, 0xdc, 0xf0, 0xb4, 0x2e, 0x7f, 0x8e, 0x07, 0x23, 0xf4, 0xa0, 0x0f, + 0xa7, 0x16, 0x44, 0x71, 0x95, 0x70, 0x47, 0xb1, 0xa0, 0xd7, 0xcf, 0x56, + 0x9e, 0x20, 0xd4, 0xd1, 0xc7, 0xf6, 0x66, 0xac, 0xce, 0x7f, 0xe7, 0x9c, + 0x9c, 0x1a, 0xea, 0xf4, 0xbf, 0x19, 0xeb, 0x0f, 0x09, 0xfb, 0x5d, 0xf5, + 0xbc, 0x68, 0xbc, 0x3b, 0xe3, 0x2c, 0xa7, 0xe9, 0x40, 0x1e, 0xab, 0x2c, + 0xb1, 0xc2, 0xa5, 0xa4, 0x70, 0xa0, 0x77, 0x27, 0x15, 0xce, 0xea, 0x3e, + 0x34, 0xd1, 0x6c, 0x1f, 0xcb, 0xfb, 0x40, 0x9a, 0x5e, 0xc9, 0x17, 0xcc, + 0x7f, 0x4a, 0xe2, 0xf5, 0x9b, 0xc1, 0xa8, 0xe8, 0xef, 0x2b, 0x4b, 0x75, + 0x32, 0xe3, 0x71, 0x93, 0x71, 0x51, 0x8a, 0xe2, 0xa6, 0xbc, 0x9a, 0x1d, + 0x2e, 0x49, 0x74, 0xe4, 0x4b, 0x75, 0x53, 0x82, 0xe5, 0x72, 0xc7, 0xdf, + 0x34, 0x01, 0xe9, 0x3a, 0x8f, 0x8f, 0xa5, 0x48, 0xcb, 0x22, 0x47, 0x69, + 0x1f, 0x66, 0x94, 0xfc, 0xc7, 0xf0, 0xae, 0x23, 0x52, 0xf8, 0x80, 0xf7, + 0x33, 0x84, 0x49, 0x25, 0x9d, 0xc9, 0xc0, 0x2c, 0x70, 0xbf, 0x95, 0x79, + 0xcd, 0xf4, 0xd7, 0x52, 0xca, 0x67, 0x79, 0x64, 0x2e, 0x7a, 0x96, 0x24, + 0x83, 0x50, 0x5b, 0x5f, 0x88, 0xe6, 0x0d, 0x32, 0xe1, 0x81, 0xc8, 0x3d, + 0xa8, 0x03, 0xaf, 0xba, 0xf1, 0x1d, 0xcc, 0xf2, 0xbc, 0x53, 0x4c, 0x51, + 0x33, 0x80, 0x63, 0xe0, 0x0a, 0xc4, 0xbd, 0x8d, 0x9d, 0xff, 0x00, 0x78, + 0xc5, 0x89, 0xe5, 0x5b, 0x3d, 0x6b, 0x3c, 0xdc, 0xf5, 0x27, 0x07, 0x26, + 0x90, 0xdd, 0x12, 0x38, 0x27, 0x03, 0xb1, 0xed, 0x40, 0x0e, 0x32, 0x3c, + 0x4c, 0x15, 0xcf, 0xd1, 0xaa, 0xc2, 0xba, 0xa3, 0x29, 0xdf, 0x9f, 0xa5, + 0x51, 0x79, 0xbc, 0xc1, 0x86, 0xa8, 0x19, 0xc8, 0xe3, 0x27, 0x14, 0x01, + 0xb4, 0x6e, 0x14, 0x9e, 0xbc, 0xd2, 0x8b, 0xe2, 0xb1, 0xb2, 0x0e, 0x87, + 0xad, 0x63, 0x2c, 0xca, 0x39, 0xef, 0x52, 0x2c, 0xbb, 0x89, 0xc1, 0xe4, + 0x73, 0x40, 0x1a, 0x06, 0xe4, 0xf5, 0x15, 0x56, 0xe4, 0xa4, 0xe7, 0x73, + 0x29, 0xcd, 0x43, 0xe7, 0x8e, 0xe6, 0x96, 0x3b, 0x94, 0x12, 0xab, 0x32, + 0xee, 0x55, 0x39, 0x23, 0xd6, 0x80, 0x19, 0x0d, 0xcb, 0x59, 0x5c, 0x95, + 0xc3, 0x3c, 0x58, 0xfc, 0xab, 0x66, 0xd6, 0xf3, 0x7c, 0xa8, 0xc8, 0xdc, + 0x12, 0x30, 0x41, 0xe9, 0x56, 0x97, 0x5b, 0x86, 0xe2, 0xd2, 0x78, 0xad, + 0xed, 0xa3, 0xc1, 0x5d, 0xce, 0x59, 0x06, 0x78, 0xae, 0x72, 0x0b, 0x8c, + 0x4c, 0x24, 0x8a, 0x33, 0xc9, 0xf9, 0x90, 0x50, 0x07, 0x73, 0xab, 0x7d, + 0x91, 0x2e, 0x6d, 0x54, 0x7c, 0xe0, 0x2e, 0x1d, 0xbd, 0x4d, 0x4d, 0xe2, + 0x2b, 0x78, 0x8c, 0xf6, 0x92, 0x34, 0x5b, 0xff, 0x00, 0x70, 0x00, 0xe3, + 0x80, 0x2a, 0x1d, 0x6a, 0x54, 0x92, 0x0b, 0x25, 0x89, 0x36, 0x39, 0x50, + 0x48, 0x2b, 0x8a, 0xd1, 0xd6, 0xf7, 0x35, 0x8c, 0x00, 0x6d, 0xcf, 0xd9, + 0xc7, 0x06, 0x80, 0x38, 0x99, 0x1d, 0x21, 0x12, 0xa2, 0x01, 0xf3, 0x36, + 0x73, 0x53, 0x5b, 0x5c, 0xf9, 0x63, 0x3b, 0xb2, 0x71, 0xc7, 0xb5, 0x50, + 0xd8, 0xed, 0x23, 0x29, 0xeb, 0x9a, 0xbb, 0x1d, 0xbd, 0xb2, 0xc6, 0xea, + 0xd3, 0x8d, 0xc7, 0xd4, 0x74, 0xa0, 0x0b, 0x71, 0x5d, 0xb2, 0xee, 0x76, + 0x6c, 0x9e, 0xc2, 0xab, 0xbd, 0xdc, 0xa5, 0xc9, 0x08, 0x7f, 0x0a, 0x67, + 0xd8, 0x89, 0x87, 0x30, 0x4c, 0x24, 0x6c, 0xfd, 0x29, 0x20, 0xb6, 0xbd, + 0xdf, 0xf3, 0x80, 0x14, 0x75, 0xe4, 0x50, 0x05, 0xb3, 0x77, 0xb6, 0x15, + 0x07, 0x39, 0x3d, 0x78, 0xa6, 0x1b, 0x8f, 0x34, 0x72, 0xfd, 0x07, 0x7a, + 0xab, 0x21, 0xb9, 0x42, 0x7f, 0x72, 0xc4, 0x7d, 0x2a, 0x17, 0xb8, 0x65, + 0x50, 0x1e, 0x36, 0xcb, 0x76, 0xc5, 0x00, 0x59, 0x17, 0x3b, 0x94, 0xb3, + 0x1e, 0x07, 0x4e, 0x69, 0x2d, 0x89, 0x57, 0x32, 0x1e, 0x58, 0xf4, 0xf6, + 0xac, 0xc2, 0xca, 0xef, 0xf3, 0x0c, 0x28, 0xed, 0x57, 0x22, 0x74, 0xe3, + 0x6b, 0x60, 0x7d, 0x68, 0x03, 0x62, 0x39, 0x24, 0x93, 0xa1, 0xc0, 0xf5, + 0xab, 0x62, 0xe4, 0x46, 0xa3, 0x0c, 0x73, 0xed, 0x58, 0x62, 0xe9, 0xd4, + 0x61, 0x58, 0x50, 0x2e, 0xe4, 0x5e, 0x4a, 0xe6, 0x80, 0x3a, 0x9b, 0x3d, + 0x62, 0x78, 0x10, 0xcd, 0x24, 0xdb, 0x63, 0x07, 0x82, 0x4f, 0x26, 0xba, + 0x1d, 0x3f, 0xc7, 0x8c, 0x15, 0x13, 0x7b, 0x2e, 0x3b, 0x9e, 0xf5, 0xe6, + 0x86, 0xef, 0xcc, 0xc0, 0x93, 0xd7, 0xa5, 0x13, 0x5f, 0x0c, 0x04, 0x88, + 0x65, 0xfa, 0x50, 0x07, 0xbc, 0x58, 0x78, 0xba, 0xd2, 0xe8, 0x0f, 0x38, + 0xed, 0x27, 0xbe, 0x78, 0xad, 0xf8, 0x27, 0x8e, 0xe1, 0x03, 0x40, 0xca, + 0xc3, 0xd7, 0x35, 0xf3, 0xa6, 0x9e, 0xf7, 0x10, 0x3f, 0x9a, 0xd7, 0x2c, + 0x09, 0xfe, 0x10, 0x78, 0xae, 0x8e, 0xc3, 0xc5, 0xb7, 0x16, 0x52, 0x28, + 0x59, 0x18, 0x73, 0xd5, 0x68, 0x03, 0xda, 0x99, 0x24, 0x66, 0x05, 0xc9, + 0x23, 0x3d, 0x3b, 0x54, 0xa2, 0x2c, 0x49, 0xc0, 0xe0, 0xd7, 0x0b, 0xa6, + 0x78, 0xfd, 0x1c, 0x05, 0x9c, 0x07, 0xf5, 0x2b, 0xd4, 0x7e, 0x15, 0xd6, + 0xe9, 0xfe, 0x20, 0xb1, 0xbe, 0x03, 0xca, 0x99, 0x18, 0xfa, 0x67, 0x91, + 0x40, 0x1a, 0x4b, 0x19, 0xf4, 0xa7, 0x88, 0xd8, 0xf6, 0xa6, 0xb6, 0xa3, + 0x0c, 0x63, 0x2c, 0x40, 0xfc, 0x6b, 0x13, 0x53, 0xf1, 0xb6, 0x9b, 0xa7, + 0x29, 0xf3, 0x27, 0x4d, 0xc3, 0xa0, 0x07, 0x26, 0x80, 0x37, 0x84, 0x04, + 0xf5, 0xaa, 0xb7, 0x66, 0xd6, 0xd6, 0x32, 0xf3, 0x4c, 0x89, 0x8f, 0x53, + 0x5e, 0x61, 0xad, 0x7c, 0x51, 0xbb, 0x98, 0x32, 0x58, 0x20, 0x41, 0xd9, + 0xda, 0xb8, 0x2b, 0xef, 0x11, 0xea, 0x77, 0xf2, 0x16, 0xbc, 0xb8, 0x91, + 0xb3, 0xef, 0xc5, 0x00, 0x7a, 0xee, 0xa7, 0xe3, 0x6d, 0x2e, 0xd1, 0x4e, + 0xc9, 0x77, 0xb7, 0x60, 0x2b, 0x8d, 0xd5, 0x3e, 0x21, 0xdc, 0xb2, 0xb0, + 0xb6, 0x8b, 0xf3, 0x35, 0xc3, 0xc8, 0xf9, 0x4c, 0xee, 0xc9, 0x3d, 0x29, + 0x86, 0x4d, 0x8e, 0x03, 0x0e, 0x0f, 0xe8, 0x68, 0x02, 0xf5, 0xef, 0x8c, + 0x75, 0x6b, 0xa2, 0x7f, 0x7e, 0x63, 0x1d, 0xc2, 0xd6, 0x44, 0xd7, 0xf7, + 0x17, 0x19, 0x67, 0x9d, 0xd8, 0xf7, 0x05, 0xa8, 0xbb, 0x48, 0xc8, 0x2c, + 0x38, 0x6a, 0xa0, 0x18, 0x83, 0xd3, 0x06, 0x80, 0x36, 0x2c, 0x75, 0x30, + 0x89, 0xe4, 0x4d, 0xf3, 0x29, 0xfb, 0xa4, 0x9e, 0x86, 0xb6, 0x45, 0xd4, + 0x29, 0x1a, 0x2b, 0x29, 0xdc, 0x46, 0xe3, 0xcf, 0x15, 0xc7, 0x39, 0xdc, + 0x32, 0x3a, 0xf7, 0x15, 0x72, 0xd6, 0xe1, 0xe6, 0x51, 0x1b, 0x82, 0x59, + 0x7e, 0xeb, 0x50, 0x07, 0x52, 0xb7, 0xa1, 0x93, 0x03, 0xe5, 0x1e, 0xd5, + 0x56, 0x5b, 0xc8, 0xcc, 0x9b, 0x03, 0x31, 0x0b, 0xcf, 0x5e, 0xa6, 0xb3, + 0x95, 0x98, 0x2f, 0xcc, 0x30, 0x7e, 0xb4, 0xf8, 0xe6, 0x89, 0x7b, 0x0c, + 0xfb, 0xd0, 0x05, 0x9b, 0x9b, 0xc2, 0x31, 0x22, 0x8c, 0xb0, 0xfd, 0x45, + 0x47, 0xf6, 0xc7, 0x6f, 0xba, 0xa7, 0x69, 0xa6, 0x34, 0xcc, 0x50, 0x8d, + 0xa3, 0x14, 0xc4, 0xd8, 0x23, 0x03, 0xce, 0xc9, 0x3d, 0x42, 0xf6, 0xa0, + 0x08, 0x23, 0x94, 0xac, 0xf2, 0x29, 0xce, 0x33, 0xb8, 0x0a, 0xb0, 0xf7, + 0x6e, 0xc9, 0xb4, 0x29, 0xfa, 0xd4, 0x32, 0x35, 0xba, 0x4c, 0xac, 0x77, + 0xe4, 0x8d, 0xb4, 0xaf, 0x24, 0x6a, 0x39, 0x57, 0x03, 0xdc, 0xd0, 0x04, + 0xff, 0x00, 0xda, 0x52, 0xb4, 0x02, 0x36, 0xea, 0x0f, 0x27, 0xd6, 0xaa, + 0x7d, 0xa1, 0x9c, 0x60, 0xe7, 0x19, 0xce, 0x29, 0xc1, 0xe2, 0x61, 0x90, + 0x84, 0xff, 0x00, 0xc0, 0xa9, 0x89, 0x2a, 0xa4, 0x7f, 0xea, 0xf0, 0x33, + 0xeb, 0x40, 0x13, 0x79, 0xf2, 0x14, 0xc6, 0xd2, 0x05, 0x46, 0xf3, 0xb2, + 0xa7, 0xa6, 0x28, 0xf3, 0xb3, 0xc0, 0x5f, 0xfc, 0x7a, 0xab, 0xcf, 0x32, + 0x28, 0xf9, 0xd5, 0xb0, 0x78, 0xeb, 0x40, 0x15, 0x0b, 0x16, 0x95, 0xdb, + 0xb9, 0xab, 0x10, 0x81, 0x9f, 0xa5, 0x40, 0xbe, 0x52, 0xe4, 0xfc, 0xd5, + 0x3c, 0x6c, 0xa0, 0x64, 0x06, 0xc7, 0xd2, 0x80, 0x2e, 0x2c, 0xca, 0xa3, + 0x07, 0xaf, 0x43, 0x53, 0xdc, 0xdc, 0x2c, 0x56, 0xd1, 0x22, 0xfd, 0xe2, + 0x32, 0x33, 0xef, 0x59, 0xe6, 0x54, 0x03, 0x93, 0x8f, 0xa8, 0xa6, 0x19, + 0x44, 0x8c, 0x0b, 0x36, 0x71, 0xc0, 0xfa, 0x50, 0x05, 0xa3, 0x34, 0x9e, + 0x50, 0x5d, 0xdc, 0x77, 0x19, 0xeb, 0x48, 0xb3, 0x3b, 0xb8, 0x48, 0x1c, + 0xae, 0x3e, 0xf3, 0x03, 0x54, 0x5d, 0xc3, 0x1f, 0x2d, 0x33, 0xee, 0x7d, + 0x2a, 0x45, 0x05, 0x17, 0x08, 0xd8, 0xa0, 0x0d, 0x94, 0xd5, 0xef, 0x6d, + 0x0a, 0x88, 0xee, 0x1b, 0x3d, 0x06, 0x4d, 0x6d, 0x5a, 0x78, 0xc6, 0xfe, + 0x01, 0xfb, 0xd0, 0x1c, 0x0e, 0xb5, 0xc6, 0xa4, 0xce, 0xa7, 0x7b, 0xf3, + 0xe9, 0x52, 0xa5, 0xcb, 0xb4, 0xd8, 0x40, 0x49, 0x6e, 0xc2, 0x80, 0x3d, + 0x32, 0xc7, 0xc6, 0xd6, 0xd3, 0x32, 0xac, 0x8a, 0x55, 0x8f, 0x15, 0xbf, + 0x6b, 0xe2, 0x3b, 0x36, 0x62, 0xa1, 0xc6, 0xef, 0x52, 0x6b, 0xca, 0x61, + 0x58, 0xad, 0xc8, 0x92, 0x72, 0x0b, 0x81, 0x90, 0xb5, 0x55, 0xb5, 0x37, + 0x33, 0x6e, 0x42, 0x54, 0x1f, 0x4a, 0x00, 0xf6, 0xa3, 0x74, 0x6e, 0x79, + 0x12, 0x82, 0x3d, 0x01, 0xa7, 0x2a, 0x13, 0xfc, 0x43, 0xf1, 0xaf, 0x24, + 0xb5, 0xd7, 0xe6, 0xb7, 0xc3, 0x79, 0xac, 0x9e, 0xea, 0x71, 0xfa, 0x57, + 0x47, 0xa6, 0xf8, 0xce, 0xef, 0x8c, 0x34, 0x77, 0x0a, 0x3a, 0xa9, 0xf9, + 0x5a, 0x80, 0x3b, 0xd5, 0x86, 0x43, 0xd1, 0xa3, 0xfc, 0x69, 0x4c, 0x13, + 0x7f, 0xcf, 0x74, 0x5f, 0xa2, 0xd6, 0x5e, 0x9f, 0xe3, 0x7d, 0x2e, 0x57, + 0x58, 0xae, 0xd5, 0xed, 0xa4, 0x3f, 0xf3, 0xd0, 0x60, 0x7e, 0x75, 0xd5, + 0xda, 0xdd, 0x58, 0xdd, 0xa0, 0x68, 0x26, 0x89, 0xc7, 0xb1, 0x14, 0x01, + 0x8c, 0x6d, 0x18, 0xf2, 0xd3, 0xb3, 0x7e, 0x14, 0x9b, 0x65, 0x8b, 0xa1, + 0x66, 0x1e, 0x86, 0xb4, 0xf5, 0x0d, 0x4f, 0x4f, 0xb0, 0x8c, 0xbc, 0xf7, + 0x10, 0xc6, 0x07, 0xab, 0x0a, 0xe4, 0x6f, 0x7c, 0x69, 0x04, 0x85, 0x96, + 0xca, 0x27, 0x98, 0x0f, 0xe3, 0x23, 0x6a, 0x7e, 0x74, 0x01, 0xac, 0xf2, + 0x0c, 0x12, 0xc0, 0xa7, 0xd4, 0xd6, 0x4d, 0xd6, 0xb7, 0x05, 0xab, 0x6d, + 0x59, 0x4b, 0x3f, 0xf7, 0x57, 0x9a, 0xe3, 0xb5, 0x7f, 0x18, 0x33, 0x16, + 0x59, 0x27, 0xdc, 0x7f, 0xe7, 0x9c, 0x3f, 0xd4, 0xd7, 0x2d, 0x75, 0xaf, + 0x5d, 0xce, 0x08, 0x8b, 0x6c, 0x08, 0x7f, 0xbb, 0xd4, 0xd0, 0x07, 0xa1, + 0x5e, 0x78, 0x92, 0x40, 0x09, 0x79, 0x62, 0x8b, 0x3d, 0x8f, 0x26, 0xb9, + 0xcb, 0xbf, 0x15, 0xc4, 0x49, 0x08, 0x5e, 0x46, 0x1d, 0xdc, 0xe0, 0x7e, + 0x55, 0xc4, 0x3c, 0xc6, 0x59, 0x49, 0x95, 0xe4, 0x3f, 0x53, 0x4b, 0xf6, + 0x86, 0x4f, 0xb8, 0xc0, 0x8f, 0x71, 0x9a, 0x00, 0xdd, 0x9f, 0xc4, 0x37, + 0x93, 0xe4, 0x23, 0x15, 0x5f, 0x44, 0x18, 0xac, 0xd9, 0x66, 0x92, 0x43, + 0x96, 0xfc, 0xd8, 0xd5, 0x31, 0x73, 0x91, 0x90, 0x70, 0x7d, 0x29, 0xad, + 0x31, 0x71, 0x40, 0x0f, 0x70, 0xcb, 0xfb, 0xc0, 0xc3, 0x3e, 0xd4, 0xd2, + 0x39, 0xdf, 0xb8, 0xf4, 0xeb, 0x4a, 0x91, 0x4f, 0x28, 0x21, 0x23, 0x63, + 0x81, 0xe9, 0x42, 0x58, 0x5e, 0x48, 0x4a, 0x88, 0x88, 0x1e, 0xe6, 0x80, + 0x18, 0x19, 0x03, 0xe4, 0x8c, 0xd3, 0xc9, 0x5e, 0xaa, 0xa0, 0x54, 0xeb, + 0xa3, 0x5c, 0x9c, 0x65, 0x91, 0x7e, 0xa6, 0xac, 0x47, 0xa1, 0xca, 0xc7, + 0x0d, 0x3a, 0x0a, 0x00, 0xcf, 0xf3, 0x87, 0xa0, 0xa8, 0xe5, 0x21, 0x90, + 0xe4, 0xd6, 0xd0, 0xf0, 0xf4, 0x00, 0xfc, 0xf7, 0xf1, 0x8a, 0x6b, 0xe8, + 0x76, 0x4b, 0x90, 0xfa, 0x94, 0x5f, 0xf7, 0xd5, 0x00, 0x62, 0x47, 0x26, + 0x10, 0x73, 0x52, 0x09, 0x8d, 0x6b, 0x26, 0x8f, 0xa5, 0xaa, 0x02, 0xfa, + 0x94, 0x7c, 0xf4, 0xf9, 0xaa, 0x78, 0xf4, 0x4d, 0x2e, 0x63, 0x88, 0xf5, + 0x38, 0xb3, 0xee, 0xd4, 0x01, 0x5f, 0x40, 0x5f, 0xb4, 0x6a, 0xa8, 0xac, + 0x40, 0x5c, 0x12, 0x69, 0x35, 0x07, 0xb3, 0x54, 0x95, 0x63, 0x0d, 0xe7, + 0x89, 0x4f, 0x27, 0xd2, 0xb6, 0xb4, 0xad, 0x1e, 0xca, 0xcf, 0x51, 0x59, + 0x16, 0xfa, 0x29, 0xb8, 0x20, 0xaa, 0xb6, 0x6a, 0x0d, 0x53, 0x4a, 0x8e, + 0x59, 0xdc, 0x1b, 0x98, 0x22, 0x05, 0xb7, 0x6d, 0x1d, 0x68, 0x03, 0x95, + 0x77, 0x3d, 0x33, 0xd6, 0x99, 0x9d, 0xcc, 0x17, 0xb0, 0xad, 0x86, 0xf0, + 0xf9, 0x6e, 0x63, 0xba, 0x8c, 0xfe, 0x34, 0x47, 0xe1, 0xbb, 0x95, 0x57, + 0x3e, 0x64, 0x64, 0xf6, 0xc1, 0xeb, 0x40, 0x19, 0xca, 0xc4, 0x71, 0x52, + 0x6f, 0xa9, 0xdb, 0x46, 0xbe, 0x4f, 0xf9, 0x67, 0x9f, 0xa1, 0xa8, 0x1e, + 0xce, 0xea, 0x3f, 0xbd, 0x0b, 0xfe, 0x54, 0x00, 0x9e, 0x60, 0xa6, 0x12, + 0x18, 0xfb, 0x53, 0x19, 0x64, 0x56, 0xf9, 0x90, 0x8f, 0xa8, 0xa8, 0xd9, + 0xf0, 0x70, 0x3a, 0xd0, 0x04, 0xa5, 0xf6, 0xf4, 0x3c, 0xf6, 0xab, 0xd6, + 0x5a, 0xbe, 0xa7, 0x62, 0xfb, 0xa0, 0xbc, 0x96, 0x3f, 0x60, 0xdc, 0x56, + 0x60, 0xc2, 0x9c, 0x93, 0xcd, 0x49, 0xbf, 0x34, 0x01, 0xd8, 0x41, 0xe3, + 0x8b, 0x82, 0xa1, 0x35, 0x0b, 0x68, 0x6e, 0x54, 0x7f, 0x16, 0x36, 0xb0, + 0xfc, 0x6b, 0x62, 0xcb, 0xc4, 0xba, 0x65, 0xc0, 0x0b, 0x6f, 0x79, 0x25, + 0xa4, 0xa7, 0xf8, 0x66, 0xe5, 0x7f, 0x3a, 0xf3, 0x5f, 0x31, 0x80, 0xe5, + 0x7f, 0x1a, 0x41, 0x22, 0x8e, 0x73, 0x40, 0x1e, 0xdf, 0x6b, 0xab, 0x4e, + 0x88, 0x1a, 0x55, 0x59, 0x63, 0xff, 0x00, 0x9e, 0x91, 0x1d, 0xc0, 0xd6, + 0xac, 0x17, 0xf0, 0xce, 0x06, 0xd6, 0x19, 0xf4, 0x35, 0xe0, 0x76, 0xba, + 0xc5, 0xed, 0x94, 0x9b, 0xac, 0xe7, 0x92, 0x33, 0xec, 0x78, 0x3f, 0x85, + 0x75, 0x5a, 0x6f, 0x8e, 0x1f, 0xe5, 0x1a, 0x8d, 0xba, 0xbf, 0xfd, 0x34, + 0x8b, 0xe5, 0x6a, 0x00, 0xf5, 0xc1, 0x27, 0xbd, 0x3b, 0xcd, 0xc5, 0x72, + 0x1a, 0x7f, 0x89, 0x2d, 0x6e, 0x90, 0x1b, 0x7b, 0xa5, 0x97, 0xfd, 0x86, + 0xe1, 0x85, 0x68, 0xbe, 0xbf, 0x65, 0x14, 0x65, 0xa4, 0x9d, 0x57, 0x1d, + 0x41, 0x3c, 0xd0, 0x07, 0x40, 0x25, 0xa9, 0x52, 0x4c, 0xf7, 0xae, 0x22, + 0xe7, 0xc6, 0x76, 0xd1, 0x67, 0xca, 0x05, 0xfd, 0xfb, 0x56, 0x45, 0xc7, + 0x8e, 0xae, 0x1b, 0x88, 0xc8, 0x5f, 0xa5, 0x00, 0x7a, 0xaa, 0xdc, 0x22, + 0x7d, 0xe7, 0x03, 0xf1, 0xa4, 0x6d, 0x66, 0xd1, 0x09, 0x01, 0xf7, 0x11, + 0xd8, 0x57, 0x1f, 0xe0, 0xf0, 0xfa, 0xf5, 0xac, 0xf7, 0x77, 0x72, 0x3e, + 0xd5, 0x7d, 0xaa, 0x03, 0x75, 0xae, 0xaa, 0xde, 0xde, 0xce, 0xd5, 0xbe, + 0x48, 0xd7, 0x3e, 0xb8, 0xcd, 0x00, 0x5a, 0x87, 0x51, 0xba, 0xb9, 0x38, + 0xb5, 0xb4, 0x76, 0xf7, 0x22, 0xb4, 0xe0, 0xb1, 0xd5, 0xe7, 0xc1, 0x92, + 0x44, 0x84, 0x7d, 0x73, 0x51, 0x5b, 0x6a, 0x02, 0x30, 0x02, 0xa7, 0x1e, + 0xe7, 0x15, 0x78, 0x6b, 0x01, 0x47, 0x32, 0xc4, 0x9f, 0xa9, 0xa0, 0x09, + 0xa2, 0xd0, 0x89, 0xe6, 0x7b, 0xb9, 0x1c, 0xff, 0x00, 0xb3, 0xc5, 0x5d, + 0x8b, 0x47, 0xb2, 0x8f, 0xac, 0x65, 0xbf, 0xde, 0x62, 0x6b, 0x25, 0xb5, + 0xb8, 0xb1, 0xfe, 0xba, 0x56, 0xff, 0x00, 0x74, 0x62, 0xa2, 0x6d, 0x6b, + 0x27, 0xe5, 0x89, 0x8f, 0xfb, 0xce, 0x68, 0x03, 0xa5, 0x48, 0x2d, 0x62, + 0x38, 0x58, 0xe2, 0x53, 0xf4, 0x15, 0x30, 0x96, 0x25, 0xe0, 0x32, 0xfe, + 0x15, 0xca, 0x26, 0xa9, 0x36, 0x72, 0x23, 0x8c, 0x67, 0xd4, 0x66, 0xa6, + 0x5d, 0x52, 0xeb, 0xfb, 0xc8, 0x3e, 0x8a, 0x28, 0x03, 0xa7, 0x13, 0x2f, + 0x63, 0xfa, 0x53, 0xbc, 0xd1, 0xe8, 0x7f, 0x2a, 0xe6, 0x86, 0xa3, 0x72, + 0x7a, 0xcd, 0xf9, 0x52, 0x8b, 0xd9, 0xcf, 0x59, 0xdb, 0xf3, 0xa0, 0x0e, + 0x97, 0xcc, 0xf6, 0x34, 0x79, 0xa3, 0xd0, 0xd7, 0x34, 0xd7, 0xb2, 0x0e, + 0xb3, 0x37, 0xe7, 0x51, 0xfd, 0xb2, 0x56, 0x3f, 0xeb, 0x5b, 0xf3, 0xa0, + 0x0e, 0x9f, 0xed, 0x28, 0x1b, 0x69, 0xc8, 0x35, 0x20, 0x90, 0x11, 0x9c, + 0x1a, 0xe6, 0xe2, 0x99, 0xc9, 0x04, 0xbd, 0x5c, 0x17, 0x0e, 0x10, 0xe2, + 0x43, 0xd3, 0xd6, 0x80, 0x33, 0x63, 0x99, 0x82, 0x2f, 0xcd, 0xda, 0xa4, + 0x17, 0x0d, 0xeb, 0x59, 0xa9, 0x21, 0x0a, 0x3e, 0x94, 0xef, 0x34, 0xd0, + 0x06, 0x8f, 0xda, 0x5c, 0x77, 0xa7, 0x0b, 0xb6, 0x15, 0x9b, 0xe7, 0x1a, + 0x5f, 0x38, 0xd0, 0x06, 0xa0, 0xbd, 0xf5, 0x14, 0xef, 0xb5, 0xa1, 0xea, + 0x2b, 0x24, 0x4f, 0x47, 0x9e, 0x28, 0x03, 0x5b, 0xcf, 0x8c, 0xf7, 0x34, + 0xd3, 0x36, 0x3e, 0xec, 0x9f, 0xad, 0x65, 0x19, 0xbd, 0xe9, 0x86, 0x5f, + 0x7a, 0x00, 0xd8, 0xfb, 0x64, 0xc0, 0x71, 0x25, 0x79, 0x0f, 0xc5, 0xcb, + 0x49, 0x67, 0xbe, 0xb4, 0xbb, 0x3f, 0x36, 0x50, 0xa9, 0x35, 0xe8, 0x7e, + 0x73, 0x0f, 0xe2, 0xac, 0x2f, 0x12, 0x58, 0x36, 0xad, 0x6f, 0x12, 0x7f, + 0x75, 0xb2, 0x49, 0xf4, 0xa0, 0x0f, 0x21, 0xd3, 0x2c, 0x88, 0xb5, 0x98, + 0xb2, 0x06, 0x2c, 0x71, 0x8e, 0xf5, 0xb1, 0xa4, 0xf8, 0x06, 0xe3, 0x50, + 0x65, 0x99, 0xda, 0x4b, 0x68, 0x73, 0x9c, 0x37, 0x53, 0xf4, 0xae, 0x8d, + 0xf4, 0x5b, 0x7d, 0x29, 0xe0, 0x08, 0x32, 0xcc, 0xe0, 0xb1, 0x35, 0xd8, + 0xdb, 0x86, 0x64, 0x5c, 0x0c, 0x0a, 0x00, 0xcd, 0xd2, 0x7c, 0x37, 0xa6, + 0xe9, 0x11, 0x01, 0x1c, 0x4a, 0xcf, 0xdd, 0xdc, 0x64, 0x9a, 0xb0, 0xfe, + 0x1f, 0xd3, 0x6e, 0x67, 0x59, 0x9a, 0xc6, 0x3d, 0xe0, 0xe7, 0x71, 0x1d, + 0x7f, 0x0a, 0xd6, 0xda, 0x30, 0x0e, 0x29, 0x93, 0x5d, 0xdb, 0xda, 0xa1, + 0x79, 0xe6, 0x48, 0xd4, 0x77, 0x63, 0x8a, 0x00, 0xad, 0xad, 0x40, 0x91, + 0xe8, 0x92, 0xc6, 0x88, 0x02, 0x84, 0xc6, 0x00, 0xe2, 0xb8, 0x0b, 0x8b, + 0x70, 0xfa, 0x2d, 0xd2, 0xaa, 0x8c, 0xaa, 0xe4, 0x0a, 0xef, 0xf5, 0x0b, + 0xcb, 0x6b, 0xcd, 0x21, 0xe4, 0x8e, 0x4d, 0xd1, 0xb2, 0x67, 0x23, 0xb8, + 0xae, 0x12, 0xda, 0xea, 0xda, 0xf2, 0xda, 0xe6, 0x28, 0x64, 0xdc, 0x4c, + 0x7c, 0xd0, 0x07, 0x13, 0x75, 0x6b, 0x8d, 0x35, 0xdd, 0xb0, 0x59, 0x4f, + 0x6a, 0xe6, 0xe4, 0x00, 0xe4, 0x1e, 0x9e, 0x95, 0xe8, 0x17, 0x5a, 0x6b, + 0x1d, 0x2a, 0xe7, 0x27, 0x03, 0x66, 0x6b, 0x87, 0x32, 0x42, 0x84, 0xe1, + 0x41, 0x3e, 0xa7, 0x9a, 0x00, 0xa8, 0x89, 0x30, 0x3f, 0xbb, 0x56, 0x65, + 0xf4, 0xa9, 0x63, 0x49, 0x26, 0x72, 0xb9, 0x54, 0x23, 0xae, 0xee, 0x2a, + 0x46, 0xbe, 0x60, 0x3e, 0x5e, 0x07, 0xb7, 0x15, 0x5a, 0x47, 0x2e, 0x77, + 0x64, 0x06, 0xf5, 0xa0, 0x0b, 0xab, 0x04, 0x49, 0xfe, 0xb2, 0x70, 0x4f, + 0xfb, 0x22, 0x99, 0x29, 0xb5, 0x55, 0x21, 0x7e, 0xf7, 0xa9, 0x35, 0x97, + 0x2b, 0xca, 0x9d, 0x58, 0xfb, 0x1a, 0x80, 0xb1, 0x27, 0x24, 0x9a, 0x00, + 0xbe, 0x76, 0x13, 0xfe, 0xb3, 0xf2, 0xa6, 0xa4, 0xd0, 0x83, 0xcb, 0x31, + 0xf7, 0xaa, 0x59, 0x38, 0xeb, 0x49, 0x40, 0x1a, 0x6d, 0x71, 0x6c, 0x00, + 0x20, 0x03, 0xed, 0x4d, 0xfe, 0xd0, 0x8d, 0x32, 0x12, 0x31, 0x83, 0xed, + 0x59, 0xd4, 0x50, 0x07, 0x43, 0xa5, 0xea, 0x0a, 0xdf, 0x68, 0x1e, 0x58, + 0x18, 0x84, 0x9e, 0x95, 0x52, 0xd7, 0x53, 0x75, 0x9d, 0x08, 0x89, 0x7e, + 0xf8, 0xa9, 0x7c, 0x39, 0x6a, 0xb7, 0x57, 0x17, 0x2b, 0x23, 0x94, 0x45, + 0x81, 0x89, 0x20, 0x55, 0x14, 0x58, 0xc5, 0xfc, 0x6b, 0x11, 0x2c, 0x9b, + 0x86, 0x09, 0x1c, 0xd0, 0x07, 0xa7, 0xf8, 0xb1, 0xe2, 0xb2, 0xb4, 0xb0, + 0x9a, 0x62, 0xac, 0x64, 0x88, 0x15, 0x07, 0x8c, 0x1a, 0xa3, 0xe2, 0xbd, + 0x72, 0x4d, 0x3f, 0x4f, 0xd3, 0xd5, 0x21, 0x8d, 0xc4, 0xf0, 0x0c, 0x96, + 0xea, 0x31, 0x4f, 0xf8, 0x97, 0x19, 0x1a, 0x76, 0x89, 0xff, 0x00, 0x5c, + 0xc0, 0xfd, 0x2b, 0x1f, 0xc6, 0xe0, 0x49, 0xa5, 0xe9, 0x2e, 0xac, 0xa4, + 0x24, 0x41, 0x5b, 0x9e, 0x41, 0xa0, 0x0e, 0x68, 0xeb, 0x33, 0x99, 0x19, + 0xca, 0xa8, 0xcf, 0x40, 0x3b, 0x52, 0x7f, 0x6a, 0x4b, 0xb0, 0x12, 0x01, + 0x39, 0xe7, 0x8a, 0xcd, 0x34, 0xb9, 0xe3, 0x14, 0x01, 0xa9, 0x1e, 0xaa, + 0x3a, 0x38, 0x61, 0xf4, 0x35, 0x72, 0x1d, 0x5e, 0x25, 0x5e, 0x59, 0xb3, + 0xee, 0x6b, 0x00, 0x53, 0x94, 0x72, 0x28, 0x03, 0xd4, 0xfc, 0x2d, 0xa7, + 0x47, 0xa8, 0x42, 0xb7, 0xb7, 0xb2, 0x30, 0xb5, 0x3f, 0x75, 0x47, 0x56, + 0xad, 0xfb, 0xaf, 0x0a, 0x58, 0x5c, 0xa9, 0x7b, 0x4b, 0xcd, 0x9c, 0x7d, + 0xd7, 0x5c, 0xd5, 0x6f, 0x0c, 0x43, 0xe5, 0x69, 0xd6, 0x69, 0x27, 0xf0, + 0xc3, 0x9d, 0xbe, 0x94, 0xc6, 0xf1, 0x46, 0x95, 0x6b, 0x38, 0x06, 0xed, + 0x52, 0x45, 0x63, 0x81, 0xd7, 0x07, 0x3d, 0xe8, 0x03, 0x3a, 0x6f, 0x03, + 0x6a, 0x23, 0x79, 0x58, 0xa0, 0x9f, 0xb8, 0xc7, 0x06, 0x96, 0xc7, 0xe1, + 0xd6, 0xa1, 0x7a, 0xd8, 0x96, 0xdb, 0xec, 0xab, 0xfd, 0xe6, 0x7a, 0xf4, + 0x1d, 0x04, 0xc9, 0x71, 0x01, 0xba, 0x92, 0x42, 0xc6, 0x5f, 0x98, 0x1c, + 0x76, 0xad, 0x16, 0x59, 0x89, 0xc2, 0xb1, 0xa0, 0x0f, 0x30, 0xd4, 0xbe, + 0x19, 0xde, 0x59, 0x45, 0xe6, 0x41, 0x70, 0xb3, 0x63, 0xaa, 0x8a, 0xe7, + 0x9b, 0xc3, 0x3a, 0xd4, 0x63, 0x3f, 0x66, 0x66, 0x51, 0xe8, 0x2b, 0xda, + 0x67, 0x09, 0x0a, 0x66, 0x67, 0x2c, 0xdd, 0x94, 0x1a, 0xa8, 0x99, 0x6c, + 0xb9, 0xe3, 0x3c, 0x01, 0xe9, 0x40, 0x1e, 0x15, 0x71, 0x6d, 0x74, 0x93, + 0x6d, 0x68, 0x24, 0x52, 0x38, 0xe5, 0x4d, 0x34, 0x42, 0x13, 0x92, 0xa4, + 0x1f, 0x5a, 0xf7, 0x36, 0xb4, 0x84, 0x86, 0x63, 0x1a, 0x96, 0x3d, 0xc8, + 0xaa, 0xcf, 0xa7, 0x5b, 0xba, 0xfe, 0xf2, 0x08, 0x9b, 0x3f, 0xec, 0xd0, + 0x07, 0x8b, 0xf9, 0xae, 0xa4, 0x61, 0xc9, 0x15, 0x32, 0x5e, 0x32, 0x83, + 0x91, 0x5e, 0xb2, 0xfa, 0x16, 0x9d, 0x20, 0xc3, 0x59, 0x40, 0x7f, 0xe0, + 0x35, 0x46, 0x6f, 0x08, 0x69, 0x33, 0xe7, 0xfd, 0x17, 0x6f, 0xfb, 0xa7, + 0x14, 0x01, 0xe6, 0x89, 0x76, 0xe1, 0xb7, 0x46, 0xe5, 0x4f, 0xae, 0x6a, + 0x79, 0x35, 0x4b, 0x84, 0xba, 0x49, 0xed, 0x6e, 0x66, 0x59, 0xd4, 0x60, + 0xb8, 0x6c, 0x66, 0xbb, 0x29, 0xbc, 0x03, 0xa7, 0xb0, 0xc4, 0x6f, 0x32, + 0x0f, 0x63, 0x9a, 0xa6, 0xde, 0x02, 0x11, 0x83, 0xe5, 0x5d, 0x13, 0xe8, + 0x1c, 0x50, 0x06, 0x67, 0xfc, 0x24, 0xda, 0xcc, 0xf0, 0xf9, 0x6f, 0x78, + 0xed, 0xc7, 0x38, 0xaa, 0x52, 0x4a, 0xee, 0xdb, 0xa5, 0x98, 0xb3, 0x1f, + 0x5e, 0x6b, 0x5a, 0xe3, 0xc2, 0x9a, 0x9c, 0x69, 0x84, 0x31, 0xb8, 0x1d, + 0x94, 0xe2, 0xb1, 0xee, 0x34, 0x5d, 0x56, 0x21, 0xf3, 0x5a, 0x49, 0x85, + 0xee, 0x06, 0x68, 0x02, 0x26, 0x9b, 0x03, 0x07, 0xa9, 0xa6, 0x3d, 0xc4, + 0x7b, 0xb9, 0x1b, 0x81, 0xe0, 0xd5, 0x67, 0xca, 0x37, 0xef, 0x03, 0x64, + 0x76, 0xc5, 0x34, 0xb1, 0x6e, 0x15, 0x36, 0xfb, 0x9a, 0x00, 0x90, 0xab, + 0x07, 0xdc, 0x80, 0x95, 0x1d, 0xa9, 0xed, 0x32, 0xc8, 0x9c, 0x9c, 0x0f, + 0xd6, 0xa1, 0xe5, 0x57, 0x2e, 0xc4, 0xfb, 0x0e, 0x29, 0xc6, 0x13, 0xc3, + 0x80, 0x17, 0xd0, 0xfb, 0xd0, 0x02, 0x16, 0xde, 0x47, 0x04, 0x81, 0x51, + 0xc8, 0x86, 0x4f, 0xee, 0x8c, 0x50, 0x64, 0x73, 0x21, 0x49, 0x38, 0xe7, + 0xa8, 0xe8, 0x69, 0x24, 0x3b, 0x5f, 0x23, 0xf1, 0xa0, 0x0a, 0xe0, 0xbc, + 0x6d, 0x9e, 0xe3, 0xd6, 0x87, 0xb9, 0x97, 0x19, 0x0d, 0x8f, 0xa5, 0x3a, + 0x4c, 0xb1, 0xcf, 0xeb, 0x55, 0xdc, 0xe3, 0x9a, 0x00, 0xb9, 0x15, 0xe1, + 0x75, 0xcb, 0x00, 0x48, 0x1c, 0x83, 0x56, 0xa2, 0xb9, 0x5f, 0x2c, 0x70, + 0x01, 0xc7, 0x61, 0x58, 0xcb, 0xb8, 0x1d, 0xca, 0x47, 0xe2, 0x6a, 0x78, + 0xe4, 0xc0, 0xfb, 0xc0, 0x50, 0x06, 0x8b, 0x5c, 0x16, 0x60, 0xa3, 0x38, + 0x15, 0x1b, 0xc8, 0x63, 0x7d, 0xc3, 0x8c, 0xf5, 0xc5, 0x57, 0x0e, 0x31, + 0xf7, 0xcf, 0xe5, 0x4c, 0xde, 0x8c, 0x0e, 0xe2, 0xd9, 0x14, 0x01, 0x2c, + 0xd2, 0x1d, 0x9b, 0x89, 0xc1, 0x07, 0x35, 0xa7, 0x7b, 0x72, 0xd3, 0xd9, + 0x46, 0xc7, 0x07, 0x00, 0x76, 0xac, 0x72, 0x63, 0x2a, 0x73, 0xb8, 0xd5, + 0xa4, 0x98, 0x4b, 0xa7, 0x6d, 0xec, 0xbc, 0x7b, 0xd0, 0x04, 0x49, 0x33, + 0x0f, 0x97, 0xa5, 0x34, 0xc8, 0xc4, 0xfd, 0xe1, 0x80, 0x6a, 0x3d, 0xf1, + 0x1e, 0xc7, 0xf3, 0xa7, 0x17, 0x4e, 0x06, 0xdc, 0x2d, 0x00, 0x4b, 0xe6, + 0x92, 0x41, 0xcd, 0x41, 0x33, 0x97, 0x60, 0x33, 0x91, 0x4e, 0xf3, 0x13, + 0x18, 0xda, 0x31, 0xf5, 0xa8, 0x8b, 0xa9, 0x6c, 0xa8, 0x23, 0xf1, 0xa0, + 0x01, 0x0e, 0x5b, 0x93, 0x56, 0x92, 0x6d, 0x83, 0x04, 0x55, 0x55, 0x61, + 0x83, 0xd7, 0xd6, 0x9c, 0x58, 0xa8, 0xcb, 0x03, 0x40, 0x13, 0xc9, 0x3e, + 0xe2, 0x06, 0x30, 0x2a, 0x16, 0x9b, 0x69, 0x21, 0x57, 0x24, 0xf4, 0xcd, + 0x40, 0x64, 0xe7, 0xef, 0x52, 0x29, 0x20, 0x92, 0x4f, 0x34, 0x01, 0x65, + 0x36, 0x2a, 0x63, 0xf8, 0xbd, 0x73, 0x52, 0x02, 0x00, 0x00, 0xb9, 0xe4, + 0x55, 0x50, 0xe0, 0x75, 0xa9, 0xa0, 0x4f, 0x3d, 0xb3, 0x8c, 0x28, 0xea, + 0x4d, 0x00, 0x59, 0x45, 0x92, 0x46, 0x0a, 0x85, 0x48, 0xf5, 0xab, 0x66, + 0x64, 0xb4, 0x4c, 0x44, 0x37, 0xc8, 0x7a, 0xb7, 0xa5, 0x50, 0x9a, 0xed, + 0x16, 0x3f, 0x26, 0x0e, 0x07, 0x76, 0xf5, 0xaa, 0xbe, 0x69, 0x1c, 0x96, + 0xcd, 0x00, 0x5b, 0x79, 0xe4, 0x77, 0xdd, 0x2b, 0x1c, 0xd3, 0x0b, 0xed, + 0x19, 0x0c, 0x4d, 0x57, 0x69, 0xd9, 0xc1, 0x07, 0x81, 0x51, 0x86, 0xe7, + 0xae, 0x05, 0x00, 0x5a, 0x33, 0xe7, 0x96, 0xa4, 0x5b, 0x96, 0x56, 0x05, + 0x4e, 0xdc, 0x77, 0x1d, 0x6a, 0xb9, 0x60, 0x3a, 0x1c, 0xd0, 0xab, 0x24, + 0xa7, 0x11, 0xa3, 0x31, 0xf6, 0x19, 0xa0, 0x0e, 0x8a, 0xc7, 0xc4, 0xf2, + 0x5b, 0x95, 0x8e, 0xea, 0x24, 0xbb, 0x87, 0xa1, 0x59, 0x07, 0x3f, 0x9d, + 0x75, 0x96, 0xba, 0xa6, 0x97, 0x3d, 0xab, 0xdb, 0xe8, 0x77, 0x11, 0xd9, + 0x5c, 0xca, 0x01, 0x65, 0x9c, 0x9e, 0x0f, 0xa0, 0x35, 0xc1, 0xdb, 0x78, + 0x6f, 0x55, 0xbb, 0xc1, 0x4b, 0x57, 0x0b, 0xea, 0xc3, 0x02, 0xba, 0x1b, + 0x0f, 0x87, 0xda, 0x8c, 0xb8, 0x32, 0x38, 0x4f, 0x64, 0x19, 0x34, 0x01, + 0xbb, 0xa9, 0x78, 0x83, 0x49, 0xb5, 0xb7, 0x89, 0x35, 0x68, 0x60, 0xd4, + 0x2e, 0xe1, 0x50, 0xaa, 0x60, 0xcf, 0x50, 0x3f, 0x88, 0x9e, 0xb5, 0xc3, + 0x6a, 0x9e, 0x23, 0xbe, 0xd4, 0x89, 0x51, 0x88, 0x6d, 0xff, 0x00, 0x86, + 0x28, 0xf8, 0x00, 0x57, 0x77, 0x07, 0xc3, 0x78, 0xc4, 0x6a, 0x66, 0x59, + 0x64, 0xc7, 0xa9, 0xdb, 0x5a, 0x96, 0xde, 0x0d, 0xb2, 0xb6, 0x60, 0x05, + 0xac, 0x40, 0xfa, 0x91, 0x93, 0x40, 0x1e, 0x3d, 0x1c, 0x57, 0x12, 0xf1, + 0x14, 0x52, 0x39, 0xff, 0x00, 0x65, 0x49, 0xab, 0x49, 0xa3, 0x6a, 0x92, + 0x2e, 0xe5, 0xb1, 0x9b, 0x1e, 0xeb, 0x5e, 0xce, 0x9a, 0x44, 0x48, 0xdb, + 0x54, 0x28, 0x03, 0xd1, 0x6a, 0x57, 0xb2, 0x8d, 0x06, 0xd1, 0x9c, 0x9a, + 0x00, 0xf1, 0xd8, 0x3c, 0x2d, 0xac, 0x5d, 0x01, 0x9b, 0x7d, 0x83, 0xd5, + 0xc8, 0x15, 0x7e, 0x1f, 0x02, 0x5e, 0x9f, 0xf5, 0xb3, 0x20, 0xf6, 0x15, + 0xea, 0x7f, 0x62, 0x8c, 0x00, 0x46, 0x69, 0xc2, 0x24, 0x0d, 0xc2, 0x8a, + 0x00, 0xf3, 0x88, 0xbc, 0x0c, 0x17, 0xa9, 0x52, 0x7f, 0xda, 0x24, 0xd5, + 0xe8, 0x3c, 0x16, 0x63, 0x88, 0x91, 0x24, 0x63, 0x1e, 0x8b, 0x5d, 0xd6, + 0xc5, 0x1c, 0xe0, 0x52, 0xa8, 0x06, 0x36, 0xa0, 0x0e, 0x18, 0xf8, 0x66, + 0x50, 0x0e, 0xdb, 0x90, 0xbf, 0x44, 0xaa, 0xd2, 0x78, 0x46, 0xe6, 0x61, + 0xf2, 0xdf, 0xb2, 0xfd, 0x23, 0xae, 0xe9, 0xd0, 0x74, 0x14, 0xdc, 0x05, + 0x14, 0x01, 0xe7, 0xf2, 0x78, 0x2a, 0xec, 0x9d, 0xa7, 0x52, 0x93, 0xfe, + 0xf9, 0xaa, 0xef, 0xe0, 0x5b, 0xac, 0x1c, 0x6a, 0x2d, 0xf8, 0xad, 0x7a, + 0x1f, 0x52, 0x78, 0xa4, 0x34, 0x01, 0xe6, 0x72, 0x78, 0x0e, 0xf7, 0x82, + 0xb7, 0xa8, 0x7e, 0xa0, 0xd4, 0x67, 0xc0, 0x77, 0xe7, 0xfe, 0x5e, 0xa2, + 0x3f, 0x9d, 0x7a, 0x66, 0x01, 0x6c, 0x11, 0x4d, 0x28, 0x07, 0x41, 0x40, + 0x1e, 0x5d, 0x27, 0x81, 0xf5, 0x34, 0x1f, 0x2c, 0x91, 0x37, 0xd1, 0x8d, + 0x51, 0x9b, 0xc2, 0xfa, 0xc4, 0x1c, 0xfd, 0x9d, 0x9b, 0xfd, 0xc3, 0x9a, + 0xf5, 0xc2, 0x80, 0x8e, 0x45, 0x34, 0x44, 0xa4, 0xf4, 0xa0, 0x0f, 0x34, + 0xf0, 0xce, 0x95, 0x78, 0xba, 0xa9, 0x17, 0x16, 0xf3, 0x26, 0x10, 0xe3, + 0x70, 0x22, 0xb1, 0x35, 0x5f, 0x31, 0x75, 0x3b, 0x80, 0x4b, 0x70, 0xe4, + 0x72, 0x6b, 0xda, 0x7c, 0xa1, 0xbb, 0x20, 0xe0, 0xd5, 0x59, 0xb4, 0xcb, + 0x59, 0xc9, 0xf3, 0x6d, 0xe2, 0x7c, 0xff, 0x00, 0x79, 0x68, 0x03, 0xc5, + 0x37, 0xb8, 0x18, 0xdc, 0x71, 0xf5, 0xa9, 0x52, 0xf2, 0xe6, 0x3f, 0xb9, + 0x33, 0x8f, 0xa1, 0xaf, 0x55, 0xb8, 0xf0, 0x96, 0x91, 0x71, 0xd6, 0xd1, + 0x50, 0xfa, 0xa1, 0xc5, 0x66, 0xcd, 0xf0, 0xff, 0x00, 0x4e, 0x75, 0x3e, + 0x54, 0xd3, 0x46, 0x7b, 0x67, 0x9a, 0x00, 0xe0, 0x53, 0x55, 0xbd, 0x43, + 0xc5, 0xc3, 0x9f, 0xa9, 0xa9, 0x46, 0xbb, 0x7d, 0x9e, 0x65, 0xc8, 0xf4, + 0xc5, 0x75, 0x51, 0x7c, 0x39, 0x67, 0x27, 0x75, 0xfa, 0x81, 0xec, 0xb5, + 0x16, 0xa3, 0xf0, 0xf6, 0x68, 0x2d, 0x8b, 0xd9, 0xdc, 0x79, 0xf2, 0x0e, + 0x4a, 0x11, 0x8c, 0xfd, 0x28, 0x03, 0x9f, 0x1a, 0xf4, 0xa7, 0x1b, 0xe2, + 0x46, 0x1d, 0xf8, 0xa9, 0x06, 0xa5, 0x61, 0x2e, 0x37, 0xdb, 0x85, 0x63, + 0xd7, 0x8a, 0xc9, 0xb9, 0xb5, 0x9e, 0xd2, 0x53, 0x15, 0xc4, 0x4d, 0x1b, + 0x8e, 0xcc, 0x31, 0x51, 0x0e, 0xb4, 0x01, 0xb6, 0x46, 0x9d, 0x31, 0xe1, + 0xd9, 0x0f, 0xbd, 0x23, 0x69, 0xa8, 0xc3, 0x31, 0x4e, 0xa6, 0xb2, 0xc6, + 0x30, 0x72, 0x71, 0xc5, 0x34, 0x3b, 0xe7, 0xe5, 0x24, 0x7d, 0x0d, 0x00, + 0x5a, 0x78, 0xe5, 0x47, 0x64, 0x55, 0x2c, 0x47, 0xa5, 0x40, 0x51, 0x8b, + 0x65, 0xc1, 0x1f, 0x5a, 0x9a, 0x0b, 0xe9, 0xe0, 0xfb, 0xad, 0x91, 0xe8, + 0x45, 0x5a, 0x5d, 0x56, 0x37, 0xe2, 0x7b, 0x75, 0x3e, 0xeb, 0x40, 0x14, + 0x3a, 0x72, 0xa7, 0x14, 0xed, 0xed, 0x8c, 0x11, 0xf9, 0x55, 0xed, 0xb6, + 0x13, 0x9c, 0xa4, 0x86, 0x32, 0x7b, 0x1a, 0x63, 0xe9, 0xf2, 0x05, 0xdd, + 0x19, 0x0e, 0x3d, 0x8d, 0x00, 0x32, 0xde, 0x55, 0x49, 0x43, 0x6e, 0x2b, + 0x8e, 0x78, 0x38, 0xa7, 0x5c, 0xb3, 0xc8, 0x43, 0xc9, 0x2b, 0x12, 0xfc, + 0xe0, 0x9c, 0xd5, 0x46, 0x46, 0x0d, 0x82, 0x30, 0x45, 0x48, 0x22, 0x38, + 0x04, 0xb5, 0x00, 0x4a, 0x2e, 0x1c, 0x28, 0x00, 0x92, 0x07, 0xad, 0x48, + 0x8e, 0x64, 0x6f, 0x9c, 0x91, 0xf4, 0xa8, 0x02, 0x81, 0xde, 0xac, 0xdb, + 0x44, 0x5a, 0x64, 0x5c, 0x7d, 0xe2, 0x00, 0xa0, 0x0f, 0x65, 0xf0, 0x82, + 0x8b, 0x0f, 0x0c, 0x5b, 0xa2, 0x36, 0x0b, 0xe5, 0x8e, 0x7d, 0xeb, 0x48, + 0xdc, 0xb1, 0x6e, 0x64, 0xfc, 0xab, 0x3e, 0xd9, 0x44, 0x16, 0x30, 0xc2, + 0x38, 0xd8, 0x80, 0x53, 0x95, 0xb9, 0xa0, 0x0d, 0x34, 0x9c, 0x77, 0x24, + 0xfe, 0x35, 0x28, 0xb8, 0xc7, 0x41, 0x59, 0xe8, 0xdc, 0x54, 0xaa, 0xd4, + 0x01, 0x7d, 0x6e, 0x18, 0xf4, 0xa9, 0x92, 0x56, 0xf5, 0xaa, 0x08, 0xc6, + 0xa7, 0x57, 0xa0, 0x0b, 0xcb, 0x23, 0x1e, 0xf5, 0x32, 0xc8, 0x7d, 0x6a, + 0x8a, 0xbd, 0x4a, 0xaf, 0x40, 0x17, 0x43, 0x9f, 0x5a, 0x78, 0x7f, 0x7a, + 0xa8, 0xaf, 0x52, 0x06, 0xa0, 0x09, 0xf7, 0x67, 0xbd, 0x48, 0x87, 0xde, + 0xab, 0x06, 0xa9, 0x14, 0xd0, 0x05, 0xc4, 0x7e, 0x3a, 0xd4, 0x86, 0x43, + 0xb1, 0xb9, 0xed, 0x54, 0x83, 0x53, 0x99, 0xce, 0xc3, 0xf4, 0xa0, 0x08, + 0x95, 0xbe, 0x41, 0xf4, 0xa7, 0x6e, 0xaa, 0xea, 0xff, 0x00, 0x28, 0xfa, + 0x53, 0xb7, 0x50, 0x04, 0xdb, 0xa9, 0x0b, 0x54, 0x5b, 0xa8, 0xdd, 0x40, + 0x12, 0x6e, 0xa4, 0x2d, 0x51, 0x96, 0xa6, 0x96, 0xa0, 0x07, 0x97, 0xa6, + 0x34, 0x98, 0xef, 0x4c, 0x2d, 0x4c, 0x66, 0xa0, 0x07, 0x19, 0x4d, 0x32, + 0x59, 0xb1, 0x0b, 0xb1, 0xec, 0x33, 0x4c, 0x66, 0xa6, 0x86, 0xce, 0x45, + 0x00, 0x73, 0x37, 0x3a, 0x87, 0xda, 0xef, 0xa3, 0x5d, 0xa5, 0x42, 0x30, + 0xeb, 0x5b, 0x97, 0x5e, 0x22, 0xd3, 0x74, 0xa8, 0x01, 0xb8, 0xb8, 0x50, + 0xc0, 0x7d, 0xc1, 0xc9, 0xae, 0x53, 0xc6, 0x92, 0x7d, 0x86, 0xd2, 0x36, + 0xb7, 0x01, 0x1c, 0xbf, 0x51, 0xd6, 0xb8, 0x19, 0xa5, 0x92, 0x56, 0xdd, + 0x23, 0x96, 0x63, 0xdc, 0x9a, 0x00, 0xee, 0xb5, 0x6f, 0x89, 0x33, 0xca, + 0x1a, 0x3d, 0x3e, 0x11, 0x1a, 0xff, 0x00, 0x7d, 0xba, 0xd7, 0x1b, 0x79, + 0xaa, 0xde, 0xea, 0x12, 0x17, 0xb9, 0xb8, 0x92, 0x42, 0x7b, 0x13, 0xc5, + 0x52, 0x34, 0xe4, 0x1b, 0x9d, 0x47, 0xa9, 0xc5, 0x00, 0x7a, 0xd6, 0x97, + 0xb8, 0xe8, 0x5e, 0x59, 0x3c, 0x2d, 0xa2, 0xe0, 0x7d, 0x79, 0xae, 0x67, + 0x41, 0x30, 0xf9, 0xb3, 0xac, 0x60, 0x96, 0xf2, 0x49, 0x27, 0x1c, 0x57, + 0x5f, 0x64, 0x8a, 0xb6, 0x52, 0xc4, 0x06, 0x0a, 0x5b, 0x46, 0xa7, 0xfe, + 0xf9, 0xac, 0x3d, 0x2e, 0x24, 0x50, 0x36, 0x80, 0x0b, 0x21, 0x14, 0x01, + 0x8b, 0x63, 0x73, 0x73, 0x7d, 0x6f, 0x75, 0x1c, 0xd1, 0x95, 0x4f, 0x29, + 0xb6, 0x9e, 0xd5, 0xe6, 0xef, 0x94, 0x72, 0xa7, 0xd7, 0x15, 0xea, 0xb6, + 0x56, 0xad, 0x19, 0x62, 0xd2, 0x16, 0x0c, 0x19, 0x42, 0xf6, 0xaf, 0x38, + 0xd4, 0x6c, 0xca, 0x5c, 0xcd, 0x83, 0xfc, 0x67, 0xf9, 0xd0, 0x06, 0x7e, + 0x0d, 0x37, 0xfa, 0x52, 0x36, 0xf0, 0x71, 0xb7, 0xa5, 0x20, 0xde, 0x47, + 0xa7, 0xd2, 0x80, 0x1b, 0x70, 0x01, 0x4c, 0xf7, 0x1d, 0x2a, 0xad, 0x4c, + 0xe1, 0xb6, 0x9c, 0x9e, 0x95, 0x15, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, + 0x51, 0x4a, 0x28, 0x03, 0x43, 0x4a, 0x0e, 0x5a, 0xe3, 0x61, 0x23, 0x11, + 0x1c, 0xe2, 0xa2, 0xb2, 0xf9, 0xaf, 0xa3, 0xff, 0x00, 0x78, 0x0a, 0xd9, + 0xf0, 0x7d, 0xb8, 0xb9, 0xbe, 0xba, 0x8d, 0xb1, 0x83, 0x6e, 0xd9, 0xcd, + 0x66, 0x2c, 0x71, 0x41, 0xa8, 0x28, 0x8a, 0x5f, 0x30, 0x02, 0x32, 0x71, + 0x8e, 0x73, 0x40, 0x1e, 0x87, 0xf1, 0x4d, 0x36, 0xc3, 0xa3, 0x29, 0x6d, + 0xa0, 0x46, 0x01, 0xfc, 0xab, 0x96, 0xf1, 0x34, 0x51, 0xdb, 0xe9, 0x56, + 0x30, 0xa6, 0xf6, 0x3d, 0x44, 0x8e, 0x3e, 0xf0, 0xc5, 0x74, 0x1f, 0x14, + 0x27, 0x32, 0x9d, 0x28, 0x67, 0x81, 0x10, 0xfe, 0x42, 0xb2, 0x3c, 0x66, + 0xea, 0x74, 0xcd, 0x24, 0x02, 0x32, 0x22, 0xfe, 0x94, 0x01, 0xc6, 0x0e, + 0x48, 0xae, 0xd6, 0x2d, 0x1a, 0xc8, 0xdb, 0xa1, 0x36, 0xea, 0x72, 0xa0, + 0xe6, 0xb8, 0xaa, 0xf4, 0xab, 0x25, 0x12, 0x58, 0x5b, 0xb7, 0xac, 0x62, + 0x80, 0x31, 0x9f, 0xc3, 0x36, 0x93, 0x7c, 0xca, 0xef, 0x1f, 0xb0, 0xe9, + 0x4d, 0xb6, 0xf0, 0x90, 0x37, 0xb0, 0x85, 0xb8, 0xca, 0xef, 0x19, 0x04, + 0x75, 0xae, 0x95, 0x22, 0x18, 0xab, 0x9a, 0x6c, 0x4b, 0xf6, 0xd5, 0x63, + 0xfc, 0x3c, 0xd0, 0x06, 0xac, 0x18, 0x8e, 0xf9, 0xa2, 0x4c, 0x04, 0x48, + 0xb0, 0x05, 0x79, 0xa4, 0x5a, 0x34, 0xf7, 0x3e, 0x2c, 0x8a, 0x19, 0x53, + 0xe4, 0x9e, 0xe0, 0x9e, 0x3d, 0x33, 0x93, 0x5e, 0xb3, 0x1d, 0x94, 0x11, + 0xcd, 0x1b, 0xef, 0xcc, 0xb2, 0x2e, 0x1c, 0x67, 0xa0, 0xa7, 0xc1, 0xe1, + 0xab, 0x0b, 0x7d, 0x46, 0x3b, 0xd8, 0xa4, 0x66, 0x92, 0x22, 0x48, 0x52, + 0x73, 0xd6, 0x80, 0x3a, 0x2b, 0x18, 0x56, 0xd6, 0xd9, 0x50, 0x70, 0x00, + 0xc0, 0xa6, 0xdc, 0x5f, 0x88, 0xf2, 0xb1, 0xf2, 0x7d, 0x69, 0xab, 0x31, + 0x96, 0x23, 0x9e, 0x31, 0x54, 0xe4, 0x03, 0x27, 0xa5, 0x00, 0x33, 0xe6, + 0x95, 0xf7, 0xc8, 0x73, 0x52, 0x16, 0xcf, 0x02, 0xa1, 0x27, 0x03, 0x34, + 0xf8, 0xf2, 0x46, 0x68, 0x02, 0x42, 0x78, 0xc5, 0x37, 0x8c, 0x52, 0x64, + 0xe6, 0x8a, 0x00, 0x0f, 0x43, 0x40, 0x1f, 0x2d, 0x21, 0x3c, 0x53, 0xbf, + 0x80, 0x50, 0x03, 0x42, 0xd3, 0x82, 0x82, 0x71, 0x4d, 0xdd, 0xd8, 0x54, + 0xa8, 0x33, 0x9a, 0x00, 0x89, 0x91, 0x48, 0x3c, 0x52, 0x2d, 0xba, 0x93, + 0xec, 0x2a, 0x63, 0x52, 0x84, 0xdb, 0x11, 0x38, 0xe4, 0xd0, 0x06, 0x3c, + 0xda, 0x55, 0xac, 0xe0, 0xef, 0x86, 0x36, 0xcf, 0xaa, 0xd6, 0x3d, 0xdf, + 0x83, 0xf4, 0xeb, 0x8c, 0xfe, 0xe3, 0x61, 0xf5, 0x43, 0x8a, 0xea, 0x55, + 0x72, 0x0d, 0x28, 0x4a, 0x00, 0xf3, 0x8b, 0xcf, 0x01, 0x9c, 0xe6, 0x0b, + 0x86, 0xfa, 0x38, 0xac, 0x69, 0xfc, 0x37, 0xaa, 0xd9, 0x9c, 0xf9, 0x3e, + 0x6a, 0x8e, 0x9b, 0x0e, 0x6b, 0xd7, 0x8c, 0x7c, 0x74, 0xa8, 0x9e, 0xd5, + 0x5b, 0xaa, 0xd0, 0x07, 0x87, 0xdd, 0x45, 0x72, 0xb2, 0x93, 0x3c, 0x6c, + 0x84, 0xf5, 0x04, 0x62, 0xaa, 0x1d, 0xc9, 0x91, 0xd4, 0x0e, 0xb5, 0xed, + 0xd7, 0x5a, 0x44, 0x17, 0x0b, 0x89, 0x22, 0x56, 0xcf, 0xf7, 0x86, 0x6b, + 0x9d, 0xd4, 0x7c, 0x11, 0x6b, 0x70, 0xac, 0xf1, 0x83, 0x11, 0x3c, 0x0d, + 0xb4, 0x01, 0xe6, 0xa4, 0xe5, 0x00, 0x07, 0x24, 0xf4, 0xa4, 0x44, 0xde, + 0xa5, 0x8a, 0xf4, 0xcd, 0x74, 0x57, 0xfe, 0x0b, 0xbf, 0xb7, 0x19, 0xb7, + 0x2b, 0x20, 0x1d, 0xba, 0x13, 0x59, 0xf2, 0x59, 0xcf, 0x6b, 0x6a, 0x04, + 0xf0, 0xb2, 0x30, 0x04, 0x10, 0x45, 0x00, 0x73, 0xcd, 0xc1, 0x22, 0xa3, + 0x0e, 0x55, 0xb1, 0xd8, 0xd5, 0xb2, 0xd1, 0xc5, 0x21, 0x67, 0x4d, 0xde, + 0xd4, 0xa9, 0xa9, 0xac, 0x7f, 0xea, 0xed, 0x62, 0x1e, 0x99, 0x19, 0xa0, + 0x04, 0x41, 0x2e, 0xc5, 0x6f, 0x2d, 0xb0, 0xdd, 0x0e, 0x29, 0xe2, 0x0b, + 0x86, 0x3f, 0x2c, 0x12, 0x1f, 0xa2, 0x9a, 0x97, 0xfe, 0x12, 0x4b, 0xd5, + 0x45, 0x54, 0x48, 0x54, 0x03, 0xc6, 0x10, 0x53, 0x8f, 0x8a, 0xb5, 0x4c, + 0x00, 0xb3, 0x05, 0xc0, 0xfe, 0x15, 0xc5, 0x00, 0x35, 0x34, 0xfb, 0xe9, + 0x49, 0x09, 0x6b, 0x29, 0x3f, 0xee, 0xd4, 0xd1, 0xe9, 0x5a, 0x9c, 0x31, + 0x3a, 0xc9, 0x65, 0x30, 0x0d, 0xd0, 0x95, 0xa8, 0x1f, 0xc5, 0x1a, 0xbb, + 0x30, 0x3f, 0x6b, 0x75, 0x20, 0x63, 0xe5, 0xe3, 0x34, 0xd9, 0xbc, 0x4d, + 0xac, 0x4f, 0xc3, 0xdf, 0xcc, 0x40, 0xed, 0x9a, 0x00, 0x7f, 0xf6, 0x4e, + 0xa0, 0x79, 0xfb, 0x2c, 0x80, 0x1f, 0x6a, 0x56, 0xb0, 0xbc, 0x5c, 0x2f, + 0xd9, 0x9f, 0x8f, 0x6a, 0xa6, 0xda, 0xc6, 0xa0, 0xc7, 0x26, 0xee, 0x5f, + 0xfb, 0xea, 0xa3, 0x6d, 0x4e, 0xf5, 0x9b, 0x71, 0xb8, 0x90, 0x9f, 0xad, + 0x00, 0x5e, 0x7b, 0x5b, 0x95, 0x03, 0x30, 0x10, 0x7e, 0x95, 0x5f, 0xec, + 0xd3, 0x28, 0xc1, 0x46, 0xe7, 0xad, 0x57, 0x6d, 0x42, 0xe9, 0xce, 0x4c, + 0xcc, 0x7f, 0x1a, 0x6f, 0xdb, 0x6e, 0x3f, 0xe7, 0xab, 0x7e, 0x74, 0x01, + 0x70, 0xc3, 0x22, 0x60, 0x15, 0x3e, 0xb4, 0xd9, 0x65, 0x91, 0x86, 0xd3, + 0xd2, 0xab, 0x8d, 0x42, 0xe3, 0xbc, 0x99, 0xe3, 0x1c, 0xd3, 0x0d, 0xdc, + 0xa7, 0xf8, 0xa8, 0x01, 0xe1, 0x4e, 0x37, 0x1f, 0xc2, 0x9c, 0x1b, 0xb9, + 0xcd, 0x44, 0x2e, 0xa4, 0x1d, 0x70, 0x7e, 0xb4, 0xbf, 0x6a, 0x27, 0xaa, + 0x8f, 0xca, 0x80, 0x2d, 0x22, 0x86, 0x6c, 0xb1, 0xc2, 0x8e, 0xb4, 0xe9, + 0x2e, 0x37, 0x26, 0xc4, 0xf9, 0x50, 0x76, 0x1d, 0xea, 0xa9, 0xb8, 0x56, + 0xc0, 0x65, 0xc0, 0xc7, 0x6a, 0xb1, 0xa6, 0xdf, 0x5a, 0x5a, 0x5f, 0x24, + 0xb7, 0x56, 0x82, 0xe6, 0x10, 0x7e, 0x64, 0x27, 0x19, 0xa0, 0x08, 0x77, + 0x0f, 0x5a, 0x72, 0x24, 0x92, 0xb6, 0x11, 0x0b, 0x9f, 0x40, 0x2b, 0xa7, + 0xf0, 0xd6, 0x81, 0x67, 0xe2, 0xcd, 0x66, 0xe4, 0xa1, 0x6b, 0x5b, 0x64, + 0x3b, 0xbc, 0xb5, 0xeb, 0x83, 0xda, 0xbd, 0x6b, 0x48, 0xf0, 0xa6, 0x99, + 0xa6, 0x46, 0xa2, 0xda, 0xd5, 0x32, 0x3f, 0x8d, 0x86, 0x49, 0xa0, 0x0f, + 0x18, 0xb1, 0xf0, 0x8e, 0xb7, 0x7e, 0x03, 0x47, 0x68, 0xc8, 0xa7, 0xf8, + 0xa4, 0xe0, 0x56, 0xf5, 0xaf, 0xc3, 0x4b, 0xf9, 0x31, 0xe7, 0xdc, 0xa8, + 0xf5, 0x08, 0xb9, 0xfd, 0x6b, 0xd8, 0xc5, 0xb4, 0x6a, 0x3e, 0xee, 0x69, + 0x76, 0x01, 0x80, 0x05, 0x00, 0x79, 0xee, 0x9b, 0xf0, 0xda, 0xca, 0xd7, + 0x6b, 0xce, 0xa6, 0x66, 0xff, 0x00, 0x6c, 0xf1, 0xf9, 0x57, 0x4f, 0x65, + 0xe1, 0xbb, 0x38, 0x3e, 0xec, 0x08, 0x80, 0x0f, 0xe1, 0x50, 0x2b, 0x72, + 0x55, 0xda, 0x05, 0x48, 0xa3, 0x81, 0x40, 0x14, 0xc5, 0x85, 0xbc, 0x71, + 0x00, 0xb1, 0x8e, 0xbd, 0xeb, 0x7a, 0xde, 0x04, 0x10, 0xae, 0xd5, 0x03, + 0x23, 0xd2, 0xb3, 0x58, 0x65, 0x71, 0x5a, 0x96, 0x4d, 0x98, 0x53, 0xe9, + 0x40, 0x15, 0xae, 0x22, 0xc2, 0xb1, 0xf5, 0xac, 0xa7, 0x5c, 0x31, 0x6a, + 0xe8, 0x2e, 0xa3, 0xca, 0x1e, 0x2b, 0x12, 0x75, 0xda, 0x0d, 0x00, 0x51, + 0x41, 0x96, 0x26, 0xa1, 0x94, 0x66, 0x53, 0x56, 0x94, 0x7c, 0xb5, 0x04, + 0xbc, 0xbd, 0x00, 0x37, 0x1c, 0x54, 0x78, 0x19, 0x3e, 0xb5, 0x39, 0x1c, + 0x54, 0x58, 0xe4, 0xd0, 0x03, 0x31, 0x9a, 0x51, 0x81, 0x1b, 0x01, 0x4d, + 0x63, 0x81, 0x8a, 0x58, 0x97, 0x31, 0xb1, 0x34, 0x01, 0x16, 0xde, 0xf5, + 0x03, 0xf5, 0xab, 0x4d, 0xd2, 0xaa, 0xb6, 0x4b, 0x66, 0x80, 0x1b, 0x8c, + 0x53, 0x4d, 0x3c, 0x8c, 0x53, 0x0f, 0x4a, 0x00, 0x66, 0x39, 0xcd, 0x34, + 0xd3, 0x8d, 0x34, 0xd0, 0x03, 0x08, 0xa0, 0x0a, 0x53, 0x45, 0x00, 0x2a, + 0xf5, 0xa4, 0x22, 0x9c, 0xbd, 0x69, 0x0d, 0x00, 0x34, 0x53, 0x82, 0xf7, + 0x34, 0x02, 0x05, 0x00, 0x17, 0x60, 0xa3, 0xbd, 0x00, 0x23, 0x61, 0x87, + 0xa2, 0x8e, 0xbe, 0xf4, 0x22, 0xfc, 0xeb, 0xeb, 0x4e, 0x7c, 0x6f, 0xd8, + 0xbf, 0x75, 0x7a, 0x9f, 0x53, 0x4a, 0x9f, 0xeb, 0x94, 0x50, 0x06, 0x07, + 0x8b, 0xb4, 0x98, 0xef, 0xf4, 0x69, 0x9f, 0xca, 0x06, 0x78, 0xd7, 0x72, + 0x36, 0x39, 0xe2, 0xbc, 0x84, 0x8c, 0x1a, 0xf7, 0xeb, 0xc5, 0x02, 0x16, + 0x0c, 0x38, 0xda, 0x73, 0x5e, 0x15, 0xa8, 0x2a, 0xa6, 0xa1, 0x70, 0x13, + 0xee, 0x89, 0x0e, 0x3f, 0x3a, 0x00, 0xae, 0x9c, 0xb6, 0x3d, 0xa9, 0x03, + 0x62, 0x9f, 0x1b, 0x2f, 0x98, 0xb9, 0x5e, 0xfd, 0xa9, 0xbf, 0x26, 0x7b, + 0x8a, 0x00, 0x37, 0xd2, 0xee, 0xcd, 0x30, 0x80, 0x0f, 0x07, 0x34, 0x01, + 0x40, 0x0f, 0xc5, 0x4f, 0x04, 0xb2, 0x46, 0x32, 0x8e, 0x47, 0xd0, 0xd4, + 0x2b, 0x1b, 0x35, 0x58, 0x81, 0x3e, 0x72, 0xa7, 0xb5, 0x00, 0x4a, 0x1c, + 0xc8, 0x72, 0xe8, 0x0f, 0xb8, 0xab, 0x09, 0x6e, 0x8e, 0x07, 0x24, 0x7b, + 0x1a, 0x6a, 0x94, 0x4e, 0xa4, 0x54, 0xc9, 0x38, 0xe8, 0xaa, 0x5a, 0x80, + 0x2c, 0x41, 0x67, 0x1e, 0xe1, 0x91, 0x5b, 0x7a, 0x56, 0x9f, 0x17, 0xf6, + 0x85, 0xbe, 0x06, 0x4f, 0x99, 0xdf, 0xb5, 0x61, 0x86, 0x9d, 0x87, 0x18, + 0x41, 0x5d, 0x87, 0x87, 0x21, 0xdd, 0x74, 0x1c, 0xff, 0x00, 0x02, 0xe6, + 0x80, 0x3a, 0xa7, 0x3d, 0xa8, 0x5a, 0x8c, 0x9c, 0xb5, 0x48, 0xa6, 0x80, + 0x2c, 0x25, 0x4c, 0xa6, 0xab, 0x29, 0xa9, 0x94, 0xd0, 0x05, 0x85, 0x35, + 0x32, 0xb5, 0x56, 0x56, 0xa9, 0x15, 0xa8, 0x02, 0xd2, 0xb5, 0x4a, 0xad, + 0x55, 0x55, 0xaa, 0x55, 0x6a, 0x00, 0xb2, 0x1a, 0xa4, 0x56, 0xaa, 0xca, + 0xd5, 0x20, 0x6a, 0x00, 0xb2, 0x1a, 0x9e, 0x1a, 0xab, 0x87, 0xa7, 0x07, + 0xa0, 0x0b, 0x21, 0xa9, 0x59, 0xbe, 0x43, 0xf4, 0xa8, 0x03, 0xd2, 0xb3, + 0xfc, 0x87, 0xe9, 0x40, 0x11, 0x2b, 0x7c, 0xa3, 0xe9, 0x4e, 0xdd, 0x50, + 0x2b, 0x7c, 0xa3, 0xe9, 0x4b, 0xba, 0x80, 0x27, 0xdd, 0x46, 0x6a, 0x1d, + 0xd4, 0x6e, 0xa0, 0x09, 0x09, 0xa6, 0x93, 0x4c, 0xdd, 0x4d, 0x2d, 0x40, + 0x0e, 0x2d, 0x4c, 0x2d, 0x4d, 0x26, 0x98, 0x4d, 0x00, 0x2b, 0x3d, 0x30, + 0x3f, 0x34, 0xd6, 0x6a, 0x89, 0x9b, 0x14, 0x01, 0xc8, 0x7c, 0x40, 0x97, + 0xe5, 0xb6, 0x4f, 0x53, 0x9a, 0xe1, 0x58, 0xd7, 0xa0, 0x78, 0xe2, 0x0f, + 0x37, 0x4c, 0x8a, 0x70, 0x39, 0x89, 0xff, 0x00, 0x9d, 0x79, 0xe1, 0x6e, + 0x68, 0x01, 0x6a, 0x6b, 0x41, 0xbe, 0xf2, 0x15, 0x1c, 0x92, 0xe3, 0xf9, + 0xd5, 0x72, 0xd8, 0xab, 0x5a, 0x52, 0xbc, 0xba, 0xb5, 0xb2, 0x47, 0x8d, + 0xe6, 0x41, 0x8c, 0xf4, 0xa0, 0x0f, 0x57, 0xb6, 0xbb, 0xdb, 0x26, 0xa2, + 0x8c, 0x31, 0x82, 0x14, 0x7e, 0x0b, 0x58, 0xba, 0x64, 0xbf, 0xbc, 0x8c, + 0x76, 0xe9, 0x52, 0x58, 0xf9, 0xe6, 0x0b, 0xdf, 0xb5, 0x38, 0x69, 0x4b, + 0x9d, 0xcc, 0xbd, 0x09, 0xac, 0xcb, 0x29, 0xc4, 0x6f, 0x19, 0x07, 0x90, + 0x71, 0x8a, 0x00, 0xb8, 0xaf, 0xb6, 0x4d, 0xb9, 0xe8, 0xe7, 0xf9, 0xd7, + 0x9e, 0xea, 0xa0, 0xae, 0xa5, 0x72, 0x84, 0xff, 0x00, 0x19, 0xae, 0xe8, + 0x39, 0x66, 0x95, 0x8f, 0x50, 0xff, 0x00, 0xd6, 0xb8, 0xbd, 0x71, 0x48, + 0xd6, 0x6e, 0x32, 0x31, 0x92, 0x0f, 0xe9, 0x40, 0x18, 0xce, 0x30, 0x79, + 0xa4, 0x0a, 0x31, 0x56, 0x1e, 0x3d, 0xcb, 0xc5, 0x46, 0x17, 0x02, 0x80, + 0x29, 0x4f, 0x1e, 0xd4, 0x26, 0xa9, 0xd6, 0xac, 0xe3, 0xf7, 0x2d, 0x59, + 0x74, 0x00, 0x51, 0x40, 0xa2, 0x80, 0x0a, 0x5e, 0xd4, 0x52, 0x81, 0x9e, + 0x28, 0x03, 0xa9, 0xf0, 0x2a, 0xab, 0xea, 0x77, 0x41, 0x86, 0x7f, 0xd1, + 0x9f, 0x1f, 0x95, 0x73, 0xd1, 0x1c, 0x4f, 0x9f, 0xf6, 0x87, 0xf3, 0xae, + 0x83, 0xc1, 0x72, 0x08, 0x75, 0x59, 0xc7, 0xad, 0xbb, 0xe7, 0xf2, 0xae, + 0x79, 0x0e, 0x25, 0xcf, 0xfb, 0x54, 0x01, 0xd7, 0x78, 0xee, 0xe4, 0x4e, + 0xf6, 0x00, 0x1c, 0xed, 0x8c, 0x55, 0x3f, 0x12, 0xa9, 0x7d, 0x1b, 0x4c, + 0x9d, 0xc6, 0x19, 0x93, 0x18, 0xf4, 0x18, 0xa8, 0x3c, 0x4d, 0x2f, 0x99, + 0x3c, 0x3e, 0xc0, 0x55, 0xef, 0x15, 0x73, 0xa0, 0xe9, 0x5f, 0xee, 0x7f, + 0x4a, 0x00, 0xe3, 0xfb, 0x57, 0xa4, 0xe8, 0xe7, 0x76, 0x91, 0x6a, 0x7f, + 0xe9, 0x98, 0xaf, 0x37, 0x3d, 0x05, 0x7a, 0x2f, 0x87, 0xfe, 0x7d, 0x16, + 0xdf, 0xd9, 0x71, 0x40, 0x1a, 0x8a, 0x38, 0xab, 0x96, 0x4a, 0xaa, 0x92, + 0x48, 0x7a, 0x8e, 0x95, 0x53, 0xa0, 0xc5, 0x58, 0x89, 0x5f, 0xec, 0xae, + 0x54, 0x13, 0x9e, 0xc0, 0x50, 0x04, 0xda, 0x73, 0xb1, 0x92, 0x77, 0x24, + 0xe7, 0x69, 0xe6, 0xb5, 0xbc, 0x30, 0x8e, 0xf1, 0xcf, 0x2b, 0xb1, 0x39, + 0x38, 0x19, 0x35, 0x95, 0xa5, 0xc2, 0xc5, 0xa4, 0x46, 0xf9, 0x4b, 0x0c, + 0x64, 0xd7, 0x51, 0xa4, 0x59, 0x7d, 0x86, 0xc4, 0xa1, 0x65, 0x62, 0x4e, + 0x72, 0x28, 0x02, 0xfa, 0xf1, 0x10, 0xaa, 0x93, 0x55, 0xa5, 0xff, 0x00, + 0x52, 0x2a, 0xac, 0xb4, 0x01, 0x0b, 0x7d, 0xd0, 0x2a, 0x78, 0xc6, 0x23, + 0xa8, 0x1b, 0x92, 0x05, 0x5b, 0x55, 0xf9, 0x28, 0x02, 0xbe, 0x7e, 0x63, + 0x4e, 0xfc, 0x69, 0x9f, 0xc6, 0x69, 0xe0, 0x66, 0x80, 0x10, 0x9e, 0x3a, + 0xd4, 0x9b, 0x7f, 0x76, 0x38, 0xed, 0x51, 0x91, 0xf2, 0x91, 0x56, 0x0a, + 0xfc, 0x82, 0x80, 0x21, 0x45, 0x04, 0xd5, 0x88, 0xd3, 0xe5, 0xcd, 0x44, + 0x8b, 0xc5, 0x5f, 0x8e, 0x2c, 0x45, 0x9f, 0x6a, 0x00, 0xa8, 0xa9, 0x96, + 0xc5, 0x5a, 0x78, 0xc8, 0x8a, 0x8b, 0x68, 0xb7, 0x48, 0x4d, 0x5e, 0x92, + 0x03, 0xe4, 0x31, 0xc7, 0x6a, 0x00, 0xca, 0x8a, 0x2d, 0xc4, 0xf1, 0x53, + 0x24, 0x19, 0xc7, 0x15, 0x6e, 0xd6, 0xd8, 0xb1, 0x3c, 0x7a, 0x55, 0xd8, + 0x6c, 0x89, 0x3d, 0x28, 0x03, 0x28, 0x5b, 0x67, 0x1c, 0x53, 0x85, 0x99, + 0x3d, 0xab, 0xa0, 0x4d, 0x38, 0xe0, 0x71, 0x56, 0xa2, 0xd3, 0x7a, 0x64, + 0x50, 0x07, 0x2c, 0xda, 0x7b, 0x1c, 0x71, 0xde, 0x92, 0xef, 0x4b, 0x74, + 0x48, 0x97, 0x6f, 0x5e, 0x6b, 0xb5, 0x8f, 0x4e, 0x4e, 0x32, 0x2a, 0x59, + 0xac, 0x23, 0x95, 0xd3, 0x2b, 0xc2, 0xd0, 0x07, 0x98, 0xdd, 0x58, 0x32, + 0xe7, 0x2b, 0x59, 0x17, 0x3a, 0x7c, 0x52, 0x82, 0xaf, 0x18, 0x23, 0xd0, + 0x8a, 0xf5, 0xab, 0xed, 0x12, 0x29, 0xd7, 0xe5, 0x5c, 0x1c, 0x57, 0x23, + 0xaa, 0x68, 0x72, 0x40, 0x49, 0xdb, 0xc5, 0x00, 0x79, 0x76, 0xa5, 0xe0, + 0x8b, 0x0b, 0xc5, 0x6f, 0x2d, 0x4c, 0x2e, 0x7b, 0xa7, 0x4f, 0xca, 0xb8, + 0x8d, 0x4f, 0xc1, 0x9a, 0x9e, 0x9e, 0xcc, 0xc9, 0x1f, 0x9f, 0x10, 0xfe, + 0x24, 0xeb, 0xf9, 0x57, 0xb4, 0x4b, 0x13, 0x46, 0x48, 0x22, 0xa0, 0x50, + 0x37, 0x6e, 0x65, 0x04, 0x67, 0xa1, 0xef, 0x40, 0x1f, 0x3f, 0x3c, 0x32, + 0x44, 0xdb, 0x5d, 0x19, 0x5b, 0xd0, 0x8c, 0x53, 0x08, 0xaf, 0xa3, 0xb5, + 0x4d, 0x0b, 0x4a, 0xbd, 0xb1, 0x4b, 0x9f, 0xb0, 0xc4, 0xea, 0x7e, 0xf0, + 0xdb, 0xc8, 0x35, 0xe4, 0x1e, 0x33, 0xf0, 0xdd, 0xae, 0x94, 0xcb, 0x75, + 0x66, 0xe7, 0xca, 0x91, 0xb0, 0x63, 0x6f, 0xe1, 0x34, 0x01, 0xc7, 0xd2, + 0x52, 0x9a, 0x28, 0x01, 0x29, 0x29, 0x68, 0xa0, 0x04, 0xa2, 0x95, 0xba, + 0xd2, 0x50, 0x01, 0x45, 0x14, 0x50, 0x02, 0x51, 0x4b, 0x45, 0x00, 0x29, + 0xed, 0xf4, 0xa4, 0xa5, 0x3d, 0xbe, 0x94, 0x82, 0x80, 0x3d, 0x63, 0xe1, + 0x56, 0x96, 0xb1, 0xdb, 0x49, 0xa8, 0x39, 0x39, 0x95, 0xf6, 0x01, 0xdb, + 0x02, 0xbd, 0x6d, 0x70, 0x91, 0xe3, 0x15, 0xc1, 0x7c, 0x38, 0x81, 0x0f, + 0x87, 0x2c, 0x00, 0xee, 0x19, 0xcf, 0xd7, 0x35, 0xdf, 0x88, 0xf2, 0x79, + 0xa0, 0x08, 0x18, 0x50, 0x14, 0x99, 0x00, 0xab, 0x2d, 0x1e, 0x48, 0xc5, + 0x2a, 0x47, 0xfb, 0xd2, 0xc7, 0xb0, 0xa0, 0x0a, 0x97, 0x2b, 0x86, 0x02, + 0xa5, 0x54, 0x3b, 0x05, 0x49, 0x34, 0x41, 0x9c, 0x1c, 0x55, 0xb5, 0x87, + 0x08, 0x06, 0x3b, 0x50, 0x05, 0x0d, 0x9c, 0x55, 0xfd, 0x38, 0x7c, 0x81, + 0x71, 0xde, 0x9c, 0x20, 0x5d, 0xb9, 0xad, 0x0d, 0x22, 0xd9, 0x4c, 0xb8, + 0x3f, 0x5a, 0x00, 0x49, 0x6d, 0xa4, 0x64, 0x25, 0x50, 0xe3, 0x1e, 0x95, + 0xce, 0xdf, 0x44, 0xca, 0x48, 0x23, 0x15, 0xe8, 0xc1, 0x14, 0x2e, 0x30, + 0x2b, 0x17, 0x5b, 0xb0, 0x89, 0xe3, 0xf3, 0x42, 0x80, 0x47, 0x5a, 0x00, + 0xe1, 0xc2, 0x10, 0xb5, 0x55, 0xd4, 0xef, 0xad, 0xa7, 0x85, 0x77, 0x91, + 0xd8, 0x55, 0x66, 0x81, 0x4b, 0x50, 0x05, 0x22, 0x87, 0x15, 0x0b, 0xa9, + 0x02, 0xaf, 0xc8, 0x98, 0x38, 0xa8, 0x9a, 0x3e, 0x39, 0xa0, 0x0c, 0xfd, + 0x99, 0xc9, 0xa7, 0xaf, 0xdc, 0x2a, 0x3a, 0x54, 0xcc, 0x83, 0x90, 0x29, + 0xbb, 0x36, 0xc7, 0x81, 0xeb, 0x40, 0x15, 0xa4, 0x5e, 0x2a, 0x0c, 0x55, + 0xb7, 0x15, 0x0b, 0x2d, 0x00, 0x57, 0x61, 0x93, 0x9a, 0x89, 0xba, 0xd5, + 0x92, 0xb5, 0x19, 0x4e, 0xf4, 0x01, 0x09, 0x14, 0xc3, 0x53, 0x30, 0xa8, + 0xc8, 0xa0, 0x08, 0xe9, 0x0d, 0x3f, 0x14, 0xd2, 0x28, 0x00, 0x1d, 0x69, + 0x0d, 0x38, 0x71, 0x4d, 0xc6, 0x4d, 0x00, 0x1c, 0x9a, 0x98, 0xff, 0x00, + 0xa3, 0xc3, 0xbf, 0xf8, 0xdb, 0x85, 0x14, 0xb0, 0x44, 0x09, 0xdc, 0xdf, + 0x74, 0x54, 0x4d, 0x27, 0x9f, 0x33, 0x49, 0xfc, 0x0b, 0xc2, 0xd0, 0x02, + 0x2a, 0xed, 0x18, 0xef, 0xde, 0x96, 0x1f, 0x9a, 0xe8, 0x0f, 0x4a, 0x07, + 0xad, 0x2d, 0x90, 0xdd, 0x72, 0xc6, 0x80, 0x23, 0xd7, 0x24, 0xf2, 0x34, + 0xf9, 0xe4, 0xfe, 0xec, 0x44, 0xd7, 0x84, 0x4a, 0xe6, 0x49, 0x19, 0xcf, + 0x56, 0x24, 0xd7, 0xbd, 0xeb, 0x90, 0xf9, 0xd6, 0x13, 0xc7, 0xfd, 0xe8, + 0xc8, 0xaf, 0x05, 0x95, 0x0c, 0x72, 0xba, 0x1e, 0xaa, 0x48, 0xa0, 0x06, + 0x28, 0x39, 0xc8, 0xed, 0x48, 0xc0, 0x83, 0x49, 0x52, 0x31, 0x04, 0x0e, + 0x3b, 0x50, 0x03, 0x00, 0xa7, 0x8c, 0x0a, 0x65, 0x4a, 0x91, 0x96, 0x3c, + 0x76, 0xa0, 0x07, 0x2b, 0x1e, 0xc2, 0x9f, 0x1a, 0xb3, 0x3b, 0x64, 0xe0, + 0xfb, 0x54, 0x91, 0xc0, 0x71, 0x9c, 0xd5, 0xb8, 0x60, 0x45, 0xb8, 0x8c, + 0xf3, 0xc9, 0x19, 0x1e, 0xb4, 0x01, 0x04, 0x09, 0xb9, 0x80, 0xd9, 0x92, + 0x6a, 0xf2, 0x30, 0x46, 0xdb, 0xb7, 0x9a, 0xd0, 0x9a, 0x24, 0x8e, 0x44, + 0x0a, 0xa0, 0x0d, 0xdd, 0x85, 0x50, 0x73, 0x9b, 0xb7, 0xff, 0x00, 0x7a, + 0x80, 0x34, 0x66, 0xb4, 0x64, 0xb2, 0x13, 0x03, 0xc9, 0xed, 0x5d, 0x6f, + 0x87, 0x14, 0x0b, 0x79, 0x1f, 0xe8, 0x2b, 0x9b, 0xba, 0x66, 0xfe, 0xcf, + 0x5e, 0x38, 0xc5, 0x75, 0x1a, 0x12, 0x34, 0x7a, 0x6a, 0x6e, 0x18, 0x2c, + 0x73, 0x40, 0x1a, 0xa0, 0xd4, 0x8b, 0x51, 0x0a, 0x95, 0x68, 0x02, 0x51, + 0x52, 0xa9, 0xa8, 0x96, 0xa5, 0x5a, 0x00, 0x95, 0x4d, 0x48, 0x0d, 0x46, + 0xa6, 0x9e, 0x28, 0x02, 0x55, 0xa9, 0x54, 0xd4, 0x2b, 0x52, 0x03, 0x40, + 0x13, 0x03, 0x52, 0x29, 0xa8, 0x01, 0xa7, 0xab, 0x50, 0x04, 0xe0, 0xd3, + 0xb3, 0x50, 0x83, 0x4e, 0x06, 0x80, 0x26, 0x0d, 0x4a, 0xcd, 0xf2, 0x1f, + 0xa5, 0x45, 0x9a, 0x18, 0x9d, 0x87, 0xe9, 0x40, 0x0d, 0x56, 0xf9, 0x47, + 0xd2, 0x97, 0x75, 0x44, 0xa7, 0xe5, 0x1f, 0x4a, 0x76, 0x68, 0x01, 0xf9, + 0xa0, 0x9a, 0x66, 0x68, 0xcd, 0x00, 0x29, 0x6a, 0x4c, 0xd2, 0x13, 0x4d, + 0x26, 0x80, 0x1c, 0x48, 0xa8, 0xc9, 0xa0, 0x9a, 0x61, 0x34, 0x00, 0x8d, + 0x51, 0x31, 0xa7, 0xb1, 0xa8, 0xd8, 0xd0, 0x06, 0x5e, 0xbb, 0x0f, 0xda, + 0x74, 0x7b, 0x98, 0xf1, 0xce, 0xc2, 0x47, 0xd6, 0xbc, 0x94, 0xb6, 0x0d, + 0x7b, 0x44, 0x88, 0x24, 0x46, 0x43, 0xd0, 0x8c, 0x57, 0x8f, 0xeb, 0x96, + 0x4d, 0xa6, 0xea, 0xb3, 0xdb, 0x91, 0x85, 0x0d, 0x95, 0xfa, 0x1a, 0x00, + 0xaa, 0x5e, 0xb6, 0x3c, 0x2a, 0xbe, 0x67, 0x88, 0x6d, 0xbf, 0xd9, 0x25, + 0xbf, 0x2a, 0xc0, 0xdd, 0x5b, 0xbe, 0x15, 0x8a, 0x59, 0xb5, 0x85, 0x68, + 0x9f, 0x66, 0xc5, 0x24, 0x9f, 0x6a, 0x00, 0xef, 0x2c, 0xdf, 0x75, 0x94, + 0xcc, 0x7e, 0xf3, 0x33, 0x1f, 0xd6, 0xb8, 0x7b, 0x68, 0x6e, 0xbf, 0xb4, + 0xbc, 0xc7, 0x99, 0x8a, 0x89, 0x78, 0x19, 0xf7, 0xaf, 0x4a, 0xb4, 0xd2, + 0x59, 0xf4, 0x48, 0xe4, 0x46, 0x03, 0xe5, 0x2d, 0xcf, 0x7a, 0xf3, 0xe2, + 0xfe, 0x5c, 0xcc, 0x7d, 0x24, 0xfe, 0xb4, 0x01, 0x7a, 0xe6, 0xea, 0xe5, + 0x2f, 0x25, 0x89, 0x36, 0x84, 0x0d, 0x9e, 0x47, 0x35, 0x89, 0xaf, 0x46, + 0xcf, 0xa8, 0xf9, 0x83, 0xee, 0xb2, 0x8e, 0x6b, 0x5e, 0xf1, 0xbf, 0xd2, + 0xdc, 0xfa, 0x81, 0x59, 0x9a, 0xd3, 0x60, 0x40, 0xc7, 0xa1, 0x03, 0x34, + 0x01, 0x94, 0xa8, 0x47, 0x06, 0xa3, 0x92, 0x1c, 0x36, 0x7b, 0x54, 0xcf, + 0xbc, 0x0e, 0x00, 0xe7, 0xd7, 0xd2, 0xa3, 0x9e, 0x46, 0x8e, 0x24, 0x62, + 0x9b, 0xb7, 0x0e, 0xd4, 0x01, 0x5e, 0x78, 0x1b, 0xcb, 0x38, 0xf4, 0xcd, + 0x62, 0x9e, 0xa6, 0xb7, 0x05, 0xc8, 0x68, 0xc8, 0x65, 0x20, 0xe3, 0x15, + 0x88, 0xdf, 0x78, 0xd0, 0x02, 0x0a, 0x5a, 0x41, 0x4b, 0x40, 0x05, 0x39, + 0x4e, 0x18, 0x1a, 0x6d, 0x2d, 0x00, 0x6f, 0x78, 0x5c, 0x2f, 0xf6, 0xa4, + 0x85, 0xcb, 0x6c, 0xf2, 0x9b, 0x3b, 0x7a, 0xe3, 0x15, 0x9f, 0x7b, 0xf6, + 0x41, 0x79, 0x8b, 0x3d, 0xfe, 0x58, 0xc7, 0xde, 0xeb, 0x9a, 0x4d, 0x39, + 0x5e, 0x6b, 0x8f, 0x25, 0x5d, 0x94, 0x15, 0x27, 0xe5, 0xfa, 0x55, 0x6c, + 0x62, 0x5c, 0x1f, 0x5a, 0x00, 0xd8, 0xd7, 0xce, 0x5a, 0x16, 0xf5, 0x51, + 0xfc, 0xab, 0x4f, 0xc4, 0xc7, 0x3e, 0x1e, 0xd2, 0xcf, 0xfb, 0x3f, 0xd2, + 0xab, 0xf8, 0x8d, 0x23, 0x48, 0x34, 0xf6, 0xc7, 0x55, 0xe7, 0x15, 0x7f, + 0xc5, 0x57, 0xd6, 0xd7, 0x7e, 0x1d, 0xd3, 0x52, 0x0b, 0x2f, 0xb3, 0xf9, + 0x40, 0x02, 0x77, 0x67, 0x77, 0x14, 0x01, 0xc5, 0x76, 0xad, 0x5d, 0x3f, + 0x5f, 0xbe, 0xd3, 0xe1, 0x10, 0xc3, 0x20, 0xd8, 0x0e, 0x40, 0x23, 0x38, + 0xac, 0xaa, 0x33, 0xc5, 0x00, 0x75, 0xf0, 0xf8, 0xc5, 0xdc, 0xa2, 0x3d, + 0xa8, 0x67, 0x3c, 0x12, 0x1b, 0xad, 0x76, 0x3f, 0xf0, 0x93, 0x47, 0xe1, + 0xcb, 0x24, 0x9d, 0xe0, 0xf3, 0x64, 0x7f, 0xe0, 0xaf, 0x2e, 0xd1, 0xa1, + 0x37, 0x1a, 0xad, 0xbc, 0x78, 0xcf, 0xce, 0x09, 0xad, 0xdf, 0x15, 0xcc, + 0x86, 0xf9, 0x61, 0x69, 0x8f, 0xc8, 0x98, 0xd8, 0x28, 0x03, 0xd0, 0x74, + 0xef, 0x16, 0x45, 0xad, 0xc6, 0xd7, 0xff, 0x00, 0x64, 0x11, 0xa4, 0x3c, + 0x14, 0x1d, 0xeb, 0xb0, 0x86, 0x45, 0x92, 0xd5, 0x64, 0x44, 0xd8, 0xac, + 0x32, 0x17, 0xd2, 0xbc, 0xb7, 0xc1, 0x31, 0x89, 0x34, 0x79, 0x95, 0x47, + 0x0c, 0xf8, 0xaf, 0x53, 0x8d, 0x76, 0x5a, 0xaa, 0xfa, 0x2e, 0x28, 0x01, + 0x57, 0xfe, 0x3d, 0xc5, 0x55, 0x90, 0xf3, 0x57, 0x31, 0x8b, 0x65, 0xaa, + 0x72, 0x0e, 0x4d, 0x00, 0x46, 0x83, 0x2e, 0x2a, 0xe0, 0x1f, 0xba, 0x35, + 0x5a, 0x31, 0x8c, 0x7a, 0xd5, 0xed, 0xb8, 0x80, 0xd0, 0x06, 0x6f, 0xf1, + 0xd4, 0xea, 0x38, 0xa8, 0x0f, 0xde, 0xab, 0x48, 0x32, 0x94, 0x01, 0x16, + 0x33, 0x9a, 0xba, 0xe9, 0x84, 0x35, 0x59, 0x57, 0xe7, 0x03, 0xde, 0xb4, + 0x2e, 0x13, 0x11, 0x35, 0x00, 0x52, 0x8d, 0x37, 0xba, 0xa8, 0xad, 0x83, + 0x16, 0xdb, 0x7c, 0xe2, 0xa9, 0xd8, 0xc3, 0xba, 0x51, 0xeb, 0x5b, 0x73, + 0x41, 0xb6, 0xd0, 0x60, 0x75, 0x34, 0x01, 0x52, 0xc2, 0xdb, 0x73, 0x1e, + 0x2b, 0x52, 0xea, 0xd3, 0x6d, 0x99, 0x38, 0xa9, 0x74, 0xab, 0x6c, 0x64, + 0x91, 0x57, 0xef, 0xa2, 0xff, 0x00, 0x44, 0x23, 0xdc, 0x50, 0x06, 0x5e, + 0x9f, 0x65, 0x90, 0xc4, 0x8f, 0x4a, 0xd6, 0x8a, 0xd1, 0x57, 0x3c, 0x53, + 0xac, 0xa1, 0x0b, 0x1b, 0x71, 0xfc, 0x55, 0x75, 0x57, 0x14, 0x01, 0x08, + 0x84, 0x71, 0x52, 0xac, 0x60, 0x54, 0x80, 0x52, 0x81, 0x40, 0x08, 0x16, + 0x97, 0x6f, 0x34, 0xea, 0x28, 0x01, 0xa5, 0x73, 0x55, 0xe7, 0xb5, 0x8e, + 0x64, 0x2a, 0xca, 0x0d, 0x5b, 0xa4, 0xc5, 0x00, 0x70, 0x7a, 0xfe, 0x81, + 0xe5, 0x06, 0x96, 0x25, 0xca, 0xd7, 0x1a, 0xd1, 0xed, 0x04, 0x7b, 0xd7, + 0xb4, 0x5c, 0x40, 0xb3, 0x44, 0xc8, 0xc3, 0x20, 0x8c, 0x57, 0x97, 0x6b, + 0x3a, 0x7b, 0x5a, 0x5c, 0x4a, 0x31, 0xc0, 0x6e, 0x28, 0x02, 0x0d, 0x2a, + 0x60, 0xc1, 0xed, 0x24, 0x39, 0x59, 0x07, 0x1f, 0x5a, 0xe0, 0xfe, 0x23, + 0x58, 0x24, 0x5a, 0x5c, 0xc5, 0xd7, 0x94, 0x60, 0x57, 0xeb, 0x5d, 0x62, + 0x39, 0x86, 0x54, 0x75, 0xe0, 0x86, 0xcd, 0x63, 0xfc, 0x4d, 0x0b, 0x71, + 0xe1, 0xc3, 0x3a, 0x8e, 0xa0, 0x66, 0x80, 0x3c, 0x38, 0xd2, 0x53, 0x8d, + 0x34, 0xd0, 0x02, 0x51, 0x45, 0x38, 0xaf, 0xcb, 0xbb, 0x18, 0x14, 0x00, + 0xd6, 0xeb, 0x49, 0x43, 0x75, 0xa2, 0x80, 0x0a, 0x28, 0xa2, 0x80, 0x0a, + 0x28, 0xa2, 0x80, 0x14, 0xff, 0x00, 0x4a, 0x41, 0x4a, 0x7b, 0x7d, 0x29, + 0x05, 0x00, 0x7b, 0xbf, 0xc2, 0xe2, 0x1f, 0xc3, 0xb6, 0xe4, 0x1c, 0x95, + 0xdc, 0x0f, 0xe7, 0x5e, 0x86, 0xa4, 0x01, 0xcd, 0x79, 0x8f, 0xc2, 0x19, + 0x03, 0x68, 0x53, 0x2f, 0x75, 0x94, 0xff, 0x00, 0x4a, 0xf4, 0x7d, 0xfc, + 0x60, 0xfa, 0xd0, 0x05, 0x82, 0xc0, 0x1a, 0x52, 0xc3, 0x9c, 0x55, 0x43, + 0x27, 0xcf, 0x4f, 0x0e, 0x71, 0x9a, 0x00, 0x74, 0xb3, 0xfe, 0xf0, 0x01, + 0x56, 0xd6, 0x7f, 0x94, 0x66, 0xb1, 0x1a, 0x4c, 0xcd, 0xd7, 0xbd, 0x5d, + 0xdf, 0x81, 0x40, 0x17, 0x1a, 0xe3, 0x82, 0x33, 0x57, 0x74, 0xab, 0xd5, + 0x8e, 0xe0, 0x6e, 0x3c, 0x1e, 0x2b, 0x0d, 0x98, 0xd2, 0xc5, 0x21, 0x56, + 0xcd, 0x00, 0x7a, 0x18, 0x95, 0x59, 0x72, 0x0d, 0x65, 0xea, 0xd7, 0x0b, + 0xe5, 0x18, 0xc1, 0xe4, 0xd6, 0x55, 0xb6, 0xa3, 0x20, 0x8b, 0x1b, 0xaa, + 0x09, 0xae, 0x19, 0xf7, 0x33, 0x1c, 0xd0, 0x06, 0x7d, 0xcc, 0xbb, 0x33, + 0x54, 0x44, 0xf9, 0x7e, 0xb4, 0x97, 0xb2, 0x1c, 0xd5, 0x28, 0xdc, 0x99, + 0x28, 0x03, 0x41, 0xdf, 0x2d, 0x9a, 0x8d, 0x98, 0x1a, 0x89, 0x9e, 0xa2, + 0x66, 0xa0, 0x01, 0xe4, 0x55, 0x3c, 0xd2, 0x6e, 0x2f, 0x11, 0x6e, 0xc3, + 0xa5, 0x56, 0x6c, 0xcb, 0x26, 0x07, 0x4a, 0x95, 0xdf, 0x6c, 0x7b, 0x47, + 0x41, 0x40, 0x0d, 0x66, 0xe3, 0x9a, 0x85, 0xa4, 0x03, 0xbd, 0x46, 0xee, + 0xcc, 0x68, 0x48, 0xce, 0x72, 0xd4, 0x00, 0xa0, 0x92, 0x39, 0xa6, 0x13, + 0x4b, 0x23, 0x8e, 0x82, 0xa3, 0xdd, 0xc6, 0x68, 0x00, 0x6a, 0x8c, 0xd2, + 0xb3, 0x53, 0x33, 0x40, 0x05, 0x34, 0x9e, 0x68, 0x26, 0x9a, 0x4d, 0x00, + 0x48, 0x31, 0x83, 0x42, 0x2e, 0xe6, 0xc0, 0xa6, 0xa7, 0x22, 0xac, 0x02, + 0x2d, 0xe1, 0x2e, 0xdd, 0x68, 0x02, 0x2b, 0xb9, 0x76, 0x22, 0xdb, 0xc7, + 0xf7, 0x9b, 0xad, 0x47, 0xb4, 0x22, 0xac, 0x6b, 0xda, 0x99, 0x06, 0x64, + 0x67, 0xb8, 0x7e, 0xff, 0x00, 0x76, 0x9e, 0xbc, 0xb6, 0x68, 0x01, 0x58, + 0xed, 0x42, 0x7d, 0xa9, 0xfa, 0x60, 0x25, 0x99, 0x8d, 0x45, 0x70, 0x71, + 0x11, 0xf7, 0xab, 0x5a, 0x52, 0xfe, 0xeb, 0x3e, 0xa6, 0x80, 0x17, 0x54, + 0x5c, 0xc2, 0xff, 0x00, 0x4a, 0xf0, 0x5d, 0x51, 0x0c, 0x7a, 0x9d, 0xca, + 0x1e, 0xa2, 0x43, 0x5e, 0xf7, 0xaa, 0xff, 0x00, 0xab, 0x71, 0xec, 0x2b, + 0xcb, 0xf5, 0x0f, 0x0c, 0x9d, 0x4b, 0xc4, 0x77, 0x6a, 0x25, 0xf2, 0xd7, + 0x68, 0x70, 0x71, 0x9e, 0xb4, 0x01, 0xc4, 0x53, 0x88, 0xfe, 0x55, 0xd6, + 0x4d, 0xe0, 0x3b, 0x98, 0xd1, 0x99, 0x2e, 0x51, 0xb0, 0x33, 0x8d, 0xbd, + 0x6b, 0x3a, 0x0f, 0x0b, 0x6a, 0x97, 0x51, 0xef, 0x8e, 0x00, 0x00, 0xe0, + 0xee, 0x38, 0xa0, 0x0c, 0x98, 0x46, 0x54, 0x9c, 0x76, 0xa9, 0xad, 0xc6, + 0x65, 0x71, 0xed, 0x57, 0x2e, 0xb4, 0x6b, 0xcd, 0x28, 0x28, 0xba, 0x8c, + 0x2e, 0xf0, 0x71, 0x83, 0x9a, 0xab, 0x6f, 0xff, 0x00, 0x1f, 0x0f, 0xf4, + 0xa0, 0x0b, 0x30, 0x8e, 0xb4, 0xf5, 0x24, 0x5d, 0xc2, 0x3f, 0xda, 0x14, + 0xd8, 0x88, 0xc9, 0x14, 0xe7, 0x20, 0x4f, 0x11, 0xff, 0x00, 0x6a, 0x80, + 0x36, 0xaf, 0x38, 0x28, 0x73, 0xfc, 0x55, 0x97, 0xd6, 0xe9, 0x8f, 0xfb, + 0x75, 0xab, 0x76, 0x83, 0xca, 0x4e, 0xe3, 0x83, 0x59, 0x6b, 0xff, 0x00, + 0x1f, 0x27, 0xfd, 0xfa, 0x00, 0xe8, 0x24, 0x89, 0xae, 0x2d, 0xe1, 0x8a, + 0x3f, 0xbc, 0xc4, 0x0a, 0xec, 0xa3, 0x88, 0x43, 0x0a, 0x46, 0x07, 0xdd, + 0x00, 0x56, 0x26, 0x8f, 0x6e, 0x26, 0xba, 0x8d, 0x88, 0xe2, 0x35, 0xcd, + 0x6f, 0xb9, 0xcb, 0x50, 0x00, 0x2a, 0x55, 0x15, 0x1a, 0xd4, 0xab, 0x40, + 0x0f, 0x5a, 0x95, 0x6a, 0x21, 0x52, 0x29, 0xa0, 0x09, 0x56, 0x9e, 0x2a, + 0x31, 0x4f, 0x14, 0x01, 0x2a, 0xd3, 0xc1, 0xa8, 0x94, 0xd3, 0xc5, 0x00, + 0x4c, 0x0d, 0x38, 0x1a, 0x88, 0x1a, 0x70, 0x34, 0x01, 0x30, 0x34, 0xa0, + 0xd4, 0x40, 0xd3, 0x81, 0xa0, 0x09, 0x73, 0x43, 0x37, 0xc8, 0x7e, 0x94, + 0xcc, 0xd2, 0x31, 0xf9, 0x4f, 0xd2, 0x80, 0x05, 0x3f, 0x20, 0xfa, 0x52, + 0xe6, 0xa3, 0x53, 0xf2, 0x8f, 0xa5, 0x3b, 0x34, 0x00, 0xec, 0xd1, 0x9a, + 0x6e, 0x68, 0xcd, 0x00, 0x2e, 0x69, 0x09, 0xa4, 0xcd, 0x26, 0x68, 0x00, + 0x26, 0x9a, 0x68, 0x26, 0x9a, 0x4d, 0x00, 0x34, 0xd3, 0x1a, 0x9c, 0x69, + 0x84, 0xd0, 0x03, 0x0d, 0x70, 0xff, 0x00, 0x10, 0x34, 0xed, 0xd0, 0xc3, + 0x7e, 0x8b, 0xca, 0xfc, 0x8f, 0xf4, 0xed, 0x5d, 0xbb, 0x55, 0x0d, 0x5a, + 0xd1, 0x6f, 0xf4, 0xbb, 0x8b, 0x66, 0xe7, 0x72, 0x9c, 0x7d, 0x68, 0x03, + 0xc6, 0x33, 0x5d, 0x67, 0x83, 0x86, 0xd8, 0x75, 0x29, 0xc8, 0xfb, 0xb1, + 0x6d, 0x07, 0xdc, 0xd7, 0x27, 0x2a, 0x34, 0x33, 0x3c, 0x6e, 0x30, 0xc8, + 0x48, 0x35, 0xd9, 0xf8, 0x41, 0x33, 0xa3, 0xdc, 0xfa, 0xcb, 0x3a, 0x27, + 0xea, 0x28, 0x03, 0xd3, 0xcb, 0x7d, 0x97, 0xc3, 0xfb, 0x47, 0x1b, 0x21, + 0xfe, 0x95, 0xe4, 0xe5, 0xb3, 0x2c, 0x99, 0xfe, 0xf9, 0x3f, 0xad, 0x7a, + 0x7e, 0xaf, 0x2e, 0xcd, 0x22, 0x41, 0xfe, 0xc8, 0x5a, 0xf2, 0x29, 0xb5, + 0x58, 0xa2, 0x9a, 0x64, 0x11, 0x31, 0x60, 0xc4, 0x50, 0x06, 0xd5, 0xe7, + 0xfc, 0x7c, 0x21, 0xf5, 0x50, 0x6b, 0x2f, 0x5a, 0x52, 0xf0, 0x5a, 0x81, + 0xd4, 0xb6, 0x2a, 0xdd, 0xed, 0xf4, 0x70, 0x9b, 0x77, 0x68, 0xd9, 0xb7, + 0xc6, 0x08, 0xc5, 0x56, 0xba, 0x98, 0x4f, 0x67, 0x14, 0xa8, 0x36, 0x00, + 0xc7, 0x1b, 0xbb, 0x50, 0x06, 0x24, 0xd2, 0x4d, 0x0d, 0xc8, 0x52, 0x55, + 0xc3, 0x0e, 0x31, 0x51, 0xea, 0x49, 0x3a, 0xac, 0x7b, 0x5c, 0x95, 0x00, + 0x71, 0xd3, 0x04, 0x8c, 0xd5, 0x81, 0x6e, 0xef, 0x70, 0x85, 0x99, 0x32, + 0x0f, 0x4c, 0xf3, 0x50, 0xde, 0x93, 0x30, 0xb9, 0x00, 0xe7, 0xe6, 0x05, + 0x40, 0x34, 0x01, 0x4e, 0x37, 0x75, 0xc3, 0x48, 0x72, 0x30, 0x6a, 0x89, + 0xfb, 0xc6, 0xad, 0x34, 0x73, 0x34, 0x6b, 0x9e, 0xd5, 0x51, 0x81, 0x0c, + 0x41, 0xeb, 0x40, 0x00, 0xa5, 0xa4, 0x1d, 0x29, 0x68, 0x00, 0xa7, 0xc6, + 0x32, 0x7d, 0xa9, 0x95, 0x34, 0x23, 0x82, 0x68, 0x02, 0xfe, 0x86, 0x86, + 0x4d, 0x6e, 0x28, 0xd7, 0xab, 0x06, 0x1f, 0xa5, 0x51, 0x99, 0x0a, 0x5d, + 0xba, 0x1e, 0xaa, 0xe4, 0x1f, 0xce, 0xae, 0xe8, 0x11, 0xcb, 0x3e, 0xbf, + 0x6e, 0x90, 0xbe, 0xc7, 0x66, 0x20, 0x37, 0xa7, 0x15, 0x56, 0xe9, 0x59, + 0x2f, 0xe7, 0x47, 0x6d, 0xcc, 0xb2, 0x30, 0x27, 0xd4, 0xe6, 0x80, 0x3a, + 0x4f, 0x13, 0x98, 0x3f, 0xb1, 0xf4, 0xdd, 0xb9, 0xf3, 0xc0, 0xe7, 0xe9, + 0x50, 0xea, 0xed, 0x3f, 0xfc, 0x23, 0x96, 0x3b, 0xd0, 0x18, 0x98, 0xe4, + 0x49, 0xe8, 0x71, 0xd2, 0xa1, 0xf1, 0x11, 0xc5, 0xb5, 0x8e, 0x71, 0xfe, + 0xae, 0xad, 0x6a, 0xf2, 0xee, 0xf0, 0x6e, 0x9e, 0x87, 0xaf, 0x9a, 0x48, + 0xfa, 0x62, 0x80, 0x39, 0x77, 0xc0, 0x3f, 0x29, 0xe2, 0x98, 0x3a, 0x52, + 0x9f, 0xbb, 0x40, 0xa0, 0x0e, 0x93, 0xc1, 0x96, 0xde, 0x6e, 0xae, 0x1c, + 0xff, 0x00, 0x02, 0xd7, 0x53, 0xa8, 0x7c, 0x3c, 0xba, 0xd4, 0xef, 0xa5, + 0xba, 0x5d, 0x4a, 0xd8, 0x79, 0x87, 0x21, 0x4f, 0x6f, 0xd6, 0xb9, 0xef, + 0x0c, 0xff, 0x00, 0xa2, 0x69, 0xb7, 0x77, 0x9d, 0x08, 0x53, 0x83, 0x58, + 0x4f, 0x7d, 0x74, 0xd2, 0x33, 0xfd, 0xa2, 0x5c, 0x93, 0x92, 0x77, 0x1a, + 0x00, 0xf5, 0xcf, 0x0c, 0xf8, 0x7e, 0x5d, 0x13, 0xfd, 0x0e, 0x69, 0x63, + 0x95, 0xb3, 0xbb, 0x72, 0x1c, 0x8a, 0xed, 0x98, 0x7e, 0xeb, 0xf0, 0xae, + 0x03, 0xe1, 0xeb, 0xbc, 0xb6, 0x0a, 0xf2, 0x3b, 0x3b, 0x12, 0x79, 0x63, + 0x93, 0x5e, 0x80, 0xc3, 0xe4, 0x34, 0x00, 0xe9, 0x17, 0x10, 0x20, 0xf6, + 0xaa, 0x52, 0x0e, 0x6b, 0x46, 0xe0, 0x61, 0x10, 0x7b, 0x56, 0x7c, 0x9d, + 0x68, 0x01, 0x22, 0x19, 0x71, 0x5a, 0x2c, 0xb8, 0xb7, 0x3f, 0x4a, 0xa5, + 0x6e, 0xb9, 0x7a, 0xd3, 0x91, 0x71, 0x6a, 0xc7, 0xda, 0x80, 0x30, 0x1b, + 0xef, 0x55, 0xe8, 0xc7, 0xcb, 0x54, 0xd8, 0x7c, 0xe2, 0xaf, 0xc6, 0x3e, + 0x43, 0x40, 0x0d, 0x89, 0x33, 0x70, 0xa3, 0xfd, 0xaa, 0xd2, 0xbc, 0x4c, + 0x45, 0xf8, 0xd5, 0x6b, 0x74, 0xcd, 0xe4, 0x7e, 0xed, 0x5a, 0x57, 0xb1, + 0xfc, 0xa7, 0xd2, 0x80, 0x1b, 0xa4, 0xc1, 0xba, 0x45, 0x38, 0xad, 0xe9, + 0xe1, 0xfd, 0xdc, 0x6b, 0xef, 0x9a, 0xa9, 0xa2, 0xc1, 0xf2, 0x6e, 0xf4, + 0xad, 0x99, 0x10, 0x31, 0x41, 0x40, 0x0b, 0x63, 0x0e, 0xc8, 0x87, 0x15, + 0x25, 0xe2, 0xe6, 0x25, 0x1e, 0xac, 0x2a, 0x78, 0x97, 0x0b, 0x51, 0xdc, + 0xf5, 0x8c, 0x7f, 0xb5, 0x40, 0x0e, 0x81, 0x71, 0x1f, 0xd4, 0xd4, 0xe0, + 0x73, 0x51, 0xc3, 0xfe, 0xa8, 0x54, 0xa3, 0xad, 0x00, 0x02, 0x9d, 0x49, + 0x4b, 0x40, 0x0b, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x02, 0x1a, + 0xe6, 0x3c, 0x4d, 0xa7, 0xac, 0xb6, 0xed, 0x28, 0x1c, 0x81, 0xcd, 0x74, + 0xe6, 0xa8, 0x6a, 0x51, 0xf9, 0x96, 0x92, 0x29, 0xee, 0x28, 0x03, 0xc8, + 0x25, 0x18, 0x6c, 0x7a, 0x1a, 0xc0, 0xf1, 0xec, 0xc0, 0x78, 0x4e, 0x44, + 0xef, 0x9a, 0xe9, 0x6f, 0x93, 0x65, 0xcc, 0x8b, 0xe8, 0x6b, 0x88, 0xf8, + 0x83, 0x36, 0xdd, 0x09, 0x57, 0x3f, 0x79, 0xc0, 0xa0, 0x0f, 0x29, 0x6a, + 0x61, 0xa7, 0xb5, 0x2b, 0x05, 0xf2, 0x73, 0xbb, 0xe6, 0xcf, 0x4a, 0x00, + 0x8a, 0x9e, 0xcc, 0x0f, 0x14, 0xc1, 0x43, 0x70, 0xd4, 0x00, 0x30, 0xc1, + 0xa6, 0xd2, 0x93, 0x93, 0x45, 0x00, 0x14, 0x00, 0x49, 0xc0, 0xe4, 0xd1, + 0x52, 0x42, 0xad, 0xbd, 0x5c, 0x0e, 0x86, 0x80, 0x23, 0x20, 0xa9, 0x20, + 0x8c, 0x1a, 0x2a, 0x79, 0xd1, 0xda, 0x42, 0xc4, 0x0f, 0xc2, 0xa0, 0x07, + 0x04, 0x12, 0x33, 0x40, 0x12, 0x4b, 0x1e, 0xcd, 0xb9, 0x3d, 0x45, 0x47, + 0x4e, 0x77, 0xde, 0xd9, 0xc6, 0x07, 0x61, 0xe9, 0x4d, 0xa0, 0x0f, 0x56, + 0xf8, 0x39, 0x77, 0x89, 0xaf, 0xad, 0x4b, 0x72, 0x40, 0x65, 0x5f, 0xe7, + 0x5e, 0xb0, 0x78, 0x39, 0xaf, 0x16, 0xf8, 0x4f, 0x85, 0xd6, 0x66, 0x6c, + 0x8d, 0xc5, 0x71, 0x5e, 0xcf, 0x29, 0xc5, 0x00, 0x46, 0xad, 0xb9, 0xcd, + 0x4e, 0x5b, 0x11, 0xfe, 0x15, 0x5a, 0x33, 0xf3, 0x9a, 0x9a, 0x63, 0xb6, + 0x23, 0xf4, 0xa0, 0x0a, 0x41, 0xb3, 0x37, 0xe3, 0x57, 0xc9, 0xe0, 0x56, + 0x5c, 0x27, 0x32, 0x93, 0x5a, 0x44, 0xfc, 0xa3, 0xe9, 0x40, 0x03, 0x36, + 0x45, 0x34, 0x37, 0x34, 0x86, 0x9b, 0x9e, 0x4d, 0x00, 0x68, 0x5b, 0xbf, + 0xcb, 0x52, 0xcc, 0xdf, 0xba, 0xc0, 0xea, 0x6a, 0x95, 0xbb, 0xf1, 0xd6, + 0xa6, 0xdf, 0xb9, 0xf3, 0xd8, 0x50, 0x06, 0x4d, 0xfb, 0x7e, 0xf0, 0xd5, + 0x58, 0x0f, 0xcc, 0x4d, 0x4b, 0x7e, 0xd9, 0x98, 0xfd, 0x6a, 0x18, 0x3e, + 0xe9, 0xa0, 0x09, 0xd8, 0xd4, 0x12, 0xb7, 0x6a, 0x99, 0xba, 0x55, 0x72, + 0x32, 0xe4, 0xd0, 0x02, 0x27, 0xca, 0xa5, 0x8f, 0x5a, 0x40, 0x0b, 0xc6, + 0x7d, 0x33, 0x4d, 0x99, 0xb0, 0x02, 0x8a, 0x7a, 0x8d, 0xb6, 0xbd, 0x79, + 0x26, 0x80, 0x22, 0x20, 0x2f, 0x52, 0x33, 0x51, 0xc9, 0x27, 0xcb, 0x81, + 0x4a, 0xf8, 0x1c, 0xe6, 0xa1, 0xc1, 0x73, 0xc5, 0x00, 0x37, 0x96, 0x34, + 0x3b, 0x63, 0x0a, 0x29, 0xed, 0x84, 0x18, 0x15, 0x06, 0x79, 0xa0, 0x00, + 0x9a, 0x6e, 0x69, 0x4f, 0x5a, 0x43, 0xc5, 0x00, 0x21, 0x34, 0xd0, 0x09, + 0x34, 0xb4, 0xf4, 0x5c, 0x9a, 0x00, 0x9e, 0xde, 0x31, 0xf7, 0x9b, 0xa0, + 0xaa, 0x77, 0x52, 0x35, 0xcd, 0xc0, 0x85, 0x7e, 0xef, 0x7a, 0xb3, 0x73, + 0x38, 0x86, 0x1d, 0xab, 0xd6, 0xa2, 0xb5, 0x8b, 0xcb, 0x8c, 0xca, 0xff, + 0x00, 0x79, 0xa8, 0x01, 0x64, 0xc2, 0xa8, 0x8d, 0x7a, 0x0a, 0x72, 0x80, + 0xab, 0xef, 0x4c, 0x5f, 0x9e, 0x4a, 0x91, 0xb8, 0x34, 0x01, 0x56, 0xf1, + 0xb0, 0xa0, 0x7a, 0xd6, 0xa6, 0x98, 0xb8, 0xb7, 0x5f, 0x7a, 0xc5, 0xbc, + 0x6c, 0xcc, 0xab, 0x5d, 0x05, 0x8a, 0x6d, 0x81, 0x07, 0xb5, 0x00, 0x54, + 0xd5, 0x4f, 0xc8, 0xdf, 0x50, 0x2b, 0x04, 0xc2, 0x16, 0xf1, 0xa5, 0xc7, + 0x2c, 0xa0, 0x1a, 0xd9, 0xd5, 0xdb, 0x08, 0xd9, 0xfe, 0xf5, 0x66, 0x4d, + 0x2c, 0x70, 0xc4, 0x1e, 0x56, 0x0a, 0x3d, 0x4d, 0x00, 0x38, 0x1c, 0xd3, + 0x93, 0x03, 0xa0, 0xc5, 0x67, 0xb6, 0xab, 0x66, 0xa7, 0xfd, 0x70, 0xa9, + 0x63, 0xd4, 0x6d, 0x98, 0x64, 0x4a, 0xb4, 0x01, 0xce, 0xf8, 0xe3, 0x91, + 0x6a, 0x3f, 0xde, 0xfe, 0x95, 0xc5, 0x5b, 0xe3, 0xed, 0x0d, 0x9f, 0x4a, + 0xed, 0x7c, 0x61, 0x24, 0x73, 0xc3, 0x6e, 0xf1, 0xb8, 0x60, 0x09, 0x1c, + 0x57, 0x19, 0x6f, 0xff, 0x00, 0x1f, 0x0d, 0x40, 0x16, 0x22, 0x03, 0xcc, + 0x35, 0x2b, 0x0f, 0xde, 0xc6, 0x7f, 0xda, 0xa6, 0x46, 0x30, 0xec, 0x3d, + 0x6a, 0x46, 0xfb, 0xf1, 0xe7, 0xfb, 0xd4, 0x01, 0xb1, 0x75, 0xcd, 0xb4, + 0x67, 0xd8, 0x56, 0x52, 0x7f, 0xc7, 0xc7, 0xfc, 0x0e, 0xb5, 0x6e, 0x08, + 0xfb, 0x0c, 0x47, 0xd8, 0x56, 0x6c, 0x0b, 0xbe, 0xf5, 0x15, 0x79, 0x26, + 0x4c, 0x7e, 0xb4, 0x01, 0xe8, 0xda, 0x3c, 0x3e, 0x55, 0x97, 0x98, 0x7a, + 0xb0, 0xab, 0x79, 0xcb, 0x52, 0x44, 0xbe, 0x55, 0xb4, 0x71, 0x8e, 0xca, + 0x29, 0x45, 0x00, 0x48, 0xb5, 0x22, 0xd4, 0x6b, 0x52, 0x0a, 0x00, 0x90, + 0x53, 0xd6, 0xa3, 0x15, 0x20, 0xa0, 0x09, 0x05, 0x3c, 0x54, 0x60, 0xd3, + 0x81, 0xa0, 0x09, 0x05, 0x48, 0x2a, 0x31, 0x4e, 0x06, 0x80, 0x24, 0x14, + 0xf1, 0x51, 0x83, 0x4e, 0x06, 0x80, 0x1e, 0x29, 0xc0, 0xd4, 0x60, 0xd3, + 0xb3, 0x40, 0x0f, 0xcd, 0x0c, 0x46, 0xd6, 0xfa, 0x53, 0x41, 0xa1, 0xbe, + 0xe9, 0xfa, 0x50, 0x00, 0xa7, 0xe5, 0x1f, 0x4a, 0x5c, 0xd3, 0x14, 0xfc, + 0xa3, 0xe9, 0x4b, 0x40, 0x0e, 0xcd, 0x19, 0xa4, 0xcd, 0x19, 0xa0, 0x03, + 0x34, 0x86, 0x8c, 0xd2, 0x13, 0x40, 0x09, 0x4d, 0x34, 0xb4, 0xd2, 0x68, + 0x01, 0x09, 0xa8, 0xcd, 0x3c, 0x9a, 0x61, 0xa0, 0x06, 0x35, 0x44, 0xd5, + 0x29, 0xa6, 0x11, 0x40, 0x1e, 0x51, 0xe3, 0x1d, 0x3c, 0xd9, 0x6b, 0x6f, + 0x22, 0xae, 0x23, 0x98, 0x6e, 0x1f, 0x5e, 0xf5, 0xd0, 0xf8, 0x42, 0x2c, + 0x69, 0x76, 0x83, 0x1c, 0xc9, 0x70, 0x5c, 0xfe, 0x02, 0xb6, 0xfc, 0x4b, + 0xa3, 0xae, 0xaf, 0xa5, 0x3a, 0x00, 0x3c, 0xe8, 0xfe, 0x68, 0xcf, 0xbd, + 0x52, 0xf0, 0xd5, 0xb1, 0xb6, 0xb5, 0xb0, 0x89, 0x81, 0x0c, 0xa8, 0x58, + 0x8f, 0x42, 0x4d, 0x00, 0x74, 0x5a, 0xe4, 0x9f, 0xf1, 0x2e, 0x23, 0xd5, + 0x85, 0x79, 0x64, 0xb0, 0xa1, 0xba, 0x98, 0x91, 0xfc, 0x66, 0xbd, 0x2b, + 0x5b, 0x7f, 0xf4, 0x35, 0x1e, 0xae, 0x2b, 0xcd, 0xe5, 0x38, 0xbb, 0x9f, + 0xfd, 0xf3, 0x40, 0x1a, 0x17, 0x2a, 0xad, 0x6f, 0x6c, 0xc4, 0x03, 0x85, + 0xc5, 0x67, 0x6a, 0xbe, 0x61, 0xd3, 0x82, 0x44, 0x32, 0x44, 0x99, 0xc0, + 0xad, 0x06, 0xcb, 0x69, 0xf0, 0x37, 0xbd, 0x51, 0xd4, 0x41, 0xfb, 0x0c, + 0xa6, 0x33, 0xb5, 0xc1, 0x1c, 0x8a, 0x00, 0xc7, 0xb2, 0x12, 0x8b, 0xb3, + 0x2c, 0xa0, 0x8d, 0xa0, 0xb1, 0x24, 0x63, 0x9a, 0xa8, 0xb2, 0x1f, 0xb5, + 0x38, 0x07, 0x86, 0xc8, 0xab, 0x63, 0xcd, 0x6b, 0x29, 0x8c, 0x92, 0x96, + 0x27, 0x0a, 0x2b, 0x3c, 0x40, 0x55, 0xc3, 0x06, 0xe8, 0x68, 0x02, 0x74, + 0xba, 0xdb, 0x08, 0x05, 0x49, 0x22, 0xa8, 0xc8, 0xdb, 0xe4, 0x2d, 0xeb, + 0x56, 0xa5, 0x8d, 0xd5, 0xd8, 0x0e, 0x07, 0x5a, 0xab, 0x22, 0x15, 0x23, + 0x3d, 0xe8, 0x01, 0xb4, 0xb4, 0x82, 0x8a, 0x00, 0x29, 0xc1, 0x88, 0xe0, + 0x53, 0x69, 0xc3, 0xd6, 0x80, 0x35, 0xfc, 0x34, 0xfe, 0x5e, 0xbf, 0x6a, + 0xc0, 0x72, 0x1b, 0xfa, 0x55, 0x0b, 0xe2, 0x5b, 0x52, 0xb8, 0x3e, 0xb2, + 0xb1, 0xfd, 0x6a, 0xff, 0x00, 0x86, 0xa2, 0x91, 0xf5, 0x98, 0x24, 0x54, + 0x25, 0x11, 0xbe, 0x63, 0xe9, 0x55, 0x75, 0x1b, 0x69, 0xa2, 0xbe, 0x95, + 0xde, 0x26, 0x55, 0x69, 0x18, 0xa9, 0x23, 0x83, 0xcd, 0x00, 0x68, 0xf8, + 0x94, 0x7f, 0xa3, 0x58, 0x7f, 0xd7, 0x3a, 0x6e, 0xa4, 0x49, 0xd0, 0x74, + 0xe1, 0x9e, 0x39, 0xe2, 0x9d, 0xe2, 0x43, 0xfe, 0x8d, 0x60, 0x3f, 0xe9, + 0x9d, 0x47, 0xa8, 0x1c, 0x69, 0x1a, 0x70, 0x3f, 0xdd, 0x26, 0x80, 0x32, + 0xd5, 0x00, 0x5a, 0x19, 0x38, 0xc8, 0xa1, 0xdb, 0x0b, 0x4b, 0x03, 0x6e, + 0x20, 0x1f, 0x5a, 0x00, 0xe9, 0x08, 0x6b, 0x5f, 0x0a, 0x04, 0x00, 0xee, + 0x94, 0xf6, 0xae, 0x7c, 0xc6, 0xfb, 0x8f, 0xc8, 0xdf, 0x95, 0x76, 0x52, + 0xeb, 0xe3, 0x42, 0x82, 0xde, 0x24, 0xb6, 0x8e, 0x6d, 0xcb, 0x9c, 0x3f, + 0x6a, 0x45, 0xf8, 0x82, 0x41, 0xff, 0x00, 0x90, 0x55, 0xb9, 0xff, 0x00, + 0x3f, 0x4a, 0x00, 0xea, 0x7e, 0x1d, 0xa9, 0x1a, 0x74, 0x60, 0x8c, 0x1e, + 0x7f, 0x9d, 0x7a, 0x08, 0x19, 0x5f, 0xa9, 0xae, 0x3b, 0xc1, 0xd7, 0x87, + 0x52, 0x8f, 0xed, 0x66, 0x25, 0x8b, 0x70, 0xce, 0xd5, 0xe8, 0x2b, 0xb6, + 0x81, 0x37, 0x05, 0xfa, 0xd0, 0x02, 0x5d, 0x8f, 0x98, 0x0f, 0x6a, 0xcf, + 0x90, 0x56, 0x9d, 0xd8, 0xfd, 0xe1, 0xaa, 0x0c, 0x33, 0x40, 0x0f, 0xb3, + 0x5c, 0xb5, 0x6a, 0x5c, 0xae, 0xdb, 0x16, 0x3e, 0xd5, 0x4a, 0xc9, 0x3e, + 0x7a, 0xd0, 0xd4, 0x46, 0xdd, 0x3b, 0xea, 0x68, 0x03, 0x9c, 0x0b, 0x96, + 0x1f, 0x5a, 0xbf, 0x08, 0xcc, 0x66, 0xa9, 0x8e, 0x18, 0x1a, 0xbd, 0x08, + 0xf9, 0x07, 0xbd, 0x00, 0x5a, 0xb4, 0x5f, 0xf4, 0x98, 0x7d, 0x77, 0x56, + 0x9d, 0xda, 0xe6, 0x3f, 0xad, 0x53, 0xb4, 0x4f, 0xf4, 0xc8, 0xbe, 0xb5, + 0xa5, 0x3a, 0xee, 0x75, 0x4f, 0x53, 0x40, 0x1a, 0x1a, 0x52, 0x6d, 0xb5, + 0x06, 0xb4, 0x00, 0xcb, 0x0a, 0x82, 0xd5, 0x3c, 0xbb, 0x75, 0x5f, 0x6a, + 0xb5, 0x18, 0xc9, 0xa0, 0x09, 0xd4, 0x71, 0x50, 0x5c, 0x73, 0x2c, 0x63, + 0xdc, 0x9a, 0xb0, 0x2a, 0xb4, 0x87, 0x37, 0x3e, 0xc1, 0x68, 0x02, 0x78, + 0xbf, 0xd5, 0xaf, 0xd2, 0xa4, 0x1d, 0x4d, 0x32, 0x2f, 0xf5, 0x4b, 0xf4, + 0xa7, 0x8e, 0xb4, 0x00, 0xb4, 0xb4, 0x94, 0xb4, 0x00, 0x52, 0xd1, 0x45, + 0x00, 0x14, 0x51, 0x45, 0x00, 0x21, 0xaa, 0x57, 0xc7, 0x10, 0x3f, 0xd2, + 0xae, 0x9a, 0xca, 0xd5, 0xa5, 0x09, 0x6c, 0xdc, 0xf5, 0xa0, 0x0f, 0x32, + 0xd5, 0xfe, 0x5d, 0x41, 0xfd, 0xcd, 0x79, 0xc7, 0xc4, 0x72, 0x46, 0x9f, + 0x02, 0xf6, 0xf3, 0x2b, 0xd1, 0x75, 0x73, 0xba, 0xe0, 0x9a, 0xf3, 0xcf, + 0x89, 0x0b, 0x9d, 0x2e, 0xd5, 0xff, 0x00, 0xdb, 0xc1, 0xa0, 0x0f, 0x3d, + 0xb9, 0x81, 0x52, 0xce, 0x22, 0xa9, 0xf3, 0x37, 0x24, 0xd5, 0x26, 0x46, + 0x50, 0x18, 0xa9, 0x00, 0xf4, 0x24, 0x75, 0xad, 0x38, 0xa4, 0x8e, 0xee, + 0xdd, 0x62, 0x66, 0x0b, 0x22, 0x74, 0xcf, 0x43, 0x4e, 0x30, 0x6e, 0xe1, + 0xb6, 0x85, 0x51, 0xf2, 0x8d, 0xc0, 0xd0, 0x06, 0x49, 0x46, 0x5c, 0x64, + 0x63, 0x34, 0xd6, 0xeb, 0x5a, 0x52, 0xa4, 0x31, 0x82, 0xf2, 0xb2, 0x9e, + 0x30, 0xaa, 0x0d, 0x67, 0x31, 0xf9, 0x8d, 0x00, 0x30, 0xf5, 0xa2, 0x94, + 0xf5, 0xa4, 0xa0, 0x02, 0xb4, 0x2d, 0xc4, 0x4e, 0x00, 0xdd, 0x8c, 0x0f, + 0xd6, 0xb3, 0xe9, 0xc8, 0xfb, 0x0e, 0x45, 0x00, 0x68, 0x4d, 0x0b, 0x45, + 0x86, 0x3c, 0xa7, 0x7c, 0x56, 0x7b, 0x63, 0x71, 0xc7, 0x4a, 0xbe, 0x58, + 0xb6, 0x9b, 0xbb, 0x27, 0x39, 0xaa, 0x65, 0xa3, 0x31, 0x00, 0x14, 0xef, + 0xcf, 0x5a, 0x00, 0x8e, 0x8a, 0x28, 0xa0, 0x0e, 0xf7, 0xe1, 0x41, 0xff, + 0x00, 0x8a, 0xa5, 0xc7, 0xac, 0x07, 0xf9, 0x8a, 0xf6, 0xc9, 0x8f, 0xcb, + 0x5e, 0x1f, 0xf0, 0xa9, 0xc2, 0xf8, 0xb7, 0x07, 0xf8, 0xa1, 0x61, 0xfa, + 0x8a, 0xf6, 0xe9, 0xb9, 0x53, 0x40, 0x0d, 0x87, 0x25, 0xc5, 0x3e, 0xe9, + 0xb1, 0x11, 0x14, 0x90, 0x0e, 0x73, 0x50, 0xde, 0xbf, 0x51, 0x40, 0x15, + 0xad, 0xf9, 0x92, 0xb5, 0x1b, 0xa0, 0xac, 0xbb, 0x5e, 0x65, 0x15, 0xa7, + 0x21, 0xe4, 0x50, 0x04, 0x6f, 0xd2, 0xa3, 0x76, 0xc0, 0xfa, 0xd3, 0xdc, + 0xd4, 0x12, 0xb7, 0xcc, 0x28, 0x02, 0xcc, 0x0d, 0xd6, 0xa7, 0x43, 0xf2, + 0x93, 0x54, 0xe2, 0x3f, 0x2e, 0x6a, 0xc8, 0x38, 0x8e, 0x80, 0x32, 0xaf, + 0x3f, 0xd6, 0x13, 0x4d, 0x83, 0xa6, 0x29, 0xf7, 0x43, 0xe6, 0x34, 0x5b, + 0x8e, 0x33, 0x40, 0x0e, 0x7e, 0x2a, 0x12, 0x76, 0x82, 0x6a, 0x67, 0xe4, + 0xd5, 0x4b, 0x87, 0xe3, 0x02, 0x80, 0x23, 0x1f, 0xbc, 0x97, 0xda, 0x9f, + 0x33, 0x7c, 0xa1, 0x47, 0xad, 0x22, 0x0f, 0x2d, 0x32, 0x7a, 0x9a, 0x0e, + 0x7c, 0xb0, 0xde, 0xa7, 0x8a, 0x00, 0x87, 0x61, 0x63, 0x43, 0x1d, 0x8b, + 0x8a, 0x76, 0x48, 0xcf, 0x15, 0x04, 0x87, 0x26, 0x80, 0x23, 0x66, 0x24, + 0xf3, 0x4d, 0xef, 0x4b, 0xd6, 0x90, 0x72, 0x73, 0x40, 0x01, 0xa6, 0x13, + 0x4e, 0x7e, 0x30, 0x29, 0x07, 0x26, 0x80, 0x11, 0x57, 0x26, 0xad, 0xc7, + 0x1e, 0xd5, 0xdc, 0x7b, 0x53, 0x62, 0x8b, 0xbd, 0x17, 0x33, 0xac, 0x49, + 0x8f, 0xc2, 0x80, 0x2a, 0x2a, 0x35, 0xcd, 0xd9, 0x27, 0xee, 0x2d, 0x4f, + 0x71, 0x26, 0x3e, 0x51, 0xda, 0xa5, 0x8f, 0x6c, 0x70, 0x6e, 0xee, 0x6a, + 0xaa, 0x8f, 0x32, 0x5c, 0xf6, 0x14, 0x01, 0x34, 0x4b, 0xb5, 0x72, 0x69, + 0xac, 0x72, 0x69, 0xed, 0xf2, 0xae, 0x2a, 0x3c, 0xf2, 0x7d, 0xa8, 0x03, + 0x39, 0xf3, 0x25, 0xfa, 0xaf, 0xfb, 0x55, 0xd5, 0xda, 0xae, 0x14, 0x7a, + 0x0a, 0xe5, 0xac, 0x97, 0xce, 0xd5, 0x7e, 0x9c, 0xd7, 0x57, 0x1f, 0xca, + 0x80, 0x50, 0x06, 0x26, 0xb2, 0x77, 0x67, 0xfd, 0xfa, 0xcc, 0xd4, 0xac, + 0xa5, 0x93, 0x4b, 0x90, 0xb2, 0x1c, 0x05, 0xc8, 0x35, 0x63, 0x5f, 0x9c, + 0xc7, 0x6f, 0xe6, 0x2e, 0x33, 0xbf, 0xbd, 0x66, 0xff, 0x00, 0x6f, 0xdc, + 0x49, 0x68, 0x63, 0x98, 0x28, 0x40, 0x39, 0x3e, 0xd4, 0x01, 0xc8, 0x79, + 0xab, 0x9c, 0x66, 0xad, 0x45, 0x2a, 0x6c, 0x1f, 0x30, 0xae, 0x56, 0xe2, + 0xf8, 0x8b, 0x99, 0x76, 0x8c, 0xae, 0xe3, 0x82, 0x0d, 0x58, 0xb6, 0xd4, + 0xed, 0xc0, 0x02, 0x54, 0x9b, 0xfe, 0x02, 0x68, 0x03, 0x67, 0x53, 0x64, + 0x7b, 0x4e, 0x08, 0xc8, 0x35, 0xcf, 0x5b, 0xff, 0x00, 0xaf, 0x3f, 0x8d, + 0x5b, 0x9e, 0xf2, 0xda, 0x52, 0xa2, 0xdf, 0xcd, 0x03, 0xf8, 0xb7, 0xd5, + 0x38, 0x08, 0xf3, 0xbf, 0x13, 0x40, 0x16, 0xd3, 0x99, 0xcd, 0x49, 0x27, + 0x0c, 0x9f, 0xef, 0x54, 0x71, 0x63, 0xce, 0x1c, 0xf6, 0xa9, 0xa5, 0xc6, + 0x47, 0x3d, 0x0d, 0x00, 0x69, 0xcb, 0x83, 0xa7, 0x43, 0xf4, 0x14, 0x9e, + 0x1e, 0xb6, 0xfb, 0x4e, 0xb6, 0x99, 0x1f, 0x2a, 0x31, 0x73, 0x48, 0x4e, + 0x74, 0xc8, 0xcf, 0xa7, 0xf8, 0xd6, 0xc7, 0x84, 0x6d, 0xf6, 0xac, 0xf7, + 0x24, 0x72, 0xc7, 0x68, 0xa0, 0x0e, 0xa9, 0x9b, 0x26, 0x9c, 0x29, 0x8b, + 0xd6, 0xa4, 0x51, 0x40, 0x0f, 0x14, 0xf1, 0x4d, 0x02, 0x9e, 0x28, 0x01, + 0xe2, 0x9e, 0x29, 0x82, 0x9c, 0x28, 0x01, 0xe2, 0x9e, 0x29, 0x82, 0x9e, + 0x28, 0x01, 0xe2, 0x9e, 0x2a, 0x31, 0x4f, 0x14, 0x00, 0xfa, 0x70, 0xa6, + 0x0a, 0x70, 0xa0, 0x07, 0x0a, 0x70, 0x34, 0xd0, 0x69, 0x68, 0x01, 0xd4, + 0x37, 0xdd, 0x3f, 0x4a, 0x40, 0x68, 0x63, 0xf2, 0x9f, 0xa5, 0x00, 0x0a, + 0x3e, 0x51, 0xf4, 0xa5, 0xa4, 0x5f, 0xba, 0x3e, 0x94, 0xb9, 0xa0, 0x02, + 0x8a, 0x33, 0x46, 0x68, 0x01, 0x29, 0x29, 0x69, 0x09, 0xa0, 0x04, 0x34, + 0xda, 0x71, 0xa6, 0x9a, 0x00, 0x69, 0xa6, 0x91, 0x4f, 0x34, 0xc3, 0x40, + 0x0c, 0x34, 0xc3, 0x52, 0x1a, 0x61, 0x14, 0x01, 0x19, 0xaa, 0x7e, 0x57, + 0x97, 0x7a, 0x24, 0x00, 0x6d, 0xdb, 0x81, 0x8e, 0xd5, 0x71, 0x85, 0x45, + 0x22, 0x92, 0xa7, 0x1d, 0x7b, 0x50, 0x06, 0x7e, 0xb7, 0x26, 0x21, 0x85, + 0x71, 0x9c, 0xbd, 0x71, 0x2f, 0x62, 0xef, 0x73, 0x2b, 0x02, 0x0e, 0x58, + 0xf7, 0xae, 0xb3, 0x51, 0x32, 0x4d, 0xb1, 0x5f, 0x8d, 0xa7, 0x35, 0x9b, + 0xf6, 0x71, 0xb8, 0xe2, 0x80, 0x33, 0xc4, 0x58, 0xb2, 0x8e, 0x27, 0xf9, + 0x48, 0x35, 0x52, 0xee, 0x04, 0x48, 0x48, 0x0d, 0xe6, 0x03, 0xd4, 0x56, + 0xd3, 0xda, 0x23, 0x85, 0x24, 0x72, 0x2a, 0x19, 0x74, 0xf8, 0xdc, 0x1e, + 0x08, 0xa0, 0x0e, 0x66, 0x74, 0x54, 0x81, 0x17, 0x66, 0x01, 0x24, 0xe0, + 0x0a, 0x89, 0x6d, 0x91, 0xfd, 0xbf, 0x0a, 0xe9, 0x63, 0xd3, 0x70, 0x73, + 0x21, 0xdd, 0xe9, 0xf4, 0xa9, 0x0d, 0x94, 0x63, 0xf8, 0x45, 0x00, 0x73, + 0x6d, 0x66, 0xaf, 0x8c, 0x72, 0x71, 0x55, 0x2e, 0xb4, 0x96, 0x91, 0x46, + 0xc3, 0x82, 0x3d, 0x6b, 0xaf, 0x16, 0x11, 0x83, 0x90, 0xa0, 0x13, 0xd6, + 0x91, 0xac, 0xd7, 0xd2, 0x80, 0x38, 0x63, 0xa3, 0x4f, 0xfd, 0xe1, 0x4d, + 0xfe, 0xc8, 0xb9, 0xf6, 0xae, 0xeb, 0xec, 0x4b, 0xe9, 0x4c, 0x96, 0xcd, + 0x42, 0x1e, 0x31, 0x40, 0x1c, 0x39, 0xd2, 0xae, 0x47, 0x45, 0x07, 0xf1, + 0xa9, 0xd3, 0x48, 0x76, 0x52, 0x33, 0x97, 0x1d, 0x45, 0x75, 0xd3, 0xb2, + 0x88, 0x91, 0x19, 0x17, 0xe4, 0x18, 0x52, 0x17, 0x1b, 0xaa, 0x94, 0x81, + 0x60, 0x84, 0x93, 0xfe, 0xb1, 0x8f, 0xeb, 0x40, 0x18, 0x56, 0x50, 0xdd, + 0xdb, 0x5d, 0x80, 0xc8, 0xca, 0x80, 0xf2, 0x07, 0x7a, 0x8d, 0xe6, 0x96, + 0x78, 0x24, 0x12, 0x39, 0x3f, 0x37, 0xca, 0x09, 0xe9, 0xcd, 0x6d, 0x04, + 0x44, 0x0a, 0x4c, 0xaf, 0xb8, 0x73, 0xd7, 0xbd, 0x45, 0xfd, 0x9f, 0x6b, + 0x33, 0xee, 0xcb, 0x03, 0x9c, 0x9c, 0x1a, 0x00, 0x93, 0x5f, 0xb7, 0x8e, + 0x3b, 0x5d, 0x26, 0x69, 0x46, 0x50, 0xaf, 0x23, 0x14, 0xba, 0x8d, 0xa7, + 0xdb, 0xf4, 0xf8, 0x24, 0x8a, 0xdd, 0xfc, 0xb4, 0x1f, 0x29, 0x5a, 0xb9, + 0xae, 0x42, 0xf7, 0x56, 0xf6, 0x76, 0xf9, 0xda, 0x22, 0x4c, 0x8c, 0x8e, + 0xb5, 0x5d, 0x35, 0x24, 0x85, 0x4c, 0x12, 0x4b, 0xb5, 0x62, 0x18, 0x50, + 0x3b, 0xd0, 0x07, 0x2f, 0x25, 0xa4, 0xe0, 0x95, 0xf2, 0x98, 0x01, 0xeb, + 0x5a, 0x1a, 0x4e, 0x9e, 0x4d, 0xfc, 0x4b, 0x2a, 0x02, 0xac, 0x32, 0x6b, + 0x6a, 0x1b, 0xfb, 0x0b, 0xb8, 0xdb, 0xcc, 0x62, 0xb2, 0x1f, 0xba, 0x0f, + 0xf5, 0xab, 0xd6, 0xb0, 0xc6, 0x24, 0x0e, 0x36, 0x1c, 0x0e, 0xa2, 0x80, + 0x30, 0xbc, 0x45, 0xb4, 0xdd, 0x2a, 0x20, 0xc9, 0x55, 0x00, 0x56, 0x22, + 0xa1, 0x2d, 0x8c, 0x57, 0xa3, 0x47, 0x61, 0xa4, 0xdd, 0x4e, 0x5e, 0x48, + 0x1d, 0x9c, 0x72, 0xcd, 0xce, 0x05, 0x49, 0x15, 0xae, 0x82, 0xb2, 0x85, + 0x36, 0x85, 0xb9, 0xc5, 0x00, 0x74, 0x7e, 0x01, 0x87, 0xcb, 0xf0, 0xfc, + 0x6e, 0x47, 0x26, 0xbb, 0xbb, 0x35, 0xc9, 0x4a, 0xc1, 0xd2, 0xed, 0xe1, + 0xb6, 0xb3, 0x8e, 0x28, 0x13, 0x64, 0x78, 0xc8, 0x5f, 0x4a, 0xe8, 0xec, + 0x57, 0x9c, 0xfa, 0x0a, 0x00, 0x82, 0xec, 0x7e, 0xf0, 0x9a, 0xa2, 0x7e, + 0x95, 0xa1, 0x70, 0xbb, 0x98, 0x8a, 0xa2, 0x46, 0x09, 0x14, 0x01, 0x6b, + 0x4f, 0x5c, 0x9f, 0xc6, 0xaf, 0xeb, 0x0b, 0xb7, 0x4f, 0x5f, 0xf7, 0xaa, + 0xbe, 0x98, 0x9b, 0x8d, 0x5b, 0xd7, 0x86, 0xdb, 0x48, 0x87, 0xbd, 0x00, + 0x73, 0x38, 0xe9, 0x57, 0xe1, 0x1f, 0xbb, 0x43, 0x54, 0x98, 0x63, 0x15, + 0xa1, 0x6c, 0xb9, 0x88, 0x0a, 0x00, 0xd2, 0xb2, 0x5c, 0xde, 0xc6, 0x2b, + 0x4d, 0x13, 0x37, 0x4b, 0x9f, 0x43, 0x8a, 0xce, 0xb1, 0x52, 0x2f, 0x13, + 0x1c, 0xf1, 0x5b, 0x36, 0xc3, 0x74, 0xa0, 0x91, 0xd0, 0x50, 0x05, 0xf8, + 0xc6, 0x15, 0x45, 0x58, 0x8c, 0x7c, 0xb5, 0x12, 0x74, 0x15, 0x3a, 0x8e, + 0x28, 0x01, 0xfd, 0xaa, 0xb3, 0x72, 0xce, 0xdf, 0x85, 0x58, 0x63, 0x85, + 0x35, 0x5c, 0xfd, 0xc1, 0xee, 0x68, 0x02, 0xc4, 0x3c, 0xc4, 0xbf, 0x41, + 0x4f, 0xef, 0x51, 0xc3, 0xf7, 0x3f, 0x1a, 0x92, 0x80, 0x16, 0x94, 0x52, + 0x52, 0xd0, 0x01, 0x45, 0x14, 0x50, 0x02, 0xd2, 0x51, 0x41, 0x34, 0x00, + 0xc9, 0x1b, 0x02, 0xb9, 0x7f, 0x10, 0x5d, 0x80, 0xa5, 0x01, 0xad, 0x6b, + 0xdb, 0xd5, 0x8d, 0x8a, 0x83, 0xcd, 0x71, 0x5a, 0xc5, 0xdf, 0x99, 0x23, + 0x73, 0x40, 0x1c, 0xf5, 0xfb, 0xee, 0x90, 0x9a, 0xf3, 0xaf, 0x88, 0xb7, + 0x12, 0x18, 0x2d, 0x6d, 0xc2, 0xfc, 0xa4, 0x96, 0x35, 0xe8, 0x52, 0xa9, + 0x90, 0xf1, 0x5c, 0x8f, 0x8c, 0x6c, 0x22, 0x96, 0x7b, 0x54, 0x99, 0xf6, + 0xc8, 0x41, 0xda, 0xbd, 0xcd, 0x00, 0x79, 0xa6, 0x99, 0x02, 0xc9, 0x74, + 0xc6, 0x51, 0x85, 0x58, 0xdd, 0xb9, 0xf5, 0x03, 0x22, 0xb3, 0x89, 0x62, + 0x4f, 0x5a, 0xed, 0xff, 0x00, 0xe1, 0x1f, 0x1d, 0x99, 0xaa, 0x16, 0xf0, + 0xfa, 0xaf, 0x52, 0x40, 0xfa, 0x50, 0x07, 0x1d, 0xc9, 0x4f, 0xa1, 0xa6, + 0x9c, 0xe6, 0xba, 0xb7, 0xf0, 0xea, 0x31, 0xe2, 0x42, 0x3f, 0x0a, 0x67, + 0xfc, 0x23, 0x6a, 0x7f, 0xe5, 0xa9, 0xfc, 0xa8, 0x03, 0x99, 0x74, 0xda, + 0xd8, 0x07, 0x34, 0xcc, 0x57, 0x51, 0xff, 0x00, 0x08, 0xda, 0x7f, 0xcf, + 0x56, 0xfc, 0xa8, 0x1e, 0x1a, 0x8f, 0xbc, 0xad, 0xf9, 0x50, 0x07, 0x2f, + 0xcd, 0x18, 0x3e, 0x95, 0xd6, 0x8d, 0x02, 0x20, 0x31, 0x92, 0x68, 0x3a, + 0x0c, 0x58, 0x38, 0x27, 0x34, 0x01, 0x80, 0xac, 0x83, 0x4c, 0x29, 0xb8, + 0x6e, 0xcf, 0x4a, 0xa4, 0x14, 0x9e, 0x82, 0xba, 0x3b, 0x8d, 0x15, 0xd2, + 0x31, 0x85, 0xdd, 0x8e, 0xe2, 0xaa, 0x0b, 0x5d, 0xbc, 0x6d, 0xc5, 0x00, + 0x64, 0x08, 0xdb, 0xd0, 0xd2, 0xf9, 0x6d, 0xe9, 0x5a, 0xfe, 0x46, 0x3b, + 0x52, 0xf9, 0x5e, 0xd4, 0x01, 0xd1, 0xfc, 0x2e, 0xb7, 0x3f, 0xf0, 0x91, + 0x4b, 0x31, 0xfe, 0x08, 0x4f, 0xf3, 0x15, 0xed, 0x0c, 0x72, 0x3e, 0xb5, + 0xe5, 0x3f, 0x0e, 0x08, 0x4d, 0x5a, 0xe1, 0x3b, 0xb4, 0x5c, 0x57, 0xab, + 0x46, 0x01, 0x50, 0x28, 0x02, 0x58, 0xc0, 0x54, 0x15, 0x9d, 0x72, 0xf9, + 0x76, 0xfa, 0xd5, 0xf7, 0x6d, 0xb1, 0xb1, 0xf6, 0xac, 0x99, 0x5b, 0x2d, + 0x40, 0x13, 0x58, 0xf3, 0x3d, 0x68, 0x48, 0x79, 0xaa, 0x3a, 0x70, 0xcb, + 0xb3, 0x55, 0xc9, 0x0f, 0x34, 0x00, 0xc6, 0x38, 0x19, 0xaa, 0xf2, 0x75, + 0x1e, 0xb5, 0x2b, 0x9e, 0x2a, 0x2f, 0xbd, 0x20, 0x14, 0x01, 0x61, 0x7e, + 0x55, 0xa5, 0x12, 0x71, 0x8a, 0x8a, 0x66, 0xda, 0x86, 0xa2, 0x47, 0xc8, + 0xa0, 0x06, 0xdc, 0x1d, 0xc6, 0x9f, 0x08, 0xc4, 0x64, 0xd3, 0x1f, 0x93, + 0x4f, 0xce, 0xd8, 0xc2, 0xf7, 0xa0, 0x06, 0xc8, 0x70, 0xb9, 0xaa, 0x27, + 0xf7, 0x93, 0x7b, 0x0a, 0xb3, 0x72, 0xd8, 0x5c, 0x77, 0xaa, 0xd9, 0xda, + 0xbb, 0x47, 0x53, 0xd4, 0xd0, 0x02, 0x48, 0xfb, 0x8f, 0x1f, 0x41, 0x52, + 0xca, 0x76, 0x45, 0x1a, 0xe3, 0x90, 0x2a, 0x34, 0x01, 0x41, 0x90, 0xf6, + 0xe9, 0x44, 0x87, 0x21, 0x4b, 0x75, 0xc5, 0x00, 0x42, 0xec, 0x6a, 0xbb, + 0x37, 0x35, 0x23, 0xb6, 0x78, 0x14, 0xcc, 0x77, 0xa0, 0x06, 0x9e, 0x38, + 0xa7, 0x7d, 0xd5, 0xcd, 0x0a, 0x99, 0xe4, 0xf4, 0xa0, 0x82, 0xe7, 0x03, + 0xa5, 0x00, 0x46, 0x01, 0x63, 0x9a, 0x9e, 0x38, 0xb9, 0xf7, 0xa9, 0x22, + 0x86, 0x9f, 0x23, 0xa4, 0x2a, 0x79, 0xfa, 0xd0, 0x03, 0x25, 0x94, 0x44, + 0x9e, 0x98, 0xac, 0xf4, 0x56, 0xbb, 0x9b, 0x7b, 0x7d, 0xc1, 0xd2, 0x91, + 0x99, 0xaf, 0x26, 0xda, 0x3e, 0xe0, 0xad, 0x28, 0xa1, 0x58, 0xe3, 0xe3, + 0x80, 0x28, 0x02, 0xac, 0xae, 0x78, 0x45, 0xa7, 0xc4, 0x9b, 0x05, 0x2a, + 0xc7, 0x99, 0x59, 0xcf, 0xe1, 0x4b, 0x21, 0xda, 0x38, 0xa0, 0x08, 0xd9, + 0xb2, 0x49, 0xf4, 0xa8, 0xd9, 0xb6, 0xc2, 0xed, 0xed, 0x48, 0xe7, 0xa2, + 0x8e, 0xa6, 0xa3, 0xbe, 0x6f, 0x2e, 0xcd, 0xbf, 0x2a, 0x00, 0x6e, 0x80, + 0x03, 0xdc, 0xcd, 0x21, 0xed, 0xd2, 0xba, 0x45, 0x38, 0x52, 0x4f, 0xa5, + 0x60, 0xe8, 0x30, 0x6c, 0xb6, 0xf3, 0x3b, 0xb9, 0xad, 0xc9, 0x4e, 0xdb, + 0x79, 0x1b, 0xda, 0x80, 0x39, 0x8d, 0x75, 0xd0, 0x59, 0x6f, 0x90, 0xe1, + 0x14, 0x96, 0x24, 0xd7, 0x96, 0x6b, 0x1a, 0xf4, 0x97, 0x8c, 0xd0, 0xc1, + 0x94, 0x80, 0x71, 0xc7, 0x56, 0xaf, 0x45, 0xf1, 0x81, 0x03, 0x40, 0x65, + 0x3f, 0xc4, 0x31, 0xfa, 0xd7, 0x97, 0x79, 0x11, 0x0e, 0xd4, 0x01, 0x56, + 0x21, 0xb8, 0x11, 0x52, 0x42, 0x80, 0xae, 0x6a, 0x62, 0x88, 0xaa, 0x76, + 0xe0, 0x1c, 0x53, 0x2d, 0xc3, 0x6c, 0xe0, 0x8a, 0x00, 0x95, 0x10, 0x53, + 0xd1, 0x00, 0x6a, 0x68, 0x12, 0xf6, 0xdb, 0x52, 0xc7, 0x92, 0x79, 0x18, + 0x34, 0x00, 0xaa, 0xbf, 0x35, 0x3d, 0x97, 0x76, 0x32, 0x69, 0x42, 0xf3, + 0x4f, 0xdb, 0xd2, 0x80, 0x2d, 0x5b, 0xa4, 0xd3, 0x88, 0xed, 0xe3, 0x24, + 0xee, 0x38, 0x02, 0xbd, 0x06, 0xc2, 0xc9, 0x2c, 0x6c, 0xe3, 0x81, 0x47, + 0x41, 0xc9, 0xf5, 0x35, 0x81, 0xe1, 0x5d, 0x3f, 0x73, 0x1b, 0xb9, 0x07, + 0x0b, 0xc2, 0xfd, 0x6b, 0xaa, 0xea, 0x68, 0x01, 0x54, 0x54, 0x80, 0x53, + 0x40, 0xa9, 0x00, 0xa0, 0x05, 0x14, 0xf1, 0x4d, 0x14, 0xf1, 0x40, 0x0a, + 0x29, 0xc2, 0x90, 0x52, 0xd0, 0x03, 0xc5, 0x38, 0x53, 0x05, 0x3c, 0x50, + 0x03, 0xc5, 0x3c, 0x53, 0x01, 0xa7, 0x8a, 0x00, 0x70, 0xa7, 0x01, 0x4d, + 0x06, 0x9c, 0x28, 0x01, 0x45, 0x38, 0x52, 0x0a, 0x5e, 0xf4, 0x00, 0xb8, + 0xa1, 0x87, 0xca, 0x7e, 0x94, 0x66, 0x86, 0xfb, 0xa7, 0xe9, 0x40, 0x08, + 0xbf, 0x74, 0x7d, 0x29, 0xd8, 0xa4, 0x5f, 0xba, 0x3e, 0x94, 0xb4, 0x00, + 0x51, 0x45, 0x14, 0x00, 0x94, 0x94, 0xb4, 0x50, 0x03, 0x69, 0xa6, 0x9c, + 0x69, 0x28, 0x01, 0xb4, 0x86, 0x9c, 0x69, 0xa6, 0x80, 0x1a, 0x45, 0x30, + 0x8a, 0x90, 0xd3, 0x08, 0xa0, 0x08, 0xc8, 0xa6, 0x11, 0x52, 0x91, 0x4c, + 0x22, 0x80, 0x28, 0xdf, 0x5a, 0xf9, 0xf1, 0xee, 0x4f, 0xbe, 0xbf, 0xad, + 0x73, 0xec, 0xdb, 0x5c, 0x82, 0x30, 0x73, 0x5d, 0x59, 0xac, 0x8d, 0x52, + 0xc7, 0x70, 0x33, 0xc4, 0xbf, 0x30, 0xfb, 0xc3, 0xd6, 0x80, 0x33, 0x43, + 0x02, 0x31, 0xd6, 0x94, 0x91, 0xe9, 0x55, 0x83, 0x60, 0xd4, 0x82, 0x4e, + 0x3a, 0xd0, 0x04, 0x84, 0xa9, 0xa3, 0x03, 0xb5, 0x47, 0xe6, 0x66, 0x90, + 0xb8, 0xa0, 0x09, 0xb1, 0x4d, 0x20, 0x0e, 0xb8, 0xa8, 0xb7, 0x8f, 0x53, + 0x4b, 0x86, 0x6e, 0x99, 0xe6, 0x80, 0x1d, 0xb8, 0x54, 0x6d, 0x22, 0xa9, + 0xf5, 0x3d, 0x85, 0x0d, 0x6f, 0x29, 0x3c, 0xc8, 0xa8, 0xbd, 0xfd, 0x69, + 0x19, 0x22, 0xb7, 0x89, 0x9c, 0x6e, 0x90, 0x81, 0x9f, 0xad, 0x00, 0x29, + 0x45, 0x66, 0x56, 0x94, 0x8c, 0xf6, 0x1d, 0x85, 0x53, 0x7b, 0x61, 0x3d, + 0xe6, 0xf7, 0x54, 0xf2, 0x93, 0x81, 0x93, 0xd7, 0xde, 0xb3, 0xa7, 0xf1, + 0x14, 0xd8, 0x68, 0x57, 0x4e, 0x95, 0x5b, 0x1d, 0xc1, 0xcd, 0x67, 0xff, + 0x00, 0x69, 0x5e, 0x13, 0xcd, 0x94, 0xa4, 0x77, 0xf9, 0x4d, 0x00, 0x74, + 0xd2, 0xda, 0x69, 0x67, 0xaf, 0x27, 0xd8, 0xe2, 0xab, 0xcd, 0x0d, 0xa8, + 0x8f, 0x10, 0xba, 0x44, 0x3e, 0xb9, 0x26, 0xb1, 0x86, 0xa5, 0x36, 0xdc, + 0x0d, 0x32, 0x53, 0xf8, 0x55, 0x69, 0x6e, 0x2e, 0x24, 0xe4, 0x69, 0xd2, + 0x03, 0xeb, 0x9a, 0x00, 0x9b, 0x5a, 0xd4, 0x2e, 0x97, 0x62, 0xe4, 0x91, + 0xb7, 0x86, 0xae, 0x7b, 0x74, 0x8c, 0xc5, 0x89, 0xc9, 0xf7, 0xab, 0xb7, + 0x5a, 0xa5, 0xc4, 0xc1, 0xa1, 0x95, 0x15, 0x40, 0xe3, 0x07, 0xad, 0x54, + 0x52, 0x28, 0x02, 0x7b, 0x38, 0x9a, 0xe6, 0xe1, 0x21, 0x2e, 0xa8, 0x5b, + 0xf8, 0x9b, 0xa5, 0x59, 0x8e, 0x79, 0x34, 0xeb, 0xd2, 0x8e, 0xc7, 0xe4, + 0x38, 0x60, 0xad, 0xc1, 0xaa, 0x39, 0x02, 0xae, 0xe9, 0x76, 0x10, 0x6a, + 0x13, 0x95, 0x9a, 0xe7, 0xcb, 0x3d, 0xb3, 0xd4, 0xd0, 0x07, 0x59, 0x6d, + 0xa9, 0xc5, 0x77, 0x6e, 0x05, 0xba, 0x90, 0xa3, 0xa8, 0xef, 0x5a, 0x5a, + 0x2d, 0xab, 0xdd, 0xea, 0x88, 0x19, 0x0f, 0x96, 0xbf, 0x31, 0x26, 0xb1, + 0xed, 0x3c, 0x3e, 0xf6, 0x8c, 0x5e, 0xda, 0x6d, 0xe0, 0x8e, 0xc6, 0xbb, + 0x4f, 0x0c, 0xd9, 0xbd, 0xbc, 0x0f, 0x2c, 0xa4, 0x96, 0x63, 0x81, 0x91, + 0x40, 0x1d, 0x55, 0xbe, 0x03, 0x01, 0xd8, 0x56, 0xfe, 0x9e, 0x32, 0x8e, + 0x7d, 0x05, 0x73, 0xf6, 0xdb, 0x98, 0x8c, 0x02, 0x6b, 0xa7, 0xd3, 0xa3, + 0x22, 0xcd, 0x8b, 0x0c, 0x1c, 0xd0, 0x05, 0x19, 0x3f, 0xd6, 0x9f, 0x7a, + 0xa4, 0xc9, 0xf3, 0x1f, 0xad, 0x69, 0x48, 0xbf, 0x39, 0xaa, 0x6e, 0x31, + 0x2b, 0x0a, 0x00, 0xd0, 0xd2, 0x23, 0xc9, 0x1f, 0x5a, 0x7f, 0x89, 0x1b, + 0x06, 0x28, 0xbd, 0xb3, 0x52, 0xe8, 0x83, 0x2d, 0xf8, 0xd4, 0x1e, 0x22, + 0x04, 0xdf, 0x28, 0xf4, 0x5a, 0x00, 0xc0, 0x23, 0xe6, 0x15, 0xa5, 0x0a, + 0xed, 0x92, 0x1f, 0x46, 0xaa, 0xeb, 0x19, 0x50, 0x49, 0x15, 0x62, 0x36, + 0xca, 0xab, 0x1f, 0xe0, 0xe9, 0x40, 0x1a, 0xf6, 0x49, 0x8d, 0x40, 0x0e, + 0xdb, 0x48, 0xad, 0x5b, 0x75, 0xc3, 0xe7, 0xd7, 0x8a, 0xcf, 0xb3, 0xc1, + 0x99, 0x65, 0x1d, 0xc1, 0xcf, 0xe5, 0x5a, 0xb0, 0xae, 0x06, 0x68, 0x02, + 0xd2, 0xf5, 0x15, 0x3a, 0xd4, 0x51, 0x8e, 0x86, 0xa6, 0x14, 0x00, 0x8f, + 0xf7, 0x4d, 0x57, 0xea, 0xca, 0x2a, 0x79, 0x3e, 0xed, 0x43, 0x10, 0xcb, + 0x93, 0xe9, 0x40, 0x13, 0xc5, 0xdc, 0x7b, 0xd4, 0x95, 0x12, 0x71, 0x23, + 0x0a, 0x96, 0x80, 0x0a, 0x5a, 0x4a, 0x5a, 0x00, 0x29, 0x4f, 0x4a, 0x4a, + 0x5e, 0xd4, 0x00, 0x54, 0x17, 0x33, 0x08, 0x61, 0x67, 0x27, 0xa0, 0xa9, + 0x49, 0xc0, 0xac, 0x0d, 0x72, 0xf7, 0x11, 0x18, 0x90, 0xf2, 0x68, 0x03, + 0x06, 0xea, 0xf5, 0xa4, 0x9a, 0x46, 0xcd, 0x62, 0xca, 0x8f, 0x71, 0x27, + 0x02, 0xa7, 0xb8, 0xbb, 0xb5, 0xb7, 0x07, 0xce, 0x99, 0x73, 0xfd, 0xd0, + 0x79, 0xac, 0x3b, 0xef, 0x10, 0x0d, 0xa6, 0x38, 0x01, 0x45, 0xff, 0x00, + 0x64, 0x64, 0x9a, 0x00, 0xb1, 0x7d, 0x77, 0x69, 0xa4, 0xc2, 0x59, 0xd8, + 0x3c, 0xbd, 0x87, 0xbd, 0x79, 0x3e, 0xb9, 0xa9, 0x5d, 0x5e, 0x78, 0x9e, + 0x09, 0x65, 0x04, 0x63, 0xee, 0xa9, 0xf4, 0x26, 0xbb, 0xbd, 0x62, 0x6b, + 0x86, 0xd1, 0x2d, 0x12, 0x38, 0x7f, 0x7b, 0x2b, 0xb4, 0xa4, 0x91, 0xc8, + 0x5e, 0x83, 0xf9, 0x57, 0x13, 0x73, 0xa2, 0x6a, 0x77, 0x7a, 0xa4, 0x57, + 0x4c, 0x7e, 0xe6, 0x31, 0x40, 0x17, 0xc9, 0x95, 0xbf, 0xbd, 0x4a, 0x22, + 0x90, 0x82, 0x08, 0x38, 0x3d, 0x6a, 0xfc, 0x56, 0x37, 0x64, 0x0d, 0xe7, + 0x1f, 0x85, 0x58, 0x5b, 0x19, 0x3b, 0x93, 0x40, 0x18, 0xeb, 0x6e, 0xe7, + 0x23, 0x1d, 0x2a, 0x41, 0x6a, 0xdd, 0xc5, 0x6a, 0x7d, 0x85, 0xc3, 0x6e, + 0xdc, 0x7d, 0xe9, 0x7e, 0xca, 0xde, 0xf4, 0x01, 0x97, 0xf6, 0x46, 0xf4, + 0xa3, 0xec, 0xb5, 0xa7, 0xf6, 0x66, 0xf7, 0xa4, 0x36, 0xc7, 0xde, 0x80, + 0x33, 0x0d, 0xaf, 0xd2, 0x90, 0xdb, 0x8a, 0xd2, 0xfb, 0x31, 0xf4, 0xa4, + 0xfb, 0x31, 0xf4, 0xa0, 0x0c, 0xdf, 0x21, 0x45, 0x57, 0x9b, 0x4f, 0x82, + 0x51, 0xf3, 0x27, 0x3e, 0xa2, 0xb6, 0x4d, 0xb1, 0xf4, 0xaa, 0x1a, 0x88, + 0x74, 0x54, 0x82, 0x21, 0xfb, 0xe9, 0x4e, 0xd5, 0xf6, 0x1d, 0xcd, 0x00, + 0x73, 0x57, 0x76, 0xb0, 0xc1, 0x21, 0x55, 0x9d, 0x09, 0x1f, 0xc2, 0x4f, + 0x35, 0x5e, 0x2b, 0x56, 0x9e, 0x27, 0x92, 0x36, 0x52, 0x13, 0xa8, 0xdc, + 0x33, 0x49, 0xe2, 0x3b, 0x41, 0x69, 0x7a, 0x88, 0x3a, 0xec, 0x19, 0x3e, + 0xb5, 0x86, 0x09, 0x0c, 0x48, 0x24, 0x50, 0x07, 0x69, 0xe1, 0x5b, 0xa9, + 0x6c, 0x75, 0xdb, 0x69, 0x51, 0x0b, 0x09, 0x0e, 0xcf, 0xae, 0x6b, 0xda, + 0xa3, 0x50, 0x57, 0x77, 0x4a, 0xf9, 0xff, 0x00, 0xc2, 0xe9, 0x3d, 0xd5, + 0xdb, 0x34, 0x73, 0x95, 0x6b, 0x7c, 0x3c, 0x60, 0xf4, 0xcd, 0x7a, 0x66, + 0x8b, 0xe3, 0x98, 0x6e, 0xae, 0x5a, 0xc6, 0xf3, 0x11, 0xdc, 0xa7, 0x04, + 0x83, 0xc3, 0x50, 0x07, 0x5b, 0x72, 0xf9, 0x1b, 0x47, 0xe3, 0x59, 0x93, + 0xb6, 0x09, 0xab, 0x81, 0xd6, 0x40, 0x5c, 0x1c, 0x8c, 0x56, 0x7c, 0xa7, + 0x74, 0xb8, 0xa0, 0x0d, 0x2b, 0x00, 0x56, 0x12, 0x7d, 0x6a, 0x46, 0x6c, + 0x13, 0x44, 0x0a, 0x23, 0x80, 0x67, 0xd2, 0x98, 0xcc, 0x08, 0xeb, 0x40, + 0x08, 0xed, 0xc8, 0x14, 0xe8, 0xd7, 0x68, 0xc9, 0xeb, 0x51, 0x29, 0xdc, + 0xdc, 0x52, 0xc8, 0xf8, 0xc0, 0x14, 0x01, 0x15, 0xcc, 0x99, 0x6c, 0x66, + 0x9b, 0x1b, 0x54, 0x4e, 0x72, 0xf9, 0xf4, 0xa7, 0x28, 0xe2, 0x80, 0x27, + 0x4f, 0x99, 0xf3, 0xd8, 0x53, 0xf3, 0x96, 0x27, 0xd2, 0x91, 0x57, 0x6a, + 0x0f, 0x53, 0x4d, 0x77, 0xda, 0x36, 0x28, 0xf9, 0x8d, 0x00, 0x56, 0x98, + 0x97, 0x93, 0x8e, 0xb4, 0x8b, 0x1e, 0xe3, 0xb4, 0x7f, 0xc0, 0x8d, 0x49, + 0xb0, 0x83, 0xb5, 0x4e, 0x5c, 0xf5, 0x3e, 0x94, 0x39, 0x58, 0xd3, 0x6a, + 0xfe, 0x26, 0x80, 0x21, 0x95, 0xc0, 0x3f, 0xec, 0xaf, 0x41, 0x51, 0x48, + 0xf9, 0x50, 0x7d, 0x45, 0x46, 0xcc, 0x65, 0x7e, 0x38, 0x51, 0x52, 0xca, + 0x14, 0x63, 0xd7, 0x14, 0x01, 0x06, 0x3b, 0x9e, 0x28, 0x38, 0x34, 0x12, + 0x4d, 0x3e, 0x38, 0x59, 0xcf, 0x4a, 0x00, 0x67, 0xcc, 0xe7, 0x0b, 0xd2, + 0xac, 0x47, 0x06, 0xd1, 0xcd, 0x4c, 0xb1, 0x2c, 0x4b, 0x55, 0xee, 0x2e, + 0x95, 0x17, 0xad, 0x00, 0x3e, 0x49, 0x96, 0x24, 0x38, 0x20, 0x7b, 0xd6, + 0x5c, 0x8e, 0xf7, 0x6f, 0xb5, 0x7e, 0xe6, 0x79, 0x3e, 0xb4, 0xed, 0x92, + 0x5d, 0xb7, 0x39, 0x54, 0xf4, 0xab, 0xb0, 0xc0, 0x10, 0x60, 0x0c, 0x50, + 0x02, 0x5b, 0x5b, 0x88, 0xd4, 0x62, 0x96, 0xe6, 0x70, 0x83, 0x6a, 0xd3, + 0xa7, 0x98, 0x44, 0x98, 0x1d, 0x6a, 0xb4, 0x51, 0x99, 0x1f, 0xcc, 0x7f, + 0xc0, 0x50, 0x04, 0xf1, 0xe4, 0xa8, 0xcd, 0x45, 0x2b, 0x0e, 0x7d, 0x05, + 0x4a, 0xed, 0xb1, 0x70, 0x3a, 0x9a, 0xa5, 0x2b, 0x6e, 0x6d, 0xa3, 0xf1, + 0xa0, 0x07, 0x44, 0xbb, 0x9f, 0x75, 0x53, 0xd5, 0xd8, 0xf9, 0x71, 0xc4, + 0x3a, 0xb1, 0xad, 0x18, 0x93, 0x6a, 0xe6, 0xb3, 0x65, 0x6f, 0x3f, 0x58, + 0x8e, 0x3e, 0xc9, 0xc9, 0xa0, 0x0d, 0xdb, 0x08, 0xbc, 0xb8, 0xa3, 0x41, + 0xfc, 0x2b, 0x56, 0x2f, 0xdb, 0x65, 0x99, 0x1d, 0xd8, 0xe2, 0x8b, 0x55, + 0xca, 0x93, 0x55, 0x35, 0x19, 0x77, 0xcc, 0x90, 0x8e, 0xdc, 0x9a, 0x00, + 0xe3, 0x7c, 0x79, 0x21, 0x4d, 0x2a, 0x20, 0x0f, 0xf1, 0x0a, 0xf3, 0xbf, + 0x2b, 0x23, 0xe6, 0x24, 0x9a, 0xf4, 0x3f, 0x1a, 0xa3, 0xce, 0xb0, 0x42, + 0x80, 0x31, 0xdd, 0x9c, 0x13, 0x8a, 0xe5, 0x4e, 0x8d, 0x7e, 0x06, 0x56, + 0x05, 0x6f, 0xf7, 0x58, 0x1a, 0x00, 0xc6, 0xf2, 0x54, 0xf6, 0xa9, 0x96, + 0x20, 0x9c, 0x28, 0xc0, 0xab, 0xad, 0x61, 0x7c, 0x9f, 0x7a, 0xd8, 0x8f, + 0xc0, 0xd2, 0x45, 0x0b, 0x86, 0x2b, 0x36, 0x17, 0x8e, 0x38, 0xea, 0x7d, + 0x28, 0x02, 0x05, 0x4a, 0x19, 0x0a, 0xfc, 0xc3, 0xb7, 0x5a, 0xbe, 0xb1, + 0x85, 0x04, 0x14, 0x04, 0xfb, 0xf6, 0xa8, 0xcc, 0x39, 0xa0, 0x08, 0x95, + 0x77, 0x00, 0x47, 0x4a, 0x9e, 0x18, 0x1a, 0x59, 0x92, 0x35, 0x19, 0x2c, + 0x70, 0x29, 0xb1, 0xc0, 0x63, 0x1b, 0x7a, 0xd7, 0x59, 0xa1, 0x68, 0xfe, + 0x52, 0xad, 0xd4, 0xeb, 0xf3, 0x9f, 0xba, 0xa7, 0xb5, 0x00, 0x6c, 0xd9, + 0x5b, 0xad, 0xa5, 0x9c, 0x70, 0x28, 0xfb, 0xa3, 0x9f, 0xad, 0x5a, 0x51, + 0x4d, 0x55, 0xa9, 0x00, 0xa0, 0x07, 0x01, 0x4f, 0x14, 0x80, 0x53, 0x80, + 0xa0, 0x05, 0x14, 0xe1, 0x48, 0x29, 0xd4, 0x00, 0xa2, 0x94, 0x52, 0x0a, + 0x75, 0x00, 0x28, 0xa7, 0x8a, 0x68, 0xa7, 0x8a, 0x00, 0x70, 0xa7, 0x8a, + 0x60, 0xa7, 0x8a, 0x00, 0x70, 0xa5, 0x14, 0x82, 0x9d, 0x40, 0x0a, 0x29, + 0x69, 0x05, 0x3a, 0x80, 0x01, 0x43, 0x7d, 0xd3, 0xf4, 0xa2, 0x86, 0xfb, + 0xa7, 0xe9, 0x40, 0x0a, 0xbf, 0x74, 0x7d, 0x29, 0x69, 0x17, 0xee, 0x8f, + 0xa5, 0x2d, 0x00, 0x14, 0x52, 0x62, 0x96, 0x80, 0x12, 0x92, 0x9d, 0x49, + 0x40, 0x09, 0x4d, 0x22, 0x9f, 0x4d, 0x34, 0x00, 0xda, 0x42, 0x29, 0xd4, + 0x94, 0x00, 0xdc, 0x53, 0x48, 0xa7, 0x9a, 0x69, 0xa0, 0x06, 0x11, 0x4c, + 0x22, 0xa4, 0x34, 0xd2, 0x28, 0x02, 0x22, 0x29, 0x8c, 0xb9, 0xeb, 0x53, + 0x11, 0x4d, 0x22, 0x80, 0x31, 0x6f, 0xb4, 0x48, 0xee, 0x09, 0x92, 0x26, + 0x28, 0xfe, 0x80, 0xf0, 0x6b, 0x06, 0x6b, 0x23, 0x0b, 0x94, 0x94, 0x30, + 0x23, 0xd4, 0xd7, 0x6d, 0x8a, 0xaf, 0x73, 0x6d, 0x15, 0xca, 0x6d, 0x91, + 0x73, 0xef, 0xe9, 0x40, 0x1c, 0x60, 0x81, 0x07, 0x76, 0xfc, 0xe9, 0xd1, + 0xc4, 0xab, 0x2e, 0x58, 0xb1, 0x4c, 0x7a, 0xf7, 0xad, 0x1b, 0xcd, 0x32, + 0x4b, 0x66, 0x25, 0x46, 0xe4, 0xec, 0x45, 0x50, 0x65, 0x61, 0xda, 0x80, + 0x24, 0x69, 0x70, 0x3f, 0x76, 0xa1, 0x4f, 0xaf, 0x5a, 0x53, 0x21, 0x78, + 0xa3, 0x64, 0x62, 0x0f, 0x46, 0x04, 0xf5, 0xaa, 0xcd, 0xe6, 0x63, 0xee, + 0xd6, 0x6c, 0xb7, 0x8f, 0x1d, 0xea, 0x26, 0x59, 0x57, 0x1c, 0xad, 0x00, + 0x6d, 0x6e, 0x6e, 0xf4, 0xc7, 0x73, 0xb4, 0xd5, 0x68, 0xe6, 0x66, 0x15, + 0x30, 0xc9, 0xeb, 0x40, 0x19, 0xb6, 0x73, 0xce, 0x93, 0xca, 0x67, 0x47, + 0x73, 0x9c, 0x06, 0x23, 0xb5, 0x68, 0xfd, 0xa8, 0x11, 0xf7, 0x3f, 0x4a, + 0x5d, 0x99, 0xa4, 0xf2, 0x07, 0xf7, 0xa8, 0x01, 0x3c, 0xff, 0x00, 0x45, + 0xa8, 0x64, 0x98, 0xff, 0x00, 0x73, 0x8a, 0xb3, 0xf6, 0x71, 0xfd, 0xea, + 0x69, 0xb7, 0x53, 0xef, 0x40, 0x1c, 0x86, 0xad, 0x68, 0x5e, 0x5d, 0xd0, + 0x42, 0x00, 0xea, 0x48, 0xea, 0x6b, 0x21, 0x83, 0xc6, 0x70, 0xca, 0x47, + 0xd6, 0xbb, 0xe9, 0xf4, 0xf0, 0xe3, 0xe5, 0x18, 0xac, 0x9b, 0xad, 0x16, + 0x57, 0xce, 0x39, 0x14, 0x01, 0xcb, 0x86, 0xc9, 0xad, 0xbd, 0x1f, 0x4c, + 0xfe, 0xd0, 0xc2, 0x43, 0xc4, 0xe4, 0xe1, 0x4e, 0x7a, 0x55, 0x56, 0xd1, + 0xe6, 0xde, 0xc0, 0x29, 0xe3, 0xd2, 0xbb, 0xdf, 0x04, 0x78, 0x72, 0x5b, + 0x78, 0x9a, 0xfa, 0x7c, 0x8e, 0xc8, 0x0d, 0x00, 0x6e, 0x68, 0x3e, 0x1b, + 0xb7, 0xb4, 0x08, 0x97, 0x57, 0x12, 0x4f, 0x2e, 0x39, 0x39, 0xc0, 0xcd, + 0x76, 0x10, 0x5a, 0xdb, 0xc6, 0xa1, 0x55, 0x06, 0x05, 0x63, 0x22, 0xf9, + 0x4e, 0x2a, 0xf8, 0xb8, 0x23, 0x00, 0x1a, 0x00, 0xd4, 0x80, 0x6f, 0x7e, + 0x30, 0xa8, 0x3f, 0x5a, 0xde, 0xb3, 0x99, 0x4c, 0x32, 0x45, 0xdc, 0x0c, + 0xd7, 0x3b, 0x67, 0x30, 0x6e, 0x3d, 0x39, 0xab, 0x56, 0x97, 0x7b, 0x2e, + 0xcf, 0x52, 0x18, 0x60, 0xe2, 0x80, 0x2f, 0xb8, 0xfd, 0x6b, 0x3e, 0x6c, + 0xad, 0xc3, 0x55, 0xc7, 0x79, 0x0b, 0xae, 0xc4, 0x27, 0xd8, 0xd5, 0x3b, + 0x8d, 0xe6, 0xe0, 0xef, 0x5d, 0xad, 0xe9, 0x40, 0x1b, 0x3a, 0x2b, 0xaa, + 0xc8, 0x03, 0x10, 0x33, 0xeb, 0x4b, 0xe2, 0x05, 0x09, 0x73, 0x14, 0xb8, + 0xe0, 0xae, 0x2a, 0x0b, 0x4b, 0x48, 0xc8, 0x46, 0x72, 0x79, 0xad, 0x3b, + 0xbd, 0x24, 0xcf, 0x06, 0x16, 0x66, 0x60, 0xa3, 0x2a, 0xad, 0x40, 0x1c, + 0xf6, 0x7c, 0xe1, 0x85, 0xa5, 0x11, 0x91, 0xf2, 0x9e, 0x86, 0x99, 0x24, + 0x4d, 0x03, 0x16, 0x40, 0x43, 0x0e, 0xa2, 0xae, 0x40, 0xe2, 0xe2, 0x20, + 0xe0, 0x73, 0xde, 0x80, 0x34, 0x34, 0xec, 0xab, 0x79, 0x7d, 0x7e, 0x5c, + 0xd6, 0xc4, 0x43, 0x00, 0x0a, 0xcb, 0xd3, 0x01, 0x37, 0x2e, 0x4f, 0xf7, + 0x71, 0x5a, 0xd1, 0xaf, 0x39, 0xa0, 0x0b, 0x29, 0xd2, 0xa4, 0x15, 0x12, + 0x9c, 0x28, 0xf7, 0xa9, 0x57, 0xa5, 0x00, 0x32, 0x63, 0x81, 0x8a, 0x23, + 0x5d, 0xab, 0x41, 0xf9, 0x9f, 0x3d, 0x85, 0x48, 0x06, 0x05, 0x00, 0x26, + 0x30, 0x49, 0xa9, 0x01, 0xa6, 0x53, 0x85, 0x00, 0x3a, 0x8a, 0x4c, 0xd1, + 0xbb, 0x14, 0x00, 0xa7, 0xa5, 0x21, 0x23, 0x14, 0x9b, 0xc5, 0x46, 0x4e, + 0x45, 0x00, 0x53, 0xd4, 0x66, 0xb8, 0x31, 0x94, 0xb7, 0xf9, 0x4f, 0xf7, + 0xab, 0x92, 0xba, 0xd1, 0xee, 0xae, 0x5c, 0xb4, 0xb3, 0x48, 0xd9, 0xf7, + 0xae, 0xd4, 0xa8, 0x34, 0xc3, 0x18, 0xf4, 0xa0, 0x0e, 0x04, 0xf8, 0x59, + 0x33, 0x96, 0x4c, 0x9f, 0x7a, 0x3f, 0xe1, 0x1c, 0x8d, 0x7f, 0xe5, 0x98, + 0xfc, 0xab, 0xbb, 0x68, 0x97, 0xd0, 0x54, 0x4d, 0x0a, 0x9e, 0xd4, 0x01, + 0xc1, 0xcb, 0xa0, 0x07, 0x61, 0xbc, 0xb3, 0x05, 0x18, 0x51, 0xe8, 0x2a, + 0x26, 0xd1, 0x11, 0x3a, 0x25, 0x76, 0xf2, 0xdb, 0x2f, 0xa5, 0x53, 0x96, + 0xdc, 0x7a, 0x50, 0x07, 0x1c, 0xfa, 0x58, 0x1f, 0xc3, 0x50, 0x36, 0x9c, + 0x07, 0x6a, 0xea, 0xe4, 0xb6, 0x02, 0xaa, 0x49, 0x00, 0xf4, 0xa0, 0x0e, + 0x65, 0xac, 0xb1, 0xda, 0xa1, 0x6b, 0x4c, 0x76, 0xae, 0x89, 0xed, 0xc7, + 0xa5, 0x57, 0x78, 0x07, 0xa5, 0x00, 0x60, 0xb5, 0xb7, 0xb5, 0x44, 0xd0, + 0x63, 0xb5, 0x6d, 0xbc, 0x03, 0xd2, 0xab, 0xbc, 0x03, 0x3d, 0x28, 0x03, + 0x24, 0xc1, 0xed, 0x51, 0x98, 0x6b, 0x55, 0xe1, 0x38, 0xe0, 0x55, 0x77, + 0x89, 0xbd, 0x28, 0x03, 0x3a, 0x48, 0xf6, 0xa9, 0x3e, 0x95, 0x91, 0x69, + 0x13, 0x4b, 0x73, 0x25, 0xe4, 0xca, 0x43, 0x1f, 0x95, 0x14, 0x8f, 0xba, + 0xb5, 0xd1, 0x34, 0x67, 0xd2, 0xa0, 0x78, 0x77, 0x0e, 0x68, 0x03, 0xca, + 0xfc, 0x51, 0x74, 0x2e, 0x35, 0x89, 0x30, 0x0e, 0x10, 0x6d, 0xac, 0x10, + 0x72, 0x08, 0xaf, 0x60, 0xb9, 0xd0, 0xad, 0x6e, 0x89, 0x32, 0x42, 0xac, + 0x4f, 0x7c, 0x56, 0x6b, 0xf8, 0x33, 0x4e, 0x66, 0xc9, 0x88, 0x8f, 0xa1, + 0xa0, 0x0e, 0x23, 0xc3, 0x52, 0x5d, 0xdb, 0x6a, 0x0b, 0x24, 0x31, 0x96, + 0x89, 0x8e, 0xd7, 0x38, 0xae, 0xbb, 0x41, 0xd3, 0xad, 0xef, 0x3c, 0x4d, + 0x79, 0x1c, 0xd0, 0xe1, 0x5d, 0x3e, 0x46, 0xf7, 0xf5, 0x15, 0xa9, 0x6b, + 0xe1, 0xcb, 0x5b, 0x14, 0x22, 0x15, 0x60, 0x0f, 0x26, 0xad, 0xd8, 0xe9, + 0xe6, 0xdb, 0x51, 0x4b, 0xa0, 0xc7, 0x2b, 0xc6, 0x3d, 0xa8, 0x03, 0x5b, + 0x42, 0xf3, 0x3c, 0xa9, 0xed, 0x26, 0x90, 0xb4, 0xb6, 0xef, 0xb7, 0x77, + 0xa8, 0xed, 0x56, 0xc4, 0x0e, 0x6e, 0x71, 0xd4, 0x0e, 0x6b, 0x32, 0xd2, + 0x64, 0xff, 0x00, 0x84, 0xa2, 0x74, 0x2d, 0xb1, 0x27, 0x8c, 0x37, 0xd4, + 0x8a, 0xe9, 0x5a, 0x4b, 0x78, 0x63, 0x3f, 0x32, 0xd0, 0x02, 0x34, 0x83, + 0xcb, 0xaa, 0xec, 0x49, 0x1b, 0x47, 0x53, 0x55, 0x24, 0xbc, 0x8d, 0x98, + 0x9d, 0xe0, 0x0f, 0xad, 0x3a, 0x3b, 0xb8, 0xf7, 0x7c, 0xac, 0x09, 0xa0, + 0x0b, 0x67, 0xf7, 0x48, 0x06, 0x79, 0xa8, 0x1e, 0x42, 0x6a, 0x16, 0xbb, + 0x43, 0x26, 0x09, 0x25, 0xbe, 0x95, 0x2a, 0xa4, 0xb2, 0x72, 0x17, 0x8f, + 0x53, 0x40, 0x02, 0x26, 0x7a, 0x9a, 0xb3, 0x1c, 0x60, 0x73, 0x8e, 0x29, + 0xab, 0x1a, 0xc7, 0xcc, 0x8e, 0x33, 0xe8, 0x28, 0x79, 0x87, 0xa8, 0x0b, + 0x40, 0x0f, 0x66, 0xf4, 0xa8, 0x4b, 0x72, 0x42, 0xf5, 0x3d, 0x4d, 0x43, + 0x25, 0xdc, 0x63, 0x81, 0x93, 0xf4, 0x15, 0x1f, 0x9a, 0xcf, 0xf7, 0x54, + 0xd0, 0x04, 0xe6, 0x40, 0x8a, 0x42, 0xfe, 0x26, 0xa9, 0xc8, 0xcd, 0x23, + 0x6d, 0x5f, 0xbb, 0x53, 0x88, 0x25, 0x93, 0xaf, 0x02, 0xa6, 0x4b, 0x5d, + 0xa3, 0x9a, 0x00, 0xa8, 0x91, 0xf2, 0x00, 0xa9, 0x65, 0x84, 0x99, 0x30, + 0x39, 0xc5, 0x5b, 0xf2, 0xd2, 0x1c, 0x31, 0xeb, 0x51, 0x3d, 0xcc, 0x6a, + 0x78, 0x3c, 0x9f, 0x4a, 0x00, 0x62, 0x5a, 0x85, 0x19, 0x6a, 0x57, 0x99, + 0x22, 0x5e, 0x30, 0x29, 0x18, 0x5c, 0x4d, 0xf7, 0x17, 0x03, 0xd4, 0xd3, + 0x97, 0x4f, 0x53, 0xcc, 0xa7, 0x71, 0xf4, 0xa0, 0x0a, 0x0f, 0x34, 0x93, + 0x1c, 0x46, 0x09, 0xf7, 0xed, 0x44, 0x76, 0x44, 0xb6, 0xe9, 0x4e, 0xe6, + 0xad, 0x4f, 0x25, 0x23, 0x18, 0x51, 0x8a, 0x69, 0x00, 0x72, 0x68, 0x02, + 0xba, 0xc2, 0x00, 0xe9, 0x8a, 0x8e, 0x69, 0x84, 0x63, 0x02, 0x9f, 0x2c, + 0xa4, 0xfc, 0xa8, 0x29, 0x91, 0x5b, 0x16, 0x6d, 0xcf, 0xc9, 0xa0, 0x0a, + 0xe9, 0x0b, 0x4a, 0xdb, 0x9c, 0x1c, 0x76, 0x15, 0x69, 0x63, 0xc5, 0x59, + 0x09, 0xb4, 0x60, 0x0a, 0x86, 0x57, 0x08, 0x31, 0xde, 0x80, 0x29, 0x5c, + 0x1c, 0x13, 0x50, 0xc7, 0x19, 0xce, 0x4d, 0x5b, 0x10, 0x99, 0x0e, 0xea, + 0x7f, 0x92, 0x11, 0x77, 0x31, 0x00, 0x0a, 0x00, 0xae, 0xe4, 0x47, 0x13, + 0x31, 0x38, 0x00, 0x66, 0xb1, 0xb4, 0x80, 0xd7, 0x37, 0x93, 0x5c, 0x63, + 0x82, 0xd8, 0x15, 0x3e, 0xa9, 0x76, 0xd7, 0x2b, 0xf6, 0x5b, 0x34, 0x69, + 0x09, 0xe1, 0x8a, 0x8e, 0x2a, 0xf6, 0x9f, 0x6a, 0xba, 0x6d, 0xaa, 0x99, + 0xb0, 0x08, 0x19, 0xdb, 0xdf, 0x34, 0x01, 0xaa, 0xd2, 0x2d, 0xa5, 0xae, + 0xf6, 0xf4, 0xe3, 0xde, 0xb2, 0x63, 0x63, 0x24, 0x86, 0x47, 0xea, 0x4e, + 0x69, 0xb3, 0x4f, 0x25, 0xec, 0x9b, 0x9b, 0x84, 0x1d, 0x05, 0x32, 0xea, + 0x75, 0xb5, 0xb6, 0x77, 0x27, 0x01, 0x54, 0x9a, 0x00, 0xe3, 0x7c, 0x4d, + 0x7a, 0xb7, 0x3a, 0x8b, 0x22, 0x9f, 0x96, 0x3e, 0x3f, 0x1a, 0xcf, 0xb1, + 0x97, 0x64, 0xde, 0x63, 0x48, 0xdb, 0x53, 0x9d, 0xb9, 0xeb, 0x55, 0x6e, + 0x04, 0xb3, 0xcb, 0x23, 0xe7, 0x3b, 0xd8, 0xb5, 0x25, 0xa2, 0xcd, 0x1b, + 0xb0, 0x68, 0xf7, 0x02, 0x38, 0x3e, 0x94, 0x01, 0xa0, 0x35, 0x5b, 0x80, + 0xe4, 0x89, 0x0e, 0x09, 0xe1, 0x4f, 0x6a, 0x4b, 0x9b, 0x97, 0xbc, 0x8c, + 0x2b, 0x85, 0x04, 0x72, 0x0a, 0x8c, 0x1a, 0x62, 0x59, 0x93, 0xcb, 0x75, + 0xa9, 0x3e, 0xce, 0x40, 0xeb, 0x40, 0x14, 0xe2, 0x71, 0xb8, 0xc2, 0xc7, + 0xe7, 0x1d, 0xc9, 0xe5, 0xaa, 0xc2, 0xa0, 0xee, 0x29, 0x4e, 0x98, 0x67, + 0x99, 0x1f, 0xe6, 0xdc, 0xa7, 0x8c, 0x0a, 0xdf, 0xd3, 0xf4, 0x7f, 0x98, + 0x3c, 0xe3, 0x81, 0xd1, 0x68, 0x02, 0xbe, 0x91, 0xa5, 0x89, 0xa4, 0x13, + 0xca, 0xbf, 0x22, 0xf2, 0x01, 0x1d, 0x6b, 0xa6, 0x02, 0x91, 0x10, 0x28, + 0x00, 0x0c, 0x01, 0xda, 0xa4, 0x51, 0x40, 0x0a, 0x05, 0x3c, 0x0a, 0x00, + 0xa7, 0x81, 0x40, 0x00, 0x14, 0xe0, 0x28, 0x02, 0x9c, 0x05, 0x00, 0x02, + 0x96, 0x8c, 0x52, 0xd0, 0x00, 0x29, 0x68, 0x02, 0x9d, 0x8a, 0x00, 0x29, + 0xc2, 0x90, 0x0a, 0x70, 0xa0, 0x07, 0x0a, 0x78, 0xa6, 0x0a, 0x78, 0xa0, + 0x07, 0x0a, 0x70, 0xa6, 0x8a, 0x51, 0x40, 0x0e, 0xa5, 0xa4, 0xa5, 0x14, + 0x00, 0xa2, 0x86, 0xfb, 0xa7, 0xe9, 0x45, 0x0d, 0xf7, 0x4f, 0xd2, 0x80, + 0x15, 0x7e, 0xe8, 0xfa, 0x52, 0xe6, 0x9a, 0xbf, 0x74, 0x7d, 0x29, 0x68, + 0x01, 0x68, 0xa4, 0xa5, 0xa0, 0x02, 0x92, 0x8a, 0x28, 0x00, 0xa4, 0x34, + 0x51, 0x40, 0x0d, 0xa4, 0x34, 0xea, 0x4a, 0x00, 0x6d, 0x21, 0x14, 0xea, + 0x4a, 0x00, 0x61, 0x14, 0x84, 0x53, 0xc8, 0xa4, 0x34, 0x01, 0x19, 0x14, + 0xd2, 0x2a, 0x42, 0x29, 0xa4, 0x50, 0x04, 0x64, 0x53, 0x71, 0x52, 0x91, + 0x4d, 0xc5, 0x00, 0x44, 0x50, 0x1e, 0x08, 0xa8, 0x9a, 0xce, 0xdd, 0xfe, + 0xf4, 0x4b, 0xf9, 0x55, 0x92, 0x29, 0xa4, 0x50, 0x05, 0x07, 0xd1, 0xed, + 0x5f, 0xa0, 0x2b, 0xf4, 0x35, 0x4a, 0x6f, 0x0d, 0xc5, 0x23, 0x6e, 0x57, + 0x19, 0xf7, 0x15, 0xb7, 0x45, 0x00, 0x73, 0x8d, 0xe1, 0xf9, 0xe3, 0xfb, + 0x9b, 0x5a, 0xa0, 0x7d, 0x2e, 0xe9, 0x3f, 0xe5, 0x91, 0x3f, 0x4a, 0xea, + 0xf3, 0x46, 0xea, 0x00, 0xe3, 0x9a, 0xd6, 0x64, 0xeb, 0x1b, 0x0f, 0xc2, + 0x98, 0x51, 0x97, 0xa8, 0x22, 0xbb, 0x4c, 0x83, 0xd4, 0x0a, 0x63, 0x45, + 0x0b, 0x75, 0x8d, 0x4f, 0xe1, 0x40, 0x1c, 0x67, 0x22, 0x8a, 0xeb, 0xda, + 0xca, 0xd5, 0xba, 0xc2, 0xbf, 0x95, 0x44, 0xda, 0x65, 0x99, 0xff, 0x00, + 0x96, 0x42, 0x80, 0x39, 0x6c, 0x9a, 0x50, 0x73, 0x5d, 0x29, 0xd2, 0x2c, + 0xcf, 0xf0, 0x11, 0xf8, 0xd3, 0x7f, 0xb1, 0xed, 0x47, 0x40, 0xdf, 0x9d, + 0x00, 0x64, 0xe8, 0x7a, 0x52, 0xdf, 0xdc, 0x39, 0x76, 0x55, 0x8d, 0x4f, + 0xcd, 0xea, 0x6b, 0xad, 0x7d, 0x90, 0xc0, 0x22, 0x8c, 0x80, 0xab, 0xc6, + 0x05, 0x64, 0x26, 0x95, 0x1d, 0xb9, 0x2d, 0x03, 0x32, 0xb1, 0xeb, 0xcf, + 0x5a, 0xae, 0x6d, 0xef, 0x2d, 0xa5, 0xf3, 0x92, 0x46, 0x94, 0xff, 0x00, + 0x75, 0x8f, 0x14, 0x01, 0xb2, 0xb2, 0x6e, 0x18, 0x35, 0x32, 0x06, 0x72, + 0x00, 0xe4, 0xd6, 0x64, 0x37, 0x33, 0x49, 0xfe, 0xb6, 0xd4, 0x29, 0xf5, + 0x06, 0xac, 0xa4, 0xb2, 0xc2, 0xc1, 0xe3, 0x07, 0x8e, 0xc4, 0xd0, 0x06, + 0xdd, 0xac, 0x6e, 0x87, 0x2c, 0x71, 0xda, 0xb4, 0x74, 0xd8, 0xca, 0xdc, + 0x19, 0x19, 0x73, 0x8e, 0xbe, 0xf5, 0x9f, 0x03, 0x3c, 0xc8, 0x8c, 0xf8, + 0x00, 0x8c, 0xe0, 0x75, 0xad, 0x78, 0x5c, 0x79, 0x7b, 0x57, 0x8e, 0xd4, + 0x01, 0xa1, 0x29, 0x40, 0xe8, 0xe9, 0xd7, 0xd2, 0xab, 0xc9, 0x09, 0x9e, + 0xf5, 0xa4, 0x23, 0xe5, 0xe9, 0x4d, 0x83, 0xcc, 0x0d, 0xb8, 0x9e, 0x95, + 0xa0, 0xb7, 0x4a, 0xc0, 0x07, 0x41, 0xc7, 0xa5, 0x00, 0x22, 0x2f, 0x61, + 0x5a, 0xb6, 0xd7, 0x05, 0x54, 0x2b, 0xf6, 0xaa, 0x4b, 0x73, 0x1e, 0x3a, + 0x0a, 0x56, 0xbb, 0x88, 0x8c, 0x6d, 0xc1, 0xf5, 0x14, 0x01, 0x06, 0xb1, + 0x6e, 0xab, 0x38, 0x95, 0x3a, 0x49, 0xc9, 0xfa, 0xd6, 0x4d, 0xb3, 0xfd, + 0x92, 0xf0, 0x2b, 0x7f, 0xab, 0x90, 0xfe, 0x46, 0xb4, 0x26, 0x73, 0x27, + 0x46, 0xcd, 0x56, 0x78, 0x44, 0xcb, 0xb5, 0xf8, 0xc7, 0x39, 0xf4, 0xa0, + 0x0e, 0x8a, 0xca, 0xdd, 0x57, 0xe6, 0x0d, 0xcb, 0x0a, 0xb4, 0x09, 0x07, + 0x9a, 0xc5, 0xb0, 0xbb, 0xf2, 0xdd, 0x54, 0xb6, 0x76, 0xf1, 0x93, 0x5b, + 0x46, 0xe2, 0x17, 0x5c, 0x96, 0x14, 0x00, 0xd4, 0x9b, 0x74, 0x84, 0xf6, + 0x1c, 0x0a, 0xb4, 0x5f, 0x09, 0xd7, 0xad, 0x52, 0xfb, 0x44, 0x03, 0x81, + 0xcf, 0xd2, 0xa2, 0x96, 0xfa, 0x35, 0x5e, 0x48, 0x00, 0x74, 0xc9, 0xa0, + 0x0d, 0x34, 0x3c, 0x54, 0x9b, 0x85, 0x73, 0x13, 0x78, 0x8e, 0x1b, 0x7e, + 0x15, 0xcb, 0xb7, 0xa2, 0xd5, 0x63, 0xae, 0x5e, 0x5d, 0x10, 0x63, 0x8c, + 0xa0, 0xf7, 0xa0, 0x0e, 0xb8, 0xc8, 0xa3, 0xbd, 0x42, 0xf7, 0xd0, 0xa7, + 0x05, 0xc6, 0x7d, 0x05, 0x73, 0x60, 0xdd, 0xdc, 0x7f, 0xae, 0x9c, 0x81, + 0xfd, 0xd5, 0xe2, 0xaf, 0x5b, 0x43, 0x1c, 0x7c, 0x81, 0xcf, 0xa9, 0xa0, + 0x0d, 0x41, 0x74, 0xf2, 0x7d, 0xc5, 0x20, 0x7a, 0xb5, 0x3c, 0x64, 0xf2, + 0xc7, 0x35, 0x5d, 0x5a, 0xa4, 0x0d, 0x40, 0x13, 0x83, 0x46, 0x6a, 0x20, + 0xd4, 0x6e, 0xa0, 0x09, 0x29, 0x09, 0xa6, 0xee, 0xa4, 0x2d, 0x40, 0x01, + 0xa6, 0x1a, 0x0b, 0x54, 0x6c, 0xf4, 0x00, 0xd7, 0xc5, 0x54, 0x90, 0x66, + 0xa6, 0x92, 0x4c, 0x55, 0x59, 0x1c, 0xd0, 0x05, 0x79, 0x06, 0x6a, 0xac, + 0x89, 0xc5, 0x59, 0x77, 0xf7, 0xa8, 0x1b, 0x2e, 0xdb, 0x47, 0x5a, 0x00, + 0xa6, 0xeb, 0x50, 0x3a, 0xd6, 0xa3, 0x58, 0xb6, 0xdf, 0xbe, 0x33, 0x54, + 0xe7, 0xb4, 0x92, 0x35, 0x2c, 0x48, 0xc7, 0xd6, 0x80, 0x33, 0x9d, 0x45, + 0x40, 0xca, 0x2a, 0xcb, 0xad, 0x1f, 0x64, 0x76, 0x50, 0xd9, 0x18, 0x34, + 0x01, 0x9e, 0xe0, 0x01, 0x50, 0xb6, 0x3d, 0x2a, 0xec, 0xf0, 0x18, 0xbb, + 0x83, 0x9a, 0xac, 0xcb, 0x40, 0x15, 0x5b, 0x9e, 0xd5, 0x0b, 0x26, 0x7b, + 0x55, 0xb6, 0x4a, 0x61, 0x5a, 0x00, 0xa8, 0x63, 0xa6, 0xf9, 0x75, 0x68, + 0xad, 0x34, 0xa5, 0x00, 0x57, 0xf2, 0xf3, 0x49, 0xb3, 0x15, 0x63, 0x6d, + 0x1b, 0x68, 0x03, 0x03, 0x51, 0xdd, 0x06, 0xad, 0x63, 0x70, 0x07, 0x1b, + 0x8a, 0x37, 0xe3, 0x5b, 0x39, 0x57, 0x1c, 0x8c, 0xd3, 0xda, 0x14, 0x6c, + 0x16, 0x50, 0x71, 0xea, 0x29, 0xe1, 0x40, 0x1c, 0x0a, 0x00, 0xac, 0x60, + 0x53, 0xfc, 0x02, 0x85, 0xb7, 0x0a, 0xdb, 0x94, 0x60, 0xfa, 0x8a, 0xb5, + 0x8a, 0x42, 0x28, 0x01, 0x63, 0x75, 0xc6, 0x25, 0x40, 0xde, 0xfd, 0xea, + 0xd2, 0x47, 0x1b, 0x0f, 0xdd, 0xc9, 0xf8, 0x13, 0x54, 0xf1, 0x47, 0x34, + 0x01, 0x71, 0xad, 0x54, 0xfd, 0xf5, 0x27, 0xf1, 0xa5, 0x5b, 0x75, 0xe8, + 0xa7, 0x1f, 0x5a, 0xac, 0xb3, 0xca, 0x9d, 0x1c, 0xd4, 0xa2, 0xf9, 0x97, + 0xef, 0x22, 0xb5, 0x00, 0x3d, 0x95, 0xe3, 0xea, 0xa0, 0xfb, 0xe2, 0x9a, + 0x65, 0x90, 0x74, 0x03, 0xf2, 0xa5, 0x17, 0xc8, 0x7e, 0xf4, 0x64, 0x7d, + 0x39, 0xa3, 0xcf, 0xb7, 0x71, 0x8d, 0xe5, 0x7e, 0xa2, 0x80, 0x1a, 0x65, + 0xb9, 0xec, 0x16, 0xa3, 0x77, 0xbb, 0x27, 0xe5, 0x00, 0x55, 0xb5, 0x45, + 0x61, 0xf2, 0x48, 0x08, 0xfa, 0xd3, 0xbc, 0xb6, 0x1f, 0xc4, 0x28, 0x03, + 0x3d, 0xa3, 0x9e, 0x53, 0x99, 0x1c, 0xfe, 0x15, 0x24, 0x50, 0x24, 0x64, + 0x1c, 0x64, 0xfa, 0xd5, 0xb2, 0x84, 0xd3, 0x4c, 0x6d, 0xd9, 0x68, 0x02, + 0x60, 0xca, 0xc8, 0x0a, 0x9a, 0x66, 0xe2, 0x0e, 0x49, 0xa8, 0xc4, 0x52, + 0xfa, 0x81, 0x4e, 0xf2, 0x73, 0xf7, 0x8d, 0x00, 0x35, 0xe4, 0xe3, 0xe5, + 0xe4, 0xd4, 0x05, 0x5d, 0xcf, 0x35, 0x6b, 0x11, 0xaf, 0xf1, 0x0a, 0x8d, + 0xe7, 0x8e, 0x3f, 0xfe, 0xb5, 0x00, 0x35, 0x61, 0x00, 0x74, 0xe6, 0x9c, + 0x76, 0xa0, 0xe4, 0xd4, 0x06, 0xe2, 0x59, 0x3e, 0xe4, 0x64, 0x0f, 0x53, + 0x51, 0x34, 0x6e, 0xed, 0xf3, 0xbb, 0x1f, 0x60, 0x28, 0x01, 0xd3, 0x5d, + 0x8f, 0xba, 0xbc, 0x9f, 0x6a, 0x81, 0x63, 0x92, 0x53, 0x96, 0xe2, 0xa6, + 0x0a, 0x91, 0x0c, 0x88, 0xc0, 0xf7, 0x26, 0xb3, 0xee, 0x75, 0x72, 0xac, + 0x63, 0x85, 0x77, 0x37, 0xb0, 0xe2, 0x80, 0x2f, 0x9b, 0xb8, 0x6d, 0x59, + 0x62, 0x63, 0xf3, 0x37, 0x02, 0xa6, 0x11, 0xab, 0x12, 0x5c, 0xef, 0x07, + 0xb1, 0xe9, 0x5c, 0xb1, 0x37, 0xf2, 0xcd, 0xe6, 0xcb, 0xb0, 0x8e, 0xc0, + 0x76, 0xad, 0x33, 0xa8, 0xbc, 0x70, 0x67, 0x61, 0x2c, 0x07, 0x4a, 0x00, + 0xbf, 0x3c, 0x89, 0x6c, 0x9f, 0x22, 0x01, 0xec, 0xa2, 0xb3, 0x18, 0xc9, + 0x71, 0x26, 0xf9, 0x0f, 0x1d, 0x85, 0x31, 0xb5, 0xd3, 0xb3, 0xfe, 0x3d, + 0x98, 0x93, 0xd4, 0x11, 0x51, 0x0d, 0x52, 0x79, 0x18, 0xed, 0xb3, 0x50, + 0x3b, 0x1c, 0xd0, 0x05, 0xcc, 0xac, 0x6b, 0x96, 0x20, 0x01, 0x5c, 0xbe, + 0xb9, 0xaa, 0x7d, 0xb1, 0xbe, 0xcd, 0x6f, 0x92, 0x83, 0xef, 0x11, 0xde, + 0xb6, 0x25, 0x8a, 0x7b, 0xc1, 0x89, 0xb8, 0x4f, 0xee, 0x8a, 0x74, 0x36, + 0x10, 0xc4, 0x3e, 0x58, 0x94, 0x7e, 0x14, 0x01, 0xc9, 0xc1, 0xa7, 0xcd, + 0x27, 0xdd, 0x89, 0x8f, 0xe1, 0x5a, 0x30, 0xe8, 0xb7, 0x07, 0xaa, 0x85, + 0x1e, 0xf5, 0xd1, 0x84, 0x23, 0x8e, 0x94, 0xbb, 0x0f, 0xad, 0x00, 0x64, + 0x47, 0xa1, 0xa0, 0xe6, 0x49, 0x09, 0xf6, 0x15, 0x69, 0x34, 0xcb, 0x48, + 0xff, 0x00, 0xe5, 0x9e, 0x7e, 0xb5, 0x77, 0x69, 0xa5, 0x0b, 0x40, 0x10, + 0xac, 0x31, 0xa7, 0xdd, 0x40, 0x3e, 0x82, 0xa4, 0x0b, 0x4f, 0xdb, 0x4e, + 0x02, 0x80, 0x1a, 0x05, 0x3c, 0x0a, 0x50, 0xb4, 0xe0, 0x28, 0x01, 0x00, + 0xa7, 0x81, 0x40, 0x14, 0xa0, 0x50, 0x02, 0x81, 0x4a, 0x28, 0x02, 0x97, + 0x14, 0x00, 0x52, 0xd1, 0x4a, 0x28, 0x01, 0x69, 0x68, 0xa5, 0xc5, 0x00, + 0x28, 0x14, 0xb4, 0x94, 0xb4, 0x00, 0xe1, 0x4e, 0x14, 0xd1, 0x4e, 0x14, + 0x00, 0xe1, 0x4e, 0x14, 0xd1, 0x4e, 0x14, 0x00, 0xa2, 0x94, 0x52, 0x52, + 0xd0, 0x02, 0x8a, 0x1b, 0xee, 0x9f, 0xa5, 0x14, 0x37, 0xdd, 0x3f, 0x4a, + 0x00, 0x17, 0xee, 0x8f, 0xa5, 0x2d, 0x22, 0xfd, 0xd1, 0xf4, 0xa5, 0xa0, + 0x05, 0xa2, 0x92, 0x8a, 0x00, 0x5a, 0x4a, 0x28, 0xa0, 0x04, 0xa2, 0x96, + 0x92, 0x80, 0x12, 0x83, 0x45, 0x14, 0x00, 0x94, 0x94, 0xb4, 0x94, 0x00, + 0x94, 0x94, 0xa6, 0x93, 0x14, 0x00, 0xd3, 0x48, 0x69, 0xd4, 0x86, 0x80, + 0x18, 0x69, 0x31, 0x4f, 0xa4, 0xa0, 0x06, 0x11, 0x4d, 0xc5, 0x3c, 0x8a, + 0x4a, 0x00, 0x66, 0x29, 0x31, 0x52, 0x62, 0x93, 0x14, 0x00, 0xcc, 0x51, + 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x33, 0x14, 0x10, 0x29, 0xfb, 0x68, 0xdb, + 0x40, 0x11, 0xd1, 0x52, 0x6d, 0xa3, 0x14, 0x01, 0x1e, 0x0d, 0x28, 0x5f, + 0x5a, 0x7e, 0x29, 0x71, 0x9a, 0x00, 0x68, 0x5c, 0x53, 0x82, 0xfa, 0xd2, + 0x81, 0x4e, 0x02, 0x80, 0x1b, 0xe5, 0x8a, 0x70, 0x8f, 0x34, 0xf0, 0xb4, + 0xf0, 0x28, 0x01, 0xa8, 0xf2, 0xc5, 0xca, 0x31, 0x18, 0xe9, 0x56, 0xa1, + 0xd5, 0xa4, 0x8c, 0xe2, 0x78, 0xce, 0x3d, 0x56, 0xa2, 0x02, 0x9d, 0xb0, + 0x1e, 0xd4, 0x01, 0xaf, 0x06, 0xa3, 0x6f, 0x20, 0xc0, 0x98, 0x03, 0xe8, + 0x6a, 0xea, 0xc8, 0xac, 0x32, 0x24, 0x06, 0xb9, 0xaf, 0xb3, 0xa3, 0x76, + 0xa7, 0xac, 0x25, 0x3e, 0xe3, 0xb2, 0xfd, 0x0d, 0x00, 0x74, 0x7e, 0x66, + 0x3f, 0x8c, 0x53, 0x4c, 0xbf, 0xed, 0x0a, 0xe7, 0xca, 0xcc, 0x7f, 0xe5, + 0xbb, 0xd3, 0x3c, 0x99, 0xcf, 0xfc, 0xbc, 0x3f, 0xe7, 0x40, 0x1b, 0xaf, + 0x74, 0xab, 0xd5, 0x85, 0x46, 0x2f, 0x01, 0x90, 0x7c, 0xe0, 0x2f, 0xb9, + 0xac, 0x4f, 0xb1, 0xbb, 0x1f, 0x9a, 0x67, 0x3f, 0x8d, 0x4c, 0x96, 0x71, + 0x8f, 0xbd, 0x96, 0xfa, 0x9a, 0x00, 0xdb, 0x17, 0xd6, 0xb0, 0x9c, 0x99, + 0x41, 0x3e, 0x82, 0x9c, 0x75, 0xb0, 0x78, 0x8a, 0x27, 0x6f, 0x73, 0x59, + 0x91, 0xc4, 0x8b, 0xd1, 0x40, 0xab, 0x0a, 0x00, 0xa0, 0x09, 0xda, 0xfe, + 0xf6, 0x6e, 0x9b, 0x63, 0x14, 0xdf, 0x21, 0xa5, 0xe6, 0x59, 0x5d, 0xfd, + 0xb3, 0x42, 0xd4, 0xca, 0x68, 0x01, 0x62, 0xb6, 0x89, 0x3e, 0xea, 0x8a, + 0xb9, 0x1a, 0x81, 0xd2, 0xab, 0xa9, 0xa9, 0x93, 0xeb, 0x40, 0x16, 0xd0, + 0xd5, 0x98, 0xd8, 0x7a, 0xd5, 0x24, 0x26, 0xa6, 0x56, 0xa0, 0x0d, 0x05, + 0x73, 0xeb, 0x52, 0x2c, 0x83, 0xb9, 0xac, 0xf1, 0x21, 0x1d, 0xea, 0x64, + 0x90, 0x77, 0xa0, 0x0b, 0xc1, 0xc7, 0xad, 0x2e, 0xf1, 0xeb, 0x54, 0xcb, + 0x64, 0x75, 0xa5, 0x0c, 0x28, 0x02, 0xde, 0xf1, 0xeb, 0x4d, 0x67, 0xaa, + 0xe5, 0xc5, 0x34, 0xbf, 0x1d, 0x68, 0x02, 0x56, 0x94, 0xfa, 0x54, 0x2f, + 0x2f, 0x34, 0xc6, 0x73, 0x50, 0xb3, 0x9a, 0x00, 0x73, 0xc9, 0x55, 0xe4, + 0x72, 0x7b, 0xd3, 0x98, 0xf1, 0xcd, 0x57, 0x92, 0x50, 0x0e, 0x05, 0x00, + 0x35, 0x8e, 0x2a, 0x26, 0x6e, 0x78, 0x34, 0xaf, 0x20, 0xc5, 0x42, 0xcd, + 0x40, 0x0e, 0x37, 0x12, 0x2f, 0x47, 0x35, 0x0c, 0xd3, 0x3c, 0xbf, 0x79, + 0xb3, 0x8a, 0x6b, 0x35, 0x46, 0xc6, 0x80, 0x23, 0x6a, 0x61, 0x76, 0x08, + 0x54, 0x31, 0xc1, 0xed, 0x4c, 0x9e, 0xea, 0x08, 0x14, 0xb4, 0xb2, 0xa2, + 0x0f, 0xf6, 0x8e, 0x2b, 0x26, 0x5f, 0x11, 0x58, 0xe4, 0xac, 0x0c, 0xd3, + 0xb0, 0xff, 0x00, 0x9e, 0x63, 0x23, 0xf3, 0xa0, 0x0d, 0x16, 0x51, 0x9f, + 0x5a, 0x8d, 0x85, 0x62, 0x1d, 0x7a, 0xe2, 0x46, 0xdc, 0x90, 0x22, 0x20, + 0x3c, 0x86, 0x6e, 0x6b, 0x4a, 0xd6, 0xfe, 0x1b, 0xc4, 0xca, 0x1c, 0x30, + 0xea, 0xa7, 0xa8, 0xa0, 0x09, 0x08, 0xa8, 0xd9, 0x6a, 0x73, 0x8a, 0x8d, + 0xa8, 0x02, 0x12, 0x29, 0x08, 0xa7, 0x9a, 0x69, 0xa0, 0x06, 0x62, 0x8c, + 0x0f, 0x5a, 0x52, 0x28, 0xc5, 0x00, 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x28, + 0x01, 0x98, 0xa3, 0x14, 0xea, 0x28, 0x01, 0x98, 0xa4, 0xa7, 0x62, 0x92, + 0x80, 0x1b, 0x49, 0x8a, 0x7d, 0x25, 0x00, 0x36, 0x83, 0x4a, 0x45, 0x25, + 0x00, 0x20, 0x25, 0x79, 0x53, 0x8a, 0x99, 0x6e, 0xdc, 0x0c, 0x36, 0x18, + 0x7b, 0xd4, 0x38, 0xa4, 0xc5, 0x00, 0x5b, 0x17, 0x11, 0x9e, 0xaa, 0xcb, + 0xf4, 0x34, 0xf1, 0x24, 0x2d, 0xd2, 0x66, 0x1f, 0x5a, 0xa3, 0x48, 0x68, + 0x03, 0x55, 0x60, 0x56, 0x19, 0xf3, 0x89, 0x1f, 0x5a, 0x71, 0x82, 0x32, + 0x30, 0x5c, 0x9f, 0xc6, 0xb2, 0x72, 0x7d, 0x4d, 0x20, 0xfa, 0x9f, 0xce, + 0x80, 0x35, 0x45, 0xbc, 0x2a, 0x78, 0xe7, 0xea, 0x69, 0x92, 0x32, 0x2f, + 0x0a, 0x9b, 0x8d, 0x67, 0x87, 0x61, 0xfc, 0x46, 0x9a, 0x64, 0x7f, 0xef, + 0x1a, 0x00, 0xb8, 0xd2, 0x38, 0xea, 0xc8, 0x82, 0xa2, 0x7b, 0x88, 0x94, + 0x73, 0x23, 0x31, 0xf6, 0x15, 0x50, 0xf3, 0xd6, 0x92, 0x80, 0x12, 0xe1, + 0xde, 0x7f, 0x95, 0x72, 0xa9, 0xfa, 0x9a, 0x85, 0x20, 0x54, 0xe8, 0xb5, + 0x3d, 0x14, 0x00, 0xc0, 0xa3, 0xd2, 0x97, 0x6a, 0x9e, 0xd4, 0xa4, 0x52, + 0x50, 0x03, 0x4c, 0x2a, 0x7b, 0x52, 0x79, 0x78, 0xe8, 0x2a, 0x4c, 0xd2, + 0xd0, 0x04, 0x58, 0xf6, 0xa3, 0x02, 0xa5, 0xc0, 0xa0, 0xa0, 0xa0, 0x08, + 0xb0, 0x29, 0x31, 0x52, 0x6c, 0xa4, 0xda, 0x68, 0x01, 0xb8, 0xa3, 0x14, + 0xb8, 0x34, 0xb4, 0x00, 0xdc, 0x52, 0x81, 0x4b, 0x4b, 0x40, 0x08, 0x05, + 0x3a, 0x81, 0x4b, 0x40, 0x00, 0x14, 0xea, 0x41, 0x4e, 0x14, 0x00, 0xa0, + 0x52, 0xd2, 0x0a, 0x5a, 0x00, 0x31, 0x4e, 0xc5, 0x14, 0xa2, 0x80, 0x0a, + 0x5c, 0x50, 0x29, 0x68, 0x00, 0x14, 0xb4, 0x52, 0xd0, 0x00, 0x29, 0xc2, + 0x9b, 0x4e, 0x14, 0x00, 0xe1, 0x4e, 0x14, 0xd1, 0x4e, 0x14, 0x00, 0xb4, + 0xb4, 0x94, 0xb4, 0x00, 0xb4, 0x37, 0xdc, 0x3f, 0x4a, 0x29, 0x1b, 0xee, + 0x9f, 0xa5, 0x00, 0x2a, 0xfd, 0xd1, 0xf4, 0xa5, 0xa6, 0xaf, 0xdd, 0x1f, + 0x4a, 0x5a, 0x00, 0x5a, 0x29, 0x29, 0x73, 0x40, 0x05, 0x14, 0x94, 0x50, + 0x02, 0xd2, 0x51, 0x9a, 0x4a, 0x00, 0x28, 0xa2, 0x92, 0x80, 0x0a, 0x4a, + 0x5a, 0x4a, 0x00, 0x43, 0x45, 0x14, 0x94, 0x00, 0x94, 0x86, 0x96, 0x92, + 0x80, 0x12, 0x92, 0x96, 0x8a, 0x00, 0x6d, 0x14, 0xb4, 0x94, 0x00, 0x94, + 0x62, 0x96, 0x8a, 0x00, 0x4c, 0x51, 0x8a, 0x5a, 0x28, 0x01, 0xb4, 0x52, + 0xd1, 0x40, 0x09, 0x45, 0x2e, 0x28, 0xc5, 0x00, 0x36, 0x96, 0x9d, 0xb6, + 0x94, 0x0a, 0x00, 0x00, 0xa7, 0x81, 0x8a, 0x05, 0x2d, 0x00, 0x28, 0xa7, + 0x0a, 0x68, 0xa7, 0x8a, 0x00, 0x70, 0xa7, 0xd3, 0x45, 0x3c, 0x50, 0x02, + 0x8a, 0x78, 0xa6, 0x53, 0x81, 0xa0, 0x07, 0x52, 0xd0, 0x29, 0x71, 0x40, + 0x0a, 0x29, 0xc2, 0x9a, 0x29, 0xc2, 0x80, 0x24, 0x5a, 0x78, 0x35, 0x18, + 0xa7, 0x0a, 0x00, 0x9d, 0x4d, 0x4a, 0xa6, 0xab, 0xa9, 0xa9, 0x14, 0xd0, + 0x04, 0xe0, 0xd4, 0xa8, 0xd5, 0x5c, 0x1a, 0x91, 0x4d, 0x00, 0x5a, 0x56, + 0xf7, 0xa7, 0x87, 0x3e, 0xb5, 0x59, 0x5a, 0x9e, 0x1e, 0x80, 0x2d, 0x09, + 0x09, 0xa9, 0x14, 0x9f, 0x5a, 0xa6, 0x24, 0x22, 0x9d, 0xe6, 0x1a, 0x00, + 0xba, 0x1b, 0xde, 0x9e, 0x24, 0xc5, 0x51, 0x12, 0x91, 0x4b, 0xe6, 0x93, + 0x40, 0x17, 0x0c, 0x94, 0x86, 0x4f, 0x7a, 0xa9, 0xe6, 0x1a, 0x43, 0x2d, + 0x00, 0x59, 0x32, 0xd4, 0x4d, 0x23, 0x54, 0x3e, 0x69, 0xa6, 0x99, 0x05, + 0x00, 0x39, 0xdd, 0x8f, 0x7a, 0x81, 0x8f, 0x3c, 0xd0, 0xf2, 0x54, 0x25, + 0xcd, 0x00, 0x38, 0x9a, 0xaf, 0x73, 0x2b, 0x43, 0x03, 0xc8, 0xa8, 0x5c, + 0xa8, 0xc8, 0x51, 0xde, 0xa4, 0x26, 0xa2, 0x63, 0x9a, 0x00, 0xe4, 0xa5, + 0xf1, 0x8c, 0x8e, 0x08, 0x8a, 0xd4, 0xa9, 0xce, 0x3e, 0x6e, 0xd4, 0x97, + 0x97, 0xd3, 0xcf, 0x69, 0xbe, 0x3d, 0x41, 0xb7, 0xf5, 0xda, 0x83, 0x1f, + 0x85, 0x1a, 0xd4, 0x32, 0xe9, 0x73, 0x9b, 0x9b, 0x58, 0x55, 0xe2, 0x95, + 0xbe, 0x71, 0x8f, 0xba, 0x7d, 0x6a, 0x99, 0xd1, 0xf5, 0xb9, 0x4b, 0x5c, + 0x2d, 0xab, 0xac, 0x64, 0x65, 0x80, 0xc0, 0xfc, 0x68, 0x03, 0x3e, 0xeb, + 0x49, 0x9f, 0x50, 0xb6, 0xf3, 0x55, 0x8e, 0xe1, 0xc8, 0x2e, 0xf9, 0xcf, + 0xb5, 0x63, 0x69, 0xe3, 0x51, 0x82, 0xe5, 0x96, 0x18, 0x98, 0xf3, 0x87, + 0x55, 0x15, 0xd7, 0x43, 0xa4, 0x5e, 0xc2, 0x86, 0x56, 0x78, 0xca, 0x11, + 0x92, 0x8c, 0xfd, 0x6a, 0x9c, 0xd7, 0xb0, 0xdb, 0xab, 0x3c, 0x57, 0x71, + 0xa4, 0x84, 0x7d, 0xd0, 0x33, 0x9a, 0x00, 0x5b, 0x6b, 0x79, 0xcb, 0xf9, + 0xca, 0xa1, 0x58, 0x7d, 0xe1, 0x21, 0xac, 0xcb, 0xfd, 0x71, 0x6d, 0x2e, + 0x7c, 0xc9, 0x26, 0x58, 0x66, 0x8f, 0x8d, 0xab, 0xdf, 0xfc, 0x6a, 0x19, + 0x0e, 0xa5, 0xaa, 0x83, 0xe4, 0xc3, 0x70, 0x59, 0xb8, 0xdd, 0xf7, 0x45, + 0x3e, 0xd7, 0xc0, 0x77, 0x37, 0x58, 0x6d, 0x42, 0x65, 0x51, 0xe8, 0xbc, + 0x9f, 0xce, 0x80, 0x3a, 0x0d, 0x07, 0xc5, 0x16, 0x7a, 0xca, 0x6c, 0x0e, + 0x12, 0x71, 0xd5, 0x0f, 0x19, 0xfa, 0x56, 0xe9, 0x1e, 0xf5, 0x8d, 0xa7, + 0x78, 0x53, 0x4b, 0xd3, 0x19, 0x5e, 0x28, 0x03, 0x48, 0xbf, 0xc6, 0xdd, + 0x6b, 0x64, 0x8a, 0x00, 0x69, 0x14, 0xd2, 0x29, 0xe6, 0x92, 0x80, 0x23, + 0x22, 0x93, 0x14, 0xf3, 0x4d, 0xa0, 0x04, 0x34, 0x94, 0xea, 0x43, 0x40, + 0x09, 0x49, 0x4b, 0x49, 0x40, 0x09, 0x49, 0x4e, 0xa4, 0xa0, 0x06, 0x9a, + 0x28, 0xa2, 0x80, 0x1b, 0x45, 0x2d, 0x21, 0xa0, 0x04, 0xc5, 0x21, 0xa5, + 0xa4, 0x34, 0x00, 0x94, 0x87, 0x9a, 0x5a, 0x28, 0x01, 0x28, 0xa5, 0xa4, + 0xa0, 0x03, 0x34, 0x62, 0x92, 0x8a, 0x00, 0x69, 0x14, 0xdc, 0x54, 0x94, + 0x84, 0x50, 0x03, 0x31, 0x45, 0x2d, 0x14, 0x00, 0x52, 0x62, 0x97, 0x14, + 0x50, 0x02, 0x62, 0x92, 0x9d, 0x45, 0x00, 0x25, 0x2d, 0x18, 0xa2, 0x80, + 0x0c, 0xd1, 0xc5, 0x2d, 0x14, 0x00, 0x98, 0xa4, 0xdb, 0x4b, 0x45, 0x00, + 0x26, 0xda, 0x36, 0xd3, 0xa8, 0xa0, 0x04, 0xc5, 0x2e, 0x29, 0x68, 0xa0, + 0x04, 0xc5, 0x3a, 0x8a, 0x5a, 0x00, 0x05, 0x2d, 0x25, 0x3a, 0x80, 0x0a, + 0x70, 0xa4, 0x14, 0xa2, 0x80, 0x16, 0x96, 0x92, 0x96, 0x80, 0x14, 0x51, + 0x45, 0x14, 0x00, 0xb4, 0xa2, 0x92, 0x96, 0x80, 0x1c, 0x29, 0x45, 0x34, + 0x52, 0x8a, 0x00, 0x7d, 0x14, 0x94, 0xb4, 0x00, 0xa2, 0x83, 0xf7, 0x4f, + 0xd2, 0x8a, 0x46, 0x3f, 0x29, 0xfa, 0x50, 0x00, 0xbf, 0x74, 0x7d, 0x29, + 0x73, 0x4c, 0x5f, 0xba, 0x3e, 0x94, 0xb9, 0xa0, 0x07, 0x66, 0x8c, 0xd2, + 0x66, 0x8c, 0xd0, 0x02, 0xd1, 0x49, 0x9a, 0x28, 0x01, 0x69, 0x28, 0xa4, + 0xa0, 0x05, 0xa4, 0xa2, 0x8a, 0x00, 0x29, 0x28, 0xa2, 0x80, 0x0a, 0x4a, + 0x28, 0xa0, 0x04, 0xa4, 0xa5, 0xa4, 0xa0, 0x04, 0xa4, 0xa7, 0x62, 0x8a, + 0x00, 0x6d, 0x21, 0xa7, 0xe2, 0x93, 0x14, 0x00, 0xda, 0x29, 0xd8, 0xa2, + 0x80, 0x13, 0x14, 0x62, 0x97, 0x14, 0x50, 0x02, 0x62, 0x8c, 0x52, 0xd1, + 0x40, 0x09, 0x4b, 0x45, 0x14, 0x00, 0x52, 0xd1, 0x8a, 0x51, 0x40, 0x06, + 0x29, 0xd4, 0x62, 0x8a, 0x00, 0x51, 0x4e, 0x14, 0x82, 0x9c, 0x28, 0x01, + 0xe2, 0x9c, 0x29, 0x82, 0x9c, 0x28, 0x01, 0xd4, 0xa2, 0x92, 0x94, 0x50, + 0x03, 0xd6, 0x9d, 0x4c, 0x14, 0xe0, 0x68, 0x01, 0xc2, 0x9c, 0x29, 0x94, + 0xb4, 0x01, 0x20, 0xa7, 0x83, 0x51, 0x03, 0x4f, 0x06, 0x80, 0x25, 0x06, + 0x9e, 0x0d, 0x44, 0x0d, 0x38, 0x35, 0x00, 0x4a, 0x0d, 0x3d, 0x4d, 0x40, + 0x0d, 0x3c, 0x35, 0x00, 0x58, 0x0d, 0x4a, 0x1a, 0xa0, 0xdd, 0x4a, 0x1a, + 0x80, 0x2c, 0x07, 0xa7, 0x07, 0xa8, 0x03, 0x0a, 0x5d, 0xd4, 0x01, 0x3e, + 0xe1, 0x4a, 0x1b, 0xde, 0xa0, 0xdd, 0x46, 0xea, 0x00, 0xb1, 0xbe, 0x90, + 0xbd, 0x43, 0xba, 0x9a, 0x5a, 0x80, 0x25, 0x2f, 0xe9, 0x4c, 0x2c, 0x69, + 0x85, 0xa9, 0xa5, 0xa8, 0x01, 0xc4, 0x93, 0x51, 0x93, 0x41, 0x34, 0xc2, + 0x68, 0x01, 0x49, 0xf7, 0xa8, 0xc9, 0xa0, 0x9a, 0x61, 0xa0, 0x06, 0x5c, + 0x42, 0x93, 0xc4, 0xd1, 0xb8, 0xca, 0x91, 0x58, 0x97, 0x51, 0xeb, 0x88, + 0xa2, 0x0b, 0x7d, 0x45, 0x96, 0x00, 0x30, 0x3e, 0x51, 0x90, 0x3e, 0xb5, + 0xba, 0x69, 0x98, 0x14, 0x01, 0xcb, 0xc7, 0xe1, 0xa7, 0x93, 0x9b, 0xab, + 0xb9, 0xe5, 0xc9, 0xc9, 0x05, 0xce, 0x3f, 0x2a, 0xd0, 0xb6, 0xd0, 0x6c, + 0x2d, 0x79, 0x48, 0x17, 0x3e, 0xb8, 0xad, 0x63, 0x4c, 0x26, 0x80, 0x22, + 0x58, 0xd1, 0x06, 0x15, 0x40, 0x1e, 0xd4, 0x1a, 0x79, 0xa6, 0x1a, 0x00, + 0x69, 0xa6, 0x9a, 0x71, 0xa6, 0x9a, 0x00, 0x4a, 0x43, 0x4b, 0x4d, 0x34, + 0x00, 0x94, 0x51, 0x49, 0x40, 0x01, 0xa4, 0x34, 0xb4, 0x94, 0x00, 0xdc, + 0x51, 0x45, 0x14, 0x00, 0x86, 0x90, 0xd2, 0xe2, 0x93, 0xa5, 0x00, 0x26, + 0x29, 0x0f, 0x14, 0xb4, 0x86, 0x80, 0x10, 0xd2, 0x52, 0xd1, 0x40, 0x0d, + 0xa4, 0xa7, 0x1a, 0x6d, 0x00, 0x25, 0x14, 0xb4, 0x94, 0x00, 0x52, 0x62, + 0x96, 0x8a, 0x00, 0x4a, 0x4a, 0x5a, 0x0d, 0x00, 0x25, 0x14, 0x62, 0x8a, + 0x00, 0x43, 0x49, 0x4b, 0x49, 0x40, 0x05, 0x14, 0x51, 0x40, 0x06, 0x29, + 0x08, 0xa5, 0xa2, 0x80, 0x12, 0x96, 0x82, 0x28, 0xa0, 0x05, 0xa2, 0x8a, + 0x28, 0x00, 0xa4, 0xa5, 0xa5, 0xc5, 0x00, 0x36, 0x96, 0x97, 0x14, 0x50, + 0x02, 0x52, 0xd1, 0x45, 0x00, 0x14, 0xb4, 0x51, 0x40, 0x0a, 0x29, 0x69, + 0x29, 0x45, 0x00, 0x28, 0xa5, 0x14, 0x51, 0x40, 0x0b, 0x4b, 0x49, 0x45, + 0x00, 0x3a, 0x8a, 0x41, 0x4b, 0x40, 0x0b, 0x46, 0x69, 0x28, 0xa0, 0x07, + 0x8a, 0x5a, 0x68, 0xa5, 0xcd, 0x00, 0x3b, 0x34, 0xa0, 0xd3, 0x73, 0x4b, + 0x40, 0x0b, 0x43, 0x7d, 0xd3, 0xf4, 0xa4, 0xcd, 0x0d, 0xf7, 0x4f, 0xd2, + 0x80, 0x11, 0x7e, 0xe8, 0xfa, 0x52, 0xd2, 0x2f, 0xdd, 0x1f, 0x4a, 0x5a, + 0x00, 0x29, 0x69, 0x28, 0xa0, 0x05, 0xa2, 0x92, 0x8a, 0x00, 0x28, 0xa2, + 0x8a, 0x00, 0x28, 0xa4, 0xa2, 0x80, 0x16, 0x8a, 0x4c, 0xd1, 0x40, 0x05, + 0x14, 0x51, 0x40, 0x09, 0x45, 0x14, 0x50, 0x01, 0x49, 0x4b, 0x45, 0x00, + 0x21, 0xa2, 0x8a, 0x5a, 0x00, 0x4a, 0x28, 0xa5, 0xc5, 0x00, 0x25, 0x14, + 0xb4, 0x50, 0x02, 0x52, 0x1a, 0x5a, 0x28, 0x01, 0x29, 0x68, 0xa0, 0x50, + 0x01, 0x4b, 0x45, 0x2d, 0x00, 0x28, 0xa5, 0xa0, 0x51, 0x40, 0x0a, 0x29, + 0x45, 0x20, 0xa7, 0x0a, 0x00, 0x70, 0x34, 0xea, 0x6d, 0x28, 0xa0, 0x07, + 0x52, 0x8a, 0x6d, 0x28, 0x34, 0x00, 0xf1, 0x4f, 0x14, 0xc0, 0x69, 0x45, + 0x00, 0x3f, 0x14, 0x74, 0xa0, 0x1a, 0x5a, 0x00, 0x5a, 0x50, 0x69, 0x99, + 0xa5, 0xcd, 0x00, 0x49, 0x9a, 0x50, 0x6a, 0x3a, 0x50, 0x68, 0x02, 0x60, + 0x69, 0xc1, 0xaa, 0x10, 0x69, 0x43, 0x50, 0x04, 0xdb, 0xa9, 0xc1, 0xaa, + 0x10, 0xd4, 0xbb, 0xa8, 0x02, 0x60, 0xd4, 0x6e, 0xa8, 0xb7, 0x51, 0xba, + 0x80, 0x27, 0x0d, 0x46, 0xea, 0x87, 0x71, 0xa3, 0x71, 0xa0, 0x09, 0xb7, + 0x51, 0xb8, 0x54, 0x3b, 0xa8, 0xcd, 0x00, 0x4b, 0xba, 0x9a, 0x5a, 0x99, + 0xba, 0x90, 0x9a, 0x00, 0x79, 0x6a, 0x61, 0x6c, 0xd3, 0x49, 0xa4, 0xcd, + 0x00, 0x38, 0x9a, 0x6e, 0x69, 0xa5, 0xa9, 0x85, 0xa8, 0x01, 0xe5, 0xa9, + 0x85, 0xa9, 0xa5, 0xa9, 0xa4, 0xd0, 0x02, 0x96, 0xa6, 0x1a, 0x33, 0x48, + 0x4e, 0x68, 0x00, 0xcd, 0x34, 0xd1, 0x4d, 0xa0, 0x05, 0x34, 0xd3, 0x41, + 0xa4, 0x26, 0x80, 0x10, 0xd2, 0x51, 0x48, 0x68, 0x01, 0x28, 0xa2, 0x8a, + 0x00, 0x4c, 0xd2, 0x52, 0x91, 0x49, 0x40, 0x05, 0x14, 0x84, 0xd2, 0x66, + 0x80, 0x02, 0x69, 0x28, 0xeb, 0x46, 0x28, 0x01, 0x29, 0x29, 0x69, 0x28, + 0x00, 0xa4, 0xa2, 0x92, 0x80, 0x10, 0xd1, 0x4b, 0x49, 0x40, 0x05, 0x25, + 0x2d, 0x25, 0x00, 0x25, 0x1d, 0xe9, 0x73, 0x49, 0x40, 0x09, 0x45, 0x2e, + 0x69, 0x28, 0x00, 0xa4, 0x34, 0xb4, 0x94, 0x00, 0x52, 0x52, 0xd2, 0x50, + 0x00, 0x45, 0x14, 0xb4, 0x50, 0x03, 0x69, 0x71, 0x45, 0x14, 0x00, 0x51, + 0x4b, 0x8a, 0x4a, 0x00, 0x29, 0x69, 0x29, 0x68, 0x00, 0xa2, 0x96, 0x8a, + 0x00, 0x4c, 0x51, 0x4b, 0x45, 0x00, 0x25, 0x14, 0x52, 0xd0, 0x01, 0x4b, + 0x49, 0x4b, 0x40, 0x0b, 0x4a, 0x29, 0x29, 0x68, 0x01, 0x69, 0x69, 0x28, + 0xa0, 0x05, 0xa2, 0x8a, 0x28, 0x01, 0x68, 0xa4, 0xa5, 0xa0, 0x05, 0xa2, + 0x8a, 0x28, 0x01, 0x69, 0x69, 0xb4, 0xa2, 0x80, 0x1d, 0x4b, 0x4d, 0x14, + 0xb4, 0x00, 0xb4, 0x37, 0xdd, 0x3f, 0x4a, 0x4c, 0xd0, 0xdf, 0x74, 0xfd, + 0x28, 0x00, 0x53, 0xf2, 0x8f, 0xa5, 0x2e, 0x69, 0xaa, 0x7e, 0x51, 0xf4, + 0xa5, 0xa0, 0x05, 0xcd, 0x14, 0x94, 0x50, 0x02, 0xd1, 0x45, 0x14, 0x00, + 0x51, 0x49, 0x4b, 0x40, 0x05, 0x14, 0x52, 0x50, 0x01, 0x4b, 0x49, 0x45, + 0x00, 0x14, 0xb4, 0x94, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, + 0xb4, 0x00, 0x94, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, + 0x49, 0x40, 0x0b, 0x49, 0x4b, 0x49, 0x40, 0x05, 0x14, 0x52, 0x8a, 0x00, + 0x29, 0xc2, 0x90, 0x0a, 0x51, 0x40, 0x0b, 0x4b, 0x8a, 0x4a, 0x76, 0x68, + 0x00, 0x02, 0x96, 0x92, 0x8a, 0x00, 0x50, 0x69, 0xc2, 0x9b, 0x4a, 0x0d, + 0x00, 0x3a, 0x9d, 0x4d, 0x06, 0x96, 0x80, 0x00, 0x79, 0xa7, 0x83, 0x4c, + 0x34, 0x67, 0x14, 0x01, 0x28, 0x34, 0xe0, 0x6a, 0x20, 0xd4, 0xe0, 0x68, + 0x02, 0x4a, 0x4c, 0xd3, 0x77, 0x51, 0xba, 0x80, 0x1e, 0x0d, 0x2e, 0x69, + 0x9d, 0x68, 0xe6, 0x80, 0x1f, 0xba, 0x97, 0x75, 0x33, 0x34, 0xb9, 0xa0, + 0x07, 0xee, 0xa5, 0xdd, 0x51, 0xee, 0xa5, 0xdc, 0x28, 0x01, 0xfb, 0xa9, + 0x77, 0x1a, 0x8f, 0x70, 0xa3, 0x75, 0x00, 0x49, 0xbe, 0x8d, 0xc6, 0xa3, + 0xdd, 0x4b, 0x9a, 0x00, 0x7e, 0xea, 0x76, 0xea, 0x8b, 0x34, 0xb9, 0xa0, + 0x07, 0x96, 0xa4, 0xdd, 0x4c, 0xcd, 0x26, 0x68, 0x01, 0xf9, 0xa4, 0xcd, + 0x37, 0x34, 0x9b, 0xa8, 0x01, 0x4d, 0x36, 0x90, 0xb5, 0x34, 0xb5, 0x00, + 0x38, 0xe2, 0x90, 0x91, 0x4c, 0x2d, 0x49, 0x9a, 0x00, 0x76, 0x69, 0x09, + 0xa6, 0x93, 0xc5, 0x26, 0x68, 0x01, 0x49, 0xa6, 0xd0, 0x4d, 0x25, 0x00, + 0x06, 0x92, 0x8c, 0x51, 0x40, 0x09, 0x4d, 0x34, 0xa4, 0xd3, 0x68, 0x00, + 0xcd, 0x14, 0x52, 0x50, 0x01, 0x41, 0xa0, 0x9e, 0x29, 0xb9, 0xa0, 0x02, + 0x92, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x4a, 0x00, 0x29, 0x28, 0xa2, 0x80, + 0x0a, 0x43, 0x4b, 0x49, 0x40, 0x09, 0x45, 0x2d, 0x36, 0x80, 0x0a, 0x29, + 0x68, 0xa0, 0x06, 0x9a, 0x4a, 0x7d, 0x25, 0x00, 0x36, 0x92, 0x9d, 0x49, + 0x40, 0x09, 0x49, 0x4b, 0x9a, 0x28, 0x01, 0x28, 0xe2, 0x96, 0x8a, 0x00, + 0x4a, 0x4a, 0x75, 0x14, 0x00, 0x94, 0x51, 0x45, 0x00, 0x14, 0x51, 0x4b, + 0x40, 0x09, 0x8a, 0x29, 0x68, 0xa0, 0x04, 0xa2, 0x96, 0x8a, 0x00, 0x29, + 0x28, 0xa5, 0xa0, 0x04, 0xa5, 0xa3, 0x14, 0x50, 0x02, 0xd2, 0x8a, 0x4a, + 0x5a, 0x00, 0x5a, 0x29, 0x29, 0x68, 0x01, 0x68, 0xa4, 0xcd, 0x2d, 0x00, + 0x2d, 0x14, 0x94, 0xb4, 0x00, 0x52, 0xd2, 0x51, 0x40, 0x0b, 0x45, 0x14, + 0x50, 0x01, 0x4b, 0x9a, 0x6d, 0x19, 0xa0, 0x07, 0xe6, 0x96, 0x98, 0x0d, + 0x2d, 0x00, 0x3a, 0x86, 0xfb, 0xa7, 0xe9, 0x49, 0x43, 0x7d, 0xd3, 0xf4, + 0xa0, 0x01, 0x7e, 0xe8, 0xfa, 0x52, 0xd3, 0x57, 0xee, 0x8f, 0xa5, 0x2e, + 0x68, 0x01, 0xd4, 0x53, 0x73, 0x4b, 0x40, 0x0b, 0x45, 0x26, 0x68, 0xa0, + 0x02, 0x96, 0x93, 0x34, 0x66, 0x80, 0x16, 0x8a, 0x4a, 0x28, 0x01, 0x68, + 0xa2, 0x8a, 0x00, 0x28, 0xa2, 0x92, 0x80, 0x16, 0x8a, 0x4a, 0x28, 0x01, + 0x68, 0xa2, 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, + 0x4a, 0x5a, 0x4c, 0xd1, 0x9a, 0x00, 0x5a, 0x29, 0x33, 0x45, 0x00, 0x14, + 0xa2, 0x92, 0x9d, 0x40, 0x0b, 0x4a, 0x29, 0x29, 0x45, 0x00, 0x2d, 0x2d, + 0x14, 0x62, 0x80, 0x0a, 0x28, 0xa2, 0x80, 0x16, 0x96, 0x93, 0x34, 0x50, + 0x02, 0xd2, 0x83, 0x49, 0x4a, 0x28, 0x01, 0x69, 0x4d, 0x26, 0x68, 0xcd, + 0x00, 0x19, 0xa7, 0x03, 0x4c, 0xea, 0x69, 0x73, 0x8a, 0x00, 0x7e, 0x69, + 0x6a, 0x3d, 0xd4, 0xe0, 0x73, 0x40, 0x0f, 0xcd, 0x2e, 0x69, 0xa0, 0xd2, + 0xe4, 0x50, 0x01, 0x9a, 0x5c, 0xd3, 0x69, 0x28, 0x01, 0xf9, 0xa4, 0xcd, + 0x37, 0x34, 0x6e, 0xa0, 0x07, 0x52, 0xe6, 0x99, 0x9a, 0x01, 0xa0, 0x09, + 0x01, 0xa5, 0xcd, 0x47, 0x9a, 0x37, 0x50, 0x04, 0x9b, 0xa8, 0xdd, 0x51, + 0xee, 0xa4, 0xdd, 0x40, 0x12, 0xe4, 0x52, 0x13, 0x51, 0xef, 0xa3, 0x78, + 0xa0, 0x07, 0xe6, 0x8a, 0x66, 0xf1, 0x49, 0xbe, 0x80, 0x1c, 0x4d, 0x25, + 0x37, 0x75, 0x26, 0xea, 0x00, 0x71, 0x14, 0x94, 0x9b, 0xa9, 0x0b, 0x50, + 0x02, 0xd2, 0x53, 0x77, 0xd2, 0x16, 0xa0, 0x07, 0xd3, 0x49, 0xc5, 0x34, + 0xb5, 0x34, 0x9a, 0x00, 0x76, 0x68, 0x26, 0x99, 0x9a, 0x33, 0x40, 0x0b, + 0x9a, 0x4c, 0xd2, 0x51, 0x40, 0x0a, 0x4d, 0x37, 0x34, 0x52, 0x50, 0x02, + 0x93, 0x49, 0x45, 0x25, 0x00, 0x2e, 0x69, 0x28, 0xa2, 0x80, 0x03, 0x49, + 0x9a, 0x5a, 0x4a, 0x00, 0x5a, 0x4a, 0x28, 0xa0, 0x02, 0x92, 0x96, 0x90, + 0xd0, 0x02, 0x52, 0x52, 0xd2, 0x50, 0x01, 0x4b, 0x9a, 0x4a, 0x28, 0x01, + 0x7b, 0x52, 0x51, 0x45, 0x00, 0x06, 0x9b, 0x4e, 0xa6, 0x9a, 0x00, 0x43, + 0xd6, 0x8c, 0x50, 0x68, 0xa0, 0x02, 0x97, 0x14, 0x51, 0x40, 0x09, 0x45, + 0x2d, 0x14, 0x00, 0x94, 0x94, 0xb4, 0xdc, 0xd0, 0x02, 0xd1, 0x9a, 0x4c, + 0xd2, 0x66, 0x80, 0x1d, 0x9a, 0x33, 0x4d, 0xcd, 0x14, 0x00, 0xec, 0xd2, + 0xd3, 0x69, 0xc2, 0x80, 0x0c, 0x52, 0xe2, 0x94, 0x0a, 0x5a, 0x00, 0x4c, + 0x51, 0x8a, 0x5a, 0x5a, 0x00, 0x6e, 0x29, 0x69, 0x69, 0x28, 0x00, 0xa2, + 0x8a, 0x28, 0x00, 0xa5, 0xa2, 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x5a, + 0x29, 0x28, 0xa0, 0x05, 0xa2, 0x8a, 0x28, 0x01, 0x0d, 0x26, 0x69, 0xd4, + 0xd3, 0x40, 0x0a, 0x0d, 0x3b, 0x35, 0x1d, 0x38, 0x1a, 0x00, 0x78, 0xa1, + 0xbe, 0xe9, 0xfa, 0x52, 0x03, 0x41, 0x3f, 0x29, 0xfa, 0x50, 0x02, 0x29, + 0xf9, 0x47, 0xd2, 0x97, 0x35, 0xce, 0x7f, 0xc2, 0x63, 0xa5, 0xa9, 0x0a, + 0xf2, 0x3a, 0xf1, 0xdd, 0x48, 0xab, 0xf6, 0xfa, 0xed, 0x85, 0xc8, 0x06, + 0x39, 0xc7, 0x3d, 0x33, 0xc5, 0x00, 0x6a, 0x66, 0x97, 0x35, 0x0a, 0x4c, + 0xae, 0x32, 0xac, 0x08, 0xf6, 0x34, 0xe0, 0xd4, 0x01, 0x26, 0x68, 0x06, + 0x9b, 0x9a, 0x5c, 0xd0, 0x03, 0xa8, 0xa4, 0xcd, 0x19, 0xa0, 0x07, 0x51, + 0x49, 0x45, 0x00, 0x2d, 0x14, 0x94, 0x50, 0x02, 0xd1, 0x49, 0x45, 0x00, + 0x2d, 0x2d, 0x36, 0x8a, 0x00, 0x75, 0x14, 0xda, 0x5a, 0x00, 0x28, 0xa4, + 0xcd, 0x14, 0x00, 0xb4, 0x52, 0x66, 0x8c, 0xd0, 0x02, 0xd2, 0x52, 0x66, + 0x8c, 0xd0, 0x03, 0xa8, 0xcd, 0x37, 0x34, 0x50, 0x03, 0xa9, 0x69, 0xb9, + 0xa5, 0x06, 0x80, 0x1c, 0x29, 0xc0, 0xd3, 0x45, 0x38, 0x50, 0x03, 0xa9, + 0x69, 0xa2, 0x9d, 0x40, 0x09, 0x45, 0x2d, 0x27, 0x34, 0x00, 0x51, 0x45, + 0x26, 0x68, 0x01, 0xd4, 0x66, 0x92, 0x8a, 0x00, 0x76, 0x69, 0x73, 0x4d, + 0xcd, 0x19, 0xa0, 0x05, 0xa2, 0x93, 0x22, 0x90, 0x91, 0x40, 0x0e, 0xa0, + 0x1c, 0x53, 0x37, 0x51, 0xba, 0x80, 0x25, 0xdd, 0x4e, 0xcd, 0x41, 0x9a, + 0x70, 0x6a, 0x00, 0x97, 0x75, 0x19, 0xa6, 0x6e, 0xa5, 0x06, 0x80, 0x14, + 0xd2, 0x51, 0x49, 0x9a, 0x00, 0x76, 0x68, 0xcd, 0x37, 0x34, 0x99, 0xa0, + 0x07, 0xe6, 0x93, 0x34, 0xdd, 0xd4, 0x66, 0x80, 0x1d, 0x46, 0x69, 0xbb, + 0xa8, 0xcd, 0x00, 0x2e, 0x68, 0xa6, 0xe6, 0x8c, 0xd0, 0x02, 0x93, 0x49, + 0x9a, 0x4a, 0x4c, 0xd0, 0x02, 0xe6, 0x8c, 0xd2, 0x66, 0x8c, 0xd0, 0x01, + 0x9a, 0x4a, 0x29, 0x28, 0x01, 0x69, 0x28, 0xa2, 0x80, 0x0a, 0x4a, 0x33, + 0x49, 0x40, 0x05, 0x14, 0x52, 0x50, 0x02, 0xd2, 0x51, 0x49, 0x9a, 0x00, + 0x28, 0xa3, 0x34, 0x99, 0xa0, 0x02, 0x8a, 0x4c, 0xd1, 0x9a, 0x00, 0x5a, + 0x4a, 0x4c, 0xd2, 0x66, 0x80, 0x1d, 0x49, 0x49, 0x9a, 0x33, 0x40, 0x0e, + 0xcd, 0x14, 0xdc, 0xd2, 0x66, 0x80, 0x1e, 0x78, 0xa6, 0xe6, 0x9a, 0xce, + 0x07, 0x7e, 0x69, 0xbb, 0xa8, 0x02, 0x4a, 0x4a, 0x66, 0xfa, 0x37, 0x8a, + 0x00, 0x7f, 0xd2, 0x8a, 0x67, 0x98, 0x07, 0x7a, 0x69, 0xb9, 0x88, 0x75, + 0x91, 0x47, 0xe3, 0x40, 0x12, 0xd1, 0x50, 0x8b, 0x98, 0x8f, 0x49, 0x13, + 0xf3, 0xa7, 0xf9, 0x8a, 0x7a, 0x10, 0x68, 0x01, 0xd4, 0x98, 0xa6, 0xef, + 0xa4, 0xde, 0x28, 0x01, 0xd4, 0xb5, 0x1f, 0x98, 0x29, 0x0c, 0x82, 0x80, + 0x24, 0xa5, 0xcd, 0x43, 0xbe, 0x97, 0x71, 0xa0, 0x09, 0x73, 0x4d, 0x2d, + 0x4c, 0xc9, 0xa2, 0x80, 0x1d, 0x9a, 0x4c, 0xd1, 0x8a, 0x36, 0xd0, 0x02, + 0x52, 0xd2, 0xe2, 0x96, 0x80, 0x1b, 0x8a, 0x5c, 0x52, 0x8a, 0x5a, 0x00, + 0x31, 0x45, 0x14, 0x50, 0x02, 0xd1, 0x9a, 0x4a, 0x5a, 0x00, 0x5c, 0xd2, + 0x83, 0x4d, 0xaa, 0xf7, 0xd7, 0x0d, 0x6b, 0x67, 0x24, 0xc8, 0x9b, 0xd9, + 0x46, 0x42, 0x8a, 0x00, 0xb5, 0x46, 0x6b, 0xce, 0xa6, 0xf1, 0x4e, 0xa3, + 0x72, 0xc7, 0x12, 0x79, 0x63, 0xfb, 0xaa, 0x3a, 0x53, 0x62, 0xd7, 0xf5, + 0x18, 0xdb, 0x3f, 0x68, 0x63, 0xec, 0x79, 0xa0, 0x0f, 0x47, 0xcd, 0x15, + 0xc7, 0xda, 0x78, 0xbd, 0xc6, 0x16, 0xe6, 0x1c, 0xfb, 0xad, 0x6e, 0x5a, + 0xeb, 0xf6, 0x17, 0x38, 0xc4, 0xc1, 0x49, 0xec, 0xdc, 0x50, 0x06, 0xad, + 0x15, 0x1a, 0x4a, 0x92, 0x0c, 0xa3, 0xab, 0x0f, 0x63, 0x4f, 0xcd, 0x00, + 0x2d, 0x14, 0x99, 0xa5, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, 0x8a, 0x28, + 0xa0, 0x02, 0x90, 0xf4, 0xa2, 0x8c, 0xd0, 0x03, 0x4f, 0x14, 0x66, 0x83, + 0x51, 0x96, 0xc5, 0x00, 0x4a, 0x0d, 0x38, 0x9f, 0x94, 0xfd, 0x2a, 0x8c, + 0xba, 0x85, 0xb5, 0xb8, 0xcc, 0xb3, 0xa2, 0x01, 0xea, 0xd5, 0x42, 0x4f, + 0x14, 0xe9, 0x68, 0x08, 0x17, 0x01, 0xcf, 0xfb, 0x03, 0x34, 0x01, 0x85, + 0xaa, 0xf8, 0x4a, 0xd7, 0x72, 0x81, 0x75, 0x29, 0x6c, 0x71, 0xbb, 0x9c, + 0x54, 0x36, 0x96, 0x1a, 0xae, 0x9b, 0x34, 0x41, 0x59, 0x2e, 0x2d, 0x81, + 0xc1, 0x50, 0x06, 0x71, 0x56, 0x0f, 0x88, 0xd9, 0xb0, 0x5a, 0x05, 0x3f, + 0x8d, 0x38, 0x78, 0x89, 0x3b, 0xdb, 0xfe, 0x46, 0x80, 0x3a, 0x7b, 0x7d, + 0xaa, 0x80, 0xa2, 0x85, 0xcf, 0x38, 0x1c, 0x55, 0x95, 0x6a, 0xe5, 0x53, + 0xc4, 0x90, 0xff, 0x00, 0x14, 0x6e, 0x05, 0x17, 0x3e, 0x24, 0x09, 0x09, + 0x7b, 0x62, 0xcc, 0xe3, 0xf8, 0x18, 0x75, 0xa0, 0x0e, 0xb8, 0x35, 0x28, + 0x35, 0xc5, 0xda, 0xf8, 0xd4, 0x92, 0x05, 0xcd, 0xab, 0x2f, 0xae, 0x2b, + 0x6e, 0xd7, 0xc4, 0x7a, 0x7d, 0xc6, 0x3f, 0x7b, 0xb0, 0x9e, 0xcd, 0x40, + 0x1b, 0x60, 0xd2, 0xe6, 0xab, 0x45, 0x73, 0x14, 0xa3, 0x29, 0x22, 0xb7, + 0xd0, 0xd4, 0xa1, 0x85, 0x00, 0x49, 0x9a, 0x5a, 0x8f, 0x34, 0xb9, 0xa0, + 0x07, 0xe6, 0x8c, 0xd3, 0x37, 0x51, 0xba, 0x80, 0x1f, 0x45, 0x37, 0x34, + 0x6e, 0xa0, 0x07, 0x66, 0x8c, 0xd3, 0x73, 0x46, 0x68, 0x01, 0xd4, 0x66, + 0x9b, 0x9a, 0x33, 0x40, 0x0e, 0xcd, 0x19, 0xa6, 0x66, 0x8c, 0xd0, 0x03, + 0xb3, 0x49, 0x9a, 0x6e, 0x68, 0xcd, 0x00, 0x3b, 0x34, 0x99, 0xa6, 0xee, + 0xa3, 0x34, 0x00, 0xec, 0xd1, 0xba, 0x99, 0xba, 0x93, 0x75, 0x00, 0x4b, + 0xb8, 0x52, 0xee, 0xaa, 0xe5, 0xa9, 0xa6, 0x4c, 0x50, 0x05, 0xb0, 0xf4, + 0xf5, 0x75, 0xee, 0x6b, 0x35, 0xae, 0x31, 0xde, 0xa9, 0xdc, 0x5f, 0xba, + 0x03, 0xb4, 0x02, 0x7d, 0x09, 0xa0, 0x0e, 0x91, 0x0a, 0xb7, 0x46, 0x1f, + 0x9d, 0x49, 0xe5, 0xd7, 0x29, 0x6f, 0xe2, 0xb6, 0xb5, 0x3b, 0x65, 0xd3, + 0xd4, 0x81, 0xdd, 0x18, 0x55, 0xcf, 0xf8, 0x4d, 0xb4, 0xf7, 0xe1, 0xe2, + 0x9e, 0x2f, 0xf8, 0x06, 0x68, 0x03, 0x7b, 0x61, 0xa6, 0x91, 0x8a, 0xc8, + 0x4f, 0x14, 0x69, 0x32, 0x7f, 0xcb, 0xd8, 0x53, 0xfe, 0xd0, 0xc5, 0x5b, + 0x8b, 0x59, 0xd3, 0xe4, 0xfb, 0x97, 0x71, 0x1f, 0xf8, 0x15, 0x00, 0x58, + 0x2e, 0xa3, 0x39, 0x3c, 0xfa, 0x53, 0x95, 0x4b, 0x8c, 0xe7, 0x15, 0x07, + 0xda, 0x6d, 0x5c, 0xe5, 0x6e, 0x13, 0xf3, 0xa9, 0xe3, 0x78, 0x48, 0xfb, + 0xea, 0x4f, 0xd6, 0x80, 0x1c, 0x60, 0x72, 0x3e, 0x52, 0x33, 0x59, 0xd7, + 0x90, 0x6b, 0x80, 0x1f, 0xb2, 0xa5, 0xb1, 0xff, 0x00, 0x78, 0x9a, 0xd5, + 0x50, 0x0f, 0x43, 0xfa, 0xd3, 0x5e, 0x29, 0x99, 0x48, 0x53, 0x8f, 0xa1, + 0xa0, 0x0e, 0x16, 0xf6, 0xef, 0xc5, 0xb0, 0x39, 0x1b, 0x22, 0xc0, 0xeb, + 0xe5, 0x8c, 0xe2, 0xb2, 0xe7, 0xf1, 0x3e, 0xab, 0x6c, 0x84, 0xbd, 0xe3, + 0x07, 0x1f, 0xc0, 0xd0, 0xe2, 0xbd, 0x05, 0xec, 0xcc, 0x44, 0xb6, 0x7e, + 0x63, 0xfa, 0xd5, 0x2b, 0xcd, 0x02, 0x1d, 0x42, 0x26, 0x32, 0x44, 0x03, + 0x7a, 0xe2, 0x80, 0x38, 0xdd, 0x37, 0xc6, 0xba, 0x8c, 0xf2, 0x6d, 0x95, + 0xed, 0xc7, 0xfb, 0xf9, 0x19, 0xae, 0xae, 0xd7, 0x57, 0xb8, 0x94, 0x2f, + 0x9b, 0x6e, 0x30, 0x7f, 0x89, 0x1b, 0x22, 0xb8, 0xeb, 0x9f, 0x0d, 0x5a, + 0xdb, 0xea, 0x5e, 0x5b, 0x5c, 0x88, 0x88, 0x39, 0x0a, 0x39, 0xcd, 0x75, + 0x96, 0x71, 0x22, 0x42, 0xaa, 0xae, 0x1b, 0x03, 0xa8, 0xa0, 0x0d, 0x71, + 0x3e, 0xe1, 0x4f, 0x12, 0x66, 0xa9, 0xa0, 0xc5, 0x4c, 0xb4, 0x01, 0x60, + 0x3d, 0x2e, 0xea, 0x88, 0x53, 0x85, 0x00, 0x4a, 0x1a, 0x94, 0x35, 0x46, + 0x0d, 0x2e, 0x68, 0x02, 0x4d, 0xd4, 0xb9, 0xa8, 0xf3, 0x4b, 0x9a, 0x00, + 0x7e, 0x68, 0xcd, 0x37, 0x34, 0x66, 0x80, 0x16, 0x8a, 0x4c, 0xd1, 0x9a, + 0x00, 0x5c, 0xd2, 0x66, 0x93, 0x34, 0x66, 0x80, 0x17, 0x34, 0x66, 0x92, + 0x92, 0x80, 0x17, 0x34, 0x66, 0x92, 0x8a, 0x00, 0x5c, 0xd1, 0x49, 0x48, + 0x68, 0x01, 0xd4, 0x99, 0xa4, 0xa2, 0x80, 0x17, 0x34, 0x94, 0x99, 0xa3, + 0x34, 0x00, 0xb4, 0x52, 0x66, 0x93, 0x34, 0x00, 0xb4, 0x52, 0x51, 0x9a, + 0x00, 0x29, 0x28, 0xa4, 0xa0, 0x05, 0xa4, 0xa4, 0xa4, 0xa0, 0x05, 0xa2, + 0x92, 0x96, 0x80, 0x0a, 0x4a, 0x5a, 0x4a, 0x00, 0x29, 0x29, 0x69, 0x0d, + 0x00, 0x25, 0x21, 0x3c, 0x71, 0xd6, 0x94, 0x9a, 0x69, 0xa0, 0x08, 0xce, + 0x73, 0x93, 0xd6, 0x9a, 0x5a, 0xa4, 0x34, 0xc2, 0x28, 0x02, 0x29, 0x25, + 0x28, 0xa4, 0xe0, 0x9c, 0x76, 0x15, 0xcc, 0xea, 0xfe, 0x22, 0xbf, 0xb5, + 0x3b, 0x60, 0xb4, 0x2b, 0x9e, 0x03, 0x35, 0x74, 0x57, 0x12, 0xc5, 0x0a, + 0x16, 0x91, 0xc2, 0xfd, 0x4d, 0x73, 0x7b, 0xd7, 0x55, 0xbf, 0x31, 0xa4, + 0x8a, 0x40, 0xf7, 0xa0, 0x0c, 0x53, 0x73, 0xae, 0xea, 0x0d, 0xcc, 0xec, + 0x99, 0xec, 0xa7, 0x15, 0x72, 0xd3, 0x41, 0xd4, 0x6e, 0x1c, 0x2c, 0xb3, + 0x46, 0x49, 0xfe, 0xfb, 0x12, 0x6b, 0xa3, 0x8e, 0xcd, 0x2d, 0x57, 0x6a, + 0xa7, 0x3d, 0xcd, 0x1e, 0x52, 0x93, 0x90, 0x48, 0x3e, 0xb4, 0x01, 0x99, + 0x1f, 0x81, 0xee, 0x7c, 0xcd, 0xef, 0xa8, 0xec, 0x1f, 0xdd, 0x51, 0xff, + 0x00, 0xd7, 0xad, 0xb8, 0x3c, 0x3e, 0xb0, 0x28, 0xff, 0x00, 0x4c, 0x60, + 0x47, 0x70, 0xc7, 0xfc, 0x68, 0x0c, 0xe0, 0x63, 0x71, 0x3f, 0x53, 0x4b, + 0xb9, 0xbd, 0x28, 0x02, 0xdf, 0xd9, 0xfc, 0x88, 0xff, 0x00, 0xe3, 0xe4, + 0x3e, 0x3d, 0x6a, 0xba, 0xdc, 0x06, 0x38, 0xcd, 0x46, 0x58, 0xe3, 0xb0, + 0xa8, 0x8b, 0x46, 0xbc, 0xb4, 0x88, 0x3f, 0xe0, 0x42, 0x80, 0x2e, 0x89, + 0x07, 0xad, 0x3c, 0x3a, 0xfa, 0xd6, 0x4b, 0xea, 0x16, 0x71, 0x7d, 0xfb, + 0xb8, 0x57, 0xfe, 0x05, 0x55, 0x64, 0xf1, 0x0e, 0x97, 0x17, 0x5b, 0xc0, + 0xdf, 0xee, 0x82, 0x68, 0x03, 0xa2, 0x0e, 0xbf, 0xde, 0x14, 0xa6, 0x58, + 0x97, 0xef, 0x48, 0xa3, 0xea, 0x6b, 0x8f, 0x97, 0xc6, 0x1a, 0x7a, 0x7d, + 0xc5, 0x9a, 0x4f, 0xf8, 0x0e, 0x2b, 0x2a, 0xfb, 0xc5, 0xcf, 0x70, 0x8c, + 0x90, 0xd9, 0x80, 0x0f, 0x77, 0x6a, 0x00, 0xf4, 0x74, 0x96, 0x17, 0xfb, + 0xb2, 0xa1, 0xfa, 0x1a, 0x90, 0x81, 0x8c, 0x82, 0x0d, 0x78, 0xa2, 0xdc, + 0xde, 0x79, 0xa5, 0xd6, 0xe4, 0xc5, 0x93, 0x9c, 0x29, 0x35, 0xa5, 0x6d, + 0xae, 0x5f, 0xc3, 0x80, 0x6e, 0xd9, 0xc7, 0xa1, 0x26, 0x80, 0x3d, 0x54, + 0xc8, 0x07, 0x19, 0xa3, 0x7d, 0x71, 0x56, 0xde, 0x27, 0x8e, 0x38, 0x37, + 0xdc, 0x4a, 0x06, 0x3d, 0xeb, 0x33, 0x50, 0xf1, 0xe4, 0xc7, 0x29, 0x66, + 0x81, 0x47, 0xf7, 0x9a, 0x80, 0x3d, 0x27, 0x75, 0x2e, 0xe1, 0x5e, 0x33, + 0x2f, 0x8a, 0x35, 0x69, 0x4e, 0x4d, 0xe3, 0x8f, 0xa7, 0x15, 0x1f, 0xfc, + 0x24, 0x1a, 0xa1, 0xff, 0x00, 0x97, 0xd9, 0x7f, 0xef, 0xaa, 0x00, 0xf6, + 0xad, 0xd4, 0xb9, 0x15, 0xe2, 0xc3, 0x5e, 0xd5, 0x3f, 0xe7, 0xf6, 0x5f, + 0xfb, 0xea, 0x9d, 0xfd, 0xbf, 0xa9, 0x0e, 0xb7, 0xb2, 0xff, 0x00, 0xdf, + 0x54, 0x01, 0xec, 0xf9, 0xa5, 0xc8, 0xaf, 0x1a, 0x4f, 0x11, 0xea, 0x40, + 0xff, 0x00, 0xc7, 0xf4, 0x9f, 0x9d, 0x74, 0xfe, 0x17, 0xf1, 0x2d, 0xcd, + 0xcd, 0xe0, 0xb7, 0xb9, 0x9b, 0xcc, 0x0d, 0xd0, 0x9a, 0x00, 0xef, 0xb3, + 0x4b, 0x9a, 0x8c, 0x1c, 0x8a, 0x5c, 0xd0, 0x03, 0xf3, 0x4c, 0x95, 0x7c, + 0xc8, 0xd9, 0x7d, 0x46, 0x29, 0x68, 0xa0, 0x0f, 0x32, 0xd6, 0xf4, 0xc9, + 0x74, 0xbb, 0xd2, 0xd9, 0xdc, 0xae, 0x73, 0x90, 0x2a, 0x9a, 0x48, 0x1d, + 0x72, 0x2b, 0xd3, 0xef, 0xec, 0x63, 0xbf, 0xb6, 0x78, 0x64, 0x18, 0xdc, + 0x31, 0x9c, 0x72, 0x2b, 0xce, 0xb5, 0x4d, 0x1a, 0xe3, 0x4a, 0xb9, 0x6d, + 0x88, 0xef, 0x08, 0xe7, 0x76, 0x38, 0xa0, 0x08, 0x73, 0x4a, 0x0d, 0x43, + 0x1c, 0xca, 0xe3, 0x8e, 0xb4, 0xfc, 0xd0, 0x05, 0xb8, 0x6f, 0x6e, 0x20, + 0x39, 0x8a, 0x67, 0x5f, 0xa1, 0xad, 0x28, 0x3c, 0x4d, 0xa8, 0x43, 0xf7, + 0x9c, 0x48, 0x3f, 0xda, 0x15, 0x87, 0x4e, 0x07, 0x8a, 0x00, 0xeb, 0x61, + 0xf1, 0x8f, 0x41, 0x35, 0xbf, 0xe2, 0xa6, 0xb4, 0x21, 0xf1, 0x4d, 0x84, + 0x9f, 0x78, 0xb2, 0x1f, 0x71, 0x5c, 0x16, 0x69, 0x73, 0x40, 0x1e, 0x95, + 0x16, 0xb1, 0x61, 0x2f, 0xdd, 0xb9, 0x4f, 0xce, 0xac, 0xad, 0xcc, 0x2f, + 0xf7, 0x65, 0x43, 0xf4, 0x35, 0xe5, 0x81, 0xa9, 0xeb, 0x34, 0x8b, 0xf7, + 0x5d, 0x87, 0xd0, 0xd0, 0x07, 0xaa, 0x06, 0x07, 0xa1, 0xa3, 0x35, 0xe6, + 0x29, 0xa8, 0xdd, 0xc7, 0xf7, 0x6e, 0x24, 0x1f, 0xf0, 0x2a, 0xb2, 0x9a, + 0xee, 0xa0, 0x9d, 0x2e, 0x18, 0xfd, 0x68, 0x03, 0xd1, 0x37, 0x53, 0x5a, + 0x40, 0x3b, 0xd7, 0x06, 0x3c, 0x45, 0xa8, 0x0e, 0xb2, 0x83, 0xf5, 0x14, + 0xe1, 0xe2, 0x3b, 0xce, 0xfb, 0x0f, 0xe1, 0x40, 0x1d, 0xa3, 0xcd, 0x80, + 0x71, 0xcd, 0x54, 0x5b, 0x09, 0x35, 0x5d, 0xe1, 0xef, 0x5e, 0x15, 0x1f, + 0xc2, 0x83, 0x1f, 0xad, 0x73, 0x23, 0xc4, 0x97, 0x1d, 0xd1, 0x0d, 0x3e, + 0x3f, 0x13, 0x4f, 0x11, 0x25, 0x62, 0x5e, 0x7d, 0xe8, 0x03, 0x6d, 0xbc, + 0x0b, 0xa5, 0xb9, 0x26, 0x59, 0xe6, 0x91, 0xbd, 0x5a, 0x4a, 0x89, 0xbc, + 0x0f, 0xa5, 0x46, 0x09, 0x8d, 0xe5, 0x42, 0x3d, 0x1e, 0xb3, 0x87, 0x8b, + 0x26, 0xef, 0x0a, 0xfe, 0x74, 0x8d, 0xe2, 0xa9, 0x48, 0x3f, 0xba, 0x1f, + 0x9d, 0x00, 0x73, 0xa0, 0xf1, 0x46, 0x69, 0xb9, 0xa2, 0x80, 0x1d, 0x4b, + 0x9a, 0x6e, 0x69, 0x28, 0x01, 0xf9, 0xcd, 0x37, 0x62, 0x1f, 0x63, 0xed, + 0x46, 0x69, 0x33, 0x40, 0x0f, 0x56, 0xb8, 0x8b, 0x98, 0x66, 0x61, 0xed, + 0x9a, 0x95, 0x7c, 0x4d, 0xa8, 0xd9, 0xf5, 0x90, 0x90, 0x3b, 0x1a, 0x87, + 0x71, 0x03, 0x8a, 0xcd, 0x9d, 0x83, 0x33, 0x6e, 0xa0, 0x0e, 0x8e, 0x0f, + 0x88, 0x6e, 0x9c, 0x4d, 0x08, 0x6f, 0xa5, 0x6a, 0x5b, 0x7c, 0x41, 0xd3, + 0x25, 0xc0, 0x95, 0x5e, 0x33, 0xea, 0x46, 0x45, 0x79, 0xd3, 0xdb, 0x06, + 0x19, 0x5e, 0x6a, 0xbb, 0x40, 0x57, 0xb1, 0xa0, 0x0f, 0x6b, 0xb3, 0xd7, + 0x34, 0xfb, 0xf0, 0x0d, 0xbd, 0xd4, 0x6c, 0x4f, 0x6c, 0xf3, 0x57, 0xc3, + 0x82, 0x3a, 0xd7, 0x81, 0xaf, 0x99, 0x13, 0x6e, 0x46, 0x65, 0x23, 0xb8, + 0x38, 0xad, 0x7b, 0x1f, 0x15, 0x6a, 0xf6, 0x18, 0x09, 0x72, 0x5d, 0x47, + 0xf0, 0xc9, 0xcd, 0x00, 0x7b, 0x36, 0xea, 0x37, 0x57, 0x9f, 0x59, 0x7c, + 0x45, 0xe8, 0xb7, 0x96, 0xbf, 0x56, 0x43, 0x5d, 0x05, 0xa7, 0x8b, 0xf4, + 0x8b, 0xbc, 0x01, 0x72, 0x23, 0x6f, 0x47, 0xe2, 0x80, 0x3a, 0x2d, 0xd4, + 0x6e, 0xaa, 0xb1, 0x5d, 0x41, 0x3a, 0xee, 0x8a, 0x64, 0x71, 0xec, 0x6a, + 0x5c, 0xd0, 0x04, 0x9b, 0xa8, 0xdd, 0x51, 0x17, 0x55, 0xea, 0xc0, 0x7d, + 0x4d, 0x50, 0xbc, 0xd6, 0xac, 0xac, 0x94, 0x99, 0x66, 0x5c, 0xfa, 0x03, + 0x40, 0x1a, 0x85, 0xa8, 0xdd, 0x5c, 0x3d, 0xcf, 0x8e, 0xd5, 0x5c, 0xad, + 0xbd, 0xbe, 0xf1, 0xea, 0x4d, 0x54, 0x6f, 0x1c, 0x5f, 0xb7, 0xdd, 0xb7, + 0x8d, 0x7f, 0x1a, 0x00, 0xf4, 0x2d, 0xd4, 0x6e, 0xaf, 0x3a, 0x3e, 0x33, + 0xd4, 0xcf, 0x45, 0x88, 0x7e, 0x15, 0x19, 0xf1, 0x7e, 0xaa, 0xdd, 0x1e, + 0x31, 0xf4, 0x5a, 0x00, 0xf4, 0x8d, 0xd4, 0x6e, 0xaf, 0x37, 0x1e, 0x25, + 0xd5, 0xdf, 0xac, 0xca, 0xa3, 0xfd, 0xda, 0x79, 0xf1, 0x0e, 0xa2, 0x46, + 0x0d, 0xc1, 0xa0, 0x0f, 0x43, 0x2d, 0x4d, 0x2e, 0x3d, 0x6b, 0xce, 0x1b, + 0x5a, 0xbf, 0x3c, 0xb5, 0xd3, 0x8f, 0xc6, 0xa8, 0xdc, 0xeb, 0xd3, 0x74, + 0x33, 0xc8, 0xe7, 0xfd, 0xea, 0x00, 0xf5, 0x23, 0x22, 0xff, 0x00, 0x78, + 0x7e, 0x75, 0x13, 0xca, 0xa0, 0x72, 0xea, 0x3f, 0x1a, 0xf2, 0x56, 0xd5, + 0xee, 0xd8, 0xf1, 0x21, 0x1f, 0x8d, 0x37, 0xfb, 0x4a, 0xe9, 0x8f, 0xcd, + 0x21, 0x34, 0x01, 0xea, 0x32, 0xdd, 0x44, 0xa0, 0xe6, 0x54, 0x1f, 0xf0, + 0x2a, 0xc9, 0xbb, 0xd4, 0x2d, 0xc6, 0x47, 0x9a, 0xa4, 0xfb, 0x1c, 0xd7, + 0x15, 0x16, 0xa4, 0xe8, 0x72, 0x55, 0x5b, 0xeb, 0x5a, 0xd6, 0xfe, 0x27, + 0x96, 0x25, 0x18, 0xb4, 0x8b, 0x1e, 0xa1, 0x45, 0x00, 0x58, 0x9e, 0xf2, + 0x36, 0x3c, 0x13, 0xf9, 0x1a, 0xa3, 0x25, 0xc8, 0xec, 0xe4, 0x56, 0xac, + 0x3e, 0x2b, 0xf3, 0x8e, 0xd3, 0x1c, 0x6a, 0x7f, 0xdc, 0x15, 0xa3, 0x1e, + 0xaf, 0x6f, 0xb4, 0x19, 0x8c, 0x24, 0x1e, 0xbb, 0xd2, 0x80, 0x39, 0x23, + 0x72, 0x4f, 0x47, 0x06, 0x9a, 0x66, 0x6f, 0x40, 0x6b, 0xb3, 0x92, 0xe3, + 0xc3, 0x97, 0x09, 0x89, 0x92, 0xdb, 0x77, 0xaa, 0x8c, 0x57, 0x25, 0xac, + 0xa5, 0x94, 0x33, 0x67, 0x4d, 0x76, 0x2b, 0xfd, 0xde, 0xa2, 0x80, 0x20, + 0xfb, 0x53, 0x0f, 0xef, 0x0f, 0xa3, 0x11, 0x4f, 0x5d, 0x42, 0x64, 0xfb, + 0xb3, 0xce, 0xbf, 0x49, 0x0d, 0x52, 0x59, 0x5d, 0x87, 0xce, 0x98, 0x34, + 0x1f, 0xa1, 0xa0, 0x0d, 0x44, 0xd6, 0xef, 0xd3, 0xee, 0x6a, 0x37, 0x2b, + 0xf8, 0xe6, 0xac, 0xa7, 0x89, 0xf5, 0x84, 0xfb, 0x9a, 0xb3, 0xff, 0x00, + 0xc0, 0x94, 0x56, 0x0e, 0x0f, 0xa5, 0x26, 0x0f, 0xa5, 0x00, 0x74, 0x5f, + 0xf0, 0x93, 0xeb, 0xa5, 0xb2, 0xba, 0x9c, 0x59, 0xf7, 0x5a, 0x74, 0xda, + 0xe7, 0x89, 0xae, 0xad, 0xdc, 0x2e, 0xa4, 0x9b, 0x40, 0xe7, 0x68, 0xc5, + 0x73, 0x80, 0x1e, 0xf5, 0x26, 0x19, 0xa2, 0x64, 0x49, 0xb6, 0x16, 0xea, + 0x4d, 0x00, 0x55, 0x82, 0xf2, 0xea, 0x5d, 0x4b, 0x75, 0xc4, 0xed, 0x23, + 0xe7, 0x04, 0x93, 0x9a, 0xf4, 0x1b, 0x67, 0x96, 0x38, 0x91, 0xa3, 0x62, + 0x38, 0xae, 0x02, 0x0d, 0x2e, 0x74, 0x94, 0x48, 0x8e, 0x8f, 0x83, 0x9e, + 0x0d, 0x74, 0x31, 0xf8, 0x8e, 0xf2, 0xce, 0x20, 0x92, 0x59, 0x06, 0x03, + 0x8c, 0xd0, 0x07, 0x63, 0x06, 0xae, 0xc9, 0x81, 0x32, 0x67, 0xdc, 0x56, + 0x9c, 0x1a, 0x85, 0xbc, 0xdd, 0x1c, 0x03, 0xe8, 0x6b, 0xce, 0x5b, 0xc6, + 0x5f, 0xde, 0xb2, 0x51, 0xf8, 0xd3, 0x3f, 0xe1, 0x2f, 0x8f, 0xfe, 0x7d, + 0x88, 0x3e, 0xc6, 0x80, 0x3d, 0x54, 0x10, 0x79, 0x07, 0x34, 0xf1, 0x5e, + 0x5f, 0x6f, 0xe3, 0x99, 0x61, 0x71, 0xb5, 0x0e, 0xdf, 0x42, 0x6b, 0xb5, + 0xd1, 0x7c, 0x43, 0x6f, 0xab, 0x43, 0x95, 0x60, 0xb2, 0x77, 0x53, 0x40, + 0x1b, 0x94, 0xb4, 0xc0, 0xd4, 0xbb, 0xa8, 0x01, 0xd9, 0xa5, 0xcd, 0x33, + 0x75, 0x2e, 0x68, 0x01, 0xd9, 0xa3, 0x34, 0xdc, 0xd1, 0x9a, 0x00, 0x76, + 0x68, 0xcd, 0x26, 0x68, 0xcd, 0x00, 0x3b, 0x34, 0x99, 0xa6, 0xe6, 0x8c, + 0xd0, 0x03, 0xb3, 0x46, 0x69, 0x85, 0xd4, 0x75, 0x61, 0xf9, 0xd4, 0x4f, + 0x79, 0x6f, 0x1f, 0xdf, 0x99, 0x07, 0xd4, 0xd0, 0x05, 0x8a, 0x33, 0x59, + 0x92, 0xeb, 0xba, 0x7c, 0x3f, 0x7a, 0xe1, 0x4f, 0xd3, 0x9a, 0xa1, 0x37, + 0x8c, 0x34, 0xd8, 0xff, 0x00, 0x8f, 0x34, 0x01, 0xd1, 0x66, 0x92, 0xb9, + 0x19, 0x3c, 0x79, 0x64, 0xa7, 0x08, 0x84, 0xd5, 0x49, 0x3e, 0x20, 0x28, + 0xfb, 0x96, 0xd9, 0xa0, 0x0e, 0xe6, 0x8c, 0xd7, 0x9f, 0x37, 0xc4, 0x19, + 0xbf, 0x86, 0xd4, 0x7e, 0x74, 0xdf, 0xf8, 0x58, 0x37, 0x3f, 0xf3, 0xe8, + 0x3f, 0x3a, 0x00, 0xf4, 0x2c, 0xd1, 0x9a, 0xf3, 0xcf, 0xf8, 0x58, 0x17, + 0x5d, 0xac, 0xc5, 0x21, 0xf8, 0x81, 0x75, 0xff, 0x00, 0x3e, 0x8b, 0xf9, + 0xd0, 0x07, 0xa1, 0xe6, 0x8c, 0xd7, 0x9d, 0x9f, 0x88, 0x17, 0x5f, 0xf3, + 0xec, 0x9f, 0x9d, 0x30, 0xfc, 0x40, 0xbc, 0xff, 0x00, 0x9f, 0x74, 0xa0, + 0x0f, 0x46, 0xcd, 0x19, 0xaf, 0x38, 0x3e, 0x3f, 0xbe, 0xff, 0x00, 0x9e, + 0x29, 0x51, 0x9f, 0x1e, 0xea, 0x07, 0xa4, 0x51, 0xfe, 0x54, 0x01, 0xe9, + 0x59, 0xa4, 0x35, 0xe6, 0x67, 0xc7, 0x7a, 0xa1, 0xe8, 0xb1, 0x8f, 0xf8, + 0x0d, 0x30, 0xf8, 0xe3, 0x56, 0x3f, 0xf3, 0xcf, 0xfe, 0xf9, 0xa0, 0x0f, + 0x4f, 0xcd, 0x15, 0xe5, 0xff, 0x00, 0xf0, 0x9b, 0xea, 0xfe, 0xb1, 0xff, + 0x00, 0xdf, 0x34, 0xf5, 0xf1, 0xce, 0xaa, 0x3a, 0x88, 0xcf, 0xe1, 0x40, + 0x1e, 0x99, 0x4b, 0x9a, 0xf3, 0x94, 0xf1, 0xf5, 0xf2, 0xfd, 0xfb, 0x78, + 0xda, 0xac, 0xc5, 0xf1, 0x13, 0x1f, 0xeb, 0x6c, 0xff, 0x00, 0xef, 0x96, + 0xa0, 0x0e, 0xf7, 0x34, 0x99, 0xae, 0x42, 0x2f, 0x88, 0x16, 0x0d, 0xf7, + 0xe1, 0x95, 0x6a, 0xdc, 0x7e, 0x37, 0xd1, 0xdf, 0xac, 0xac, 0xbf, 0x55, + 0x34, 0x01, 0xd2, 0x66, 0x93, 0x35, 0x8b, 0x1f, 0x8a, 0xb4, 0x79, 0x3a, + 0x5d, 0xa0, 0xfa, 0xf1, 0x53, 0xae, 0xbf, 0xa5, 0xbf, 0x4b, 0xd8, 0x7f, + 0xef, 0xa1, 0x40, 0x1a, 0x59, 0xa6, 0x96, 0x0a, 0x39, 0x35, 0x9b, 0x73, + 0xae, 0x58, 0xc3, 0x11, 0x74, 0xb8, 0x8d, 0xcf, 0x60, 0x1a, 0xb9, 0x2d, + 0x57, 0x5d, 0xd4, 0x2e, 0x49, 0x11, 0x48, 0x88, 0x87, 0xd0, 0xd0, 0x07, + 0x61, 0x75, 0xab, 0x5a, 0x5b, 0x67, 0x7c, 0xa0, 0x91, 0xd8, 0x56, 0x05, + 0xf7, 0x8a, 0xf8, 0x2b, 0x00, 0xc7, 0xb9, 0xae, 0x2a, 0x69, 0x2f, 0x5c, + 0x92, 0xd2, 0x83, 0xf8, 0xd5, 0x37, 0xf3, 0xfb, 0xbd, 0x00, 0x6c, 0xdf, + 0xea, 0xd2, 0xdc, 0xe7, 0x7c, 0x84, 0xfe, 0x35, 0x81, 0x2d, 0xdc, 0xf6, + 0xf7, 0x22, 0x58, 0x66, 0x64, 0x7f, 0x50, 0x69, 0x4f, 0x99, 0xdd, 0xaa, + 0xbc, 0xe8, 0xc4, 0x64, 0xf3, 0x40, 0x1d, 0x15, 0xbf, 0x8b, 0xb5, 0xa8, + 0xa1, 0x09, 0xf6, 0xa8, 0xdc, 0x7a, 0xba, 0xe4, 0xd3, 0x5f, 0xc5, 0x3a, + 0xb3, 0x9c, 0x9b, 0x94, 0x1f, 0xee, 0xad, 0x73, 0xb6, 0xeb, 0x23, 0x36, + 0xd5, 0x52, 0x6b, 0x49, 0x34, 0xf7, 0xdb, 0xba, 0x46, 0x08, 0x3d, 0xe8, + 0x02, 0xe3, 0x78, 0x93, 0x55, 0x6f, 0xf9, 0x7d, 0x71, 0xf4, 0x02, 0xa1, + 0x6d, 0x6f, 0x51, 0x7f, 0xbd, 0x7b, 0x31, 0xfc, 0x71, 0x55, 0xdd, 0x2d, + 0xe3, 0xe1, 0x72, 0xe7, 0xf4, 0xa8, 0xc2, 0xe7, 0xa8, 0x02, 0x80, 0x26, + 0x6d, 0x46, 0xe9, 0xfe, 0xf5, 0xc4, 0xc7, 0xea, 0xe6, 0xa2, 0x37, 0x12, + 0x37, 0x57, 0x63, 0xf5, 0x63, 0x49, 0xb0, 0x52, 0xec, 0x14, 0x00, 0xcf, + 0x31, 0x8d, 0x1b, 0x9b, 0xd6, 0x9e, 0x50, 0x1e, 0xa6, 0xac, 0x41, 0x7a, + 0x96, 0xbf, 0xf2, 0xce, 0x16, 0xf7, 0x65, 0xcd, 0x00, 0x54, 0xf9, 0xcf, + 0xa9, 0xa7, 0x79, 0x6f, 0xe8, 0x6b, 0x55, 0x7c, 0x48, 0xea, 0x30, 0xa9, + 0x00, 0xfa, 0x2d, 0x20, 0xf1, 0x24, 0xe1, 0xb7, 0x16, 0x84, 0x8f, 0x4d, + 0xb4, 0x01, 0x97, 0xb1, 0x87, 0x63, 0x4d, 0x3b, 0x80, 0xe8, 0x6b, 0x6f, + 0xfe, 0x12, 0x27, 0x9f, 0xe5, 0x31, 0x40, 0x73, 0xfe, 0xcd, 0x55, 0x9e, + 0x65, 0xe5, 0xfc, 0xb5, 0xc9, 0xf4, 0x14, 0x01, 0x8b, 0x29, 0x62, 0x79, + 0xcd, 0x45, 0x9f, 0x63, 0x5a, 0xbe, 0x60, 0x6e, 0x70, 0x83, 0xf0, 0xa8, + 0xd9, 0xd0, 0x7f, 0x02, 0x7e, 0x54, 0x01, 0x9d, 0x9f, 0x63, 0x4b, 0xbf, + 0x1d, 0x8d, 0x5d, 0xf3, 0x40, 0xe8, 0xa9, 0xf9, 0x52, 0x8b, 0x80, 0x3a, + 0xc6, 0xa6, 0x80, 0x28, 0x99, 0x1b, 0x1e, 0x94, 0xcc, 0xb3, 0x56, 0xb4, + 0x72, 0x5b, 0xc8, 0x70, 0xc8, 0x01, 0xfa, 0x55, 0x94, 0x48, 0xd4, 0x86, + 0x58, 0xa3, 0x3f, 0xf0, 0x1a, 0x00, 0xc3, 0x8a, 0x09, 0x65, 0x60, 0xa9, + 0x1b, 0x31, 0x3e, 0x82, 0xbd, 0x1f, 0xc1, 0xbe, 0x1c, 0x36, 0x89, 0xf6, + 0xbb, 0x94, 0x22, 0x43, 0xf7, 0x41, 0xed, 0x59, 0x96, 0x1e, 0x20, 0x7b, + 0x22, 0x07, 0xd9, 0xa2, 0x2a, 0x3d, 0x14, 0x0a, 0xe8, 0x20, 0xf1, 0x9d, + 0xa9, 0x00, 0x49, 0x0b, 0xaf, 0xd2, 0x80, 0x3a, 0x91, 0x4a, 0x2b, 0x2e, + 0xd7, 0x5f, 0xd3, 0xee, 0xf0, 0x12, 0x75, 0x07, 0xd1, 0xb8, 0xab, 0xe2, + 0x78, 0x88, 0xc8, 0x91, 0x31, 0xf5, 0xa0, 0x09, 0x73, 0x4b, 0x9a, 0x87, + 0xed, 0x10, 0x8f, 0xf9, 0x6a, 0x9f, 0x9d, 0x38, 0x4b, 0x19, 0x19, 0x0e, + 0xbf, 0x9d, 0x00, 0x49, 0x9a, 0x86, 0xe6, 0xda, 0x3b, 0xa8, 0x5a, 0x29, + 0x46, 0x55, 0xb8, 0x35, 0x5a, 0xe7, 0x57, 0xb0, 0xb4, 0x19, 0x9e, 0xea, + 0x24, 0xfa, 0xb5, 0x62, 0x5d, 0xf8, 0xf7, 0x49, 0xb7, 0xc8, 0x88, 0xbc, + 0xcd, 0xfe, 0xc8, 0xa0, 0x0c, 0xfd, 0x63, 0xc2, 0x66, 0x0c, 0xcb, 0x63, + 0xb8, 0xa8, 0xe4, 0x82, 0x6b, 0x9b, 0x32, 0x3c, 0x0e, 0x52, 0x65, 0x2a, + 0x45, 0x6a, 0xde, 0xfc, 0x43, 0xb9, 0x90, 0x15, 0xb5, 0xb5, 0x54, 0x1e, + 0xae, 0x72, 0x6b, 0x9c, 0x9b, 0x55, 0xbb, 0xbf, 0x98, 0xbc, 0xdb, 0x5b, + 0x3e, 0xd8, 0xa0, 0x0d, 0x35, 0x90, 0x30, 0xe0, 0xd3, 0xf7, 0x56, 0x64, + 0x21, 0x8b, 0x7c, 0xa4, 0x8a, 0xbe, 0xb9, 0x03, 0x9a, 0x00, 0x97, 0x34, + 0x66, 0x9b, 0x45, 0x00, 0x3f, 0x34, 0x66, 0x9b, 0x9a, 0x33, 0x40, 0x0f, + 0xcd, 0x19, 0xa6, 0xd2, 0xd0, 0x03, 0xb3, 0x46, 0x69, 0x33, 0x46, 0x68, + 0x01, 0xd9, 0xa5, 0xcd, 0x33, 0x34, 0xb9, 0xa0, 0x07, 0x67, 0x14, 0x67, + 0x8a, 0x66, 0x69, 0x73, 0xc5, 0x00, 0x20, 0xe9, 0x46, 0x6a, 0x2f, 0x31, + 0x07, 0xf1, 0x0f, 0xce, 0x93, 0xcd, 0x4f, 0xef, 0x0f, 0xce, 0x80, 0x26, + 0xcd, 0x26, 0x6a, 0x1f, 0x3e, 0x31, 0xfc, 0x6b, 0xf9, 0xd2, 0x1b, 0xa8, + 0x47, 0x59, 0x05, 0x00, 0x58, 0xcd, 0x19, 0xaa, 0xa6, 0xf6, 0xdc, 0x7f, + 0xcb, 0x41, 0x4c, 0x3a, 0x95, 0xb8, 0xfe, 0x3a, 0x00, 0xb8, 0xed, 0xb5, + 0x0d, 0x64, 0xcd, 0x27, 0xcc, 0x79, 0xa7, 0xcd, 0xa9, 0xc4, 0xc3, 0x00, + 0x9a, 0xa0, 0xd7, 0x0a, 0xcd, 0x9a, 0x00, 0xb4, 0xad, 0xef, 0x52, 0x06, + 0xc8, 0xe6, 0xa9, 0x09, 0x97, 0xd6, 0x9e, 0x26, 0x5f, 0x5a, 0x00, 0xb4, + 0x51, 0x1b, 0xa8, 0x14, 0xd3, 0x04, 0x67, 0xb5, 0x42, 0x27, 0x1e, 0xf4, + 0xef, 0x3b, 0xd3, 0x34, 0x00, 0xe3, 0x6b, 0x19, 0xec, 0x69, 0x86, 0xca, + 0x23, 0xdc, 0xfe, 0x74, 0xef, 0x35, 0x8f, 0x45, 0x34, 0xed, 0xd2, 0x1e, + 0x88, 0x68, 0x01, 0xd0, 0xa4, 0x96, 0xed, 0xba, 0x1b, 0x89, 0x50, 0xff, + 0x00, 0xb2, 0xd8, 0xad, 0xab, 0x4f, 0x12, 0xea, 0x96, 0xab, 0xb7, 0xed, + 0x26, 0x41, 0xfe, 0xd8, 0xcd, 0x62, 0x85, 0x94, 0xff, 0x00, 0x09, 0xa7, + 0x79, 0x52, 0x77, 0xe3, 0xf1, 0xa0, 0x0d, 0x2b, 0xed, 0x6e, 0xf2, 0xfc, + 0xfe, 0xf6, 0x66, 0x51, 0xe8, 0xa7, 0x15, 0x9c, 0x70, 0x79, 0x62, 0x4f, + 0xd4, 0xd2, 0x79, 0x78, 0xfb, 0xce, 0xa3, 0xf1, 0xa3, 0x74, 0x2b, 0xd6, + 0x51, 0xf8, 0x50, 0x03, 0x80, 0x1d, 0x85, 0x3c, 0x46, 0x4f, 0x5e, 0x2a, + 0x23, 0x75, 0x6e, 0xbf, 0xc4, 0x4d, 0x30, 0xea, 0x08, 0x3e, 0xea, 0x13, + 0x40, 0x16, 0xd6, 0x25, 0xef, 0xcd, 0x4a, 0x14, 0x0e, 0x80, 0x0a, 0xcb, + 0x6d, 0x4a, 0x43, 0xf7, 0x54, 0x0a, 0x81, 0xee, 0xa6, 0x7e, 0xae, 0x68, + 0x03, 0x65, 0xa6, 0x8d, 0x3e, 0xf3, 0x8a, 0xad, 0x26, 0xa3, 0x1a, 0xf0, + 0x83, 0x26, 0xb2, 0x49, 0x63, 0xd5, 0xa8, 0xc7, 0xbd, 0x00, 0x59, 0x96, + 0xea, 0x49, 0x73, 0x96, 0xc0, 0xf4, 0xa8, 0xb3, 0x4c, 0xc5, 0x18, 0xa0, + 0x09, 0x37, 0x0a, 0x5d, 0xe3, 0xb5, 0x30, 0x23, 0x37, 0x4a, 0x99, 0x63, + 0x0b, 0xcb, 0x1a, 0x00, 0x54, 0x1b, 0x8f, 0xb5, 0x4a, 0xef, 0xb5, 0x70, + 0x0d, 0x46, 0x64, 0x55, 0x18, 0x14, 0xd4, 0x57, 0x91, 0xbd, 0xa8, 0x02, + 0xdd, 0x98, 0xf9, 0xb7, 0x1a, 0xbe, 0xe4, 0x3a, 0xed, 0x6e, 0x95, 0x52, + 0x33, 0xe5, 0xad, 0x31, 0xef, 0x42, 0x9e, 0x94, 0x01, 0x24, 0x90, 0xa8, + 0xfb, 0xac, 0xc3, 0xf1, 0xaa, 0x73, 0x09, 0x14, 0x7c, 0xb2, 0xb7, 0xe3, + 0x4a, 0xfa, 0x8f, 0xb5, 0x56, 0x92, 0xf0, 0xb7, 0xf0, 0xd0, 0x04, 0x66, + 0xe6, 0xe1, 0x4f, 0xdf, 0xa9, 0x62, 0xbd, 0x6c, 0xe1, 0xcd, 0x54, 0x67, + 0x2c, 0x73, 0x4c, 0xcf, 0x34, 0x01, 0xb6, 0xb2, 0xab, 0x0c, 0xe6, 0x9d, + 0xb8, 0x1e, 0xe2, 0xb1, 0x03, 0x11, 0x53, 0x47, 0x3a, 0x8f, 0xbc, 0xb9, + 0xa0, 0x0d, 0x4d, 0xca, 0x3f, 0x88, 0x7e, 0x74, 0x79, 0x89, 0x8f, 0xbc, + 0x2a, 0x9a, 0xcb, 0x13, 0x76, 0x15, 0x28, 0x31, 0x9e, 0x81, 0x68, 0x02, + 0x61, 0x3a, 0xa1, 0xf9, 0x64, 0xc7, 0xd2, 0xad, 0x41, 0xa8, 0x48, 0x4e, + 0xdc, 0x6f, 0x1f, 0x4a, 0xa5, 0xc7, 0xa0, 0xa7, 0x2c, 0x85, 0x4f, 0x04, + 0x8f, 0xa5, 0x00, 0x6e, 0x7f, 0x67, 0xc5, 0x75, 0x16, 0xf7, 0x89, 0x41, + 0xf6, 0xe0, 0xd5, 0x09, 0xb4, 0x34, 0x3f, 0xea, 0xdc, 0x8f, 0x63, 0x55, + 0x7e, 0xd1, 0x28, 0xe9, 0x2b, 0x7e, 0x75, 0x22, 0xdf, 0xce, 0xbf, 0xc5, + 0x9f, 0xad, 0x00, 0x43, 0x26, 0x8f, 0x70, 0x9f, 0x74, 0x06, 0x1e, 0xd5, + 0x35, 0x94, 0x97, 0x9a, 0x64, 0xeb, 0x2a, 0x06, 0x52, 0x2a, 0x74, 0xd5, + 0x1f, 0xf8, 0x97, 0x3f, 0x4a, 0x78, 0xd5, 0x23, 0x3f, 0x79, 0x0d, 0x00, + 0x76, 0x9a, 0x67, 0x8c, 0xac, 0xe4, 0x80, 0x0b, 0xb9, 0x04, 0x72, 0x01, + 0xce, 0x6a, 0xf1, 0xf1, 0x76, 0x8e, 0x3f, 0xe5, 0xe4, 0x1f, 0xa0, 0xaf, + 0x3d, 0x37, 0x56, 0x72, 0x7d, 0xe0, 0xbf, 0x95, 0x44, 0xd1, 0xd8, 0xbf, + 0x70, 0x3f, 0x1a, 0x00, 0xf4, 0x26, 0xf1, 0xb6, 0x8c, 0xbd, 0x26, 0x63, + 0xf4, 0x5a, 0x89, 0xfc, 0x77, 0xa5, 0x2f, 0x4f, 0x30, 0xff, 0x00, 0xc0, + 0x6b, 0xcf, 0x9a, 0xd6, 0xd0, 0xf4, 0x7c, 0x7e, 0x35, 0x0b, 0x5b, 0x42, + 0x3e, 0xec, 0xab, 0xf8, 0xd0, 0x07, 0x7e, 0xff, 0x00, 0x10, 0x6c, 0x07, + 0xdd, 0x86, 0x56, 0xfd, 0x2a, 0x07, 0xf8, 0x8b, 0x00, 0xfb, 0x96, 0x8d, + 0xf8, 0xb0, 0xae, 0x10, 0x5b, 0xf3, 0xfe, 0xb2, 0x20, 0x3d, 0xea, 0xe4, + 0x3a, 0x6d, 0xb4, 0x9f, 0xeb, 0x35, 0x18, 0x53, 0xfe, 0x03, 0x9a, 0x00, + 0xe9, 0xa4, 0xf8, 0x8b, 0x2e, 0x3f, 0x77, 0x68, 0x9f, 0x89, 0xaa, 0xaf, + 0xf1, 0x07, 0x50, 0x6f, 0xb9, 0x14, 0x6b, 0xf8, 0x13, 0x59, 0x12, 0x69, + 0xba, 0x7c, 0x4b, 0x9f, 0xed, 0x5d, 0xe7, 0xd1, 0x23, 0xff, 0x00, 0xeb, + 0xd6, 0x5d, 0xc0, 0x55, 0x6c, 0x43, 0x23, 0xb0, 0xf5, 0x20, 0x0a, 0x00, + 0xe8, 0x9f, 0xc6, 0xfa, 0xbb, 0xf4, 0x70, 0x3e, 0x8b, 0x55, 0x9f, 0xc5, + 0x5a, 0xbc, 0x9d, 0x6e, 0x18, 0x7e, 0x38, 0xae, 0x70, 0x99, 0xbd, 0xe9, + 0xa4, 0x4f, 0xe8, 0x68, 0x03, 0x72, 0x4d, 0x73, 0x51, 0x93, 0xef, 0xdd, + 0x1f, 0xfb, 0xea, 0xaa, 0xbe, 0xa3, 0x3b, 0x7d, 0xfb, 0xa3, 0xf8, 0x1a, + 0xc9, 0x29, 0x31, 0xea, 0x0d, 0x34, 0xc3, 0x27, 0x70, 0x68, 0x03, 0x41, + 0xef, 0x14, 0xfd, 0xe9, 0x9d, 0xbf, 0x1a, 0x60, 0xba, 0x8c, 0x9e, 0x11, + 0x8d, 0x52, 0x11, 0x36, 0x79, 0x53, 0xf9, 0x55, 0xb8, 0x47, 0x97, 0xc8, + 0x42, 0x7e, 0xb4, 0x01, 0x6e, 0x36, 0x2c, 0x38, 0x1b, 0x7e, 0xb5, 0x20, + 0x50, 0x39, 0x63, 0xc7, 0xb5, 0x44, 0x1c, 0x91, 0xe9, 0x46, 0xec, 0xe3, + 0x3d, 0xa8, 0x02, 0xc0, 0x19, 0xff, 0x00, 0x57, 0x16, 0x47, 0xab, 0x54, + 0xa9, 0x14, 0xa7, 0xfb, 0xa3, 0xe8, 0x29, 0x12, 0xf1, 0x30, 0x03, 0xaf, + 0x4f, 0x4a, 0xb5, 0x15, 0xfc, 0x0a, 0x73, 0x9f, 0xce, 0x80, 0x12, 0x3d, + 0x36, 0x69, 0x07, 0x25, 0xb0, 0x7d, 0xea, 0x5f, 0xec, 0x94, 0x8c, 0x66, + 0x46, 0x0b, 0xf5, 0x35, 0x72, 0x3d, 0x5e, 0xdf, 0x00, 0x12, 0x29, 0xd2, + 0x5c, 0xd8, 0xdc, 0x81, 0xbd, 0xb9, 0x1d, 0x0e, 0x68, 0x02, 0x9a, 0xe9, + 0x70, 0x9e, 0x99, 0x3f, 0x85, 0x48, 0x34, 0x88, 0x8f, 0xf0, 0x7e, 0x95, + 0x61, 0x64, 0xb7, 0x07, 0x2b, 0x75, 0xf9, 0xf3, 0x52, 0x0b, 0x88, 0xf1, + 0xff, 0x00, 0x1f, 0x29, 0xf9, 0x50, 0x05, 0x41, 0xa4, 0x45, 0xfd, 0xc1, + 0x4a, 0x74, 0x88, 0xbf, 0xe7, 0x9f, 0xe4, 0x2a, 0xd7, 0x9d, 0x1f, 0x7b, + 0x84, 0xa7, 0x8b, 0xa8, 0xd7, 0xfe, 0x5e, 0x12, 0x80, 0x33, 0xdb, 0x4a, + 0xb7, 0x1f, 0x7b, 0xe5, 0xfa, 0x8c, 0x53, 0x4e, 0x8a, 0x8c, 0x32, 0x98, + 0x23, 0xd8, 0xd6, 0x84, 0x97, 0x10, 0x48, 0xbb, 0x5e, 0xe4, 0x63, 0xd0, + 0x52, 0x47, 0x77, 0x65, 0x6e, 0xbb, 0x51, 0xc6, 0x3e, 0xb4, 0x01, 0x8f, + 0x2e, 0x8d, 0x22, 0xfd, 0xdc, 0x81, 0xee, 0x2a, 0xab, 0x69, 0x77, 0x03, + 0x3b, 0x70, 0x7f, 0x1a, 0xe8, 0x24, 0xd5, 0xed, 0x80, 0xe1, 0xd7, 0xf1, + 0x35, 0x42, 0x5d, 0x42, 0xd4, 0xb6, 0x77, 0xff, 0x00, 0xdf, 0x34, 0x01, + 0x86, 0xf1, 0xcb, 0x13, 0x6d, 0x75, 0x20, 0xfb, 0x8a, 0x85, 0xbc, 0xdc, + 0xf0, 0x16, 0xb5, 0xae, 0xef, 0xa2, 0x9d, 0x42, 0xaa, 0xf4, 0xee, 0x6a, + 0x81, 0x05, 0xba, 0x0a, 0x00, 0x9a, 0xd3, 0x4b, 0x9e, 0xf0, 0x7c, 0x92, + 0x5b, 0x6e, 0xfe, 0xeb, 0x36, 0x0d, 0x5d, 0x6f, 0x09, 0xea, 0xe0, 0x65, + 0x6d, 0x03, 0x8f, 0x54, 0x7a, 0xcd, 0x58, 0xdf, 0x39, 0x53, 0x83, 0xf5, + 0xad, 0xdd, 0x27, 0x5d, 0xd4, 0x34, 0xf6, 0x0a, 0xf2, 0xac, 0x91, 0x7a, + 0x33, 0x50, 0x06, 0x63, 0xf8, 0x77, 0x55, 0x8f, 0xef, 0x58, 0xcc, 0x3e, + 0x84, 0x1a, 0xa3, 0x35, 0xbc, 0xd6, 0xcd, 0xb6, 0x64, 0x92, 0x33, 0xee, + 0x2b, 0xd0, 0x9b, 0xc6, 0x56, 0xc6, 0x3c, 0x32, 0x60, 0xe3, 0xfb, 0xd5, + 0xca, 0xea, 0xd7, 0x16, 0xfa, 0x8c, 0xa5, 0xfc, 0xfd, 0x99, 0xec, 0x5b, + 0x34, 0x01, 0x83, 0xbf, 0xfe, 0x9a, 0x1f, 0xc6, 0x94, 0x33, 0x63, 0xfd, + 0x60, 0xa9, 0xcd, 0x95, 0xa0, 0xe4, 0xdc, 0xab, 0x7e, 0x74, 0xd1, 0x1d, + 0x9a, 0x74, 0x70, 0x7f, 0x0a, 0x00, 0x88, 0x07, 0xec, 0xd9, 0xa7, 0x88, + 0x66, 0x6e, 0x9f, 0xce, 0xa6, 0x59, 0xad, 0xc1, 0xc0, 0x70, 0x3f, 0x0a, + 0x7b, 0x5c, 0x46, 0xa3, 0xe4, 0x90, 0x1a, 0x00, 0x64, 0x76, 0x52, 0x37, + 0xdf, 0x60, 0x05, 0x5b, 0x8e, 0xca, 0xdd, 0x07, 0xcf, 0xf3, 0x7d, 0x6a, + 0x91, 0xba, 0x90, 0xf4, 0x60, 0x3f, 0x0a, 0x8c, 0xc8, 0xed, 0xd6, 0x42, + 0x68, 0x03, 0x49, 0xe5, 0x82, 0x15, 0xc2, 0x6d, 0x5f, 0xa5, 0x66, 0xcf, + 0x2b, 0x4a, 0xdf, 0x7d, 0x8d, 0x26, 0x05, 0x2e, 0x0f, 0xa5, 0x00, 0x44, + 0x0b, 0x8e, 0x80, 0x53, 0xbc, 0xc9, 0x07, 0xf0, 0x0a, 0x77, 0x4a, 0x42, + 0x4f, 0x6a, 0x00, 0x4f, 0x35, 0xbf, 0xb9, 0x48, 0x67, 0xc7, 0x54, 0xa6, + 0x3b, 0x49, 0xd9, 0x6a, 0x06, 0x59, 0x4f, 0x63, 0x40, 0x12, 0xbd, 0xd6, + 0x46, 0x02, 0xe2, 0xab, 0x33, 0x96, 0x39, 0x34, 0xa6, 0x29, 0x3f, 0xba, + 0x69, 0x3c, 0xb7, 0xfe, 0xe9, 0xa0, 0x07, 0x2e, 0x2a, 0x64, 0x0a, 0x4f, + 0x20, 0x54, 0x1b, 0x58, 0x76, 0x34, 0xe5, 0x72, 0xb4, 0x01, 0xa5, 0x16, + 0xc5, 0x1c, 0x01, 0x52, 0xc8, 0x77, 0xa1, 0x15, 0x9e, 0x97, 0x40, 0x55, + 0x98, 0xe6, 0x0c, 0x28, 0x02, 0x00, 0x76, 0xb6, 0x0d, 0x3d, 0x86, 0xe1, + 0x9e, 0xf4, 0x4d, 0x1e, 0x79, 0x15, 0x12, 0xc8, 0x54, 0xe1, 0xa8, 0x01, + 0x0f, 0x5a, 0x6e, 0x6a, 0x53, 0x87, 0x15, 0x19, 0x88, 0xf6, 0xa0, 0x04, + 0x35, 0x24, 0x77, 0x12, 0x46, 0x78, 0x39, 0x15, 0x11, 0x53, 0x49, 0x8a, + 0x00, 0xd1, 0x4b, 0xf5, 0x3c, 0x3a, 0xd4, 0xc2, 0x48, 0xdf, 0x94, 0x7a, + 0xc8, 0xc5, 0x03, 0x23, 0xa1, 0xa0, 0x0d, 0x83, 0xbb, 0x1e, 0xbf, 0x4a, + 0x8d, 0x9d, 0xc0, 0xc6, 0xf7, 0x1f, 0x8d, 0x50, 0x49, 0xe4, 0x4e, 0x8c, + 0x6a, 0x51, 0x7a, 0xff, 0x00, 0xc4, 0xa0, 0xd0, 0x04, 0x86, 0x67, 0x07, + 0xfd, 0x63, 0x7e, 0x74, 0x0b, 0xe9, 0xd4, 0x15, 0x5b, 0x89, 0x14, 0x7a, + 0x06, 0x34, 0xdf, 0xb4, 0xc4, 0xdf, 0x7a, 0x3f, 0xca, 0x9a, 0x7e, 0xcc, + 0xfd, 0xc8, 0xa0, 0x08, 0x9f, 0x12, 0x1c, 0xb3, 0x16, 0x3e, 0xe6, 0xa3, + 0x28, 0xa3, 0xa5, 0x58, 0x36, 0xd0, 0xb7, 0xdd, 0x98, 0x53, 0x4d, 0x93, + 0x7f, 0x0c, 0x8a, 0x7f, 0x1a, 0x00, 0x80, 0xf1, 0x4e, 0x8a, 0x4c, 0x36, + 0x09, 0xa7, 0x1b, 0x39, 0xc7, 0x4c, 0x1f, 0xc6, 0xa3, 0x36, 0xd3, 0x8f, + 0xe0, 0x34, 0x01, 0xab, 0x6f, 0x2a, 0xf1, 0xcd, 0x5d, 0x56, 0x04, 0x71, + 0x5c, 0xe8, 0x13, 0xa7, 0xf0, 0x37, 0xe5, 0x52, 0xa5, 0xe4, 0xf1, 0xf5, + 0x07, 0xf2, 0xa0, 0x0d, 0xfc, 0xd1, 0x9a, 0xc8, 0x4d, 0x50, 0x8f, 0xbc, + 0xa6, 0xa6, 0x5d, 0x56, 0x23, 0xd4, 0x11, 0x40, 0x1a, 0x59, 0xa3, 0x35, + 0x48, 0x6a, 0x30, 0x1f, 0xe2, 0xa7, 0x8b, 0xd8, 0x0f, 0xfc, 0xb4, 0x14, + 0x01, 0x6f, 0x34, 0x66, 0xab, 0x8b, 0x98, 0x4f, 0x49, 0x16, 0x9d, 0xe7, + 0xc4, 0x7f, 0x8d, 0x7f, 0x3a, 0x00, 0x9e, 0x8c, 0xfa, 0xd4, 0x3e, 0x6a, + 0x7f, 0x7c, 0x7e, 0x74, 0xbe, 0x62, 0x7f, 0x78, 0x7e, 0x74, 0x01, 0x2e, + 0xe1, 0xe9, 0x46, 0x6a, 0x2f, 0x31, 0x7f, 0xbc, 0x3f, 0x3a, 0x5d, 0xeb, + 0xfd, 0xe1, 0xf9, 0xd0, 0x04, 0x99, 0xa5, 0xed, 0x51, 0xef, 0x5f, 0xef, + 0x0a, 0x37, 0xaf, 0xf7, 0x87, 0xe7, 0x40, 0x18, 0x06, 0x4b, 0x7f, 0x59, + 0x3f, 0xef, 0xaa, 0x37, 0xdb, 0xff, 0x00, 0xb7, 0xff, 0x00, 0x7d, 0x54, + 0xbf, 0xd8, 0xd7, 0x7f, 0xf3, 0xef, 0x37, 0xfd, 0xfb, 0x34, 0x7f, 0x63, + 0x5d, 0xff, 0x00, 0xcf, 0x09, 0xbf, 0xef, 0xd9, 0xa0, 0x08, 0xb7, 0x5b, + 0x7a, 0x3f, 0xfd, 0xf5, 0x4a, 0x3e, 0xcb, 0xfd, 0xd6, 0xff, 0x00, 0xbe, + 0xaa, 0x4f, 0xec, 0x6b, 0xbf, 0xf9, 0xf7, 0x9b, 0xfe, 0xf8, 0x34, 0xbf, + 0xd8, 0xd7, 0x5f, 0xf3, 0xef, 0x37, 0xfd, 0xf0, 0x68, 0x02, 0x3c, 0x5a, + 0xff, 0x00, 0x70, 0xff, 0x00, 0xdf, 0x54, 0xa1, 0x6d, 0xbb, 0x46, 0x3f, + 0xef, 0xaa, 0x90, 0x68, 0xd7, 0x3f, 0xf3, 0xed, 0x3f, 0xfd, 0xf0, 0x69, + 0x7f, 0xb1, 0xee, 0x7f, 0xe7, 0xd6, 0x7f, 0xfb, 0xe0, 0xd0, 0x03, 0x00, + 0x83, 0xb4, 0x4b, 0xff, 0x00, 0x7d, 0x53, 0x80, 0x8f, 0xb4, 0x29, 0xff, + 0x00, 0x7d, 0x53, 0xc6, 0x91, 0x71, 0xff, 0x00, 0x3e, 0xb3, 0x7f, 0xdf, + 0x06, 0x94, 0x69, 0x57, 0x03, 0xfe, 0x5d, 0x26, 0xff, 0x00, 0xbe, 0x0d, + 0x00, 0x34, 0x01, 0xda, 0x28, 0xff, 0x00, 0x3a, 0x70, 0xdd, 0xda, 0x28, + 0xe9, 0xc3, 0x4c, 0xb8, 0x1f, 0xf2, 0xe9, 0x37, 0xfd, 0xf0, 0x69, 0x46, + 0x9f, 0x72, 0x3f, 0xe5, 0xd2, 0x5f, 0xfb, 0xe0, 0xd0, 0x03, 0x73, 0x2f, + 0x64, 0x8f, 0xf2, 0xa4, 0x26, 0xe0, 0x74, 0x0b, 0xf9, 0x54, 0x9f, 0x61, + 0xbb, 0x1f, 0xf2, 0xeb, 0x37, 0xfd, 0xf0, 0x69, 0x7e, 0xc7, 0x79, 0xff, + 0x00, 0x3e, 0xd3, 0x7f, 0xdf, 0x06, 0x80, 0x2b, 0x97, 0xba, 0xf5, 0x1f, + 0x95, 0x30, 0xc9, 0x73, 0xfd, 0xe3, 0x57, 0x3e, 0xc7, 0x79, 0xff, 0x00, + 0x3e, 0xd2, 0xff, 0x00, 0xdf, 0x07, 0xfc, 0x28, 0xfb, 0x1d, 0xe7, 0xfc, + 0xfb, 0x4b, 0xff, 0x00, 0x7e, 0xdb, 0xfc, 0x28, 0x02, 0x81, 0x92, 0x7e, + 0xee, 0xd4, 0xc2, 0xce, 0x7a, 0xb3, 0x7e, 0x75, 0xa3, 0xf6, 0x2b, 0xbf, + 0xf9, 0xf6, 0x97, 0xfe, 0xfd, 0xb7, 0xf8, 0x52, 0x7d, 0x82, 0xeb, 0xfe, + 0x7d, 0xa4, 0xff, 0x00, 0xbf, 0x6d, 0xfe, 0x14, 0x01, 0x9b, 0xc9, 0xee, + 0x69, 0x31, 0xed, 0x5a, 0x7f, 0x60, 0xba, 0xff, 0x00, 0x9f, 0x69, 0x7f, + 0xef, 0xd3, 0x7f, 0x85, 0x27, 0xf6, 0x7d, 0xd7, 0xfc, 0xfb, 0xcb, 0xff, + 0x00, 0x7e, 0x9b, 0xfc, 0x28, 0x03, 0x3b, 0x14, 0xb8, 0x35, 0xa1, 0xf6, + 0x0b, 0x9f, 0xf9, 0xf7, 0x9b, 0xfe, 0xfd, 0x37, 0xf8, 0x51, 0xf6, 0x0b, + 0x9f, 0xf9, 0xe1, 0x3f, 0xfd, 0xfa, 0x3f, 0xe1, 0x40, 0x19, 0xfb, 0x0f, + 0xa5, 0x2f, 0x96, 0xde, 0x95, 0x7f, 0xec, 0x17, 0x1f, 0xf3, 0xc2, 0xe3, + 0xfe, 0xfd, 0x1f, 0xf0, 0xa3, 0xec, 0x13, 0xf7, 0x82, 0xe7, 0xfe, 0xfd, + 0x1f, 0xf0, 0xa0, 0x0a, 0x3e, 0x53, 0x52, 0x88, 0xbd, 0x58, 0x55, 0xdf, + 0xb0, 0x4d, 0xff, 0x00, 0x3e, 0xd7, 0x3f, 0xf7, 0xe9, 0xbf, 0xc2, 0x8f, + 0xb0, 0xc9, 0xff, 0x00, 0x3e, 0x97, 0x27, 0xfe, 0xd9, 0x37, 0xf8, 0x50, + 0x05, 0x3f, 0x2d, 0x07, 0x53, 0x4a, 0x0a, 0x0e, 0x83, 0x35, 0x6f, 0xec, + 0x92, 0x8f, 0xf9, 0x72, 0xb8, 0xff, 0x00, 0xbf, 0x4d, 0xfe, 0x14, 0xbf, + 0x67, 0x9c, 0x74, 0xb1, 0xb8, 0xff, 0x00, 0xbf, 0x47, 0xfc, 0x28, 0x02, + 0xa6, 0xe2, 0x7e, 0xea, 0x9a, 0x51, 0x1c, 0x8f, 0xed, 0x56, 0xbc, 0xbb, + 0xa1, 0xd2, 0xc6, 0xe3, 0xfe, 0xfd, 0x1f, 0xf0, 0xa6, 0x94, 0xbd, 0xed, + 0x65, 0x71, 0xff, 0x00, 0x7e, 0x8f, 0xf8, 0x50, 0x04, 0x69, 0x6d, 0x8e, + 0x58, 0xd4, 0xe1, 0x96, 0x31, 0x50, 0x34, 0x57, 0xe7, 0xfe, 0x5c, 0xee, + 0x3f, 0xef, 0xd3, 0x7f, 0x85, 0x46, 0xd6, 0xb7, 0xe7, 0xfe, 0x5d, 0x2e, + 0x3f, 0xef, 0xdb, 0x7f, 0x85, 0x00, 0x49, 0x35, 0xd7, 0x18, 0x15, 0x41, + 0xe5, 0x2c, 0x7a, 0xd4, 0xe6, 0xc2, 0xf8, 0xff, 0x00, 0xcb, 0x9d, 0xc7, + 0xfd, 0xfa, 0x6f, 0xf0, 0xa6, 0xff, 0x00, 0x67, 0x5f, 0x7f, 0xcf, 0x9d, + 0xc7, 0xfd, 0xfa, 0x6f, 0xf0, 0xa0, 0x0a, 0xe0, 0xfa, 0x9a, 0x70, 0x0a, + 0x7a, 0xd4, 0xdf, 0xd9, 0xd7, 0xbf, 0xf3, 0xe7, 0x71, 0xff, 0x00, 0x7e, + 0x9b, 0xfc, 0x29, 0x7f, 0xb3, 0xef, 0xbf, 0xe7, 0xce, 0xe3, 0xfe, 0xfd, + 0x37, 0xf8, 0x50, 0x03, 0x56, 0x38, 0xcf, 0x6a, 0x90, 0x41, 0x11, 0xfe, + 0x1a, 0x05, 0x8d, 0xf0, 0xff, 0x00, 0x97, 0x3b, 0x8f, 0xfb, 0xf4, 0xdf, + 0xe1, 0x4e, 0x16, 0x77, 0xc3, 0xfe, 0x5d, 0x2e, 0x3f, 0xef, 0xdb, 0x7f, + 0x85, 0x00, 0x20, 0x82, 0x2f, 0xee, 0xfe, 0xb4, 0xef, 0x22, 0x2f, 0xee, + 0x52, 0x8b, 0x5b, 0xef, 0xf9, 0xf3, 0xb8, 0xff, 0x00, 0xbf, 0x4d, 0xfe, + 0x14, 0xe1, 0x6d, 0x7b, 0xff, 0x00, 0x3e, 0x77, 0x1f, 0xf7, 0xe9, 0xbf, + 0xc2, 0x80, 0x1a, 0x21, 0x8c, 0x7f, 0x00, 0xa7, 0x05, 0x51, 0xd1, 0x69, + 0x45, 0xbd, 0xef, 0xfc, 0xf9, 0xdc, 0x7f, 0xdf, 0xa3, 0xfe, 0x14, 0xbf, + 0x67, 0xbc, 0xff, 0x00, 0x9f, 0x3b, 0x8f, 0xfb, 0xf4, 0xdf, 0xe1, 0x40, + 0x09, 0x41, 0xdd, 0xeb, 0x4e, 0xfb, 0x3d, 0xe7, 0xfc, 0xf9, 0xdc, 0x7f, + 0xdf, 0xa6, 0xff, 0x00, 0x0a, 0x5f, 0x22, 0xef, 0xfe, 0x7c, 0xee, 0x3f, + 0xef, 0xd3, 0x7f, 0x85, 0x00, 0x44, 0x43, 0xfa, 0x8a, 0x6e, 0x24, 0xfe, + 0xf5, 0x58, 0xfb, 0x3d, 0xdf, 0xfc, 0xf9, 0xdc, 0x7f, 0xdf, 0xa6, 0xff, + 0x00, 0x0a, 0x3e, 0xcf, 0x75, 0xff, 0x00, 0x3e, 0x77, 0x1f, 0xf7, 0xe9, + 0xbf, 0xc2, 0x80, 0x2b, 0x15, 0x93, 0xfb, 0xc6, 0x9a, 0x52, 0x4f, 0xef, + 0x9a, 0xb9, 0xf6, 0x7b, 0xaf, 0xf9, 0xf4, 0x9f, 0xfe, 0xfd, 0x37, 0xf8, + 0x51, 0xf6, 0x6b, 0xaf, 0xf9, 0xf4, 0xb8, 0xff, 0x00, 0xbf, 0x4d, 0xfe, + 0x14, 0x01, 0x4b, 0xca, 0x73, 0xfc, 0x74, 0x9e, 0x43, 0xff, 0x00, 0x7b, + 0xf5, 0xab, 0xdf, 0x66, 0xba, 0xff, 0x00, 0x9f, 0x4b, 0x8f, 0xfb, 0xf6, + 0x7f, 0xc2, 0x8f, 0xb2, 0xdd, 0x7f, 0xcf, 0xa5, 0xc7, 0xfd, 0xfb, 0x6f, + 0xf0, 0xa0, 0x0a, 0x1e, 0x43, 0xff, 0x00, 0x7b, 0xf5, 0xa3, 0xc8, 0x7f, + 0x7f, 0xce, 0xaf, 0xfd, 0x96, 0xe7, 0xfe, 0x7d, 0x27, 0xff, 0x00, 0xbf, + 0x67, 0xfc, 0x29, 0x7e, 0xcb, 0x73, 0xff, 0x00, 0x3e, 0xb3, 0xff, 0x00, + 0xdf, 0xb3, 0xfe, 0x14, 0x01, 0x9f, 0xe4, 0x49, 0xef, 0x47, 0x95, 0x27, + 0xa1, 0xad, 0x0f, 0xb2, 0xdc, 0xff, 0x00, 0xcf, 0xac, 0xff, 0x00, 0xf7, + 0xec, 0xff, 0x00, 0x85, 0x1f, 0x65, 0xba, 0xff, 0x00, 0x9f, 0x59, 0xff, + 0x00, 0xef, 0xd9, 0xff, 0x00, 0x0a, 0x00, 0xcf, 0xf2, 0xe4, 0xf4, 0x34, + 0x6c, 0x7f, 0x46, 0xad, 0x0f, 0xb1, 0xdc, 0xff, 0x00, 0xcf, 0xac, 0xff, + 0x00, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x1f, 0x63, 0xb9, 0xff, 0x00, 0x9f, + 0x59, 0xff, 0x00, 0xef, 0xd9, 0xff, 0x00, 0x0a, 0x00, 0xa0, 0x15, 0xbd, + 0x1a, 0x9d, 0xf8, 0x35, 0x5e, 0xfb, 0x25, 0xd7, 0xfc, 0xfa, 0xcf, 0xff, + 0x00, 0x7e, 0xcf, 0xf8, 0x51, 0xf6, 0x4b, 0xaf, 0xf9, 0xf5, 0x9f, 0xfe, + 0xfd, 0x9f, 0xf0, 0xa0, 0x0a, 0x60, 0x8f, 0x46, 0xa5, 0x05, 0x3d, 0x1a, + 0xad, 0xfd, 0x92, 0xeb, 0xfe, 0x7d, 0x67, 0xff, 0x00, 0xbf, 0x67, 0xfc, + 0x28, 0xfb, 0x1d, 0xd7, 0xfc, 0xfb, 0x4f, 0xff, 0x00, 0x7e, 0xcf, 0xf8, + 0x50, 0x05, 0x70, 0xc9, 0xfe, 0xd5, 0x38, 0x32, 0x7b, 0xd4, 0xbf, 0x63, + 0xba, 0xff, 0x00, 0x9f, 0x69, 0xff, 0x00, 0xef, 0xd9, 0xff, 0x00, 0x0a, + 0x3e, 0xc7, 0x75, 0xff, 0x00, 0x3e, 0xd3, 0xff, 0x00, 0xdf, 0xb3, 0xfe, + 0x14, 0x01, 0x0e, 0xf4, 0xf5, 0x34, 0x9b, 0xa3, 0xf5, 0x35, 0x3f, 0xd8, + 0xee, 0x7f, 0xe7, 0xda, 0x7f, 0xfb, 0xf6, 0x7f, 0xc2, 0x97, 0xec, 0x77, + 0x3f, 0xf3, 0xed, 0x3f, 0xfd, 0xfb, 0x3f, 0xe1, 0x40, 0x15, 0xf7, 0xa7, + 0xa9, 0xa4, 0xdc, 0x9e, 0xa6, 0xac, 0xfd, 0x8e, 0xe7, 0xfe, 0x7d, 0xa7, + 0xff, 0x00, 0xbf, 0x67, 0xfc, 0x28, 0xfb, 0x1d, 0xcf, 0xfc, 0xfb, 0x4f, + 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x50, 0x05, 0x7d, 0xc9, 0xea, 0x68, 0xdc, + 0x9e, 0xa6, 0xa7, 0xfb, 0x1d, 0xcf, 0xfc, 0xfb, 0x4f, 0xff, 0x00, 0x7e, + 0xcf, 0xf8, 0x51, 0xf6, 0x4b, 0x9f, 0xf9, 0xf5, 0x9f, 0xfe, 0xfd, 0x9f, + 0xf0, 0xa0, 0x08, 0x37, 0xa7, 0xf7, 0x8d, 0x1e, 0x62, 0x8f, 0xe2, 0x6a, + 0x9f, 0xec, 0x97, 0x3f, 0xf3, 0xeb, 0x3f, 0xfd, 0xfb, 0x3f, 0xe1, 0x47, + 0xd9, 0x2e, 0x7f, 0xe7, 0xda, 0x7f, 0xfb, 0xf6, 0x7f, 0xc2, 0x80, 0x21, + 0xf3, 0x57, 0xfb, 0xcd, 0x49, 0xe6, 0xaf, 0xab, 0x54, 0xff, 0x00, 0x64, + 0xb9, 0xff, 0x00, 0x9f, 0x69, 0xff, 0x00, 0xef, 0xd9, 0xff, 0x00, 0x0a, + 0x3e, 0xc9, 0x73, 0xff, 0x00, 0x3e, 0xb3, 0xff, 0x00, 0xdf, 0xb3, 0xfe, + 0x14, 0x01, 0x07, 0x98, 0xbf, 0xed, 0x51, 0xe6, 0x2f, 0xa3, 0x54, 0xff, + 0x00, 0x64, 0xb9, 0xff, 0x00, 0x9f, 0x69, 0xff, 0x00, 0xef, 0xd9, 0xff, + 0x00, 0x0a, 0x3e, 0xc9, 0x75, 0xff, 0x00, 0x3e, 0xb3, 0xff, 0x00, 0xdf, + 0xb3, 0xfe, 0x14, 0x01, 0x5f, 0xcc, 0x5f, 0xee, 0x35, 0x2f, 0x9a, 0x3f, + 0xb8, 0xd5, 0x3f, 0xd8, 0xee, 0xbf, 0xe7, 0xd6, 0x7f, 0xfb, 0xf6, 0x7f, + 0xc2, 0x8f, 0xb2, 0x5d, 0x7f, 0xcf, 0xac, 0xff, 0x00, 0xf7, 0xec, 0xff, + 0x00, 0x85, 0x00, 0x43, 0xe7, 0x7a, 0x46, 0x68, 0xf3, 0xdb, 0xfe, 0x79, + 0xd4, 0xdf, 0x64, 0xba, 0xff, 0x00, 0x9f, 0x59, 0xff, 0x00, 0xef, 0xd9, + 0xff, 0x00, 0x0a, 0x3e, 0xc7, 0x75, 0xff, 0x00, 0x3e, 0xb3, 0xff, 0x00, + 0xdf, 0xb3, 0xfe, 0x14, 0x01, 0x0f, 0x9e, 0xc7, 0xfe, 0x59, 0x8a, 0x3c, + 0xd3, 0xff, 0x00, 0x3c, 0xc5, 0x4b, 0xf6, 0x3b, 0x9f, 0xf9, 0xf5, 0x9f, + 0xfe, 0xfd, 0x9f, 0xf0, 0xa3, 0xec, 0x77, 0x3f, 0xf3, 0xe9, 0x3f, 0xfd, + 0xfb, 0x34, 0x01, 0x0e, 0xfc, 0xf5, 0x8c, 0x7e, 0x74, 0xbb, 0x97, 0xfe, + 0x79, 0xaf, 0xe7, 0x52, 0xfd, 0x8e, 0xe7, 0xfe, 0x7d, 0x27, 0xff, 0x00, + 0xbf, 0x66, 0x8f, 0xb1, 0xdc, 0xff, 0x00, 0xcf, 0xa4, 0xff, 0x00, 0xf7, + 0xe8, 0xff, 0x00, 0x85, 0x00, 0x46, 0xae, 0x80, 0xff, 0x00, 0xaa, 0x4f, + 0xc6, 0xa4, 0x17, 0x08, 0x3f, 0xe5, 0x84, 0x5f, 0x95, 0x1f, 0x63, 0xba, + 0xff, 0x00, 0x9f, 0x49, 0xff, 0x00, 0xef, 0xd9, 0xff, 0x00, 0x0a, 0x3e, + 0xc9, 0x75, 0xff, 0x00, 0x3e, 0x93, 0xff, 0x00, 0xdf, 0xa3, 0xfe, 0x14, + 0x00, 0xf1, 0x79, 0x8e, 0x91, 0x46, 0x3f, 0xe0, 0x34, 0x1b, 0xd6, 0xec, + 0x8b, 0xff, 0x00, 0x7c, 0x8a, 0x67, 0xd9, 0x2e, 0xbf, 0xe7, 0xd2, 0x7f, + 0xfb, 0xf4, 0x7f, 0xc2, 0x93, 0xec, 0x97, 0x5f, 0xf3, 0xe9, 0x71, 0xff, + 0x00, 0x7e, 0x9b, 0xfc, 0x28, 0x00, 0x37, 0x4e, 0x7f, 0x84, 0x7e, 0x54, + 0xc3, 0x33, 0x9e, 0xc2, 0x9f, 0xf6, 0x4b, 0xaf, 0xf9, 0xf4, 0xb8, 0xff, + 0x00, 0xbf, 0x4d, 0xfe, 0x14, 0x7d, 0x96, 0xeb, 0xfe, 0x7d, 0x2e, 0x3f, + 0xef, 0xd3, 0x7f, 0x85, 0x00, 0x45, 0xba, 0x4f, 0x50, 0x3f, 0x0a, 0x37, + 0x3f, 0x77, 0x35, 0x27, 0xd9, 0x6e, 0xff, 0x00, 0xe7, 0xd2, 0xe3, 0xfe, + 0xfd, 0x37, 0xf8, 0x52, 0x7d, 0x92, 0xef, 0xfe, 0x7d, 0x2e, 0x3f, 0xef, + 0xd3, 0x7f, 0x85, 0x00, 0x47, 0x8a, 0x29, 0xff, 0x00, 0x65, 0xbb, 0xff, + 0x00, 0x9f, 0x3b, 0x8f, 0xfb, 0xf4, 0xdf, 0xe1, 0x49, 0xf6, 0x5b, 0xcf, + 0xf9, 0xf3, 0xb8, 0xff, 0x00, 0xbf, 0x4d, 0xfe, 0x14, 0x00, 0xca, 0x4a, + 0x7f, 0xd9, 0x6f, 0x7f, 0xe7, 0xce, 0xe3, 0xfe, 0xfd, 0x37, 0xf8, 0x52, + 0x1b, 0x4b, 0xdf, 0xf9, 0xf3, 0xb8, 0xff, 0x00, 0xbf, 0x4d, 0xfe, 0x14, + 0x00, 0xcc, 0xd3, 0x4b, 0x81, 0x4f, 0x36, 0x77, 0xc7, 0xfe, 0x5c, 0xee, + 0x3f, 0xef, 0xd3, 0x7f, 0x85, 0x34, 0xd8, 0xdf, 0x1f, 0xf9, 0x73, 0xb8, + 0xff, 0x00, 0xbf, 0x4d, 0xfe, 0x14, 0x01, 0x0b, 0xbd, 0x42, 0x4d, 0x5a, + 0x3a, 0x7d, 0xf7, 0xfc, 0xf9, 0xdc, 0x7f, 0xdf, 0xa6, 0xff, 0x00, 0x0a, + 0x6f, 0xf6, 0x75, 0xf7, 0xfc, 0xf9, 0xdc, 0x7f, 0xdf, 0xa6, 0xff, 0x00, + 0x0a, 0x00, 0xaa, 0x2a, 0x78, 0xa4, 0xdb, 0x4f, 0xfe, 0xce, 0xbd, 0xff, + 0x00, 0x9f, 0x3b, 0x8f, 0xfb, 0xf4, 0xdf, 0xe1, 0x4b, 0xfd, 0x9d, 0x7d, + 0xff, 0x00, 0x3e, 0x77, 0x1f, 0xf7, 0xe9, 0xbf, 0xc2, 0x80, 0x2c, 0x24, + 0x81, 0x85, 0x0d, 0x12, 0xbd, 0x44, 0x2c, 0xaf, 0xc7, 0xfc, 0xb9, 0xdc, + 0x7f, 0xdf, 0xa6, 0xff, 0x00, 0x0a, 0x91, 0x6d, 0xaf, 0xc7, 0xfc, 0xb9, + 0xdc, 0x7f, 0xdf, 0xa6, 0xff, 0x00, 0x0a, 0x00, 0x88, 0xc0, 0xcb, 0xf7, + 0x69, 0xbf, 0x3a, 0xf5, 0x5a, 0xb6, 0x22, 0xbe, 0xff, 0x00, 0x9f, 0x2b, + 0x8f, 0xfb, 0xf4, 0xdf, 0xe1, 0x4e, 0x11, 0x5d, 0xf7, 0xb2, 0xb8, 0xff, + 0x00, 0xbf, 0x47, 0xfc, 0x28, 0x02, 0x96, 0xf1, 0xdc, 0x51, 0xf2, 0x9a, + 0xbd, 0xf6, 0x7b, 0x83, 0xd6, 0xc6, 0xe3, 0xfe, 0xfd, 0x1f, 0xf0, 0xa3, + 0xec, 0x92, 0x9e, 0xb6, 0x37, 0x1f, 0xf7, 0xe8, 0xff, 0x00, 0x85, 0x00, + 0x51, 0xd8, 0x3b, 0x1a, 0x4f, 0x2c, 0xfa, 0xd5, 0xef, 0xb0, 0xc8, 0x7f, + 0xe5, 0xce, 0xe4, 0x7f, 0xdb, 0x26, 0xff, 0x00, 0x0a, 0x3e, 0xc1, 0x2f, + 0xfc, 0xfb, 0x5c, 0xff, 0x00, 0xdf, 0xa6, 0xff, 0x00, 0x0a, 0x00, 0xa1, + 0xe5, 0x9a, 0x4d, 0x86, 0xb4, 0x3f, 0xb3, 0xe6, 0xff, 0x00, 0x9f, 0x7b, + 0x9f, 0xfb, 0xf4, 0xdf, 0xe1, 0x4b, 0xfd, 0x9f, 0x71, 0xff, 0x00, 0x3c, + 0x2e, 0x3f, 0xef, 0xd1, 0xff, 0x00, 0x0a, 0x00, 0xcd, 0xda, 0x68, 0xc1, + 0xad, 0x2f, 0xb0, 0x5c, 0xff, 0x00, 0xcf, 0x09, 0xff, 0x00, 0xef, 0xd1, + 0xff, 0x00, 0x0a, 0x3e, 0xc1, 0x73, 0xff, 0x00, 0x3c, 0x26, 0xff, 0x00, + 0xbf, 0x47, 0xfc, 0x28, 0x03, 0x37, 0x14, 0x73, 0xef, 0x5a, 0x5f, 0x60, + 0xba, 0xff, 0x00, 0x9f, 0x79, 0xbf, 0xef, 0xd1, 0xff, 0x00, 0x0a, 0x5f, + 0xb0, 0xdd, 0x7f, 0xcf, 0xbc, 0xbf, 0xf7, 0xe8, 0xff, 0x00, 0x85, 0x00, + 0x67, 0x06, 0x71, 0xd0, 0x9a, 0x70, 0x96, 0x51, 0xfc, 0x6d, 0x57, 0xfe, + 0xc3, 0x77, 0xff, 0x00, 0x3e, 0xd2, 0xff, 0x00, 0xdf, 0xa6, 0xff, 0x00, + 0x0a, 0x4f, 0xb0, 0x5d, 0xff, 0x00, 0xcf, 0xb4, 0xbf, 0xf7, 0xed, 0xbf, + 0xc2, 0x80, 0x29, 0x0b, 0x89, 0x87, 0xf1, 0x9a, 0x5f, 0xb4, 0xcd, 0xea, + 0x0f, 0xe1, 0x56, 0xce, 0x9f, 0x76, 0x7f, 0xe5, 0xda, 0x5f, 0xfb, 0xf6, + 0x7f, 0xc2, 0x93, 0xfb, 0x36, 0xef, 0xfe, 0x7d, 0xa6, 0xff, 0x00, 0xbf, + 0x67, 0xfc, 0x28, 0x02, 0xb7, 0x9f, 0x21, 0xfe, 0x05, 0x3f, 0x85, 0x1e, + 0x6b, 0x1e, 0xb0, 0xa1, 0xfc, 0x2a, 0xc7, 0xf6, 0x65, 0xe7, 0xfc, 0xfb, + 0xcf, 0xff, 0x00, 0x7c, 0x1f, 0xf0, 0xa4, 0xfe, 0xcb, 0xbc, 0x3f, 0xf2, + 0xc2, 0x7f, 0xfb, 0xe0, 0xd0, 0x04, 0x20, 0xe7, 0xac, 0x09, 0x4b, 0x84, + 0xef, 0x02, 0x7e, 0x75, 0x27, 0xf6, 0x4d, 0xdf, 0xfc, 0xf0, 0x9f, 0xfe, + 0xf8, 0x34, 0x9f, 0xd9, 0x17, 0x7f, 0xf3, 0xef, 0x37, 0xfd, 0xf0, 0x68, + 0x02, 0x3d, 0xb1, 0x7f, 0xcf, 0x25, 0xff, 0x00, 0xbe, 0xa9, 0x3f, 0x73, + 0xff, 0x00, 0x3c, 0xc7, 0xfd, 0xf5, 0x52, 0x7f, 0x64, 0x5d, 0xff, 0x00, + 0xcf, 0xbc, 0xdf, 0xf7, 0xc1, 0xa3, 0xfb, 0x22, 0xef, 0xfe, 0x7d, 0xa6, + 0xff, 0x00, 0xbe, 0x0d, 0x00, 0x47, 0x98, 0x7f, 0xba, 0x7f, 0xef, 0xba, + 0x4d, 0xf0, 0x0e, 0xcd, 0xff, 0x00, 0x7d, 0xd4, 0xbf, 0xd8, 0xf7, 0x5f, + 0xf3, 0xed, 0x37, 0xfd, 0xf0, 0x68, 0xfe, 0xc7, 0xba, 0xff, 0x00, 0x9f, + 0x69, 0xbf, 0xef, 0x83, 0x40, 0x10, 0xf9, 0x90, 0x7f, 0xb7, 0xff, 0x00, + 0x7d, 0x51, 0xe6, 0xc1, 0xeb, 0x27, 0xfd, 0xf5, 0x53, 0x7f, 0x63, 0xdd, + 0x7f, 0xcf, 0xb4, 0xdf, 0xf7, 0xc1, 0xa3, 0xfb, 0x22, 0xeb, 0xfe, 0x7d, + 0x66, 0xff, 0x00, 0xbe, 0x0d, 0x00, 0x43, 0xe6, 0xc1, 0xeb, 0x27, 0xfd, + 0xf5, 0x49, 0xe6, 0x41, 0x9e, 0xb2, 0x7f, 0xdf, 0x55, 0x63, 0xfb, 0x22, + 0xe7, 0xfe, 0x7d, 0x66, 0xff, 0x00, 0xbe, 0x0d, 0x27, 0xf6, 0x3d, 0xd7, + 0xfc, 0xfb, 0x4c, 0x3f, 0xe0, 0x06, 0x80, 0x3f, 0xff, 0xd9 +}; +unsigned int directional_jpg_len = 34546; diff --git a/assets/hdr/02_doge2.h b/assets/hdr/02_doge2.h new file mode 100644 index 0000000..29c6613 --- /dev/null +++ b/assets/hdr/02_doge2.h @@ -0,0 +1,4108 @@ +unsigned char doge2_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x4b, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x30, 0x34, + 0x3a, 0x35, 0x36, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x36, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, + 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, + 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, + 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, + 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, + 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, + 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xf7, 0x10, 0xab, 0x8e, 0x83, 0xf2, 0xa5, 0xda, 0x3d, 0x07, + 0xe5, 0x40, 0xe9, 0x4b, 0x4c, 0x62, 0x6d, 0x5f, 0x41, 0xf9, 0x51, 0xb5, + 0x7d, 0x07, 0xe5, 0x4b, 0x45, 0x00, 0x26, 0xd5, 0xf4, 0x1f, 0x95, 0x1b, + 0x57, 0xd0, 0x7e, 0x54, 0xb4, 0x50, 0x21, 0x36, 0xaf, 0xa0, 0xfc, 0xa8, + 0xda, 0xbe, 0x83, 0xf2, 0xa5, 0xa2, 0x81, 0x89, 0xb5, 0x7d, 0x07, 0xe5, + 0x46, 0xd5, 0xf4, 0x1f, 0x95, 0x14, 0x50, 0x20, 0xda, 0xbe, 0x82, 0x8d, + 0xab, 0xe8, 0x3f, 0x2a, 0x28, 0xa0, 0x03, 0x6a, 0xfa, 0x0f, 0xca, 0x8d, + 0xab, 0xe8, 0x3f, 0x2a, 0x33, 0x46, 0x68, 0x00, 0xda, 0xbe, 0x83, 0xf2, + 0xa3, 0x6a, 0xfa, 0x0f, 0xca, 0x8c, 0xd1, 0x9a, 0x00, 0x36, 0xaf, 0xa0, + 0xfc, 0xa9, 0x36, 0xaf, 0xa0, 0xfc, 0xa9, 0x73, 0x46, 0x68, 0x01, 0x30, + 0xbe, 0x83, 0xf2, 0xa3, 0x0b, 0xe8, 0x3f, 0x2a, 0x33, 0x46, 0x68, 0x00, + 0xc2, 0xff, 0x00, 0x74, 0x7e, 0x54, 0x61, 0x7d, 0x07, 0xe5, 0x45, 0x14, + 0x00, 0x61, 0x7d, 0x07, 0xe5, 0x46, 0x17, 0xd0, 0x7e, 0x54, 0x51, 0x48, + 0x03, 0x0b, 0xe8, 0x3f, 0x2a, 0x30, 0xbe, 0x83, 0xf2, 0xa2, 0x8a, 0x00, + 0x30, 0xbe, 0x83, 0xf2, 0xa3, 0x03, 0xd0, 0x7e, 0x54, 0x51, 0x40, 0x06, + 0x17, 0xd0, 0x7e, 0x54, 0x61, 0x7d, 0x07, 0xe5, 0x45, 0x14, 0x00, 0x61, + 0x7d, 0x07, 0xe5, 0x46, 0x07, 0xa0, 0xfc, 0xa8, 0xa2, 0x80, 0x0d, 0xab, + 0xe8, 0x3f, 0x2a, 0x36, 0x8f, 0x41, 0xf9, 0x51, 0x9a, 0x28, 0x00, 0xda, + 0x3d, 0x07, 0xe5, 0x46, 0xd1, 0xe8, 0x3f, 0x2a, 0x28, 0xa0, 0x03, 0x6a, + 0xfa, 0x0f, 0xca, 0x8d, 0xa3, 0xd0, 0x7e, 0x54, 0x51, 0x40, 0x06, 0xd1, + 0xe8, 0x28, 0xda, 0xbe, 0x83, 0xf2, 0xa2, 0x8a, 0x00, 0x4d, 0xab, 0xe8, + 0x3f, 0x2a, 0x36, 0xaf, 0xa0, 0xfc, 0xa9, 0x68, 0xa0, 0x04, 0xc2, 0xfa, + 0x0f, 0xca, 0x8d, 0xa3, 0xd0, 0x52, 0xd1, 0x40, 0x09, 0x85, 0xf4, 0x1f, + 0x95, 0x1b, 0x57, 0xd0, 0x7e, 0x54, 0xb4, 0x50, 0x02, 0x6d, 0x1e, 0x83, + 0xf2, 0xa5, 0xda, 0xbe, 0x83, 0xf2, 0xa2, 0x8a, 0x00, 0x4d, 0xab, 0xe8, + 0x3f, 0x2a, 0x36, 0x8f, 0x41, 0xf9, 0x52, 0xd1, 0x40, 0x09, 0xb4, 0x7a, + 0x0f, 0xca, 0x8d, 0xa3, 0xd0, 0x7e, 0x54, 0xea, 0x28, 0x01, 0xbb, 0x47, + 0xa0, 0xfc, 0xa9, 0x76, 0x8f, 0x41, 0xf9, 0x52, 0xd1, 0x40, 0x09, 0xb4, + 0x7a, 0x0f, 0xca, 0x8d, 0xa3, 0xfb, 0xa3, 0xf2, 0xa5, 0xa2, 0x80, 0x13, + 0x68, 0xfe, 0xe8, 0xfc, 0xa8, 0xda, 0x3d, 0x07, 0xe5, 0x4e, 0xa4, 0xa0, + 0x06, 0xed, 0x1e, 0x83, 0xf2, 0xa5, 0xda, 0x3f, 0xba, 0x3f, 0x2a, 0x5a, + 0x5a, 0x00, 0x6e, 0xd1, 0xfd, 0xd1, 0xf9, 0x51, 0xb4, 0x7a, 0x0f, 0xca, + 0x9d, 0x49, 0x40, 0x09, 0xb4, 0x7f, 0x74, 0x7e, 0x54, 0x6d, 0x1e, 0x83, + 0xf2, 0xa7, 0x51, 0x4c, 0x06, 0xed, 0x1e, 0x83, 0xf2, 0xa3, 0x68, 0xf4, + 0x1f, 0x95, 0x2d, 0x14, 0x00, 0x9b, 0x47, 0xa0, 0xfc, 0xa8, 0xda, 0x3d, + 0x07, 0xe5, 0x4b, 0x45, 0x00, 0x26, 0xd1, 0xfd, 0xd1, 0xf9, 0x51, 0xb4, + 0x7a, 0x0f, 0xca, 0x96, 0x8a, 0x00, 0x4d, 0xa3, 0xd0, 0x7e, 0x54, 0x6d, + 0x1e, 0x83, 0xf2, 0xa5, 0xa2, 0x80, 0x13, 0x6a, 0xfa, 0x0f, 0xca, 0x8d, + 0xab, 0xe8, 0x3f, 0x2a, 0x5a, 0x28, 0x01, 0x36, 0x8f, 0x41, 0xf9, 0x52, + 0xed, 0x5f, 0x41, 0x45, 0x14, 0x00, 0x9b, 0x57, 0xd0, 0x7e, 0x54, 0xbb, + 0x57, 0xd0, 0x7e, 0x54, 0xb4, 0x50, 0x02, 0x6d, 0x5f, 0x41, 0xf9, 0x51, + 0xb5, 0x7d, 0x07, 0xe5, 0x4b, 0x45, 0x00, 0x26, 0xd5, 0xfe, 0xe8, 0xfc, + 0xa9, 0x36, 0x8f, 0xee, 0x8a, 0x75, 0x14, 0x0c, 0x4d, 0xab, 0xfd, 0xd1, + 0xf9, 0x51, 0xb4, 0x7a, 0x0f, 0xca, 0x96, 0x8a, 0x04, 0x26, 0xd5, 0xf4, + 0x1f, 0x95, 0x1b, 0x57, 0xd0, 0x7e, 0x54, 0xb4, 0x50, 0x31, 0x36, 0xaf, + 0xa0, 0xfc, 0xa8, 0xda, 0xbe, 0x83, 0xf2, 0xa5, 0xa2, 0x80, 0x13, 0x6a, + 0xfa, 0x0a, 0x36, 0x8f, 0x41, 0x4b, 0x45, 0x00, 0x37, 0x6a, 0xfa, 0x0f, + 0xca, 0x97, 0x6a, 0xfa, 0x0a, 0x5a, 0x28, 0x01, 0x36, 0xaf, 0xa0, 0xfc, + 0xa8, 0xda, 0xbe, 0x83, 0xf2, 0xa5, 0xa2, 0x80, 0x13, 0x68, 0xf4, 0x1f, + 0x95, 0x1b, 0x57, 0xd0, 0x7e, 0x54, 0xb4, 0x50, 0x02, 0x6d, 0x1e, 0x83, + 0xf2, 0xa3, 0x6a, 0xfa, 0x0f, 0xca, 0x96, 0x8a, 0x00, 0x4d, 0xab, 0xe8, + 0x3f, 0x2a, 0x36, 0xaf, 0xa0, 0xfc, 0xa9, 0x68, 0xa0, 0x04, 0xda, 0xbe, + 0x83, 0xf2, 0xa3, 0x6a, 0xfa, 0x0f, 0xca, 0x96, 0x8a, 0x00, 0x4d, 0xa3, + 0xd0, 0x7e, 0x54, 0x6d, 0x1e, 0x83, 0xf2, 0xa5, 0xa2, 0x81, 0x09, 0xb4, + 0x7a, 0x0f, 0xca, 0x8d, 0xab, 0xe8, 0x3f, 0x2a, 0x5a, 0x28, 0x01, 0x36, + 0xaf, 0xa0, 0xfc, 0xa8, 0xda, 0x3d, 0x07, 0xe5, 0x4b, 0x45, 0x03, 0x13, + 0x68, 0xf4, 0x1f, 0x95, 0x1b, 0x47, 0xa0, 0xfc, 0xa9, 0x68, 0xa0, 0x04, + 0xda, 0x3d, 0x05, 0x1b, 0x47, 0xa0, 0xfc, 0xa9, 0x68, 0xa0, 0x04, 0xda, + 0xbe, 0x82, 0x8d, 0xab, 0xe8, 0x3f, 0x2a, 0x5a, 0x28, 0x01, 0x36, 0x8f, + 0x41, 0xf9, 0x51, 0xb4, 0x7a, 0x0f, 0xca, 0x96, 0x8a, 0x00, 0x4d, 0xa3, + 0xd0, 0x51, 0xb4, 0x7a, 0x0a, 0x5a, 0x28, 0x01, 0x36, 0x8f, 0x41, 0xf9, + 0x51, 0xb5, 0x7d, 0x07, 0xe5, 0x4b, 0x45, 0x00, 0x26, 0xd1, 0xe8, 0x3f, + 0x2a, 0x36, 0xaf, 0xa0, 0xfc, 0xa9, 0x68, 0xa0, 0x04, 0xda, 0xbe, 0x83, + 0xf2, 0xa3, 0x6a, 0xfa, 0x0a, 0x5a, 0x28, 0x10, 0x9b, 0x57, 0xd0, 0x51, + 0xb4, 0x7a, 0x0f, 0xca, 0x96, 0x8a, 0x06, 0x26, 0xd5, 0xf4, 0x1f, 0x95, + 0x21, 0x55, 0xc1, 0xe0, 0x7e, 0x54, 0xea, 0x43, 0xd2, 0x80, 0x01, 0xd2, + 0x8a, 0x07, 0x41, 0x45, 0x00, 0x14, 0x52, 0x51, 0x9a, 0x04, 0x2d, 0x14, + 0xdc, 0xd1, 0x9a, 0x00, 0x75, 0x19, 0xa6, 0x66, 0x8c, 0xd0, 0x03, 0xb3, + 0x46, 0x69, 0xb9, 0xa4, 0xcd, 0x00, 0x3f, 0x34, 0x99, 0xa6, 0xe6, 0x93, + 0x34, 0x00, 0xfc, 0xd1, 0x9a, 0x6e, 0x68, 0xa0, 0x07, 0x66, 0x8c, 0xd2, + 0x51, 0x40, 0x0b, 0x9a, 0x29, 0xb4, 0x66, 0x80, 0x1d, 0x46, 0x69, 0xb9, + 0xa3, 0x34, 0x00, 0xec, 0xd1, 0x9a, 0x6e, 0x68, 0xa0, 0x07, 0x66, 0x8c, + 0xd3, 0x68, 0xa0, 0x07, 0x66, 0x8c, 0xd3, 0x68, 0xa0, 0x05, 0xcd, 0x19, + 0xa4, 0xa2, 0x80, 0x1d, 0x45, 0x36, 0x96, 0x80, 0x16, 0x8a, 0x4c, 0xd1, + 0x40, 0x0b, 0x45, 0x25, 0x14, 0x00, 0xb4, 0x52, 0x52, 0xd0, 0x01, 0x45, + 0x14, 0x50, 0x01, 0x45, 0x14, 0xb4, 0x00, 0x94, 0xb4, 0x51, 0x40, 0x05, + 0x14, 0x51, 0x40, 0x05, 0x14, 0x52, 0xd0, 0x02, 0x51, 0x4b, 0x45, 0x00, + 0x25, 0x2d, 0x14, 0x50, 0x30, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x5a, + 0x00, 0x4a, 0x5a, 0x28, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, 0x8a, 0x28, + 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, 0x8a, 0x28, + 0xa0, 0x04, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, + 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x4a, 0x00, 0x5a, 0x29, + 0x28, 0xa0, 0x05, 0xa2, 0x92, 0x8c, 0xd0, 0x02, 0xd1, 0x49, 0x45, 0x00, + 0x2d, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x2d, 0x25, 0x14, + 0x00, 0xb4, 0x52, 0x52, 0xd0, 0x01, 0x45, 0x25, 0x2d, 0x02, 0x12, 0x96, + 0x8a, 0x28, 0x18, 0x51, 0x45, 0x25, 0x00, 0x2d, 0x14, 0x94, 0x50, 0x02, + 0xd1, 0x49, 0x45, 0x00, 0x2d, 0x25, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, + 0x01, 0x45, 0x14, 0xb4, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, + 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, + 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, + 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x94, 0x1e, 0x86, + 0x96, 0x90, 0xf4, 0x34, 0x00, 0xbd, 0xa9, 0x28, 0xed, 0x4d, 0x26, 0x80, + 0x14, 0x9a, 0x4c, 0xd3, 0x73, 0x49, 0x9a, 0x04, 0x3b, 0x34, 0x99, 0xa4, + 0xcd, 0x26, 0x68, 0x01, 0x73, 0x49, 0x9a, 0x4c, 0xd2, 0x66, 0x80, 0x1d, + 0x9a, 0x4c, 0xd2, 0x66, 0x8a, 0x40, 0x2e, 0x68, 0xcd, 0x36, 0x8a, 0x00, + 0x76, 0x69, 0x73, 0x4d, 0xa2, 0x98, 0x0e, 0xcd, 0x2e, 0x69, 0xb4, 0x50, + 0x03, 0xb3, 0x46, 0x69, 0x28, 0xa0, 0x05, 0xa2, 0x92, 0x8a, 0x00, 0x5a, + 0x28, 0xa2, 0x80, 0x16, 0x8a, 0x4c, 0xd1, 0x40, 0x0b, 0x45, 0x25, 0x14, + 0x00, 0xb4, 0x52, 0x51, 0x40, 0x0b, 0x45, 0x25, 0x19, 0xa0, 0x05, 0xa5, + 0xa4, 0xcd, 0x19, 0xa0, 0x62, 0xd1, 0x45, 0x2d, 0x00, 0x14, 0x52, 0xd2, + 0xe2, 0x80, 0x1b, 0x45, 0x3b, 0x14, 0x62, 0x80, 0x12, 0x8a, 0x5c, 0x51, + 0x8a, 0x00, 0x4a, 0x29, 0x71, 0x46, 0x28, 0x01, 0x28, 0xa5, 0xc5, 0x18, + 0xa0, 0x02, 0x8a, 0x5c, 0x51, 0x8a, 0x00, 0x4a, 0x29, 0x71, 0x46, 0x28, + 0x01, 0x28, 0xa7, 0x62, 0x8c, 0x50, 0x02, 0x51, 0x4b, 0x8a, 0x28, 0x01, + 0x28, 0xa5, 0xa2, 0x80, 0x12, 0x8a, 0x5a, 0x28, 0x01, 0x28, 0xa5, 0xa2, + 0x80, 0x12, 0x8a, 0x5a, 0x28, 0x01, 0x28, 0xa5, 0xa4, 0xa0, 0x02, 0x8a, + 0x28, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x02, 0x92, 0x96, 0x8a, 0x00, 0x4a, + 0x29, 0x68, 0xa0, 0x04, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, + 0xa4, 0xa5, 0xa2, 0x80, 0x13, 0x14, 0x62, 0x96, 0x8a, 0x00, 0x4c, 0x51, + 0x4b, 0x49, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, + 0x52, 0xd2, 0x51, 0x40, 0x0b, 0x45, 0x25, 0x14, 0x00, 0xb4, 0x52, 0x52, + 0xd0, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x52, + 0xd1, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x52, 0xd1, 0x40, 0x09, + 0x45, 0x2d, 0x14, 0x00, 0x94, 0x52, 0xd1, 0x40, 0x05, 0x14, 0x51, 0x40, + 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, + 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, + 0x05, 0x14, 0x52, 0xd0, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, + 0x01, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x87, 0xa5, 0x2d, 0x21, 0xe8, 0x68, + 0x01, 0xbd, 0xa9, 0x0d, 0x28, 0xe8, 0x28, 0xc5, 0x00, 0x33, 0x14, 0x94, + 0xfc, 0x51, 0x8a, 0x04, 0x47, 0x49, 0x4e, 0x22, 0x9b, 0x40, 0x09, 0x45, + 0x14, 0x50, 0x01, 0x46, 0x29, 0x45, 0x14, 0x00, 0x94, 0x53, 0xb1, 0x45, + 0x00, 0x37, 0x14, 0xb8, 0xa5, 0xa2, 0x80, 0x12, 0x96, 0x8a, 0x28, 0x00, + 0xa2, 0x8c, 0xd2, 0x66, 0x80, 0x16, 0x8a, 0x4c, 0xd1, 0x9a, 0x40, 0x2e, + 0x68, 0xa4, 0xcd, 0x26, 0x69, 0x80, 0xea, 0x29, 0xb9, 0xa3, 0x34, 0x00, + 0xea, 0x29, 0x28, 0xa0, 0x05, 0xa5, 0xa4, 0xa2, 0x80, 0x16, 0x8a, 0x4a, + 0x5a, 0x00, 0x28, 0xa2, 0x8a, 0x06, 0x28, 0xa7, 0x0a, 0x6d, 0x38, 0x50, + 0x03, 0x85, 0x2d, 0x20, 0xa5, 0xa0, 0x02, 0x8a, 0x29, 0x68, 0x01, 0x28, + 0xa5, 0xa2, 0x80, 0x0c, 0x51, 0x4b, 0x45, 0x00, 0x25, 0x14, 0xb4, 0xb4, + 0x00, 0x98, 0xa3, 0x14, 0xb4, 0x50, 0x02, 0x62, 0x8c, 0x52, 0xd1, 0x40, + 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2d, + 0x14, 0x00, 0x94, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x25, 0x14, + 0xb4, 0x50, 0x02, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, + 0x45, 0x14, 0x00, 0x94, 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, + 0x94, 0x51, 0x45, 0x00, 0x14, 0x94, 0xb4, 0x50, 0x02, 0x51, 0x45, 0x14, + 0x00, 0x52, 0x52, 0xd1, 0x40, 0x05, 0x25, 0x2d, 0x14, 0x00, 0x94, 0x51, + 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0xb4, 0x94, 0x50, 0x02, 0xd1, + 0x49, 0x45, 0x00, 0x2d, 0x14, 0x94, 0x50, 0x02, 0xd1, 0x49, 0x9a, 0x33, + 0x40, 0x0b, 0x45, 0x25, 0x14, 0x00, 0xb4, 0x52, 0x66, 0x8c, 0xd0, 0x02, + 0xd1, 0x49, 0x9a, 0x28, 0x01, 0xd4, 0x52, 0x51, 0x40, 0x0b, 0x45, 0x25, + 0x14, 0x00, 0xb4, 0x52, 0x51, 0x40, 0x0b, 0x45, 0x25, 0x14, 0x00, 0xb4, + 0x52, 0x51, 0x40, 0x0b, 0x45, 0x25, 0x2d, 0x00, 0x14, 0x51, 0x45, 0x00, + 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0xb4, 0x51, 0x40, + 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, + 0x06, 0x68, 0xcd, 0x25, 0x25, 0x00, 0x3b, 0x34, 0xd3, 0xd2, 0x8a, 0x43, + 0xd0, 0xd0, 0x02, 0x03, 0xc0, 0xa2, 0x94, 0x0e, 0x28, 0xc5, 0x00, 0x18, + 0xa3, 0x14, 0xb4, 0xb4, 0x01, 0x19, 0xa6, 0x62, 0xa5, 0x22, 0x98, 0x45, + 0x02, 0x19, 0x8a, 0x31, 0x4e, 0xc5, 0x25, 0x00, 0x00, 0x52, 0xd2, 0x51, + 0x9a, 0x00, 0x28, 0xa4, 0xcd, 0x26, 0xea, 0x00, 0x75, 0x26, 0x69, 0x85, + 0xa9, 0x0b, 0x52, 0x02, 0x4c, 0xd2, 0x66, 0xa3, 0xdf, 0x41, 0x7a, 0x00, + 0x93, 0x34, 0x9b, 0x85, 0x45, 0xba, 0x93, 0x75, 0x00, 0x4b, 0xba, 0x8d, + 0xd5, 0x16, 0xea, 0x4d, 0xd4, 0x01, 0x2e, 0xea, 0x37, 0xd4, 0x25, 0xa8, + 0xcd, 0x00, 0x4b, 0xba, 0x97, 0x7d, 0x44, 0x0d, 0x38, 0x50, 0x04, 0x81, + 0xa9, 0xd9, 0xa6, 0x01, 0x4f, 0xa0, 0x05, 0xa5, 0xa4, 0x14, 0xb4, 0xc6, + 0x2d, 0x14, 0x62, 0x97, 0x14, 0x00, 0x94, 0xb4, 0x62, 0x97, 0x14, 0x00, + 0x98, 0xa7, 0x0a, 0x50, 0x29, 0x71, 0x40, 0x00, 0xa2, 0x97, 0x14, 0x50, + 0x01, 0x4b, 0x45, 0x14, 0x00, 0x51, 0x45, 0x2d, 0x00, 0x14, 0x51, 0x4b, + 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, + 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x52, 0x50, 0x01, 0x45, 0x14, + 0x50, 0x01, 0x45, 0x14, 0x94, 0x00, 0xb4, 0x52, 0x51, 0x40, 0x0b, 0x49, + 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, + 0x45, 0x14, 0x00, 0x51, 0x49, 0x45, 0x00, 0x2d, 0x14, 0x94, 0xb4, 0x00, + 0x52, 0x52, 0xd2, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, + 0x01, 0x49, 0x4b, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x50, 0x02, 0x51, 0x45, + 0x14, 0x00, 0x94, 0x52, 0xd2, 0x50, 0x01, 0x45, 0x06, 0x92, 0x80, 0x17, + 0x34, 0x99, 0xa4, 0xa4, 0xa0, 0x07, 0x66, 0x8c, 0xd3, 0x73, 0x49, 0x40, + 0x0e, 0xcd, 0x19, 0xa4, 0xcd, 0x14, 0x00, 0xb9, 0xa5, 0xa6, 0xd2, 0xd0, + 0x02, 0xd1, 0x49, 0x4b, 0x40, 0x05, 0x14, 0x52, 0xd0, 0x01, 0x45, 0x14, + 0x50, 0x02, 0xd1, 0x49, 0x45, 0x00, 0x2d, 0x14, 0x94, 0xb4, 0x00, 0x51, + 0x45, 0x2d, 0x00, 0x25, 0x2d, 0x14, 0x50, 0x02, 0x51, 0x4b, 0x45, 0x00, + 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x4b, 0x40, 0x05, 0x14, 0x51, 0x40, + 0x05, 0x2d, 0x25, 0x14, 0x00, 0xb4, 0x62, 0x8a, 0x28, 0x00, 0xa2, 0x8a, + 0x28, 0x00, 0xa2, 0x92, 0x8a, 0x00, 0x0d, 0x36, 0x97, 0x34, 0x50, 0x02, + 0x52, 0x37, 0x43, 0x4b, 0x48, 0x47, 0x06, 0x81, 0x0e, 0x1d, 0x28, 0xc5, + 0x20, 0x3c, 0x52, 0xe6, 0x81, 0x89, 0x4b, 0x45, 0x25, 0x00, 0x14, 0xd3, + 0x4e, 0x34, 0xc3, 0x40, 0x08, 0x69, 0xa6, 0x9d, 0x9a, 0x6b, 0x1a, 0x04, + 0x26, 0x69, 0xa4, 0xd2, 0x17, 0xa8, 0xd9, 0xe9, 0x00, 0xf2, 0xd5, 0x19, + 0x7a, 0x63, 0x3d, 0x46, 0x5a, 0x80, 0x26, 0xdf, 0x4d, 0xdf, 0x51, 0x16, + 0xa6, 0x96, 0xa0, 0x09, 0xb7, 0xd2, 0x17, 0xa8, 0x77, 0x51, 0xba, 0x80, + 0x26, 0xdd, 0x49, 0xba, 0xa2, 0xdd, 0x46, 0xea, 0x00, 0x9b, 0x75, 0x19, + 0xa8, 0xc1, 0xa5, 0xcd, 0x00, 0x3b, 0x34, 0xb9, 0xa6, 0xd2, 0x8a, 0x00, + 0x78, 0xa9, 0x54, 0xd4, 0x22, 0xa6, 0x4a, 0x00, 0x90, 0x53, 0xb1, 0x40, + 0xa7, 0x81, 0x40, 0x0d, 0xc5, 0x38, 0x0a, 0x50, 0x29, 0x68, 0x18, 0x98, + 0xa5, 0xc5, 0x2e, 0x29, 0x68, 0x01, 0x31, 0x4b, 0x45, 0x14, 0x00, 0x52, + 0xd1, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x2d, 0x14, 0x94, 0x53, 0x01, + 0x68, 0xa4, 0xa2, 0x80, 0x16, 0x96, 0x92, 0x8a, 0x00, 0x5a, 0x5a, 0x4a, + 0x33, 0x40, 0x0b, 0x45, 0x25, 0x2d, 0x00, 0x14, 0x51, 0x45, 0x03, 0x0a, + 0x28, 0xa2, 0x81, 0x05, 0x14, 0x51, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, + 0x94, 0x94, 0xb4, 0x50, 0x02, 0x51, 0x45, 0x14, 0x00, 0x94, 0x51, 0x45, + 0x00, 0x14, 0xb4, 0x94, 0x50, 0x01, 0x45, 0x14, 0x52, 0x00, 0xa2, 0x8a, + 0x28, 0x00, 0xa2, 0x8a, 0x29, 0x80, 0x51, 0x45, 0x14, 0x80, 0x28, 0xa2, + 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x28, 0xa4, 0xa2, 0x98, 0x0b, 0x45, + 0x25, 0x2d, 0x20, 0x0a, 0x4a, 0x28, 0xa0, 0x02, 0x8a, 0x28, 0xa6, 0x01, + 0x45, 0x14, 0x94, 0x00, 0x94, 0x86, 0x9d, 0x49, 0x40, 0x09, 0x49, 0x4b, + 0x49, 0x40, 0x09, 0x45, 0x14, 0x87, 0x02, 0x80, 0x0a, 0x5c, 0xd4, 0x12, + 0x5d, 0x5b, 0xc4, 0x33, 0x24, 0xf1, 0xa7, 0xfb, 0xcc, 0x05, 0x53, 0x93, + 0xc4, 0x1a, 0x44, 0x59, 0xdf, 0xa9, 0x5a, 0x8c, 0x7f, 0xd3, 0x41, 0x40, + 0x1a, 0x79, 0xa3, 0x35, 0x81, 0x27, 0x8c, 0xfc, 0x3b, 0x17, 0xdf, 0xd5, + 0x60, 0xfc, 0x09, 0x35, 0x55, 0xfe, 0x22, 0x78, 0x61, 0x3a, 0xea, 0x4a, + 0x7e, 0x8a, 0x68, 0x03, 0xaa, 0xa5, 0xae, 0x3c, 0xfc, 0x4b, 0xf0, 0xc0, + 0x38, 0xfb, 0x71, 0x27, 0xd9, 0x0d, 0x27, 0xfc, 0x2c, 0xdf, 0x0c, 0x7f, + 0xcf, 0xe3, 0x7f, 0xdf, 0x06, 0x90, 0x1d, 0x95, 0x15, 0xc8, 0x2f, 0xc4, + 0xaf, 0x0c, 0x9f, 0xf9, 0x7e, 0x23, 0xea, 0x86, 0xa6, 0x5f, 0x88, 0x5e, + 0x18, 0x63, 0xff, 0x00, 0x21, 0x34, 0x1f, 0x55, 0x3f, 0xe1, 0x4c, 0x0e, + 0xa6, 0x96, 0xb0, 0x21, 0xf1, 0x97, 0x87, 0xa7, 0xff, 0x00, 0x57, 0xaa, + 0xdb, 0x9f, 0xab, 0x62, 0xad, 0xaf, 0x88, 0x74, 0x97, 0x64, 0x54, 0xd4, + 0x2d, 0x98, 0xb9, 0xc0, 0xc4, 0x82, 0x80, 0x35, 0x28, 0xa8, 0x92, 0xe2, + 0x29, 0x06, 0x63, 0x91, 0x18, 0x7b, 0x30, 0x35, 0x26, 0x68, 0x01, 0x69, + 0x69, 0x01, 0xa5, 0xa0, 0x02, 0x96, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, + 0x01, 0x69, 0x29, 0x68, 0xcd, 0x00, 0x25, 0x14, 0xb4, 0x94, 0x00, 0x52, + 0xd2, 0x52, 0xd0, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, + 0x45, 0x14, 0x66, 0x80, 0x16, 0x92, 0x8a, 0x4a, 0x00, 0x5a, 0x4a, 0x29, + 0x28, 0x01, 0x69, 0x28, 0xa2, 0x80, 0x0a, 0x0f, 0x4a, 0x33, 0x41, 0xe8, + 0x68, 0x01, 0x01, 0xe0, 0x51, 0x9a, 0x60, 0x3c, 0x0a, 0x33, 0x40, 0x0f, + 0xcd, 0x26, 0x69, 0xb9, 0xa4, 0xcd, 0x00, 0x38, 0xb5, 0x34, 0xb5, 0x21, + 0xa6, 0x9a, 0x04, 0x29, 0x6a, 0x8d, 0xdb, 0x8a, 0x46, 0x35, 0x13, 0x35, + 0x20, 0x02, 0xd5, 0x1b, 0x35, 0x23, 0x35, 0x44, 0xcf, 0x40, 0x0f, 0x2d, + 0x4c, 0x2d, 0x4c, 0x2d, 0x4d, 0xdd, 0x4c, 0x07, 0xee, 0xa4, 0xdd, 0x4c, + 0xcd, 0x00, 0xd0, 0x03, 0xe8, 0xa4, 0x0d, 0x46, 0x68, 0x01, 0xc0, 0xd1, + 0x4d, 0xcd, 0x19, 0xa4, 0x03, 0xc1, 0xa7, 0x03, 0x51, 0x66, 0x80, 0x68, + 0x02, 0x70, 0x69, 0xe2, 0xab, 0x17, 0x0a, 0x0b, 0x31, 0xc0, 0x1d, 0x49, + 0xa5, 0x5b, 0xb8, 0x7c, 0x83, 0x30, 0x70, 0xd1, 0x81, 0x9c, 0x83, 0x40, + 0x17, 0x14, 0x54, 0xc8, 0x2b, 0x9d, 0xd5, 0xbc, 0x4b, 0x06, 0x93, 0x2c, + 0x51, 0xf9, 0x6d, 0x2b, 0xbf, 0x24, 0x2f, 0x61, 0x52, 0xc9, 0xe2, 0x6b, + 0x18, 0x5a, 0xd2, 0x46, 0xb9, 0x8d, 0x21, 0x98, 0x31, 0x25, 0x98, 0x71, + 0x81, 0x40, 0x1d, 0x08, 0xa7, 0x8a, 0xf2, 0x6d, 0x4f, 0xe2, 0x29, 0x5d, + 0x50, 0xcf, 0x6d, 0x78, 0x82, 0xde, 0x36, 0xda, 0xb1, 0x0e, 0x77, 0x0a, + 0xb1, 0x73, 0xf1, 0x7b, 0x4f, 0x8e, 0x5f, 0x32, 0x08, 0x26, 0x73, 0xe4, + 0xe3, 0x69, 0x18, 0x01, 0xe8, 0xb8, 0xec, 0x7a, 0x68, 0xba, 0xb7, 0xfb, + 0x47, 0xd9, 0xfc, 0xe8, 0xfc, 0xec, 0x67, 0x66, 0xe1, 0x9f, 0xca, 0xa5, + 0xde, 0xbb, 0xf6, 0x67, 0x9c, 0x67, 0x15, 0xf3, 0xb4, 0xde, 0x36, 0x32, + 0xdc, 0x1b, 0xd8, 0xe3, 0x75, 0xbb, 0xdf, 0xb8, 0x48, 0xd2, 0x71, 0xf9, + 0x55, 0xf9, 0xfe, 0x2c, 0x6b, 0x72, 0x3b, 0x3a, 0x2d, 0xba, 0x33, 0x45, + 0xe5, 0x92, 0xa0, 0xfe, 0x7f, 0x5a, 0x5c, 0xc8, 0x7c, 0xac, 0xf6, 0x47, + 0xf1, 0x3e, 0x95, 0x1e, 0xa8, 0x34, 0xf6, 0xb9, 0x1e, 0x71, 0xe3, 0xd8, + 0x1f, 0x4c, 0xd6, 0xb1, 0x99, 0x04, 0xcb, 0x11, 0x6f, 0x9d, 0x81, 0x60, + 0x3d, 0x87, 0xff, 0x00, 0xae, 0xbe, 0x55, 0x6d, 0x5b, 0x50, 0xfe, 0xd0, + 0x7b, 0xdf, 0x37, 0xe7, 0x93, 0xad, 0x6b, 0x4b, 0xe3, 0xdf, 0x10, 0x30, + 0x8e, 0x4f, 0xb7, 0xbe, 0xf4, 0x43, 0x1a, 0x91, 0x8e, 0x86, 0x97, 0x3a, + 0x1f, 0x2b, 0x3d, 0xda, 0xf7, 0xc6, 0x1a, 0x6d, 0x8e, 0xa6, 0x2c, 0xe4, + 0xde, 0x70, 0x76, 0xbc, 0x8a, 0x3e, 0x55, 0x35, 0xba, 0x2e, 0x22, 0x3e, + 0x56, 0x18, 0x1f, 0x37, 0xee, 0x11, 0xdf, 0x8c, 0xd7, 0xcb, 0x07, 0xc4, + 0x5a, 0xa1, 0x49, 0x14, 0xdc, 0x37, 0xef, 0x3e, 0xf6, 0x7b, 0xd5, 0xa8, + 0x7c, 0x61, 0xae, 0xdb, 0xc7, 0x0a, 0x2e, 0xa5, 0x70, 0xa2, 0x1c, 0xf9, + 0x60, 0x37, 0xdd, 0xcd, 0x1c, 0xe8, 0x39, 0x59, 0xf4, 0x26, 0xaf, 0xe2, + 0xcd, 0x3f, 0x47, 0xbb, 0x5b, 0x69, 0x77, 0xc9, 0x21, 0xe5, 0xc2, 0x0c, + 0xec, 0x1e, 0xf5, 0xaa, 0xb7, 0xd6, 0xf2, 0x5a, 0xc5, 0x72, 0x8f, 0xba, + 0x29, 0x4a, 0x85, 0x23, 0xbe, 0x4e, 0x05, 0x7c, 0xc7, 0x1f, 0x88, 0x75, + 0x40, 0xf2, 0xcc, 0xd7, 0x4e, 0xcf, 0x2f, 0xde, 0x66, 0x19, 0xcd, 0x5a, + 0xb4, 0xf1, 0x6e, 0xbd, 0x05, 0xb2, 0xdb, 0xc1, 0x7c, 0xe2, 0x24, 0x90, + 0x48, 0x17, 0x6e, 0x40, 0x61, 0x47, 0x3a, 0x0e, 0x56, 0x7d, 0x15, 0xaa, + 0x6b, 0xb6, 0x1a, 0x38, 0x4f, 0xb5, 0xcd, 0xb5, 0x9f, 0xa2, 0x81, 0x93, + 0x8f, 0x5a, 0xb9, 0x0d, 0xcc, 0x37, 0x36, 0xe9, 0x3c, 0x32, 0x2b, 0xc4, + 0xe3, 0x2a, 0xc0, 0xf0, 0x6b, 0xe7, 0x07, 0xf1, 0x9e, 0xb3, 0x35, 0xcb, + 0xdc, 0x5e, 0x4b, 0x1c, 0xee, 0xfc, 0x1f, 0x32, 0x30, 0x46, 0x3d, 0xbd, + 0x2a, 0xfe, 0x9f, 0xf1, 0x1b, 0x57, 0xd2, 0xed, 0x0d, 0xa2, 0x2c, 0x4f, + 0x17, 0x98, 0x1d, 0x41, 0x07, 0xe5, 0xc1, 0xce, 0x07, 0xb5, 0x1c, 0xc8, + 0x39, 0x59, 0xf4, 0x04, 0xf7, 0x10, 0xdb, 0x28, 0x69, 0xe5, 0x48, 0xc1, + 0x38, 0x05, 0xd8, 0x0c, 0x9a, 0x90, 0x10, 0x46, 0x41, 0xc8, 0xf5, 0xaf, + 0x03, 0xd4, 0x7e, 0x21, 0x9d, 0x62, 0xe7, 0xcc, 0xd4, 0xed, 0x09, 0x4d, + 0xb8, 0x44, 0x86, 0x4d, 0xbb, 0x7d, 0xf9, 0xad, 0xcd, 0x0f, 0xe2, 0xac, + 0x16, 0x9a, 0x72, 0x5a, 0x5e, 0x41, 0x39, 0xf2, 0xe4, 0x5d, 0x92, 0x0f, + 0x98, 0xec, 0xcf, 0x20, 0xd3, 0xe6, 0x42, 0xb3, 0x3d, 0x86, 0x8a, 0xf2, + 0xad, 0x47, 0xe2, 0x2a, 0x6a, 0xb7, 0x84, 0x69, 0xba, 0x8a, 0xd9, 0xc3, + 0x0f, 0x20, 0x4a, 0x0a, 0x99, 0x4d, 0x76, 0x9a, 0x17, 0x8a, 0xac, 0xb5, + 0x8b, 0x2b, 0x47, 0x49, 0xe2, 0x33, 0xc8, 0x4a, 0x3a, 0x06, 0x1c, 0x10, + 0x09, 0x34, 0xee, 0x23, 0xa1, 0xa2, 0xb9, 0xbb, 0x8f, 0x1a, 0x69, 0xd6, + 0xda, 0xc0, 0xb1, 0x62, 0x76, 0x67, 0x6b, 0x4f, 0x9f, 0x94, 0x37, 0xa5, + 0x74, 0x29, 0x2c, 0x72, 0x1c, 0x23, 0x06, 0xe0, 0x1e, 0x0f, 0x63, 0x40, + 0x12, 0x51, 0x4d, 0x56, 0x56, 0xce, 0xd6, 0x07, 0x07, 0x07, 0x14, 0xea, + 0x63, 0x0a, 0x5a, 0x4a, 0x28, 0x01, 0x68, 0xa4, 0xa2, 0x90, 0x0b, 0x45, + 0x25, 0x2d, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, + 0x94, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, + 0x25, 0x14, 0x50, 0x20, 0xa2, 0x8a, 0x28, 0x00, 0xa4, 0xa2, 0x8a, 0x00, + 0x28, 0xa2, 0x92, 0x80, 0x17, 0x34, 0x99, 0xa4, 0xa2, 0x80, 0x1d, 0x9a, + 0x29, 0xb9, 0xa3, 0x34, 0x00, 0xea, 0x29, 0xb9, 0xa3, 0x34, 0x00, 0xec, + 0xd2, 0x52, 0x51, 0x9a, 0x60, 0x3a, 0x8a, 0x4c, 0xd2, 0xd2, 0x00, 0xa2, + 0x8c, 0xd2, 0x50, 0x02, 0xd1, 0x49, 0x50, 0xdd, 0x5e, 0x5b, 0x59, 0x42, + 0x66, 0xba, 0x9e, 0x38, 0x63, 0x1d, 0x59, 0xd8, 0x01, 0x40, 0x13, 0xd2, + 0x57, 0x3f, 0xa8, 0x78, 0xdb, 0xc3, 0xfa, 0x74, 0x1e, 0x6c, 0xba, 0x8c, + 0x4f, 0x91, 0x90, 0xb1, 0x1d, 0xc4, 0xfe, 0x55, 0xe7, 0x7e, 0x24, 0xf8, + 0xb5, 0x2d, 0xec, 0x2d, 0x6b, 0xa1, 0xc5, 0x2c, 0x24, 0x9c, 0x19, 0xb1, + 0x96, 0xc7, 0xb7, 0xa5, 0x17, 0x03, 0xd9, 0x32, 0x3d, 0x6b, 0x3a, 0xfb, + 0x5d, 0xd2, 0xf4, 0xe0, 0x4d, 0xdd, 0xfc, 0x11, 0x63, 0xa8, 0x2e, 0x33, + 0xf9, 0x57, 0xcf, 0x6b, 0xa9, 0xf8, 0x9a, 0x75, 0x7d, 0xd7, 0xf7, 0x31, + 0xa4, 0x9f, 0x78, 0xcb, 0x31, 0xe6, 0xb3, 0xee, 0x2c, 0x27, 0x70, 0x19, + 0xee, 0x9a, 0x77, 0x27, 0x9c, 0x93, 0x8f, 0xce, 0x97, 0x30, 0xec, 0x7a, + 0xa7, 0x88, 0x3e, 0x2f, 0xda, 0xd9, 0x5c, 0x18, 0x74, 0x9b, 0x74, 0xb9, + 0x03, 0xac, 0xb2, 0x31, 0x0b, 0xf8, 0x0e, 0xb5, 0x90, 0xff, 0x00, 0x19, + 0xef, 0xe4, 0x84, 0x2c, 0x1a, 0x5c, 0x46, 0x5e, 0xe4, 0x12, 0x45, 0x72, + 0x10, 0x69, 0x28, 0xa8, 0xbb, 0x6d, 0x17, 0x76, 0x39, 0x67, 0x39, 0xab, + 0x2b, 0x6b, 0xe4, 0x29, 0x2f, 0x71, 0x1a, 0x0e, 0xf8, 0xc5, 0x2b, 0xb0, + 0xb2, 0x2d, 0xde, 0x7c, 0x4e, 0xf1, 0x5c, 0xef, 0xb4, 0x48, 0x96, 0xe1, + 0xbe, 0xe8, 0x55, 0x02, 0xb3, 0xe6, 0xd6, 0x3c, 0x51, 0x7a, 0x09, 0xb9, + 0xd5, 0x5d, 0x41, 0xf5, 0x90, 0xd5, 0x1b, 0xdb, 0xb8, 0x12, 0xe1, 0x04, + 0x65, 0x26, 0x1f, 0xc4, 0xc4, 0x9e, 0x3e, 0x95, 0x7a, 0x09, 0xed, 0xa5, + 0x1f, 0xba, 0xb4, 0x91, 0x8f, 0xa9, 0x18, 0x14, 0x0c, 0xa6, 0x62, 0xb9, + 0x97, 0x3e, 0x76, 0xa8, 0xcc, 0x7d, 0x89, 0x35, 0x12, 0x69, 0xc1, 0xdb, + 0xe6, 0x9a, 0xe0, 0x8e, 0xe7, 0xd6, 0xb4, 0xcc, 0xf3, 0x07, 0x0a, 0x96, + 0x88, 0xb9, 0xee, 0xc6, 0xa3, 0x8e, 0xc6, 0xee, 0xde, 0x77, 0x99, 0x1f, + 0xe6, 0x6e, 0xa0, 0x92, 0x40, 0xfa, 0x0a, 0x40, 0x55, 0x1a, 0x4d, 0x9f, + 0x7f, 0x3d, 0xbe, 0xad, 0x48, 0xfa, 0x4d, 0xbe, 0xc6, 0x2b, 0x0b, 0xe7, + 0x1d, 0x59, 0xb8, 0x15, 0xa7, 0x09, 0xbc, 0x90, 0x92, 0xf2, 0xa2, 0xe3, + 0xd1, 0x6b, 0x17, 0x59, 0xd5, 0xa6, 0xb1, 0x26, 0x39, 0x2e, 0x4b, 0x16, + 0xe8, 0x8a, 0xbd, 0xa8, 0x01, 0xd6, 0x7a, 0x5c, 0x4f, 0xbb, 0x74, 0x6b, + 0x3f, 0x3f, 0xc0, 0x7a, 0x54, 0xed, 0xa4, 0xc2, 0x1b, 0x8b, 0x3e, 0x3d, + 0x32, 0x6b, 0x07, 0x4f, 0xd6, 0x4a, 0x4e, 0xb1, 0x06, 0x92, 0x00, 0xe7, + 0x19, 0x50, 0x3a, 0xd7, 0x5b, 0x1c, 0x73, 0x32, 0xa1, 0xfb, 0x4b, 0x93, + 0xdc, 0xfa, 0xd0, 0x17, 0x33, 0xae, 0x34, 0xc8, 0x7c, 0x86, 0x29, 0x6a, + 0x63, 0x61, 0xfc, 0x4c, 0xdc, 0x0a, 0xaf, 0x6d, 0xa5, 0x46, 0xf1, 0xee, + 0x78, 0xcb, 0xf3, 0xc3, 0x46, 0x78, 0xfe, 0x75, 0x16, 0xb3, 0xa8, 0x4d, + 0x67, 0x27, 0x90, 0xf3, 0x49, 0x29, 0x71, 0x9d, 0xb8, 0xe3, 0x15, 0x0e, + 0x8f, 0xaa, 0xca, 0xd2, 0x8b, 0x68, 0x9c, 0xc2, 0x4f, 0x21, 0x76, 0x70, + 0x68, 0x03, 0x40, 0xe9, 0x30, 0x05, 0x24, 0x09, 0xd4, 0xfb, 0x1a, 0xae, + 0x9a, 0x68, 0xdd, 0x95, 0x9a, 0x78, 0xd8, 0x77, 0x39, 0xad, 0xe6, 0x7b, + 0xc5, 0x84, 0x30, 0x99, 0x0e, 0x07, 0x39, 0x5a, 0x87, 0xed, 0x37, 0x6a, + 0x01, 0x68, 0xe1, 0x60, 0x4f, 0x1f, 0x2e, 0x28, 0xb0, 0x14, 0x91, 0x35, + 0x08, 0x80, 0xf2, 0x35, 0x56, 0x52, 0x3d, 0x58, 0x8a, 0xb5, 0x6f, 0xe2, + 0xaf, 0x14, 0x58, 0xdc, 0x08, 0xa1, 0xd5, 0x65, 0x72, 0x3a, 0x0d, 0xe4, + 0x83, 0x53, 0xcb, 0x33, 0x46, 0x99, 0x92, 0xcd, 0x5b, 0xfd, 0xc3, 0x58, + 0xed, 0x7f, 0x1b, 0x5f, 0x0c, 0x22, 0xa4, 0x5f, 0xc4, 0xbb, 0x72, 0x7f, + 0x3a, 0x00, 0xeb, 0xed, 0xfe, 0x27, 0xf8, 0xb2, 0xc4, 0x8f, 0xb4, 0xc2, + 0xb3, 0xaf, 0xfb, 0x48, 0x3f, 0xa5, 0x6d, 0x59, 0x7c, 0x6d, 0x0a, 0x42, + 0xea, 0x1a, 0x51, 0x53, 0xdc, 0xc6, 0xc4, 0x7f, 0x3a, 0xe2, 0xa3, 0x6b, + 0x49, 0xd4, 0xf9, 0x77, 0x6c, 0xbe, 0xcd, 0x9e, 0x29, 0xff, 0x00, 0x64, + 0xca, 0x63, 0x30, 0xcc, 0xbe, 0xf8, 0x34, 0xee, 0xc3, 0x43, 0xd7, 0x34, + 0xdf, 0x8a, 0x5e, 0x1a, 0xd4, 0x30, 0x1a, 0xe5, 0xad, 0xd8, 0xf6, 0x95, + 0x78, 0xfc, 0xc5, 0x75, 0x56, 0x7a, 0xad, 0x86, 0xa0, 0x81, 0xad, 0x2f, + 0x21, 0x98, 0x1f, 0xee, 0x38, 0x35, 0xf3, 0x09, 0xd3, 0xa2, 0x6b, 0xe7, + 0x56, 0xdb, 0x8e, 0xe9, 0x19, 0xe5, 0x6a, 0x64, 0xb3, 0x96, 0xda, 0x40, + 0xf6, 0x5a, 0x8b, 0xc4, 0xe3, 0xa0, 0x62, 0x54, 0xd3, 0xe6, 0x62, 0xb1, + 0xf5, 0x18, 0x34, 0x57, 0xcf, 0x5a, 0x77, 0x8e, 0xbc, 0x5d, 0xa2, 0x30, + 0x57, 0x9c, 0xdd, 0xc4, 0x3b, 0x3f, 0xcd, 0xc7, 0xf3, 0xae, 0xcf, 0x48, + 0xf8, 0xcd, 0x63, 0x31, 0x58, 0xf5, 0x5b, 0x37, 0xb7, 0x7e, 0x85, 0xd3, + 0x91, 0xf9, 0x1a, 0x77, 0x41, 0x63, 0xd4, 0xa8, 0xac, 0xbd, 0x2f, 0xc4, + 0x7a, 0x46, 0xb2, 0x81, 0xac, 0x6f, 0xa1, 0x94, 0x9f, 0xe1, 0xdd, 0x86, + 0xfc, 0xab, 0x4e, 0x98, 0x85, 0xcd, 0x19, 0xa4, 0xa4, 0xa0, 0x07, 0x66, + 0x96, 0x99, 0x4e, 0xa0, 0x05, 0xa2, 0x92, 0x8a, 0x00, 0x5a, 0x29, 0x28, + 0xa0, 0x05, 0xa4, 0xa4, 0xa3, 0x34, 0x00, 0xea, 0x29, 0xb9, 0xa5, 0xcd, + 0x00, 0x2d, 0x21, 0xa2, 0x83, 0x40, 0x0d, 0xcd, 0x19, 0xa2, 0x8a, 0x00, + 0x33, 0x41, 0x3c, 0x1a, 0x4a, 0x42, 0x70, 0x0d, 0x00, 0x73, 0x92, 0x78, + 0xb6, 0xc6, 0x0d, 0x01, 0x75, 0x59, 0x0e, 0x10, 0x70, 0xe9, 0x9e, 0x41, + 0xc7, 0x4a, 0xa4, 0xfe, 0x3b, 0xb7, 0x17, 0x30, 0xaa, 0xdb, 0xb1, 0x85, + 0x80, 0xf3, 0x1f, 0x3f, 0x73, 0x35, 0xf3, 0xea, 0xad, 0xdc, 0xf6, 0xc6, + 0x23, 0x3c, 0x81, 0x09, 0xc9, 0x1b, 0x89, 0xcd, 0x1f, 0x6e, 0xbf, 0x80, + 0x98, 0x12, 0xf1, 0xd1, 0x5b, 0xf8, 0x77, 0xfd, 0xea, 0x8e, 0x72, 0xb9, + 0x19, 0xf5, 0x32, 0xdf, 0xc2, 0xd2, 0x6d, 0x0e, 0x08, 0xf2, 0xfc, 0xcc, + 0xe7, 0xb5, 0x67, 0x69, 0xfe, 0x27, 0xb0, 0xd4, 0x6f, 0xe4, 0xb4, 0x88, + 0xb0, 0x75, 0xfb, 0xa5, 0x86, 0x03, 0x7d, 0x2b, 0xe7, 0x34, 0xf1, 0x16, + 0xb9, 0x08, 0xd8, 0xb7, 0xf7, 0x01, 0x76, 0x6c, 0xfb, 0xff, 0x00, 0xc3, + 0xe9, 0x52, 0xdb, 0xf8, 0xbb, 0x59, 0xb6, 0x68, 0xa4, 0x49, 0xd4, 0x34, + 0x27, 0xe4, 0x6d, 0xa3, 0x34, 0x73, 0xa1, 0x72, 0xb3, 0xe9, 0x99, 0x6f, + 0x60, 0x86, 0xdd, 0xa7, 0x92, 0x45, 0x58, 0xd4, 0x90, 0x58, 0x9f, 0x4a, + 0x48, 0xaf, 0x20, 0xb9, 0xb6, 0x59, 0xe1, 0x95, 0x5a, 0x26, 0xe8, 0xc0, + 0xd7, 0xcf, 0x13, 0x7c, 0x45, 0xd6, 0x2e, 0x2d, 0x05, 0xb5, 0xc0, 0x8e, + 0x58, 0x43, 0x97, 0x60, 0x46, 0x37, 0x13, 0x57, 0xb4, 0xaf, 0x89, 0x32, + 0xd8, 0x5a, 0xcd, 0x6c, 0xf6, 0x7f, 0xb9, 0x94, 0x82, 0xa1, 0x5f, 0xee, + 0xd3, 0xe6, 0x41, 0xca, 0xcf, 0x79, 0x67, 0x1e, 0xa3, 0x9a, 0x85, 0xda, + 0xbc, 0x82, 0xf3, 0xe2, 0x3c, 0x17, 0xf7, 0xcb, 0x72, 0x27, 0x9a, 0xd8, + 0x45, 0x8d, 0x91, 0xe3, 0x20, 0xfa, 0xe6, 0xba, 0xdb, 0x5f, 0x1d, 0xe9, + 0x77, 0x50, 0xcb, 0x2a, 0x5d, 0xc6, 0x4a, 0xc4, 0xa5, 0x50, 0x9c, 0x12, + 0xdc, 0xf1, 0x4e, 0xe2, 0xb1, 0xd5, 0xbb, 0x54, 0x64, 0xd6, 0x0e, 0x95, + 0xe2, 0x13, 0x79, 0x0c, 0xdf, 0x69, 0x40, 0x92, 0xc6, 0x37, 0x60, 0x77, + 0x15, 0xa1, 0x2e, 0xa9, 0x69, 0x1d, 0xe2, 0x5a, 0xb4, 0xa0, 0x4c, 0xe3, + 0x21, 0x68, 0x11, 0x70, 0xb5, 0x37, 0x34, 0xdd, 0xc0, 0xf7, 0x14, 0x99, + 0xa6, 0x03, 0xf7, 0x52, 0xee, 0xa8, 0xf3, 0x49, 0x9a, 0x00, 0x97, 0x75, + 0x1b, 0xaa, 0x2c, 0xd3, 0x5e, 0x55, 0x8c, 0x65, 0xd8, 0x28, 0xce, 0x32, + 0x68, 0x02, 0xc6, 0xea, 0x4d, 0xd8, 0xac, 0x8d, 0x5f, 0x56, 0x1a, 0x75, + 0x8b, 0xca, 0xb8, 0x67, 0x04, 0x00, 0x3d, 0xeb, 0x91, 0xf1, 0x07, 0x8e, + 0xbe, 0xcf, 0x6b, 0x0b, 0x5a, 0x3c, 0x6d, 0x2b, 0xa9, 0x12, 0xc7, 0x9e, + 0x47, 0xd2, 0x95, 0xc7, 0x63, 0xd0, 0x4d, 0xd4, 0x62, 0x32, 0xe1, 0xc1, + 0x50, 0x71, 0x90, 0x6b, 0x0a, 0xff, 0x00, 0xc5, 0x51, 0x59, 0x6a, 0x3e, + 0x51, 0x03, 0xc8, 0x4c, 0x09, 0x1c, 0x9e, 0x95, 0xe5, 0x32, 0x78, 0xd6, + 0xfd, 0x62, 0x92, 0x1b, 0x42, 0x62, 0x49, 0x31, 0xbb, 0x7f, 0x24, 0x1a, + 0xc4, 0xbb, 0xb9, 0x9e, 0xed, 0xcb, 0xcf, 0x70, 0xee, 0xcd, 0xcb, 0x64, + 0xf5, 0xa8, 0x73, 0x45, 0x28, 0x36, 0x7a, 0x8f, 0x89, 0x7c, 0x7f, 0xa7, + 0xad, 0xb4, 0xf6, 0xb6, 0xf3, 0x99, 0x59, 0x98, 0x0c, 0xc7, 0xcf, 0xcb, + 0x8a, 0xe5, 0x23, 0xf1, 0xed, 0xd5, 0xa5, 0xac, 0xf6, 0x96, 0x50, 0xe2, + 0x29, 0x06, 0x33, 0x21, 0xe4, 0x7b, 0xd7, 0x22, 0xb1, 0xe1, 0x7e, 0x51, + 0x52, 0x79, 0x7f, 0x3f, 0x35, 0x2e, 0x6c, 0xb5, 0x04, 0x6a, 0xdd, 0x78, + 0x9b, 0x55, 0xbc, 0x98, 0xcd, 0x3d, 0xdb, 0x06, 0x61, 0x83, 0xb7, 0x8e, + 0x2a, 0x82, 0x9b, 0x9b, 0xb6, 0xc0, 0x77, 0x60, 0x0e, 0x4e, 0x4f, 0x02, + 0xa1, 0x28, 0x03, 0x0a, 0xd5, 0x4b, 0x9b, 0x6b, 0x6b, 0x27, 0x42, 0x40, + 0x2d, 0xdb, 0xb9, 0xa4, 0x9b, 0x7b, 0x83, 0x49, 0x19, 0x7e, 0x6d, 0xb9, + 0xb9, 0x36, 0xef, 0x29, 0x56, 0xcf, 0xde, 0xc7, 0x19, 0xa9, 0x66, 0xb3, + 0x7b, 0x59, 0x36, 0xb1, 0xc8, 0x23, 0x20, 0x8e, 0xf5, 0x4d, 0x63, 0x84, + 0x27, 0x28, 0x0b, 0x6e, 0xdd, 0x9a, 0xbb, 0x3d, 0xd7, 0xda, 0x76, 0x63, + 0xf8, 0x54, 0x2d, 0x36, 0x95, 0x81, 0x37, 0x72, 0xab, 0x44, 0xa1, 0xa9, + 0xbb, 0x06, 0x3e, 0xf5, 0x4a, 0xc0, 0x77, 0x38, 0xfa, 0xd4, 0x4f, 0x2c, + 0x31, 0xf5, 0x3c, 0xd4, 0x58, 0xad, 0x11, 0x2a, 0x91, 0xb3, 0x04, 0xf1, + 0x4a, 0x02, 0xe0, 0x7a, 0x55, 0x51, 0x7d, 0x83, 0x85, 0x85, 0xd8, 0x7a, + 0xed, 0xe2, 0x9e, 0xb7, 0xa8, 0xdd, 0x63, 0x2b, 0xf5, 0xe2, 0x9f, 0x2b, + 0x17, 0x32, 0x27, 0x18, 0x0d, 0xc2, 0xd0, 0x14, 0x17, 0xe9, 0x9a, 0x5f, + 0xb4, 0x5b, 0xe5, 0x72, 0xe8, 0x33, 0xfe, 0xd5, 0x4e, 0xa9, 0xf3, 0x64, + 0x60, 0x83, 0xe9, 0x43, 0x56, 0x1a, 0xb3, 0x1a, 0x46, 0xe4, 0xda, 0x78, + 0xab, 0x1a, 0x80, 0x30, 0x59, 0xc7, 0x1d, 0xb4, 0x81, 0x77, 0x8c, 0x9c, + 0x0e, 0x6a, 0xbc, 0xa7, 0x6f, 0x15, 0x4f, 0xe7, 0x76, 0xfb, 0xcd, 0xc7, + 0xbd, 0x38, 0xb1, 0x49, 0x13, 0x69, 0xd1, 0xca, 0x97, 0x82, 0xda, 0x66, + 0x0e, 0xac, 0x71, 0x9a, 0xb5, 0x79, 0x6f, 0xf6, 0x79, 0xe5, 0x55, 0x6c, + 0x81, 0xd2, 0xa8, 0x12, 0xf1, 0x90, 0xe1, 0xdb, 0x7e, 0x7a, 0xd4, 0xd1, + 0x49, 0x24, 0xc7, 0x74, 0x8c, 0x49, 0xf5, 0x34, 0x36, 0x24, 0x89, 0x51, + 0x15, 0xd5, 0x4b, 0x0e, 0x45, 0x3d, 0x71, 0x8c, 0x11, 0x8a, 0x3a, 0x0c, + 0x03, 0xfa, 0x54, 0x44, 0xb2, 0xb7, 0x5f, 0xc2, 0xa4, 0xb1, 0xe7, 0xe5, + 0xee, 0x31, 0x4b, 0x1c, 0xb2, 0x23, 0x03, 0x1b, 0xb2, 0x11, 0xd0, 0xa9, + 0xc5, 0x44, 0xcc, 0x48, 0xe9, 0xc5, 0x2c, 0x64, 0x62, 0x98, 0xac, 0x58, + 0x9a, 0xff, 0x00, 0x50, 0x36, 0xdf, 0x66, 0xfb, 0x4b, 0x98, 0x0b, 0x6e, + 0x2a, 0x4e, 0x79, 0xae, 0xbf, 0x4d, 0xf8, 0x93, 0xaa, 0xd8, 0xd8, 0xbd, + 0xb1, 0x8e, 0x26, 0x0d, 0x12, 0xc4, 0xae, 0x38, 0x2a, 0x06, 0x7f, 0x5e, + 0x6b, 0x89, 0x24, 0x9f, 0x5a, 0x4c, 0x9c, 0x53, 0xe6, 0x62, 0x71, 0x47, + 0xaa, 0xf8, 0x47, 0xc7, 0xfa, 0x6e, 0x9d, 0x77, 0x24, 0x57, 0x17, 0x13, + 0xac, 0x12, 0xa6, 0xe6, 0xf3, 0x47, 0x0a, 0xff, 0x00, 0x5a, 0xed, 0x2f, + 0x7c, 0x71, 0x69, 0x04, 0x36, 0xc6, 0xd3, 0x6d, 0xd9, 0x65, 0x57, 0x94, + 0xa3, 0x64, 0x22, 0xff, 0x00, 0x8d, 0x7c, 0xf5, 0x30, 0x8e, 0xd6, 0x05, + 0x96, 0x69, 0x76, 0x97, 0xfb, 0xaa, 0x06, 0x4d, 0x4b, 0x0c, 0x93, 0xdb, + 0xa7, 0x9d, 0x04, 0xac, 0xaa, 0xe3, 0x1b, 0x94, 0xe3, 0x35, 0x7c, 0xcf, + 0xa9, 0x1c, 0xab, 0xa1, 0xf5, 0x44, 0x37, 0x31, 0xdc, 0x47, 0x1b, 0xc6, + 0xd9, 0x57, 0x40, 0xe3, 0xe8, 0x6a, 0x45, 0x75, 0x75, 0xdc, 0x8c, 0x18, + 0x7a, 0x83, 0x5f, 0x3b, 0x69, 0x9e, 0x3f, 0xd6, 0xac, 0x2d, 0x5a, 0xd4, + 0xc8, 0x25, 0x88, 0xc7, 0xe5, 0x0d, 0xdc, 0x32, 0xae, 0x7b, 0x1a, 0xed, + 0xfc, 0x17, 0xe3, 0x8d, 0x3a, 0x10, 0xf6, 0x32, 0x5c, 0x3c, 0x68, 0xee, + 0xa6, 0x3f, 0x3c, 0xe3, 0x04, 0x9f, 0x98, 0x66, 0xa9, 0x49, 0x31, 0x34, + 0xd1, 0xea, 0x94, 0x57, 0x3d, 0xa6, 0x78, 0xa6, 0xdb, 0x53, 0xd6, 0x27, + 0xb2, 0x8d, 0x70, 0x88, 0x33, 0x1c, 0xb9, 0xe2, 0x4c, 0x75, 0xc5, 0x6f, + 0x86, 0x07, 0x1c, 0xf5, 0x19, 0xa6, 0x21, 0xd4, 0x52, 0x51, 0x40, 0x0b, + 0x45, 0x25, 0x14, 0x00, 0xb4, 0x52, 0x51, 0x40, 0x0b, 0x45, 0x25, 0x14, + 0x00, 0xb9, 0xa4, 0xa2, 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x04, 0x14, 0x52, + 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x09, 0x49, + 0x4e, 0xa4, 0xa0, 0x04, 0xa2, 0x8a, 0x28, 0x00, 0xa4, 0xa2, 0x8a, 0x00, + 0x28, 0xa5, 0xa4, 0xa0, 0x02, 0x93, 0x34, 0xb4, 0x86, 0x80, 0x0c, 0xd2, + 0xee, 0xa6, 0xd5, 0x5b, 0xed, 0x46, 0xd7, 0x4d, 0xb7, 0x69, 0xee, 0xe7, + 0x48, 0xa3, 0x1d, 0xd8, 0xf5, 0xa0, 0x0b, 0x99, 0xac, 0xad, 0x63, 0xc4, + 0x7a, 0x66, 0x87, 0x09, 0x7b, 0xdb, 0xa4, 0x43, 0x8e, 0x10, 0x1c, 0xb1, + 0xfc, 0x2b, 0xcc, 0xbc, 0x53, 0xf1, 0x66, 0x46, 0xdf, 0x6d, 0xa3, 0x2f, + 0x96, 0xb9, 0xc1, 0x99, 0xba, 0x9f, 0xa5, 0x79, 0xec, 0xff, 0x00, 0xda, + 0x7a, 0xa3, 0x1b, 0x8b, 0xa9, 0x5c, 0x2b, 0x1c, 0x97, 0x90, 0xe5, 0x8d, + 0x26, 0xc7, 0x63, 0xd3, 0xf5, 0x0f, 0x8c, 0x91, 0xc2, 0xd2, 0x2d, 0xa6, + 0x9e, 0x1b, 0xfe, 0x79, 0x97, 0x6e, 0xbf, 0x50, 0x2b, 0x83, 0xd7, 0xbc, + 0x51, 0xad, 0xf8, 0xbe, 0xf2, 0x35, 0xba, 0x29, 0x0c, 0x4b, 0xca, 0x45, + 0xd1, 0x47, 0xbe, 0x3b, 0xd3, 0x6c, 0x74, 0xc4, 0x88, 0x6e, 0x8e, 0x20, + 0x5b, 0xbc, 0xb2, 0xd2, 0x49, 0x71, 0x15, 0xbd, 0xf6, 0x18, 0x2c, 0xfc, + 0x76, 0xe4, 0xe6, 0x95, 0xd8, 0xc8, 0x61, 0xd2, 0x61, 0xe3, 0xcd, 0x67, + 0xb8, 0x6f, 0x41, 0xc2, 0xd4, 0xca, 0xcb, 0x05, 0xc8, 0x80, 0xe2, 0xdd, + 0x42, 0xe7, 0xe5, 0x5e, 0x07, 0xe3, 0x55, 0x35, 0x1d, 0x6e, 0xe6, 0xda, + 0x45, 0x89, 0x10, 0x44, 0x5b, 0xa2, 0x27, 0x2d, 0x8a, 0x98, 0x44, 0xb7, + 0x36, 0x0b, 0x33, 0x86, 0x66, 0x3c, 0xfc, 0xe7, 0x3c, 0xd2, 0x02, 0xc7, + 0xdb, 0xac, 0x55, 0xc2, 0x21, 0x7b, 0x99, 0x7b, 0x56, 0x6e, 0xb7, 0xa8, + 0x1c, 0x24, 0x72, 0xc0, 0xa9, 0xce, 0x55, 0x41, 0x24, 0x9f, 0xca, 0xb3, + 0x34, 0xfb, 0x49, 0x25, 0xbc, 0x8e, 0x57, 0xe4, 0x96, 0xc8, 0x39, 0x3c, + 0x60, 0xd6, 0xa6, 0xb9, 0x1c, 0x3f, 0xda, 0xc8, 0x64, 0x60, 0xb8, 0x8b, + 0xd7, 0x14, 0xc0, 0xb5, 0xa5, 0x4d, 0x25, 0xf4, 0x6d, 0xe6, 0x49, 0x28, + 0x0a, 0x31, 0xb0, 0x8c, 0x55, 0xdb, 0x8b, 0x68, 0x22, 0xb3, 0x7c, 0xae, + 0xee, 0x33, 0xf3, 0x1c, 0xd5, 0x0d, 0x22, 0x68, 0xd2, 0xd8, 0xf9, 0x00, + 0x13, 0xc6, 0x73, 0xc5, 0x4b, 0x7d, 0x39, 0x6b, 0x46, 0x0d, 0x34, 0x6a, + 0xc4, 0x70, 0xab, 0xcd, 0x02, 0x3c, 0xfe, 0xff, 0x00, 0x54, 0x96, 0x4b, + 0xb7, 0x0d, 0x90, 0xa0, 0xe0, 0x2a, 0x1c, 0x0a, 0xec, 0x3c, 0x27, 0x72, + 0xd2, 0xe9, 0xe5, 0x9d, 0xce, 0x37, 0x71, 0x93, 0x5c, 0xa3, 0x68, 0x93, + 0x4b, 0x3b, 0x31, 0x20, 0x02, 0x78, 0xae, 0x87, 0x48, 0x3f, 0xd9, 0x56, + 0xbe, 0x56, 0xd1, 0x21, 0x27, 0x3c, 0x9a, 0x57, 0x43, 0xb1, 0xd6, 0x79, + 0xb0, 0x06, 0xc9, 0x2a, 0x7f, 0x1c, 0xd3, 0x5a, 0xee, 0x3d, 0xc4, 0x8d, + 0xd8, 0x3d, 0x0e, 0x2b, 0x08, 0xea, 0x13, 0x12, 0x36, 0xc0, 0x83, 0xdf, + 0x04, 0xd3, 0xbe, 0xd7, 0x7d, 0x27, 0xcb, 0x83, 0xc7, 0x4c, 0x2d, 0x17, + 0x0b, 0x1a, 0xd1, 0xdc, 0x80, 0x87, 0x0a, 0x58, 0x9f, 0x41, 0x5c, 0x4f, + 0x8b, 0xc6, 0xfb, 0x88, 0x5f, 0x04, 0x1e, 0x41, 0x15, 0xbf, 0xbb, 0x50, + 0x70, 0x39, 0x61, 0x9f, 0x42, 0x05, 0x41, 0x26, 0x9b, 0x3d, 0xc3, 0x6e, + 0x98, 0x07, 0xc7, 0x4d, 0xc7, 0x34, 0x5c, 0x2c, 0x71, 0x36, 0x2b, 0x8b, + 0xe8, 0x0f, 0x3f, 0x7c, 0x57, 0xa7, 0xdb, 0xcc, 0xfb, 0x13, 0x11, 0xe4, + 0x7a, 0xe6, 0xb0, 0xd7, 0x47, 0x65, 0x00, 0x88, 0xe3, 0x15, 0x20, 0xb5, + 0xbb, 0x51, 0xc3, 0xf4, 0xff, 0x00, 0x68, 0xd1, 0x70, 0xb0, 0xcd, 0x63, + 0x50, 0xb6, 0x8a, 0xeb, 0x13, 0x8c, 0x31, 0x4e, 0x06, 0x33, 0xeb, 0x54, + 0x6c, 0x75, 0x0b, 0x41, 0x35, 0xa8, 0x8c, 0x03, 0x28, 0x20, 0x1e, 0x2a, + 0xe3, 0x68, 0xd3, 0x4d, 0x26, 0xe9, 0x30, 0xed, 0xee, 0x69, 0xab, 0xa4, + 0xb4, 0x4d, 0xb8, 0x44, 0xbb, 0x87, 0x42, 0x28, 0xb8, 0x58, 0xe8, 0x85, + 0xd1, 0x68, 0x70, 0x22, 0x6c, 0x9e, 0xe4, 0x71, 0x4d, 0x37, 0x45, 0x88, + 0x0c, 0x88, 0x70, 0x79, 0xc0, 0xac, 0xa4, 0x6d, 0x46, 0x21, 0xc3, 0xb8, + 0xe3, 0xa7, 0x5a, 0x05, 0xed, 0xea, 0x10, 0x4a, 0xee, 0xfa, 0xa5, 0x17, + 0x0b, 0x1b, 0x37, 0xaf, 0x14, 0xf6, 0xd2, 0x2a, 0xbf, 0xde, 0x52, 0x38, + 0xfa, 0x57, 0x0b, 0x71, 0xa7, 0xb4, 0x13, 0x1f, 0x26, 0x56, 0x05, 0x46, + 0xec, 0xe6, 0xba, 0x09, 0xf5, 0x39, 0xa4, 0x84, 0xa3, 0xc4, 0x9c, 0xf1, + 0x90, 0x08, 0xac, 0x79, 0x2d, 0xd4, 0xb1, 0x3c, 0x82, 0x46, 0x38, 0x6a, + 0x77, 0x41, 0x63, 0xaa, 0xd3, 0x51, 0x25, 0xb2, 0x89, 0xa4, 0x0a, 0x59, + 0x90, 0x64, 0xe3, 0xad, 0x26, 0xa3, 0x02, 0x41, 0x63, 0x24, 0x88, 0xac, + 0x36, 0x0d, 0xd8, 0x43, 0x8c, 0xd5, 0x3b, 0x1b, 0xc8, 0x52, 0xda, 0x28, + 0xde, 0x56, 0x46, 0x55, 0xc7, 0x4e, 0x2a, 0xd5, 0xc5, 0xda, 0xb5, 0x94, + 0xa4, 0xcc, 0x8e, 0x36, 0x9e, 0x07, 0x5a, 0x00, 0xe6, 0x2c, 0x75, 0xb7, + 0xfb, 0x68, 0xea, 0x92, 0x31, 0xc0, 0x2e, 0x33, 0x5d, 0x5f, 0x9b, 0x21, + 0x83, 0x7d, 0xc5, 0xb2, 0xb7, 0xa9, 0x4e, 0x2b, 0x92, 0x8f, 0xc8, 0x7b, + 0xa8, 0x8e, 0x30, 0xc6, 0x51, 0x8c, 0x8a, 0xed, 0x65, 0x96, 0x3f, 0x28, + 0xa6, 0x73, 0xed, 0x45, 0x80, 0xcf, 0x77, 0x8d, 0xdd, 0x3c, 0x94, 0x65, + 0xe7, 0x9c, 0x9c, 0x62, 0xac, 0x4d, 0x66, 0x26, 0x4c, 0xcb, 0x0c, 0x73, + 0x2f, 0xf7, 0x97, 0x83, 0x56, 0xed, 0xd1, 0x25, 0x80, 0xe5, 0x06, 0x33, + 0xd0, 0xd5, 0x58, 0x2c, 0xd9, 0x64, 0x66, 0x8e, 0x52, 0xa0, 0x73, 0xc1, + 0xa0, 0x0c, 0x99, 0xad, 0x24, 0xb3, 0xb8, 0x8d, 0xec, 0x24, 0x9a, 0x26, + 0x27, 0xd7, 0x1b, 0x7f, 0x1a, 0xea, 0xb4, 0x8f, 0x89, 0x1e, 0x26, 0xd0, + 0x4a, 0xc7, 0x7c, 0x3e, 0xd9, 0x6e, 0x3f, 0xe7, 0xa7, 0x27, 0x1f, 0x5a, + 0xe6, 0xaf, 0xf5, 0x4c, 0x5f, 0x2d, 0xbc, 0xce, 0x32, 0x87, 0x24, 0x27, + 0x52, 0x3d, 0xea, 0xfa, 0x24, 0x37, 0x31, 0x13, 0x6d, 0x36, 0xdf, 0xf6, + 0x1a, 0x97, 0xa0, 0x1e, 0xc5, 0xe1, 0xff, 0x00, 0x89, 0x3a, 0x16, 0xb8, + 0x11, 0x1a, 0x6f, 0xb2, 0x5c, 0x1f, 0xf9, 0x67, 0x29, 0xc0, 0xcf, 0xb1, + 0xae, 0xc1, 0x59, 0x5d, 0x43, 0x29, 0x05, 0x4f, 0x42, 0x2b, 0xe6, 0x0b, + 0x8d, 0x3a, 0x33, 0xcb, 0xab, 0xc3, 0x28, 0xfe, 0x34, 0xe8, 0x6a, 0xf6, + 0x8b, 0xe3, 0x1f, 0x12, 0x68, 0x48, 0x86, 0x2b, 0x99, 0x64, 0xb4, 0x46, + 0xe5, 0x1f, 0xe6, 0x1f, 0x95, 0x57, 0x37, 0x71, 0x58, 0xfa, 0x4e, 0x8a, + 0xe4, 0x3c, 0x31, 0xf1, 0x0b, 0x48, 0xf1, 0x14, 0x69, 0x19, 0x94, 0x5b, + 0xdd, 0x9e, 0xb1, 0x48, 0x71, 0x93, 0xec, 0x6b, 0xaf, 0xa6, 0x21, 0x68, + 0xa2, 0x8a, 0x60, 0x14, 0x53, 0x3c, 0xd8, 0xfc, 0xd3, 0x1e, 0xf5, 0xf3, + 0x00, 0xce, 0xdc, 0xf3, 0x8f, 0xa5, 0x66, 0x6b, 0x3a, 0xf5, 0xbe, 0x8f, + 0x69, 0x1c, 0xee, 0x8d, 0x2f, 0x98, 0xdb, 0x55, 0x53, 0xaf, 0xbd, 0x00, + 0x6a, 0xd2, 0x56, 0x5c, 0x9e, 0x20, 0xb1, 0x8e, 0xd2, 0x2b, 0xa6, 0x99, + 0x16, 0x29, 0x23, 0x69, 0x01, 0x63, 0x8e, 0x9d, 0xab, 0x87, 0xb4, 0xf8, + 0x8d, 0x15, 0xad, 0xfb, 0x49, 0xa8, 0xdd, 0x46, 0x6d, 0x66, 0xce, 0xc5, + 0x4f, 0x98, 0xa7, 0xa7, 0x4a, 0x57, 0x03, 0xd2, 0x65, 0x9a, 0x38, 0x63, + 0x2f, 0x2b, 0xaa, 0x20, 0xea, 0x58, 0xe0, 0x53, 0x84, 0x8a, 0x42, 0x90, + 0xc0, 0x86, 0xe8, 0x47, 0x7a, 0xf1, 0x9d, 0x6b, 0xe2, 0x1d, 0x96, 0xa9, + 0x6f, 0x6f, 0x6c, 0xb1, 0xdc, 0xbc, 0x11, 0xe7, 0xcc, 0x2a, 0x30, 0x59, + 0xbb, 0x75, 0xaa, 0x96, 0xff, 0x00, 0x12, 0xf5, 0x2b, 0x3d, 0x3e, 0x3b, + 0x78, 0x6d, 0x50, 0xac, 0x2f, 0xba, 0x36, 0x95, 0xb2, 0x76, 0xf3, 0xc1, + 0xc5, 0x2e, 0x64, 0x3b, 0x33, 0xd8, 0xa6, 0xd7, 0x6c, 0x21, 0xd4, 0x92, + 0xc2, 0x49, 0xc0, 0x9d, 0xba, 0x0e, 0xd9, 0xf4, 0xab, 0x52, 0xdd, 0xc5, + 0x10, 0x94, 0xbb, 0x60, 0x44, 0xbb, 0xd8, 0xfa, 0x0f, 0xf2, 0x2b, 0xe6, + 0x8b, 0xbf, 0x19, 0xeb, 0x17, 0x57, 0x0f, 0x70, 0x02, 0x09, 0x24, 0x7d, + 0xe5, 0x80, 0xe4, 0x1a, 0x65, 0xe7, 0x8d, 0xbc, 0x4d, 0x7a, 0x24, 0x59, + 0xaf, 0x1c, 0x2c, 0x8a, 0x15, 0xc0, 0x18, 0xc8, 0x1d, 0x28, 0xe6, 0x41, + 0xca, 0xcf, 0x7f, 0xd1, 0xfc, 0x59, 0x69, 0xab, 0x5e, 0x49, 0x6c, 0xa8, + 0xd1, 0x38, 0x27, 0x66, 0xef, 0xe3, 0x15, 0x36, 0xa7, 0xe2, 0x28, 0x34, + 0xfd, 0x34, 0xdc, 0xa8, 0x12, 0x48, 0x5c, 0xa4, 0x71, 0x83, 0xcb, 0x10, + 0x71, 0x5f, 0x36, 0xff, 0x00, 0x6d, 0x6a, 0xc6, 0x44, 0x63, 0x7d, 0x38, + 0x68, 0xc7, 0xca, 0x43, 0x74, 0xaa, 0xed, 0xa8, 0x6a, 0x33, 0x48, 0x3c, + 0xdb, 0xd9, 0xd8, 0x06, 0xc8, 0xcb, 0x9e, 0x09, 0xa5, 0xce, 0x87, 0xc8, + 0xcf, 0xa4, 0xb4, 0x9f, 0x14, 0x47, 0x7f, 0xa7, 0x5c, 0x49, 0x3a, 0x08, + 0x2e, 0x6d, 0xd4, 0x97, 0x8c, 0x9f, 0xd4, 0x54, 0x7e, 0x20, 0xf1, 0x40, + 0xd3, 0x52, 0x28, 0xed, 0x23, 0x13, 0xcf, 0x22, 0xee, 0x2a, 0x0f, 0x45, + 0xaf, 0x9d, 0xf7, 0xdd, 0x12, 0xcc, 0x6e, 0x25, 0xcb, 0x70, 0x4e, 0xf3, + 0xc8, 0xa5, 0x6f, 0xb4, 0xec, 0x2d, 0xe7, 0xc8, 0x5b, 0x1c, 0x1d, 0xe7, + 0x34, 0xb9, 0xc7, 0xc8, 0xcb, 0x91, 0x15, 0x45, 0xf9, 0x88, 0x51, 0x83, + 0xd6, 0xb9, 0x69, 0x6d, 0xa7, 0x96, 0x47, 0x97, 0x92, 0x77, 0x71, 0x5b, + 0x77, 0x64, 0x34, 0x3b, 0x70, 0x6a, 0x08, 0xed, 0xc1, 0x3e, 0xb9, 0xa9, + 0xb8, 0xec, 0x59, 0x30, 0xaf, 0xf6, 0x6c, 0x0e, 0x4f, 0xef, 0x3a, 0x1f, + 0x5a, 0xa0, 0xb1, 0x1c, 0x3f, 0x5e, 0xb5, 0x62, 0x34, 0x5f, 0xb4, 0x1c, + 0x54, 0xcb, 0x8c, 0x30, 0xc1, 0xeb, 0x49, 0x8d, 0x22, 0x8b, 0xc2, 0x42, + 0x9a, 0x3c, 0xa3, 0xb4, 0x64, 0x56, 0x84, 0x81, 0x4a, 0x52, 0x79, 0x6b, + 0x81, 0xf4, 0xa4, 0x06, 0x6b, 0xc5, 0xc2, 0x64, 0x53, 0xe5, 0x54, 0xb5, + 0x44, 0xf3, 0x64, 0x08, 0x58, 0x64, 0x0a, 0xb7, 0x32, 0x03, 0x8c, 0x55, + 0x2b, 0xf8, 0x63, 0xb9, 0x99, 0xa4, 0xe7, 0x84, 0x00, 0x67, 0xd4, 0x53, + 0x42, 0x65, 0x98, 0x6f, 0x6f, 0xec, 0x46, 0xf8, 0x6e, 0xa5, 0x5d, 0xc3, + 0x82, 0x18, 0xe0, 0x8a, 0xd4, 0x83, 0xc5, 0xfa, 0x83, 0x5c, 0x89, 0x27, + 0x0b, 0x34, 0x99, 0x04, 0x3b, 0x70, 0x46, 0x2a, 0xa4, 0x51, 0xc7, 0xfd, + 0x89, 0x10, 0x25, 0x5a, 0x41, 0xdb, 0x3c, 0x8a, 0xa7, 0x0c, 0x3f, 0xe9, + 0x18, 0x02, 0x9b, 0x6d, 0x02, 0x49, 0x9e, 0x8a, 0xbe, 0x3b, 0x17, 0x16, + 0x7e, 0x4c, 0x81, 0xad, 0xe4, 0x77, 0xdc, 0x64, 0xce, 0x45, 0x6d, 0x41, + 0xe3, 0x9b, 0x38, 0xed, 0x21, 0x0c, 0xfe, 0x7c, 0xe5, 0x0f, 0xc8, 0x9d, + 0x49, 0x1f, 0xca, 0xbc, 0x96, 0xe9, 0x1e, 0x38, 0xf2, 0xb9, 0xfa, 0x54, + 0x04, 0x7d, 0x9e, 0x64, 0x91, 0x4b, 0x02, 0x47, 0x50, 0x7a, 0x1a, 0x6a, + 0x62, 0x71, 0x47, 0xd0, 0x3a, 0x56, 0xaf, 0x1e, 0xa7, 0x68, 0x93, 0x6d, + 0xd8, 0xe5, 0xb6, 0x94, 0x3d, 0x8d, 0x68, 0x07, 0x52, 0x09, 0x0c, 0x38, + 0x38, 0xeb, 0x5e, 0x19, 0xa6, 0xf8, 0xb3, 0x50, 0xd2, 0x9f, 0x7a, 0xbf, + 0x9c, 0x99, 0xc9, 0x57, 0xf5, 0xc6, 0x3a, 0xd6, 0x82, 0xf8, 0xe5, 0x63, + 0xb4, 0x96, 0x12, 0xd2, 0xab, 0xc8, 0xc1, 0xc8, 0xf7, 0xab, 0x52, 0x44, + 0xb8, 0xb3, 0xd4, 0x35, 0x7d, 0x65, 0x34, 0xd8, 0x95, 0x82, 0xef, 0x62, + 0xfb, 0x48, 0xfe, 0x75, 0xc5, 0xf8, 0x9f, 0xc6, 0x36, 0x8c, 0x8b, 0x0a, + 0x4c, 0x5c, 0xab, 0x96, 0xc2, 0x1f, 0xca, 0xb8, 0x9d, 0x6b, 0xc5, 0x57, + 0xfa, 0xb4, 0xb9, 0x2f, 0xe5, 0xa1, 0xe8, 0xab, 0xf4, 0xc5, 0x61, 0xee, + 0x8f, 0xed, 0x22, 0x09, 0x0b, 0x09, 0x0f, 0x7e, 0xd5, 0x2e, 0x5d, 0x8a, + 0x51, 0xee, 0x6f, 0x6b, 0x1e, 0x26, 0xd4, 0x75, 0x50, 0x16, 0x69, 0x76, + 0x46, 0x00, 0xc2, 0x27, 0x1d, 0x3d, 0x6b, 0x22, 0x37, 0xc9, 0xe4, 0xe4, + 0x9a, 0x46, 0x4e, 0xa3, 0x04, 0xd3, 0xe0, 0x88, 0xee, 0xe0, 0x56, 0x6d, + 0xb6, 0x68, 0x95, 0xb6, 0x06, 0x42, 0x5b, 0x81, 0x53, 0x24, 0x23, 0x1c, + 0xfa, 0x54, 0x85, 0x00, 0xe6, 0x85, 0x71, 0x48, 0x60, 0xaa, 0x14, 0x00, + 0x31, 0x41, 0x8f, 0x2e, 0x4d, 0x26, 0x46, 0xe0, 0x7f, 0x3a, 0x04, 0x9f, + 0x39, 0xa0, 0x04, 0x64, 0xc7, 0x6e, 0x6a, 0xac, 0xd9, 0x32, 0x01, 0xda, + 0xae, 0x7c, 0xec, 0x31, 0x8e, 0x6a, 0x9c, 0x8a, 0x7e, 0xd0, 0x32, 0xc2, + 0x98, 0x98, 0xf3, 0x1e, 0x07, 0x18, 0x34, 0xb1, 0xfc, 0xa3, 0xa0, 0x34, + 0xf7, 0x0a, 0x07, 0xde, 0xc8, 0xc5, 0x11, 0xed, 0x23, 0xe5, 0x14, 0x5c, + 0x12, 0x2a, 0x49, 0x6d, 0x71, 0x75, 0x74, 0xab, 0x14, 0x85, 0x58, 0xf0, + 0x00, 0xac, 0x8b, 0xb6, 0x9e, 0xda, 0xe1, 0xe1, 0xb8, 0x79, 0x04, 0x8b, + 0xc1, 0x04, 0xd7, 0x5b, 0x62, 0xbf, 0xf1, 0x31, 0x83, 0x8e, 0x8d, 0x54, + 0x35, 0xf8, 0x21, 0x3a, 0xd5, 0xd3, 0x3c, 0x6c, 0xcd, 0x81, 0x8c, 0x0c, + 0xf6, 0xaa, 0x8e, 0xc4, 0xcd, 0x59, 0x9c, 0xd0, 0x95, 0x4f, 0x73, 0x49, + 0xe6, 0x29, 0x3f, 0x74, 0xd6, 0xa8, 0x8e, 0x15, 0x82, 0x1c, 0x5b, 0x31, + 0x24, 0x8e, 0x70, 0x39, 0xa7, 0x6c, 0x02, 0xe9, 0xb1, 0x6c, 0x7e, 0xef, + 0x4e, 0x2a, 0xac, 0x41, 0x6d, 0xb4, 0xb8, 0xe0, 0xd1, 0xed, 0x6e, 0x4c, + 0x6a, 0x24, 0x94, 0xe7, 0x3e, 0xd5, 0x72, 0x3f, 0xdd, 0xa0, 0xc7, 0x7e, + 0x95, 0x7a, 0xfd, 0x77, 0x69, 0x1a, 0x7a, 0xe3, 0x1f, 0x2f, 0x4a, 0xa1, + 0x21, 0xc1, 0x03, 0x3d, 0x2a, 0x25, 0xb9, 0xac, 0x76, 0x1d, 0x20, 0xc8, + 0xeb, 0x93, 0xed, 0x55, 0xed, 0xc1, 0x2e, 0xdc, 0x7e, 0x74, 0xf3, 0xc8, + 0x38, 0x24, 0x54, 0x51, 0x6e, 0x52, 0x70, 0xd4, 0x90, 0x32, 0x59, 0xdb, + 0xe5, 0xfb, 0x9f, 0x8d, 0x2d, 0xbf, 0x11, 0xf4, 0xeb, 0x50, 0xb3, 0x39, + 0x18, 0xce, 0x45, 0x4b, 0xc8, 0x45, 0x1e, 0xd4, 0x86, 0x48, 0xcc, 0x39, + 0xea, 0x29, 0x81, 0xc7, 0x73, 0x51, 0xe5, 0xb9, 0xcf, 0x34, 0xec, 0x64, + 0x67, 0x14, 0x00, 0xf5, 0xc1, 0x53, 0xcd, 0x03, 0xad, 0x31, 0x18, 0x6d, + 0x39, 0x14, 0x06, 0x52, 0x7e, 0xf6, 0x29, 0x88, 0x9d, 0x71, 0x9e, 0x7a, + 0x52, 0x94, 0x18, 0xe3, 0xa5, 0x42, 0x24, 0x7f, 0x5c, 0xd4, 0xa8, 0xf9, + 0x18, 0xc1, 0xcd, 0x21, 0x90, 0xcd, 0x3a, 0xcc, 0xe1, 0x24, 0x4c, 0x85, + 0x4d, 0xb5, 0x72, 0xcf, 0xca, 0x5d, 0x29, 0xd1, 0x98, 0x79, 0x8b, 0xd0, + 0x66, 0xa9, 0x28, 0xcc, 0xce, 0x3d, 0x28, 0xf9, 0x11, 0x89, 0x63, 0xb4, + 0x7a, 0xd5, 0xdc, 0x8e, 0x52, 0xd2, 0xb0, 0x2b, 0xce, 0x0d, 0x26, 0xc0, + 0xd8, 0xc1, 0xc1, 0xa8, 0x90, 0x23, 0xae, 0xf4, 0x90, 0x10, 0x7d, 0xe9, + 0xdb, 0xf0, 0x30, 0x18, 0x1c, 0x75, 0xc1, 0xcd, 0x49, 0x46, 0x9e, 0x9d, + 0xad, 0xea, 0x1a, 0x54, 0xc8, 0xf0, 0x4e, 0xc0, 0x26, 0x76, 0x82, 0x72, + 0x06, 0x7a, 0xd7, 0x71, 0xa2, 0xfc, 0x43, 0x13, 0xeb, 0xb6, 0xf7, 0x97, + 0xd2, 0xb4, 0x58, 0x02, 0x26, 0x41, 0xf7, 0x36, 0xe3, 0xaf, 0xe7, 0x5e, + 0x6c, 0xac, 0x19, 0x47, 0xf5, 0xa4, 0x09, 0x83, 0xc5, 0x52, 0x93, 0x42, + 0x71, 0x47, 0xd2, 0xb6, 0xbe, 0x27, 0xb3, 0xba, 0xbe, 0xb6, 0xb5, 0x8d, + 0x83, 0xf9, 0xf1, 0xef, 0x12, 0x29, 0xe0, 0x1f, 0x4a, 0xdb, 0x0c, 0x08, + 0x04, 0x1c, 0x83, 0x5f, 0x2e, 0xda, 0x6a, 0xba, 0x9e, 0x9f, 0x8f, 0xb2, + 0x5c, 0xbc, 0x68, 0x18, 0x37, 0x1d, 0x8f, 0xb5, 0x7a, 0x3f, 0x84, 0xfc, + 0x76, 0x8f, 0xa9, 0x20, 0xbb, 0xb9, 0x75, 0x06, 0x2f, 0x2f, 0xcb, 0x91, + 0xb3, 0xc8, 0xe8, 0x73, 0x56, 0xa4, 0x99, 0x9b, 0x8d, 0x8f, 0x5c, 0xa2, + 0xb3, 0x34, 0xfd, 0x66, 0xdb, 0x52, 0x9a, 0xe2, 0x28, 0x5b, 0x26, 0x17, + 0xda, 0x7d, 0xfd, 0xc5, 0x5f, 0xf3, 0x57, 0xcc, 0x09, 0x9e, 0x48, 0xc8, + 0xaa, 0x11, 0x25, 0x14, 0x99, 0xa3, 0x34, 0x00, 0xb4, 0xb4, 0xdc, 0xd1, + 0x9a, 0x00, 0x75, 0x14, 0xda, 0x33, 0x40, 0x0b, 0x45, 0x47, 0x1c, 0xab, + 0x2a, 0xee, 0x53, 0xc5, 0x3f, 0x34, 0x08, 0x5a, 0x4a, 0x4c, 0xd4, 0x37, + 0x37, 0x70, 0xd9, 0xc0, 0xd3, 0x4f, 0x20, 0x44, 0x5e, 0xa4, 0x9a, 0x00, + 0x9e, 0x8c, 0xd4, 0x6a, 0xeb, 0x22, 0x2b, 0xa9, 0x05, 0x48, 0xc8, 0x23, + 0xbd, 0x35, 0x27, 0x8a, 0x49, 0x5e, 0x24, 0x75, 0x2e, 0x98, 0xdc, 0xa0, + 0xf4, 0xcd, 0x00, 0x4b, 0x9a, 0x5a, 0x68, 0xa5, 0xcd, 0x00, 0x2d, 0x2d, + 0x36, 0x8c, 0xd0, 0x02, 0xd1, 0x4d, 0xcd, 0x19, 0xa0, 0x02, 0x8a, 0x5a, + 0x43, 0x40, 0x05, 0x26, 0x69, 0x69, 0x28, 0x00, 0xcd, 0x26, 0x69, 0x93, + 0x4d, 0x1c, 0x11, 0x34, 0xb2, 0xba, 0xa2, 0x28, 0xc9, 0x66, 0x38, 0x02, + 0xbc, 0x8f, 0xc6, 0xbf, 0x13, 0xd9, 0x99, 0xec, 0x34, 0x56, 0x21, 0x3e, + 0xeb, 0x4c, 0x3a, 0xb7, 0xd2, 0x8b, 0x81, 0xd8, 0x78, 0xab, 0xc7, 0xba, + 0x7f, 0x87, 0xe3, 0x78, 0xa2, 0x65, 0x9e, 0xf3, 0x1c, 0x20, 0x3c, 0x2f, + 0xd6, 0xbc, 0x63, 0x56, 0xd7, 0xf5, 0x8f, 0x14, 0xdd, 0x3c, 0xb2, 0xc8, + 0x4c, 0x63, 0xd4, 0xe1, 0x54, 0x7b, 0x55, 0x25, 0xb5, 0x92, 0x67, 0xfb, + 0x45, 0xf3, 0x17, 0x2d, 0xf3, 0x6c, 0x07, 0x9f, 0xc4, 0xd5, 0xcb, 0x27, + 0xb7, 0x98, 0xc8, 0x11, 0x49, 0xc3, 0x71, 0x1a, 0xf4, 0xa9, 0xbd, 0xca, + 0x29, 0xc5, 0x15, 0xa4, 0x40, 0x26, 0x0b, 0xce, 0xfd, 0x5d, 0xbb, 0x7d, + 0x2a, 0xbe, 0xad, 0xaa, 0x35, 0x94, 0xa8, 0x88, 0xfe, 0x6e, 0x48, 0x1f, + 0x85, 0x55, 0xd6, 0x1a, 0x53, 0xab, 0x40, 0xb8, 0xd8, 0xa5, 0xfa, 0x0a, + 0x8f, 0x59, 0xb6, 0x8e, 0x2b, 0x88, 0xbb, 0x0d, 0xf4, 0x80, 0xeb, 0x56, + 0x39, 0x2e, 0x2c, 0xbc, 0xd9, 0x24, 0x6d, 0xac, 0x06, 0x15, 0x78, 0xc5, + 0x73, 0xaf, 0x03, 0x3e, 0xb0, 0xc8, 0x06, 0x12, 0x36, 0x01, 0x46, 0x7a, + 0x57, 0x55, 0x0f, 0x1a, 0x3a, 0x74, 0xe0, 0x0c, 0xe4, 0xf4, 0xe2, 0xb9, + 0x79, 0xbc, 0xdf, 0xed, 0x29, 0xa5, 0x46, 0xc4, 0x7b, 0x81, 0xe0, 0xf5, + 0xc5, 0x30, 0x27, 0xd6, 0x92, 0x14, 0xd5, 0x01, 0x93, 0x8c, 0x43, 0xc5, + 0x68, 0x2c, 0xe8, 0xba, 0x7a, 0x10, 0xc1, 0x50, 0x8e, 0x01, 0xeb, 0x54, + 0x6e, 0x52, 0x4d, 0x4a, 0xe3, 0xcf, 0x31, 0x72, 0x06, 0xd1, 0xe9, 0x4f, + 0x16, 0x5b, 0x40, 0xf3, 0x1c, 0x01, 0xe8, 0x28, 0xb8, 0x19, 0xb6, 0xfe, + 0x7a, 0x32, 0x16, 0x62, 0x02, 0x1c, 0x81, 0xd2, 0xaf, 0x5d, 0xef, 0xd4, + 0xae, 0x56, 0x63, 0x17, 0x20, 0x6d, 0xe0, 0x55, 0xc8, 0xa1, 0x8d, 0x06, + 0xe1, 0x1e, 0xe0, 0x3f, 0x89, 0xba, 0x52, 0xb5, 0xc0, 0x03, 0x01, 0x91, + 0x17, 0xf3, 0x34, 0x80, 0xaa, 0x9a, 0x74, 0xca, 0x9c, 0x61, 0x07, 0xb9, + 0xa7, 0x7f, 0x67, 0xa2, 0xb0, 0x12, 0x4b, 0x9f, 0xa5, 0x4b, 0x15, 0xd8, + 0x9a, 0x5d, 0xa8, 0x3c, 0xe3, 0xe9, 0x9a, 0x7d, 0xd4, 0x77, 0x0f, 0x16, + 0xf4, 0x44, 0x45, 0x5f, 0xe1, 0x1d, 0xcd, 0x00, 0x44, 0x61, 0xb4, 0x43, + 0x80, 0xac, 0xcc, 0x3d, 0x06, 0x6a, 0x48, 0xd2, 0x2f, 0x30, 0x62, 0x35, + 0x1f, 0xef, 0x1c, 0x56, 0x1d, 0xd6, 0xae, 0xf6, 0xce, 0x62, 0x67, 0xf9, + 0x87, 0x50, 0xbd, 0xaa, 0xf6, 0x9d, 0x24, 0x17, 0x11, 0x89, 0x9d, 0xd9, + 0xc1, 0xea, 0xbb, 0x79, 0x14, 0x86, 0x6b, 0x11, 0x82, 0x06, 0xf8, 0x54, + 0x7d, 0x73, 0x48, 0xcc, 0x99, 0xff, 0x00, 0x5e, 0x01, 0xff, 0x00, 0x65, + 0x69, 0xa2, 0x38, 0x07, 0x21, 0x5f, 0xd8, 0x64, 0x0a, 0x73, 0xb1, 0x60, + 0x73, 0x6e, 0xaa, 0xbe, 0xb9, 0xa6, 0x22, 0x10, 0xc0, 0x39, 0x73, 0x2c, + 0xa7, 0x03, 0x01, 0x54, 0x70, 0x6a, 0xb3, 0xdf, 0x20, 0x72, 0xad, 0x23, + 0xae, 0x3b, 0x67, 0x9a, 0xbd, 0x13, 0xfc, 0xd8, 0x85, 0x10, 0xb7, 0xb8, + 0x26, 0xb0, 0x75, 0xf6, 0xb9, 0x8d, 0xd2, 0x24, 0x51, 0xba, 0x43, 0xd5, + 0x07, 0x5a, 0x00, 0xbb, 0xf6, 0xd8, 0xf1, 0xf2, 0xc9, 0x21, 0xfa, 0x9a, + 0xb3, 0x14, 0x8e, 0xf1, 0x67, 0xec, 0xee, 0xd9, 0xe8, 0x43, 0x57, 0x2d, + 0x66, 0x97, 0xd0, 0x4c, 0x25, 0x40, 0xc4, 0x2b, 0x61, 0x83, 0x74, 0xae, + 0xc2, 0x25, 0xbd, 0x11, 0x2f, 0xef, 0x10, 0x12, 0x39, 0x00, 0x74, 0xa0, + 0x0c, 0xf6, 0xbd, 0x08, 0xe5, 0x59, 0x9d, 0x08, 0x3c, 0x80, 0x69, 0x52, + 0xf6, 0x2e, 0xd3, 0x39, 0xfa, 0x9a, 0xce, 0xd6, 0x23, 0xbf, 0x96, 0x61, + 0x1a, 0x0f, 0x94, 0x72, 0x4a, 0xf1, 0x9a, 0xa9, 0xa6, 0x2d, 0xe4, 0x17, + 0x71, 0x16, 0x46, 0x68, 0xa4, 0x38, 0xc3, 0x74, 0xe6, 0x96, 0xa0, 0x74, + 0xf1, 0xdc, 0x23, 0x01, 0xb9, 0xa4, 0x42, 0x7b, 0xed, 0xc8, 0xa7, 0x89, + 0x13, 0x76, 0x3c, 0xd5, 0xc7, 0xab, 0x26, 0x28, 0xfd, 0xe8, 0x40, 0x25, + 0x48, 0xf6, 0x8a, 0x43, 0xb3, 0xfb, 0x9f, 0x93, 0x53, 0x01, 0xb2, 0xc9, + 0x1a, 0x00, 0x03, 0xc4, 0xe7, 0xd0, 0x54, 0x5f, 0xba, 0x71, 0xf3, 0xc0, + 0x7e, 0xa0, 0x66, 0x96, 0xec, 0xdb, 0x0b, 0x76, 0x2f, 0x1c, 0x88, 0x14, + 0x7d, 0xf1, 0xcd, 0x73, 0x43, 0x57, 0x29, 0x2e, 0x06, 0xf5, 0x4c, 0xf0, + 0x4d, 0x21, 0x9d, 0x27, 0xd9, 0x6d, 0x24, 0x03, 0x19, 0x53, 0xed, 0x51, + 0x3e, 0x9a, 0x8f, 0x9d, 0x93, 0x0f, 0xa1, 0xa7, 0x59, 0xab, 0xc8, 0x04, + 0x82, 0xe0, 0x64, 0x8c, 0xae, 0x29, 0xf7, 0xa6, 0x74, 0x8c, 0xca, 0x51, + 0x71, 0xdf, 0x0b, 0xcd, 0x31, 0x14, 0x1f, 0x4b, 0x92, 0x32, 0x1c, 0x28, + 0x3b, 0x4e, 0x72, 0x2a, 0xe0, 0xd4, 0x2e, 0x02, 0xed, 0x9a, 0x30, 0x47, + 0xa9, 0x18, 0x35, 0x51, 0x2f, 0xc7, 0x4f, 0x31, 0xd4, 0xfa, 0x1e, 0x95, + 0x7e, 0xde, 0xe1, 0x67, 0x01, 0x4e, 0xc2, 0x47, 0x63, 0xc6, 0x68, 0x19, + 0x2d, 0xbd, 0xfc, 0x3f, 0x75, 0x9e, 0x48, 0xcf, 0xbf, 0x22, 0xad, 0x5b, + 0x49, 0xb1, 0xd9, 0x90, 0x07, 0x0c, 0x31, 0xc1, 0xaa, 0x4f, 0x04, 0x2f, + 0x82, 0x51, 0x93, 0x3d, 0xf1, 0x55, 0xfe, 0xc7, 0x2a, 0x31, 0x78, 0x24, + 0xe0, 0x7a, 0x1c, 0x1a, 0x04, 0x65, 0xeb, 0xf0, 0x2b, 0xea, 0x8d, 0x28, + 0xf9, 0x58, 0x6d, 0xcd, 0x75, 0x11, 0xda, 0xac, 0xb6, 0x2a, 0xbc, 0x64, + 0x81, 0xcf, 0x7a, 0xe6, 0x2f, 0xed, 0xe5, 0x9a, 0x43, 0x2c, 0x9b, 0xb7, + 0x92, 0x39, 0xfa, 0x56, 0xfd, 0xad, 0xf4, 0x32, 0xc4, 0xa8, 0xb2, 0x94, + 0x90, 0x0c, 0x6c, 0x7e, 0x86, 0x9d, 0xc0, 0x9a, 0x53, 0x35, 0x85, 0x93, + 0x4a, 0xee, 0x1d, 0x07, 0x67, 0xed, 0xf8, 0xd5, 0x3d, 0x3e, 0x74, 0xb9, + 0x52, 0x52, 0xe0, 0x09, 0x09, 0x39, 0x52, 0x30, 0x08, 0xab, 0x1a, 0xbb, + 0xf9, 0xba, 0x34, 0xb0, 0xc8, 0x84, 0x7c, 0xbd, 0x7b, 0x56, 0x67, 0x86, + 0x6c, 0xd1, 0xac, 0xe5, 0xdc, 0x77, 0x61, 0xc8, 0x52, 0x7b, 0x50, 0x04, + 0xf7, 0x16, 0x0a, 0x26, 0x2e, 0x09, 0xb7, 0x97, 0x39, 0x57, 0x5e, 0x84, + 0xd7, 0x57, 0xe1, 0x7f, 0x89, 0xfa, 0x9e, 0x81, 0x32, 0xd8, 0xeb, 0x19, + 0xbb, 0xb4, 0x18, 0x02, 0x4c, 0xe5, 0x94, 0x7d, 0x7b, 0xd6, 0x02, 0xc7, + 0x73, 0x09, 0x11, 0xb0, 0xf3, 0x63, 0xeb, 0x86, 0xea, 0x2b, 0x39, 0x9e, + 0x29, 0xe4, 0x98, 0x45, 0x1a, 0x95, 0xfe, 0x25, 0x6e, 0xa6, 0x90, 0x1f, + 0x48, 0xda, 0xf8, 0x97, 0x4c, 0xbf, 0xd1, 0x9f, 0x53, 0xb3, 0xb9, 0x49, + 0x61, 0x44, 0x2c, 0x46, 0x70, 0x41, 0xf4, 0x22, 0xb8, 0xfb, 0xaf, 0x88, + 0x52, 0x59, 0x58, 0xc9, 0x73, 0x73, 0x3c, 0x49, 0x3c, 0x2c, 0x0f, 0xd9, + 0x31, 0xcc, 0xa8, 0x7d, 0x0f, 0x63, 0x5e, 0x23, 0x0c, 0x97, 0x16, 0xad, + 0x32, 0x43, 0x34, 0xb1, 0xc4, 0xdd, 0x50, 0x37, 0x06, 0x94, 0xb3, 0x4c, + 0xea, 0x5c, 0x93, 0x8e, 0x33, 0x47, 0x30, 0x72, 0x9d, 0xdc, 0x9f, 0x11, + 0xc3, 0xea, 0x8d, 0xab, 0xda, 0x23, 0x9b, 0x96, 0x7f, 0xba, 0xed, 0xf2, + 0x85, 0xfe, 0xed, 0x66, 0x6a, 0x1e, 0x33, 0xd7, 0x2f, 0xa5, 0x87, 0xf7, + 0xe2, 0x30, 0xbb, 0x80, 0x08, 0x3a, 0x02, 0x7d, 0x6b, 0x99, 0xd4, 0x17, + 0xec, 0xda, 0x6f, 0x99, 0x12, 0x80, 0x73, 0xd7, 0xd2, 0xa2, 0xd3, 0x2f, + 0x27, 0x95, 0x1d, 0x2e, 0x00, 0x2c, 0xa0, 0x30, 0x6e, 0xf8, 0xa5, 0x76, + 0x34, 0x91, 0x7e, 0xe6, 0x5b, 0xb9, 0xce, 0xc3, 0x2b, 0xb0, 0x1c, 0x8d, + 0xcc, 0x4f, 0xd6, 0xab, 0xc1, 0x6f, 0xb5, 0xca, 0xb1, 0x04, 0x75, 0xa9, + 0x8c, 0x98, 0xce, 0x01, 0x34, 0xc4, 0x77, 0xde, 0x4e, 0x31, 0x53, 0x72, + 0xec, 0x4e, 0x11, 0x53, 0x21, 0x46, 0x33, 0x4e, 0x00, 0x30, 0xc1, 0xc1, + 0xcf, 0x15, 0x03, 0x33, 0x13, 0xf3, 0x3d, 0x47, 0x25, 0xc4, 0x70, 0xae, + 0xe3, 0x20, 0x18, 0xee, 0x68, 0x0b, 0x14, 0xb5, 0x95, 0x9a, 0xde, 0xe9, + 0x21, 0x85, 0xb6, 0xab, 0x0e, 0xdc, 0x54, 0xda, 0x49, 0x92, 0x55, 0x9e, + 0x3b, 0x82, 0x18, 0xc6, 0x32, 0xa6, 0xaa, 0x4d, 0xa9, 0x0b, 0x86, 0xcb, + 0x66, 0x56, 0x1d, 0x0e, 0x00, 0xc5, 0x35, 0x35, 0x34, 0x59, 0xb1, 0x82, + 0x3b, 0x1f, 0x98, 0x55, 0x10, 0x6b, 0x2c, 0x43, 0xcd, 0x24, 0x2f, 0x51, + 0xe9, 0x42, 0x5b, 0x93, 0x2e, 0x46, 0x3a, 0xd4, 0x50, 0xea, 0x70, 0x34, + 0x8a, 0xa4, 0xe1, 0x9b, 0xa5, 0x5b, 0xc8, 0x07, 0x23, 0xbf, 0xbd, 0x4d, + 0x8a, 0xb9, 0x23, 0x29, 0x03, 0x18, 0xa3, 0x69, 0xf2, 0x8f, 0x14, 0xc2, + 0x59, 0x90, 0x75, 0xfc, 0xe9, 0x09, 0x2a, 0x9d, 0x18, 0x8a, 0x00, 0xad, + 0x72, 0x58, 0xc5, 0x9e, 0x94, 0x27, 0x0a, 0x3d, 0x71, 0x4a, 0xc4, 0x18, + 0xb9, 0xe6, 0x80, 0x54, 0xb7, 0x24, 0x52, 0x2c, 0x82, 0x26, 0x61, 0x70, + 0xd9, 0x3c, 0xfd, 0x2a, 0xd0, 0x70, 0x39, 0x20, 0x7b, 0xf1, 0x55, 0xe2, + 0xd8, 0x2e, 0x4e, 0x1b, 0x35, 0x64, 0x02, 0x73, 0x8c, 0x66, 0x80, 0x1a, + 0xfc, 0x8e, 0x31, 0x48, 0x70, 0x17, 0x91, 0xce, 0x29, 0xce, 0xa4, 0xf4, + 0xa4, 0xd9, 0xc6, 0x49, 0xce, 0x69, 0x01, 0x8d, 0x73, 0x3d, 0xcc, 0x72, + 0x3b, 0x28, 0xcc, 0x43, 0x8e, 0xfc, 0x55, 0x2f, 0xb6, 0x33, 0x36, 0x19, + 0xe4, 0x51, 0xf8, 0x1a, 0xea, 0x05, 0xba, 0x4b, 0xa6, 0x5e, 0x29, 0x00, + 0x10, 0x84, 0xe6, 0xb8, 0xd1, 0x0c, 0xa0, 0x65, 0x5c, 0x11, 0x9c, 0x56, + 0x89, 0x68, 0x65, 0x2d, 0xcd, 0x38, 0x2f, 0x55, 0x64, 0x5d, 0xce, 0xaf, + 0x8f, 0xf8, 0x09, 0xad, 0x6b, 0x69, 0x63, 0x92, 0x40, 0x55, 0x87, 0x4a, + 0xe5, 0xed, 0xe3, 0x96, 0x5b, 0x98, 0xe2, 0x2b, 0x8d, 0xee, 0x17, 0x35, + 0xd2, 0x9d, 0x3d, 0x6c, 0x2e, 0xd9, 0x14, 0xe7, 0x03, 0x9a, 0x4d, 0x0e, + 0x25, 0xa9, 0x7e, 0x71, 0x80, 0x73, 0x51, 0x4e, 0xa0, 0x91, 0x91, 0x4c, + 0x3c, 0x72, 0x09, 0x14, 0x79, 0x85, 0xb8, 0xe0, 0xd4, 0x97, 0x63, 0x3e, + 0xeb, 0xcd, 0x13, 0x2a, 0xa3, 0x00, 0xbc, 0x71, 0xdc, 0xe6, 0x92, 0xea, + 0x17, 0x8e, 0x70, 0x1f, 0xae, 0x01, 0xa5, 0x98, 0x62, 0x5d, 0xe0, 0xf2, + 0x0e, 0x79, 0xa2, 0x6b, 0x97, 0xba, 0x60, 0xd2, 0x63, 0x23, 0x8e, 0x29, + 0xdd, 0x58, 0x9b, 0x3b, 0x93, 0x40, 0x51, 0x64, 0x8c, 0xb8, 0x1b, 0x41, + 0x19, 0xa2, 0xed, 0xd1, 0xef, 0x9a, 0x48, 0x88, 0xd8, 0x71, 0xf9, 0xd5, + 0x49, 0xee, 0x04, 0x69, 0xb4, 0x11, 0x9a, 0xa1, 0xe7, 0xb2, 0x9c, 0x86, + 0x3f, 0x52, 0x69, 0xad, 0x81, 0xee, 0x6f, 0xa3, 0x23, 0x13, 0x97, 0x52, + 0x7d, 0x05, 0x48, 0xaf, 0xb7, 0x3d, 0xaa, 0xa4, 0x50, 0x2a, 0x3c, 0x4c, + 0xa0, 0x82, 0xf1, 0x86, 0x24, 0xf5, 0x39, 0xa9, 0x8c, 0x8a, 0x99, 0xfe, + 0x23, 0x52, 0xf4, 0x29, 0x6a, 0x48, 0xf2, 0x16, 0xc7, 0x7a, 0x44, 0x3e, + 0xa6, 0xa1, 0x69, 0x18, 0xfb, 0x0a, 0x45, 0x6f, 0xce, 0x90, 0xc9, 0x83, + 0x8c, 0x8f, 0x6a, 0x77, 0x98, 0x7d, 0x00, 0xfa, 0xd4, 0x21, 0x8d, 0x21, + 0x62, 0x7d, 0x4d, 0x00, 0x58, 0xf3, 0x09, 0x3f, 0x7a, 0xab, 0xe0, 0x79, + 0xb9, 0xe4, 0x8a, 0x55, 0xc9, 0x3d, 0x28, 0xda, 0x49, 0xce, 0x68, 0x02, + 0x4c, 0x83, 0xce, 0x31, 0x4f, 0x8c, 0xf4, 0x03, 0xf3, 0xa8, 0x97, 0x8e, + 0xbc, 0xd4, 0x91, 0x61, 0x5b, 0x81, 0x40, 0x17, 0xac, 0x06, 0x2f, 0xe2, + 0xcf, 0x5d, 0xc2, 0xab, 0xeb, 0x72, 0x3a, 0xea, 0x77, 0x41, 0x62, 0x66, + 0xf9, 0x46, 0x48, 0xfa, 0x55, 0x9b, 0x0f, 0x9a, 0xf2, 0x16, 0x3d, 0x77, + 0x0a, 0x76, 0xa3, 0x69, 0x34, 0x97, 0xf7, 0x2c, 0xab, 0xc3, 0xf0, 0x0f, + 0xe1, 0x57, 0x0d, 0x88, 0x9e, 0xe7, 0x38, 0xf7, 0x12, 0xbc, 0x50, 0x81, + 0x10, 0x01, 0x71, 0x8e, 0x7a, 0xd4, 0x91, 0x3c, 0xf2, 0xdc, 0xb1, 0x08, + 0xbb, 0x82, 0xf3, 0xf3, 0x55, 0xff, 0x00, 0xec, 0x79, 0x11, 0x51, 0x18, + 0x9c, 0xae, 0x0f, 0x4a, 0x94, 0x69, 0x6f, 0x0c, 0xcc, 0xdc, 0xfc, 0xc3, + 0x15, 0x66, 0x65, 0xeb, 0xc5, 0x2f, 0x61, 0x60, 0x33, 0x83, 0xb3, 0x38, + 0xac, 0xd9, 0xd8, 0x83, 0x80, 0x07, 0xd6, 0xb5, 0xf5, 0x04, 0xf2, 0xa1, + 0xb3, 0x4e, 0xa5, 0x52, 0xb1, 0xa6, 0x25, 0x9b, 0x3c, 0xe2, 0xb2, 0x9e, + 0xe6, 0xd0, 0xd8, 0x40, 0x5b, 0xb8, 0xa6, 0x9c, 0x8f, 0xe1, 0xa7, 0xf2, + 0x53, 0x8c, 0x8a, 0x41, 0xd3, 0xad, 0x21, 0x8c, 0x00, 0x8e, 0xd4, 0xf9, + 0x1b, 0x0a, 0x07, 0x3d, 0x29, 0x15, 0xf9, 0x39, 0xfe, 0x54, 0x3b, 0xe4, + 0x8f, 0xe5, 0x40, 0x0d, 0x04, 0x53, 0xb7, 0x71, 0x8a, 0x42, 0xe0, 0x0c, + 0x60, 0x52, 0x92, 0x98, 0xc6, 0x28, 0x18, 0xa0, 0x7c, 0x84, 0xe3, 0x8a, + 0x66, 0x06, 0x7d, 0xe9, 0xf8, 0x5e, 0xcc, 0x73, 0x4d, 0xc1, 0xcd, 0x02, + 0x1a, 0x78, 0x35, 0x2c, 0x2e, 0x43, 0x73, 0xd2, 0xa3, 0xc1, 0x0d, 0xd3, + 0xf2, 0xa5, 0x5c, 0x97, 0x14, 0x86, 0x39, 0x48, 0x32, 0xb3, 0x60, 0xd4, + 0xa6, 0x21, 0x28, 0x60, 0xc3, 0x2b, 0x8a, 0x8d, 0x86, 0xc3, 0xc1, 0xeb, + 0x56, 0xad, 0x72, 0xef, 0x82, 0x7a, 0x8a, 0x62, 0x31, 0xf5, 0x7b, 0x6f, + 0xec, 0xcb, 0xb4, 0x8d, 0x1b, 0x62, 0xc8, 0x81, 0xc0, 0x07, 0x83, 0x54, + 0x92, 0x62, 0x8c, 0x1d, 0x4e, 0x0f, 0x72, 0xbd, 0xff, 0x00, 0x0a, 0xe8, + 0xbc, 0x4b, 0x04, 0x2f, 0x73, 0x6a, 0x25, 0x53, 0x81, 0x07, 0xde, 0x02, + 0xb9, 0x99, 0xac, 0x8c, 0x43, 0x74, 0x32, 0x65, 0x70, 0x0e, 0x2b, 0x53, + 0x23, 0x72, 0xd2, 0xee, 0x39, 0xc0, 0x5d, 0xc3, 0x7d, 0x5b, 0x20, 0x8e, + 0x05, 0x32, 0x2d, 0x2d, 0x6d, 0x6c, 0xed, 0x24, 0x3c, 0xc8, 0xea, 0x58, + 0x9c, 0x54, 0xdb, 0xba, 0x03, 0xcd, 0x66, 0xcb, 0x5b, 0x0c, 0x9d, 0xa5, + 0x1e, 0x48, 0x49, 0x36, 0xae, 0xe1, 0x95, 0x1d, 0xea, 0x6b, 0xc8, 0x3e, + 0xcd, 0x3e, 0xdc, 0xf2, 0x46, 0x6a, 0xbc, 0xa0, 0x99, 0xc1, 0x53, 0xd3, + 0x91, 0x52, 0xcd, 0x3c, 0x97, 0x38, 0x79, 0x7e, 0xf0, 0x18, 0xa6, 0xde, + 0x80, 0x96, 0xa7, 0x41, 0xe1, 0xdf, 0x18, 0xdf, 0x68, 0x92, 0x8c, 0xb1, + 0x92, 0x2d, 0xa4, 0x60, 0xf5, 0x1d, 0x79, 0xfd, 0x6b, 0xb9, 0xf0, 0xe6, + 0xa3, 0x77, 0xaa, 0xea, 0xb6, 0x77, 0x29, 0xa9, 0x47, 0x22, 0x46, 0x48, + 0x0a, 0xc7, 0xe6, 0x23, 0x23, 0x23, 0x1f, 0x8d, 0x79, 0x09, 0x5d, 0xa7, + 0x20, 0xfe, 0x15, 0xda, 0xfc, 0x34, 0xd3, 0x62, 0xbc, 0xf1, 0x0a, 0xc9, + 0x33, 0x30, 0xd8, 0x77, 0x28, 0x56, 0xc7, 0x40, 0x6a, 0xa3, 0x27, 0xb0, + 0xa5, 0x15, 0xb9, 0xef, 0x19, 0xa5, 0xcd, 0x47, 0x4b, 0x9a, 0xd0, 0xc8, + 0x7e, 0xea, 0x5c, 0xd4, 0x79, 0xa5, 0xcd, 0x03, 0x1f, 0x9a, 0x46, 0xe5, + 0x71, 0x9c, 0x53, 0x33, 0x5c, 0x77, 0x8e, 0xfc, 0x47, 0x7d, 0xa5, 0x59, + 0x47, 0x0e, 0x94, 0x9e, 0x6c, 0xf2, 0x92, 0x18, 0xab, 0x0c, 0xa8, 0xfe, + 0x94, 0x01, 0xd0, 0x68, 0xb3, 0xc5, 0x71, 0x1d, 0xc3, 0x44, 0xfb, 0x95, + 0x27, 0x74, 0xfb, 0xd9, 0xc1, 0xcd, 0x5e, 0xb8, 0xbc, 0xb7, 0xb4, 0x08, + 0x67, 0x95, 0x63, 0xde, 0xc1, 0x57, 0x71, 0xea, 0x6b, 0xc7, 0x7c, 0x31, + 0xe2, 0x6d, 0x7b, 0x4e, 0xd4, 0xe3, 0x4b, 0x9b, 0x57, 0x5b, 0x49, 0x65, + 0xcc, 0x9f, 0x38, 0x6c, 0xe7, 0xa9, 0x35, 0xd8, 0xf8, 0xd6, 0xee, 0xd2, + 0xe6, 0x3d, 0x3e, 0x05, 0x9d, 0x03, 0xb4, 0xea, 0x4c, 0x80, 0x83, 0xb5, + 0x7b, 0xd2, 0xb8, 0x1d, 0xbe, 0x6b, 0x9a, 0xf1, 0xc9, 0x83, 0xfe, 0x11, + 0xb9, 0x3c, 0xe6, 0xda, 0x77, 0xae, 0xcf, 0xaf, 0xf9, 0xcd, 0x6f, 0x40, + 0xca, 0x6d, 0xe3, 0x28, 0xfb, 0xd7, 0x68, 0xc3, 0x67, 0x39, 0x15, 0xcb, + 0xf8, 0xff, 0x00, 0xc8, 0x9b, 0x41, 0x58, 0x24, 0x3f, 0x3b, 0xc8, 0x0a, + 0x0f, 0xa5, 0x31, 0x1b, 0xda, 0x2c, 0x91, 0xbe, 0x89, 0x66, 0xf1, 0xb6, + 0x53, 0xc9, 0x5c, 0x1f, 0xc2, 0xb1, 0xbc, 0x39, 0xa9, 0xda, 0xdc, 0x6b, + 0x5a, 0xba, 0x44, 0xe4, 0xb3, 0x49, 0xbc, 0x67, 0xd0, 0x71, 0x4f, 0xb0, + 0xd5, 0x2d, 0x34, 0xef, 0x06, 0x43, 0x75, 0x18, 0xcc, 0x51, 0x46, 0x17, + 0x6f, 0xbf, 0x4c, 0x57, 0x37, 0xa5, 0xdf, 0xe9, 0x7a, 0x1e, 0xab, 0x7d, + 0x70, 0xc9, 0xb4, 0x4e, 0x3e, 0x43, 0xe8, 0x0f, 0x50, 0x69, 0x01, 0xe8, + 0x76, 0x57, 0x91, 0x5f, 0xda, 0xad, 0xc4, 0x27, 0x28, 0xc4, 0x81, 0x9f, + 0x63, 0x8a, 0xb3, 0x5c, 0xef, 0x83, 0xa7, 0x86, 0x6f, 0x0f, 0xc6, 0x21, + 0x7d, 0xe1, 0x5d, 0x83, 0x73, 0xdf, 0x39, 0xae, 0x83, 0x34, 0xc6, 0x3e, + 0x8a, 0x66, 0x68, 0xcd, 0x00, 0x3a, 0x92, 0x93, 0x34, 0x99, 0xa0, 0x43, + 0xa8, 0x34, 0xdc, 0xd2, 0x66, 0x80, 0x14, 0x9a, 0xa9, 0xa8, 0xea, 0x56, + 0xba, 0x5d, 0x9b, 0xdd, 0x5d, 0xca, 0xb1, 0xc4, 0x83, 0x24, 0x9e, 0xf5, + 0x16, 0xad, 0xab, 0x5a, 0xe8, 0xd6, 0x12, 0x5d, 0xdd, 0xc8, 0x15, 0x14, + 0x70, 0x3b, 0x93, 0xe8, 0x2b, 0xc2, 0x7c, 0x4f, 0xe2, 0x7d, 0x43, 0xc5, + 0x97, 0xcd, 0xb5, 0x9a, 0x3b, 0x38, 0xcf, 0x0b, 0xd8, 0x0f, 0xea, 0x69, + 0x37, 0x60, 0x48, 0xb7, 0xe3, 0x0f, 0x1d, 0x5f, 0x78, 0x92, 0xe0, 0xda, + 0x59, 0x96, 0x8a, 0xcd, 0x4f, 0x41, 0xdf, 0xdc, 0xd6, 0x05, 0x9d, 0x92, + 0x46, 0x64, 0x50, 0xc8, 0xf2, 0x6d, 0xcb, 0x48, 0xdd, 0xbe, 0x95, 0x35, + 0xbc, 0x76, 0xf0, 0x29, 0x8d, 0x4e, 0x17, 0xb8, 0x3f, 0x79, 0x8d, 0x67, + 0xd9, 0x12, 0xfa, 0xdd, 0xc4, 0x4c, 0x0a, 0xc6, 0x53, 0x21, 0x73, 0x52, + 0x51, 0x1c, 0x17, 0x53, 0x1b, 0xcb, 0x8b, 0x68, 0x76, 0x92, 0xa9, 0xcb, + 0x1f, 0x4a, 0x9f, 0xc2, 0x60, 0xab, 0xde, 0x6e, 0xfb, 0xde, 0x65, 0x45, + 0xa7, 0xc6, 0xa3, 0x57, 0xba, 0x2a, 0x3f, 0xe5, 0x96, 0x3f, 0x5a, 0x76, + 0x93, 0x30, 0xb2, 0x5b, 0x96, 0x20, 0xef, 0x69, 0x78, 0x1e, 0xd4, 0x01, + 0x1e, 0xb3, 0x1e, 0xed, 0x66, 0xd5, 0x01, 0x03, 0x2f, 0xc9, 0x3f, 0x5a, + 0x6e, 0xaf, 0x14, 0x57, 0x17, 0x51, 0xec, 0x7c, 0xf9, 0x67, 0x27, 0x1c, + 0xe6, 0xac, 0x4b, 0xe6, 0x5e, 0x4b, 0xbc, 0xe1, 0x7d, 0xfd, 0x29, 0x60, + 0x8d, 0x11, 0x86, 0xfc, 0x70, 0x7e, 0xf9, 0x14, 0x00, 0xa6, 0x5b, 0xab, + 0x90, 0x37, 0x9c, 0x20, 0xe3, 0x1d, 0x07, 0xe5, 0x4a, 0x90, 0xa2, 0xbe, + 0x7e, 0xf1, 0x1f, 0xa5, 0x4a, 0x77, 0x95, 0x93, 0xcb, 0x1b, 0x80, 0xe8, + 0x6b, 0x26, 0x7d, 0x4f, 0xcb, 0xbb, 0x5b, 0x79, 0x33, 0xd7, 0x04, 0x2f, + 0x6a, 0x43, 0x37, 0x94, 0xc4, 0x10, 0x62, 0x5d, 0xc3, 0xfb, 0xa8, 0x2a, + 0x50, 0xaf, 0xe5, 0x96, 0x8a, 0x15, 0x51, 0xea, 0xdc, 0x9a, 0x6c, 0x4e, + 0xa2, 0x25, 0xc4, 0x21, 0x47, 0x62, 0x46, 0x49, 0xa9, 0x8c, 0x06, 0x45, + 0x59, 0x19, 0xdb, 0xa7, 0x0a, 0x7a, 0x7e, 0x55, 0x42, 0x2a, 0xec, 0x18, + 0x26, 0x69, 0x0b, 0x0f, 0xee, 0x8e, 0x79, 0xae, 0x5f, 0x56, 0xb8, 0x6f, + 0xb4, 0x88, 0x6d, 0x83, 0x12, 0x7a, 0xe7, 0x39, 0xae, 0xd6, 0x08, 0x88, + 0x62, 0x5c, 0xe7, 0x8e, 0x06, 0x2b, 0x9c, 0xd4, 0x6d, 0xd9, 0xf5, 0xe8, + 0xbc, 0xb2, 0x14, 0x94, 0x3c, 0xe2, 0x95, 0x80, 0x93, 0x41, 0x8e, 0xed, + 0xe0, 0xfd, 0xe3, 0x15, 0x19, 0xc8, 0x62, 0x39, 0x35, 0xad, 0x71, 0x67, + 0xe6, 0xc2, 0x7c, 0xc7, 0x7f, 0x41, 0x86, 0xa8, 0xf4, 0xfb, 0x66, 0xb5, + 0x8f, 0x61, 0x90, 0xb6, 0x48, 0xeb, 0xda, 0xaf, 0x4d, 0x9f, 0x2c, 0x7b, + 0x53, 0xb0, 0x1e, 0x7d, 0x34, 0x71, 0x47, 0x75, 0x70, 0x1c, 0x48, 0xcc, + 0xaf, 0x80, 0x6b, 0xad, 0xd0, 0xd2, 0x23, 0xa7, 0xb1, 0x48, 0xb6, 0x7c, + 0xfd, 0xf9, 0x35, 0xcd, 0xdc, 0xc6, 0xc6, 0xe6, 0xeb, 0x03, 0x83, 0x21, + 0xc5, 0x6d, 0xe9, 0x57, 0xd6, 0xf6, 0x96, 0x8c, 0x93, 0x3e, 0x18, 0xb6, + 0x40, 0xc6, 0x68, 0x11, 0xad, 0xb2, 0x3d, 0xff, 0x00, 0x77, 0xe6, 0xcd, + 0x5b, 0x90, 0x0c, 0x1c, 0x77, 0xac, 0x66, 0xd6, 0xad, 0x83, 0x7c, 0xa9, + 0x23, 0x1c, 0xf5, 0xc5, 0x23, 0xf8, 0x81, 0x08, 0x3b, 0x6d, 0x8f, 0xe2, + 0x69, 0x5c, 0x76, 0x35, 0x95, 0x80, 0x6e, 0x00, 0x18, 0xe2, 0xb1, 0x75, + 0x68, 0xbc, 0xeb, 0xa8, 0x46, 0xe6, 0x5c, 0x06, 0xe4, 0x1c, 0x7a, 0x53, + 0x7f, 0xb7, 0xa5, 0x3c, 0xac, 0x0b, 0xf9, 0xd5, 0x49, 0x6f, 0xe7, 0x9e, + 0x40, 0xec, 0x8a, 0x0a, 0x82, 0x3a, 0x1a, 0x2e, 0x16, 0x12, 0xde, 0xcc, + 0x6d, 0x95, 0x8c, 0xb2, 0x7c, 0xb2, 0x1e, 0x37, 0x75, 0xae, 0x99, 0x73, + 0xb4, 0x71, 0xda, 0xb9, 0x75, 0xb8, 0x99, 0x43, 0x85, 0x03, 0xe6, 0x39, + 0x3d, 0x6a, 0xcf, 0xf6, 0xad, 0xe8, 0x50, 0x30, 0x98, 0xfa, 0x53, 0xb8, + 0x58, 0xc8, 0xf1, 0x6d, 0xdd, 0xcd, 0xb6, 0xa1, 0x10, 0x86, 0x67, 0x40, + 0x53, 0x9d, 0xa7, 0xaf, 0x35, 0x9b, 0xa1, 0xdf, 0xdd, 0x4b, 0xab, 0xda, + 0x44, 0xf3, 0x33, 0x47, 0xbc, 0x7c, 0xa4, 0xd6, 0xa6, 0xa1, 0x07, 0xf6, + 0x94, 0xc2, 0x4b, 0x85, 0x05, 0x94, 0x60, 0x63, 0x22, 0xa1, 0xb4, 0xd3, + 0xa3, 0xb4, 0xba, 0x8e, 0xe2, 0x25, 0x3b, 0xe3, 0x39, 0x00, 0xd2, 0xb8, + 0x58, 0xee, 0x5c, 0xee, 0xc8, 0x1e, 0xbd, 0xea, 0x06, 0x48, 0xc9, 0xe9, + 0x93, 0xe9, 0x8a, 0xca, 0x3a, 0xc5, 0xc6, 0xd3, 0x98, 0x57, 0xf0, 0x34, + 0xab, 0xab, 0x9c, 0xe5, 0xa0, 0x3f, 0x81, 0xa2, 0xe0, 0x6a, 0xde, 0x6d, + 0x16, 0x8e, 0x36, 0x8c, 0x6c, 0xfb, 0xa7, 0xbd, 0x71, 0x32, 0xbc, 0x0c, + 0xd2, 0x6e, 0xb5, 0xdb, 0xf2, 0xf1, 0xb5, 0xba, 0x1f, 0x5a, 0xe9, 0xa6, + 0xd5, 0xe2, 0x9a, 0x07, 0x43, 0x1b, 0xa9, 0x2b, 0x81, 0x91, 0x5c, 0xcb, + 0xc2, 0xf9, 0x72, 0x3b, 0x8c, 0x53, 0x56, 0x11, 0xd3, 0x68, 0xf6, 0xd1, + 0x36, 0x97, 0x0b, 0x6d, 0xf9, 0x99, 0x79, 0x35, 0x25, 0xf5, 0xa4, 0x82, + 0xd9, 0xcc, 0x72, 0x10, 0xe5, 0x7d, 0x78, 0xa4, 0xd1, 0xdd, 0x06, 0x9f, + 0x6f, 0x19, 0x75, 0xdc, 0x17, 0x91, 0x9a, 0xb5, 0xa8, 0x29, 0x36, 0x53, + 0x1c, 0xff, 0x00, 0x01, 0xa4, 0x33, 0x87, 0xf2, 0xee, 0xad, 0x6e, 0x03, + 0x1c, 0xb2, 0xef, 0xc1, 0xee, 0x2b, 0xaf, 0x89, 0x57, 0xc8, 0x55, 0x7b, + 0x6f, 0x2f, 0x3c, 0x82, 0x2b, 0x90, 0x0c, 0xc2, 0x44, 0x40, 0xed, 0x83, + 0x28, 0xc8, 0xcf, 0x15, 0xdf, 0x84, 0x0d, 0x10, 0x56, 0x19, 0xe0, 0x53, + 0xb0, 0x5c, 0xab, 0x12, 0x04, 0x07, 0x17, 0x1b, 0x7d, 0x14, 0xf7, 0xfc, + 0xea, 0x1f, 0x34, 0x07, 0x3b, 0xe3, 0x24, 0xff, 0x00, 0xb1, 0xc1, 0xab, + 0x8d, 0x67, 0x13, 0x21, 0x0c, 0x09, 0xe7, 0xbd, 0x56, 0x10, 0x4a, 0xae, + 0x55, 0x38, 0xf4, 0x39, 0xe2, 0x90, 0x10, 0xfd, 0xad, 0x5b, 0xe5, 0x28, + 0x08, 0x1d, 0x98, 0xf3, 0x4d, 0x36, 0xd6, 0xd3, 0xe4, 0xaf, 0xee, 0xda, + 0xb0, 0x35, 0x5b, 0xa9, 0xa0, 0xbf, 0xc1, 0x50, 0x07, 0x72, 0x3b, 0xd6, + 0xbd, 0x8e, 0xed, 0x8a, 0xe9, 0x26, 0xec, 0x8e, 0x54, 0xd2, 0x18, 0xdb, + 0x88, 0xae, 0xe2, 0x89, 0xa1, 0x32, 0x33, 0xc4, 0xc3, 0x18, 0xea, 0x2a, + 0x5d, 0x12, 0x58, 0xed, 0x20, 0x92, 0x03, 0x26, 0xc6, 0x2d, 0x90, 0x48, + 0xe2, 0xa6, 0x69, 0xb6, 0x8c, 0x84, 0x65, 0xc7, 0x5e, 0xe2, 0x9a, 0x52, + 0x0b, 0x8f, 0xbc, 0xbb, 0x18, 0xff, 0x00, 0x10, 0xa6, 0x06, 0x9c, 0x57, + 0x05, 0x72, 0xb2, 0x1e, 0x36, 0xe3, 0x77, 0x51, 0x5c, 0xc6, 0x95, 0x0b, + 0x5c, 0x6a, 0x77, 0x7b, 0x9c, 0xfc, 0xae, 0x48, 0x3f, 0x8d, 0x5f, 0x6f, + 0xb5, 0x58, 0xe4, 0xc2, 0xc1, 0xe3, 0xf4, 0xea, 0x2b, 0x32, 0xc2, 0x59, + 0xad, 0xef, 0xe4, 0x75, 0x2a, 0x16, 0x56, 0xe9, 0x40, 0x17, 0xae, 0x16, + 0x54, 0x94, 0x09, 0x08, 0x39, 0x1d, 0x40, 0xa8, 0x93, 0x1b, 0xc7, 0x6a, + 0x92, 0xfa, 0xe9, 0x5a, 0x45, 0x38, 0x21, 0xb1, 0xd0, 0xd5, 0x4d, 0xe4, + 0x9c, 0x93, 0x50, 0xf7, 0x29, 0x22, 0xc5, 0xdd, 0xc3, 0x4b, 0x6e, 0x6d, + 0xb6, 0x8d, 0x83, 0xa9, 0x3d, 0x6a, 0x0b, 0x64, 0x31, 0xca, 0x48, 0x3c, + 0x01, 0x8a, 0x68, 0x7f, 0x9d, 0x8f, 0xad, 0x4e, 0x9c, 0x9c, 0x93, 0x45, + 0xc7, 0x64, 0x4c, 0x5f, 0xe8, 0x29, 0x37, 0x0c, 0x72, 0x69, 0x84, 0x8c, + 0xf1, 0x49, 0xd6, 0x90, 0xc7, 0xb9, 0x67, 0x07, 0x65, 0x63, 0xdc, 0xd9, + 0x4a, 0xb6, 0xaf, 0x73, 0x24, 0x84, 0xc2, 0x1b, 0x07, 0x9a, 0xd8, 0x19, + 0xc6, 0x09, 0xa9, 0xae, 0xa0, 0x56, 0xf0, 0xcd, 0xc1, 0xc6, 0x76, 0xb8, + 0x3f, 0xad, 0x54, 0x77, 0x26, 0x5b, 0x1c, 0x7e, 0xfb, 0x50, 0x7f, 0x8c, + 0xfd, 0x29, 0x7c, 0xe8, 0x77, 0x61, 0x20, 0x73, 0x9f, 0x5a, 0xb5, 0x2a, + 0x30, 0x94, 0x81, 0x08, 0x5f, 0x94, 0x75, 0x34, 0x43, 0x1c, 0xa6, 0x78, + 0xc0, 0x08, 0x0e, 0x38, 0xaa, 0xb1, 0x17, 0x37, 0xe2, 0xb0, 0x45, 0xb4, + 0xb7, 0x91, 0x8e, 0x5d, 0x90, 0x11, 0xc7, 0x4f, 0x6a, 0x90, 0x02, 0x0f, + 0x7e, 0x2a, 0xcc, 0xbf, 0x2d, 0x9d, 0xa9, 0x63, 0xc8, 0x8c, 0x74, 0xaa, + 0xf9, 0x1d, 0x78, 0xe9, 0xd7, 0x35, 0x0f, 0x73, 0x48, 0xec, 0x0c, 0xcc, + 0x00, 0xe4, 0xe2, 0x94, 0x3b, 0x11, 0xdc, 0xd4, 0x7b, 0xc1, 0xea, 0x71, + 0xf8, 0xd2, 0x03, 0x81, 0xc1, 0xcd, 0x03, 0x1a, 0xd9, 0x2b, 0xd4, 0x53, + 0x47, 0xbd, 0x28, 0xe4, 0x52, 0x0e, 0xd9, 0xa0, 0x43, 0xe2, 0x41, 0xe6, + 0x16, 0x22, 0xa7, 0xc8, 0x51, 0xd2, 0xa1, 0x53, 0x86, 0x62, 0x0d, 0x3b, + 0x77, 0x1c, 0x66, 0x81, 0x92, 0x90, 0xa4, 0x7f, 0x85, 0x18, 0x00, 0x75, + 0xa8, 0x81, 0x07, 0x90, 0x69, 0xc5, 0x8e, 0x3a, 0x8a, 0x00, 0xb1, 0x07, + 0x16, 0x57, 0xb9, 0xe4, 0x79, 0x4d, 0x5c, 0x72, 0x98, 0x48, 0xf4, 0x3b, + 0xbe, 0x95, 0xd8, 0xd9, 0xab, 0x4b, 0x0d, 0xd2, 0x28, 0xf9, 0x8c, 0x44, + 0x0a, 0xe6, 0x66, 0xd2, 0xae, 0xd0, 0x30, 0x30, 0x93, 0xce, 0x78, 0xab, + 0x5b, 0x19, 0xcb, 0x72, 0x3d, 0x35, 0x37, 0x6a, 0x16, 0xff, 0x00, 0x36, + 0x47, 0x9a, 0x38, 0xae, 0x87, 0x55, 0x20, 0x6a, 0x32, 0xd6, 0x1e, 0x91, + 0x6c, 0xf1, 0xea, 0xb0, 0x17, 0x8d, 0x97, 0xf7, 0x9d, 0xc5, 0x6e, 0x6a, + 0xc1, 0x7f, 0xb4, 0xe6, 0xcd, 0x29, 0x6c, 0x38, 0xee, 0x53, 0x2d, 0xf3, + 0x1c, 0x64, 0x52, 0x12, 0x4f, 0x3d, 0x69, 0xbb, 0x94, 0x9e, 0x39, 0xa0, + 0x90, 0x7b, 0xd4, 0x1a, 0x15, 0xe4, 0x03, 0x71, 0xa8, 0x17, 0x86, 0xc7, + 0xbd, 0x5a, 0x23, 0x93, 0xc6, 0x6a, 0xb1, 0x1b, 0x64, 0xe3, 0xd6, 0x90, + 0x31, 0x66, 0xb0, 0xdf, 0xa7, 0xdc, 0xdd, 0x82, 0x77, 0xc6, 0x40, 0xc7, + 0xad, 0x61, 0xf2, 0x4f, 0xcc, 0x73, 0xed, 0x5d, 0x74, 0x0a, 0x1f, 0x43, + 0xbf, 0x07, 0xda, 0xb9, 0x2c, 0x80, 0xd8, 0x15, 0xa2, 0xd8, 0xc9, 0xee, + 0x75, 0x53, 0x60, 0x0b, 0x6c, 0xff, 0x00, 0xcf, 0x05, 0xfe, 0x55, 0x5c, + 0xb7, 0x24, 0x63, 0x02, 0xa7, 0x98, 0x6e, 0x4b, 0x63, 0x9f, 0xf9, 0x62, + 0xbf, 0xca, 0xa1, 0xe0, 0x71, 0x50, 0xf7, 0x34, 0x5b, 0x08, 0x79, 0xc5, + 0x38, 0x0c, 0x77, 0x14, 0x80, 0xf0, 0x69, 0x00, 0xc8, 0xce, 0x6a, 0x46, + 0x3f, 0x02, 0x94, 0x1a, 0x45, 0xce, 0x3a, 0x52, 0x80, 0x7b, 0xd0, 0x31, + 0xeb, 0xcd, 0x29, 0x53, 0x9e, 0xa3, 0x14, 0x88, 0x39, 0xc3, 0x54, 0x8d, + 0xb7, 0x07, 0x14, 0x08, 0x8d, 0x40, 0xce, 0x3a, 0x8a, 0x95, 0x4a, 0xaf, + 0x20, 0x03, 0x4c, 0x46, 0x1b, 0x89, 0x02, 0x9d, 0xbb, 0x9c, 0x80, 0x68, + 0x19, 0x5d, 0xb5, 0x91, 0x63, 0x70, 0x8e, 0xb0, 0x96, 0x2a, 0x73, 0xd7, + 0xbd, 0x4e, 0x3c, 0x55, 0x79, 0x71, 0x27, 0xee, 0xad, 0x21, 0xdc, 0x7d, + 0x72, 0x6a, 0xbd, 0xcd, 0xa1, 0x9a, 0x36, 0x70, 0x06, 0x40, 0xc8, 0xac, + 0xd4, 0x12, 0xdb, 0x4c, 0xb2, 0x6d, 0x24, 0x83, 0xd0, 0x55, 0xc5, 0xf6, + 0x33, 0x92, 0xee, 0x74, 0x27, 0x54, 0xd5, 0xdf, 0x20, 0xc3, 0x12, 0xb8, + 0xe8, 0x76, 0xd6, 0x6d, 0xd7, 0x88, 0x35, 0x78, 0xa5, 0x64, 0x69, 0x10, + 0x11, 0xdb, 0x60, 0xa9, 0x2f, 0x2e, 0xee, 0xe6, 0xb5, 0x51, 0x1a, 0xed, + 0x67, 0x00, 0x16, 0x04, 0xe4, 0x55, 0x18, 0xb4, 0xf9, 0x5e, 0x50, 0xce, + 0xdb, 0x8f, 0x72, 0x4d, 0x55, 0xc9, 0xb0, 0xe3, 0xab, 0x6a, 0xb7, 0x5b, + 0x5e, 0x57, 0xca, 0xa1, 0xf4, 0xad, 0x24, 0x76, 0x74, 0x05, 0xbe, 0xf1, + 0x1d, 0x6a, 0x37, 0x58, 0x22, 0xb7, 0xd8, 0xa4, 0x6e, 0xce, 0x69, 0x7c, + 0xc4, 0x20, 0x61, 0xfa, 0x7a, 0x0a, 0x87, 0x76, 0x68, 0xac, 0x89, 0xd3, + 0x3c, 0x83, 0x4c, 0x3f, 0x21, 0x20, 0x53, 0x56, 0x78, 0xc7, 0xf1, 0x8c, + 0x9a, 0x0b, 0xc7, 0xbb, 0xfd, 0x62, 0xe2, 0x95, 0x98, 0xee, 0x87, 0x28, + 0xdd, 0xc0, 0xc5, 0x35, 0xf2, 0xa7, 0x04, 0x0a, 0x40, 0xc8, 0x08, 0xc4, + 0x80, 0xd3, 0x59, 0x83, 0x31, 0xc3, 0x2f, 0xe7, 0x4b, 0x50, 0xba, 0x14, + 0x63, 0xb8, 0xa4, 0xc8, 0x14, 0x0e, 0x7d, 0x3f, 0x3a, 0x52, 0x0f, 0x7a, + 0x07, 0x70, 0xef, 0x9a, 0x46, 0xe4, 0xf5, 0xa5, 0xe3, 0xd2, 0x93, 0xbd, + 0x00, 0x28, 0x27, 0xd6, 0xa4, 0x57, 0x1b, 0x86, 0x45, 0x47, 0xd2, 0x9c, + 0xbc, 0x38, 0xe6, 0x80, 0x1f, 0x28, 0x04, 0x8e, 0x30, 0x6a, 0xcd, 0xa1, + 0xda, 0x78, 0xe7, 0xde, 0xaa, 0x49, 0x8d, 0xde, 0x95, 0x3d, 0xbb, 0x6d, + 0x3c, 0x91, 0x4c, 0x09, 0x3c, 0x43, 0x33, 0xa5, 0xc5, 0xb6, 0x13, 0x72, + 0x98, 0x7b, 0x75, 0xac, 0x39, 0x5a, 0x19, 0x42, 0x91, 0xf2, 0xb6, 0xd0, + 0x31, 0xd3, 0x9a, 0xea, 0x75, 0x1d, 0x3b, 0xed, 0x86, 0xde, 0x45, 0x27, + 0x22, 0x3c, 0x0c, 0x74, 0xac, 0x5b, 0x8d, 0x36, 0x68, 0xc7, 0x31, 0xef, + 0x03, 0x00, 0x11, 0x5a, 0xf4, 0x30, 0xea, 0x74, 0x17, 0xab, 0x8b, 0x0b, + 0x5c, 0x63, 0x88, 0xeb, 0x24, 0x3f, 0x23, 0x35, 0xad, 0xa9, 0x10, 0x96, + 0xd0, 0x29, 0xe0, 0x79, 0x75, 0x88, 0xa4, 0xee, 0x1f, 0xd6, 0xb3, 0x96, + 0xe6, 0xb1, 0xd8, 0x9c, 0x90, 0x64, 0xe3, 0x15, 0x22, 0x91, 0xb3, 0x69, + 0xe7, 0x15, 0x03, 0x01, 0xbd, 0x7b, 0x50, 0xed, 0x83, 0x40, 0xc9, 0x8a, + 0x6e, 0xaf, 0x44, 0xf8, 0x48, 0x8a, 0x75, 0x7b, 0xb6, 0x65, 0x05, 0x92, + 0x2f, 0x94, 0x91, 0xd3, 0x9a, 0xf3, 0x84, 0x97, 0x07, 0xae, 0x6b, 0xb7, + 0xf8, 0x75, 0xac, 0x26, 0x9b, 0xaa, 0xce, 0xd2, 0xed, 0x11, 0xb2, 0x60, + 0x9e, 0xe6, 0x9c, 0x77, 0x26, 0x5b, 0x1e, 0xe1, 0x9a, 0x33, 0x5c, 0xed, + 0xf6, 0xbc, 0x3e, 0xcd, 0x69, 0x25, 0xa4, 0xb1, 0x83, 0x34, 0x89, 0xb8, + 0x31, 0x19, 0x0a, 0x6b, 0x1f, 0xc5, 0x3f, 0x11, 0x6c, 0x34, 0x0b, 0x84, + 0xb3, 0x44, 0x6b, 0x89, 0x9b, 0xef, 0xec, 0x3f, 0x74, 0x1a, 0xd8, 0xc4, + 0xea, 0xb5, 0x6d, 0x66, 0xd7, 0x46, 0xb4, 0xfb, 0x45, 0xcb, 0x71, 0xb8, + 0x28, 0x51, 0xd4, 0xe4, 0xd5, 0x98, 0xef, 0x6d, 0xe5, 0x80, 0xcc, 0x92, + 0xa3, 0x20, 0x19, 0x24, 0x1e, 0x95, 0xe0, 0x17, 0xda, 0xcd, 0xce, 0xa5, + 0x31, 0x92, 0x79, 0xa5, 0x9f, 0x93, 0xb4, 0x31, 0xce, 0xd1, 0x55, 0xe1, + 0xf1, 0x26, 0xab, 0xa7, 0x35, 0xc5, 0xb4, 0x0e, 0x16, 0x1b, 0x85, 0x0a, + 0xca, 0xdf, 0xd2, 0x95, 0xc7, 0x63, 0xd0, 0x7c, 0x47, 0xe3, 0x79, 0xee, + 0x2e, 0x9a, 0xda, 0xc5, 0xfc, 0xbb, 0x60, 0x48, 0x2e, 0x0f, 0x2d, 0x5c, + 0xac, 0x9a, 0x9b, 0x39, 0x25, 0xa4, 0x24, 0xfb, 0xd7, 0x39, 0x3d, 0xed, + 0xc8, 0x8d, 0xb2, 0xcb, 0xc1, 0x18, 0x50, 0x38, 0xfc, 0xea, 0x16, 0xd4, + 0x02, 0x36, 0x1d, 0xd1, 0x49, 0x1c, 0x80, 0xdd, 0x2a, 0x5b, 0x1a, 0x47, + 0x4c, 0x75, 0x16, 0x55, 0x0c, 0x09, 0x3c, 0xf6, 0xa7, 0x17, 0xfb, 0x5c, + 0x91, 0xca, 0x5c, 0xfc, 0x87, 0xbf, 0x7a, 0xc1, 0xb5, 0x9c, 0x5d, 0xa3, + 0x2c, 0x4e, 0xad, 0xb5, 0x72, 0xc0, 0x9e, 0x98, 0xad, 0x5b, 0x35, 0x65, + 0xb3, 0x2c, 0x58, 0x12, 0x79, 0xe2, 0x9a, 0x03, 0xd2, 0xb4, 0xcf, 0x1b, + 0xc0, 0x65, 0x75, 0xba, 0xd9, 0x04, 0x11, 0xc4, 0x36, 0x8c, 0xf2, 0x48, + 0xf4, 0xae, 0x63, 0x5b, 0xf1, 0x01, 0xd5, 0xef, 0x0d, 0xc3, 0x48, 0xab, + 0x12, 0xf1, 0x1a, 0x16, 0xe8, 0x3d, 0x6b, 0x8e, 0xb9, 0x49, 0xa5, 0x54, + 0x68, 0x8e, 0xe0, 0x73, 0xc3, 0x0e, 0x95, 0x46, 0x67, 0x68, 0x78, 0x92, + 0x78, 0x94, 0xfa, 0x62, 0x8b, 0x8a, 0xc7, 0x62, 0x9a, 0xeb, 0x41, 0xa6, + 0x5d, 0x58, 0x07, 0x47, 0xb7, 0xb8, 0xe4, 0x02, 0xdf, 0x71, 0xbd, 0x6b, + 0x37, 0xed, 0x8d, 0x74, 0xd1, 0xc6, 0x76, 0x37, 0x1c, 0x93, 0x9e, 0x6b, + 0x06, 0x18, 0xe5, 0xb8, 0x24, 0xc3, 0x3c, 0x6d, 0xf4, 0x02, 0xac, 0xa2, + 0xc9, 0x04, 0xd6, 0xcb, 0x2e, 0xe6, 0x77, 0x2d, 0x8c, 0x0e, 0x06, 0x28, + 0x19, 0xeb, 0xde, 0x11, 0x78, 0x34, 0xff, 0x00, 0x09, 0xdd, 0xb4, 0x4e, + 0x11, 0xd0, 0xb3, 0x12, 0xc7, 0xa1, 0xc7, 0x15, 0xd3, 0xe8, 0xb7, 0x92, + 0x5f, 0x69, 0x56, 0xf3, 0xca, 0x00, 0x91, 0x90, 0x16, 0xc5, 0x79, 0x75, + 0xac, 0xe8, 0x7c, 0x39, 0xaa, 0x40, 0xd2, 0x32, 0x3b, 0xec, 0xc1, 0x1d, + 0x7a, 0xd7, 0xa0, 0x78, 0x4a, 0x78, 0xe4, 0xd0, 0x20, 0xf2, 0xc3, 0xe1, + 0x41, 0x4c, 0xbf, 0x53, 0x83, 0xd6, 0x9a, 0x24, 0xe8, 0x73, 0x46, 0x69, + 0x81, 0x81, 0xef, 0x4e, 0xcd, 0x30, 0x16, 0x8a, 0x4c, 0xd1, 0x9a, 0x00, + 0x2a, 0xae, 0xa3, 0xa8, 0xdb, 0x69, 0x76, 0x32, 0x5d, 0xdd, 0x48, 0x12, + 0x28, 0xc6, 0x49, 0x3d, 0xea, 0x4b, 0x9b, 0x98, 0xad, 0x2d, 0xde, 0x79, + 0xdc, 0x24, 0x68, 0x32, 0xc4, 0xd7, 0x86, 0x78, 0xd3, 0xc5, 0x93, 0xf8, + 0x9e, 0xfd, 0xad, 0xad, 0xd8, 0xa5, 0x84, 0x47, 0x1d, 0x7a, 0xfb, 0xd2, + 0x6c, 0x11, 0x07, 0x89, 0x7c, 0x49, 0x75, 0xe2, 0xdd, 0x4d, 0x88, 0x76, + 0x8e, 0xca, 0x33, 0x85, 0x51, 0xd8, 0x7f, 0x8d, 0x64, 0x17, 0x36, 0xd7, + 0x70, 0xdb, 0x79, 0x6b, 0x8d, 0xa4, 0xaa, 0xfa, 0xfb, 0x9a, 0x08, 0x6b, + 0x79, 0x6d, 0xe3, 0x8b, 0x6a, 0x93, 0xc6, 0x31, 0xd3, 0xeb, 0x48, 0x63, + 0xc6, 0xab, 0x6f, 0x29, 0xcb, 0x12, 0xa7, 0x27, 0xf0, 0xa9, 0x28, 0xb0, + 0x10, 0xb1, 0x49, 0x8e, 0x09, 0x2d, 0xc9, 0xf6, 0xaa, 0x10, 0xc9, 0x1c, + 0x5a, 0xf4, 0xce, 0xc4, 0x01, 0xe5, 0xf5, 0x35, 0x7a, 0x5b, 0xa8, 0xed, + 0xd0, 0x20, 0x21, 0x9b, 0xb2, 0x01, 0xfc, 0xea, 0x80, 0x89, 0xa6, 0x95, + 0xa4, 0x93, 0x82, 0x7b, 0x01, 0x40, 0x0d, 0x1b, 0xbe, 0xd1, 0x2b, 0x41, + 0xf2, 0x89, 0x38, 0x35, 0x3c, 0x16, 0xbf, 0x36, 0x4e, 0x0e, 0x3a, 0x93, + 0xd0, 0x52, 0xc7, 0x2a, 0x89, 0x12, 0x15, 0x0b, 0xb8, 0x9c, 0x05, 0xab, + 0x65, 0x71, 0x2b, 0x1d, 0xaa, 0xec, 0x7b, 0x2f, 0x4a, 0x00, 0xae, 0x51, + 0x8a, 0xba, 0xc6, 0x03, 0x37, 0x66, 0x3e, 0x95, 0x97, 0x0d, 0xeb, 0xb6, + 0xae, 0x2d, 0x9c, 0x6e, 0x60, 0x0e, 0x14, 0x1e, 0x2b, 0x70, 0x20, 0x7d, + 0xca, 0x46, 0x00, 0xe7, 0x03, 0x8a, 0xc0, 0xd3, 0xe2, 0x27, 0xc5, 0x0c, + 0x42, 0xe5, 0x57, 0xa9, 0xa0, 0x0e, 0x83, 0xec, 0xe6, 0x55, 0x65, 0xe5, + 0x06, 0x39, 0xdb, 0xc5, 0x73, 0x1f, 0x64, 0xdb, 0xad, 0x4b, 0x84, 0x32, + 0x6d, 0x65, 0xe5, 0x8f, 0x4e, 0x6b, 0xaf, 0x79, 0x3c, 0xb6, 0x97, 0x73, + 0x00, 0xb8, 0x18, 0xae, 0x72, 0x4b, 0x85, 0x4b, 0xfb, 0x89, 0x14, 0x6e, + 0x0c, 0x54, 0x8c, 0x7b, 0x53, 0x03, 0xa6, 0x0d, 0xb6, 0x25, 0x38, 0x1c, + 0x53, 0xd9, 0xd4, 0x44, 0x09, 0x61, 0x8c, 0x56, 0x03, 0xea, 0x57, 0x33, + 0xae, 0xd4, 0x50, 0x9f, 0xa9, 0xaa, 0xe6, 0x0b, 0x99, 0xc7, 0xcc, 0xee, + 0x7d, 0x89, 0xa5, 0x70, 0xb1, 0xb2, 0x75, 0x3b, 0x68, 0x4b, 0x06, 0x90, + 0x1c, 0x8e, 0x8b, 0xcd, 0x62, 0xdc, 0xdd, 0xf9, 0x9a, 0x82, 0xdc, 0x46, + 0x87, 0xe5, 0x5c, 0x00, 0xd5, 0x2c, 0x76, 0x4a, 0xa0, 0x07, 0x6f, 0xc0, + 0x54, 0xc6, 0xce, 0x05, 0x0b, 0x9e, 0x4f, 0xd6, 0x81, 0x95, 0xbf, 0xb4, + 0x2e, 0xe4, 0x04, 0x2b, 0x05, 0x39, 0xfe, 0x11, 0x9a, 0x6b, 0x25, 0xf4, + 0xfc, 0xc8, 0xf2, 0x11, 0xee, 0x6a, 0xea, 0x98, 0xcf, 0x08, 0x30, 0x47, + 0xa5, 0x3b, 0xf7, 0x8f, 0xcc, 0x67, 0x79, 0xf4, 0x04, 0x50, 0x06, 0x7f, + 0xd8, 0x64, 0x43, 0x82, 0x07, 0xa9, 0x35, 0x67, 0xfb, 0x35, 0x71, 0x96, + 0x6e, 0x3d, 0x85, 0x3e, 0x46, 0xb8, 0xf3, 0x02, 0xb4, 0x5c, 0xfd, 0x7a, + 0x53, 0xa7, 0xcd, 0xbc, 0x7b, 0xa5, 0x75, 0x27, 0x19, 0xda, 0xa3, 0x1f, + 0x99, 0xa4, 0x04, 0x42, 0xce, 0xdc, 0xb0, 0x19, 0xfa, 0x92, 0x71, 0x53, + 0x7d, 0x92, 0xdb, 0x03, 0x19, 0xe3, 0xaf, 0x7a, 0xad, 0x69, 0x7b, 0x0d, + 0xdb, 0x94, 0x66, 0x19, 0xff, 0x00, 0x64, 0xf3, 0x57, 0x65, 0xb2, 0x51, + 0x8d, 0xb2, 0x3e, 0xd3, 0xce, 0x73, 0xd6, 0x98, 0x86, 0xf9, 0x56, 0xc2, + 0x3c, 0x05, 0x19, 0xfa, 0x54, 0x61, 0x06, 0x4b, 0x6c, 0x50, 0x0d, 0x3e, + 0xe9, 0xad, 0xec, 0xa0, 0xc9, 0x51, 0xbc, 0x0f, 0x99, 0x98, 0xf0, 0x2b, + 0x02, 0x1d, 0x7a, 0x13, 0x75, 0xb2, 0x47, 0x3b, 0x09, 0xc7, 0x3d, 0x3f, + 0x2a, 0x00, 0xdf, 0xfd, 0xc0, 0x5d, 0xb8, 0x07, 0xf2, 0xa7, 0x2c, 0x90, + 0x7d, 0xdd, 0x83, 0x18, 0xf6, 0xa1, 0x20, 0xb7, 0xb9, 0x80, 0x34, 0x71, + 0xaf, 0xaf, 0xcb, 0xdc, 0x7b, 0x54, 0xbe, 0x5c, 0x36, 0x56, 0xe5, 0x9e, + 0x20, 0x49, 0xe5, 0x43, 0x76, 0xa0, 0x08, 0xb0, 0x8c, 0x72, 0x10, 0x1c, + 0x7b, 0x52, 0x8f, 0x23, 0x07, 0x74, 0x6b, 0x9f, 0xa0, 0xae, 0x76, 0xf3, + 0xc4, 0x28, 0xb3, 0xed, 0x57, 0x38, 0x07, 0xf8, 0x78, 0x15, 0xa9, 0xa6, + 0xdd, 0x5b, 0x5e, 0x0c, 0xb2, 0xab, 0x8e, 0xe7, 0xb8, 0xa0, 0x0b, 0x26, + 0x3b, 0x62, 0xf9, 0x2b, 0xd7, 0xf2, 0xa4, 0x6b, 0x7b, 0x7e, 0xa1, 0x72, + 0x3d, 0xaa, 0x64, 0xd3, 0xe2, 0x69, 0xba, 0x10, 0x3b, 0x8e, 0x83, 0x15, + 0x52, 0xfa, 0xee, 0xca, 0xc0, 0x9d, 0x87, 0xf1, 0x66, 0x3f, 0xa0, 0xa0, + 0x62, 0xa5, 0x9c, 0x4d, 0x8c, 0x13, 0x9a, 0x49, 0x2c, 0x14, 0x10, 0x01, + 0xce, 0x7d, 0x7b, 0x53, 0x2d, 0x2f, 0x63, 0xbc, 0x41, 0xb5, 0xf0, 0x7d, + 0x57, 0xb7, 0xe1, 0x52, 0xc9, 0x1d, 0xc4, 0x6f, 0xb5, 0x0a, 0xb8, 0x23, + 0x39, 0xc5, 0x00, 0x56, 0x7d, 0x35, 0xc7, 0xdc, 0x20, 0x9f, 0x6e, 0x2a, + 0x23, 0x0d, 0xe2, 0x2b, 0x2e, 0xe7, 0xda, 0x78, 0x23, 0x35, 0xa5, 0x99, + 0xe2, 0x50, 0xd2, 0x14, 0x55, 0xf5, 0x2d, 0x4a, 0xb7, 0x08, 0x7e, 0x65, + 0x6d, 0xe7, 0xbd, 0x00, 0x61, 0x7d, 0x89, 0x43, 0x2b, 0x9e, 0xa1, 0x83, + 0x72, 0x31, 0x5b, 0x91, 0x6b, 0x6b, 0x80, 0x25, 0x80, 0x8c, 0x71, 0x95, + 0x39, 0xa6, 0xef, 0x82, 0x57, 0x52, 0xd8, 0xe3, 0xb1, 0xe2, 0xa4, 0x68, + 0x2d, 0x5c, 0x13, 0xb7, 0x1f, 0x4a, 0x35, 0x11, 0x72, 0x2d, 0x46, 0xce, + 0x51, 0x81, 0x28, 0x0c, 0x4f, 0x46, 0xe2, 0xa4, 0x40, 0x1a, 0x46, 0x2a, + 0x07, 0x4e, 0xa0, 0xf5, 0xac, 0x76, 0xd3, 0x52, 0x4c, 0x98, 0xdf, 0xf3, + 0xaa, 0xe2, 0xd2, 0xf2, 0xd8, 0x96, 0x86, 0x47, 0x00, 0x7a, 0x1e, 0x28, + 0xb8, 0x58, 0xa9, 0xac, 0xc0, 0xed, 0x7d, 0x21, 0x04, 0x11, 0xb3, 0x25, + 0x48, 0xad, 0xe8, 0x2d, 0x53, 0xec, 0xb1, 0x6d, 0x55, 0x07, 0x68, 0xe7, + 0x15, 0x87, 0x39, 0x9d, 0xe4, 0x66, 0x9b, 0x97, 0x2b, 0xb7, 0xd2, 0xb6, + 0x6d, 0xb5, 0x3b, 0x6f, 0x2e, 0x38, 0xdd, 0x8a, 0x38, 0x18, 0xf9, 0xba, + 0x50, 0x04, 0x7a, 0x8f, 0x9d, 0x06, 0x9f, 0x3b, 0xf0, 0x55, 0x47, 0xdd, + 0x3c, 0xd6, 0x26, 0x8d, 0x72, 0xf7, 0x4a, 0x59, 0xa4, 0xdb, 0xb6, 0xba, + 0x2d, 0x58, 0x89, 0x34, 0x7b, 0x92, 0xac, 0x18, 0x6c, 0x27, 0x22, 0xb1, + 0xbc, 0x2b, 0x12, 0xb6, 0x9f, 0x36, 0xe5, 0x07, 0x9a, 0x2c, 0x33, 0x43, + 0xcc, 0xdb, 0xcb, 0x7c, 0xbf, 0x41, 0xc7, 0xe5, 0x55, 0x64, 0x5b, 0x79, + 0xc9, 0xc6, 0x15, 0xb3, 0xf7, 0x87, 0x43, 0x57, 0x3c, 0xa9, 0x50, 0xa8, + 0x40, 0x1b, 0xd3, 0x3d, 0x2b, 0x06, 0x39, 0x9e, 0x6d, 0x46, 0x68, 0x73, + 0xb3, 0x63, 0x1c, 0xfa, 0x52, 0x01, 0xd7, 0x82, 0x58, 0xdd, 0x55, 0xce, + 0x70, 0x38, 0x3e, 0xd4, 0x0e, 0x40, 0x34, 0xb7, 0xa4, 0xc6, 0x57, 0x77, + 0x03, 0x1d, 0x4d, 0x35, 0x1c, 0x32, 0x82, 0x30, 0x7d, 0xc5, 0x4b, 0x2d, + 0x0f, 0x03, 0x27, 0xad, 0x4c, 0xa7, 0x9a, 0x8f, 0x07, 0x8c, 0x53, 0xd7, + 0x9e, 0x0f, 0x6a, 0x00, 0x90, 0x1c, 0x9c, 0x53, 0xb3, 0xc7, 0x7a, 0x60, + 0xc6, 0x47, 0x6a, 0x70, 0xe7, 0xde, 0x80, 0x15, 0x49, 0x0d, 0xc5, 0x5c, + 0x94, 0x9f, 0xf8, 0x46, 0xae, 0xb0, 0x39, 0x0c, 0x3f, 0x9d, 0x53, 0x03, + 0xa9, 0xc5, 0x69, 0xdb, 0xc1, 0xf6, 0x9d, 0x1e, 0xe6, 0x12, 0x71, 0xb8, + 0x8a, 0xa5, 0xb8, 0xa5, 0xb1, 0xc9, 0xdc, 0x09, 0xda, 0x6f, 0x99, 0x94, + 0x1d, 0x83, 0xa0, 0xa6, 0x44, 0x8e, 0x67, 0x88, 0x19, 0x58, 0x7b, 0x8e, + 0xd5, 0xd3, 0x26, 0x8b, 0x1b, 0xa9, 0x91, 0xb7, 0x13, 0xc0, 0xa7, 0x36, + 0x8f, 0x6f, 0x1f, 0x96, 0xca, 0xa3, 0x77, 0xb9, 0xe9, 0x54, 0x66, 0x3a, + 0xf0, 0x11, 0x69, 0x68, 0xbf, 0xf4, 0xcc, 0x55, 0x55, 0xcf, 0xa5, 0x5c, + 0xd4, 0xe5, 0x86, 0x33, 0x0c, 0x6a, 0xe0, 0xed, 0x4c, 0x70, 0x6a, 0x9a, + 0xb9, 0x38, 0xe3, 0x19, 0xa8, 0x7b, 0x9a, 0x47, 0x61, 0x31, 0x8e, 0x46, + 0x46, 0x69, 0x48, 0xf9, 0x7f, 0xae, 0x69, 0x09, 0x20, 0xe6, 0x93, 0x93, + 0xd2, 0x90, 0xc8, 0x06, 0xe2, 0x3a, 0x52, 0x16, 0x70, 0x78, 0xaa, 0xde, + 0x61, 0xf3, 0x44, 0x5f, 0x68, 0x90, 0xb7, 0x73, 0x8e, 0x2a, 0xd4, 0x90, + 0x48, 0x88, 0xbb, 0x24, 0x69, 0x09, 0xee, 0x30, 0x31, 0x45, 0x83, 0x98, + 0x72, 0x3b, 0x0e, 0x4d, 0x3c, 0xb7, 0xc9, 0xc8, 0xaa, 0xd3, 0x83, 0x6e, + 0xbb, 0xa4, 0xba, 0x03, 0xdb, 0x19, 0x35, 0x6a, 0xd6, 0xca, 0xe2, 0xee, + 0x2d, 0xf0, 0x5c, 0xc4, 0xe3, 0xd0, 0xaf, 0x22, 0x8b, 0x30, 0xba, 0x1a, + 0x1c, 0x91, 0x8e, 0x28, 0x62, 0xdb, 0x7b, 0x54, 0x8f, 0x63, 0x7b, 0x10, + 0x25, 0x92, 0x36, 0x1e, 0xa0, 0xe2, 0xa2, 0x10, 0xdc, 0x4a, 0x9f, 0x24, + 0x6a, 0xf8, 0xeb, 0xb1, 0xc1, 0x34, 0x59, 0x85, 0xd1, 0x56, 0x3d, 0x72, + 0xe7, 0x4f, 0x99, 0x82, 0xc2, 0xae, 0x08, 0xc1, 0x26, 0xaf, 0x2f, 0x88, + 0xe3, 0x95, 0x02, 0x4b, 0x68, 0xca, 0x0f, 0x39, 0x56, 0xaa, 0x17, 0x68, + 0xb0, 0xc4, 0xcb, 0x70, 0x86, 0x37, 0x6f, 0xbb, 0xb8, 0x55, 0x18, 0x53, + 0xfd, 0x26, 0x27, 0xde, 0xac, 0x80, 0xf2, 0x33, 0x4d, 0x36, 0x4b, 0xb1, + 0xd4, 0xc5, 0xac, 0x69, 0x6e, 0xe8, 0x5a, 0x4f, 0x2f, 0x18, 0xfb, 0xeb, + 0x54, 0xb5, 0x0b, 0x98, 0x6e, 0x6f, 0xa5, 0x78, 0x5d, 0x5d, 0x49, 0x18, + 0x20, 0xd6, 0x55, 0xc4, 0x62, 0xe6, 0xe9, 0xca, 0xa6, 0xd5, 0x3c, 0x62, + 0x99, 0x05, 0xb8, 0xb5, 0x9d, 0xd4, 0x1c, 0xe2, 0x86, 0xc7, 0x15, 0xa9, + 0x74, 0xa8, 0xcf, 0x4a, 0x69, 0xe3, 0xa5, 0x1e, 0x66, 0x70, 0x30, 0x28, + 0x24, 0x1e, 0x6a, 0x4b, 0x19, 0xce, 0x73, 0x8f, 0xc6, 0xa2, 0x71, 0x97, + 0xfc, 0x6a, 0x52, 0x7d, 0x29, 0xa0, 0x65, 0xe9, 0x01, 0x7e, 0xd4, 0x01, + 0xa5, 0x5e, 0x0c, 0xf2, 0x46, 0x3f, 0x4a, 0xc4, 0xb7, 0xd1, 0xa5, 0x99, + 0xb7, 0x3f, 0x03, 0xae, 0x2a, 0xe8, 0xd6, 0xa2, 0xb3, 0x8e, 0x48, 0x16, + 0x23, 0x23, 0xb1, 0xfa, 0x01, 0x54, 0x2e, 0x35, 0x1b, 0x89, 0xd4, 0xe6, + 0x5f, 0x2c, 0x1f, 0xe0, 0x4a, 0xb5, 0xb1, 0x9b, 0xdc, 0xda, 0xb8, 0xf2, + 0xd1, 0xe3, 0x8d, 0x5c, 0x12, 0xa8, 0x17, 0x00, 0xfb, 0x54, 0x25, 0x46, + 0x49, 0xef, 0x59, 0xd6, 0x11, 0x98, 0xe4, 0x0c, 0xe4, 0x92, 0x46, 0x79, + 0xab, 0xef, 0x2a, 0x6e, 0xc0, 0x25, 0x89, 0xec, 0xa3, 0x35, 0x2f, 0x72, + 0x93, 0xd0, 0x42, 0x3a, 0x82, 0x68, 0xef, 0x81, 0x4f, 0x68, 0xa5, 0x58, + 0xfc, 0xc7, 0x4f, 0x2d, 0x3f, 0xbc, 0xe7, 0x1f, 0xa5, 0x5b, 0xb5, 0xd3, + 0x45, 0xe2, 0x09, 0x22, 0xbb, 0x56, 0x5e, 0xfb, 0x06, 0x31, 0x47, 0x2b, + 0x61, 0xcc, 0x8a, 0x7c, 0x81, 0xcf, 0x4f, 0x53, 0x48, 0x48, 0xec, 0xd9, + 0xff, 0x00, 0x74, 0x66, 0xae, 0xdf, 0x59, 0xc1, 0x67, 0x13, 0x14, 0x1b, + 0xe4, 0x03, 0x3b, 0x9c, 0xe4, 0x0a, 0x87, 0x41, 0xd6, 0x52, 0x59, 0x3e, + 0xcf, 0x38, 0x46, 0xf4, 0x38, 0xc1, 0xa7, 0xca, 0x2e, 0x71, 0xb1, 0x24, + 0xae, 0xc3, 0x64, 0x32, 0x36, 0x7a, 0x67, 0x81, 0x41, 0x12, 0xf9, 0xe2, + 0x10, 0xf0, 0x09, 0x0f, 0xf0, 0x96, 0xad, 0xdd, 0x44, 0xf9, 0x70, 0x11, + 0x17, 0xca, 0x31, 0xf3, 0x37, 0xa0, 0xae, 0x06, 0x7b, 0xec, 0x5e, 0x79, + 0x91, 0x28, 0xc0, 0x3d, 0xfb, 0xd5, 0x72, 0xa1, 0x73, 0x33, 0xa5, 0x16, + 0xf7, 0x2b, 0x28, 0x8e, 0x56, 0x11, 0xb1, 0x19, 0x1b, 0x57, 0x35, 0x2d, + 0xdd, 0xa4, 0x36, 0x50, 0x07, 0x92, 0x69, 0x65, 0x72, 0x33, 0xb0, 0x1c, + 0x55, 0x8d, 0x22, 0x6f, 0xb7, 0x58, 0x47, 0x29, 0x7e, 0x87, 0x03, 0x3d, + 0x7e, 0x95, 0x93, 0xe2, 0x8b, 0x86, 0x80, 0xa5, 0xba, 0x9f, 0x99, 0xc6, + 0xe6, 0x3e, 0xde, 0x94, 0x58, 0x4d, 0x8b, 0x6b, 0x3c, 0x17, 0xb6, 0xcf, + 0x1a, 0x29, 0x86, 0x63, 0xc2, 0xc9, 0xb8, 0x91, 0x50, 0x5b, 0x69, 0x2e, + 0x6f, 0x96, 0x3b, 0xac, 0xe3, 0x76, 0x18, 0xe6, 0xb0, 0xad, 0x66, 0x78, + 0x67, 0x56, 0x52, 0x7a, 0xf2, 0x3d, 0x6b, 0xbe, 0x48, 0xa1, 0x3e, 0x5c, + 0x81, 0xc7, 0x9a, 0x23, 0x23, 0x9f, 0xd2, 0x80, 0x39, 0x7b, 0x89, 0xe0, + 0xb1, 0x91, 0xe3, 0x80, 0x89, 0x24, 0x53, 0x82, 0xec, 0x32, 0x07, 0xd2, + 0xb4, 0x74, 0x2d, 0x62, 0x23, 0x37, 0xfa, 0x44, 0x51, 0xee, 0x7f, 0x94, + 0xba, 0x80, 0x0f, 0xe5, 0x5c, 0xcd, 0xe2, 0x94, 0xbb, 0x95, 0x49, 0xc9, + 0x0c, 0x41, 0x3e, 0xb4, 0xb6, 0x25, 0xbe, 0xdb, 0x08, 0x4e, 0x49, 0x70, + 0x31, 0x4c, 0x47, 0xa7, 0x4d, 0x6d, 0x6f, 0xb3, 0xcc, 0x0a, 0xbb, 0x00, + 0xce, 0x71, 0x5c, 0xc6, 0xb3, 0xa9, 0x18, 0x10, 0xaa, 0x30, 0x8b, 0x3d, + 0x14, 0x0e, 0x4d, 0x6f, 0xac, 0xae, 0xb6, 0xeb, 0x1c, 0x83, 0xa0, 0xed, + 0x5e, 0x77, 0xa8, 0xdc, 0x35, 0xd5, 0xfc, 0xd2, 0x37, 0xf7, 0x88, 0x03, + 0xd0, 0x50, 0x07, 0x4f, 0xa2, 0xea, 0x09, 0x36, 0xd1, 0x2e, 0x25, 0x00, + 0x72, 0x71, 0xca, 0xd7, 0x4d, 0xf6, 0x6b, 0x71, 0x19, 0x93, 0x09, 0xb3, + 0x19, 0xce, 0x2b, 0xcc, 0xf4, 0xbb, 0x87, 0x82, 0xfd, 0x02, 0x93, 0x87, + 0xf9, 0x48, 0xfa, 0xd7, 0x7a, 0x97, 0x8a, 0x2d, 0xfc, 0xa3, 0xbb, 0x0a, + 0x39, 0xf9, 0x4d, 0x00, 0x64, 0xea, 0xba, 0xa2, 0xda, 0x9d, 0xb1, 0x45, + 0x12, 0x86, 0xe9, 0xb9, 0x41, 0x26, 0xa6, 0xd3, 0x2e, 0x2c, 0xee, 0xd5, + 0x45, 0xd5, 0xbc, 0x59, 0x6e, 0x03, 0xa8, 0xe3, 0x3e, 0xf5, 0xc7, 0xde, + 0xdc, 0x3d, 0xcd, 0xd4, 0x92, 0x39, 0xea, 0x4e, 0x07, 0xa0, 0xab, 0xfa, + 0x0c, 0xc7, 0xed, 0x7e, 0x43, 0xb6, 0x11, 0xfd, 0x7d, 0x69, 0x01, 0xd9, + 0x4d, 0xa0, 0xdb, 0x3b, 0xe4, 0x2f, 0x96, 0xa3, 0xba, 0x9e, 0xb5, 0x89, + 0x79, 0xf6, 0x4b, 0x3b, 0x85, 0x89, 0x1e, 0x67, 0xc9, 0xe4, 0x83, 0x5d, + 0x05, 0xe5, 0xde, 0x34, 0xd9, 0x1c, 0xba, 0x9f, 0x2d, 0x33, 0xc1, 0xeb, + 0x81, 0x5e, 0x71, 0x35, 0xdc, 0xd3, 0x5c, 0x19, 0x99, 0x8e, 0xec, 0xe4, + 0x7b, 0x53, 0x60, 0x76, 0x89, 0xa5, 0x9b, 0x88, 0x56, 0x4b, 0x5b, 0x8d, + 0xcb, 0xdc, 0x30, 0xe4, 0x54, 0x7f, 0xd9, 0x77, 0x84, 0x60, 0x2c, 0x6c, + 0x7d, 0x8e, 0x29, 0x3c, 0x35, 0x2c, 0x93, 0x8f, 0x3c, 0x37, 0xfb, 0x2e, + 0x3d, 0x7d, 0xea, 0xdf, 0x88, 0xf5, 0x46, 0xb0, 0xb5, 0x40, 0x80, 0x7c, + 0xfc, 0x1c, 0x70, 0x4d, 0x2b, 0x21, 0xdd, 0x99, 0xc6, 0xd6, 0x61, 0x9f, + 0xdd, 0xb1, 0xc1, 0xe7, 0x61, 0xdd, 0x8f, 0xca, 0x90, 0x7c, 0xa7, 0xe6, + 0xe3, 0xd9, 0x86, 0x2b, 0x33, 0x4a, 0xd4, 0xa4, 0x5b, 0x9c, 0xa3, 0x95, + 0x62, 0x73, 0x8c, 0xf0, 0x7d, 0xab, 0xb6, 0x8c, 0xc1, 0x7f, 0x6c, 0x1d, + 0xd0, 0x6c, 0x23, 0xe6, 0x04, 0x74, 0x34, 0xb9, 0x53, 0x2b, 0x99, 0x9c, + 0xec, 0x80, 0x13, 0x90, 0x33, 0xf4, 0xa4, 0x92, 0x33, 0x34, 0x0d, 0xb7, + 0x82, 0x3a, 0x1a, 0x75, 0xe5, 0xdd, 0x94, 0x77, 0xeb, 0x6f, 0x04, 0x3c, + 0x67, 0x05, 0x83, 0x73, 0x5a, 0x89, 0xa6, 0x6e, 0x87, 0xcc, 0x86, 0x6d, + 0xc8, 0xc3, 0x38, 0x61, 0x4b, 0x94, 0x7c, 0xc7, 0x37, 0x0e, 0xa5, 0xa9, + 0xe9, 0xcf, 0xb5, 0x27, 0x25, 0x41, 0xc6, 0xd6, 0xe4, 0x56, 0xc2, 0xf8, + 0x93, 0xcb, 0xc2, 0x5f, 0xda, 0x6d, 0xdc, 0x33, 0xb9, 0x3f, 0xc2, 0xb3, + 0xa7, 0x8b, 0xcd, 0x43, 0x2f, 0x96, 0xe9, 0xcf, 0x1b, 0x87, 0x07, 0xe9, + 0x50, 0x5e, 0x17, 0xd4, 0x6e, 0x41, 0x0e, 0xa4, 0x2a, 0x81, 0xf2, 0xf5, + 0x35, 0x4a, 0xe8, 0x96, 0x91, 0xbf, 0x7d, 0xab, 0x59, 0x5f, 0xac, 0x42, + 0xd6, 0x40, 0x70, 0xb8, 0x2a, 0x78, 0x35, 0x45, 0x72, 0x0d, 0x51, 0x82, + 0xc1, 0x21, 0x91, 0x1c, 0x0c, 0x31, 0xce, 0x45, 0x5d, 0xce, 0x08, 0xf4, + 0xac, 0xe4, 0xee, 0xcd, 0x23, 0xa2, 0x25, 0x63, 0x9c, 0x0a, 0x46, 0xce, + 0x71, 0x4d, 0x76, 0x04, 0xaf, 0x6a, 0x46, 0x90, 0x86, 0x23, 0xad, 0x21, + 0x92, 0xa0, 0x05, 0xb0, 0x78, 0xab, 0xb6, 0x31, 0x3c, 0xa9, 0x28, 0x8d, + 0x5c, 0xb2, 0x9c, 0xfc, 0x8a, 0x49, 0x03, 0xf0, 0xac, 0xf8, 0xdb, 0x2d, + 0xc5, 0x74, 0xbe, 0x16, 0xf1, 0x0d, 0xb7, 0x86, 0x1a, 0xe2, 0xfa, 0xe6, + 0x17, 0x9b, 0x70, 0xd8, 0x88, 0xb8, 0xeb, 0x55, 0x0d, 0xc9, 0x9e, 0xc6, + 0x7b, 0x5f, 0xdd, 0x5f, 0x9f, 0xb3, 0xb3, 0x97, 0x68, 0x17, 0x00, 0x92, + 0x41, 0x02, 0x99, 0x1d, 0xba, 0xde, 0x33, 0xc8, 0x18, 0x86, 0x42, 0x32, + 0x0f, 0x24, 0xfe, 0x75, 0xa9, 0x75, 0xe2, 0x38, 0x3c, 0x43, 0xa8, 0xc9, + 0x75, 0x0e, 0x97, 0x1d, 0xa6, 0xd4, 0x21, 0x9d, 0x7a, 0xbf, 0xd6, 0xa0, + 0xb6, 0xda, 0x19, 0xca, 0x7d, 0xd2, 0x14, 0xe7, 0xd6, 0xb4, 0x32, 0x1c, + 0x96, 0xa5, 0x30, 0x24, 0x9c, 0x2e, 0xee, 0x8b, 0x44, 0x96, 0x68, 0x89, + 0x26, 0x42, 0x96, 0xc0, 0xc1, 0x6a, 0xb6, 0xd1, 0x43, 0x34, 0xab, 0x2b, + 0x6e, 0x2c, 0xbd, 0x05, 0x41, 0x7a, 0xa5, 0x95, 0x8b, 0x60, 0x67, 0x18, + 0x04, 0xd3, 0x11, 0x5a, 0x08, 0xbc, 0xbb, 0x4b, 0x88, 0x99, 0x95, 0xc8, + 0x61, 0x8e, 0x2b, 0x3e, 0x53, 0x6a, 0xd2, 0x61, 0x94, 0x23, 0x67, 0xb8, + 0xc5, 0x6a, 0xe6, 0x35, 0x8a, 0x52, 0x64, 0x8c, 0x12, 0x46, 0x06, 0x6b, + 0x9f, 0xd6, 0x73, 0x3a, 0xaf, 0x94, 0x40, 0x91, 0x4f, 0xde, 0x1e, 0x9e, + 0x95, 0x2d, 0x5c, 0xa8, 0xbb, 0x33, 0x67, 0x4d, 0x8e, 0x28, 0x1a, 0x47, + 0x55, 0xc8, 0x29, 0x83, 0x8a, 0x9b, 0xcf, 0x68, 0xe2, 0xda, 0x92, 0xed, + 0x50, 0x3a, 0x57, 0x3d, 0xa6, 0x49, 0x70, 0x50, 0xc2, 0xcb, 0xf3, 0xe3, + 0x3c, 0x1e, 0x31, 0x5b, 0x83, 0x4e, 0xca, 0xe1, 0x9d, 0x88, 0xc7, 0xad, + 0x0b, 0x60, 0x93, 0x4d, 0x93, 0x99, 0xcf, 0xd8, 0x87, 0x96, 0x54, 0x9c, + 0x1c, 0x1c, 0xf3, 0x58, 0x1a, 0xa4, 0x51, 0xe9, 0xb0, 0x2c, 0xcf, 0x09, + 0x9e, 0x47, 0x3c, 0x93, 0xda, 0xa5, 0xbb, 0x17, 0x11, 0x20, 0xd9, 0xf7, + 0x57, 0x20, 0x63, 0xaf, 0x07, 0x15, 0x50, 0xde, 0x5e, 0x3a, 0x6d, 0x70, + 0xc4, 0x0f, 0x5a, 0x6d, 0x88, 0xbb, 0x67, 0x6e, 0x16, 0x38, 0x6f, 0x21, + 0x56, 0x85, 0x9b, 0x96, 0x4f, 0x6a, 0xda, 0xb9, 0x91, 0x0f, 0x90, 0x59, + 0xd4, 0x63, 0x24, 0x60, 0xf3, 0x5c, 0xcf, 0xda, 0x2e, 0xe4, 0x2a, 0x30, + 0xdb, 0x73, 0x81, 0x83, 0x5a, 0x69, 0x0c, 0x8e, 0x21, 0xf3, 0x08, 0xe4, + 0x1f, 0xe7, 0x42, 0x03, 0x4e, 0x3b, 0xa2, 0xb3, 0x00, 0xb2, 0xe7, 0x3d, + 0x72, 0x78, 0x35, 0xd8, 0xf8, 0x2b, 0x57, 0xbb, 0xb1, 0xba, 0x9c, 0x5e, + 0x5c, 0x20, 0xb2, 0x71, 0xfb, 0xa5, 0x07, 0x38, 0x39, 0xae, 0x1a, 0x5b, + 0x56, 0x00, 0x05, 0x61, 0xbb, 0x23, 0x06, 0xb4, 0x60, 0xb8, 0x30, 0x5b, + 0x2c, 0x6c, 0x79, 0x03, 0x92, 0x29, 0x88, 0xec, 0x75, 0x5f, 0x8a, 0x71, + 0xe8, 0xf7, 0xaf, 0x6b, 0x3d, 0x93, 0x31, 0x1c, 0xa3, 0xc6, 0xe0, 0x86, + 0x1e, 0xbe, 0xd5, 0xd0, 0x68, 0xfe, 0x37, 0xd3, 0xb5, 0x71, 0x6e, 0xb0, + 0x4e, 0xa6, 0x49, 0x78, 0xd9, 0x9e, 0x41, 0xaf, 0x14, 0xf1, 0x0c, 0x11, + 0xdc, 0x5b, 0x99, 0xb3, 0x89, 0x13, 0xb8, 0xee, 0x2a, 0xe7, 0xc3, 0x3b, + 0xb9, 0x07, 0x88, 0xed, 0xe0, 0x12, 0x20, 0x4c, 0x93, 0xf3, 0x2f, 0x27, + 0xe8, 0x69, 0xa6, 0x2b, 0x1f, 0x44, 0x09, 0x38, 0xa4, 0x69, 0x42, 0x29, + 0x66, 0x20, 0x00, 0x32, 0x49, 0xa8, 0x43, 0x57, 0x9d, 0xfc, 0x40, 0xf1, + 0x6b, 0xc6, 0xad, 0xa3, 0xe9, 0xcf, 0xfb, 0xd3, 0xfe, 0xb9, 0xc1, 0xfb, + 0xa3, 0xd2, 0x9b, 0x60, 0x91, 0x95, 0xe3, 0xcf, 0x17, 0x49, 0xac, 0xdc, + 0xb6, 0x95, 0x61, 0x21, 0x16, 0xa8, 0x7f, 0x78, 0xe3, 0xf8, 0xab, 0x88, + 0x9d, 0x3c, 0x80, 0xb0, 0xa2, 0x6e, 0xca, 0xe7, 0x00, 0xf2, 0x3d, 0xcd, + 0x3e, 0x20, 0x63, 0x2a, 0xa8, 0x41, 0x6c, 0x9d, 0xd9, 0xfe, 0x75, 0x3b, + 0xc2, 0xb1, 0x12, 0xcd, 0xd8, 0x10, 0x58, 0xd4, 0x14, 0x23, 0x28, 0x86, + 0xe6, 0x0f, 0x5d, 0xd9, 0xe4, 0xf5, 0xe2, 0xa1, 0xb9, 0x98, 0xc9, 0x76, + 0xa6, 0x16, 0x3b, 0x90, 0x63, 0x23, 0xa5, 0x24, 0xcf, 0xf6, 0xb9, 0x54, + 0x2a, 0x9d, 0xa0, 0xf5, 0xef, 0x48, 0x5e, 0x3b, 0x64, 0x2d, 0x80, 0x42, + 0xf5, 0xf6, 0xfa, 0xd0, 0x02, 0xa4, 0x28, 0x8b, 0xe6, 0x4a, 0xd8, 0x3d, + 0x4b, 0x1e, 0xf5, 0x1b, 0x5d, 0x84, 0xb9, 0x8a, 0x07, 0x53, 0xb6, 0x4e, + 0x46, 0x07, 0x2d, 0x54, 0x6e, 0xae, 0x5a, 0x54, 0x9d, 0x23, 0xc4, 0x8b, + 0x80, 0x03, 0x1e, 0xd5, 0x1d, 0xaa, 0x85, 0xbd, 0xd3, 0xdc, 0x92, 0xc4, + 0x8e, 0xb9, 0xf6, 0xa0, 0x65, 0x9b, 0xb8, 0x9b, 0xfb, 0x66, 0xd7, 0x2b, + 0xe5, 0x2b, 0x36, 0x30, 0x0d, 0x74, 0x36, 0xe8, 0x23, 0x9d, 0xbd, 0x31, + 0xc6, 0x6b, 0x23, 0x51, 0x65, 0x4d, 0x46, 0xda, 0x46, 0xe4, 0x29, 0x24, + 0xfe, 0x55, 0x1c, 0xd7, 0xf7, 0x12, 0xcc, 0xdf, 0x66, 0x52, 0x8a, 0x7b, + 0xf7, 0xc5, 0x02, 0x34, 0xe6, 0x91, 0x2d, 0xda, 0x49, 0x64, 0x70, 0xa4, + 0xf6, 0x27, 0xad, 0x73, 0xd0, 0xcd, 0x2c, 0x57, 0xf2, 0xcf, 0x0f, 0x57, + 0x3c, 0x64, 0x55, 0xc5, 0xb6, 0x66, 0x20, 0xcc, 0x4b, 0x64, 0x67, 0x71, + 0x34, 0x1f, 0x25, 0x9f, 0xcb, 0x0b, 0xb9, 0x87, 0x38, 0x5e, 0x68, 0x18, + 0x34, 0x37, 0x37, 0x0d, 0x99, 0xa4, 0x24, 0x9e, 0x99, 0x34, 0xb0, 0x5b, + 0x2f, 0x98, 0xcb, 0x37, 0xf0, 0x9e, 0x30, 0x7a, 0xd5, 0xa8, 0xb6, 0xde, + 0x4a, 0x51, 0x25, 0x0b, 0x22, 0x8e, 0x41, 0x15, 0x14, 0xb1, 0x2d, 0xbc, + 0x6f, 0x2c, 0xac, 0x58, 0x8e, 0x84, 0xf4, 0x14, 0x80, 0xb2, 0xac, 0x22, + 0x5f, 0x96, 0x2c, 0x0f, 0x61, 0x9a, 0x60, 0x32, 0xc8, 0xe7, 0x68, 0xdb, + 0x8e, 0xec, 0x71, 0x8a, 0xe7, 0xed, 0x3c, 0x4c, 0x6d, 0xf5, 0x11, 0x1b, + 0xae, 0x62, 0x66, 0xc1, 0x3e, 0x95, 0xd3, 0xdf, 0x11, 0x0d, 0xb3, 0xc8, + 0x33, 0x82, 0x37, 0x53, 0x11, 0x9b, 0x2e, 0xa5, 0x0c, 0x13, 0x08, 0xe6, + 0x65, 0x00, 0xf5, 0x3d, 0x2a, 0xeb, 0xda, 0x43, 0x71, 0x12, 0x49, 0x16, + 0xe7, 0x53, 0xef, 0x9a, 0xf3, 0xad, 0x42, 0xe5, 0xe7, 0xb9, 0x72, 0xcd, + 0xde, 0xba, 0xaf, 0x0b, 0x6a, 0x9f, 0x67, 0xd3, 0x5d, 0x27, 0x24, 0xa8, + 0x6f, 0x93, 0x9a, 0x00, 0xd0, 0xd5, 0xaf, 0x56, 0xc6, 0xd0, 0x20, 0x00, + 0x00, 0x31, 0x8f, 0x53, 0x5c, 0xb5, 0xaf, 0x88, 0xe7, 0xb7, 0xba, 0xdc, + 0x46, 0xe8, 0x89, 0xe4, 0x7f, 0x85, 0x4f, 0xe2, 0x6b, 0xe1, 0x75, 0x22, + 0x88, 0xc1, 0x0a, 0x3d, 0xeb, 0x9d, 0x00, 0xe7, 0xa5, 0x16, 0x0b, 0x9e, + 0xaf, 0x1b, 0xc5, 0x75, 0x6b, 0x1d, 0xd0, 0xc9, 0x0c, 0xb9, 0x1e, 0xf5, + 0xc7, 0xf8, 0x93, 0x51, 0x91, 0x25, 0x30, 0x2b, 0x72, 0x79, 0x6a, 0xb5, + 0xa7, 0x5f, 0x4f, 0xfd, 0x9f, 0x6f, 0x1c, 0x61, 0xfc, 0xb3, 0xf2, 0x81, + 0xbb, 0x80, 0x6b, 0x9e, 0xd5, 0xc9, 0x96, 0xf5, 0x99, 0xb2, 0x1b, 0xa1, + 0xcd, 0x00, 0xca, 0x71, 0xdc, 0x4b, 0x14, 0xa2, 0x44, 0x72, 0x1c, 0x1c, + 0xe4, 0x1a, 0xf4, 0xad, 0x1b, 0x53, 0x49, 0xf4, 0xa8, 0xa6, 0x99, 0xd5, + 0x65, 0x23, 0xe6, 0x07, 0xd6, 0xbc, 0xcb, 0x6f, 0xbd, 0x75, 0x3a, 0x34, + 0x13, 0x5c, 0xe9, 0xe8, 0xcb, 0x29, 0x5c, 0x3e, 0xde, 0x3d, 0x28, 0x60, + 0x86, 0x78, 0xb2, 0xff, 0x00, 0x74, 0xc9, 0x04, 0x4f, 0x95, 0xc6, 0x58, + 0x8e, 0xe6, 0xb9, 0x7c, 0xd6, 0xb6, 0xbd, 0x19, 0x8b, 0x51, 0x68, 0x99, + 0x8b, 0x63, 0xa1, 0x35, 0x97, 0x80, 0x4f, 0x14, 0xd0, 0x99, 0xd9, 0xf8, + 0x46, 0xff, 0x00, 0x6d, 0xac, 0x91, 0xcc, 0x49, 0x0a, 0xdf, 0x29, 0xeb, + 0x56, 0x7c, 0x4f, 0xa8, 0x86, 0xd3, 0x9b, 0xc9, 0x62, 0x09, 0xc2, 0x9c, + 0x8c, 0x71, 0x5c, 0xff, 0x00, 0x87, 0x63, 0xf3, 0x66, 0x9e, 0x2d, 0xc4, + 0x62, 0x32, 0xc3, 0x1e, 0xb5, 0x3e, 0xbb, 0x11, 0x8e, 0xda, 0x04, 0xdc, + 0x4e, 0x73, 0x9c, 0x9e, 0xb4, 0xae, 0x33, 0x9a, 0xce, 0x4f, 0x35, 0xab, + 0xa1, 0x5e, 0xb5, 0xae, 0xa5, 0x16, 0x49, 0xf2, 0xd8, 0xe1, 0xaa, 0x87, + 0x93, 0x52, 0xdb, 0x44, 0x45, 0xc2, 0x63, 0xfb, 0xc2, 0x86, 0xd0, 0x92, + 0x67, 0xa6, 0x35, 0xfd, 0xb0, 0xb7, 0x60, 0xb2, 0x83, 0xc5, 0x79, 0x9e, + 0xa1, 0x75, 0x2d, 0xd5, 0xe4, 0x8f, 0x21, 0x3f, 0x78, 0xe0, 0x7a, 0x57, + 0x67, 0x36, 0x9a, 0x22, 0x82, 0x77, 0x57, 0x6c, 0x2c, 0x25, 0x80, 0xcf, + 0x7c, 0x57, 0x0e, 0xd1, 0x92, 0xc4, 0x9c, 0xe4, 0xd1, 0x7e, 0xe3, 0x65, + 0x8d, 0x3a, 0xfa, 0x4b, 0x4b, 0x94, 0x60, 0xdf, 0x2e, 0x6b, 0xd2, 0x60, + 0x44, 0x9e, 0x08, 0xa5, 0xc7, 0x04, 0x66, 0xbc, 0xb5, 0x63, 0xc3, 0x02, + 0x7a, 0x66, 0xbb, 0x0b, 0x57, 0xba, 0x8e, 0xda, 0xdc, 0xa2, 0xe5, 0x5f, + 0x81, 0xc9, 0xe2, 0x8d, 0x01, 0x14, 0x3c, 0x45, 0xac, 0xca, 0xb7, 0xad, + 0x6f, 0x11, 0xc6, 0xde, 0xa7, 0xd3, 0xda, 0xa1, 0xd1, 0xf5, 0x77, 0x13, + 0x2c, 0x72, 0xb7, 0x04, 0xf5, 0xac, 0xdd, 0x56, 0x4f, 0x3e, 0xfe, 0x46, + 0x09, 0xb4, 0x83, 0x83, 0xee, 0x6a, 0xb4, 0x01, 0x96, 0x74, 0x23, 0xa8, + 0x34, 0x74, 0x0b, 0xea, 0x7a, 0x67, 0xd8, 0xc5, 0xd4, 0x88, 0xe4, 0x03, + 0xc7, 0x5a, 0xa3, 0xaa, 0x6a, 0xf6, 0x56, 0x12, 0x79, 0x11, 0x05, 0x0f, + 0xeb, 0xd6, 0x9d, 0x69, 0xac, 0xa2, 0xdb, 0x24, 0x65, 0x39, 0xdb, 0x80, + 0x49, 0xeb, 0x5c, 0x26, 0xa4, 0xcc, 0xfa, 0x8c, 0xce, 0xcd, 0xb8, 0x96, + 0xce, 0x45, 0x00, 0x77, 0xb6, 0x92, 0xfd, 0xb6, 0x30, 0xe8, 0xe0, 0x13, + 0x56, 0x21, 0xfb, 0x40, 0xdc, 0x15, 0x4b, 0x01, 0x5c, 0xbf, 0x85, 0x6e, + 0xcb, 0x5c, 0x79, 0x2c, 0xdc, 0x1a, 0xe8, 0xf5, 0xdd, 0x44, 0x69, 0x5a, + 0x56, 0xe8, 0xff, 0x00, 0xd6, 0x48, 0x71, 0xd6, 0x80, 0x1c, 0xc0, 0x31, + 0xfd, 0xea, 0xaf, 0x5e, 0x7d, 0x6a, 0xb5, 0xc5, 0x8c, 0x13, 0x3f, 0xc8, + 0xdb, 0x4f, 0xa5, 0x61, 0x68, 0xda, 0xb3, 0x4d, 0x73, 0xb6, 0x62, 0x0e, + 0xf3, 0xcd, 0x75, 0x4b, 0x67, 0x13, 0x86, 0x7d, 0xe6, 0x34, 0x03, 0x9f, + 0x41, 0x40, 0xcc, 0x59, 0x2c, 0xae, 0xa2, 0x47, 0x45, 0x76, 0x31, 0xb0, + 0xc1, 0x00, 0xf0, 0x69, 0x74, 0xbb, 0x95, 0xd2, 0xd6, 0x48, 0x9e, 0x26, + 0xda, 0xc7, 0x39, 0x1d, 0xaa, 0xdc, 0x77, 0x70, 0x34, 0xc5, 0x20, 0x72, + 0xf8, 0x38, 0xc9, 0xef, 0x4e, 0x94, 0x47, 0x2f, 0xcb, 0x2a, 0x00, 0xdf, + 0x4e, 0x69, 0x01, 0x66, 0xde, 0xea, 0x1b, 0x86, 0x53, 0x1b, 0x82, 0x7d, + 0x3b, 0xd6, 0x46, 0x97, 0x12, 0x3e, 0xb3, 0xa8, 0x6e, 0x50, 0x7e, 0x63, + 0x52, 0x36, 0x9c, 0x09, 0xdd, 0x04, 0x84, 0x30, 0xe8, 0x3a, 0x1a, 0xad, + 0x6e, 0xd2, 0xe9, 0x77, 0x72, 0x48, 0xf1, 0x96, 0x32, 0x7d, 0xec, 0xd0, + 0x05, 0x0d, 0x7a, 0x27, 0x8a, 0xf1, 0x10, 0x39, 0x2a, 0x57, 0xa7, 0xa5, + 0x5f, 0x58, 0xfc, 0xa8, 0xd0, 0x28, 0x1c, 0x28, 0xe2, 0x9f, 0x75, 0x25, + 0x95, 0xd4, 0xd1, 0xca, 0xf1, 0xb3, 0xb0, 0x1f, 0x74, 0x9c, 0x01, 0x4d, + 0x96, 0xe0, 0x3b, 0xee, 0x55, 0x03, 0xd8, 0x76, 0xa9, 0x6c, 0xa8, 0xa1, + 0x7b, 0x06, 0x3c, 0x52, 0xa9, 0xe3, 0x39, 0xa8, 0x1a, 0x52, 0x71, 0xc5, + 0x20, 0x72, 0x3a, 0x0c, 0x52, 0xb9, 0x56, 0x2d, 0x07, 0x19, 0xa5, 0xf3, + 0x80, 0xaa, 0x46, 0x4d, 0xbc, 0x96, 0x02, 0x9a, 0x27, 0x4d, 0xdf, 0x7b, + 0x3f, 0x4e, 0x68, 0x02, 0xd3, 0xbb, 0x20, 0x2e, 0x1f, 0x39, 0x1d, 0x2b, + 0x3c, 0x6a, 0x9a, 0x94, 0x4c, 0xc9, 0x14, 0x8c, 0xaa, 0x4f, 0x6a, 0xb9, + 0x10, 0x92, 0x5d, 0xde, 0x5d, 0xb4, 0x8f, 0xef, 0x8e, 0x2a, 0x39, 0x50, + 0xdb, 0xc3, 0x96, 0x85, 0xcb, 0x67, 0xf8, 0x79, 0xc7, 0xd6, 0x9a, 0xb8, + 0x9b, 0x45, 0x76, 0xbd, 0xbb, 0x90, 0x11, 0x25, 0xe4, 0xb9, 0xf4, 0xc9, + 0xa8, 0x0b, 0x3b, 0x8f, 0xf5, 0xae, 0x4f, 0xae, 0x4d, 0x36, 0x59, 0x9a, + 0x47, 0xe2, 0x13, 0xf4, 0xcd, 0x4d, 0x04, 0xa1, 0x24, 0x09, 0x2f, 0x96, + 0x8d, 0xd8, 0x13, 0x4f, 0x52, 0x74, 0x19, 0x0c, 0x72, 0xf9, 0xa0, 0xb3, + 0xb3, 0x73, 0xdc, 0xd6, 0xe0, 0x04, 0x20, 0x1d, 0xea, 0x68, 0x74, 0x57, + 0xb9, 0x81, 0x25, 0x13, 0x05, 0xef, 0x80, 0xb9, 0xa6, 0xde, 0x59, 0xad, + 0x8c, 0x59, 0x96, 0xf5, 0xb3, 0xd9, 0x42, 0xf3, 0x4a, 0xcc, 0x69, 0xa4, + 0x47, 0xb9, 0xfd, 0x29, 0x32, 0x70, 0x4f, 0x7a, 0xab, 0x02, 0xfd, 0xa9, + 0xc6, 0xdb, 0xa6, 0xfa, 0x1e, 0xb8, 0xa9, 0x8d, 0xa4, 0x84, 0x39, 0xf3, + 0x5d, 0x0a, 0xf4, 0xdc, 0x78, 0x34, 0x58, 0x7c, 0xc7, 0x2e, 0x2f, 0x26, + 0xf3, 0xfc, 0xed, 0xe7, 0x76, 0x73, 0x5d, 0x8e, 0x9d, 0x1a, 0xea, 0x16, + 0x91, 0xca, 0xd8, 0x19, 0xec, 0x3f, 0x5a, 0xe1, 0x78, 0xed, 0x5d, 0x66, + 0x80, 0x6e, 0x65, 0xd3, 0x88, 0x8d, 0x80, 0x08, 0xd8, 0xe9, 0x57, 0x63, + 0x34, 0xcc, 0xdd, 0x76, 0xe0, 0xa5, 0xf3, 0xdb, 0xc7, 0xc2, 0xa7, 0x5f, + 0x7a, 0xd1, 0xf0, 0xc5, 0xe3, 0xbc, 0xde, 0x5a, 0x9c, 0x3a, 0x8c, 0xfd, + 0x45, 0x73, 0xda, 0x84, 0xaf, 0x35, 0xf4, 0xcf, 0x21, 0x1b, 0xb7, 0x60, + 0xe3, 0xda, 0xa6, 0xd2, 0x6e, 0x24, 0xb6, 0xbc, 0x06, 0x20, 0x0b, 0x37, + 0x03, 0x34, 0x05, 0xce, 0xb7, 0xc4, 0xf7, 0xed, 0x05, 0x9a, 0x80, 0x79, + 0x6e, 0x00, 0x15, 0xce, 0xe8, 0xd7, 0xad, 0xf6, 0xb0, 0x9b, 0x8a, 0xbb, + 0x1e, 0x0e, 0x7b, 0xd4, 0x7a, 0x96, 0xa3, 0x2d, 0xdd, 0xbc, 0x69, 0x2a, + 0x28, 0xe7, 0x20, 0x8c, 0xd6, 0x75, 0xac, 0xa6, 0x1b, 0xa8, 0xdc, 0x76, + 0x20, 0xd0, 0x07, 0x7b, 0xab, 0x98, 0x4e, 0x9b, 0xf6, 0x9b, 0x88, 0x83, + 0xbc, 0x63, 0x21, 0x4f, 0x4c, 0xd7, 0x1c, 0xb7, 0xef, 0x2b, 0x92, 0xe1, + 0x4a, 0x13, 0xca, 0x01, 0x80, 0x3e, 0x95, 0xaf, 0xa9, 0x6a, 0xec, 0xf6, + 0x73, 0x43, 0x71, 0x13, 0x61, 0xd7, 0x0b, 0xec, 0x6b, 0x97, 0x89, 0xb0, + 0xfe, 0xd4, 0x05, 0xce, 0xf3, 0x4c, 0xd3, 0x2d, 0xe3, 0x83, 0xed, 0x0e, + 0xfe, 0x64, 0x2e, 0xbb, 0x80, 0x3d, 0x45, 0x67, 0x07, 0xb3, 0xb9, 0xbe, + 0x92, 0x38, 0x84, 0x91, 0xa8, 0xfe, 0x2d, 0xd9, 0xa9, 0x1b, 0x50, 0x85, + 0x7c, 0x3b, 0xf6, 0x68, 0xe5, 0x1b, 0xf6, 0x7d, 0xec, 0xd7, 0x3b, 0xa5, + 0x4c, 0x63, 0xbe, 0x8f, 0x9e, 0x09, 0xc1, 0xfa, 0x52, 0xb0, 0xee, 0x74, + 0xad, 0xa5, 0x4c, 0xad, 0xf2, 0x4a, 0xac, 0x3f, 0xda, 0x18, 0xaa, 0xc5, + 0x25, 0xc1, 0xda, 0x9b, 0xc2, 0x9c, 0x13, 0x19, 0xcd, 0x59, 0xd6, 0x6f, + 0x3e, 0xcf, 0xa5, 0x95, 0x85, 0xf7, 0x1c, 0x81, 0x91, 0xe9, 0x59, 0xfe, + 0x1f, 0x99, 0xa5, 0x76, 0x45, 0xea, 0x39, 0xfa, 0x8a, 0x2c, 0x87, 0xcc, + 0xc5, 0x2c, 0x57, 0xef, 0x02, 0xbf, 0x51, 0x8a, 0x74, 0x72, 0x06, 0x72, + 0x32, 0x3a, 0x54, 0xda, 0xc6, 0xa4, 0x23, 0x99, 0x6d, 0x10, 0x8f, 0xf6, + 0xc9, 0x14, 0xdf, 0xb2, 0x5b, 0x98, 0x9a, 0x5f, 0xe2, 0x03, 0xa2, 0x9e, + 0x0d, 0x4f, 0x28, 0xf9, 0x8c, 0xcb, 0x9b, 0x7c, 0xbb, 0x38, 0x23, 0x1d, + 0xe9, 0x6d, 0x2d, 0x16, 0x57, 0x55, 0x62, 0x03, 0xb1, 0xf9, 0x55, 0x8e, + 0x33, 0x5a, 0x1a, 0x44, 0xe9, 0x71, 0x74, 0xf6, 0x72, 0x2a, 0xb0, 0x1f, + 0x32, 0xf1, 0x59, 0x1a, 0xa4, 0x8f, 0xf6, 0xf9, 0x38, 0x21, 0x83, 0x61, + 0x47, 0xa5, 0x52, 0x44, 0xb6, 0x74, 0xd7, 0x5a, 0x64, 0x36, 0xe8, 0x18, + 0xe5, 0xa4, 0x0b, 0x80, 0xa4, 0xf0, 0x2a, 0xae, 0x8d, 0xa9, 0xa3, 0x4e, + 0x6d, 0x65, 0x08, 0x79, 0xf9, 0x58, 0x2e, 0x2a, 0x4b, 0xa9, 0x9a, 0x4d, + 0x2c, 0xbc, 0xbb, 0x84, 0xeb, 0x10, 0x5e, 0x7f, 0x5a, 0xe6, 0xf4, 0xd9, + 0x63, 0x8a, 0xfd, 0x64, 0x94, 0x91, 0x8e, 0x46, 0x3d, 0x69, 0x88, 0xe9, + 0x7c, 0x43, 0x2b, 0xc7, 0x01, 0x77, 0xc1, 0x53, 0xf2, 0xc6, 0x3f, 0x99, + 0xac, 0xff, 0x00, 0x0c, 0x6a, 0x0f, 0x15, 0xe3, 0x46, 0xed, 0x88, 0xc8, + 0xe4, 0x9a, 0x8f, 0x5d, 0xd4, 0x05, 0xe4, 0x10, 0xa8, 0x0d, 0x81, 0xc8, + 0xcd, 0x50, 0xd1, 0xf7, 0xbd, 0xfa, 0x42, 0x8d, 0x8f, 0x33, 0x82, 0x68, + 0x03, 0xa2, 0xf1, 0x3d, 0xd2, 0x7d, 0x85, 0x04, 0x4f, 0x93, 0x23, 0x7c, + 0xd8, 0xae, 0x6b, 0x4b, 0x3b, 0x75, 0x08, 0x58, 0xb8, 0x50, 0x1b, 0x24, + 0x9a, 0xd2, 0xd7, 0xad, 0x9e, 0x08, 0xa2, 0x25, 0xc9, 0x1d, 0xc7, 0xbd, + 0x62, 0xc4, 0x3f, 0x7a, 0x9f, 0x51, 0x40, 0x1d, 0xa6, 0xa9, 0xa9, 0xa3, + 0xe9, 0xf3, 0xa8, 0x70, 0x09, 0x5d, 0xb9, 0x00, 0xd7, 0x10, 0x4e, 0x6b, + 0xa2, 0xd4, 0x20, 0xdd, 0x69, 0x72, 0x14, 0x64, 0xf9, 0x80, 0xfe, 0x95, + 0x80, 0xb1, 0x3b, 0x1c, 0x04, 0x27, 0xe8, 0x28, 0x03, 0xa4, 0xd0, 0xa7, + 0x91, 0xec, 0x7c, 0xa8, 0xa2, 0xcf, 0x96, 0xdf, 0x31, 0xc9, 0xe7, 0x35, + 0x9f, 0xaf, 0x3c, 0x8d, 0xa8, 0x6c, 0x90, 0x61, 0x94, 0x63, 0x3e, 0xb5, + 0xb1, 0xe1, 0x58, 0x9e, 0x18, 0x2e, 0x3c, 0xc8, 0xd9, 0x72, 0x46, 0x37, + 0x0c, 0x54, 0x1a, 0xfe, 0x97, 0x77, 0x73, 0xa9, 0x99, 0x21, 0x84, 0xb2, + 0x95, 0x1c, 0xe7, 0x14, 0x01, 0xcd, 0x29, 0x2a, 0xc0, 0x8e, 0xa2, 0xba, + 0x5b, 0x59, 0x2e, 0xee, 0x1e, 0x1c, 0xce, 0xc3, 0xcc, 0x8d, 0x8f, 0xe5, + 0x59, 0x83, 0x42, 0xbe, 0x3f, 0x79, 0x51, 0x7e, 0xae, 0x2b, 0x76, 0xd2, + 0xd9, 0xed, 0xa7, 0xb4, 0x85, 0xf1, 0xbc, 0x46, 0xc0, 0xe2, 0x90, 0xce, + 0x4a, 0x46, 0x67, 0x95, 0xd9, 0xce, 0x58, 0x9e, 0x4d, 0x35, 0x49, 0x56, + 0x04, 0x1c, 0x11, 0xd0, 0xd6, 0xdc, 0x9e, 0x1e, 0x94, 0x4a, 0xfb, 0xee, + 0x60, 0x5e, 0x4f, 0x7f, 0xf3, 0xeb, 0x51, 0xc9, 0xa2, 0x24, 0x6a, 0x59, + 0xaf, 0xa2, 0xe3, 0xb0, 0x19, 0x3d, 0x71, 0x4c, 0x46, 0xd8, 0xb1, 0x61, + 0x64, 0x67, 0x32, 0x39, 0xff, 0x00, 0x47, 0xdf, 0xc9, 0xef, 0x8a, 0xe3, + 0x4f, 0x24, 0x93, 0xde, 0xbd, 0x22, 0x3b, 0x7f, 0x37, 0x4e, 0x10, 0x83, + 0x82, 0xd0, 0x6d, 0xcf, 0xe1, 0x5c, 0x97, 0xf6, 0x0c, 0x61, 0xb0, 0x6f, + 0x93, 0x39, 0xc7, 0xdd, 0x3e, 0xb8, 0xa0, 0x0c, 0x45, 0xc8, 0x91, 0x4a, + 0xf5, 0x07, 0xad, 0x74, 0x52, 0x24, 0x91, 0x4b, 0x71, 0xf3, 0xb7, 0xcb, + 0x00, 0x61, 0xcf, 0x7a, 0x85, 0x34, 0x28, 0x8b, 0xa8, 0x5b, 0xe4, 0x24, + 0x91, 0x8f, 0x97, 0xfc, 0xfa, 0x56, 0xac, 0xb6, 0xa6, 0xe2, 0xf2, 0x78, + 0x55, 0x80, 0x2d, 0x08, 0x50, 0x4d, 0x00, 0x71, 0xd9, 0xc9, 0xcd, 0x58, + 0xb0, 0xdf, 0xf6, 0xe8, 0x84, 0x67, 0x0c, 0x5b, 0x15, 0xa3, 0xff, 0x00, + 0x08, 0xf3, 0x9f, 0xbb, 0x77, 0x01, 0xfa, 0x93, 0xfe, 0x7b, 0x54, 0xf6, + 0x1a, 0x14, 0xf1, 0x5f, 0x43, 0x27, 0x9b, 0x0b, 0x85, 0x60, 0x70, 0xad, + 0xcf, 0xad, 0x00, 0x59, 0xd4, 0x63, 0xba, 0xb6, 0xd3, 0xe6, 0x95, 0xa4, + 0xca, 0x93, 0xb7, 0x1f, 0x5a, 0xe5, 0xab, 0xbe, 0xd6, 0x6d, 0x25, 0xbb, + 0xd2, 0x65, 0x8e, 0x15, 0xdc, 0xfb, 0x81, 0xc6, 0x71, 0x5c, 0x8b, 0x68, + 0xba, 0x82, 0xff, 0x00, 0xcb, 0xb3, 0x1f, 0xa6, 0x0d, 0x00, 0x59, 0xd0, + 0xef, 0xe4, 0xb6, 0x13, 0x22, 0x31, 0x1c, 0x6e, 0x38, 0x3e, 0x94, 0x6b, + 0x77, 0xff, 0x00, 0x6c, 0x8a, 0x00, 0xc5, 0x8b, 0x81, 0x91, 0x9f, 0x4a, + 0x76, 0x9b, 0x61, 0x71, 0x09, 0xb8, 0x69, 0xa1, 0x74, 0x1e, 0x51, 0x19, + 0x61, 0x8a, 0xab, 0xab, 0x44, 0x56, 0x48, 0x70, 0xa7, 0x1e, 0x50, 0xa0, + 0x0a, 0x96, 0x92, 0xf9, 0x57, 0x08, 0x76, 0x8f, 0xbc, 0x3e, 0x6a, 0xef, + 0x56, 0xea, 0x25, 0xb1, 0x93, 0xc9, 0x95, 0x37, 0x32, 0x12, 0xa3, 0x77, + 0x43, 0x5e, 0x7c, 0x8b, 0xba, 0x45, 0x1e, 0xf5, 0xd7, 0x5f, 0xd9, 0xc7, + 0x1e, 0x85, 0x2c, 0xa0, 0x1d, 0xe2, 0x35, 0xc1, 0xcf, 0xbd, 0x00, 0x72, + 0x6b, 0x33, 0xad, 0xcf, 0x98, 0x58, 0xee, 0xdd, 0x9c, 0xd7, 0xa3, 0xe9, + 0x93, 0xe2, 0xc7, 0xcd, 0x63, 0xf2, 0x94, 0xdd, 0x8f, 0x43, 0x5e, 0x67, + 0x5d, 0x25, 0x85, 0xdd, 0xd4, 0x7a, 0x74, 0x72, 0x0c, 0x15, 0xf9, 0xb8, + 0xc7, 0xa0, 0xa0, 0x0c, 0xbb, 0xbd, 0x46, 0x5b, 0x9d, 0x41, 0xe4, 0x2e, + 0x70, 0x1b, 0xe5, 0xc7, 0x61, 0x5b, 0x96, 0x7a, 0x72, 0xea, 0x68, 0x93, + 0xa3, 0x79, 0x67, 0x1f, 0x39, 0x1d, 0x88, 0xef, 0x5c, 0xab, 0xc8, 0x64, + 0xb9, 0x79, 0x76, 0x85, 0xcb, 0x67, 0x03, 0xb5, 0x75, 0x7a, 0x66, 0xa1, + 0x6b, 0x1e, 0x87, 0x3c, 0x41, 0xfc, 0xb9, 0x64, 0x42, 0x0b, 0x30, 0xe9, + 0xf4, 0xa2, 0xc1, 0x72, 0x4b, 0x79, 0xad, 0x6e, 0xae, 0x05, 0xb4, 0x6e, + 0xf9, 0x4e, 0x3c, 0xd2, 0x73, 0xb8, 0xfb, 0xd5, 0xa9, 0x74, 0xdb, 0xa8, + 0x41, 0x66, 0x40, 0xcb, 0xea, 0xa7, 0x15, 0xc9, 0xe8, 0xee, 0x46, 0xa0, + 0xaa, 0x1b, 0x00, 0x9c, 0x66, 0xba, 0x0f, 0x11, 0xea, 0xf3, 0x47, 0x6b, + 0x6f, 0x6c, 0xaf, 0x90, 0xdf, 0x7c, 0x8f, 0x6a, 0x56, 0x1d, 0xc0, 0xab, + 0x1c, 0x03, 0xc7, 0xfb, 0xdc, 0x53, 0xcc, 0x2e, 0x5f, 0xa6, 0x3d, 0xea, + 0xee, 0x99, 0x71, 0x01, 0xd2, 0x59, 0xe7, 0x01, 0xa2, 0x45, 0xdd, 0xc8, + 0xa8, 0xb4, 0xe9, 0x13, 0x52, 0x57, 0x68, 0xf1, 0x17, 0x3f, 0x28, 0x1c, + 0x8a, 0x97, 0x02, 0x94, 0xca, 0xaa, 0x42, 0x39, 0xcf, 0x6a, 0x99, 0xe5, + 0x8d, 0xac, 0x8c, 0x7b, 0xc6, 0xe2, 0xd9, 0xc6, 0x2a, 0x56, 0xb2, 0x52, + 0xf2, 0xa1, 0x65, 0x32, 0x01, 0xd8, 0xe7, 0x14, 0xa9, 0x6e, 0x91, 0x22, + 0x65, 0x41, 0x3d, 0x09, 0x3d, 0xcd, 0x35, 0x1b, 0x03, 0x95, 0xc2, 0xd2, + 0x6f, 0x22, 0xd9, 0xd0, 0x26, 0x59, 0x87, 0x07, 0xd2, 0x9e, 0x75, 0x1b, + 0x95, 0x1b, 0x63, 0x89, 0x50, 0x0f, 0x41, 0x56, 0x26, 0x54, 0x82, 0x20, + 0xf2, 0xa2, 0xa0, 0x03, 0x1c, 0x9e, 0x6a, 0x18, 0x0c, 0x17, 0x20, 0x08, + 0xa5, 0xc1, 0x1c, 0xb2, 0x91, 0x54, 0x49, 0x67, 0x37, 0xf2, 0xc6, 0x1d, + 0xa7, 0x21, 0x71, 0x93, 0xb6, 0xa9, 0xcd, 0x6f, 0x2b, 0xb0, 0x2d, 0x21, + 0x6e, 0xf8, 0xcf, 0x34, 0x3e, 0xa1, 0x0a, 0x5c, 0x8b, 0x77, 0x76, 0x00, + 0xf1, 0xbb, 0x3d, 0x29, 0xd7, 0x9b, 0xed, 0x94, 0x79, 0x2b, 0xbc, 0xb8, + 0xcf, 0x99, 0x48, 0x43, 0xa2, 0xb6, 0xe5, 0x09, 0x20, 0x2e, 0x7e, 0x6c, + 0x9e, 0xd4, 0xb2, 0x43, 0x10, 0x97, 0x6a, 0xed, 0x23, 0xd7, 0x9a, 0x97, + 0x4a, 0xb9, 0x96, 0x5d, 0xcb, 0x3c, 0x71, 0x95, 0x03, 0x3b, 0x87, 0x5a, + 0xc5, 0xd4, 0xf5, 0x77, 0x8e, 0xf8, 0xac, 0x64, 0x8d, 0xa7, 0xa0, 0xed, + 0x40, 0x1b, 0x56, 0xf0, 0x22, 0xdc, 0x65, 0x73, 0xc2, 0x1c, 0xf1, 0xd6, + 0xb4, 0xd9, 0x86, 0xe0, 0x3d, 0xab, 0x32, 0x0b, 0x85, 0x75, 0x56, 0x79, + 0x02, 0xee, 0x4c, 0xf5, 0xc7, 0x6a, 0x91, 0xae, 0xed, 0x57, 0xac, 0xa0, + 0x9f, 0xf7, 0xa9, 0xdc, 0x07, 0x48, 0xa0, 0xa7, 0x3f, 0xed, 0x7f, 0x3a, + 0x62, 0xda, 0xc0, 0xd9, 0x66, 0x45, 0x27, 0xd7, 0x14, 0xd9, 0x2f, 0xec, + 0xf3, 0x8f, 0x35, 0x68, 0x1a, 0x85, 0x98, 0x04, 0x79, 0xcb, 0x9a, 0x06, + 0x06, 0x14, 0x8c, 0xe1, 0x10, 0x01, 0x9e, 0xd5, 0x65, 0x3f, 0xe5, 0x97, + 0x1d, 0x9b, 0xf9, 0xd5, 0x43, 0xa9, 0x5a, 0x60, 0xe2, 0x61, 0xd6, 0x90, + 0x6a, 0xb6, 0x6d, 0xc0, 0x90, 0x50, 0x84, 0x69, 0x13, 0xf3, 0x27, 0xae, + 0x45, 0x66, 0xb5, 0xd5, 0xab, 0x5d, 0xc9, 0x0a, 0xdc, 0x1f, 0x33, 0x71, + 0x05, 0x72, 0x6a, 0x55, 0xd4, 0x6c, 0xb8, 0x3e, 0x6a, 0xd5, 0x52, 0xf0, + 0x4b, 0x33, 0x8f, 0x39, 0x0e, 0xfc, 0xe3, 0x8e, 0x9c, 0x50, 0xf5, 0x05, + 0xa0, 0xb7, 0xb1, 0xca, 0xd0, 0x90, 0xaf, 0x9c, 0x8e, 0xf4, 0xff, 0x00, + 0x02, 0xca, 0xda, 0x77, 0x8a, 0x22, 0x96, 0x5b, 0x73, 0x2a, 0xa9, 0xfb, + 0xc0, 0x72, 0xbe, 0xe2, 0xa6, 0x8e, 0xda, 0x45, 0xb7, 0x45, 0x67, 0x0c, + 0x55, 0x70, 0x4f, 0xad, 0x41, 0x25, 0x9c, 0x8a, 0xdb, 0x90, 0xe1, 0xbb, + 0x60, 0xd4, 0xa6, 0xd1, 0x5a, 0x33, 0xdc, 0x93, 0xc4, 0xb6, 0x13, 0x59, + 0x5c, 0x4e, 0x1a, 0x45, 0x48, 0x94, 0xee, 0x2c, 0x84, 0x62, 0xbc, 0x4e, + 0xea, 0x66, 0x9b, 0x55, 0x98, 0xa0, 0xca, 0x3b, 0xb3, 0x6e, 0x73, 0x92, + 0x6a, 0x4b, 0x0d, 0x4b, 0x5b, 0xb7, 0xb0, 0x9a, 0xc2, 0x46, 0x89, 0xa0, + 0x94, 0xe5, 0x8e, 0x79, 0xa8, 0x36, 0x3a, 0x4e, 0x64, 0xf9, 0x8e, 0x01, + 0x18, 0x14, 0xe4, 0xef, 0x61, 0x2d, 0x09, 0x51, 0x96, 0x04, 0xdc, 0xc4, + 0x67, 0x1f, 0xd2, 0xaa, 0xbc, 0x92, 0x5d, 0xbf, 0x27, 0x6a, 0x76, 0xc9, + 0xeb, 0x41, 0x01, 0xf0, 0xf3, 0x12, 0x3d, 0x17, 0xd2, 0x9e, 0xe8, 0xde, + 0x64, 0x7b, 0x46, 0x06, 0xec, 0x1f, 0x4c, 0x53, 0x10, 0xd9, 0xb7, 0x43, + 0x24, 0x67, 0x00, 0x82, 0x40, 0xdb, 0xd3, 0x35, 0x42, 0xf5, 0x5d, 0xe4, + 0x9b, 0x23, 0x62, 0xed, 0xfb, 0xaa, 0x7d, 0xeb, 0x5e, 0x55, 0x08, 0xbc, + 0xe4, 0xe1, 0x94, 0xe4, 0xd6, 0x65, 0xcb, 0x09, 0x27, 0x7d, 0x83, 0x70, + 0xe8, 0x69, 0x31, 0x95, 0xd5, 0x4f, 0x95, 0x20, 0x18, 0x00, 0x81, 0xd7, + 0xe9, 0x44, 0x11, 0x9f, 0xdc, 0x84, 0x18, 0x78, 0xc7, 0x07, 0x35, 0x22, + 0xc2, 0x49, 0x1e, 0x6b, 0x6d, 0x19, 0xe3, 0x35, 0x61, 0x40, 0x89, 0x81, + 0x54, 0x1b, 0x08, 0x38, 0x7e, 0xb4, 0x00, 0xd4, 0x81, 0x96, 0x52, 0xf3, + 0x36, 0xec, 0x8e, 0xa4, 0xf7, 0xa9, 0x9d, 0x0a, 0x29, 0x96, 0x24, 0x0d, + 0x85, 0xe7, 0x06, 0x99, 0x6f, 0x24, 0x17, 0xf1, 0xb4, 0xb1, 0x1c, 0x49, + 0x0b, 0x7c, 0xc2, 0xb2, 0xec, 0x75, 0x37, 0x4d, 0x75, 0xa2, 0x63, 0xfb, + 0x96, 0x07, 0x70, 0x3d, 0xa8, 0x02, 0xf5, 0xce, 0xa0, 0xb6, 0x31, 0xc6, + 0x65, 0xf9, 0xd5, 0xb9, 0x65, 0xc7, 0x6a, 0xb4, 0xf1, 0xc4, 0x20, 0x6b, + 0xeb, 0x73, 0xf2, 0x3a, 0x70, 0x07, 0xa5, 0x73, 0x1e, 0x21, 0x9d, 0x67, + 0x9c, 0x98, 0x8e, 0x57, 0x38, 0xab, 0x76, 0xd7, 0x17, 0x4f, 0xa3, 0xac, + 0x71, 0x64, 0x44, 0xab, 0x8e, 0x4f, 0xbd, 0x00, 0x65, 0xc7, 0xa8, 0xdc, + 0x26, 0xb0, 0x92, 0x46, 0xe7, 0x21, 0xf9, 0x19, 0xeb, 0x5d, 0x36, 0xb7, + 0xa9, 0xc1, 0x2d, 0x99, 0x8e, 0x26, 0x25, 0x8d, 0x71, 0x6e, 0x00, 0xbb, + 0x3d, 0x8e, 0xea, 0xec, 0x6f, 0xf4, 0xf8, 0x22, 0xd2, 0xc3, 0x04, 0xc1, + 0xc6, 0x73, 0xf8, 0x53, 0x11, 0xc5, 0xa1, 0xc4, 0xe1, 0x9c, 0x64, 0x03, + 0x92, 0x2b, 0xab, 0x9e, 0xe2, 0xea, 0xea, 0xcc, 0x1c, 0xb0, 0x40, 0xa3, + 0x1c, 0xd7, 0x26, 0xa4, 0x99, 0x31, 0xef, 0x5d, 0x94, 0x78, 0xfe, 0xcb, + 0x8c, 0x77, 0x2a, 0xb4, 0x30, 0x47, 0x23, 0x24, 0x40, 0xc8, 0xc7, 0x3d, + 0xeb, 0xa1, 0xf0, 0xbd, 0xa4, 0x57, 0x02, 0xe4, 0x48, 0x03, 0x05, 0xdb, + 0x8c, 0xfd, 0x6b, 0x9f, 0xb8, 0x0e, 0xf3, 0x32, 0xaa, 0x93, 0xc9, 0xe8, + 0x2b, 0xa6, 0xf0, 0x7c, 0x52, 0x44, 0x2e, 0x8b, 0xa3, 0x28, 0x21, 0x71, + 0x91, 0x40, 0x15, 0x7c, 0x51, 0x04, 0x70, 0xde, 0x65, 0x17, 0x68, 0x3d, + 0x85, 0x73, 0x79, 0x39, 0xae, 0xc3, 0xc4, 0xd6, 0xad, 0x3d, 0xce, 0xe0, + 0xca, 0xa0, 0x77, 0x63, 0x5c, 0xf8, 0xd3, 0xe3, 0x1f, 0x7a, 0xe1, 0x73, + 0xe8, 0x05, 0x17, 0xb0, 0x58, 0xe8, 0x74, 0x11, 0x9d, 0x2a, 0x1f, 0xf7, + 0xda, 0xb0, 0x75, 0x91, 0x8b, 0xc9, 0x2b, 0xa4, 0xd1, 0x63, 0x55, 0xb3, + 0x85, 0x11, 0x89, 0x1b, 0x8f, 0x24, 0x56, 0x76, 0xab, 0x6f, 0x6c, 0xb7, + 0x7b, 0xa5, 0x8d, 0xdc, 0xb0, 0x3d, 0x1b, 0x14, 0x86, 0x73, 0x18, 0x35, + 0xdb, 0xf8, 0x64, 0x67, 0x4a, 0x1f, 0xf5, 0xd4, 0xff, 0x00, 0x2a, 0xc2, + 0x2b, 0x68, 0x17, 0xe5, 0xb5, 0x1f, 0x8b, 0x13, 0x5d, 0x36, 0x88, 0xab, + 0xfd, 0x93, 0x1b, 0x24, 0x7b, 0x41, 0x90, 0xf0, 0x29, 0xde, 0xe2, 0x4a, + 0xc7, 0x35, 0xe2, 0x71, 0x9d, 0x61, 0xb8, 0xfe, 0x11, 0x59, 0x11, 0x8c, + 0x36, 0x48, 0xe2, 0xba, 0xed, 0x68, 0xf9, 0x57, 0x6a, 0x44, 0x48, 0xc5, + 0xbb, 0xb2, 0xe7, 0xb8, 0xac, 0xef, 0xb4, 0x49, 0xb4, 0x8f, 0x2a, 0x21, + 0xc7, 0xf7, 0x07, 0xb5, 0x0d, 0x85, 0x85, 0xf0, 0xbf, 0xfc, 0x7f, 0x5c, + 0x7a, 0x79, 0x47, 0xf9, 0xd5, 0x9f, 0x12, 0x60, 0x45, 0x6c, 0x7d, 0xcd, + 0x59, 0xd0, 0x86, 0xf4, 0xb8, 0x62, 0xaa, 0x08, 0x5c, 0x0c, 0x0c, 0x54, + 0xda, 0xb8, 0x29, 0x6d, 0x13, 0x28, 0x04, 0x82, 0x3a, 0x8c, 0xf7, 0xa5, + 0xb8, 0xce, 0x4b, 0x19, 0xa9, 0x60, 0x1f, 0xe9, 0x11, 0xff, 0x00, 0xbc, + 0x2b, 0x4c, 0x4f, 0x28, 0x41, 0xf2, 0xa7, 0xfd, 0xf0, 0x2a, 0x4b, 0x67, + 0x69, 0xaf, 0x22, 0x56, 0x8d, 0x31, 0xbb, 0xb2, 0xfd, 0x6a, 0x46, 0x74, + 0xd7, 0x3c, 0xd9, 0xdc, 0xff, 0x00, 0xd7, 0x03, 0xfc, 0xab, 0xcf, 0x48, + 0xaf, 0x45, 0x95, 0x4f, 0x95, 0x37, 0x19, 0x1e, 0x5e, 0x2b, 0x8e, 0x8e, + 0x44, 0x7c, 0xee, 0xb6, 0x8b, 0xf2, 0xaa, 0x62, 0x46, 0x58, 0x15, 0xdb, + 0xda, 0x0f, 0xf4, 0x1b, 0x3a, 0xe6, 0x9c, 0x40, 0xcc, 0x07, 0xd9, 0xc0, + 0xf7, 0x56, 0xae, 0xae, 0x38, 0xc4, 0x76, 0xf6, 0xc8, 0x3a, 0x29, 0xfe, + 0x94, 0x90, 0xce, 0x02, 0xf8, 0x9f, 0xed, 0x19, 0xc7, 0xfd, 0x34, 0x3f, + 0xce, 0x90, 0x2e, 0x30, 0x7d, 0xeb, 0x4e, 0xe6, 0xda, 0xce, 0x5b, 0xb9, + 0x99, 0x9a, 0x55, 0x6d, 0xe7, 0x3c, 0x64, 0x77, 0xff, 0x00, 0x0a, 0x63, + 0xd8, 0x42, 0x4a, 0xf9, 0x77, 0x43, 0x93, 0xd1, 0x97, 0x14, 0xd8, 0x8e, + 0xae, 0xde, 0xd6, 0x26, 0xd3, 0xe0, 0x3b, 0x06, 0x42, 0x35, 0x70, 0x33, + 0x20, 0x0c, 0xc4, 0xfa, 0xd7, 0xa3, 0xc0, 0xa5, 0x2c, 0x62, 0x4e, 0xe1, + 0x08, 0xae, 0x12, 0x5d, 0x3e, 0xec, 0x86, 0x22, 0x12, 0x46, 0x7f, 0x87, + 0x9a, 0x60, 0x3f, 0x45, 0x46, 0x92, 0xe3, 0x11, 0xe0, 0x10, 0x46, 0x4d, + 0x5d, 0xd7, 0x26, 0x94, 0x5a, 0xac, 0x53, 0x28, 0x20, 0xb1, 0x0a, 0x7d, + 0x31, 0x51, 0xf8, 0x7e, 0x09, 0x21, 0xbc, 0x61, 0x22, 0x32, 0x9e, 0x3a, + 0x8a, 0x9b, 0xc4, 0xbc, 0xc3, 0x6f, 0xfe, 0xf3, 0x50, 0x2e, 0x86, 0x25, + 0x89, 0x29, 0x76, 0xad, 0xd8, 0x75, 0xae, 0xcb, 0x51, 0xd4, 0xcc, 0x9a, + 0x1c, 0xa9, 0x08, 0xdb, 0x23, 0x28, 0xe7, 0x3d, 0xab, 0x8f, 0xb0, 0x40, + 0xd7, 0xb1, 0x83, 0xdc, 0xd7, 0x55, 0xe2, 0x2b, 0x74, 0x8f, 0x44, 0x59, + 0x15, 0x40, 0x6f, 0x94, 0x71, 0x40, 0x23, 0x9f, 0xd1, 0x2e, 0x59, 0x2f, + 0x15, 0x09, 0xe0, 0x9a, 0xec, 0x75, 0x5b, 0xf4, 0xd3, 0x34, 0xef, 0x35, + 0x94, 0x34, 0x8e, 0x76, 0x8c, 0x8a, 0xe1, 0x74, 0xc0, 0x4d, 0xd8, 0xda, + 0x3e, 0x6e, 0xc6, 0xb5, 0x7c, 0x41, 0x24, 0x82, 0xdd, 0x22, 0x9b, 0x2d, + 0xcf, 0xca, 0x73, 0xd2, 0x8e, 0xa1, 0xd0, 0xd5, 0xd3, 0xee, 0x0d, 0xfc, + 0x64, 0xee, 0xc3, 0xf6, 0xab, 0x53, 0x86, 0x81, 0x84, 0x73, 0x15, 0x72, + 0x47, 0x0a, 0x39, 0x35, 0x8d, 0xe1, 0xbb, 0x85, 0xb6, 0x8c, 0xb4, 0x99, + 0x3e, 0x98, 0xa8, 0x3e, 0xdd, 0x34, 0xbe, 0x20, 0x91, 0x9c, 0x9e, 0x5f, + 0x81, 0xe8, 0x29, 0x0c, 0xd0, 0xb8, 0x8d, 0x19, 0xf3, 0x18, 0xc1, 0x23, + 0x95, 0xa8, 0x16, 0x2b, 0x99, 0x4e, 0xd8, 0xa0, 0x63, 0x8e, 0xe7, 0x8a, + 0xd9, 0x9d, 0x05, 0xb2, 0x49, 0x36, 0x06, 0xfd, 0xbf, 0x7b, 0x1d, 0x05, + 0x72, 0xd6, 0x1a, 0xac, 0x91, 0xea, 0x8a, 0x77, 0x1d, 0xae, 0xfc, 0xf3, + 0x4b, 0x94, 0x7c, 0xc6, 0xb3, 0x58, 0xdc, 0xac, 0x7e, 0x64, 0xd2, 0x2c, + 0x6a, 0x07, 0x40, 0x32, 0x69, 0x6c, 0x2c, 0x2d, 0xf5, 0x0c, 0xff, 0x00, + 0xa4, 0xb9, 0x23, 0xaa, 0x9e, 0x2a, 0xc6, 0xbd, 0x72, 0x52, 0xc1, 0xa5, + 0x0e, 0x09, 0x27, 0x6a, 0x80, 0x7a, 0x57, 0x39, 0xa2, 0x5c, 0x3a, 0xea, + 0x20, 0xe7, 0x0b, 0xc9, 0x3c, 0xd3, 0xb0, 0xae, 0x6f, 0xde, 0xe9, 0xd6, + 0x76, 0x48, 0x5c, 0x02, 0xce, 0xbc, 0x92, 0xc7, 0x20, 0x54, 0x1a, 0x5e, + 0xa5, 0x15, 0xc4, 0xeb, 0x14, 0xa8, 0x99, 0x27, 0x1c, 0x2e, 0x31, 0x4c, + 0xd7, 0xef, 0x63, 0x97, 0x4e, 0x51, 0x19, 0xcb, 0xb3, 0x65, 0xb9, 0x15, + 0x81, 0xa5, 0xcc, 0x21, 0xd4, 0x23, 0x91, 0x8e, 0x00, 0x34, 0xec, 0x2b, + 0x9d, 0xce, 0xab, 0x74, 0xd6, 0x96, 0x52, 0x79, 0x23, 0x6e, 0x07, 0x2d, + 0x5c, 0x7d, 0xb6, 0xa7, 0x2c, 0x57, 0x9b, 0xf7, 0x9c, 0x31, 0xe7, 0xd2, + 0xb4, 0x75, 0x6d, 0x58, 0x5c, 0x69, 0xde, 0x57, 0x4d, 0xcd, 0xd7, 0x1e, + 0x95, 0xcf, 0x2f, 0x0c, 0x0d, 0x00, 0x76, 0x17, 0xf2, 0x45, 0x16, 0x9a, + 0x2e, 0x22, 0x85, 0x56, 0x49, 0x3a, 0x71, 0xd0, 0xf7, 0xae, 0x45, 0xdc, + 0x96, 0xcf, 0x7e, 0xf5, 0x76, 0x6b, 0xfb, 0xb9, 0xe1, 0x0a, 0x49, 0x08, + 0xa3, 0xa0, 0xac, 0xf3, 0xeb, 0x40, 0x5c, 0xec, 0xbc, 0x2f, 0xa8, 0x48, + 0x2d, 0xda, 0x36, 0x27, 0x60, 0xe0, 0x67, 0xd6, 0xa8, 0x78, 0x9e, 0xe5, + 0x92, 0xe8, 0x46, 0xad, 0x96, 0x61, 0xb9, 0x8e, 0x6b, 0x3f, 0x4e, 0xb8, + 0x95, 0x6d, 0x24, 0x54, 0x23, 0x0a, 0x41, 0xfc, 0xea, 0xbe, 0xa3, 0x23, + 0xbd, 0xdb, 0xf9, 0x9d, 0x57, 0x8a, 0x00, 0xb3, 0xa2, 0xcf, 0x9b, 0xf8, + 0xe2, 0x76, 0xe1, 0x8f, 0x07, 0xd0, 0xd7, 0x43, 0xa8, 0x91, 0x67, 0x6c, + 0xf2, 0x47, 0x83, 0xb7, 0xa8, 0xce, 0x6b, 0x8d, 0xb7, 0x6c, 0x5c, 0x46, + 0x41, 0xe7, 0x70, 0xae, 0x83, 0x56, 0xb3, 0x92, 0xdf, 0x4c, 0x33, 0x34, + 0x84, 0x86, 0x93, 0x6e, 0x0d, 0x01, 0x72, 0xa7, 0xf6, 0x14, 0x01, 0xbf, + 0xe4, 0x20, 0x9f, 0xf7, 0xc1, 0xff, 0x00, 0x3d, 0xab, 0xa4, 0xd1, 0xac, + 0x7e, 0xc3, 0x64, 0x54, 0x4a, 0x24, 0x0e, 0xf9, 0x04, 0x0c, 0x7b, 0x56, + 0x7f, 0x99, 0x64, 0xad, 0xf3, 0xf9, 0xc1, 0x8f, 0x6c, 0x0f, 0x7f, 0xf1, + 0xab, 0x51, 0xeb, 0x56, 0xd0, 0xa0, 0x8b, 0x63, 0xe0, 0x12, 0x41, 0x3f, + 0x5a, 0x2e, 0x16, 0x31, 0xaf, 0x34, 0x02, 0x6f, 0x65, 0xcd, 0xe4, 0x2a, + 0xcc, 0xd9, 0xda, 0x73, 0xc6, 0x7f, 0xfd, 0x75, 0x26, 0x9d, 0xa2, 0xbc, + 0x77, 0x88, 0xff, 0x00, 0x68, 0x86, 0x40, 0xbf, 0x31, 0x0a, 0x4e, 0x7f, + 0xcf, 0x35, 0x76, 0x6b, 0x8b, 0x4b, 0xab, 0x86, 0x98, 0xbb, 0x29, 0x27, + 0x38, 0xdb, 0xf4, 0xff, 0x00, 0x0a, 0x58, 0x2e, 0xad, 0x6c, 0x8b, 0x48, + 0x19, 0x9b, 0x2b, 0xb7, 0xee, 0xe3, 0xd3, 0xfc, 0x28, 0xb8, 0x58, 0xcc, + 0x9f, 0x49, 0x9a, 0x78, 0xd1, 0xe3, 0x28, 0x17, 0x91, 0xf3, 0x36, 0x3b, + 0xd5, 0x65, 0xd0, 0xef, 0xbc, 0xd5, 0xc4, 0x6a, 0xc3, 0x3d, 0x43, 0x8a, + 0xd8, 0x17, 0x16, 0xb3, 0xc2, 0x91, 0x34, 0xfb, 0x0a, 0x12, 0x72, 0x41, + 0xa7, 0x46, 0x2d, 0x92, 0x68, 0xe4, 0x17, 0x71, 0x90, 0x8c, 0x09, 0x1e, + 0xbd, 0x3f, 0xc2, 0x80, 0x0d, 0x7e, 0xca, 0x47, 0xb0, 0x1e, 0x5c, 0x4c, + 0xec, 0x0a, 0xe4, 0x01, 0x9e, 0xd5, 0xca, 0xb5, 0xad, 0xc2, 0x1f, 0x9a, + 0x09, 0x17, 0xea, 0xa6, 0xbb, 0xab, 0x8b, 0xc8, 0x2e, 0xed, 0xdd, 0x61, + 0x9d, 0x43, 0x12, 0x31, 0x96, 0xc7, 0x43, 0x54, 0xe2, 0xb5, 0xbb, 0x1b, + 0x48, 0x93, 0x70, 0xef, 0x87, 0xcf, 0x6a, 0x02, 0xc6, 0x0d, 0xdc, 0x7b, + 0x6c, 0x47, 0xcb, 0x83, 0xb1, 0x3f, 0xad, 0x51, 0xb4, 0xcf, 0xda, 0x90, + 0x67, 0x19, 0x3d, 0x6b, 0xad, 0x96, 0x1f, 0xf4, 0x89, 0xca, 0xaa, 0xb0, + 0x20, 0x05, 0x18, 0xcf, 0x7a, 0xaf, 0x04, 0x19, 0xb9, 0x8f, 0xcd, 0xb4, + 0x41, 0xc8, 0xe7, 0x66, 0x28, 0x40, 0x67, 0x6b, 0x51, 0x4b, 0x6b, 0x10, + 0x41, 0x2b, 0x18, 0xdc, 0xf4, 0x26, 0xa9, 0x69, 0x33, 0x49, 0x15, 0xc1, + 0xf2, 0x89, 0x0d, 0xb4, 0x9c, 0xd7, 0x51, 0xac, 0x5a, 0xc1, 0x3c, 0x6a, + 0x24, 0x52, 0xc0, 0x36, 0x06, 0x0e, 0x31, 0xc5, 0x66, 0x59, 0xe9, 0xb0, + 0x46, 0x5a, 0x58, 0xf7, 0x82, 0x10, 0x9c, 0x31, 0xcd, 0x00, 0x63, 0x5e, + 0xce, 0xd3, 0x5e, 0x6e, 0x90, 0x6d, 0x7e, 0x37, 0x1a, 0xd8, 0x8a, 0xf4, + 0x45, 0x0a, 0x81, 0x1e, 0xf1, 0xb3, 0x19, 0x23, 0xf5, 0xaa, 0xb7, 0x7a, + 0x61, 0x92, 0xef, 0x78, 0x95, 0x46, 0x48, 0xc8, 0x22, 0xba, 0x18, 0xac, + 0xa2, 0x5d, 0x3c, 0x65, 0xb9, 0x0b, 0x40, 0x1c, 0xb6, 0x99, 0x74, 0x60, + 0xd4, 0x0b, 0xaa, 0x6e, 0x90, 0xf0, 0xa7, 0x3d, 0x29, 0x35, 0x79, 0x65, + 0x92, 0xf1, 0x8c, 0x8a, 0x01, 0x07, 0x19, 0x1d, 0xea, 0xdc, 0x3a, 0x7f, + 0x95, 0x7c, 0x64, 0xf3, 0x06, 0x39, 0xc2, 0xe2, 0xb4, 0x2f, 0xac, 0xed, + 0xde, 0x42, 0xd2, 0x46, 0x5c, 0xe7, 0x3d, 0x71, 0xda, 0x98, 0x0d, 0x5b, + 0x31, 0x36, 0x88, 0xb2, 0x33, 0x31, 0x76, 0x4c, 0xe7, 0x35, 0x81, 0x6f, + 0x6d, 0x2b, 0xce, 0xb8, 0x8d, 0x88, 0x07, 0x93, 0x8a, 0xec, 0xc6, 0xc4, + 0xd3, 0x95, 0x23, 0x01, 0x70, 0xa3, 0x03, 0xd2, 0xb3, 0x59, 0xca, 0x30, + 0xdf, 0x28, 0x03, 0xd3, 0x34, 0x80, 0xab, 0x73, 0xa7, 0xbc, 0xd6, 0xb1, + 0xb2, 0x6d, 0x1f, 0x2e, 0xdc, 0x93, 0x8e, 0xf4, 0xed, 0x17, 0x49, 0x68, + 0xb5, 0x28, 0x65, 0x69, 0x90, 0xed, 0x39, 0xc2, 0xf3, 0x56, 0x0d, 0xf5, + 0xb9, 0xb4, 0x58, 0x4b, 0xe0, 0xab, 0x67, 0x3d, 0x69, 0xb0, 0xea, 0x30, + 0xda, 0x48, 0xad, 0x18, 0x67, 0x61, 0xed, 0x8f, 0xf3, 0xd6, 0x95, 0xc0, + 0xd3, 0xd5, 0x6d, 0x20, 0x9e, 0x05, 0xf3, 0xb7, 0x10, 0x09, 0xc6, 0xd3, + 0x8a, 0xca, 0x86, 0xd6, 0xc9, 0x24, 0x40, 0xb6, 0xb9, 0x24, 0x81, 0x96, + 0x62, 0x7d, 0x3f, 0xc6, 0x9f, 0x3e, 0xba, 0x65, 0x52, 0x1a, 0xdf, 0x2a, + 0x39, 0x1c, 0xd4, 0x29, 0x7f, 0x3b, 0x80, 0xf0, 0xdb, 0x47, 0x81, 0xdf, + 0x19, 0xa7, 0x70, 0x36, 0x6d, 0xd4, 0x66, 0xf0, 0xe0, 0x1c, 0x72, 0x32, + 0x3d, 0xaa, 0xa2, 0x49, 0x72, 0xe5, 0x80, 0xe0, 0x64, 0xfd, 0xd5, 0xc7, + 0xad, 0x40, 0x2e, 0x35, 0x59, 0x06, 0x54, 0x84, 0x0d, 0xd7, 0x0a, 0x2a, + 0x15, 0x92, 0xf6, 0x5b, 0xe3, 0x68, 0x6e, 0x5d, 0x5f, 0x19, 0xe3, 0x8a, + 0x2e, 0x07, 0x45, 0x63, 0xbf, 0xec, 0xcd, 0xe6, 0x93, 0xbb, 0x7f, 0x7f, + 0x4a, 0x8b, 0x54, 0x89, 0xe6, 0xb9, 0x46, 0x8c, 0xe5, 0x42, 0x8c, 0xf3, + 0x8e, 0xf5, 0x92, 0x74, 0xdb, 0xf2, 0x3e, 0x7b, 0x87, 0xfc, 0xcd, 0x41, + 0x36, 0x9d, 0x73, 0x1a, 0x3b, 0x6f, 0x67, 0x23, 0xa0, 0xf5, 0xa5, 0x71, + 0x97, 0x1a, 0xd1, 0xf8, 0xcb, 0x2f, 0xdd, 0xc7, 0x2c, 0x3a, 0xed, 0xc5, + 0x68, 0x13, 0x0a, 0xdd, 0xc3, 0x29, 0x9e, 0x3c, 0x20, 0x39, 0xcb, 0x56, + 0x36, 0x9f, 0xa7, 0xbd, 0xdd, 0xbe, 0xf9, 0x03, 0x23, 0x67, 0xa1, 0xf4, + 0xad, 0x48, 0x74, 0x38, 0x84, 0x7f, 0x39, 0x24, 0xd0, 0x04, 0x17, 0x89, + 0x04, 0xf3, 0x48, 0xcb, 0x75, 0x08, 0x0c, 0xc4, 0x8f, 0x9b, 0xd7, 0x1f, + 0xe1, 0x51, 0x35, 0xad, 0xa9, 0x39, 0x7b, 0xc8, 0xb1, 0x9e, 0x40, 0xff, + 0x00, 0x7b, 0x35, 0x66, 0xfb, 0x4b, 0x10, 0x59, 0x48, 0x6d, 0x62, 0x0d, + 0x28, 0xc1, 0x00, 0xf5, 0x23, 0xda, 0xa9, 0x47, 0xa7, 0x35, 0xc5, 0xaa, + 0xb3, 0xae, 0xd9, 0x71, 0x96, 0x02, 0x9d, 0xc4, 0x6e, 0x26, 0xb1, 0x65, + 0x08, 0x55, 0x12, 0x02, 0x02, 0xed, 0xce, 0x6b, 0x34, 0x9b, 0x13, 0x26, + 0xe1, 0x7b, 0x18, 0xf9, 0xb3, 0xd0, 0xff, 0x00, 0x7b, 0x35, 0x9b, 0x26, + 0x97, 0x2a, 0x11, 0x81, 0x9a, 0x64, 0x9a, 0x73, 0xa4, 0x4d, 0xb1, 0x33, + 0x27, 0x18, 0x07, 0xbd, 0x2b, 0xb0, 0x35, 0x20, 0x5b, 0x18, 0xdd, 0x0b, + 0x5f, 0x46, 0x40, 0x20, 0xe3, 0x07, 0xb6, 0x7f, 0xc6, 0xae, 0x43, 0x3d, + 0x92, 0x5d, 0x99, 0xbe, 0xd5, 0x1e, 0x36, 0x81, 0x8c, 0xd6, 0x4c, 0x7a, + 0x46, 0x60, 0x0d, 0x20, 0xc3, 0x81, 0xc8, 0x1e, 0xb4, 0x3e, 0x90, 0x44, + 0x4a, 0xc1, 0x4f, 0x34, 0x6a, 0x05, 0xa4, 0x86, 0xdc, 0x7f, 0xcb, 0xdc, + 0x27, 0x91, 0xfc, 0x5f, 0x5f, 0xf1, 0xa9, 0x6c, 0x96, 0x0b, 0x6b, 0x94, + 0x95, 0xae, 0x61, 0x21, 0x7d, 0x1b, 0xfd, 0x90, 0x2a, 0x95, 0xee, 0x96, + 0xf0, 0xd8, 0x8f, 0x22, 0x2d, 0xf2, 0x93, 0x93, 0xeb, 0x8a, 0x87, 0xfb, + 0x29, 0x8d, 0xa7, 0x98, 0x72, 0x24, 0x55, 0xcb, 0x0a, 0x77, 0x60, 0x74, + 0x8f, 0x7b, 0x6d, 0x35, 0xa4, 0xd1, 0x47, 0x28, 0x2e, 0xe8, 0x40, 0x19, + 0xef, 0x59, 0xbf, 0x64, 0xb8, 0x13, 0x06, 0x5c, 0xed, 0xdd, 0xd9, 0xbd, + 0xc5, 0x60, 0xa5, 0xa4, 0x9f, 0x29, 0xe7, 0xe6, 0xab, 0x2f, 0x0c, 0xd0, + 0x34, 0x48, 0x81, 0xdd, 0x9d, 0xb0, 0x4a, 0xf6, 0x34, 0x5c, 0x0d, 0xe4, + 0x8e, 0x51, 0xa7, 0x4c, 0xb3, 0x16, 0xdc, 0x40, 0xc6, 0x4f, 0xfb, 0x34, + 0xd7, 0x2e, 0x96, 0xb6, 0xca, 0xaa, 0x39, 0x5e, 0x72, 0xb9, 0xee, 0x2b, + 0x1e, 0xe6, 0x3b, 0xcb, 0x70, 0x1c, 0xcc, 0xe5, 0x4f, 0x1c, 0x31, 0xa6, + 0x2d, 0xed, 0xf2, 0xaa, 0xe2, 0x67, 0xc7, 0x6c, 0xf3, 0x4a, 0xe3, 0x34, + 0x81, 0x8c, 0xbc, 0x7e, 0x65, 0xac, 0x0d, 0xb8, 0x8e, 0x76, 0x60, 0xf6, + 0xff, 0x00, 0x1a, 0xd7, 0xba, 0xb7, 0x8a, 0x6b, 0x09, 0xe2, 0x91, 0x4f, + 0x95, 0xb3, 0x38, 0x1e, 0xd5, 0xcb, 0x47, 0xac, 0x5e, 0x39, 0x6c, 0x6c, + 0x7d, 0xbe, 0xaa, 0x2a, 0xc2, 0x78, 0x86, 0xe4, 0xa1, 0x49, 0x22, 0x56, + 0x0c, 0x30, 0x7a, 0x8e, 0x29, 0xdc, 0x56, 0x20, 0x6d, 0x1e, 0xc1, 0xdb, + 0x09, 0x2c, 0xd1, 0x9c, 0xe3, 0x90, 0x0f, 0xaf, 0xf8, 0x56, 0xa2, 0x69, + 0xbe, 0x4d, 0x94, 0x36, 0xd1, 0xbe, 0xed, 0xea, 0xfb, 0x58, 0x8c, 0x75, + 0x15, 0x9c, 0xb7, 0xeb, 0xbb, 0xe6, 0x80, 0xa9, 0x3c, 0xf0, 0x6a, 0xf2, + 0x6a, 0xd0, 0xbf, 0x91, 0xb9, 0x59, 0x7c, 0xa1, 0x8e, 0x45, 0x00, 0x60, + 0x36, 0x81, 0x7e, 0x8d, 0xc4, 0x6b, 0x22, 0xe7, 0xaa, 0x30, 0x35, 0xaf, + 0x71, 0x68, 0x20, 0xf0, 0xfb, 0xa9, 0x4c, 0x38, 0x43, 0x91, 0x8e, 0x73, + 0x91, 0x53, 0x46, 0x2d, 0xe4, 0x50, 0x12, 0xe9, 0x41, 0xe3, 0xae, 0x45, + 0x6b, 0x47, 0x0a, 0xa5, 0x98, 0x58, 0xe5, 0x49, 0x18, 0x47, 0x8e, 0x0e, + 0x79, 0xa0, 0x0f, 0x3c, 0xb3, 0xdc, 0x2e, 0x50, 0x82, 0x47, 0xcc, 0x3a, + 0x55, 0xed, 0x66, 0x49, 0x44, 0xcb, 0x13, 0xb6, 0x54, 0x12, 0x46, 0x7a, + 0xf5, 0xae, 0x90, 0x5b, 0xac, 0x92, 0xa2, 0xc9, 0x69, 0x19, 0x62, 0x06, + 0x5b, 0x6e, 0x0d, 0x54, 0xbc, 0xd3, 0x2d, 0xee, 0xd8, 0x3c, 0x8d, 0x22, + 0xb8, 0xc8, 0xca, 0xf4, 0xeb, 0x40, 0x00, 0x62, 0x9e, 0x1a, 0x70, 0xea, + 0xc2, 0x16, 0x4e, 0xa3, 0x1d, 0x6a, 0x3f, 0x0c, 0x5c, 0xa4, 0x36, 0xf2, + 0xee, 0x7c, 0x30, 0x3f, 0x2f, 0x35, 0xa9, 0x71, 0x62, 0x5f, 0xc3, 0x4d, + 0x6f, 0x13, 0x02, 0x4a, 0x80, 0x0b, 0x71, 0xde, 0xb0, 0xac, 0x74, 0xcb, + 0x8b, 0x68, 0xe6, 0x32, 0xa6, 0x32, 0xa3, 0x04, 0x1c, 0xd0, 0x05, 0xcf, + 0x0e, 0xcd, 0x2c, 0xd7, 0xf7, 0x66, 0x46, 0xcb, 0xe4, 0x93, 0x53, 0x6b, + 0xf7, 0x4f, 0x12, 0xa2, 0x29, 0xc1, 0x3c, 0xfd, 0x2b, 0x3f, 0xc3, 0x56, + 0xb2, 0x3d, 0xdb, 0xb1, 0x66, 0x4c, 0x75, 0xe2, 0xad, 0x6b, 0xd0, 0xb2, + 0xba, 0x96, 0x6c, 0xfa, 0x71, 0x49, 0x8c, 0xbb, 0x0c, 0x92, 0x5e, 0x68, + 0xb1, 0xc9, 0x32, 0x82, 0xc9, 0xd0, 0xb7, 0x71, 0x4f, 0xd3, 0xa5, 0x58, + 0x56, 0x43, 0x30, 0x44, 0xe3, 0x80, 0x3a, 0xd5, 0x6d, 0x2e, 0x35, 0x97, + 0x45, 0x96, 0x47, 0xc9, 0xda, 0xc4, 0x0c, 0xfe, 0x15, 0x63, 0x4d, 0x02, + 0xe1, 0x25, 0x62, 0x33, 0xb7, 0x18, 0xcd, 0x00, 0x63, 0x4b, 0xb6, 0x6b, + 0xf7, 0x77, 0xce, 0xc2, 0x73, 0x5b, 0x97, 0x32, 0x47, 0x25, 0x9c, 0x28, + 0x85, 0x88, 0xda, 0x06, 0xfc, 0x56, 0x35, 0xed, 0x9d, 0xd9, 0x98, 0xf9, + 0x11, 0x1c, 0x1a, 0xdd, 0x96, 0x36, 0x83, 0x43, 0x85, 0x5c, 0x61, 0xd5, + 0x40, 0x34, 0x90, 0x5d, 0x0d, 0xd3, 0x5c, 0x5b, 0xc5, 0x28, 0x44, 0x69, + 0x0e, 0x39, 0x35, 0xcb, 0xdf, 0x0d, 0xf3, 0x3b, 0x93, 0xf3, 0x96, 0x3c, + 0x57, 0x53, 0xa3, 0x00, 0xf0, 0xdc, 0x63, 0xb9, 0x1f, 0xca, 0xb1, 0x2e, + 0xb4, 0xb9, 0x1e, 0x76, 0x7f, 0x39, 0x40, 0xc9, 0xe3, 0x06, 0x8e, 0x80, + 0x57, 0x8d, 0x66, 0x96, 0x11, 0xb4, 0x90, 0xbc, 0x02, 0x47, 0xb5, 0x38, + 0xc1, 0x26, 0xe2, 0xc5, 0xf9, 0xc6, 0x2b, 0x4a, 0xce, 0xc3, 0xc9, 0xb5, + 0x7d, 0xed, 0xbf, 0x90, 0x41, 0xc7, 0xbd, 0x31, 0xa0, 0x63, 0x37, 0x1f, + 0x77, 0x38, 0xc5, 0x16, 0x19, 0x9e, 0x6d, 0xe4, 0x00, 0x00, 0x73, 0x83, + 0xc5, 0x32, 0x44, 0x78, 0xe5, 0x06, 0x56, 0x21, 0xeb, 0x6a, 0xe1, 0x22, + 0xb7, 0x26, 0x42, 0xbd, 0x18, 0x0c, 0x0a, 0xce, 0xbe, 0xd9, 0x77, 0x71, + 0xbb, 0xe6, 0x5c, 0x0c, 0x74, 0xa2, 0xc0, 0x57, 0x4b, 0x79, 0x1a, 0x22, + 0xc8, 0x4e, 0xcc, 0xf3, 0xef, 0x52, 0x47, 0x68, 0xcd, 0xf3, 0x07, 0xc1, + 0x1c, 0x71, 0x56, 0xad, 0x66, 0x48, 0x6d, 0x4c, 0x44, 0x31, 0xfc, 0x2a, + 0xec, 0xd6, 0xbb, 0x63, 0x91, 0x93, 0x00, 0x70, 0x7f, 0x4a, 0x2c, 0x06, + 0x4b, 0x59, 0x3a, 0xc7, 0xf7, 0xfe, 0x51, 0xcd, 0x58, 0xd3, 0x21, 0x7f, + 0xb5, 0x19, 0x58, 0x8c, 0x2f, 0xea, 0x69, 0xd0, 0x8d, 0xd0, 0xb1, 0xce, + 0xe0, 0x7a, 0x1a, 0xba, 0x54, 0x42, 0x76, 0xa8, 0xc7, 0x1d, 0x28, 0x4b, + 0x51, 0x32, 0xf7, 0xda, 0x64, 0xd9, 0x8c, 0xd0, 0x6e, 0x5c, 0xe3, 0x38, + 0xaa, 0x62, 0x4f, 0x92, 0x90, 0xb1, 0x23, 0xad, 0x59, 0x25, 0xd3, 0x76, + 0xe0, 0xfd, 0xd1, 0x8a, 0x05, 0xc6, 0x41, 0xe2, 0xa9, 0x6e, 0x27, 0x1c, + 0xf3, 0x4d, 0xf3, 0x58, 0x02, 0x05, 0x00, 0x58, 0xb8, 0x94, 0xbc, 0x44, + 0x0f, 0xe7, 0x53, 0x4f, 0x73, 0x1d, 0xbc, 0x9c, 0x10, 0xcd, 0xc1, 0x0a, + 0x2b, 0x2e, 0xe6, 0x47, 0x30, 0x30, 0x5f, 0xce, 0xa6, 0x8c, 0x24, 0x0a, + 0x8c, 0xe3, 0x39, 0x3b, 0x59, 0xbb, 0x83, 0x48, 0x64, 0xb7, 0x12, 0x4b, + 0x3a, 0xee, 0x99, 0xb6, 0xa0, 0xfe, 0x11, 0x55, 0x21, 0x91, 0x96, 0xde, + 0x42, 0xa7, 0xe5, 0x0d, 0x9c, 0x9e, 0xb5, 0x62, 0xe0, 0x88, 0xa3, 0x7d, + 0xed, 0x9c, 0x8c, 0x0c, 0xd6, 0x3d, 0x91, 0x9a, 0x41, 0x76, 0x50, 0x6e, + 0x50, 0x3e, 0x6c, 0x9a, 0x92, 0x8d, 0x2b, 0x79, 0xa3, 0xb9, 0xb6, 0x96, + 0x43, 0xcb, 0xa7, 0x5c, 0xd5, 0x3d, 0x3e, 0xfc, 0x8b, 0x4b, 0xb8, 0xa5, + 0x24, 0x80, 0x7e, 0x4c, 0x76, 0xf5, 0xa7, 0x59, 0xd9, 0x2c, 0xda, 0x64, + 0x92, 0x92, 0x41, 0x0e, 0xc3, 0x1f, 0x85, 0x1a, 0x14, 0x4a, 0x0d, 0xf8, + 0x23, 0x38, 0x00, 0x0c, 0xd3, 0x42, 0x2a, 0x69, 0x12, 0x4e, 0xb2, 0xdd, + 0x24, 0x2d, 0x82, 0xdc, 0xb1, 0xf6, 0xa8, 0x2d, 0xa3, 0x2f, 0xaf, 0xc5, + 0x1b, 0xff, 0x00, 0x11, 0xf9, 0xbd, 0xea, 0xf6, 0x93, 0x1b, 0xa5, 0xfd, + 0xe3, 0x32, 0x10, 0xac, 0x08, 0x04, 0x8a, 0x5b, 0x5b, 0x31, 0xfd, 0xbb, + 0x14, 0xc6, 0x41, 0x90, 0x78, 0x50, 0x28, 0x02, 0x1f, 0x11, 0x5b, 0xa4, + 0x13, 0x0d, 0x8b, 0x8e, 0x6a, 0xee, 0x98, 0x33, 0xa2, 0x0f, 0x5c, 0xff, + 0x00, 0x5a, 0x97, 0x57, 0x87, 0xcd, 0xba, 0xff, 0x00, 0x53, 0xe6, 0x1c, + 0xf0, 0x31, 0x9a, 0xb7, 0x6f, 0x69, 0x2c, 0x5a, 0x78, 0x12, 0x22, 0xa6, + 0x79, 0x0b, 0xd2, 0x80, 0x39, 0x07, 0xb0, 0x9e, 0x4b, 0xc6, 0x60, 0x98, + 0x1b, 0xfa, 0xb1, 0xc5, 0x76, 0xda, 0x8a, 0x17, 0xd3, 0x55, 0x3f, 0xd9, + 0xfe, 0x95, 0x9a, 0x34, 0xb8, 0xbc, 0xef, 0x32, 0x6b, 0x95, 0x55, 0x27, + 0x3b, 0x54, 0x64, 0xd6, 0xa5, 0xcd, 0xd5, 0xbb, 0x44, 0xb1, 0x46, 0x92, + 0x30, 0x03, 0xb8, 0xc5, 0x00, 0x71, 0xd1, 0xd8, 0xc0, 0x14, 0xbe, 0x19, + 0xc8, 0x3e, 0xb8, 0xae, 0x98, 0x42, 0x5a, 0xce, 0x3c, 0x21, 0x0a, 0xaa, + 0xb4, 0x96, 0xde, 0x4b, 0x02, 0x6d, 0xad, 0x63, 0x25, 0x4e, 0x0e, 0xe3, + 0x9c, 0x1a, 0x9e, 0x79, 0xb5, 0x07, 0x05, 0x08, 0x55, 0x5c, 0x74, 0x50, + 0x28, 0x03, 0x10, 0xc1, 0x78, 0xd3, 0x3f, 0x97, 0x13, 0x94, 0xc9, 0xc6, + 0xd5, 0xc6, 0x6b, 0x63, 0x45, 0xb1, 0xb8, 0x83, 0xce, 0x79, 0xfe, 0x50, + 0xf8, 0xc6, 0xe3, 0x55, 0x4d, 0xeb, 0x45, 0x7d, 0x1d, 0xac, 0xad, 0x27, + 0xcd, 0xc6, 0x41, 0xe8, 0x6b, 0x40, 0x69, 0x9e, 0x60, 0xdc, 0x66, 0x63, + 0x9a, 0x00, 0xaf, 0xab, 0x5b, 0x25, 0xdc, 0x85, 0x4c, 0xf1, 0xa0, 0x07, + 0x24, 0xe7, 0x3d, 0xab, 0x3a, 0x3d, 0x2a, 0xc7, 0x71, 0xcd, 0xee, 0x71, + 0xd4, 0x2a, 0x1a, 0xdb, 0x3a, 0x7a, 0xc5, 0x0b, 0xec, 0xf9, 0xa4, 0xc7, + 0x1b, 0xbd, 0x6b, 0x2b, 0x49, 0x8a, 0xe0, 0xcb, 0x2a, 0x5d, 0xc0, 0x57, + 0x9c, 0x0c, 0x8c, 0x50, 0xc0, 0xbf, 0x6b, 0x2e, 0x9f, 0x67, 0x12, 0xc6, + 0x86, 0x47, 0x2b, 0xce, 0x71, 0x55, 0xe5, 0x5b, 0x4b, 0x89, 0xcb, 0xc9, + 0x6f, 0x23, 0xfa, 0x0c, 0xe2, 0xb4, 0xc5, 0x84, 0x39, 0x52, 0x10, 0x51, + 0x79, 0x64, 0x1e, 0x06, 0x58, 0xc0, 0x5c, 0x8c, 0x6e, 0xc7, 0x4a, 0x62, + 0x32, 0xe3, 0x82, 0xcc, 0xa3, 0x3a, 0x58, 0x86, 0x1e, 0xef, 0x9c, 0x55, + 0x98, 0x6f, 0x5e, 0x18, 0x84, 0x71, 0x5a, 0x2a, 0xa8, 0x3c, 0x00, 0x6a, + 0x1d, 0x0f, 0x4e, 0xb8, 0xb5, 0x69, 0x7c, 0xc9, 0x56, 0x4d, 0xc7, 0x85, + 0x53, 0x9c, 0x0a, 0xdf, 0xf2, 0x94, 0x0e, 0x83, 0x34, 0x20, 0x30, 0xda, + 0x49, 0xae, 0x25, 0xdc, 0x6d, 0xa3, 0x24, 0x7f, 0x78, 0x74, 0xa8, 0x85, + 0xde, 0x6e, 0x3c, 0x84, 0x4b, 0x6d, 0xfe, 0x80, 0x56, 0xf4, 0xa8, 0x16, + 0x17, 0x62, 0x42, 0x8f, 0x52, 0x71, 0x5c, 0xd4, 0x5a, 0x6d, 0xac, 0x7a, + 0x99, 0xb8, 0x5b, 0xe5, 0xc6, 0x72, 0x14, 0xf6, 0xfc, 0x69, 0x0c, 0xb7, + 0x1c, 0xb7, 0x90, 0xbb, 0x15, 0x81, 0x06, 0x7a, 0xe1, 0x69, 0xd2, 0x4d, + 0x7b, 0x28, 0xc3, 0x42, 0xb8, 0x1c, 0xfd, 0xda, 0xda, 0x44, 0x06, 0x21, + 0xc8, 0x61, 0x8e, 0xa3, 0x9a, 0x90, 0x45, 0x91, 0xd2, 0x9d, 0x85, 0x73, + 0x9d, 0x9a, 0xe2, 0x6b, 0x65, 0x53, 0x30, 0x81, 0x37, 0x74, 0x05, 0x69, + 0x4c, 0x97, 0x38, 0x59, 0x04, 0x70, 0x90, 0x79, 0x0c, 0x16, 0x97, 0x5c, + 0xb4, 0xb4, 0xbc, 0x91, 0x04, 0x97, 0x62, 0x37, 0x4e, 0x3e, 0x5e, 0x6a, + 0xd2, 0xc7, 0x19, 0xb3, 0x09, 0x6e, 0xe2, 0x51, 0x18, 0x00, 0x28, 0x3c, + 0x9f, 0xad, 0x21, 0x91, 0x1b, 0xeb, 0xcd, 0xa7, 0x30, 0x21, 0x1d, 0x3a, + 0x1a, 0xa9, 0xce, 0x4b, 0x1b, 0x28, 0x8f, 0x72, 0x7a, 0x62, 0xb5, 0x3e, + 0xce, 0x70, 0x1b, 0x04, 0x00, 0x3a, 0x53, 0x2e, 0x2c, 0xcb, 0x69, 0xce, + 0x8e, 0xc2, 0x21, 0x20, 0xc6, 0x49, 0xc6, 0x28, 0x03, 0x2e, 0x33, 0x03, + 0xab, 0x37, 0xd8, 0xd1, 0xb0, 0x7a, 0xab, 0x74, 0xab, 0xf1, 0xea, 0x31, + 0x05, 0x0b, 0x24, 0x12, 0x7c, 0xbd, 0xc1, 0xa8, 0x34, 0x3b, 0x01, 0x6a, + 0x19, 0x4d, 0xc4, 0x72, 0xb3, 0x1f, 0xe1, 0x3d, 0x05, 0x6d, 0xbd, 0xbc, + 0x67, 0xaa, 0x0f, 0xca, 0x9a, 0x11, 0xcd, 0x4b, 0x06, 0x9b, 0x24, 0xae, + 0xc1, 0x67, 0x5d, 0xdc, 0xf1, 0xf8, 0xff, 0x00, 0x8d, 0x33, 0xec, 0x3a, + 0x79, 0x75, 0x71, 0x70, 0xea, 0x54, 0xe7, 0x0c, 0xb5, 0xbf, 0x2d, 0xa2, + 0x2c, 0x6c, 0xe9, 0x18, 0xdd, 0x8c, 0x03, 0x8e, 0x95, 0x93, 0xa4, 0xd9, + 0x5c, 0xe6, 0x6f, 0xb6, 0x80, 0x43, 0x36, 0x14, 0x67, 0x39, 0xf7, 0xa4, + 0x33, 0x4e, 0x3b, 0x8b, 0x59, 0x61, 0x0a, 0x2e, 0x10, 0x10, 0x08, 0xe4, + 0xfa, 0xd7, 0x3a, 0xda, 0x3d, 0xca, 0x3b, 0x79, 0x53, 0x23, 0xf3, 0xc6, + 0xd7, 0xf7, 0xae, 0x81, 0xf4, 0xa8, 0x3b, 0x2e, 0x0d, 0x67, 0x5f, 0x58, + 0xc7, 0x65, 0x6a, 0xf3, 0xe1, 0x99, 0x80, 0xe0, 0x50, 0xc1, 0x09, 0xa6, + 0xd9, 0xdc, 0xc7, 0x21, 0xfb, 0x4e, 0xee, 0x83, 0x69, 0x27, 0x35, 0x5f, + 0x5a, 0x8c, 0xa2, 0x47, 0xbe, 0x10, 0xeb, 0xb8, 0xf5, 0x15, 0x66, 0xca, + 0xda, 0x7b, 0x8b, 0x44, 0x95, 0x25, 0x92, 0x32, 0xc3, 0x38, 0xc9, 0xa9, + 0x27, 0x83, 0x50, 0x2a, 0x10, 0xca, 0x1d, 0x73, 0xdc, 0x50, 0x06, 0x0d, + 0x95, 0xbd, 0xbc, 0x97, 0x91, 0x6d, 0x89, 0x91, 0xf3, 0xd9, 0xb8, 0xad, + 0xdf, 0x10, 0x46, 0x25, 0xd1, 0x7c, 0xbd, 0xc1, 0x4e, 0x57, 0x04, 0xd5, + 0x65, 0x76, 0x82, 0xe9, 0xa3, 0x11, 0x43, 0x24, 0x89, 0xd7, 0x68, 0xe4, + 0x54, 0x97, 0x97, 0x29, 0x73, 0x6d, 0xe5, 0x4f, 0x0c, 0x88, 0x33, 0x91, + 0x8a, 0x00, 0xc4, 0xd2, 0x34, 0xf7, 0x49, 0xcb, 0xb6, 0xd6, 0x23, 0xa1, + 0x53, 0x9e, 0x2a, 0x4f, 0x13, 0x12, 0xcb, 0x0e, 0x07, 0x42, 0x7f, 0xa5, + 0x5c, 0xb2, 0x5b, 0x6b, 0x59, 0x7c, 0xc3, 0x23, 0x00, 0x41, 0xe1, 0x97, + 0x14, 0xfd, 0x45, 0x4d, 0xc2, 0x2b, 0x5b, 0xb2, 0xbf, 0x3c, 0xaf, 0x14, + 0xee, 0x16, 0x1b, 0xe1, 0x78, 0x12, 0x4b, 0x26, 0x2e, 0xa0, 0xf5, 0x1c, + 0xd6, 0x25, 0xba, 0x93, 0xab, 0x4c, 0x14, 0xf2, 0x18, 0xe3, 0xf3, 0xae, + 0xaf, 0x48, 0x51, 0x05, 0x9e, 0x1d, 0x55, 0x1b, 0x27, 0x20, 0x71, 0x58, + 0x96, 0x96, 0x91, 0x9d, 0x56, 0x57, 0x56, 0x6c, 0x92, 0xc7, 0x04, 0x50, + 0x22, 0xf5, 0xdc, 0xd7, 0x31, 0xe9, 0x53, 0x16, 0xcb, 0x23, 0x0c, 0x67, + 0xda, 0xb9, 0x18, 0xdc, 0xc7, 0x70, 0xae, 0xb8, 0xc8, 0x3d, 0xeb, 0xbb, + 0x36, 0xe2, 0xe7, 0x46, 0x78, 0xb3, 0x83, 0x8f, 0xeb, 0x5c, 0xd8, 0xd1, + 0xe2, 0x59, 0x46, 0xfb, 0x86, 0x27, 0x76, 0x30, 0x16, 0x84, 0x0c, 0x4b, + 0x99, 0x25, 0x11, 0x18, 0xdb, 0x04, 0x64, 0xf0, 0x47, 0xb5, 0x66, 0xd9, + 0xa6, 0xeb, 0xc8, 0x97, 0x38, 0x0c, 0xc0, 0x1a, 0xea, 0xda, 0xc6, 0x19, + 0x60, 0x99, 0x9d, 0x4b, 0x79, 0x6d, 0x8e, 0x0e, 0x33, 0xc5, 0x47, 0x67, + 0x63, 0x6b, 0x1d, 0xca, 0x6d, 0xb5, 0x50, 0x03, 0x7d, 0xe2, 0x49, 0x23, + 0x14, 0x01, 0x9b, 0xac, 0xda, 0xad, 0xbd, 0xbc, 0x20, 0x03, 0xc9, 0x35, + 0x97, 0x6f, 0x0b, 0x3c, 0xc9, 0xb6, 0x36, 0x3c, 0xfa, 0x57, 0x77, 0x32, + 0x87, 0xb5, 0x06, 0x30, 0xac, 0xe1, 0x8f, 0x60, 0x71, 0xd6, 0xaa, 0x2f, + 0xda, 0x12, 0x70, 0x64, 0x93, 0x11, 0x83, 0xec, 0x3d, 0x28, 0x03, 0x16, + 0xee, 0xc2, 0x69, 0x60, 0x55, 0x82, 0x26, 0x72, 0x24, 0x6c, 0x85, 0x1d, + 0x3a, 0x55, 0x55, 0xd1, 0x2f, 0xdb, 0x9f, 0x23, 0x1f, 0x56, 0x02, 0xba, + 0x35, 0x68, 0xc5, 0xbc, 0x88, 0x26, 0x50, 0x59, 0xf2, 0x30, 0xdd, 0xb3, + 0x55, 0xbc, 0x84, 0x3f, 0x7e, 0x74, 0xe9, 0xd4, 0xb7, 0xb5, 0x00, 0x44, + 0x34, 0xd6, 0x58, 0x8d, 0xbb, 0x28, 0x59, 0x4c, 0x5d, 0xcf, 0x43, 0x59, + 0xa7, 0x44, 0x90, 0xf0, 0x6e, 0xad, 0x97, 0xea, 0xf5, 0xd1, 0xc9, 0x73, + 0x64, 0xce, 0x4b, 0x4d, 0x9f, 0x93, 0x1c, 0x0a, 0xa0, 0xb0, 0x5b, 0x92, + 0xa1, 0x5f, 0x24, 0x7f, 0xb3, 0xf4, 0xff, 0x00, 0x0a, 0x00, 0xa9, 0x6b, + 0xa7, 0x1b, 0x4b, 0x79, 0x9b, 0xce, 0x8e, 0x40, 0xdb, 0x79, 0x43, 0x9c, + 0x73, 0x4e, 0xbb, 0xd2, 0x52, 0x5b, 0x87, 0x91, 0xee, 0xe3, 0x8f, 0x77, + 0x3b, 0x48, 0x39, 0xff, 0x00, 0x3c, 0x55, 0xfd, 0xd1, 0x43, 0x6a, 0x61, + 0x21, 0xbe, 0x62, 0x0e, 0x42, 0xfb, 0x0f, 0xf0, 0xa6, 0xc8, 0xf0, 0x48, + 0x03, 0xb2, 0xc8, 0x0e, 0x39, 0xc0, 0xfa, 0xff, 0x00, 0x8d, 0x00, 0x67, + 0xc1, 0xa0, 0xc6, 0x67, 0x8f, 0x6d, 0xf2, 0x31, 0xdc, 0x30, 0x36, 0x9e, + 0x6b, 0x7f, 0x54, 0xb2, 0xfb, 0x6e, 0x94, 0xf1, 0x19, 0x04, 0x61, 0x24, + 0xdc, 0x4e, 0x33, 0xeb, 0x54, 0x23, 0x9e, 0x18, 0x9c, 0x4a, 0x89, 0x21, + 0xda, 0x77, 0x74, 0xab, 0x47, 0x57, 0x59, 0x60, 0x92, 0x23, 0x04, 0x80, + 0x38, 0x39, 0x21, 0x68, 0xb8, 0x58, 0xad, 0x3c, 0x36, 0x4f, 0xa9, 0xac, + 0xfe, 0x79, 0xe3, 0xb6, 0x38, 0xab, 0xf7, 0x36, 0x56, 0xf3, 0xfc, 0xf1, + 0x80, 0x41, 0x1d, 0x45, 0x71, 0xa6, 0xee, 0x5f, 0x33, 0xcc, 0x0e, 0x73, + 0x9a, 0xea, 0xf4, 0x8b, 0xa0, 0xd6, 0x82, 0x46, 0x2a, 0x03, 0x8f, 0xba, + 0x4f, 0x7a, 0x43, 0x2b, 0x5c, 0xdb, 0xc0, 0x96, 0x9e, 0x4b, 0x4a, 0x11, + 0xc9, 0xe4, 0x8e, 0x48, 0xad, 0x1b, 0x08, 0x2c, 0xa7, 0xb3, 0x48, 0x56, + 0x41, 0x23, 0xa7, 0x5d, 0xc3, 0x04, 0xd7, 0x2b, 0xa9, 0x5c, 0x3a, 0xde, + 0x48, 0x8a, 0xdc, 0x03, 0xd6, 0xa7, 0xd1, 0xa6, 0x79, 0x27, 0x23, 0x76, + 0x19, 0x46, 0xe0, 0x68, 0x03, 0x46, 0xf7, 0x4f, 0x51, 0x73, 0x2e, 0xc5, + 0x50, 0x33, 0x9f, 0x61, 0x55, 0xec, 0xb4, 0xd8, 0xdd, 0xd8, 0x4b, 0x70, + 0x84, 0xb7, 0xdd, 0x50, 0x7a, 0x54, 0x9a, 0xe5, 0xe3, 0x2a, 0x82, 0xb8, + 0xf9, 0xbd, 0x3d, 0x6b, 0x1a, 0xde, 0xe5, 0x9a, 0x55, 0x57, 0x23, 0x04, + 0xe0, 0x1f, 0x4a, 0x00, 0xe9, 0xbf, 0xb0, 0xa2, 0xf2, 0xe3, 0x20, 0x10, + 0xdd, 0xf1, 0xde, 0xab, 0xff, 0x00, 0x67, 0x66, 0xfd, 0xa3, 0xdc, 0xab, + 0x08, 0x50, 0x00, 0x0d, 0xf3, 0x13, 0x56, 0x2e, 0x2f, 0xda, 0x0d, 0x20, + 0xb7, 0x9b, 0x99, 0x00, 0xc1, 0xe7, 0xb5, 0x73, 0x50, 0xdf, 0x31, 0xb9, + 0x05, 0xbb, 0x9e, 0xa0, 0xf3, 0x40, 0x8e, 0x8e, 0x6d, 0x0f, 0x62, 0x06, + 0x8a, 0x67, 0x0f, 0x9f, 0x5a, 0xcf, 0x3f, 0x6f, 0x13, 0x3c, 0x4b, 0x2c, + 0x85, 0x53, 0xab, 0x13, 0x5a, 0xf7, 0x17, 0x72, 0xdb, 0x69, 0x4e, 0xf2, + 0x37, 0xce, 0xbf, 0x74, 0xfb, 0x57, 0x2f, 0x05, 0xf4, 0x92, 0x5d, 0x65, + 0xe5, 0x70, 0x49, 0xeb, 0x9a, 0x06, 0x68, 0x15, 0xd4, 0x20, 0x20, 0x97, + 0x07, 0x3c, 0xe0, 0xf3, 0x4b, 0x0d, 0xcd, 0xec, 0xd1, 0xbf, 0x95, 0x12, + 0x11, 0xf7, 0x49, 0x03, 0x14, 0xf9, 0xf5, 0x0f, 0x2e, 0xd3, 0x7b, 0x0f, + 0x9f, 0xa7, 0x22, 0xab, 0x69, 0xfa, 0x94, 0xdb, 0xfe, 0x43, 0xb9, 0x07, + 0x54, 0x23, 0xf9, 0x50, 0x03, 0xe4, 0x9e, 0x54, 0x25, 0xe6, 0xb7, 0xc6, + 0x3b, 0xe6, 0xac, 0x0d, 0x78, 0x08, 0x3c, 0xb3, 0x0b, 0x67, 0x18, 0xa6, + 0x6a, 0xba, 0x8c, 0x6a, 0xeb, 0x02, 0xa2, 0x92, 0x70, 0xc4, 0xb7, 0x6a, + 0xad, 0xe6, 0x27, 0xd9, 0xda, 0x46, 0x41, 0xe6, 0x93, 0x91, 0x8e, 0x86, + 0x81, 0x0d, 0x17, 0xce, 0xd2, 0x86, 0x8e, 0x10, 0x4f, 0xbd, 0x59, 0x33, + 0x5f, 0x5c, 0xb0, 0x1c, 0x26, 0xe1, 0x90, 0x42, 0xfa, 0x54, 0x5a, 0x5c, + 0xb1, 0xdc, 0x5c, 0x38, 0x2a, 0x04, 0xb8, 0x27, 0x03, 0xbd, 0x2d, 0xd6, + 0xa1, 0x25, 0x8d, 0xd0, 0x50, 0x7a, 0x75, 0x5e, 0xd4, 0x0c, 0x64, 0xf6, + 0xb3, 0xc7, 0x20, 0x59, 0x26, 0x6c, 0x9e, 0xe4, 0xf1, 0x51, 0x45, 0x6c, + 0x58, 0xfc, 0xe3, 0x3c, 0xe3, 0x20, 0xf5, 0xad, 0x2b, 0xf6, 0xfb, 0x45, + 0xb7, 0xda, 0xb1, 0xfb, 0xa2, 0x80, 0xf1, 0xeb, 0x59, 0x1a, 0x75, 0xd6, + 0xdb, 0xb5, 0x56, 0xff, 0x00, 0x56, 0xc7, 0x04, 0x52, 0xb0, 0x16, 0x4d, + 0xbc, 0x0b, 0x91, 0x23, 0x6c, 0x07, 0xa1, 0x03, 0x35, 0xb7, 0x65, 0x6f, + 0x6d, 0x2d, 0x88, 0x2a, 0x52, 0x46, 0x45, 0xc1, 0x23, 0xad, 0x62, 0x6a, + 0xa1, 0x20, 0x4d, 0xca, 0x72, 0x58, 0xf1, 0xec, 0x2a, 0x2d, 0x16, 0xf1, + 0xa3, 0xbb, 0x1b, 0xce, 0x50, 0x8e, 0x69, 0x88, 0xbf, 0x28, 0xb7, 0x83, + 0xe5, 0x65, 0xde, 0x7b, 0xad, 0x58, 0xd2, 0xa5, 0xb5, 0xe6, 0x00, 0xa5, + 0x49, 0x3c, 0x03, 0xc8, 0xaa, 0x1a, 0xc3, 0xac, 0x56, 0xea, 0xd1, 0x9f, + 0x9a, 0x56, 0x24, 0xd6, 0x45, 0x8c, 0xef, 0x1d, 0xe4, 0x6c, 0x18, 0xf5, + 0x19, 0xa6, 0x07, 0x6f, 0x7b, 0x73, 0x15, 0x85, 0xb8, 0x0e, 0x99, 0x63, + 0xd0, 0x74, 0xac, 0x31, 0xaf, 0xec, 0xb8, 0x0e, 0x61, 0x8c, 0x9e, 0x9d, + 0x39, 0xc7, 0xd6, 0xac, 0xeb, 0xd7, 0x49, 0x2d, 0xaa, 0x3f, 0x3b, 0x8f, + 0x1c, 0x8a, 0xe5, 0x24, 0xce, 0xea, 0x00, 0xf4, 0x6b, 0x5b, 0xc8, 0xaf, + 0xed, 0x3c, 0xd8, 0xc6, 0x31, 0xf7, 0x87, 0xa5, 0x63, 0x6a, 0x3a, 0x8b, + 0x26, 0x55, 0x70, 0x8a, 0x0f, 0xa7, 0x26, 0xab, 0x78, 0x76, 0xe7, 0xcb, + 0xb7, 0x65, 0x65, 0x66, 0xe7, 0x1c, 0x55, 0x5d, 0x75, 0xc3, 0x6a, 0x05, + 0x54, 0x10, 0xa1, 0x47, 0x06, 0x90, 0xcb, 0x56, 0x5a, 0xcc, 0x8b, 0x28, + 0x5f, 0x33, 0x76, 0x4f, 0xdd, 0x61, 0xd6, 0xba, 0x94, 0xb8, 0x1f, 0x64, + 0x59, 0x82, 0x82, 0x08, 0xe9, 0xef, 0x5e, 0x68, 0xd9, 0x12, 0x82, 0x3b, + 0x1a, 0xed, 0xec, 0xae, 0xa4, 0xfb, 0x32, 0xa1, 0x88, 0x15, 0xdb, 0x9c, + 0xee, 0xa1, 0x08, 0xcd, 0xd4, 0xf5, 0x79, 0x5a, 0x52, 0x8d, 0x23, 0x60, + 0x7f, 0x0a, 0xf1, 0x51, 0x58, 0xea, 0x87, 0xcd, 0x11, 0x86, 0x6e, 0x7f, + 0x85, 0xbb, 0xd6, 0x44, 0xec, 0x5e, 0xe6, 0x46, 0x6e, 0xec, 0x6a, 0x34, + 0x63, 0x1d, 0xc4, 0x6e, 0x33, 0xc1, 0x14, 0xba, 0x8c, 0xee, 0xae, 0x15, + 0xbe, 0xc6, 0xb3, 0x21, 0x04, 0xe3, 0x81, 0x5c, 0xc5, 0xc6, 0xa3, 0x28, + 0x95, 0x83, 0x3b, 0x12, 0x3b, 0x67, 0xa5, 0x6e, 0x8b, 0xd9, 0x4d, 0xb1, + 0xc4, 0x2b, 0xb7, 0x6e, 0x47, 0xcd, 0x5c, 0x8b, 0x12, 0x59, 0x89, 0xea, + 0x4d, 0x36, 0x08, 0xd8, 0xd3, 0xf5, 0x47, 0x2e, 0x10, 0x39, 0x3f, 0xec, + 0x1a, 0xe8, 0xcc, 0x7e, 0x55, 0xa8, 0xb8, 0x2f, 0xba, 0x3e, 0xaa, 0x9e, + 0xf5, 0xc1, 0xd9, 0x96, 0x17, 0xb0, 0xe0, 0x7f, 0x18, 0xae, 0xce, 0xe2, + 0x59, 0xbe, 0xc3, 0x22, 0xec, 0x50, 0xa1, 0x49, 0xce, 0xea, 0x62, 0x31, + 0x6f, 0x75, 0x99, 0xde, 0x6c, 0x79, 0x87, 0x03, 0x8d, 0xa3, 0x80, 0x2a, + 0xce, 0x9d, 0xa9, 0x3c, 0x88, 0x51, 0x9f, 0x7a, 0x9e, 0x19, 0x4f, 0x51, + 0x5c, 0xef, 0x39, 0x39, 0xab, 0x3a, 0x54, 0x86, 0x2d, 0x49, 0x4e, 0x09, + 0xcf, 0xf0, 0x8e, 0xf5, 0x28, 0x67, 0x60, 0xf6, 0xf1, 0x59, 0x59, 0x89, + 0x18, 0x06, 0x4f, 0xbc, 0xb5, 0x81, 0x36, 0xb7, 0x27, 0x9e, 0xc6, 0x32, + 0x14, 0x1f, 0xee, 0x8a, 0xbb, 0xa9, 0x5f, 0xc9, 0x2e, 0x98, 0xf1, 0x18, + 0x19, 0x36, 0xf4, 0x6c, 0xd7, 0x2c, 0xf9, 0xf2, 0xcd, 0x36, 0x07, 0x5d, + 0x67, 0x76, 0x9a, 0x84, 0x69, 0x04, 0x8a, 0x03, 0x03, 0xc1, 0x1d, 0xea, + 0xc5, 0xfc, 0x96, 0x96, 0x16, 0xde, 0x5b, 0xa6, 0xe7, 0xdb, 0x8c, 0x1a, + 0xc2, 0xf0, 0xf4, 0xc1, 0x12, 0x46, 0x91, 0x59, 0x82, 0x91, 0x8d, 0xa3, + 0x9a, 0x4d, 0x7e, 0xeb, 0xed, 0x37, 0x48, 0xca, 0x1c, 0x0c, 0x72, 0x1b, + 0xad, 0x1b, 0x01, 0x62, 0xda, 0xfe, 0x06, 0x25, 0x3c, 0x84, 0x08, 0x7a, + 0xec, 0x18, 0x35, 0xb1, 0x05, 0x8d, 0xac, 0xf1, 0xa4, 0x8a, 0xab, 0xb7, + 0x1d, 0x6b, 0x8b, 0x8a, 0x43, 0x1d, 0xc2, 0x11, 0xeb, 0xcd, 0x75, 0xf2, + 0xdd, 0xc5, 0x6f, 0xa4, 0xcb, 0x1c, 0x4d, 0xf3, 0x15, 0xc8, 0x18, 0xa1, + 0x01, 0x4a, 0xec, 0xd8, 0x0b, 0xd5, 0x27, 0x7b, 0x84, 0xe9, 0xb7, 0x81, + 0x56, 0xec, 0x6c, 0x62, 0xb9, 0x95, 0x9d, 0x70, 0xd1, 0x91, 0xd7, 0xd0, + 0xd7, 0x20, 0x66, 0x7d, 0xfb, 0xf7, 0x1c, 0x93, 0x5d, 0x66, 0x99, 0x27, + 0x93, 0x68, 0x2e, 0x03, 0xa8, 0xdc, 0x87, 0x2b, 0x9e, 0xf4, 0x20, 0x25, + 0xba, 0xd3, 0x63, 0x8a, 0x5b, 0x78, 0xfc, 0xe8, 0xa2, 0x4d, 0xd9, 0x7d, + 0xc7, 0x93, 0x56, 0x67, 0xd1, 0xa2, 0x64, 0xdd, 0x0b, 0x14, 0x24, 0x70, + 0x54, 0xf1, 0x5c, 0x7c, 0xda, 0x84, 0xd3, 0x5c, 0x34, 0x8e, 0xd9, 0x04, + 0xf4, 0x35, 0xd6, 0xd9, 0xdc, 0x7d, 0x9f, 0x48, 0x79, 0x5d, 0x89, 0x40, + 0x9b, 0x97, 0x3d, 0x8d, 0x00, 0x63, 0x5c, 0xa5, 0xfd, 0x94, 0xac, 0x12, + 0x69, 0x36, 0xa0, 0x1c, 0xe7, 0xbd, 0x33, 0xed, 0xd7, 0xcb, 0x18, 0x67, + 0x2a, 0xeb, 0xee, 0xb5, 0x5a, 0x3b, 0xe9, 0x2f, 0x6e, 0x0a, 0x3b, 0xb6, + 0xe6, 0x3c, 0x73, 0x57, 0xf5, 0x0b, 0x94, 0xb2, 0xb3, 0x86, 0x26, 0x45, + 0xf3, 0x1c, 0x73, 0xc7, 0x4a, 0x00, 0x94, 0x6b, 0xb2, 0x0b, 0x4f, 0x26, + 0x6b, 0x7f, 0x93, 0x1d, 0x47, 0x14, 0xfb, 0x7d, 0x56, 0xd5, 0xe1, 0x64, + 0x62, 0x63, 0x62, 0x46, 0x09, 0x14, 0xd8, 0x08, 0xbd, 0xb4, 0x77, 0x9c, + 0x03, 0xf2, 0xe7, 0x77, 0x4e, 0x05, 0x56, 0xb2, 0x5b, 0x5b, 0x92, 0x63, + 0x48, 0xb8, 0x27, 0xef, 0x67, 0x9a, 0x62, 0x36, 0xf4, 0xd9, 0xe0, 0x0c, + 0x49, 0xb8, 0x46, 0xe3, 0x8e, 0x69, 0xb7, 0xf2, 0xc0, 0xf2, 0x80, 0x76, + 0xb6, 0x3d, 0xb3, 0x54, 0x62, 0x82, 0xcd, 0x6f, 0x3c, 0x82, 0x72, 0xd8, + 0xc1, 0x03, 0xa0, 0x34, 0xfb, 0xc1, 0x6f, 0x0c, 0xf1, 0x80, 0xfb, 0x36, + 0xb6, 0x4e, 0x06, 0x73, 0x40, 0x1a, 0x31, 0xbd, 0xb8, 0xb1, 0x68, 0x49, + 0x51, 0x9e, 0xa0, 0x52, 0x40, 0xf6, 0x76, 0x7b, 0x92, 0x32, 0x76, 0x90, + 0x3b, 0x77, 0xac, 0xdb, 0xc9, 0x9d, 0x48, 0xf2, 0x10, 0x79, 0x64, 0x67, + 0x78, 0x15, 0x25, 0x84, 0xd3, 0xed, 0x2f, 0x30, 0x53, 0x18, 0xef, 0xde, + 0x90, 0xcb, 0x8a, 0x62, 0x62, 0xc0, 0x16, 0x6c, 0x9c, 0xe0, 0x0e, 0x45, + 0x4f, 0x73, 0x72, 0xb2, 0x42, 0xa9, 0xe4, 0xbe, 0x14, 0xf7, 0x1d, 0x6b, + 0x2e, 0x1d, 0x56, 0xc6, 0x2d, 0x49, 0xa4, 0x75, 0x65, 0x66, 0xf9, 0x73, + 0x9f, 0xe9, 0x49, 0xa8, 0xbc, 0xb2, 0x5c, 0x33, 0x99, 0x07, 0x95, 0xfc, + 0x20, 0x35, 0x17, 0x15, 0x8d, 0x2b, 0x47, 0x64, 0x69, 0x5a, 0x28, 0x0e, + 0x1c, 0xe7, 0x1e, 0x95, 0x04, 0xa5, 0x05, 0xca, 0xc2, 0xe8, 0xab, 0x23, + 0xe4, 0x80, 0x4d, 0x43, 0xa5, 0x4b, 0x24, 0x2e, 0x5f, 0xcc, 0xcc, 0x78, + 0xc9, 0x5c, 0xe6, 0xab, 0xdd, 0xeb, 0xb0, 0x8b, 0xd5, 0x76, 0x8d, 0x37, + 0x21, 0xe3, 0xd4, 0x51, 0x71, 0x9a, 0x1b, 0x59, 0x56, 0x45, 0x65, 0xc0, + 0x18, 0xfe, 0x75, 0x49, 0xe5, 0x65, 0xba, 0x0a, 0x07, 0xcb, 0xb8, 0x56, + 0x82, 0x5c, 0xc3, 0x73, 0x07, 0x9b, 0xbd, 0x00, 0x60, 0x38, 0x26, 0xaa, + 0x11, 0x99, 0xb1, 0xe6, 0x47, 0xb0, 0x90, 0x73, 0xb8, 0x50, 0xc1, 0x12, + 0x5e, 0x2e, 0xfd, 0xe0, 0x7a, 0x8a, 0x82, 0x3b, 0x77, 0x91, 0xfc, 0xb1, + 0xc9, 0xc6, 0x4b, 0x62, 0xae, 0x49, 0xe4, 0xb4, 0x65, 0x84, 0xaa, 0x5c, + 0x9e, 0x80, 0xd4, 0x09, 0x24, 0x51, 0x5c, 0x3f, 0x99, 0x26, 0xc6, 0xc6, + 0x16, 0x80, 0x20, 0x58, 0x5f, 0x73, 0xee, 0x23, 0xe5, 0x38, 0x23, 0x15, + 0x67, 0x54, 0x7f, 0x2f, 0x4f, 0xb8, 0x3f, 0x41, 0xfa, 0x0a, 0x75, 0xbb, + 0x09, 0x62, 0x95, 0xdc, 0xa8, 0xcb, 0x72, 0x4d, 0x3e, 0xf9, 0x61, 0xb9, + 0xb6, 0x92, 0x31, 0x2a, 0x9d, 0xc2, 0x84, 0x0c, 0xe7, 0xf4, 0xb6, 0x2f, + 0x6c, 0xfe, 0x80, 0xd6, 0x9d, 0xdb, 0x1f, 0xb4, 0x1c, 0x1e, 0xc3, 0xf9, + 0x54, 0x36, 0x16, 0x2b, 0x0c, 0x2c, 0xa6, 0x55, 0x19, 0x3e, 0xb5, 0x25, + 0xf4, 0x64, 0x48, 0x1b, 0x72, 0x9c, 0x8e, 0xc6, 0x9a, 0x13, 0xd8, 0x68, + 0x63, 0xb3, 0xad, 0x1b, 0x9b, 0x1d, 0x78, 0xa8, 0x37, 0x1d, 0xbd, 0x69, + 0x73, 0xd3, 0x9e, 0x2a, 0x84, 0x4e, 0x19, 0xf3, 0x96, 0x35, 0x1e, 0xf7, + 0xc1, 0xc5, 0x34, 0x12, 0x3b, 0xe6, 0x99, 0xb9, 0xbb, 0x1a, 0x04, 0x3a, + 0x5d, 0xd2, 0x47, 0xb0, 0x1c, 0x67, 0xbd, 0x48, 0xc2, 0x69, 0x1d, 0xd3, + 0xf8, 0x18, 0xa9, 0x24, 0xd3, 0x12, 0x39, 0x1c, 0x83, 0x8f, 0x97, 0xd4, + 0x9c, 0x0a, 0xb8, 0x00, 0xda, 0x47, 0x4e, 0x07, 0x39, 0xa9, 0x65, 0x22, + 0x66, 0x8d, 0x3c, 0x86, 0x0e, 0x41, 0xe0, 0xe3, 0x35, 0x9f, 0xa4, 0x2e, + 0xd8, 0xf5, 0x10, 0x46, 0x33, 0x8c, 0x7e, 0x46, 0xa7, 0x86, 0x15, 0x91, + 0x89, 0x76, 0xdf, 0x81, 0x9e, 0xb4, 0xd9, 0x84, 0x69, 0xb8, 0x00, 0x17, + 0xd2, 0xa4, 0x64, 0xba, 0x62, 0x1f, 0xec, 0x99, 0xc1, 0xea, 0x64, 0x6c, + 0x7e, 0x42, 0x96, 0xc2, 0x21, 0x6e, 0x93, 0xbc, 0x85, 0x13, 0x77, 0x41, + 0x9e, 0x4d, 0x56, 0x8d, 0x63, 0x63, 0xf7, 0xca, 0xa0, 0x1c, 0xf3, 0xc5, + 0x69, 0x42, 0xb6, 0xb1, 0x69, 0xe2, 0x69, 0x0a, 0xb0, 0xc1, 0x05, 0x97, + 0xbd, 0x30, 0x2b, 0x41, 0x14, 0x51, 0xbc, 0x92, 0x0f, 0x32, 0x47, 0x7e, + 0x80, 0x0e, 0x05, 0x10, 0x13, 0xbc, 0xcb, 0x14, 0x49, 0xb9, 0x4e, 0xd2, + 0xcd, 0xc9, 0x06, 0xaf, 0xd9, 0xdc, 0xdb, 0x2e, 0x98, 0x66, 0x8d, 0x8b, + 0xac, 0x79, 0x04, 0x1e, 0xa3, 0xda, 0xa9, 0x58, 0x6a, 0x16, 0xb7, 0x37, + 0x12, 0xc1, 0xe5, 0x08, 0xe5, 0x6c, 0xb0, 0x00, 0xf5, 0xa0, 0x05, 0x95, + 0xee, 0x16, 0x68, 0xf7, 0xe7, 0x12, 0x1c, 0x6e, 0x4e, 0xd5, 0x6e, 0x1b, + 0x30, 0xfc, 0xc8, 0xec, 0xde, 0x99, 0x35, 0x8b, 0x7b, 0xad, 0x4d, 0x6d, + 0x38, 0x0a, 0x76, 0xa2, 0x9e, 0x17, 0x1d, 0x6b, 0x56, 0x7b, 0xf1, 0x71, + 0xa5, 0x47, 0x71, 0x07, 0xca, 0x64, 0x1f, 0x36, 0x3b, 0x50, 0x03, 0xb4, + 0xfb, 0x39, 0x45, 0xd4, 0xcb, 0x29, 0x49, 0x23, 0xce, 0x57, 0x07, 0x38, + 0xad, 0x0b, 0x9f, 0xb3, 0xdb, 0xc0, 0xcd, 0x26, 0xd5, 0x18, 0xae, 0x1a, + 0xdf, 0x59, 0x96, 0xdb, 0x51, 0x56, 0x8c, 0x9c, 0x06, 0xe7, 0x9e, 0xb5, + 0xbf, 0xae, 0xce, 0x65, 0x8c, 0x4a, 0x0f, 0xc8, 0x17, 0x20, 0x51, 0x7d, + 0x00, 0x76, 0x94, 0x6c, 0x23, 0xbc, 0x90, 0xc7, 0x33, 0x29, 0x90, 0xf4, + 0x71, 0xc5, 0x6a, 0x5e, 0x3c, 0x76, 0xea, 0x5e, 0x46, 0xc2, 0x81, 0xf9, + 0xd7, 0x9b, 0xad, 0xfc, 0xcb, 0x70, 0x1c, 0x31, 0xc0, 0x3d, 0x2b, 0xad, + 0xbb, 0xba, 0x5b, 0xab, 0x48, 0x4b, 0x48, 0x3e, 0x54, 0xce, 0x33, 0xde, + 0x80, 0x22, 0x97, 0x58, 0x8f, 0xed, 0x21, 0xda, 0xda, 0x32, 0x17, 0xa1, + 0x6e, 0xbf, 0x9d, 0x74, 0x76, 0x17, 0x36, 0xf7, 0xb6, 0xe2, 0x48, 0xbe, + 0x5c, 0x75, 0x5f, 0x4a, 0xf3, 0x2b, 0x99, 0x5a, 0x49, 0x98, 0x93, 0xde, + 0xb7, 0xfc, 0x31, 0x78, 0xd1, 0x2c, 0xc8, 0xc4, 0x91, 0x8e, 0x31, 0x42, + 0xb8, 0x1a, 0xfa, 0xb6, 0xb2, 0x62, 0x91, 0xa2, 0x83, 0x0a, 0x07, 0x57, + 0x35, 0x91, 0x6d, 0xaf, 0xbc, 0x53, 0x83, 0xe7, 0x16, 0xc9, 0xe4, 0x37, + 0x20, 0xd5, 0x4d, 0x6e, 0x41, 0xc6, 0xc2, 0x79, 0x3c, 0xe4, 0x56, 0x3e, + 0xc9, 0x15, 0x55, 0xd9, 0x08, 0x56, 0xfb, 0xa4, 0x8e, 0xb4, 0x5a, 0xe1, + 0x7b, 0x1e, 0x9f, 0x6d, 0x76, 0x93, 0xdb, 0x79, 0xe4, 0xed, 0xf5, 0x15, + 0xcc, 0xea, 0xda, 0xb4, 0xb2, 0x48, 0x77, 0xb9, 0x54, 0x1d, 0x14, 0x1a, + 0x9b, 0x49, 0xbd, 0x23, 0x49, 0x09, 0xb4, 0xb7, 0xa9, 0xac, 0x2d, 0x5e, + 0x52, 0x6e, 0xbe, 0xe9, 0x51, 0x8e, 0x94, 0x74, 0x0d, 0x89, 0x61, 0xd5, + 0xfc, 0xa9, 0x03, 0x65, 0xd7, 0x9e, 0xb9, 0xae, 0xd3, 0x4c, 0xd4, 0x0d, + 0xcd, 0xb8, 0x69, 0x0e, 0x70, 0x33, 0xbb, 0xd6, 0xbc, 0xd1, 0xbe, 0x61, + 0x5d, 0x5e, 0x89, 0x3c, 0xcb, 0xa6, 0x84, 0x8d, 0x03, 0x7b, 0x93, 0x42, + 0xd0, 0x2f, 0x71, 0xda, 0xde, 0xa7, 0x24, 0xd2, 0x12, 0xe4, 0x88, 0xc1, + 0xc2, 0xa0, 0xac, 0x13, 0x7e, 0x57, 0x9d, 0x83, 0x15, 0x63, 0x5a, 0x95, + 0x99, 0xe3, 0xde, 0x9b, 0x4f, 0x38, 0xc5, 0x65, 0x37, 0xcc, 0xb8, 0xa5, + 0xb8, 0xce, 0xcb, 0xc3, 0xfa, 0x8e, 0xe6, 0x5c, 0x31, 0x31, 0x9e, 0x19, + 0x4f, 0x6a, 0xd3, 0xd7, 0xf5, 0x13, 0x04, 0x3e, 0x4c, 0x2d, 0xb4, 0x63, + 0x2c, 0x45, 0x72, 0x3e, 0x1f, 0x67, 0x8e, 0x66, 0x54, 0x23, 0x92, 0x3a, + 0xd6, 0x8e, 0xbb, 0x2c, 0xa6, 0xdd, 0xb7, 0xed, 0x23, 0x81, 0x91, 0x4c, + 0x46, 0x1c, 0xb7, 0xed, 0xb8, 0x90, 0x33, 0xcf, 0x7a, 0xbd, 0xa6, 0x6a, + 0x0c, 0x65, 0x01, 0x49, 0x47, 0xed, 0x83, 0xd6, 0xb1, 0x58, 0x64, 0x54, + 0xd6, 0x44, 0xad, 0xdc, 0x58, 0xe4, 0xee, 0x14, 0xac, 0x17, 0x3d, 0x06, + 0x19, 0x9b, 0xc9, 0x37, 0x0e, 0xff, 0x00, 0x2a, 0x8c, 0x94, 0xc7, 0x53, + 0x5c, 0xa6, 0xad, 0xac, 0xbc, 0xb7, 0x27, 0x71, 0x2c, 0x7d, 0x33, 0xc0, + 0xad, 0xcd, 0xf7, 0x3f, 0x63, 0x3f, 0x2a, 0x6d, 0xf4, 0xae, 0x26, 0xeb, + 0xe6, 0xb9, 0x90, 0xf4, 0xf9, 0x8f, 0x5a, 0x7b, 0x86, 0xc6, 0x85, 0xb5, + 0xfe, 0xe9, 0x07, 0x25, 0x1b, 0x3c, 0x10, 0x6b, 0xb5, 0xd2, 0xaf, 0x1e, + 0xe6, 0x0d, 0x93, 0x1c, 0xb2, 0xf7, 0xf5, 0xaf, 0x36, 0x1c, 0x11, 0xcd, + 0x76, 0x7a, 0x54, 0xb3, 0xad, 0xbe, 0x42, 0xab, 0x1c, 0x0e, 0x49, 0xc5, + 0x1b, 0x06, 0xe2, 0x6b, 0x9a, 0xf1, 0x8e, 0x46, 0x86, 0x37, 0x28, 0x83, + 0x8c, 0x2f, 0x53, 0x59, 0x56, 0x3a, 0xa3, 0xf9, 0xc0, 0xa4, 0xcc, 0xad, + 0xe8, 0x4f, 0x5a, 0xcd, 0xd5, 0x98, 0xb6, 0xa5, 0x26, 0x41, 0x1e, 0xd5, + 0x5e, 0x24, 0x3c, 0xc8, 0x19, 0x46, 0xc2, 0x38, 0xcf, 0x26, 0x86, 0xba, + 0x85, 0xfa, 0x1e, 0x97, 0x61, 0x75, 0xf6, 0xb8, 0xc1, 0x70, 0x03, 0x0e, + 0xa6, 0xb2, 0x75, 0x8d, 0x7a, 0x28, 0xe4, 0xf2, 0x22, 0x08, 0x02, 0x9f, + 0xbc, 0xdc, 0xe6, 0x93, 0x4f, 0x9c, 0xa5, 0x91, 0x22, 0x37, 0x24, 0xaf, + 0x51, 0x5c, 0x65, 0xeb, 0x97, 0xbb, 0x90, 0x93, 0x9f, 0x98, 0xd3, 0xdc, + 0x36, 0x3b, 0x3d, 0x3f, 0x5a, 0x2e, 0xea, 0xb2, 0x85, 0x65, 0x3c, 0x06, + 0x1d, 0xab, 0x5e, 0x79, 0x22, 0x8d, 0x3c, 0xd9, 0x1f, 0x11, 0x81, 0x9c, + 0xd7, 0x05, 0xa2, 0xcb, 0x89, 0xca, 0x31, 0x3b, 0x6b, 0x67, 0x5e, 0xba, + 0x22, 0xc6, 0x38, 0xd1, 0x8f, 0x5e, 0xfc, 0x52, 0x02, 0xdc, 0x17, 0xb6, + 0x29, 0x7d, 0x24, 0xab, 0x13, 0x03, 0x21, 0xe5, 0xcf, 0x35, 0xaa, 0xea, + 0x93, 0x6d, 0x2a, 0x03, 0x03, 0xce, 0x6b, 0xcf, 0xac, 0x6e, 0x1d, 0x6e, + 0xd5, 0x49, 0xca, 0x93, 0xce, 0x6b, 0xae, 0xbc, 0xbb, 0xfb, 0x06, 0x8f, + 0x2e, 0xc7, 0x05, 0x88, 0xe3, 0x07, 0x91, 0x4c, 0x05, 0x68, 0x61, 0x7b, + 0xf9, 0x9a, 0x59, 0x91, 0xb2, 0x02, 0xa4, 0x62, 0x99, 0x36, 0x9b, 0x16, + 0x41, 0x00, 0x80, 0x39, 0xc0, 0xae, 0x6b, 0x4e, 0xbc, 0x79, 0x6e, 0x95, + 0x24, 0xe7, 0x71, 0xeb, 0x5d, 0x26, 0xa7, 0x79, 0x25, 0x86, 0x9e, 0xa1, + 0x41, 0x69, 0x9f, 0x80, 0x47, 0x5c, 0x52, 0x02, 0x08, 0x6c, 0xae, 0x4a, + 0x2b, 0xac, 0xac, 0x99, 0xc9, 0xdb, 0x9e, 0xd4, 0xc1, 0x1d, 0xcc, 0x33, + 0xab, 0x7c, 0xad, 0x23, 0xe7, 0x1c, 0x76, 0xa6, 0xe9, 0x17, 0x12, 0x4d, + 0xf3, 0xa9, 0x63, 0xce, 0x19, 0x49, 0xa5, 0x9f, 0x56, 0x06, 0xff, 0x00, + 0xc8, 0x87, 0x00, 0xa1, 0xdb, 0x9c, 0x75, 0xa0, 0x09, 0x64, 0xd5, 0xa7, + 0xb6, 0x84, 0x45, 0xf6, 0x51, 0x96, 0x04, 0x67, 0x35, 0x98, 0xd7, 0xb2, + 0xc8, 0x5b, 0x6c, 0x2a, 0x08, 0x3c, 0xfb, 0x1a, 0xd7, 0xbb, 0x70, 0xd6, + 0xe8, 0x7c, 0xbf, 0x9b, 0xaf, 0x3d, 0xab, 0x26, 0x1d, 0x46, 0x23, 0x74, + 0x63, 0x90, 0x29, 0xdd, 0xc6, 0x40, 0xc7, 0x34, 0x01, 0x34, 0x47, 0x51, + 0x08, 0x4a, 0x37, 0xdf, 0x19, 0xc6, 0x3a, 0xd4, 0xb0, 0x43, 0x7b, 0x79, + 0x08, 0x67, 0x9a, 0x44, 0xcf, 0x51, 0x8c, 0x62, 0x99, 0x7f, 0x77, 0x24, + 0x70, 0xe1, 0x0e, 0xc4, 0x4e, 0x32, 0x3a, 0x93, 0x50, 0xe9, 0x1a, 0xcc, + 0xab, 0x3f, 0x94, 0xec, 0x5d, 0x1b, 0xb3, 0x50, 0x04, 0xb1, 0xd8, 0x5c, + 0xb7, 0x98, 0x0c, 0xad, 0x95, 0x1c, 0x12, 0x78, 0xa9, 0x6d, 0xb4, 0xa9, + 0x27, 0xb3, 0xdf, 0x2e, 0x43, 0xfd, 0x73, 0x4e, 0xd6, 0xee, 0x1e, 0xde, + 0xdc, 0x1e, 0x42, 0xb9, 0xe8, 0x3b, 0xd6, 0x5e, 0x95, 0xab, 0x4d, 0x15, + 0xda, 0xa0, 0x3c, 0x37, 0x18, 0xec, 0x68, 0x11, 0xb4, 0x9a, 0x52, 0x24, + 0x5b, 0xb1, 0xdf, 0xb9, 0xa7, 0x69, 0xb6, 0x31, 0xbc, 0x93, 0x24, 0xd3, + 0x43, 0x28, 0x2d, 0xf2, 0x00, 0x79, 0x15, 0x0e, 0xab, 0x71, 0x2c, 0x76, + 0xa5, 0xc9, 0xf9, 0x7b, 0x0f, 0x53, 0x5c, 0xec, 0x77, 0x92, 0xac, 0xc1, + 0xb7, 0x77, 0xed, 0x40, 0xce, 0xfa, 0x3d, 0x2a, 0xda, 0x24, 0xe6, 0x35, + 0xc6, 0x39, 0x24, 0x56, 0x4d, 0xd2, 0x59, 0x9d, 0x56, 0x19, 0x12, 0xe8, + 0x22, 0xc7, 0xd5, 0x54, 0x70, 0x6a, 0xc5, 0xdd, 0xdb, 0x49, 0xa2, 0x03, + 0xe6, 0x61, 0x82, 0xfc, 0xc7, 0x3c, 0x9a, 0xe2, 0x1a, 0xe5, 0xcb, 0xe4, + 0x31, 0xa6, 0x23, 0xd2, 0x1e, 0xda, 0x0b, 0x8c, 0x38, 0xda, 0xc3, 0x1c, + 0x62, 0xa9, 0xea, 0x29, 0x69, 0x15, 0xa3, 0xc5, 0x2b, 0x85, 0xdc, 0x30, + 0x02, 0xf5, 0xac, 0xbf, 0x0e, 0x5d, 0x0f, 0x25, 0xfc, 0xd6, 0x05, 0x7a, + 0x00, 0xc7, 0xa5, 0x66, 0x6b, 0xd7, 0x0e, 0xb7, 0x85, 0x16, 0x4c, 0xe4, + 0x64, 0x91, 0x40, 0x1b, 0xfa, 0x48, 0xb3, 0x16, 0x66, 0x08, 0xe6, 0xdd, + 0x27, 0xfb, 0x7c, 0x13, 0x53, 0x47, 0x06, 0xc9, 0x41, 0xc8, 0xd8, 0x33, + 0xbf, 0x38, 0xe2, 0xb9, 0x3d, 0x36, 0x59, 0xa3, 0xb9, 0x87, 0xcc, 0x0c, + 0x11, 0xcf, 0xca, 0xc6, 0xba, 0x8d, 0x56, 0xe5, 0x17, 0x4f, 0xdc, 0xa5, + 0x72, 0x17, 0x24, 0x0f, 0xe2, 0x34, 0x26, 0x07, 0x10, 0x47, 0x15, 0xd9, + 0xf8, 0x7a, 0xda, 0x39, 0x74, 0xa8, 0xd9, 0x86, 0x4f, 0x3f, 0xce, 0xb8, + 0xdc, 0x57, 0x71, 0xe1, 0x91, 0x8d, 0x21, 0x3e, 0xa6, 0x92, 0x03, 0x94, + 0xd5, 0xa3, 0x0b, 0xaa, 0x4e, 0xa3, 0xa0, 0x6a, 0xb1, 0xa0, 0x46, 0xb2, + 0xdf, 0xb2, 0xb7, 0xf7, 0x4d, 0x43, 0xac, 0xff, 0x00, 0xc8, 0x5a, 0xe3, + 0xfd, 0xea, 0xb1, 0xe1, 0xc0, 0x7f, 0xb4, 0xf3, 0xfe, 0xc1, 0xa0, 0x09, + 0xbc, 0x47, 0x6c, 0x90, 0x24, 0x3b, 0x73, 0xce, 0x6b, 0x12, 0xdd, 0x77, + 0x5c, 0xc6, 0xa7, 0xa1, 0x61, 0x9a, 0xe8, 0xfc, 0x53, 0xfe, 0xaa, 0x0f, + 0xad, 0x73, 0xd6, 0x7f, 0xf1, 0xfb, 0x0f, 0xfb, 0xe2, 0x98, 0x1b, 0xfa, + 0xb6, 0x99, 0x1d, 0xb6, 0x9f, 0x2c, 0x88, 0xcc, 0x4f, 0x1d, 0x6b, 0x99, + 0x50, 0x44, 0x8a, 0x3b, 0xe6, 0xbb, 0x5d, 0x7f, 0xfe, 0x41, 0x32, 0x7d, + 0x47, 0xf3, 0xae, 0x2c, 0x7f, 0xad, 0x5f, 0xad, 0x01, 0xd0, 0xe9, 0x35, + 0x5b, 0x29, 0x13, 0x4d, 0x79, 0x4c, 0xcc, 0x40, 0x51, 0xc5, 0x73, 0xd6, + 0xab, 0xba, 0xe6, 0x21, 0xd3, 0x2c, 0x2b, 0xaf, 0xd6, 0x7f, 0xe4, 0x0b, + 0x27, 0xfb, 0xab, 0x5c, 0x85, 0xa9, 0xc5, 0xd4, 0x5f, 0xef, 0x0a, 0x00, + 0xd7, 0xd7, 0x2d, 0x4c, 0x10, 0x83, 0xb8, 0x95, 0xdd, 0x8c, 0x7e, 0x15, + 0x53, 0x46, 0x8e, 0x49, 0x6e, 0x4a, 0xc4, 0xc1, 0x5b, 0x6f, 0x7a, 0xd5, + 0xf1, 0x20, 0xff, 0x00, 0x44, 0x5f, 0xf7, 0xc7, 0xf2, 0xaa, 0x1e, 0x1c, + 0x00, 0x5f, 0x36, 0x4f, 0xf0, 0x1a, 0x00, 0xa9, 0xa9, 0x46, 0xe9, 0x76, + 0xde, 0x63, 0x02, 0xd9, 0x1d, 0x2b, 0x52, 0x3b, 0x5b, 0x99, 0x6c, 0x50, + 0x20, 0x5d, 0xa1, 0x37, 0x67, 0xbd, 0x67, 0x6b, 0x3c, 0xea, 0x4f, 0x8f, + 0x41, 0x5d, 0x2e, 0x9f, 0xff, 0x00, 0x20, 0xf1, 0xff, 0x00, 0x5c, 0x68, + 0x03, 0x98, 0xd3, 0x3c, 0xc4, 0xd5, 0xd0, 0x21, 0xc3, 0x67, 0x14, 0xfd, + 0x7b, 0x72, 0xea, 0x72, 0x02, 0x73, 0xd2, 0x8b, 0x03, 0x8d, 0x75, 0x7f, + 0xde, 0x34, 0xff, 0x00, 0x11, 0x71, 0xaa, 0x49, 0xc7, 0xa7, 0xf2, 0xa6, + 0x22, 0xea, 0xdb, 0xb7, 0xfc, 0x23, 0xad, 0x2b, 0x48, 0xdd, 0x06, 0x17, + 0x3c, 0x56, 0x35, 0x92, 0x87, 0xbb, 0x8d, 0x3d, 0x5b, 0x15, 0xd1, 0xc7, + 0x93, 0xe1, 0x56, 0xe3, 0x3f, 0x28, 0xae, 0x7b, 0x4e, 0xff, 0x00, 0x90, + 0x84, 0x1f, 0xef, 0x8a, 0x43, 0x35, 0x7c, 0x41, 0x6c, 0x96, 0xf0, 0x5a, + 0xe3, 0xb8, 0x39, 0xac, 0xed, 0x31, 0x43, 0x5e, 0x46, 0x07, 0x43, 0x5a, + 0xfe, 0x28, 0xc9, 0x8a, 0xd7, 0x9e, 0x30, 0x6b, 0x37, 0x44, 0x00, 0x6a, + 0x70, 0x8f, 0x7a, 0x18, 0x22, 0xff, 0x00, 0x89, 0x23, 0x58, 0x96, 0x01, + 0xd4, 0x73, 0x58, 0x96, 0xc5, 0x4d, 0xcc, 0x78, 0x1f, 0xc4, 0x2b, 0x7f, + 0xc5, 0x43, 0xe4, 0x84, 0xfd, 0x6b, 0x9d, 0xb3, 0xff, 0x00, 0x8f, 0xa8, + 0xff, 0x00, 0xde, 0x14, 0x07, 0x53, 0xaa, 0xf1, 0x0c, 0x2a, 0xba, 0x7c, + 0x65, 0x47, 0x46, 0xfe, 0x95, 0xca, 0x16, 0x03, 0xa8, 0xae, 0xcf, 0x5e, + 0x52, 0xfa, 0x49, 0x38, 0xfb, 0xb8, 0x35, 0xc6, 0x18, 0xc3, 0x77, 0xa1, + 0x81, 0xd4, 0xf8, 0x55, 0x52, 0x58, 0x66, 0x25, 0x41, 0xc1, 0x15, 0x9d, + 0xaf, 0xae, 0xdd, 0x5a, 0x51, 0x8e, 0x38, 0xad, 0x6f, 0x09, 0xa0, 0x4b, + 0x49, 0x7d, 0xda, 0xb3, 0xbc, 0x4a, 0x36, 0xea, 0x8c, 0x7d, 0x40, 0xa5, + 0xd0, 0x66, 0x21, 0x7d, 0xac, 0x06, 0x2b, 0xd0, 0xec, 0x51, 0x4d, 0x84, + 0x67, 0x68, 0xe6, 0x3f, 0xe9, 0x5e, 0x78, 0x53, 0x73, 0x03, 0x9a, 0xf4, + 0x6b, 0x01, 0x9d, 0x3e, 0x1f, 0xfa, 0xe6, 0x3f, 0x95, 0x08, 0x47, 0x9d, + 0xce, 0xd8, 0xb8, 0x93, 0x9f, 0xe2, 0x34, 0x8a, 0xe4, 0x32, 0xf7, 0xcd, + 0x25, 0xe2, 0xed, 0xbe, 0x98, 0x7a, 0x39, 0xa7, 0x44, 0x9b, 0xe4, 0x8c, + 0x7b, 0x8a, 0x6d, 0x02, 0x3b, 0x8b, 0x60, 0x1b, 0x4b, 0x5c, 0x81, 0x9f, + 0x2f, 0x9f, 0xca, 0xb8, 0x93, 0xf7, 0x8d, 0x77, 0x2a, 0xbe, 0x55, 0x80, + 0x07, 0xae, 0xcc, 0x57, 0x0c, 0x7e, 0xf1, 0xfa, 0xd2, 0x63, 0x44, 0x96, + 0x32, 0x0f, 0xed, 0x18, 0x17, 0x1f, 0xf2, 0xd0, 0x7f, 0x3a, 0xef, 0x2f, + 0x31, 0xfd, 0x93, 0x39, 0xc0, 0xff, 0x00, 0x56, 0xd5, 0xc1, 0xd8, 0xc7, + 0xff, 0x00, 0x13, 0x2b, 0x73, 0xff, 0x00, 0x4d, 0x07, 0xf3, 0xae, 0xf6, + 0xed, 0x73, 0xa3, 0x4f, 0xcf, 0xfc, 0xb3, 0x6a, 0x68, 0x47, 0x9c, 0xef, + 0x39, 0xeb, 0x5a, 0x5a, 0x21, 0x0f, 0xab, 0xc0, 0xa4, 0x67, 0xaf, 0xf2, + 0xac, 0x85, 0xe5, 0xeb, 0x63, 0x41, 0x5f, 0xf8, 0x9c, 0xc2, 0x7e, 0xbf, + 0xca, 0x95, 0x82, 0xe7, 0x51, 0xaf, 0x22, 0xa6, 0x8d, 0x21, 0x55, 0x19, + 0x38, 0xfe, 0x75, 0xc3, 0xb1, 0xc0, 0xe6, 0xbb, 0x9f, 0x10, 0x7f, 0xc8, + 0x1a, 0x4f, 0xc3, 0xf9, 0xd7, 0x0e, 0xc3, 0x22, 0x93, 0xdc, 0x68, 0xdf, + 0xf0, 0xba, 0x24, 0x89, 0x70, 0x4a, 0x83, 0xc8, 0xaa, 0xfe, 0x25, 0x02, + 0x2b, 0xf8, 0xc2, 0x80, 0x14, 0xc6, 0x2a, 0xef, 0x84, 0xd3, 0x6a, 0x5c, + 0x0f, 0x75, 0xaa, 0x7e, 0x2f, 0xe3, 0x50, 0x84, 0x0f, 0xf9, 0xe7, 0xfd, + 0x6a, 0xad, 0x71, 0x18, 0xd0, 0x9d, 0xf3, 0x20, 0x23, 0xb8, 0xae, 0xcb, + 0x56, 0x85, 0x23, 0xd2, 0xe4, 0x2a, 0x0f, 0xdd, 0x1d, 0xeb, 0x8f, 0xb5, + 0x5c, 0xcd, 0x17, 0xd4, 0x57, 0x6b, 0xad, 0x71, 0xa4, 0xcb, 0xfe, 0xe8, + 0xa0, 0x0e, 0x21, 0x82, 0x91, 0xcd, 0x75, 0x31, 0x5a, 0xaa, 0xe8, 0x0a, + 0xe0, 0xf2, 0x10, 0x9a, 0xe5, 0x5f, 0xee, 0xd7, 0x67, 0x18, 0xc7, 0x86, + 0x89, 0xff, 0x00, 0xa6, 0x4d, 0x49, 0x0d, 0x9c, 0x5e, 0x43, 0x1c, 0x0a, + 0xea, 0x64, 0x85, 0x93, 0xc3, 0x21, 0xb2, 0x38, 0x5a, 0xe5, 0x21, 0xe5, + 0xff, 0x00, 0x1a, 0xed, 0x2e, 0x46, 0x3c, 0x2a, 0x7f, 0xdc, 0x1f, 0xce, + 0x98, 0x1c, 0xe6, 0x93, 0x17, 0x9b, 0x7f, 0x18, 0x07, 0x90, 0x6a, 0x6f, + 0x13, 0x46, 0xd1, 0xde, 0x44, 0x19, 0xb3, 0x95, 0xc8, 0xa6, 0x68, 0x7f, + 0xf2, 0x13, 0x8f, 0xeb, 0x56, 0x7c, 0x5d, 0xff, 0x00, 0x1f, 0xb0, 0x7f, + 0xb9, 0xfd, 0x68, 0x42, 0x63, 0xa3, 0x69, 0x53, 0xc3, 0xcd, 0xb4, 0x8d, + 0xac, 0x0e, 0x7d, 0x69, 0x9e, 0x1a, 0x2e, 0x64, 0x98, 0x2a, 0x82, 0x42, + 0x64, 0x66, 0xa6, 0x8c, 0x0f, 0xf8, 0x46, 0xc9, 0xe3, 0x38, 0x34, 0xcf, + 0x0b, 0x7f, 0xc7, 0xc4, 0xbf, 0xf5, 0xcc, 0xd0, 0x05, 0x7d, 0x2e, 0x47, + 0x93, 0x54, 0x99, 0xd8, 0x16, 0x3c, 0x92, 0x29, 0xfe, 0x20, 0x66, 0x59, + 0x97, 0x82, 0xa0, 0x8c, 0xd2, 0xe8, 0x7f, 0xf2, 0x16, 0x97, 0xfe, 0x05, + 0x53, 0x78, 0x9f, 0xef, 0xa7, 0xfb, 0xb4, 0x00, 0xeb, 0x00, 0xf2, 0xe8, + 0xca, 0xe4, 0x12, 0x01, 0xc6, 0x6a, 0xdd, 0x8a, 0xbf, 0xd9, 0xa7, 0x0a, + 0xb9, 0x02, 0x99, 0xa4, 0x1f, 0xf8, 0xa7, 0x02, 0xf7, 0x24, 0x81, 0x8a, + 0xbd, 0xa7, 0x46, 0x63, 0xb5, 0x94, 0x13, 0xc9, 0x3e, 0x9e, 0xd4, 0xba, + 0x8c, 0xe2, 0xae, 0x37, 0x2d, 0xc1, 0x27, 0xae, 0x6b, 0xa9, 0x91, 0x1c, + 0x58, 0xc1, 0x23, 0x26, 0x43, 0x20, 0xc9, 0xae, 0x6f, 0x51, 0x1b, 0x6f, + 0x18, 0x7f, 0xb4, 0x6b, 0xae, 0x98, 0x67, 0x48, 0xb7, 0x5c, 0xe0, 0x94, + 0x18, 0x38, 0xa0, 0x48, 0x8f, 0x4e, 0x8d, 0xda, 0x09, 0x7c, 0xb0, 0x36, + 0xf4, 0xe6, 0xb8, 0xfb, 0x9d, 0xdf, 0x6a, 0x90, 0x1e, 0xbb, 0x8d, 0x77, + 0x5a, 0x52, 0x79, 0x76, 0xb2, 0x73, 0x9e, 0x6b, 0x88, 0xbc, 0xe2, 0xf6, + 0x6f, 0xf7, 0x8d, 0x34, 0x0c, 0xda, 0xd3, 0x21, 0x96, 0x7b, 0x34, 0xc3, + 0x1d, 0xa3, 0x83, 0xf9, 0xd5, 0xe7, 0xb4, 0x44, 0x72, 0xa5, 0x58, 0x9f, + 0x5c, 0xd1, 0xe1, 0xf1, 0xff, 0x00, 0x12, 0xf5, 0x3e, 0xe3, 0xf9, 0xd5, + 0xab, 0xb7, 0xdb, 0x33, 0x9f, 0x4a, 0x43, 0x45, 0x53, 0x64, 0xd1, 0xca, + 0x36, 0x93, 0xb4, 0x30, 0xab, 0xad, 0x1d, 0xac, 0xcf, 0x20, 0x90, 0x39, + 0x6c, 0x8c, 0x15, 0x1d, 0x2a, 0x9c, 0x17, 0x92, 0x5c, 0x5b, 0x34, 0x8d, + 0x8d, 0xc2, 0x40, 0x3f, 0x4a, 0xbf, 0x6a, 0xca, 0x15, 0xcb, 0x91, 0xcb, + 0x71, 0xf9, 0x50, 0x81, 0xa6, 0x9d, 0x99, 0x0c, 0xa8, 0x8f, 0x67, 0x71, + 0x1c, 0x25, 0xb8, 0x3c, 0x64, 0x62, 0xa9, 0x2d, 0xa1, 0x55, 0x6f, 0x33, + 0x25, 0x81, 0xc7, 0x06, 0xad, 0xcc, 0xee, 0x24, 0x9c, 0x2e, 0xdc, 0x12, + 0x3f, 0x95, 0x4d, 0x28, 0x1b, 0x49, 0xff, 0x00, 0x68, 0x7f, 0x21, 0x40, + 0x23, 0x38, 0x59, 0x96, 0x8d, 0xc8, 0xc8, 0x20, 0x71, 0xcd, 0x57, 0x95, + 0x1e, 0xdd, 0xcc, 0x52, 0x36, 0x48, 0xad, 0xb8, 0x54, 0x79, 0x4d, 0xf4, + 0xac, 0x7d, 0x54, 0x0f, 0xed, 0x19, 0x3f, 0x0f, 0xe5, 0x4d, 0x21, 0x32, + 0x3d, 0xc3, 0x6f, 0x5a, 0x72, 0x29, 0x90, 0x80, 0xbc, 0xd2, 0x41, 0x00, + 0x91, 0x03, 0x1e, 0x46, 0x7a, 0x56, 0x82, 0xa8, 0x55, 0x0a, 0x88, 0x07, + 0xd2, 0x86, 0xc1, 0x22, 0x11, 0x69, 0x8e, 0xaf, 0x93, 0xe9, 0x52, 0x2d, + 0xb2, 0x23, 0x67, 0x39, 0xfa, 0xd3, 0xc1, 0x7c, 0xe7, 0x1d, 0x29, 0x24, + 0xdc, 0xd8, 0xf9, 0x71, 0x49, 0xb6, 0x34, 0x90, 0x4d, 0x3a, 0x46, 0x84, + 0x92, 0x30, 0x3b, 0xf6, 0xa8, 0x0d, 0xdc, 0x46, 0x31, 0x96, 0x1c, 0x8e, + 0x3d, 0xe9, 0x67, 0x85, 0xae, 0x2d, 0xa4, 0x8b, 0x6e, 0x09, 0x1d, 0x6a, + 0x8f, 0xf6, 0x73, 0xa0, 0x80, 0xe7, 0xfd, 0x57, 0xb7, 0x5a, 0x43, 0x24, + 0xb4, 0x99, 0xd2, 0xe6, 0x42, 0xa1, 0x99, 0x58, 0x74, 0xaa, 0xfa, 0xc4, + 0xae, 0xec, 0x83, 0x95, 0x1d, 0xc5, 0x5e, 0xb6, 0x52, 0xd7, 0x2d, 0x81, + 0xce, 0xda, 0xa5, 0xab, 0x0c, 0xca, 0x9f, 0x4a, 0x40, 0x45, 0x61, 0x24, + 0x8d, 0x6f, 0x28, 0x39, 0x2a, 0xb5, 0x36, 0x9b, 0x3c, 0x92, 0xd8, 0x5d, + 0xc4, 0xc1, 0x99, 0x55, 0xb7, 0x0c, 0x76, 0xa9, 0x74, 0x55, 0xcd, 0x85, + 0xd8, 0xc6, 0x7e, 0x6f, 0xe9, 0x4e, 0xd0, 0x06, 0x62, 0xd4, 0x47, 0xf9, + 0xef, 0x55, 0x61, 0x5c, 0x87, 0x42, 0x92, 0x52, 0x6f, 0x23, 0x51, 0xb8, + 0x1c, 0x1c, 0x1a, 0x8e, 0xd2, 0x58, 0x57, 0x50, 0x81, 0x56, 0x36, 0x17, + 0x42, 0x53, 0xb9, 0xb3, 0xc1, 0x1d, 0x86, 0x2a, 0xc7, 0x86, 0x7f, 0xe3, + 0xf6, 0xf0, 0x7b, 0x7f, 0x5a, 0xa3, 0x0f, 0x1e, 0x23, 0x88, 0x7f, 0xd3, + 0x41, 0x45, 0x82, 0xe2, 0xeb, 0x5b, 0xfe, 0xd3, 0xf3, 0x80, 0x2b, 0x43, + 0x4f, 0x49, 0x64, 0xd0, 0x46, 0xd6, 0x20, 0x65, 0xb8, 0xcd, 0x56, 0xf1, + 0x22, 0xed, 0xbb, 0x50, 0x3d, 0x2b, 0x47, 0x45, 0x1b, 0xb4, 0x2f, 0xc5, + 0x85, 0x00, 0x72, 0x99, 0xc5, 0xd1, 0xf5, 0x0d, 0x5d, 0x4d, 0xf5, 0xbe, + 0xed, 0x3b, 0xcc, 0x07, 0xfe, 0x59, 0x83, 0x5c, 0xbb, 0x8c, 0x5e, 0xb8, + 0xff, 0x00, 0x68, 0xd7, 0x65, 0x78, 0xb8, 0xd2, 0x78, 0x1f, 0xf2, 0xc8, + 0x50, 0x07, 0x09, 0xfc, 0x5f, 0x8d, 0x76, 0xe9, 0x6a, 0x8d, 0xa4, 0xc2, + 0x71, 0xc9, 0x8f, 0xfa, 0x57, 0x10, 0x7e, 0xf7, 0xe3, 0x5d, 0xfc, 0x18, + 0x3a, 0x44, 0x1f, 0xf5, 0xcb, 0xfa, 0x55, 0x32, 0x51, 0xc2, 0x4f, 0xf2, + 0xcc, 0xc3, 0xde, 0xba, 0x0f, 0x0a, 0x20, 0x92, 0x49, 0xf3, 0xd8, 0x0a, + 0xc0, 0xba, 0xff, 0x00, 0x8f, 0x89, 0x3f, 0xde, 0x35, 0xd0, 0xf8, 0x43, + 0xfd, 0x6c, 0xe3, 0xd8, 0x51, 0xd0, 0x16, 0xe2, 0xf8, 0x9e, 0x15, 0x58, + 0xa1, 0x2a, 0x39, 0x24, 0xd7, 0x3c, 0xcf, 0x33, 0xc6, 0x91, 0xb3, 0x92, + 0x89, 0xf7, 0x41, 0x3d, 0x2b, 0xa6, 0xf1, 0x41, 0xcc, 0x31, 0x7b, 0x35, + 0x72, 0xdb, 0x88, 0x26, 0x90, 0xce, 0xd7, 0x41, 0x8d, 0x4e, 0x94, 0x99, + 0x50, 0x4f, 0x35, 0x8b, 0xe2, 0x55, 0x02, 0xf9, 0x36, 0x80, 0x3e, 0x41, + 0x5b, 0xbe, 0x1f, 0xe7, 0x47, 0x43, 0xf5, 0xac, 0x3f, 0x12, 0x9c, 0x5f, + 0x27, 0xfb, 0x94, 0x21, 0xb3, 0x13, 0xa5, 0x76, 0xde, 0x18, 0xc3, 0x69, + 0xc3, 0x23, 0xa1, 0x35, 0xc5, 0x77, 0xae, 0xe3, 0xc2, 0xc3, 0xfe, 0x25, + 0xa0, 0xfb, 0x9a, 0x41, 0xd0, 0xc7, 0xf1, 0x38, 0xc4, 0xf0, 0x71, 0xc6, + 0xd3, 0x58, 0x35, 0xbd, 0xe2, 0x72, 0x7c, 0xe8, 0x3e, 0x86, 0xb0, 0x33, + 0x40, 0x23, 0x7b, 0xc3, 0x43, 0x37, 0x6f, 0xc7, 0x41, 0x5a, 0x5e, 0x23, + 0xff, 0x00, 0x8f, 0x16, 0xe3, 0xf8, 0x85, 0x67, 0x78, 0x57, 0x26, 0xea, + 0x5e, 0x38, 0xdb, 0x9a, 0xd2, 0xf1, 0x36, 0x46, 0x9a, 0x08, 0xfe, 0xf0, + 0xa0, 0x67, 0x1c, 0xe7, 0x0b, 0x53, 0x69, 0xcc, 0x7e, 0xdf, 0x07, 0x7f, + 0x9c, 0x54, 0x04, 0xe7, 0x83, 0x56, 0x34, 0xf0, 0x06, 0xa1, 0x01, 0x1f, + 0xdf, 0x1f, 0xce, 0x8e, 0x82, 0x7b, 0x9e, 0x8a, 0xd8, 0xfb, 0x23, 0x70, + 0x3a, 0x0a, 0xf3, 0x5b, 0xb6, 0xc5, 0xd4, 0x98, 0xfe, 0xf1, 0xaf, 0x49, + 0x73, 0x8b, 0x46, 0xaf, 0x36, 0xb9, 0x19, 0xb9, 0x93, 0x3f, 0xde, 0x34, + 0xc4, 0xc6, 0x0e, 0x40, 0xaf, 0x44, 0xd2, 0x51, 0x7e, 0xc5, 0x1f, 0x03, + 0xee, 0x8f, 0xe5, 0x5e, 0x76, 0xa7, 0x18, 0x15, 0xe8, 0xda, 0x67, 0x16, + 0x31, 0x7f, 0xb8, 0x3f, 0x95, 0x00, 0x71, 0x1a, 0xeb, 0x03, 0xa9, 0xca, + 0xa3, 0xb1, 0xe9, 0x59, 0x8b, 0xfe, 0xb1, 0x7e, 0xb5, 0x7b, 0x5a, 0xff, + 0x00, 0x90, 0xbc, 0xff, 0x00, 0x5a, 0xa2, 0xbf, 0xeb, 0x17, 0xeb, 0x4d, + 0x12, 0xf7, 0x3d, 0x22, 0xc6, 0x14, 0xfb, 0x00, 0x1b, 0x47, 0xdc, 0xcf, + 0xe9, 0x5e, 0x79, 0x73, 0xff, 0x00, 0x1f, 0x52, 0xff, 0x00, 0xbe, 0x6b, + 0xd1, 0xac, 0xcf, 0xfa, 0x0a, 0xff, 0x00, 0xb9, 0xfd, 0x2b, 0xce, 0xae, + 0xc6, 0x2e, 0xe6, 0x1f, 0xed, 0x9f, 0xe7, 0x49, 0x0d, 0x9a, 0x7e, 0x1a, + 0x40, 0xfa, 0x89, 0x07, 0xd2, 0xb6, 0xbc, 0x55, 0x0a, 0xad, 0x94, 0x2e, + 0x3a, 0xee, 0xac, 0x8f, 0x0b, 0x7f, 0xc8, 0x48, 0xff, 0x00, 0xbb, 0x5b, + 0x3e, 0x2b, 0xff, 0x00, 0x90, 0x7c, 0x3f, 0xef, 0xd0, 0xc6, 0x8e, 0x5a, + 0xd1, 0x03, 0x5d, 0xc6, 0x3d, 0x5a, 0xba, 0x8f, 0x11, 0x5b, 0xa4, 0x7a, + 0x49, 0x65, 0xeb, 0xc5, 0x72, 0xf6, 0x87, 0x6d, 0xdc, 0x47, 0xfd, 0xaa, + 0xea, 0xbc, 0x42, 0xdb, 0xb4, 0x43, 0xff, 0x00, 0x01, 0xa0, 0x0e, 0x53, + 0x4a, 0x4d, 0xfa, 0x8c, 0x2a, 0x7b, 0xb5, 0x74, 0x1e, 0x22, 0x57, 0xb1, + 0x68, 0xa4, 0x8a, 0x42, 0x09, 0xc8, 0xfd, 0x2b, 0x07, 0x46, 0xff, 0x00, + 0x90, 0xa4, 0x1f, 0xef, 0x56, 0xff, 0x00, 0x8b, 0x4e, 0x63, 0x83, 0xea, + 0x68, 0x68, 0x11, 0x0f, 0x87, 0x56, 0x43, 0x6f, 0x70, 0xe8, 0xd8, 0x35, + 0x8f, 0x01, 0x66, 0xd5, 0xc8, 0xea, 0xc6, 0x43, 0xcf, 0xe3, 0x5b, 0x9e, + 0x1a, 0xe2, 0xce, 0x73, 0xee, 0x6b, 0x12, 0xcf, 0x9d, 0x69, 0x4f, 0xfd, + 0x34, 0x34, 0x01, 0xd5, 0xcf, 0x14, 0xe6, 0xde, 0x70, 0xdb, 0x46, 0x13, + 0xb0, 0xf6, 0xae, 0x21, 0x72, 0x2e, 0x47, 0xae, 0xea, 0xf4, 0x3b, 0xac, + 0xfd, 0x9a, 0xe0, 0xff, 0x00, 0xb1, 0xfd, 0x2b, 0xcf, 0x91, 0x7f, 0xd2, + 0xd7, 0x3f, 0xde, 0x14, 0xc4, 0x74, 0x1a, 0xcc, 0x2d, 0x1e, 0x93, 0x13, + 0x16, 0x27, 0x71, 0xac, 0x5d, 0x35, 0x1a, 0x4b, 0xd8, 0x94, 0x1c, 0x12, + 0x7a, 0xd7, 0x49, 0xe2, 0x05, 0xce, 0x8f, 0x0f, 0xfb, 0xdf, 0xd2, 0xb0, + 0x34, 0x81, 0x8d, 0x4e, 0x01, 0xfe, 0xd5, 0x21, 0x9a, 0xbe, 0x22, 0x89, + 0xe3, 0xb5, 0xb6, 0xdc, 0xe5, 0xb8, 0xee, 0x6b, 0x06, 0xc7, 0x9b, 0xd8, + 0x87, 0xfb, 0x55, 0xd4, 0x78, 0xa5, 0x3f, 0xd0, 0xed, 0xcf, 0xb9, 0xae, + 0x6f, 0x4f, 0x8b, 0x37, 0xf0, 0x8c, 0xff, 0x00, 0x18, 0xa0, 0x3a, 0x9d, + 0x0e, 0xbd, 0x02, 0xc7, 0xa5, 0x92, 0x3a, 0xef, 0x02, 0xb9, 0x74, 0x1c, + 0x8a, 0xec, 0x3c, 0x44, 0xb9, 0xd2, 0x88, 0x1f, 0xdf, 0x15, 0xc8, 0xa2, + 0xe0, 0x8e, 0x68, 0x60, 0x75, 0x17, 0x91, 0x2a, 0x78, 0x6d, 0x64, 0xfe, + 0x26, 0xe2, 0xb9, 0x2c, 0x73, 0x5d, 0xae, 0xa5, 0x11, 0x3e, 0x18, 0x85, + 0x47, 0x3d, 0x0d, 0x71, 0xbb, 0x39, 0xeb, 0x40, 0x8e, 0x83, 0xc3, 0xd1, + 0x09, 0x44, 0xaa, 0xc3, 0x20, 0x0c, 0xd5, 0x1d, 0x7a, 0x35, 0x4d, 0x4b, + 0x6a, 0xf4, 0xda, 0x0d, 0x6b, 0x78, 0x52, 0x3d, 0xde, 0x79, 0xf6, 0xc5, + 0x67, 0x78, 0x8c, 0x04, 0xd5, 0x41, 0xea, 0x36, 0x0e, 0x28, 0x43, 0x65, + 0x6d, 0x32, 0xe2, 0x47, 0xbf, 0xb6, 0x81, 0xdb, 0x72, 0x6f, 0x00, 0x67, + 0xb7, 0x35, 0xd4, 0xeb, 0x90, 0xaa, 0xe9, 0x12, 0x11, 0xd4, 0x01, 0xfc, + 0xeb, 0x93, 0xd2, 0x88, 0x6d, 0x5e, 0x02, 0x06, 0x01, 0x90, 0x71, 0xe9, + 0x5d, 0x8e, 0xbc, 0x31, 0xa3, 0x4b, 0xf4, 0x1f, 0xce, 0x8b, 0x58, 0x2e, + 0xd9, 0xc7, 0x7f, 0x67, 0x5d, 0x01, 0x92, 0x87, 0x06, 0xba, 0x9d, 0x1a, + 0x7f, 0xb1, 0x69, 0xe9, 0x14, 0x98, 0xdd, 0xce, 0x79, 0xe9, 0x4f, 0x92, + 0xd8, 0x0b, 0x68, 0xdb, 0xd6, 0xa1, 0x58, 0xb8, 0xea, 0x29, 0x5c, 0x76, + 0x31, 0x75, 0x3b, 0x49, 0xae, 0x35, 0x09, 0x65, 0x41, 0x95, 0x63, 0x91, + 0xcd, 0x4d, 0xa3, 0xc3, 0x2d, 0x95, 0xc9, 0x99, 0xc0, 0xfb, 0xb8, 0x03, + 0x35, 0xa2, 0x63, 0xe7, 0xad, 0x02, 0x21, 0xef, 0x4a, 0xe1, 0x62, 0xae, + 0xb4, 0x64, 0xbf, 0x8e, 0x3d, 0x8a, 0x32, 0xa7, 0xa0, 0x35, 0x9d, 0x65, + 0xa7, 0xc8, 0x97, 0x68, 0xf2, 0xfc, 0xaa, 0xa7, 0x39, 0xad, 0xb3, 0x17, + 0xd7, 0xf2, 0xa6, 0xf9, 0x5c, 0xf2, 0x0d, 0x17, 0x0b, 0x06, 0xa5, 0x33, + 0x5e, 0xd9, 0x34, 0x2a, 0x00, 0xcd, 0x61, 0xc5, 0xa5, 0xcb, 0xe6, 0xa9, + 0x7c, 0x05, 0x07, 0x9e, 0x6b, 0x74, 0xc2, 0x3a, 0xf3, 0x47, 0x96, 0x3d, + 0xe8, 0xb8, 0x58, 0x2f, 0x66, 0x6b, 0x9b, 0x07, 0x80, 0x01, 0xca, 0x80, + 0x2b, 0x1a, 0xcf, 0x4d, 0x64, 0x99, 0x5e, 0x5c, 0x60, 0x72, 0x39, 0xad, + 0x72, 0x83, 0xd0, 0xd1, 0xb3, 0x1d, 0xa8, 0xb8, 0x58, 0x87, 0x53, 0x0f, + 0x7b, 0x6d, 0xb3, 0x23, 0x70, 0x20, 0xd5, 0x4b, 0x0b, 0x67, 0xb2, 0x93, + 0x78, 0x20, 0xb5, 0x69, 0x6d, 0xf5, 0x14, 0x9b, 0x07, 0xa5, 0x17, 0x61, + 0x63, 0x32, 0xee, 0xcd, 0xae, 0xaf, 0x0c, 0xc4, 0x8c, 0x1c, 0x71, 0x57, + 0xed, 0xe6, 0x96, 0x14, 0xf2, 0xf2, 0x36, 0xed, 0xdb, 0xc5, 0x48, 0x50, + 0x63, 0x91, 0x46, 0xd1, 0xe9, 0x45, 0xd8, 0x58, 0xcd, 0x86, 0xc9, 0xa1, + 0xd4, 0xc4, 0xfb, 0xbe, 0x50, 0x72, 0x3d, 0x6a, 0x6d, 0x5e, 0xcb, 0xed, + 0xae, 0x26, 0x8c, 0x9f, 0x30, 0xf5, 0x1d, 0xaa, 0xe6, 0xd1, 0xe9, 0x4e, + 0x14, 0x5d, 0x85, 0x84, 0x82, 0x36, 0xfe, 0xc9, 0x36, 0x8c, 0xc1, 0x49, + 0x5e, 0xb5, 0x8d, 0x6b, 0xa6, 0xdc, 0x45, 0x7a, 0x8e, 0x57, 0xe5, 0x56, + 0xce, 0x6b, 0x74, 0x8c, 0x01, 0xee, 0x29, 0xb9, 0xa2, 0xe1, 0x62, 0x1d, + 0x62, 0x06, 0xbe, 0xb5, 0x88, 0xa7, 0xde, 0x8c, 0x7d, 0xdf, 0x5a, 0xce, + 0xd3, 0x2c, 0xee, 0x6d, 0xef, 0x52, 0x67, 0x8f, 0x01, 0x7d, 0x6b, 0x63, + 0x26, 0x8c, 0xfd, 0x68, 0xb8, 0x58, 0x87, 0x59, 0x81, 0xaf, 0xed, 0xd5, + 0x94, 0xe1, 0x93, 0x3f, 0x2f, 0xad, 0x61, 0x5b, 0x69, 0xf7, 0x49, 0x3a, + 0x31, 0x85, 0x80, 0x04, 0x72, 0x6b, 0xa3, 0xde, 0x45, 0x2e, 0xef, 0x5a, + 0x39, 0x82, 0xc4, 0xf7, 0x2c, 0x2e, 0x6c, 0x24, 0x88, 0x8e, 0x48, 0x1d, + 0xeb, 0x91, 0x36, 0x37, 0x60, 0x91, 0xe4, 0xbf, 0xe5, 0x5d, 0x39, 0x23, + 0xb1, 0xfd, 0x28, 0xeb, 0xdc, 0x51, 0xcc, 0x16, 0x22, 0xd0, 0x1e, 0x4b, + 0x2b, 0x57, 0x59, 0x63, 0x23, 0x2d, 0x9e, 0x7a, 0xd5, 0x5f, 0x10, 0x45, + 0x25, 0xd5, 0xc2, 0x4b, 0x14, 0x6c, 0x72, 0x39, 0xc0, 0xcd, 0x68, 0x81, + 0xea, 0xc2, 0x9d, 0xc6, 0x3e, 0xf0, 0xa2, 0xe3, 0xb1, 0xc9, 0x8b, 0x4b, + 0xa0, 0x7f, 0xd5, 0x49, 0xff, 0x00, 0x7c, 0xd7, 0x5d, 0x6d, 0xa9, 0x98, + 0x6d, 0x23, 0x8d, 0xa3, 0x6d, 0xc1, 0x71, 0xd2, 0x9b, 0x81, 0xea, 0x29, + 0xd8, 0x53, 0xd4, 0x8a, 0x2e, 0x16, 0x39, 0x4b, 0xdb, 0x59, 0xe4, 0xbc, + 0x95, 0xd6, 0x26, 0x2a, 0xcd, 0x91, 0xc5, 0x3a, 0xda, 0xd6, 0xe4, 0x5c, + 0x46, 0x4c, 0x4f, 0xb4, 0x30, 0x27, 0xe5, 0xae, 0xa3, 0x62, 0x67, 0xb5, + 0x05, 0x71, 0xc2, 0xd3, 0xb8, 0xb9, 0x46, 0xdd, 0xdf, 0x1f, 0xb2, 0xfc, + 0xa8, 0xc3, 0xf0, 0xae, 0x4c, 0xc3, 0x39, 0xe7, 0xcb, 0x7e, 0x7f, 0xd9, + 0xae, 0xbb, 0xcb, 0x2c, 0xb8, 0x23, 0x34, 0xa2, 0xd6, 0x42, 0xb9, 0x58, + 0x8e, 0x05, 0x2b, 0x85, 0x8e, 0x67, 0x4e, 0x82, 0x73, 0x7f, 0x09, 0x31, + 0xbe, 0x03, 0x02, 0x72, 0x2b, 0xb6, 0xb9, 0x90, 0xbe, 0x9b, 0x2c, 0x4a, + 0x87, 0x2d, 0x19, 0x03, 0xf2, 0xac, 0xdd, 0x92, 0x03, 0xd0, 0x8a, 0x5c, + 0xcb, 0xe8, 0xd4, 0x5c, 0x2c, 0x71, 0xe2, 0xce, 0xe5, 0x5f, 0x98, 0x5f, + 0xfe, 0xf9, 0xad, 0x4d, 0x12, 0x09, 0x97, 0x52, 0x47, 0x31, 0xb2, 0x85, + 0xe4, 0xe4, 0x62, 0xb6, 0x88, 0x7f, 0x4a, 0x00, 0x66, 0x3c, 0x29, 0xa2, + 0xe1, 0x62, 0x7d, 0x6d, 0xfe, 0xd3, 0xa4, 0x3a, 0x44, 0xa5, 0x9b, 0x83, + 0x81, 0xf5, 0xae, 0x3f, 0xec, 0x97, 0x5f, 0xf3, 0xc2, 0x4f, 0xfb, 0xe6, + 0xba, 0xac, 0x30, 0xed, 0xfa, 0xd4, 0x8b, 0x0c, 0x8e, 0x32, 0x10, 0x91, + 0x45, 0xc2, 0xc6, 0x7e, 0x88, 0xcf, 0x63, 0x6e, 0xef, 0x2a, 0x30, 0xde, + 0x7a, 0x63, 0x9a, 0xa5, 0xaf, 0xf9, 0xba, 0x85, 0xd2, 0x49, 0x0c, 0x4e, + 0x55, 0x57, 0x6f, 0x4a, 0xdf, 0x09, 0x8e, 0x0e, 0x3f, 0x13, 0x46, 0xc0, + 0x3f, 0xbb, 0x45, 0xc2, 0xc7, 0x2b, 0x67, 0x63, 0x71, 0xe7, 0xa9, 0x68, + 0x9d, 0x40, 0xe7, 0x24, 0x57, 0x45, 0x7d, 0x72, 0xf7, 0x5a, 0x7c, 0x91, + 0x08, 0xdb, 0x79, 0x50, 0x3a, 0x55, 0x8d, 0xa3, 0xb3, 0x0a, 0x46, 0xfa, + 0x83, 0xf8, 0x51, 0x71, 0xd8, 0xe4, 0xd3, 0x4e, 0xbb, 0x67, 0x0a, 0x61, + 0x60, 0x33, 0xd4, 0xd7, 0x4c, 0x25, 0x2b, 0xa6, 0x7d, 0x93, 0x69, 0x27, + 0x61, 0x5c, 0xe3, 0xd6, 0xa4, 0xe3, 0xf1, 0xfa, 0x51, 0xf9, 0xfe, 0x54, + 0x5c, 0x2c, 0x72, 0xd1, 0x69, 0x37, 0x81, 0xff, 0x00, 0xd5, 0xe0, 0x67, + 0xb9, 0x15, 0xd1, 0x4b, 0x24, 0x92, 0xe8, 0x86, 0xcf, 0xcb, 0xc4, 0x9b, + 0x71, 0x9c, 0xf1, 0x53, 0xfe, 0x06, 0x90, 0x80, 0xdd, 0x57, 0xf5, 0xa7, + 0x71, 0x58, 0xc4, 0xd2, 0xed, 0x26, 0xb6, 0xb8, 0x12, 0xc8, 0x9c, 0xa9, + 0xe0, 0x67, 0xad, 0x4d, 0xad, 0xc3, 0x2e, 0xa3, 0x34, 0x52, 0x22, 0x63, + 0x68, 0xc1, 0x19, 0xad, 0x4f, 0x2d, 0x73, 0xf7, 0x7f, 0x5a, 0x5f, 0x2d, + 0x7f, 0xbb, 0xfa, 0xd1, 0x70, 0xb1, 0x9c, 0x61, 0x6f, 0xec, 0xb6, 0xb4, + 0xef, 0x8e, 0x0f, 0xad, 0x26, 0x93, 0x0b, 0xe9, 0xe0, 0xbb, 0x0c, 0xb3, + 0x29, 0x07, 0xda, 0xb4, 0xb6, 0x0f, 0xee, 0x8f, 0xce, 0x97, 0x68, 0xfe, + 0xe8, 0xa2, 0xe1, 0x63, 0x2b, 0x4d, 0xb6, 0x6b, 0x3b, 0xa7, 0x99, 0xf9, + 0x2c, 0x4f, 0x4f, 0x43, 0x52, 0x6a, 0xd1, 0x35, 0xf8, 0x5d, 0x9c, 0x11, + 0xc7, 0x22, 0xb4, 0x82, 0xae, 0x79, 0x51, 0x8f, 0x63, 0x4f, 0xf2, 0x15, + 0x86, 0x53, 0x07, 0xdb, 0xbd, 0x2b, 0x85, 0x8a, 0x9a, 0x5f, 0x97, 0x69, + 0x60, 0x96, 0xf3, 0x16, 0x24, 0x12, 0x7e, 0x51, 0x56, 0x7e, 0xd5, 0x12, + 0xee, 0x08, 0x1f, 0x07, 0xd6, 0x94, 0xc3, 0x8e, 0xd4, 0x9e, 0x50, 0xf6, + 0xa2, 0xe1, 0x63, 0x9d, 0xbb, 0xd3, 0x66, 0x9e, 0xe1, 0x9c, 0x30, 0x03, + 0x39, 0xe6, 0xba, 0x48, 0xa6, 0x80, 0x5b, 0xc5, 0x1b, 0xb9, 0xca, 0x28, + 0x19, 0xdb, 0x49, 0xe5, 0x2f, 0xa8, 0xa4, 0xf2, 0x97, 0xd4, 0x51, 0x70, + 0xb1, 0x22, 0x5d, 0x43, 0x10, 0x60, 0xad, 0x90, 0x7d, 0x45, 0x72, 0x77, + 0x5a, 0x75, 0xc4, 0xb7, 0x52, 0xc8, 0x80, 0x6d, 0x66, 0x24, 0x64, 0xd7, + 0x51, 0xe5, 0x2f, 0xa8, 0xa3, 0xca, 0x4f, 0x6a, 0x77, 0x0b, 0x15, 0xf4, + 0x88, 0xbe, 0xcd, 0xa7, 0x84, 0x92, 0x45, 0x0f, 0xe9, 0x9f, 0x7a, 0xbd, + 0x2a, 0xdb, 0xb4, 0x64, 0xb3, 0x82, 0xc7, 0xbe, 0x6a, 0x2f, 0x2d, 0x07, + 0x60, 0x7f, 0x0a, 0x5d, 0x88, 0x7b, 0x51, 0x70, 0xb1, 0x0d, 0x9c, 0x51, + 0x29, 0x60, 0x85, 0x4a, 0x16, 0xcf, 0xb7, 0x4a, 0xd5, 0x86, 0x38, 0xc4, + 0x7c, 0x22, 0x1e, 0xfd, 0x2b, 0x3f, 0xca, 0x4f, 0x4a, 0x50, 0x02, 0xf4, + 0x27, 0x14, 0x5c, 0x2d, 0x72, 0xd4, 0xf1, 0x23, 0x19, 0x36, 0xaa, 0x86, + 0x2b, 0xe9, 0x49, 0x1a, 0x23, 0x86, 0x0c, 0x7a, 0x9c, 0xfe, 0x95, 0x00, + 0xc7, 0x5e, 0x7f, 0x3a, 0x51, 0x80, 0x78, 0x27, 0xf3, 0xa2, 0xe1, 0x62, + 0xd3, 0x44, 0xa9, 0x19, 0x0a, 0x70, 0x4d, 0x60, 0x6a, 0x70, 0xca, 0xda, + 0x8b, 0x15, 0x19, 0x06, 0xba, 0x59, 0xa2, 0xc5, 0xa4, 0x2f, 0x93, 0x93, + 0xd7, 0x9a, 0xab, 0xb0, 0x67, 0x38, 0xc9, 0xa2, 0xe1, 0x63, 0x1a, 0xd6, + 0x09, 0x13, 0x6e, 0xe2, 0x48, 0xcf, 0x23, 0x15, 0xa0, 0xb1, 0x28, 0xc9, + 0x07, 0x9a, 0xb6, 0x14, 0x03, 0xd2, 0x97, 0x02, 0x95, 0xc0, 0xae, 0x2d, + 0x9f, 0x60, 0x65, 0xe4, 0x1e, 0xbd, 0xe9, 0x0c, 0x27, 0x7f, 0x2c, 0x47, + 0xe1, 0x56, 0x77, 0x84, 0xe8, 0x71, 0x47, 0xda, 0x71, 0xe8, 0xdf, 0x5a, + 0x60, 0x52, 0x31, 0x10, 0xa7, 0x93, 0x9f, 0xa5, 0x31, 0xd1, 0x88, 0xc0, + 0xdd, 0xf9, 0x56, 0x87, 0x9d, 0x1b, 0x75, 0x52, 0x3e, 0x94, 0x84, 0x23, + 0x74, 0x70, 0x3e, 0xbc, 0x50, 0x06, 0x3c, 0x31, 0xca, 0xb7, 0x0c, 0xc5, + 0x4e, 0x31, 0x8a, 0xa9, 0x7f, 0x04, 0xd2, 0x48, 0xbb, 0x63, 0x24, 0x77, + 0xe2, 0xba, 0x13, 0x03, 0xe3, 0x20, 0x06, 0x1e, 0xd5, 0x0b, 0x46, 0xc3, + 0xaa, 0x91, 0xf8, 0x52, 0x03, 0x23, 0x4b, 0x8e, 0x4b, 0x68, 0x27, 0x57, + 0x52, 0x0b, 0x9e, 0x3f, 0x2a, 0x5d, 0x22, 0x17, 0xb7, 0xfb, 0x6e, 0xf1, + 0x81, 0x21, 0xf9, 0x7d, 0xfa, 0xd6, 0x99, 0x4e, 0x39, 0xa6, 0x6d, 0xa7, + 0x70, 0xb1, 0x99, 0xa1, 0xc3, 0x2d, 0xb5, 0xfd, 0xcb, 0x3a, 0x90, 0x8d, + 0xd0, 0x9e, 0xf5, 0x4c, 0xc1, 0x2a, 0x78, 0x81, 0x24, 0x54, 0x62, 0xbb, + 0xc1, 0xce, 0x2b, 0x75, 0x87, 0x1d, 0x69, 0x81, 0x39, 0xcd, 0x17, 0x0b, + 0x19, 0x9e, 0x23, 0x8d, 0xda, 0x74, 0x90, 0x29, 0x20, 0x8e, 0xd5, 0xa3, + 0xa2, 0xa3, 0xa6, 0x87, 0x86, 0x18, 0x25, 0x98, 0x80, 0x69, 0xcc, 0xb9, + 0x3c, 0x8a, 0x5c, 0xb0, 0x18, 0x0c, 0x71, 0x45, 0xc2, 0xc7, 0x25, 0x2c, + 0x4e, 0x2f, 0xdf, 0xe5, 0x3f, 0x7b, 0xd2, 0xbb, 0x0b, 0x9f, 0x9b, 0x4d, + 0xd8, 0x39, 0x22, 0x30, 0x08, 0xa8, 0xb1, 0xf9, 0xd3, 0xfe, 0x6e, 0x9b, + 0x8e, 0x0d, 0x17, 0x0b, 0x1c, 0x43, 0x46, 0xdb, 0xbe, 0xe9, 0xeb, 0xe9, + 0x5d, 0xec, 0x0a, 0x57, 0x49, 0x81, 0x48, 0x3b, 0x84, 0x63, 0x23, 0xf0, + 0xaa, 0x7e, 0x52, 0x83, 0xca, 0x29, 0x3f, 0x4a, 0x94, 0x48, 0xe0, 0x63, + 0x71, 0xc5, 0x17, 0x0b, 0x1c, 0x6d, 0xd2, 0x91, 0x75, 0x2f, 0x1f, 0xc4, + 0x6b, 0xa0, 0xf0, 0x82, 0x31, 0x96, 0x73, 0x83, 0x8c, 0x0a, 0xb6, 0xd6, + 0xd0, 0xbb, 0x65, 0xa3, 0x52, 0x4f, 0x5f, 0x94, 0x55, 0x9b, 0x67, 0xfb, + 0x20, 0x22, 0x15, 0x54, 0xcf, 0x5c, 0x0a, 0x2e, 0x2b, 0x19, 0xde, 0x26, + 0x18, 0x82, 0x33, 0xfe, 0xd5, 0x72, 0xc7, 0xad, 0x76, 0xf7, 0x01, 0x6e, + 0xb8, 0x99, 0x43, 0x0f, 0x4a, 0xaa, 0xda, 0x75, 0xae, 0x32, 0x21, 0x4a, + 0x69, 0x83, 0x4c, 0xbb, 0xe1, 0xc0, 0x46, 0x8a, 0xa4, 0x8f, 0x5c, 0x56, + 0x1f, 0x89, 0xbf, 0xe3, 0xf6, 0x32, 0x3f, 0xb9, 0x5b, 0xf6, 0xf7, 0x6d, + 0x6d, 0x6e, 0x21, 0x8e, 0x24, 0x08, 0x3a, 0x75, 0xaa, 0x77, 0x71, 0x25, + 0xeb, 0x06, 0x96, 0x25, 0x24, 0x74, 0xeb, 0x4a, 0xe3, 0xb1, 0xc8, 0xf3, + 0x5d, 0xdf, 0x86, 0x11, 0x86, 0x90, 0x8d, 0x8e, 0xa4, 0xd6, 0x48, 0xd3, + 0x6d, 0xbf, 0xe7, 0x88, 0xfc, 0xcd, 0x6c, 0xda, 0x5d, 0xbd, 0xad, 0xaa, + 0x41, 0x1c, 0x2a, 0x11, 0x7a, 0x73, 0x45, 0xc3, 0x53, 0x03, 0xc5, 0x07, + 0x32, 0xc1, 0xf4, 0x35, 0x81, 0x83, 0x5d, 0x9d, 0xf4, 0x49, 0x7a, 0x17, + 0xce, 0x8c, 0x1c, 0x1c, 0x8e, 0x6a, 0x9f, 0xf6, 0x55, 0xaf, 0xfc, 0xf1, + 0xfd, 0x68, 0xb8, 0xac, 0xc6, 0x78, 0x4c, 0x1f, 0x36, 0xe4, 0xff, 0x00, + 0xb2, 0x2b, 0x47, 0xc4, 0x79, 0x3a, 0x31, 0x24, 0x73, 0xbc, 0x51, 0x62, + 0x89, 0x62, 0xae, 0xb0, 0xc6, 0xa0, 0x3f, 0x5a, 0x9a, 0xe2, 0x5f, 0xb4, + 0xdb, 0xb4, 0x12, 0xc6, 0x0a, 0x37, 0x51, 0x45, 0xc7, 0xa9, 0xc2, 0x73, + 0x56, 0xf4, 0xd5, 0xdd, 0xa8, 0xdb, 0x8f, 0xf6, 0xc5, 0x74, 0x23, 0x4d, + 0xb2, 0x1f, 0xf2, 0xee, 0x3f, 0x12, 0x6a, 0x48, 0x6d, 0x2d, 0xa0, 0x98, + 0x49, 0x1c, 0x00, 0x38, 0xe8, 0x72, 0x68, 0xb8, 0x59, 0x9b, 0x72, 0xb2, + 0x8b, 0x56, 0xf9, 0x87, 0xe7, 0x5e, 0x71, 0x70, 0x0f, 0xda, 0x64, 0xff, + 0x00, 0x78, 0xd7, 0x6e, 0xd3, 0x92, 0xb8, 0xf2, 0xd2, 0xb3, 0x64, 0xb0, + 0x81, 0xdc, 0xb9, 0x85, 0x72, 0x4e, 0x4d, 0x17, 0x0b, 0x1c, 0xb0, 0x53, + 0x9a, 0xf4, 0x9b, 0x05, 0xd9, 0x61, 0x0e, 0xe3, 0x83, 0xb0, 0x75, 0xfa, + 0x57, 0x3c, 0x96, 0x16, 0xe8, 0xc0, 0xf9, 0x28, 0x7e, 0xb9, 0xad, 0x55, + 0xbf, 0x98, 0x20, 0x5d, 0xab, 0x80, 0x30, 0x38, 0xa2, 0xe1, 0x63, 0x8e, + 0xd6, 0x94, 0x8d, 0x5a, 0x6e, 0x0f, 0x5a, 0xa2, 0x8a, 0x5a, 0x45, 0x00, + 0x12, 0x73, 0x5d, 0x7d, 0xcc, 0x49, 0x71, 0x2f, 0x99, 0x24, 0x48, 0x5b, + 0xd7, 0x15, 0x1c, 0x76, 0xd1, 0xa3, 0x86, 0x11, 0x27, 0x1f, 0xec, 0xd3, + 0xe6, 0x17, 0x29, 0xd1, 0x5b, 0xae, 0xcb, 0x34, 0x07, 0x83, 0xb3, 0xa6, + 0x3d, 0xab, 0xce, 0xf5, 0x08, 0xcc, 0x7a, 0x84, 0xea, 0x41, 0x1f, 0x39, + 0xae, 0xc8, 0x5f, 0x5c, 0xe3, 0x1b, 0xf8, 0xfa, 0x55, 0x49, 0xa2, 0x13, + 0x39, 0x77, 0x55, 0x2c, 0x7a, 0x9d, 0xa2, 0x95, 0xc6, 0xd1, 0x9b, 0xe1, + 0x38, 0xd9, 0xb5, 0x17, 0x6c, 0x1d, 0xa1, 0x79, 0x35, 0xb1, 0xe2, 0x95, + 0x2d, 0xa7, 0xa6, 0xd0, 0x4e, 0xd6, 0xc9, 0xe2, 0x99, 0x6c, 0xcd, 0x6c, + 0x4f, 0x93, 0x84, 0x27, 0xa9, 0x00, 0x54, 0xd2, 0xcf, 0x2c, 0xa9, 0xb6, + 0x46, 0xc8, 0x3d, 0x88, 0x14, 0x5c, 0x2c, 0x72, 0xba, 0x7c, 0x2f, 0x35, + 0xf4, 0x48, 0xa3, 0x92, 0x6b, 0xa8, 0xd6, 0xed, 0x67, 0x6d, 0x22, 0x45, + 0x09, 0x92, 0x31, 0xc0, 0xa8, 0x51, 0x02, 0x36, 0x57, 0x83, 0xea, 0x2a, + 0x66, 0x92, 0x52, 0x30, 0xce, 0xc4, 0x7b, 0x9a, 0x2e, 0x16, 0x39, 0xcd, + 0x1a, 0xd2, 0x5f, 0xed, 0x48, 0x4b, 0x29, 0x40, 0x0e, 0x72, 0x6b, 0x73, + 0xc4, 0x96, 0x93, 0x4d, 0x6d, 0x1b, 0x20, 0xdd, 0xb5, 0xb3, 0xc1, 0xa7, + 0xed, 0x19, 0xa0, 0x8c, 0x8e, 0x68, 0xb8, 0x58, 0x8b, 0x41, 0x83, 0xc9, + 0xd3, 0xe4, 0xf3, 0x1c, 0x23, 0x12, 0x78, 0x35, 0x93, 0x0d, 0x8c, 0x90, + 0xea, 0x5e, 0x76, 0x41, 0x40, 0xe4, 0x83, 0x5b, 0x5b, 0x47, 0xa5, 0x37, + 0x68, 0x1c, 0x62, 0x8b, 0x85, 0x89, 0xe4, 0xbe, 0x12, 0x24, 0xaa, 0xc3, + 0x01, 0xd7, 0x1c, 0x57, 0x30, 0xf6, 0x12, 0x8b, 0xad, 0xe9, 0x82, 0xa0, + 0xe4, 0x66, 0xba, 0x0d, 0xbe, 0x94, 0xdf, 0x2f, 0xd8, 0x51, 0x70, 0xb1, + 0x0d, 0xdc, 0xaf, 0x79, 0x66, 0x20, 0x71, 0x8d, 0xbc, 0x83, 0x59, 0x96, + 0x36, 0xd3, 0xdb, 0xdd, 0xa4, 0xc5, 0x41, 0x0a, 0x73, 0xd6, 0xb6, 0xb6, + 0x03, 0xda, 0x94, 0x46, 0x3d, 0x28, 0x0b, 0x0c, 0xd6, 0x1c, 0xea, 0x16, + 0x48, 0xa3, 0x0a, 0xeb, 0xdb, 0x35, 0x8b, 0x67, 0x69, 0x3c, 0x37, 0x71, + 0xc8, 0x40, 0xc2, 0x9c, 0xf5, 0xad, 0xf3, 0x10, 0x3d, 0xa9, 0x05, 0xb9, + 0x27, 0x85, 0x3f, 0x95, 0x17, 0x0b, 0x0c, 0xd4, 0x67, 0x37, 0x96, 0x4d, + 0x0e, 0x30, 0x49, 0xc8, 0xe6, 0xb9, 0xf1, 0x61, 0x70, 0x58, 0x71, 0xfa, + 0xd7, 0x4e, 0x6d, 0x4e, 0x3e, 0x6d, 0xa0, 0x7d, 0x68, 0x5b, 0x78, 0x87, + 0xde, 0x24, 0x9f, 0x6a, 0x2e, 0x16, 0x2c, 0x19, 0xe3, 0x6d, 0x31, 0x6d, + 0xd8, 0xa9, 0x21, 0x71, 0xd6, 0xb8, 0xf6, 0xb1, 0xb9, 0xde, 0x40, 0x42, + 0x46, 0x6b, 0xac, 0x0a, 0x00, 0xc0, 0x40, 0x29, 0xa5, 0x01, 0x39, 0xa2, + 0xe1, 0x62, 0xaf, 0x87, 0x37, 0x58, 0xc7, 0x31, 0x97, 0x00, 0xb7, 0x40, + 0x4d, 0x50, 0xd7, 0x6d, 0xe5, 0xba, 0xbd, 0x59, 0x62, 0x5c, 0x82, 0xa0, + 0x1e, 0x7a, 0x56, 0xc8, 0x45, 0x06, 0x9a, 0xca, 0x3d, 0x28, 0xb8, 0x58, + 0xe7, 0x74, 0xfb, 0x4b, 0x88, 0x6f, 0xe2, 0x95, 0x93, 0x85, 0x60, 0x79, + 0x35, 0xd0, 0xea, 0x57, 0x72, 0x5d, 0xd8, 0x3c, 0x02, 0x2c, 0x16, 0x1f, + 0xde, 0xf7, 0xa4, 0x0a, 0x01, 0xe9, 0x4e, 0x20, 0x11, 0xed, 0x45, 0xc2, + 0xc6, 0xb5, 0xc4, 0x78, 0xd3, 0xd4, 0xf7, 0x00, 0x1a, 0xce, 0x04, 0x7b, + 0x56, 0xed, 0xc4, 0x59, 0xb1, 0x75, 0xf4, 0x5a, 0xe7, 0xf0, 0x3d, 0x69, + 0x31, 0x8e, 0x60, 0x07, 0x27, 0x9a, 0x4e, 0x00, 0xf4, 0xa4, 0xc6, 0x7b, + 0xd2, 0xf9, 0x6f, 0xff, 0x00, 0xeb, 0xa4, 0x02, 0x64, 0x51, 0xc6, 0x3d, + 0xe9, 0xa5, 0x48, 0xf4, 0x34, 0xb8, 0x1d, 0xa8, 0x18, 0xa0, 0x8f, 0x4a, + 0x50, 0xc0, 0x76, 0xa6, 0x60, 0xfa, 0x51, 0x8a, 0x04, 0x38, 0xb8, 0x3d, + 0xa9, 0xbb, 0x89, 0xa5, 0x55, 0xc8, 0xea, 0x05, 0x39, 0x76, 0xe3, 0x9e, + 0x68, 0x18, 0xce, 0x33, 0x4e, 0x05, 0x33, 0xcf, 0xf2, 0xa3, 0x69, 0xf7, + 0xa4, 0xc6, 0x3b, 0x0a, 0x00, 0x71, 0xdb, 0xe8, 0x3f, 0x2a, 0x6e, 0x40, + 0xe8, 0xb4, 0xbd, 0xba, 0x52, 0xa6, 0x43, 0x7d, 0xd0, 0x68, 0x01, 0xa0, + 0x73, 0x9c, 0x0a, 0x76, 0xd0, 0x7f, 0x86, 0xa4, 0x66, 0x03, 0xa6, 0x33, + 0xe9, 0x8a, 0x89, 0xa4, 0x39, 0x00, 0x8a, 0x00, 0xb3, 0x75, 0x12, 0xc6, + 0x22, 0x38, 0x00, 0x15, 0x15, 0x58, 0xe3, 0xb0, 0xfd, 0x2b, 0x4b, 0x53, + 0x4f, 0xdc, 0x42, 0x71, 0xd3, 0x8a, 0xce, 0x5c, 0x8e, 0xb4, 0x30, 0x13, + 0x8f, 0x4a, 0x4c, 0x28, 0x27, 0x80, 0x69, 0xc4, 0x8c, 0xf4, 0xcd, 0x34, + 0x81, 0xd7, 0x6e, 0x29, 0x00, 0xa0, 0x02, 0x3b, 0x0a, 0x4c, 0x6d, 0x39, + 0xeb, 0x47, 0x07, 0xb0, 0xa5, 0xc0, 0xc5, 0x30, 0x10, 0x80, 0x47, 0x22, + 0x94, 0x63, 0x3c, 0x01, 0xf9, 0xd2, 0x6c, 0xcf, 0x53, 0x49, 0x82, 0x0e, + 0x05, 0x00, 0x38, 0xa7, 0xa1, 0xfd, 0x69, 0xb8, 0x38, 0xea, 0x69, 0xc1, + 0x8f, 0x42, 0x29, 0x0e, 0x73, 0x95, 0xe9, 0x48, 0x06, 0x85, 0x6e, 0xbc, + 0xfe, 0x74, 0xa5, 0x1b, 0xae, 0x69, 0xd9, 0x6e, 0xa4, 0x03, 0x46, 0x73, + 0xd5, 0x71, 0x40, 0x0d, 0x08, 0x7d, 0x49, 0xa0, 0xab, 0x7a, 0x1a, 0x93, + 0x73, 0x74, 0xc9, 0xc5, 0x26, 0x54, 0x75, 0x26, 0x80, 0x22, 0x1b, 0x81, + 0xad, 0xdd, 0x3a, 0x22, 0xd6, 0x0c, 0x7b, 0xb1, 0x35, 0x8d, 0xfb, 0xbe, + 0xd9, 0xae, 0x8b, 0x4d, 0x8f, 0x16, 0x09, 0xef, 0xcd, 0x52, 0x13, 0x39, + 0xf6, 0xca, 0xb7, 0x26, 0x8c, 0xf6, 0xa9, 0x27, 0x5d, 0x93, 0x3a, 0xe7, + 0xa3, 0x1a, 0x4c, 0x02, 0xb4, 0x80, 0x8c, 0x86, 0xa7, 0x0c, 0x8e, 0xa2, + 0x94, 0x67, 0x38, 0x34, 0x84, 0x60, 0xd0, 0x01, 0x8c, 0xf6, 0xa7, 0xa9, + 0x64, 0xe4, 0x31, 0x53, 0xed, 0x4d, 0xc1, 0x1d, 0xf8, 0xa5, 0x07, 0xd3, + 0xf2, 0xa0, 0x09, 0x45, 0xc9, 0xff, 0x00, 0x96, 0x88, 0xb2, 0x0f, 0x71, + 0xcd, 0x05, 0x6d, 0xe4, 0x3f, 0x2e, 0x63, 0x3f, 0x98, 0xa8, 0x8e, 0xdf, + 0x43, 0x9a, 0x68, 0xc9, 0xe3, 0x91, 0xf8, 0x50, 0x05, 0x8f, 0xb1, 0x93, + 0xca, 0x3a, 0x49, 0xf4, 0x35, 0x13, 0xc4, 0xd1, 0xf0, 0xd1, 0xb2, 0xfd, + 0x69, 0x17, 0x20, 0xf4, 0xe7, 0xd4, 0x55, 0x88, 0xee, 0xa4, 0x51, 0x8d, + 0xd9, 0x1e, 0x8d, 0xcd, 0x00, 0x54, 0x24, 0x50, 0x09, 0xab, 0xde, 0x6d, + 0xab, 0xff, 0x00, 0xad, 0x80, 0x03, 0xea, 0x94, 0xbf, 0x65, 0xb5, 0x97, + 0xfd, 0x4c, 0xfb, 0x4f, 0xa3, 0x51, 0x61, 0x94, 0x3e, 0x6e, 0xf4, 0xa4, + 0x13, 0x56, 0xdf, 0x4e, 0xb8, 0x03, 0x23, 0x0e, 0x3d, 0x54, 0xd5, 0x76, + 0x85, 0xa3, 0xfb, 0xea, 0xc0, 0xfb, 0xd0, 0x04, 0x79, 0xf5, 0xa5, 0x38, + 0xed, 0x4d, 0x25, 0xba, 0x0e, 0x05, 0x20, 0x07, 0xae, 0x68, 0x01, 0xc7, + 0x8e, 0x80, 0xfe, 0x34, 0x8b, 0x9f, 0x4c, 0xd2, 0x6d, 0x24, 0xfa, 0xd3, + 0x8c, 0x4d, 0x8f, 0x6a, 0x00, 0x76, 0xec, 0x0e, 0x40, 0xa3, 0xcc, 0x23, + 0x18, 0xfd, 0x29, 0xa1, 0x54, 0x0c, 0x16, 0x1f, 0x87, 0x34, 0xbf, 0x20, + 0xee, 0x4d, 0x00, 0x5a, 0x8a, 0x6d, 0xdc, 0x48, 0xa1, 0x87, 0xaf, 0x7a, + 0x73, 0x5a, 0x09, 0x0e, 0xe8, 0x5f, 0x3f, 0xec, 0x9e, 0x0d, 0x55, 0xf3, + 0xb1, 0xc0, 0xda, 0x29, 0x7c, 0xe7, 0xce, 0x41, 0xfc, 0xa9, 0x88, 0x7b, + 0xab, 0xaf, 0xca, 0xc8, 0xca, 0x69, 0x0d, 0x3b, 0xed, 0x72, 0x00, 0x04, + 0x80, 0x32, 0xfa, 0x1e, 0xb4, 0xef, 0x2e, 0x2b, 0x8e, 0x62, 0x7d, 0xaf, + 0xfd, 0xd6, 0x38, 0xa0, 0x08, 0xfa, 0x8a, 0x07, 0x5a, 0x7c, 0xb0, 0x4b, + 0x1a, 0x02, 0xca, 0x6a, 0x35, 0xcb, 0x8e, 0xff, 0x00, 0x4c, 0x52, 0x01, + 0x70, 0x4d, 0x00, 0x52, 0x67, 0x61, 0xe4, 0x1c, 0x7a, 0x91, 0x46, 0xfc, + 0xf1, 0x9e, 0x68, 0x18, 0xa7, 0x3f, 0x85, 0x0a, 0x49, 0xce, 0x31, 0x49, + 0x92, 0x0f, 0x34, 0x03, 0xdf, 0xa5, 0x02, 0x1c, 0x73, 0xde, 0x95, 0x40, + 0x27, 0xad, 0x37, 0xaf, 0x7a, 0x7c, 0x31, 0xee, 0x95, 0x17, 0x3d, 0x58, + 0x50, 0x06, 0xd5, 0xdc, 0x60, 0x58, 0x26, 0x73, 0xf2, 0xe2, 0xb2, 0xc9, + 0x1f, 0xc3, 0x9a, 0xdb, 0xbe, 0x5f, 0xf4, 0x17, 0xf6, 0x02, 0xb0, 0xc6, + 0x71, 0x54, 0xc4, 0x80, 0xb1, 0xa6, 0x16, 0x26, 0x9d, 0x91, 0x9c, 0x66, + 0x82, 0x99, 0xe9, 0x48, 0x63, 0x0e, 0x4f, 0x5c, 0xd2, 0x7e, 0x22, 0x9c, + 0x57, 0x1d, 0xe9, 0xb8, 0xe7, 0xad, 0x00, 0x27, 0x1e, 0x94, 0x64, 0xfa, + 0x71, 0x4e, 0xda, 0x71, 0x49, 0xb3, 0xdc, 0xd0, 0x03, 0x3e, 0x62, 0x78, + 0x3f, 0x95, 0x3c, 0x4f, 0x32, 0xf1, 0xbf, 0x3e, 0xc7, 0x9a, 0x70, 0x4c, + 0x0a, 0x42, 0x80, 0xd0, 0x02, 0x1b, 0xa1, 0xfc, 0x70, 0xa9, 0xf7, 0x1c, + 0x52, 0x8f, 0xb3, 0x48, 0x3f, 0x8d, 0x0f, 0xe7, 0x4d, 0xf2, 0xc7, 0xa5, + 0x28, 0x51, 0xdf, 0x1f, 0x85, 0x00, 0x3b, 0xec, 0xaa, 0xdf, 0x72, 0x54, + 0x3f, 0x5e, 0x29, 0x8d, 0x65, 0x32, 0x8c, 0xf9, 0x64, 0x8f, 0x51, 0xcd, + 0x38, 0xa8, 0xa0, 0x6e, 0x53, 0x90, 0xec, 0x3f, 0x1a, 0x00, 0x80, 0xc2, + 0x7b, 0x82, 0x0d, 0x37, 0x66, 0x3d, 0x6a, 0xfa, 0xcf, 0x30, 0x1c, 0xb2, + 0xb0, 0xff, 0x00, 0x68, 0x66, 0x9a, 0x66, 0x81, 0xc7, 0xcf, 0x12, 0x13, + 0xea, 0x0e, 0x28, 0x02, 0x96, 0xc3, 0xeb, 0x46, 0xc2, 0x0d, 0x68, 0x2c, + 0x16, 0xd2, 0x7d, 0xd2, 0xc9, 0xf8, 0xe6, 0x87, 0xd3, 0xf2, 0x32, 0xb7, + 0x09, 0xff, 0x00, 0x02, 0xe2, 0x80, 0x33, 0x4a, 0x12, 0x71, 0x46, 0xcc, + 0xf1, 0x57, 0x9a, 0xc2, 0x5e, 0xa3, 0x6b, 0x7f, 0xba, 0x69, 0x86, 0xda, + 0x51, 0xff, 0x00, 0x2c, 0x8f, 0xe5, 0x40, 0x14, 0xf6, 0x1f, 0x5c, 0x52, + 0xed, 0x07, 0xbd, 0x4f, 0xb1, 0xb3, 0xca, 0x91, 0xf8, 0x52, 0xac, 0x7e, + 0xd8, 0xa0, 0x08, 0x02, 0x1a, 0x36, 0x13, 0xda, 0xac, 0x6c, 0x19, 0xeb, + 0x41, 0x60, 0xbd, 0xa8, 0x02, 0x11, 0x09, 0x3f, 0x4a, 0x77, 0x93, 0x52, + 0x6e, 0xcf, 0x72, 0x29, 0x4b, 0x1c, 0x71, 0x40, 0x11, 0x6c, 0x02, 0x9c, + 0x16, 0x94, 0x67, 0xbd, 0x29, 0xc6, 0x33, 0x9a, 0x00, 0x61, 0x41, 0x46, + 0xd1, 0x4b, 0xc6, 0x29, 0xca, 0x3f, 0x3a, 0x00, 0x6a, 0xa0, 0xcf, 0x34, + 0x8c, 0xbd, 0xea, 0x56, 0xe1, 0x71, 0x51, 0x95, 0xe2, 0x90, 0xc6, 0x6d, + 0xc0, 0x06, 0x9a, 0xd8, 0xdd, 0x4f, 0x6c, 0x6d, 0xe6, 0x8d, 0xa4, 0x81, + 0x40, 0x0c, 0xc6, 0x7a, 0x50, 0xc9, 0x9f, 0x5c, 0xd3, 0xb1, 0x83, 0xde, + 0x8c, 0x76, 0xa0, 0x08, 0xc0, 0x14, 0xe0, 0x05, 0x38, 0x28, 0xe7, 0x19, + 0xa7, 0x0c, 0x0e, 0xd4, 0xc0, 0x8c, 0xa0, 0xf4, 0xa6, 0x14, 0x1d, 0xaa, + 0x53, 0x8f, 0x7a, 0x4d, 0xbc, 0x67, 0x8c, 0x7b, 0xd0, 0x03, 0x42, 0x2d, + 0x2e, 0xd5, 0xc7, 0x4e, 0x28, 0x53, 0xc6, 0x31, 0x4e, 0x38, 0xc6, 0x4e, + 0x28, 0x02, 0x31, 0x1f, 0x39, 0xa7, 0x32, 0xae, 0x31, 0x82, 0x69, 0x09, + 0x6e, 0xc3, 0x8a, 0x91, 0x55, 0xdd, 0x7e, 0x58, 0xd8, 0x9a, 0x00, 0x8b, + 0x66, 0x17, 0x81, 0x4c, 0x3c, 0x1c, 0x55, 0xbf, 0xb0, 0xce, 0xc3, 0xee, + 0xe3, 0xea, 0x69, 0x7f, 0xb3, 0xc8, 0x1f, 0x34, 0x91, 0x83, 0xf5, 0xa0, + 0x45, 0x23, 0xd3, 0xad, 0x15, 0x7c, 0x5a, 0x40, 0xbf, 0x7e, 0xe1, 0x7f, + 0xe0, 0x23, 0x34, 0x85, 0x2c, 0xd0, 0xf4, 0x91, 0xff, 0x00, 0x4a, 0x00, + 0xa3, 0xd0, 0x53, 0x82, 0x16, 0xe8, 0x09, 0xab, 0x9e, 0x7c, 0x29, 0xc2, + 0x5a, 0xaf, 0xd5, 0xb9, 0xa0, 0xdf, 0xcf, 0x8d, 0xa8, 0x15, 0x47, 0xa0, + 0x14, 0x01, 0x02, 0x5a, 0x4c, 0xfd, 0x23, 0x6f, 0xca, 0xa4, 0x16, 0x6e, + 0x0f, 0xcc, 0x51, 0x7e, 0xa6, 0x9c, 0xb7, 0x73, 0xf4, 0x66, 0x3c, 0xfa, + 0xd3, 0x24, 0x69, 0x09, 0xcf, 0x5a, 0x00, 0x77, 0x91, 0x0a, 0xf5, 0x72, + 0xc7, 0xd1, 0x45, 0x1b, 0x61, 0x5e, 0x91, 0x93, 0xfe, 0xf1, 0xa8, 0x81, + 0x70, 0x79, 0x14, 0xbc, 0xfa, 0x66, 0x8b, 0x81, 0x21, 0x93, 0x03, 0xe5, + 0x0a, 0x3e, 0x82, 0xa3, 0x67, 0x2f, 0xd4, 0x9f, 0xc6, 0x90, 0x36, 0xd3, + 0xf7, 0x69, 0xe1, 0xf2, 0x3a, 0x67, 0xda, 0x90, 0x11, 0xe7, 0xd4, 0x8a, + 0x4e, 0x07, 0x27, 0xa5, 0x3c, 0x81, 0x9e, 0x94, 0x1f, 0x97, 0xb7, 0xe9, + 0x40, 0x0d, 0x0c, 0xbe, 0xff, 0x00, 0x8d, 0x04, 0x66, 0x9c, 0x19, 0x08, + 0xe4, 0xfe, 0x94, 0xd2, 0x54, 0xf4, 0xcd, 0x00, 0x34, 0x8c, 0x1c, 0xe6, + 0x94, 0x2e, 0x7b, 0xd2, 0x8c, 0x9e, 0x8b, 0xf9, 0xd4, 0x9d, 0x07, 0x23, + 0xf2, 0xa0, 0x06, 0xec, 0x02, 0x86, 0x5c, 0x29, 0x03, 0x14, 0xe5, 0x52, + 0xcc, 0x00, 0x07, 0x27, 0xda, 0xa4, 0x36, 0xf2, 0x92, 0x40, 0x4c, 0xe2, + 0x98, 0x1b, 0x4c, 0x37, 0x44, 0x46, 0x3a, 0x8a, 0xe7, 0xbc, 0x97, 0xcf, + 0x4a, 0xe9, 0xf1, 0x95, 0x15, 0xcd, 0xdc, 0x09, 0x16, 0xe2, 0x45, 0x1b, + 0xb0, 0x18, 0xd0, 0xc1, 0x0c, 0x31, 0x32, 0xf5, 0x1c, 0xd2, 0x14, 0x6c, + 0x73, 0xfc, 0xe9, 0xa4, 0x4b, 0xce, 0x73, 0xc5, 0x34, 0x83, 0x9e, 0xa6, + 0x90, 0xc3, 0x61, 0x3d, 0x30, 0x29, 0x42, 0x60, 0x72, 0x45, 0x21, 0x38, + 0xa0, 0x1a, 0x40, 0x28, 0x38, 0xf7, 0xa5, 0x56, 0x19, 0xf9, 0x87, 0x14, + 0x9f, 0x4c, 0x53, 0x73, 0x9e, 0xa3, 0xf4, 0xa0, 0x09, 0x7c, 0xc8, 0xba, + 0x05, 0x34, 0x79, 0x8a, 0x3b, 0x0a, 0x60, 0x0c, 0x7a, 0x54, 0x80, 0xa8, + 0x1f, 0x32, 0x0c, 0xfa, 0xd3, 0x10, 0xcd, 0xe5, 0x8f, 0x14, 0xe5, 0x0d, + 0xdd, 0x68, 0x2e, 0x47, 0x2b, 0x81, 0x49, 0xe7, 0xe7, 0xd7, 0xf0, 0xa0, + 0x64, 0x9b, 0x0f, 0xb5, 0x21, 0x8f, 0x07, 0x96, 0xc7, 0xd2, 0xa3, 0x13, + 0x32, 0xf4, 0x1f, 0x9d, 0x29, 0x9e, 0x46, 0x3c, 0x28, 0xc5, 0x02, 0x1f, + 0xf2, 0x0e, 0xec, 0x4d, 0x34, 0x9d, 0xcc, 0x01, 0xcf, 0x5a, 0x66, 0x09, + 0xe4, 0x8a, 0x74, 0x63, 0x32, 0x28, 0xdc, 0x06, 0x4f, 0x4a, 0x00, 0xd5, + 0xd5, 0x31, 0xf6, 0x35, 0x3e, 0x84, 0x56, 0x3e, 0x73, 0xde, 0xb6, 0xb5, + 0x08, 0x89, 0xb2, 0x6c, 0xf4, 0x18, 0xac, 0x60, 0x83, 0x1d, 0x68, 0x60, + 0x20, 0xe6, 0x97, 0x1e, 0xb4, 0xd3, 0x81, 0xd2, 0x93, 0x7f, 0x3c, 0xd2, + 0x18, 0xec, 0x73, 0xd2, 0x82, 0x78, 0xa5, 0x12, 0x66, 0x90, 0x9d, 0xc7, + 0x8e, 0x94, 0x00, 0xa0, 0x0c, 0x66, 0x90, 0x1a, 0x53, 0xc0, 0xef, 0x48, + 0xb9, 0xff, 0x00, 0x22, 0x80, 0x17, 0x39, 0x38, 0x02, 0x97, 0xa5, 0x1b, + 0x87, 0xa8, 0xa6, 0xf5, 0x3e, 0xdf, 0x5a, 0x00, 0x46, 0xe7, 0xbe, 0x28, + 0xcb, 0x7a, 0x8a, 0x53, 0xb4, 0x0e, 0x05, 0x28, 0x8c, 0xb2, 0x82, 0x41, + 0xa0, 0x05, 0x0c, 0x83, 0xaf, 0x26, 0x91, 0x8a, 0xb0, 0xc8, 0x14, 0x8d, + 0x19, 0x0b, 0xc0, 0x35, 0x18, 0x46, 0x61, 0xd4, 0xe3, 0xe9, 0x40, 0x0f, + 0xcf, 0x38, 0xc5, 0x75, 0x76, 0xa8, 0x12, 0xda, 0x21, 0xe8, 0xa2, 0xb9, + 0x45, 0x8c, 0x99, 0x14, 0x73, 0xd7, 0x1d, 0x2b, 0xb2, 0x55, 0xc2, 0x81, + 0x8e, 0x82, 0xaa, 0x22, 0x67, 0x3b, 0x7e, 0xbb, 0x6f, 0x64, 0xc1, 0x00, + 0x67, 0x35, 0x50, 0x75, 0x23, 0x7d, 0x68, 0x6b, 0x0b, 0xb6, 0xf0, 0x10, + 0x3a, 0xae, 0x6b, 0x31, 0x89, 0x18, 0x34, 0x30, 0x1e, 0x7a, 0x83, 0xb8, + 0x9a, 0x78, 0x20, 0x8e, 0x82, 0xa2, 0xe6, 0x90, 0x65, 0x5b, 0x3d, 0xbb, + 0xd2, 0x02, 0x46, 0xf9, 0x46, 0x47, 0x4f, 0x4a, 0x6f, 0xb8, 0xeb, 0x4b, + 0x8c, 0xf7, 0xa6, 0x14, 0x1b, 0xba, 0xfd, 0x68, 0x02, 0x55, 0x90, 0x74, + 0x6c, 0x0a, 0x76, 0xfc, 0x7a, 0x1a, 0x8c, 0x44, 0xa4, 0x67, 0x39, 0xa3, + 0xca, 0x03, 0xa1, 0xfc, 0xe8, 0x02, 0x4c, 0x2b, 0xf7, 0xc1, 0xa4, 0xf2, + 0xbd, 0x4d, 0x34, 0x2a, 0x9e, 0x01, 0xa7, 0x63, 0x1e, 0xf4, 0x00, 0x6c, + 0xe3, 0x86, 0xa4, 0xd8, 0x7b, 0x9a, 0x70, 0xc1, 0xa5, 0xc6, 0x07, 0x5a, + 0x60, 0x09, 0x2c, 0x91, 0x1c, 0xa4, 0x8c, 0x2a, 0xda, 0x6a, 0x73, 0x63, + 0x12, 0xaa, 0x48, 0xbe, 0xe2, 0xa8, 0xb3, 0xa8, 0xe0, 0xe4, 0xd3, 0x0c, + 0x9f, 0xdd, 0x14, 0x01, 0xa9, 0xe7, 0xd8, 0x4b, 0xf7, 0xe2, 0x31, 0x9f, + 0x55, 0xa7, 0x0b, 0x0b, 0x69, 0x46, 0x61, 0x99, 0x73, 0xe8, 0xd5, 0x98, + 0x1f, 0x76, 0x32, 0x29, 0xdc, 0x76, 0xc8, 0xfa, 0x50, 0x05, 0xc9, 0x74, + 0xeb, 0x94, 0xfb, 0x88, 0x08, 0xf5, 0x5a, 0xa1, 0x2c, 0x33, 0x27, 0x12, + 0x29, 0x1f, 0x51, 0x56, 0x23, 0x9a, 0xea, 0x2f, 0xb9, 0x29, 0xc7, 0xb9, + 0xab, 0x49, 0xa9, 0x4f, 0xd2, 0x58, 0xd1, 0xc5, 0x00, 0x64, 0xf0, 0xa7, + 0xa5, 0x2f, 0xca, 0x7d, 0xeb, 0x67, 0xce, 0xb0, 0x97, 0xfd, 0x64, 0x1b, + 0x4f, 0xb0, 0xa4, 0x36, 0x7a, 0x7c, 0xc3, 0xe5, 0x9b, 0x6f, 0xd4, 0xd1, + 0x60, 0x31, 0xc2, 0xfb, 0x0c, 0xfb, 0x53, 0x86, 0xe1, 0xe8, 0x05, 0x6b, + 0x0d, 0x20, 0x11, 0xfb, 0xa9, 0xd5, 0x85, 0x45, 0x26, 0x95, 0x3c, 0x7c, + 0xaa, 0x86, 0x3e, 0xc6, 0x8b, 0x05, 0xcc, 0xed, 0xc7, 0xff, 0x00, 0xaf, + 0x48, 0x4a, 0x8e, 0x80, 0xe7, 0xd6, 0xac, 0x3d, 0x9d, 0xc8, 0xfb, 0xf0, + 0x3f, 0xe0, 0x2a, 0x35, 0x8c, 0x29, 0xfd, 0xec, 0x6e, 0x3d, 0xa9, 0x58, + 0x2e, 0x49, 0x6d, 0x75, 0x32, 0x1c, 0x07, 0xca, 0x77, 0x0d, 0xc8, 0xab, + 0x82, 0x4b, 0x36, 0x6e, 0x54, 0xc6, 0xe7, 0xba, 0xf4, 0xaa, 0x2c, 0xd1, + 0x81, 0xf2, 0x82, 0x29, 0x14, 0x64, 0xf0, 0x38, 0xa6, 0x05, 0xf9, 0x2c, + 0xa5, 0x94, 0xee, 0x8a, 0x45, 0x91, 0x07, 0xa7, 0x5a, 0xa2, 0xfb, 0xa3, + 0x62, 0x92, 0x21, 0x04, 0x54, 0xc9, 0x22, 0x47, 0x82, 0xbb, 0xd4, 0xfb, + 0x1a, 0xb3, 0xf6, 0xff, 0x00, 0x97, 0x13, 0x22, 0xc8, 0xbe, 0xe3, 0x9a, + 0x00, 0xce, 0xf3, 0x57, 0x23, 0x2a, 0x69, 0xfb, 0x72, 0x72, 0x38, 0xcf, + 0x6a, 0xbe, 0x83, 0x4f, 0x9d, 0x49, 0x46, 0xf2, 0x5c, 0xff, 0x00, 0x7b, + 0xa5, 0x57, 0x97, 0x4b, 0xb8, 0x03, 0x31, 0x11, 0x2a, 0xfa, 0xa9, 0xa2, + 0xc1, 0x72, 0xbc, 0x6a, 0x4f, 0x5c, 0xd5, 0xbb, 0x15, 0xdd, 0x7b, 0x10, + 0xf7, 0xcd, 0x55, 0xf2, 0xdd, 0x0e, 0x1f, 0x28, 0x47, 0x66, 0xad, 0x0d, + 0x26, 0x3c, 0xde, 0x86, 0xdc, 0x0e, 0x07, 0x6a, 0x10, 0x1b, 0x37, 0x2a, + 0x1a, 0xd6, 0x41, 0x8f, 0xe1, 0x35, 0xcf, 0x2a, 0xa1, 0xe3, 0x2c, 0x3d, + 0xab, 0xa7, 0x65, 0x0c, 0x8c, 0x0f, 0x71, 0x58, 0x93, 0x47, 0x6f, 0x1b, + 0xfc, 0x92, 0x64, 0x7d, 0x6a, 0x98, 0x91, 0x59, 0x92, 0x35, 0x5c, 0x9c, + 0x7e, 0x26, 0xab, 0x33, 0xe0, 0xfc, 0xa4, 0x1f, 0xa5, 0x5d, 0x9d, 0x21, + 0x3b, 0x4c, 0x5c, 0x9c, 0x73, 0x9a, 0xaa, 0xf1, 0x81, 0xc9, 0x2a, 0x3d, + 0xb1, 0x52, 0x32, 0x22, 0xc4, 0xf5, 0xa7, 0xa0, 0x53, 0xcb, 0x30, 0x15, + 0x19, 0x20, 0xf1, 0x83, 0x4d, 0x21, 0x7d, 0xe8, 0x02, 0xc3, 0x49, 0x1a, + 0x70, 0xb9, 0x3e, 0xf4, 0x81, 0xc3, 0x74, 0xfe, 0x54, 0xc4, 0x48, 0xfa, + 0x96, 0xcf, 0xb5, 0x4b, 0xb9, 0x40, 0xc2, 0xe2, 0x80, 0x0c, 0x9e, 0xf4, + 0x84, 0x9c, 0x63, 0x18, 0xa4, 0xdc, 0xc3, 0x9a, 0x69, 0x90, 0x9a, 0x00, + 0x30, 0x7b, 0x64, 0xd3, 0xf6, 0x63, 0x93, 0x91, 0x4c, 0x12, 0x15, 0x1c, + 0x51, 0xe6, 0x03, 0xd4, 0xf3, 0x40, 0x12, 0x04, 0x1f, 0xde, 0xcd, 0x1b, + 0x41, 0x38, 0xea, 0x29, 0xa8, 0xbe, 0x67, 0x00, 0xe3, 0xde, 0x9f, 0xe4, + 0x91, 0xd1, 0xa8, 0x01, 0x0a, 0xaf, 0x4c, 0x0a, 0x3c, 0x95, 0xf4, 0x14, + 0x79, 0x7c, 0x9f, 0x98, 0x71, 0x41, 0x56, 0xc7, 0xde, 0xa0, 0x63, 0x77, + 0xe1, 0x70, 0x38, 0xa6, 0x6e, 0x27, 0xbd, 0x48, 0x22, 0x3e, 0xa2, 0xab, + 0x4a, 0x19, 0x5c, 0x8c, 0xd2, 0x02, 0x40, 0xe5, 0x4f, 0x5a, 0x91, 0x6e, + 0xa5, 0x43, 0xc3, 0x30, 0xfc, 0x6a, 0xa7, 0xcd, 0xd7, 0x9a, 0x97, 0xe5, + 0x23, 0xa7, 0xeb, 0x40, 0x17, 0x17, 0x50, 0x98, 0x0e, 0x76, 0xb7, 0xd4, + 0x53, 0xc5, 0xe0, 0x94, 0x73, 0x6e, 0x87, 0xe8, 0x31, 0x54, 0x09, 0xc7, + 0x6c, 0x8a, 0x7a, 0x33, 0xaf, 0x2a, 0xb8, 0xa7, 0x71, 0x58, 0xba, 0x5e, + 0xdb, 0x1f, 0x3d, 0xbb, 0x2f, 0xd1, 0xaa, 0x22, 0xb6, 0x4c, 0x78, 0xf3, + 0x57, 0xf5, 0xa8, 0x0d, 0xcb, 0x9f, 0x94, 0xa8, 0xfc, 0x45, 0x30, 0x39, + 0xdd, 0xce, 0x31, 0x45, 0xc2, 0xc5, 0xb1, 0x05, 0x91, 0x1c, 0x4c, 0xe3, + 0xea, 0x29, 0x45, 0xac, 0x07, 0xee, 0xdc, 0xaf, 0xe2, 0x2a, 0xa3, 0x32, + 0x9e, 0x99, 0x06, 0x99, 0xbf, 0x1d, 0x68, 0x02, 0xf1, 0xb1, 0xdc, 0xbf, + 0xf1, 0xf3, 0x1f, 0xe7, 0x8a, 0x67, 0xf6, 0x74, 0x83, 0xee, 0xcc, 0x87, + 0xfe, 0x04, 0x2a, 0xa6, 0xf1, 0xd9, 0xa8, 0x12, 0xe3, 0xaf, 0x14, 0x01, + 0x79, 0x74, 0xeb, 0x83, 0xce, 0x14, 0xfd, 0x18, 0x50, 0x2c, 0x6e, 0x17, + 0x9d, 0x99, 0xfc, 0x6a, 0xa0, 0x91, 0xbb, 0x31, 0xc7, 0xd6, 0x8f, 0x36, + 0x4f, 0x53, 0x40, 0x16, 0xd6, 0xc6, 0xea, 0x40, 0x18, 0x44, 0x70, 0x69, + 0xaf, 0x61, 0x72, 0x7f, 0x83, 0xf5, 0xaa, 0xe2, 0xe2, 0x61, 0xc0, 0x91, + 0x87, 0xe3, 0x4d, 0x6b, 0x99, 0xbf, 0xbc, 0x7f, 0xef, 0xaa, 0x34, 0x02, + 0xc7, 0xf6, 0x6d, 0xc9, 0x1f, 0xea, 0xff, 0x00, 0x1c, 0xd4, 0x89, 0xa7, + 0xdc, 0x14, 0x07, 0x03, 0x1e, 0xe6, 0xa8, 0x9b, 0xa9, 0xc0, 0xc7, 0x98, + 0xc0, 0x7a, 0x66, 0x98, 0x64, 0x73, 0xd6, 0x43, 0xf9, 0xd1, 0xa0, 0x1a, + 0x27, 0x4c, 0x94, 0x8e, 0x59, 0x3f, 0x3a, 0x41, 0xa3, 0x98, 0xf9, 0x2f, + 0x0a, 0x13, 0xea, 0xd5, 0x41, 0x58, 0xff, 0x00, 0x7f, 0x3f, 0x5a, 0x57, + 0x91, 0xe4, 0x00, 0x48, 0x55, 0x80, 0xe0, 0x67, 0xb5, 0x17, 0x40, 0x5e, + 0x6b, 0x21, 0x1e, 0x37, 0xdc, 0x46, 0xb9, 0xa8, 0x8d, 0xbc, 0x3f, 0xc5, + 0x78, 0xa7, 0xe8, 0xb5, 0x54, 0xcb, 0xb8, 0x05, 0x39, 0x60, 0x3a, 0x7b, + 0x52, 0x17, 0x19, 0x18, 0xe2, 0x8b, 0x81, 0x6f, 0xca, 0xb4, 0x5e, 0xb7, + 0x2c, 0x7e, 0x8b, 0x4d, 0x22, 0xcb, 0xbb, 0x4a, 0xd5, 0x12, 0x0d, 0xfc, + 0xec, 0xe3, 0xd6, 0x95, 0xe2, 0x1d, 0x4e, 0x3f, 0x3a, 0x2e, 0x04, 0xa5, + 0xad, 0x57, 0xa4, 0x0e, 0xdf, 0x53, 0x51, 0x19, 0x94, 0xb6, 0x23, 0xb7, + 0x4f, 0xc7, 0x9a, 0x60, 0x0c, 0xdf, 0xde, 0xc7, 0xae, 0x69, 0xc7, 0x6a, + 0x8c, 0x12, 0x47, 0xe1, 0x4a, 0xe0, 0x39, 0xee, 0x65, 0x40, 0x02, 0xa4, + 0x63, 0x3e, 0x82, 0x9a, 0xf3, 0x5c, 0xba, 0x80, 0x1d, 0x80, 0xf6, 0xa8, + 0xf6, 0x64, 0xe4, 0x9a, 0x46, 0x2c, 0x3a, 0x66, 0x81, 0x88, 0xcd, 0x32, + 0x9f, 0x99, 0xda, 0x9b, 0xf6, 0x8e, 0xbc, 0x1f, 0xad, 0x2f, 0xcc, 0x7e, + 0xf1, 0xfc, 0xe9, 0xbb, 0x54, 0xf7, 0x18, 0xa0, 0x04, 0x0e, 0xfd, 0x78, + 0xa9, 0x63, 0x72, 0x47, 0x3c, 0xfe, 0x14, 0xcc, 0x28, 0xed, 0x4e, 0x53, + 0xc7, 0x03, 0x14, 0x00, 0xfd, 0xa5, 0x9b, 0xd2, 0x82, 0x80, 0x1c, 0xee, + 0xc7, 0xe1, 0x48, 0x0e, 0xe6, 0xc6, 0x69, 0xe5, 0x47, 0x7a, 0x00, 0x69, + 0x5c, 0xf5, 0x73, 0xf9, 0x52, 0xae, 0x48, 0xfb, 0xc6, 0x99, 0x92, 0x38, + 0xa5, 0x19, 0x07, 0x34, 0x00, 0xae, 0x0a, 0xf3, 0xb8, 0x91, 0x48, 0x09, + 0x1c, 0x8a, 0x76, 0x58, 0xf4, 0x14, 0xd2, 0xee, 0xbd, 0x47, 0xe9, 0x40, + 0x0a, 0x5c, 0x12, 0x38, 0x24, 0xd2, 0xef, 0x3e, 0x98, 0x14, 0xc2, 0xc5, + 0xbb, 0xf3, 0x52, 0xc6, 0x77, 0x0c, 0x1a, 0x00, 0x89, 0x95, 0x89, 0xe0, + 0x92, 0x29, 0xc1, 0x5c, 0xae, 0x32, 0x31, 0xef, 0x52, 0x84, 0xc1, 0xe8, + 0x31, 0x4e, 0xc2, 0xe7, 0xa0, 0x14, 0x08, 0x8b, 0xca, 0x38, 0xea, 0x3f, + 0x0a, 0x6a, 0xa1, 0xdd, 0x82, 0x0f, 0xe1, 0x53, 0x86, 0x2a, 0x39, 0xe6, + 0x80, 0x01, 0xe4, 0x1c, 0x50, 0x02, 0x6d, 0x03, 0xa5, 0x34, 0x9c, 0x75, + 0xe2, 0x9c, 0x73, 0xd0, 0x80, 0x69, 0xa0, 0x64, 0xf5, 0xa6, 0x00, 0x18, + 0x0e, 0x99, 0xa7, 0x46, 0x59, 0xa7, 0x41, 0xb9, 0xb9, 0x3e, 0xb4, 0x84, + 0x60, 0x77, 0x35, 0x25, 0x9a, 0x83, 0x76, 0x83, 0x1e, 0xbd, 0x68, 0x03, + 0xa0, 0xfe, 0x01, 0x5c, 0xed, 0xfb, 0xb4, 0x77, 0xb2, 0x2e, 0x7b, 0xe6, + 0xba, 0x30, 0x38, 0x15, 0x87, 0xac, 0x44, 0x45, 0xda, 0x90, 0x38, 0x2b, + 0x4d, 0x89, 0x19, 0xfe, 0x73, 0x7f, 0x7a, 0x99, 0xb7, 0xf1, 0xa7, 0xec, + 0x22, 0x93, 0x05, 0x46, 0x06, 0x2a, 0x46, 0x37, 0x63, 0x0e, 0xdc, 0x7a, + 0x52, 0xe3, 0xda, 0x9a, 0x5d, 0xc7, 0x7e, 0x2a, 0x45, 0x50, 0x79, 0xc9, + 0xa0, 0x06, 0x60, 0xe7, 0xd0, 0x54, 0xa2, 0x31, 0x8c, 0x97, 0xe2, 0x98, + 0xe8, 0x4f, 0x40, 0x40, 0xa5, 0x58, 0x9c, 0x8c, 0x62, 0x80, 0x06, 0x01, + 0x0e, 0x54, 0xe7, 0x34, 0xcd, 0xc0, 0x76, 0xa9, 0x44, 0x0f, 0xdf, 0x14, + 0xa2, 0x35, 0x27, 0x0c, 0x79, 0xa0, 0x08, 0xd0, 0x17, 0xf4, 0x14, 0xf1, + 0x00, 0x27, 0x35, 0x28, 0x8d, 0x17, 0x9c, 0x7e, 0x34, 0xa1, 0x80, 0xfb, + 0xbc, 0xd0, 0x03, 0x16, 0x32, 0xbf, 0xc2, 0x0d, 0x0c, 0xae, 0x07, 0x00, + 0x53, 0xcc, 0xa7, 0x1f, 0x74, 0x8a, 0x61, 0x72, 0x47, 0x5a, 0x00, 0xac, + 0xd9, 0x24, 0x8c, 0xe3, 0xda, 0xa4, 0xb7, 0x43, 0xf6, 0x88, 0xfe, 0x53, + 0xf7, 0x85, 0x38, 0x1d, 0xad, 0x9c, 0x67, 0xeb, 0x56, 0x2d, 0xdd, 0x5a, + 0x78, 0xc6, 0x08, 0x3b, 0x85, 0x00, 0x6c, 0x5f, 0x28, 0x7b, 0x39, 0x46, + 0x7f, 0x87, 0x38, 0xae, 0x6b, 0x3e, 0xd5, 0xd3, 0xcc, 0x37, 0x41, 0x20, + 0xff, 0x00, 0x64, 0xd7, 0x2e, 0x00, 0x27, 0x8a, 0x6c, 0x00, 0xb1, 0xa6, + 0x96, 0xcf, 0x18, 0x14, 0xfc, 0x1a, 0x6e, 0x46, 0x79, 0x1f, 0x95, 0x21, + 0x8b, 0xb7, 0x8a, 0x0f, 0xca, 0x3d, 0xe9, 0xd9, 0x18, 0xeb, 0x8f, 0xad, + 0x1c, 0x93, 0xc9, 0x06, 0x80, 0x23, 0xdd, 0xce, 0x71, 0x4f, 0xde, 0x31, + 0x82, 0x4d, 0x2f, 0xc8, 0x4e, 0x36, 0xd2, 0xec, 0x4f, 0x70, 0x69, 0x01, + 0x1e, 0x14, 0xf4, 0x34, 0x6c, 0x3d, 0xaa, 0x45, 0x4c, 0x1c, 0x29, 0x1e, + 0xf9, 0xa9, 0x36, 0x67, 0xd2, 0x80, 0x2b, 0xf0, 0xa3, 0x04, 0x66, 0x9d, + 0xb9, 0xbb, 0x6e, 0x1f, 0x8d, 0x05, 0x93, 0x71, 0x1b, 0x73, 0x8e, 0xe2, + 0x93, 0x2b, 0xbb, 0x3c, 0x81, 0x40, 0x0e, 0x56, 0x7c, 0x1d, 0xc4, 0xd2, + 0x09, 0x14, 0x67, 0x26, 0x8d, 0xca, 0x3f, 0x8b, 0xad, 0x33, 0x62, 0x1c, + 0x9d, 0xc6, 0x80, 0x2d, 0x5a, 0xb8, 0x7b, 0xc8, 0x54, 0x1c, 0xe5, 0x85, + 0x75, 0x24, 0x9c, 0xf5, 0xae, 0x67, 0x49, 0x8d, 0x0e, 0xa3, 0x1e, 0x33, + 0xc6, 0x4d, 0x74, 0xd9, 0x27, 0x3c, 0x55, 0x22, 0x59, 0x93, 0xac, 0x26, + 0x5a, 0x27, 0xfa, 0x8a, 0xc9, 0x28, 0x08, 0xc5, 0x6d, 0xeb, 0x0a, 0x3e, + 0xcc, 0x8d, 0xe8, 0xd5, 0x89, 0xbb, 0xae, 0x28, 0x63, 0x40, 0xbd, 0x36, + 0xe3, 0x91, 0x4b, 0xed, 0xb6, 0x9a, 0xad, 0xb5, 0xfa, 0x13, 0x9a, 0x90, + 0x7d, 0x29, 0x01, 0x1a, 0xa8, 0x53, 0x82, 0x38, 0xa7, 0x85, 0x1d, 0x80, + 0xa0, 0xe4, 0xf1, 0x8a, 0x8c, 0x12, 0xa7, 0x6b, 0x12, 0x4d, 0x00, 0x3d, + 0x93, 0x23, 0x2b, 0xc1, 0xa6, 0x84, 0x07, 0x9a, 0x32, 0x0f, 0x14, 0xd2, + 0x3a, 0xe0, 0xe2, 0x81, 0x8e, 0xdb, 0x93, 0xc1, 0xa7, 0x64, 0x8f, 0xbc, + 0x72, 0x29, 0x89, 0x83, 0xc3, 0x64, 0x1a, 0x90, 0x05, 0x3d, 0x0d, 0x02, + 0x01, 0x83, 0xd2, 0x82, 0x09, 0xf7, 0xa3, 0x6e, 0x39, 0x1d, 0x68, 0x0f, + 0xce, 0x08, 0xc5, 0x30, 0x13, 0x18, 0xeb, 0x46, 0xcc, 0xf4, 0xa7, 0x9c, + 0x1a, 0x3a, 0x50, 0x03, 0x36, 0xb0, 0x14, 0x99, 0xf5, 0xcd, 0x2e, 0xec, + 0x1e, 0xb4, 0xee, 0xbd, 0x45, 0x00, 0x0a, 0xe6, 0x9c, 0x1d, 0xa8, 0x0b, + 0x8a, 0x5e, 0x82, 0x80, 0x13, 0x26, 0x9a, 0x48, 0x07, 0x27, 0xad, 0x39, + 0x70, 0xdd, 0xf1, 0x4e, 0xf2, 0x97, 0xae, 0x32, 0x7d, 0xe8, 0x01, 0x16, + 0x47, 0x53, 0xf2, 0x92, 0x2a, 0xc4, 0x77, 0x97, 0x11, 0xf3, 0xe6, 0x37, + 0xe7, 0x51, 0x6d, 0x1f, 0x4a, 0x8c, 0x8e, 0x78, 0x39, 0xf7, 0xa0, 0x0d, + 0x14, 0xd6, 0xae, 0x17, 0xaa, 0x86, 0xfa, 0x8a, 0x78, 0xd6, 0xf3, 0xfe, + 0xb2, 0xd8, 0x11, 0x59, 0x60, 0x9c, 0x52, 0xe7, 0x1d, 0x33, 0x45, 0xd8, + 0x1a, 0x9f, 0xda, 0x56, 0x0f, 0xfe, 0xb2, 0xd4, 0x0f, 0xc0, 0x53, 0x96, + 0xe3, 0x4a, 0x93, 0x8f, 0x2f, 0x6f, 0xe1, 0x8a, 0xc7, 0xd8, 0x1f, 0xef, + 0x63, 0xe9, 0x4e, 0x0a, 0x3b, 0x0a, 0x2e, 0x16, 0x35, 0xbc, 0xbd, 0x2d, + 0x8f, 0x0e, 0x54, 0xfd, 0x6a, 0x33, 0x69, 0x68, 0xc7, 0xe4, 0x97, 0x81, + 0xd8, 0x9a, 0xcd, 0x3c, 0x9c, 0x8e, 0x00, 0xfd, 0x69, 0x03, 0x0e, 0xe4, + 0xe6, 0x8b, 0x81, 0xa2, 0x74, 0xf8, 0x58, 0x10, 0x26, 0x03, 0xf0, 0xa5, + 0x8e, 0xd2, 0x58, 0x4f, 0xee, 0xae, 0x31, 0x8a, 0xce, 0xdc, 0x73, 0xc1, + 0x38, 0x14, 0x8e, 0xec, 0x14, 0x90, 0xe6, 0x80, 0x37, 0xad, 0x1a, 0x5b, + 0x93, 0x22, 0x5c, 0xaa, 0x38, 0x53, 0x8c, 0xe3, 0xad, 0x3e, 0x18, 0x52, + 0x09, 0x59, 0xa2, 0x87, 0x66, 0x78, 0xc9, 0x3d, 0x6b, 0x9c, 0x86, 0x6b, + 0x88, 0x5b, 0x72, 0x33, 0xab, 0x1e, 0x4d, 0x74, 0x3a, 0x6d, 0xc4, 0xb7, + 0x56, 0xc5, 0xa5, 0x20, 0x90, 0x70, 0x0e, 0x29, 0xa6, 0x26, 0x58, 0x33, + 0x48, 0x3d, 0x2a, 0xb7, 0xd8, 0xa2, 0x98, 0xb6, 0xd0, 0x55, 0x87, 0xa1, + 0xab, 0xc2, 0x31, 0xea, 0x2b, 0x1a, 0xe6, 0xee, 0x51, 0x3c, 0xb0, 0xab, + 0x15, 0xc1, 0xfe, 0x1a, 0x6c, 0x11, 0x5a, 0xe2, 0x39, 0x22, 0xb8, 0x68, + 0x8b, 0x0c, 0x0e, 0x84, 0x77, 0xa8, 0xbc, 0xa5, 0xc6, 0x76, 0xee, 0x3f, + 0xad, 0x4a, 0x10, 0x92, 0x4b, 0x12, 0x49, 0xf5, 0xa7, 0xf0, 0xa3, 0x9e, + 0x2a, 0x46, 0x52, 0x60, 0xd9, 0xfb, 0xa5, 0x7f, 0x0a, 0x6e, 0x73, 0xc6, + 0x6a, 0xdb, 0xc8, 0x48, 0xe1, 0x4e, 0x3d, 0x69, 0xa1, 0x62, 0x23, 0x25, + 0x79, 0xf5, 0x34, 0x01, 0x53, 0x38, 0x38, 0x23, 0x22, 0xa4, 0x59, 0x30, + 0x3e, 0xee, 0x3d, 0xaa, 0x56, 0x48, 0x70, 0x40, 0xc6, 0x7e, 0xb4, 0xc5, + 0x45, 0x56, 0xe0, 0xd0, 0x00, 0x46, 0xe1, 0xf3, 0x53, 0x5b, 0x6a, 0x0c, + 0x92, 0x6a, 0x46, 0xc0, 0x04, 0xee, 0xa8, 0xb6, 0x96, 0xe4, 0xd0, 0x02, + 0x6f, 0xe0, 0xe0, 0x83, 0x46, 0x41, 0xea, 0x46, 0x69, 0x76, 0x80, 0x7d, + 0x69, 0x53, 0xef, 0x67, 0x6e, 0x40, 0xa4, 0x03, 0xd2, 0x42, 0x83, 0x00, + 0x0a, 0x71, 0xb9, 0x38, 0xe9, 0x4e, 0x12, 0x2e, 0x39, 0x5f, 0xd2, 0x83, + 0x24, 0x40, 0xe0, 0x81, 0xf9, 0x50, 0x32, 0x3e, 0xdc, 0x9e, 0x69, 0x3b, + 0x1a, 0x94, 0xbc, 0x24, 0x74, 0x14, 0xc6, 0x68, 0xf0, 0x4a, 0xe3, 0x34, + 0x00, 0xe0, 0x1b, 0x1d, 0xaa, 0x36, 0x66, 0x53, 0xc8, 0x14, 0xfd, 0xeb, + 0xdd, 0x85, 0x34, 0xb2, 0x33, 0x01, 0x90, 0x68, 0x01, 0x04, 0x9f, 0x4a, + 0x6e, 0x3d, 0xea, 0xc0, 0x8d, 0x3d, 0x05, 0x23, 0xc6, 0xb8, 0xc8, 0x1c, + 0x8a, 0x00, 0xaf, 0x8f, 0xf6, 0xaa, 0x68, 0xe5, 0xc0, 0xc3, 0x67, 0x3e, + 0xb8, 0xa6, 0xef, 0xc7, 0x45, 0xa0, 0x39, 0x3d, 0xa8, 0x01, 0xef, 0xb6, + 0x41, 0x8c, 0x73, 0x55, 0xca, 0xed, 0x3c, 0xf4, 0xf5, 0xa9, 0x43, 0x12, + 0x4f, 0x40, 0x69, 0xc5, 0x32, 0x39, 0x34, 0x01, 0x03, 0x20, 0x61, 0xe9, + 0x51, 0x14, 0x2a, 0x7e, 0x63, 0xc7, 0xad, 0x5a, 0x11, 0xa2, 0x8a, 0x42, + 0xd1, 0x0e, 0xe2, 0x80, 0x20, 0x08, 0x31, 0xd7, 0x34, 0xf5, 0x01, 0x7a, + 0xae, 0x69, 0xc4, 0x2b, 0xfd, 0xc0, 0x69, 0x44, 0x4f, 0x81, 0x9c, 0x0a, + 0x00, 0x40, 0xe0, 0xfd, 0xd5, 0xa0, 0x97, 0xf6, 0x14, 0xef, 0xb3, 0x82, + 0x72, 0x5b, 0xf2, 0xa6, 0x48, 0x7c, 0x95, 0xcb, 0x36, 0x45, 0x02, 0x10, + 0x90, 0x06, 0x5c, 0x73, 0x46, 0x73, 0xc8, 0x51, 0x4a, 0x8d, 0xe6, 0x8c, + 0x85, 0x38, 0xf7, 0xa3, 0xca, 0x39, 0xc8, 0xe3, 0xe9, 0x40, 0x0c, 0x6d, + 0xf8, 0xe8, 0x31, 0x51, 0x7c, 0xa1, 0xba, 0x1c, 0xd5, 0xa2, 0x87, 0xd6, + 0xa3, 0x27, 0x1c, 0x30, 0xe6, 0x80, 0x23, 0xda, 0x4f, 0x39, 0xc5, 0x21, + 0x4e, 0x7d, 0x7e, 0xb4, 0xed, 0x84, 0xe7, 0xf8, 0x69, 0x4a, 0x36, 0x06, + 0x1b, 0x3f, 0x5a, 0x00, 0x68, 0x05, 0x8e, 0x3a, 0x0f, 0x5a, 0x9d, 0x52, + 0x35, 0xc7, 0x39, 0x3e, 0xb5, 0x01, 0x2c, 0xbc, 0x05, 0x07, 0xe9, 0x47, + 0x27, 0xef, 0x1f, 0xc2, 0x80, 0x2d, 0xe4, 0xfa, 0x8a, 0x85, 0xe3, 0x91, + 0xcf, 0x24, 0x11, 0x51, 0xee, 0xc1, 0xc7, 0x34, 0x9e, 0x63, 0x1e, 0x03, + 0x1a, 0x06, 0x23, 0x2b, 0x27, 0x19, 0xfc, 0x8d, 0x34, 0xb3, 0x75, 0x3b, + 0xa9, 0xfc, 0x75, 0xcd, 0x2f, 0xf3, 0xa0, 0x06, 0x09, 0x18, 0xf0, 0x0f, + 0x35, 0x3a, 0xab, 0x60, 0x64, 0xf3, 0x4a, 0x90, 0x38, 0xe7, 0x8c, 0xd3, + 0x82, 0x3f, 0xa5, 0x02, 0x23, 0x70, 0x54, 0x1e, 0x6a, 0x30, 0xa3, 0x1e, + 0xf5, 0x69, 0x53, 0x27, 0xe7, 0x1d, 0x29, 0xc5, 0x13, 0xfb, 0xbf, 0xa5, + 0x00, 0x53, 0xd9, 0xbb, 0x81, 0xd6, 0xa5, 0xf2, 0x1b, 0xd4, 0x54, 0xbf, + 0xbb, 0x53, 0xd8, 0x52, 0xf9, 0x8b, 0xfd, 0xe1, 0xf9, 0xd0, 0x31, 0x91, + 0xc2, 0xca, 0xc4, 0x9c, 0x1a, 0x93, 0x6f, 0xb5, 0x31, 0x9c, 0x16, 0xc2, + 0xb6, 0x7f, 0x1a, 0x69, 0xc9, 0xee, 0x68, 0x01, 0x24, 0x90, 0xa3, 0x63, + 0x6d, 0x34, 0xcc, 0x48, 0xc6, 0xd1, 0x44, 0x8b, 0xc6, 0x72, 0x6a, 0x2c, + 0x7b, 0x50, 0x22, 0x68, 0x9f, 0x39, 0x07, 0xf0, 0xa7, 0x9d, 0xa4, 0x60, + 0x91, 0x55, 0xf6, 0x93, 0xd8, 0xd3, 0x95, 0x4f, 0xf7, 0x68, 0x01, 0xea, + 0xb1, 0xe7, 0x04, 0xd3, 0xb6, 0xc5, 0x9e, 0x29, 0x85, 0x5b, 0xb0, 0xa5, + 0x4c, 0x96, 0xda, 0x46, 0x0d, 0x03, 0x24, 0xdc, 0x99, 0xa7, 0x37, 0x3d, + 0x05, 0x27, 0x95, 0x9e, 0xf4, 0xa1, 0x36, 0x8e, 0xa4, 0xd0, 0x21, 0x37, + 0x7a, 0x8f, 0xc6, 0x83, 0xb4, 0xf3, 0x9c, 0x1f, 0xad, 0x2d, 0x30, 0xa0, + 0xce, 0x54, 0x60, 0x9f, 0x41, 0x4c, 0x03, 0x71, 0x53, 0xc8, 0xdc, 0x3d, + 0xa9, 0xd9, 0x3d, 0x96, 0x81, 0x1b, 0x9f, 0xe1, 0xa7, 0x98, 0xdb, 0x1d, + 0x40, 0xa4, 0x04, 0x47, 0xcc, 0xf5, 0x00, 0x55, 0x9d, 0x35, 0x37, 0x5d, + 0x93, 0x92, 0x4a, 0xa9, 0xaa, 0xb2, 0xc4, 0xe3, 0xab, 0x92, 0x3d, 0x07, + 0x15, 0x7b, 0x46, 0x8b, 0x0f, 0x31, 0x1c, 0x60, 0x00, 0x69, 0xa0, 0x36, + 0x80, 0xf9, 0x46, 0x4d, 0x64, 0xeb, 0x49, 0x9f, 0x29, 0xb3, 0x8e, 0xa2, + 0xb5, 0x7f, 0x84, 0x1c, 0xd6, 0x7e, 0xaa, 0x9e, 0x6d, 0xa6, 0x7f, 0xba, + 0x47, 0x34, 0xd8, 0x8c, 0x32, 0x9f, 0xed, 0x1e, 0x69, 0xac, 0xa3, 0xd4, + 0xd3, 0xf6, 0x8c, 0x50, 0x02, 0x89, 0x06, 0x40, 0x23, 0xa7, 0x35, 0x25, + 0x0b, 0x03, 0x21, 0xca, 0xb0, 0x19, 0x15, 0x3a, 0xba, 0x0e, 0x98, 0xfc, + 0x29, 0xbf, 0x20, 0xe8, 0xa3, 0xf0, 0xa6, 0xe7, 0x9a, 0x2e, 0x22, 0x52, + 0xea, 0xc4, 0x8a, 0x68, 0x62, 0xa7, 0x00, 0x71, 0x51, 0x91, 0x92, 0x31, + 0xc1, 0x1e, 0x94, 0x06, 0x60, 0x39, 0x5a, 0x00, 0x90, 0xb1, 0xed, 0x50, + 0xb0, 0xf9, 0xb2, 0xd9, 0xc5, 0x39, 0x49, 0x27, 0x1c, 0x0a, 0x7f, 0x95, + 0x93, 0x92, 0x4f, 0xd2, 0x80, 0x22, 0xe3, 0x8a, 0x72, 0xb7, 0x38, 0xc5, + 0x48, 0x22, 0x40, 0x31, 0x8a, 0x42, 0x76, 0x7d, 0xe1, 0xc7, 0xad, 0x00, + 0x21, 0xcf, 0xa5, 0x30, 0xc6, 0x18, 0xe7, 0x27, 0xf0, 0xa7, 0xb4, 0xd1, + 0x81, 0xf7, 0x85, 0x55, 0x7b, 0x91, 0xbb, 0xe4, 0x1f, 0x8d, 0x03, 0x27, + 0xdb, 0xf2, 0x8c, 0x0e, 0x6a, 0x6b, 0x42, 0xa6, 0xf2, 0x21, 0x9c, 0xf3, + 0x54, 0x0c, 0x8c, 0xdc, 0x96, 0xe3, 0xda, 0xad, 0xe9, 0x40, 0x7f, 0x68, + 0x21, 0xf6, 0x34, 0x20, 0x67, 0x42, 0xcb, 0x94, 0x23, 0xd4, 0x57, 0x26, + 0xdc, 0x31, 0x1d, 0x30, 0x6b, 0xad, 0x27, 0x3c, 0x62, 0xb9, 0x7b, 0x85, + 0xdb, 0x73, 0x22, 0x9e, 0xcc, 0x68, 0x60, 0x45, 0xcf, 0xad, 0x28, 0xce, + 0x70, 0x06, 0x7e, 0x94, 0xbb, 0x41, 0xa7, 0xa4, 0x8b, 0x18, 0xe9, 0x40, + 0x0d, 0x2a, 0x71, 0xc8, 0x35, 0x1b, 0x60, 0x7d, 0x6a, 0xea, 0xba, 0xbd, + 0x32, 0x45, 0x8c, 0x0e, 0x80, 0x9a, 0x00, 0xaa, 0x85, 0x82, 0xe7, 0x18, + 0xa9, 0x03, 0xb1, 0x14, 0x6d, 0xc6, 0x30, 0x4f, 0xd2, 0x8f, 0x2b, 0x69, + 0xc8, 0x00, 0x9a, 0x00, 0x63, 0x31, 0x2e, 0x32, 0x3f, 0x2a, 0x71, 0x63, + 0xd3, 0x07, 0x9a, 0x42, 0x4a, 0xbf, 0xcc, 0x32, 0x7b, 0xe2, 0x8f, 0x35, + 0x40, 0xef, 0xf9, 0x52, 0x00, 0xd8, 0x31, 0xdc, 0x53, 0x36, 0x12, 0xdd, + 0x78, 0xf7, 0xa9, 0x7c, 0xd4, 0x23, 0x86, 0x14, 0x8d, 0xf3, 0x7c, 0xbc, + 0x73, 0x4c, 0x06, 0x79, 0x7c, 0xe7, 0x75, 0x21, 0x56, 0xce, 0x38, 0xa9, + 0x76, 0x0e, 0x38, 0xe9, 0x4a, 0x54, 0x1a, 0x40, 0x5f, 0xd0, 0x63, 0x26, + 0xfc, 0xb1, 0x03, 0xe5, 0x42, 0x6b, 0xa1, 0x6e, 0xbd, 0x2b, 0x27, 0x40, + 0x8d, 0x55, 0xe6, 0x70, 0x3b, 0x01, 0x9a, 0xda, 0x20, 0x7b, 0x55, 0xad, + 0x89, 0x7b, 0x99, 0xda, 0x92, 0x09, 0x2c, 0x64, 0xf5, 0x18, 0x35, 0xcf, + 0x03, 0xda, 0xba, 0xd9, 0xe3, 0x0f, 0x6d, 0x2a, 0x81, 0x92, 0x54, 0xd7, + 0x24, 0x41, 0xe9, 0x8a, 0x4c, 0x10, 0x3b, 0x0d, 0xbf, 0x2f, 0x5e, 0xa2, + 0x9c, 0x18, 0x32, 0x82, 0x0f, 0x5a, 0x6e, 0x3f, 0x4a, 0x48, 0x48, 0x0e, + 0xc8, 0x7e, 0xa2, 0x90, 0xc7, 0xe6, 0x98, 0xca, 0x58, 0x8e, 0x39, 0x1d, + 0xea, 0x43, 0x49, 0xc9, 0xa6, 0x02, 0x2a, 0xab, 0x2f, 0x2b, 0xcd, 0x28, + 0x50, 0x3b, 0x53, 0x5f, 0x77, 0xde, 0x07, 0x91, 0x4d, 0x56, 0x2d, 0x9c, + 0x93, 0x9e, 0xf4, 0x80, 0x93, 0x82, 0xb8, 0x3c, 0x50, 0x1d, 0x40, 0xc3, + 0x1f, 0xc6, 0x98, 0x3a, 0xfa, 0xd3, 0xc6, 0x38, 0xa0, 0x05, 0x3c, 0x74, + 0x3c, 0x53, 0x49, 0x07, 0xbd, 0x23, 0x27, 0x39, 0x1f, 0x95, 0x34, 0x48, + 0x33, 0x83, 0xc1, 0xa6, 0x00, 0x77, 0x76, 0xa5, 0x07, 0xd4, 0x52, 0xe4, + 0x13, 0xc5, 0x18, 0x27, 0xbe, 0x28, 0x01, 0xc0, 0x66, 0x8e, 0x41, 0xeb, + 0x8a, 0x67, 0x2a, 0x78, 0x26, 0x9c, 0x1c, 0x8e, 0x18, 0x73, 0x40, 0x0f, + 0x2c, 0x47, 0x41, 0x4a, 0xa0, 0x1e, 0x77, 0x66, 0x8a, 0x4c, 0x66, 0x80, + 0x1d, 0x8e, 0x78, 0xa7, 0x0e, 0x2a, 0x30, 0x18, 0x77, 0xa5, 0x04, 0xf7, + 0x19, 0xfa, 0x50, 0x03, 0xf1, 0xbb, 0xf8, 0xb3, 0x8e, 0xd4, 0xce, 0x4f, + 0x6a, 0x69, 0x90, 0x92, 0x38, 0xda, 0x3b, 0x8e, 0xf5, 0x20, 0x18, 0xe9, + 0x40, 0x0d, 0xc7, 0x34, 0xe1, 0x8c, 0x81, 0x9e, 0xbd, 0x29, 0x70, 0x7a, + 0x0a, 0x36, 0x80, 0x72, 0x40, 0xa0, 0x09, 0xe3, 0x8c, 0x0e, 0x4f, 0x26, + 0x9c, 0x50, 0x77, 0x51, 0x55, 0xf7, 0x63, 0xb9, 0x1f, 0x8d, 0x1b, 0x9d, + 0x81, 0xcb, 0x90, 0x0f, 0x6a, 0x00, 0x6c, 0x9b, 0x37, 0x61, 0x78, 0x03, + 0xd2, 0x9b, 0xc7, 0x5a, 0x71, 0x4e, 0x38, 0x22, 0x80, 0x84, 0xf3, 0x81, + 0x8a, 0x40, 0x26, 0x73, 0x9c, 0x54, 0x52, 0x9f, 0xde, 0x22, 0x96, 0x03, + 0x26, 0xa5, 0x39, 0x51, 0x92, 0xa4, 0x8f, 0x6a, 0xaa, 0x58, 0x4b, 0x21, + 0x71, 0xd0, 0x70, 0x28, 0x02, 0xc9, 0x63, 0x8c, 0xee, 0xcd, 0x74, 0x1a, + 0x5c, 0x7b, 0x6c, 0x50, 0xe3, 0xaf, 0x35, 0xcb, 0x85, 0x27, 0xa5, 0x76, + 0x16, 0x6b, 0xb2, 0xce, 0x25, 0x00, 0xf0, 0xa0, 0x72, 0x2a, 0x90, 0x99, + 0x30, 0x18, 0xe6, 0xb9, 0xdd, 0x5c, 0x14, 0xbf, 0x62, 0x38, 0xc8, 0x06, + 0xba, 0x41, 0xd3, 0x9a, 0xc5, 0xd6, 0x63, 0x3f, 0x6a, 0x8d, 0xc0, 0xea, + 0xb8, 0xa6, 0xc4, 0x8c, 0xc4, 0x33, 0x1c, 0x60, 0xe0, 0x7b, 0xd4, 0xfb, + 0x73, 0xc9, 0x39, 0x34, 0x02, 0x47, 0xa1, 0xa4, 0xf3, 0x3e, 0x6d, 0xa1, + 0x4e, 0x6a, 0x0b, 0x15, 0x87, 0x07, 0x27, 0x15, 0x5f, 0x2d, 0x21, 0xc2, + 0x92, 0x07, 0xf7, 0x8d, 0x59, 0x11, 0x6e, 0x39, 0x73, 0x9f, 0x6a, 0x79, + 0x03, 0xd0, 0x50, 0x22, 0xb0, 0x89, 0x00, 0xc6, 0x32, 0x7d, 0xe9, 0x7c, + 0xa5, 0x1d, 0x3f, 0x4a, 0x7c, 0xbe, 0x5c, 0x63, 0x73, 0x71, 0x55, 0x95, + 0xa4, 0x39, 0x60, 0x4a, 0x8e, 0xca, 0x45, 0x30, 0x24, 0xf2, 0x81, 0x3d, + 0x4d, 0x2e, 0xdc, 0x0e, 0xb4, 0xd1, 0x24, 0x98, 0x19, 0xc6, 0x7e, 0x94, + 0x19, 0x4f, 0x75, 0x1f, 0x9d, 0x00, 0x31, 0xc1, 0x0c, 0x00, 0x39, 0xcf, + 0x5a, 0x90, 0x00, 0x05, 0x44, 0x1b, 0x1c, 0x91, 0xc9, 0xeb, 0x4e, 0xde, + 0x71, 0x9e, 0xd4, 0x00, 0xfc, 0xd4, 0x7b, 0x5d, 0x9c, 0xb0, 0x52, 0x47, + 0x41, 0x4a, 0x5f, 0x20, 0x60, 0x1e, 0x78, 0xab, 0x68, 0x00, 0x00, 0x7a, + 0x52, 0x02, 0x9e, 0xc9, 0x3f, 0xb8, 0x69, 0xbb, 0x1b, 0xfb, 0xa6, 0xaf, + 0xe6, 0xa1, 0x9d, 0xd5, 0x50, 0x93, 0xde, 0x81, 0x90, 0x79, 0x4f, 0x8f, + 0xbb, 0x49, 0xe5, 0xc8, 0x08, 0x21, 0x4f, 0x5a, 0x9c, 0x4e, 0x98, 0xfb, + 0xd4, 0x7d, 0xa2, 0x31, 0xfc, 0x54, 0x00, 0xf5, 0xce, 0x39, 0x06, 0x97, + 0xb7, 0x4a, 0x60, 0xb8, 0x43, 0xd0, 0xe6, 0x97, 0xcd, 0x1e, 0x94, 0x01, + 0x13, 0x02, 0xb2, 0x60, 0x8e, 0x08, 0xc8, 0xa4, 0xce, 0x0d, 0x3a, 0x67, + 0xde, 0xbc, 0x03, 0x91, 0xd2, 0xa2, 0xc3, 0x91, 0x92, 0x00, 0xa4, 0x03, + 0x9b, 0xe6, 0x19, 0x53, 0x83, 0x4d, 0x0c, 0xc7, 0x20, 0x9e, 0x69, 0x70, + 0x7d, 0x69, 0x04, 0x24, 0x8d, 0xcc, 0xf8, 0xc7, 0x4a, 0x60, 0x21, 0xe4, + 0x73, 0x4c, 0x28, 0x07, 0x29, 0xf9, 0x52, 0x83, 0xc9, 0x0d, 0xd6, 0x80, + 0x00, 0x3e, 0xd4, 0x01, 0x2c, 0x73, 0x2e, 0xcd, 0xaa, 0x30, 0x40, 0xe9, + 0xe9, 0x4a, 0x53, 0x79, 0x52, 0xc0, 0x64, 0x7b, 0xd4, 0x2e, 0x33, 0xc8, + 0x60, 0x0f, 0x63, 0x48, 0xb3, 0x10, 0xe0, 0x33, 0x7e, 0x3d, 0xa8, 0x02, + 0xc9, 0x52, 0x7f, 0x8b, 0xf0, 0xa6, 0xe5, 0x73, 0x83, 0xd7, 0xde, 0x94, + 0x1c, 0xd3, 0x58, 0x06, 0xe0, 0x8e, 0x28, 0x01, 0x4c, 0x8a, 0xbd, 0x48, + 0x14, 0xc1, 0x31, 0x93, 0xfd, 0x5a, 0x93, 0xee, 0x78, 0x14, 0xdf, 0x2f, + 0x61, 0xca, 0x01, 0xf8, 0xd4, 0xb1, 0xb8, 0x23, 0x0d, 0xc5, 0x02, 0x1a, + 0x4c, 0xa3, 0xef, 0xaf, 0xfd, 0xf3, 0x4c, 0xde, 0xbc, 0xe3, 0x15, 0x6c, + 0x63, 0x83, 0x4c, 0x68, 0x63, 0x94, 0x92, 0xcb, 0x8f, 0x7a, 0x06, 0x56, + 0x32, 0x2a, 0x8e, 0x4e, 0x4f, 0xb5, 0x42, 0xce, 0xcd, 0xd3, 0x81, 0x4e, + 0xfb, 0x1c, 0x85, 0xcf, 0x94, 0x46, 0xdc, 0xff, 0x00, 0x15, 0x0d, 0x04, + 0xa9, 0xc9, 0x5e, 0x9e, 0x86, 0x80, 0x1a, 0xb2, 0x95, 0xe0, 0xaf, 0xe5, + 0x4a, 0x64, 0x5e, 0xb9, 0xa8, 0xf7, 0x83, 0x45, 0x00, 0x4e, 0x83, 0x77, + 0x27, 0x81, 0xe9, 0x4f, 0xf2, 0xd3, 0xfb, 0xbf, 0x95, 0x55, 0xcd, 0x3b, + 0x7b, 0x63, 0x00, 0x9a, 0x04, 0x4e, 0x62, 0x5c, 0x70, 0x48, 0xa7, 0x46, + 0x02, 0x1c, 0xf5, 0x3e, 0xf5, 0x10, 0x67, 0x1d, 0x69, 0x7c, 0xc3, 0xdc, + 0x50, 0x05, 0x8f, 0x34, 0xe3, 0xa5, 0x27, 0xda, 0x00, 0x38, 0xe7, 0x9a, + 0xac, 0x65, 0xc0, 0xa5, 0x41, 0xc6, 0xe3, 0xd4, 0xd0, 0x32, 0xc8, 0x9c, + 0x7b, 0xd2, 0xf9, 0xe2, 0xa0, 0xa4, 0x3c, 0x64, 0xd0, 0x03, 0x9d, 0x83, + 0xbe, 0x7d, 0xa9, 0xa4, 0x53, 0x15, 0xf2, 0x09, 0xa7, 0x6e, 0xf7, 0xa0, + 0x01, 0x7e, 0x59, 0x3f, 0x0a, 0x93, 0x7a, 0xfa, 0xd4, 0x5d, 0x5a, 0x9c, + 0x14, 0x50, 0x03, 0x99, 0xd4, 0x82, 0x33, 0x48, 0xac, 0xb8, 0x04, 0x8e, + 0x7e, 0x94, 0xa1, 0x69, 0x01, 0x04, 0x1a, 0x62, 0x1d, 0xbc, 0x76, 0x06, + 0x83, 0x2e, 0x07, 0x43, 0x49, 0x81, 0xeb, 0x4b, 0x8e, 0xdd, 0x69, 0x00, + 0xe0, 0xc4, 0xf6, 0xa4, 0x3b, 0x88, 0xed, 0x4d, 0x4c, 0x82, 0x41, 0xcf, + 0xb5, 0x3f, 0x14, 0xc0, 0x74, 0x6e, 0x7e, 0xeb, 0x75, 0xf5, 0xa9, 0x73, + 0x50, 0x15, 0xe2, 0x9a, 0xae, 0xca, 0x7e, 0x76, 0x3b, 0x7d, 0x68, 0x02, + 0x66, 0x40, 0x4e, 0xee, 0x86, 0x9f, 0xe7, 0xaa, 0x8c, 0x1c, 0x03, 0xe8, + 0x2a, 0x30, 0x01, 0x19, 0x27, 0x22, 0x8d, 0xa8, 0x39, 0xe2, 0x90, 0x0e, + 0x37, 0x07, 0xb2, 0x93, 0xe9, 0x4d, 0x32, 0xc8, 0x46, 0x40, 0x02, 0x94, + 0xe0, 0x53, 0x1a, 0x45, 0x52, 0x39, 0xfc, 0xa8, 0x19, 0x03, 0xbc, 0x8c, + 0xdf, 0x39, 0xc5, 0x6d, 0x68, 0x8a, 0x05, 0xb4, 0xa7, 0x3c, 0x93, 0x59, + 0x4e, 0xdb, 0x87, 0x09, 0xc7, 0xa9, 0xad, 0xbd, 0x2e, 0x2f, 0x2e, 0xc0, + 0x73, 0xd4, 0x93, 0x4d, 0x09, 0x97, 0x07, 0x40, 0x45, 0x57, 0xbd, 0x4f, + 0x32, 0xd2, 0x55, 0x03, 0x9c, 0x71, 0x56, 0x87, 0xdd, 0x07, 0xda, 0x9a, + 0xc0, 0x30, 0x39, 0xe9, 0x4c, 0x47, 0x27, 0x93, 0x8f, 0xbd, 0x4c, 0x6e, + 0x72, 0x09, 0x35, 0x21, 0x8d, 0xfc, 0xd7, 0x55, 0x52, 0x76, 0xb1, 0x14, + 0x8d, 0x1b, 0xff, 0x00, 0x77, 0x9a, 0x91, 0x89, 0x0b, 0x0f, 0x34, 0x06, + 0x39, 0x0d, 0xd2, 0xae, 0x05, 0x5f, 0x41, 0x55, 0x04, 0x0e, 0x78, 0xe0, + 0x53, 0xdd, 0xe5, 0x89, 0x01, 0x38, 0x38, 0xea, 0x68, 0x02, 0xce, 0x05, + 0x31, 0x88, 0x1d, 0x7a, 0x55, 0x43, 0x70, 0xe7, 0xab, 0x62, 0xa3, 0x66, + 0x2f, 0xd4, 0x9f, 0xce, 0x81, 0x96, 0x1d, 0xd4, 0x1e, 0xa0, 0xd2, 0xad, + 0xce, 0x06, 0x31, 0x9f, 0x7a, 0xa5, 0xca, 0x1c, 0xaf, 0x22, 0x9d, 0xb8, + 0x71, 0x8e, 0x68, 0x11, 0x61, 0xae, 0x9c, 0xfd, 0xd0, 0x05, 0x57, 0x69, + 0x5d, 0xcf, 0xce, 0xc7, 0xfa, 0x51, 0x82, 0xdd, 0x05, 0x02, 0x22, 0x47, + 0x3f, 0xad, 0x00, 0x26, 0x05, 0x00, 0x64, 0xf0, 0x32, 0x6a, 0x74, 0x89, + 0x02, 0xf3, 0xc9, 0xa9, 0x97, 0x0b, 0xd0, 0x00, 0x3d, 0x29, 0x81, 0x5d, + 0x2d, 0xdc, 0xf5, 0xf9, 0x45, 0x68, 0xe9, 0x50, 0x2a, 0xdf, 0x06, 0xc9, + 0xc8, 0x53, 0x50, 0x06, 0x07, 0xbd, 0x5b, 0xd2, 0xce, 0x6f, 0xd8, 0x63, + 0xa2, 0x50, 0x06, 0xc9, 0xe7, 0x1c, 0xd7, 0x37, 0xa8, 0xc6, 0x23, 0xbe, + 0x95, 0x7d, 0x4e, 0x6b, 0xa6, 0x1c, 0x7d, 0x2b, 0x9f, 0xd6, 0x53, 0xfd, + 0x33, 0x76, 0x71, 0xb9, 0x68, 0x63, 0x33, 0x08, 0x7f, 0xe1, 0x23, 0x8f, + 0x5a, 0x7a, 0xb6, 0x0f, 0xcc, 0xb4, 0x0d, 0xc3, 0xaf, 0xe9, 0x46, 0x71, + 0xc1, 0x35, 0x20, 0x49, 0xe6, 0x0c, 0xe0, 0x53, 0x33, 0x82, 0x76, 0x8c, + 0xd0, 0x79, 0xa4, 0x03, 0x07, 0xd2, 0x80, 0x24, 0x5c, 0xe7, 0x93, 0xcd, + 0x38, 0x96, 0x19, 0xc0, 0x04, 0xd4, 0x1e, 0x69, 0xdd, 0x8c, 0x82, 0x29, + 0xc2, 0x5f, 0x6a, 0x62, 0x14, 0x07, 0xdc, 0x72, 0xa7, 0x27, 0x9a, 0x3a, + 0x72, 0x45, 0x3c, 0x10, 0x46, 0x4b, 0x0d, 0xd4, 0x13, 0x8c, 0x60, 0x8f, + 0x4a, 0x00, 0x8d, 0xc8, 0x00, 0x0c, 0x03, 0x9a, 0xb1, 0x1b, 0x45, 0xb0, + 0x06, 0x50, 0x31, 0xdf, 0x15, 0x13, 0x61, 0x81, 0x04, 0x66, 0x99, 0x80, + 0x58, 0x00, 0x4f, 0xaf, 0x5a, 0x00, 0x98, 0xc6, 0x8c, 0xfc, 0x74, 0xfa, + 0xd0, 0x51, 0x40, 0x1b, 0x86, 0x29, 0x81, 0x3b, 0xae, 0x45, 0x28, 0x2f, + 0x8f, 0xbc, 0x78, 0xed, 0x40, 0xcd, 0x8d, 0x1c, 0x32, 0x42, 0xee, 0x18, + 0xf2, 0xd8, 0xc5, 0x6a, 0x65, 0xc8, 0xce, 0x78, 0xaa, 0x9a, 0x7a, 0xec, + 0xb2, 0x8f, 0xb9, 0x3c, 0xd5, 0xbd, 0xc0, 0x8c, 0x76, 0x35, 0x44, 0x88, + 0x59, 0x8a, 0xe3, 0x79, 0x15, 0xcb, 0xcc, 0x8e, 0xb2, 0xb8, 0xe0, 0x60, + 0x91, 0x5d, 0x4f, 0x19, 0xe4, 0x57, 0x3d, 0xa8, 0x29, 0x8e, 0xfa, 0x4f, + 0x4c, 0xe4, 0x50, 0xc1, 0x15, 0x00, 0xc8, 0xe4, 0xd2, 0x14, 0xe8, 0xea, + 0x79, 0x1f, 0xad, 0x3b, 0x04, 0xf4, 0x34, 0x03, 0x52, 0x31, 0x54, 0x96, + 0x19, 0xc0, 0xa0, 0x67, 0xd8, 0x53, 0x41, 0xc1, 0x28, 0x7f, 0x0a, 0x71, + 0x05, 0x47, 0xb5, 0x30, 0x02, 0x3b, 0x16, 0xa6, 0xf9, 0x63, 0x24, 0xa9, + 0xe7, 0xf9, 0xd3, 0xb1, 0xeb, 0xde, 0x93, 0x2a, 0xb9, 0xc9, 0xa0, 0x06, + 0x06, 0x07, 0x3e, 0xb4, 0xe1, 0xec, 0x0d, 0x46, 0x58, 0xee, 0x0c, 0x80, + 0xe7, 0xf9, 0xd3, 0xd5, 0xf7, 0x02, 0x46, 0x41, 0x1d, 0xa9, 0x00, 0xe2, + 0x4f, 0xa0, 0xa6, 0xb2, 0x6e, 0x1c, 0xf5, 0xa7, 0x2e, 0x7a, 0xf0, 0x68, + 0x34, 0xc0, 0x40, 0xdb, 0x49, 0xc8, 0xe2, 0x9d, 0x80, 0x79, 0xa6, 0x92, + 0x31, 0x4d, 0x56, 0x2a, 0xdc, 0x02, 0x45, 0x00, 0x3f, 0x07, 0xb7, 0x5a, + 0x5d, 0x84, 0xf5, 0xfd, 0x69, 0x54, 0xa9, 0x1c, 0x1a, 0x75, 0x00, 0x37, + 0x68, 0xcf, 0x1c, 0xd2, 0x8c, 0xf7, 0x14, 0x60, 0x6d, 0xf4, 0xa4, 0xe0, + 0xfa, 0xfd, 0x28, 0x01, 0xd9, 0xf4, 0x39, 0xa3, 0x9a, 0x40, 0x17, 0x9e, + 0x28, 0xe9, 0xd0, 0xfe, 0x74, 0x00, 0x7f, 0x3a, 0x51, 0xc7, 0xb7, 0xd2, + 0x90, 0x9c, 0x67, 0x22, 0xa3, 0x79, 0x82, 0x8c, 0x29, 0xcb, 0x1a, 0x00, + 0x92, 0x49, 0xf6, 0x60, 0x63, 0x24, 0x8e, 0x29, 0xab, 0x79, 0x91, 0xf3, + 0xa0, 0xfc, 0x2a, 0xb6, 0x72, 0x73, 0x93, 0x9a, 0x08, 0x38, 0x14, 0x01, + 0x62, 0x4b, 0x95, 0x61, 0xc0, 0xe9, 0xd8, 0xf7, 0xa9, 0x96, 0x64, 0x7e, + 0x8d, 0x83, 0xef, 0x54, 0x3a, 0xf3, 0xda, 0x97, 0x34, 0x01, 0x7d, 0x58, + 0x37, 0x46, 0x07, 0xf1, 0xa5, 0xcf, 0xcd, 0x8e, 0xfe, 0xd5, 0x9d, 0x92, + 0xb4, 0xa1, 0xdc, 0x03, 0x82, 0x7f, 0x3a, 0x00, 0xbf, 0x34, 0x85, 0x23, + 0xc0, 0xe5, 0x8f, 0x02, 0xa1, 0x48, 0x14, 0x2e, 0x33, 0xc8, 0xeb, 0x50, + 0x42, 0xed, 0x2d, 0xd1, 0x25, 0xb2, 0xa8, 0x3a, 0x13, 0xde, 0xad, 0x7c, + 0xd9, 0xe4, 0x73, 0x48, 0x04, 0x8e, 0x06, 0x37, 0x31, 0x20, 0x61, 0x82, + 0xc0, 0x57, 0x62, 0x14, 0x2a, 0x81, 0xcf, 0x1e, 0xf5, 0xcc, 0xe9, 0xc8, + 0x5f, 0x52, 0x8b, 0xd1, 0x79, 0xae, 0x8c, 0xb1, 0xcd, 0x52, 0x13, 0x24, + 0x1b, 0x7f, 0xc9, 0xac, 0xcd, 0x68, 0xa2, 0x47, 0x1c, 0xa4, 0xe0, 0x67, + 0x15, 0xa1, 0x59, 0xfa, 0xd4, 0x7e, 0x66, 0x9c, 0x49, 0x03, 0xe5, 0x60, + 0x79, 0xa6, 0xc4, 0x65, 0x0c, 0xb8, 0xc8, 0xe0, 0x54, 0xaa, 0xa1, 0x47, + 0x02, 0xb3, 0x17, 0x72, 0xe3, 0x63, 0x95, 0xf6, 0xce, 0x45, 0x48, 0x97, + 0x72, 0xa1, 0xf9, 0xc2, 0xb0, 0xf5, 0x1c, 0x54, 0x94, 0x68, 0x03, 0x8e, + 0x2a, 0x29, 0x66, 0x54, 0x04, 0x75, 0x6e, 0xc2, 0xa0, 0xfb, 0x5f, 0x9a, + 0xbf, 0x22, 0x90, 0xde, 0xa6, 0x9a, 0xa0, 0x06, 0x25, 0x8e, 0x5b, 0xd6, + 0x80, 0x1a, 0x7c, 0xc6, 0x90, 0xb3, 0xed, 0x63, 0xd8, 0x7a, 0x53, 0x89, + 0x7c, 0x93, 0xb7, 0x18, 0xf7, 0xa7, 0x1e, 0x4e, 0x29, 0x4b, 0x74, 0xc7, + 0xeb, 0x48, 0x08, 0x3c, 0xd1, 0xb7, 0x27, 0x8a, 0x5d, 0xf9, 0x19, 0xf5, + 0xa5, 0x48, 0xfc, 0xe7, 0x3d, 0xc2, 0xf3, 0xf5, 0xab, 0x41, 0x57, 0x6f, + 0x02, 0x80, 0x2a, 0x17, 0x18, 0xe9, 0x4c, 0x2d, 0xda, 0xac, 0x94, 0x43, + 0xd5, 0x71, 0x93, 0x49, 0xf6, 0x71, 0xcf, 0x1c, 0x7a, 0xe6, 0x81, 0x8c, + 0x80, 0xee, 0x93, 0xd9, 0x6a, 0xd8, 0xc1, 0xaa, 0xc2, 0xdd, 0x57, 0x25, + 0x49, 0x19, 0xf7, 0xa4, 0x8a, 0x37, 0x55, 0xcf, 0x98, 0xc7, 0xf1, 0xa0, + 0x0b, 0x24, 0x81, 0xf8, 0x55, 0x7b, 0x9e, 0xca, 0x7d, 0x69, 0xcc, 0xad, + 0xb4, 0xe5, 0x8d, 0x43, 0x20, 0xfd, 0xe2, 0x12, 0x49, 0x3e, 0xf4, 0x00, + 0xc2, 0x29, 0xb8, 0xfc, 0xea, 0x52, 0x06, 0x69, 0x30, 0x28, 0x00, 0x84, + 0x8c, 0x95, 0xa9, 0xf3, 0x8c, 0x55, 0x5f, 0xe3, 0x07, 0x90, 0x71, 0x52, + 0x63, 0x3d, 0xcd, 0x00, 0x3f, 0x78, 0xa6, 0x19, 0x17, 0xd6, 0x8d, 0xab, + 0x9e, 0x68, 0xd8, 0x84, 0x72, 0xbd, 0x68, 0x10, 0xa5, 0xd0, 0x72, 0x4d, + 0x30, 0xca, 0x5b, 0x80, 0xa7, 0x14, 0xc0, 0x4e, 0xf2, 0xa4, 0x72, 0x29, + 0xe3, 0x8e, 0x40, 0x3f, 0x4a, 0x06, 0x33, 0xe6, 0x6c, 0x1c, 0x74, 0xa5, + 0x23, 0x3d, 0xcd, 0x38, 0xfd, 0xcc, 0x52, 0x00, 0x00, 0xc9, 0x38, 0xa4, + 0x02, 0x6d, 0xe7, 0x81, 0x9a, 0x5d, 0xa0, 0xf5, 0xa6, 0x79, 0xea, 0x38, + 0xe7, 0x3e, 0x94, 0x82, 0x56, 0x6f, 0xba, 0xb8, 0xcf, 0x73, 0x40, 0x0f, + 0x2c, 0x50, 0x9d, 0xbd, 0x3d, 0x29, 0x56, 0x70, 0x4f, 0x4e, 0x7d, 0x2a, + 0x30, 0x0b, 0x7d, 0xf6, 0x38, 0xa5, 0x00, 0x0c, 0xe0, 0x62, 0x98, 0x0f, + 0xf3, 0x49, 0x3c, 0x0f, 0xce, 0xa3, 0x24, 0xb1, 0x1b, 0xce, 0x7d, 0xa9, + 0xd9, 0xe3, 0xb7, 0xe1, 0x41, 0xc3, 0x1e, 0x31, 0x91, 0xda, 0x80, 0x15, + 0x24, 0x91, 0x58, 0x60, 0xe4, 0x7a, 0x1a, 0x9c, 0x4e, 0x18, 0x15, 0x6f, + 0x97, 0xf9, 0x55, 0x7c, 0xe0, 0xfa, 0x9f, 0x41, 0x52, 0x88, 0x19, 0x86, + 0x1b, 0xe5, 0x1f, 0xad, 0x00, 0x4f, 0xbd, 0x15, 0x02, 0xa7, 0x3f, 0x4a, + 0x63, 0x2b, 0x49, 0xf7, 0x8e, 0x05, 0x3a, 0x38, 0x90, 0x03, 0xb0, 0xf4, + 0xa7, 0x00, 0x3a, 0x66, 0x80, 0x23, 0x10, 0x8f, 0x4a, 0x47, 0x81, 0x18, + 0x64, 0x8c, 0x7d, 0x2a, 0x4c, 0x9e, 0x41, 0x05, 0x71, 0x55, 0xe6, 0xb9, + 0x03, 0xe5, 0x53, 0x93, 0xeb, 0xe9, 0x40, 0x10, 0x4a, 0x81, 0x4e, 0x17, + 0xaf, 0xa5, 0x2c, 0x6b, 0xb7, 0xaf, 0x5a, 0x55, 0x23, 0xaf, 0x52, 0x7a, + 0x9a, 0x32, 0x7f, 0x1a, 0x00, 0x7f, 0x14, 0xd2, 0x05, 0x26, 0x69, 0xac, + 0xc7, 0x80, 0xbd, 0x4d, 0x00, 0x29, 0x5c, 0xb0, 0xc0, 0xe0, 0x75, 0xa9, + 0x33, 0xed, 0x48, 0xb1, 0xaa, 0x8e, 0x69, 0xfe, 0x5a, 0xff, 0x00, 0x78, + 0x8a, 0x00, 0x4c, 0x0a, 0x46, 0x19, 0x18, 0x3c, 0x93, 0x4a, 0x53, 0x8f, + 0xbf, 0x48, 0x55, 0xb2, 0x08, 0x60, 0x71, 0xed, 0x40, 0x13, 0x88, 0x94, + 0x0f, 0xb8, 0x3f, 0x2a, 0x3c, 0x84, 0xc7, 0xdc, 0x14, 0xd1, 0x23, 0x91, + 0x9e, 0x33, 0x4b, 0xe6, 0xb7, 0x07, 0x6f, 0x1f, 0x5a, 0x04, 0x2f, 0x90, + 0x9c, 0x1d, 0x94, 0xa6, 0x24, 0xec, 0x29, 0xbe, 0x79, 0xce, 0x02, 0x73, + 0xf5, 0xa7, 0x86, 0x73, 0xfc, 0x1f, 0xad, 0x03, 0x1a, 0x22, 0x5c, 0xf4, + 0x14, 0xc7, 0x8c, 0x29, 0x0f, 0x8f, 0xad, 0x49, 0x96, 0xc7, 0x08, 0x3f, + 0x13, 0x48, 0x7c, 0xd2, 0x08, 0xc2, 0x8a, 0x04, 0x28, 0x00, 0x74, 0x14, + 0xb5, 0x1c, 0x45, 0x82, 0xed, 0x6e, 0xa2, 0xa4, 0xa6, 0x02, 0x30, 0xdc, + 0x31, 0x51, 0x87, 0xc1, 0x2a, 0xdd, 0x45, 0x4b, 0x51, 0xc9, 0x10, 0x63, + 0xbb, 0xf8, 0x85, 0x00, 0x21, 0x75, 0xc7, 0xde, 0xa6, 0x97, 0x1e, 0x84, + 0xfb, 0x01, 0x42, 0xe0, 0xf4, 0x14, 0xe3, 0xd7, 0x14, 0x00, 0xc8, 0xda, + 0x40, 0xd8, 0xc7, 0xcb, 0xef, 0x4e, 0x3b, 0x89, 0x39, 0xc0, 0xfa, 0x0a, + 0x71, 0xe2, 0x9a, 0x7f, 0x23, 0x40, 0x00, 0xe9, 0xdc, 0xfd, 0x68, 0xc0, + 0x3c, 0xf4, 0x34, 0x85, 0xd4, 0x1c, 0x16, 0xa6, 0x33, 0x91, 0x8d, 0xa3, + 0xf3, 0xa0, 0x07, 0xb4, 0x8d, 0xec, 0x30, 0x7a, 0xd7, 0x43, 0x66, 0x31, + 0x64, 0x83, 0xa1, 0x2b, 0x9a, 0xe6, 0x08, 0x67, 0x3b, 0x59, 0x8e, 0x3d, + 0x05, 0x75, 0x91, 0x47, 0xb2, 0xdd, 0x10, 0x1f, 0xba, 0x80, 0x7e, 0x94, + 0x20, 0x1d, 0xbb, 0x2b, 0x9c, 0x1a, 0x42, 0x72, 0x38, 0xcf, 0xe5, 0x4f, + 0x51, 0xb8, 0x29, 0xce, 0x28, 0x2b, 0xe9, 0x4c, 0x0c, 0x29, 0xd1, 0x52, + 0xf2, 0x60, 0x06, 0x09, 0xc1, 0xa8, 0x4f, 0x24, 0xf0, 0x45, 0x5c, 0xd4, + 0xe3, 0x0b, 0x72, 0x8d, 0xc8, 0x2c, 0xbf, 0xca, 0xa9, 0x6c, 0x1e, 0xff, + 0x00, 0x89, 0xa9, 0x60, 0x2e, 0x70, 0x29, 0x8e, 0x54, 0xa9, 0x5c, 0xf5, + 0xa7, 0x84, 0x5f, 0x4a, 0x5c, 0x01, 0x40, 0xcc, 0xe1, 0x0c, 0x81, 0xb6, + 0x95, 0x2c, 0x3b, 0x35, 0x49, 0xf6, 0x59, 0x0f, 0x60, 0x3e, 0xa6, 0xae, + 0xf6, 0xa4, 0xfc, 0x69, 0x88, 0xa2, 0x91, 0x1f, 0x30, 0xa4, 0x87, 0x07, + 0xb7, 0xb8, 0xab, 0x29, 0x04, 0x4a, 0x70, 0x16, 0x96, 0x44, 0x57, 0x5c, + 0x1e, 0xbd, 0x8f, 0xa5, 0x32, 0x39, 0x08, 0x70, 0x8f, 0xd7, 0xb1, 0xf5, + 0xa0, 0x44, 0xa6, 0x31, 0xdb, 0x8a, 0x8d, 0x93, 0x91, 0xfc, 0xaa, 0x53, + 0x22, 0x8e, 0x09, 0x15, 0x19, 0x25, 0xcf, 0x00, 0xfe, 0x34, 0x0c, 0x87, + 0x61, 0x19, 0xc1, 0xfa, 0x53, 0x16, 0x56, 0x0d, 0x82, 0xb9, 0x3e, 0xd5, + 0x63, 0xc9, 0x24, 0x72, 0x7f, 0x2a, 0x6e, 0x0a, 0x75, 0x19, 0x03, 0xbd, + 0x20, 0x22, 0xde, 0xff, 0x00, 0xee, 0x8a, 0xd4, 0xd0, 0x14, 0x7d, 0xa6, + 0x56, 0xc9, 0x27, 0x6e, 0x32, 0x6b, 0x3f, 0x86, 0x1c, 0x62, 0xb4, 0xf4, + 0x44, 0xc3, 0x4c, 0xdc, 0x1e, 0x82, 0x98, 0x1b, 0x0d, 0xe9, 0x9a, 0xc4, + 0xd6, 0xbe, 0x59, 0x62, 0x3e, 0xa0, 0xd6, 0xea, 0x85, 0xc7, 0x20, 0x1a, + 0xcc, 0xd7, 0x23, 0x56, 0xb4, 0x47, 0x0a, 0x32, 0x1b, 0x14, 0x31, 0x98, + 0x47, 0x00, 0xd3, 0x73, 0x9c, 0xe2, 0x9a, 0xc1, 0x87, 0x7f, 0xc2, 0x91, + 0x64, 0xf9, 0x71, 0x8a, 0x40, 0x38, 0x47, 0x9e, 0x72, 0x68, 0x65, 0x63, + 0xc0, 0x3f, 0x9d, 0x3c, 0x10, 0xc3, 0x19, 0x18, 0xa5, 0x0d, 0xdb, 0x1c, + 0x76, 0x34, 0x08, 0x87, 0x66, 0xd0, 0x32, 0xb4, 0xe2, 0xca, 0x0e, 0x33, + 0x8a, 0x7b, 0x90, 0x1b, 0xef, 0x64, 0xe3, 0xa5, 0x2a, 0x47, 0xf3, 0x65, + 0xb6, 0x96, 0xa0, 0x06, 0x60, 0x63, 0x34, 0x84, 0x76, 0x1c, 0x9a, 0x99, + 0x90, 0x10, 0x48, 0xc5, 0x30, 0x44, 0xa0, 0xee, 0x56, 0xe2, 0x81, 0x88, + 0x06, 0x0e, 0x33, 0xfa, 0xd2, 0xa2, 0x6d, 0x24, 0x96, 0x3c, 0xd3, 0xb6, + 0x1c, 0x60, 0x1e, 0x4f, 0xb5, 0x22, 0xab, 0xa8, 0xe7, 0x18, 0xe9, 0x48, + 0x05, 0x1b, 0x8f, 0xf1, 0x1e, 0x0f, 0xa5, 0x26, 0xe6, 0x24, 0x0c, 0x82, + 0x7d, 0x29, 0x4a, 0x9c, 0x63, 0x6f, 0xe4, 0x68, 0xb7, 0x46, 0x92, 0xf6, + 0x34, 0xda, 0x40, 0x24, 0x66, 0x80, 0x3a, 0x68, 0x63, 0x64, 0x86, 0x35, + 0x3d, 0x94, 0x71, 0x52, 0xee, 0x18, 0x03, 0x14, 0x99, 0x3d, 0x33, 0xc5, + 0x2e, 0xdf, 0xa5, 0x58, 0x85, 0x07, 0xd2, 0xb1, 0x35, 0x93, 0xb6, 0xe5, + 0x1b, 0x03, 0x04, 0x56, 0xc1, 0x27, 0xa0, 0xeb, 0x59, 0xba, 0xbc, 0x41, + 0xa2, 0x8d, 0xf1, 0xc8, 0x38, 0xfc, 0xe9, 0x01, 0x90, 0x48, 0xee, 0x46, + 0x29, 0x77, 0x27, 0x62, 0x7f, 0x01, 0x4f, 0xc1, 0x00, 0x67, 0x04, 0xf7, + 0xe2, 0x9a, 0x7e, 0xe6, 0x7b, 0xd2, 0x02, 0x16, 0x0d, 0x21, 0xdc, 0x01, + 0xc8, 0xa7, 0x8d, 0xd8, 0xeb, 0x9f, 0xa5, 0x38, 0x12, 0x33, 0xd6, 0x9b, + 0x9d, 0xb2, 0x60, 0xf1, 0xb8, 0x71, 0x40, 0x0a, 0x00, 0x07, 0xe6, 0xc9, + 0xfa, 0xd2, 0x92, 0x17, 0x80, 0x3f, 0x3a, 0x0e, 0xdc, 0x0e, 0xc7, 0x34, + 0x80, 0xf7, 0x34, 0xc0, 0x5d, 0xd9, 0x1d, 0x3f, 0x0a, 0x69, 0x1c, 0xe5, + 0x4e, 0x09, 0xfd, 0x69, 0xc0, 0x71, 0x9c, 0x1a, 0x41, 0xc8, 0xfe, 0x66, + 0x80, 0x23, 0x12, 0x9d, 0xc5, 0x76, 0x9d, 0xde, 0x94, 0xfc, 0x13, 0xd4, + 0xfe, 0x02, 0x9a, 0xe5, 0x37, 0xe1, 0x8f, 0x3d, 0xa9, 0x16, 0x5c, 0x92, + 0x84, 0x60, 0x8e, 0x87, 0x1d, 0x68, 0x02, 0x40, 0x00, 0x39, 0xfe, 0x74, + 0x02, 0x7f, 0x03, 0x43, 0x64, 0xe3, 0x18, 0xcd, 0x07, 0x91, 0xdc, 0x50, + 0x00, 0x4e, 0x4e, 0x3b, 0xd3, 0x83, 0x90, 0x30, 0x4f, 0xe3, 0x4c, 0xeb, + 0x4a, 0x4f, 0xe5, 0x40, 0x12, 0x2e, 0x08, 0xe0, 0xd2, 0x93, 0xd3, 0xd6, + 0xa1, 0xe8, 0x72, 0x38, 0xa7, 0x06, 0x3e, 0x99, 0xa0, 0x07, 0xe3, 0xd6, + 0x97, 0x85, 0x3c, 0x9f, 0xc2, 0xa3, 0x32, 0xed, 0xe3, 0x19, 0x3e, 0xf4, + 0x75, 0x3b, 0x98, 0xf3, 0x40, 0x0a, 0x49, 0x93, 0x82, 0x71, 0x8f, 0x4a, + 0x32, 0xb8, 0xfb, 0xa0, 0xe2, 0x90, 0x1e, 0x7d, 0xa9, 0x00, 0xc7, 0x3e, + 0xf4, 0x00, 0xa0, 0x2e, 0xdf, 0xbb, 0xd6, 0x90, 0xc6, 0x3f, 0x84, 0x9c, + 0xfa, 0x52, 0x82, 0x4f, 0xcb, 0x9c, 0x53, 0x81, 0x25, 0x87, 0xf3, 0xa0, + 0x08, 0x8a, 0x32, 0x8e, 0x00, 0x23, 0xbd, 0x30, 0x06, 0x72, 0x40, 0x8d, + 0xb2, 0x3b, 0x81, 0xc5, 0x58, 0x39, 0x51, 0x92, 0x32, 0x7b, 0x0f, 0x5a, + 0xbb, 0x04, 0x7e, 0x5c, 0x63, 0x3d, 0x4f, 0x26, 0x81, 0x19, 0x5e, 0x58, + 0x3d, 0x72, 0x31, 0xeb, 0x4d, 0x24, 0x20, 0x27, 0x23, 0x1d, 0xab, 0x60, + 0x45, 0xb5, 0x98, 0xe4, 0x9c, 0xf6, 0x35, 0x46, 0xe1, 0x6d, 0xe4, 0xb8, + 0x55, 0x6c, 0x0d, 0xa7, 0x9c, 0x50, 0x03, 0xad, 0x6d, 0x63, 0x48, 0x03, + 0x38, 0x6d, 0xef, 0xc9, 0xc1, 0xa9, 0xfe, 0xcc, 0x83, 0xf8, 0xdc, 0x1f, + 0xad, 0x20, 0x64, 0x72, 0xa0, 0x16, 0xe3, 0xa6, 0x3a, 0x53, 0xce, 0x3b, + 0x1c, 0x9a, 0x43, 0x2d, 0xe8, 0xd0, 0xed, 0xbc, 0x99, 0xf7, 0x6e, 0x0a, + 0xa0, 0x73, 0x5b, 0x67, 0x15, 0x99, 0xa4, 0x46, 0x56, 0xd5, 0xdf, 0xbb, + 0xb7, 0xe9, 0x5a, 0x28, 0x0f, 0x7a, 0xa4, 0x21, 0xdb, 0x49, 0xef, 0x55, + 0xaf, 0x90, 0xcb, 0xa7, 0xcc, 0xa1, 0xbf, 0x86, 0xad, 0x73, 0xf8, 0x53, + 0x59, 0x03, 0xa3, 0x29, 0xee, 0x3a, 0x53, 0x11, 0xc5, 0x33, 0xaa, 0x72, + 0xd4, 0xe4, 0x89, 0x9f, 0x99, 0x7e, 0x55, 0xeb, 0x8f, 0xf1, 0xa3, 0xec, + 0xc6, 0x29, 0xd8, 0x7d, 0xe3, 0x93, 0xf7, 0x87, 0x4a, 0x9d, 0x5b, 0x03, + 0x9e, 0x3e, 0xb5, 0x25, 0x0e, 0x0a, 0x36, 0x82, 0xb8, 0x0b, 0xfc, 0xe9, + 0x48, 0x1b, 0x49, 0xed, 0x4c, 0x56, 0xdd, 0xd3, 0xf4, 0xa7, 0xe7, 0xe5, + 0xe2, 0x90, 0x0d, 0x66, 0x20, 0x7b, 0x7a, 0xd2, 0x08, 0xde, 0x45, 0xca, + 0x9c, 0x0f, 0x5a, 0x70, 0x8f, 0xcc, 0x23, 0x3f, 0x70, 0x7e, 0xb5, 0x36, + 0x38, 0xfa, 0x53, 0xb0, 0x10, 0xec, 0x91, 0x4f, 0x18, 0xc7, 0xb5, 0x05, + 0x88, 0xe0, 0x86, 0xc5, 0x4f, 0x4d, 0xf7, 0xa2, 0xc0, 0x40, 0x24, 0x3b, + 0xb7, 0x1e, 0x3e, 0xb4, 0x09, 0x97, 0x24, 0x16, 0x1c, 0xf6, 0x06, 0xa5, + 0x66, 0x08, 0x85, 0x8e, 0x00, 0x15, 0x45, 0x50, 0xb0, 0x32, 0x37, 0x56, + 0x39, 0xe7, 0xd2, 0x8b, 0x05, 0xcb, 0xfe, 0x62, 0xe0, 0x1c, 0xfe, 0x14, + 0x81, 0x97, 0x1d, 0xbd, 0xc5, 0x55, 0x51, 0xd8, 0xe3, 0xd6, 0x8d, 0x83, + 0x93, 0x9f, 0xc2, 0x90, 0x16, 0x1c, 0x80, 0x36, 0xf5, 0x56, 0xf7, 0xa8, + 0x5c, 0x8c, 0x85, 0x1d, 0x07, 0x34, 0xd0, 0xa0, 0x0c, 0xf6, 0xa5, 0xd8, + 0xbc, 0x7b, 0xd0, 0x01, 0xd8, 0x1a, 0x5c, 0x81, 0xc5, 0x27, 0x96, 0xb8, + 0xe9, 0x47, 0x96, 0xbe, 0x94, 0x00, 0xc7, 0x3d, 0x0f, 0xa1, 0xa9, 0x01, + 0xe9, 0xcd, 0x31, 0xa3, 0x1b, 0x4e, 0x05, 0x28, 0xe5, 0x06, 0x3a, 0xd3, + 0x02, 0x42, 0x06, 0x33, 0x49, 0x9f, 0x7a, 0x69, 0x27, 0x6f, 0x39, 0xa6, + 0x36, 0x47, 0x00, 0x1c, 0x50, 0x01, 0x28, 0x20, 0xef, 0x1c, 0x91, 0xdb, + 0xd6, 0x99, 0xe6, 0xb9, 0xfb, 0xb8, 0x1e, 0xf4, 0xf6, 0x3d, 0xc8, 0xc5, + 0x42, 0xdc, 0x36, 0xee, 0xc6, 0x90, 0x0e, 0x24, 0x9e, 0xac, 0x4d, 0x27, + 0x5e, 0x82, 0x8f, 0xa7, 0x6e, 0xd4, 0x1c, 0xf6, 0xe9, 0x40, 0x0d, 0x2b, + 0x93, 0x92, 0x69, 0x55, 0xb0, 0x70, 0xdc, 0x1e, 0xc6, 0x90, 0xe7, 0x14, + 0x67, 0x23, 0x04, 0x50, 0x04, 0xd9, 0xe3, 0x19, 0x14, 0x9b, 0xb2, 0x3f, + 0x9d, 0x41, 0xf3, 0x27, 0xdd, 0xc1, 0x1e, 0xfd, 0x6a, 0x50, 0x01, 0x00, + 0x96, 0xa0, 0x04, 0x25, 0x47, 0x4a, 0x68, 0x2e, 0xc7, 0x8e, 0x2a, 0x65, + 0x5e, 0x3a, 0x51, 0x8f, 0x4c, 0x50, 0x01, 0x14, 0xbe, 0x49, 0xc6, 0xdc, + 0xfa, 0x9e, 0xf5, 0x6d, 0x27, 0x47, 0x1c, 0x75, 0xf4, 0xaa, 0x4d, 0xc0, + 0xcd, 0x33, 0x3e, 0x94, 0x0c, 0xd2, 0x0c, 0x07, 0x41, 0x8c, 0xd3, 0x4b, + 0x80, 0xb9, 0x24, 0x0a, 0xa4, 0x93, 0xb8, 0x38, 0xce, 0x7e, 0xb4, 0xd3, + 0x29, 0x76, 0xf9, 0xf2, 0x3d, 0xbb, 0x50, 0x04, 0xaf, 0x23, 0x48, 0x7a, + 0x90, 0xbf, 0xce, 0x9b, 0xb3, 0x2b, 0x8c, 0x71, 0x40, 0xc1, 0xe0, 0x1c, + 0xd4, 0xd9, 0x1c, 0x0c, 0xd0, 0x22, 0xaf, 0x97, 0xe8, 0x48, 0xa4, 0xfd, + 0xe2, 0xf7, 0x07, 0xf4, 0xab, 0x2c, 0x17, 0x15, 0x1e, 0xde, 0x79, 0xa0, + 0x08, 0xbc, 0xc6, 0xfe, 0x24, 0x34, 0xb0, 0xb6, 0x5b, 0x7b, 0x1c, 0x13, + 0xfa, 0x54, 0x87, 0x9e, 0x28, 0x03, 0x39, 0xf4, 0xa0, 0x07, 0x86, 0x07, + 0x8c, 0x8a, 0x5d, 0xc0, 0x54, 0x7b, 0x01, 0x39, 0x20, 0x1a, 0x61, 0x41, + 0xc8, 0xe4, 0x50, 0x05, 0x80, 0xe3, 0x9c, 0xfe, 0x58, 0xa5, 0x0c, 0x08, + 0xed, 0x55, 0x19, 0x59, 0x53, 0x21, 0xc8, 0x39, 0xfa, 0xd4, 0x83, 0x70, + 0x5f, 0xbd, 0x9f, 0xc2, 0x80, 0x2c, 0x67, 0x8e, 0x7a, 0xfb, 0x52, 0x82, + 0x33, 0xde, 0xab, 0x86, 0x7c, 0x75, 0x1c, 0x53, 0xc4, 0x92, 0x01, 0xda, + 0x81, 0x92, 0x29, 0xfd, 0xee, 0x71, 0xda, 0xa7, 0x5e, 0x95, 0x58, 0x3b, + 0x99, 0x14, 0x70, 0x2a, 0x65, 0xdd, 0x93, 0x91, 0x40, 0x87, 0xd1, 0x93, + 0x40, 0xc8, 0xc9, 0xa3, 0x07, 0xb5, 0x30, 0x23, 0x7e, 0x1f, 0x3d, 0x8f, + 0x06, 0x9c, 0x28, 0x74, 0xdc, 0xa7, 0xd6, 0xab, 0x07, 0x90, 0x8c, 0x13, + 0xf3, 0x0f, 0x4a, 0x00, 0x9f, 0x78, 0x2c, 0x57, 0x9e, 0x3d, 0xa8, 0x24, + 0x0e, 0x73, 0x50, 0xb0, 0x63, 0xfc, 0x46, 0xa3, 0x31, 0x86, 0x3c, 0xe4, + 0xd0, 0x03, 0xe5, 0x92, 0x30, 0x43, 0x2b, 0x0c, 0xf7, 0x1e, 0xb4, 0xd1, + 0x30, 0x91, 0x41, 0xda, 0x7f, 0x1a, 0x3c, 0x95, 0x1d, 0xbf, 0x2a, 0x70, + 0x00, 0x7b, 0x50, 0x01, 0xbd, 0x89, 0xc0, 0xc0, 0xa4, 0xc6, 0x4f, 0x24, + 0x93, 0x47, 0x3d, 0x85, 0x2f, 0xbf, 0x7a, 0x00, 0x61, 0x40, 0xad, 0xb9, + 0x00, 0xe7, 0xaf, 0xbd, 0x1b, 0x81, 0x38, 0x3d, 0x7d, 0x0d, 0x3f, 0x03, + 0x1c, 0xd3, 0x1f, 0x67, 0xf1, 0x10, 0x31, 0xde, 0x80, 0x24, 0x85, 0x19, + 0xe6, 0x45, 0x41, 0x96, 0x2c, 0x06, 0x2b, 0xaa, 0x27, 0x0a, 0x72, 0x0f, + 0x4f, 0x4a, 0xe6, 0x34, 0x59, 0x0b, 0x6a, 0xc8, 0xa4, 0x16, 0x41, 0x92, + 0x1c, 0x0f, 0x6a, 0xe9, 0xe5, 0x3d, 0x48, 0xa0, 0x42, 0xc6, 0x7e, 0x50, + 0x31, 0xda, 0x97, 0x6b, 0x03, 0x48, 0x87, 0x00, 0x7d, 0x29, 0xc7, 0x24, + 0x70, 0x79, 0xa6, 0x32, 0x8e, 0xaa, 0x9f, 0xe8, 0xa2, 0x43, 0xfc, 0x0d, + 0xfa, 0x56, 0x48, 0xc7, 0x6a, 0xdd, 0xbc, 0x41, 0x25, 0x8c, 0xd1, 0xb6, + 0x72, 0x50, 0xe0, 0x57, 0x37, 0x12, 0x97, 0x89, 0x73, 0x23, 0x74, 0xa4, + 0x04, 0xe7, 0x02, 0x9a, 0xc5, 0x7a, 0x93, 0x4c, 0x10, 0xae, 0x70, 0x4b, + 0x1f, 0xc6, 0x97, 0xcb, 0x4e, 0x3e, 0x51, 0x40, 0x07, 0x9c, 0xbd, 0x8e, + 0x7e, 0x95, 0x1b, 0xcc, 0x55, 0x4b, 0x08, 0xd8, 0xe2, 0xa6, 0x03, 0x1d, + 0x05, 0x2f, 0x6e, 0x94, 0x01, 0x5d, 0x59, 0xe5, 0x01, 0x81, 0x00, 0x1a, + 0x0c, 0x01, 0x98, 0x16, 0x25, 0x8d, 0x1e, 0x59, 0xb7, 0x62, 0xc9, 0x93, + 0x19, 0x39, 0x23, 0xd2, 0xa5, 0x0c, 0x0f, 0x20, 0xe6, 0x90, 0xc0, 0x28, + 0x18, 0xc0, 0xa5, 0x1c, 0x1a, 0x07, 0x5a, 0x5c, 0xd0, 0x02, 0xe7, 0xf1, + 0xa4, 0x23, 0x34, 0xd6, 0x7e, 0xa1, 0x46, 0xe3, 0xed, 0x4c, 0xf2, 0xe5, + 0x90, 0x7e, 0xf0, 0x85, 0x1e, 0x8b, 0x40, 0x04, 0x8a, 0x8b, 0xd1, 0xb0, + 0xde, 0xd5, 0xab, 0xa0, 0xa9, 0x78, 0x66, 0x2c, 0x31, 0xf3, 0x63, 0xeb, + 0x59, 0xeb, 0x1a, 0xa0, 0xe0, 0x73, 0xea, 0x6b, 0x6f, 0x49, 0x50, 0x2d, + 0x5b, 0xb6, 0x58, 0x9a, 0x62, 0x2e, 0x01, 0x8c, 0x80, 0x6a, 0x86, 0xac, + 0x07, 0xf6, 0x7b, 0xe7, 0xf8, 0x48, 0x35, 0x77, 0x05, 0x79, 0x35, 0x05, + 0xe8, 0x13, 0x59, 0xca, 0x00, 0xcf, 0xcb, 0x40, 0xce, 0x39, 0xdf, 0x71, + 0xe3, 0x8f, 0x4a, 0x39, 0xf5, 0xc7, 0xd2, 0x9e, 0xd0, 0x12, 0x4e, 0xde, + 0x7e, 0xb5, 0x1b, 0xa9, 0x4c, 0x16, 0xe3, 0x34, 0x80, 0x6e, 0xc2, 0x48, + 0xc1, 0x39, 0xa9, 0xfc, 0xb9, 0x14, 0x7c, 0xae, 0x08, 0xee, 0x0d, 0x10, + 0xc6, 0x58, 0x86, 0xfc, 0xaa, 0x5e, 0x47, 0x07, 0xae, 0x7a, 0x52, 0x02, + 0x25, 0x2c, 0xb8, 0x67, 0x19, 0x3d, 0x38, 0x35, 0x3a, 0xcb, 0x18, 0x5c, + 0x90, 0x41, 0xfa, 0x53, 0x58, 0x10, 0x0f, 0x03, 0x3d, 0xa9, 0x09, 0xf9, + 0x1b, 0x03, 0x9e, 0xf9, 0xa6, 0x04, 0xca, 0x41, 0x1c, 0x30, 0x6c, 0xd3, + 0x59, 0x14, 0x02, 0x7d, 0x29, 0x2d, 0xed, 0xd1, 0x90, 0xbb, 0x0c, 0x13, + 0xd3, 0x9a, 0x71, 0x84, 0x1c, 0xed, 0xc8, 0x1e, 0xc6, 0x80, 0x00, 0x72, + 0x0e, 0xda, 0x66, 0x1b, 0xa9, 0x3c, 0x0e, 0xd4, 0xef, 0x26, 0x65, 0x1f, + 0x2b, 0x03, 0xec, 0x68, 0xf2, 0xe6, 0x3f, 0xc2, 0x99, 0xf4, 0xcd, 0x00, + 0x07, 0x20, 0xe7, 0x77, 0x5e, 0x78, 0xab, 0x5a, 0x5a, 0x6e, 0xbe, 0x52, + 0x4f, 0x41, 0x9a, 0xa4, 0xcd, 0x2e, 0xdc, 0xf9, 0x67, 0x8f, 0x4e, 0x6b, + 0x4b, 0x44, 0xfd, 0xe3, 0xc9, 0x21, 0x52, 0x30, 0x31, 0x92, 0x31, 0x40, + 0x1a, 0xec, 0x79, 0xe2, 0x8d, 0xc7, 0x22, 0x94, 0xa8, 0xc1, 0xa2, 0x36, + 0x03, 0x8c, 0x73, 0x4c, 0x40, 0x71, 0xd4, 0x8a, 0xaf, 0xa8, 0x2f, 0x99, + 0x65, 0x20, 0x18, 0xe0, 0x66, 0xad, 0xb0, 0xe3, 0xa5, 0x35, 0xd3, 0x31, + 0x30, 0x23, 0xa8, 0xc5, 0x00, 0x72, 0xf8, 0xca, 0xf4, 0xe2, 0x8c, 0x90, + 0x3a, 0x71, 0xf5, 0xa0, 0x2b, 0x07, 0x64, 0x23, 0x6e, 0xd2, 0x41, 0xcd, + 0x37, 0x38, 0x62, 0xaa, 0x09, 0x23, 0xa5, 0x00, 0x29, 0x1c, 0xf1, 0xfc, + 0xea, 0x39, 0x30, 0x53, 0xa9, 0x24, 0x72, 0xa6, 0xa5, 0x58, 0xe4, 0x24, + 0x92, 0xbf, 0x9d, 0x28, 0xb7, 0x6f, 0x50, 0x29, 0x00, 0xcf, 0x37, 0x3f, + 0x2b, 0x63, 0x77, 0xa5, 0x26, 0x18, 0x2f, 0x1c, 0x1f, 0x5a, 0x91, 0xad, + 0xfc, 0xb3, 0xbc, 0x1c, 0xfa, 0xd3, 0x77, 0x64, 0x70, 0x3f, 0x3a, 0x60, + 0x29, 0xdc, 0x14, 0x64, 0xd3, 0x36, 0x0c, 0xfc, 0xc7, 0x9a, 0x70, 0xdc, + 0x69, 0x0b, 0x05, 0x39, 0x3d, 0xe8, 0x01, 0x54, 0x27, 0x38, 0x03, 0x81, + 0x4b, 0xb4, 0x32, 0x71, 0x8e, 0x69, 0x99, 0xc0, 0xcf, 0x5a, 0x30, 0x71, + 0xd7, 0xe9, 0x40, 0x08, 0x77, 0x46, 0x38, 0x19, 0x1e, 0x9d, 0xe8, 0xf3, + 0x03, 0x00, 0x01, 0xc1, 0xa7, 0x0e, 0x98, 0xa6, 0x3c, 0x6b, 0xf7, 0x80, + 0xe7, 0xd4, 0x50, 0x03, 0xfb, 0xf5, 0xe6, 0x97, 0xd7, 0x02, 0xa2, 0xc3, + 0x28, 0x07, 0x39, 0xf7, 0xa9, 0x87, 0x20, 0x1c, 0xd0, 0x02, 0x60, 0x9e, + 0x0d, 0x28, 0x5e, 0x79, 0xa5, 0x3c, 0x1f, 0x4a, 0x4c, 0xe7, 0xb5, 0x00, + 0x23, 0x80, 0x78, 0x22, 0x9a, 0x14, 0xaf, 0x46, 0xc0, 0xf7, 0xa7, 0xe0, + 0x77, 0xe5, 0xbd, 0x05, 0x2a, 0xc2, 0x5b, 0x05, 0x8f, 0x19, 0xfb, 0xa2, + 0x80, 0x20, 0x57, 0xcb, 0x63, 0x6b, 0x60, 0x74, 0x61, 0x52, 0xee, 0x5c, + 0x0c, 0x1c, 0x93, 0xed, 0x53, 0x80, 0x3e, 0xee, 0x70, 0x29, 0x1a, 0x30, + 0xcb, 0x85, 0x23, 0x6f, 0xa5, 0x00, 0x30, 0x75, 0xf6, 0xf6, 0xa4, 0x66, + 0x3b, 0x09, 0x5e, 0xdd, 0x33, 0x43, 0x41, 0x85, 0xc2, 0xbb, 0x01, 0xdc, + 0x66, 0xa3, 0xda, 0x50, 0x8d, 0xa7, 0x70, 0x1d, 0x41, 0xa0, 0x0b, 0x76, + 0xb1, 0xb3, 0x8f, 0x39, 0xf8, 0x63, 0xd0, 0x7a, 0x55, 0xaf, 0x4a, 0xac, + 0x97, 0x44, 0x2f, 0xcc, 0x98, 0x14, 0xad, 0x77, 0x0a, 0x21, 0x66, 0x24, + 0x0f, 0x71, 0x40, 0x12, 0x4d, 0x27, 0x94, 0x9b, 0xbb, 0x9e, 0x00, 0x14, + 0xd8, 0x60, 0x8d, 0x53, 0xe7, 0x55, 0x2e, 0xdc, 0x93, 0x8a, 0x6c, 0x2c, + 0x2e, 0x9f, 0xcc, 0xe0, 0xc6, 0xbf, 0x77, 0xdc, 0xd5, 0x9c, 0x0c, 0xe4, + 0xf5, 0xa0, 0x06, 0x18, 0x23, 0x3d, 0x17, 0x1f, 0x4a, 0x8e, 0x58, 0x02, + 0xa9, 0x65, 0x24, 0x10, 0x3d, 0x6a, 0xc5, 0x32, 0x53, 0x96, 0x8e, 0x31, + 0xd5, 0xd8, 0x7e, 0x54, 0x01, 0xb5, 0x64, 0x9e, 0x4d, 0x94, 0x51, 0x9e, + 0xa1, 0x79, 0xa9, 0x1b, 0x3f, 0x4a, 0xa8, 0xf3, 0x4a, 0x42, 0xaa, 0xbe, + 0xdc, 0x7a, 0x0e, 0xb4, 0xff, 0x00, 0xb4, 0xca, 0x46, 0x08, 0x5f, 0xca, + 0x98, 0x16, 0x94, 0x81, 0xd4, 0xe6, 0x9c, 0xa4, 0x1e, 0x95, 0x9f, 0xe7, + 0x49, 0xbb, 0x24, 0xaf, 0xe5, 0x4f, 0x5b, 0x99, 0x0e, 0x71, 0x81, 0xf8, + 0x50, 0x16, 0x31, 0x2f, 0xd0, 0xae, 0xa1, 0x32, 0x83, 0x8c, 0x36, 0x6a, + 0x25, 0x3c, 0x60, 0xf3, 0x53, 0xea, 0x4c, 0x7e, 0xd8, 0x5d, 0xba, 0xb0, + 0x1d, 0x2a, 0xb6, 0x42, 0xe1, 0x7b, 0x9e, 0xdd, 0xe9, 0x00, 0xd6, 0xda, + 0x9c, 0xf4, 0xf7, 0xa7, 0x24, 0x72, 0x4a, 0x72, 0xc4, 0xf9, 0x63, 0xa0, + 0xee, 0x6a, 0x45, 0xb7, 0x0d, 0x82, 0xdd, 0x7b, 0x0f, 0x4a, 0x9d, 0x41, + 0xc7, 0xa1, 0xa0, 0x04, 0x0a, 0x36, 0xe0, 0x8e, 0x28, 0x03, 0xa6, 0x3a, + 0x52, 0x91, 0x90, 0x41, 0x34, 0xd5, 0x02, 0x34, 0x00, 0x64, 0xd3, 0x01, + 0x4f, 0x03, 0xa5, 0x26, 0xdf, 0x97, 0x27, 0xa5, 0x38, 0x72, 0x30, 0x6a, + 0x0b, 0x99, 0x4c, 0x51, 0x1d, 0xbf, 0x78, 0xf0, 0x05, 0x20, 0x21, 0x99, + 0x84, 0x92, 0x18, 0xc7, 0x2a, 0xbc, 0xb5, 0x20, 0xf9, 0x41, 0xc9, 0x24, + 0x1e, 0x82, 0xa2, 0x58, 0xf6, 0xfd, 0xd6, 0x6c, 0xb7, 0x24, 0x83, 0x4e, + 0x21, 0xc0, 0xc0, 0x62, 0x71, 0xc7, 0x38, 0x34, 0x01, 0x22, 0xf1, 0xf5, + 0xa6, 0x8c, 0x36, 0x70, 0x39, 0xa6, 0x00, 0xca, 0x0e, 0x1b, 0x92, 0x7b, + 0x8a, 0x70, 0x59, 0x01, 0xea, 0xb8, 0xc7, 0x50, 0x28, 0x00, 0x20, 0x93, + 0xb5, 0x7a, 0x77, 0xa7, 0x8c, 0xe7, 0x1f, 0xad, 0x46, 0x3c, 0xec, 0xe0, + 0x6c, 0x6a, 0x54, 0x69, 0xde, 0x42, 0xa2, 0x35, 0xe3, 0xfd, 0xaa, 0x00, + 0x90, 0x1c, 0x75, 0xa5, 0x14, 0xa1, 0x67, 0xfe, 0xe2, 0x7e, 0x74, 0xbb, + 0x27, 0x27, 0xa2, 0x0a, 0x00, 0x61, 0x19, 0xe2, 0x98, 0xad, 0xb5, 0x8a, + 0xe3, 0xdc, 0x54, 0xeb, 0x0c, 0x8d, 0x9c, 0xb2, 0xfe, 0x02, 0x8f, 0xb1, + 0xe5, 0xb7, 0x17, 0x62, 0x68, 0x02, 0x32, 0x47, 0x19, 0xeb, 0x43, 0x1e, + 0xc0, 0x64, 0x7b, 0x54, 0xc2, 0xdd, 0x4f, 0x56, 0x6c, 0xd2, 0xf9, 0x11, + 0x83, 0xc2, 0xf1, 0x40, 0x15, 0x9b, 0x19, 0x19, 0x38, 0x14, 0x85, 0x37, + 0x74, 0x52, 0x45, 0x5a, 0xf2, 0x97, 0x23, 0xe5, 0xc7, 0xe1, 0x4a, 0xc0, + 0xe3, 0xaf, 0x1e, 0x94, 0x01, 0x9c, 0xe8, 0xd1, 0x3e, 0x18, 0x60, 0x76, + 0x34, 0xd2, 0x09, 0xe4, 0xf5, 0x15, 0xa0, 0xf1, 0xac, 0x8a, 0x55, 0xb1, + 0xcd, 0x51, 0x91, 0x1a, 0x37, 0xda, 0x70, 0x4f, 0xaf, 0xb5, 0x20, 0x1b, + 0xc6, 0x78, 0xe7, 0x14, 0xd0, 0x46, 0x4e, 0x49, 0xe6, 0x9c, 0x47, 0xa5, + 0x34, 0x83, 0xbb, 0x38, 0xe2, 0x80, 0x14, 0x00, 0x7d, 0xe9, 0x76, 0xf7, + 0x1c, 0x1a, 0x40, 0x7b, 0x53, 0xff, 0x00, 0x9d, 0x00, 0x0a, 0xe3, 0xa1, + 0x18, 0x6e, 0xd5, 0x26, 0xde, 0xff, 0x00, 0x9d, 0x44, 0x40, 0xe0, 0x11, + 0x9c, 0xf6, 0xa7, 0x24, 0x53, 0x01, 0x9c, 0x65, 0x7d, 0x09, 0xe6, 0x80, + 0x1c, 0xeb, 0xc7, 0x14, 0xcf, 0xb8, 0x79, 0xeb, 0x52, 0x2b, 0x11, 0xf2, + 0xb0, 0xc7, 0xb1, 0xa7, 0x8d, 0x84, 0x60, 0xf5, 0xa0, 0x0a, 0xc4, 0x93, + 0xda, 0x8e, 0x47, 0x4a, 0x95, 0xd4, 0x03, 0xda, 0x82, 0x06, 0x01, 0xc1, + 0xa0, 0x08, 0x82, 0x80, 0xdb, 0xbb, 0x9f, 0x43, 0x4a, 0x19, 0xc7, 0x20, + 0x86, 0xf6, 0x34, 0xa5, 0x30, 0x39, 0xa5, 0xe1, 0x79, 0x34, 0x00, 0xdf, + 0xb4, 0x0f, 0xe2, 0x42, 0xa4, 0x7a, 0xd3, 0x84, 0x88, 0xdf, 0xc4, 0x2a, + 0x22, 0x3c, 0xe7, 0xc9, 0xfb, 0xbd, 0xbd, 0xea, 0x5f, 0x2f, 0x77, 0x51, + 0xc5, 0x30, 0x1f, 0xc5, 0x26, 0x40, 0xcf, 0x3c, 0x53, 0x7c, 0x90, 0x33, + 0xb7, 0x23, 0xe8, 0x69, 0x42, 0x30, 0xe8, 0xff, 0x00, 0x98, 0xa0, 0x00, + 0x91, 0x8e, 0xb4, 0x1e, 0x40, 0xa4, 0xc4, 0x80, 0x60, 0x05, 0x27, 0xf2, + 0xa6, 0x79, 0x8e, 0xb9, 0x2d, 0x19, 0xc0, 0xf4, 0xe6, 0x80, 0x07, 0x6c, + 0x3a, 0x28, 0xfa, 0x9a, 0x94, 0x1c, 0xd4, 0x11, 0x66, 0x47, 0x32, 0x60, + 0xe0, 0xf4, 0xcd, 0x58, 0x03, 0xe5, 0xf4, 0x34, 0x00, 0x88, 0x07, 0x7e, + 0x69, 0x40, 0xe3, 0xe9, 0x46, 0x07, 0x27, 0xa6, 0x68, 0x1c, 0xe4, 0x0a, + 0x00, 0x55, 0x3f, 0xbc, 0x5e, 0x6a, 0xd2, 0xf4, 0xcd, 0x53, 0xce, 0x1d, + 0x0f, 0x6c, 0xd5, 0xc5, 0x20, 0x37, 0x5e, 0x28, 0x01, 0xe3, 0xa5, 0x26, + 0x71, 0x40, 0x60, 0x09, 0xe6, 0x97, 0x2b, 0x8e, 0xa2, 0x80, 0x13, 0x86, + 0xf7, 0x15, 0x52, 0x70, 0x63, 0x90, 0x3e, 0x38, 0x3d, 0x6a, 0xcf, 0x99, + 0x18, 0x1c, 0xb2, 0x8f, 0xc6, 0xab, 0xc9, 0x75, 0x6f, 0x20, 0x31, 0xf9, + 0x80, 0x93, 0xe9, 0xcd, 0x00, 0x19, 0x07, 0xb7, 0x34, 0x64, 0x54, 0x4b, + 0x32, 0xec, 0xfb, 0xad, 0x9e, 0x9d, 0x29, 0x4b, 0xb6, 0xde, 0x23, 0x27, + 0xde, 0x80, 0x15, 0x8f, 0x3c, 0x52, 0x96, 0x00, 0x74, 0x35, 0x18, 0x12, + 0x6d, 0xdd, 0x80, 0x73, 0xf8, 0xe2, 0x83, 0x14, 0xb2, 0x00, 0x4b, 0x10, + 0x3d, 0xb8, 0xa0, 0x07, 0x97, 0x55, 0x19, 0x7e, 0x05, 0x33, 0xcf, 0xdc, + 0x3f, 0x76, 0xbb, 0xbe, 0x94, 0xa6, 0xd1, 0x0a, 0xe5, 0x81, 0x6f, 0xad, + 0x34, 0x23, 0x42, 0x30, 0x83, 0x72, 0x7f, 0x2a, 0x40, 0x1f, 0xbd, 0x39, + 0xc1, 0x54, 0xfd, 0x68, 0x10, 0xa7, 0x2c, 0xe4, 0xb9, 0x1e, 0xb4, 0xf0, + 0x77, 0x63, 0x8c, 0x8a, 0x78, 0x19, 0x1c, 0xfa, 0xd3, 0x03, 0x4f, 0x44, + 0x8c, 0x19, 0x5d, 0xf0, 0x06, 0xd5, 0xc0, 0xc5, 0x6b, 0x3f, 0x2a, 0x45, + 0x67, 0x68, 0xe0, 0xf9, 0x52, 0xb6, 0x30, 0x33, 0x8e, 0x2b, 0x43, 0x3c, + 0x1a, 0x00, 0x70, 0xce, 0xda, 0x70, 0xc8, 0x14, 0xd5, 0x07, 0x60, 0x3c, + 0x0a, 0x71, 0x51, 0xc1, 0xcd, 0x03, 0x10, 0x9e, 0x99, 0xae, 0x7a, 0x44, + 0xf2, 0xae, 0xe7, 0x87, 0xa0, 0x56, 0xc8, 0xfa, 0x1e, 0x6b, 0xa1, 0xe3, + 0x77, 0x73, 0x58, 0x9a, 0xe2, 0xad, 0xbd, 0xd4, 0x37, 0x23, 0x3b, 0x5c, + 0x6c, 0x7f, 0xe9, 0x40, 0x88, 0x3a, 0x52, 0x1e, 0xb5, 0x0f, 0xda, 0xe3, + 0xec, 0xac, 0x7f, 0x0a, 0x69, 0xb8, 0x62, 0x70, 0xb1, 0x1e, 0x9d, 0xcd, + 0x00, 0x59, 0x1c, 0x0a, 0x43, 0xc7, 0x35, 0x4e, 0x4b, 0x8b, 0x85, 0x50, + 0x40, 0x41, 0x9e, 0xf4, 0xbb, 0x65, 0x60, 0x3c, 0xc9, 0x4f, 0x3d, 0x87, + 0x14, 0x80, 0xb4, 0xd2, 0x2a, 0x8f, 0x98, 0x8a, 0xcd, 0x33, 0xf9, 0x53, + 0xee, 0x8b, 0x73, 0x44, 0x7a, 0xaf, 0xa5, 0x4f, 0xf6, 0x74, 0x19, 0xc6, + 0x73, 0xea, 0x68, 0x01, 0x54, 0x6c, 0x60, 0x4f, 0xb9, 0xa0, 0x06, 0xad, + 0xe3, 0xbc, 0x80, 0x6c, 0xf2, 0xd0, 0xf7, 0x3c, 0xd5, 0xc5, 0x88, 0x1e, + 0x59, 0x8b, 0x55, 0x76, 0x50, 0x17, 0x3c, 0x60, 0xf6, 0x34, 0xd8, 0xe4, + 0x92, 0x0c, 0x63, 0xe6, 0x43, 0xdb, 0xd2, 0x84, 0x05, 0xed, 0xa0, 0x70, + 0x07, 0x14, 0xb8, 0xa6, 0x47, 0x2a, 0xca, 0xb9, 0x43, 0xc5, 0x3c, 0xd3, + 0x01, 0x09, 0xc0, 0xad, 0xbd, 0x33, 0x9b, 0x08, 0xcf, 0xae, 0x4d, 0x73, + 0xb3, 0x4e, 0x88, 0xa4, 0x67, 0x27, 0xd0, 0x57, 0x45, 0x62, 0x3c, 0xab, + 0x28, 0x94, 0x02, 0x06, 0xd1, 0x40, 0x16, 0x0f, 0xdf, 0x39, 0xa6, 0xc8, + 0xbf, 0xba, 0x75, 0x03, 0x86, 0x14, 0xe2, 0xc0, 0x82, 0x42, 0xe6, 0x98, + 0x5c, 0x9c, 0x0c, 0x11, 0xc5, 0x00, 0x72, 0x6d, 0x95, 0x62, 0x01, 0xe4, + 0x1a, 0x66, 0xc0, 0x79, 0x73, 0xbb, 0xda, 0xa6, 0xba, 0x05, 0x27, 0x90, + 0x15, 0x38, 0x04, 0xf2, 0x2a, 0xb6, 0xed, 0xd8, 0x54, 0x3f, 0x53, 0x48, + 0x04, 0x6f, 0x2e, 0x3c, 0xed, 0xe1, 0xbb, 0x01, 0x4e, 0x5f, 0xb4, 0x63, + 0x25, 0x97, 0x1e, 0x84, 0x53, 0xd6, 0x11, 0x18, 0xcf, 0xde, 0x3e, 0xb4, + 0xa4, 0xf1, 0xcb, 0x75, 0xf4, 0xa0, 0x06, 0xf2, 0x32, 0xc5, 0x49, 0x3e, + 0xa2, 0x9f, 0x0a, 0xc6, 0xe7, 0xe7, 0x20, 0x0e, 0xca, 0x78, 0xc9, 0xa7, + 0x6e, 0x18, 0x20, 0x76, 0xe8, 0x45, 0x46, 0x00, 0x70, 0x4f, 0x27, 0x3e, + 0xd4, 0x01, 0x74, 0x90, 0x13, 0x23, 0x9c, 0x76, 0x06, 0x90, 0x60, 0x8e, + 0x41, 0xf5, 0x03, 0x15, 0x51, 0x55, 0x3f, 0x84, 0x91, 0xea, 0x6a, 0x44, + 0xca, 0xae, 0xe1, 0x21, 0xe3, 0xd6, 0x81, 0x96, 0xb7, 0x1e, 0x0a, 0x80, + 0x07, 0x7c, 0xd2, 0x37, 0x0c, 0x48, 0x07, 0xf1, 0xaa, 0x66, 0xe2, 0x75, + 0x93, 0x1f, 0x29, 0x07, 0xd6, 0x9e, 0x27, 0x93, 0x27, 0x28, 0x33, 0xec, + 0x68, 0x02, 0xc8, 0xc6, 0xec, 0x62, 0xb5, 0x2c, 0x17, 0x6c, 0x19, 0xc7, + 0xde, 0x39, 0xac, 0x1f, 0xb4, 0xbe, 0x40, 0x58, 0x49, 0x63, 0xc7, 0x26, + 0xba, 0x88, 0xe3, 0xd9, 0x0a, 0x28, 0xec, 0x28, 0x42, 0x00, 0x3d, 0x68, + 0x1f, 0x29, 0xe9, 0x9a, 0x5e, 0xde, 0xf4, 0x1f, 0x9b, 0xa5, 0x30, 0x13, + 0x79, 0xf5, 0xa0, 0x6e, 0x6e, 0xad, 0x8f, 0x6a, 0x49, 0x23, 0x0c, 0xb8, + 0x24, 0xe0, 0xd2, 0x2a, 0x90, 0x00, 0x03, 0x81, 0xeb, 0x40, 0x19, 0x37, + 0x71, 0xf9, 0x77, 0xb2, 0x29, 0xef, 0xf3, 0x0a, 0x84, 0x7a, 0xe2, 0xae, + 0x6a, 0xaa, 0x52, 0x58, 0xa6, 0x23, 0x0a, 0x46, 0xd2, 0x7f, 0x95, 0x53, + 0xc7, 0x07, 0x1d, 0xe8, 0x01, 0x07, 0x1c, 0x1a, 0x77, 0x7a, 0x69, 0x19, + 0x03, 0x70, 0xe6, 0x97, 0x27, 0x22, 0x80, 0x06, 0xc1, 0x07, 0xbf, 0xb5, + 0x57, 0x74, 0x11, 0xa8, 0x01, 0x7b, 0xd4, 0xe3, 0x24, 0xfc, 0xc2, 0x95, + 0x86, 0x06, 0x1b, 0x91, 0x40, 0x15, 0xb9, 0x29, 0xc5, 0x46, 0xe8, 0x78, + 0x3c, 0x8c, 0x76, 0xa7, 0x1c, 0xc5, 0x21, 0x56, 0xe1, 0x4f, 0x46, 0xa1, + 0xe4, 0x55, 0x6e, 0x58, 0x0a, 0x00, 0x08, 0x39, 0xc1, 0x07, 0xf0, 0xa5, + 0xc7, 0x1f, 0x2e, 0x4d, 0x31, 0xa6, 0x2e, 0xa4, 0x20, 0x27, 0xf4, 0xa2, + 0x34, 0x76, 0xcf, 0x3f, 0x80, 0x34, 0x00, 0xb9, 0x0a, 0x79, 0xe6, 0x81, + 0x96, 0xe1, 0x57, 0xa7, 0x73, 0x4f, 0x54, 0x56, 0x27, 0xf8, 0x48, 0xee, + 0x29, 0xe1, 0xbc, 0xb5, 0x51, 0x8c, 0xd0, 0x04, 0x42, 0x1c, 0x1e, 0x72, + 0x7d, 0xa9, 0x5a, 0x12, 0x3e, 0x64, 0x38, 0xf6, 0x3d, 0xe9, 0xe3, 0xa9, + 0x60, 0xa7, 0x27, 0xd6, 0x94, 0xb1, 0xc1, 0xc8, 0xe7, 0xb5, 0x00, 0x42, + 0xfc, 0x0c, 0x30, 0x22, 0x95, 0x4e, 0xf5, 0x21, 0x0e, 0x07, 0xa9, 0xa9, + 0x80, 0x24, 0xe4, 0xf7, 0xec, 0x69, 0x86, 0x20, 0xb9, 0x2a, 0x71, 0xed, + 0xda, 0x80, 0x05, 0x4d, 0x83, 0x0d, 0xf7, 0xbb, 0x9a, 0x76, 0x58, 0x10, + 0xc0, 0xfe, 0x95, 0x1f, 0x98, 0x01, 0xc3, 0xf2, 0x3d, 0x6a, 0x65, 0x19, + 0x8c, 0x81, 0xcf, 0xa0, 0x14, 0x00, 0xa6, 0x4f, 0x94, 0x60, 0x8e, 0x3a, + 0xd2, 0x17, 0x1d, 0x73, 0x8c, 0xf5, 0x22, 0x93, 0x6f, 0x18, 0x23, 0x0d, + 0x4c, 0x21, 0x58, 0x85, 0xef, 0xeb, 0x40, 0x13, 0x6e, 0x1b, 0x7a, 0xf1, + 0xdf, 0x34, 0x8c, 0x01, 0x7d, 0xaa, 0x00, 0x07, 0xa9, 0xa6, 0x1d, 0xa1, + 0x70, 0x39, 0xc5, 0x30, 0x17, 0xdf, 0x40, 0x0f, 0x90, 0xed, 0x1c, 0x76, + 0xaa, 0x37, 0x05, 0xa5, 0x29, 0x00, 0xe8, 0x79, 0x63, 0x56, 0x66, 0x26, + 0x34, 0x27, 0x24, 0x93, 0xd8, 0xd4, 0x70, 0xc6, 0x56, 0x32, 0x4f, 0xde, + 0x3c, 0x9a, 0x00, 0x92, 0x1f, 0xdc, 0x2e, 0xd8, 0xe4, 0x65, 0x03, 0xb5, + 0x3c, 0x5d, 0x4c, 0x01, 0x25, 0xb3, 0xe8, 0x08, 0xa6, 0x29, 0xdc, 0xb9, + 0x3c, 0x7a, 0x62, 0x91, 0x8a, 0xae, 0x72, 0x79, 0xa4, 0x04, 0xcb, 0x7f, + 0x27, 0x20, 0xa2, 0xe4, 0x55, 0xad, 0x3a, 0x63, 0x77, 0x78, 0x5d, 0x90, + 0x2a, 0xa2, 0xfe, 0xa6, 0xb3, 0x91, 0x33, 0xbb, 0x27, 0x1f, 0x4a, 0xd8, + 0xd2, 0x20, 0x65, 0xb5, 0x32, 0x37, 0x57, 0x39, 0xfc, 0x29, 0x81, 0x7c, + 0x8c, 0x1e, 0x29, 0x36, 0x96, 0x34, 0xbd, 0x28, 0xc9, 0xa6, 0x03, 0x0a, + 0x7a, 0xd2, 0x80, 0x31, 0x4e, 0x39, 0x3f, 0x5a, 0x68, 0x06, 0x80, 0x32, + 0x75, 0xb1, 0x22, 0x42, 0x92, 0xc4, 0xb9, 0x60, 0x71, 0x55, 0x2d, 0xae, + 0x61, 0xda, 0x03, 0x12, 0x24, 0xee, 0x5b, 0xad, 0x6c, 0x5f, 0x43, 0xe6, + 0x5a, 0x48, 0x31, 0x9c, 0x0c, 0x8a, 0xc3, 0x50, 0x0a, 0xf3, 0x8c, 0x7a, + 0x62, 0x90, 0x17, 0x82, 0xb9, 0x21, 0x83, 0x7c, 0xb4, 0xf0, 0x78, 0xc8, + 0xf4, 0xaa, 0x3e, 0x53, 0x29, 0x1e, 0x5b, 0xb2, 0x9e, 0xbc, 0x52, 0x89, + 0xa5, 0x8a, 0x4e, 0x76, 0xbe, 0x7b, 0xf4, 0xa2, 0xe0, 0x5e, 0xcf, 0x1d, + 0x3a, 0xd0, 0x3a, 0x7c, 0xdd, 0x6a, 0xb0, 0xbd, 0x51, 0x80, 0xe8, 0xc8, + 0x7e, 0x99, 0xa9, 0x56, 0x78, 0x9f, 0xfe, 0x5a, 0xae, 0x7e, 0xb4, 0x00, + 0xe7, 0x91, 0x62, 0x46, 0x91, 0xb8, 0x02, 0xa9, 0x2b, 0x99, 0xdc, 0xca, + 0xca, 0xc0, 0x1f, 0xbb, 0x9f, 0x4a, 0x5b, 0xa6, 0xfb, 0x47, 0xee, 0x97, + 0xee, 0x77, 0x23, 0xbd, 0x34, 0x8d, 0x88, 0xab, 0x83, 0xd3, 0xd6, 0x80, + 0x10, 0xe0, 0xe4, 0xf7, 0x14, 0xa3, 0x24, 0xe4, 0x9c, 0x01, 0x4e, 0x5f, + 0xee, 0xe7, 0x9e, 0xb4, 0x92, 0x64, 0xfc, 0xab, 0xc6, 0x7a, 0xd2, 0x01, + 0xaa, 0xc3, 0x71, 0xea, 0x69, 0x70, 0x77, 0x0e, 0x71, 0x48, 0xb1, 0x32, + 0xb1, 0x24, 0xe7, 0xda, 0x9e, 0x02, 0x83, 0xf3, 0x70, 0xd4, 0x00, 0x88, + 0xdb, 0x73, 0x92, 0x3d, 0x6a, 0x6b, 0x30, 0x4a, 0xb4, 0x87, 0x3f, 0x31, + 0xaa, 0xed, 0x28, 0x48, 0xdf, 0xe5, 0xf6, 0x15, 0x72, 0xdd, 0x76, 0x42, + 0x8a, 0x47, 0x38, 0xeb, 0x4c, 0x09, 0xc0, 0xcf, 0x6a, 0x31, 0xeb, 0xc1, + 0xa4, 0x03, 0x8a, 0x52, 0x0f, 0x6a, 0x00, 0x42, 0x08, 0x5e, 0x05, 0x1f, + 0xc3, 0xcf, 0x07, 0xda, 0x97, 0x3c, 0x75, 0xa6, 0x6e, 0xc8, 0x38, 0xeb, + 0x40, 0x01, 0x24, 0xf4, 0xed, 0xd6, 0x9d, 0x92, 0x40, 0x19, 0xa1, 0x78, + 0x07, 0x23, 0x19, 0xa7, 0x7c, 0xa5, 0x7e, 0x94, 0x01, 0x04, 0x8a, 0xcc, + 0x36, 0x87, 0x2a, 0x7d, 0x45, 0x11, 0xab, 0x2a, 0x61, 0xdb, 0x27, 0xd7, + 0x14, 0xe7, 0x94, 0x2f, 0x23, 0xaf, 0x4a, 0x4f, 0x33, 0x70, 0x24, 0xe0, + 0x7a, 0x73, 0x40, 0x01, 0x41, 0x8c, 0xd4, 0x32, 0xc1, 0xe7, 0xa7, 0x60, + 0x47, 0x43, 0x52, 0x34, 0xd1, 0x2f, 0xf1, 0x9c, 0xfa, 0x01, 0x9a, 0x84, + 0xcc, 0xe4, 0xe1, 0x23, 0xe3, 0xb6, 0x4d, 0x00, 0x53, 0x93, 0x74, 0x67, + 0x63, 0x70, 0xde, 0xbe, 0xb4, 0xc0, 0xc4, 0x75, 0x23, 0xf1, 0xab, 0x72, + 0x5b, 0xbc, 0xf8, 0xf3, 0x5d, 0x42, 0xe7, 0xa2, 0x8e, 0x6a, 0x44, 0xb4, + 0x89, 0x06, 0x42, 0xe7, 0xdc, 0xd2, 0xb0, 0x5c, 0xa8, 0x84, 0xb7, 0xdc, + 0x52, 0xde, 0xfd, 0xaa, 0x75, 0xb5, 0x62, 0x72, 0xed, 0xc7, 0xa0, 0xab, + 0x01, 0x71, 0xd0, 0x63, 0xe9, 0x4b, 0xcd, 0x3b, 0x00, 0xc8, 0xe3, 0x54, + 0xfb, 0xab, 0xf5, 0xa7, 0xe3, 0xb6, 0x29, 0x76, 0xfe, 0xb4, 0x9c, 0x8e, + 0x00, 0xa0, 0x06, 0xba, 0x07, 0x1c, 0x8c, 0x8a, 0x81, 0xe0, 0x7f, 0xf9, + 0x66, 0x72, 0x3d, 0x0d, 0x5a, 0xed, 0xcd, 0x27, 0x72, 0x28, 0x02, 0x9b, + 0x9e, 0x36, 0xb0, 0x2a, 0x7d, 0xea, 0x45, 0xe3, 0x03, 0x19, 0xa9, 0xca, + 0x83, 0xd7, 0x04, 0x55, 0x69, 0x11, 0x23, 0x1f, 0x2b, 0x15, 0x6f, 0x41, + 0x45, 0x80, 0x59, 0x00, 0x5c, 0xb1, 0xe8, 0x2a, 0xb9, 0x6f, 0x38, 0x70, + 0xa4, 0x47, 0xe9, 0xeb, 0x4e, 0x08, 0xf2, 0x80, 0x64, 0x6c, 0x81, 0xda, + 0xa6, 0x0a, 0x00, 0xc6, 0x3a, 0x74, 0xa4, 0x03, 0x55, 0x06, 0x06, 0xd1, + 0xd2, 0xa4, 0x02, 0x91, 0x7e, 0xef, 0x34, 0xac, 0x30, 0xbd, 0x33, 0x4c, + 0x06, 0x90, 0x3f, 0x0a, 0x42, 0x70, 0x38, 0x19, 0x1d, 0xa8, 0x24, 0x63, + 0x1d, 0xa9, 0x50, 0x7a, 0x8a, 0x00, 0x00, 0xe8, 0x2a, 0x29, 0xb2, 0x53, + 0x60, 0x38, 0xdd, 0xd2, 0xa7, 0x62, 0x07, 0x1f, 0xad, 0x40, 0x9f, 0xbc, + 0x72, 0xe4, 0xf0, 0x38, 0x14, 0x08, 0x15, 0x76, 0x2f, 0xe1, 0x52, 0x83, + 0xd2, 0x9b, 0xdc, 0x75, 0x34, 0x63, 0x03, 0xe6, 0x3c, 0x50, 0x31, 0xe1, + 0x46, 0x0d, 0x26, 0x01, 0xec, 0x33, 0x47, 0x0b, 0x92, 0x0e, 0x7d, 0xa9, + 0x09, 0xce, 0x08, 0xa0, 0x06, 0xc8, 0xaa, 0xc1, 0x47, 0x4f, 0x9a, 0xa5, + 0x0a, 0x0b, 0x86, 0x03, 0xa1, 0xe9, 0x9e, 0x2a, 0x27, 0x1f, 0x26, 0x7d, + 0x3b, 0xd5, 0x84, 0xcf, 0x1f, 0xe1, 0xc5, 0x00, 0x07, 0x69, 0x07, 0xe4, + 0x3c, 0xfa, 0x0a, 0x4f, 0xb1, 0xa3, 0x10, 0x78, 0xc5, 0x48, 0x72, 0xbc, + 0xf1, 0x44, 0x6f, 0x91, 0x95, 0x1c, 0xf7, 0xa4, 0x05, 0x6f, 0xb2, 0x41, + 0xc8, 0x23, 0x3f, 0x85, 0x3e, 0x2b, 0x58, 0xa3, 0x93, 0x0b, 0x17, 0x6f, + 0xbd, 0x53, 0x7c, 0xc5, 0xbe, 0x63, 0x9f, 0x41, 0x9a, 0x52, 0xea, 0x5f, + 0x6e, 0x39, 0x14, 0x05, 0x88, 0x5a, 0x32, 0x01, 0xcf, 0x14, 0xc0, 0xa4, + 0x1e, 0xbf, 0x28, 0xab, 0x2c, 0x09, 0x1c, 0x02, 0x7d, 0x31, 0xdc, 0xd5, + 0x8f, 0xec, 0x6b, 0xb6, 0x84, 0x48, 0x76, 0x82, 0x46, 0x4a, 0xe6, 0x80, + 0x29, 0x26, 0x0f, 0x00, 0x71, 0x49, 0x23, 0x85, 0x21, 0x71, 0x80, 0x7b, + 0xd3, 0xda, 0xd6, 0x65, 0xc8, 0xda, 0x49, 0x53, 0xce, 0xda, 0x63, 0x2b, + 0x0c, 0x06, 0x07, 0xe8, 0x68, 0x01, 0xf9, 0x07, 0x68, 0x07, 0x8c, 0x73, + 0x51, 0xb8, 0x55, 0x60, 0x0b, 0xed, 0xcd, 0x2f, 0x98, 0x54, 0xfc, 0xa0, + 0x50, 0x40, 0x62, 0x09, 0xc1, 0x3d, 0xbd, 0xa8, 0x02, 0x37, 0x87, 0x62, + 0x99, 0x17, 0xa1, 0xa6, 0x07, 0x2c, 0x3b, 0x0e, 0x2a, 0xd1, 0xb8, 0x8d, + 0x54, 0x23, 0x10, 0x40, 0xec, 0x2a, 0x9b, 0x09, 0x25, 0x63, 0xb0, 0x60, + 0xe7, 0xe5, 0xcf, 0x06, 0x80, 0x3a, 0x7d, 0x2a, 0x3d, 0xba, 0x74, 0x7f, + 0xed, 0x7c, 0xc6, 0xac, 0x15, 0x03, 0x24, 0xfa, 0x51, 0x0a, 0x18, 0xad, + 0x62, 0x4c, 0x74, 0x50, 0x29, 0x5f, 0x3b, 0x49, 0xf6, 0xa6, 0x03, 0x82, + 0x00, 0xa0, 0x64, 0xf4, 0xa6, 0x94, 0x04, 0xf5, 0x34, 0xf2, 0x71, 0x8c, + 0x0a, 0x5c, 0x60, 0xf3, 0xcd, 0x00, 0x31, 0x62, 0x19, 0xe4, 0x9c, 0x7d, + 0x6a, 0x1b, 0xdd, 0x3e, 0x2b, 0xab, 0x67, 0x52, 0x0b, 0x30, 0x19, 0x5c, + 0x9e, 0xf5, 0x60, 0xb6, 0xd2, 0x46, 0x28, 0xf3, 0x07, 0x40, 0x0d, 0x00, + 0x72, 0x20, 0x00, 0x71, 0x8c, 0x37, 0x4c, 0x53, 0x80, 0x1b, 0xb0, 0x31, + 0x9e, 0xf5, 0x3d, 0xf4, 0x46, 0x0d, 0x41, 0xd7, 0xf8, 0x1c, 0x6f, 0x5a, + 0x80, 0x8d, 0xcb, 0xf3, 0xf0, 0xc3, 0x9c, 0x8a, 0x00, 0x57, 0x50, 0x70, + 0xb9, 0xda, 0x3d, 0xfb, 0xd0, 0x57, 0xe6, 0x07, 0x04, 0x81, 0xc5, 0x38, + 0xb4, 0x78, 0xf9, 0xb9, 0xc5, 0x31, 0xe6, 0x50, 0x38, 0x70, 0x29, 0x00, + 0xd7, 0x4e, 0x80, 0x03, 0x8f, 0x63, 0x40, 0x52, 0x00, 0x1d, 0x58, 0x7a, + 0x9a, 0x6b, 0x4e, 0x36, 0xe4, 0x65, 0x88, 0xf4, 0x1d, 0x2a, 0x12, 0xd2, + 0x48, 0xfb, 0xc7, 0xca, 0x3d, 0x4d, 0x00, 0x4d, 0x21, 0xc8, 0xdb, 0x9e, + 0x7b, 0x0a, 0x69, 0x90, 0x28, 0x1b, 0xb1, 0xf4, 0xa6, 0x79, 0x65, 0x90, + 0xb1, 0x7d, 0xc4, 0x76, 0x14, 0xa6, 0x25, 0xc8, 0x2a, 0x70, 0x7d, 0xe8, + 0x01, 0x3c, 0xd6, 0x12, 0x6e, 0x88, 0x11, 0xea, 0x4f, 0x4a, 0x95, 0xdd, + 0xe4, 0x60, 0x0b, 0x9c, 0x7b, 0x52, 0x31, 0x0a, 0x3e, 0x50, 0x33, 0xdc, + 0xd3, 0x58, 0x9d, 0xe1, 0xbd, 0xa8, 0x01, 0xaa, 0xa5, 0xae, 0x52, 0x2c, + 0x7f, 0x10, 0xfc, 0x6b, 0xb3, 0x5f, 0xb8, 0x07, 0xa0, 0xc6, 0x2b, 0x96, + 0xd3, 0x23, 0xf3, 0xf5, 0x24, 0xcf, 0x40, 0x77, 0x1a, 0xea, 0x95, 0x90, + 0xb1, 0x0a, 0xc0, 0xfb, 0x53, 0x42, 0xea, 0x3f, 0xcb, 0x23, 0xb7, 0x6a, + 0x00, 0x20, 0xd5, 0x84, 0x19, 0xa0, 0xa8, 0xcf, 0x22, 0x98, 0xce, 0x4f, + 0x56, 0x8b, 0xca, 0xbf, 0x6c, 0x74, 0x71, 0x9a, 0xcf, 0xf2, 0x53, 0x7e, + 0x1b, 0x1c, 0xf4, 0xad, 0xff, 0x00, 0x10, 0x20, 0xdd, 0x14, 0x83, 0x18, + 0xe8, 0x6b, 0x09, 0x80, 0x73, 0x9e, 0x40, 0x1e, 0x94, 0x98, 0x21, 0xbe, + 0x5b, 0xa9, 0x3b, 0x1c, 0x9c, 0x76, 0x34, 0xd3, 0x23, 0x07, 0xcb, 0xc6, + 0x78, 0xee, 0x2a, 0x70, 0xdc, 0x67, 0xa6, 0x3d, 0x6a, 0x16, 0x3e, 0x71, + 0x21, 0x73, 0x8e, 0xe6, 0x90, 0x0a, 0x93, 0xa3, 0x8c, 0x23, 0x85, 0xe6, + 0xa6, 0xeb, 0xc0, 0xc1, 0xc9, 0xeb, 0x4d, 0x8d, 0x01, 0x05, 0x76, 0x60, + 0x0e, 0x05, 0x06, 0xde, 0x3c, 0x9c, 0x03, 0xd3, 0xb1, 0xe0, 0x50, 0x02, + 0xed, 0x28, 0xa4, 0x16, 0x00, 0x76, 0x02, 0x9a, 0x54, 0xb1, 0xc0, 0x07, + 0x8e, 0xb4, 0xdf, 0x2a, 0x45, 0x38, 0xf3, 0x09, 0x03, 0xda, 0x93, 0x73, + 0xaf, 0x42, 0x18, 0x1e, 0xd4, 0x01, 0x22, 0x92, 0x14, 0x06, 0x04, 0xd2, + 0x65, 0xb6, 0x9f, 0x9b, 0x24, 0x74, 0x34, 0x86, 0x49, 0x01, 0x07, 0xcb, + 0x07, 0xe9, 0x48, 0xd3, 0x18, 0xc6, 0x1d, 0x0d, 0x00, 0x5c, 0xb0, 0x8c, + 0x4b, 0x79, 0x12, 0x81, 0xf7, 0x7e, 0x63, 0x5d, 0x1b, 0x29, 0xc7, 0x1c, + 0x56, 0x46, 0x87, 0x1f, 0x9a, 0x92, 0x5c, 0x8e, 0x01, 0xf9, 0x57, 0x3e, + 0xd5, 0xb0, 0x18, 0x11, 0xcd, 0x30, 0x1a, 0x4f, 0x18, 0xc5, 0x31, 0x83, + 0x6c, 0x21, 0x0e, 0x0f, 0xaf, 0x5a, 0x7b, 0x1e, 0x78, 0xa0, 0x12, 0x4f, + 0xa0, 0xa0, 0x06, 0xae, 0xe5, 0x88, 0x06, 0x3b, 0x8f, 0xae, 0x29, 0x43, + 0x67, 0xad, 0x29, 0xe7, 0xaf, 0x4a, 0x61, 0x07, 0x14, 0x0c, 0x8a, 0xfa, + 0x0f, 0xb4, 0x59, 0x48, 0xa3, 0x92, 0x06, 0x45, 0x62, 0xab, 0xb6, 0x13, + 0x8f, 0x97, 0x1c, 0xd7, 0x42, 0xac, 0x40, 0xda, 0x45, 0x60, 0x5d, 0xc9, + 0x1d, 0xb5, 0xd4, 0xb0, 0xb7, 0x40, 0x72, 0x3e, 0x86, 0x81, 0x09, 0xd0, + 0x13, 0xdb, 0x14, 0x88, 0xe0, 0xae, 0x4e, 0x0e, 0x7b, 0x66, 0xab, 0x9b, + 0x8d, 0xc4, 0xae, 0x0e, 0x4f, 0x4e, 0x29, 0xa5, 0xd9, 0x8f, 0x3d, 0x28, + 0x02, 0xc1, 0x92, 0x32, 0xf8, 0xef, 0x44, 0x92, 0x01, 0xd7, 0x39, 0xf5, + 0x15, 0x5c, 0xa1, 0x42, 0xac, 0x18, 0xe7, 0xb0, 0xa7, 0x18, 0xd9, 0xdb, + 0xe7, 0x62, 0x45, 0x00, 0x3a, 0x47, 0x56, 0x5c, 0x48, 0x46, 0x0f, 0x63, + 0x54, 0x82, 0x88, 0xd8, 0x85, 0xc1, 0x53, 0xd1, 0x8d, 0x5c, 0x22, 0x38, + 0xdb, 0x3b, 0x79, 0xe8, 0x78, 0xa5, 0x61, 0x1b, 0x01, 0x9c, 0xed, 0x3d, + 0x88, 0xa0, 0x04, 0x50, 0xac, 0xa0, 0x12, 0x0f, 0xd0, 0xd2, 0xed, 0x01, + 0x71, 0xb3, 0x15, 0x07, 0x96, 0xf1, 0x36, 0xf1, 0xcc, 0x7e, 0xbe, 0x95, + 0x61, 0x64, 0x05, 0x3d, 0xcf, 0x42, 0x28, 0x02, 0x3d, 0xb8, 0x7c, 0x63, + 0x38, 0xeb, 0x4a, 0x1d, 0x04, 0xd8, 0xc8, 0xc7, 0xbd, 0x3f, 0x0d, 0xb4, + 0x92, 0x41, 0x27, 0xbd, 0x31, 0xf6, 0x85, 0xdb, 0xc0, 0x27, 0xbe, 0x28, + 0x01, 0xec, 0x54, 0x1d, 0xdf, 0xca, 0x90, 0x33, 0x15, 0x3e, 0xa6, 0x98, + 0x58, 0x08, 0xc0, 0x04, 0x7e, 0x59, 0xa4, 0xcb, 0xb1, 0x18, 0x51, 0x40, + 0x12, 0x99, 0x48, 0x51, 0xb8, 0x7e, 0x1d, 0xe9, 0x9b, 0x99, 0x8e, 0x1b, + 0x81, 0xfc, 0xe9, 0x48, 0xc1, 0x04, 0xf0, 0x69, 0xe5, 0x01, 0x42, 0x78, + 0x27, 0xb6, 0x68, 0x01, 0x04, 0x59, 0x1c, 0x8c, 0x0a, 0x5f, 0x28, 0x81, + 0x88, 0xdb, 0x1d, 0xe9, 0xcb, 0x90, 0xa0, 0x71, 0xee, 0x69, 0x40, 0x18, + 0x23, 0x70, 0xfc, 0xe8, 0x02, 0x3f, 0x31, 0x95, 0x72, 0xc0, 0xe7, 0xd4, + 0x0a, 0x44, 0x96, 0x29, 0x19, 0x88, 0x3c, 0xfd, 0x2a, 0x51, 0xd3, 0x2d, + 0xd0, 0xf1, 0x48, 0x51, 0x1f, 0x27, 0x3c, 0x8e, 0x98, 0xa0, 0x06, 0xaa, + 0x1c, 0x12, 0x47, 0xd3, 0x34, 0xd2, 0xbc, 0x9c, 0xf5, 0x1c, 0xd0, 0x21, + 0x64, 0x2c, 0x4c, 0x9b, 0x87, 0xab, 0x74, 0xa8, 0x43, 0x99, 0x1c, 0x92, + 0x38, 0x1c, 0x71, 0xde, 0x80, 0x1a, 0x8e, 0x25, 0x62, 0xce, 0xc3, 0x20, + 0xe0, 0x0c, 0xd4, 0x8c, 0xc1, 0x7e, 0x51, 0xc8, 0xf5, 0xa4, 0x6d, 0x99, + 0x07, 0x6e, 0xef, 0xe9, 0x46, 0xd5, 0xdd, 0x92, 0x06, 0x3d, 0xa8, 0x01, + 0x00, 0xc3, 0x64, 0x0f, 0xe9, 0x43, 0x72, 0xc7, 0x04, 0x8a, 0x69, 0x8d, + 0x99, 0xc8, 0x0c, 0x70, 0x3b, 0xe6, 0x9e, 0x61, 0x93, 0x68, 0x1b, 0x8e, + 0x7b, 0x82, 0x29, 0x00, 0xc6, 0x77, 0x2a, 0x00, 0x1b, 0x98, 0xb6, 0x30, + 0x2b, 0xa9, 0x81, 0x3c, 0xa8, 0x11, 0x00, 0xc6, 0x14, 0x0a, 0xc3, 0xd2, + 0x62, 0x33, 0xdd, 0x82, 0x70, 0x52, 0x3e, 0x78, 0xf5, 0xad, 0xf2, 0x29, + 0x80, 0x84, 0x73, 0x48, 0x4d, 0x3b, 0x04, 0xf7, 0xa0, 0x8a, 0x60, 0x37, + 0xa7, 0x41, 0x9a, 0x76, 0x40, 0xa8, 0xf9, 0xcf, 0xb5, 0x2e, 0x79, 0xc5, + 0x00, 0x04, 0x6e, 0x52, 0x0f, 0x7a, 0xe7, 0x84, 0x66, 0x29, 0x25, 0x43, + 0xd9, 0xab, 0xa3, 0x18, 0xc7, 0x35, 0x8b, 0x7f, 0x00, 0x86, 0xe8, 0x3a, + 0x70, 0xae, 0x33, 0xf8, 0xd2, 0x02, 0xb1, 0x27, 0x70, 0x61, 0x93, 0x91, + 0x8a, 0x76, 0xd2, 0x13, 0x21, 0x7b, 0xf6, 0xa5, 0x18, 0xfc, 0x28, 0x12, + 0x22, 0x0f, 0x9c, 0xe2, 0x90, 0x0c, 0x91, 0x91, 0xc0, 0x3b, 0x70, 0x45, + 0x53, 0x64, 0x13, 0xc9, 0x80, 0x3f, 0x76, 0xa7, 0xe6, 0x3e, 0xbf, 0x4a, + 0x98, 0x9f, 0xb5, 0x49, 0xb6, 0x30, 0x44, 0x5d, 0xdb, 0xd6, 0xa5, 0x5c, + 0x22, 0xf9, 0x68, 0x0e, 0x07, 0xad, 0x00, 0x1c, 0x2c, 0x60, 0xa2, 0xf1, + 0xfc, 0xa9, 0x30, 0x4e, 0x33, 0x90, 0x3b, 0xd2, 0xe4, 0xf1, 0x9e, 0x47, + 0x7a, 0x66, 0x4f, 0x3d, 0x71, 0x9a, 0x00, 0x7e, 0x40, 0xec, 0x06, 0x3d, + 0x4d, 0x27, 0xde, 0xef, 0xc5, 0x05, 0x53, 0x68, 0x52, 0x39, 0x34, 0xd2, + 0x70, 0x80, 0xaf, 0x41, 0xd6, 0x80, 0x1c, 0x13, 0x71, 0xea, 0x78, 0xe9, + 0x41, 0x0e, 0xbd, 0x3a, 0x63, 0xbd, 0x00, 0x05, 0x5d, 0xc0, 0x75, 0xa9, + 0x0e, 0x36, 0xe0, 0x9f, 0xce, 0x80, 0x28, 0xdd, 0xca, 0xd8, 0x55, 0x51, + 0x93, 0x91, 0xd3, 0xbd, 0x5c, 0xfb, 0x4b, 0x80, 0x3f, 0x72, 0xd9, 0x03, + 0xd6, 0xa9, 0xce, 0xa3, 0xed, 0x88, 0x13, 0x18, 0x1c, 0xd4, 0xf2, 0x36, + 0x0f, 0x1d, 0x4f, 0xa5, 0x31, 0x75, 0x24, 0x17, 0xb2, 0x13, 0x9f, 0x2f, + 0x1e, 0xc4, 0xd1, 0xf6, 0xf9, 0x01, 0xc0, 0x8c, 0x1f, 0xc6, 0xab, 0x36, + 0x00, 0x27, 0x71, 0x15, 0x04, 0xd7, 0x49, 0x16, 0x39, 0xcf, 0x1d, 0x45, + 0x34, 0xae, 0x17, 0xb1, 0x7a, 0x4b, 0xd9, 0x7b, 0x46, 0xa0, 0x75, 0xe4, + 0xd2, 0x1d, 0x41, 0xd4, 0x70, 0x8b, 0x54, 0x63, 0xbb, 0x59, 0x17, 0x24, + 0x81, 0x52, 0x6f, 0x88, 0x2e, 0x1b, 0x93, 0xed, 0x43, 0x40, 0x99, 0x3b, + 0xde, 0xca, 0x57, 0x72, 0x94, 0x03, 0x3c, 0xf1, 0xd2, 0xac, 0x92, 0xed, + 0x18, 0xdd, 0x39, 0xc7, 0x5e, 0x05, 0x52, 0x10, 0x87, 0x4c, 0xe0, 0x85, + 0x34, 0xeb, 0x66, 0x6d, 0xe6, 0x26, 0x6e, 0x57, 0xa6, 0x7b, 0x8a, 0x43, + 0x2e, 0x2a, 0xee, 0xe1, 0xdd, 0x8f, 0xe3, 0x4f, 0x0a, 0xab, 0xd0, 0x54, + 0x59, 0x60, 0x3a, 0xf3, 0xfc, 0xa9, 0xe9, 0xbb, 0x07, 0x71, 0x14, 0xc4, + 0x3d, 0x80, 0xdb, 0xcf, 0x06, 0xa3, 0x09, 0x8e, 0x84, 0xfb, 0x53, 0xe4, + 0x52, 0xca, 0x06, 0x71, 0xef, 0x49, 0xe4, 0xa8, 0xc1, 0xdc, 0x78, 0xf7, + 0xa0, 0x09, 0x15, 0x38, 0xf5, 0xa0, 0x64, 0x8f, 0x7a, 0x30, 0x57, 0x9c, + 0xf5, 0xa5, 0x1d, 0x07, 0x14, 0x0c, 0x68, 0xcd, 0x3b, 0x1e, 0xf4, 0xbd, + 0x0e, 0x7b, 0x51, 0xdf, 0x8a, 0x04, 0x26, 0xd0, 0x69, 0x0e, 0x47, 0x4f, + 0xca, 0x94, 0x80, 0x71, 0x48, 0xee, 0xa8, 0xb9, 0x2c, 0x00, 0xa0, 0x62, + 0x72, 0x39, 0xa4, 0x60, 0x17, 0x92, 0x40, 0xf7, 0xa8, 0x8d, 0xc9, 0x7f, + 0xf5, 0x4a, 0x4f, 0xb9, 0xe9, 0x4c, 0x58, 0xdc, 0xb6, 0x65, 0x6d, 0xde, + 0x83, 0xb0, 0xa4, 0x21, 0x5e, 0x56, 0x7e, 0x23, 0xe0, 0x7a, 0xd0, 0x10, + 0x60, 0x91, 0xd7, 0xb9, 0x34, 0xe6, 0x00, 0x91, 0x83, 0xd2, 0x9c, 0xa3, + 0x28, 0x54, 0xfe, 0x34, 0x01, 0x0e, 0x00, 0x6c, 0x13, 0xce, 0x7b, 0x53, + 0xf2, 0x01, 0xc1, 0x14, 0x83, 0x97, 0x03, 0xbf, 0xb5, 0x00, 0x8c, 0xe1, + 0xb8, 0xe7, 0xbd, 0x03, 0x14, 0x9c, 0x1e, 0x94, 0xd7, 0x3d, 0x07, 0x23, + 0x15, 0x23, 0x72, 0x05, 0x26, 0x3a, 0x83, 0xda, 0x80, 0x23, 0xd9, 0xb8, + 0x0c, 0xe2, 0x9e, 0x30, 0x39, 0x34, 0x81, 0x97, 0x3c, 0x52, 0x33, 0xed, + 0x52, 0x5b, 0xb5, 0x02, 0x2b, 0xdd, 0xca, 0x40, 0x11, 0xa1, 0x1b, 0x9b, + 0xf9, 0x53, 0xa1, 0x64, 0x40, 0x14, 0xe4, 0x71, 0xde, 0x95, 0x61, 0x02, + 0x4f, 0x31, 0xf9, 0x63, 0xdb, 0xd2, 0xa5, 0x18, 0x2b, 0x82, 0x28, 0x01, + 0x03, 0x02, 0x7a, 0x8f, 0xc2, 0x91, 0xb3, 0xce, 0x68, 0x28, 0x03, 0xf2, + 0x01, 0x14, 0x84, 0x27, 0x7c, 0x50, 0x31, 0x4a, 0x0c, 0x64, 0x92, 0x0d, + 0x27, 0x39, 0x1d, 0x85, 0x41, 0x2c, 0xb0, 0x46, 0x32, 0x4f, 0xe4, 0x6b, + 0x2a, 0xef, 0x50, 0x85, 0x41, 0x19, 0x39, 0x1d, 0x30, 0x6a, 0x94, 0x5b, + 0x25, 0xc9, 0x1b, 0x13, 0x4a, 0x8a, 0x8c, 0x37, 0x76, 0xa9, 0xe1, 0x72, + 0x60, 0x0e, 0x0e, 0x46, 0x2b, 0x8a, 0x7b, 0xe2, 0xcf, 0xc6, 0xec, 0x7f, + 0xbd, 0x5a, 0x36, 0x9a, 0xb1, 0x54, 0x08, 0x24, 0x38, 0xf4, 0x34, 0xdc, + 0x3b, 0x09, 0x4c, 0xea, 0x44, 0x8a, 0x50, 0x02, 0x47, 0x34, 0xc5, 0x65, + 0x8c, 0x9d, 0xbc, 0x9e, 0xf9, 0x35, 0x9b, 0x15, 0xe4, 0x72, 0x0e, 0x1f, + 0x06, 0xa7, 0xf9, 0x64, 0xe0, 0x48, 0x7f, 0x0a, 0x86, 0x9a, 0x2a, 0xe8, + 0xbc, 0x36, 0x83, 0xb8, 0x9c, 0xfd, 0x6a, 0x45, 0x65, 0x67, 0xc6, 0x09, + 0x66, 0x38, 0x50, 0x07, 0x26, 0xaa, 0x43, 0xa6, 0xdc, 0x4e, 0x42, 0xdb, + 0x96, 0x24, 0x9e, 0x49, 0xe8, 0x2b, 0xa7, 0xb1, 0xd2, 0xe2, 0xb4, 0xda, + 0xef, 0xfb, 0xc9, 0x87, 0xf1, 0x1e, 0xdf, 0x4a, 0x56, 0x1d, 0xc6, 0xd8, + 0x69, 0xab, 0x09, 0x59, 0xa6, 0xc1, 0x97, 0xb0, 0xec, 0x2b, 0x41, 0xe4, + 0x55, 0x52, 0x58, 0x80, 0x07, 0x5a, 0x1c, 0x84, 0x39, 0x6e, 0x05, 0x72, + 0xfa, 0xbe, 0xaf, 0xe7, 0xb1, 0xb7, 0xb7, 0x27, 0x60, 0xfb, 0xcd, 0xeb, + 0x4c, 0x0d, 0x88, 0x75, 0x1b, 0x0d, 0xed, 0xe5, 0xba, 0x29, 0x27, 0x9e, + 0x31, 0x9a, 0xb4, 0xc9, 0x69, 0x74, 0xa4, 0xba, 0xc6, 0xe0, 0xf7, 0x15, + 0xc4, 0x02, 0x31, 0xcf, 0x14, 0xe4, 0x95, 0x81, 0xca, 0x3b, 0x03, 0xf5, + 0xa2, 0xe1, 0xa1, 0xd6, 0x8d, 0x22, 0xcc, 0x7d, 0xd5, 0x2b, 0x9f, 0x7c, + 0xd5, 0x59, 0x34, 0x08, 0x99, 0x89, 0x59, 0x9f, 0x1e, 0x9d, 0xab, 0x1d, + 0x75, 0x2b, 0xb8, 0xc6, 0x04, 0xed, 0x9f, 0x7e, 0x6b, 0x77, 0x49, 0x9e, + 0xe6, 0xea, 0x36, 0x92, 0x76, 0x05, 0x7a, 0x2e, 0x07, 0x5a, 0x2e, 0x16, + 0x45, 0x6f, 0xec, 0x26, 0x41, 0xf2, 0x3a, 0x9f, 0xa8, 0xa8, 0x1b, 0x4e, + 0x9e, 0x3b, 0x98, 0x77, 0x2a, 0xe0, 0xb8, 0xcb, 0x29, 0xae, 0x93, 0x19, + 0x5c, 0xfa, 0x55, 0x6f, 0xbf, 0x77, 0x8e, 0xc8, 0xb9, 0xfc, 0x4d, 0x01, + 0x61, 0xc4, 0x0e, 0x9c, 0xf1, 0x48, 0xc8, 0x18, 0x1e, 0x4f, 0x4a, 0x90, + 0xa8, 0xcd, 0x23, 0x0f, 0x94, 0x8f, 0x6a, 0x00, 0x8c, 0x74, 0x1d, 0xa9, + 0xdb, 0xc1, 0x07, 0x3d, 0x6a, 0x30, 0x41, 0x18, 0xe6, 0x80, 0x9c, 0xe4, + 0x74, 0xa0, 0x09, 0x0f, 0x3f, 0xfd, 0x6a, 0x6e, 0xcc, 0x53, 0xb7, 0x6d, + 0x03, 0x20, 0x53, 0x0b, 0xf3, 0x40, 0x19, 0xda, 0xc5, 0x9b, 0x5c, 0x5b, + 0x79, 0x91, 0xf1, 0x24, 0x5c, 0x8f, 0x71, 0xde, 0xb9, 0xe8, 0xc9, 0x93, + 0x2a, 0x64, 0x3c, 0x57, 0x5e, 0xee, 0x39, 0x04, 0xf5, 0xe2, 0xb9, 0x5d, + 0x42, 0x31, 0x69, 0x70, 0xc9, 0x90, 0x15, 0xb9, 0x53, 0xfd, 0x28, 0xb0, + 0xae, 0x42, 0xa8, 0xbb, 0x4b, 0x16, 0x62, 0x47, 0x62, 0x69, 0xf1, 0x84, + 0x19, 0x25, 0x00, 0x5f, 0xd6, 0xab, 0x35, 0xcc, 0x6a, 0x80, 0x16, 0x42, + 0x29, 0x87, 0x50, 0x88, 0xaf, 0xde, 0x03, 0x1d, 0x85, 0x1c, 0xac, 0x2e, + 0x8b, 0xcf, 0x22, 0x2a, 0x8d, 0xdf, 0x85, 0x37, 0xe6, 0x6c, 0x32, 0xaa, + 0x95, 0xeb, 0x8a, 0xcb, 0x6d, 0x52, 0x10, 0xa4, 0x1e, 0x3e, 0xa6, 0xaa, + 0x9d, 0x6c, 0x23, 0x1d, 0xbc, 0x8e, 0xd5, 0x5c, 0x8c, 0x5c, 0xc8, 0xd9, + 0x67, 0x67, 0x6f, 0xdd, 0x9d, 0xb9, 0xec, 0x68, 0x59, 0xb6, 0x02, 0x65, + 0x90, 0x13, 0x8f, 0x5a, 0xe7, 0x27, 0xd6, 0x24, 0x95, 0xb3, 0x8f, 0xa7, + 0xb5, 0x54, 0x96, 0xf2, 0x69, 0x4f, 0x2d, 0x8a, 0x7c, 0x88, 0x39, 0x8e, + 0x92, 0x6d, 0x4e, 0x28, 0x8d, 0x50, 0x97, 0x59, 0x00, 0x9c, 0x12, 0x7e, + 0x95, 0x88, 0x58, 0xb7, 0x52, 0x4d, 0x25, 0x34, 0x92, 0x25, 0xb6, 0x6b, + 0xc7, 0xe2, 0x2b, 0xbb, 0x76, 0x73, 0x00, 0x55, 0x2c, 0x31, 0x92, 0x32, + 0x6a, 0xe5, 0x8f, 0x8a, 0xee, 0x23, 0x90, 0x1b, 0x8e, 0x7d, 0xc5, 0x73, + 0x74, 0x55, 0x27, 0x61, 0x1e, 0xa9, 0xa6, 0xf8, 0xa2, 0xde, 0x70, 0x17, + 0x70, 0x39, 0xad, 0xd8, 0xae, 0xa3, 0x9b, 0x1b, 0x58, 0x7d, 0x2b, 0xc4, + 0x52, 0x47, 0x8d, 0xb7, 0x23, 0x15, 0x3e, 0xa0, 0xd6, 0xb5, 0x97, 0x88, + 0xaf, 0x2d, 0x48, 0xcb, 0x6f, 0x03, 0xf3, 0xa1, 0xa8, 0xb0, 0x52, 0x68, + 0xf4, 0xcd, 0x62, 0x25, 0x6b, 0x27, 0x63, 0xdb, 0x9a, 0xe5, 0x1a, 0x45, + 0x07, 0xe5, 0x19, 0xa2, 0x2f, 0x19, 0xc5, 0x2d, 0xab, 0xc5, 0x30, 0x39, + 0x2b, 0x8c, 0x11, 0x59, 0xd1, 0x5f, 0x43, 0x20, 0xcf, 0x43, 0xd8, 0x83, + 0x50, 0xe0, 0xcb, 0x52, 0x46, 0x88, 0x1e, 0x6e, 0x1a, 0x52, 0x40, 0x1d, + 0x14, 0x55, 0x82, 0xe3, 0x60, 0x28, 0x17, 0xa7, 0x39, 0xe2, 0xa8, 0xc5, + 0x70, 0x1b, 0xee, 0xb8, 0x3e, 0xcc, 0x2a, 0x41, 0x20, 0xc6, 0x19, 0x3e, + 0xb8, 0x35, 0x16, 0x63, 0xba, 0x2d, 0x1c, 0x08, 0x80, 0xc6, 0xe2, 0x7a, + 0x50, 0xa1, 0x36, 0x95, 0xc7, 0x39, 0xe6, 0xa3, 0x13, 0xa2, 0xa0, 0x2a, + 0x70, 0x7d, 0xea, 0x45, 0x96, 0x32, 0xc3, 0x32, 0x02, 0x69, 0x0c, 0x77, + 0x2e, 0x37, 0x1c, 0x85, 0x03, 0x18, 0xcd, 0x24, 0x4a, 0x9b, 0x49, 0x3c, + 0x63, 0xda, 0x9e, 0xac, 0xa4, 0x12, 0xad, 0x9f, 0xc2, 0xa3, 0xdc, 0xc5, + 0xfe, 0xf2, 0x60, 0xd0, 0x02, 0x29, 0x02, 0x42, 0x59, 0x81, 0xf4, 0x02, + 0x87, 0x26, 0x51, 0x86, 0x52, 0x09, 0xe0, 0x01, 0xd4, 0xd2, 0x92, 0xbb, + 0xcf, 0x0b, 0xf8, 0x55, 0xdd, 0x36, 0xd5, 0x6e, 0x6e, 0x0c, 0x8c, 0xa7, + 0xcb, 0x8f, 0xa6, 0x3d, 0x69, 0x81, 0xaf, 0x6b, 0x00, 0xb7, 0xb4, 0x48, + 0x47, 0x18, 0x1c, 0xd4, 0xc3, 0x1d, 0x08, 0xa6, 0x98, 0xbd, 0x24, 0x61, + 0x4c, 0x58, 0xa4, 0xdd, 0xfe, 0xb8, 0xe3, 0xdc, 0x50, 0x03, 0xc8, 0x39, + 0xe0, 0x71, 0x4e, 0x0b, 0xc6, 0x71, 0x48, 0x06, 0x33, 0xf3, 0xf1, 0xf4, + 0xa5, 0xc3, 0x11, 0x8d, 0xc0, 0xfe, 0x14, 0x00, 0x00, 0x4e, 0x71, 0xd2, + 0x9a, 0x00, 0xea, 0x33, 0x9a, 0x42, 0x1b, 0x3c, 0x3e, 0x3f, 0x0a, 0x45, + 0x89, 0xc7, 0xfc, 0xb5, 0xfd, 0x28, 0x01, 0xeb, 0x82, 0x71, 0xd2, 0xb2, + 0xb5, 0xcb, 0x3e, 0x12, 0xe9, 0x00, 0x3b, 0x78, 0x6f, 0x7a, 0xd3, 0x10, + 0xb0, 0x24, 0x99, 0x18, 0xe7, 0xe9, 0x49, 0x3d, 0xb2, 0xcf, 0x0b, 0x23, + 0x3b, 0x61, 0x86, 0x31, 0x40, 0x1c, 0xa3, 0x4a, 0x06, 0x37, 0x03, 0xc7, + 0xa5, 0x38, 0x28, 0x31, 0x92, 0x4f, 0x39, 0xc8, 0xe6, 0x86, 0xb7, 0x68, + 0x26, 0x78, 0xa4, 0x19, 0x74, 0x3c, 0x73, 0xd7, 0xde, 0x91, 0x5c, 0x97, + 0xe5, 0x46, 0x3a, 0x66, 0x80, 0x1e, 0xa1, 0x06, 0x09, 0x14, 0xef, 0x35, + 0x49, 0xda, 0x4e, 0x3e, 0xa2, 0x90, 0xb0, 0x1d, 0xcf, 0xb6, 0x7b, 0xd3, + 0x70, 0x5a, 0x4f, 0x98, 0x29, 0x03, 0xd6, 0x80, 0x1f, 0x27, 0x6e, 0xb8, + 0xa8, 0xcb, 0x6e, 0x71, 0xb4, 0x13, 0x8e, 0xc2, 0x9c, 0xce, 0x17, 0x18, + 0x6e, 0x3b, 0x0c, 0x53, 0xbe, 0xf8, 0x20, 0x1d, 0xac, 0x68, 0x01, 0x9c, + 0x06, 0x3f, 0x31, 0x5c, 0xf5, 0x06, 0xab, 0x12, 0xf1, 0x92, 0xd1, 0x72, + 0x07, 0x50, 0x6a, 0x65, 0x0b, 0xe6, 0x15, 0x27, 0x2c, 0x3b, 0x9e, 0xf4, + 0xc9, 0x67, 0x02, 0x41, 0x92, 0xab, 0x8e, 0xb4, 0x08, 0x22, 0xb8, 0x32, + 0x0c, 0x2a, 0xe0, 0x8e, 0xb9, 0x34, 0xbb, 0x4b, 0x3f, 0x2d, 0x9a, 0x86, + 0x79, 0xad, 0x71, 0xf3, 0x38, 0x0d, 0xed, 0x59, 0xb2, 0x6b, 0x5e, 0x51, + 0x28, 0xae, 0x0a, 0xfe, 0xb5, 0x4a, 0x0d, 0x8b, 0x98, 0xdc, 0x66, 0x48, + 0xc7, 0x51, 0x8f, 0xa5, 0x52, 0x97, 0x51, 0x48, 0xb2, 0xca, 0x40, 0xae, + 0x7e, 0xe3, 0x56, 0x96, 0x43, 0xf2, 0x67, 0x1e, 0xf5, 0x41, 0xe5, 0x77, + 0xfb, 0xcc, 0x4d, 0x52, 0x8a, 0x5b, 0x92, 0xe4, 0xfa, 0x1d, 0x4c, 0x3a, + 0xa1, 0x94, 0xfc, 0xcc, 0x31, 0xea, 0x0d, 0x69, 0x47, 0x3c, 0x73, 0x28, + 0xda, 0x73, 0x83, 0xd6, 0xb8, 0x35, 0x76, 0x43, 0x95, 0x62, 0x2a, 0xe4, + 0x3a, 0x9c, 0xd1, 0xf0, 0xc7, 0x23, 0xda, 0x9b, 0x8a, 0x60, 0xa4, 0xce, + 0xd7, 0x76, 0x72, 0x14, 0xe0, 0x67, 0x3c, 0x52, 0x31, 0xe4, 0x70, 0x73, + 0x9e, 0x79, 0xae, 0x7a, 0xdf, 0x5a, 0x19, 0x03, 0x76, 0x3e, 0xb5, 0xa9, + 0x6d, 0xa8, 0x44, 0xff, 0x00, 0x7f, 0xad, 0x43, 0x83, 0x29, 0x49, 0x1a, + 0x24, 0xa8, 0x71, 0xf3, 0x63, 0x8a, 0x76, 0xe5, 0x58, 0xb7, 0xb9, 0xc7, + 0xf5, 0xaa, 0xc6, 0xf6, 0x20, 0x47, 0x97, 0xf3, 0xb9, 0xfd, 0x29, 0xbb, + 0x59, 0x98, 0xb4, 0x9f, 0x31, 0x3d, 0x00, 0xed, 0x52, 0x31, 0x5f, 0xcc, + 0xb9, 0x6e, 0x4e, 0xc8, 0x87, 0x6f, 0x5a, 0x45, 0x60, 0x13, 0x6f, 0xeb, + 0x4f, 0x0d, 0xb4, 0x67, 0x1f, 0xad, 0x31, 0x18, 0x05, 0xce, 0x41, 0xc5, + 0x03, 0x1c, 0x17, 0xae, 0x4f, 0x1d, 0x69, 0xa1, 0x31, 0xbc, 0x29, 0xe9, + 0xc8, 0xa7, 0x72, 0x41, 0x23, 0xa9, 0xfe, 0x13, 0x4a, 0xaa, 0x43, 0x64, + 0x36, 0x38, 0xe7, 0x14, 0x00, 0x2e, 0xdf, 0x2f, 0x20, 0xf3, 0xdc, 0x7b, + 0xd2, 0x12, 0xc5, 0xf0, 0xdc, 0x0f, 0xaf, 0x5a, 0x64, 0x52, 0x60, 0xb3, + 0x1c, 0x6d, 0xc7, 0x4a, 0x9e, 0xce, 0x2f, 0xb6, 0xdd, 0x22, 0x81, 0xc0, + 0xe5, 0xcf, 0xb5, 0x00, 0x6c, 0x69, 0x56, 0xc2, 0x0b, 0x3d, 0xc0, 0x60, + 0xb9, 0xcf, 0x35, 0x74, 0xf6, 0xa4, 0xdc, 0x46, 0x00, 0xe0, 0x7a, 0x50, + 0x0f, 0x20, 0x1e, 0xb4, 0xc4, 0x2e, 0x29, 0xa4, 0x65, 0xa9, 0xe4, 0x1c, + 0x1a, 0x8c, 0xe7, 0x3c, 0xf6, 0xa0, 0x62, 0x63, 0xb5, 0x18, 0x14, 0xe1, + 0xf4, 0xa4, 0x91, 0x5c, 0xa7, 0xee, 0xc8, 0x0d, 0xee, 0x28, 0x00, 0x00, + 0xe2, 0xa8, 0xea, 0x70, 0x83, 0x6b, 0xbf, 0xa9, 0x43, 0x9a, 0xd0, 0x5d, + 0xdb, 0x40, 0x6c, 0x67, 0xb9, 0x14, 0xd9, 0x11, 0x59, 0x4a, 0xb7, 0x20, + 0xd0, 0x23, 0x9a, 0x7b, 0x88, 0xe2, 0x8f, 0x25, 0x97, 0x1d, 0xaa, 0x31, + 0x14, 0x97, 0x27, 0x7c, 0xa0, 0x88, 0xc7, 0x45, 0xee, 0x6a, 0x79, 0x74, + 0xd8, 0x44, 0xec, 0x85, 0x33, 0xb7, 0x91, 0xcd, 0x39, 0x61, 0x98, 0x2e, + 0x62, 0x94, 0xfa, 0x61, 0x86, 0x69, 0x58, 0x2e, 0x30, 0x61, 0x14, 0xa8, + 0x52, 0x07, 0x6a, 0x63, 0x03, 0x93, 0x20, 0x27, 0x1e, 0x99, 0xa9, 0x0f, + 0x9e, 0x09, 0x0d, 0x1a, 0x9f, 0x70, 0x68, 0xdc, 0x71, 0xfb, 0xc8, 0x9b, + 0xf9, 0xd0, 0x04, 0x79, 0xdc, 0x0b, 0x1e, 0x0f, 0xa9, 0xa4, 0xe8, 0x9c, + 0x67, 0x75, 0x39, 0xa4, 0x8b, 0x6f, 0x5c, 0x1f, 0xa6, 0x28, 0x0e, 0xbb, + 0x07, 0xcc, 0x33, 0x9e, 0xc6, 0x81, 0x8d, 0x6d, 0xce, 0xc1, 0xbe, 0xea, + 0xe3, 0xf3, 0xa0, 0xb3, 0x00, 0x00, 0x3c, 0x75, 0xe2, 0xa5, 0x01, 0x55, + 0x4f, 0xcc, 0xaf, 0xec, 0x7b, 0x54, 0x2f, 0x22, 0xaa, 0xed, 0x2a, 0x01, + 0xce, 0x41, 0x06, 0x80, 0x1c, 0x92, 0xb9, 0x63, 0xbd, 0x76, 0xfa, 0x54, + 0x9b, 0x80, 0xe5, 0x88, 0xe9, 0xf8, 0x1a, 0xad, 0x35, 0xc4, 0x4a, 0xbb, + 0xb7, 0x02, 0x71, 0xd3, 0x35, 0x9b, 0x79, 0xab, 0xc6, 0xb1, 0x6c, 0x52, + 0x37, 0x55, 0x72, 0xb2, 0x79, 0x91, 0x71, 0x5d, 0x5a, 0x67, 0x7e, 0x00, + 0x1c, 0x54, 0x73, 0xde, 0x22, 0x10, 0x43, 0x72, 0x3d, 0xeb, 0x9e, 0x6d, + 0x49, 0xf6, 0xe1, 0x3f, 0x5a, 0xa9, 0x24, 0xd2, 0x4a, 0x7e, 0x66, 0x35, + 0x4a, 0x2b, 0xa9, 0x2e, 0x4c, 0xd7, 0xbb, 0xd6, 0x01, 0xca, 0xa9, 0x2d, + 0x59, 0x52, 0xdc, 0xc9, 0x29, 0xe5, 0xb0, 0x3d, 0x05, 0x43, 0x45, 0x50, + 0x8b, 0x11, 0xdd, 0xcb, 0x1f, 0xf1, 0x64, 0x7a, 0x1a, 0xbb, 0x0e, 0xaa, + 0x43, 0x02, 0xc3, 0x06, 0xb2, 0xa9, 0x68, 0xb8, 0x1d, 0x3c, 0x5a, 0xb2, + 0x1e, 0x32, 0x08, 0xfa, 0xd4, 0xad, 0x74, 0xb2, 0x3a, 0xb2, 0x9e, 0x56, + 0xb9, 0x3e, 0x95, 0x2a, 0x5c, 0xcd, 0x18, 0xc0, 0x73, 0x8a, 0x56, 0x8b, + 0x1d, 0xd9, 0xdd, 0x41, 0x34, 0x73, 0xa0, 0x65, 0x6f, 0x62, 0x2a, 0xca, + 0x8c, 0x1e, 0xa3, 0x15, 0xc1, 0xc3, 0xa9, 0x4b, 0x0b, 0xee, 0x04, 0xfb, + 0x80, 0x6b, 0x52, 0x1f, 0x10, 0xe3, 0x86, 0xc8, 0xfa, 0xd2, 0xe4, 0x1f, + 0x31, 0xd5, 0x91, 0x91, 0x8a, 0x36, 0xae, 0x73, 0x58, 0x70, 0xf8, 0x82, + 0x1c, 0x72, 0xc2, 0xac, 0x7f, 0x6e, 0xda, 0x91, 0xd4, 0xfe, 0x02, 0x93, + 0x83, 0x43, 0x52, 0x46, 0xa1, 0x3b, 0x97, 0x20, 0xd0, 0x78, 0x1c, 0xf5, + 0xac, 0xaf, 0xed, 0x98, 0xcf, 0x11, 0x21, 0x3e, 0x99, 0xe2, 0x90, 0xdd, + 0xcf, 0x37, 0xf1, 0xaa, 0xfb, 0xd4, 0xd9, 0x8e, 0xe8, 0xd4, 0x2e, 0x14, + 0xf2, 0xc3, 0x1e, 0xf5, 0x09, 0xba, 0x42, 0x70, 0xb9, 0x76, 0xf4, 0x51, + 0x9a, 0xac, 0x90, 0xc5, 0x21, 0xdd, 0x2c, 0xc5, 0xcf, 0xa1, 0x35, 0x6d, + 0x1d, 0x20, 0x4c, 0x46, 0x05, 0x20, 0x1a, 0x63, 0xbb, 0x61, 0xc6, 0x23, + 0x53, 0xfd, 0xee, 0x4d, 0x57, 0x92, 0xcb, 0xe6, 0x0c, 0xf7, 0x2c, 0x64, + 0xf7, 0x1c, 0x55, 0xa3, 0x71, 0x81, 0xd7, 0x34, 0xc2, 0xa2, 0x70, 0x7e, + 0x6c, 0x1a, 0x43, 0x21, 0xf9, 0xa0, 0x19, 0x90, 0x71, 0xd9, 0x87, 0x4a, + 0x97, 0xcd, 0x57, 0x4e, 0xa0, 0x8c, 0x53, 0x1e, 0xdd, 0x90, 0x11, 0xe6, + 0x71, 0x44, 0x56, 0xb1, 0x91, 0x92, 0x4a, 0x9f, 0x55, 0xa6, 0x22, 0x41, + 0xd0, 0x1c, 0xe6, 0x9e, 0x00, 0xdc, 0x4f, 0xb5, 0x42, 0xf1, 0x4d, 0x18, + 0x25, 0x18, 0x38, 0xf4, 0x6e, 0x0d, 0x56, 0x6b, 0xd6, 0x88, 0xe2, 0x48, + 0xd9, 0x47, 0xb7, 0x22, 0x98, 0x17, 0xba, 0x0e, 0x29, 0x1d, 0x4e, 0x07, + 0x23, 0x3d, 0x6a, 0xbc, 0x77, 0x91, 0x3a, 0x7d, 0xf0, 0x73, 0xd2, 0x9c, + 0x67, 0x8c, 0x1f, 0xbe, 0x32, 0x3d, 0xe8, 0xb0, 0xae, 0x4d, 0x93, 0xc8, + 0xf4, 0xea, 0x69, 0x24, 0x18, 0x5e, 0xb5, 0x51, 0xef, 0xa3, 0x50, 0x48, + 0x7c, 0x9f, 0x4a, 0x89, 0xb5, 0x48, 0x90, 0x86, 0x62, 0x08, 0xa7, 0xca, + 0xc2, 0xe8, 0xd0, 0xf9, 0x42, 0xee, 0x3c, 0x00, 0x3a, 0xd4, 0x04, 0x19, + 0xa4, 0x12, 0x11, 0x88, 0xc7, 0x41, 0xeb, 0x59, 0x77, 0x1a, 0xda, 0x33, + 0x75, 0x01, 0x47, 0xf0, 0xd5, 0x49, 0x75, 0xd2, 0x78, 0x5c, 0xfe, 0x14, + 0xf9, 0x18, 0xb9, 0x91, 0xd0, 0x33, 0x85, 0x19, 0x3d, 0x6a, 0x39, 0x2e, + 0xa2, 0x41, 0xd4, 0x7e, 0x75, 0xcb, 0x49, 0xab, 0x4c, 0xfd, 0x3f, 0x9d, + 0x55, 0x7b, 0xa9, 0xa4, 0xea, 0xe7, 0xf0, 0xa7, 0xc8, 0xba, 0x8b, 0x99, + 0x9d, 0x34, 0xfa, 0xb4, 0x2a, 0x33, 0xc6, 0x6b, 0x32, 0xe3, 0x5a, 0x2c, + 0x70, 0x99, 0xac, 0x72, 0x49, 0xeb, 0x49, 0x4f, 0x45, 0xb0, 0xb5, 0x2c, + 0x4b, 0x79, 0x34, 0xb9, 0xcb, 0x10, 0x3d, 0xaa, 0x03, 0xcf, 0x5a, 0x4a, + 0x28, 0xb8, 0x05, 0x2d, 0x25, 0x2d, 0x00, 0x49, 0x1d, 0xc4, 0x91, 0xf4, + 0x6a, 0xbd, 0x06, 0xaa, 0xc8, 0xc3, 0x76, 0x71, 0xdf, 0x15, 0x9b, 0x49, + 0x4e, 0xe0, 0x7a, 0x2e, 0x97, 0xe2, 0xdb, 0x24, 0x8d, 0x62, 0x29, 0xb0, + 0x0e, 0xf5, 0xd1, 0x5b, 0x6a, 0xd6, 0x97, 0x00, 0x14, 0x95, 0x4f, 0xe3, + 0x5e, 0x33, 0x52, 0xc7, 0x73, 0x34, 0x47, 0xe4, 0x91, 0x87, 0xe3, 0x4a, + 0xc9, 0x8e, 0xe7, 0xb3, 0x4e, 0xb1, 0xdd, 0xc4, 0x51, 0x9c, 0xed, 0x3f, + 0xdd, 0x35, 0x8d, 0x2f, 0x87, 0xf0, 0xf9, 0x82, 0x51, 0x8f, 0x46, 0xae, + 0x0e, 0xdf, 0xc4, 0x77, 0xf6, 0xf8, 0xc4, 0xa4, 0x81, 0xea, 0x6b, 0x62, + 0xdb, 0xc6, 0xd3, 0xa6, 0x04, 0xa9, 0x91, 0x4b, 0x91, 0x0e, 0xe6, 0xdc, + 0x9a, 0x25, 0xe0, 0x24, 0x85, 0x56, 0xfa, 0x1a, 0xad, 0x25, 0x85, 0xd4, + 0x64, 0x6e, 0x85, 0xc7, 0xd0, 0x66, 0xa5, 0xb6, 0xf1, 0xad, 0xab, 0xe0, + 0x48, 0x0a, 0xd6, 0x9c, 0x1e, 0x26, 0xd3, 0xe6, 0xff, 0x00, 0x96, 0xa0, + 0x7d, 0x69, 0x72, 0x31, 0xdc, 0xc3, 0x82, 0xce, 0x59, 0xee, 0x56, 0x05, + 0x43, 0x92, 0x79, 0x24, 0x74, 0x15, 0xd9, 0x5b, 0xdb, 0xad, 0xac, 0x0b, + 0x1a, 0x74, 0x51, 0x8a, 0xab, 0x1e, 0xa7, 0x66, 0xff, 0x00, 0x32, 0x48, + 0x84, 0xfb, 0x1a, 0xb0, 0xb7, 0x51, 0xb9, 0xe1, 0xd7, 0x1f, 0x5a, 0x9e, + 0x56, 0x34, 0xc9, 0x3c, 0xc5, 0x20, 0xe1, 0x81, 0xf5, 0xc1, 0xa8, 0x61, + 0x07, 0x6b, 0x38, 0xc1, 0x2e, 0x73, 0x50, 0x5c, 0xc9, 0x02, 0x2e, 0xc8, + 0x80, 0x0f, 0x29, 0xc7, 0x15, 0x3c, 0x2a, 0x8b, 0x12, 0xaa, 0x37, 0x18, + 0xf5, 0xa0, 0x77, 0x1c, 0x77, 0x53, 0x19, 0xce, 0x0e, 0x6a, 0x4d, 0xdc, + 0x72, 0xd5, 0x1b, 0x10, 0x54, 0xf3, 0xcd, 0x20, 0x38, 0x01, 0xe3, 0x39, + 0xf1, 0x8d, 0xa7, 0xeb, 0x41, 0xf1, 0xa4, 0xf8, 0xc0, 0x53, 0x5c, 0xa5, + 0x15, 0xbd, 0xfc, 0x8c, 0x8e, 0xa1, 0xbc, 0x63, 0x70, 0x7a, 0x29, 0xfc, + 0xea, 0x17, 0xf1, 0x6d, 0xdb, 0x36, 0x42, 0xe3, 0xfe, 0x05, 0x5c, 0xed, + 0x14, 0x73, 0x08, 0xdd, 0x7f, 0x14, 0xdf, 0x37, 0x42, 0x07, 0xe3, 0x54, + 0xae, 0x75, 0x8b, 0xab, 0xa5, 0xdb, 0x23, 0x0c, 0x03, 0x9a, 0xa1, 0x49, + 0x4b, 0x99, 0x85, 0x89, 0x1a, 0x69, 0x1b, 0xab, 0x1a, 0x69, 0x76, 0x3f, + 0xc4, 0x7f, 0x3a, 0x4a, 0x4a, 0x57, 0x18, 0xb4, 0x51, 0x45, 0x00, 0x14, + 0x52, 0x51, 0x40, 0x0b, 0x45, 0x14, 0x94, 0x00, 0x52, 0xd2, 0x51, 0x40, + 0x0b, 0x49, 0x45, 0x14, 0x00, 0x53, 0x83, 0x32, 0x9f, 0x94, 0x91, 0xf4, + 0xa6, 0xd1, 0x40, 0x16, 0x23, 0xbc, 0x9a, 0x32, 0x3e, 0x6c, 0xd5, 0xb8, + 0xf5, 0x79, 0x01, 0xf9, 0xb3, 0x8f, 0x6a, 0xcc, 0xa5, 0xa7, 0x70, 0x37, + 0x57, 0x59, 0x04, 0x00, 0x4f, 0xe7, 0x56, 0xa2, 0xd4, 0xa1, 0x23, 0x9d, + 0xa4, 0xd7, 0x2f, 0x4b, 0x4a, 0xc8, 0x2e, 0xce, 0xb9, 0x2f, 0x62, 0x07, + 0x89, 0x08, 0x1e, 0x82, 0xa6, 0x5b, 0xa4, 0x20, 0x14, 0x91, 0x4b, 0x7b, + 0xd7, 0x1a, 0x25, 0x75, 0xe8, 0xc7, 0xf3, 0xa9, 0x16, 0xea, 0x65, 0xe8, + 0xd4, 0xb9, 0x50, 0xf9, 0x99, 0xd9, 0x06, 0x76, 0x91, 0x76, 0xb2, 0x96, + 0x6e, 0x00, 0x15, 0xd5, 0xd9, 0x44, 0x96, 0xb6, 0xc9, 0x1e, 0x72, 0xdd, + 0x58, 0xfa, 0x9a, 0xf2, 0xab, 0x6d, 0x56, 0x7b, 0x79, 0xc4, 0xa3, 0x0c, + 0x47, 0x4c, 0xd6, 0xa2, 0xf8, 0xb6, 0xe8, 0x75, 0x4f, 0xc8, 0xd0, 0xa0, + 0xbb, 0x8f, 0x99, 0x9e, 0x97, 0xbd, 0x08, 0xe3, 0x14, 0xcc, 0xd7, 0x9f, + 0x27, 0x8c, 0xa6, 0x5e, 0xa8, 0x6a, 0x65, 0xf1, 0xa3, 0x63, 0x05, 0x1a, + 0x8f, 0x67, 0xe6, 0x1c, 0xe7, 0x78, 0x31, 0xd8, 0x52, 0x83, 0xd7, 0x03, + 0x35, 0xc3, 0xaf, 0x8d, 0x54, 0x75, 0x43, 0xf9, 0x54, 0xcb, 0xe3, 0x78, + 0xbf, 0xba, 0x47, 0xe1, 0x47, 0xb3, 0x61, 0xce, 0x76, 0x4a, 0xa7, 0xae, + 0x39, 0xa5, 0x39, 0x1d, 0x46, 0x2b, 0x8d, 0x3e, 0x38, 0x8f, 0xd1, 0xbf, + 0x01, 0x4d, 0x3e, 0x38, 0x53, 0xd8, 0xfe, 0x54, 0x7b, 0x36, 0x1c, 0xe8, + 0xec, 0xcf, 0x1e, 0xa6, 0x9a, 0x1c, 0x67, 0x69, 0xe6, 0xb8, 0x97, 0xf1, + 0xbf, 0x1f, 0x2a, 0x35, 0x57, 0x6f, 0x19, 0xb9, 0xfb, 0xa8, 0xd9, 0xa3, + 0xd9, 0xf9, 0x87, 0x39, 0xd7, 0x6b, 0x16, 0xa5, 0xd5, 0x6e, 0xa3, 0x5f, + 0x9d, 0x06, 0x1b, 0xdc, 0x56, 0x16, 0xf1, 0xe5, 0x16, 0xed, 0xeb, 0x59, + 0x12, 0x78, 0xc6, 0xe5, 0xd7, 0x68, 0x4e, 0x3d, 0xcd, 0x63, 0xbe, 0xa9, + 0x3b, 0x3b, 0x14, 0x25, 0x41, 0xed, 0x9a, 0x39, 0x3c, 0xc5, 0xcc, 0x75, + 0xad, 0x24, 0x40, 0x72, 0x41, 0x6e, 0xdc, 0xd3, 0x5a, 0xf6, 0x10, 0xa4, + 0x02, 0xa0, 0xf7, 0x35, 0xc7, 0x35, 0xec, 0xed, 0xd5, 0xea, 0x33, 0x71, + 0x29, 0xfe, 0x33, 0x47, 0x2a, 0x0e, 0x66, 0x75, 0x8f, 0xa9, 0xa0, 0xe0, + 0x38, 0x3b, 0x7a, 0x55, 0x69, 0xb5, 0xa8, 0xc1, 0x38, 0x6a, 0xe6, 0x4b, + 0x13, 0xd4, 0x93, 0x4d, 0xa7, 0x68, 0x8a, 0xec, 0xdb, 0x93, 0x5d, 0xe0, + 0x84, 0x52, 0x0f, 0xad, 0x51, 0x97, 0x52, 0x9a, 0x4f, 0xfe, 0xbd, 0x53, + 0xa4, 0xa7, 0x70, 0x24, 0x79, 0xa4, 0x7f, 0xbc, 0xe6, 0x99, 0x45, 0x14, + 0x80, 0x28, 0xa4, 0xa5, 0xa0, 0x04, 0xa2, 0x96, 0x92, 0x80, 0x16, 0x9c, + 0xb2, 0xc8, 0x9f, 0x75, 0xc8, 0xfc, 0x69, 0xb4, 0x94, 0x01, 0x6a, 0x2b, + 0xe9, 0xa3, 0xef, 0x9a, 0xbd, 0x0e, 0xb6, 0xeb, 0x8d, 0xdb, 0xab, 0x22, + 0x92, 0x80, 0x3a, 0x68, 0xb5, 0xb4, 0x6f, 0xbc, 0xc0, 0x9f, 0x7e, 0x2a, + 0xda, 0x6a, 0x96, 0xef, 0x82, 0x48, 0xcf, 0xa5, 0x71, 0xf4, 0x02, 0x47, + 0x43, 0x45, 0x90, 0xee, 0xce, 0xe2, 0x2b, 0x9b, 0x77, 0xf9, 0x99, 0xbf, + 0x0a, 0x7b, 0x3a, 0x60, 0x08, 0xd8, 0x73, 0xef, 0x5c, 0x42, 0xcf, 0x2a, + 0xf4, 0x73, 0x52, 0xad, 0xfd, 0xc2, 0xff, 0x00, 0x1e, 0x69, 0x72, 0xa1, + 0xf3, 0x33, 0xb3, 0x64, 0x44, 0x88, 0x81, 0xb4, 0x12, 0x71, 0xc1, 0xce, + 0x6b, 0x73, 0x4c, 0xb3, 0x4b, 0x3b, 0x7c, 0x93, 0xfb, 0xc7, 0xe4, 0xd7, + 0x9b, 0xc1, 0xab, 0x4b, 0x14, 0xaa, 0xec, 0x37, 0x6d, 0xe4, 0x0c, 0xd6, + 0x9a, 0x78, 0xb2, 0x70, 0x72, 0x50, 0xfe, 0x74, 0x72, 0x2e, 0xe2, 0xe6, + 0x3d, 0x10, 0x9c, 0x0e, 0xa2, 0x98, 0x0e, 0x5f, 0x8e, 0xb5, 0xc3, 0x2f, + 0x8c, 0x5b, 0x1c, 0xa3, 0x54, 0xd1, 0xf8, 0xc5, 0x47, 0x62, 0x3f, 0x0a, + 0x39, 0x3c, 0xc7, 0xce, 0x77, 0x03, 0x20, 0xe7, 0x8a, 0x18, 0x8c, 0x73, + 0x5c, 0x60, 0xf1, 0x8c, 0x79, 0xea, 0x7f, 0x2a, 0x70, 0xf1, 0x84, 0x1d, + 0xc9, 0x27, 0xe8, 0x68, 0xf6, 0x6c, 0x39, 0xd1, 0xd8, 0x0c, 0x32, 0xf0, + 0x69, 0x32, 0x73, 0xcd, 0x72, 0x03, 0xc6, 0x10, 0x73, 0xf3, 0x1f, 0xca, + 0x9b, 0xff, 0x00, 0x09, 0x8c, 0x59, 0xea, 0x7f, 0x2a, 0x3d, 0x9b, 0x0e, + 0x74, 0x75, 0xe4, 0xe2, 0x94, 0x11, 0xe9, 0x5c, 0x6b, 0x78, 0xca, 0x3f, + 0x43, 0xf9, 0x54, 0x4d, 0xe3, 0x2f, 0x45, 0x6a, 0x3d, 0x9b, 0x0e, 0x73, + 0xa8, 0xd4, 0x91, 0x54, 0x09, 0xc7, 0xf0, 0xf0, 0x40, 0xf4, 0xaa, 0x0d, + 0x32, 0x8c, 0x1d, 0xd8, 0xcf, 0xa1, 0xae, 0x72, 0x4f, 0x16, 0x3b, 0x82, + 0x3c, 0xb2, 0x41, 0xf5, 0xac, 0xc6, 0xd6, 0x66, 0xdc, 0xdb, 0x00, 0x00, + 0xf6, 0xa7, 0xc9, 0xe6, 0x2e, 0x63, 0xb8, 0x59, 0x93, 0x3f, 0x31, 0x18, + 0xa6, 0x49, 0x73, 0x06, 0x30, 0x5b, 0xf5, 0xae, 0x15, 0xb5, 0x6b, 0xa2, + 0x30, 0x18, 0x0a, 0x85, 0xaf, 0x6e, 0x1f, 0xac, 0x86, 0x8e, 0x54, 0x1c, + 0xcc, 0xed, 0xe4, 0xbe, 0xb5, 0x8c, 0x8e, 0x56, 0xa9, 0xcf, 0xad, 0xdb, + 0x2e, 0x7e, 0xe8, 0x22, 0xb8, 0xf3, 0x23, 0xb7, 0x57, 0x63, 0xf5, 0x34, + 0xda, 0x2d, 0x11, 0x5d, 0x9b, 0xf7, 0x3a, 0xe4, 0x4e, 0xc7, 0x6a, 0x7e, + 0x42, 0xb3, 0x65, 0xd4, 0xa4, 0x93, 0x21, 0x46, 0x2a, 0x8d, 0x14, 0xee, + 0x04, 0xad, 0x71, 0x2b, 0x0c, 0x19, 0x1b, 0x1f, 0x5a, 0x8f, 0xad, 0x14, + 0x52, 0x00, 0xa4, 0xa2, 0x96, 0x80, 0x0a, 0x28, 0xa2, 0x80, 0x0a, 0x4a, + 0x5a, 0x28, 0x01, 0x29, 0x68, 0xa4, 0xa0, 0x02, 0x96, 0x92, 0x96, 0x80, + 0x12, 0x94, 0x31, 0x1d, 0x09, 0x14, 0x52, 0x50, 0x04, 0xab, 0x3c, 0xab, + 0xd1, 0xcd, 0x48, 0xb7, 0xd3, 0xaf, 0xf1, 0xe6, 0xab, 0x52, 0xd3, 0xbb, + 0x02, 0xd8, 0xd4, 0xa7, 0x1d, 0xc5, 0x48, 0xba, 0xb4, 0xea, 0x7f, 0xfa, + 0xf5, 0x9f, 0x4b, 0x45, 0xc0, 0xd2, 0xfe, 0xd9, 0x9f, 0xfc, 0x9a, 0x78, + 0xd7, 0x26, 0x1d, 0x8f, 0xe7, 0x59, 0x54, 0x51, 0x70, 0x36, 0x3f, 0xe1, + 0x20, 0x9f, 0x18, 0xc1, 0xc7, 0xd6, 0x81, 0xaf, 0xcc, 0xbf, 0x75, 0x4f, + 0xe7, 0x58, 0xd4, 0xb4, 0x5c, 0x0d, 0x56, 0xd7, 0xae, 0x18, 0x63, 0xfa, + 0xd4, 0x2d, 0xab, 0xce, 0xdf, 0xfe, 0xba, 0xa1, 0x45, 0x17, 0x02, 0xcb, + 0x5f, 0x4a, 0xdd, 0x42, 0xd4, 0x66, 0xea, 0x63, 0xfc, 0x64, 0x7e, 0x35, + 0x0d, 0x14, 0x5c, 0x36, 0x24, 0x33, 0xca, 0x7f, 0x8d, 0xbf, 0x3a, 0x61, + 0x66, 0x3d, 0x49, 0x34, 0x94, 0x51, 0x76, 0x02, 0xd2, 0x52, 0xd1, 0x48, + 0x04, 0xa5, 0xa2, 0x92, 0x80, 0x0a, 0x28, 0xa2, 0x80, 0x16, 0x8a, 0x28, + 0xa0, 0x04, 0xa2, 0x96, 0x92, 0x80, 0x16, 0x92, 0x8a, 0x5a, 0x00, 0x4a, + 0x5a, 0x4a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa5, 0x0c, 0x47, 0x42, + 0x45, 0x14, 0x50, 0x04, 0x8b, 0x71, 0x32, 0x7d, 0xd9, 0x18, 0x7e, 0x35, + 0x3a, 0x6a, 0x97, 0x89, 0xd2, 0x77, 0xfc, 0xea, 0xa5, 0x14, 0xee, 0xc0, + 0xd3, 0x83, 0x5e, 0xbd, 0x85, 0xf7, 0x99, 0x0b, 0x91, 0xc0, 0xdc, 0x7a, + 0x55, 0xd4, 0xf1, 0x6d, 0xea, 0xf5, 0x19, 0xfc, 0x6b, 0x9f, 0xa2, 0x8e, + 0x66, 0x07, 0x4a, 0x3c, 0x61, 0x74, 0x06, 0x0a, 0x7e, 0xb4, 0xe1, 0xe3, + 0x09, 0xf1, 0x8d, 0x87, 0xeb, 0x9a, 0xe6, 0x29, 0x29, 0xf3, 0x08, 0x5a, + 0x28, 0xa2, 0xa4, 0x62, 0x51, 0x45, 0x2d, 0x00, 0x25, 0x2d, 0x25, 0x14, + 0x00, 0x51, 0x45, 0x14, 0x00, 0xb4, 0x94, 0x52, 0xd0, 0x01, 0x49, 0x4b, + 0x49, 0x40, 0x05, 0x14, 0xb4, 0x94, 0x00, 0x51, 0x45, 0x14, 0x00, 0xb4, + 0x94, 0x52, 0xd0, 0x01, 0x45, 0x25, 0x14, 0x00, 0x52, 0xd1, 0x45, 0x00, + 0x14, 0x94, 0xb4, 0x94, 0x00, 0x51, 0x45, 0x2d, 0x00, 0x14, 0x94, 0xb4, + 0x94, 0x00, 0xb4, 0x51, 0x45, 0x00, 0x25, 0x14, 0x52, 0xd0, 0x01, 0x49, + 0x4b, 0x45, 0x00, 0x25, 0x14, 0x51, 0x40, 0x0b, 0x45, 0x14, 0x50, 0x02, + 0x51, 0x4b, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x50, 0x02, 0x51, 0x4b, 0x45, + 0x00, 0x14, 0x94, 0x52, 0xd0, 0x01, 0x45, 0x25, 0x2d, 0x00, 0x14, 0x94, + 0xb4, 0x94, 0x00, 0xb4, 0x94, 0xb4, 0x94, 0x00, 0x52, 0xd1, 0x49, 0x40, + 0x0b, 0x45, 0x14, 0x50, 0x01, 0x49, 0x4b, 0x49, 0x40, 0x05, 0x2d, 0x25, + 0x2d, 0x00, 0x14, 0x51, 0x49, 0x40, 0x0b, 0x49, 0x4b, 0x49, 0x40, 0x0b, + 0x49, 0x45, 0x14, 0x00, 0x52, 0xd2, 0x52, 0xd0, 0x01, 0x45, 0x25, 0x2d, + 0x00, 0x25, 0x14, 0x51, 0x40, 0x0b, 0x49, 0x4b, 0x45, 0x00, 0x25, 0x2d, + 0x25, 0x14, 0x00, 0x52, 0xd1, 0x45, 0x00, 0x25, 0x2d, 0x25, 0x2d, 0x00, + 0x14, 0x94, 0xb4, 0x94, 0x00, 0xb4, 0x51, 0x49, 0x40, 0x0b, 0x45, 0x25, + 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0xb4, 0x94, 0xb4, 0x94, 0x00, 0x52, + 0xd2, 0x52, 0xd0, 0x02, 0x52, 0xd2, 0x52, 0xd0, 0x02, 0x51, 0x45, 0x14, + 0x00, 0x52, 0xd1, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x50, 0x02, 0x51, 0x4b, + 0x49, 0x40, 0x0b, 0x45, 0x25, 0x14, 0x00, 0xb4, 0x94, 0x52, 0xd0, 0x02, + 0x51, 0x4b, 0x49, 0x40, 0x05, 0x2d, 0x25, 0x2d, 0x00, 0x14, 0x94, 0x51, + 0x40, 0x0b, 0x49, 0x45, 0x14, 0x00, 0xb4, 0x94, 0xb4, 0x50, 0x02, 0x52, + 0xd1, 0x49, 0x40, 0x05, 0x14, 0x51, 0x40, 0x0b, 0x49, 0x45, 0x14, 0x00, + 0xb4, 0x94, 0xb4, 0x50, 0x02, 0x51, 0x4b, 0x49, 0x40, 0x05, 0x2d, 0x25, + 0x2d, 0x00, 0x14, 0x51, 0x49, 0x40, 0x0b, 0x45, 0x14, 0x94, 0x00, 0x52, + 0xd1, 0x49, 0x40, 0x05, 0x2d, 0x25, 0x14, 0x00, 0x51, 0x45, 0x2d, 0x00, + 0x25, 0x2d, 0x14, 0x94, 0x00, 0x51, 0x4b, 0x49, 0x40, 0x05, 0x14, 0xb4, + 0x50, 0x01, 0x49, 0x45, 0x2d, 0x00, 0x14, 0x52, 0x51, 0x40, 0x05, 0x2d, + 0x14, 0x94, 0x00, 0xb4, 0x94, 0xb4, 0x94, 0x00, 0xb4, 0x94, 0x51, 0x40, + 0x05, 0x2d, 0x14, 0x94, 0x00, 0xb4, 0x94, 0x52, 0xd0, 0x01, 0x45, 0x14, + 0x50, 0x02, 0x52, 0xd2, 0x51, 0x40, 0x05, 0x14, 0xb4, 0x50, 0x01, 0x45, + 0x14, 0x50, 0x02, 0x51, 0x45, 0x14, 0x00, 0x52, 0xd1, 0x45, 0x00, 0x14, + 0x94, 0x52, 0xd0, 0x01, 0x49, 0x45, 0x2d, 0x00, 0x25, 0x14, 0x52, 0xd0, + 0x01, 0x49, 0x45, 0x2d, 0x00, 0x25, 0x14, 0x52, 0xd0, 0x02, 0x52, 0xd2, + 0x51, 0x40, 0x0b, 0x45, 0x14, 0x50, 0x02, 0x51, 0x4b, 0x45, 0x00, 0x25, + 0x2d, 0x14, 0x94, 0x00, 0x52, 0xd2, 0x52, 0xd0, 0x01, 0x49, 0x45, 0x14, + 0x00, 0x52, 0xd2, 0x52, 0xd0, 0x02, 0x51, 0x45, 0x14, 0x00, 0xb4, 0x51, + 0x49, 0x40, 0x05, 0x2d, 0x14, 0x94, 0x00, 0x51, 0x4b, 0x45, 0x00, 0x25, + 0x2d, 0x25, 0x14, 0x00, 0xb4, 0x94, 0x52, 0xd0, 0x02, 0x52, 0xd1, 0x49, + 0x40, 0x05, 0x14, 0xb4, 0x50, 0x02, 0x52, 0xd1, 0x49, 0x40, 0x05, 0x14, + 0x52, 0xd0, 0x02, 0x51, 0x4b, 0x49, 0x40, 0x05, 0x2d, 0x14, 0x94, 0x00, + 0x51, 0x45, 0x2d, 0x00, 0x25, 0x14, 0xb4, 0x50, 0x02, 0x51, 0x4b, 0x45, + 0x00, 0x25, 0x14, 0x51, 0x40, 0x05, 0x2d, 0x25, 0x14, 0x00, 0x51, 0x4b, + 0x45, 0x00, 0x14, 0x94, 0x52, 0xd0, 0x01, 0x45, 0x25, 0x14, 0x00, 0xb4, + 0x51, 0x49, 0x40, 0x0b, 0x49, 0x4b, 0x45, 0x00, 0x25, 0x14, 0x52, 0xd0, + 0x02, 0x52, 0xd2, 0x51, 0x40, 0x05, 0x2d, 0x25, 0x2d, 0x00, 0x25, 0x14, + 0x51, 0x40, 0x05, 0x2d, 0x14, 0x50, 0x01, 0x49, 0x45, 0x2d, 0x00, 0x25, + 0x2d, 0x14, 0x94, 0x00, 0xb4, 0x52, 0x51, 0x40, 0x0b, 0x45, 0x14, 0x50, + 0x01, 0x49, 0x4b, 0x49, 0x40, 0x05, 0x2d, 0x25, 0x14, 0x00, 0x51, 0x4b, + 0x45, 0x00, 0x25, 0x14, 0xb4, 0x94, 0x00, 0x51, 0x45, 0x14, 0x00, 0xb4, + 0x94, 0x52, 0xd0, 0x02, 0x52, 0xd2, 0x52, 0xd0, 0x02, 0x52, 0xd2, 0x51, + 0x40, 0x05, 0x2d, 0x25, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0xb4, 0x94, + 0xb4, 0x50, 0x02, 0x52, 0xd1, 0x45, 0x00, 0x25, 0x2d, 0x25, 0x14, 0x00, + 0x51, 0x4b, 0x45, 0x00, 0x14, 0x94, 0x51, 0x40, 0x05, 0x2d, 0x25, 0x14, + 0x00, 0xb4, 0x51, 0x49, 0x40, 0x0b, 0x45, 0x14, 0x50, 0x02, 0x51, 0x45, + 0x14, 0x00, 0x52, 0xd2, 0x52, 0xd0, 0x01, 0x49, 0x45, 0x14, 0x00, 0x51, + 0x45, 0x14, 0x00, 0xb4, 0x94, 0xb4, 0x94, 0x00, 0xb4, 0x52, 0x52, 0xd0, + 0x02, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0xb4, 0x52, 0x52, + 0xd0, 0x02, 0x51, 0x45, 0x14, 0x00, 0xb4, 0x94, 0xb4, 0x50, 0x01, 0x49, + 0x45, 0x14, 0x00, 0xb4, 0x94, 0x51, 0x40, 0x05, 0x14, 0xb4, 0x94, 0x00, + 0x52, 0xd2, 0x52, 0xd0, 0x01, 0x49, 0x4b, 0x45, 0x00, 0x25, 0x14, 0x51, + 0x40, 0x0b, 0x49, 0x45, 0x14, 0x00, 0xb4, 0x94, 0x51, 0x40, 0x05, 0x2d, + 0x25, 0x14, 0x00, 0xb4, 0x51, 0x45, 0x00, 0x14, 0x94, 0xb4, 0x94, 0x00, + 0x51, 0x45, 0x14, 0x00, 0xb4, 0x94, 0x52, 0xd0, 0x01, 0x45, 0x14, 0x94, + 0x00, 0xb4, 0x52, 0x51, 0x40, 0x05, 0x2d, 0x25, 0x14, 0x00, 0x51, 0x45, + 0x2d, 0x00, 0x25, 0x2d, 0x14, 0x94, 0x00, 0xb4, 0x52, 0x51, 0x40, 0x0b, + 0x45, 0x25, 0x2d, 0x00, 0x14, 0x51, 0x49, 0x40, 0x05, 0x2d, 0x14, 0x50, + 0x01, 0x49, 0x4b, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x94, 0x00, 0x51, 0x45, + 0x14, 0x00, 0xb4, 0x94, 0xb4, 0x94, 0x00, 0x51, 0x45, 0x14, 0x00, 0x52, + 0xd2, 0x52, 0xd0, 0x02, 0x52, 0xd1, 0x49, 0x40, 0x0b, 0x49, 0x4b, 0x49, + 0x40, 0x0b, 0x49, 0x45, 0x14, 0x00, 0xb4, 0x94, 0xb4, 0x50, 0x02, 0x51, + 0x4b, 0x49, 0x40, 0x05, 0x14, 0x51, 0x40, 0x0b, 0x45, 0x14, 0x50, 0x01, + 0x49, 0x56, 0x7e, 0xc1, 0x7b, 0xff, 0x00, 0x3e, 0x93, 0xff, 0x00, 0xdf, + 0xb3, 0xfe, 0x14, 0x7f, 0x67, 0xde, 0xff, 0x00, 0xcf, 0xa5, 0xc7, 0xfd, + 0xfb, 0x3f, 0xe1, 0x40, 0x15, 0xe8, 0xab, 0x1f, 0xd9, 0xf7, 0xbf, 0xf3, + 0xe9, 0x71, 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x51, 0xfd, 0x9f, 0x7b, 0xff, + 0x00, 0x3e, 0x97, 0x1f, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, 0x56, 0xa5, + 0xab, 0x1f, 0xd9, 0xf7, 0xbf, 0xf3, 0xe9, 0x71, 0xff, 0x00, 0x7e, 0xcf, + 0xf8, 0x51, 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, 0x93, 0xff, 0x00, 0xdf, + 0xb3, 0xfe, 0x14, 0x01, 0x5a, 0x8a, 0xb3, 0xfd, 0x9f, 0x7b, 0xff, 0x00, + 0x3e, 0x93, 0xff, 0x00, 0xdf, 0xb3, 0xfe, 0x14, 0x7f, 0x67, 0xde, 0xff, + 0x00, 0xcf, 0xa4, 0xff, 0x00, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, 0x56, + 0xa5, 0xab, 0x1f, 0xd9, 0xf7, 0xbf, 0xf3, 0xe9, 0x71, 0xff, 0x00, 0x7e, + 0xcf, 0xf8, 0x51, 0xf6, 0x0b, 0xdf, 0xf9, 0xf4, 0xb8, 0xff, 0x00, 0xbf, + 0x67, 0xfc, 0x28, 0x02, 0xbd, 0x15, 0x63, 0xfb, 0x3e, 0xf7, 0xfe, 0x7d, + 0x27, 0xff, 0x00, 0xbf, 0x67, 0xfc, 0x28, 0xfe, 0xcf, 0xbd, 0xff, 0x00, + 0x9f, 0x4b, 0x8f, 0xfb, 0xf6, 0x7f, 0xc2, 0x80, 0x2b, 0xd1, 0x56, 0x3f, + 0xb3, 0xef, 0x7f, 0xe7, 0xd2, 0xe3, 0xfe, 0xfd, 0x9f, 0xf0, 0xa3, 0xfb, + 0x3e, 0xf7, 0xfe, 0x7d, 0x27, 0xff, 0x00, 0xbf, 0x66, 0x80, 0x2b, 0x52, + 0xd5, 0x8f, 0xec, 0xfb, 0xdf, 0xf9, 0xf4, 0x9f, 0xfe, 0xfd, 0x9f, 0xf0, + 0xa3, 0xfb, 0x3e, 0xf7, 0xfe, 0x7d, 0x27, 0xff, 0x00, 0xbf, 0x67, 0xfc, + 0x28, 0x02, 0xbd, 0x25, 0x59, 0xfe, 0xcf, 0xbd, 0xff, 0x00, 0x9f, 0x4b, + 0x8f, 0xfb, 0xf6, 0x7f, 0xc2, 0x8f, 0xb0, 0x5e, 0xff, 0x00, 0xcf, 0xa5, + 0xc7, 0xfd, 0xfb, 0x3f, 0xe1, 0x40, 0x15, 0xa9, 0x6a, 0xc7, 0xf6, 0x7d, + 0xef, 0xfc, 0xfa, 0x5c, 0x7f, 0xdf, 0xb3, 0xfe, 0x14, 0x7f, 0x67, 0xde, + 0xff, 0x00, 0xcf, 0xa4, 0xff, 0x00, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, + 0x56, 0xa5, 0xab, 0x1f, 0xd9, 0xf7, 0x9f, 0xf3, 0xe9, 0x3f, 0xfd, 0xfb, + 0x3f, 0xe1, 0x47, 0xd8, 0x2f, 0x7f, 0xe7, 0xd2, 0xe3, 0xfe, 0xfd, 0x9f, + 0xf0, 0xa0, 0x0a, 0xd4, 0x55, 0x9f, 0xec, 0xfb, 0xcf, 0xf9, 0xf4, 0x9f, + 0xfe, 0xfd, 0x9a, 0x3f, 0xb3, 0xef, 0x7f, 0xe7, 0xd2, 0x7f, 0xfb, 0xf6, + 0x7f, 0xc2, 0x80, 0x2b, 0xd2, 0x55, 0x9f, 0xec, 0xfb, 0xcf, 0xf9, 0xf4, + 0x9f, 0xfe, 0xfd, 0xb7, 0xf8, 0x51, 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, + 0x93, 0xff, 0x00, 0xdf, 0xb3, 0xfe, 0x14, 0x01, 0x5a, 0x96, 0xac, 0x7d, + 0x82, 0xf3, 0xfe, 0x7d, 0x27, 0xff, 0x00, 0xbf, 0x67, 0xfc, 0x28, 0xfb, + 0x05, 0xe7, 0xfc, 0xfa, 0x4f, 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x50, 0x05, + 0x7a, 0x4a, 0xb3, 0xf6, 0x0b, 0xdf, 0xf9, 0xf4, 0x9f, 0xfe, 0xfd, 0x9f, + 0xf0, 0xa3, 0xec, 0x17, 0x9f, 0xf3, 0xe9, 0x3f, 0xfd, 0xfb, 0x3f, 0xe1, + 0x40, 0x15, 0xe9, 0x2a, 0xcf, 0xf6, 0x7d, 0xe7, 0xfc, 0xfa, 0x4f, 0xff, + 0x00, 0x7e, 0xcd, 0x1f, 0x60, 0xbd, 0xff, 0x00, 0x9f, 0x49, 0xff, 0x00, + 0xef, 0xd9, 0xff, 0x00, 0x0a, 0x00, 0xad, 0x45, 0x59, 0xfe, 0xcf, 0xbc, + 0xff, 0x00, 0x9f, 0x49, 0xff, 0x00, 0xef, 0xd9, 0xa3, 0xec, 0x17, 0x9f, + 0xf3, 0xe9, 0x3f, 0xfd, 0xfb, 0x3f, 0xe1, 0x40, 0x15, 0xe9, 0x2a, 0xcf, + 0xd8, 0x2f, 0x3f, 0xe7, 0xd2, 0x7f, 0xfb, 0xf6, 0x7f, 0xc2, 0x8f, 0xec, + 0xfb, 0xcf, 0xf9, 0xf4, 0x9f, 0xfe, 0xfd, 0x9f, 0xf0, 0xa0, 0x0a, 0xf4, + 0x95, 0x67, 0xec, 0x17, 0xbf, 0xf3, 0xe9, 0x71, 0xff, 0x00, 0x7e, 0xcf, + 0xf8, 0x51, 0xf6, 0x0b, 0xcf, 0xf9, 0xf4, 0xb8, 0xff, 0x00, 0xbf, 0x67, + 0xfc, 0x28, 0x02, 0xb5, 0x2d, 0x58, 0xfb, 0x05, 0xe7, 0xfc, 0xfa, 0x4f, + 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x51, 0xf6, 0x0b, 0xcf, 0xf9, 0xf4, 0x9f, + 0xfe, 0xfd, 0x9f, 0xf0, 0xa0, 0x0a, 0xd4, 0x55, 0x9f, 0xb0, 0x5e, 0x7f, + 0xcf, 0xa4, 0xff, 0x00, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x1f, 0x60, 0xbc, + 0xff, 0x00, 0x9f, 0x49, 0xff, 0x00, 0xef, 0xd9, 0xa0, 0x0a, 0xd4, 0x55, + 0x9f, 0xb0, 0x5e, 0x7f, 0xcf, 0xa4, 0xff, 0x00, 0xf7, 0xec, 0xff, 0x00, + 0x85, 0x1f, 0xd9, 0xf7, 0x9f, 0xf3, 0xe9, 0x3f, 0xfd, 0xfb, 0x3f, 0xe1, + 0x40, 0x15, 0xa9, 0x6a, 0xc7, 0xd8, 0x2f, 0x3f, 0xe7, 0xd2, 0x7f, 0xfb, + 0xf6, 0x68, 0xfb, 0x05, 0xe7, 0xfc, 0xfa, 0x4f, 0xff, 0x00, 0x7e, 0xcf, + 0xf8, 0x50, 0x05, 0x7a, 0x2a, 0xc7, 0xd8, 0x2f, 0x3f, 0xe7, 0xd2, 0x7f, + 0xfb, 0xf6, 0x7f, 0xc2, 0x8f, 0xb0, 0x5e, 0x7f, 0xcf, 0xa4, 0xff, 0x00, + 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, 0x56, 0xa2, 0xac, 0xfd, 0x82, 0xf3, + 0xfe, 0x7d, 0x27, 0xff, 0x00, 0xbf, 0x66, 0x8f, 0xb0, 0x5e, 0x7f, 0xcf, + 0xa4, 0xff, 0x00, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, 0x56, 0xa5, 0xab, + 0x1f, 0x60, 0xbc, 0xff, 0x00, 0x9f, 0x49, 0xff, 0x00, 0xef, 0xd9, 0xff, + 0x00, 0x0a, 0x3e, 0xc1, 0x79, 0xff, 0x00, 0x3e, 0x93, 0xff, 0x00, 0xdf, + 0xb3, 0x40, 0x15, 0xe9, 0x2a, 0xcf, 0xd8, 0x2f, 0x3f, 0xe7, 0xd2, 0x7f, + 0xfb, 0xf6, 0x7f, 0xc2, 0x8f, 0xb0, 0x5e, 0x7f, 0xcf, 0xa4, 0xff, 0x00, + 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, 0x57, 0xa2, 0xac, 0x7d, 0x82, 0xf3, + 0xfe, 0x7d, 0x27, 0xff, 0x00, 0xbf, 0x66, 0x8f, 0xec, 0xfb, 0xcf, 0xf9, + 0xf4, 0x9f, 0xfe, 0xfd, 0x9a, 0x00, 0xad, 0x45, 0x59, 0xfb, 0x05, 0xe7, + 0xfc, 0xfa, 0x4f, 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x51, 0xf6, 0x0b, 0xdf, + 0xf9, 0xf4, 0x9f, 0xfe, 0xfd, 0x9f, 0xf0, 0xa0, 0x0a, 0xf4, 0x95, 0x67, + 0xec, 0x17, 0x9f, 0xf3, 0xe9, 0x3f, 0xfd, 0xfb, 0x3f, 0xe1, 0x47, 0xd8, + 0x2f, 0x3f, 0xe7, 0xd2, 0x7f, 0xfb, 0xf6, 0x68, 0x02, 0xb5, 0x15, 0x67, + 0xec, 0x17, 0x9f, 0xf3, 0xe9, 0x3f, 0xfd, 0xfb, 0x3f, 0xe1, 0x47, 0xd8, + 0x2f, 0x3f, 0xe7, 0xd2, 0x7f, 0xfb, 0xf6, 0x7f, 0xc2, 0x80, 0x2b, 0x52, + 0xd5, 0x8f, 0xb0, 0x5e, 0xff, 0x00, 0xcf, 0xa4, 0xff, 0x00, 0xf7, 0xec, + 0xff, 0x00, 0x85, 0x1f, 0x60, 0xbc, 0xff, 0x00, 0x9f, 0x4b, 0x8f, 0xfb, + 0xf6, 0x7f, 0xc2, 0x80, 0x2b, 0xd1, 0x56, 0x3e, 0xc1, 0x79, 0xff, 0x00, + 0x3e, 0x93, 0xff, 0x00, 0xdf, 0xb3, 0xfe, 0x14, 0x7d, 0x82, 0xf3, 0xfe, + 0x7d, 0x27, 0xff, 0x00, 0xbf, 0x67, 0xfc, 0x28, 0x02, 0xb5, 0x15, 0x67, + 0xec, 0x17, 0xbf, 0xf3, 0xe9, 0x3f, 0xfd, 0xfb, 0x3f, 0xe1, 0x47, 0xd8, + 0x2f, 0x3f, 0xe7, 0xd2, 0x7f, 0xfb, 0xf6, 0x7f, 0xc2, 0x80, 0x2b, 0x52, + 0xd5, 0x8f, 0xb0, 0x5e, 0xff, 0x00, 0xcf, 0xa4, 0xff, 0x00, 0xf7, 0xec, + 0xff, 0x00, 0x85, 0x1f, 0x60, 0xbc, 0xff, 0x00, 0x9f, 0x49, 0xff, 0x00, + 0xef, 0xd9, 0xff, 0x00, 0x0a, 0x00, 0xaf, 0x49, 0x56, 0x7e, 0xc1, 0x79, + 0xff, 0x00, 0x3e, 0x93, 0xff, 0x00, 0xdf, 0xb3, 0xfe, 0x14, 0x7d, 0x82, + 0xf7, 0xfe, 0x7d, 0x27, 0xff, 0x00, 0xbf, 0x67, 0xfc, 0x28, 0x02, 0xbd, + 0x25, 0x59, 0xfb, 0x05, 0xef, 0xfc, 0xfa, 0x5c, 0x7f, 0xdf, 0xb3, 0xfe, + 0x14, 0x7d, 0x82, 0xf3, 0xfe, 0x7d, 0x27, 0xff, 0x00, 0xbf, 0x66, 0x80, + 0x2b, 0xd1, 0x56, 0x3e, 0xc1, 0x79, 0xff, 0x00, 0x3e, 0x93, 0xff, 0x00, + 0xdf, 0xb3, 0xfe, 0x14, 0x7d, 0x82, 0xf3, 0xfe, 0x7d, 0x27, 0xff, 0x00, + 0xbf, 0x67, 0xfc, 0x28, 0x02, 0xbd, 0x25, 0x59, 0xfe, 0xcf, 0xbd, 0xff, + 0x00, 0x9f, 0x49, 0xff, 0x00, 0xef, 0xd9, 0xff, 0x00, 0x0a, 0x3e, 0xc1, + 0x7b, 0xff, 0x00, 0x3e, 0x97, 0x1f, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, + 0x57, 0xa4, 0xab, 0x3f, 0xd9, 0xf7, 0x9f, 0xf3, 0xe9, 0x3f, 0xfd, 0xfb, + 0x3f, 0xe1, 0x47, 0xf6, 0x7d, 0xef, 0xfc, 0xfa, 0x4f, 0xff, 0x00, 0x7e, + 0xcf, 0xf8, 0x50, 0x05, 0x7a, 0x2a, 0xc7, 0xf6, 0x7d, 0xef, 0xfc, 0xfa, + 0x4f, 0xff, 0x00, 0x7e, 0xcd, 0x1f, 0x60, 0xbd, 0xff, 0x00, 0x9f, 0x49, + 0xff, 0x00, 0xef, 0xd9, 0xff, 0x00, 0x0a, 0x00, 0xaf, 0x49, 0x56, 0x7f, + 0xb3, 0xef, 0x7f, 0xe7, 0xd2, 0xe3, 0xfe, 0xfd, 0x9f, 0xf0, 0xa3, 0xfb, + 0x3e, 0xf7, 0xfe, 0x7d, 0x2e, 0x3f, 0xef, 0xd9, 0xff, 0x00, 0x0a, 0x00, + 0xad, 0x4b, 0x56, 0x3f, 0xb3, 0xef, 0x7f, 0xe7, 0xd2, 0x7f, 0xfb, 0xf6, + 0x7f, 0xc2, 0x8f, 0xec, 0xfb, 0xdf, 0xf9, 0xf4, 0xb8, 0xff, 0x00, 0xbf, + 0x67, 0xfc, 0x28, 0x02, 0xb5, 0x2d, 0x58, 0xfe, 0xcf, 0xbd, 0xff, 0x00, + 0x9f, 0x4b, 0x8f, 0xfb, 0xf6, 0x7f, 0xc2, 0x8f, 0xec, 0xfb, 0xdf, 0xf9, + 0xf4, 0xb8, 0xff, 0x00, 0xbf, 0x66, 0x80, 0x2b, 0x51, 0x56, 0x7f, 0xb3, + 0xef, 0x3f, 0xe7, 0xd2, 0x7f, 0xfb, 0xf6, 0x7f, 0xc2, 0x8f, 0xec, 0xfb, + 0xdf, 0xf9, 0xf4, 0x9f, 0xfe, 0xfd, 0x9f, 0xf0, 0xa0, 0x0a, 0xf4, 0x55, + 0x8f, 0xec, 0xfb, 0xdf, 0xf9, 0xf4, 0xb8, 0xff, 0x00, 0xbf, 0x67, 0xfc, + 0x28, 0xfe, 0xcf, 0xbd, 0xff, 0x00, 0x9f, 0x49, 0xff, 0x00, 0xef, 0xd9, + 0xa0, 0x0a, 0xd4, 0x55, 0x9f, 0xec, 0xfb, 0xdf, 0xf9, 0xf4, 0x9f, 0xfe, + 0xfd, 0xb7, 0xf8, 0x51, 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, 0x97, 0x1f, + 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, 0x56, 0xa5, 0xab, 0x1f, 0xd9, 0xf7, + 0xbf, 0xf3, 0xe9, 0x71, 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x51, 0xfd, 0x9f, + 0x7b, 0xff, 0x00, 0x3e, 0x97, 0x1f, 0xf7, 0xec, 0xd0, 0x05, 0x6a, 0x5a, + 0xb1, 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, 0x97, 0x1f, 0xf7, 0xec, 0xff, + 0x00, 0x85, 0x1f, 0xd9, 0xf7, 0xbf, 0xf3, 0xe9, 0x71, 0xff, 0x00, 0x7e, + 0xcf, 0xf8, 0x50, 0x05, 0x7a, 0x4a, 0xb3, 0xfd, 0x9f, 0x7b, 0xff, 0x00, + 0x3e, 0x97, 0x1f, 0xf7, 0xec, 0xd1, 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, + 0x97, 0x1f, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, 0x57, 0xa4, 0xab, 0x3f, + 0xd9, 0xf7, 0xbf, 0xf3, 0xe9, 0x71, 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x51, + 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, 0x97, 0x1f, 0xf7, 0xec, 0xff, 0x00, + 0x85, 0x00, 0x57, 0xa4, 0xab, 0x3f, 0xd9, 0xf7, 0xbf, 0xf3, 0xe9, 0x71, + 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x51, 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, + 0x97, 0x1f, 0xf7, 0xec, 0xd0, 0x05, 0x7a, 0x4a, 0xb3, 0xfd, 0x9f, 0x7b, + 0xff, 0x00, 0x3e, 0x93, 0xff, 0x00, 0xdf, 0xb3, 0xfe, 0x14, 0x7f, 0x67, + 0xde, 0xff, 0x00, 0xcf, 0xa4, 0xff, 0x00, 0xf7, 0xec, 0xff, 0x00, 0x85, + 0x00, 0x56, 0xa5, 0xab, 0x1f, 0xd9, 0xf7, 0xbf, 0xf3, 0xe9, 0x71, 0xff, + 0x00, 0x7e, 0xcf, 0xf8, 0x51, 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, 0x97, + 0x1f, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x00, 0x56, 0xa2, 0xac, 0xff, 0x00, + 0x67, 0xde, 0xff, 0x00, 0xcf, 0xa5, 0xc7, 0xfd, 0xfb, 0x3f, 0xe1, 0x47, + 0xf6, 0x7d, 0xef, 0xfc, 0xfa, 0x5c, 0x7f, 0xdf, 0xb3, 0xfe, 0x14, 0x01, + 0x5e, 0x8a, 0xb1, 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, 0x77, 0x1f, 0xf7, + 0xec, 0xff, 0x00, 0x85, 0x1f, 0xd9, 0xf7, 0xbf, 0xf3, 0xe9, 0x71, 0xff, + 0x00, 0x7e, 0xcf, 0xf8, 0x50, 0x05, 0x6a, 0x2a, 0xcf, 0xf6, 0x7d, 0xef, + 0xfc, 0xfa, 0x5c, 0x7f, 0xdf, 0xb3, 0x47, 0xf6, 0x7d, 0xef, 0xfc, 0xfa, + 0x5c, 0x7f, 0xdf, 0xb3, 0xfe, 0x14, 0x01, 0x5e, 0x92, 0xac, 0xff, 0x00, + 0x67, 0xde, 0xff, 0x00, 0xcf, 0xa5, 0xc7, 0xfd, 0xfb, 0x6f, 0xf0, 0xa3, + 0xfb, 0x3e, 0xf7, 0xfe, 0x7d, 0x2e, 0x3f, 0xef, 0xd9, 0xff, 0x00, 0x0a, + 0x00, 0xad, 0x4b, 0x56, 0x3f, 0xb3, 0xef, 0x7f, 0xe7, 0xd2, 0xe3, 0xfe, + 0xfd, 0x9f, 0xf0, 0xa3, 0xfb, 0x3e, 0xf7, 0xfe, 0x7d, 0x2e, 0x3f, 0xef, + 0xd9, 0xff, 0x00, 0x0a, 0x00, 0xad, 0x45, 0x59, 0xfe, 0xcf, 0xbd, 0xff, + 0x00, 0x9f, 0x4b, 0x8f, 0xfb, 0xf6, 0xdf, 0xe1, 0x47, 0xf6, 0x7d, 0xef, + 0xfc, 0xfa, 0x5c, 0x7f, 0xdf, 0xb3, 0xfe, 0x14, 0x01, 0x5a, 0x8a, 0xb3, + 0xfd, 0x9f, 0x7b, 0xff, 0x00, 0x3e, 0x97, 0x1f, 0xf7, 0xed, 0xa8, 0xfe, + 0xcf, 0xbd, 0xff, 0x00, 0x9f, 0x4b, 0x8f, 0xfb, 0xf6, 0x7f, 0xc2, 0x80, + 0x2b, 0x52, 0xd5, 0x8f, 0xec, 0xfb, 0xdf, 0xf9, 0xf3, 0xb8, 0xff, 0x00, + 0xbf, 0x67, 0xfc, 0x28, 0xfe, 0xcf, 0xbd, 0xff, 0x00, 0x9f, 0x3b, 0x8f, + 0xfb, 0xf4, 0x7f, 0xc2, 0x80, 0x2b, 0x52, 0xd5, 0x8f, 0xec, 0xfb, 0xdf, + 0xf9, 0xf4, 0xb8, 0xff, 0x00, 0xbf, 0x67, 0xfc, 0x28, 0xfe, 0xcf, 0xbd, + 0xff, 0x00, 0x9f, 0x4b, 0x8f, 0xfb, 0xf6, 0x68, 0x02, 0xb5, 0x2d, 0x58, + 0xfe, 0xcf, 0xbd, 0xff, 0x00, 0x9f, 0x49, 0xff, 0x00, 0xef, 0xd9, 0xff, + 0x00, 0x0a, 0x3f, 0xb3, 0xef, 0x3f, 0xe7, 0xd2, 0x7f, 0xfb, 0xf6, 0x7f, + 0xc2, 0x80, 0x3f, 0xff, 0xd9 +}; +unsigned int doge2_jpg_len = 49253; diff --git a/assets/hdr/03_ennis.h b/assets/hdr/03_ennis.h new file mode 100644 index 0000000..2008636 --- /dev/null +++ b/assets/hdr/03_ennis.h @@ -0,0 +1,6896 @@ +unsigned char ennis_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x5a, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x31, 0x30, 0x20, 0x30, 0x33, 0x3a, 0x33, 0x30, + 0x3a, 0x35, 0x35, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x34, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03, 0x03, + 0x03, 0x03, 0x04, 0x03, 0x03, 0x04, 0x05, 0x08, 0x05, 0x05, 0x04, 0x04, + 0x05, 0x0a, 0x07, 0x07, 0x06, 0x08, 0x0c, 0x0a, 0x0c, 0x0c, 0x0b, 0x0a, + 0x0b, 0x0b, 0x0d, 0x0e, 0x12, 0x10, 0x0d, 0x0e, 0x11, 0x0e, 0x0b, 0x0b, + 0x10, 0x16, 0x10, 0x11, 0x13, 0x14, 0x15, 0x15, 0x15, 0x0c, 0x0f, 0x17, + 0x18, 0x16, 0x14, 0x18, 0x12, 0x14, 0x15, 0x14, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x03, 0x04, 0x04, 0x05, 0x04, 0x05, 0x09, 0x05, 0x05, 0x09, 0x14, + 0x0d, 0x0b, 0x0d, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, + 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, + 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, + 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, + 0x14, 0x14, 0x14, 0x14, 0x14, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xfc, 0xcb, 0x6d, 0xa2, 0x93, 0x20, 0xf4, 0x15, 0x16, 0x64, + 0x66, 0xc6, 0xec, 0xd3, 0x99, 0x58, 0x7f, 0x17, 0x35, 0xe7, 0xda, 0xc7, + 0xa1, 0x74, 0x4b, 0xb4, 0x7a, 0x7e, 0xb4, 0x6c, 0x51, 0x55, 0xf2, 0xc3, + 0xb9, 0x3f, 0x41, 0x4e, 0x53, 0x21, 0xf5, 0x34, 0x59, 0xf7, 0x19, 0x36, + 0xd5, 0xf4, 0xa5, 0x11, 0x29, 0xff, 0x00, 0xf5, 0xd4, 0x3e, 0x64, 0x98, + 0xe8, 0x07, 0xe1, 0x46, 0xf9, 0x89, 0xe9, 0xf9, 0x52, 0xb3, 0xee, 0x3b, + 0xf9, 0x13, 0xf9, 0x29, 0xeb, 0x49, 0xe4, 0xaf, 0xf7, 0xaa, 0x1f, 0x32, + 0x4f, 0xee, 0xfe, 0xb4, 0x9b, 0xa4, 0xf6, 0xa2, 0xcf, 0xb8, 0xf4, 0xec, + 0x4f, 0xe5, 0x27, 0xf7, 0xa9, 0x3c, 0x94, 0xfe, 0xf5, 0x41, 0xe6, 0xb2, + 0xf5, 0xc5, 0x39, 0x6e, 0x1f, 0xb0, 0x1f, 0x95, 0x3b, 0x4b, 0xb8, 0xae, + 0x89, 0xbc, 0x95, 0xf7, 0xa3, 0xc8, 0x5f, 0x7a, 0x8b, 0xed, 0x2e, 0x3b, + 0x8f, 0xca, 0x9a, 0x6e, 0xdb, 0xd7, 0xf4, 0xa5, 0x69, 0x05, 0xd1, 0x3f, + 0x90, 0x0d, 0x1f, 0x67, 0x15, 0x07, 0xda, 0xdb, 0xd3, 0x34, 0xe5, 0xbb, + 0x27, 0xf8, 0x68, 0xb4, 0x81, 0x34, 0xc9, 0xbe, 0xcc, 0x28, 0xfb, 0x30, + 0xf5, 0xa6, 0x7d, 0xa4, 0xf6, 0x50, 0x29, 0x3e, 0xd0, 0x4d, 0x2f, 0x78, + 0x77, 0x89, 0x27, 0xd9, 0xfd, 0xe9, 0x0c, 0x38, 0xa4, 0x17, 0x00, 0x75, + 0xa5, 0xfb, 0x5a, 0x8a, 0x3d, 0xe0, 0xbc, 0x44, 0x11, 0x8f, 0x7a, 0x78, + 0x80, 0x7b, 0xd2, 0x7d, 0xa9, 0x7f, 0xd9, 0xa7, 0x7d, 0xa1, 0x4f, 0x71, + 0x4a, 0xf2, 0x1e, 0x80, 0x2d, 0xc1, 0xf5, 0xa0, 0xdb, 0x7d, 0x69, 0xe1, + 0xf3, 0xd3, 0x14, 0xef, 0x34, 0x0e, 0xa7, 0x1f, 0x5a, 0x9b, 0xc8, 0x7a, + 0x11, 0x7d, 0x98, 0xd2, 0x7d, 0x98, 0xd4, 0x86, 0x70, 0x4f, 0x50, 0x69, + 0x44, 0xbb, 0xbd, 0x05, 0x17, 0x90, 0x68, 0x45, 0xe4, 0x11, 0xdb, 0x34, + 0x86, 0x3c, 0x76, 0x15, 0x2b, 0x49, 0x8e, 0xa7, 0x8a, 0x6f, 0x9a, 0xac, + 0x71, 0x9f, 0xce, 0x9a, 0x6c, 0x34, 0x23, 0xf2, 0xc7, 0xa1, 0xa5, 0xf2, + 0x81, 0xf5, 0xa5, 0x25, 0x81, 0xe8, 0x08, 0xf6, 0xa8, 0xcd, 0xdf, 0xcd, + 0x80, 0x86, 0xab, 0x57, 0xb0, 0x68, 0x3f, 0xec, 0xc3, 0x1d, 0x4d, 0x46, + 0xd0, 0xe3, 0xfb, 0xd5, 0x20, 0x99, 0xff, 0x00, 0x88, 0x54, 0x9e, 0x68, + 0xf7, 0xcf, 0xb5, 0x2b, 0xc9, 0x06, 0x85, 0x5f, 0x28, 0xfb, 0xd2, 0xf9, + 0x47, 0xde, 0xa7, 0x25, 0x58, 0xf2, 0x1b, 0x35, 0x1b, 0x13, 0xfc, 0x3b, + 0xaa, 0xb9, 0x98, 0x68, 0x20, 0x88, 0xf6, 0xa5, 0xf2, 0x4f, 0xf7, 0x85, + 0x30, 0x86, 0x18, 0xc9, 0x6a, 0x91, 0x58, 0x05, 0xfb, 0x84, 0x9a, 0x2e, + 0xc3, 0xe4, 0x20, 0x88, 0xfa, 0xd0, 0x51, 0x54, 0x72, 0xc7, 0xf2, 0xa6, + 0x92, 0x47, 0x62, 0x29, 0x8d, 0xb8, 0xfa, 0x9f, 0xc2, 0x9e, 0xa3, 0x7c, + 0xa9, 0x0f, 0x25, 0x07, 0x73, 0x4d, 0xf3, 0x53, 0xdf, 0xf2, 0xa8, 0xbe, + 0x83, 0x27, 0xe9, 0x48, 0x0b, 0xfa, 0x7e, 0x95, 0x76, 0x33, 0xe6, 0x26, + 0xf3, 0x17, 0xde, 0x8f, 0x30, 0x54, 0x44, 0x9e, 0xe7, 0xf4, 0xa6, 0xf5, + 0xc6, 0x5b, 0xf2, 0xa7, 0x61, 0x39, 0x3e, 0xc4, 0xde, 0x65, 0x2e, 0xfa, + 0x60, 0x8c, 0x63, 0x3b, 0xa9, 0x56, 0x35, 0x3f, 0xc5, 0x4b, 0x40, 0x4d, + 0xb1, 0x7c, 0xca, 0x3c, 0xe1, 0x4e, 0x11, 0xa0, 0xef, 0x9a, 0x06, 0xde, + 0xc3, 0x34, 0xb4, 0x2a, 0xde, 0x63, 0x7c, 0xe5, 0xa3, 0xcd, 0x5f, 0x5a, + 0x93, 0xe5, 0xc7, 0x41, 0x49, 0xf2, 0x7b, 0x51, 0xa0, 0xf9, 0x7c, 0xc4, + 0xf3, 0x3f, 0x1a, 0x37, 0x1f, 0x4a, 0x70, 0x23, 0xda, 0x9c, 0x08, 0xf5, + 0xfd, 0x28, 0x15, 0x97, 0x72, 0x32, 0xfe, 0xd4, 0x9b, 0xfd, 0x8d, 0x4c, + 0x73, 0x40, 0x34, 0x5d, 0x15, 0xca, 0x88, 0x77, 0x13, 0xea, 0x28, 0x19, + 0x3f, 0xc5, 0x53, 0xf1, 0x9e, 0xd4, 0xb9, 0x1e, 0x94, 0x5c, 0x39, 0x11, + 0x5c, 0xac, 0x87, 0xa7, 0x34, 0x62, 0x4f, 0xf2, 0x2a, 0xd0, 0x6f, 0xf6, + 0x28, 0x24, 0x93, 0xd0, 0x8a, 0x5c, 0xc3, 0xe4, 0x45, 0x60, 0x1f, 0xfc, + 0x8a, 0x76, 0xd7, 0xf4, 0xcd, 0x58, 0x01, 0xce, 0x38, 0xfd, 0x28, 0x3b, + 0xc7, 0x6f, 0xd2, 0x8e, 0x61, 0xf2, 0x22, 0xb1, 0x49, 0x3d, 0x3f, 0x4a, + 0x40, 0x92, 0x1f, 0x4f, 0xca, 0xad, 0x1d, 0xfd, 0x76, 0xe6, 0x90, 0x07, + 0x3e, 0xd4, 0x5c, 0x5c, 0xa8, 0xaf, 0xe5, 0x49, 0x47, 0x93, 0x21, 0xed, + 0x56, 0x4e, 0xec, 0x64, 0x10, 0x7d, 0xa9, 0xb8, 0x91, 0xcf, 0xca, 0x40, + 0xa1, 0x36, 0x3b, 0x10, 0x1b, 0x79, 0x07, 0x7a, 0x8c, 0xc5, 0x28, 0xfe, + 0x2a, 0xb9, 0xe5, 0x49, 0xfc, 0x4c, 0x31, 0xf5, 0xa4, 0xda, 0x01, 0xeb, + 0xfa, 0xd3, 0x52, 0x26, 0xc5, 0x45, 0x8e, 0x4f, 0x5a, 0x50, 0x24, 0xf6, + 0xab, 0x46, 0x22, 0x46, 0x77, 0x62, 0xa2, 0xda, 0x4f, 0x19, 0x15, 0x49, + 0xdc, 0x39, 0x50, 0xc2, 0x1c, 0x75, 0x02, 0x93, 0x2d, 0xed, 0x4f, 0xd9, + 0x9e, 0x98, 0x34, 0x86, 0x22, 0x4f, 0x3f, 0xa5, 0x1a, 0x07, 0x2a, 0x1b, + 0xbb, 0x1d, 0xe8, 0xdd, 0x9e, 0x86, 0x94, 0xc0, 0x40, 0xce, 0x69, 0x04, + 0x47, 0x3c, 0x1a, 0x7a, 0x07, 0x20, 0x7c, 0xde, 0xb4, 0x61, 0xbb, 0x1f, + 0xd2, 0x95, 0x62, 0x79, 0x0e, 0x14, 0x12, 0x6a, 0xc2, 0xe9, 0xce, 0xdf, + 0x7d, 0xb1, 0xec, 0x2a, 0x5b, 0x48, 0x4a, 0x17, 0x2a, 0xfc, 0xe3, 0xa9, + 0xa0, 0x6f, 0x3d, 0x0f, 0xe9, 0x5a, 0x31, 0xd8, 0xc6, 0x9e, 0x84, 0xd4, + 0xcb, 0x02, 0x81, 0xfe, 0x15, 0x9b, 0xaa, 0x96, 0xc6, 0xbe, 0xc8, 0xc9, + 0xd9, 0x29, 0xff, 0x00, 0xf5, 0x52, 0x88, 0xa6, 0x3d, 0xab, 0x5f, 0xec, + 0xe0, 0xf6, 0x34, 0xe1, 0x6f, 0xed, 0x9a, 0x8f, 0x6d, 0xe4, 0x3f, 0x64, + 0x8c, 0x71, 0x6f, 0x39, 0xf4, 0xa7, 0x0b, 0x59, 0xcf, 0xa5, 0x6b, 0x79, + 0x18, 0xed, 0x4a, 0x23, 0x18, 0xe6, 0x97, 0xb6, 0x63, 0xf6, 0x48, 0xc8, + 0xfb, 0x24, 0xbe, 0xa2, 0x9d, 0xf6, 0x39, 0x3f, 0xbd, 0x5a, 0xa5, 0x40, + 0xfe, 0x1a, 0x43, 0xf4, 0xc5, 0x2f, 0x6a, 0xc3, 0xd9, 0xc4, 0xcb, 0xfb, + 0x14, 0x87, 0xbd, 0x2f, 0xd8, 0x9f, 0xd6, 0xb4, 0xbe, 0x5f, 0x53, 0x48, + 0x4a, 0x8a, 0x5e, 0xd6, 0x41, 0xec, 0xe2, 0x67, 0x7d, 0x89, 0xfd, 0x69, + 0x45, 0x93, 0xff, 0x00, 0x7a, 0xaf, 0x19, 0x93, 0xda, 0x9a, 0x6e, 0x50, + 0x7a, 0x53, 0xe7, 0x98, 0xb9, 0x60, 0x54, 0xfb, 0x13, 0x7a, 0xd1, 0xf6, + 0x17, 0xf5, 0xab, 0x2d, 0x7a, 0x82, 0x98, 0x6f, 0x96, 0x9f, 0x34, 0xc2, + 0xd0, 0x21, 0xfb, 0x13, 0xfa, 0xd2, 0x8b, 0x16, 0xee, 0x71, 0x52, 0x9b, + 0xe4, 0xf5, 0xa6, 0x1b, 0xd0, 0x7a, 0x0a, 0x77, 0x98, 0x7b, 0x82, 0x7d, + 0x83, 0xfd, 0xaa, 0x3e, 0xc2, 0x40, 0xfb, 0xc2, 0x9c, 0x97, 0x87, 0x3d, + 0x0d, 0x3d, 0xae, 0x49, 0x1f, 0x77, 0x35, 0x37, 0x9a, 0x17, 0xbb, 0xd8, + 0x84, 0x59, 0xfb, 0xd3, 0xc5, 0x8e, 0x7f, 0xfd, 0x74, 0xbe, 0x73, 0x7f, + 0x76, 0x83, 0x3b, 0xff, 0x00, 0x77, 0x14, 0x5e, 0x5d, 0xc7, 0x68, 0xf6, + 0x13, 0xec, 0x03, 0xbf, 0x1f, 0x4a, 0x3e, 0xc0, 0x87, 0xf8, 0xff, 0x00, + 0x5a, 0x6b, 0xca, 0xe0, 0xd2, 0x89, 0x1d, 0x97, 0xb6, 0x68, 0xbc, 0xfb, + 0x8a, 0xd1, 0xec, 0x2f, 0xf6, 0x68, 0xfe, 0xf1, 0xa4, 0x3a, 0x70, 0x1f, + 0xc4, 0x4d, 0x23, 0x34, 0xea, 0x33, 0x81, 0x8a, 0x8c, 0x5d, 0x4a, 0xa6, + 0x9a, 0xe7, 0x7d, 0x43, 0xdd, 0xec, 0x3f, 0xec, 0x18, 0x1d, 0x4d, 0x27, + 0xd8, 0x97, 0xd6, 0xa2, 0x92, 0xfa, 0x6c, 0xe3, 0x1c, 0x50, 0x97, 0xcc, + 0x1f, 0x0c, 0x3f, 0x4a, 0xab, 0x4f, 0xb9, 0x2d, 0xc5, 0x6e, 0x89, 0xd6, + 0xc0, 0x1e, 0xf4, 0xbf, 0x61, 0x51, 0xdf, 0xf5, 0xa5, 0x32, 0x97, 0x00, + 0xaf, 0xf2, 0xa4, 0x0c, 0xe2, 0xa2, 0xf2, 0xee, 0x3b, 0x2e, 0xc2, 0x8b, + 0x15, 0xa7, 0x7d, 0x81, 0x45, 0x21, 0x95, 0x87, 0x56, 0x20, 0x52, 0xf9, + 0x8e, 0xc3, 0x34, 0xaf, 0x2e, 0xe0, 0xa2, 0x9f, 0x41, 0xbf, 0x60, 0x1e, + 0xa6, 0x9a, 0x6c, 0xb1, 0xdf, 0xf4, 0xa5, 0xf3, 0x1f, 0x3c, 0x53, 0x84, + 0x8d, 0x8e, 0x79, 0xa7, 0x79, 0x77, 0x1d, 0x92, 0xe8, 0x30, 0x58, 0xe7, + 0xf8, 0xa9, 0xc3, 0x4f, 0x27, 0xf8, 0xa9, 0xc2, 0x72, 0x0f, 0x61, 0xf8, + 0x53, 0xc5, 0xc9, 0x3d, 0x30, 0x7f, 0x0a, 0x5c, 0xd3, 0x0f, 0x77, 0xb1, + 0x17, 0xf6, 0x79, 0xfe, 0xf5, 0x27, 0xf6, 0x7f, 0xfb, 0x55, 0x21, 0x9d, + 0xe9, 0x3c, 0xe6, 0xff, 0x00, 0x26, 0x8e, 0x69, 0xf7, 0x15, 0xa3, 0xd8, + 0x8f, 0xfb, 0x3c, 0x9f, 0xe2, 0xa0, 0xd8, 0x1f, 0x5a, 0x79, 0xba, 0x60, + 0x7e, 0xee, 0x68, 0x17, 0x4c, 0x7b, 0x51, 0x79, 0x85, 0xa3, 0xd8, 0x8f, + 0xec, 0x27, 0xd6, 0x93, 0xec, 0x2d, 0xeb, 0x53, 0x7d, 0xa8, 0x8e, 0xa2, + 0x8f, 0xb6, 0x29, 0xff, 0x00, 0xf5, 0x51, 0xcd, 0x30, 0xb4, 0x48, 0xbe, + 0xc2, 0xde, 0xb4, 0x9f, 0x61, 0x7a, 0xb0, 0x2e, 0xe3, 0xf5, 0xa7, 0x8b, + 0xa8, 0xff, 0x00, 0xbc, 0x28, 0xe7, 0x98, 0x5a, 0x05, 0x4f, 0xb0, 0xbd, + 0x27, 0xd8, 0x9e, 0xae, 0x8b, 0xa8, 0xff, 0x00, 0xbc, 0x29, 0xc2, 0x74, + 0x6e, 0x84, 0x52, 0xf6, 0x93, 0x2b, 0x96, 0x2c, 0xa1, 0xf6, 0x37, 0x1f, + 0xfe, 0xba, 0x4f, 0xb2, 0x37, 0xf9, 0x35, 0xa7, 0xb8, 0x1e, 0xe2, 0x8e, + 0x3d, 0x45, 0x2f, 0x6b, 0x21, 0xf2, 0x44, 0xcc, 0x36, 0xcd, 0x49, 0xf6, + 0x76, 0x1d, 0x8d, 0x6a, 0x00, 0x33, 0xda, 0x97, 0x60, 0x23, 0xa0, 0xa3, + 0xda, 0xb1, 0x72, 0x23, 0x27, 0xc8, 0x23, 0xb3, 0x52, 0x79, 0x6a, 0x3a, + 0x96, 0x1f, 0x85, 0x6a, 0xf9, 0x4b, 0x9e, 0x40, 0xa3, 0xc8, 0x53, 0xd3, + 0xf9, 0xd3, 0xf6, 0xa1, 0xec, 0xd1, 0x98, 0x23, 0x42, 0x7e, 0xf1, 0xa0, + 0xc6, 0xa3, 0xf8, 0xab, 0x4f, 0xc8, 0x1e, 0x82, 0x8f, 0x25, 0x4f, 0x55, + 0xa5, 0xed, 0x44, 0xe9, 0x99, 0x9e, 0x58, 0xec, 0x41, 0xa0, 0x44, 0x4f, + 0x6a, 0xd0, 0x68, 0x15, 0x7f, 0x82, 0xa3, 0x6b, 0x40, 0xfd, 0x09, 0x5a, + 0xa5, 0x50, 0x9f, 0x66, 0xca, 0x7e, 0x4f, 0x3d, 0x68, 0xf2, 0x57, 0xd6, + 0xa7, 0x36, 0x72, 0x01, 0xc1, 0x0d, 0x55, 0x8e, 0xf8, 0x98, 0xe5, 0x08, + 0x35, 0x6a, 0x57, 0xd9, 0x99, 0xb4, 0xd6, 0xe8, 0x71, 0x85, 0x31, 0xd4, + 0xd3, 0x76, 0x28, 0x3d, 0x4d, 0x31, 0xe5, 0x72, 0x3f, 0xc6, 0x9a, 0x25, + 0x65, 0x00, 0x1a, 0xb4, 0x99, 0x09, 0xa6, 0x4c, 0xa3, 0x6a, 0xf2, 0x9c, + 0xd2, 0x00, 0xbc, 0xe4, 0x73, 0x52, 0x87, 0x60, 0x01, 0xce, 0x69, 0xea, + 0xa7, 0x19, 0xfe, 0x95, 0x0d, 0x9a, 0x58, 0x84, 0x38, 0xe9, 0x82, 0x7e, + 0xb4, 0x36, 0xde, 0x80, 0xd5, 0x85, 0x0a, 0x41, 0x06, 0x9a, 0x56, 0x30, + 0x73, 0xe9, 0xf9, 0x54, 0xdc, 0x76, 0x21, 0x2e, 0xaa, 0x38, 0x1b, 0xbe, + 0xb4, 0x2c, 0xdc, 0x7d, 0xde, 0x6a, 0x60, 0xab, 0x27, 0x38, 0xe9, 0x48, + 0xf1, 0xae, 0xde, 0x9c, 0xd3, 0xba, 0x1d, 0x8a, 0xc4, 0xe7, 0x92, 0x09, + 0xa4, 0xe4, 0x0f, 0xbb, 0x56, 0x76, 0x80, 0xa3, 0x20, 0xb1, 0xa4, 0x28, + 0x07, 0xb5, 0x52, 0x90, 0xac, 0x57, 0x0c, 0x0f, 0x5a, 0x53, 0xb7, 0x19, + 0x03, 0x35, 0x23, 0x44, 0x3a, 0xe7, 0x8f, 0x7a, 0x43, 0xb4, 0x77, 0x34, + 0xee, 0x98, 0xb4, 0x22, 0x08, 0x1c, 0xf4, 0xa4, 0x31, 0x8f, 0x6a, 0x57, + 0x75, 0xc7, 0xa7, 0xbd, 0x22, 0x23, 0x4b, 0xf7, 0x41, 0x23, 0xd7, 0x15, + 0x44, 0x87, 0x96, 0x0f, 0xbd, 0x34, 0x80, 0xbd, 0x2a, 0xc2, 0xe9, 0xd2, + 0x37, 0x56, 0x2b, 0x52, 0xa6, 0x9a, 0xaa, 0x72, 0xc4, 0xb7, 0xd6, 0xa5, + 0xce, 0x2b, 0xa8, 0xd4, 0x24, 0xfa, 0x19, 0xe4, 0xfb, 0xfe, 0x42, 0x81, + 0xbd, 0xba, 0x02, 0x6b, 0x61, 0x2d, 0x23, 0x5f, 0xe1, 0x15, 0x20, 0x45, + 0x5e, 0xd5, 0x3e, 0xd9, 0x74, 0x46, 0x8a, 0x97, 0x76, 0x63, 0x2c, 0x33, + 0xbf, 0xf0, 0x71, 0x52, 0x2d, 0x8c, 0x87, 0xa8, 0xc5, 0x6a, 0xef, 0x19, + 0xed, 0x49, 0xe6, 0x6d, 0x39, 0x38, 0xa9, 0xf6, 0xb2, 0xe8, 0x8a, 0xf6, + 0x71, 0xea, 0x67, 0x8d, 0x31, 0x8f, 0x5e, 0x29, 0xc3, 0x4a, 0x1d, 0xd8, + 0x9a, 0xb9, 0x24, 0xf8, 0x3c, 0x1e, 0x29, 0x86, 0xec, 0x0e, 0xfc, 0x52, + 0xe7, 0x9b, 0x17, 0x24, 0x11, 0x02, 0xe9, 0x6a, 0x0e, 0x77, 0x1f, 0xce, + 0xa4, 0xfb, 0x0c, 0x63, 0xf8, 0xc9, 0x1f, 0x5a, 0x1a, 0xe4, 0x27, 0x38, + 0x38, 0xa4, 0x37, 0x44, 0x8e, 0x06, 0x68, 0xbc, 0xdf, 0x50, 0xb4, 0x17, + 0x41, 0xe2, 0xd2, 0x14, 0xa7, 0xfd, 0x9a, 0x32, 0x38, 0xa8, 0xa3, 0x91, + 0x98, 0x73, 0x91, 0x4c, 0x12, 0xb6, 0x48, 0xdc, 0x31, 0x4a, 0xd2, 0xee, + 0x57, 0x32, 0xec, 0x5a, 0x8a, 0xde, 0x21, 0xc1, 0x00, 0xd0, 0xd1, 0x42, + 0x3a, 0x00, 0x0d, 0x54, 0x67, 0x90, 0x70, 0x32, 0x7d, 0xc5, 0x47, 0x23, + 0x1c, 0xe7, 0xe6, 0x0d, 0x47, 0x2b, 0x6f, 0x71, 0x73, 0x79, 0x1a, 0x28, + 0x10, 0x0c, 0x9c, 0x7e, 0x54, 0x0f, 0x28, 0x02, 0x40, 0x1f, 0x4a, 0xcf, + 0x8e, 0xe1, 0xc7, 0x04, 0x64, 0x54, 0xe9, 0x32, 0xbf, 0x03, 0xad, 0x27, + 0x06, 0x87, 0xcd, 0x72, 0x7c, 0x44, 0x4e, 0x73, 0x46, 0x63, 0x07, 0x8e, + 0x6a, 0x27, 0x08, 0x07, 0x03, 0x14, 0xee, 0xa0, 0x52, 0xb1, 0x4a, 0x4c, + 0x97, 0xcc, 0x55, 0xc6, 0x54, 0x62, 0x81, 0x3c, 0x7c, 0x71, 0x50, 0x95, + 0xcf, 0x1d, 0x69, 0xbb, 0x01, 0xfa, 0x52, 0xe5, 0x41, 0xcc, 0x4e, 0xed, + 0x13, 0x74, 0xe4, 0x9a, 0x7a, 0x04, 0x51, 0xfe, 0x35, 0x57, 0x6a, 0x80, + 0x00, 0xed, 0x40, 0x24, 0x8f, 0x9b, 0xa7, 0xa5, 0x3e, 0x51, 0x73, 0x3d, + 0x89, 0x64, 0x68, 0xf3, 0xc0, 0x14, 0xa5, 0x62, 0xe3, 0x26, 0xa8, 0x96, + 0xf9, 0xfe, 0x50, 0x7a, 0xd2, 0xbe, 0x48, 0x3c, 0x83, 0xeb, 0x57, 0xc9, + 0xe6, 0x4f, 0x3b, 0x2e, 0x97, 0x87, 0xa0, 0x22, 0x8c, 0x45, 0xea, 0x33, + 0x59, 0xc1, 0x80, 0x18, 0x03, 0x34, 0xaa, 0x0e, 0xec, 0x93, 0xc5, 0x3e, + 0x4f, 0x31, 0xf3, 0xf9, 0x1a, 0x1b, 0x51, 0x8f, 0x3b, 0x47, 0xe1, 0x48, + 0xd0, 0xc6, 0x4f, 0x01, 0x7f, 0x2a, 0xa6, 0xbf, 0x33, 0x67, 0xb5, 0x21, + 0x93, 0x07, 0xe5, 0xe7, 0xde, 0x8e, 0x47, 0xdc, 0x7c, 0xfe, 0x45, 0xc1, + 0x6a, 0x87, 0xae, 0x0f, 0xe1, 0x4b, 0xf6, 0x58, 0xfa, 0x6c, 0x15, 0x47, + 0xe7, 0xea, 0x5c, 0xad, 0x28, 0x79, 0x09, 0xf9, 0x49, 0x3e, 0xe4, 0xd1, + 0xca, 0xfb, 0x87, 0x32, 0xec, 0x5c, 0x36, 0x31, 0x9f, 0xe1, 0x02, 0x9a, + 0x74, 0xe8, 0x8f, 0x63, 0xf8, 0x54, 0x40, 0xc8, 0x06, 0x59, 0xe8, 0x37, + 0x12, 0x2f, 0xa5, 0x09, 0x4b, 0xa3, 0x0f, 0x77, 0xaa, 0x1c, 0x74, 0xd8, + 0x89, 0xea, 0x7f, 0x3a, 0x3f, 0xb2, 0x93, 0x1c, 0x33, 0x52, 0x0b, 0xc7, + 0xee, 0xa0, 0xd3, 0xd6, 0xff, 0x00, 0x1d, 0x46, 0x29, 0xfe, 0xf3, 0xb8, + 0xbd, 0xce, 0xc4, 0x2d, 0xa6, 0x11, 0xf7, 0x5c, 0x8f, 0xc2, 0x8f, 0xec, + 0xe9, 0x3f, 0xbf, 0x9a, 0x9f, 0xfb, 0x46, 0x3f, 0x5c, 0x53, 0xd6, 0xfe, + 0x37, 0xe8, 0xe2, 0x9f, 0x35, 0x41, 0xda, 0x99, 0x4c, 0xd9, 0x4a, 0x3a, + 0x28, 0x3f, 0x8d, 0x27, 0x95, 0x32, 0xf5, 0x87, 0x23, 0xd8, 0xe6, 0xb4, + 0x96, 0x58, 0xe4, 0xe8, 0x6a, 0x40, 0xa8, 0x7b, 0xd2, 0xf6, 0x8d, 0x6e, + 0x83, 0x92, 0x2f, 0x63, 0x19, 0xa6, 0xd9, 0xc3, 0x44, 0xc3, 0xf0, 0xa4, + 0x17, 0x8b, 0xf4, 0xfa, 0xd6, 0xd7, 0x94, 0x8d, 0xdb, 0x34, 0xd7, 0xb2, + 0x86, 0x4e, 0xb1, 0x83, 0xf8, 0x53, 0x55, 0x23, 0xd5, 0x0b, 0xd9, 0xbe, + 0x8c, 0xc9, 0x37, 0x8a, 0x3f, 0x8b, 0x26, 0x9b, 0xf6, 0xaf, 0x71, 0x8a, + 0xd0, 0x93, 0x46, 0xb7, 0x7e, 0x40, 0x28, 0x7d, 0x8d, 0x54, 0x7d, 0x16, + 0x45, 0xc9, 0x8a, 0x4c, 0xff, 0x00, 0xbd, 0x5a, 0xc6, 0x54, 0xd9, 0x93, + 0x55, 0x11, 0x1f, 0xda, 0x48, 0xe8, 0x69, 0x7e, 0xd8, 0x48, 0xf7, 0xaa, + 0x93, 0xda, 0xdc, 0x42, 0x7e, 0x74, 0xe3, 0xd4, 0x54, 0x02, 0x76, 0x1e, + 0xb5, 0xd0, 0xa9, 0xc5, 0xab, 0xa3, 0x09, 0x55, 0x94, 0x77, 0x46, 0x8f, + 0xdb, 0x1b, 0x8e, 0x4d, 0x0d, 0x72, 0x4f, 0x6e, 0xbe, 0xf5, 0x41, 0xa5, + 0x27, 0xbd, 0x0a, 0xe5, 0x87, 0x5c, 0x62, 0x9f, 0xb3, 0x42, 0xf6, 0xaf, + 0x62, 0xf0, 0x94, 0x8e, 0x9f, 0xce, 0x81, 0x31, 0xcf, 0x27, 0xf2, 0xaa, + 0x7b, 0x8b, 0x0e, 0xb9, 0xa0, 0x48, 0xcb, 0x8e, 0x68, 0xe4, 0x43, 0x75, + 0x19, 0x75, 0x66, 0x6c, 0xf4, 0x18, 0xf4, 0x34, 0x82, 0x52, 0xaf, 0xc6, + 0x05, 0x56, 0x25, 0x98, 0x06, 0x2e, 0x31, 0x4c, 0x0d, 0xc9, 0x3b, 0xb8, + 0xa4, 0xa2, 0x98, 0x73, 0xcb, 0x62, 0xff, 0x00, 0xda, 0x19, 0x4e, 0x72, + 0xbf, 0x4a, 0x85, 0xa7, 0x2e, 0xdd, 0x47, 0xe1, 0x55, 0x8b, 0xf2, 0x79, + 0xcd, 0x34, 0xed, 0xe3, 0x93, 0x9a, 0x6a, 0x09, 0x12, 0xe6, 0xcb, 0x7e, + 0x69, 0x03, 0x02, 0x94, 0x1c, 0x9e, 0x5b, 0x15, 0x49, 0x9c, 0x01, 0x80, + 0x73, 0x4c, 0xdd, 0x9e, 0xf5, 0x7c, 0x80, 0xea, 0x58, 0xd2, 0x39, 0x4e, + 0x72, 0x0d, 0x4b, 0x69, 0x04, 0x97, 0x6f, 0xc0, 0xca, 0x8e, 0xa4, 0x56, + 0x51, 0x99, 0xb1, 0x8c, 0x9e, 0x7b, 0xd6, 0xfd, 0x85, 0xca, 0xdb, 0x5b, + 0xa8, 0x24, 0x03, 0xde, 0xb9, 0xea, 0x27, 0x15, 0xa6, 0xe5, 0xc2, 0x7c, + 0xee, 0xc5, 0xe8, 0xa0, 0x58, 0x97, 0x68, 0x00, 0x1a, 0x77, 0xd9, 0xf7, + 0x75, 0xa8, 0x06, 0xa9, 0x19, 0x19, 0xdc, 0x06, 0x29, 0xc3, 0x53, 0x4c, + 0x64, 0xb7, 0x15, 0xc1, 0xcb, 0x33, 0xb5, 0x4e, 0x2b, 0x62, 0x71, 0x6e, + 0xab, 0x47, 0x0a, 0x6a, 0xbf, 0xdb, 0xa3, 0x73, 0x9d, 0xdc, 0x53, 0xfe, + 0xd5, 0x08, 0xfe, 0x2c, 0x54, 0xb8, 0xcb, 0xa9, 0x5c, 0xf1, 0xd8, 0x93, + 0x00, 0xf5, 0xa4, 0x24, 0xd5, 0x3b, 0x8d, 0x56, 0x08, 0x46, 0x37, 0x6e, + 0x6f, 0x41, 0x59, 0x97, 0x1a, 0xd4, 0xb2, 0x64, 0x46, 0x02, 0x8f, 0x5a, + 0xd2, 0x34, 0x65, 0x2e, 0x86, 0x72, 0xab, 0x18, 0x9b, 0xa6, 0x60, 0xa3, + 0x93, 0x8a, 0xaf, 0x2e, 0xa1, 0x1a, 0xff, 0x00, 0x16, 0x7e, 0x95, 0xcf, + 0x35, 0xd4, 0xaf, 0xc9, 0x72, 0x4d, 0x20, 0x95, 0xc7, 0xa9, 0xad, 0xd6, + 0x19, 0x2d, 0xd9, 0x97, 0xb7, 0xec, 0x8d, 0x99, 0x35, 0x55, 0xec, 0x31, + 0xf5, 0xa8, 0x9b, 0x52, 0x72, 0x38, 0x20, 0x56, 0x7a, 0xcf, 0xeb, 0x4f, + 0xf3, 0xd4, 0xfa, 0x55, 0xfb, 0x28, 0xae, 0x81, 0xce, 0xdf, 0x52, 0xc9, + 0xb9, 0x91, 0xf9, 0x2f, 0xfa, 0xd0, 0xac, 0xcd, 0xef, 0x55, 0x96, 0x48, + 0x89, 0xe9, 0x4e, 0xde, 0x9d, 0x9b, 0x6d, 0x3e, 0x5e, 0xc2, 0xe6, 0x26, + 0x64, 0x3d, 0xc5, 0x2a, 0xc6, 0xbd, 0x0d, 0x42, 0x18, 0xf6, 0x7f, 0xce, + 0x97, 0xcd, 0x7e, 0xf8, 0x3f, 0x8d, 0x2b, 0x32, 0xae, 0x89, 0xbc, 0xb5, + 0xec, 0x68, 0x31, 0xa8, 0xfe, 0x21, 0x50, 0x2c, 0xa7, 0x3f, 0x32, 0x93, + 0x4f, 0x13, 0x2f, 0xff, 0x00, 0x58, 0xd4, 0xd9, 0x85, 0xe2, 0x3c, 0x20, + 0xeb, 0x80, 0x7f, 0x0a, 0x32, 0x3f, 0xbb, 0x49, 0xbd, 0x08, 0xe0, 0xed, + 0x3e, 0xc6, 0x90, 0x4c, 0x07, 0x1b, 0xf2, 0x7d, 0xe9, 0x59, 0x85, 0xd0, + 0xf3, 0x2c, 0x6a, 0x3e, 0xee, 0x0f, 0xd7, 0x14, 0x82, 0x7e, 0x38, 0xc8, + 0x1e, 0xf4, 0x2c, 0xe3, 0x1c, 0xa6, 0xef, 0xc2, 0x82, 0x03, 0x8f, 0x96, + 0x12, 0x3e, 0x82, 0x95, 0x97, 0x51, 0xfa, 0x0f, 0x49, 0x83, 0x8a, 0x71, + 0x6f, 0x46, 0xc1, 0xf7, 0xa8, 0x84, 0x33, 0x7f, 0xcf, 0x3c, 0xad, 0x4a, + 0x2d, 0x2e, 0x36, 0xe0, 0x20, 0xfc, 0x6a, 0x5f, 0x2a, 0xea, 0x56, 0xaf, + 0xa0, 0xd9, 0x32, 0x3d, 0x0d, 0x20, 0x95, 0x97, 0x96, 0x03, 0x14, 0xf4, + 0xb1, 0xba, 0xce, 0x70, 0x00, 0xa5, 0xfe, 0xcd, 0x9d, 0x87, 0x2c, 0xb9, + 0xa3, 0x9a, 0x3d, 0x58, 0x28, 0xcb, 0xb0, 0xef, 0x33, 0x28, 0x3d, 0x29, + 0x81, 0x97, 0x24, 0x02, 0x3f, 0x2a, 0x97, 0xfb, 0x36, 0x65, 0x03, 0x74, + 0x83, 0xe9, 0x4f, 0x4d, 0x39, 0xf9, 0xcb, 0x60, 0x7d, 0x2a, 0x39, 0xa2, + 0xba, 0x8d, 0x46, 0x5d, 0x8a, 0xb2, 0x44, 0x31, 0xc0, 0xc9, 0xaa, 0xcf, + 0x6e, 0x59, 0x49, 0x39, 0x1e, 0xf5, 0xa4, 0x34, 0xf3, 0x92, 0x3c, 0xcf, + 0xd2, 0x85, 0xd2, 0xf7, 0x7f, 0xcb, 0x4c, 0x0a, 0xa5, 0x51, 0x2e, 0xa2, + 0x70, 0x93, 0xe8, 0x55, 0xb3, 0x91, 0x86, 0x14, 0xd5, 0xa6, 0x3c, 0x74, + 0xfc, 0x68, 0x1a, 0x46, 0xc6, 0x25, 0x65, 0x39, 0xf7, 0xa9, 0x1a, 0xc9, + 0x87, 0x1e, 0x69, 0x26, 0xa1, 0xca, 0x2d, 0xdd, 0x30, 0x8c, 0x66, 0x95, + 0x9a, 0x23, 0x45, 0x56, 0xef, 0xcd, 0x2e, 0x36, 0x1c, 0x75, 0xfa, 0x52, + 0xfd, 0x82, 0x40, 0xd9, 0xf3, 0x70, 0x29, 0xc6, 0xcd, 0xd8, 0x7d, 0xfc, + 0x7e, 0x15, 0x17, 0x5d, 0xca, 0xb3, 0xec, 0x44, 0x48, 0xce, 0x47, 0xeb, + 0x46, 0x4b, 0xd4, 0x8d, 0x64, 0xe0, 0xe0, 0x3f, 0x3f, 0x4a, 0x5f, 0xb1, + 0xcb, 0xd9, 0x85, 0x3e, 0x68, 0xf7, 0x12, 0x4f, 0xb1, 0x10, 0x4e, 0x7e, + 0x6a, 0x38, 0x1c, 0x53, 0xfe, 0xc5, 0x31, 0x3c, 0xb2, 0xd0, 0x6d, 0x27, + 0x19, 0xc6, 0x0d, 0x17, 0x5d, 0xc7, 0x67, 0xd8, 0x4e, 0x08, 0xe6, 0xa2, + 0x67, 0x45, 0x3c, 0xf1, 0xf5, 0xa1, 0xed, 0xee, 0x87, 0x01, 0x47, 0xd6, + 0xaa, 0xb5, 0x9c, 0xe4, 0x92, 0xc8, 0x49, 0xab, 0x8a, 0x4f, 0xa9, 0x2e, + 0xeb, 0xa1, 0x33, 0xdc, 0xc6, 0xa3, 0xb9, 0xfa, 0x54, 0x26, 0xe9, 0x98, + 0xf0, 0xb8, 0x14, 0xd6, 0x82, 0x65, 0xff, 0x00, 0x96, 0x64, 0x53, 0x4a, + 0x38, 0xfb, 0xca, 0x45, 0x6c, 0xa3, 0x13, 0x26, 0xd8, 0xf3, 0x23, 0x9e, + 0xa4, 0x0a, 0x66, 0xec, 0xf7, 0xa6, 0x93, 0x8e, 0xb9, 0x14, 0x02, 0x2a, + 0xac, 0x4d, 0xc7, 0x6d, 0x07, 0xab, 0x53, 0x4c, 0x43, 0xfb, 0xc4, 0xd3, + 0x8e, 0xde, 0xd4, 0x0c, 0x81, 0xc0, 0xe6, 0x80, 0xb0, 0x82, 0x35, 0xfe, + 0xf1, 0x14, 0xb8, 0xdb, 0xd0, 0x9a, 0x72, 0xa9, 0x3d, 0x69, 0xdb, 0x30, + 0x38, 0x1f, 0x9d, 0x2b, 0x85, 0x91, 0x1e, 0xe7, 0xec, 0x58, 0x7e, 0x34, + 0xe5, 0x9e, 0x55, 0xfe, 0x26, 0xfc, 0x69, 0xe2, 0x22, 0x6a, 0x51, 0x1f, + 0xcb, 0xcf, 0x35, 0x2d, 0xa0, 0xe5, 0x64, 0x42, 0xf6, 0x61, 0xdc, 0x63, + 0xde, 0xa7, 0x8b, 0x50, 0x3d, 0x59, 0x7f, 0x2a, 0x8c, 0xc2, 0x4f, 0xa5, + 0x02, 0x36, 0x4e, 0x98, 0x35, 0x2d, 0x45, 0x97, 0xef, 0x2e, 0xa5, 0xd4, + 0xbe, 0x8d, 0xbd, 0x8f, 0xbd, 0x4c, 0xb3, 0x2b, 0x0e, 0x08, 0x35, 0x9e, + 0xb1, 0x13, 0xdc, 0xe6, 0x90, 0x2b, 0x06, 0xe7, 0x8a, 0xc9, 0xc1, 0x74, + 0x2d, 0x4e, 0x48, 0xd4, 0x07, 0xde, 0x9c, 0x39, 0xe6, 0xb3, 0x56, 0x49, + 0x14, 0x9c, 0x73, 0x8e, 0xc6, 0xa7, 0x8e, 0xec, 0x1c, 0x6e, 0x18, 0x35, + 0x93, 0x83, 0x34, 0x53, 0x4c, 0xb7, 0x8f, 0x6a, 0x42, 0xb4, 0xb1, 0xc8, + 0xae, 0x06, 0x0e, 0x69, 0xf8, 0x3d, 0xeb, 0x3d, 0x8d, 0x6d, 0x72, 0x23, + 0x80, 0x40, 0x14, 0x8d, 0x10, 0x7e, 0x0f, 0x35, 0x31, 0x5e, 0x39, 0x14, + 0xdd, 0x8c, 0x79, 0xfd, 0x28, 0xb8, 0x9a, 0x32, 0xee, 0xec, 0x8a, 0x9c, + 0x8e, 0x05, 0x57, 0x2a, 0x36, 0xe0, 0x02, 0xc6, 0xb7, 0x0a, 0x6e, 0x5e, + 0x4f, 0xe1, 0x59, 0x97, 0x10, 0x9b, 0x77, 0x38, 0xe8, 0x7b, 0xd7, 0x4c, + 0x27, 0x7d, 0x19, 0xcf, 0x38, 0x5b, 0x52, 0x3d, 0xa4, 0x72, 0x79, 0xa9, + 0x55, 0x49, 0x19, 0xdd, 0x4e, 0xf2, 0x80, 0x25, 0x4f, 0xad, 0x2a, 0xc4, + 0x06, 0x71, 0xd3, 0xeb, 0x4d, 0xc8, 0x39, 0x75, 0x00, 0xb9, 0x1d, 0x7f, + 0x1a, 0x6b, 0x30, 0x55, 0x39, 0x19, 0xa9, 0x02, 0x0c, 0x7a, 0x0a, 0x63, + 0x46, 0xa5, 0x81, 0xc7, 0xe1, 0x52, 0x9a, 0x2a, 0xc3, 0x55, 0xba, 0x00, + 0x30, 0x3d, 0xa9, 0x71, 0x9e, 0x2a, 0x5f, 0x2c, 0x1f, 0x6a, 0x36, 0x60, + 0xf4, 0xe2, 0x8b, 0x85, 0x88, 0x58, 0x85, 0x15, 0x1c, 0xac, 0x31, 0x92, + 0x2a, 0x69, 0x11, 0x71, 0xde, 0xa9, 0xbe, 0xe7, 0x7d, 0x8b, 0xc9, 0x35, + 0xa4, 0x75, 0x21, 0x8c, 0x77, 0xcf, 0x38, 0xe2, 0x9c, 0x96, 0xcf, 0x3e, + 0x08, 0x05, 0x57, 0xd6, 0xae, 0xda, 0xe9, 0xe1, 0x00, 0x67, 0x3b, 0x9b, + 0xd3, 0xb5, 0x5b, 0x0a, 0x17, 0xa5, 0x29, 0x54, 0x4b, 0x48, 0x94, 0xa9, + 0x5f, 0x59, 0x15, 0x21, 0xd3, 0xa3, 0x5c, 0x16, 0x1b, 0x8f, 0xbd, 0x5a, + 0x11, 0x2a, 0x8e, 0x00, 0x14, 0xa5, 0xbd, 0xaa, 0x26, 0x97, 0x0d, 0xcf, + 0x4a, 0xc5, 0xb9, 0x4b, 0x73, 0x6b, 0x28, 0x92, 0x92, 0x16, 0x9a, 0xce, + 0x07, 0x5e, 0x2a, 0xa4, 0xb7, 0x0c, 0x78, 0x1c, 0x7d, 0x6a, 0x02, 0xc5, + 0xb9, 0x27, 0xf3, 0xab, 0x50, 0xee, 0x66, 0xe7, 0xd8, 0xb5, 0x25, 0xd2, + 0x8e, 0x3a, 0xfd, 0x2a, 0x13, 0x76, 0x4f, 0x00, 0x63, 0xeb, 0x51, 0x85, + 0xc0, 0x24, 0xf3, 0x4b, 0x93, 0x8e, 0xc7, 0xeb, 0x5a, 0x28, 0xa4, 0x66, + 0xe6, 0xc9, 0x32, 0xcf, 0xce, 0x7f, 0x0a, 0x63, 0xa1, 0x6e, 0xe6, 0x90, + 0x38, 0x03, 0x07, 0x8a, 0x42, 0xdf, 0xed, 0x13, 0xf5, 0xa6, 0x91, 0x3b, + 0x8a, 0x23, 0x61, 0xc6, 0x4d, 0x21, 0x00, 0x75, 0x1d, 0x3d, 0x28, 0xf3, + 0x54, 0x0c, 0x1e, 0xb4, 0x86, 0xe0, 0x6d, 0xce, 0x05, 0x3d, 0x42, 0xe8, + 0x77, 0x0e, 0xbc, 0x64, 0x7d, 0x68, 0x03, 0xcb, 0xce, 0x4f, 0x5a, 0x8f, + 0xcf, 0xc9, 0xc0, 0x1c, 0x7b, 0x51, 0xb1, 0xe5, 0x20, 0x2c, 0x6c, 0x4f, + 0xad, 0x3b, 0x77, 0x0b, 0xb7, 0xb0, 0xf5, 0x97, 0x2c, 0x39, 0xa9, 0x37, + 0xa9, 0x3c, 0x63, 0x3e, 0xb4, 0xd5, 0xd3, 0xae, 0x1c, 0x0f, 0x97, 0x1f, + 0x5a, 0x99, 0x34, 0x69, 0x3b, 0xb0, 0x1f, 0x8d, 0x43, 0x70, 0x5d, 0x4a, + 0x51, 0x9b, 0xe8, 0x44, 0xcc, 0x59, 0x0e, 0x08, 0xcf, 0xb5, 0x44, 0x65, + 0xd9, 0x8c, 0xf2, 0x7d, 0xeb, 0x41, 0x74, 0x72, 0xad, 0xcc, 0x84, 0xd3, + 0x86, 0x8f, 0x17, 0x72, 0xc6, 0xa7, 0xda, 0x41, 0x75, 0x2b, 0x92, 0x66, + 0x64, 0xb2, 0x82, 0xa1, 0x87, 0x07, 0xda, 0x99, 0xe6, 0x28, 0xc1, 0x0d, + 0xf3, 0x77, 0xad, 0xa5, 0xd2, 0xa0, 0x1d, 0x54, 0x9a, 0x78, 0xd3, 0x62, + 0x43, 0xfe, 0xac, 0x52, 0xf6, 0xd0, 0x41, 0xec, 0xe5, 0xdc, 0xc6, 0xfb, + 0x50, 0x73, 0x83, 0x91, 0xf4, 0xa7, 0x7d, 0xa4, 0x8e, 0x0e, 0x70, 0x3b, + 0xe2, 0xb6, 0x85, 0x9c, 0x3c, 0x7e, 0xed, 0x45, 0x29, 0x82, 0x3c, 0xe3, + 0x62, 0xe3, 0xe9, 0x53, 0xed, 0xa3, 0xd8, 0xa5, 0x4d, 0xf5, 0x66, 0x3b, + 0x4f, 0xdc, 0x02, 0x7d, 0xe9, 0xad, 0x72, 0x41, 0xc0, 0x52, 0x3e, 0xa2, + 0xb7, 0x56, 0x38, 0x95, 0x70, 0x54, 0x50, 0x7c, 0xb0, 0x7e, 0xe0, 0xcd, + 0x4f, 0xb5, 0x5d, 0x87, 0xec, 0xf5, 0xdc, 0xc1, 0x77, 0x7c, 0x02, 0x17, + 0x3e, 0xa2, 0x8f, 0x30, 0xe4, 0x7c, 0x9f, 0x9f, 0x6a, 0xdd, 0x12, 0x44, + 0x0f, 0x28, 0x29, 0x0c, 0x90, 0xe3, 0x3b, 0x47, 0x14, 0xfd, 0xaf, 0xf7, + 0x43, 0xd9, 0xf9, 0x98, 0x08, 0xe4, 0x13, 0x90, 0xc2, 0x98, 0xd2, 0x15, + 0x3c, 0x06, 0xc5, 0x74, 0x5b, 0xa2, 0xfe, 0xe2, 0xe2, 0x9a, 0x4c, 0x3f, + 0xdc, 0x15, 0x4a, 0xb7, 0x91, 0x3e, 0xcf, 0xfb, 0xc7, 0x3b, 0x23, 0x84, + 0xeb, 0xc9, 0x3e, 0x94, 0x24, 0x80, 0x02, 0x7a, 0xfb, 0x57, 0x42, 0x60, + 0x85, 0xfa, 0xa8, 0x1f, 0x5a, 0x6f, 0xd9, 0x22, 0xff, 0x00, 0x9e, 0x6b, + 0x55, 0xed, 0xd5, 0xb6, 0x0f, 0x66, 0xfb, 0x98, 0x3e, 0x79, 0x3e, 0xc3, + 0xd2, 0x94, 0x4a, 0x0f, 0x01, 0x86, 0x7b, 0x9a, 0xdb, 0x6b, 0x28, 0x08, + 0x3f, 0x22, 0xd4, 0x5f, 0xd9, 0x90, 0x1e, 0x8b, 0xfa, 0xd5, 0x2a, 0xd1, + 0xec, 0x2f, 0x67, 0x2e, 0xe6, 0x7a, 0xb2, 0x05, 0xcb, 0x7c, 0xc6, 0x97, + 0xce, 0x51, 0xd8, 0x73, 0xd2, 0xae, 0xb6, 0x91, 0x19, 0x1c, 0x66, 0x99, + 0xfd, 0x89, 0x9e, 0x8f, 0x8f, 0xc2, 0x8f, 0x69, 0x07, 0xbb, 0x0e, 0x49, + 0x94, 0xda, 0x6e, 0x69, 0xad, 0x30, 0x1d, 0x72, 0x6a, 0x79, 0x34, 0x59, + 0x57, 0x3b, 0x5b, 0x3f, 0x85, 0x55, 0x93, 0x4a, 0xb9, 0x5c, 0x9c, 0x66, + 0xb5, 0x8b, 0x83, 0xea, 0x66, 0xd4, 0xd7, 0x41, 0x1a, 0xe0, 0x1e, 0x80, + 0x9a, 0x61, 0x72, 0xc2, 0x98, 0xf1, 0x5c, 0xc5, 0xc1, 0x88, 0xe2, 0xab, + 0xb4, 0xec, 0x99, 0x04, 0x11, 0x5b, 0xc6, 0x29, 0xec, 0x60, 0xe4, 0xd6, + 0xe8, 0x9c, 0x9c, 0x75, 0xe7, 0xda, 0x9d, 0xb5, 0x7d, 0x0d, 0x52, 0x33, + 0xb7, 0x5c, 0xd3, 0xbe, 0xd2, 0x58, 0x7a, 0x55, 0xf2, 0xb2, 0x3d, 0xa2, + 0xb9, 0x64, 0xc8, 0x50, 0xf0, 0x70, 0x29, 0xcb, 0x7d, 0x28, 0xfb, 0xae, + 0x7f, 0x1a, 0xa6, 0x64, 0xdc, 0x39, 0xe6, 0x94, 0x6e, 0x73, 0xf2, 0x8a, + 0x39, 0x7b, 0x93, 0xcd, 0xd8, 0xd1, 0x4d, 0x5e, 0x58, 0xfe, 0xf0, 0x0d, + 0xf4, 0xab, 0x29, 0xae, 0x28, 0x3f, 0x30, 0xdb, 0x59, 0x91, 0x59, 0x4f, + 0x71, 0x80, 0xb1, 0xb1, 0xfc, 0x2b, 0x46, 0xdf, 0xc2, 0xb7, 0x73, 0x91, + 0x95, 0x08, 0x3d, 0x4d, 0x65, 0x25, 0x49, 0x7c, 0x47, 0x44, 0x7d, 0xab, + 0xd8, 0x9c, 0x6b, 0x48, 0xc3, 0x83, 0x9f, 0xa5, 0x46, 0xfa, 0xae, 0x7a, + 0x56, 0x8d, 0xb7, 0x82, 0x0f, 0x1e, 0x64, 0xd8, 0xfa, 0x0a, 0xd3, 0xb6, + 0xf0, 0x7d, 0xa2, 0x7d, 0xfd, 0xcc, 0x7e, 0xb5, 0xcc, 0xea, 0x51, 0x8e, + 0xda, 0x9d, 0x0a, 0x13, 0x7f, 0x13, 0x39, 0x47, 0xd4, 0x19, 0xfb, 0x03, + 0xec, 0x2a, 0x09, 0x62, 0x33, 0x81, 0x88, 0xce, 0x4f, 0xa0, 0xaf, 0x42, + 0x83, 0xc3, 0xb6, 0x30, 0x1e, 0x21, 0x53, 0xf5, 0xab, 0xd1, 0x58, 0xdb, + 0xa2, 0x80, 0xb1, 0xa8, 0xc7, 0xa0, 0xa5, 0xf5, 0x84, 0xbe, 0x14, 0x37, + 0x49, 0x35, 0xab, 0x3c, 0xb5, 0x34, 0x8b, 0xa9, 0x0f, 0xc9, 0x0b, 0xb0, + 0xfa, 0x54, 0xf1, 0xf8, 0x73, 0x51, 0x93, 0xa5, 0xbb, 0x0f, 0xa8, 0xaf, + 0x54, 0x58, 0x23, 0x51, 0xc0, 0x02, 0xa5, 0x58, 0x93, 0xd2, 0x9f, 0xd6, + 0xaa, 0x76, 0x23, 0xd8, 0x52, 0x5d, 0xcf, 0x30, 0x8f, 0xc1, 0xfa, 0x8b, + 0x1f, 0xf5, 0x58, 0x27, 0xd4, 0xd5, 0x94, 0xf0, 0x4d, 0xfb, 0x70, 0x42, + 0x01, 0xee, 0x6b, 0xd2, 0x91, 0x57, 0xd2, 0xa5, 0x55, 0x5e, 0xb8, 0xa9, + 0x78, 0x9a, 0xa6, 0x9e, 0xca, 0x9a, 0xd9, 0x1e, 0x6c, 0x9e, 0x02, 0xbb, + 0x6f, 0xe3, 0x45, 0x07, 0xde, 0xa4, 0x1e, 0x01, 0x9c, 0x75, 0x95, 0x7f, + 0x2a, 0xf4, 0x8f, 0x90, 0x7a, 0x53, 0x49, 0x41, 0x53, 0xed, 0xea, 0xf7, + 0x05, 0x0a, 0x6b, 0xec, 0x9e, 0x7b, 0xff, 0x00, 0x08, 0x13, 0xff, 0x00, + 0xcf, 0x6f, 0xfc, 0x76, 0x97, 0xfe, 0x15, 0xf9, 0xff, 0x00, 0x9e, 0xdc, + 0xff, 0x00, 0xbb, 0x5e, 0x81, 0xb9, 0x47, 0x6c, 0xd3, 0x77, 0x8c, 0xe7, + 0x14, 0x7b, 0x6a, 0x9d, 0xc3, 0x96, 0x3d, 0x8e, 0x05, 0xbc, 0x00, 0xc4, + 0xff, 0x00, 0xaf, 0xc9, 0xff, 0x00, 0x76, 0x9a, 0xde, 0x01, 0xe3, 0x99, + 0xbf, 0xf1, 0xda, 0xef, 0xc9, 0x00, 0xf0, 0x0d, 0x26, 0xee, 0xb9, 0x5a, + 0x7e, 0xda, 0xa7, 0xf3, 0x0b, 0x96, 0x0f, 0xec, 0x9c, 0x07, 0xfc, 0x20, + 0x25, 0x79, 0x13, 0x92, 0x7f, 0xdd, 0xa5, 0x3e, 0x08, 0x97, 0x3c, 0x4f, + 0x9f, 0xc2, 0xbb, 0xcd, 0xe3, 0xba, 0xd2, 0x02, 0x98, 0xfb, 0xb4, 0x7b, + 0x5a, 0x8f, 0xa8, 0x28, 0xc5, 0x6c, 0x8e, 0x08, 0xf8, 0x26, 0x6e, 0x7f, + 0x7e, 0x0f, 0xd4, 0x54, 0x12, 0x78, 0x36, 0xe4, 0x74, 0x95, 0x5a, 0xbd, + 0x08, 0xaa, 0xfa, 0x54, 0x6c, 0x83, 0xb5, 0x2f, 0x6b, 0x35, 0xd4, 0x7c, + 0xb1, 0xec, 0x79, 0xe3, 0xf8, 0x4a, 0xf5, 0x4f, 0x05, 0x49, 0xf6, 0x35, + 0x04, 0xbe, 0x18, 0xd4, 0x08, 0xe8, 0x3f, 0x03, 0x5e, 0x8b, 0x22, 0x0f, + 0x6a, 0x85, 0x94, 0x60, 0xd5, 0x2a, 0xd3, 0x42, 0x70, 0x83, 0xe8, 0x79, + 0xa4, 0x9e, 0x1d, 0xbd, 0x4e, 0xb1, 0x12, 0x3d, 0xaa, 0xbc, 0x9a, 0x55, + 0xcc, 0x7f, 0x7a, 0x26, 0x1f, 0x85, 0x7a, 0x63, 0xa8, 0x22, 0xa1, 0x68, + 0xd4, 0xf5, 0xc5, 0x69, 0xf5, 0x99, 0xf5, 0x46, 0x7e, 0xc2, 0x9a, 0xe8, + 0x79, 0xa3, 0x5b, 0xc8, 0xa3, 0x95, 0x61, 0xf8, 0x54, 0x6c, 0x1d, 0x7d, + 0x6b, 0xd2, 0x1e, 0xdd, 0x18, 0x60, 0xa0, 0x3f, 0x85, 0x54, 0x97, 0x4c, + 0xb7, 0x90, 0xf3, 0x0a, 0xfe, 0x55, 0x4b, 0x13, 0xdd, 0x09, 0xd0, 0x4f, + 0x66, 0x70, 0x5b, 0x8f, 0x7a, 0x46, 0x7e, 0x3a, 0x57, 0x61, 0x2e, 0x83, + 0x6a, 0xe4, 0xfe, 0xef, 0x6f, 0xd0, 0xd5, 0x49, 0x3c, 0x37, 0x09, 0xfb, + 0xae, 0x47, 0xeb, 0x5a, 0x2c, 0x44, 0x3a, 0x92, 0xe8, 0xcb, 0xa3, 0x39, + 0x81, 0x25, 0x1e, 0x69, 0xad, 0x8b, 0x8f, 0x0e, 0x48, 0xa7, 0xe4, 0x2a, + 0x45, 0x54, 0x6d, 0x22, 0x58, 0x8e, 0x5a, 0x32, 0x47, 0xb5, 0x6a, 0xaa, + 0xc1, 0xec, 0xcc, 0x9d, 0x2a, 0x88, 0xa8, 0xb2, 0xb7, 0x40, 0x33, 0x56, + 0x61, 0x82, 0x79, 0x4f, 0xca, 0xb9, 0xa7, 0x22, 0xf9, 0x47, 0x85, 0xda, + 0x7d, 0xea, 0xcc, 0x37, 0xbe, 0x5f, 0xde, 0x39, 0xa9, 0x94, 0x9f, 0xd9, + 0x45, 0x46, 0x29, 0x7c, 0x4c, 0x91, 0x34, 0xc9, 0xdd, 0x7e, 0x66, 0x02, + 0xa7, 0x8f, 0x45, 0xdc, 0x3e, 0x66, 0x27, 0xd8, 0x53, 0x93, 0x57, 0x89, + 0x00, 0xcb, 0x60, 0xd2, 0xb6, 0xbd, 0x1e, 0x09, 0x55, 0x2d, 0x8a, 0xe3, + 0x6e, 0xab, 0xd9, 0x1d, 0x2b, 0xd9, 0x2d, 0xc9, 0x57, 0x46, 0x89, 0x79, + 0x2b, 0x93, 0x53, 0xa6, 0x9f, 0x14, 0x7d, 0x23, 0x50, 0x7d, 0x6b, 0x2e, + 0x4f, 0x11, 0x48, 0xe3, 0x09, 0x1e, 0x3e, 0xb5, 0x5e, 0x4d, 0x62, 0xe9, + 0xb1, 0x86, 0xc7, 0xa8, 0x14, 0xbd, 0x95, 0x59, 0x6e, 0xc7, 0xed, 0x61, + 0x1d, 0x91, 0xd0, 0x18, 0x63, 0x4e, 0xc2, 0x90, 0xb4, 0x4a, 0x7a, 0x8c, + 0x57, 0x3e, 0x6f, 0x24, 0x91, 0x39, 0x76, 0xcd, 0x31, 0x58, 0xcb, 0xc8, + 0x6c, 0x91, 0xea, 0x69, 0x7b, 0x07, 0xd5, 0x87, 0xb6, 0xec, 0x8e, 0x88, + 0xde, 0xc0, 0x9c, 0x6e, 0x14, 0xdf, 0xed, 0x18, 0x07, 0x71, 0x8f, 0x6a, + 0xc2, 0xcf, 0x5d, 0xc3, 0xf1, 0x14, 0xe8, 0xd9, 0x4f, 0x27, 0x04, 0x51, + 0xec, 0x62, 0x1e, 0xd5, 0x9b, 0x0d, 0xa9, 0xc7, 0xb4, 0xe0, 0x13, 0xef, + 0x8a, 0x8d, 0x75, 0x34, 0xc6, 0x42, 0x93, 0xea, 0x3d, 0x2a, 0x8c, 0x72, + 0xfc, 0xb8, 0xe3, 0x14, 0xd9, 0x17, 0x23, 0x7a, 0x1c, 0x1e, 0xfe, 0xf4, + 0x2a, 0x51, 0xd8, 0x6e, 0x6c, 0xbd, 0x26, 0xa5, 0xc0, 0x60, 0x84, 0x8f, + 0xad, 0x30, 0xea, 0x8c, 0x70, 0x42, 0xf0, 0x7d, 0xea, 0xac, 0x72, 0x28, + 0xe3, 0xd7, 0xa8, 0xa6, 0x4c, 0xa5, 0x30, 0x47, 0xdd, 0xcf, 0x4a, 0xa5, + 0x4e, 0x3b, 0x58, 0x9e, 0x66, 0x5b, 0x6d, 0x49, 0x98, 0xe0, 0x27, 0xeb, + 0x4e, 0x5b, 0xd7, 0x3c, 0x6c, 0x02, 0xa9, 0xff, 0x00, 0x0e, 0x7e, 0xe9, + 0x34, 0x88, 0xc4, 0xb0, 0xc9, 0xe2, 0x9f, 0x24, 0x6d, 0xb0, 0x5d, 0x96, + 0xda, 0xfa, 0x45, 0x61, 0xc0, 0x19, 0xa9, 0x8d, 0xc3, 0x11, 0x9c, 0x0a, + 0xa0, 0xe7, 0x11, 0x1e, 0xd8, 0xa9, 0x23, 0x76, 0x20, 0x73, 0x90, 0x45, + 0x4b, 0x82, 0x17, 0x33, 0xb9, 0x6c, 0xdc, 0x93, 0x81, 0x8a, 0x46, 0xba, + 0x60, 0x07, 0x15, 0x00, 0x3b, 0x70, 0x79, 0xa5, 0xce, 0x4d, 0x4f, 0x2a, + 0x2f, 0x99, 0x93, 0x1b, 0xa6, 0xe3, 0xe5, 0xc7, 0xe3, 0x4f, 0x37, 0x78, + 0xc0, 0xc7, 0xeb, 0x55, 0x5b, 0x0d, 0xf2, 0xf4, 0x35, 0x1b, 0xb9, 0x4f, + 0x94, 0x72, 0x4d, 0x1c, 0x89, 0x83, 0x93, 0xdc, 0xb7, 0x26, 0xa0, 0x13, + 0x8c, 0x73, 0xed, 0x48, 0xba, 0x90, 0x27, 0xd0, 0x55, 0x10, 0xa4, 0x13, + 0x9e, 0x69, 0xbe, 0x60, 0x07, 0x38, 0xab, 0xf6, 0x71, 0x23, 0x9d, 0x9a, + 0x63, 0x50, 0x5c, 0x64, 0x9c, 0x51, 0xf6, 0xf8, 0xc8, 0xc9, 0x22, 0xb2, + 0x98, 0xee, 0xef, 0x9e, 0xf4, 0xd5, 0x39, 0xa3, 0xd9, 0x44, 0x3d, 0xa3, + 0x36, 0x05, 0xda, 0xb0, 0xe3, 0x06, 0x9c, 0x25, 0x46, 0xc0, 0xc0, 0xcd, + 0x64, 0xed, 0xc0, 0xe0, 0xd3, 0x86, 0xe0, 0x3a, 0x9a, 0x97, 0x49, 0x74, + 0x65, 0x29, 0xb6, 0x6a, 0x94, 0x89, 0xb8, 0x28, 0x0d, 0x44, 0xd6, 0x50, + 0x3f, 0xf0, 0x80, 0x6a, 0xaa, 0xb3, 0xae, 0x39, 0x35, 0x22, 0xdc, 0x91, + 0xc1, 0xe7, 0xeb, 0x53, 0xcb, 0x25, 0xb3, 0x2b, 0x99, 0x3d, 0xd0, 0xf6, + 0xd2, 0xe3, 0x3c, 0xe7, 0x14, 0xc3, 0xa6, 0x3f, 0xf0, 0xbe, 0x47, 0xbd, + 0x48, 0x2e, 0xb8, 0xe9, 0x4f, 0x4b, 0xb0, 0x78, 0xe6, 0x95, 0xe6, 0x85, + 0x68, 0x3e, 0x85, 0x46, 0xb3, 0x9a, 0x3e, 0xab, 0xbb, 0xe9, 0x4d, 0x2c, + 0x53, 0x86, 0x42, 0x2b, 0x48, 0x5c, 0x2b, 0x0e, 0x3a, 0xd3, 0xc8, 0x57, + 0x1c, 0x80, 0x68, 0xf6, 0x8f, 0xed, 0x20, 0xf6, 0x6b, 0xa3, 0x32, 0xd2, + 0x50, 0x47, 0x27, 0x14, 0xac, 0x47, 0x6c, 0x13, 0x57, 0xda, 0xc6, 0x19, + 0x3f, 0x87, 0x1e, 0xe2, 0xab, 0xbe, 0x9a, 0xca, 0x73, 0x1b, 0xd5, 0x29, + 0xc5, 0x92, 0xe1, 0x24, 0x40, 0xac, 0xd9, 0xce, 0x29, 0xdc, 0xb7, 0x3d, + 0x0d, 0x23, 0x23, 0xc2, 0x7e, 0x75, 0x20, 0xd2, 0xac, 0xaa, 0x7b, 0xf3, + 0x55, 0xbe, 0xc4, 0x2f, 0x31, 0x4a, 0x92, 0x31, 0x9a, 0x40, 0xa7, 0xa1, + 0x19, 0xf7, 0xa7, 0xfd, 0x0d, 0x38, 0x06, 0x3d, 0xaa, 0x6e, 0x5d, 0x93, + 0x23, 0x31, 0x86, 0x1c, 0xd4, 0x7f, 0x65, 0x07, 0xb9, 0xeb, 0xd6, 0xac, + 0x14, 0x27, 0xd3, 0x34, 0xff, 0x00, 0x2c, 0xe0, 0x72, 0x28, 0xe6, 0xb0, + 0x72, 0x90, 0x44, 0xad, 0x09, 0xca, 0xb1, 0xc7, 0xa5, 0x5c, 0xb6, 0xbb, + 0x0e, 0x4a, 0xb7, 0x0d, 0x51, 0x18, 0x8e, 0x38, 0x3c, 0x53, 0x3c, 0xa2, + 0x8d, 0x90, 0x4d, 0x4b, 0xb4, 0xb7, 0x29, 0x5e, 0x3b, 0x1a, 0x83, 0x9e, + 0xb4, 0x10, 0x05, 0x57, 0xb7, 0x9f, 0x77, 0x0d, 0xc1, 0xfe, 0x75, 0x65, + 0x4e, 0x7a, 0xd7, 0x2b, 0x4d, 0x33, 0xa2, 0x2d, 0x31, 0x30, 0x33, 0xd2, + 0xaa, 0xdf, 0xc1, 0xe6, 0x44, 0x78, 0x39, 0x15, 0x6c, 0x75, 0xa1, 0xd3, + 0x72, 0xb0, 0xf6, 0xa7, 0x19, 0x59, 0xdc, 0x6e, 0x3d, 0x0a, 0x32, 0xa6, + 0xd9, 0x98, 0x76, 0x34, 0xd5, 0x00, 0x52, 0xde, 0xb3, 0x2c, 0xa0, 0x8e, + 0xe2, 0xa2, 0x56, 0x3e, 0xd5, 0xba, 0xd5, 0x5c, 0xc2, 0x5b, 0x93, 0x71, + 0x9e, 0x05, 0x21, 0x50, 0x4d, 0x44, 0x59, 0xf3, 0x4a, 0x19, 0xcf, 0xf0, + 0xf1, 0x45, 0x84, 0xc9, 0x40, 0x1e, 0x83, 0x8e, 0xe6, 0x98, 0xe4, 0x62, + 0x98, 0x64, 0x60, 0x2a, 0xbc, 0xb3, 0x1e, 0x9d, 0x49, 0xed, 0x54, 0xa2, + 0xdb, 0x25, 0xbb, 0x04, 0xae, 0x65, 0x21, 0x17, 0xa9, 0xab, 0x96, 0xb6, + 0xa2, 0x15, 0xf5, 0x63, 0xd4, 0xd3, 0x2c, 0xad, 0x36, 0x8f, 0x31, 0xc7, + 0xce, 0x7b, 0x7a, 0x55, 0xa2, 0xd8, 0x18, 0x14, 0xa5, 0x2f, 0xb2, 0x8d, + 0x21, 0x0b, 0x2e, 0x66, 0x23, 0x36, 0x38, 0xa6, 0x33, 0x8f, 0xa5, 0x35, + 0xe4, 0x0a, 0x72, 0x4d, 0x42, 0x18, 0x31, 0xe4, 0xd4, 0xa8, 0x97, 0x29, + 0x58, 0x57, 0x91, 0x8f, 0xdd, 0xa4, 0x55, 0x3d, 0xc5, 0x3c, 0x60, 0x0a, + 0x52, 0xca, 0x7a, 0x9a, 0xab, 0x99, 0x6f, 0xb9, 0x17, 0x18, 0x3d, 0xf1, + 0xeb, 0x48, 0x63, 0x53, 0xce, 0x05, 0x48, 0xcc, 0xb8, 0xf5, 0xa8, 0x1d, + 0x86, 0xdf, 0x4a, 0xa5, 0xa9, 0x2d, 0xa0, 0x78, 0xc1, 0x1d, 0x48, 0xa8, + 0xca, 0x70, 0x7e, 0x60, 0x45, 0x37, 0x2c, 0xc7, 0x0b, 0x96, 0x35, 0x3c, + 0x5a, 0x7c, 0x8f, 0xcb, 0x9c, 0x0a, 0xd2, 0xea, 0x3b, 0xb2, 0x2c, 0xe5, + 0xb2, 0x29, 0x13, 0x82, 0x69, 0xf1, 0xdb, 0xcb, 0x2f, 0x0a, 0x84, 0xfb, + 0xd6, 0xc4, 0x36, 0x11, 0xc6, 0x06, 0x17, 0x71, 0xf5, 0x35, 0x68, 0x26, + 0xd1, 0xd8, 0x56, 0x52, 0xae, 0x96, 0xc8, 0xb5, 0x47, 0xb9, 0x8f, 0x1e, + 0x8e, 0xef, 0xf7, 0xc8, 0x5a, 0xb5, 0x1e, 0x91, 0x0a, 0xf5, 0xf9, 0xaa, + 0xdb, 0x4c, 0x8a, 0x7a, 0xe7, 0xda, 0xab, 0xc9, 0x7e, 0x57, 0x80, 0x98, + 0xf7, 0x35, 0x1c, 0xf5, 0x25, 0xb1, 0xa7, 0x2c, 0x22, 0x58, 0x8a, 0xd6, + 0x28, 0xba, 0x46, 0x3f, 0x1a, 0x90, 0x90, 0xbe, 0x8a, 0x2b, 0x35, 0xae, + 0x9e, 0x5c, 0xfc, 0xd8, 0xcf, 0xa5, 0x40, 0xe5, 0x8e, 0x4e, 0xe3, 0xc7, + 0x7a, 0x5e, 0xcd, 0xbd, 0xd8, 0xf9, 0xed, 0xb2, 0x35, 0xde, 0x68, 0xd7, + 0xab, 0x54, 0x2d, 0x7a, 0x8b, 0xd3, 0x2d, 0x59, 0xca, 0xe5, 0x13, 0x19, + 0xc8, 0xf7, 0xa6, 0x79, 0xcb, 0x9c, 0xfe, 0x95, 0x4a, 0x91, 0x3e, 0xd1, + 0x9a, 0x2f, 0xa8, 0xe0, 0x67, 0x6f, 0x03, 0xde, 0xa2, 0x3a, 0x83, 0x9c, + 0x60, 0x0c, 0x1a, 0xab, 0xb8, 0x7d, 0xed, 0xd9, 0x15, 0x14, 0x8f, 0xb8, + 0x7c, 0xbc, 0x55, 0xaa, 0x71, 0xec, 0x66, 0xe6, 0xcb, 0xff, 0x00, 0x6a, + 0x90, 0xe0, 0x86, 0xc0, 0xa0, 0xdc, 0xc8, 0xdc, 0x6e, 0x3f, 0x5a, 0xcf, + 0x5b, 0x82, 0xa9, 0x8e, 0xa4, 0x50, 0x2e, 0x4e, 0xe0, 0x7b, 0x7a, 0xd3, + 0xf6, 0x7e, 0x42, 0xe7, 0xb9, 0x71, 0xe5, 0x93, 0x1c, 0x16, 0x38, 0xa6, + 0x17, 0x7d, 0xb9, 0x27, 0x04, 0x76, 0xcf, 0x5a, 0xae, 0xf3, 0x67, 0x95, + 0x26, 0x9b, 0xe6, 0x16, 0x3d, 0x32, 0x07, 0x6a, 0xa5, 0x01, 0x39, 0x5c, + 0xba, 0x25, 0xde, 0x01, 0x19, 0x22, 0x80, 0x4b, 0x1e, 0xb9, 0xc5, 0x53, + 0x47, 0x64, 0x27, 0x00, 0xe3, 0xb5, 0x39, 0x65, 0x93, 0x20, 0x6c, 0xef, + 0xd6, 0x97, 0x20, 0xd4, 0x8b, 0x23, 0x19, 0xe7, 0x34, 0xc9, 0xce, 0x41, + 0xe9, 0x8f, 0x6a, 0x89, 0x9e, 0x4e, 0xe9, 0x91, 0xed, 0x4d, 0x73, 0x21, + 0xfe, 0x1e, 0x29, 0xa8, 0x83, 0x96, 0x84, 0xe3, 0x05, 0x47, 0x34, 0x98, + 0xe4, 0xf2, 0x70, 0x2a, 0xbe, 0xe7, 0x07, 0xee, 0xf0, 0x29, 0x55, 0xd8, + 0x13, 0x95, 0x26, 0x9f, 0x29, 0x37, 0x24, 0x62, 0x77, 0x00, 0x18, 0xe4, + 0xd2, 0x99, 0xdc, 0x0d, 0xaa, 0xc4, 0x9e, 0xfc, 0xd5, 0x76, 0x77, 0x04, + 0xb1, 0x06, 0x91, 0x24, 0xda, 0x09, 0xc1, 0x27, 0xbe, 0x6a, 0xb9, 0x42, + 0xe8, 0xb4, 0x25, 0x70, 0x3e, 0x56, 0xa4, 0x5b, 0xa9, 0x06, 0x70, 0x4e, + 0x07, 0xad, 0x54, 0xfb, 0x42, 0x9f, 0x5e, 0xbd, 0xea, 0x36, 0x9f, 0x83, + 0x8a, 0x7e, 0xcf, 0xc8, 0x9e, 0x6f, 0x32, 0xf8, 0xd4, 0xe5, 0x07, 0x8c, + 0x1a, 0x77, 0xf6, 0xeb, 0x29, 0xc1, 0x4c, 0xfe, 0x35, 0x98, 0xd2, 0xfc, + 0xb8, 0xe4, 0x53, 0x03, 0x8c, 0x71, 0xd6, 0xab, 0xd9, 0x45, 0xee, 0x89, + 0xf6, 0xad, 0x75, 0x36, 0xd3, 0x5d, 0x8c, 0xaf, 0x2a, 0x69, 0xc3, 0x57, + 0x85, 0x8f, 0x2d, 0x8a, 0xc0, 0x32, 0xe3, 0x8c, 0x8a, 0x68, 0x3b, 0xb3, + 0x9a, 0x5e, 0xc2, 0x21, 0xed, 0xa4, 0x74, 0x4f, 0x7f, 0x1b, 0x0e, 0x08, + 0x35, 0x52, 0x79, 0xe3, 0x7e, 0x0c, 0x61, 0x89, 0xef, 0x8a, 0xc9, 0x55, + 0x66, 0x6c, 0x0f, 0xd2, 0xaf, 0x5a, 0x58, 0x4b, 0x26, 0x39, 0x20, 0x7b, + 0xd1, 0xec, 0xe3, 0x0d, 0x6e, 0x5a, 0x9c, 0xa7, 0xd0, 0x82, 0x5b, 0x78, + 0x9c, 0x9c, 0x2e, 0xdf, 0xa5, 0x24, 0x7a, 0x34, 0xb3, 0x1f, 0xdd, 0x83, + 0x8f, 0x53, 0x5b, 0xd6, 0xda, 0x74, 0x71, 0x7c, 0xcc, 0x37, 0x1f, 0x5a, + 0xbc, 0x8c, 0xab, 0xc0, 0x18, 0xfa, 0x54, 0x3c, 0x43, 0x5a, 0x44, 0xbf, + 0x63, 0x17, 0xac, 0x8c, 0x6b, 0x3f, 0x0b, 0xf2, 0x3c, 0xd6, 0xfc, 0x05, + 0x6d, 0x5a, 0x68, 0xf6, 0xb6, 0xf8, 0xc4, 0x63, 0x3e, 0xa6, 0xa4, 0x57, + 0xfc, 0x2a, 0x45, 0x7e, 0x3a, 0xf1, 0x5c, 0xd2, 0xa9, 0x39, 0xee, 0xcd, + 0xa3, 0x18, 0xc5, 0x68, 0x8b, 0x11, 0xa4, 0x71, 0x80, 0x02, 0x81, 0xf4, + 0x15, 0x3a, 0xcb, 0xb4, 0xf0, 0x2a, 0x9a, 0xb6, 0x79, 0xa9, 0xd7, 0x9c, + 0x56, 0x76, 0x1b, 0xb9, 0x60, 0x4e, 0xdf, 0x85, 0x49, 0x1b, 0x12, 0x3a, + 0x9a, 0x8a, 0x35, 0x1d, 0xf1, 0x53, 0x09, 0x62, 0x8c, 0x75, 0x02, 0x8f, + 0x41, 0x6d, 0xb9, 0x32, 0x46, 0x4f, 0x23, 0xaf, 0xa5, 0x4c, 0x13, 0x9c, + 0xe3, 0x9a, 0xa8, 0x35, 0x08, 0xd0, 0x64, 0x12, 0x69, 0xa7, 0x54, 0xdd, + 0xd0, 0x7e, 0xb5, 0x6a, 0x13, 0x7d, 0x09, 0xe7, 0x82, 0x35, 0x15, 0x78, + 0xe7, 0x8a, 0x78, 0x00, 0x77, 0xfc, 0xab, 0x29, 0x6f, 0xc9, 0xea, 0x40, + 0xfa, 0xd5, 0xfb, 0x1b, 0xf8, 0x4b, 0x04, 0x90, 0xa9, 0xcf, 0x43, 0xe9, + 0x56, 0xe9, 0x49, 0x2b, 0x91, 0xed, 0xa3, 0x7b, 0x13, 0xef, 0xc1, 0xf5, + 0xa0, 0xca, 0x11, 0x4b, 0x1c, 0x81, 0xeb, 0x5b, 0x30, 0x5b, 0xc7, 0x81, + 0xf2, 0x82, 0x0f, 0x7a, 0x9d, 0xac, 0xa3, 0x92, 0x32, 0xac, 0xa1, 0x94, + 0x8c, 0x62, 0xb3, 0xb1, 0x7c, 0xda, 0x1c, 0xf4, 0x57, 0x29, 0x31, 0xf9, + 0x3e, 0x71, 0xed, 0x56, 0x3c, 0xa6, 0x61, 0xf7, 0x08, 0x15, 0x87, 0x7c, + 0x97, 0x3e, 0x15, 0xd4, 0xc7, 0x96, 0x01, 0xb5, 0x94, 0xf0, 0x4f, 0x6f, + 0x6a, 0xd6, 0x8f, 0x55, 0x96, 0xe1, 0x43, 0x6e, 0x55, 0x04, 0x7d, 0x6b, + 0xad, 0x50, 0x8b, 0x57, 0x4c, 0xe4, 0x75, 0xe5, 0x17, 0x66, 0x8b, 0x02, + 0x32, 0x3f, 0x87, 0xf3, 0xa7, 0x6c, 0x61, 0xff, 0x00, 0x2c, 0xf3, 0x59, + 0xb3, 0x6a, 0x12, 0x3b, 0x60, 0xca, 0xbc, 0x7b, 0x52, 0x2d, 0xf4, 0xdd, + 0xa7, 0x53, 0xed, 0x8a, 0x7e, 0xc9, 0x21, 0x7b, 0x69, 0x1a, 0xe8, 0xc4, + 0x8f, 0xf5, 0x63, 0x8a, 0x8e, 0x79, 0xd2, 0xdd, 0x77, 0x3a, 0x60, 0x7b, + 0x56, 0x7a, 0xdf, 0xca, 0xbd, 0x65, 0x1f, 0x95, 0x54, 0xd4, 0xae, 0xde, + 0x44, 0xc1, 0x94, 0x7e, 0x54, 0xd5, 0x28, 0x8b, 0xda, 0xc8, 0xdb, 0x8e, + 0x58, 0xa4, 0x55, 0x60, 0x30, 0x08, 0xcd, 0x2b, 0xa4, 0x43, 0xa9, 0xa8, + 0x62, 0x8c, 0x88, 0xa3, 0x00, 0x73, 0x8e, 0xb5, 0x66, 0x44, 0x1b, 0x30, + 0x7a, 0xd6, 0x1e, 0xea, 0x37, 0x4e, 0x45, 0x77, 0x30, 0xff, 0x00, 0x78, + 0x0c, 0x55, 0x59, 0x26, 0x87, 0xfb, 0xc0, 0xd4, 0x5a, 0x8c, 0xe2, 0x18, + 0xb6, 0xa1, 0x1b, 0x9b, 0xf9, 0x56, 0x4c, 0x97, 0xef, 0x8f, 0xba, 0x31, + 0xeb, 0x9a, 0xd6, 0x14, 0x94, 0x95, 0xcc, 0xe5, 0x55, 0xc6, 0x56, 0x46, + 0xa3, 0xbc, 0x4f, 0xfc, 0x40, 0x54, 0x0f, 0xb7, 0xb3, 0x0a, 0xc4, 0x96, + 0xf1, 0xc9, 0xfb, 0xa3, 0xf3, 0xaa, 0xef, 0x76, 0x7d, 0x0d, 0x0e, 0x97, + 0x99, 0x4a, 0xab, 0xec, 0x6e, 0xb2, 0xfa, 0x54, 0x4c, 0x8d, 0xc9, 0xc5, + 0x62, 0x7d, 0xbd, 0x81, 0xe1, 0x98, 0x52, 0x36, 0xac, 0xd1, 0xff, 0x00, + 0xcb, 0x4c, 0xfb, 0x52, 0x74, 0x99, 0x5e, 0xd5, 0x75, 0x46, 0xbb, 0x8e, + 0x71, 0x50, 0xbe, 0x05, 0x41, 0x69, 0x77, 0x71, 0x3f, 0xcc, 0xea, 0x02, + 0x76, 0xf5, 0xa9, 0xce, 0xe7, 0x39, 0xc7, 0x15, 0x8b, 0x56, 0xd1, 0x9b, + 0x46, 0x57, 0x20, 0x66, 0x07, 0xd8, 0xd4, 0x4c, 0x4d, 0x4b, 0x32, 0xaa, + 0x8c, 0xb7, 0xca, 0x3d, 0x6a, 0xa9, 0x91, 0x1b, 0xee, 0xc9, 0x9f, 0xa5, + 0x2d, 0xf6, 0x2b, 0x60, 0x2e, 0x07, 0x5a, 0x61, 0x65, 0xce, 0x0d, 0x04, + 0x11, 0xdf, 0x34, 0xd3, 0xf4, 0xa0, 0x77, 0x19, 0x24, 0x11, 0x49, 0xd5, + 0x14, 0xfe, 0x15, 0x46, 0x7d, 0x22, 0x19, 0x09, 0xdb, 0x95, 0x3e, 0xd5, + 0x79, 0x89, 0x34, 0x9b, 0xbf, 0x0a, 0xa5, 0x29, 0x47, 0x66, 0x26, 0x93, + 0xdc, 0xc1, 0x9f, 0x45, 0x92, 0x33, 0x95, 0xc3, 0x0f, 0xd6, 0xaa, 0x34, + 0x0f, 0x17, 0xca, 0x72, 0x0f, 0x6a, 0xea, 0x89, 0x19, 0xe6, 0x99, 0x25, + 0xb2, 0x4e, 0x30, 0xca, 0x0f, 0xd6, 0xb7, 0x58, 0x86, 0xbe, 0x23, 0x19, + 0x51, 0x8b, 0xd8, 0xe5, 0x44, 0x85, 0x08, 0xdc, 0xb8, 0xcf, 0x7a, 0x71, + 0x90, 0x48, 0x78, 0xea, 0x2b, 0x5e, 0xef, 0x45, 0x52, 0x49, 0x8d, 0xb9, + 0xeb, 0x83, 0x59, 0x13, 0xd8, 0xc9, 0x1b, 0x12, 0x54, 0xad, 0x74, 0xc2, + 0x70, 0x9e, 0xc7, 0x3c, 0xa1, 0x38, 0x74, 0x10, 0x4c, 0x46, 0x78, 0xfc, + 0x29, 0x56, 0x4f, 0x9b, 0x2b, 0xc1, 0xee, 0x29, 0xd0, 0xda, 0xab, 0x01, + 0xb8, 0xf1, 0x5a, 0xb6, 0xd6, 0xd6, 0xf8, 0x1f, 0x2e, 0x48, 0xa5, 0x29, + 0xc6, 0x21, 0x18, 0x49, 0xee, 0x51, 0x49, 0x32, 0x36, 0x9c, 0x9f, 0xa5, + 0x3e, 0x38, 0x9c, 0x9c, 0xa0, 0x24, 0x7a, 0x62, 0xb6, 0x63, 0x48, 0x23, + 0xe4, 0x2a, 0x8a, 0x90, 0x4f, 0x12, 0x73, 0x95, 0x5f, 0x6a, 0xe5, 0x75, + 0x7b, 0x23, 0xa7, 0x93, 0xbb, 0x32, 0xa3, 0xb6, 0x91, 0xb9, 0xf2, 0xce, + 0x7d, 0x2a, 0x74, 0xb5, 0x99, 0x81, 0xc2, 0x60, 0x7a, 0x1a, 0xbd, 0xf6, + 0xc8, 0x10, 0x12, 0x1c, 0x1f, 0xa5, 0x0b, 0xa9, 0x42, 0x49, 0xda, 0x72, + 0x07, 0xb5, 0x66, 0xe7, 0x37, 0xd0, 0xab, 0x45, 0x75, 0x28, 0xff, 0x00, + 0x67, 0x4c, 0x48, 0x38, 0x02, 0xa4, 0x1a, 0x6c, 0x85, 0x39, 0x20, 0x60, + 0xf4, 0x15, 0x64, 0xea, 0x51, 0xe4, 0x65, 0x49, 0xa6, 0x8d, 0x48, 0x13, + 0x8f, 0x2f, 0xf1, 0x35, 0x3c, 0xd5, 0x1f, 0x40, 0xb4, 0x4a, 0xe3, 0x4b, + 0x6d, 0xa0, 0x6f, 0x19, 0xa5, 0x3a, 0x4e, 0x0f, 0xdf, 0xfd, 0x2a, 0x66, + 0xd4, 0x59, 0x71, 0x88, 0xc7, 0xe7, 0x48, 0x9a, 0x8c, 0x92, 0xf1, 0xb4, + 0x0a, 0x77, 0xa8, 0x3b, 0x45, 0x91, 0x36, 0x95, 0xd8, 0xb1, 0xc7, 0xd2, + 0x95, 0x74, 0xe7, 0xd8, 0x02, 0xb1, 0xe2, 0x9e, 0xda, 0x83, 0x83, 0xc0, + 0x04, 0xfa, 0x51, 0x15, 0xe4, 0xac, 0x99, 0x20, 0x0f, 0x51, 0x8a, 0x2f, + 0x52, 0xc2, 0xb4, 0x7b, 0x11, 0x8d, 0x36, 0x4c, 0x8f, 0x9f, 0x8a, 0x53, + 0x62, 0xe0, 0x6d, 0x56, 0xc6, 0x6a, 0x55, 0xba, 0x91, 0x8f, 0x4a, 0x77, + 0x9e, 0xe4, 0xaf, 0x4f, 0x7a, 0x57, 0x98, 0xd4, 0x63, 0xd8, 0xac, 0x74, + 0xe9, 0x72, 0x7e, 0x71, 0x8a, 0x8b, 0xfb, 0x32, 0x5c, 0xe7, 0x7f, 0x35, + 0x75, 0xae, 0xd9, 0x5f, 0x1b, 0x72, 0x7d, 0x69, 0x3e, 0xda, 0x40, 0x3f, + 0x2f, 0x35, 0x4a, 0x53, 0x0e, 0x58, 0x32, 0x91, 0xd3, 0x67, 0x0a, 0x73, + 0xcf, 0xa5, 0x42, 0xd6, 0x53, 0x2f, 0x54, 0xcd, 0x6b, 0x2d, 0xd8, 0x70, + 0x05, 0x38, 0x5c, 0x0c, 0x91, 0x4f, 0xda, 0x4d, 0x6e, 0x85, 0xec, 0xe0, + 0xcc, 0x46, 0x82, 0x55, 0x3c, 0xa9, 0xfc, 0xa9, 0x30, 0x53, 0xaa, 0x1c, + 0xfa, 0xe2, 0xb7, 0x44, 0xab, 0x8c, 0x1c, 0x73, 0x41, 0x8d, 0x1b, 0x92, + 0xa0, 0xd3, 0xf6, 0xaf, 0xaa, 0x0f, 0x64, 0xba, 0x33, 0x11, 0x4e, 0x4f, + 0x4e, 0x2a, 0x65, 0x90, 0x67, 0x03, 0x9a, 0xd3, 0x36, 0xb0, 0xb7, 0x05, + 0x07, 0xe1, 0x50, 0xb6, 0x9b, 0x19, 0xfb, 0xb9, 0x14, 0x7b, 0x44, 0xf7, + 0x17, 0xb3, 0x6b, 0x66, 0x52, 0xde, 0x18, 0xff, 0x00, 0x5a, 0x76, 0xf0, + 0x7b, 0x64, 0xfa, 0xd4, 0xaf, 0xa5, 0x3f, 0xf0, 0xbe, 0x71, 0x50, 0x3d, + 0xa4, 0xf1, 0x1c, 0x95, 0xcd, 0x55, 0xe2, 0xf6, 0x62, 0xb4, 0xd7, 0x42, + 0x40, 0x07, 0xd4, 0xfe, 0x94, 0xbd, 0x46, 0x31, 0x81, 0x50, 0x19, 0x0a, + 0x70, 0xca, 0x45, 0x3d, 0x26, 0x0d, 0xc6, 0x28, 0xb3, 0x15, 0xfb, 0x92, + 0x8c, 0x81, 0xef, 0x52, 0x79, 0x8c, 0xbc, 0x83, 0x9a, 0x89, 0x58, 0x1e, + 0x33, 0x52, 0xa2, 0x8c, 0x66, 0xa1, 0xf9, 0x96, 0x89, 0xa2, 0xb9, 0x24, + 0x72, 0x0d, 0x58, 0x8e, 0x50, 0x47, 0x15, 0x43, 0xa1, 0xa9, 0x15, 0x4f, + 0x6e, 0x33, 0x59, 0x4a, 0x28, 0xb4, 0xda, 0x2f, 0x61, 0x58, 0x60, 0xfe, + 0x55, 0x5a, 0x7d, 0x3a, 0x39, 0x86, 0x57, 0xe5, 0x3e, 0xa2, 0x85, 0x90, + 0xa7, 0x5f, 0x9a, 0xa6, 0x47, 0xcf, 0x4a, 0xcf, 0x58, 0xea, 0x99, 0x77, + 0x4f, 0x73, 0x36, 0x4b, 0x79, 0xad, 0x4f, 0xcd, 0x96, 0x5f, 0x5a, 0x54, + 0x97, 0x77, 0x03, 0x9a, 0xd3, 0xce, 0xee, 0x0d, 0x56, 0x9a, 0xc4, 0x37, + 0x29, 0xf2, 0xb5, 0x6a, 0xa6, 0x9f, 0xc4, 0x66, 0xe9, 0xdb, 0xe1, 0x22, + 0x08, 0x0e, 0x2a, 0x54, 0x4c, 0x0e, 0x2a, 0xb0, 0x91, 0xa3, 0x6d, 0xaf, + 0xc1, 0xa9, 0xd6, 0x50, 0x79, 0xcd, 0x0d, 0x31, 0x26, 0x89, 0x04, 0x65, + 0xba, 0xd2, 0x34, 0x58, 0xf7, 0xa6, 0x8b, 0x81, 0xeb, 0x41, 0x9c, 0x67, + 0x1c, 0x9a, 0x9b, 0x32, 0xb4, 0x23, 0x64, 0xd8, 0x72, 0x0f, 0xe3, 0x57, + 0x20, 0x97, 0x7a, 0x8c, 0xf5, 0x1d, 0x6a, 0x9c, 0x92, 0x86, 0x3f, 0x74, + 0xd1, 0x04, 0xa5, 0x24, 0xe4, 0x61, 0x4d, 0x36, 0xae, 0x84, 0x9f, 0x2b, + 0x35, 0x08, 0xe3, 0x34, 0x03, 0xd6, 0x9a, 0x87, 0x2b, 0x41, 0xe3, 0xeb, + 0x5c, 0xc7, 0x51, 0x4e, 0xf7, 0x20, 0xa1, 0xea, 0x2a, 0xb8, 0xc1, 0x18, + 0xc5, 0x58, 0xbc, 0x1f, 0xbb, 0x5a, 0x81, 0x53, 0x3d, 0xf1, 0x5d, 0x31, + 0xd8, 0xe7, 0x97, 0xc4, 0x2e, 0x06, 0x3a, 0x1a, 0x6e, 0x71, 0xd9, 0xa9, + 0xc6, 0x3d, 0xdf, 0xc5, 0x48, 0x50, 0x81, 0xd6, 0xa9, 0x13, 0x62, 0x36, + 0x61, 0xc9, 0xe4, 0x52, 0x5b, 0xc4, 0x26, 0x93, 0x7f, 0x3b, 0x45, 0x45, + 0x71, 0xbb, 0x21, 0x73, 0xd6, 0xaf, 0xc2, 0x82, 0x28, 0xc2, 0xfe, 0x75, + 0x4f, 0xdd, 0x5a, 0x0a, 0x31, 0xe6, 0x96, 0xa4, 0x9b, 0xb0, 0x2a, 0x27, + 0x7e, 0xa4, 0xd2, 0xb3, 0x55, 0x67, 0x62, 0xed, 0xc8, 0xe9, 0xd2, 0xb3, + 0x8a, 0xb9, 0xb4, 0x9d, 0x85, 0x65, 0x66, 0x39, 0xea, 0x29, 0xbe, 0x5f, + 0xb6, 0x28, 0x2d, 0x83, 0xd6, 0x9b, 0xe6, 0x1c, 0xf5, 0xc8, 0xad, 0x75, + 0x39, 0xdd, 0xba, 0x8e, 0x20, 0x8e, 0x41, 0x22, 0xa2, 0x79, 0x1d, 0x73, + 0xd2, 0x86, 0xb8, 0x65, 0x1c, 0x80, 0x69, 0x61, 0x86, 0x4b, 0xc6, 0xe0, + 0x60, 0x7a, 0xd5, 0x5a, 0xda, 0xb2, 0x37, 0x76, 0x44, 0x46, 0x47, 0x93, + 0xe5, 0x03, 0x27, 0xda, 0xae, 0x5b, 0xe9, 0xac, 0xe0, 0x19, 0x4e, 0x07, + 0xa5, 0x5e, 0xb7, 0xb3, 0x4b, 0x61, 0xc0, 0xcb, 0x7a, 0x9a, 0x95, 0xdd, + 0x50, 0x64, 0x9c, 0x56, 0x12, 0xab, 0x7d, 0x22, 0x74, 0x46, 0x92, 0x5a, + 0xc8, 0x8d, 0x6d, 0x96, 0x25, 0xc2, 0x28, 0x14, 0xe2, 0x56, 0x31, 0x92, + 0x7f, 0x0a, 0xaf, 0x35, 0xc9, 0x6e, 0x13, 0x81, 0xeb, 0x55, 0x8b, 0xbe, + 0x4e, 0x79, 0xa9, 0x51, 0x6f, 0x71, 0xb9, 0x24, 0x5e, 0x6b, 0xae, 0x30, + 0xa3, 0xf1, 0xa8, 0x59, 0xd9, 0xc7, 0x2d, 0x55, 0xbe, 0xd0, 0xab, 0xd7, + 0xe5, 0x26, 0x86, 0xb8, 0xc0, 0xce, 0x45, 0x5a, 0x85, 0x88, 0x73, 0x5d, + 0x49, 0x48, 0x20, 0x7f, 0x85, 0x21, 0x90, 0x60, 0xe6, 0xab, 0x35, 0xcf, + 0xa7, 0x26, 0x98, 0x23, 0x9a, 0x76, 0xf9, 0x57, 0x8f, 0x5a, 0xb5, 0x1e, + 0xe6, 0x7c, 0xf7, 0xd1, 0x12, 0xb9, 0x52, 0x38, 0xf9, 0x4d, 0x40, 0x67, + 0x61, 0x90, 0x05, 0x5a, 0x8f, 0x4b, 0x66, 0x3f, 0x3b, 0x62, 0xae, 0xc7, + 0xa7, 0x42, 0x9c, 0xb0, 0xdc, 0x7d, 0xe8, 0x73, 0x8c, 0x7c, 0xc7, 0xc9, + 0x29, 0x79, 0x18, 0xb9, 0x77, 0x1f, 0x28, 0x34, 0xf4, 0xb1, 0x99, 0xba, + 0x21, 0xfa, 0xd6, 0xea, 0xa4, 0x71, 0x8c, 0x85, 0x02, 0x9a, 0x6e, 0x90, + 0x0e, 0x3b, 0x54, 0xfb, 0x67, 0xf6, 0x51, 0x4a, 0x92, 0x5b, 0xb3, 0x32, + 0x3d, 0x3a, 0x51, 0xc1, 0x38, 0xf6, 0xa9, 0x13, 0x48, 0x21, 0xb9, 0x3c, + 0x55, 0xdf, 0xb6, 0xa9, 0x5c, 0x05, 0xe4, 0x7a, 0xd4, 0x4d, 0x7e, 0xe0, + 0xe7, 0x00, 0x0a, 0x5c, 0xf5, 0x18, 0xf9, 0x69, 0xa1, 0xa3, 0x4a, 0x4e, + 0x7a, 0xe2, 0x9c, 0xba, 0x6c, 0x4b, 0xcb, 0x00, 0x41, 0xa8, 0xcd, 0xe3, + 0xf7, 0x61, 0x82, 0x3b, 0x54, 0x12, 0x5c, 0xb0, 0x39, 0x0e, 0x59, 0x7d, + 0x28, 0x4a, 0x6f, 0xa8, 0x37, 0x08, 0xf4, 0x2f, 0xad, 0x94, 0x43, 0x9d, + 0xab, 0xd2, 0x9d, 0xb2, 0x15, 0x27, 0x1b, 0x7e, 0xb5, 0x98, 0x6e, 0xb0, + 0x33, 0x9c, 0xfe, 0x34, 0x8d, 0x38, 0xd8, 0x08, 0x5f, 0xad, 0x1e, 0xce, + 0x5d, 0x58, 0x7b, 0x48, 0xf4, 0x34, 0x19, 0xa3, 0xdb, 0xc1, 0x02, 0x95, + 0x64, 0x46, 0x18, 0xc8, 0x15, 0x98, 0x26, 0x04, 0x63, 0xd6, 0x96, 0x29, + 0x8e, 0x3a, 0x63, 0x14, 0xfd, 0x98, 0xbd, 0xa1, 0xa8, 0x64, 0x8c, 0x0e, + 0xb4, 0xdf, 0x3e, 0x1e, 0xe4, 0x0a, 0xce, 0x12, 0xee, 0x04, 0x54, 0x53, + 0x39, 0x23, 0x00, 0x8e, 0xb4, 0x2a, 0x57, 0x07, 0x50, 0xd5, 0x33, 0x5b, + 0x82, 0x3a, 0x52, 0xf9, 0x90, 0x9e, 0x06, 0xde, 0x6b, 0x15, 0x66, 0x3d, + 0x0d, 0x2a, 0xcd, 0x9c, 0x67, 0xb5, 0x57, 0xb1, 0xf3, 0x27, 0xda, 0xf9, + 0x1b, 0x1f, 0xb9, 0xce, 0x0e, 0xda, 0x4f, 0xb3, 0xc2, 0xf9, 0xe0, 0x56, + 0x5b, 0x4b, 0xf2, 0xe7, 0x35, 0x1b, 0xcc, 0x54, 0x70, 0x48, 0xa1, 0x52, + 0x7d, 0x18, 0x3a, 0xbe, 0x46, 0x9b, 0x58, 0xc5, 0xfd, 0xd1, 0xf9, 0xd4, + 0x2f, 0xa6, 0x44, 0xdc, 0xe0, 0x8a, 0xcc, 0x33, 0xb0, 0x03, 0x0e, 0xd9, + 0xfa, 0xd3, 0x96, 0xee, 0x44, 0xc7, 0xce, 0x73, 0x5a, 0xaa, 0x73, 0x5b, + 0x33, 0x3f, 0x69, 0x17, 0xba, 0x27, 0x97, 0x4d, 0x51, 0x91, 0xb8, 0x8f, + 0x7a, 0xa7, 0x2e, 0x9e, 0x54, 0xf0, 0xc2, 0x9e, 0xfa, 0x8c, 0xac, 0xd8, + 0xea, 0x29, 0xa6, 0xe1, 0x9c, 0xf4, 0xc9, 0xad, 0xa2, 0xa6, 0x8c, 0xa4, + 0xe9, 0xcb, 0xa1, 0x51, 0xe0, 0x91, 0x4f, 0xad, 0x4d, 0x6b, 0x65, 0x2c, + 0x8d, 0xd0, 0x93, 0x57, 0x2d, 0x6d, 0x5a, 0x76, 0xe7, 0x81, 0x5a, 0xf1, + 0x22, 0xc2, 0x30, 0xbf, 0x9d, 0x29, 0xd6, 0xe5, 0x56, 0x45, 0x42, 0x8a, + 0xdc, 0xad, 0x6b, 0xa6, 0xa4, 0x20, 0x33, 0x0c, 0xb5, 0x5f, 0x51, 0xb4, + 0x0e, 0xc3, 0xda, 0x98, 0xac, 0x05, 0x1b, 0xc6, 0x6b, 0x89, 0xb7, 0x27, + 0xa9, 0xd8, 0x92, 0x5b, 0x12, 0xe4, 0x8f, 0xa5, 0x38, 0x36, 0x4d, 0x46, + 0x06, 0xea, 0x46, 0x95, 0x20, 0x1f, 0x3b, 0x63, 0xeb, 0x53, 0x6b, 0x8d, + 0xb5, 0xbb, 0x2c, 0x0f, 0x6a, 0x78, 0x75, 0x51, 0x82, 0x70, 0x2b, 0x2e, + 0x4d, 0x54, 0x1c, 0x88, 0xfa, 0xd6, 0x74, 0xd7, 0x72, 0x48, 0xc7, 0x73, + 0x1a, 0xda, 0x34, 0x65, 0x2d, 0xf4, 0x30, 0x75, 0xa2, 0xb6, 0x3a, 0x58, + 0xaf, 0xe0, 0xf3, 0x02, 0x79, 0x83, 0x3f, 0x5a, 0xd2, 0x89, 0x77, 0x0c, + 0x83, 0x91, 0x5c, 0x09, 0x25, 0x8f, 0x07, 0x15, 0x7a, 0xc7, 0x5a, 0xba, + 0xb1, 0xda, 0x03, 0x6f, 0x8f, 0xd0, 0xd6, 0x92, 0xc3, 0x69, 0xee, 0xb3, + 0x35, 0x5f, 0xf9, 0x8e, 0xba, 0xef, 0x4f, 0x6b, 0x94, 0xc0, 0x95, 0x91, + 0xbb, 0x63, 0xa1, 0xac, 0x59, 0xc5, 0xe6, 0x9c, 0xdf, 0xbc, 0x1b, 0x93, + 0xb1, 0xad, 0x2d, 0x37, 0xc4, 0x76, 0xf7, 0xaa, 0x15, 0x8f, 0x97, 0x27, + 0xf7, 0x4d, 0x68, 0x49, 0x22, 0x4a, 0x84, 0x30, 0x04, 0x7a, 0x1a, 0xc2, + 0x33, 0x9d, 0x27, 0xcb, 0x24, 0x53, 0x8c, 0x2a, 0x2b, 0xc5, 0x9c, 0xfc, + 0x77, 0xe6, 0x65, 0xe1, 0x82, 0xd0, 0xf2, 0x9e, 0x3f, 0x78, 0xd4, 0xcd, + 0x4b, 0x4c, 0xda, 0x5a, 0x4b, 0x63, 0xb5, 0xba, 0xec, 0xac, 0x91, 0x78, + 0xdb, 0x99, 0x64, 0xca, 0x30, 0xe2, 0xbd, 0x08, 0x5a, 0x6a, 0xf1, 0x38, + 0xe7, 0x78, 0x3b, 0x48, 0xda, 0x4b, 0xa5, 0x4c, 0x0e, 0xfe, 0xf5, 0x72, + 0x1d, 0x4c, 0x2f, 0x43, 0x83, 0x5c, 0xd1, 0xb9, 0x51, 0x9c, 0x9c, 0xfa, + 0x52, 0x0b, 0xec, 0x74, 0xe4, 0xd6, 0x9c, 0xb7, 0x33, 0x72, 0x3d, 0x2f, + 0xc3, 0xde, 0x28, 0x8c, 0x48, 0xb6, 0xf3, 0xb8, 0xc1, 0xfb, 0xa6, 0xbb, + 0x18, 0xe5, 0x52, 0x06, 0x0e, 0x41, 0xaf, 0x05, 0x1a, 0x8b, 0x2f, 0x20, + 0x72, 0x3d, 0x2b, 0xad, 0xd0, 0x7c, 0x71, 0x27, 0x90, 0x20, 0x94, 0xfc, + 0xea, 0x30, 0x09, 0xee, 0x2b, 0x9e, 0xa5, 0x17, 0xba, 0x46, 0xd4, 0xea, + 0xdb, 0x46, 0x7a, 0x06, 0xbf, 0xa7, 0x45, 0xab, 0x69, 0xd3, 0x42, 0xd8, + 0xdc, 0x46, 0x55, 0xbd, 0x0d, 0x79, 0x64, 0x1a, 0xa4, 0xd6, 0x33, 0x3d, + 0xbc, 0xbc, 0x3c, 0x67, 0x69, 0xc9, 0xae, 0x92, 0x5f, 0x15, 0xbe, 0x7e, + 0xf7, 0x15, 0xc7, 0xf8, 0x82, 0x51, 0x73, 0x79, 0xe7, 0xa6, 0x32, 0xe3, + 0x07, 0xeb, 0x55, 0x41, 0x59, 0xf2, 0xb2, 0x6b, 0xea, 0xb9, 0xbb, 0x1a, + 0x67, 0x56, 0x24, 0x13, 0x95, 0x24, 0xfb, 0xd4, 0x63, 0x59, 0x71, 0xfc, + 0x40, 0x57, 0x38, 0x64, 0x90, 0x20, 0xa6, 0xe5, 0xce, 0x32, 0x7f, 0xfa, + 0xd5, 0xd7, 0xec, 0xce, 0x4f, 0x68, 0x8e, 0x94, 0x6b, 0x6e, 0x3f, 0x88, + 0x53, 0x97, 0x57, 0x6b, 0x89, 0xe1, 0x52, 0x41, 0xcb, 0x0a, 0xe6, 0x0b, + 0x30, 0xe0, 0x13, 0x52, 0x5b, 0x4a, 0xd1, 0xcf, 0x1b, 0x93, 0x8c, 0x1c, + 0xd0, 0xe9, 0x87, 0x3a, 0xd0, 0xf6, 0x48, 0x27, 0x42, 0x89, 0x96, 0x1f, + 0x4a, 0x92, 0xe6, 0xe9, 0x15, 0x3a, 0xd7, 0x9d, 0x0f, 0x10, 0xc8, 0xa4, + 0x61, 0xf9, 0xa8, 0xaf, 0xbc, 0x47, 0x2b, 0x40, 0xc0, 0x37, 0x24, 0x71, + 0x5c, 0x3e, 0xca, 0xfa, 0x1d, 0xde, 0xd6, 0xda, 0x92, 0xeb, 0x3a, 0xeb, + 0x4d, 0xa8, 0x4b, 0xb3, 0x1b, 0x14, 0xed, 0x5e, 0x6a, 0xa3, 0x6a, 0xac, + 0xcb, 0xc9, 0xe9, 0xef, 0x58, 0x2e, 0x5f, 0x3d, 0x72, 0x7a, 0x9a, 0x6f, + 0x98, 0xd9, 0xc6, 0x78, 0xf6, 0xae, 0xff, 0x00, 0x67, 0x64, 0x91, 0xc4, + 0xaa, 0x5d, 0xdc, 0xda, 0x6b, 0xf1, 0xea, 0x49, 0xa8, 0x9a, 0xf4, 0x93, + 0xed, 0x59, 0x2f, 0x23, 0x67, 0x1d, 0xe9, 0xa2, 0x46, 0x1e, 0xbc, 0x54, + 0xfb, 0x33, 0x4f, 0x69, 0x73, 0x57, 0xed, 0x83, 0x3d, 0x72, 0x4f, 0x6f, + 0x5a, 0xd4, 0xd3, 0x74, 0xe0, 0xe4, 0x4d, 0x70, 0x39, 0xfe, 0x15, 0x35, + 0x91, 0xa5, 0xc2, 0x33, 0xe6, 0xc8, 0x32, 0x7b, 0x0a, 0xdc, 0x59, 0xce, + 0xcc, 0xee, 0xae, 0x4a, 0xaf, 0xec, 0xc4, 0xea, 0xa4, 0x96, 0xf2, 0x34, + 0xd7, 0x68, 0x1c, 0xe3, 0x02, 0xa8, 0xea, 0x3a, 0xd4, 0x36, 0x51, 0x9e, + 0x79, 0xfe, 0xe8, 0xea, 0x6b, 0x2b, 0x50, 0xd5, 0x8a, 0x82, 0x91, 0xb1, + 0xdd, 0xeb, 0xd8, 0x57, 0x3d, 0x33, 0xb4, 0xae, 0x59, 0x9f, 0x73, 0x1e, + 0xe6, 0xa2, 0x9e, 0x16, 0xfe, 0xf4, 0x99, 0x73, 0xae, 0x97, 0xbb, 0x12, + 0xf5, 0xfe, 0xb1, 0x35, 0xf1, 0xc6, 0x76, 0xc7, 0xd9, 0x45, 0x53, 0x12, + 0xb2, 0x60, 0x86, 0x2b, 0xf4, 0x35, 0x01, 0x6c, 0x71, 0xda, 0x8c, 0xed, + 0x1d, 0x6b, 0xb1, 0x41, 0x25, 0x64, 0x73, 0x73, 0x36, 0xf5, 0x2f, 0xc5, + 0xa9, 0xca, 0x87, 0x1b, 0xb7, 0x0f, 0x7a, 0xb9, 0x0e, 0xaa, 0x0f, 0xdf, + 0x5a, 0xc6, 0x0e, 0x09, 0x00, 0x72, 0x6a, 0xfd, 0xb6, 0x9d, 0x35, 0xc6, + 0x0f, 0xdd, 0x5f, 0x53, 0x58, 0x4e, 0x10, 0x4a, 0xf2, 0x37, 0x84, 0xa4, + 0xfe, 0x13, 0x52, 0x3b, 0x88, 0xa6, 0x3c, 0x30, 0x27, 0xd3, 0x35, 0x28, + 0x4f, 0x7a, 0x82, 0x1d, 0x36, 0x28, 0x7b, 0xee, 0x6f, 0x5a, 0x92, 0x47, + 0x48, 0x94, 0x92, 0xdb, 0x40, 0xf7, 0xae, 0x07, 0x66, 0xfd, 0xd3, 0xb1, + 0x36, 0x97, 0xbc, 0x38, 0x83, 0x4d, 0x06, 0xaa, 0x2e, 0xad, 0x0b, 0x3e, + 0xc0, 0xdf, 0x8d, 0x5a, 0x49, 0x96, 0x45, 0xe0, 0xd0, 0xe3, 0x25, 0xba, + 0x29, 0x49, 0x4b, 0x62, 0x45, 0x7c, 0x03, 0x51, 0xc9, 0x12, 0xce, 0x36, + 0xb0, 0xa5, 0xc8, 0xec, 0x73, 0x49, 0xc7, 0x1d, 0x45, 0x4e, 0xda, 0xa2, + 0x8c, 0xeb, 0x8d, 0x31, 0xa3, 0xc9, 0x8b, 0x91, 0xe9, 0x59, 0xed, 0x2c, + 0xb1, 0x1c, 0x74, 0xae, 0x88, 0xf5, 0x15, 0x5a, 0xf2, 0xcd, 0x2e, 0x46, + 0x71, 0x86, 0xf5, 0xae, 0x88, 0x55, 0xe9, 0x23, 0x09, 0xd3, 0xbe, 0xc6, + 0x3f, 0x9e, 0xd2, 0x2f, 0x2e, 0x47, 0xe3, 0x51, 0xf9, 0xc4, 0x1c, 0x1c, + 0x9a, 0x2f, 0x2d, 0x64, 0x87, 0x8c, 0x1c, 0xe6, 0x99, 0x1d, 0xbc, 0xae, + 0x38, 0xef, 0x5d, 0x8b, 0x96, 0xd7, 0x39, 0x3d, 0xeb, 0xda, 0xc5, 0x84, + 0x9b, 0x68, 0xce, 0x78, 0xab, 0x01, 0xc2, 0xae, 0x55, 0x81, 0xcf, 0x5a, + 0x8a, 0x0d, 0x32, 0x47, 0xc7, 0x3c, 0x7a, 0x9a, 0xbd, 0x16, 0x8c, 0x40, + 0x39, 0x6e, 0xb5, 0x84, 0xa5, 0x05, 0xd4, 0xde, 0x31, 0x9f, 0x62, 0x31, + 0x28, 0x64, 0xce, 0x70, 0x69, 0xec, 0xe3, 0xb1, 0x00, 0x8a, 0xb1, 0xfd, + 0x8c, 0xb8, 0x1f, 0x3e, 0x3e, 0x95, 0x61, 0x34, 0xb8, 0x81, 0xc9, 0x24, + 0x9a, 0xe7, 0x75, 0x20, 0x8d, 0xd4, 0x24, 0x65, 0xb3, 0x92, 0x31, 0x9c, + 0xfa, 0x62, 0x9e, 0xb2, 0x6d, 0x5c, 0xe7, 0x9a, 0xd3, 0x6d, 0x3e, 0x1c, + 0xd1, 0xf6, 0x18, 0xbb, 0xaf, 0x15, 0x3e, 0xd6, 0x2c, 0x7c, 0x8c, 0xca, + 0x72, 0xcc, 0xc0, 0x83, 0xf5, 0xa7, 0xc5, 0x2b, 0x28, 0xc1, 0x3f, 0xa5, + 0x69, 0xad, 0x9c, 0x40, 0x0c, 0x52, 0xfd, 0x8a, 0x0f, 0x4a, 0x4e, 0xac, + 0x76, 0x17, 0x23, 0xee, 0x67, 0x9b, 0x8d, 0xb8, 0xe7, 0x9a, 0x3e, 0xd0, + 0x00, 0xc9, 0x35, 0x78, 0xd9, 0x45, 0xe9, 0xc5, 0x21, 0xb0, 0x8c, 0x8f, + 0xf0, 0xa3, 0x9e, 0x23, 0xe5, 0x91, 0x9d, 0x1c, 0xe4, 0xb6, 0x69, 0x5a, + 0x4e, 0x79, 0xe6, 0xaf, 0x7f, 0x66, 0xa0, 0xe8, 0x4d, 0x30, 0xe9, 0xea, + 0x3a, 0x1e, 0x6a, 0xb9, 0xe2, 0x4f, 0x24, 0x8a, 0xde, 0x76, 0xd1, 0xd2, + 0x97, 0xed, 0x0a, 0x39, 0x20, 0xfe, 0x15, 0x2b, 0x69, 0xd8, 0x18, 0xcd, + 0x44, 0xfa, 0x7b, 0x55, 0x29, 0x45, 0x87, 0x2c, 0xc1, 0x26, 0x42, 0x77, + 0x39, 0xe7, 0xb0, 0xf4, 0xa9, 0x44, 0xc9, 0x8c, 0x86, 0x03, 0x15, 0x59, + 0xed, 0x25, 0x07, 0xa1, 0xa8, 0xda, 0xde, 0x4c, 0x64, 0x83, 0xf4, 0xc5, + 0x5e, 0x8c, 0x8b, 0x49, 0x17, 0x52, 0x49, 0x25, 0x6c, 0xab, 0x61, 0x47, + 0x6f, 0x5a, 0xb0, 0x25, 0x65, 0x38, 0x3c, 0xd6, 0x38, 0x95, 0xe3, 0x3c, + 0x64, 0x7d, 0x2a, 0x48, 0xef, 0x64, 0x1d, 0xf3, 0xf5, 0xa6, 0xe0, 0x98, + 0x73, 0x34, 0x6b, 0xad, 0xc2, 0x82, 0x72, 0x31, 0x4f, 0x49, 0xd2, 0x41, + 0xc1, 0xc8, 0xf7, 0xac, 0xd8, 0xee, 0x0b, 0x7f, 0xac, 0x1c, 0x7b, 0x55, + 0x95, 0x96, 0x1c, 0x7d, 0xed, 0xb5, 0x8b, 0x82, 0x34, 0x53, 0xee, 0x58, + 0x68, 0xe3, 0x93, 0xef, 0x28, 0xaa, 0xf2, 0x69, 0xa8, 0xe3, 0x29, 0xc5, + 0x3c, 0x39, 0x61, 0xf2, 0x9c, 0x0f, 0x5a, 0x70, 0x9c, 0xaf, 0x04, 0x66, + 0xa2, 0xd2, 0x5b, 0x17, 0x74, 0xf7, 0x33, 0xe4, 0xb4, 0x96, 0x1c, 0xe3, + 0xe6, 0x15, 0x18, 0x94, 0xaf, 0xde, 0xc8, 0xad, 0x85, 0x91, 0x1b, 0xaf, + 0x7a, 0x49, 0x6d, 0x63, 0x94, 0x74, 0x19, 0xa7, 0xed, 0x3f, 0x99, 0x0b, + 0xd9, 0xa7, 0xf0, 0x99, 0x8b, 0x2e, 0xee, 0xf5, 0x65, 0x19, 0x4f, 0x7a, + 0x6c, 0xda, 0x6b, 0x28, 0xca, 0x1f, 0xc2, 0xa9, 0x3f, 0x99, 0x1b, 0x61, + 0x81, 0x5a, 0xbb, 0x29, 0xec, 0xc8, 0x7c, 0xd0, 0xdc, 0xd2, 0x66, 0x55, + 0x1d, 0xa9, 0x8d, 0x30, 0xcf, 0xca, 0x0f, 0xe1, 0x55, 0x51, 0xf2, 0x39, + 0xe6, 0xa6, 0x47, 0xda, 0x0f, 0x7a, 0x8e, 0x5b, 0x0d, 0x4a, 0xe5, 0x88, + 0xee, 0xbe, 0x6d, 0xac, 0x31, 0xef, 0x56, 0x43, 0x71, 0xea, 0x2b, 0x3f, + 0x76, 0x49, 0xf9, 0x6a, 0x48, 0xe5, 0x65, 0xfa, 0x7a, 0x54, 0x4a, 0x1d, + 0x8d, 0x14, 0xac, 0x58, 0x9e, 0xdd, 0x67, 0x5c, 0x11, 0xf8, 0xd6, 0x73, + 0x46, 0x6d, 0x9f, 0x6b, 0x0e, 0x0f, 0x43, 0x5a, 0x51, 0x48, 0x08, 0xc8, + 0xef, 0x4b, 0x3c, 0x4b, 0x32, 0x10, 0xdc, 0x8f, 0x5a, 0x51, 0x93, 0x8e, + 0x8f, 0x62, 0xa5, 0x05, 0x25, 0x75, 0xb9, 0x40, 0x15, 0x3d, 0x69, 0xca, + 0xea, 0xb9, 0xaa, 0xcd, 0x13, 0x5b, 0xcb, 0xb5, 0xba, 0x76, 0xa9, 0x94, + 0x71, 0xcf, 0x15, 0xb3, 0x48, 0xc2, 0xef, 0x62, 0x42, 0xea, 0x6a, 0x36, + 0x71, 0xd8, 0x66, 0x9e, 0x01, 0x6c, 0x53, 0x59, 0x58, 0x70, 0x30, 0x6a, + 0x55, 0x86, 0xd1, 0x76, 0xd6, 0x62, 0xf1, 0x8c, 0xf5, 0x15, 0x39, 0xf9, + 0x81, 0x35, 0x9f, 0x6a, 0xc6, 0x37, 0xdb, 0xeb, 0x57, 0x9b, 0xee, 0x9a, + 0xc2, 0x4a, 0xcc, 0xe8, 0x83, 0xba, 0x2b, 0xdc, 0x9f, 0xdd, 0x0a, 0xac, + 0x92, 0x03, 0xd4, 0x55, 0x9b, 0xbf, 0xf5, 0x3f, 0x4a, 0xa8, 0xa3, 0x3c, + 0x0a, 0xd6, 0x3b, 0x19, 0xcf, 0x49, 0x0f, 0x59, 0x3e, 0x6c, 0x62, 0x95, + 0xdc, 0x03, 0x8c, 0x66, 0x90, 0x2e, 0x07, 0xbd, 0x47, 0x23, 0x32, 0xe7, + 0x8c, 0xd5, 0x5a, 0xec, 0x86, 0xec, 0x24, 0x23, 0xcd, 0xb8, 0xe9, 0xc2, + 0xd5, 0xb6, 0x38, 0xf4, 0xa8, 0x2c, 0xd4, 0x88, 0xcb, 0x1e, 0x09, 0xa9, + 0x24, 0x6d, 0xa3, 0x27, 0x90, 0x29, 0x4b, 0x57, 0x63, 0x48, 0xe9, 0x1b, + 0xb1, 0x8c, 0xd9, 0xe2, 0x81, 0x17, 0xa7, 0x35, 0x08, 0x90, 0x75, 0x23, + 0x9a, 0x77, 0x98, 0x36, 0x9e, 0x78, 0xaa, 0xb3, 0x23, 0x99, 0x6e, 0x3c, + 0xa1, 0x03, 0xb5, 0x41, 0x2e, 0x00, 0x39, 0x14, 0x49, 0x28, 0x0b, 0x9c, + 0x9c, 0x54, 0x96, 0x56, 0x8d, 0x3b, 0x79, 0x8f, 0x9d, 0x83, 0xa6, 0x7b, + 0xd5, 0x7c, 0x2a, 0xec, 0xcf, 0xe3, 0x76, 0x88, 0xcb, 0x4b, 0x23, 0x3b, + 0x6e, 0x61, 0x84, 0xfe, 0x75, 0xaf, 0x1a, 0xac, 0x6b, 0xb5, 0x40, 0x02, + 0x97, 0x01, 0x17, 0xd0, 0x0a, 0xab, 0x2d, 0xc1, 0x63, 0x85, 0xe9, 0x5c, + 0xee, 0x4e, 0xa3, 0x3a, 0x63, 0x18, 0xd3, 0x43, 0xe7, 0xba, 0x11, 0xf0, + 0xbc, 0x9a, 0xa2, 0xf2, 0xb3, 0x3e, 0x4b, 0x64, 0xd3, 0x8b, 0x01, 0x9e, + 0x3f, 0x1a, 0x8a, 0x47, 0x1e, 0xb5, 0xac, 0x22, 0x91, 0x84, 0xe5, 0x71, + 0xad, 0x3f, 0x96, 0x7d, 0x69, 0xa6, 0xe0, 0x11, 0xe8, 0x4d, 0x42, 0xd9, + 0x73, 0x81, 0xd6, 0xa7, 0x8a, 0xc9, 0x98, 0x02, 0xff, 0x00, 0x95, 0x6f, + 0x68, 0xad, 0xcc, 0x57, 0x34, 0xb4, 0x44, 0x44, 0xb3, 0x9c, 0x2f, 0x39, + 0xa9, 0xa1, 0xd3, 0xdd, 0x8e, 0x58, 0xed, 0x5f, 0x4a, 0xb9, 0x14, 0x49, + 0x10, 0xe0, 0x00, 0x29, 0xed, 0x3e, 0xde, 0x82, 0xb2, 0x75, 0x1e, 0xd1, + 0x36, 0x54, 0xd2, 0xd6, 0x43, 0x62, 0xb1, 0x8e, 0x2c, 0x70, 0x09, 0xf7, + 0xa9, 0xc3, 0xa2, 0xfb, 0xfd, 0x2a, 0xb3, 0x4d, 0x91, 0x9c, 0xd4, 0x2d, + 0x30, 0x5c, 0xe0, 0xe0, 0xd6, 0x7c, 0xae, 0x5b, 0x94, 0xe4, 0xa3, 0xb1, + 0xa1, 0xe6, 0x8e, 0xdc, 0x53, 0x1e, 0x4c, 0x8c, 0xee, 0xc1, 0x15, 0x9a, + 0x6e, 0xcf, 0xd2, 0xa3, 0xf3, 0xd9, 0x87, 0x1d, 0x7d, 0x2a, 0x95, 0x26, + 0x43, 0xaa, 0x68, 0x1b, 0xc0, 0x0e, 0x0f, 0xff, 0x00, 0xae, 0xa0, 0x9a, + 0x60, 0xe0, 0x30, 0x38, 0xfa, 0xd5, 0x71, 0x0c, 0xd3, 0x1c, 0x05, 0x24, + 0x7b, 0x55, 0x88, 0xf4, 0x99, 0x5b, 0x00, 0x9d, 0xbf, 0x5a, 0xab, 0x46, + 0x3b, 0xb1, 0x7b, 0xf2, 0xd9, 0x15, 0x24, 0xb8, 0x24, 0xe0, 0x7e, 0x62, + 0x95, 0xe5, 0x67, 0x18, 0x1d, 0xfb, 0x1a, 0xd4, 0x8f, 0x43, 0x41, 0xcb, + 0xb1, 0x27, 0xda, 0xa7, 0x4d, 0x3e, 0xda, 0x21, 0xc8, 0x19, 0xf7, 0xa1, + 0xd6, 0x82, 0xd8, 0x6a, 0x94, 0x9e, 0xec, 0xc0, 0x01, 0x8b, 0x81, 0x8a, + 0x95, 0x6d, 0xe5, 0xda, 0x70, 0x0f, 0x3e, 0xd5, 0xba, 0x0d, 0xbc, 0x5d, + 0xd4, 0x53, 0x5a, 0xfa, 0x05, 0x24, 0x64, 0x9f, 0xc2, 0xa7, 0xdb, 0x37, + 0xb4, 0x47, 0xec, 0xe2, 0xb7, 0x66, 0x32, 0x69, 0xf3, 0x71, 0x84, 0x27, + 0xeb, 0x52, 0x2e, 0x99, 0x31, 0x53, 0x90, 0x05, 0x69, 0x3e, 0xa1, 0x10, + 0x04, 0xaa, 0xe4, 0xfd, 0x6a, 0x33, 0xaa, 0x8c, 0x64, 0x28, 0x03, 0xeb, + 0x47, 0x3d, 0x47, 0xd0, 0x39, 0x69, 0xae, 0xa5, 0x3f, 0xec, 0x99, 0x71, + 0xc9, 0x00, 0x53, 0xc6, 0x90, 0xf8, 0xc1, 0x61, 0x93, 0x53, 0x1d, 0x58, + 0x92, 0x07, 0xcb, 0x50, 0xcd, 0xab, 0xba, 0xb2, 0x95, 0x00, 0xe7, 0xd2, + 0x9a, 0x75, 0x5e, 0x82, 0xb5, 0x31, 0x06, 0x90, 0xf8, 0xc1, 0x7a, 0x69, + 0xd2, 0x1f, 0x3f, 0x7a, 0x86, 0xd5, 0xa4, 0x28, 0x3a, 0x03, 0xe9, 0x4e, + 0x6d, 0x4d, 0xf6, 0xae, 0x08, 0xe6, 0xab, 0xf7, 0xa8, 0x56, 0xa6, 0x30, + 0xe8, 0xed, 0x9c, 0xee, 0x18, 0xc5, 0x46, 0x74, 0xa9, 0x17, 0xb8, 0x35, + 0x28, 0xd4, 0x5c, 0x9e, 0x4d, 0x37, 0xfb, 0x49, 0xc0, 0xe4, 0x0f, 0x6a, + 0x69, 0xd4, 0x25, 0xfb, 0x32, 0x36, 0xd2, 0xe6, 0xc6, 0x06, 0x31, 0xf5, + 0xa8, 0x9f, 0x4e, 0x98, 0x0e, 0x84, 0xfb, 0x55, 0x93, 0xaa, 0x38, 0x03, + 0xe5, 0x14, 0xa3, 0x57, 0x1c, 0xe5, 0x31, 0x8a, 0xa4, 0xea, 0xf6, 0x26, + 0xd4, 0xd9, 0x9c, 0xf6, 0xb2, 0xaf, 0xfc, 0xb3, 0x3f, 0x95, 0x55, 0x95, + 0x24, 0x46, 0xf9, 0x81, 0xfc, 0xab, 0x6b, 0xfb, 0x52, 0x26, 0x1c, 0x83, + 0x50, 0xc9, 0x74, 0x92, 0x7b, 0xd6, 0xb1, 0x9c, 0xba, 0xa3, 0x39, 0x42, + 0x0f, 0x66, 0x62, 0xa3, 0x16, 0x3c, 0x74, 0xad, 0x3b, 0x0b, 0x4f, 0x30, + 0xe4, 0xf0, 0x05, 0x4b, 0x0d, 0xb2, 0xcc, 0xe3, 0x0a, 0x36, 0xfb, 0x55, + 0xe5, 0x55, 0x8d, 0x76, 0x81, 0x8a, 0x2a, 0x55, 0xe8, 0x87, 0x4e, 0x8d, + 0xb5, 0x6c, 0x7a, 0xb2, 0xa2, 0x80, 0x06, 0x05, 0x2e, 0x77, 0x7e, 0x14, + 0xc0, 0x46, 0x3a, 0xd1, 0xbf, 0xf1, 0xae, 0x5b, 0x1d, 0x44, 0x99, 0x2b, + 0xec, 0x28, 0xdf, 0xb4, 0x64, 0xe0, 0x7d, 0x6a, 0xbc, 0xd3, 0x88, 0x97, + 0x24, 0xfe, 0x15, 0x93, 0x73, 0x7c, 0xf2, 0x92, 0x09, 0xc0, 0xf6, 0xad, + 0x61, 0x4d, 0xcc, 0xce, 0x75, 0x14, 0x0d, 0x73, 0xa9, 0x46, 0x1b, 0x68, + 0x6e, 0x6a, 0x62, 0xb1, 0xdc, 0x2f, 0x38, 0x6c, 0xd7, 0x31, 0xb8, 0x93, + 0xe9, 0xef, 0x52, 0x47, 0x71, 0x24, 0x04, 0x6d, 0x7c, 0x1a, 0xdd, 0xe1, + 0xed, 0xf0, 0xb3, 0x97, 0xdb, 0x5f, 0xe2, 0x36, 0x26, 0xd2, 0xc1, 0xe6, + 0x33, 0x81, 0xe9, 0x54, 0xe5, 0x81, 0xe3, 0xce, 0x41, 0x23, 0xd6, 0x9f, + 0x06, 0xb6, 0xf9, 0x01, 0xc7, 0x1e, 0xa2, 0xaf, 0x25, 0xd4, 0x53, 0x83, + 0xc8, 0x34, 0x5e, 0xa4, 0x3e, 0x20, 0x7c, 0x93, 0x5e, 0xee, 0x86, 0x2f, + 0x9b, 0xda, 0x8d, 0xe4, 0x8e, 0xb5, 0x7a, 0xea, 0xcd, 0x1c, 0x92, 0xbc, + 0x1a, 0xa2, 0xd1, 0x14, 0x6c, 0x11, 0xcf, 0xad, 0x75, 0x46, 0x51, 0x96, + 0xc7, 0x2c, 0xf9, 0xa0, 0xf5, 0x14, 0x3a, 0x8c, 0x1e, 0x73, 0xea, 0x2b, + 0x4e, 0xcb, 0xc4, 0x13, 0x41, 0x84, 0x7c, 0xba, 0x7e, 0xa2, 0xb2, 0xbc, + 0xb3, 0xc5, 0x4c, 0x23, 0xce, 0x0e, 0x2a, 0xe5, 0x49, 0x4f, 0x49, 0x19, + 0x7b, 0x67, 0x17, 0x74, 0x74, 0x69, 0xaa, 0xa5, 0xca, 0xf0, 0x73, 0xc5, + 0x67, 0x6a, 0x08, 0x93, 0x65, 0xd7, 0xef, 0x7a, 0x8e, 0xf5, 0x45, 0x09, + 0x0c, 0x31, 0x95, 0xfa, 0x52, 0x97, 0x90, 0x0c, 0x1e, 0x7d, 0xeb, 0x15, + 0x41, 0xd3, 0x95, 0xe2, 0x6a, 0xf1, 0x0a, 0xa4, 0x6d, 0x24, 0x37, 0xc9, + 0x0d, 0xd2, 0x9e, 0xab, 0x81, 0xc7, 0x27, 0xde, 0x92, 0x12, 0x41, 0x3c, + 0xe7, 0xda, 0xa7, 0xdb, 0xc6, 0x6b, 0xb5, 0x6a, 0x8e, 0x09, 0x37, 0x17, + 0x62, 0x10, 0xa7, 0x69, 0xec, 0x69, 0xf1, 0xa1, 0x53, 0xd7, 0x91, 0xde, + 0x9e, 0x22, 0x32, 0x76, 0xc9, 0xf6, 0x15, 0x24, 0x56, 0xd3, 0x31, 0xe2, + 0x36, 0x39, 0xf6, 0xa4, 0xda, 0x5b, 0xb0, 0x4a, 0x4f, 0x61, 0xbf, 0x69, + 0x90, 0x70, 0x79, 0xa6, 0x99, 0x19, 0xc8, 0xdc, 0x72, 0x3d, 0xaa, 0xe0, + 0xd3, 0x2e, 0x59, 0x41, 0x10, 0x39, 0xc7, 0x6a, 0x7c, 0x3a, 0x25, 0xd5, + 0xc0, 0x25, 0x62, 0xda, 0x3a, 0x7c, 0xe7, 0x15, 0x85, 0xe9, 0xad, 0x6e, + 0x74, 0x7e, 0xf6, 0x5a, 0x72, 0x94, 0xc2, 0x63, 0x91, 0x48, 0xb1, 0x75, + 0xcd, 0x6e, 0x47, 0xe1, 0x6b, 0xb7, 0x1f, 0x31, 0x44, 0xfa, 0x1c, 0xd5, + 0x94, 0xf0, 0x7c, 0xc4, 0x0d, 0xd2, 0xa0, 0xf5, 0xa7, 0xed, 0xe9, 0x77, + 0x33, 0xfa, 0xbd, 0x5e, 0xc7, 0x32, 0x22, 0x19, 0xe3, 0x9f, 0x4a, 0x1e, + 0x22, 0x73, 0xc7, 0x35, 0xd3, 0x3f, 0x84, 0xa4, 0x42, 0x3f, 0x7a, 0x3f, + 0x01, 0x55, 0xe6, 0xf0, 0xcc, 0xc8, 0x32, 0x24, 0x07, 0xeb, 0x53, 0xf5, + 0x8a, 0x57, 0xb5, 0xca, 0xfa, 0xbd, 0x6d, 0xec, 0x73, 0xc1, 0x18, 0xb7, + 0x5c, 0x52, 0x84, 0x2c, 0x4f, 0x1d, 0x2b, 0x69, 0xbc, 0x3f, 0x3a, 0x91, + 0xf3, 0x21, 0x07, 0xbd, 0x28, 0xf0, 0xf4, 0xc3, 0x23, 0x7a, 0x67, 0xe9, + 0x4f, 0xdb, 0x52, 0x5a, 0xdc, 0x6e, 0x9d, 0x57, 0xa5, 0x8c, 0x33, 0x01, + 0x2c, 0x49, 0x38, 0xcd, 0x46, 0xd1, 0x11, 0x8c, 0x57, 0x40, 0x7c, 0x3d, + 0x72, 0x7a, 0x32, 0x1a, 0x86, 0x4d, 0x06, 0xf1, 0x7f, 0x81, 0x5b, 0xe8, + 0x6a, 0xbd, 0xb5, 0x27, 0xf6, 0x89, 0xf6, 0x55, 0x97, 0x43, 0x14, 0x47, + 0xb8, 0x8c, 0x8c, 0xd2, 0x48, 0x81, 0x47, 0x23, 0x9a, 0xd3, 0x7d, 0x36, + 0xe6, 0x23, 0x86, 0x81, 0xc7, 0xb8, 0x19, 0xaa, 0x32, 0x40, 0xc1, 0xcf, + 0x98, 0xac, 0xb9, 0xfe, 0xf0, 0xc5, 0x69, 0xcd, 0x19, 0x2d, 0x19, 0x9f, + 0x2c, 0xe2, 0xfd, 0xe5, 0x62, 0x31, 0x7a, 0x41, 0x1e, 0xdd, 0x29, 0x65, + 0xbd, 0x92, 0x45, 0xc2, 0x9d, 0xa3, 0xd6, 0x93, 0xc8, 0x5e, 0xf4, 0xd6, + 0x8c, 0x01, 0xc5, 0x42, 0xa5, 0x1d, 0xcd, 0x5d, 0x79, 0x35, 0x64, 0x56, + 0x91, 0x99, 0x8f, 0x24, 0x9c, 0xd4, 0x45, 0x4e, 0x33, 0x9e, 0x6a, 0xdb, + 0x44, 0x48, 0x3c, 0xd3, 0x3c, 0x9e, 0x72, 0x78, 0xad, 0x39, 0x48, 0x55, + 0x2c, 0x56, 0x3b, 0xb1, 0xcd, 0x2c, 0x30, 0xbc, 0xec, 0x00, 0xfc, 0xe9, + 0xd2, 0x9c, 0x71, 0xda, 0x9d, 0x15, 0xd7, 0x96, 0x00, 0x03, 0x02, 0xb3, + 0x9e, 0x9f, 0x09, 0xd3, 0x4d, 0xf3, 0x6b, 0x23, 0x52, 0xce, 0xd2, 0x2b, + 0x70, 0x09, 0x1b, 0x9b, 0xd6, 0xae, 0x4b, 0x7c, 0x90, 0xa7, 0xcc, 0xc1, + 0x40, 0xed, 0x58, 0x32, 0x6a, 0x2f, 0xb7, 0x09, 0xc7, 0xbd, 0x55, 0x32, + 0xb4, 0x8d, 0x96, 0x24, 0x9f, 0x7a, 0xe2, 0xf6, 0x0e, 0x6e, 0xf3, 0x3b, + 0x55, 0x78, 0xc7, 0x48, 0x9a, 0x97, 0x1a, 0xe3, 0x31, 0x22, 0x25, 0xc7, + 0xb9, 0xac, 0xe9, 0x26, 0x92, 0x62, 0x77, 0x31, 0x6a, 0x88, 0x91, 0x46, + 0xed, 0xdc, 0x0a, 0xe8, 0x8d, 0x35, 0x0d, 0x91, 0x93, 0xa8, 0xe5, 0xbb, + 0x1e, 0xbf, 0x27, 0xb9, 0xab, 0x76, 0xb7, 0x2f, 0x1b, 0x70, 0x4e, 0x07, + 0x6a, 0x8a, 0xde, 0xd5, 0xa4, 0x00, 0x81, 0x9f, 0x7a, 0xbd, 0x15, 0x88, + 0xe0, 0xbb, 0x01, 0xf4, 0xac, 0xa7, 0x28, 0xec, 0xcd, 0xa1, 0x09, 0x3d, + 0x4b, 0x76, 0xf7, 0x69, 0x2e, 0x06, 0x70, 0xd5, 0x73, 0x8c, 0x64, 0x77, + 0xaa, 0x44, 0x5b, 0xc0, 0x80, 0xe4, 0x0c, 0x77, 0xa8, 0x5f, 0x58, 0x89, + 0x48, 0x00, 0x93, 0x9a, 0xe1, 0x70, 0x72, 0x7e, 0xea, 0x3a, 0xf9, 0xd4, + 0x7e, 0x26, 0x69, 0x73, 0x8f, 0x7a, 0x3a, 0x8a, 0x82, 0x1b, 0x95, 0x95, + 0x46, 0x1b, 0xf1, 0xa9, 0x15, 0xc0, 0xc0, 0xcd, 0x64, 0xd3, 0x46, 0x97, + 0x4c, 0x64, 0xd1, 0x2c, 0xc0, 0x82, 0x3e, 0x95, 0x97, 0x34, 0x6f, 0x6c, + 0x76, 0xf3, 0xd7, 0x8a, 0xd9, 0x12, 0x00, 0xd8, 0xe2, 0xa2, 0xbb, 0xb7, + 0x59, 0xe3, 0x23, 0x1c, 0xfa, 0xd6, 0x90, 0x9f, 0x2b, 0xb3, 0xd8, 0x89, + 0x2b, 0xea, 0xb7, 0x28, 0xc1, 0xa9, 0xed, 0x04, 0x05, 0xcf, 0x6a, 0x78, + 0xd6, 0xd9, 0x78, 0xd8, 0x07, 0xd7, 0xb5, 0x66, 0x5c, 0x46, 0xd6, 0xad, + 0x90, 0x39, 0xa8, 0x83, 0xb3, 0x9c, 0x80, 0x2b, 0xaf, 0xd9, 0x42, 0x5a, + 0xd8, 0xe5, 0xf6, 0xb2, 0x5a, 0x5c, 0xd9, 0x1a, 0xa4, 0xad, 0x9c, 0x10, + 0x3d, 0x29, 0x63, 0xbd, 0x96, 0x64, 0xe2, 0x4c, 0x30, 0xeb, 0x59, 0xd1, + 0x43, 0x2b, 0x2f, 0xdd, 0xab, 0x31, 0x59, 0xca, 0x72, 0x70, 0x79, 0xac, + 0x9c, 0x20, 0x8b, 0x52, 0x93, 0x2c, 0x9b, 0x99, 0x49, 0x39, 0x94, 0x9e, + 0x2a, 0x37, 0x9e, 0x4d, 0xc0, 0x79, 0x8d, 0x82, 0x33, 0x4f, 0x16, 0x72, + 0xe0, 0x71, 0xd2, 0x9b, 0x35, 0xb4, 0xa0, 0xa8, 0x03, 0xb5, 0x4a, 0xe5, + 0xb9, 0x76, 0x93, 0x10, 0xca, 0xe5, 0x7e, 0xf9, 0xc8, 0xa5, 0x89, 0xe4, + 0x2b, 0xfe, 0xb0, 0x93, 0x51, 0x8b, 0x49, 0x8b, 0x0c, 0x82, 0x6a, 0xd4, + 0x76, 0x0e, 0x00, 0x38, 0xc9, 0xfa, 0xd1, 0x27, 0x18, 0x8f, 0x96, 0x44, + 0x3e, 0x6c, 0x9b, 0xfe, 0xf9, 0xcf, 0xa6, 0x69, 0x65, 0xb9, 0x91, 0x58, + 0x00, 0xc7, 0x9a, 0x9c, 0xd8, 0x3a, 0xf2, 0x17, 0xf5, 0xa6, 0x3d, 0x84, + 0xc4, 0xe7, 0xcb, 0x39, 0xa9, 0xe6, 0x83, 0x07, 0xcd, 0xd8, 0x6a, 0x5d, + 0xcb, 0x91, 0xfb, 0xc3, 0x8f, 0x4a, 0x93, 0xed, 0x92, 0xe7, 0x01, 0x86, + 0x7d, 0xea, 0x16, 0xb4, 0x91, 0x3f, 0x84, 0xf3, 0xd7, 0x8a, 0x69, 0x86, + 0x40, 0x49, 0xc1, 0xfc, 0xa9, 0xda, 0x2c, 0x49, 0xc9, 0x16, 0xdb, 0x53, + 0x75, 0x18, 0x20, 0x7d, 0x69, 0x7f, 0xb5, 0x38, 0xe5, 0x38, 0xaa, 0x05, + 0x58, 0xf5, 0x06, 0xa3, 0x6d, 0xc3, 0xb6, 0x05, 0x0a, 0x9c, 0x47, 0xcf, + 0x23, 0x5a, 0x2d, 0x4e, 0x27, 0x1c, 0xe5, 0x6a, 0xc2, 0x5d, 0xc0, 0xe0, + 0x1d, 0xc2, 0xb0, 0x8f, 0x1d, 0xa8, 0x56, 0xc2, 0xfb, 0xd0, 0xe9, 0x27, + 0xb0, 0xd5, 0x56, 0x6f, 0x98, 0x2d, 0xe5, 0xea, 0xaa, 0x7d, 0xea, 0x17, + 0xd2, 0xa2, 0x3f, 0x74, 0xe2, 0xb3, 0x22, 0x7d, 0x83, 0x86, 0x23, 0xf1, + 0xa9, 0xd2, 0xfa, 0x45, 0x39, 0x0d, 0x9f, 0xad, 0x47, 0x24, 0x96, 0xcc, + 0xbe, 0x74, 0xf7, 0x43, 0xdf, 0x4b, 0x91, 0x39, 0x53, 0x9a, 0xac, 0xf1, + 0x48, 0x87, 0x0e, 0x3f, 0x3a, 0xd0, 0x8f, 0x51, 0x27, 0xef, 0xa5, 0x58, + 0x4b, 0xb8, 0x64, 0xe0, 0x91, 0xf4, 0x34, 0xb9, 0xa4, 0xb7, 0x41, 0xcb, + 0x07, 0xb1, 0x8e, 0xb3, 0x14, 0x3d, 0xd6, 0xa5, 0x17, 0x6c, 0x7a, 0x90, + 0x6b, 0x42, 0x5b, 0x28, 0x65, 0x1c, 0x0c, 0x67, 0xd2, 0xa8, 0xcd, 0xa6, + 0xb2, 0x72, 0x87, 0x23, 0xd2, 0x9a, 0x9c, 0x5e, 0xe4, 0xb8, 0x49, 0x6c, + 0x37, 0xcf, 0x32, 0x1c, 0x67, 0x68, 0xa9, 0x62, 0xb8, 0x78, 0xcf, 0x5c, + 0xd5, 0x32, 0x0c, 0x47, 0x0c, 0xbd, 0x28, 0xf3, 0x8e, 0x78, 0xe0, 0x56, + 0x8e, 0x29, 0x92, 0x9d, 0x8d, 0x78, 0xaf, 0x14, 0x91, 0x93, 0x8f, 0xad, + 0x4d, 0x24, 0x69, 0x38, 0xc1, 0x00, 0x83, 0x58, 0xaa, 0xe0, 0xf6, 0xe6, + 0xad, 0x43, 0x70, 0xf1, 0x1c, 0xe7, 0x81, 0xda, 0xb9, 0xe5, 0x4e, 0xda, + 0xa3, 0x65, 0x3b, 0xee, 0x2d, 0xc6, 0x9a, 0xd1, 0x02, 0xd1, 0x1c, 0x8f, + 0x4a, 0xa6, 0x24, 0x2a, 0xd8, 0x6c, 0x83, 0x5b, 0x71, 0x5d, 0x24, 0x83, + 0xdf, 0xd2, 0x99, 0x73, 0x65, 0x1d, 0xc0, 0x24, 0x70, 0xde, 0xb4, 0xa3, + 0x51, 0xad, 0x26, 0x27, 0x04, 0xf5, 0x89, 0x9e, 0x8f, 0xb8, 0x60, 0xd4, + 0xa5, 0x70, 0x01, 0xfe, 0x55, 0x56, 0x48, 0xde, 0xd5, 0xf6, 0xb8, 0xf9, + 0x7b, 0x1a, 0x96, 0x29, 0xcf, 0x4e, 0xd5, 0xa3, 0x5d, 0x51, 0x09, 0xdb, + 0x46, 0x4c, 0xa4, 0xc6, 0x72, 0x33, 0x56, 0x63, 0x93, 0x78, 0xf6, 0xaa, + 0xc1, 0xb7, 0x0e, 0x3f, 0x3a, 0x03, 0x32, 0x30, 0x23, 0xa7, 0x7a, 0xc9, + 0xab, 0x9a, 0xc5, 0xd8, 0x9a, 0xe6, 0xdc, 0x4c, 0x84, 0x1e, 0xbd, 0x8d, + 0x53, 0x4f, 0x95, 0x8a, 0x37, 0x0c, 0x2b, 0x41, 0x1b, 0x7a, 0xd5, 0x4b, + 0xc8, 0x88, 0x22, 0x40, 0x39, 0x14, 0x41, 0xfd, 0x96, 0x39, 0xc7, 0x4e, + 0x64, 0x28, 0x34, 0xa6, 0xa1, 0x47, 0xdc, 0x3a, 0x1a, 0x94, 0x72, 0x3d, + 0xea, 0x9a, 0xb1, 0x29, 0xdc, 0x6e, 0x76, 0x48, 0xa6, 0xaf, 0x83, 0x98, + 0xf3, 0x54, 0x1d, 0x48, 0xe7, 0x35, 0x6e, 0x26, 0xdd, 0x10, 0xef, 0xc5, + 0x44, 0xfa, 0x32, 0xe1, 0xa3, 0xb1, 0x15, 0xc3, 0xfe, 0xe5, 0x8f, 0x5a, + 0xa7, 0x14, 0xc7, 0xae, 0xda, 0xb5, 0x2c, 0x65, 0xa3, 0x65, 0x04, 0x54, + 0x49, 0x01, 0x09, 0xd6, 0xb4, 0x8d, 0x92, 0x31, 0x9b, 0xbb, 0xba, 0x13, + 0xed, 0x24, 0x2f, 0xdc, 0xa8, 0xa4, 0xb8, 0x32, 0x0c, 0x63, 0x19, 0xab, + 0x06, 0x3c, 0x2e, 0x47, 0xf2, 0xa8, 0x3c, 0x82, 0xd2, 0xa9, 0xeb, 0x8e, + 0x6a, 0x97, 0x29, 0x2d, 0xb7, 0xa1, 0x69, 0x48, 0x44, 0x03, 0xd0, 0x55, + 0x5b, 0x89, 0x46, 0xe0, 0xb9, 0xab, 0x2c, 0x8c, 0x47, 0x03, 0x9a, 0xaf, + 0xf6, 0x72, 0xcc, 0x72, 0x32, 0x6a, 0x63, 0x6b, 0xdd, 0x9a, 0xce, 0x5a, + 0x59, 0x11, 0x87, 0x5c, 0x53, 0x4b, 0xa9, 0x1d, 0x69, 0xe6, 0xdc, 0x2a, + 0xf4, 0xa8, 0x0c, 0x5b, 0x9c, 0x2a, 0x93, 0x92, 0x6b, 0x65, 0x66, 0x73, + 0x36, 0xc9, 0xad, 0x2d, 0x7e, 0xd7, 0x2e, 0x7f, 0xe5, 0x98, 0xeb, 0x5b, + 0x41, 0x56, 0x24, 0xf4, 0x50, 0x2a, 0xbd, 0xab, 0x47, 0x04, 0x61, 0x47, + 0x6a, 0xad, 0x7b, 0x7d, 0xe7, 0x12, 0x88, 0x7e, 0x51, 0xde, 0xb9, 0xa5, + 0xcd, 0x52, 0x56, 0xe8, 0x75, 0x46, 0xd4, 0xa3, 0xae, 0xe3, 0xae, 0x2e, + 0x9a, 0x53, 0x85, 0xe1, 0x7f, 0x9d, 0x40, 0x66, 0x28, 0x39, 0x1f, 0x95, + 0x40, 0x64, 0xda, 0x2a, 0x36, 0x9f, 0xb6, 0x32, 0x7a, 0x56, 0xf1, 0x87, + 0x43, 0x09, 0x54, 0xea, 0x3a, 0x5b, 0x8c, 0xd2, 0x43, 0x14, 0x93, 0x11, + 0x9e, 0x16, 0xa6, 0xb7, 0xb3, 0xdd, 0xf3, 0xb8, 0xfc, 0x2a, 0xdb, 0x15, + 0x8c, 0x63, 0x80, 0x69, 0xb9, 0x25, 0xa2, 0x08, 0xc1, 0xbd, 0x64, 0x36, + 0x38, 0x16, 0x3e, 0x9d, 0x6a, 0x5d, 0xe1, 0x6a, 0xbb, 0x4a, 0x46, 0x7d, + 0x2a, 0x27, 0x9c, 0x0e, 0x9c, 0x56, 0x7c, 0xae, 0x5b, 0x9a, 0x39, 0xa8, + 0xad, 0x0b, 0x2c, 0xcb, 0x83, 0x93, 0x9a, 0xad, 0x2c, 0xc5, 0x7a, 0x1e, + 0x2a, 0xb1, 0x9c, 0xb3, 0x71, 0xcd, 0x4f, 0x05, 0x94, 0xd7, 0x18, 0x2d, + 0xf2, 0xaf, 0xbd, 0x5f, 0x2a, 0x8e, 0xac, 0xcb, 0x99, 0xcf, 0x64, 0x40, + 0x67, 0xc9, 0xe3, 0x39, 0xf6, 0xa7, 0xc7, 0x6f, 0x2c, 0xff, 0x00, 0x75, + 0x4e, 0x2b, 0x56, 0x0d, 0x36, 0x28, 0x79, 0x3c, 0x9f, 0x53, 0x52, 0xc9, + 0x71, 0x1c, 0x0b, 0xc0, 0xcf, 0xd2, 0xa1, 0xd5, 0xe9, 0x04, 0x5a, 0xa7, + 0x6d, 0x64, 0xca, 0x70, 0x68, 0xe5, 0xb0, 0x5c, 0xe3, 0xd8, 0x55, 0xd4, + 0xb2, 0xb7, 0x81, 0x79, 0x00, 0x1f, 0x53, 0x54, 0x64, 0xd5, 0x18, 0x8c, + 0xaf, 0x02, 0xa0, 0x92, 0xe4, 0xc9, 0xce, 0x73, 0xf5, 0xa9, 0xe5, 0xa9, + 0x2d, 0xd8, 0xd4, 0xa1, 0x1d, 0x91, 0xb1, 0xf6, 0xa8, 0x10, 0x71, 0xce, + 0x3d, 0x2a, 0x29, 0x35, 0x10, 0x0f, 0x02, 0xb1, 0x8b, 0x92, 0x33, 0x9a, + 0x55, 0x0c, 0xc3, 0xb9, 0xf6, 0xa6, 0xa8, 0xa5, 0xb8, 0x9d, 0x57, 0xd0, + 0xbc, 0xfa, 0x93, 0xb6, 0x70, 0xdc, 0x54, 0x2f, 0x70, 0x64, 0x3d, 0x79, + 0x14, 0xd8, 0xec, 0xa6, 0x93, 0xf8, 0x4e, 0x3d, 0xea, 0xc4, 0x7a, 0x64, + 0x87, 0xef, 0x30, 0x14, 0xfd, 0xc8, 0x8a, 0xd3, 0x91, 0x40, 0xb3, 0xbf, + 0xf1, 0x62, 0x9b, 0xce, 0x06, 0x72, 0x6b, 0x5c, 0x69, 0xb1, 0xa9, 0xcb, + 0x3e, 0x7e, 0x94, 0xa6, 0xde, 0xda, 0x31, 0xcb, 0x03, 0xf5, 0x34, 0xfd, + 0xac, 0x7a, 0x0b, 0xd9, 0xbe, 0xac, 0xc9, 0x55, 0xed, 0x82, 0x45, 0x1e, + 0x51, 0x6c, 0xf5, 0xc7, 0x61, 0x5a, 0xc2, 0x6b, 0x48, 0xf0, 0x06, 0xdf, + 0xc2, 0x98, 0x75, 0x2b, 0x75, 0xce, 0x07, 0xe9, 0x47, 0xb4, 0x93, 0xd9, + 0x07, 0x24, 0x7a, 0xb3, 0x2b, 0xec, 0xee, 0x0f, 0x0a, 0x4d, 0x38, 0xd9, + 0x33, 0xe3, 0xe5, 0x39, 0xf6, 0xed, 0x5a, 0x0f, 0xaa, 0x46, 0x9c, 0x85, + 0x26, 0x98, 0x75, 0x75, 0xce, 0x02, 0x55, 0x73, 0xd4, 0xe8, 0x85, 0xcb, + 0x0e, 0xe5, 0x2f, 0xb1, 0x38, 0xfe, 0x16, 0x6f, 0xc2, 0x94, 0xda, 0x49, + 0xfd, 0xd2, 0x0d, 0x5b, 0xfe, 0xd4, 0x0d, 0xfc, 0x1f, 0xad, 0x35, 0xb5, + 0x45, 0x1f, 0xc3, 0xfa, 0xd3, 0xe6, 0xa8, 0xfa, 0x09, 0xa8, 0x77, 0x29, + 0xfd, 0x99, 0x94, 0x63, 0x06, 0x90, 0xc0, 0x57, 0xb1, 0xfa, 0x55, 0x93, + 0xa9, 0x27, 0x1c, 0x75, 0xa5, 0xfe, 0xd1, 0x5c, 0xfd, 0xda, 0xab, 0xcf, + 0xb0, 0xad, 0x0e, 0xe5, 0x27, 0x88, 0x90, 0x4f, 0x35, 0x03, 0x29, 0x2b, + 0xd3, 0xde, 0xb5, 0x5a, 0xfe, 0x2d, 0xbf, 0x30, 0xe7, 0xe9, 0x51, 0x3d, + 0xd4, 0x1e, 0x83, 0x9a, 0xa8, 0xca, 0x5d, 0x89, 0x71, 0x8b, 0xea, 0x64, + 0x79, 0x8c, 0xb9, 0x15, 0x35, 0xb8, 0x69, 0x58, 0x03, 0x9c, 0x9a, 0xb1, + 0x20, 0x81, 0xfe, 0xe8, 0x19, 0xab, 0x16, 0xf0, 0x88, 0x97, 0x3d, 0x09, + 0xad, 0x65, 0x3d, 0x36, 0x33, 0x8d, 0x3b, 0xcb, 0x72, 0xc4, 0x20, 0x44, + 0x80, 0x62, 0x90, 0xb8, 0x3d, 0x69, 0x85, 0xa9, 0x33, 0x93, 0x5c, 0xa9, + 0x75, 0x3a, 0xdb, 0xd2, 0xc3, 0xf7, 0x0a, 0x8e, 0x6b, 0xf4, 0x83, 0x8e, + 0xad, 0x50, 0x5d, 0x5c, 0x18, 0xd4, 0xaa, 0x83, 0x9f, 0x5a, 0xc8, 0x91, + 0x9b, 0x39, 0x6c, 0x93, 0xef, 0x5d, 0x10, 0xa5, 0xcd, 0xab, 0x39, 0xea, + 0x55, 0xe5, 0xd1, 0x1b, 0x3e, 0x7c, 0x57, 0x3d, 0x58, 0x13, 0xef, 0x51, + 0xcb, 0x64, 0x8e, 0x72, 0xbc, 0x1a, 0xc8, 0xde, 0x41, 0x18, 0xeb, 0x52, + 0xc7, 0x77, 0x2a, 0x74, 0x73, 0xf8, 0xd6, 0xfe, 0xc9, 0xc7, 0xe1, 0x67, + 0x37, 0xb5, 0x4f, 0xe2, 0x45, 0x99, 0xac, 0xd9, 0x47, 0xad, 0x55, 0x21, + 0x90, 0xf3, 0x56, 0x56, 0xfc, 0xe0, 0x06, 0x19, 0xf7, 0xa5, 0x69, 0x12, + 0x61, 0x8a, 0xb4, 0xe4, 0xbe, 0x24, 0x4c, 0x94, 0x5e, 0xa8, 0xaf, 0x9e, + 0x98, 0x18, 0xa7, 0x24, 0x8c, 0x0e, 0x47, 0x1e, 0xf4, 0xac, 0x85, 0x0e, + 0x7a, 0x8a, 0x95, 0x48, 0x6e, 0x9c, 0xfb, 0xd6, 0xc9, 0x26, 0x8e, 0x49, + 0x4a, 0x51, 0xdc, 0x74, 0x77, 0x52, 0x63, 0x93, 0x9f, 0xad, 0x39, 0xe4, + 0x27, 0xaa, 0xd2, 0x18, 0xc7, 0x73, 0x56, 0x20, 0xb7, 0x96, 0x60, 0x02, + 0xa1, 0x3e, 0xfd, 0xaa, 0x5c, 0x63, 0x1d, 0x5e, 0x81, 0x19, 0xca, 0x5a, + 0x2d, 0x4a, 0xeb, 0x81, 0xd7, 0x8a, 0x9d, 0x57, 0x18, 0xe3, 0xde, 0xb5, + 0x2d, 0xbc, 0x39, 0x35, 0xce, 0x19, 0x9d, 0x63, 0x41, 0xed, 0xcd, 0x6b, + 0xd9, 0xf8, 0x7a, 0xd6, 0x1c, 0x17, 0x06, 0x63, 0xea, 0xdd, 0x2b, 0x19, + 0x62, 0xa9, 0xc1, 0x77, 0x34, 0x58, 0x5a, 0x93, 0x77, 0xd8, 0xe6, 0xa1, + 0xb6, 0x92, 0x5e, 0x23, 0x8d, 0x9b, 0xf0, 0xab, 0xd0, 0xe8, 0x17, 0x52, + 0x8d, 0xc4, 0x04, 0x1e, 0x86, 0xba, 0xd8, 0xe2, 0x48, 0xc0, 0x09, 0x1a, + 0x85, 0xf6, 0xa9, 0x2e, 0x50, 0x32, 0x26, 0x3f, 0x21, 0x5c, 0x52, 0xc6, + 0xcd, 0xbb, 0x25, 0x63, 0xae, 0x38, 0x48, 0x47, 0x59, 0x3b, 0x9c, 0xc5, + 0xb7, 0x86, 0x5d, 0xf2, 0xd2, 0x48, 0x14, 0x0f, 0xee, 0x8a, 0xd4, 0xb6, + 0xf0, 0xed, 0xa2, 0xe0, 0x9d, 0xcf, 0xf5, 0x6a, 0xd2, 0x82, 0x12, 0xca, + 0x73, 0xeb, 0x53, 0x2c, 0x20, 0x10, 0x30, 0x05, 0x65, 0x2a, 0xd3, 0x96, + 0xec, 0xd6, 0x34, 0xa1, 0x1d, 0x91, 0x04, 0x7a, 0x65, 0xbc, 0x2b, 0xf2, + 0x46, 0xa0, 0xfd, 0x29, 0xbe, 0x4f, 0xcd, 0xb4, 0x28, 0xc7, 0xd2, 0xb4, + 0x12, 0xc5, 0xa4, 0x20, 0xaa, 0xb1, 0xf4, 0x18, 0xad, 0x0b, 0x5f, 0x0f, + 0xdd, 0xcf, 0xc8, 0xb5, 0x90, 0xfb, 0xe2, 0xb2, 0xe7, 0xb6, 0xec, 0xdb, + 0x95, 0xbd, 0x91, 0x87, 0xe4, 0xb2, 0x4a, 0x0e, 0x30, 0x0d, 0x3e, 0x15, + 0xca, 0x91, 0x8e, 0xf5, 0xd6, 0x43, 0xe0, 0xab, 0xdb, 0x8c, 0x10, 0xa9, + 0x17, 0xfd, 0x74, 0x6c, 0x54, 0xfa, 0x6f, 0xc3, 0xe9, 0x1e, 0x69, 0x61, + 0xb8, 0x98, 0x2b, 0xa1, 0xfe, 0x13, 0xc5, 0x0e, 0x71, 0x68, 0x4a, 0x0d, + 0x33, 0x92, 0x54, 0x64, 0xc7, 0xcd, 0xf8, 0x55, 0x8f, 0x3d, 0x94, 0x7d, + 0xdc, 0xd7, 0x6f, 0x37, 0xc3, 0xcb, 0x68, 0xe1, 0x24, 0xdc, 0x95, 0x23, + 0xa3, 0x13, 0x49, 0x17, 0x81, 0x2c, 0xcf, 0x5d, 0x40, 0x67, 0xde, 0xb3, + 0xe7, 0x45, 0x72, 0xf9, 0x9c, 0x1c, 0xac, 0x64, 0x1e, 0x86, 0xa1, 0x95, + 0x37, 0x46, 0x73, 0x5e, 0x85, 0x2f, 0x81, 0xac, 0x57, 0x18, 0xbf, 0x0d, + 0xf9, 0x54, 0x37, 0x5e, 0x0d, 0xb4, 0xb7, 0x85, 0xa5, 0x37, 0x61, 0x90, + 0x75, 0xe2, 0x9a, 0x9a, 0xec, 0x27, 0x1f, 0x33, 0xcf, 0xbc, 0xac, 0xa2, + 0x0e, 0xb4, 0x86, 0x13, 0xbb, 0x81, 0xf8, 0xd7, 0x75, 0x65, 0xe1, 0xcd, + 0x3d, 0xef, 0x51, 0x7c, 0xf0, 0xca, 0xca, 0x7b, 0x62, 0xaf, 0xdd, 0x78, + 0x37, 0x4f, 0x80, 0x64, 0xce, 0xa3, 0x3e, 0xf5, 0x4e, 0x7e, 0x44, 0xa8, + 0xae, 0xe7, 0x9b, 0xc6, 0xa5, 0x73, 0xdf, 0xda, 0x9c, 0x79, 0x3d, 0x31, + 0x5d, 0xac, 0xfe, 0x10, 0xb6, 0x0e, 0x7c, 0xab, 0xa0, 0x41, 0xe8, 0x3d, + 0x2a, 0x84, 0xbe, 0x13, 0x94, 0x12, 0x63, 0x91, 0x1d, 0x7e, 0xb8, 0xa5, + 0xce, 0x8a, 0xe5, 0xf3, 0x39, 0x46, 0x24, 0x9d, 0xa7, 0x9a, 0xae, 0xd1, + 0x2b, 0x87, 0x0e, 0xa1, 0x86, 0x3b, 0x8a, 0xe9, 0xa6, 0xf0, 0xe4, 0xe8, + 0x7e, 0xe0, 0x3f, 0xee, 0x9a, 0xcd, 0xb9, 0xd2, 0x26, 0x89, 0x5c, 0x95, + 0x20, 0xd5, 0xa9, 0x21, 0x38, 0xb3, 0x14, 0xe9, 0x96, 0xed, 0x10, 0xfd, + 0xd2, 0xf4, 0xf4, 0xaa, 0x4f, 0xa2, 0x5a, 0xcc, 0xb9, 0x08, 0x47, 0xd2, + 0xba, 0x39, 0x74, 0xf9, 0x2d, 0xe3, 0x01, 0xd4, 0x8c, 0x8c, 0x8a, 0xa2, + 0xf1, 0xe0, 0xe0, 0x71, 0x9a, 0xb5, 0x39, 0x74, 0x66, 0x6e, 0x2b, 0xaa, + 0x39, 0xd9, 0xbc, 0x3a, 0x73, 0x98, 0x65, 0xfc, 0x1a, 0xb3, 0xae, 0x34, + 0xab, 0xa8, 0xc6, 0x0c, 0x7b, 0xc7, 0xaa, 0x1c, 0xd7, 0x5e, 0x63, 0x6e, + 0x87, 0xa5, 0x56, 0x74, 0x24, 0x93, 0xc8, 0xae, 0x88, 0xe2, 0x6a, 0x47, + 0xad, 0xcc, 0x65, 0x87, 0xa7, 0x2d, 0x6d, 0x63, 0x89, 0x92, 0xdc, 0xae, + 0x43, 0x29, 0x04, 0x7a, 0x8c, 0x54, 0x25, 0x07, 0x41, 0xcd, 0x76, 0x6b, + 0x0a, 0xb9, 0x05, 0x94, 0x37, 0xd4, 0x54, 0x73, 0x68, 0x76, 0xb7, 0x40, + 0x92, 0x9b, 0x18, 0xf7, 0x5a, 0xe8, 0x58, 0xb4, 0xbe, 0x24, 0x65, 0xf5, + 0x67, 0xf6, 0x59, 0xc6, 0xb4, 0x59, 0x15, 0x1b, 0x26, 0xdc, 0x66, 0xba, + 0x0b, 0xcf, 0x0d, 0x5c, 0x41, 0x93, 0x09, 0x13, 0x27, 0xeb, 0x58, 0x97, + 0x31, 0x49, 0x0b, 0x6d, 0x74, 0x64, 0x3e, 0x84, 0x57, 0x54, 0x6a, 0x42, + 0x6a, 0xf1, 0x67, 0x3b, 0x85, 0x48, 0x3b, 0x34, 0x57, 0x0a, 0x58, 0xe0, + 0x73, 0xef, 0x56, 0x61, 0x44, 0x8b, 0xe6, 0x61, 0xba, 0xa0, 0xdc, 0x57, + 0xa0, 0xa6, 0xb3, 0x13, 0xd6, 0x93, 0x4e, 0x46, 0xb1, 0x94, 0x63, 0xe6, + 0x5f, 0x3a, 0x80, 0x00, 0x81, 0xf9, 0x0a, 0x86, 0x4d, 0x46, 0x46, 0x5c, + 0x2f, 0xca, 0x2a, 0x9f, 0x3d, 0x69, 0x7a, 0xf4, 0xe2, 0xa7, 0xd9, 0x45, + 0x1a, 0x3a, 0xb2, 0x64, 0x8d, 0x31, 0x90, 0xe5, 0x89, 0xa4, 0xc6, 0x5f, + 0x81, 0x91, 0x4e, 0x4b, 0x76, 0x61, 0x9c, 0x71, 0x57, 0x6d, 0xed, 0x94, + 0x7d, 0xe6, 0xe9, 0x53, 0x29, 0x28, 0xec, 0x54, 0x63, 0x29, 0x6e, 0x47, + 0x69, 0xe6, 0x44, 0xe5, 0xb3, 0xc7, 0x71, 0x5a, 0x90, 0xcb, 0xbf, 0x3d, + 0x6a, 0xb8, 0x92, 0x0b, 0x71, 0x9c, 0x83, 0xf5, 0xa8, 0xa4, 0xd5, 0x90, + 0x0c, 0x2a, 0x57, 0x24, 0x93, 0xa8, 0xf4, 0x47, 0x54, 0x5a, 0xa6, 0xb7, + 0x35, 0x01, 0xdc, 0x39, 0xe0, 0xd3, 0xbc, 0xc2, 0x07, 0x35, 0x46, 0xd6, + 0xf1, 0x6e, 0x53, 0x8e, 0x0d, 0x59, 0xce, 0x40, 0xcd, 0x73, 0xb8, 0xd9, + 0xd9, 0x9d, 0x0a, 0x49, 0xea, 0x86, 0x5d, 0xc0, 0x26, 0x19, 0xfe, 0x21, + 0x54, 0xe1, 0x96, 0x2b, 0x72, 0x72, 0x06, 0x73, 0xe9, 0x5a, 0x38, 0x07, + 0x1c, 0xe2, 0xb3, 0x35, 0x08, 0x02, 0x49, 0xbf, 0x6f, 0xca, 0x7d, 0x3d, + 0x6b, 0x5a, 0x6e, 0xfe, 0xeb, 0x33, 0x9e, 0x9e, 0xf2, 0x2e, 0xa6, 0xa7, + 0x12, 0x8c, 0xe0, 0xfe, 0x02, 0xa5, 0x1a, 0xc4, 0x43, 0x18, 0x56, 0x35, + 0x8e, 0x87, 0x23, 0x02, 0xa5, 0x4b, 0x77, 0x67, 0x18, 0x14, 0xdd, 0x28, + 0x75, 0x21, 0x54, 0x93, 0xd8, 0xd4, 0xfe, 0xd5, 0x56, 0x19, 0x08, 0x4f, + 0xe3, 0x43, 0x6a, 0x61, 0x87, 0x31, 0x7e, 0xb5, 0x5a, 0x3b, 0x56, 0x18, + 0x1f, 0xca, 0xa6, 0x16, 0x59, 0x1c, 0x8c, 0xd6, 0x56, 0xa6, 0x8d, 0x2f, + 0x36, 0x38, 0x6a, 0xbe, 0x91, 0x0a, 0x78, 0xd4, 0x9d, 0x87, 0xdc, 0x14, + 0xc1, 0x65, 0xb7, 0x03, 0x06, 0x94, 0x5a, 0x15, 0x5c, 0x00, 0x7e, 0x95, + 0x2f, 0x90, 0xaf, 0x7c, 0x93, 0xfb, 0x4d, 0x80, 0xe5, 0x47, 0xe7, 0x4d, + 0x1a, 0xc9, 0xc7, 0xdc, 0xfc, 0x8d, 0x46, 0x6d, 0x58, 0xf6, 0xa6, 0x7d, + 0x8b, 0x69, 0xcf, 0x22, 0x85, 0x1a, 0x7d, 0x42, 0xf3, 0x2d, 0x7f, 0x69, + 0xaf, 0x52, 0x94, 0xe5, 0xd4, 0xe2, 0x63, 0x82, 0x0d, 0x51, 0x36, 0xc7, + 0x05, 0x72, 0x6a, 0x31, 0x03, 0xab, 0xe0, 0x73, 0x4f, 0x92, 0x0c, 0x5c, + 0xf3, 0x34, 0xcd, 0xcd, 0xb3, 0x7d, 0xe6, 0x00, 0x9f, 0x51, 0x4a, 0xd1, + 0xdb, 0x4b, 0xd0, 0xa9, 0xfa, 0x56, 0x4b, 0x43, 0x26, 0xe0, 0x4f, 0x22, + 0x9a, 0xca, 0xc0, 0x9e, 0x29, 0xfb, 0x35, 0xd1, 0x87, 0xb4, 0x7d, 0x51, + 0xac, 0xda, 0x74, 0x6d, 0xed, 0xf4, 0xaa, 0xef, 0xa6, 0x0c, 0x9c, 0x1f, + 0xa5, 0x55, 0x8e, 0x66, 0x8d, 0x01, 0xdc, 0x77, 0x1e, 0xd5, 0x30, 0xbd, + 0x94, 0x1c, 0x03, 0x9f, 0x73, 0x4b, 0x96, 0x6b, 0x66, 0x3e, 0x68, 0xbd, + 0xd1, 0x1b, 0xd9, 0x4a, 0xa3, 0xa6, 0x47, 0xb5, 0x44, 0x51, 0xe3, 0xea, + 0x0f, 0x15, 0x7e, 0x3d, 0x40, 0xe7, 0x0c, 0xb9, 0xfa, 0x54, 0x8b, 0x73, + 0x04, 0xa4, 0x82, 0x71, 0xec, 0x69, 0xf3, 0xc9, 0x6e, 0x85, 0xcb, 0x17, + 0xb3, 0x33, 0x3c, 0xf2, 0xbd, 0x69, 0xbb, 0xcb, 0x90, 0x7b, 0x56, 0xa3, + 0xda, 0x43, 0x28, 0xca, 0xe3, 0x1e, 0xd5, 0x52, 0x4d, 0x34, 0x81, 0xf2, + 0x1a, 0xb5, 0x38, 0xb2, 0x5c, 0x1a, 0x12, 0x3b, 0xa9, 0x23, 0x19, 0x0c, + 0x48, 0x1d, 0x8d, 0x5b, 0x8b, 0x51, 0xdc, 0x00, 0x75, 0xfc, 0x6b, 0x2d, + 0xa1, 0x92, 0x33, 0x83, 0x9e, 0x28, 0x49, 0x0e, 0x4e, 0x78, 0x14, 0xdc, + 0x14, 0x84, 0xa4, 0xe2, 0x6d, 0x91, 0x1d, 0xc2, 0xf6, 0x35, 0x52, 0x7d, + 0x3c, 0x67, 0x29, 0x50, 0x24, 0x81, 0x3e, 0xe9, 0xc1, 0xab, 0x50, 0xdf, + 0x60, 0xe1, 0xc7, 0x15, 0x87, 0x2c, 0xa3, 0xb1, 0xb7, 0x32, 0x96, 0xe5, + 0x12, 0x1a, 0x23, 0x86, 0x15, 0x34, 0x33, 0x81, 0xda, 0xb4, 0x19, 0x62, + 0x9d, 0x78, 0x00, 0xd5, 0x29, 0xec, 0x1a, 0x33, 0xb9, 0x2a, 0x94, 0xd4, + 0xb4, 0x64, 0xb8, 0xb5, 0xaa, 0x25, 0x12, 0x02, 0x72, 0xbc, 0x1a, 0x9e, + 0x1b, 0xc2, 0x84, 0x09, 0x3a, 0x7a, 0xd6, 0x62, 0xc8, 0x50, 0xe0, 0xf0, + 0x6a, 0xd4, 0x52, 0xab, 0x63, 0x23, 0x27, 0xde, 0xa6, 0x50, 0x1c, 0x64, + 0x6a, 0x3a, 0x25, 0xca, 0x60, 0x80, 0x41, 0xac, 0x8b, 0xab, 0x56, 0xb4, + 0x6c, 0x8f, 0x99, 0x0f, 0x7a, 0xb4, 0x97, 0x5e, 0x51, 0x00, 0x72, 0xb5, + 0x6f, 0x72, 0x4f, 0x1f, 0xf7, 0x94, 0xf6, 0xac, 0x53, 0x74, 0xdf, 0x91, + 0xa3, 0x4a, 0x7e, 0xa6, 0x4c, 0x32, 0xfe, 0x35, 0x64, 0x10, 0xfe, 0xf5, + 0x5a, 0xea, 0x03, 0x6a, 0xf9, 0x1c, 0xc6, 0x7f, 0x4a, 0x6c, 0x72, 0x1c, + 0x03, 0xda, 0xba, 0x1a, 0x4d, 0x5d, 0x18, 0xa9, 0x72, 0xbb, 0x32, 0xdc, + 0x52, 0xf9, 0x6f, 0x83, 0xd0, 0xd5, 0x97, 0x01, 0xd6, 0xb3, 0x5d, 0xce, + 0x38, 0x19, 0xa9, 0xed, 0xe7, 0x62, 0xbb, 0x58, 0x60, 0x8a, 0xce, 0x51, + 0xea, 0x8d, 0xa1, 0x35, 0x7b, 0x10, 0xb0, 0xf2, 0xa4, 0x29, 0xdb, 0xb5, + 0x4a, 0x92, 0x01, 0xc1, 0xa4, 0xb8, 0x52, 0xea, 0x08, 0x1c, 0x83, 0x48, + 0xa8, 0x4f, 0x5a, 0xad, 0xd1, 0x9b, 0x6e, 0x2e, 0xc8, 0x7b, 0xc8, 0xa7, + 0xa6, 0x4d, 0x49, 0x6d, 0x2e, 0x63, 0x23, 0xd0, 0xd4, 0x46, 0x22, 0x3b, + 0xd1, 0x04, 0x25, 0x0b, 0x63, 0xa1, 0xa9, 0x69, 0x58, 0x6a, 0x4d, 0x4a, + 0xe6, 0x97, 0x96, 0x98, 0xe9, 0x4a, 0x02, 0x74, 0xc5, 0x46, 0x6e, 0xd1, + 0x57, 0x3b, 0x4d, 0x42, 0x35, 0x18, 0xd8, 0x64, 0x23, 0x56, 0x1c, 0xb2, + 0x66, 0xf7, 0x8a, 0xdc, 0xb9, 0xb6, 0x3e, 0x9b, 0x69, 0x9e, 0x4c, 0x79, + 0xe0, 0x55, 0x73, 0xa8, 0xc6, 0x83, 0x25, 0x0e, 0x3d, 0x6a, 0x58, 0xae, + 0xd2, 0x64, 0x0c, 0x01, 0xc1, 0xa5, 0xcb, 0x25, 0xa8, 0x5e, 0x2f, 0x44, + 0x49, 0xe5, 0x29, 0xef, 0x4d, 0x36, 0xc0, 0x9e, 0xbc, 0xd0, 0x6f, 0x21, + 0x53, 0xb4, 0xb1, 0x06, 0x81, 0x73, 0x09, 0xc7, 0xef, 0x05, 0x1e, 0xf2, + 0x0f, 0x74, 0x63, 0x59, 0xee, 0xe8, 0x41, 0xa8, 0x7e, 0xc0, 0x54, 0xe4, + 0x0a, 0xba, 0x8e, 0x92, 0x72, 0xae, 0x1b, 0xe8, 0x6a, 0x40, 0xa7, 0xd6, + 0x8e, 0x76, 0x83, 0x92, 0x2c, 0xca, 0x9a, 0xdd, 0xf6, 0x90, 0x01, 0x15, + 0x53, 0xc9, 0x2a, 0x70, 0x45, 0x74, 0x41, 0x70, 0x69, 0xe6, 0xde, 0x37, + 0x1f, 0x32, 0x03, 0xf8, 0x55, 0x2a, 0xf6, 0x21, 0xd1, 0x52, 0x39, 0x59, + 0x23, 0xc0, 0xc6, 0x28, 0x82, 0x21, 0x11, 0x0c, 0x46, 0x4d, 0x74, 0x72, + 0x69, 0x50, 0xbf, 0x40, 0x54, 0xd5, 0x29, 0xf4, 0x77, 0x00, 0xec, 0x3b, + 0xab, 0x65, 0x5e, 0x2d, 0x58, 0xc9, 0xd1, 0x94, 0x5d, 0xd1, 0x42, 0x4b, + 0xe0, 0x17, 0x0a, 0x32, 0x6a, 0xb1, 0x98, 0x92, 0x49, 0xeb, 0x56, 0x27, + 0xb1, 0x96, 0x2c, 0xee, 0x42, 0x07, 0xad, 0x55, 0x78, 0x89, 0xe3, 0x15, + 0xbc, 0x79, 0x7a, 0x18, 0xc9, 0xcb, 0xa8, 0x8f, 0x39, 0xce, 0x2a, 0x58, + 0x6c, 0xe5, 0xba, 0x39, 0x23, 0x0b, 0x4e, 0xb6, 0x81, 0x23, 0x60, 0xcf, + 0xf3, 0x1a, 0xb3, 0x2e, 0xa8, 0xb1, 0x8d, 0xa8, 0xbc, 0xd0, 0xdb, 0xda, + 0x08, 0x71, 0x8a, 0xde, 0x6c, 0x9e, 0xde, 0xc6, 0x2b, 0x60, 0x09, 0xeb, + 0xef, 0x4e, 0x96, 0xf9, 0x53, 0x85, 0x1f, 0x9d, 0x65, 0x3d, 0xe3, 0xb9, + 0xc9, 0x6c, 0xd4, 0x7e, 0x69, 0x93, 0xde, 0xb3, 0xf6, 0x4d, 0xeb, 0x26, + 0x5f, 0xb4, 0x4b, 0x48, 0x97, 0x24, 0xbf, 0x2d, 0x9e, 0x6a, 0xbb, 0xdc, + 0xb3, 0x9a, 0x74, 0x56, 0x32, 0x4c, 0x73, 0x8d, 0xa3, 0xd4, 0xd5, 0xc8, + 0xec, 0xa1, 0x83, 0x97, 0x60, 0x4f, 0xfb, 0x55, 0x57, 0x84, 0x08, 0xb4, + 0xe5, 0xb9, 0x9e, 0xb1, 0xbc, 0xad, 0xc0, 0x26, 0xad, 0xc3, 0xa6, 0xbb, + 0x72, 0xe4, 0x2d, 0x4e, 0xd7, 0x91, 0xc5, 0x90, 0x80, 0x1a, 0xaf, 0x2d, + 0xfb, 0x31, 0xeb, 0xb4, 0x7a, 0x0a, 0x57, 0x9c, 0xb6, 0x56, 0x1d, 0xa1, + 0x1d, 0xf5, 0x2d, 0x0b, 0x48, 0x21, 0xe5, 0x8e, 0x4f, 0xb9, 0xa7, 0x1b, + 0xd8, 0x20, 0x18, 0x51, 0xf9, 0x0a, 0xc7, 0x79, 0x1d, 0x9b, 0x92, 0x48, + 0xf7, 0xa1, 0x52, 0x47, 0x1c, 0x9e, 0x68, 0xf6, 0x57, 0xf8, 0x98, 0x7b, + 0x47, 0xb2, 0x46, 0x93, 0xea, 0xc4, 0xfd, 0xc1, 0x8f, 0xad, 0x40, 0xfa, + 0x84, 0xac, 0x47, 0xcd, 0x81, 0xed, 0x50, 0xa5, 0xab, 0xb7, 0x6a, 0x99, + 0x6c, 0x88, 0x1c, 0x91, 0x47, 0x2c, 0x22, 0x17, 0x9b, 0x21, 0x37, 0x0e, + 0x78, 0x39, 0x39, 0xf5, 0xa6, 0x32, 0xb3, 0x67, 0xb0, 0xab, 0xa2, 0x04, + 0x1f, 0x78, 0xd1, 0x98, 0x13, 0xab, 0x0a, 0xae, 0x64, 0xb6, 0x42, 0xe4, + 0x7d, 0x59, 0x48, 0x44, 0xc4, 0x52, 0x88, 0x09, 0xfb, 0xdf, 0x9d, 0x59, + 0x37, 0x90, 0x2f, 0x41, 0x9c, 0x7b, 0x54, 0x67, 0x50, 0x5e, 0x8a, 0x94, + 0xef, 0x27, 0xd0, 0x9b, 0x45, 0x75, 0x22, 0xfb, 0x33, 0x7b, 0x9c, 0x52, + 0xfd, 0x9c, 0xf3, 0x90, 0x69, 0x7f, 0xb4, 0x09, 0xe7, 0x67, 0x5a, 0x69, + 0xbe, 0x93, 0x3c, 0x27, 0x4a, 0xaf, 0x7c, 0x5e, 0xe0, 0xe1, 0x6e, 0xd8, + 0x03, 0x1c, 0x52, 0x1b, 0x37, 0x65, 0xe9, 0x48, 0x35, 0x09, 0x7f, 0xb9, + 0x8f, 0x6a, 0x53, 0x7f, 0x2e, 0x3a, 0x7e, 0x94, 0x5a, 0x61, 0xee, 0x11, + 0x9b, 0x42, 0x38, 0x0a, 0x69, 0xbf, 0x66, 0x6f, 0xee, 0x90, 0x2a, 0x55, + 0xbf, 0x90, 0x0e, 0x52, 0x81, 0xa8, 0xb0, 0x07, 0xe5, 0xe6, 0xab, 0xdf, + 0x17, 0xb8, 0x54, 0x92, 0x16, 0xcf, 0x7a, 0x85, 0xc1, 0x53, 0xcd, 0x5d, + 0x3a, 0xa6, 0x40, 0xdc, 0x95, 0x0b, 0xdf, 0x24, 0xad, 0x8d, 0x9c, 0xd6, + 0x91, 0x72, 0xea, 0x8c, 0xe5, 0xc8, 0xf6, 0x63, 0x6c, 0xa2, 0x32, 0x4b, + 0xcf, 0x41, 0x5a, 0x4c, 0x40, 0xa8, 0x22, 0xc4, 0x68, 0x38, 0xe4, 0xd2, + 0xb3, 0xe7, 0x22, 0xb2, 0x97, 0xbc, 0xcd, 0xa0, 0xb9, 0x23, 0x61, 0xc4, + 0x92, 0x72, 0x2a, 0xb5, 0xcd, 0xe0, 0x84, 0xe0, 0x72, 0xd5, 0x2c, 0x92, + 0x79, 0x69, 0xe8, 0x4f, 0x4a, 0xcf, 0x78, 0x5d, 0xc9, 0x6e, 0x09, 0xad, + 0x21, 0x14, 0xdd, 0xd9, 0x15, 0x26, 0xd2, 0xb2, 0x27, 0x4d, 0x42, 0x32, + 0x30, 0xc3, 0x9a, 0x73, 0x3c, 0x13, 0x77, 0x15, 0x9e, 0xf1, 0x95, 0x24, + 0x11, 0x48, 0xca, 0x40, 0x15, 0xbf, 0xb3, 0x5d, 0x0e, 0x5f, 0x69, 0x25, + 0xb9, 0x6a, 0x4b, 0x35, 0x6e, 0x54, 0xe2, 0xa0, 0x78, 0x59, 0x33, 0x91, + 0xc7, 0xa8, 0xa6, 0xac, 0xae, 0xa7, 0xa9, 0xc5, 0x48, 0x27, 0x66, 0x1c, + 0xe2, 0xb4, 0x4a, 0x48, 0x89, 0x38, 0x3f, 0x21, 0xaa, 0x81, 0xba, 0x53, + 0x84, 0x7c, 0xf5, 0xc6, 0x29, 0x71, 0x9e, 0x71, 0xb7, 0xde, 0x9d, 0x1b, + 0x90, 0x79, 0xe6, 0xb5, 0xbf, 0x73, 0x9e, 0x49, 0xf4, 0xd4, 0x50, 0x8c, + 0x0f, 0x5e, 0x3d, 0xea, 0x7b, 0x6b, 0x29, 0xe6, 0x60, 0x12, 0x36, 0x39, + 0xab, 0xba, 0x5d, 0xa0, 0x98, 0x97, 0x61, 0xc0, 0xe9, 0x9a, 0xe9, 0x6d, + 0xa1, 0xd8, 0x8a, 0x14, 0x00, 0x2b, 0x8a, 0xad, 0x7e, 0x47, 0x64, 0x74, + 0x53, 0xa4, 0xe6, 0xaf, 0x23, 0x2e, 0xc7, 0xc3, 0xc4, 0xed, 0x6b, 0x87, + 0xe0, 0x73, 0xb5, 0x6b, 0x62, 0x2b, 0x64, 0x8f, 0x68, 0x40, 0x00, 0xab, + 0x28, 0x8c, 0x70, 0xb8, 0xa9, 0x56, 0xd1, 0x86, 0x3d, 0xab, 0xce, 0x9d, + 0x59, 0x4d, 0xde, 0x4c, 0xee, 0x8d, 0x38, 0xc1, 0x7b, 0xa8, 0x58, 0x94, + 0x2a, 0x32, 0x93, 0xde, 0x9d, 0x14, 0x40, 0x01, 0xc1, 0x35, 0x62, 0x04, + 0x8d, 0xa3, 0x39, 0x05, 0x98, 0x1e, 0xd5, 0x2a, 0xc6, 0x41, 0xca, 0xa8, + 0x50, 0x6b, 0x06, 0xf5, 0x36, 0x5b, 0x11, 0x24, 0x21, 0x47, 0x1c, 0x0a, + 0x78, 0x08, 0x4f, 0x42, 0xc4, 0x54, 0xa2, 0x3e, 0x72, 0x49, 0x35, 0x22, + 0xa0, 0x3c, 0x0e, 0x94, 0x24, 0x26, 0xcb, 0x56, 0x70, 0x5b, 0xdb, 0x05, + 0x69, 0x97, 0x87, 0xe4, 0x66, 0xb4, 0xce, 0xa9, 0xa5, 0x59, 0x22, 0xb4, + 0x91, 0xa1, 0x61, 0xc8, 0xce, 0x2b, 0x3f, 0xc5, 0xbe, 0x1e, 0xb8, 0xd2, + 0x74, 0x78, 0x66, 0x6e, 0x56, 0x78, 0x63, 0x91, 0x58, 0x1e, 0x81, 0xb3, + 0xfe, 0x15, 0xc0, 0x0b, 0x69, 0x1e, 0x50, 0x32, 0x5c, 0x9e, 0x07, 0x7a, + 0xec, 0xa3, 0x86, 0x55, 0x63, 0xcf, 0x73, 0x92, 0xa6, 0x22, 0x54, 0xa7, + 0xc9, 0x63, 0xd2, 0x9f, 0xe2, 0x0d, 0x9d, 0xb7, 0xfa, 0xa5, 0x42, 0x47, + 0x65, 0x19, 0xa8, 0x1b, 0xe2, 0x74, 0xdb, 0x4f, 0x93, 0x19, 0x07, 0xd8, + 0x62, 0xac, 0xf8, 0x47, 0xf6, 0x70, 0xf8, 0x87, 0xe3, 0x58, 0x22, 0x9f, + 0x49, 0xf0, 0xbd, 0xfd, 0xc4, 0x12, 0x0c, 0xac, 0x9e, 0x5e, 0xd5, 0x23, + 0xd7, 0x27, 0x15, 0xec, 0x9e, 0x17, 0xff, 0x00, 0x82, 0x72, 0x7c, 0x51, + 0xd7, 0xac, 0xd2, 0xe6, 0x68, 0x6c, 0xf4, 0xe0, 0x58, 0x03, 0x1d, 0xd4, + 0xf8, 0x61, 0xef, 0x81, 0x9a, 0xae, 0x4c, 0x3c, 0x1d, 0xae, 0x55, 0xb1, + 0x13, 0xd6, 0xcd, 0x1e, 0x07, 0xa8, 0x7c, 0x42, 0xbf, 0xbc, 0x87, 0x61, + 0x50, 0xaf, 0x9e, 0x18, 0x9a, 0xab, 0x1f, 0x8d, 0xf5, 0x55, 0x98, 0xca, + 0x26, 0x40, 0xc4, 0x60, 0xf1, 0x5f, 0x65, 0xe8, 0x5f, 0xf0, 0x4c, 0x8d, + 0x54, 0xa2, 0xff, 0x00, 0x6b, 0xf8, 0x86, 0xce, 0x16, 0xef, 0xf6, 0x7d, + 0xcf, 0xfc, 0xc0, 0xae, 0xe3, 0x49, 0xff, 0x00, 0x82, 0x68, 0xf8, 0x6a, + 0x19, 0x4f, 0xdb, 0xfc, 0x4d, 0x31, 0x40, 0x01, 0x02, 0x3b, 0x75, 0x04, + 0x9f, 0xc4, 0xd6, 0x4b, 0x13, 0x86, 0x5a, 0x23, 0x47, 0x85, 0xab, 0xbb, + 0x67, 0xe7, 0xcd, 0xd7, 0x8a, 0xf5, 0x5b, 0xb3, 0xbd, 0xee, 0x59, 0x7d, + 0x97, 0xa5, 0x54, 0xfe, 0xd9, 0xd4, 0xdc, 0x93, 0xf6, 0xa9, 0x47, 0xd2, + 0xbf, 0x52, 0xf4, 0x8f, 0xf8, 0x27, 0x87, 0xc3, 0x28, 0x55, 0x52, 0xe5, + 0xaf, 0xee, 0xf1, 0xfc, 0x42, 0x40, 0x84, 0xfe, 0x42, 0xb6, 0xff, 0x00, + 0xe1, 0x84, 0xbe, 0x11, 0x5b, 0xc4, 0x10, 0x69, 0x57, 0x6f, 0x83, 0xfc, + 0x57, 0x4d, 0xfd, 0x2a, 0x7e, 0xbb, 0x4b, 0xa4, 0x43, 0xea, 0x52, 0xeb, + 0x33, 0xf2, 0x63, 0xfb, 0x47, 0x52, 0x7e, 0x3e, 0xd5, 0x37, 0xe0, 0x69, + 0x5e, 0xf7, 0x52, 0x31, 0x18, 0xda, 0xea, 0x66, 0x43, 0xd5, 0x73, 0x5f, + 0xae, 0x76, 0xff, 0x00, 0xb1, 0x97, 0xc2, 0x5b, 0x40, 0x10, 0x78, 0x72, + 0x66, 0xf7, 0x69, 0xa4, 0x6a, 0x9b, 0xfe, 0x19, 0x1f, 0xe1, 0x4f, 0x96, + 0xc8, 0x9e, 0x19, 0x19, 0xec, 0xc5, 0x9c, 0xe2, 0x9f, 0xd7, 0xe9, 0xdf, + 0xe1, 0x0f, 0xa8, 0xdd, 0x7c, 0x47, 0xe3, 0xe2, 0xdd, 0x5e, 0xdb, 0xc8, + 0x19, 0x66, 0x99, 0x59, 0x7a, 0x1c, 0x9a, 0x5b, 0x8d, 0x6b, 0x51, 0x9c, + 0x83, 0x25, 0xcc, 0xac, 0x47, 0x4c, 0x9a, 0xfd, 0x7e, 0x7f, 0xd8, 0xff, + 0x00, 0xe1, 0x25, 0xf6, 0x23, 0x7f, 0x0f, 0x05, 0x1e, 0xd3, 0xba, 0x9a, + 0xcd, 0xbd, 0xfd, 0x84, 0xfe, 0x0f, 0xdd, 0x03, 0xb7, 0x46, 0xb8, 0x42, + 0x7f, 0x89, 0x2f, 0x5f, 0x8a, 0xaf, 0xae, 0xd3, 0xeb, 0x12, 0x3e, 0xa6, + 0xff, 0x00, 0x98, 0xfc, 0x91, 0x1a, 0xee, 0xa1, 0x1f, 0x4b, 0x86, 0xfc, + 0x6a, 0x54, 0xf1, 0x66, 0xa7, 0x10, 0xe2, 0x40, 0x7e, 0xa2, 0xbf, 0x52, + 0x75, 0x6f, 0xf8, 0x27, 0x5f, 0xc2, 0xa7, 0x1e, 0x6c, 0x4d, 0x7d, 0x6b, + 0x19, 0x51, 0x8c, 0xdc, 0x6e, 0xe7, 0x9c, 0xf5, 0xae, 0x1f, 0x58, 0xff, + 0x00, 0x82, 0x68, 0x78, 0x4e, 0xed, 0x98, 0xd8, 0x78, 0x8e, 0xea, 0xd5, + 0x48, 0xc8, 0xdd, 0x12, 0xb7, 0xf5, 0xab, 0x78, 0xaa, 0x1b, 0x49, 0x7e, + 0x04, 0xfd, 0x56, 0xaf, 0xd9, 0x91, 0xf9, 0xea, 0x9e, 0x38, 0xbe, 0x11, + 0x15, 0x75, 0x05, 0x8f, 0x19, 0x15, 0x67, 0x45, 0xd6, 0xa7, 0xd5, 0xef, + 0xe1, 0xb5, 0xda, 0x57, 0x3c, 0x93, 0x9a, 0xda, 0xf8, 0xd5, 0xf0, 0xbb, + 0xfe, 0x15, 0x4f, 0xc4, 0x2d, 0x5b, 0xc3, 0x89, 0x75, 0xf6, 0xe8, 0xec, + 0xa4, 0xd8, 0xb3, 0x95, 0xc1, 0x61, 0x80, 0x73, 0x8f, 0xc6, 0xb9, 0xdf, + 0x03, 0xc5, 0x8f, 0x14, 0x59, 0x67, 0xa6, 0xee, 0x6b, 0xb1, 0xd2, 0xa7, + 0x2a, 0x6e, 0x71, 0x47, 0x03, 0xa9, 0x52, 0x15, 0x14, 0x24, 0xcd, 0x3d, + 0x62, 0xdd, 0xa3, 0xbe, 0x95, 0x09, 0x39, 0x07, 0x15, 0x4f, 0xcb, 0x5e, + 0x33, 0x9f, 0xc6, 0xb6, 0x7c, 0x4c, 0x37, 0x6b, 0x97, 0xb8, 0xe9, 0xe6, + 0x1c, 0x56, 0x51, 0x8d, 0x89, 0x03, 0xb5, 0x79, 0xb6, 0xd0, 0xf4, 0xef, + 0xa9, 0x03, 0x44, 0x41, 0x24, 0x60, 0x8a, 0x86, 0x48, 0xc3, 0x03, 0xf2, + 0xe2, 0xae, 0xcd, 0x90, 0xb8, 0xc5, 0x54, 0x70, 0xeb, 0xd3, 0xa1, 0xa8, + 0xdc, 0xbb, 0x95, 0x23, 0xb6, 0xda, 0x48, 0xef, 0x8f, 0xce, 0x95, 0xa1, + 0x20, 0x0e, 0xd5, 0x31, 0x5f, 0x9d, 0x4f, 0xb5, 0x39, 0x46, 0xe1, 0xcd, + 0x29, 0x17, 0x12, 0xb6, 0x4f, 0x4c, 0x55, 0x5b, 0x98, 0x63, 0xb8, 0x05, + 0x64, 0x8c, 0x30, 0xf7, 0x15, 0xa4, 0xd0, 0x90, 0x38, 0xe4, 0x55, 0x77, + 0x88, 0x81, 0x82, 0x2a, 0x13, 0xb6, 0xc6, 0x96, 0x38, 0xfb, 0xcd, 0x1d, + 0x3c, 0xc7, 0x31, 0xfc, 0xb8, 0xe8, 0x2b, 0x16, 0x41, 0xb1, 0x99, 0x4f, + 0x51, 0xc5, 0x76, 0x17, 0x31, 0xfe, 0xf9, 0x87, 0x6c, 0xd6, 0x4d, 0xf6, + 0x8e, 0x25, 0x97, 0x72, 0x1d, 0xa4, 0xf5, 0xaf, 0x5a, 0x8d, 0x7b, 0x69, + 0x26, 0x70, 0x54, 0xa1, 0x7d, 0x51, 0x86, 0x13, 0x71, 0xe7, 0x81, 0x52, + 0x23, 0x22, 0x7d, 0x6b, 0x49, 0xf4, 0x36, 0x08, 0x40, 0x6c, 0xb7, 0x6a, + 0xca, 0x9e, 0x16, 0xb7, 0x90, 0xa3, 0x0e, 0x45, 0x74, 0xc6, 0x4a, 0xa3, + 0xb2, 0x66, 0x6e, 0x2e, 0x92, 0xd8, 0x79, 0xbb, 0xc7, 0x4f, 0xd6, 0xa3, + 0x33, 0xb3, 0xe7, 0x9a, 0x8c, 0x29, 0x35, 0x2a, 0x42, 0x5b, 0x1c, 0xe2, + 0xaa, 0xd1, 0x89, 0x2a, 0x53, 0x90, 0xc1, 0x96, 0x6c, 0xf5, 0xa9, 0x63, + 0x5d, 0xd9, 0xe3, 0x93, 0xd8, 0x54, 0xa8, 0x89, 0x18, 0x3b, 0x98, 0x7b, + 0x51, 0xf6, 0x88, 0xe3, 0xfb, 0xa3, 0x9a, 0x86, 0xef, 0xb1, 0x6a, 0x09, + 0x6e, 0xc7, 0x47, 0x1b, 0xc6, 0xea, 0x40, 0x35, 0xa9, 0x6f, 0x2e, 0xf8, + 0xf9, 0xc5, 0x64, 0x3d, 0xfb, 0xb0, 0xc0, 0x00, 0x53, 0x61, 0xbc, 0x96, + 0x37, 0x04, 0x9c, 0x8a, 0xca, 0x54, 0xe5, 0x35, 0x76, 0x6b, 0x1a, 0x91, + 0x8b, 0xb2, 0x37, 0x03, 0x6c, 0x39, 0x39, 0xa6, 0xcd, 0x10, 0x99, 0x39, + 0xe5, 0x69, 0x91, 0xce, 0x24, 0x55, 0xc7, 0x34, 0xf6, 0x7c, 0x64, 0x74, + 0x15, 0xc9, 0x66, 0x99, 0xd5, 0x7b, 0x99, 0xc1, 0xd6, 0x09, 0x42, 0x95, + 0xc3, 0x0e, 0xf8, 0xab, 0x4b, 0xa9, 0x22, 0xb6, 0xdc, 0x1e, 0x3d, 0x2a, + 0x0b, 0xe8, 0xb7, 0xae, 0xe0, 0x39, 0xfa, 0xd5, 0x6b, 0x78, 0x19, 0xd8, + 0x70, 0x6b, 0xa6, 0xd1, 0x9a, 0xbb, 0x30, 0xe6, 0x94, 0x5d, 0x91, 0xaa, + 0x35, 0x5c, 0x10, 0x02, 0x60, 0xfa, 0xd3, 0xc6, 0xa6, 0xcb, 0xc6, 0x39, + 0xf7, 0x35, 0x04, 0x36, 0x24, 0xe3, 0x3c, 0x9a, 0x9b, 0xec, 0x24, 0x8e, + 0x17, 0x91, 0x5c, 0xed, 0x53, 0x36, 0x4e, 0x6c, 0x17, 0x55, 0x93, 0x71, + 0x1b, 0x73, 0x8a, 0x51, 0xab, 0xb9, 0xe7, 0x68, 0xf4, 0xa7, 0x8b, 0x4d, + 0xbf, 0x79, 0x70, 0x3d, 0xc5, 0x3b, 0xec, 0x19, 0x3f, 0x74, 0x91, 0xf4, + 0xa8, 0xfd, 0xdf, 0x62, 0xad, 0x3e, 0xe4, 0x67, 0x56, 0x60, 0x39, 0x41, + 0x48, 0x35, 0x62, 0x4f, 0xdc, 0xa9, 0xc5, 0x96, 0xde, 0x0a, 0x7e, 0x94, + 0xd3, 0x6a, 0x9d, 0x76, 0xe3, 0xea, 0x29, 0x7e, 0xef, 0xb0, 0x7b, 0xfd, + 0xc6, 0x2e, 0xa8, 0x1b, 0x92, 0xb4, 0xff, 0x00, 0xed, 0x38, 0xb1, 0xca, + 0xe3, 0x34, 0xcf, 0xb2, 0x23, 0x63, 0xfa, 0x53, 0x1e, 0xc5, 0x49, 0xc0, + 0xe3, 0x14, 0xed, 0x4c, 0x3d, 0xf4, 0x58, 0x17, 0x90, 0x37, 0x04, 0x00, + 0x69, 0xdf, 0xb8, 0x93, 0xa3, 0x0a, 0xa0, 0x6c, 0x8a, 0xb1, 0x34, 0xdf, + 0xb3, 0xba, 0xe7, 0x02, 0x9f, 0x24, 0x7a, 0x31, 0x73, 0x4b, 0xaa, 0x34, + 0x4d, 0xa2, 0xb7, 0x42, 0x33, 0x51, 0xc9, 0x60, 0xdf, 0xc2, 0x6a, 0x92, + 0xac, 0xc8, 0x3b, 0x83, 0xdc, 0xe6, 0x9e, 0xb7, 0xf3, 0x27, 0x7c, 0xfd, + 0x68, 0xe5, 0x97, 0x46, 0x1c, 0xd1, 0x7b, 0xa1, 0x5a, 0xda, 0x44, 0xeb, + 0x9a, 0x8b, 0x63, 0x03, 0xc8, 0xab, 0x51, 0xea, 0x64, 0xf0, 0xc0, 0x62, + 0x9c, 0xb7, 0x96, 0xf2, 0xf5, 0xe3, 0xeb, 0x55, 0x79, 0x2d, 0xd0, 0xad, + 0x17, 0xb3, 0x29, 0x99, 0xd9, 0x4e, 0x17, 0x2b, 0x53, 0xc3, 0xa8, 0x38, + 0x38, 0x3f, 0x30, 0xf7, 0xa9, 0x1a, 0x08, 0xe4, 0xe4, 0x1a, 0xaf, 0x25, + 0xb1, 0x41, 0x90, 0x3f, 0x2a, 0x2f, 0x19, 0x68, 0xc7, 0x69, 0x47, 0x54, + 0x5e, 0x17, 0x31, 0xcb, 0xf7, 0x80, 0x19, 0xf5, 0xa6, 0x3d, 0x8c, 0x72, + 0x2e, 0x54, 0xe0, 0x9a, 0xce, 0x25, 0x87, 0xbd, 0x4b, 0x15, 0xc3, 0x21, + 0xe1, 0x88, 0xf6, 0xa5, 0xc8, 0xd6, 0xb1, 0x61, 0xcf, 0x7d, 0x24, 0x82, + 0x5b, 0x49, 0x22, 0xcf, 0x71, 0xed, 0x51, 0xac, 0x85, 0x4f, 0x22, 0xaf, + 0xa5, 0xee, 0x46, 0x18, 0x7e, 0x34, 0x92, 0x41, 0x1c, 0xc3, 0x23, 0x83, + 0xea, 0x28, 0x52, 0x7b, 0x49, 0x03, 0x8a, 0x7f, 0x09, 0x1c, 0x53, 0xe0, + 0xe7, 0x38, 0x35, 0x6e, 0x2b, 0xb5, 0x27, 0x6b, 0xf4, 0xac, 0xb9, 0x61, + 0x78, 0x4e, 0x47, 0x23, 0xd6, 0x90, 0x48, 0xce, 0x29, 0xb8, 0x29, 0x13, + 0xce, 0xe2, 0x6c, 0x4f, 0x68, 0x97, 0x2b, 0x95, 0x20, 0x1a, 0xcc, 0x91, + 0x1e, 0xdd, 0xf6, 0xb7, 0x4a, 0x21, 0x9a, 0x68, 0x9b, 0x86, 0xc8, 0xf4, + 0xa9, 0xd8, 0x99, 0xb8, 0xc6, 0x4d, 0x4a, 0x4e, 0x1a, 0x37, 0x74, 0x5b, + 0x92, 0x9a, 0xf3, 0x22, 0x12, 0x12, 0x70, 0x39, 0xa9, 0x20, 0x9a, 0x58, + 0x9c, 0xe0, 0xe4, 0x1e, 0xd5, 0x24, 0x36, 0x32, 0x31, 0xe9, 0x8c, 0xfa, + 0xd5, 0xb8, 0xf4, 0xf0, 0x08, 0xdc, 0xdf, 0x95, 0x4c, 0xa7, 0x14, 0x25, + 0x19, 0x10, 0xbb, 0x89, 0x57, 0x0d, 0xc8, 0xa8, 0x56, 0x13, 0xfc, 0x23, + 0x3e, 0x95, 0xaa, 0xb6, 0xa8, 0x83, 0xa7, 0xe7, 0x4e, 0xd8, 0x17, 0xa0, + 0x02, 0xb0, 0x55, 0x12, 0xd8, 0xd9, 0xc3, 0x9b, 0x56, 0x67, 0xa5, 0xb3, + 0x9c, 0x7c, 0xb5, 0x3a, 0x5a, 0x3e, 0x79, 0x00, 0x55, 0x90, 0x4d, 0x3b, + 0x03, 0xb9, 0xa9, 0x73, 0x66, 0x8a, 0x08, 0x8b, 0xec, 0xd8, 0x1c, 0x9a, + 0x05, 0xaa, 0x1f, 0xe2, 0xa9, 0x37, 0xa6, 0x71, 0xb8, 0x66, 0xa3, 0x96, + 0xe6, 0x28, 0x57, 0x2c, 0x78, 0xa8, 0xbc, 0x98, 0xed, 0x11, 0x7e, 0xcb, + 0x18, 0xf5, 0xa5, 0xf2, 0x23, 0x5e, 0x71, 0x51, 0xae, 0xa3, 0x03, 0x63, + 0x19, 0x3f, 0x85, 0x0d, 0x7f, 0x17, 0x4d, 0xa7, 0x9f, 0x6a, 0x76, 0x98, + 0x5e, 0x02, 0x34, 0x44, 0xc7, 0xf8, 0x66, 0xa9, 0xa2, 0x28, 0x5e, 0x9d, + 0xeb, 0x4a, 0x2e, 0x60, 0x1e, 0xb8, 0xac, 0x91, 0x23, 0x02, 0xc0, 0x1e, + 0xf5, 0xac, 0x2e, 0xee, 0x8c, 0xe7, 0xd0, 0x7c, 0xea, 0xa2, 0x33, 0x81, + 0x9c, 0xd5, 0xdb, 0x78, 0x7c, 0xb8, 0x14, 0x1e, 0x30, 0x2a, 0x83, 0x33, + 0x3b, 0x2a, 0xe7, 0x04, 0x91, 0x9a, 0xd8, 0x9f, 0xe4, 0xb6, 0x38, 0xea, + 0x3a, 0x52, 0x9b, 0xb2, 0x48, 0x21, 0xbb, 0x66, 0x61, 0x50, 0xcc, 0x4e, + 0x0d, 0x57, 0xb8, 0x01, 0x54, 0x00, 0x79, 0x26, 0xac, 0x34, 0x8c, 0x83, + 0x90, 0x05, 0x32, 0xd1, 0x7e, 0xd7, 0x76, 0x17, 0x1f, 0x2a, 0xf2, 0x6b, + 0x55, 0xa6, 0xac, 0xce, 0x5a, 0xe8, 0x8b, 0x56, 0x56, 0xde, 0x4c, 0x23, + 0x3d, 0x4f, 0x26, 0x89, 0x1a, 0x42, 0xdb, 0x81, 0x21, 0x7d, 0x8d, 0x5a, + 0xb9, 0x75, 0x89, 0x02, 0xe3, 0x93, 0x59, 0xf7, 0x57, 0x2b, 0x14, 0x67, + 0xb1, 0x35, 0x8c, 0x6f, 0x37, 0x73, 0x49, 0x5a, 0x2a, 0xc4, 0x57, 0x1a, + 0xac, 0xf0, 0x1c, 0x23, 0x67, 0xeb, 0x5a, 0x9a, 0x76, 0xa1, 0x3b, 0xc3, + 0xba, 0x65, 0x5c, 0x9e, 0x95, 0x8d, 0xa7, 0xda, 0xfd, 0xae, 0x63, 0x23, + 0xfd, 0xc1, 0xfa, 0xd6, 0xbb, 0x38, 0x5e, 0x06, 0x2a, 0xaa, 0xa8, 0xfc, + 0x29, 0x6a, 0x4d, 0x37, 0x2f, 0x89, 0xbd, 0x0b, 0xdf, 0xda, 0x10, 0x81, + 0xf3, 0x0d, 0xb8, 0xa5, 0x4b, 0x88, 0x26, 0xfb, 0x92, 0xa9, 0x3e, 0x99, + 0xae, 0x76, 0xfe, 0xf0, 0x72, 0xaa, 0x31, 0xf4, 0xa8, 0xf4, 0xed, 0x3a, + 0x4b, 0xa6, 0xf3, 0x09, 0x29, 0x18, 0xef, 0xeb, 0x51, 0xec, 0x22, 0xa3, + 0xcc, 0xdd, 0x8a, 0xf6, 0xb2, 0xe6, 0xb2, 0x57, 0x3a, 0x57, 0x19, 0x1e, + 0xb5, 0x56, 0x5b, 0x48, 0xa4, 0xce, 0xe4, 0x00, 0xfa, 0x8a, 0x8a, 0xe2, + 0xf0, 0x5a, 0xa6, 0xd4, 0x3c, 0x8e, 0x2a, 0x9a, 0x6b, 0xeb, 0xbb, 0x12, + 0x2f, 0xe2, 0x2a, 0x23, 0x4e, 0x7b, 0xc4, 0xa9, 0x54, 0x8a, 0xd1, 0x8b, + 0x3e, 0x96, 0xdd, 0x63, 0x39, 0x1e, 0x86, 0xa8, 0x4b, 0x6a, 0xd1, 0x9c, + 0x15, 0x22, 0xb7, 0x61, 0xb9, 0x8a, 0xe5, 0x77, 0x46, 0xd4, 0xae, 0xb9, + 0x04, 0x30, 0x04, 0x1a, 0xd6, 0x35, 0x65, 0x1d, 0x19, 0x9b, 0xa7, 0x19, + 0x6a, 0x8e, 0x6d, 0x60, 0xc9, 0xc1, 0xe0, 0x55, 0xc8, 0x9e, 0xde, 0xd5, + 0x72, 0x71, 0xbb, 0xf3, 0xab, 0x33, 0x59, 0x23, 0xe7, 0x6f, 0xca, 0x7d, + 0x2b, 0x3e, 0xe2, 0xd1, 0xa3, 0x3c, 0x8f, 0xc6, 0xba, 0x14, 0x94, 0xfa, + 0x98, 0x72, 0xb8, 0x6c, 0x89, 0x24, 0xd5, 0x49, 0xe1, 0x30, 0xa2, 0xab, + 0xbc, 0xef, 0x21, 0xcf, 0x5f, 0xad, 0x44, 0x22, 0xf9, 0xf1, 0xc0, 0xfa, + 0xd4, 0xea, 0x62, 0x88, 0x0d, 0xec, 0x2b, 0x5e, 0x58, 0xc7, 0x64, 0x45, + 0xdc, 0xb7, 0x63, 0x16, 0x26, 0x90, 0xf1, 0x93, 0xf4, 0xab, 0x0b, 0x66, + 0x7b, 0xf0, 0x3d, 0xe9, 0x8d, 0x7e, 0x14, 0x61, 0x06, 0x2a, 0x26, 0x9e, + 0x49, 0x78, 0x27, 0x02, 0x95, 0xa4, 0xfc, 0x87, 0xee, 0x2f, 0x32, 0xe7, + 0x95, 0x0c, 0x7c, 0xb1, 0x04, 0x8a, 0x63, 0x5e, 0xc7, 0x10, 0xf9, 0x57, + 0x35, 0x59, 0x61, 0x66, 0x3d, 0x4d, 0x58, 0x8e, 0xc6, 0x49, 0x31, 0xb5, + 0x09, 0xa9, 0x69, 0x2f, 0x89, 0x95, 0xcd, 0x27, 0xf0, 0xa2, 0x36, 0xd4, + 0x24, 0x60, 0x40, 0x5c, 0x53, 0x4c, 0xd3, 0x39, 0x03, 0x24, 0x56, 0x94, + 0x7a, 0x34, 0xac, 0x39, 0x50, 0x3e, 0xb5, 0x66, 0xd7, 0x45, 0x32, 0x2e, + 0x5b, 0x8f, 0x61, 0x50, 0xea, 0x53, 0x8e, 0xc1, 0xc9, 0x27, 0xbb, 0x31, + 0x76, 0x33, 0x71, 0xba, 0x8f, 0xb2, 0xee, 0x3c, 0xe6, 0xba, 0x98, 0xb4, + 0x58, 0x80, 0xe4, 0x12, 0x7d, 0xe9, 0xd2, 0xe9, 0x31, 0x08, 0x8f, 0xee, + 0xc0, 0xac, 0xbe, 0xb0, 0xaf, 0xa1, 0x7e, 0xc8, 0xe5, 0xc5, 0x98, 0xec, + 0xb5, 0x2a, 0xd9, 0x33, 0x0e, 0x10, 0xfe, 0x55, 0xd6, 0xa5, 0x94, 0x6a, + 0x83, 0xee, 0x8a, 0x7a, 0xdb, 0x22, 0x9e, 0xd5, 0x0f, 0x10, 0xca, 0x54, + 0xd1, 0xc9, 0x35, 0x94, 0x88, 0x01, 0x28, 0x46, 0x78, 0xe9, 0x52, 0x7f, + 0x65, 0xca, 0xea, 0x3f, 0x76, 0x71, 0x5d, 0x35, 0xc4, 0x51, 0xec, 0x19, + 0x3c, 0x03, 0xe9, 0x4e, 0x51, 0x1e, 0x3b, 0xfe, 0x55, 0x3e, 0xdd, 0xd8, + 0x14, 0x22, 0x72, 0xff, 0x00, 0xd9, 0x32, 0x8e, 0x76, 0x53, 0x1f, 0x4c, + 0x96, 0x35, 0xc9, 0x43, 0xf5, 0xae, 0xbb, 0x64, 0x78, 0xef, 0x50, 0xdc, + 0x46, 0x85, 0x06, 0x3d, 0x69, 0x2a, 0xf2, 0xb9, 0x4e, 0x11, 0x39, 0x76, + 0xd3, 0x26, 0x23, 0xee, 0x1a, 0x8d, 0xf4, 0xa9, 0x71, 0x9d, 0x86, 0xba, + 0xc3, 0x12, 0xe3, 0x91, 0x4c, 0x68, 0x81, 0xff, 0x00, 0xf5, 0x55, 0x2c, + 0x44, 0x85, 0xec, 0xd1, 0xc6, 0x5c, 0x69, 0xe6, 0x31, 0xc8, 0x2b, 0x9f, + 0x51, 0x55, 0xa1, 0xb6, 0xd9, 0x37, 0xcc, 0x30, 0x07, 0x35, 0xd9, 0x5e, + 0x5b, 0x2b, 0xa0, 0xe9, 0xd7, 0xbd, 0x66, 0x5c, 0xe9, 0x06, 0x57, 0x2d, + 0x1b, 0xa8, 0xed, 0x83, 0x5d, 0x30, 0xc4, 0x5d, 0x59, 0x98, 0xca, 0x8a, + 0xbe, 0x86, 0x4b, 0x49, 0xcd, 0x34, 0xb8, 0x03, 0x26, 0xae, 0x49, 0xa4, + 0xdc, 0x26, 0x78, 0x07, 0xe9, 0x4c, 0x4d, 0x2e, 0x59, 0x18, 0x2b, 0x8d, + 0xab, 0x5a, 0xa9, 0x43, 0xb8, 0x9a, 0x97, 0x63, 0x16, 0xe6, 0x56, 0x95, + 0xc9, 0xc9, 0x00, 0x74, 0xa6, 0x09, 0xa5, 0x4e, 0x33, 0x9a, 0xe8, 0x24, + 0xd1, 0x23, 0xcf, 0x19, 0x1f, 0x5a, 0xa9, 0x3e, 0x90, 0xca, 0x72, 0x0e, + 0x6b, 0x78, 0xd6, 0x83, 0xd0, 0xe6, 0x95, 0x29, 0xef, 0x73, 0x2c, 0x5c, + 0xe4, 0xe0, 0x81, 0x8a, 0x0c, 0xa8, 0xde, 0x82, 0xa4, 0x92, 0xd1, 0xc1, + 0x23, 0x07, 0x8a, 0xae, 0xc8, 0x50, 0xe0, 0x8a, 0xe8, 0x8f, 0x2b, 0xd8, + 0xc1, 0xf3, 0x47, 0x71, 0xde, 0x58, 0x39, 0x20, 0xe6, 0x9e, 0xa4, 0x0e, + 0x3a, 0x1a, 0x6a, 0x0d, 0xe4, 0x05, 0x18, 0x27, 0x8a, 0xd4, 0x8f, 0x47, + 0x52, 0x80, 0x96, 0x20, 0xd5, 0x39, 0xa8, 0x6e, 0xcc, 0x94, 0x5d, 0x4d, + 0x84, 0xd2, 0xac, 0x85, 0xe3, 0xb3, 0x37, 0x2a, 0x0f, 0x4a, 0xdb, 0xfe, + 0xc6, 0x84, 0x8c, 0xec, 0x04, 0x8a, 0x97, 0x4b, 0xb1, 0x8e, 0xd6, 0x00, + 0x31, 0x8c, 0xf7, 0xf5, 0xab, 0xcc, 0xf8, 0x18, 0x5e, 0x2b, 0xcc, 0xa9, + 0x59, 0xca, 0x5a, 0x1d, 0xf0, 0xa4, 0xa3, 0x1d, 0x4a, 0x91, 0x40, 0xb0, + 0xa0, 0x50, 0x2b, 0x66, 0xde, 0xdf, 0x30, 0x29, 0xf5, 0x1d, 0x6b, 0x35, + 0xd5, 0x88, 0xce, 0x78, 0xad, 0x4b, 0x46, 0x22, 0x04, 0xae, 0x69, 0xb6, + 0xf5, 0x35, 0x89, 0x65, 0x17, 0x18, 0xcd, 0x2c, 0xbf, 0x36, 0x39, 0xa5, + 0x4c, 0x92, 0x06, 0x3a, 0xd2, 0xf9, 0x47, 0xf5, 0xac, 0x53, 0x2d, 0x8e, + 0xb7, 0x1b, 0x43, 0x71, 0xd2, 0xa6, 0x41, 0xfe, 0xd5, 0x58, 0xb4, 0xb1, + 0x92, 0x62, 0x76, 0xa9, 0x6c, 0xf6, 0xad, 0x5b, 0x5f, 0x0e, 0xed, 0x6c, + 0xca, 0xe9, 0x10, 0x3c, 0x92, 0x4e, 0x7f, 0x4a, 0x39, 0x90, 0xf9, 0x59, + 0x8f, 0x1a, 0x33, 0xaf, 0x5c, 0xe3, 0xbd, 0x4f, 0x0d, 0x9c, 0x8d, 0xd1, + 0x49, 0xae, 0x8d, 0x2c, 0xf4, 0xdb, 0x25, 0xcc, 0x8f, 0xb8, 0xfb, 0xfc, + 0xa2, 0xa2, 0x9b, 0xc6, 0x1a, 0x75, 0x88, 0xc4, 0x46, 0x30, 0x47, 0xfc, + 0xf2, 0x5e, 0x7f, 0x3a, 0x6b, 0x9a, 0x5f, 0x0a, 0x25, 0xb8, 0x47, 0xe2, + 0x66, 0xaf, 0xc4, 0x8b, 0x5b, 0x95, 0xf0, 0x36, 0x9e, 0xcf, 0x1f, 0xcb, + 0xf6, 0x68, 0x57, 0x3e, 0x9b, 0x49, 0xc8, 0xfd, 0x6b, 0xcc, 0xfc, 0x2b, + 0x10, 0x97, 0xc4, 0x7a, 0x68, 0x65, 0xca, 0x79, 0xc9, 0x91, 0xf8, 0xd7, + 0x41, 0xe2, 0x9f, 0x1d, 0x7f, 0x6e, 0x58, 0x8b, 0x58, 0xcc, 0x85, 0x70, + 0x06, 0x5b, 0xd2, 0xb2, 0xfc, 0x19, 0x62, 0x9a, 0x87, 0x89, 0x34, 0xeb, + 0x57, 0x24, 0x24, 0xb3, 0xa2, 0x12, 0xa7, 0x07, 0x04, 0xd7, 0xa9, 0x42, + 0x32, 0x8d, 0x16, 0xa4, 0x79, 0x95, 0x26, 0xa7, 0x88, 0x4d, 0x1f, 0xb8, + 0x9e, 0x09, 0xd2, 0x15, 0x7c, 0x11, 0xe1, 0xd2, 0x00, 0x8d, 0x7f, 0xb3, + 0xe0, 0x21, 0x48, 0xed, 0xe5, 0x8a, 0xe8, 0x6d, 0x6d, 0x1a, 0xdd, 0x1d, + 0x97, 0x90, 0x78, 0xe2, 0xa9, 0x7c, 0x3f, 0xf0, 0xac, 0x5e, 0x1d, 0xf0, + 0x47, 0x87, 0xad, 0xad, 0x62, 0x92, 0x58, 0xad, 0x74, 0xf8, 0xa0, 0x56, + 0x95, 0x8b, 0x36, 0xdd, 0xaa, 0x4e, 0x49, 0xeb, 0xc8, 0xae, 0xaa, 0x2b, + 0x23, 0x32, 0x16, 0x68, 0x0c, 0x63, 0x00, 0x0c, 0x0a, 0xf2, 0xe3, 0x86, + 0x8b, 0x9d, 0xe0, 0x8f, 0x76, 0x55, 0x5a, 0x56, 0x9b, 0x30, 0x57, 0x4c, + 0xb7, 0x90, 0x30, 0x70, 0x49, 0xf5, 0x3d, 0xc5, 0x4b, 0x6f, 0xa0, 0xe9, + 0xbb, 0x50, 0x24, 0x2b, 0x1b, 0xf7, 0x62, 0xbd, 0xfe, 0xb5, 0xb2, 0x9a, + 0x4b, 0x16, 0x6f, 0x9c, 0x0d, 0xbd, 0x33, 0x8e, 0x69, 0x46, 0x9d, 0x20, + 0x04, 0x60, 0x63, 0xd7, 0x3f, 0xd2, 0xb6, 0x8e, 0x1a, 0xa5, 0xb4, 0x87, + 0xe0, 0x67, 0x2a, 0xf4, 0xff, 0x00, 0x98, 0xce, 0xfe, 0xc5, 0x92, 0x13, + 0x91, 0x1a, 0x91, 0xd9, 0x94, 0x54, 0x9f, 0xd9, 0x53, 0x04, 0x55, 0x10, + 0x80, 0x7a, 0xfc, 0xc6, 0xb5, 0xed, 0x2d, 0xa4, 0x80, 0x15, 0x2c, 0x76, + 0x9e, 0x80, 0x56, 0x17, 0x89, 0xbc, 0x5b, 0x37, 0x85, 0xbc, 0x29, 0xaf, + 0xeb, 0x5a, 0x8d, 0x94, 0x71, 0x43, 0xa6, 0x41, 0x25, 0xc4, 0x43, 0xcf, + 0xcb, 0x5c, 0x22, 0x29, 0x6c, 0x64, 0x81, 0xb4, 0x9c, 0x60, 0x0e, 0x6b, + 0xbe, 0x9e, 0x03, 0x99, 0x5e, 0x57, 0x47, 0x0d, 0x5c, 0x5f, 0x26, 0xcd, + 0x16, 0x17, 0x4a, 0x99, 0xf2, 0x48, 0x52, 0x7d, 0x88, 0xa6, 0x7f, 0x66, + 0x94, 0x1f, 0x32, 0xaa, 0x91, 0xc5, 0x54, 0xf0, 0x8f, 0x8b, 0x2f, 0x3c, + 0x6d, 0xe0, 0xdd, 0x07, 0x5c, 0xd3, 0x6d, 0x6d, 0xe0, 0x83, 0x50, 0x85, + 0x6e, 0x25, 0x86, 0x57, 0x25, 0xa2, 0x46, 0x00, 0x80, 0x08, 0x1c, 0xb7, + 0x35, 0xd3, 0x4b, 0x66, 0x25, 0x72, 0xa1, 0x98, 0x74, 0x27, 0x81, 0xfe, + 0x35, 0x75, 0x32, 0xfb, 0x2b, 0xc3, 0x5f, 0x99, 0x14, 0xb1, 0xaa, 0x5b, + 0xbd, 0x0c, 0x33, 0x6f, 0x1a, 0x44, 0xca, 0x23, 0x53, 0x93, 0x9e, 0x46, + 0x6a, 0x2f, 0xb0, 0xee, 0x8f, 0xe5, 0x50, 0x3f, 0x0a, 0xe8, 0xbf, 0xb3, + 0x11, 0x87, 0x19, 0x27, 0x1d, 0x69, 0xdf, 0xd9, 0xaa, 0x17, 0x18, 0x20, + 0xfa, 0xe0, 0x1c, 0xd6, 0x5f, 0x53, 0xad, 0xb1, 0xb7, 0xd6, 0x60, 0x72, + 0xf3, 0xe9, 0x32, 0x4b, 0x19, 0xc0, 0x5c, 0x81, 0x80, 0x36, 0xe6, 0xa8, + 0x4b, 0xa5, 0xcb, 0x68, 0xb6, 0x6a, 0xd6, 0x46, 0xff, 0x00, 0xcc, 0x97, + 0x64, 0x87, 0x70, 0x5f, 0x29, 0x70, 0x4e, 0xe2, 0x0e, 0x72, 0x38, 0x03, + 0x1e, 0xf5, 0xdc, 0x4d, 0x6b, 0xbc, 0x1d, 0xaa, 0x07, 0xfb, 0x27, 0x35, + 0x46, 0x6b, 0x59, 0x42, 0x20, 0x0b, 0x82, 0x58, 0x2e, 0x01, 0xe9, 0xef, + 0x43, 0xc1, 0xc9, 0x4b, 0x6b, 0x93, 0xf5, 0x84, 0xd5, 0xaf, 0x63, 0xf1, + 0x3f, 0xf6, 0xbd, 0xb8, 0x7b, 0xff, 0x00, 0x8e, 0xbe, 0x29, 0x92, 0x4d, + 0x36, 0x6d, 0x2c, 0x9b, 0x92, 0x3e, 0xcd, 0x71, 0xf7, 0x97, 0x00, 0x0f, + 0xfe, 0xbd, 0x79, 0x3f, 0x84, 0x9e, 0xde, 0xcb, 0x5e, 0x86, 0x79, 0xce, + 0x11, 0x32, 0x7a, 0xe3, 0x9a, 0xf7, 0x9f, 0xdb, 0x6e, 0x58, 0xb5, 0x2f, + 0xda, 0x0b, 0xc5, 0x52, 0xc3, 0x1c, 0xa8, 0x8b, 0x72, 0x63, 0x22, 0x55, + 0x2a, 0x77, 0x28, 0x00, 0xf1, 0xe9, 0x91, 0x5f, 0x3b, 0x4f, 0x16, 0xda, + 0xee, 0x50, 0xfd, 0xdf, 0x29, 0xe5, 0xd6, 0x76, 0xa9, 0xcc, 0x77, 0xc6, + 0x1b, 0x0d, 0x5e, 0x59, 0xae, 0x04, 0xa2, 0x36, 0x76, 0x24, 0x12, 0x6a, + 0x19, 0x7c, 0x37, 0xe6, 0x8c, 0xc5, 0x3c, 0x6f, 0x8f, 0x5e, 0x2b, 0xcf, + 0x8c, 0xb3, 0x43, 0x91, 0x1c, 0x8c, 0xa3, 0xd0, 0x1a, 0x7c, 0x7a, 0xed, + 0xf5, 0xbe, 0x31, 0x29, 0x6c, 0x7a, 0xd7, 0x9f, 0x2c, 0x2b, 0xe8, 0xce, + 0x98, 0xe2, 0xd3, 0xdd, 0x1d, 0x4d, 0xd6, 0x8b, 0x73, 0x10, 0x6f, 0xdd, + 0x06, 0x1e, 0xa0, 0xd6, 0x6c, 0x96, 0x8c, 0x01, 0x3b, 0x1d, 0x47, 0xbd, + 0x54, 0x83, 0xc6, 0x77, 0x51, 0x90, 0x24, 0xcb, 0x1f, 0x5c, 0xf1, 0x5a, + 0x1f, 0xf0, 0x98, 0x40, 0xf0, 0x66, 0x40, 0x37, 0xfa, 0x11, 0x58, 0xba, + 0x13, 0x47, 0x42, 0xc4, 0x41, 0x94, 0x7c, 0x83, 0xe6, 0x70, 0x32, 0x14, + 0x54, 0x2c, 0x87, 0x1c, 0x56, 0xbc, 0x72, 0x2d, 0xd5, 0xa9, 0xb8, 0x11, + 0x81, 0x9e, 0x98, 0xaa, 0x6e, 0x99, 0xc8, 0xc7, 0x15, 0xcb, 0x2b, 0xa7, + 0x63, 0xae, 0x16, 0x6a, 0xe8, 0xaa, 0x18, 0xa9, 0xc6, 0x29, 0x92, 0x49, + 0xbd, 0xb0, 0x47, 0x35, 0x61, 0x90, 0x0e, 0xe6, 0xa0, 0x75, 0xcf, 0x70, + 0x7d, 0xeb, 0x2b, 0x9b, 0x23, 0x12, 0xe7, 0x1e, 0x73, 0x82, 0x39, 0xaa, + 0xea, 0x33, 0x82, 0x47, 0x1e, 0xb5, 0x62, 0xec, 0x95, 0x99, 0xc6, 0x32, + 0x33, 0xd6, 0xa2, 0xae, 0xb5, 0xb1, 0x03, 0xfc, 0xa0, 0xc3, 0x23, 0xd2, + 0xb0, 0xb5, 0x7d, 0x31, 0xe6, 0x70, 0xc9, 0xc9, 0x1c, 0x11, 0x5b, 0x80, + 0x9f, 0xa7, 0xa5, 0x29, 0x28, 0xf9, 0xcf, 0x5f, 0xef, 0x51, 0x09, 0xb8, + 0x3b, 0xa1, 0xca, 0x0a, 0x6a, 0xcc, 0xe4, 0x5a, 0xc6, 0x78, 0x14, 0xb7, + 0x97, 0xc0, 0xed, 0x55, 0x0c, 0x8c, 0x5b, 0x07, 0x8c, 0x76, 0xae, 0xce, + 0x68, 0x03, 0x2d, 0x73, 0x17, 0x36, 0x12, 0xb5, 0xdc, 0x8a, 0xab, 0xc6, + 0x73, 0x9a, 0xf4, 0x28, 0xd6, 0x53, 0xf8, 0x8e, 0x3a, 0xb4, 0xdc, 0x6d, + 0xca, 0x51, 0xc6, 0xe3, 0x4e, 0x54, 0x24, 0x8c, 0xd6, 0xa5, 0xbe, 0x8c, + 0x49, 0x1b, 0xcf, 0xe5, 0x5a, 0x23, 0x4a, 0x88, 0x20, 0x01, 0x79, 0x1e, + 0xb5, 0x72, 0xaf, 0x15, 0xa1, 0x31, 0xa2, 0xde, 0xac, 0xc2, 0x8a, 0xd9, + 0x89, 0xf9, 0x50, 0x9f, 0xa5, 0x5a, 0x8f, 0x4d, 0x95, 0xce, 0x76, 0x11, + 0x5d, 0x14, 0x56, 0xaa, 0xbe, 0x82, 0xad, 0x24, 0x48, 0xa4, 0x77, 0xfc, + 0x2b, 0x8e, 0x58, 0x97, 0xd1, 0x1d, 0x4a, 0x8a, 0xea, 0x73, 0x2b, 0x67, + 0x35, 0xae, 0x01, 0x04, 0xa9, 0xe7, 0x8a, 0x6e, 0x1d, 0xcf, 0xdd, 0x24, + 0xfd, 0x2b, 0xad, 0xd8, 0x85, 0x97, 0xe5, 0xcd, 0x4b, 0x14, 0x08, 0xa3, + 0x84, 0x51, 0xf4, 0x15, 0x8f, 0xd6, 0x3a, 0xb4, 0x68, 0xa9, 0xa5, 0xb3, + 0x39, 0x68, 0xec, 0xa7, 0x95, 0x4a, 0x88, 0x99, 0x81, 0xf6, 0xad, 0x7d, + 0x3b, 0x44, 0x0a, 0x62, 0x32, 0x47, 0x83, 0x83, 0x90, 0x45, 0x6e, 0x2a, + 0x9c, 0x00, 0x38, 0xa5, 0x11, 0x95, 0x99, 0x06, 0x4e, 0x0d, 0x73, 0xcb, + 0x11, 0x29, 0x2b, 0x6c, 0x5a, 0x82, 0x5a, 0x84, 0x5a, 0x72, 0x20, 0xe2, + 0x35, 0x1f, 0x85, 0x4b, 0xf6, 0x35, 0xfe, 0xe8, 0x06, 0xa6, 0x58, 0x7f, + 0x2a, 0x90, 0x41, 0x5c, 0x7c, 0xcf, 0xb9, 0xb5, 0x8a, 0x57, 0x36, 0x2a, + 0xe8, 0xa3, 0x00, 0xe0, 0x8a, 0xb4, 0xb6, 0x49, 0xb7, 0x24, 0x8a, 0x59, + 0xa2, 0xc2, 0x2f, 0xd4, 0x54, 0xe2, 0x3c, 0x53, 0xbb, 0xb0, 0xba, 0x95, + 0x8d, 0x90, 0x23, 0xaa, 0xd4, 0x73, 0x69, 0xca, 0xd1, 0x9c, 0x85, 0x3c, + 0x55, 0xef, 0x2e, 0x9b, 0x24, 0x58, 0x43, 0x49, 0x36, 0x06, 0x6c, 0x1a, + 0x42, 0x24, 0x2a, 0x3c, 0xb1, 0xd3, 0xd2, 0xa3, 0x6d, 0x22, 0x26, 0x3c, + 0xc6, 0x2b, 0x56, 0x18, 0xf3, 0x12, 0xf3, 0xda, 0x82, 0x9c, 0xf0, 0x69, + 0xf3, 0xbb, 0xee, 0x16, 0x56, 0x30, 0xa6, 0xd1, 0x23, 0xc7, 0x03, 0x15, + 0x55, 0x34, 0x50, 0x63, 0xc9, 0x63, 0x9c, 0xf5, 0xae, 0x8d, 0xd0, 0xe0, + 0xf7, 0xa8, 0xa2, 0xc1, 0x8c, 0x7c, 0x82, 0xad, 0x55, 0x95, 0x85, 0xca, + 0x8e, 0x6e, 0x5d, 0x19, 0xc2, 0xf0, 0x43, 0x55, 0x19, 0xb4, 0xb7, 0x4c, + 0x92, 0x98, 0x1e, 0xd5, 0xd8, 0x48, 0xaa, 0x47, 0xdc, 0xfc, 0x8d, 0x40, + 0xf0, 0xab, 0x46, 0xde, 0xe3, 0xbd, 0x6b, 0x1a, 0xf2, 0x44, 0xb8, 0x26, + 0x71, 0x52, 0x59, 0xee, 0x1d, 0x2a, 0xbc, 0x96, 0x6c, 0x9d, 0x2b, 0xb2, + 0x36, 0x80, 0x28, 0x1b, 0x41, 0x15, 0x5e, 0x6d, 0x3a, 0x37, 0x18, 0xdb, + 0x8f, 0xa5, 0x75, 0x47, 0x10, 0x64, 0xe9, 0xa3, 0x93, 0x56, 0x78, 0xfd, + 0x7f, 0x0a, 0x91, 0x2f, 0x19, 0x4f, 0xcd, 0xc8, 0xad, 0x6b, 0x8d, 0x28, + 0xab, 0x61, 0x39, 0xcf, 0x7a, 0xa5, 0x3e, 0x9a, 0xe9, 0xd5, 0x6b, 0xa1, + 0x54, 0x84, 0xb7, 0x32, 0xe5, 0x92, 0xd8, 0x60, 0x9a, 0x29, 0x78, 0x3f, + 0x2f, 0xd6, 0x9b, 0x25, 0xb8, 0x61, 0x90, 0x6a, 0xb4, 0xb6, 0xec, 0xb5, + 0x1a, 0xc9, 0x22, 0x37, 0x07, 0x15, 0x6a, 0x3d, 0x62, 0xc9, 0x73, 0xb7, + 0xc4, 0x89, 0x98, 0x34, 0x74, 0x82, 0x67, 0x04, 0x6d, 0x38, 0xa7, 0xac, + 0xcc, 0xeb, 0x82, 0xbc, 0xd4, 0x89, 0x6c, 0x78, 0x3d, 0x29, 0xde, 0xdb, + 0x8a, 0xd7, 0xd8, 0x72, 0xce, 0xcc, 0xb8, 0x61, 0xc9, 0xa5, 0x4b, 0x52, + 0xed, 0x90, 0x31, 0x53, 0xc5, 0x12, 0xaf, 0x38, 0xe6, 0xa7, 0x04, 0x01, + 0xe9, 0x58, 0x39, 0x5b, 0x63, 0x65, 0x0b, 0xee, 0x45, 0x1d, 0xaa, 0xa9, + 0xc9, 0xe6, 0xae, 0xc5, 0x1a, 0xae, 0x36, 0xae, 0x3e, 0x95, 0x5c, 0xdc, + 0xc4, 0xa7, 0x00, 0xe4, 0xfb, 0x54, 0x17, 0x5a, 0x84, 0xf1, 0x8c, 0xc6, + 0xa0, 0x2f, 0xaf, 0x5a, 0xc9, 0xa9, 0x4d, 0xd8, 0xab, 0xc6, 0x3a, 0x9b, + 0x00, 0x60, 0x7a, 0x62, 0x9b, 0x24, 0xf1, 0xc2, 0x84, 0xbb, 0x70, 0x3d, + 0x2b, 0x9d, 0x5b, 0xc9, 0x65, 0x6c, 0xbb, 0x93, 0x5a, 0x50, 0x4e, 0xb2, + 0x26, 0xd7, 0xc6, 0x7f, 0x9d, 0x4c, 0xa8, 0xb8, 0xee, 0x38, 0xd4, 0x52, + 0x1e, 0xda, 0xd4, 0x3b, 0xb0, 0x8a, 0x5b, 0xdc, 0xd2, 0x9d, 0x49, 0x9c, + 0x8c, 0x00, 0x16, 0xb3, 0xef, 0x6c, 0xbc, 0xaf, 0x9d, 0x06, 0x57, 0xf9, + 0x53, 0xad, 0x26, 0xca, 0x85, 0x38, 0xfc, 0x6b, 0x4f, 0x67, 0x0b, 0x5d, + 0x11, 0xcd, 0x25, 0x2b, 0x32, 0xc5, 0xe3, 0xca, 0xe9, 0x95, 0x72, 0x08, + 0xec, 0x2a, 0xa4, 0x0e, 0xce, 0x79, 0x24, 0xfd, 0x4d, 0x5e, 0x5e, 0x4e, + 0xd3, 0x8c, 0xd5, 0x49, 0xe1, 0x30, 0x4a, 0x1b, 0xa2, 0x9a, 0xa8, 0xb5, + 0x6e, 0x50, 0x97, 0xf3, 0x16, 0x91, 0x36, 0x30, 0x62, 0x46, 0x2a, 0x79, + 0xe1, 0xf3, 0xa1, 0x20, 0x0c, 0xf1, 0x55, 0xe2, 0x95, 0x4a, 0x8c, 0x8c, + 0xd5, 0xdb, 0x46, 0x12, 0x46, 0x47, 0xa5, 0x63, 0x2b, 0xad, 0x4d, 0xa0, + 0xd6, 0xc6, 0x6d, 0xbc, 0x63, 0xa5, 0x4f, 0x24, 0x43, 0xa8, 0xce, 0x3d, + 0xea, 0x39, 0x55, 0xa0, 0xbc, 0x65, 0x1d, 0x0f, 0x35, 0x3b, 0x33, 0x14, + 0x23, 0xaf, 0x15, 0x6d, 0xb6, 0xee, 0x66, 0xb4, 0xba, 0x27, 0xb7, 0x7f, + 0xdc, 0x7d, 0x2b, 0x10, 0xce, 0xcd, 0x24, 0x81, 0x00, 0x3b, 0x6b, 0x4a, + 0xdd, 0xf1, 0x1b, 0x8e, 0xf5, 0x93, 0x28, 0x00, 0xb3, 0x0e, 0x0e, 0x7a, + 0xd6, 0xb4, 0xe3, 0xef, 0x31, 0x4f, 0x54, 0x8b, 0x36, 0x93, 0x34, 0x97, + 0xca, 0x8c, 0x30, 0x57, 0x93, 0x8a, 0xd8, 0xb9, 0x97, 0x2a, 0xaa, 0x48, + 0x15, 0x8f, 0x60, 0xaa, 0x2f, 0x73, 0x8e, 0x40, 0xab, 0x97, 0x32, 0x86, + 0x94, 0x0c, 0x74, 0x15, 0x15, 0x23, 0x79, 0xa4, 0x54, 0x34, 0x8b, 0x22, + 0xba, 0x60, 0x14, 0x8d, 0xd9, 0xab, 0x5a, 0x42, 0x08, 0x21, 0x67, 0x3f, + 0x79, 0xf9, 0xfc, 0x2b, 0x2e, 0x70, 0x26, 0x95, 0x50, 0x75, 0x26, 0xb4, + 0xa4, 0x3e, 0x5c, 0x01, 0x41, 0xc6, 0x06, 0x29, 0x4d, 0x7b, 0xaa, 0x3d, + 0xc2, 0x2f, 0xde, 0xb8, 0xf9, 0xa4, 0xf3, 0x18, 0xb1, 0xe9, 0x59, 0x6e, + 0xad, 0x7b, 0x38, 0x8d, 0x7a, 0x67, 0x9f, 0xa5, 0x36, 0xee, 0x52, 0x06, + 0xc0, 0xc7, 0x3e, 0x95, 0xa3, 0xa6, 0xda, 0x8b, 0x78, 0x4b, 0xb1, 0xf9, + 0x9b, 0xad, 0x3b, 0x7b, 0x38, 0xdc, 0x87, 0xef, 0xca, 0xc5, 0x95, 0x45, + 0xb6, 0x81, 0x51, 0x78, 0xed, 0x59, 0xf7, 0x97, 0x5b, 0x41, 0x50, 0x79, + 0xf6, 0xa9, 0x2f, 0x2f, 0x0c, 0x40, 0xf7, 0x26, 0xab, 0x58, 0xda, 0xb5, + 0xdb, 0x99, 0x24, 0x04, 0x20, 0x3f, 0x9d, 0x4c, 0x63, 0x65, 0xcf, 0x21, + 0xc9, 0xdd, 0xf2, 0xc4, 0x7e, 0x9f, 0xa7, 0x9b, 0xb6, 0xf3, 0x24, 0xe1, + 0x07, 0x3f, 0x5a, 0xbf, 0x73, 0x7c, 0xb6, 0xe9, 0xb1, 0x30, 0x00, 0xe3, + 0x8a, 0x86, 0xea, 0xf9, 0x21, 0x5d, 0x88, 0x70, 0x07, 0x19, 0xac, 0xb6, + 0x2f, 0x73, 0x20, 0x0b, 0x93, 0x4f, 0x95, 0xd4, 0x7c, 0xd2, 0xd8, 0x4e, + 0x4a, 0x0a, 0xd1, 0xdc, 0x74, 0xf7, 0x06, 0x66, 0x21, 0x72, 0x49, 0xab, + 0x16, 0xba, 0x6f, 0xf1, 0xcd, 0xd3, 0xd2, 0xa5, 0x86, 0xde, 0x2b, 0x34, + 0xdc, 0xf8, 0x2f, 0x55, 0xae, 0x6f, 0x1a, 0x53, 0xc1, 0xc0, 0xf4, 0xad, + 0x2e, 0xe5, 0xa4, 0x36, 0x26, 0xca, 0x3a, 0xcb, 0x72, 0xc4, 0xf7, 0x8b, + 0x10, 0xd9, 0x1e, 0x00, 0x1d, 0xea, 0xac, 0x5a, 0x9c, 0xe8, 0xfd, 0x77, + 0x2e, 0x7a, 0x1a, 0x64, 0x70, 0xbc, 0xc7, 0x9e, 0x95, 0x31, 0xf2, 0xad, + 0xc7, 0xab, 0x53, 0x51, 0x8a, 0xd2, 0xd7, 0x15, 0xe4, 0xf5, 0xbd, 0x8b, + 0xa9, 0x74, 0x26, 0x5c, 0x95, 0xda, 0x7d, 0xe9, 0x37, 0x83, 0xee, 0x2b, + 0x2a, 0x59, 0xde, 0x53, 0x81, 0x90, 0x3d, 0xaa, 0x5b, 0x58, 0x67, 0x24, + 0x04, 0xc9, 0x1e, 0x95, 0x0e, 0x9a, 0x4a, 0xe5, 0x2a, 0x97, 0x76, 0x27, + 0x96, 0xdd, 0x1f, 0x95, 0xe0, 0xd5, 0x09, 0xed, 0xca, 0x37, 0x3c, 0x8a, + 0xd7, 0x6b, 0x59, 0x55, 0x01, 0x2b, 0xf8, 0x0a, 0x23, 0xd2, 0xee, 0x2e, + 0x47, 0x29, 0xb1, 0x7d, 0x5a, 0x9c, 0x6a, 0x72, 0xee, 0xc5, 0x38, 0x73, + 0x74, 0x28, 0x59, 0xd8, 0xbd, 0xce, 0x36, 0x83, 0xcf, 0x7e, 0xd5, 0xaf, + 0x6f, 0xa0, 0x93, 0xcb, 0x9f, 0xca, 0xb4, 0x6c, 0x2c, 0x56, 0xce, 0x34, + 0x42, 0x77, 0x91, 0xe9, 0x57, 0x77, 0x11, 0xc0, 0x18, 0x3e, 0xf5, 0xcd, + 0x52, 0xb4, 0x9b, 0xf7, 0x4b, 0x8c, 0x14, 0x77, 0x33, 0xd3, 0x47, 0x8e, + 0x32, 0x87, 0x19, 0xc1, 0xea, 0x6b, 0x41, 0x2d, 0x91, 0x7a, 0xe3, 0xf0, + 0xa1, 0xc3, 0x10, 0x32, 0x73, 0xcd, 0x4d, 0xb2, 0xb9, 0xa5, 0x26, 0xf7, + 0x66, 0xa8, 0x40, 0x88, 0x3b, 0x66, 0x9b, 0x19, 0xe0, 0x85, 0x50, 0x30, + 0x79, 0xa9, 0xd6, 0x3f, 0x5a, 0x64, 0x28, 0x4e, 0xee, 0x3f, 0x8a, 0xb3, + 0x45, 0x06, 0xd6, 0x3d, 0xe9, 0x93, 0xa6, 0x21, 0x6f, 0xa5, 0x5b, 0x58, + 0x89, 0xa6, 0x4d, 0x0e, 0x51, 0x87, 0x7a, 0x13, 0x0b, 0x68, 0x31, 0x23, + 0x1b, 0x45, 0x38, 0xc5, 0xc7, 0x4a, 0x9c, 0x46, 0x11, 0x40, 0xdc, 0x28, + 0xf9, 0x73, 0xd6, 0xa6, 0xe3, 0xb1, 0x4a, 0xe2, 0x2f, 0x90, 0x71, 0xde, + 0x95, 0x62, 0x15, 0x62, 0xe0, 0x2e, 0xce, 0xa7, 0xaf, 0xa5, 0x20, 0xc7, + 0xbd, 0x3b, 0xe8, 0x16, 0xd4, 0x8c, 0x28, 0xa8, 0x67, 0x8f, 0x81, 0xf5, + 0x15, 0x64, 0xb0, 0x1d, 0xaa, 0x39, 0x59, 0x48, 0x19, 0xe0, 0x66, 0x84, + 0xf5, 0x06, 0x21, 0x4c, 0x8a, 0x69, 0x8b, 0x3e, 0xd5, 0x3b, 0x48, 0xb8, + 0xe9, 0x8a, 0x8d, 0xa7, 0x8f, 0xdf, 0x3f, 0x4a, 0x57, 0x63, 0xd0, 0xa9, + 0x7d, 0x0e, 0x21, 0x1e, 0x99, 0xaa, 0x6d, 0x16, 0x08, 0xe6, 0xb4, 0x2e, + 0x9d, 0x65, 0x55, 0x51, 0x9e, 0xb5, 0x56, 0x68, 0x77, 0x13, 0xcd, 0x6d, + 0x17, 0xa1, 0x0c, 0xae, 0x46, 0x7a, 0x75, 0xa8, 0x64, 0x24, 0x11, 0x83, + 0x8f, 0xa5, 0x59, 0xf2, 0xf6, 0x8a, 0x8a, 0x45, 0xe4, 0x71, 0x5a, 0xa6, + 0x49, 0x01, 0x91, 0xb2, 0x7b, 0xfd, 0x45, 0x42, 0xce, 0xa4, 0xf2, 0xbc, + 0xd5, 0x87, 0x53, 0xd6, 0xa1, 0x74, 0x06, 0xb6, 0x56, 0x21, 0xa2, 0xb9, + 0x8d, 0x1b, 0x24, 0x70, 0x6a, 0x09, 0x6c, 0x91, 0xc1, 0xca, 0x83, 0x9e, + 0xf5, 0x6c, 0x46, 0x40, 0xa6, 0x30, 0xc0, 0xe2, 0xb6, 0x4e, 0xcf, 0x43, + 0x16, 0x91, 0x9a, 0x9a, 0x6a, 0x2c, 0xea, 0xc3, 0xb7, 0x35, 0xb1, 0x1c, + 0x38, 0x50, 0x4f, 0xe5, 0x50, 0x46, 0x4e, 0xee, 0xc6, 0xae, 0x8c, 0xc8, + 0xa3, 0x15, 0x53, 0x9b, 0x76, 0xb9, 0x10, 0x8a, 0x5b, 0x12, 0xc4, 0x0e, + 0x07, 0x1c, 0x55, 0x81, 0x11, 0x6c, 0x53, 0x20, 0x8c, 0xf1, 0x56, 0xb6, + 0xe1, 0x4d, 0x73, 0x37, 0xa9, 0xa5, 0xb4, 0x21, 0x92, 0x22, 0x40, 0x03, + 0x8f, 0x7a, 0xd3, 0xb7, 0x8c, 0xa4, 0x0a, 0x14, 0x13, 0xc5, 0x54, 0x0b, + 0xf2, 0x0f, 0xa5, 0x6c, 0x58, 0xaa, 0xad, 0xba, 0x67, 0x9c, 0xd6, 0x73, + 0x7a, 0x15, 0x15, 0xa8, 0xb1, 0x40, 0xce, 0x07, 0x15, 0x6e, 0x3b, 0x50, + 0xa3, 0x3e, 0x94, 0xf8, 0x48, 0x03, 0xe5, 0xe0, 0x54, 0x91, 0xfc, 0xec, + 0xff, 0x00, 0x95, 0x62, 0xb5, 0x2d, 0xe8, 0x4b, 0x2b, 0xcf, 0x67, 0x67, + 0xe7, 0x40, 0x71, 0x85, 0xce, 0x0f, 0x7a, 0xe6, 0x65, 0xf1, 0x8d, 0xd5, + 0xd1, 0xd8, 0x80, 0x46, 0x4f, 0x56, 0xcd, 0x7a, 0xe6, 0xa5, 0xf0, 0xf2, + 0xea, 0xe7, 0xe1, 0x8c, 0x7a, 0xe4, 0x08, 0xef, 0x11, 0x0c, 0x18, 0x28, + 0xe4, 0x01, 0xc1, 0x35, 0xe2, 0xfe, 0x17, 0xd2, 0x13, 0x57, 0xd7, 0x6c, + 0xec, 0xa4, 0x93, 0xc8, 0x49, 0xa6, 0x11, 0xb4, 0xa7, 0xa2, 0x82, 0x71, + 0x9a, 0xf4, 0x30, 0xea, 0x32, 0x8b, 0x94, 0x96, 0xc7, 0x9f, 0x88, 0x73, + 0x8d, 0x45, 0x14, 0xc7, 0xdc, 0xb4, 0xcd, 0x2e, 0x24, 0x95, 0xe5, 0x3d, + 0x7a, 0xd5, 0xed, 0x33, 0xc3, 0xf7, 0xfa, 0xbc, 0x9b, 0x2c, 0xec, 0xa6, + 0xb9, 0x62, 0x7a, 0x46, 0x85, 0x8d, 0x7e, 0x8e, 0xf8, 0x17, 0xfe, 0x09, + 0xfb, 0xe0, 0xa4, 0xd3, 0xac, 0x6f, 0xe6, 0xba, 0x9b, 0x5e, 0x69, 0x6d, + 0xcb, 0xac, 0xbb, 0xbc, 0xb8, 0xd9, 0xf2, 0xa5, 0x78, 0x1d, 0xb1, 0xb8, + 0x1a, 0xfa, 0x9f, 0xc3, 0xbf, 0x08, 0x3c, 0x25, 0xe1, 0x28, 0xe3, 0xff, + 0x00, 0x84, 0x7f, 0xc3, 0x9a, 0x6e, 0x9e, 0xe0, 0xfd, 0xe4, 0xb7, 0x51, + 0x27, 0xe7, 0xd7, 0xf5, 0xa5, 0x3c, 0x4f, 0x2c, 0x7d, 0xc5, 0x76, 0x74, + 0x53, 0xc2, 0xc6, 0x7a, 0xb7, 0xa1, 0xf8, 0xa7, 0xe2, 0xff, 0x00, 0x01, + 0x6b, 0x9e, 0x0f, 0xb6, 0xb0, 0x7d, 0x5b, 0x4b, 0xb8, 0xd3, 0xe2, 0xba, + 0x05, 0xa0, 0x69, 0xe3, 0x2b, 0xbc, 0x71, 0x9c, 0x66, 0x9b, 0xe0, 0x7d, + 0x29, 0xb5, 0x1f, 0x13, 0xe9, 0x96, 0xeb, 0x21, 0x81, 0xa5, 0x9d, 0x14, + 0x48, 0x3f, 0x87, 0x9e, 0xb5, 0xf7, 0x6f, 0xfc, 0x15, 0x0f, 0x4d, 0x96, + 0x3d, 0x33, 0xc0, 0x73, 0x3a, 0xfc, 0x9e, 0x6c, 0xe8, 0x38, 0xc0, 0xe8, + 0x2b, 0xe2, 0xff, 0x00, 0x03, 0xda, 0xca, 0xbe, 0x20, 0xd3, 0x9a, 0xd9, + 0x43, 0x4e, 0x25, 0x5d, 0x9f, 0x5c, 0xf1, 0x5e, 0x8e, 0x1d, 0xb9, 0xd2, + 0x4d, 0xe8, 0xcf, 0x2e, 0xac, 0x54, 0x31, 0x16, 0x5a, 0xa3, 0xf7, 0x43, + 0xc0, 0x1a, 0x3c, 0xfa, 0x37, 0x84, 0x74, 0x0b, 0x09, 0xef, 0x24, 0xbf, + 0x36, 0x96, 0x31, 0x40, 0x66, 0x93, 0x86, 0x97, 0x08, 0xa3, 0x71, 0xf7, + 0xe2, 0xba, 0x29, 0x46, 0x24, 0xfb, 0xa3, 0x1b, 0xf1, 0x5c, 0xf7, 0xc3, + 0xab, 0xab, 0xf9, 0xbc, 0x09, 0xe1, 0xb3, 0xa8, 0xa4, 0x71, 0x5f, 0x9d, + 0x3a, 0x16, 0xb8, 0x11, 0x0c, 0x80, 0xfb, 0x17, 0xa7, 0xeb, 0x5d, 0x14, + 0xaa, 0xa5, 0xc6, 0x7a, 0xef, 0xea, 0x6b, 0xa7, 0x06, 0x9a, 0x72, 0x4d, + 0xdc, 0xdb, 0x12, 0xef, 0x66, 0x95, 0x81, 0x5d, 0x09, 0xc7, 0x43, 0xe9, + 0x52, 0x6d, 0x06, 0x94, 0x01, 0xd8, 0x51, 0xb4, 0x7d, 0x2b, 0xbc, 0xe1, + 0x22, 0x78, 0x47, 0x98, 0xac, 0x38, 0x23, 0x8a, 0xc5, 0xf1, 0x4e, 0x9d, + 0xa7, 0xea, 0x7e, 0x1c, 0xbd, 0xb4, 0xd6, 0x52, 0x39, 0xb4, 0xb9, 0x6d, + 0xdd, 0x2e, 0x15, 0xf8, 0x06, 0x32, 0x3e, 0x6c, 0x9e, 0xdc, 0x77, 0x15, + 0xb7, 0x20, 0x6d, 0xea, 0x72, 0x0a, 0xf3, 0xc5, 0x62, 0x78, 0xb3, 0x48, + 0x87, 0xc4, 0xde, 0x19, 0xd4, 0x74, 0xa7, 0x91, 0xa2, 0x5b, 0xcb, 0x59, + 0x2d, 0xf7, 0x83, 0x82, 0xbb, 0x94, 0xae, 0x7f, 0x5a, 0xb4, 0x67, 0x3b, + 0xd9, 0xd9, 0x0d, 0xf0, 0x75, 0xa6, 0x99, 0x6b, 0xe1, 0xab, 0x18, 0x74, + 0x31, 0x1c, 0x7a, 0x52, 0x40, 0x8b, 0x6c, 0x23, 0x39, 0x1e, 0x50, 0x03, + 0x6e, 0x33, 0xed, 0x8e, 0x4d, 0x6f, 0x24, 0x2a, 0x25, 0x2d, 0x8c, 0xb6, + 0x00, 0xc9, 0xae, 0x7b, 0xc1, 0x9a, 0x34, 0x1e, 0x12, 0xf0, 0xa6, 0x9b, + 0xa4, 0x47, 0x27, 0x9b, 0xf6, 0x2b, 0x58, 0xed, 0xf7, 0x6e, 0xce, 0xed, + 0xaa, 0x17, 0x3f, 0x8e, 0x2b, 0xa0, 0x50, 0x4c, 0xc5, 0x8c, 0x98, 0x04, + 0x0f, 0x94, 0x51, 0x20, 0xa7, 0x7e, 0x55, 0x75, 0xf7, 0x12, 0x9c, 0x0a, + 0x46, 0x2d, 0xfc, 0x2b, 0x9f, 0xad, 0x28, 0xda, 0x0f, 0x51, 0x4a, 0x64, + 0x55, 0x19, 0x2c, 0x31, 0x59, 0x9b, 0x11, 0xae, 0x7c, 0xc3, 0x9c, 0xf4, + 0x14, 0xaf, 0x22, 0x20, 0xe7, 0xe5, 0xcf, 0x03, 0x34, 0xe5, 0x6d, 0xd2, + 0x1c, 0x60, 0x0c, 0x52, 0xbc, 0x61, 0xc6, 0x5b, 0x9c, 0x72, 0x3e, 0xb4, + 0x7a, 0x8d, 0x1f, 0x92, 0x5f, 0xf0, 0x50, 0xf7, 0xb5, 0xbd, 0xfd, 0xa0, + 0xf5, 0xa6, 0xb6, 0x92, 0x29, 0x8a, 0xc5, 0x02, 0xc8, 0x62, 0x20, 0xe1, + 0x84, 0x4a, 0x08, 0x38, 0xee, 0x3b, 0xd7, 0xca, 0x16, 0xda, 0x7a, 0xdd, + 0xea, 0x96, 0xb0, 0x48, 0x0e, 0xc9, 0x25, 0x54, 0x6c, 0x75, 0xc1, 0x20, + 0x1a, 0xfb, 0x0b, 0xfe, 0x0a, 0x09, 0xe1, 0x9b, 0x2d, 0x1f, 0xe3, 0xae, + 0xa6, 0xd6, 0x71, 0x79, 0x4b, 0x75, 0x14, 0x77, 0x12, 0x01, 0xd0, 0xbb, + 0x20, 0x2c, 0x7f, 0x13, 0xcd, 0x7c, 0xb3, 0xa3, 0x59, 0x96, 0xf1, 0x26, + 0x98, 0xb8, 0xce, 0x6e, 0xa2, 0x18, 0xff, 0x00, 0x81, 0x8a, 0xe4, 0xe8, + 0x3a, 0xff, 0x00, 0x11, 0xfa, 0x24, 0xff, 0x00, 0xf0, 0x4e, 0x1f, 0x86, + 0x1a, 0xf7, 0x86, 0x74, 0xd9, 0x2d, 0x5b, 0x51, 0xd2, 0xef, 0x27, 0xb6, + 0x8a, 0x47, 0x9f, 0xcd, 0x32, 0x0d, 0xcc, 0xa0, 0x93, 0x83, 0xf5, 0xaf, + 0x1b, 0xf8, 0xaf, 0xff, 0x00, 0x04, 0xc4, 0xb8, 0xd0, 0xa3, 0x9e, 0x7f, + 0x09, 0xf8, 0x95, 0x75, 0x28, 0x62, 0x81, 0xe6, 0x61, 0x7d, 0x1f, 0x96, + 0x7e, 0x51, 0xd0, 0x15, 0xce, 0x6b, 0xf4, 0xbb, 0x4b, 0xd3, 0xda, 0x0d, + 0x17, 0x4c, 0x01, 0x53, 0x6a, 0x5a, 0x46, 0xb8, 0xce, 0x4e, 0x42, 0x8a, + 0xa5, 0xaa, 0xc1, 0x1a, 0x40, 0xf2, 0xdc, 0x42, 0x5e, 0x10, 0xac, 0x49, + 0x29, 0x90, 0xa3, 0xbe, 0x7d, 0xab, 0xc8, 0x97, 0xb4, 0x84, 0x9a, 0xd5, + 0x9e, 0x84, 0x55, 0x39, 0x41, 0x36, 0xba, 0x1f, 0x88, 0x3e, 0x34, 0xfd, + 0x94, 0xfe, 0x21, 0xf8, 0x39, 0x1a, 0x49, 0xf4, 0x49, 0x6e, 0x61, 0x54, + 0xde, 0xd2, 0xdb, 0x1d, 0xea, 0x06, 0x33, 0xfc, 0xab, 0xc6, 0x67, 0x89, + 0xa2, 0x76, 0x46, 0x05, 0x59, 0x4e, 0x08, 0x3d, 0xab, 0xf7, 0x17, 0xe3, + 0x3f, 0x80, 0xb5, 0x2f, 0x14, 0x7c, 0x3a, 0xd6, 0x1b, 0x4b, 0xd4, 0x56, + 0xc9, 0x8c, 0x2d, 0x2a, 0x95, 0xf9, 0x94, 0x46, 0x14, 0x9c, 0x01, 0xea, + 0x45, 0x7e, 0x27, 0xf8, 0x86, 0xcd, 0xed, 0xb5, 0x8b, 0xc8, 0x64, 0x3b, + 0x9d, 0x65, 0x65, 0x2c, 0x3b, 0x9c, 0xd7, 0x65, 0x29, 0xb9, 0x6e, 0x79, + 0xf5, 0xa9, 0xf2, 0xbd, 0x16, 0x9d, 0xce, 0x97, 0x47, 0x86, 0x49, 0x3c, + 0x3e, 0x64, 0x61, 0xf2, 0xaa, 0xe3, 0x35, 0x02, 0x3e, 0xc1, 0x5e, 0x81, + 0x73, 0xe1, 0xe1, 0xa4, 0x7c, 0x2d, 0xb4, 0xbc, 0xc2, 0x03, 0x39, 0x55, + 0x29, 0x8e, 0x79, 0xef, 0x5e, 0x7c, 0x79, 0xaf, 0x16, 0xaa, 0xb4, 0x99, + 0xed, 0xd2, 0xf8, 0x50, 0xb2, 0x28, 0x71, 0x9c, 0x63, 0xdc, 0x55, 0x67, + 0x40, 0xbe, 0x84, 0x55, 0x92, 0xc4, 0x1c, 0x02, 0x31, 0x55, 0xe4, 0x8d, + 0xb7, 0x13, 0xda, 0xb9, 0x99, 0xd6, 0x8c, 0x1b, 0xb5, 0xcc, 0xef, 0xc7, + 0x35, 0x0e, 0xdc, 0x10, 0x31, 0xd6, 0xac, 0xdd, 0x8c, 0x5c, 0xbf, 0x35, + 0x09, 0x19, 0x75, 0xae, 0xb4, 0xf4, 0x32, 0x5b, 0x83, 0x28, 0xc5, 0x56, + 0x95, 0x40, 0x07, 0xfa, 0x55, 0xcc, 0x73, 0xeb, 0x51, 0x3a, 0x29, 0xe7, + 0x1c, 0x9a, 0x49, 0x9a, 0x32, 0xb0, 0xc8, 0x5e, 0xbc, 0x0e, 0xd5, 0x52, + 0x50, 0x9e, 0x71, 0x7f, 0x5a, 0xbc, 0xea, 0x3a, 0x1e, 0x2a, 0x9c, 0xe0, + 0x06, 0x15, 0xac, 0x77, 0x33, 0x92, 0x05, 0x73, 0xc6, 0xd5, 0xc7, 0xd6, + 0xa5, 0xcb, 0x11, 0x9c, 0x9a, 0x6c, 0x7c, 0x62, 0xa7, 0x0a, 0x71, 0xd2, + 0x86, 0xc4, 0x95, 0xc9, 0x23, 0x4c, 0xe2, 0xad, 0xc7, 0x1e, 0x2a, 0x28, + 0xc0, 0x5e, 0xa4, 0x55, 0xa4, 0x75, 0xf7, 0x35, 0xcf, 0x26, 0x6b, 0x61, + 0x36, 0xe1, 0xd3, 0xbd, 0x5a, 0x45, 0x39, 0xa8, 0x83, 0x02, 0xca, 0x76, + 0xfe, 0x75, 0x61, 0x19, 0x8f, 0x40, 0x05, 0x63, 0x22, 0x91, 0x22, 0x21, + 0x14, 0xff, 0x00, 0x28, 0xf9, 0x89, 0x8a, 0x6a, 0x07, 0x3d, 0xea, 0x40, + 0x87, 0xcc, 0x4c, 0x9e, 0xbd, 0x6b, 0x12, 0x8b, 0x00, 0x75, 0xa7, 0xa1, + 0x19, 0xeb, 0x4c, 0x10, 0xe6, 0x9e, 0x20, 0xe2, 0xa0, 0x61, 0x2c, 0x61, + 0xd4, 0x00, 0xc3, 0xa8, 0xef, 0x53, 0xaa, 0x22, 0x7f, 0x10, 0xfc, 0xea, + 0x39, 0x23, 0x0a, 0xaa, 0x7b, 0xe4, 0x55, 0x83, 0x08, 0x3f, 0x5a, 0x3a, + 0x05, 0x86, 0x10, 0x9d, 0x98, 0x53, 0x64, 0x45, 0x64, 0x38, 0x60, 0x49, + 0x1e, 0xb4, 0xff, 0x00, 0x20, 0x7a, 0x53, 0x24, 0x8b, 0x11, 0xb7, 0x1d, + 0xa9, 0x5c, 0x2c, 0x11, 0xc3, 0xb6, 0x25, 0xf6, 0x14, 0x8d, 0x1f, 0x3d, + 0x29, 0xf1, 0x43, 0x98, 0x54, 0xf5, 0xe2, 0x9a, 0xd0, 0x90, 0x38, 0xc8, + 0xa1, 0xee, 0x08, 0x85, 0xe2, 0xc8, 0x35, 0x5e, 0x25, 0xfd, 0xd8, 0xe2, + 0xac, 0xb0, 0x91, 0x73, 0xf3, 0x1e, 0x29, 0x89, 0x23, 0x18, 0x81, 0xc0, + 0x27, 0x1e, 0x95, 0x4b, 0x60, 0x22, 0x20, 0x63, 0x04, 0x54, 0x12, 0x2e, + 0x10, 0x9c, 0x71, 0x56, 0x4c, 0x9e, 0xa8, 0x29, 0x92, 0x3a, 0x18, 0xc8, + 0xc1, 0x5e, 0x29, 0xa6, 0x22, 0x12, 0x80, 0xa8, 0xe3, 0x8c, 0x54, 0x2f, + 0x08, 0x15, 0x73, 0x6a, 0xed, 0x18, 0x22, 0x98, 0xc9, 0x4e, 0xe1, 0x63, + 0x3e, 0x48, 0x17, 0xcc, 0xe9, 0xce, 0x2a, 0x17, 0x87, 0xe9, 0x57, 0xe5, + 0x4f, 0xde, 0x74, 0xed, 0x50, 0x95, 0xfc, 0xeb, 0x54, 0xc8, 0xb1, 0x8d, + 0x79, 0x60, 0x92, 0x8f, 0xbb, 0xb5, 0xbd, 0x45, 0x73, 0xcd, 0x09, 0x12, + 0x9c, 0xf1, 0x83, 0x5d, 0xa4, 0x8b, 0xc8, 0xaa, 0x77, 0x5a, 0x6c, 0x57, + 0x03, 0x25, 0x3e, 0x6f, 0x51, 0x5d, 0x94, 0xeb, 0x72, 0xe8, 0xcc, 0x67, + 0x0e, 0x63, 0x9e, 0x88, 0x2a, 0x74, 0xeb, 0xea, 0x6a, 0x42, 0xe1, 0x06, + 0x58, 0xe0, 0x55, 0xe1, 0xa3, 0xec, 0x7c, 0x83, 0x95, 0xf4, 0xa8, 0x2e, + 0x74, 0x82, 0x46, 0xe5, 0x39, 0x3e, 0x86, 0xb6, 0xe7, 0x8b, 0x7b, 0x93, + 0x66, 0x91, 0x55, 0x6f, 0xe3, 0xdf, 0x8f, 0xd4, 0xd3, 0x2e, 0x63, 0x92, + 0x5f, 0x99, 0x5f, 0x2b, 0xe9, 0x50, 0xcb, 0x68, 0xf1, 0x9e, 0x54, 0x83, + 0x4d, 0x8e, 0x77, 0x88, 0xfb, 0x7a, 0x57, 0x42, 0x8a, 0xde, 0x26, 0x7c, + 0xcf, 0x69, 0x8c, 0x5c, 0xa3, 0x73, 0xda, 0xae, 0xc3, 0x3e, 0x46, 0x1b, + 0xa7, 0xad, 0x26, 0xe8, 0xee, 0x47, 0xa3, 0xd4, 0x0f, 0x1b, 0x40, 0x7d, + 0xa9, 0x3b, 0x4b, 0x7d, 0xc5, 0x6e, 0x5d, 0x51, 0x2c, 0xf6, 0xbc, 0xee, + 0x4f, 0xca, 0x9b, 0x15, 0xc6, 0xc3, 0x83, 0xda, 0x96, 0x19, 0xf6, 0x9f, + 0x51, 0x4f, 0x9a, 0x05, 0x91, 0x4b, 0xaf, 0x5a, 0x5e, 0x52, 0x0d, 0xf5, + 0x89, 0x76, 0x09, 0xc4, 0x8b, 0xb1, 0xbb, 0xd5, 0x4b, 0x9b, 0x73, 0x03, + 0xee, 0x1f, 0x76, 0xa1, 0x86, 0x6f, 0x2c, 0xe1, 0xba, 0xd6, 0x82, 0x4c, + 0xb3, 0xa6, 0xd6, 0xef, 0xeb, 0x59, 0xb4, 0xe0, 0xee, 0x8d, 0x13, 0x53, + 0x56, 0x64, 0x50, 0xcb, 0xbc, 0x75, 0xe6, 0xac, 0x48, 0xab, 0x3c, 0x5b, + 0x4f, 0x5a, 0xa2, 0xea, 0xd6, 0x93, 0x63, 0xb7, 0x63, 0x56, 0xa1, 0x94, + 0xbf, 0x24, 0xf1, 0x53, 0x25, 0xd5, 0x0e, 0x3d, 0x99, 0x0c, 0x0f, 0xe5, + 0xbe, 0xc3, 0xd4, 0x55, 0xe8, 0x64, 0x11, 0xca, 0x30, 0x7a, 0xd5, 0x1b, + 0xd8, 0xf6, 0xc8, 0x24, 0x1f, 0xa5, 0x11, 0x9d, 0xcb, 0xbb, 0x9c, 0xd0, + 0xe2, 0xa4, 0xae, 0x11, 0x7c, 0xae, 0xc5, 0xdd, 0x49, 0x7e, 0x68, 0xe4, + 0x1d, 0x33, 0x83, 0x42, 0x91, 0xb6, 0x96, 0x63, 0xe7, 0x59, 0x9f, 0x5c, + 0x66, 0xa0, 0x89, 0xd5, 0xe3, 0xfa, 0xd6, 0x71, 0x57, 0x56, 0xec, 0x68, + 0xf7, 0x23, 0xb4, 0x60, 0x1a, 0x50, 0x39, 0xaa, 0x52, 0xc6, 0x9b, 0x98, + 0x8c, 0xe7, 0x35, 0x62, 0xdc, 0x98, 0x64, 0x6c, 0xf3, 0x91, 0x55, 0xe5, + 0x52, 0x77, 0x30, 0xf5, 0xae, 0xb5, 0xa3, 0xba, 0x66, 0x12, 0x77, 0x8a, + 0x2c, 0x69, 0xdb, 0x56, 0x69, 0x18, 0x7a, 0x53, 0xa4, 0x94, 0x33, 0xb1, + 0x24, 0x66, 0xa1, 0xb5, 0x26, 0x15, 0x7c, 0xf2, 0x48, 0xa6, 0x18, 0x98, + 0xae, 0xea, 0x4d, 0x26, 0xef, 0x71, 0xf3, 0x5a, 0x29, 0x16, 0x6c, 0x22, + 0xdf, 0x34, 0x92, 0x75, 0x03, 0x81, 0x4b, 0x73, 0x36, 0x5c, 0xf3, 0x9c, + 0x52, 0x5b, 0x48, 0x60, 0xb4, 0x2b, 0x8f, 0x9d, 0xb9, 0xaa, 0x93, 0x09, + 0x3e, 0xe8, 0xef, 0x52, 0x95, 0xe4, 0xdb, 0x06, 0xf9, 0x62, 0x4d, 0x61, + 0x6e, 0x6e, 0xa7, 0xf3, 0x18, 0x65, 0x17, 0xbd, 0x5e, 0xba, 0xbb, 0xf2, + 0xb8, 0xc7, 0xcb, 0x55, 0xfc, 0xd5, 0xb4, 0xb6, 0x58, 0xd3, 0x96, 0xee, + 0x6a, 0x89, 0x32, 0x5e, 0xcc, 0x23, 0x1d, 0x3d, 0xe8, 0xe5, 0xe7, 0x95, + 0xde, 0xc8, 0x5c, 0xdc, 0x8a, 0xcb, 0x72, 0x6b, 0x68, 0x9b, 0x50, 0x98, + 0xb1, 0xe2, 0x31, 0xc9, 0x35, 0x7a, 0xea, 0xf1, 0x6d, 0xd3, 0xcb, 0x8c, + 0x80, 0x07, 0x15, 0x0c, 0xd3, 0xa5, 0x84, 0x5e, 0x54, 0x78, 0xc8, 0x1c, + 0x9a, 0xa5, 0x1a, 0x9b, 0xd9, 0x3d, 0x14, 0x75, 0x34, 0x5b, 0x9d, 0xf3, + 0x3d, 0x82, 0xfc, 0x9a, 0x2d, 0xd8, 0xe4, 0x57, 0xbc, 0x93, 0x81, 0x81, + 0xeb, 0x57, 0x84, 0x91, 0x58, 0xa6, 0xd5, 0xc3, 0x37, 0x73, 0x55, 0xe5, + 0xba, 0x8e, 0xd9, 0x3c, 0xb8, 0xfa, 0x8e, 0xf5, 0x5a, 0x34, 0x69, 0x98, + 0x9c, 0xfd, 0x49, 0xa7, 0x6e, 0x6d, 0xf6, 0x12, 0x7c, 0xbb, 0x6e, 0x3d, + 0xe5, 0x79, 0xdf, 0xa9, 0x39, 0xa9, 0x56, 0x24, 0x88, 0x6e, 0x90, 0xfe, + 0x15, 0x13, 0x4c, 0x90, 0x0d, 0xa9, 0xf3, 0x37, 0xad, 0x36, 0x38, 0xe5, + 0xb8, 0x6c, 0x63, 0x27, 0xd2, 0xaa, 0xda, 0x76, 0x44, 0xdf, 0x5e, 0xec, + 0x7c, 0x97, 0x65, 0xce, 0xd4, 0xe1, 0x69, 0x61, 0xb4, 0x92, 0x67, 0x18, + 0x52, 0x49, 0xad, 0x3b, 0x1d, 0x1b, 0x95, 0x2e, 0x3f, 0x0a, 0xdb, 0x8e, + 0xd5, 0x21, 0x50, 0x00, 0x03, 0x1d, 0x85, 0x61, 0x2a, 0xca, 0x3a, 0x44, + 0xd1, 0x53, 0x72, 0xd6, 0x46, 0x55, 0x9e, 0x88, 0x3a, 0xc8, 0x7f, 0x01, + 0x5a, 0xb0, 0x5b, 0x47, 0x6e, 0x98, 0x00, 0x0f, 0xa5, 0x4e, 0x39, 0x5e, + 0x06, 0xd1, 0x4c, 0x58, 0xf3, 0x9e, 0x73, 0xcd, 0x71, 0xca, 0x6e, 0x5b, + 0x9b, 0xd9, 0x2d, 0x86, 0xbe, 0xd2, 0x38, 0x5c, 0x60, 0xf5, 0xa7, 0x85, + 0xc8, 0xeb, 0x9a, 0x52, 0xb9, 0x00, 0x0f, 0x5a, 0x73, 0xa3, 0x2f, 0x0a, + 0xa4, 0x93, 0x50, 0x30, 0x0b, 0x82, 0x9c, 0x54, 0x81, 0x32, 0x7a, 0x50, + 0x91, 0x39, 0xda, 0x58, 0x73, 0x9a, 0xb0, 0x23, 0x66, 0x35, 0x2d, 0x8d, + 0x22, 0x33, 0x17, 0xcb, 0xcf, 0x4c, 0xd4, 0xdb, 0x94, 0x0e, 0x84, 0xd3, + 0xfe, 0xca, 0x4a, 0x13, 0x8a, 0xb4, 0xb6, 0x0c, 0xc0, 0x71, 0xc5, 0x66, + 0xe6, 0x8d, 0x14, 0x59, 0x51, 0x49, 0xec, 0xb8, 0x14, 0xc5, 0xdc, 0x37, + 0x00, 0x71, 0xcf, 0x61, 0x5a, 0x89, 0xa7, 0xb7, 0x1c, 0x52, 0x47, 0xa6, + 0x39, 0x66, 0x18, 0xfe, 0x2a, 0xcf, 0xda, 0x44, 0xaf, 0x67, 0x23, 0x3d, + 0x51, 0x9b, 0xa9, 0x26, 0x96, 0x48, 0xbf, 0x76, 0x7d, 0x6b, 0x5e, 0x3d, + 0x31, 0xbd, 0x38, 0xa9, 0x25, 0xd3, 0x40, 0x8c, 0xfd, 0x2b, 0x3f, 0x6c, + 0xae, 0x5f, 0xb2, 0x76, 0x32, 0x84, 0x24, 0xa8, 0xe3, 0xb5, 0x39, 0x61, + 0x3e, 0x95, 0xaf, 0xf6, 0x34, 0x54, 0x5e, 0x82, 0xa3, 0x68, 0xd5, 0x78, + 0x14, 0xbd, 0xa5, 0xc3, 0xd9, 0xd8, 0xc8, 0xba, 0x87, 0x11, 0x7b, 0x66, + 0x8f, 0x2c, 0x11, 0x57, 0x6f, 0x10, 0x34, 0x58, 0x03, 0x9c, 0xd1, 0xe4, + 0xe4, 0x72, 0x31, 0x57, 0xcd, 0xa1, 0x9d, 0x8c, 0xf6, 0x8f, 0x9a, 0x86, + 0xe2, 0x3c, 0x20, 0xfa, 0xd6, 0x9b, 0x40, 0x3d, 0x0d, 0x57, 0xb9, 0x83, + 0xf7, 0x7d, 0x3b, 0xd5, 0xa9, 0x6a, 0x26, 0x8a, 0x4c, 0x99, 0xa8, 0xda, + 0x30, 0x2a, 0xd3, 0xc7, 0x81, 0x50, 0x95, 0xf5, 0x34, 0xd3, 0x11, 0x5d, + 0xa3, 0xf9, 0x87, 0xd6, 0x9e, 0xd0, 0xe6, 0x9c, 0x71, 0xb9, 0x79, 0xa7, + 0xbf, 0x1e, 0xe3, 0xb6, 0x2a, 0xae, 0xc0, 0xa5, 0x24, 0x22, 0xa9, 0xca, + 0xbb, 0x58, 0x0c, 0xd6, 0x93, 0x8a, 0xa3, 0x72, 0x3e, 0x71, 0x8a, 0xd6, + 0x0c, 0x86, 0x8a, 0xcc, 0x4f, 0x41, 0x50, 0xb1, 0xe7, 0xa5, 0x58, 0x23, + 0x1f, 0x5f, 0x6a, 0x89, 0xc5, 0x74, 0x26, 0x4b, 0x44, 0x3f, 0x2e, 0x2a, + 0x32, 0x99, 0x1c, 0x1c, 0xd4, 0x98, 0x1b, 0x69, 0xa5, 0x73, 0xc7, 0xeb, + 0x5a, 0xa6, 0x64, 0xc6, 0x46, 0x87, 0xcc, 0xe9, 0x57, 0xed, 0xd3, 0x20, + 0x71, 0x55, 0xe0, 0x1f, 0x31, 0xab, 0xd0, 0x2d, 0x12, 0x64, 0xa4, 0x4f, + 0x0a, 0xfc, 0xb5, 0x3e, 0xdc, 0x8a, 0x8a, 0x13, 0x80, 0x3d, 0x2a, 0x63, + 0x26, 0x07, 0x1d, 0xeb, 0x17, 0xb8, 0xfa, 0x0d, 0xcf, 0xee, 0xc0, 0xc6, + 0x78, 0xad, 0x7b, 0x34, 0xdd, 0x6b, 0x1e, 0x7e, 0x5e, 0x33, 0x54, 0x15, + 0x3e, 0x51, 0xef, 0x5a, 0x76, 0x88, 0xe6, 0x10, 0x00, 0x0c, 0x3b, 0x1f, + 0x4a, 0xce, 0x4f, 0x40, 0x44, 0xf1, 0xa7, 0x4f, 0x98, 0x91, 0xed, 0x56, + 0xe0, 0x88, 0x9c, 0xe0, 0x7e, 0x74, 0xc8, 0xbe, 0x55, 0x03, 0x1c, 0xfa, + 0x0a, 0x9f, 0xcc, 0x65, 0x19, 0x03, 0x03, 0xda, 0xb3, 0x4d, 0x94, 0xed, + 0xd4, 0xfa, 0xe3, 0xe0, 0xbd, 0x95, 0x9e, 0xb1, 0xfb, 0x38, 0xeb, 0x89, + 0x77, 0x95, 0xbc, 0x89, 0xa4, 0x8e, 0x39, 0x7a, 0xe1, 0x71, 0xc0, 0x23, + 0xd2, 0xbe, 0x45, 0xf8, 0x55, 0xa4, 0xc1, 0x77, 0xf1, 0x3b, 0x47, 0xb7, + 0x9a, 0x2f, 0x3e, 0x17, 0xbe, 0x45, 0x64, 0xc6, 0x77, 0x0d, 0xdc, 0x8c, + 0x57, 0xd7, 0x56, 0x56, 0xf1, 0xd8, 0xfe, 0xce, 0xd6, 0x7a, 0x86, 0x93, + 0x3a, 0xd8, 0xea, 0x0b, 0x69, 0x99, 0x79, 0xf9, 0x66, 0xce, 0x78, 0x61, + 0x5f, 0x27, 0x7c, 0x2b, 0xd3, 0xd7, 0x58, 0xf8, 0x89, 0xa3, 0xda, 0xcd, + 0x39, 0xb6, 0x59, 0xef, 0x11, 0x5a, 0x54, 0x19, 0x2b, 0x96, 0xea, 0x05, + 0x77, 0xd2, 0xba, 0xa4, 0xee, 0x72, 0xd6, 0xd6, 0xbc, 0x6c, 0x7e, 0xe7, + 0x69, 0x3a, 0x25, 0xa6, 0x8d, 0xa3, 0x41, 0x6d, 0x63, 0x6a, 0xb6, 0xd6, + 0xf0, 0xc4, 0x36, 0x40, 0x8b, 0xb5, 0x47, 0x19, 0xc0, 0x15, 0xa6, 0xb0, + 0x28, 0x7c, 0x6c, 0xda, 0xff, 0x00, 0xc3, 0x81, 0x50, 0xf8, 0x4f, 0x47, + 0x4d, 0x03, 0xc3, 0x56, 0x16, 0x2d, 0x70, 0xf7, 0x29, 0x04, 0x0a, 0x82, + 0x69, 0x4f, 0xce, 0xc0, 0x0e, 0xa6, 0xb7, 0x60, 0x85, 0x01, 0x0c, 0xa4, + 0xe7, 0x23, 0x03, 0x18, 0xa7, 0x08, 0x77, 0x46, 0xce, 0x6d, 0x45, 0x5c, + 0xf8, 0x33, 0xfe, 0x0a, 0x8f, 0xa0, 0x1f, 0xf8, 0x43, 0xbc, 0x11, 0x76, + 0x96, 0xeb, 0xb5, 0x6f, 0x67, 0x8d, 0xe4, 0x51, 0x92, 0x0b, 0x20, 0x20, + 0x13, 0xef, 0x86, 0x3f, 0x81, 0xaf, 0x86, 0xbe, 0x1d, 0x46, 0x6c, 0xbc, + 0x49, 0xa7, 0xcc, 0xc8, 0xcc, 0xb1, 0xca, 0xae, 0x71, 0xd7, 0x83, 0x5f, + 0xa4, 0x3f, 0xf0, 0x52, 0x8b, 0x13, 0x71, 0xf0, 0x8f, 0x43, 0x3b, 0xbe, + 0x41, 0xac, 0xc6, 0x76, 0x11, 0xff, 0x00, 0x4c, 0x66, 0xaf, 0x82, 0x7e, + 0x14, 0xc3, 0x01, 0xf1, 0xce, 0x8d, 0x1d, 0xc2, 0xab, 0x42, 0xd7, 0x51, + 0x86, 0x0d, 0xd3, 0x1b, 0x85, 0x7b, 0xfe, 0xca, 0x34, 0x92, 0x8a, 0xd8, + 0xf0, 0xb9, 0xdd, 0x4a, 0x97, 0x7d, 0xcf, 0xd9, 0x2f, 0x04, 0xde, 0x0b, + 0xcf, 0x0a, 0xe8, 0x52, 0x2c, 0x45, 0x5a, 0x4b, 0x18, 0x5f, 0x0e, 0x7e, + 0xef, 0xc8, 0xbc, 0x1f, 0xce, 0xb7, 0xdd, 0x24, 0x62, 0x09, 0x70, 0x06, + 0xee, 0x80, 0x53, 0x6c, 0x82, 0x2d, 0xa4, 0x23, 0x80, 0x36, 0x0a, 0x7c, + 0x84, 0x7c, 0xb8, 0x27, 0xad, 0x74, 0x46, 0x11, 0x83, 0xf7, 0x51, 0x53, + 0x93, 0x9b, 0xd5, 0x80, 0x83, 0x1d, 0x19, 0x87, 0xd0, 0xd3, 0xf6, 0x63, + 0xa8, 0xcd, 0x0a, 0xcd, 0xdd, 0x71, 0xef, 0x52, 0x0c, 0x1a, 0x6d, 0xb2, + 0x6c, 0x57, 0x90, 0xc6, 0x1d, 0x17, 0x6f, 0xcc, 0x7d, 0xaa, 0x3b, 0x7b, + 0x08, 0x1e, 0x04, 0x2d, 0x0a, 0x31, 0xc7, 0x75, 0xab, 0x52, 0x28, 0x38, + 0xc8, 0xcd, 0x36, 0xd5, 0x7f, 0x70, 0x98, 0xf4, 0xa7, 0xcd, 0x65, 0xa0, + 0x5b, 0xb9, 0x0c, 0xd6, 0x50, 0x24, 0x32, 0x6d, 0x89, 0x01, 0xc7, 0x65, + 0x15, 0x2a, 0x3f, 0xef, 0x4a, 0x85, 0x3d, 0x07, 0x3d, 0xaa, 0x49, 0xd7, + 0xf7, 0x2f, 0x9f, 0x4a, 0x7c, 0x4a, 0x01, 0x3d, 0xb8, 0x15, 0x3c, 0xd7, + 0x5a, 0x8e, 0xdd, 0x84, 0xd8, 0x4f, 0xb5, 0x28, 0x85, 0x7f, 0xba, 0x29, + 0xfb, 0x80, 0xe9, 0xcd, 0x21, 0xdc, 0xdd, 0xf1, 0xf4, 0xa8, 0xbb, 0x28, + 0x88, 0xc1, 0x1e, 0xfe, 0x55, 0x7a, 0x7a, 0x53, 0x65, 0xb5, 0x12, 0x28, + 0x08, 0x36, 0x60, 0x83, 0xc1, 0xc6, 0x7d, 0xaa, 0x40, 0x18, 0x3f, 0x00, + 0x1e, 0x3a, 0xd0, 0xf2, 0x98, 0xc0, 0x24, 0x75, 0x20, 0x70, 0x69, 0xa6, + 0xfa, 0x06, 0x9d, 0x4f, 0xcb, 0xff, 0x00, 0xf8, 0x28, 0x27, 0x85, 0xef, + 0x74, 0xff, 0x00, 0x8c, 0xf7, 0x37, 0x57, 0x33, 0xf9, 0xf0, 0xde, 0xdb, + 0xc5, 0x2c, 0x03, 0x3f, 0x71, 0x02, 0x85, 0xdb, 0xf9, 0xa9, 0xaf, 0x9c, + 0xbe, 0x1a, 0x78, 0x5e, 0x3d, 0x7f, 0xe2, 0x37, 0x86, 0xac, 0x26, 0x73, + 0x14, 0x57, 0x3a, 0x95, 0xbc, 0x4e, 0xea, 0x32, 0x54, 0x34, 0x8a, 0x09, + 0x1f, 0x9d, 0x7d, 0x61, 0xff, 0x00, 0x05, 0x0c, 0xd6, 0x2d, 0xf5, 0x4f, + 0x8a, 0x76, 0xf6, 0x90, 0x86, 0xf3, 0x6c, 0xac, 0xd2, 0x29, 0xb2, 0x30, + 0x37, 0x1c, 0xb0, 0xc7, 0xaf, 0x0c, 0x2b, 0xc0, 0xbe, 0x04, 0xdb, 0x0f, + 0xf8, 0x5b, 0x7e, 0x11, 0x2d, 0xc8, 0x1a, 0xad, 0xa9, 0xff, 0x00, 0xc8, + 0xab, 0x53, 0x05, 0x79, 0xa4, 0xfb, 0x91, 0x89, 0xd2, 0xed, 0x76, 0xfd, + 0x0f, 0xd8, 0xcb, 0x18, 0x11, 0x2c, 0x2d, 0xa3, 0x52, 0x0a, 0xac, 0x6a, + 0xa3, 0xe9, 0x8a, 0x4b, 0xcb, 0x45, 0x9e, 0xde, 0x48, 0x0a, 0x17, 0x8d, + 0xc1, 0x46, 0x1e, 0xc7, 0xad, 0x5e, 0xb7, 0x50, 0x6d, 0xe3, 0xff, 0x00, + 0x74, 0x53, 0x5c, 0x30, 0x59, 0x02, 0x75, 0xc1, 0xc6, 0x3b, 0x1a, 0xce, + 0xac, 0x53, 0xbb, 0x8e, 0x8c, 0xde, 0x93, 0xb2, 0xb3, 0x3c, 0xbb, 0xe3, + 0x44, 0x77, 0x1a, 0x57, 0xc2, 0xfd, 0x75, 0xf4, 0xed, 0x2b, 0xfb, 0x5a, + 0x65, 0xb6, 0x91, 0x05, 0xa6, 0xcd, 0xfc, 0x6d, 0xc6, 0xec, 0x67, 0xb0, + 0xaf, 0xc1, 0xef, 0x15, 0x2b, 0x36, 0xb3, 0x74, 0xcc, 0x9e, 0x5b, 0x99, + 0x98, 0x94, 0xc6, 0x36, 0x9c, 0xf4, 0xaf, 0xe8, 0x17, 0xe2, 0x15, 0xea, + 0xe8, 0x9e, 0x03, 0xd6, 0xae, 0x6f, 0xae, 0x63, 0x81, 0x23, 0xb1, 0x97, + 0xcc, 0x95, 0xd3, 0x70, 0xc9, 0x4c, 0x74, 0x18, 0xce, 0x49, 0xaf, 0xc0, + 0x6f, 0x18, 0xe2, 0x6f, 0x11, 0x5f, 0xc8, 0x87, 0x72, 0xb5, 0xc3, 0x90, + 0x40, 0xc6, 0x7e, 0x63, 0x5c, 0x49, 0x72, 0xbd, 0xee, 0x15, 0x35, 0x57, + 0xbf, 0xc8, 0xf5, 0xa8, 0xed, 0x6e, 0x35, 0x7f, 0x85, 0xea, 0xd7, 0x2c, + 0x22, 0x86, 0xde, 0x31, 0x24, 0x51, 0x9e, 0xae, 0x47, 0x73, 0xf9, 0xd7, + 0x99, 0x49, 0xb5, 0x45, 0x7a, 0x9e, 0x85, 0x73, 0x2d, 0xdf, 0xc2, 0xcb, + 0x92, 0xcb, 0x8d, 0xb1, 0x3a, 0xe3, 0xd0, 0x60, 0x57, 0x97, 0x2f, 0x00, + 0xf7, 0x15, 0xe2, 0xd6, 0x5a, 0x9e, 0xad, 0x27, 0xee, 0xa4, 0x40, 0x23, + 0x52, 0x32, 0x17, 0x3f, 0x4a, 0xae, 0xe4, 0x02, 0x40, 0x27, 0xf1, 0xab, + 0x84, 0x28, 0xe4, 0x7c, 0xb5, 0x14, 0xe0, 0x6d, 0xe4, 0x03, 0xef, 0x5c, + 0xcd, 0xa3, 0xb2, 0x27, 0x3b, 0x7b, 0x18, 0x37, 0x0d, 0x9e, 0xb5, 0x58, + 0x80, 0x8c, 0x09, 0x38, 0xab, 0x37, 0x79, 0x17, 0x0e, 0x0f, 0x6a, 0xad, + 0x39, 0xf9, 0x45, 0x74, 0xad, 0x91, 0x98, 0xf2, 0x43, 0x7b, 0xd3, 0x48, + 0xc1, 0x1d, 0x85, 0x0a, 0xc0, 0xff, 0x00, 0x8d, 0x2b, 0xb6, 0x71, 0xce, + 0x46, 0x7a, 0xd2, 0x34, 0xe8, 0x43, 0x30, 0x06, 0xa9, 0x4a, 0x81, 0x4f, + 0xad, 0x68, 0x48, 0x01, 0x1c, 0x1a, 0xa7, 0x3a, 0x92, 0xc0, 0x1a, 0xd2, + 0x2c, 0x99, 0x21, 0x91, 0xe7, 0x76, 0x31, 0x81, 0x53, 0xec, 0x24, 0x67, + 0xad, 0x32, 0x3e, 0xc2, 0xa7, 0x2b, 0x94, 0xf7, 0xa1, 0xb1, 0x24, 0x49, + 0x0a, 0x0d, 0xa3, 0x35, 0x6e, 0x38, 0xf8, 0xf5, 0xaa, 0xf0, 0x8e, 0x05, + 0x5c, 0x8c, 0x81, 0x8e, 0x7a, 0x56, 0x12, 0x65, 0xd8, 0x36, 0x60, 0xaf, + 0xd6, 0xad, 0xc4, 0xb5, 0x5f, 0x70, 0x2c, 0xbd, 0x78, 0xab, 0x48, 0xdf, + 0xec, 0xd6, 0x12, 0xb9, 0x49, 0x13, 0xa2, 0x64, 0x0a, 0x90, 0xa7, 0xef, + 0x12, 0x98, 0x92, 0x10, 0x00, 0x02, 0xa4, 0xde, 0xdb, 0x93, 0x20, 0x75, + 0xf4, 0xac, 0x4b, 0x27, 0x09, 0xd2, 0xa6, 0x58, 0xfa, 0x53, 0x42, 0xb1, + 0xef, 0x52, 0x22, 0x37, 0xf7, 0x8d, 0x67, 0x71, 0x89, 0x34, 0x78, 0x41, + 0xf5, 0x15, 0x67, 0xcb, 0xa8, 0xa4, 0x8c, 0xec, 0x53, 0x92, 0x79, 0x15, + 0x3f, 0x95, 0x90, 0x28, 0x6f, 0x40, 0x1a, 0x22, 0xcd, 0x12, 0xdb, 0xfe, + 0xe9, 0xbe, 0x94, 0xef, 0x28, 0x83, 0xd4, 0xd2, 0xc9, 0x1b, 0x79, 0x6c, + 0x77, 0x1e, 0x29, 0x5c, 0x2c, 0x47, 0x04, 0x27, 0xc8, 0x4f, 0xa5, 0x0d, + 0x17, 0x15, 0x2c, 0x6b, 0x27, 0x96, 0xbf, 0x37, 0x07, 0x9a, 0x3c, 0xb7, + 0xf6, 0xfc, 0xaa, 0x9e, 0xe0, 0xb6, 0x29, 0x49, 0x07, 0x06, 0xab, 0xc7, + 0x10, 0x10, 0x8c, 0x56, 0x9b, 0xc6, 0xfb, 0x4e, 0x40, 0xa8, 0x55, 0x31, + 0x1a, 0xe1, 0x78, 0xc7, 0xad, 0x09, 0xe8, 0x23, 0x39, 0xe2, 0xc5, 0x43, + 0x3c, 0x63, 0xca, 0x73, 0xed, 0x5a, 0x52, 0x0d, 0xbf, 0xc0, 0x7f, 0x0e, + 0x6a, 0xbc, 0xb1, 0x86, 0x8d, 0x80, 0x18, 0xcf, 0xad, 0x5a, 0x61, 0x62, + 0x89, 0x4f, 0x94, 0x54, 0x78, 0x20, 0xe0, 0x1c, 0x56, 0x93, 0x5b, 0x61, + 0x7a, 0xd4, 0x4d, 0x6d, 0xc7, 0xad, 0x35, 0x21, 0x58, 0xa2, 0x1b, 0xe7, + 0x39, 0xe7, 0x8a, 0x8d, 0x80, 0x3d, 0xb0, 0x6a, 0xd7, 0x95, 0x89, 0x1b, + 0x8e, 0xd5, 0x19, 0x5c, 0x0e, 0x05, 0x5d, 0xc4, 0x55, 0x91, 0x33, 0x8e, + 0xfc, 0xd3, 0x71, 0xda, 0xa5, 0x2b, 0x97, 0x06, 0x86, 0x53, 0x9a, 0xab, + 0x88, 0xaa, 0x63, 0xf9, 0xff, 0x00, 0x0a, 0x63, 0xc2, 0x1a, 0xad, 0xed, + 0x04, 0xfb, 0xd3, 0x4a, 0x80, 0x7e, 0x95, 0x5c, 0xc1, 0x63, 0x3a, 0x4b, + 0x54, 0x74, 0xda, 0x40, 0x6f, 0x63, 0x59, 0x37, 0x7a, 0x46, 0x18, 0x98, + 0xc7, 0xe0, 0x6b, 0xa0, 0x64, 0xca, 0x9a, 0x8c, 0x20, 0x27, 0x9e, 0x6b, + 0x68, 0x54, 0x71, 0xd8, 0xcd, 0xc5, 0x3d, 0xce, 0x3e, 0x58, 0x5e, 0x16, + 0xc1, 0x05, 0x4d, 0x3a, 0x2b, 0xbe, 0x36, 0x4a, 0x33, 0xef, 0x5d, 0x2d, + 0xe5, 0x92, 0x4e, 0xb8, 0xc6, 0x7f, 0x9d, 0x61, 0xde, 0xe9, 0x6d, 0x1a, + 0x96, 0x5e, 0x40, 0xfd, 0x2b, 0xbe, 0x15, 0x63, 0x3d, 0x19, 0xcd, 0x28, + 0x38, 0x6b, 0x12, 0xbc, 0xb1, 0x60, 0x6f, 0x8c, 0xe4, 0x53, 0x12, 0x7d, + 0x8c, 0x32, 0x70, 0x69, 0x89, 0x23, 0xdb, 0x9c, 0x1e, 0x9e, 0xf5, 0x2b, + 0xa2, 0xdc, 0x0c, 0xa7, 0x0d, 0xdc, 0x56, 0xdb, 0x6e, 0x67, 0xbe, 0xab, + 0x72, 0x47, 0x88, 0x5c, 0x2e, 0xe5, 0xe0, 0xd4, 0x71, 0x5c, 0x14, 0x60, + 0x1b, 0x8c, 0x54, 0x09, 0x2b, 0x5b, 0xbf, 0x7a, 0xb2, 0xea, 0xb7, 0x29, + 0xbd, 0x46, 0x1c, 0x75, 0x14, 0x9a, 0xb6, 0x8f, 0x61, 0x5e, 0xfb, 0x6e, + 0x5c, 0xdc, 0xb7, 0x90, 0x95, 0xfe, 0x21, 0xd0, 0xd5, 0x28, 0xe4, 0x92, + 0x19, 0x1d, 0x0f, 0x5f, 0x43, 0x4c, 0x82, 0xe8, 0xc4, 0xe0, 0x77, 0x15, + 0x6a, 0xed, 0x04, 0xf1, 0x89, 0xa3, 0xfb, 0xc3, 0xa8, 0xa8, 0x4b, 0x95, + 0xd9, 0xec, 0xcd, 0x39, 0xb9, 0x95, 0xd6, 0xe4, 0x80, 0x99, 0x50, 0x86, + 0x3c, 0xd5, 0x6b, 0x72, 0x51, 0x8a, 0x93, 0xc5, 0x10, 0xcc, 0xcb, 0x82, + 0x73, 0x8e, 0xf4, 0x93, 0xaf, 0xef, 0x83, 0x2f, 0x43, 0x42, 0x56, 0xd0, + 0x1b, 0xba, 0xb9, 0xa7, 0x68, 0xc1, 0x83, 0x20, 0xe9, 0x54, 0x40, 0x11, + 0xbb, 0x26, 0x71, 0x83, 0x4b, 0x6e, 0xed, 0x0c, 0xa0, 0x8e, 0xfd, 0x73, + 0x49, 0x71, 0x19, 0x7b, 0x92, 0x54, 0x8c, 0x75, 0x35, 0x09, 0x59, 0xb2, + 0xdc, 0xaf, 0x14, 0x74, 0xb6, 0xbe, 0x09, 0xd4, 0x2e, 0x5f, 0x62, 0x44, + 0x85, 0xbd, 0xda, 0xaa, 0x6a, 0xde, 0x09, 0xd5, 0xac, 0x67, 0x28, 0xd0, + 0xa7, 0xdd, 0x0d, 0xc1, 0xcf, 0x7c, 0x57, 0xa1, 0xf8, 0x7d, 0x98, 0x5d, + 0x20, 0x2c, 0x4e, 0x47, 0x73, 0x47, 0x8d, 0x83, 0x0b, 0x2d, 0xe1, 0x88, + 0x65, 0x07, 0x04, 0x1e, 0x71, 0x91, 0x5d, 0xaa, 0x8a, 0x5a, 0xdc, 0xe2, + 0x75, 0x9b, 0xd2, 0xc7, 0x9d, 0x5a, 0xf8, 0x53, 0x50, 0x60, 0xe1, 0xe1, + 0x50, 0x50, 0x90, 0x72, 0x6a, 0xbb, 0x69, 0xf2, 0x46, 0xe6, 0x36, 0x03, + 0x3f, 0x5a, 0xef, 0x8c, 0xa6, 0x5d, 0x12, 0xdf, 0x69, 0x21, 0x8a, 0x9d, + 0xc7, 0xbe, 0x6b, 0x8c, 0x90, 0xec, 0xb8, 0x91, 0xdc, 0xe4, 0x2f, 0xbd, + 0x65, 0x3a, 0x5d, 0x53, 0x37, 0xa7, 0x53, 0x9b, 0x46, 0x8a, 0x52, 0x58, + 0x3a, 0x70, 0x53, 0x9a, 0x89, 0xac, 0x5f, 0x39, 0x28, 0x49, 0xa7, 0x5c, + 0xdc, 0x3b, 0xb0, 0xdb, 0x21, 0xc9, 0x3c, 0x53, 0x6e, 0x2f, 0x1e, 0x25, + 0x01, 0x5f, 0xe6, 0x03, 0x9a, 0xe7, 0x70, 0x9a, 0x6a, 0xc7, 0x45, 0xe0, + 0xd1, 0x5e, 0x4b, 0x67, 0x0c, 0x7e, 0x53, 0x93, 0x42, 0xc0, 0x62, 0xc9, + 0x1c, 0x13, 0x4f, 0x8a, 0xf2, 0x61, 0x19, 0x79, 0x18, 0x64, 0xf4, 0x14, + 0xd8, 0x75, 0x49, 0x24, 0x90, 0xae, 0xc0, 0x54, 0x75, 0x34, 0xed, 0x3d, + 0x48, 0xf7, 0x6e, 0x57, 0x9a, 0x03, 0x26, 0x41, 0xea, 0x7b, 0x9a, 0x53, + 0x94, 0x8c, 0x22, 0xfc, 0xa3, 0xda, 0xa5, 0x9b, 0x52, 0x88, 0xb9, 0x1b, + 0x33, 0xee, 0x29, 0xca, 0xbe, 0x72, 0x6e, 0xf2, 0xc8, 0x15, 0x57, 0x69, + 0x2e, 0x64, 0x45, 0x95, 0xfd, 0xd6, 0x67, 0xf9, 0x43, 0xcc, 0xdc, 0xc4, + 0xe2, 0x96, 0x49, 0x98, 0xa8, 0x55, 0x1b, 0x45, 0x5a, 0x78, 0xb8, 0xe8, + 0x69, 0xf6, 0xb6, 0x86, 0x49, 0x43, 0x63, 0xe5, 0x07, 0x9c, 0xd5, 0xf3, + 0x2d, 0xd9, 0x1c, 0xaf, 0x64, 0x25, 0x8e, 0x96, 0xd2, 0xe0, 0xb0, 0xe3, + 0xd4, 0xd6, 0xf5, 0xb5, 0x8c, 0x70, 0x00, 0x40, 0xc1, 0xf5, 0xa5, 0x88, + 0xed, 0xc0, 0x51, 0xf8, 0xd5, 0xb8, 0xe2, 0x2c, 0x2b, 0x82, 0xa5, 0x49, + 0x4b, 0x73, 0xaa, 0x30, 0x51, 0x5a, 0x0b, 0x0f, 0x2c, 0x00, 0xe0, 0x54, + 0xe6, 0x3c, 0x0e, 0x29, 0xb1, 0x46, 0x23, 0x6c, 0x9a, 0x95, 0x43, 0xb3, + 0x73, 0xc0, 0xae, 0x66, 0xcd, 0x52, 0x1e, 0x10, 0x05, 0x00, 0xf1, 0x48, + 0xb0, 0x0e, 0x71, 0xeb, 0x56, 0x92, 0xd4, 0xb0, 0xcf, 0x5a, 0xb5, 0x6f, + 0x62, 0xcc, 0x38, 0x5e, 0x73, 0x58, 0xb9, 0xa4, 0x6a, 0xa0, 0xd9, 0x4a, + 0x3b, 0x73, 0xb5, 0xb8, 0xe9, 0x56, 0xa3, 0xb1, 0x67, 0x3d, 0x3a, 0xd6, + 0xb4, 0x16, 0x03, 0x61, 0x0c, 0x39, 0x3d, 0x85, 0x68, 0xc1, 0x62, 0x73, + 0xf2, 0xc6, 0x7f, 0x11, 0x5c, 0xf2, 0xaf, 0xd8, 0xde, 0x34, 0x4c, 0x31, + 0xa5, 0xb0, 0x45, 0x38, 0xef, 0x57, 0x61, 0xd2, 0xc0, 0xeb, 0x5b, 0xa3, + 0x4b, 0x77, 0x41, 0x9e, 0x39, 0xed, 0x56, 0xe0, 0xd1, 0x81, 0xc1, 0x20, + 0x93, 0xef, 0x5c, 0xb2, 0xac, 0xdf, 0x53, 0xa2, 0x34, 0xd2, 0xe8, 0x61, + 0x7d, 0x82, 0x31, 0x19, 0x18, 0xdc, 0x7d, 0x05, 0x5e, 0x86, 0xcb, 0x23, + 0xe5, 0x88, 0x9f, 0xc2, 0xba, 0x18, 0xb4, 0x85, 0x48, 0x98, 0xed, 0xc7, + 0x15, 0x7a, 0x0d, 0x2c, 0x90, 0xbc, 0x71, 0xde, 0xb0, 0x73, 0xb9, 0xaa, + 0x81, 0xcb, 0x2e, 0x9f, 0x21, 0x23, 0x08, 0xa2, 0x95, 0x34, 0xb7, 0x2e, + 0xe0, 0xfa, 0xf4, 0xc5, 0x76, 0x49, 0xa5, 0xe0, 0xf4, 0xa6, 0xae, 0x9d, + 0xfb, 0xe9, 0x46, 0x3a, 0x63, 0xf9, 0x56, 0x7c, 0xe5, 0x72, 0x1c, 0x9a, + 0xe8, 0xe7, 0x1c, 0xe6, 0x9b, 0x36, 0x93, 0xb6, 0x36, 0x3b, 0x7a, 0x0a, + 0xec, 0x3f, 0xb3, 0xf3, 0xd0, 0x53, 0x6e, 0x34, 0xcc, 0x5b, 0xbf, 0xcb, + 0xfc, 0x26, 0x9a, 0x98, 0x9c, 0x51, 0xc7, 0x0d, 0x38, 0x79, 0x4b, 0x85, + 0x19, 0xc7, 0xa5, 0x35, 0xec, 0x46, 0x3e, 0xed, 0x75, 0x91, 0xe9, 0x64, + 0xc1, 0x19, 0x03, 0xb5, 0x32, 0x5d, 0x2f, 0xda, 0xb5, 0x8c, 0xcc, 0xdc, + 0x4e, 0x2e, 0xfa, 0xc0, 0x0b, 0x76, 0xc2, 0xf7, 0xeb, 0x51, 0xb5, 0x80, + 0x23, 0xa5, 0x75, 0x5a, 0xa6, 0x98, 0x12, 0xd1, 0x8f, 0x7e, 0x2a, 0x33, + 0xa6, 0x61, 0x79, 0x15, 0xba, 0x96, 0x87, 0x33, 0x8e, 0xa7, 0x28, 0xd6, + 0x38, 0xed, 0x54, 0xef, 0x6d, 0x71, 0x18, 0xe3, 0x82, 0xc2, 0xba, 0xe9, + 0xac, 0x00, 0x3c, 0x0a, 0xc8, 0xd4, 0xad, 0x4a, 0xc6, 0xb9, 0xfe, 0xf8, + 0xaa, 0x8c, 0xb5, 0x21, 0xa3, 0x9a, 0xb8, 0xb6, 0x20, 0x9a, 0xa6, 0xd1, + 0x60, 0xd7, 0x4d, 0x71, 0x63, 0xb8, 0xe6, 0xa8, 0x4b, 0xa7, 0x91, 0xce, + 0x2b, 0x55, 0x32, 0x2c, 0x60, 0xcc, 0x80, 0x32, 0x71, 0xde, 0x99, 0x24, + 0x75, 0x7e, 0xfa, 0xd4, 0xc6, 0xd1, 0x7f, 0xbd, 0x51, 0x49, 0x19, 0x07, + 0xa5, 0x6c, 0xa4, 0x4b, 0x46, 0x7b, 0x21, 0xf5, 0xaa, 0xd2, 0x29, 0xdf, + 0x8c, 0x9e, 0x95, 0xa0, 0xe9, 0x55, 0x26, 0x5f, 0xde, 0x0e, 0x3b, 0x56, + 0xd1, 0x64, 0x34, 0x54, 0x70, 0x40, 0xe9, 0x50, 0x31, 0xe0, 0xe4, 0x55, + 0xc6, 0x5a, 0xaf, 0x22, 0x71, 0x5b, 0xc5, 0x93, 0x62, 0xbe, 0x17, 0x60, + 0xa8, 0xcf, 0x3f, 0x87, 0x4a, 0x98, 0x81, 0xb3, 0x15, 0x0b, 0x2f, 0x15, + 0xba, 0x33, 0x92, 0xd0, 0x92, 0x0e, 0x5c, 0xf6, 0xab, 0xaa, 0xdb, 0x47, + 0x15, 0x4a, 0x11, 0x56, 0x90, 0xe4, 0x7f, 0x8d, 0x29, 0x19, 0xad, 0x8b, + 0x08, 0xdd, 0x3d, 0x3d, 0x6a, 0x51, 0xcf, 0xe7, 0xc5, 0x47, 0x10, 0xe3, + 0xfa, 0xd5, 0xb8, 0xe2, 0xdf, 0xd4, 0xfe, 0x35, 0x9d, 0xec, 0x0c, 0x97, + 0x80, 0x83, 0xe9, 0x5a, 0xfa, 0x7b, 0x2c, 0x70, 0x21, 0x23, 0xad, 0x66, + 0x8b, 0x5c, 0x28, 0x2c, 0xdf, 0x85, 0x5e, 0xb7, 0x19, 0x89, 0x54, 0x1e, + 0x05, 0x64, 0xc6, 0x9d, 0x8d, 0x24, 0x3b, 0xb9, 0x51, 0x81, 0xeb, 0x4a, + 0xbf, 0x30, 0x3c, 0xd4, 0x31, 0xee, 0xe0, 0x03, 0xc5, 0x58, 0x8a, 0x32, + 0x33, 0xc6, 0x69, 0x25, 0xd4, 0x96, 0xcf, 0xa6, 0x35, 0xab, 0x36, 0xba, + 0xfd, 0x99, 0x6c, 0xa6, 0x82, 0x4c, 0x6d, 0x8d, 0x14, 0xed, 0x3c, 0x9e, + 0x48, 0x3f, 0x95, 0x7c, 0xd9, 0xf0, 0xcd, 0x6e, 0xe2, 0xf1, 0xd6, 0x8e, + 0xd6, 0x11, 0x79, 0xd7, 0x82, 0xea, 0x3f, 0x2a, 0x32, 0x33, 0xb9, 0xb7, + 0x0c, 0x71, 0x5f, 0x55, 0xfc, 0x2e, 0xb4, 0xd4, 0x75, 0x8f, 0xd9, 0xee, + 0xfc, 0xc5, 0x6e, 0x97, 0x36, 0x36, 0xc2, 0x48, 0xcc, 0x0e, 0x3e, 0x6c, + 0x9e, 0x4b, 0x03, 0xfd, 0x2b, 0xe6, 0x0f, 0x87, 0x57, 0x29, 0xa5, 0x78, + 0xff, 0x00, 0x4a, 0xb8, 0x6c, 0xa2, 0xc3, 0x76, 0x8c, 0x78, 0xce, 0x00, + 0x6f, 0x4a, 0xed, 0x83, 0xbd, 0x36, 0x61, 0x59, 0x25, 0x55, 0x37, 0xa5, + 0xcf, 0xdc, 0xff, 0x00, 0x08, 0x7f, 0x68, 0x5e, 0x78, 0x67, 0x4f, 0x93, + 0x54, 0x81, 0x6d, 0xb5, 0x16, 0xb7, 0x41, 0x3c, 0x49, 0x8c, 0x06, 0xc7, + 0x38, 0xc1, 0x22, 0xba, 0x48, 0x97, 0x69, 0x5d, 0xd1, 0xf4, 0x20, 0x82, + 0x2b, 0x0f, 0xc2, 0xfa, 0xa4, 0x5a, 0xd7, 0x87, 0xf4, 0xeb, 0xdb, 0x29, + 0x4c, 0x96, 0xd3, 0xdb, 0xa4, 0x91, 0xbe, 0xdd, 0xa4, 0x82, 0xbe, 0x86, + 0xb5, 0xe2, 0x84, 0xcb, 0x30, 0xcb, 0x71, 0x91, 0x5b, 0xd3, 0xd9, 0x5b, + 0x50, 0xba, 0x71, 0x56, 0x77, 0x5d, 0xcf, 0x94, 0x3f, 0xe0, 0xa3, 0xd3, + 0x98, 0xbe, 0x11, 0xe8, 0xea, 0x50, 0xff, 0x00, 0xc8, 0x5e, 0x31, 0x9e, + 0xdf, 0xea, 0x65, 0xaf, 0xcf, 0xaf, 0x00, 0xd8, 0xff, 0x00, 0x69, 0xf8, + 0x9f, 0x4f, 0xb6, 0x47, 0xd8, 0xf3, 0x4e, 0xaa, 0x1f, 0xd3, 0x26, 0xbf, + 0x43, 0xff, 0x00, 0xe0, 0xa3, 0x91, 0x79, 0xff, 0x00, 0x07, 0x34, 0xa3, + 0xdf, 0xfb, 0x5e, 0x33, 0xff, 0x00, 0x90, 0xa5, 0xaf, 0xce, 0xff, 0x00, + 0x01, 0xdd, 0x3e, 0x97, 0xe2, 0x5b, 0x0b, 0xad, 0xa5, 0xfc, 0x99, 0x95, + 0xf0, 0x3b, 0xe0, 0xd7, 0xbb, 0x55, 0xbb, 0xaf, 0x43, 0xc6, 0x8a, 0x5c, + 0xda, 0xf7, 0x3f, 0x6a, 0x3c, 0x37, 0xa4, 0x9d, 0x2b, 0x46, 0xd3, 0x6d, + 0xfc, 0xe3, 0x3b, 0x5b, 0x5a, 0xa4, 0x3e, 0x63, 0x0c, 0x17, 0xc2, 0x81, + 0xb8, 0xfb, 0x9c, 0x66, 0xb5, 0x18, 0xe0, 0xae, 0x46, 0x39, 0xac, 0xaf, + 0x0b, 0xea, 0xe7, 0x5a, 0xd0, 0xb4, 0xab, 0xc4, 0x88, 0xc4, 0x97, 0x76, + 0xa9, 0x70, 0xa1, 0xcf, 0x2a, 0x19, 0x41, 0x00, 0xfb, 0xf3, 0xfa, 0x56, + 0xbb, 0x46, 0xd9, 0x5c, 0xb7, 0x7e, 0xc2, 0xb7, 0x6f, 0x52, 0xec, 0x3c, + 0x73, 0x4b, 0xb3, 0x34, 0xa2, 0x11, 0x81, 0xc9, 0x18, 0xf4, 0xef, 0x46, + 0xdc, 0x75, 0xc9, 0x15, 0x95, 0xca, 0x22, 0x92, 0x26, 0xde, 0x84, 0x37, + 0x4f, 0xe1, 0x34, 0xfb, 0x61, 0xb6, 0x04, 0xfa, 0x50, 0xe5, 0x37, 0x28, + 0xea, 0x4f, 0xad, 0x32, 0x08, 0x53, 0xca, 0x5f, 0x97, 0xf0, 0xa7, 0xd3, + 0x51, 0x12, 0xce, 0x47, 0x92, 0xfc, 0xf6, 0xa6, 0x22, 0xe5, 0xf7, 0x13, + 0x8f, 0x94, 0x0c, 0x03, 0x44, 0xb0, 0x47, 0xe5, 0x3f, 0xca, 0x3a, 0x1a, + 0x54, 0x2b, 0xe6, 0x15, 0x27, 0xe6, 0xda, 0x0e, 0x28, 0xe9, 0xa0, 0x0f, + 0x03, 0x1e, 0xd4, 0x71, 0xeb, 0x4e, 0xdb, 0x9e, 0xd4, 0x2a, 0x05, 0x39, + 0x03, 0x9a, 0x9b, 0x8c, 0x60, 0xc9, 0x7f, 0x4e, 0x29, 0xfb, 0x01, 0xea, + 0x33, 0xf5, 0xa4, 0x11, 0xae, 0xe3, 0xc6, 0x29, 0x24, 0x46, 0x21, 0x76, + 0x12, 0x39, 0xe7, 0xe9, 0x46, 0xe2, 0x3e, 0x01, 0xff, 0x00, 0x82, 0x88, + 0x69, 0x36, 0xd1, 0x78, 0xd7, 0x47, 0xba, 0x48, 0xd1, 0x26, 0x9e, 0xcc, + 0x89, 0x19, 0x57, 0x05, 0xb6, 0xb6, 0x06, 0x7d, 0x78, 0xe2, 0xbe, 0x71, + 0xf8, 0x1b, 0x6c, 0x5f, 0xe2, 0xb7, 0x85, 0x31, 0xc0, 0x1a, 0xa5, 0xb1, + 0xff, 0x00, 0xc8, 0xab, 0x5f, 0x42, 0x7e, 0xdf, 0x96, 0x7a, 0xb0, 0xf8, + 0x91, 0x6c, 0xf7, 0x8c, 0xaf, 0xa7, 0xbd, 0xa2, 0xfd, 0x88, 0x2f, 0xf0, + 0xaf, 0xf1, 0x03, 0xef, 0xbb, 0x27, 0xe8, 0x45, 0x78, 0x5f, 0xc0, 0xc0, + 0x22, 0xf8, 0xa9, 0xe1, 0x5c, 0xf0, 0x3f, 0xb5, 0x2d, 0xb9, 0x3f, 0xf5, + 0xd1, 0x69, 0x53, 0x7f, 0xbc, 0x5e, 0xa2, 0xc4, 0xec, 0xfd, 0x3f, 0x43, + 0xf5, 0xe2, 0xda, 0x22, 0x2d, 0xe2, 0xe7, 0x3f, 0x28, 0xfe, 0x54, 0xe7, + 0x75, 0x8a, 0x36, 0x77, 0xe1, 0x57, 0xe6, 0x3f, 0x85, 0x3a, 0xd9, 0x81, + 0xb7, 0x8c, 0x8e, 0x78, 0x1c, 0xd1, 0x24, 0x42, 0x64, 0x21, 0x80, 0x23, + 0xa1, 0x1e, 0xa2, 0x95, 0x4f, 0x33, 0x4a, 0x67, 0x23, 0xf1, 0x27, 0x4b, + 0xd3, 0x3c, 0x47, 0xe0, 0x8d, 0x62, 0xd3, 0x50, 0x43, 0x71, 0x67, 0x25, + 0xa4, 0x8c, 0xf1, 0xee, 0x64, 0xce, 0x17, 0x70, 0xe4, 0x7e, 0x15, 0xf8, + 0x1b, 0xe3, 0x1b, 0x78, 0xe0, 0xf1, 0x26, 0xa1, 0x1c, 0x43, 0x11, 0xad, + 0xc3, 0xaa, 0x8e, 0xb8, 0x1b, 0x8e, 0x2b, 0xf7, 0xb3, 0xe2, 0xd9, 0xd5, + 0xe3, 0xf8, 0x79, 0xad, 0x8f, 0x0f, 0x44, 0xcf, 0xaa, 0x7d, 0x92, 0x45, + 0x88, 0x46, 0x54, 0x10, 0x31, 0xc9, 0x19, 0xe3, 0x81, 0x5f, 0x83, 0x3e, + 0x2d, 0x49, 0x7f, 0xe1, 0x21, 0xbd, 0xfb, 0x40, 0x3e, 0x77, 0x9e, 0xde, + 0x66, 0x7d, 0x77, 0x73, 0x5e, 0x7c, 0xac, 0x9e, 0x88, 0xa9, 0x3b, 0xab, + 0x35, 0xf3, 0x3d, 0x5e, 0xd2, 0x28, 0x34, 0xcf, 0x85, 0xaf, 0x11, 0x97, + 0xf7, 0x92, 0xc3, 0x91, 0xc7, 0x19, 0x38, 0xc8, 0xcd, 0x79, 0x3c, 0xab, + 0xb4, 0x57, 0xbd, 0x78, 0x8a, 0xca, 0xd0, 0xfc, 0x12, 0xb7, 0x8e, 0xd5, + 0x00, 0x94, 0x3c, 0x64, 0x81, 0xc9, 0x3e, 0xa6, 0xb8, 0x0f, 0x0c, 0xfc, + 0x20, 0xd7, 0xbc, 0x52, 0x89, 0x34, 0x56, 0xe6, 0x0b, 0x63, 0xcf, 0x9b, + 0x28, 0xc0, 0x23, 0xd4, 0x7a, 0xd7, 0x91, 0x51, 0x37, 0x2d, 0x0f, 0x56, + 0x1a, 0x45, 0x1e, 0x7d, 0x24, 0x80, 0x0d, 0xb8, 0xcd, 0x53, 0x76, 0xf9, + 0xf1, 0x5d, 0x27, 0x8c, 0xbc, 0x38, 0x7c, 0x2b, 0xaf, 0x5c, 0x69, 0xcd, + 0x2f, 0x9a, 0xd1, 0x70, 0x5b, 0x6e, 0x32, 0x6b, 0x9c, 0x72, 0xc0, 0x9c, + 0xad, 0x72, 0xb5, 0x66, 0x75, 0xc5, 0x98, 0xb7, 0x8c, 0x3e, 0xd4, 0xf9, + 0xe9, 0x9e, 0xb5, 0x5e, 0xe0, 0x16, 0x51, 0xb6, 0xa6, 0xbe, 0x38, 0xba, + 0x6c, 0xf1, 0x50, 0xcb, 0x26, 0xd0, 0xa4, 0x7a, 0x57, 0x4a, 0xe8, 0x45, + 0xf7, 0x23, 0x0a, 0x40, 0xe0, 0xf3, 0x4c, 0x00, 0x8c, 0x8c, 0xd4, 0x9e, + 0x61, 0x3d, 0x29, 0x84, 0x13, 0xce, 0x3f, 0x2a, 0x7a, 0x94, 0x0a, 0xc0, + 0x8e, 0xb8, 0x35, 0x5e, 0x53, 0x93, 0x93, 0xdb, 0xd2, 0xa5, 0x23, 0x04, + 0x76, 0xcd, 0x45, 0x32, 0x72, 0x39, 0xcd, 0x34, 0x0c, 0x58, 0x9b, 0x91, + 0xc7, 0xe7, 0x56, 0x39, 0x23, 0xad, 0x41, 0x12, 0x93, 0x56, 0x15, 0x78, + 0xce, 0x69, 0x48, 0x10, 0xf8, 0xa3, 0x24, 0x0e, 0x2a, 0xe4, 0x68, 0x02, + 0xd5, 0x78, 0x79, 0x19, 0x15, 0x6e, 0x35, 0xe2, 0xb0, 0x93, 0x2d, 0x22, + 0x4d, 0x98, 0xd9, 0xeb, 0x9a, 0xb6, 0x8b, 0xd3, 0x8a, 0xaa, 0xff, 0x00, + 0x2e, 0xd0, 0x3d, 0x6a, 0xe4, 0x6b, 0xeb, 0x5c, 0xd2, 0x2d, 0x13, 0xc5, + 0x17, 0x4e, 0xf5, 0x2f, 0x97, 0x87, 0x4f, 0xad, 0x36, 0x12, 0xb9, 0xea, + 0x2a, 0xd6, 0xe5, 0xca, 0x1d, 0xc3, 0x83, 0x58, 0xbd, 0xcb, 0x24, 0x54, + 0xf5, 0xa9, 0x91, 0x3d, 0xa8, 0x0e, 0xa3, 0xbd, 0x48, 0x92, 0xa7, 0x7c, + 0x9a, 0xcc, 0x63, 0x64, 0x4f, 0xdd, 0x8f, 0xa8, 0xab, 0x6b, 0x15, 0x43, + 0x24, 0xa8, 0xea, 0x31, 0x91, 0x82, 0x3b, 0x55, 0xc0, 0xc3, 0x03, 0x83, + 0x4f, 0xa0, 0x88, 0xc4, 0x54, 0x92, 0x43, 0x98, 0x98, 0x63, 0xb5, 0x58, + 0x12, 0x26, 0x7e, 0xe9, 0xa5, 0x91, 0xd7, 0xcb, 0x3f, 0x29, 0xfc, 0x68, + 0xb0, 0xc8, 0x60, 0x84, 0x18, 0x93, 0x8e, 0xd4, 0xe3, 0x07, 0x15, 0x6a, + 0x06, 0x8c, 0x46, 0xbe, 0x80, 0x75, 0xc5, 0x4a, 0xb2, 0x41, 0xdd, 0x80, + 0xfa, 0xd5, 0xee, 0x23, 0x39, 0xad, 0xf8, 0x39, 0xe9, 0x8a, 0x81, 0x61, + 0xfd, 0xc2, 0x71, 0xda, 0xb6, 0x64, 0x30, 0x94, 0x6c, 0x30, 0x27, 0x15, + 0x4b, 0xca, 0x02, 0x35, 0x19, 0xe8, 0x39, 0x14, 0xad, 0xa0, 0x14, 0x3e, + 0xce, 0x18, 0x1e, 0x2a, 0x1b, 0x98, 0x00, 0x89, 0x80, 0x1f, 0x4a, 0xd2, + 0xf2, 0x72, 0x0e, 0x2a, 0x1b, 0x88, 0x48, 0x4e, 0x47, 0x14, 0x20, 0x33, + 0xe4, 0xb6, 0xc8, 0xe9, 0x55, 0xde, 0x06, 0x15, 0xac, 0xc9, 0xd8, 0x8a, + 0x6b, 0x43, 0xed, 0x51, 0x7b, 0x0c, 0xc2, 0x68, 0xc8, 0x95, 0xb8, 0xc9, + 0xc5, 0x42, 0xe9, 0x81, 0xca, 0x9a, 0xd7, 0x78, 0x71, 0x33, 0xf1, 0xda, + 0xab, 0xc9, 0x06, 0x46, 0x7f, 0x4a, 0xd3, 0x98, 0x9b, 0x19, 0x2e, 0x83, + 0x78, 0xc5, 0x35, 0xd3, 0x8c, 0x62, 0xb4, 0x92, 0xcc, 0x34, 0x98, 0xc6, + 0x78, 0xa8, 0x25, 0xb5, 0xda, 0x4e, 0x32, 0x2a, 0xf9, 0x90, 0x58, 0xa0, + 0x13, 0xe6, 0x23, 0xda, 0xa2, 0x68, 0xf0, 0xd9, 0xef, 0x57, 0x7c, 0xa2, + 0x0f, 0x3e, 0x9d, 0xaa, 0x32, 0x83, 0xe9, 0x56, 0xa4, 0x2b, 0x14, 0x1b, + 0x70, 0x5e, 0x9d, 0x69, 0x98, 0xcf, 0x38, 0xab, 0x1b, 0x41, 0xc5, 0x33, + 0x67, 0x27, 0xe9, 0x57, 0x72, 0x0a, 0xcc, 0x39, 0x27, 0xbd, 0x46, 0xd1, + 0xf9, 0x80, 0x82, 0x06, 0x6a, 0xc3, 0xa1, 0xc5, 0x35, 0x54, 0xee, 0xad, + 0x13, 0x25, 0xa3, 0x1e, 0xff, 0x00, 0x4a, 0x59, 0x00, 0x2b, 0x80, 0xdf, + 0xce, 0xb0, 0x66, 0x8a, 0x4b, 0x59, 0x71, 0xf7, 0x4d, 0x76, 0x73, 0x28, + 0x18, 0x02, 0xb1, 0xb5, 0x4b, 0x06, 0x9c, 0x2b, 0x27, 0x50, 0x79, 0x15, + 0xdd, 0x46, 0xab, 0x4e, 0xcf, 0x63, 0x9a, 0xa5, 0x3b, 0xea, 0xb7, 0x31, + 0xa5, 0x61, 0x70, 0x9c, 0x8c, 0x3f, 0xa8, 0xa2, 0x15, 0x68, 0xce, 0x47, + 0x5f, 0x4a, 0x9d, 0xad, 0x4a, 0x00, 0x4e, 0x40, 0xa4, 0x49, 0x22, 0xdf, + 0x83, 0xc9, 0x3e, 0xb5, 0xd7, 0x7d, 0x34, 0x30, 0xe5, 0xd6, 0xef, 0x71, + 0x0c, 0x45, 0xdc, 0x31, 0x1c, 0xd4, 0xf1, 0x46, 0xc3, 0x8e, 0x80, 0xf6, + 0x14, 0xc6, 0xba, 0x11, 0x3e, 0xd3, 0x1e, 0x07, 0xad, 0x4d, 0x2d, 0xd3, + 0x2c, 0x61, 0xe3, 0x00, 0xad, 0x66, 0xf9, 0x99, 0x69, 0x21, 0xab, 0x6a, + 0xdd, 0x36, 0x9c, 0x53, 0xfe, 0xc8, 0x48, 0xe1, 0x4f, 0xd6, 0x88, 0xae, + 0x9a, 0x65, 0x23, 0x76, 0x1b, 0xa8, 0x34, 0xc5, 0xb8, 0x70, 0x41, 0x67, + 0x3d, 0x79, 0xa5, 0x69, 0x32, 0xfd, 0xd2, 0x75, 0xb6, 0x63, 0xdb, 0xa5, + 0x4d, 0x05, 0x8c, 0x97, 0x12, 0x04, 0x45, 0x1b, 0x8d, 0x40, 0xec, 0xdc, + 0xe1, 0xce, 0x3a, 0xf5, 0xab, 0xda, 0x23, 0x99, 0x06, 0x41, 0x39, 0x56, + 0xf5, 0xaa, 0x8d, 0x37, 0x2b, 0x6a, 0x27, 0x28, 0xc5, 0x3b, 0x23, 0x4f, + 0xc1, 0xbe, 0x2a, 0x9e, 0x5f, 0x13, 0x59, 0x5b, 0x4a, 0xb8, 0x57, 0x93, + 0xcb, 0x27, 0x35, 0x6b, 0xc6, 0x3e, 0x25, 0xb8, 0x5d, 0x6e, 0xfa, 0xd4, + 0x2e, 0x62, 0x8a, 0x42, 0x83, 0xdc, 0x71, 0x58, 0xd0, 0xf8, 0x4f, 0x50, + 0x6b, 0xc8, 0x96, 0xc8, 0x79, 0xb7, 0x00, 0x09, 0x09, 0x8d, 0xb9, 0x56, + 0xff, 0x00, 0x1a, 0xbc, 0xfe, 0x0e, 0xd5, 0xbc, 0xd9, 0x63, 0xb9, 0x89, + 0xcd, 0xd0, 0xfd, 0xeb, 0x6e, 0x39, 0x38, 0xf5, 0x35, 0xbc, 0xaa, 0xbb, + 0x5e, 0xc7, 0x22, 0x82, 0x4f, 0x72, 0x2d, 0x67, 0xc4, 0xcf, 0x65, 0x1c, + 0x70, 0x44, 0x9d, 0x89, 0x3f, 0x8d, 0x62, 0x5d, 0xdc, 0xb2, 0x58, 0x46, + 0xef, 0xf7, 0xe6, 0xf9, 0x88, 0xad, 0x6d, 0x63, 0x4a, 0xb8, 0xd5, 0x6e, + 0xe4, 0x68, 0xe2, 0x56, 0x65, 0x5c, 0xb7, 0x97, 0xd0, 0x56, 0x52, 0x69, + 0xcf, 0x73, 0x1c, 0xdb, 0xa4, 0xe6, 0x11, 0xf7, 0x58, 0xf3, 0xf4, 0x15, + 0x9a, 0xab, 0x78, 0xdd, 0x9b, 0x28, 0x72, 0xbd, 0x0a, 0x56, 0xf7, 0x4c, + 0x51, 0xa5, 0x61, 0xc0, 0xe1, 0x6a, 0x15, 0x91, 0xa6, 0x90, 0xb1, 0x38, + 0x8d, 0x7a, 0x9a, 0x9c, 0xdb, 0x98, 0x94, 0x2f, 0x5f, 0x6a, 0x8c, 0xc5, + 0xb5, 0x31, 0x9e, 0xbd, 0x71, 0x4f, 0x99, 0x37, 0x72, 0xb5, 0xb5, 0x88, + 0xa4, 0x99, 0xa7, 0x97, 0x68, 0x18, 0x51, 0xde, 0x89, 0xe6, 0x11, 0x26, + 0xc8, 0xf9, 0xf5, 0x3e, 0xb4, 0xe1, 0x19, 0x45, 0x20, 0x1e, 0xbd, 0xe9, + 0xd0, 0x58, 0xb3, 0xab, 0x36, 0x78, 0x3e, 0xb4, 0xee, 0x91, 0x9d, 0xd8, + 0xed, 0x36, 0xd5, 0x66, 0x93, 0x2c, 0x72, 0x40, 0xce, 0x2b, 0x7a, 0x35, + 0x5c, 0x6d, 0x03, 0x8a, 0xc6, 0xd3, 0x2d, 0x19, 0x2e, 0x5d, 0xb2, 0x71, + 0xd3, 0x9a, 0xdf, 0xb6, 0x8b, 0x70, 0x38, 0xe7, 0x15, 0xcb, 0x59, 0xeb, + 0xb9, 0xbd, 0x2b, 0xd8, 0xa1, 0x73, 0xf2, 0x39, 0x01, 0x46, 0x3b, 0x55, + 0x88, 0x23, 0x25, 0x47, 0x14, 0xeb, 0xab, 0x53, 0x9d, 0xc4, 0x67, 0xbd, + 0x4d, 0x6d, 0xb9, 0x94, 0x05, 0x18, 0x1d, 0xcd, 0x62, 0xe5, 0xee, 0x9a, + 0xa5, 0xa9, 0x2a, 0x46, 0x15, 0xc6, 0x7f, 0x2a, 0xb7, 0x16, 0xe9, 0x0e, + 0x31, 0xb4, 0x52, 0xdb, 0xd9, 0x99, 0x1b, 0x38, 0xe6, 0xb5, 0xac, 0xec, + 0x09, 0x3f, 0x77, 0x35, 0xc5, 0x3a, 0x89, 0x1d, 0x11, 0x83, 0x65, 0x58, + 0x2c, 0xcb, 0x9e, 0x95, 0xa3, 0x0e, 0x9d, 0xea, 0x2b, 0x4e, 0xcf, 0x4c, + 0x2c, 0x3d, 0x07, 0xa0, 0xad, 0x9b, 0x6d, 0x2d, 0x50, 0x64, 0x2f, 0x3e, + 0xf5, 0xe7, 0xce, 0xb9, 0xd7, 0x0a, 0x46, 0x3c, 0x56, 0x0c, 0xcb, 0x85, + 0x4f, 0xc4, 0xf1, 0x5a, 0x96, 0xba, 0x31, 0xda, 0x01, 0x27, 0x9f, 0x4a, + 0xd6, 0xb2, 0xd3, 0xc1, 0x1c, 0xad, 0x6d, 0xd8, 0x69, 0x81, 0x8a, 0x9c, + 0x71, 0x5c, 0x52, 0xaa, 0xd9, 0xd5, 0x18, 0x23, 0x1e, 0xc7, 0x47, 0x58, + 0xc9, 0xc2, 0x73, 0x8a, 0xd5, 0x83, 0x4a, 0x00, 0x03, 0x8a, 0xd5, 0x48, + 0x2d, 0xe0, 0x62, 0xad, 0x22, 0x86, 0xec, 0x33, 0xcd, 0x5a, 0x88, 0x02, + 0x01, 0x8e, 0x26, 0x7f, 0x72, 0x31, 0x59, 0x36, 0xcd, 0x52, 0x46, 0x62, + 0xe9, 0x39, 0x4e, 0x17, 0x27, 0x22, 0xb4, 0x2d, 0xf4, 0x6e, 0x99, 0x15, + 0xa7, 0x6d, 0x69, 0x73, 0x70, 0xac, 0x63, 0x45, 0x8c, 0x28, 0xdc, 0x73, + 0xcf, 0x4a, 0xb9, 0x1d, 0x84, 0xee, 0x70, 0xd2, 0xe0, 0x9f, 0xee, 0x8c, + 0x56, 0x6e, 0xf6, 0xdc, 0xd1, 0x22, 0x81, 0xd2, 0xd1, 0x22, 0x7d, 0xd8, + 0x03, 0x69, 0xe4, 0xd4, 0xb0, 0xc1, 0x6d, 0x0a, 0x80, 0xf2, 0xa8, 0x18, + 0xad, 0x98, 0xf4, 0x15, 0x58, 0x99, 0xdf, 0x74, 0x84, 0x2f, 0x3b, 0x8d, + 0x5e, 0x3a, 0x2c, 0x29, 0x0a, 0xec, 0x89, 0x47, 0x1e, 0x95, 0x69, 0x68, + 0x57, 0x2b, 0x39, 0x73, 0x25, 0xb2, 0xe7, 0x66, 0xe7, 0x3f, 0xec, 0xad, + 0x40, 0xed, 0x8b, 0x87, 0x29, 0x03, 0x30, 0x60, 0xa7, 0x9e, 0x30, 0x71, + 0x5d, 0x40, 0xd2, 0x32, 0xc4, 0xed, 0xe3, 0xd0, 0x54, 0x50, 0xe9, 0x64, + 0xdd, 0x4e, 0x36, 0xf6, 0x5a, 0x49, 0x6e, 0x0d, 0x33, 0x9a, 0x0d, 0x3f, + 0xf0, 0xdb, 0x28, 0xf7, 0x2d, 0x9a, 0x5f, 0x22, 0xee, 0xe0, 0x14, 0x2a, + 0xa1, 0x48, 0xe7, 0x02, 0xba, 0xef, 0xec, 0x80, 0x54, 0x7c, 0xb4, 0xe9, + 0x34, 0xdf, 0x2e, 0x2d, 0xc0, 0x00, 0x00, 0xab, 0x48, 0xcd, 0xc5, 0xd8, + 0xe1, 0x56, 0xc6, 0x7f, 0xb3, 0xc7, 0x99, 0x30, 0x08, 0xe3, 0x02, 0xa0, + 0x97, 0x4f, 0x98, 0x9f, 0xf5, 0xcc, 0x3e, 0x95, 0xd9, 0xa6, 0x9e, 0x1a, + 0xce, 0x12, 0x47, 0xf0, 0x8e, 0x6a, 0xb4, 0x9a, 0x70, 0xcf, 0x4a, 0xb4, + 0x65, 0x28, 0x9c, 0x4d, 0xfe, 0x94, 0x7e, 0xcb, 0x23, 0xb4, 0x8e, 0xc4, + 0x0e, 0x84, 0xd2, 0x49, 0xa4, 0x80, 0xbd, 0x5c, 0xe7, 0xde, 0xba, 0x9d, + 0x5f, 0x4f, 0xc6, 0x9d, 0x2f, 0xe1, 0xfc, 0xe9, 0x2e, 0xac, 0x71, 0x18, + 0x20, 0x67, 0x8a, 0xdb, 0x5b, 0x1c, 0xd6, 0xb3, 0x38, 0x89, 0xf4, 0x8c, + 0x92, 0x46, 0x7f, 0x3a, 0xca, 0xd4, 0x74, 0xc0, 0x91, 0x83, 0x92, 0x7e, + 0x60, 0x39, 0x35, 0xdd, 0xcb, 0x6a, 0x7a, 0x63, 0x83, 0x59, 0x5a, 0xdd, + 0x86, 0xdb, 0x78, 0x9b, 0x00, 0xe5, 0xd7, 0xf9, 0xd5, 0xc6, 0xe6, 0x52, + 0x67, 0x1b, 0x2d, 0x91, 0x52, 0x79, 0x6a, 0xa1, 0x71, 0x6a, 0xc0, 0x70, + 0xc6, 0xba, 0xeb, 0xab, 0x30, 0x09, 0xf9, 0x6b, 0x22, 0xee, 0x0c, 0x67, + 0x8a, 0xa2, 0x4e, 0x42, 0xfe, 0x37, 0x57, 0x8f, 0x27, 0x3f, 0x37, 0x4a, + 0xa3, 0x70, 0x5c, 0x31, 0xe9, 0x5b, 0xba, 0x94, 0x5f, 0x3c, 0x7c, 0x7f, + 0x15, 0x65, 0xde, 0xa0, 0xc9, 0xc0, 0xad, 0xa2, 0xc8, 0x66, 0x44, 0x8e, + 0xc0, 0xf4, 0x07, 0xf1, 0xaa, 0xb2, 0x3e, 0xe9, 0x7a, 0x72, 0x07, 0x6a, + 0xbd, 0x2a, 0xf3, 0x54, 0xdc, 0x7e, 0xf4, 0xfd, 0x2b, 0xae, 0x36, 0x33, + 0x64, 0x0c, 0xe3, 0x07, 0x35, 0x03, 0x32, 0x90, 0x79, 0xed, 0x53, 0xc8, + 0x00, 0x26, 0xab, 0x38, 0xe0, 0xe3, 0xad, 0x6c, 0x89, 0x23, 0xdb, 0x91, + 0x51, 0x3a, 0xe3, 0xad, 0x39, 0xc7, 0x02, 0xa0, 0x77, 0x39, 0xeb, 0x5d, + 0x11, 0x32, 0x93, 0xb2, 0x25, 0x88, 0xe2, 0xad, 0xa3, 0x2a, 0xaf, 0x26, + 0xb3, 0x84, 0x85, 0x57, 0x8a, 0xb5, 0x69, 0x04, 0xb7, 0x67, 0x6c, 0x63, + 0xf1, 0x34, 0xe4, 0xba, 0xb3, 0x2b, 0xf4, 0x45, 0xb5, 0x98, 0x1c, 0x63, + 0x8a, 0x9a, 0x29, 0x32, 0xc3, 0x93, 0xd6, 0xac, 0xd8, 0xe8, 0x5c, 0x86, + 0x95, 0xff, 0x00, 0x05, 0xad, 0x61, 0xa7, 0xc1, 0x0e, 0xcc, 0x20, 0x53, + 0x91, 0xc9, 0xac, 0x5d, 0x48, 0xde, 0xc8, 0x7c, 0x92, 0x6a, 0xec, 0xaf, + 0x1d, 0xbc, 0xd3, 0x85, 0x0a, 0xa7, 0xa7, 0x53, 0x5a, 0x36, 0xfa, 0x73, + 0x2a, 0x0d, 0xed, 0x8a, 0xb7, 0x18, 0x5c, 0xe3, 0x38, 0xc5, 0x4e, 0x0a, + 0xaa, 0xf0, 0xa4, 0x8a, 0xc5, 0xc9, 0x97, 0xc8, 0x8e, 0x93, 0xe1, 0x56, + 0x9b, 0x6d, 0xa8, 0x78, 0xff, 0x00, 0x41, 0xb3, 0x9e, 0x05, 0xb9, 0x82, + 0x5b, 0xa4, 0x47, 0x8e, 0x41, 0x90, 0xc3, 0x3c, 0x83, 0x5f, 0x7b, 0x78, + 0xef, 0xf6, 0x35, 0xf0, 0x4f, 0x8e, 0x34, 0xc6, 0xba, 0xd2, 0x90, 0x78, + 0x63, 0x52, 0x62, 0x76, 0x34, 0x03, 0x30, 0xb1, 0xec, 0x0a, 0x76, 0xcf, + 0xa8, 0xaf, 0x85, 0x7e, 0x10, 0x6e, 0xff, 0x00, 0x85, 0x9d, 0xe1, 0xd2, + 0x07, 0xcd, 0xf6, 0xc8, 0xf1, 0xf9, 0xd7, 0xea, 0x82, 0x6a, 0x31, 0xcb, + 0x1e, 0x97, 0xa6, 0xb4, 0x65, 0xbe, 0xd8, 0xb2, 0xb0, 0x91, 0x5b, 0x05, + 0x36, 0x63, 0xfc, 0x7f, 0x4a, 0xc6, 0x55, 0x25, 0x17, 0x73, 0xb6, 0x95, + 0x28, 0xce, 0x16, 0x7f, 0xd6, 0xc7, 0xcb, 0x9a, 0x4a, 0x5f, 0xfe, 0xcf, + 0x9f, 0x0c, 0x35, 0x5f, 0x0e, 0x6b, 0xb0, 0xc7, 0x32, 0x3b, 0x48, 0xcd, + 0x73, 0x6e, 0x72, 0x10, 0x9e, 0x80, 0x8a, 0xf8, 0xd7, 0xc0, 0x22, 0xda, + 0xff, 0x00, 0xe2, 0x0e, 0x9a, 0x6e, 0x63, 0xf3, 0x6d, 0xe5, 0xbc, 0x52, + 0xe9, 0xfd, 0xe5, 0x2f, 0xd2, 0xbe, 0xe4, 0xf8, 0xe5, 0xa7, 0xb4, 0xf6, + 0xda, 0xb6, 0x9b, 0x29, 0x46, 0xb4, 0x9e, 0x4b, 0x86, 0x7f, 0x33, 0x93, + 0x85, 0x45, 0x23, 0x9a, 0xf8, 0x57, 0xc1, 0xb6, 0x53, 0x1f, 0x16, 0x59, + 0x45, 0x66, 0x4f, 0x9e, 0x67, 0x51, 0x11, 0xce, 0x39, 0xdd, 0xc5, 0x7a, + 0x10, 0x71, 0x50, 0x76, 0x3c, 0xba, 0xaa, 0x5e, 0xd5, 0x5f, 0x5b, 0x1f, + 0xbb, 0x1e, 0x13, 0xb1, 0xb2, 0xd2, 0xbc, 0x3d, 0x63, 0x69, 0x63, 0x00, + 0xb5, 0xb4, 0x8e, 0xdd, 0x04, 0x70, 0x22, 0x6d, 0x54, 0x1b, 0x73, 0x8c, + 0x56, 0xcc, 0x32, 0x02, 0xff, 0x00, 0x77, 0x9e, 0x39, 0xcd, 0x73, 0x5f, + 0x0d, 0xe0, 0xd5, 0x2d, 0xfc, 0x0f, 0xa2, 0x43, 0xad, 0x95, 0x93, 0x54, + 0x4b, 0x38, 0xd2, 0xe1, 0xd1, 0xf7, 0x86, 0x60, 0xbd, 0x73, 0x81, 0x9e, + 0x3d, 0xab, 0xa7, 0x8d, 0x71, 0x3f, 0x03, 0x8e, 0x39, 0xae, 0xd8, 0x6c, + 0x8c, 0xdb, 0xba, 0xbb, 0x56, 0xf2, 0xec, 0x7c, 0xb9, 0xff, 0x00, 0x05, + 0x11, 0xb3, 0x79, 0xfe, 0x10, 0x69, 0x7b, 0x49, 0x18, 0xd5, 0xe3, 0x24, + 0x76, 0xff, 0x00, 0x55, 0x2d, 0x7c, 0x01, 0xf0, 0xde, 0xc0, 0x49, 0xe3, + 0x1d, 0x36, 0x29, 0x93, 0x28, 0x6e, 0x10, 0x1d, 0xc3, 0xa8, 0xcd, 0x7e, + 0x85, 0x7f, 0xc1, 0x42, 0x2e, 0x63, 0xb7, 0xf8, 0x41, 0xa5, 0xe7, 0xab, + 0x6a, 0xd1, 0xe0, 0x1f, 0xfa, 0xe5, 0x2d, 0x7e, 0x7f, 0x78, 0x42, 0x69, + 0x24, 0xd7, 0x6d, 0x8d, 0xb1, 0x3e, 0x7f, 0x98, 0xbb, 0x00, 0xeb, 0x9c, + 0xf1, 0x5e, 0xb5, 0x59, 0x26, 0xd7, 0xa1, 0xe5, 0xc5, 0x5a, 0x57, 0xf3, + 0x3f, 0x68, 0x2d, 0x22, 0x48, 0xed, 0x62, 0x5c, 0x00, 0x02, 0x80, 0x05, + 0x3e, 0x41, 0x8c, 0x60, 0xf7, 0xe8, 0x6b, 0x2b, 0xc3, 0x31, 0x6a, 0x29, + 0xa1, 0x69, 0x7f, 0xda, 0x8e, 0x1e, 0xfc, 0x5a, 0xc6, 0x2e, 0x4a, 0xe3, + 0x06, 0x5d, 0xa3, 0x71, 0x18, 0xe3, 0xae, 0x6b, 0x55, 0x91, 0x49, 0x1c, + 0x77, 0xad, 0xfa, 0xdc, 0x6f, 0x71, 0xc1, 0xfd, 0xa8, 0xeb, 0x4a, 0x14, + 0x0a, 0x36, 0xe3, 0xa5, 0x48, 0x88, 0xde, 0x30, 0x4a, 0x9c, 0x73, 0xeb, + 0x4b, 0x00, 0xc4, 0x6b, 0x4a, 0xc7, 0x0c, 0xa3, 0x18, 0xc9, 0xa7, 0x44, + 0xb8, 0x40, 0x29, 0xb7, 0xa0, 0x84, 0x90, 0x7e, 0xed, 0xbe, 0x94, 0x91, + 0xc6, 0x14, 0x93, 0xd4, 0xe0, 0x73, 0x4f, 0x71, 0xf2, 0x37, 0xd2, 0x9a, + 0x84, 0xef, 0xc6, 0x33, 0xc0, 0xe6, 0x97, 0x40, 0x1f, 0x8a, 0x3e, 0x9f, + 0x9d, 0x28, 0x19, 0xeb, 0x4b, 0x8a, 0x91, 0x91, 0x8c, 0x16, 0xe6, 0x9f, + 0xb8, 0x0e, 0xf4, 0x7f, 0x15, 0x23, 0xc7, 0xe6, 0x00, 0x3a, 0x60, 0xe6, + 0x98, 0x1f, 0x0e, 0x7f, 0xc1, 0x42, 0x65, 0x8e, 0x4d, 0x77, 0xc3, 0xb1, + 0x06, 0x06, 0x44, 0xb6, 0x95, 0x88, 0x07, 0x90, 0x0b, 0x0c, 0x7f, 0x23, + 0x5f, 0x36, 0xfc, 0x0d, 0xb6, 0x2f, 0xf1, 0x57, 0xc2, 0xb9, 0xed, 0xaa, + 0x5b, 0x1f, 0xfc, 0x88, 0xb5, 0xf4, 0x3f, 0xed, 0xe7, 0xe1, 0x6f, 0xb0, + 0xf8, 0xd2, 0xc3, 0x56, 0x13, 0xbc, 0x83, 0x50, 0x80, 0xa9, 0x8d, 0xce, + 0x44, 0x65, 0x30, 0x3e, 0x5f, 0x40, 0x72, 0x3f, 0x1c, 0xd7, 0x84, 0x7c, + 0x0e, 0x8c, 0xaf, 0xc5, 0x5f, 0x0b, 0x10, 0x37, 0x11, 0xa9, 0xdb, 0xf1, + 0xff, 0x00, 0x6d, 0x16, 0xb3, 0x83, 0xfd, 0xe2, 0xf5, 0x1d, 0x75, 0xa7, + 0xcb, 0xf4, 0x3f, 0x58, 0xe0, 0x51, 0xe4, 0xa0, 0xc0, 0xfb, 0xa2, 0xa2, + 0xb9, 0x0c, 0x91, 0x31, 0x8f, 0x87, 0xda, 0x76, 0xe3, 0xd6, 0xa6, 0x87, + 0x71, 0x85, 0x32, 0x31, 0xc0, 0xe2, 0xa3, 0x98, 0xf0, 0x32, 0x40, 0xc1, + 0x24, 0xe6, 0x9c, 0xe5, 0x62, 0xa0, 0x8e, 0x77, 0xc6, 0x57, 0xe9, 0xa5, + 0xf8, 0x5f, 0x54, 0xb9, 0xbd, 0xb8, 0x8e, 0xda, 0x18, 0xed, 0x65, 0x2f, + 0x2b, 0xae, 0xe0, 0x06, 0xdf, 0x4e, 0xfc, 0xf6, 0xaf, 0xc1, 0x2f, 0x1c, + 0xed, 0x9b, 0xc4, 0xda, 0x9c, 0x88, 0xdb, 0x95, 0xae, 0x64, 0x65, 0x60, + 0x31, 0x91, 0xb8, 0xd7, 0xef, 0x17, 0xc4, 0xff, 0x00, 0x0f, 0xda, 0x78, + 0x9f, 0xc0, 0xfa, 0xd6, 0x9d, 0x7d, 0x34, 0xa9, 0x6b, 0x35, 0xa4, 0x85, + 0xda, 0xde, 0x4d, 0x8c, 0x30, 0x33, 0xc1, 0xed, 0xd2, 0xbf, 0x08, 0x7c, + 0x61, 0x6e, 0xb6, 0xba, 0xf5, 0xfc, 0x51, 0x9d, 0xc8, 0x93, 0x3a, 0xa9, + 0x6e, 0xb8, 0x04, 0xd7, 0x9f, 0x39, 0x3e, 0xa6, 0x8d, 0x4a, 0xde, 0x47, + 0xae, 0x7c, 0x20, 0x47, 0xb9, 0x7b, 0x11, 0x7b, 0x3a, 0xb4, 0x6c, 0x01, + 0x68, 0xa5, 0xe4, 0x14, 0x1d, 0x6b, 0xda, 0xfc, 0x7d, 0x74, 0x2d, 0x7c, + 0x2a, 0x7e, 0xc2, 0xde, 0x44, 0x4b, 0x2c, 0x71, 0x83, 0x17, 0x1c, 0x13, + 0xd2, 0xbc, 0x87, 0xe1, 0xf5, 0xac, 0x33, 0xe9, 0x5a, 0x35, 0xc4, 0xe3, + 0x6f, 0x9b, 0x16, 0x09, 0x53, 0x83, 0xf7, 0x85, 0x7a, 0x47, 0xc4, 0x0b, + 0xf9, 0x5b, 0x42, 0xd4, 0xed, 0x0b, 0x8f, 0x2a, 0x2b, 0xa8, 0x52, 0x35, + 0x1f, 0xc2, 0x32, 0x2b, 0x81, 0xe8, 0x99, 0xe8, 0xd3, 0x5b, 0x1f, 0x38, + 0x7c, 0x67, 0x50, 0x3e, 0x21, 0x6a, 0x3c, 0xe7, 0xe6, 0x5f, 0xe5, 0x5c, + 0x3c, 0xa1, 0x0a, 0xf5, 0xc1, 0xae, 0xc7, 0xe2, 0xea, 0x6d, 0xf1, 0xe6, + 0xa0, 0x37, 0x13, 0x86, 0x1c, 0x9f, 0xa0, 0xae, 0x2d, 0x48, 0x32, 0xe1, + 0xb9, 0x15, 0xc1, 0x53, 0x56, 0x76, 0xc0, 0xab, 0x3d, 0x82, 0x4a, 0x32, + 0xea, 0x0f, 0xbd, 0x66, 0x5d, 0xe9, 0x25, 0x82, 0x88, 0xdb, 0x19, 0x38, + 0xc1, 0xad, 0xcb, 0x89, 0x12, 0x31, 0xf2, 0x36, 0x6a, 0xa4, 0x6c, 0x1b, + 0x61, 0xff, 0x00, 0x6a, 0xa5, 0x4a, 0x4b, 0x54, 0x6b, 0xca, 0x9e, 0xe6, + 0x14, 0xfa, 0x75, 0xc5, 0xa1, 0xc1, 0x01, 0x87, 0xa8, 0xaa, 0xa1, 0x8f, + 0x20, 0xe5, 0x71, 0x5d, 0x84, 0x90, 0xa4, 0xaa, 0x0e, 0x31, 0x8a, 0x86, + 0x6b, 0x08, 0xa4, 0x4f, 0x9e, 0x30, 0xfe, 0xe2, 0xad, 0x57, 0xee, 0x4b, + 0xa7, 0xd8, 0xe5, 0x0c, 0x87, 0x8c, 0x73, 0x4c, 0x91, 0xb7, 0x0f, 0x43, + 0x5a, 0x37, 0x9a, 0x41, 0x57, 0x73, 0x11, 0xc0, 0xec, 0x0d, 0x67, 0xcb, + 0x14, 0xb0, 0xae, 0x1d, 0x48, 0x39, 0xae, 0x98, 0xca, 0x32, 0xd8, 0xc5, + 0xa6, 0xb7, 0x12, 0x27, 0x00, 0xd5, 0xa4, 0x70, 0x7a, 0x55, 0x28, 0xb8, + 0xc7, 0xad, 0x5c, 0x87, 0x9c, 0x51, 0x21, 0xa6, 0x4f, 0x0b, 0xfa, 0x0a, + 0xb2, 0xbb, 0xbd, 0x7f, 0x2a, 0x82, 0x0c, 0x75, 0xab, 0x71, 0xae, 0x45, + 0x73, 0xc8, 0xb4, 0x28, 0x56, 0x2a, 0x0e, 0x49, 0xc5, 0x5d, 0x8e, 0x2c, + 0x81, 0x50, 0xaf, 0x0b, 0x56, 0xe0, 0x39, 0xae, 0x79, 0x33, 0x44, 0x89, + 0xa1, 0xb7, 0x1c, 0x1e, 0xb5, 0x33, 0xc5, 0x8d, 0x98, 0xfe, 0xf0, 0x14, + 0xf8, 0x10, 0x9c, 0x54, 0xb2, 0xc7, 0x8d, 0x9f, 0xef, 0x0a, 0xe7, 0x6f, + 0x52, 0x89, 0x16, 0x2c, 0x63, 0x35, 0x6a, 0x38, 0x06, 0x3a, 0x73, 0x48, + 0xa9, 0x90, 0x2a, 0xdc, 0x11, 0x1e, 0x95, 0x23, 0x2b, 0xcb, 0x08, 0x10, + 0x9a, 0xd0, 0x58, 0x32, 0x05, 0x36, 0xee, 0xd8, 0xa4, 0x2d, 0xc7, 0x3c, + 0x71, 0x56, 0xd1, 0x09, 0x22, 0xab, 0xa0, 0x11, 0x25, 0xb6, 0x69, 0x67, + 0xb6, 0x02, 0x07, 0x18, 0xed, 0x57, 0x22, 0x85, 0xb3, 0x83, 0x4f, 0x9a, + 0xdc, 0x98, 0x5b, 0x8e, 0xd4, 0x86, 0x66, 0xda, 0x43, 0x9b, 0x68, 0xfd, + 0xd6, 0x9f, 0xf6, 0x60, 0x3b, 0x66, 0xae, 0x59, 0xdb, 0x1f, 0xb3, 0x46, + 0x3d, 0x85, 0x4e, 0x2d, 0x89, 0xcf, 0x19, 0x14, 0xde, 0xe2, 0x5b, 0x19, + 0x6d, 0x06, 0x14, 0xf1, 0xda, 0x92, 0x1b, 0x5d, 0xd0, 0x21, 0x61, 0x93, + 0x8a, 0xd4, 0x6b, 0x43, 0xb5, 0xbb, 0x60, 0x54, 0x50, 0xc7, 0xfe, 0x8e, + 0x80, 0x8e, 0x71, 0x47, 0x40, 0xea, 0x66, 0xc9, 0x6a, 0x0f, 0x40, 0x47, + 0xd0, 0xd4, 0x52, 0x5b, 0x6d, 0x4c, 0x96, 0x3c, 0x1e, 0x86, 0xb5, 0x8c, + 0x40, 0xaf, 0x02, 0xab, 0xcd, 0x1f, 0xcb, 0xf8, 0x8a, 0x68, 0x0c, 0xc9, + 0x63, 0x90, 0x1c, 0x86, 0x07, 0xd8, 0x8a, 0x66, 0xf9, 0x70, 0x01, 0x40, + 0x47, 0xb1, 0xad, 0x09, 0x23, 0xc9, 0xf5, 0x35, 0x5f, 0xc9, 0x20, 0xf7, + 0xa5, 0xb8, 0x19, 0xd2, 0x1f, 0xde, 0xb1, 0x64, 0x20, 0x7d, 0x2a, 0x22, + 0xf1, 0x37, 0x01, 0x86, 0x7d, 0x2b, 0x50, 0xc2, 0xdb, 0xd9, 0x87, 0x18, + 0xc7, 0x35, 0x01, 0xb3, 0x47, 0x62, 0x4a, 0x0c, 0x7a, 0x53, 0x69, 0x08, + 0xa7, 0x12, 0x0f, 0x33, 0xb7, 0x4a, 0x6d, 0xc4, 0x41, 0xb3, 0x81, 0x53, + 0xb5, 0xa8, 0x8d, 0xfe, 0x5c, 0xae, 0x47, 0x6a, 0x85, 0xc4, 0x8b, 0xdf, + 0x23, 0xd0, 0xd4, 0x8c, 0xa3, 0x2c, 0x3c, 0xfb, 0xe2, 0xab, 0xbc, 0x23, + 0x1c, 0x8a, 0xd1, 0x60, 0xcd, 0x92, 0x54, 0xfe, 0x1c, 0xd4, 0x0d, 0xb5, + 0xbb, 0xfe, 0x14, 0xee, 0xc6, 0x63, 0xcb, 0x0e, 0xd3, 0x91, 0xc5, 0x44, + 0xe9, 0x86, 0xe7, 0x8f, 0x7a, 0xd2, 0x96, 0x30, 0x7a, 0x0e, 0x2a, 0xb4, + 0xb0, 0xf3, 0x9a, 0xd5, 0x48, 0x86, 0x8a, 0x72, 0xae, 0xc0, 0x0d, 0x44, + 0xc3, 0x6a, 0xe4, 0x75, 0xf5, 0xab, 0x5e, 0x5e, 0x72, 0x0f, 0x6a, 0x6b, + 0x47, 0xbd, 0x08, 0x02, 0xb5, 0x4c, 0x96, 0x8a, 0x12, 0x1c, 0x8c, 0x9e, + 0xbe, 0xb5, 0x0b, 0x2e, 0x06, 0x7a, 0xd5, 0xc9, 0x21, 0x18, 0xe9, 0x55, + 0xda, 0x3c, 0x0c, 0x8a, 0xdd, 0x33, 0x36, 0x8c, 0xf6, 0x0a, 0xcc, 0x43, + 0x0e, 0x3d, 0x6b, 0x2e, 0xff, 0x00, 0x4c, 0x29, 0x97, 0x8c, 0x7e, 0x55, + 0xb2, 0xd1, 0xe5, 0x8d, 0x30, 0x1d, 0xa4, 0x82, 0x32, 0xbe, 0x86, 0xba, + 0xa1, 0x37, 0x17, 0xa1, 0x84, 0xa2, 0x9e, 0xe7, 0x3a, 0x92, 0x6f, 0x1e, + 0x5c, 0x83, 0x9e, 0xc4, 0xd2, 0xab, 0x9b, 0x77, 0x2a, 0xff, 0x00, 0x70, + 0xd6, 0x9d, 0xfe, 0x98, 0xb3, 0x38, 0x64, 0x18, 0xa8, 0xaf, 0x34, 0xed, + 0xb0, 0xe4, 0x74, 0x15, 0xd4, 0xaa, 0x45, 0xdb, 0xcc, 0xc3, 0x92, 0x4a, + 0xe5, 0x26, 0x06, 0x19, 0x01, 0x07, 0x2a, 0x79, 0x06, 0x96, 0x76, 0x27, + 0xf7, 0x8b, 0xd3, 0xbd, 0x09, 0x11, 0xd9, 0x82, 0x78, 0xf7, 0xa7, 0x08, + 0x46, 0x08, 0x24, 0x60, 0xf6, 0xab, 0xbd, 0x89, 0xd4, 0x5f, 0x38, 0xb5, + 0xb9, 0xc7, 0x0e, 0x3f, 0x95, 0x5f, 0xf0, 0xcc, 0x8c, 0xf7, 0xad, 0x0e, + 0x7e, 0xfa, 0xd5, 0x05, 0x88, 0x01, 0xd7, 0x15, 0x35, 0xbd, 0xbb, 0x79, + 0xcb, 0xe5, 0x16, 0x12, 0x67, 0x00, 0x83, 0x8a, 0x6a, 0x49, 0x68, 0x36, + 0x9b, 0x47, 0x41, 0xa4, 0x6a, 0x73, 0xd9, 0x5e, 0xc3, 0x71, 0x19, 0x24, + 0x80, 0x0e, 0x07, 0x53, 0x5d, 0x9d, 0x9b, 0xeb, 0x1a, 0xbe, 0xae, 0x35, + 0x1b, 0x6d, 0x3a, 0xe2, 0x56, 0xce, 0x76, 0x85, 0xe2, 0xb9, 0x0f, 0x05, + 0x6b, 0x10, 0x5a, 0x6b, 0x30, 0x35, 0xc7, 0x44, 0xc6, 0xdd, 0xe3, 0x8a, + 0xf7, 0x4d, 0x17, 0xe2, 0x05, 0x85, 0xbd, 0xc2, 0xa5, 0xbc, 0x4f, 0x33, + 0xe4, 0x7c, 0xb0, 0xae, 0x7a, 0xfd, 0x2b, 0xcc, 0xad, 0x5a, 0xa4, 0x24, + 0xa2, 0x8d, 0xe9, 0xd1, 0xa7, 0x35, 0x76, 0x79, 0x46, 0xaf, 0xe1, 0xfd, + 0x47, 0x50, 0x91, 0xef, 0x92, 0xc6, 0xe5, 0x50, 0xf5, 0x64, 0x5e, 0x05, + 0x73, 0x17, 0x30, 0x8b, 0x5d, 0xed, 0xfe, 0xad, 0xd2, 0x3c, 0x10, 0x57, + 0x96, 0x35, 0xef, 0x37, 0x7f, 0x10, 0xb4, 0xfb, 0x68, 0xae, 0xa0, 0x65, + 0x6b, 0x25, 0x55, 0xe1, 0x19, 0x76, 0x90, 0x6b, 0xc0, 0xbc, 0x57, 0xe2, + 0x73, 0xab, 0xea, 0xb7, 0x12, 0xc3, 0x94, 0x89, 0x89, 0x03, 0x03, 0xa8, + 0xa9, 0xa1, 0x2a, 0x95, 0x1f, 0x2b, 0x5a, 0x1a, 0x55, 0x85, 0x3a, 0x6a, + 0xe9, 0xea, 0x60, 0x97, 0xe0, 0xb1, 0x6c, 0xb3, 0x70, 0x33, 0x4c, 0x66, + 0xd8, 0x30, 0x0e, 0x5c, 0xfe, 0x94, 0x15, 0x66, 0x60, 0x40, 0x3c, 0x52, + 0x5b, 0x82, 0x6e, 0x50, 0x95, 0xcf, 0x3d, 0xeb, 0xd6, 0xb1, 0xc2, 0xd8, + 0xb2, 0x44, 0xeb, 0x19, 0xc6, 0x54, 0xfb, 0xd6, 0xb5, 0xbc, 0x2d, 0xf6, + 0x64, 0xe3, 0x1c, 0x55, 0x6b, 0xa4, 0x25, 0x73, 0x8a, 0xda, 0xb5, 0xb4, + 0x92, 0x4b, 0x38, 0xdb, 0x04, 0x8c, 0x57, 0x3d, 0x49, 0xd9, 0x2b, 0x9a, + 0x42, 0x3e, 0xf3, 0x29, 0x69, 0xb0, 0x33, 0xcb, 0x37, 0x19, 0xf9, 0x6b, + 0xa3, 0xd1, 0x74, 0xef, 0x36, 0x26, 0xe3, 0x9f, 0x4a, 0xa1, 0xa0, 0xda, + 0xb7, 0xdb, 0xe6, 0x43, 0xd3, 0x6f, 0x4a, 0xef, 0x74, 0x4d, 0x38, 0x17, + 0x90, 0x05, 0xc7, 0x15, 0xe5, 0xe2, 0xab, 0x72, 0xdd, 0x1d, 0xf4, 0x29, + 0xdc, 0xe5, 0xaf, 0x34, 0xc0, 0xaa, 0xde, 0xb8, 0xa4, 0xd3, 0xb4, 0xed, + 0xca, 0x38, 0xce, 0x6b, 0xac, 0xbf, 0xd2, 0xc3, 0x24, 0xbf, 0x2d, 0x33, + 0x4e, 0xb0, 0x58, 0xa2, 0x4c, 0xe0, 0x7d, 0x6b, 0x85, 0x62, 0x1b, 0x89, + 0xd4, 0xe9, 0x24, 0xca, 0x76, 0x5a, 0x4e, 0xd9, 0x01, 0x23, 0x3e, 0xd5, + 0xb9, 0x69, 0x61, 0x83, 0x8c, 0x55, 0xa8, 0x2d, 0x86, 0x40, 0x55, 0x24, + 0x81, 0x9a, 0xbf, 0x6b, 0x68, 0xec, 0xf9, 0xce, 0xd0, 0x39, 0xe2, 0xb9, + 0x25, 0x27, 0x2d, 0xcd, 0x92, 0x48, 0x8a, 0xd6, 0xc4, 0x27, 0x5c, 0x28, + 0xf7, 0xad, 0x3b, 0x68, 0x92, 0x47, 0xd9, 0x1a, 0x99, 0x18, 0xf1, 0xf2, + 0x8e, 0x2a, 0x6b, 0x2d, 0x34, 0x34, 0x99, 0x61, 0xb8, 0xfa, 0x9a, 0xde, + 0xb0, 0xb0, 0x0b, 0x34, 0x78, 0x5d, 0xbe, 0xf5, 0x83, 0x66, 0xc8, 0xc7, + 0x8a, 0xca, 0xe5, 0x98, 0x04, 0x54, 0x8d, 0x7d, 0x48, 0xc9, 0xad, 0x58, + 0x34, 0x86, 0x9c, 0x6d, 0x69, 0x1d, 0x87, 0x70, 0x0e, 0x05, 0x6a, 0xda, + 0xd8, 0xee, 0xcf, 0x1c, 0x7a, 0xd6, 0xd6, 0x9b, 0xa7, 0x12, 0xf9, 0xda, + 0x71, 0xc7, 0x6a, 0x8d, 0x4d, 0x54, 0x6e, 0x62, 0xe9, 0x9a, 0x04, 0x70, + 0xcc, 0x36, 0xc4, 0x03, 0x0f, 0x6e, 0x6b, 0x6a, 0xcf, 0x4d, 0x0c, 0x06, + 0x45, 0x6f, 0x69, 0xba, 0x5b, 0x7d, 0xa0, 0x48, 0x63, 0xc2, 0x8f, 0x5a, + 0x7c, 0x76, 0xbe, 0x52, 0x83, 0xf2, 0x80, 0x7a, 0x64, 0xd4, 0xb8, 0xb6, + 0xae, 0x74, 0x45, 0x24, 0x47, 0xa7, 0x69, 0x4a, 0xb1, 0xdc, 0x13, 0xc6, + 0x22, 0x6c, 0x53, 0xe1, 0xd3, 0xca, 0xb6, 0x71, 0x9a, 0xbc, 0xb3, 0x18, + 0x77, 0xc4, 0xaa, 0x64, 0x32, 0x2f, 0x96, 0x36, 0x2e, 0x79, 0x35, 0xbb, + 0x61, 0xa7, 0x45, 0x3c, 0x23, 0xf7, 0x72, 0xf9, 0x9e, 0xe3, 0x15, 0x71, + 0x83, 0x6a, 0xc5, 0x39, 0x46, 0x2c, 0xca, 0x16, 0x04, 0xdb, 0xbf, 0xcb, + 0xc6, 0xd3, 0x53, 0x9b, 0x10, 0x62, 0x5e, 0x3b, 0x56, 0xd5, 0xd5, 0x9b, + 0xc5, 0x69, 0x29, 0xf2, 0x32, 0x88, 0xbc, 0x9d, 0xfd, 0x3f, 0x4a, 0xbb, + 0x69, 0x69, 0x98, 0x57, 0x72, 0xae, 0xd2, 0xb9, 0x07, 0x67, 0x51, 0x5b, + 0xaa, 0x7d, 0x0c, 0x79, 0xdb, 0xd4, 0xe5, 0x61, 0xd3, 0x09, 0x04, 0x85, + 0x34, 0xcb, 0x6d, 0x25, 0xfe, 0xdd, 0x71, 0xf2, 0x1e, 0x8b, 0xd0, 0x57, + 0x70, 0xd6, 0x38, 0x8d, 0x51, 0x18, 0x29, 0x90, 0xf0, 0xd8, 0xe9, 0x59, + 0xf6, 0x91, 0xc8, 0xb7, 0xf7, 0x76, 0xe6, 0x6d, 0xc5, 0x24, 0x39, 0x24, + 0xf6, 0x1d, 0xaa, 0xbd, 0x92, 0x5b, 0x89, 0xcd, 0xb3, 0x10, 0xe8, 0xae, + 0x54, 0x10, 0x8d, 0x4e, 0x97, 0xc3, 0xf2, 0xbd, 0xbb, 0x81, 0x1e, 0x49, + 0x53, 0x81, 0x5b, 0x77, 0xa5, 0x4c, 0x61, 0x30, 0x48, 0x27, 0xf8, 0xba, + 0x55, 0x68, 0xe1, 0x8e, 0x0f, 0x38, 0xec, 0x25, 0x94, 0x6d, 0xdb, 0xd8, + 0xe6, 0xa9, 0x42, 0x37, 0xb1, 0x12, 0x9c, 0xac, 0x63, 0x41, 0xe1, 0x92, + 0xb6, 0x50, 0xab, 0xa0, 0x53, 0xb4, 0x75, 0x35, 0x56, 0x5f, 0x0c, 0xab, + 0x39, 0x50, 0x54, 0x7e, 0x35, 0xb7, 0x68, 0x4b, 0x58, 0x09, 0x9a, 0x4e, + 0x4b, 0x79, 0x78, 0xfe, 0x55, 0x66, 0xde, 0x22, 0x64, 0x09, 0xb9, 0xb0, + 0x7b, 0xd6, 0x91, 0xa7, 0x16, 0x63, 0x29, 0xb3, 0x89, 0xd6, 0xf4, 0x38, + 0xed, 0xf4, 0xf9, 0x41, 0x96, 0x36, 0xce, 0x01, 0x00, 0xfb, 0xd5, 0x79, + 0x74, 0xb8, 0x5c, 0x6c, 0x2e, 0xa0, 0x81, 0xda, 0xba, 0x6d, 0x68, 0x24, + 0x7a, 0x4d, 0xc3, 0xed, 0x01, 0x9c, 0x95, 0xcf, 0x73, 0x58, 0x6d, 0x14, + 0x71, 0xdb, 0x87, 0x25, 0x84, 0x8d, 0x27, 0x96, 0x00, 0xeb, 0xcd, 0x39, + 0x25, 0x1b, 0x68, 0x66, 0xb5, 0xdd, 0x98, 0x97, 0x1a, 0x1c, 0x60, 0x80, + 0xb2, 0xa3, 0xe6, 0xb0, 0x75, 0xed, 0x29, 0x44, 0x71, 0xa9, 0x3c, 0x09, + 0x57, 0x27, 0xd0, 0x66, 0xbb, 0x39, 0x2d, 0xd6, 0x32, 0xa1, 0x81, 0x23, + 0xa6, 0x4f, 0x15, 0x99, 0x7e, 0xb1, 0xbe, 0x93, 0x74, 0xc5, 0x06, 0x42, + 0xb0, 0x0d, 0xfc, 0xaa, 0xe1, 0x67, 0xd0, 0xc2, 0x6b, 0xcc, 0xe2, 0xaf, + 0xf4, 0xbb, 0x65, 0xc8, 0x17, 0x69, 0x9f, 0x7a, 0xe7, 0xf5, 0x0d, 0x32, + 0x31, 0x92, 0xb3, 0x46, 0xde, 0xb8, 0x35, 0xbd, 0x73, 0x1a, 0xc7, 0x1e, + 0xf7, 0x66, 0x0c, 0x5b, 0x68, 0x02, 0xb1, 0xb5, 0x09, 0x00, 0x2c, 0x09, + 0x93, 0x03, 0x8e, 0x69, 0x69, 0xd8, 0xca, 0xcf, 0xb9, 0xc8, 0xea, 0xf6, + 0x8a, 0xad, 0x11, 0xdc, 0x08, 0xdf, 0xda, 0xb1, 0x2f, 0xad, 0xf2, 0x09, + 0x1e, 0xb5, 0xd2, 0x5f, 0x4a, 0xbe, 0x54, 0xa7, 0x19, 0xed, 0xcd, 0x73, + 0xf2, 0x91, 0x87, 0xcb, 0x1e, 0xb5, 0x6a, 0xdd, 0x89, 0x77, 0x30, 0x26, + 0x4d, 0xad, 0xd2, 0xa8, 0xc8, 0x42, 0xca, 0x4f, 0xb5, 0x6a, 0xdd, 0xaa, + 0x93, 0xf7, 0xbf, 0x4a, 0xca, 0x9f, 0x6e, 0x48, 0xc0, 0xcf, 0x63, 0x5d, + 0x31, 0x25, 0xdc, 0x89, 0xc8, 0x3d, 0x0d, 0x55, 0x95, 0x70, 0x86, 0x9f, + 0xf3, 0x7a, 0x8a, 0x6c, 0xd1, 0x6e, 0x43, 0x9e, 0x47, 0xd6, 0xba, 0x15, + 0x91, 0x1a, 0x95, 0x65, 0x6c, 0x01, 0xce, 0x78, 0xa6, 0x45, 0x6d, 0x24, + 0xec, 0x38, 0x2a, 0xa7, 0xf8, 0x8d, 0x5c, 0xb4, 0x85, 0x1f, 0x96, 0xc1, + 0x03, 0xd6, 0xaf, 0xb6, 0x17, 0x6e, 0x07, 0x4a, 0xa7, 0x53, 0x97, 0x44, + 0x2e, 0x4e, 0x6d, 0x59, 0x1d, 0x96, 0x87, 0x19, 0xc1, 0x93, 0xe7, 0xef, + 0xcf, 0x4a, 0xd4, 0x8a, 0x14, 0x80, 0x9d, 0xa8, 0x00, 0x18, 0xe0, 0x53, + 0x20, 0x90, 0x18, 0xb3, 0x9f, 0x9a, 0xa5, 0x5c, 0x49, 0xb8, 0x13, 0x8c, + 0xd7, 0x2c, 0xa7, 0x29, 0x7c, 0x4c, 0xd5, 0x45, 0x2d, 0x8b, 0xd0, 0x7f, + 0xab, 0xca, 0x80, 0x05, 0x12, 0x9d, 0xcd, 0x1f, 0x3d, 0xc5, 0x57, 0x88, + 0x32, 0x12, 0x01, 0x25, 0x48, 0xa9, 0x90, 0x12, 0xd1, 0x80, 0x32, 0x73, + 0xd0, 0xd4, 0xc5, 0x6a, 0x4c, 0x9e, 0x85, 0x81, 0xbd, 0xae, 0x01, 0x5f, + 0xba, 0x2a, 0xf2, 0x48, 0xce, 0x84, 0x10, 0x07, 0x6e, 0x2a, 0x8a, 0xb9, + 0x8e, 0x70, 0xa7, 0x18, 0x35, 0x72, 0x19, 0x23, 0x24, 0xfc, 0xac, 0x4d, + 0x5b, 0x32, 0x3b, 0x5f, 0x83, 0xa0, 0x1f, 0x89, 0x9e, 0x1c, 0xcf, 0xfc, + 0xfe, 0x27, 0xf3, 0xaf, 0xd4, 0x5b, 0x7b, 0x09, 0x3f, 0xb4, 0x34, 0x0b, + 0xdc, 0x80, 0x96, 0xe2, 0x64, 0x2b, 0xfe, 0xf6, 0x08, 0xfe, 0x46, 0xbf, + 0x2e, 0xbe, 0x0e, 0xc6, 0xef, 0xf1, 0x2f, 0xc3, 0xa1, 0x46, 0x09, 0xbc, + 0x4c, 0x7e, 0x75, 0xfa, 0xaf, 0xa4, 0x5c, 0xc5, 0x0e, 0x95, 0x0c, 0x37, + 0xa3, 0xc9, 0x98, 0x67, 0xe5, 0x71, 0x8f, 0xc8, 0xd7, 0x35, 0x4b, 0xad, + 0x8f, 0x47, 0x0c, 0x93, 0x86, 0xbf, 0xd6, 0xc7, 0xcd, 0x7f, 0x1b, 0x75, + 0x29, 0xce, 0xab, 0xa9, 0xee, 0x4f, 0x95, 0xa4, 0xbc, 0x20, 0x1f, 0x4d, + 0x8b, 0x5f, 0x11, 0x78, 0x22, 0xe1, 0x6d, 0x3c, 0x57, 0x61, 0x70, 0x4e, + 0xd1, 0x1c, 0xca, 0xd9, 0xc6, 0x71, 0x86, 0xaf, 0xba, 0xbe, 0x38, 0x5b, + 0xc7, 0x6d, 0x73, 0x33, 0xef, 0x12, 0xa4, 0xb1, 0xde, 0x32, 0x31, 0x39, + 0xe3, 0x62, 0x57, 0xc3, 0xbe, 0x03, 0xb2, 0x8a, 0xef, 0xc5, 0xfa, 0x74, + 0x33, 0x8c, 0xc1, 0x25, 0xc2, 0x2b, 0xf3, 0x8e, 0x0b, 0x73, 0xcd, 0x7a, + 0x69, 0xfe, 0xee, 0xe7, 0x93, 0x35, 0xfb, 0xe4, 0x91, 0xfb, 0x87, 0xe0, + 0xcd, 0x49, 0x75, 0x8f, 0x09, 0xe8, 0xd7, 0xb6, 0x92, 0xf9, 0x90, 0x4f, + 0x69, 0x14, 0x82, 0x4d, 0xbb, 0x4b, 0x02, 0x83, 0xb7, 0x6a, 0xd9, 0x87, + 0x2d, 0x70, 0x04, 0x8c, 0x48, 0x18, 0xe8, 0x7a, 0xd6, 0x47, 0x83, 0x74, + 0xab, 0x3d, 0x0f, 0xc3, 0x1a, 0x7d, 0x8d, 0x82, 0x08, 0x6c, 0xe0, 0xb6, + 0x45, 0x8a, 0x30, 0xe5, 0xb6, 0xae, 0x3a, 0x02, 0x79, 0xad, 0xa8, 0x88, + 0xde, 0x71, 0xf7, 0xb3, 0xe9, 0x5d, 0xf0, 0xbe, 0x97, 0x39, 0xf5, 0x5f, + 0x16, 0xe7, 0xce, 0x1f, 0xf0, 0x50, 0x58, 0x56, 0x7f, 0x83, 0x9a, 0x72, + 0x91, 0x9c, 0x6a, 0xd1, 0x11, 0xff, 0x00, 0x7e, 0xa5, 0xaf, 0x84, 0xbe, + 0x12, 0xe8, 0x2b, 0x75, 0xe2, 0x6b, 0x29, 0xdd, 0xf6, 0x2a, 0x5c, 0x2f, + 0xf3, 0xaf, 0xbc, 0x3f, 0xe0, 0xa0, 0x45, 0xe3, 0xf8, 0x39, 0xa6, 0x90, + 0x01, 0xce, 0xaf, 0x10, 0x38, 0x3d, 0x3f, 0x73, 0x37, 0xf8, 0x57, 0xc2, + 0xdf, 0x0c, 0xe5, 0xb9, 0x3a, 0xcc, 0x30, 0x42, 0x01, 0x12, 0xc8, 0x06, + 0x08, 0xe3, 0xad, 0x7a, 0x15, 0x64, 0xb9, 0x97, 0xa1, 0xc1, 0x1b, 0xfe, + 0x27, 0xec, 0x0c, 0x05, 0x44, 0x49, 0x82, 0x08, 0xda, 0x2a, 0x42, 0x01, + 0xc1, 0xaa, 0x3e, 0x1e, 0xd1, 0xff, 0x00, 0xb1, 0xf4, 0x6d, 0x3e, 0xd0, + 0xcc, 0x67, 0x6b, 0x6b, 0x75, 0x87, 0xcc, 0x61, 0xf7, 0xb0, 0x00, 0xcf, + 0xe9, 0x5a, 0x58, 0xe9, 0x5d, 0x57, 0xea, 0x64, 0xf7, 0x19, 0x82, 0x3b, + 0x52, 0x81, 0x52, 0x62, 0x8d, 0xa2, 0x95, 0xc5, 0x62, 0x36, 0x1d, 0x38, + 0xa6, 0xc7, 0xf7, 0x3a, 0x1a, 0x91, 0xc1, 0x18, 0xe3, 0x8a, 0x23, 0x1f, + 0x2d, 0x3b, 0xe8, 0x31, 0x8c, 0x49, 0x43, 0xc1, 0xa5, 0x45, 0xe7, 0xd3, + 0x8a, 0x7b, 0x2e, 0x54, 0x8c, 0x50, 0xa0, 0x93, 0xed, 0x8e, 0xb4, 0xae, + 0x01, 0x8a, 0x4c, 0x1f, 0x4a, 0x7e, 0x29, 0x71, 0x4a, 0xe0, 0x47, 0xb7, + 0x9c, 0xe3, 0x9a, 0x19, 0x82, 0xf5, 0xce, 0x2a, 0x4c, 0x52, 0x14, 0x0e, + 0x30, 0x45, 0x17, 0x03, 0xe1, 0xef, 0xdb, 0xd7, 0x58, 0x86, 0xf3, 0xc4, + 0xba, 0x46, 0x9d, 0x1b, 0x86, 0x96, 0xda, 0x07, 0x77, 0x51, 0xfc, 0x3b, + 0xf6, 0xe0, 0x7f, 0xe3, 0xb5, 0xe1, 0x1f, 0x00, 0xe0, 0x0d, 0xf1, 0x57, + 0xc3, 0x19, 0xeb, 0xfd, 0xa3, 0x07, 0xfe, 0x86, 0x2b, 0xdf, 0xff, 0x00, + 0x6e, 0x6f, 0x0d, 0xdb, 0xdb, 0xf8, 0xa3, 0x4f, 0xd4, 0xa2, 0x04, 0x4f, + 0x77, 0x09, 0x59, 0x79, 0xe0, 0xed, 0xdb, 0x83, 0xfa, 0xfe, 0x95, 0xe2, + 0xbf, 0x00, 0xec, 0x73, 0xf1, 0x3f, 0xc3, 0x25, 0x71, 0xb8, 0x6a, 0x50, + 0x1f, 0xc3, 0x78, 0xae, 0x48, 0xcf, 0xf7, 0x8b, 0xd4, 0xe8, 0xaf, 0x1f, + 0x77, 0xe4, 0xbf, 0x23, 0xf5, 0x06, 0x31, 0xf2, 0x2f, 0xd2, 0xab, 0x5d, + 0xc4, 0x65, 0x47, 0x50, 0x76, 0x87, 0x1b, 0x73, 0xe8, 0x6a, 0xd4, 0x6b, + 0xf2, 0x2f, 0x3d, 0xaa, 0x27, 0x39, 0x2c, 0x3e, 0xb5, 0xd1, 0x36, 0x65, + 0x07, 0x63, 0x80, 0xf8, 0xc7, 0xe2, 0x18, 0xfc, 0x21, 0xf0, 0xd7, 0x5d, + 0xd4, 0x84, 0x71, 0xcb, 0x24, 0x76, 0x92, 0x05, 0x49, 0x41, 0x60, 0xcc, + 0x46, 0x3a, 0x0e, 0xbf, 0x4a, 0xfc, 0x31, 0xf1, 0x54, 0x86, 0xe7, 0x56, + 0xbb, 0x98, 0x80, 0xa6, 0x49, 0x19, 0x88, 0x03, 0x81, 0x93, 0x5f, 0xbd, + 0xfe, 0x24, 0x41, 0xfd, 0x81, 0xa9, 0x7c, 0xbe, 0x61, 0xfb, 0x2c, 0xc7, + 0x18, 0x07, 0x3f, 0x2f, 0xbd, 0x7e, 0x0e, 0x78, 0xe1, 0x3f, 0xe2, 0xa4, + 0xd4, 0x86, 0x36, 0xe6, 0xe1, 0xf8, 0xc7, 0xfb, 0x46, 0xbc, 0xea, 0xad, + 0xdd, 0x5c, 0xe9, 0x50, 0x7c, 0xad, 0xdf, 0x4e, 0xc7, 0xae, 0x78, 0x0e, + 0x09, 0xae, 0x34, 0x3d, 0x0e, 0x24, 0x5c, 0x9f, 0x2d, 0x76, 0xff, 0x00, + 0xdf, 0x43, 0x35, 0xdf, 0xfc, 0x40, 0xb0, 0x68, 0xfc, 0x3f, 0xa8, 0x5c, + 0xee, 0xc9, 0x96, 0xf6, 0x3c, 0x8f, 0x4c, 0x10, 0x2b, 0x93, 0xf8, 0x49, + 0x6c, 0xb7, 0xf0, 0x68, 0xb6, 0x72, 0xcc, 0x20, 0xfd, 0xd0, 0x62, 0xe7, + 0xb6, 0x08, 0xe2, 0xbd, 0xbb, 0xc7, 0x7e, 0x13, 0xb8, 0xd6, 0x7c, 0x33, + 0xf6, 0x6b, 0x44, 0x46, 0xc4, 0x91, 0xc8, 0x5d, 0x8e, 0xd5, 0xc0, 0x39, + 0x35, 0xc7, 0x66, 0xd3, 0x3b, 0xa9, 0xe8, 0x91, 0xf1, 0x4f, 0xc5, 0x15, + 0x3f, 0xf0, 0x9b, 0xea, 0x00, 0x92, 0xc7, 0x78, 0xe4, 0xfd, 0x05, 0x72, + 0x0f, 0x11, 0x24, 0x90, 0x47, 0x4a, 0xef, 0x7e, 0x2d, 0x42, 0xad, 0xf1, + 0x03, 0x56, 0x68, 0xcf, 0xc8, 0xb2, 0xed, 0xe3, 0xd8, 0x0a, 0xe1, 0xe7, + 0xb6, 0x04, 0xf3, 0x91, 0x9a, 0xf3, 0xa6, 0xed, 0x2b, 0x1d, 0xb1, 0x5a, + 0x14, 0x8c, 0x20, 0xa0, 0xa8, 0x8c, 0x7e, 0x51, 0x45, 0x1d, 0x32, 0x2a, + 0xc4, 0xd1, 0x28, 0x45, 0x1b, 0xf0, 0x01, 0xa4, 0xb8, 0x89, 0x50, 0x21, + 0x1d, 0x77, 0x0a, 0x8b, 0x9b, 0x58, 0x54, 0x7c, 0xb2, 0xa9, 0xe9, 0x8a, + 0x26, 0x9d, 0x53, 0x01, 0x5b, 0x23, 0x3c, 0x8a, 0x8c, 0x0c, 0xb0, 0x6d, + 0xc1, 0x4f, 0xbd, 0x21, 0x28, 0x99, 0x24, 0xee, 0xc9, 0xed, 0x53, 0x61, + 0xdc, 0x8a, 0x4c, 0x16, 0x62, 0x6a, 0xac, 0xa8, 0xaf, 0xff, 0x00, 0xd7, + 0xab, 0x2c, 0x7e, 0xf0, 0x3d, 0x85, 0x57, 0x97, 0x2c, 0xb8, 0x5e, 0xbe, + 0xb5, 0x6b, 0x42, 0x0c, 0xf9, 0xec, 0x95, 0x89, 0x61, 0xf2, 0x9f, 0x41, + 0x50, 0xaa, 0xb4, 0x47, 0x9e, 0x9e, 0xb5, 0xa5, 0xd3, 0x8e, 0x86, 0xab, + 0x4b, 0x18, 0x2d, 0x82, 0x31, 0x5d, 0x11, 0x9b, 0xd9, 0x99, 0xb8, 0xad, + 0xd0, 0x5b, 0xb0, 0x0a, 0x0f, 0xad, 0x5e, 0x89, 0x81, 0xe8, 0xa6, 0xa9, + 0xc5, 0x81, 0xc9, 0xcf, 0xb0, 0x15, 0x6a, 0x36, 0xc1, 0xfb, 0x9f, 0x9d, + 0x44, 0xb7, 0x12, 0x27, 0x79, 0x38, 0x0a, 0x14, 0xe7, 0xbd, 0x58, 0x82, + 0x6c, 0x30, 0xc6, 0x0f, 0xaf, 0x3d, 0x2a, 0x99, 0x6c, 0xaf, 0x1c, 0x1a, + 0xb7, 0x03, 0x04, 0xc0, 0x00, 0x67, 0xd4, 0xd6, 0x52, 0xdb, 0x42, 0xd1, + 0xa9, 0x6f, 0x29, 0xc7, 0x45, 0xcf, 0xb9, 0xa9, 0x5d, 0xda, 0x56, 0x45, + 0x50, 0xa3, 0x0d, 0x92, 0x6a, 0xbc, 0x6c, 0xc8, 0xa0, 0xe5, 0x48, 0x3e, + 0x95, 0x32, 0x93, 0xe6, 0xaf, 0xa6, 0x6b, 0x9a, 0xfa, 0x97, 0x62, 0xf4, + 0x6e, 0x5c, 0xe0, 0x1e, 0x87, 0xfb, 0xb5, 0xa3, 0x6e, 0xe4, 0x74, 0x3f, + 0xf8, 0xed, 0x67, 0xc6, 0x59, 0x25, 0xc0, 0xe9, 0x8e, 0xb8, 0xad, 0x18, + 0x89, 0x31, 0x96, 0x57, 0x07, 0x1d, 0x70, 0x28, 0x40, 0x3e, 0xe1, 0xa4, + 0x78, 0x1b, 0x04, 0x02, 0x47, 0x75, 0xab, 0x62, 0xe1, 0xd4, 0x95, 0x5e, + 0x83, 0xbe, 0xdc, 0xe6, 0xab, 0x30, 0x2f, 0x00, 0x6c, 0xe7, 0x2b, 0x53, + 0xba, 0x95, 0x68, 0x59, 0x4f, 0x53, 0xce, 0x2a, 0x9b, 0x61, 0x64, 0x69, + 0x5b, 0x5d, 0xba, 0x10, 0xdb, 0x54, 0xe3, 0xa6, 0x63, 0xa7, 0xcb, 0x75, + 0x21, 0x49, 0x32, 0x14, 0x06, 0x1d, 0x76, 0x74, 0xaa, 0xb6, 0xed, 0xe6, + 0xbe, 0xd1, 0x26, 0x18, 0x76, 0xc5, 0x4e, 0xfb, 0x9a, 0xd6, 0x5c, 0x9e, + 0x84, 0xad, 0x47, 0x33, 0x1f, 0x2a, 0x23, 0x8a, 0xe5, 0xe3, 0xb6, 0x88, + 0x6c, 0x5e, 0x46, 0x72, 0x07, 0x4a, 0xb3, 0x0e, 0xa2, 0x50, 0xe5, 0xa3, + 0x88, 0x9f, 0xae, 0x2a, 0x8c, 0x7c, 0xe9, 0xe1, 0x97, 0xef, 0x2a, 0x8e, + 0x05, 0x4e, 0xb2, 0x79, 0x80, 0x0d, 0xca, 0x18, 0x81, 0xc1, 0x1d, 0x6a, + 0xb9, 0x98, 0xb9, 0x51, 0x66, 0x6b, 0xf8, 0xe4, 0x2d, 0x88, 0x80, 0x2c, + 0x3b, 0x37, 0x15, 0x1a, 0x5e, 0x40, 0x86, 0x30, 0xf0, 0x36, 0xd1, 0xf2, + 0x37, 0x3d, 0x7e, 0x94, 0xd0, 0x0e, 0xf9, 0x15, 0xb6, 0x92, 0xa3, 0x3c, + 0x0a, 0xaf, 0x08, 0x26, 0x2b, 0x8c, 0xf6, 0x62, 0x46, 0x6a, 0x94, 0x9d, + 0x85, 0xca, 0x69, 0xc0, 0xba, 0x6c, 0xcd, 0x86, 0x32, 0xc6, 0xa7, 0x9e, + 0x57, 0x38, 0xaa, 0xd7, 0xb6, 0x56, 0xc0, 0x09, 0x22, 0x9c, 0x32, 0xee, + 0xc6, 0xd3, 0xd4, 0x0a, 0xa8, 0x99, 0x91, 0x57, 0x0a, 0x09, 0x20, 0x1e, + 0xb4, 0xc7, 0xc2, 0xc7, 0x27, 0xcb, 0x86, 0x5a, 0xae, 0x64, 0xfa, 0x05, + 0xbc, 0xc8, 0xe5, 0x80, 0x70, 0x43, 0x8c, 0x7b, 0x52, 0xfd, 0x85, 0x99, + 0x77, 0x0e, 0x57, 0x1d, 0x45, 0x12, 0xe1, 0x23, 0x81, 0xb0, 0x49, 0x20, + 0x0a, 0x5d, 0xa0, 0x73, 0x9c, 0x7d, 0x69, 0x5d, 0x5c, 0x2c, 0xca, 0xf2, + 0x42, 0x46, 0xef, 0x4a, 0x88, 0xc0, 0x70, 0x78, 0xe2, 0xac, 0xf9, 0x3b, + 0x9c, 0xae, 0x70, 0x76, 0x93, 0xc5, 0x47, 0x1c, 0xee, 0xab, 0xb4, 0x36, + 0x47, 0xa1, 0x19, 0xa4, 0xec, 0x0a, 0xe5, 0x19, 0x23, 0x3b, 0xf9, 0x1c, + 0xe2, 0xaa, 0x4a, 0x9f, 0x29, 0xad, 0x62, 0xcc, 0xce, 0x01, 0x50, 0x77, + 0x70, 0x32, 0x31, 0x55, 0x1c, 0x23, 0xb1, 0xdc, 0x0a, 0x76, 0xe3, 0x9a, + 0x56, 0x4c, 0x2f, 0x62, 0x82, 0x20, 0x25, 0xb1, 0xd3, 0x15, 0x5e, 0x68, + 0xc0, 0x56, 0xe0, 0x1a, 0xd1, 0xf2, 0x23, 0x8f, 0x78, 0x12, 0x8e, 0x3a, + 0x13, 0xc5, 0x56, 0x7b, 0x76, 0x64, 0x24, 0x72, 0x3d, 0x45, 0x4f, 0x2b, + 0xb8, 0xee, 0x64, 0x3c, 0x3f, 0x3f, 0x04, 0x8a, 0x8a, 0x68, 0xdb, 0x3c, + 0x61, 0xab, 0x46, 0x48, 0x8a, 0x9e, 0x9c, 0xd3, 0x0c, 0x3f, 0x20, 0x27, + 0xad, 0x09, 0x81, 0x8e, 0xea, 0x14, 0x1c, 0xf0, 0x7d, 0xe9, 0xf1, 0x45, + 0x94, 0x24, 0x77, 0xab, 0xb2, 0xc6, 0x30, 0x41, 0xa2, 0x0b, 0x60, 0x51, + 0xbb, 0x7d, 0x2a, 0xee, 0x05, 0x07, 0xb6, 0x04, 0x72, 0x3a, 0xd5, 0x59, + 0xad, 0x39, 0xe2, 0xb6, 0x9a, 0x02, 0x00, 0xcf, 0x34, 0xc7, 0xb6, 0x1b, + 0x70, 0x78, 0x3e, 0xf5, 0x6a, 0x6d, 0x0a, 0xc7, 0x2f, 0x2c, 0x04, 0x35, + 0x44, 0xd6, 0xff, 0x00, 0x2f, 0x3d, 0x6b, 0x6e, 0xe2, 0xd4, 0x16, 0x23, + 0x1c, 0xd5, 0x59, 0x2d, 0xf6, 0x8a, 0xe9, 0x8c, 0xee, 0x62, 0xd5, 0x8c, + 0x4b, 0xc5, 0xd8, 0x01, 0x07, 0xf1, 0xa6, 0x6d, 0xdd, 0x07, 0x3c, 0x8e, + 0xf9, 0xab, 0xad, 0x18, 0x69, 0x71, 0xd4, 0x54, 0xaf, 0x0e, 0x62, 0x38, + 0x5c, 0x60, 0x57, 0x47, 0x36, 0x88, 0xca, 0xc7, 0x33, 0x71, 0x03, 0x16, + 0x60, 0x9c, 0x0a, 0xa5, 0xcb, 0x8d, 0xa4, 0xfc, 0xc3, 0xa6, 0x2b, 0x69, + 0xd7, 0xf7, 0x8f, 0x58, 0xbe, 0x5e, 0x1c, 0x91, 0x9c, 0xf7, 0xaf, 0x42, + 0x0e, 0xe8, 0xe2, 0x9a, 0xb3, 0x1f, 0x9d, 0xe8, 0x0e, 0x70, 0x47, 0x5f, + 0x7a, 0x90, 0x49, 0x82, 0x8c, 0x0e, 0x79, 0xc5, 0x31, 0x53, 0x1e, 0xbc, + 0x52, 0xae, 0xd1, 0x81, 0xcd, 0x58, 0x1d, 0xd7, 0x81, 0xfe, 0x19, 0xf8, + 0xa3, 0xe2, 0x35, 0xf4, 0xd6, 0x9e, 0x18, 0xd0, 0xaf, 0x35, 0xab, 0x88, + 0x54, 0x3c, 0x89, 0x68, 0x80, 0xed, 0x07, 0xa6, 0x73, 0x5f, 0x41, 0x7c, + 0x30, 0xf8, 0x17, 0xf1, 0x4b, 0xc1, 0x16, 0x8f, 0x79, 0x7b, 0xf0, 0xe3, + 0x5a, 0x95, 0x63, 0x98, 0x48, 0xd2, 0x79, 0x6b, 0x85, 0x03, 0xaf, 0x7a, + 0xfa, 0xff, 0x00, 0xf6, 0x2f, 0xf8, 0x03, 0x17, 0xec, 0xfb, 0xf1, 0x6f, + 0xc5, 0x1a, 0x43, 0x6b, 0x91, 0xeb, 0x29, 0x3e, 0x97, 0x6f, 0x74, 0x93, + 0xed, 0x09, 0x82, 0x59, 0x86, 0xdc, 0x64, 0xe7, 0xa5, 0x7d, 0x7b, 0xe2, + 0x39, 0x2d, 0xb5, 0x8b, 0x3b, 0xfd, 0x19, 0xae, 0x21, 0xb6, 0x4b, 0x8b, + 0x62, 0x86, 0x55, 0x70, 0x1d, 0x77, 0x64, 0x74, 0xa9, 0x96, 0x1d, 0x4a, + 0x2a, 0xe7, 0x9f, 0x3c, 0x6c, 0xa1, 0x2f, 0x73, 0x63, 0xf0, 0xc7, 0xf6, + 0x83, 0xb7, 0xd5, 0x6d, 0xbc, 0x52, 0x96, 0xfa, 0xb6, 0x89, 0x79, 0xa1, + 0x5e, 0xb2, 0x99, 0xfe, 0xcf, 0x76, 0xa1, 0x49, 0x46, 0x27, 0x04, 0x63, + 0xb7, 0x06, 0xbc, 0x96, 0x68, 0x3f, 0x76, 0xc3, 0xda, 0xbf, 0x4f, 0xff, + 0x00, 0x6b, 0xcf, 0xd9, 0xc3, 0xfe, 0x17, 0xbf, 0xed, 0x05, 0x2c, 0x70, + 0xf8, 0x82, 0x0d, 0x22, 0x3d, 0x37, 0xc3, 0xd0, 0xca, 0x5a, 0x44, 0x0c, + 0x09, 0xdf, 0x27, 0x19, 0xc8, 0xf4, 0xfd, 0x6b, 0xf3, 0xa3, 0x53, 0xf0, + 0xc5, 0xc6, 0x9f, 0x7d, 0x79, 0x66, 0xe3, 0xcf, 0x6b, 0x79, 0x5e, 0x2f, + 0x31, 0x07, 0x0d, 0xb4, 0x91, 0x91, 0xf5, 0xc5, 0x73, 0xcd, 0x2a, 0x09, + 0x3e, 0x87, 0xa1, 0x46, 0xaa, 0xc4, 0x2f, 0x33, 0x90, 0x4b, 0x76, 0xc6, + 0x00, 0xe6, 0x9f, 0x05, 0xbb, 0x0b, 0xb8, 0xc1, 0x15, 0xd1, 0x7f, 0x62, + 0xce, 0xbc, 0x79, 0x4d, 0xf4, 0xdb, 0x48, 0x34, 0x79, 0x85, 0xc4, 0x60, + 0xc4, 0xc3, 0x9f, 0xee, 0xd4, 0xfb, 0x78, 0xf7, 0x36, 0xf6, 0x6c, 0xcd, + 0xb9, 0xb4, 0x3e, 0x59, 0x38, 0xcd, 0x77, 0x3e, 0x1d, 0xd2, 0x84, 0xba, + 0x3c, 0x4c, 0xca, 0x0f, 0x15, 0x93, 0x77, 0xa4, 0xb7, 0x90, 0x71, 0x1b, + 0x67, 0x1e, 0x95, 0xd9, 0xf8, 0x7f, 0x4d, 0x23, 0x48, 0x8b, 0x82, 0x38, + 0xe6, 0xbc, 0xca, 0xf5, 0xaf, 0x03, 0xba, 0x9d, 0x3b, 0x4c, 0xe6, 0xf4, + 0xfb, 0x12, 0x9a, 0xf5, 0xc2, 0xaa, 0xe0, 0x79, 0x79, 0xaf, 0x43, 0xd0, + 0x74, 0xb5, 0x64, 0xce, 0x37, 0x7c, 0x83, 0x35, 0xcc, 0xe9, 0xd6, 0x83, + 0xfb, 0x7e, 0x74, 0x23, 0xe6, 0x31, 0xf5, 0xfc, 0x6b, 0xd2, 0x3c, 0x27, + 0x62, 0xdf, 0xbf, 0x52, 0x07, 0xca, 0x00, 0xaf, 0x3e, 0xbc, 0x9c, 0xa3, + 0x7f, 0x23, 0xaa, 0x92, 0xb4, 0x8c, 0xab, 0x8d, 0x28, 0x3a, 0x95, 0x09, + 0xc6, 0x2b, 0x16, 0x1b, 0x0d, 0xbb, 0x38, 0xaf, 0x41, 0xbd, 0xb7, 0x68, + 0x6d, 0x64, 0x97, 0x68, 0xdc, 0xbd, 0xb1, 0x58, 0xb6, 0xfa, 0x53, 0x33, + 0xc7, 0xc0, 0x00, 0xf3, 0x5c, 0xb0, 0x67, 0x44, 0x8a, 0xd6, 0x36, 0x7b, + 0x9b, 0xee, 0xf5, 0x15, 0xa1, 0x6f, 0x64, 0x01, 0x39, 0xc0, 0xe3, 0xbd, + 0x68, 0xd9, 0x69, 0x63, 0xcc, 0x21, 0xc9, 0xf4, 0x15, 0xa9, 0x69, 0xa5, + 0xaa, 0x29, 0xdc, 0x9f, 0xc5, 0x8e, 0x2a, 0x84, 0x93, 0x66, 0x65, 0xad, + 0xa8, 0x8e, 0x40, 0x58, 0xe5, 0x3b, 0xed, 0x19, 0xad, 0xfb, 0x00, 0x80, + 0x96, 0x8e, 0x22, 0xe0, 0x0c, 0xfc, 0xdc, 0x62, 0xa6, 0xb7, 0xb2, 0x11, + 0x29, 0x5d, 0xbb, 0x8f, 0x9a, 0xa3, 0x18, 0xfa, 0xd5, 0xbb, 0x3b, 0x03, + 0x1c, 0xee, 0x14, 0x70, 0xd1, 0x9f, 0xd6, 0xa2, 0xda, 0x9b, 0x25, 0x62, + 0x6d, 0x3a, 0xdd, 0xf2, 0xc3, 0x64, 0x68, 0x7b, 0x86, 0x19, 0xad, 0x37, + 0xd3, 0xee, 0x61, 0x9d, 0xc0, 0x95, 0x94, 0x29, 0x03, 0x0b, 0xc6, 0x72, + 0x2a, 0xed, 0x96, 0x92, 0x64, 0xb5, 0xf3, 0x80, 0xc1, 0xc9, 0x0c, 0x6b, + 0x41, 0x21, 0x69, 0x75, 0x07, 0xdc, 0x01, 0x51, 0x20, 0x5c, 0xe7, 0x83, + 0x55, 0xcb, 0xa1, 0xaa, 0xde, 0xc5, 0x6b, 0x5b, 0x14, 0x7b, 0x6b, 0xa6, + 0x90, 0xb3, 0x3a, 0xc5, 0x91, 0x93, 0x9e, 0x6a, 0xf2, 0xdb, 0xc7, 0x04, + 0x7b, 0x90, 0x96, 0xc2, 0x82, 0xc7, 0x1d, 0x33, 0x4d, 0xb4, 0xb4, 0x68, + 0x7c, 0xe8, 0x71, 0x97, 0x90, 0x85, 0x04, 0x74, 0xea, 0x6b, 0xa1, 0xb5, + 0xd0, 0x24, 0xd8, 0xc1, 0xd5, 0xb0, 0xd1, 0x8e, 0x8b, 0x9c, 0xd3, 0x51, + 0x6f, 0x44, 0x5d, 0xd1, 0x57, 0x4c, 0xb1, 0x12, 0xc6, 0x32, 0x80, 0x91, + 0x38, 0xea, 0x3b, 0x0a, 0xeb, 0x53, 0x4b, 0xc0, 0x9e, 0x40, 0x98, 0x44, + 0xec, 0x07, 0x6a, 0xe5, 0xdf, 0x52, 0xfe, 0xce, 0x96, 0x38, 0xa5, 0x8f, + 0xca, 0x66, 0x77, 0x60, 0x73, 0xf4, 0xc5, 0x74, 0x49, 0xe2, 0x42, 0x62, + 0x90, 0xcd, 0xe5, 0x01, 0x20, 0x0e, 0x07, 0x98, 0x17, 0xf4, 0xf4, 0xae, + 0x98, 0x72, 0xad, 0x19, 0x9b, 0xbb, 0x1b, 0x77, 0x6b, 0xbe, 0x1b, 0xb8, + 0x48, 0xdb, 0xbd, 0x95, 0x01, 0x3e, 0xf8, 0x35, 0x7a, 0xc2, 0xd0, 0x88, + 0xa2, 0x57, 0xc9, 0x5f, 0x2c, 0x60, 0x03, 0xd2, 0xb9, 0xfd, 0x4b, 0xc5, + 0x90, 0x5a, 0xb4, 0x6d, 0x2c, 0xf6, 0xe4, 0x4b, 0x3a, 0x92, 0xa1, 0xc7, + 0x4c, 0x54, 0xb6, 0xbe, 0x32, 0xd2, 0xe2, 0xf2, 0x65, 0x6d, 0x5a, 0xd2, + 0x15, 0x5d, 0xcb, 0xb0, 0xb0, 0xc0, 0x1c, 0x71, 0xd6, 0xb4, 0x4e, 0x37, + 0x24, 0xd2, 0x65, 0x2b, 0x3c, 0x03, 0x8c, 0x79, 0x8d, 0x81, 0xed, 0x8a, + 0xe7, 0x56, 0xdc, 0xcb, 0xab, 0xdd, 0xed, 0x0c, 0x0b, 0x6f, 0xdc, 0xbd, + 0xc9, 0xe0, 0x54, 0xf7, 0xfe, 0x36, 0xf0, 0xcb, 0x4a, 0x19, 0xb5, 0x88, + 0x1a, 0x54, 0xc9, 0x50, 0x8d, 0x80, 0x2b, 0x1b, 0x49, 0xf1, 0xf6, 0x8b, + 0x6a, 0xa8, 0x24, 0xbb, 0x1b, 0xf7, 0x93, 0xb8, 0x02, 0x4f, 0x5e, 0x2a, + 0x64, 0xaf, 0xa0, 0xb9, 0xac, 0x6b, 0xdf, 0x46, 0x45, 0xad, 0xb1, 0xe7, + 0x7b, 0x1e, 0x7e, 0x82, 0xaa, 0xea, 0x0a, 0xd1, 0x58, 0x6a, 0x2e, 0x8f, + 0xc8, 0x70, 0x06, 0x7f, 0x95, 0x44, 0x7e, 0x23, 0xe8, 0x22, 0xcd, 0x11, + 0x66, 0x99, 0x88, 0xe4, 0x8f, 0x2c, 0x9e, 0x7f, 0x2a, 0xcb, 0xd5, 0x7c, + 0x6b, 0xa6, 0x6a, 0xb0, 0xa5, 0xa5, 0x8c, 0x57, 0x12, 0x4f, 0x3b, 0xae, + 0x14, 0x42, 0x46, 0x48, 0x3d, 0xcd, 0x35, 0x05, 0x73, 0x39, 0x48, 0xd9, + 0xfb, 0x3a, 0xc5, 0x6a, 0x70, 0xb2, 0x2e, 0x24, 0x04, 0x71, 0xdf, 0xb1, + 0xad, 0x00, 0x1d, 0x9a, 0xdc, 0x32, 0x36, 0x01, 0xc9, 0x72, 0x3a, 0xd5, + 0x6b, 0x9d, 0x5e, 0x39, 0xa2, 0x78, 0xfe, 0xcd, 0x72, 0x08, 0xc6, 0x30, + 0xa3, 0xfc, 0x69, 0xad, 0xa9, 0xaa, 0x2a, 0xe2, 0x19, 0x99, 0x71, 0x8e, + 0x6b, 0x78, 0xc6, 0xcc, 0xe6, 0x94, 0xae, 0x61, 0xeb, 0x51, 0x6c, 0xd1, + 0x21, 0x2b, 0x9e, 0x6e, 0x40, 0xc0, 0x1d, 0x7e, 0x6a, 0xa3, 0x73, 0x6c, + 0xd1, 0x28, 0xf3, 0x22, 0x60, 0x4c, 0x99, 0x04, 0xf6, 0xf4, 0x34, 0x78, + 0xf3, 0xc5, 0x2d, 0xa5, 0xd8, 0x5b, 0x34, 0x7a, 0x64, 0xf3, 0x8f, 0xb4, + 0x23, 0x6c, 0x8f, 0x19, 0xeb, 0x5c, 0xd6, 0xb7, 0xf1, 0x02, 0xea, 0xe2, + 0x35, 0x1f, 0xd8, 0x57, 0x80, 0xee, 0x07, 0x9c, 0x70, 0x29, 0x54, 0x8a, + 0x22, 0x32, 0x35, 0x35, 0x37, 0xf2, 0xa6, 0x8f, 0x70, 0x62, 0x8a, 0x73, + 0xba, 0xb9, 0xeb, 0xe9, 0x18, 0x68, 0x01, 0xf7, 0x60, 0x19, 0x80, 0xcf, + 0xaf, 0x35, 0x56, 0xeb, 0xc5, 0x82, 0x65, 0xc3, 0x68, 0xd7, 0xc3, 0x3d, + 0x78, 0x1f, 0xe3, 0x59, 0x1a, 0xe7, 0x8d, 0xc4, 0x3a, 0x74, 0x76, 0xcb, + 0xa4, 0xde, 0x00, 0x65, 0x53, 0x92, 0x07, 0xad, 0x44, 0x2d, 0xd4, 0x53, + 0x7d, 0x88, 0x75, 0x50, 0x36, 0xb6, 0x55, 0x94, 0x97, 0xcf, 0x3f, 0xce, + 0xb9, 0xcd, 0x4f, 0x7a, 0x36, 0x08, 0x62, 0x07, 0x7a, 0xbd, 0xaa, 0xf8, + 0xae, 0x3b, 0x9f, 0xf9, 0x71, 0xbb, 0x03, 0x20, 0xf2, 0x95, 0xcf, 0x6a, + 0x3a, 0xdd, 0xbc, 0xa4, 0xe6, 0x0b, 0xa1, 0xf5, 0x4a, 0x87, 0xb9, 0x06, + 0x2d, 0xe4, 0x98, 0x80, 0xe4, 0xf5, 0x6a, 0xc3, 0xba, 0x93, 0x0c, 0x79, + 0x20, 0xf6, 0xab, 0xba, 0xb6, 0xaf, 0x6e, 0xa1, 0x11, 0x16, 0x51, 0xf3, + 0x03, 0xf3, 0x2d, 0x62, 0xde, 0xea, 0x31, 0x48, 0xc0, 0xfc, 0xdf, 0x85, + 0x68, 0x96, 0xc2, 0x20, 0xb8, 0x99, 0x9c, 0x10, 0x7b, 0x77, 0xac, 0xe9, + 0xbe, 0xf8, 0x3c, 0x63, 0xde, 0xa7, 0x96, 0x78, 0x5b, 0xa3, 0xb0, 0xaa, + 0xb2, 0x5c, 0x47, 0xbc, 0x61, 0xb3, 0xf5, 0xae, 0x88, 0xa2, 0x59, 0x5a, + 0x4c, 0xab, 0x13, 0xc1, 0x19, 0xa6, 0x96, 0x56, 0x07, 0x03, 0x03, 0x1d, + 0xa9, 0xd2, 0xc8, 0x8e, 0xc7, 0xe7, 0x00, 0x1f, 0x4a, 0x88, 0x00, 0x33, + 0xfb, 0xc0, 0x6b, 0xa1, 0x10, 0x58, 0xb5, 0x52, 0x17, 0x20, 0xd5, 0xe0, + 0x0b, 0x63, 0x8c, 0x9e, 0xbc, 0xd5, 0x1b, 0x53, 0x10, 0x45, 0xcb, 0x60, + 0xf3, 0xd2, 0xae, 0x0b, 0xa8, 0x50, 0x7c, 0xa7, 0x27, 0xeb, 0x59, 0x4e, + 0xf7, 0x2d, 0x6c, 0x5a, 0x83, 0x0f, 0x8e, 0x0f, 0x23, 0xa0, 0xab, 0x22, + 0x1c, 0x46, 0xfb, 0x86, 0x09, 0xe3, 0x9a, 0xcf, 0x8f, 0x5d, 0xfb, 0x32, + 0x80, 0x23, 0xdc, 0xdf, 0x4a, 0x79, 0xd4, 0x67, 0xb9, 0xcf, 0xee, 0xb0, + 0x4f, 0xad, 0x47, 0x24, 0x84, 0xe4, 0x8d, 0x48, 0xa2, 0x5c, 0x03, 0xe6, + 0x60, 0x63, 0x1c, 0x54, 0xc1, 0x96, 0x39, 0x51, 0x94, 0xe7, 0x1d, 0x73, + 0x58, 0x72, 0xdc, 0x5d, 0x44, 0x81, 0xb0, 0xa0, 0x0e, 0xd9, 0xaa, 0xfa, + 0x76, 0xb0, 0xf3, 0x6a, 0xb0, 0x40, 0xf1, 0xe3, 0x71, 0xeb, 0xbb, 0x35, + 0xa4, 0x69, 0x49, 0xae, 0x6b, 0x9c, 0xf2, 0xab, 0x14, 0xd4, 0x4e, 0xbe, + 0x26, 0x52, 0xfb, 0x8f, 0xcc, 0x7e, 0x95, 0x6a, 0x29, 0x30, 0x78, 0x4f, + 0xd2, 0xa0, 0x88, 0x46, 0x01, 0xcf, 0x18, 0xab, 0x70, 0x3c, 0x78, 0xe3, + 0xf3, 0xc5, 0x62, 0xcd, 0x0e, 0xdf, 0xe0, 0xdc, 0xdb, 0xbe, 0x27, 0x78, + 0x69, 0x58, 0x84, 0x06, 0xf6, 0x31, 0xbb, 0x3d, 0x39, 0xaf, 0xd6, 0xcf, + 0xec, 0xc1, 0x71, 0x6d, 0x18, 0x49, 0x56, 0x54, 0x2a, 0x07, 0xcc, 0x38, + 0x35, 0xf9, 0x19, 0xf0, 0x97, 0x1f, 0xf0, 0xb3, 0xfc, 0x35, 0xff, 0x00, + 0x5f, 0x89, 0xfc, 0xeb, 0xf5, 0xab, 0x46, 0xb9, 0x47, 0xd2, 0xec, 0x63, + 0x13, 0xa2, 0x4e, 0xd0, 0x07, 0x58, 0xcb, 0x60, 0xb0, 0x00, 0x73, 0xf4, + 0xac, 0xa6, 0x93, 0x3b, 0xb0, 0xed, 0xa8, 0xfc, 0xcf, 0x9e, 0x3e, 0x3d, + 0xf8, 0x66, 0x1f, 0x0a, 0x68, 0xba, 0x9e, 0xa5, 0xa9, 0xc4, 0x63, 0x81, + 0x5a, 0x66, 0xb7, 0x31, 0x0c, 0xc6, 0x15, 0xc0, 0xc8, 0x3e, 0x9d, 0x2b, + 0xe0, 0xaf, 0x08, 0xde, 0x9b, 0x4f, 0x12, 0xd9, 0xdc, 0xdb, 0xa8, 0x2c, + 0x93, 0x07, 0x45, 0xc6, 0x73, 0xf3, 0x70, 0x31, 0x5f, 0xa1, 0x5f, 0x18, + 0xbc, 0x51, 0x37, 0x88, 0x74, 0x3b, 0xfd, 0x22, 0xfe, 0xc1, 0x61, 0xb6, + 0xb9, 0x17, 0x02, 0x41, 0x2a, 0xee, 0x75, 0xf2, 0xd5, 0x70, 0x7f, 0x5a, + 0xfc, 0xfd, 0xf0, 0x0c, 0x42, 0x3f, 0x1b, 0xe9, 0xca, 0x9f, 0x32, 0xad, + 0xd2, 0x85, 0x3d, 0x3f, 0x8a, 0xbb, 0xd3, 0xb5, 0x33, 0xcb, 0x9a, 0x6e, + 0xba, 0x57, 0x3f, 0x6b, 0xbe, 0x18, 0x6a, 0xd7, 0x1a, 0xf7, 0x80, 0xf4, + 0x3b, 0xdb, 0xd8, 0x5a, 0xde, 0xf2, 0x7b, 0x38, 0xda, 0x68, 0x9a, 0x32, + 0x85, 0x5b, 0x6f, 0x3c, 0x1e, 0x47, 0xaf, 0xe3, 0x5d, 0x22, 0x66, 0x3b, + 0x97, 0x1e, 0xeb, 0xd7, 0xd2, 0xb3, 0xbc, 0x33, 0xb8, 0xe8, 0xd6, 0x7b, + 0xc7, 0xcd, 0xe4, 0x47, 0x93, 0x9f, 0xf6, 0x45, 0x69, 0x46, 0xbb, 0xee, + 0x0e, 0x4f, 0xcb, 0x91, 0x5d, 0xf0, 0x56, 0x48, 0xc1, 0xc5, 0xc1, 0xb8, + 0xb7, 0x7b, 0x1f, 0x3f, 0xfe, 0xdf, 0xd1, 0xef, 0xf8, 0x31, 0x60, 0x40, + 0xc8, 0xfe, 0xd7, 0x87, 0xff, 0x00, 0x44, 0xcd, 0x5f, 0x0c, 0xfc, 0x27, + 0x65, 0x5f, 0x15, 0xe9, 0xca, 0x41, 0x1f, 0xbf, 0x51, 0xfa, 0xd7, 0xde, + 0x7f, 0xb7, 0x7c, 0x41, 0xfe, 0x0d, 0x58, 0xe4, 0xfc, 0xa3, 0x57, 0x87, + 0xff, 0x00, 0x45, 0x4d, 0x5f, 0x0b, 0x7c, 0x37, 0x09, 0xff, 0x00, 0x09, + 0x96, 0x98, 0xab, 0xcb, 0x7d, 0xa1, 0x3a, 0x7d, 0x6b, 0x6a, 0xf5, 0x2d, + 0x23, 0x92, 0x8c, 0x2f, 0x6f, 0x53, 0xf5, 0xd6, 0x31, 0xfb, 0xa4, 0xfa, + 0x0a, 0x76, 0xda, 0x8e, 0xd1, 0xb7, 0x5a, 0xc4, 0x7f, 0xd9, 0x1f, 0xca, + 0xa5, 0x26, 0xbb, 0xd4, 0xae, 0x8e, 0x76, 0xb5, 0x13, 0x6d, 0x1b, 0x69, + 0x73, 0x4b, 0x4f, 0x98, 0x56, 0x1a, 0x57, 0x8a, 0x40, 0xb8, 0xa7, 0x13, + 0x82, 0x3d, 0x3d, 0x68, 0x07, 0x23, 0x34, 0x73, 0x05, 0x84, 0x2b, 0x4b, + 0xb6, 0x82, 0x70, 0x09, 0xa4, 0x0d, 0x96, 0x23, 0xb6, 0x3a, 0xd1, 0xcc, + 0x16, 0x17, 0x14, 0x62, 0x96, 0x8a, 0x2e, 0x16, 0x13, 0x14, 0xb4, 0x99, + 0xe6, 0x8a, 0x2e, 0x3b, 0x1f, 0x20, 0x7e, 0xdc, 0x31, 0x79, 0xd7, 0xfa, + 0x37, 0xb2, 0x49, 0xff, 0x00, 0xb2, 0x57, 0x86, 0x7c, 0x02, 0xb7, 0xc7, + 0xc5, 0x4f, 0x0c, 0x8c, 0xff, 0x00, 0xcc, 0x42, 0x1f, 0xfd, 0x0c, 0x57, + 0xbb, 0xfe, 0xdb, 0x6f, 0xb2, 0xf7, 0x49, 0x27, 0xfb, 0x92, 0x7f, 0xec, + 0xb5, 0xe1, 0x9f, 0x00, 0xbf, 0xd2, 0x3e, 0x2b, 0x78, 0x64, 0x67, 0x18, + 0xd4, 0x20, 0x3c, 0x7f, 0xbe, 0x2b, 0xc8, 0x55, 0x6d, 0x56, 0xde, 0x67, + 0xa1, 0x5e, 0x9b, 0x74, 0xd3, 0xf2, 0x5f, 0x91, 0xfa, 0x5c, 0xa3, 0x0a, + 0x2a, 0x83, 0x91, 0xe6, 0x37, 0xbe, 0x7a, 0xfd, 0x6a, 0xf8, 0xe0, 0x56, + 0x6c, 0xc5, 0x44, 0xe0, 0x1e, 0x46, 0x4f, 0x15, 0xe9, 0x54, 0x67, 0x1d, + 0x34, 0x71, 0x9f, 0x18, 0x60, 0xd4, 0xef, 0xbe, 0x1e, 0xeb, 0xd6, 0xfa, + 0x28, 0x0d, 0x7f, 0x25, 0x94, 0xa8, 0x80, 0xbe, 0xc1, 0xc8, 0xe7, 0xe6, + 0xfa, 0x66, 0xbf, 0x0d, 0xfc, 0x56, 0x92, 0x47, 0xab, 0xdd, 0xac, 0xbc, + 0x4a, 0xb2, 0x30, 0x6e, 0x73, 0xce, 0x79, 0xaf, 0xde, 0x0f, 0x1c, 0xdc, + 0xc1, 0x69, 0xe1, 0x5d, 0x62, 0x79, 0xa5, 0x86, 0x08, 0x92, 0xca, 0x62, + 0x64, 0x9c, 0x7c, 0x8a, 0x36, 0x9e, 0xbc, 0xd7, 0xe1, 0x2f, 0x8d, 0x58, + 0x3f, 0x88, 0x6f, 0xd9, 0x58, 0x3a, 0x99, 0x9c, 0xee, 0x5e, 0x87, 0x93, + 0xd2, 0xbc, 0xfa, 0xda, 0x49, 0x1d, 0x30, 0x84, 0x5a, 0x72, 0x5b, 0xe8, + 0x7b, 0x1f, 0xc1, 0xa9, 0x2e, 0x2f, 0xb4, 0x68, 0xa5, 0x91, 0x5e, 0x14, + 0x8c, 0xa8, 0x13, 0x05, 0xe6, 0xbd, 0xe1, 0x16, 0x38, 0x60, 0x1f, 0x68, + 0x99, 0xe7, 0xda, 0xb9, 0x2a, 0xcc, 0x79, 0xaf, 0x09, 0xf8, 0x77, 0x3c, + 0xad, 0xe1, 0x98, 0x45, 0xa9, 0x29, 0x1f, 0xd9, 0x0b, 0x04, 0x63, 0xf2, + 0xef, 0xc8, 0xe6, 0xbd, 0x88, 0x6a, 0x46, 0xd6, 0xca, 0xca, 0xd2, 0xf7, + 0x73, 0x5e, 0x5c, 0xc4, 0x7e, 0x64, 0x3f, 0x28, 0x20, 0x57, 0x3e, 0x96, + 0x3b, 0x29, 0x2d, 0x11, 0xf2, 0xaf, 0xc7, 0x99, 0xe1, 0xbb, 0xf1, 0xfc, + 0xd2, 0xdb, 0x47, 0xe4, 0xa4, 0x90, 0xa3, 0x6d, 0x1c, 0x60, 0xd7, 0x9a, + 0xca, 0xd2, 0xa7, 0x05, 0x89, 0xfa, 0xf3, 0x5d, 0xdf, 0xc5, 0xd9, 0x0c, + 0x9e, 0x30, 0xdc, 0xd8, 0xcf, 0x90, 0x9d, 0x2b, 0x88, 0x69, 0x18, 0x70, + 0xab, 0x9a, 0xe1, 0xa8, 0xfd, 0xe3, 0xae, 0x08, 0xa8, 0xec, 0xdf, 0xc4, + 0x01, 0xfd, 0x2a, 0x39, 0x67, 0x67, 0xc7, 0x00, 0x28, 0x39, 0xeb, 0x56, + 0x9a, 0x6c, 0x8f, 0x9a, 0x32, 0x2b, 0x1b, 0x5c, 0xb8, 0x92, 0xdb, 0x4d, + 0x9a, 0x68, 0xce, 0x18, 0x72, 0x2a, 0x60, 0xb9, 0xda, 0x45, 0xb7, 0xca, + 0xae, 0x6c, 0x2b, 0xc5, 0x32, 0x8f, 0x97, 0x9f, 0x6a, 0x6c, 0x91, 0xa2, + 0x90, 0x02, 0xb6, 0x47, 0xa1, 0xae, 0x57, 0x4b, 0xbd, 0xba, 0xba, 0x54, + 0x77, 0x93, 0x04, 0x8c, 0xfc, 0xa2, 0xb6, 0x96, 0x5b, 0xa0, 0x03, 0x2c, + 0xbc, 0xfb, 0x8a, 0x73, 0xa5, 0xc8, 0xed, 0x71, 0x29, 0xf3, 0x2b, 0xd8, + 0xb5, 0x32, 0x65, 0xcf, 0x18, 0xe3, 0xbd, 0x56, 0x91, 0x5c, 0x03, 0xf2, + 0xe0, 0xfb, 0x55, 0x7b, 0x8b, 0x9b, 0xa2, 0xa5, 0xe4, 0x72, 0xd8, 0x1c, + 0xd5, 0x71, 0xa9, 0x86, 0x5c, 0x33, 0x8a, 0x14, 0x1f, 0x41, 0xf3, 0x22, + 0xe3, 0xae, 0x0f, 0x26, 0xab, 0x4e, 0x30, 0xa4, 0x8e, 0x49, 0xf4, 0xa5, + 0x5d, 0x45, 0x1b, 0xd0, 0xd3, 0xe2, 0xbc, 0x8d, 0x66, 0x47, 0xdb, 0x9d, + 0xa4, 0x1c, 0x55, 0x25, 0x24, 0xf5, 0x42, 0xd0, 0x64, 0x31, 0xe5, 0x32, + 0x41, 0x07, 0xe9, 0x56, 0x56, 0x3d, 0xa3, 0x93, 0xc7, 0xa9, 0x35, 0x35, + 0xc5, 0xfc, 0x77, 0xd7, 0x05, 0xc4, 0x65, 0x47, 0xa6, 0x29, 0x0c, 0x89, + 0x8f, 0xf5, 0x47, 0xf2, 0xa9, 0x77, 0x12, 0xb0, 0xd0, 0xb9, 0x0b, 0xdf, + 0x9a, 0xb7, 0x12, 0xf2, 0x14, 0xaf, 0x3e, 0xb5, 0x4c, 0xcc, 0x72, 0x08, + 0x4c, 0x00, 0x73, 0x56, 0xe1, 0xb8, 0x6c, 0x83, 0xe5, 0xfe, 0x75, 0x94, + 0xae, 0x5a, 0xb1, 0x7a, 0x20, 0x02, 0x90, 0x58, 0x62, 0xaf, 0x46, 0x99, + 0x65, 0x38, 0xcf, 0x35, 0x4a, 0x1b, 0xc3, 0xc7, 0xee, 0x56, 0xad, 0x9b, + 0x89, 0x4a, 0xab, 0x2a, 0x28, 0xc1, 0xe9, 0x5c, 0xce, 0xf7, 0x2c, 0xd4, + 0x41, 0xb5, 0xd0, 0x36, 0x36, 0xb7, 0x1f, 0x4a, 0xb3, 0x0a, 0xaa, 0x17, + 0x04, 0x90, 0x3d, 0x31, 0x9c, 0xd5, 0x38, 0xa4, 0xb8, 0x60, 0xa7, 0x62, + 0x8c, 0x7b, 0xd5, 0xc8, 0xa6, 0xba, 0xc0, 0xfd, 0xda, 0x1f, 0xa9, 0xa1, + 0x34, 0x16, 0x2f, 0x41, 0x08, 0x30, 0x00, 0x39, 0xc2, 0xf7, 0xad, 0x54, + 0xd3, 0x27, 0x3a, 0x5c, 0xd7, 0x6c, 0xa9, 0x6e, 0x96, 0xe4, 0x61, 0x65, + 0xe0, 0xcc, 0x0f, 0xf7, 0x3d, 0x71, 0x58, 0x73, 0xdd, 0xdd, 0xc7, 0x6c, + 0xe5, 0x55, 0x01, 0xc5, 0x5a, 0x9e, 0xfb, 0x51, 0xd4, 0x6d, 0xed, 0xe2, + 0x9b, 0x63, 0xa4, 0x39, 0x31, 0xe4, 0xfd, 0xcc, 0xf5, 0xc5, 0x6b, 0x17, + 0x1b, 0x3e, 0x62, 0x1a, 0x7d, 0x0b, 0x21, 0x63, 0x8e, 0xe5, 0x19, 0x58, + 0x8e, 0x33, 0x95, 0x19, 0xab, 0x39, 0x8d, 0xad, 0xa6, 0x03, 0x25, 0x89, + 0xdd, 0xd3, 0x15, 0x5e, 0x39, 0xaf, 0x8e, 0x32, 0x90, 0xb7, 0xd4, 0xd4, + 0x8e, 0xda, 0x86, 0xc6, 0x1e, 0x54, 0x3f, 0x9d, 0x67, 0x62, 0xc8, 0xac, + 0xc9, 0xfb, 0x39, 0x51, 0xb4, 0x10, 0x9c, 0x66, 0xa3, 0x99, 0xd6, 0x51, + 0x13, 0x0f, 0x95, 0x81, 0xe7, 0xda, 0x9f, 0xa6, 0x59, 0x5c, 0x9b, 0x35, + 0x92, 0x46, 0x42, 0x5b, 0xda, 0xac, 0xc7, 0x14, 0xb1, 0xaa, 0xa3, 0x46, + 0xb2, 0x63, 0x8f, 0xbb, 0x57, 0x6b, 0x32, 0x53, 0xb9, 0x1c, 0x4c, 0x37, + 0xca, 0xc5, 0x94, 0x92, 0xa0, 0x71, 0x4e, 0x82, 0x06, 0x31, 0xbb, 0x22, + 0x16, 0xdc, 0xbe, 0xb5, 0x64, 0x47, 0xb5, 0x4e, 0x60, 0x41, 0x81, 0xcd, + 0x7a, 0x5f, 0x83, 0xfe, 0x0e, 0x6b, 0xba, 0xcf, 0x87, 0x97, 0x50, 0x48, + 0x03, 0x24, 0xac, 0x7c, 0xb0, 0xbd, 0x36, 0xd6, 0x91, 0x8f, 0x35, 0xc5, + 0xd7, 0x43, 0xc8, 0xee, 0x47, 0xfa, 0xa6, 0x51, 0xb4, 0x86, 0xa4, 0x92, + 0x22, 0xc9, 0x3b, 0x71, 0x96, 0x03, 0xbd, 0x7b, 0x48, 0xf8, 0x21, 0xac, + 0x6d, 0x2b, 0x25, 0xae, 0x42, 0x02, 0xc4, 0xec, 0xac, 0x9b, 0xef, 0x87, + 0x03, 0x4f, 0x45, 0x13, 0x98, 0xa2, 0xf3, 0x3a, 0x81, 0xc9, 0x14, 0xf9, + 0x18, 0xf5, 0x3c, 0xbc, 0xc2, 0x92, 0x5b, 0x29, 0x27, 0xa6, 0xde, 0x3d, + 0x2a, 0x12, 0x7c, 0xa3, 0x24, 0x67, 0xe6, 0x5c, 0x70, 0x6b, 0xb3, 0xd4, + 0xfe, 0x1e, 0xdc, 0xae, 0xe1, 0x67, 0x22, 0xdc, 0xa1, 0x18, 0x05, 0x41, + 0xc5, 0x67, 0x37, 0x80, 0x35, 0x54, 0x24, 0x8b, 0x49, 0x09, 0xc7, 0x3b, + 0x6a, 0x1a, 0x77, 0x1a, 0x5a, 0x1c, 0xea, 0x26, 0x67, 0x07, 0xbe, 0xcc, + 0x55, 0x63, 0x17, 0x94, 0xf8, 0x23, 0x23, 0x79, 0x19, 0xae, 0x91, 0xbc, + 0x25, 0xa9, 0x43, 0x99, 0xa4, 0x81, 0xd2, 0x30, 0xa4, 0x1d, 0xc2, 0xb3, + 0x7f, 0xb3, 0xff, 0x00, 0x78, 0x55, 0x83, 0x0e, 0x47, 0x6e, 0xb4, 0x68, + 0x2b, 0x33, 0x3d, 0xe2, 0xe1, 0x0e, 0x33, 0x89, 0x0d, 0x51, 0x99, 0x36, + 0xca, 0x7d, 0x09, 0xea, 0x6b, 0xa0, 0x1a, 0x7e, 0xe2, 0x8a, 0xb8, 0xf9, + 0x5b, 0x27, 0xb5, 0x65, 0xdd, 0xdb, 0x33, 0x33, 0x00, 0x72, 0x4e, 0x3b, + 0xd1, 0x6d, 0x00, 0xcc, 0x96, 0x2c, 0x3a, 0xe4, 0x7a, 0x83, 0xef, 0x55, + 0x4a, 0x83, 0xd6, 0xb5, 0x64, 0xb5, 0x72, 0xa3, 0x00, 0xf1, 0x9c, 0x9a, + 0xa1, 0x25, 0xbb, 0xf9, 0xdc, 0x02, 0x07, 0x7a, 0xcd, 0xa1, 0x95, 0x19, + 0xd9, 0x79, 0x0c, 0x7a, 0x91, 0x4c, 0x96, 0x46, 0xd9, 0x82, 0x14, 0xf5, + 0x3d, 0x2a, 0xd4, 0xb6, 0xcc, 0xaa, 0x4f, 0x62, 0xd4, 0xc6, 0x83, 0x74, + 0x79, 0x61, 0xd8, 0xd5, 0x2b, 0x93, 0x62, 0x8b, 0x6c, 0x97, 0xb6, 0xdc, + 0xfe, 0x35, 0x3d, 0xbc, 0x31, 0xec, 0xe1, 0xc7, 0x4e, 0xfc, 0x54, 0x6b, + 0x11, 0xc7, 0x4e, 0x86, 0xa6, 0x8e, 0xdc, 0xf1, 0x8a, 0xa4, 0x21, 0x24, + 0x80, 0x83, 0x9c, 0x64, 0x7b, 0x53, 0x66, 0x8b, 0x85, 0xe3, 0xb5, 0x39, + 0x55, 0x86, 0x7d, 0x45, 0x5c, 0x8e, 0x2f, 0x31, 0x06, 0xef, 0x4a, 0x87, + 0x61, 0xab, 0x9c, 0xf4, 0xd0, 0x13, 0xbb, 0x1c, 0x62, 0xa8, 0x48, 0xca, + 0xd9, 0x05, 0x71, 0x8a, 0xe9, 0xa6, 0xb0, 0x56, 0x2d, 0x8a, 0xcc, 0x9b, + 0x4c, 0x31, 0x86, 0xfa, 0xd5, 0xc6, 0x48, 0x4d, 0x33, 0x9a, 0x31, 0x03, + 0x75, 0x91, 0xe9, 0x56, 0x3e, 0xce, 0x5a, 0x26, 0xf9, 0x7b, 0x55, 0xf8, + 0x2c, 0xf1, 0x73, 0xf3, 0x28, 0xe9, 0x57, 0x5a, 0xd4, 0x18, 0x5f, 0xe4, + 0xc1, 0xc7, 0x5a, 0xd9, 0xd4, 0xd5, 0x22, 0x14, 0x4e, 0x1e, 0x58, 0x0b, + 0x4b, 0x27, 0x1e, 0xd5, 0x8c, 0x21, 0x3b, 0xcf, 0xd6, 0xbb, 0x2f, 0xb0, + 0xef, 0x9e, 0x5f, 0x90, 0x91, 0x58, 0x42, 0xc6, 0x42, 0xed, 0x88, 0xc9, + 0x19, 0xf4, 0xaf, 0x46, 0x95, 0x55, 0xa9, 0xc7, 0x38, 0x6a, 0x66, 0x98, + 0x8f, 0x61, 0xc5, 0x4d, 0x1c, 0x18, 0x03, 0x8e, 0xd5, 0xa6, 0x9a, 0x5c, + 0xcc, 0xa7, 0xf7, 0x6d, 0xf9, 0x56, 0xe7, 0x83, 0x3c, 0x15, 0x75, 0xe2, + 0xdf, 0x13, 0x69, 0x9a, 0x3a, 0x48, 0xb6, 0x7f, 0x6c, 0x9d, 0x61, 0x37, + 0x12, 0xaf, 0xca, 0x99, 0xee, 0x6b, 0x5f, 0x68, 0x9b, 0xb2, 0x64, 0x38, + 0x59, 0x5d, 0x9e, 0xc2, 0x27, 0xd6, 0x12, 0x6f, 0x32, 0x3b, 0xab, 0xd5, + 0xb8, 0x28, 0x01, 0x75, 0x95, 0xf7, 0xe3, 0xb0, 0xce, 0x73, 0x8a, 0x9e, + 0x49, 0xbc, 0x4f, 0x23, 0x6e, 0x7b, 0x9d, 0x55, 0x9c, 0xff, 0x00, 0x11, + 0x92, 0x52, 0x7f, 0x9d, 0x7d, 0xfd, 0x6d, 0xf0, 0xd7, 0x4a, 0x97, 0xe3, + 0xc7, 0xf6, 0x5d, 0xac, 0x51, 0xc1, 0x00, 0xf0, 0xe5, 0xbc, 0xa5, 0x9e, + 0x20, 0x72, 0x77, 0xb6, 0x5b, 0x1e, 0xb5, 0xf4, 0x6e, 0x89, 0xe0, 0x4d, + 0x12, 0x08, 0x04, 0x6d, 0x15, 0xb5, 0xeb, 0x8c, 0xaf, 0x98, 0xe8, 0x80, + 0x9f, 0xc3, 0x15, 0xc1, 0x53, 0x0d, 0xec, 0xfe, 0xdb, 0x6c, 0xc5, 0x66, + 0x0a, 0x6e, 0xca, 0x9a, 0xf9, 0xb3, 0xf1, 0xb9, 0xbf, 0xb6, 0x9a, 0xe5, + 0x8c, 0xf3, 0xde, 0xb5, 0xc9, 0x4d, 0xac, 0x64, 0x77, 0xde, 0x57, 0xd0, + 0xe7, 0x9c, 0x52, 0x5b, 0x69, 0xa0, 0xf2, 0x54, 0x73, 0xd4, 0x9a, 0xfd, + 0x20, 0xf1, 0xef, 0xc3, 0xdd, 0x11, 0xbe, 0x3e, 0xeb, 0x02, 0xde, 0xde, + 0x26, 0x98, 0xf8, 0x7a, 0x09, 0x9f, 0x20, 0x30, 0x47, 0xf3, 0x65, 0x1f, + 0x86, 0x40, 0x15, 0xf0, 0xb4, 0xbe, 0x1d, 0x07, 0x50, 0xbc, 0xdb, 0x10, + 0x2b, 0xe7, 0xc9, 0x8c, 0x74, 0xfb, 0xc6, 0xb8, 0xf1, 0x34, 0xbd, 0x9c, + 0x14, 0xb9, 0xaf, 0x73, 0xd1, 0xc1, 0xe2, 0x3e, 0xb1, 0x52, 0x54, 0xd4, + 0x6d, 0x6b, 0x1c, 0xdc, 0x1a, 0x6c, 0x4a, 0x99, 0x28, 0x84, 0xfa, 0x9a, + 0x73, 0xe9, 0xf1, 0x01, 0xc4, 0x69, 0x9f, 0xa0, 0xae, 0x43, 0xe2, 0x67, + 0x87, 0x35, 0x0d, 0x23, 0xc4, 0x71, 0x79, 0x17, 0x2e, 0xb1, 0x4e, 0x9b, + 0x8c, 0x60, 0x11, 0xb4, 0x8a, 0xe6, 0xac, 0xac, 0x75, 0x19, 0x2f, 0x23, + 0x56, 0xb9, 0x97, 0x69, 0x6e, 0x9b, 0x8d, 0x60, 0xb0, 0xfb, 0x5e, 0x5b, + 0x9d, 0x6e, 0xb6, 0xf6, 0x5b, 0x1e, 0xaa, 0xba, 0x64, 0x4f, 0x11, 0x6d, + 0x88, 0x7d, 0xf0, 0x2a, 0x85, 0xf6, 0x91, 0x82, 0x19, 0x13, 0x00, 0xfa, + 0x55, 0x7d, 0x1f, 0xc1, 0xec, 0xf0, 0x19, 0x26, 0x95, 0xc1, 0x27, 0x24, + 0x97, 0x35, 0xd1, 0xe9, 0x7a, 0x3b, 0x9b, 0x22, 0x15, 0x4b, 0x0c, 0x9f, + 0x7a, 0x99, 0x53, 0xe4, 0xeb, 0x72, 0xe3, 0x37, 0x2e, 0x87, 0x03, 0xa7, + 0xda, 0x88, 0x7c, 0x45, 0x26, 0x57, 0x9f, 0x2f, 0x9c, 0x7d, 0x6b, 0xd3, + 0x7c, 0x1b, 0x68, 0x67, 0x9e, 0xe4, 0x08, 0x9c, 0xfc, 0xb9, 0x04, 0x2f, + 0x15, 0xca, 0xe8, 0x9a, 0x43, 0x0f, 0x14, 0x6a, 0x19, 0x5e, 0x56, 0x0c, + 0xe0, 0xf6, 0xe6, 0xbd, 0x77, 0xe1, 0x86, 0x95, 0x25, 0xec, 0x93, 0xac, + 0x69, 0xb9, 0xd5, 0x07, 0x02, 0x94, 0xbd, 0xe5, 0x62, 0xa9, 0xfc, 0x46, + 0x3e, 0xa5, 0xa4, 0x91, 0x64, 0xe3, 0xcb, 0x62, 0xc4, 0x74, 0xc5, 0x72, + 0x53, 0x6a, 0x96, 0x76, 0x59, 0x12, 0xbe, 0xc6, 0x07, 0x90, 0x54, 0xf1, + 0x5e, 0xe5, 0x77, 0xa0, 0xc8, 0xbb, 0xc4, 0x89, 0xb5, 0x87, 0x63, 0x5c, + 0xde, 0xb3, 0xe0, 0xb8, 0x6f, 0xa0, 0x93, 0xcc, 0x80, 0x31, 0xda, 0x7e, + 0x6c, 0x57, 0x3f, 0xc3, 0xd0, 0xec, 0x70, 0xbe, 0xcc, 0xf3, 0x71, 0xe3, + 0x2d, 0x1a, 0x36, 0x4f, 0xde, 0xbb, 0x01, 0x8f, 0xba, 0x95, 0x28, 0xf8, + 0x8d, 0xa6, 0xc2, 0x70, 0xb1, 0x4a, 0xcb, 0xbb, 0x39, 0xc0, 0x15, 0x80, + 0x3c, 0x3b, 0x15, 0xb9, 0x91, 0x44, 0x6b, 0xf7, 0x88, 0xac, 0xaf, 0x12, + 0x69, 0x51, 0xa5, 0xa0, 0x08, 0xa0, 0x6d, 0x60, 0x46, 0x3a, 0x8a, 0xda, + 0xf4, 0xec, 0x72, 0xde, 0x6b, 0xa1, 0xd8, 0xcb, 0xf1, 0x46, 0x05, 0x97, + 0x7c, 0x7a, 0x7b, 0x11, 0x9c, 0x92, 0x5f, 0x19, 0xfd, 0x2a, 0x03, 0xf1, + 0x85, 0xe2, 0x9d, 0x4c, 0x36, 0x51, 0x2b, 0x0c, 0x7d, 0xe6, 0xc9, 0xac, + 0x31, 0x63, 0x30, 0xd1, 0x83, 0x60, 0x83, 0xe5, 0xf5, 0x02, 0xb8, 0xb2, + 0x8f, 0x15, 0xc5, 0xf4, 0x81, 0x72, 0xca, 0x80, 0x67, 0x1f, 0x5a, 0x14, + 0x62, 0xf6, 0x07, 0x52, 0x68, 0xf5, 0xb1, 0xf1, 0x9f, 0x5b, 0xba, 0x8b, + 0xca, 0xb4, 0xb5, 0x81, 0x7d, 0x42, 0xa1, 0x35, 0x41, 0x3e, 0x30, 0x6b, + 0xb6, 0x73, 0x3d, 0xb6, 0xf5, 0x8a, 0x62, 0xd9, 0x65, 0x11, 0xf3, 0x9a, + 0xe5, 0xfc, 0x0c, 0xb2, 0x49, 0x2c, 0x4c, 0xb9, 0x2c, 0xc9, 0x96, 0xac, + 0x6f, 0x10, 0xbd, 0xcd, 0xbf, 0x8b, 0x2e, 0xa4, 0x0b, 0xc8, 0xc1, 0xe7, + 0xe9, 0x44, 0x5b, 0x93, 0x1b, 0x9c, 0x92, 0xb9, 0xe9, 0xf6, 0xbe, 0x22, + 0xf1, 0xa6, 0xb5, 0x38, 0x6b, 0x76, 0xba, 0x66, 0x0d, 0xc6, 0xd0, 0x06, + 0x0d, 0x7d, 0x19, 0x6b, 0xfb, 0x2a, 0x7c, 0x67, 0xd4, 0x34, 0x3b, 0x2b, + 0xf4, 0xf1, 0x0d, 0x84, 0x91, 0xdc, 0xd9, 0x9b, 0x9f, 0x28, 0xdd, 0xb2, + 0x34, 0x60, 0x28, 0x60, 0x87, 0xe4, 0xc6, 0x4e, 0xee, 0xdc, 0x70, 0x79, + 0xe9, 0x5f, 0x2f, 0x7c, 0x3f, 0xf1, 0x1d, 0xfc, 0x9a, 0xd4, 0x4a, 0x18, + 0xe1, 0xf2, 0xc5, 0x47, 0x6a, 0xd0, 0xf8, 0x81, 0xf1, 0x27, 0xc6, 0x3e, + 0x2e, 0xf1, 0x6a, 0xfd, 0xb3, 0xc4, 0x9a, 0x84, 0x11, 0x69, 0xf0, 0x8b, + 0x18, 0x2d, 0xed, 0xa7, 0x68, 0x90, 0x44, 0xbd, 0x88, 0x07, 0x07, 0x3d, + 0xcf, 0x7c, 0x0a, 0xdb, 0x0e, 0xd7, 0xbd, 0xed, 0x3e, 0x56, 0x33, 0xab, + 0x39, 0x72, 0xae, 0x4d, 0xd9, 0xe9, 0xff, 0x00, 0x09, 0xfe, 0x0a, 0x78, + 0xcb, 0xe3, 0x4f, 0x88, 0x67, 0xd3, 0xe3, 0xd4, 0xa0, 0xb1, 0xfb, 0x32, + 0xb3, 0x49, 0x3d, 0xd4, 0xcc, 0xd8, 0xc1, 0xc6, 0x00, 0x51, 0xcf, 0xe9, + 0x58, 0x5f, 0x1d, 0xfe, 0x15, 0x78, 0x8b, 0xe0, 0x47, 0x89, 0xd3, 0x49, + 0xd6, 0x24, 0x8b, 0x52, 0x57, 0xb6, 0x5b, 0xa8, 0xae, 0xad, 0xa4, 0x6d, + 0x8d, 0x19, 0x62, 0xbc, 0x83, 0xc8, 0x20, 0xa9, 0x18, 0xae, 0xa7, 0xe0, + 0x6f, 0xc4, 0x8d, 0x6b, 0xc0, 0xb6, 0x13, 0x6a, 0x5a, 0x0c, 0xab, 0x0d, + 0xe2, 0xe6, 0x3d, 0xf3, 0x27, 0x98, 0x8c, 0x38, 0x24, 0x10, 0x7e, 0x95, + 0x27, 0xc4, 0x2f, 0x88, 0x9e, 0x20, 0xf8, 0xa5, 0xe2, 0x73, 0x7d, 0xe2, + 0x79, 0xe0, 0xbb, 0x79, 0x2d, 0x45, 0xaa, 0x47, 0x6d, 0x17, 0x96, 0x91, + 0xa0, 0x25, 0xb0, 0x06, 0x4f, 0x76, 0x34, 0xe3, 0x28, 0x7b, 0x16, 0xe4, + 0xbd, 0xff, 0x00, 0xd0, 0xa7, 0xcc, 0xe4, 0xb9, 0x76, 0x3c, 0x0a, 0x7d, + 0x7e, 0xf2, 0x1d, 0x8f, 0xf6, 0x15, 0xda, 0xc3, 0x72, 0x92, 0xd9, 0xc8, + 0xab, 0x9a, 0x4f, 0x89, 0x9e, 0xea, 0xee, 0x18, 0x1a, 0xc1, 0x7e, 0x76, + 0x00, 0x90, 0xff, 0x00, 0xfd, 0x6a, 0xef, 0x35, 0x9d, 0x06, 0x2b, 0xf7, + 0x56, 0x8d, 0x01, 0x48, 0x91, 0x54, 0x0c, 0x55, 0x7f, 0x0c, 0x78, 0x2c, + 0x3f, 0x8c, 0x74, 0xf8, 0x0a, 0x6e, 0x56, 0x95, 0x46, 0x40, 0xf5, 0x61, + 0x5c, 0x8a, 0xad, 0xfa, 0x1d, 0x1e, 0xca, 0xd6, 0xbb, 0x2b, 0x6a, 0xb7, + 0x71, 0xe8, 0xa1, 0x84, 0x9a, 0x73, 0x49, 0x86, 0xdb, 0x94, 0x97, 0x19, + 0xfd, 0x2a, 0x3f, 0x0c, 0xe9, 0x37, 0x7e, 0x2e, 0xba, 0xdb, 0x0c, 0x7a, + 0x94, 0x66, 0x59, 0xd2, 0xde, 0x2b, 0x7b, 0x76, 0x0f, 0x96, 0x6f, 0xba, + 0x33, 0x8f, 0x63, 0x5f, 0x45, 0x7c, 0x71, 0xf8, 0x5b, 0x6b, 0xa1, 0x78, + 0x6a, 0x59, 0x52, 0x20, 0x4a, 0x4b, 0x1b, 0x02, 0x17, 0x9e, 0x78, 0x23, + 0xf4, 0xab, 0x3f, 0xb3, 0xdf, 0x84, 0xe1, 0x4f, 0x0f, 0xcd, 0x7e, 0x21, + 0xfd, 0xed, 0xbe, 0xad, 0x66, 0xea, 0x59, 0x7a, 0x7c, 0xd8, 0xff, 0x00, + 0xd9, 0xab, 0x48, 0x54, 0x4a, 0x69, 0x35, 0xa3, 0x2e, 0x54, 0x1b, 0xd1, + 0x33, 0x73, 0xc3, 0xff, 0x00, 0xb2, 0x0f, 0x89, 0x74, 0xef, 0x0f, 0xe9, + 0xd3, 0xc1, 0x6d, 0x0d, 0xd5, 0xe4, 0x88, 0x0c, 0xd1, 0xde, 0x5d, 0xed, + 0x2a, 0x7b, 0x74, 0x52, 0x33, 0x57, 0xe3, 0xf8, 0x05, 0xe3, 0x9b, 0x24, + 0x9e, 0x79, 0xfc, 0x37, 0xa7, 0xda, 0xdb, 0x5b, 0x29, 0x76, 0x90, 0x5e, + 0x2b, 0xbb, 0x28, 0x19, 0x25, 0x40, 0x1d, 0x7e, 0xb8, 0xaf, 0xb2, 0x6c, + 0x01, 0xfb, 0x14, 0x5f, 0xee, 0x8a, 0x6e, 0xad, 0x8f, 0xec, 0x4d, 0x43, + 0x3d, 0x3c, 0x89, 0x3f, 0xf4, 0x13, 0x5e, 0xfa, 0xc3, 0xc2, 0x5e, 0xf5, + 0x8f, 0x13, 0xeb, 0x13, 0x8f, 0xba, 0x7e, 0x79, 0xea, 0x31, 0x8f, 0x32, + 0x18, 0xa3, 0x53, 0xb9, 0xd1, 0x89, 0xc1, 0xf4, 0xaa, 0x00, 0x28, 0x8e, + 0x4d, 0xc4, 0x82, 0xab, 0xbb, 0x9e, 0xd5, 0xa3, 0xaa, 0xab, 0x40, 0x62, + 0x7d, 0xbb, 0x5b, 0x6e, 0x33, 0xe9, 0x9a, 0xcd, 0xb8, 0x5d, 0xb1, 0x4c, + 0xca, 0x43, 0x6e, 0x88, 0xa8, 0x00, 0xf3, 0x5c, 0x3f, 0x68, 0xeb, 0x7b, + 0x18, 0x7e, 0x36, 0x24, 0xda, 0xdb, 0x6c, 0x3f, 0xc5, 0x0e, 0x7e, 0x9b, + 0x8d, 0x62, 0xdf, 0x0c, 0x16, 0xcf, 0x6a, 0xdf, 0xd6, 0x94, 0x4c, 0x91, + 0xab, 0x2e, 0x7e, 0x58, 0x8f, 0xfe, 0x3c, 0x6b, 0x22, 0xfe, 0x1d, 0xa3, + 0xa7, 0x7a, 0x9a, 0xdb, 0xa2, 0x69, 0xad, 0x19, 0xce, 0xde, 0x4a, 0x42, + 0x93, 0x5c, 0xee, 0xb7, 0x29, 0x16, 0xa8, 0x4f, 0x39, 0x99, 0x7f, 0xad, + 0x75, 0x17, 0xd6, 0xff, 0x00, 0x2f, 0x1c, 0x7b, 0x62, 0xb9, 0xcd, 0x7a, + 0x3d, 0xd6, 0xb1, 0x00, 0x39, 0x13, 0x2f, 0xf5, 0xac, 0xe3, 0xd4, 0x99, + 0x1c, 0xdd, 0xfd, 0xcb, 0xa1, 0x60, 0x46, 0x38, 0xae, 0x5f, 0x50, 0xb8, + 0x2c, 0x49, 0xed, 0x5d, 0x46, 0xa7, 0x17, 0x5f, 0x5a, 0xe5, 0xb5, 0x05, + 0xea, 0x31, 0xd2, 0xa1, 0x20, 0x39, 0x2d, 0x66, 0x5c, 0xdc, 0x27, 0xe3, + 0x58, 0xf3, 0xca, 0x49, 0x23, 0xbd, 0x6a, 0xeb, 0x44, 0x89, 0x53, 0xb7, + 0x5a, 0xc7, 0x93, 0x9e, 0x7b, 0xd6, 0xb1, 0x13, 0x2a, 0x4b, 0x21, 0xcf, + 0x6a, 0xac, 0xcc, 0x06, 0x7d, 0x4d, 0x58, 0x9c, 0x01, 0x55, 0x58, 0x00, + 0x2b, 0xaa, 0x36, 0x33, 0x63, 0x59, 0x86, 0x3a, 0x55, 0x79, 0xb0, 0x41, + 0xe0, 0x54, 0xa7, 0x15, 0x0c, 0xbc, 0x2d, 0x6d, 0x12, 0x5e, 0xc3, 0x36, + 0x28, 0x18, 0xdb, 0x48, 0x10, 0xf6, 0x24, 0x54, 0xa3, 0x9f, 0x7a, 0x52, + 0x30, 0x0d, 0x5d, 0xcc, 0xda, 0x23, 0x84, 0x16, 0xb8, 0x40, 0x49, 0x38, + 0x35, 0xd3, 0xc1, 0x92, 0xbc, 0x62, 0xb9, 0xa8, 0x47, 0xef, 0xe3, 0xfa, + 0xd7, 0x45, 0x11, 0x1b, 0x72, 0x0e, 0x39, 0xac, 0x6b, 0x74, 0x1c, 0x07, + 0x5e, 0x61, 0xa0, 0x6a, 0xc5, 0xd2, 0x81, 0xfe, 0xde, 0xb5, 0xe7, 0xa1, + 0x26, 0xb6, 0x6e, 0x3f, 0xd5, 0x1e, 0x3b, 0x76, 0xac, 0xad, 0x20, 0x7f, + 0xc4, 0xf6, 0x12, 0xaa, 0xc7, 0x00, 0xe7, 0xda, 0xae, 0x96, 0x90, 0x91, + 0xcb, 0x5b, 0xf8, 0x91, 0xf5, 0x3b, 0x68, 0xe4, 0xdb, 0x23, 0x67, 0xeb, + 0x57, 0xa2, 0x95, 0x5e, 0x3c, 0xa7, 0x6e, 0xb5, 0x52, 0x39, 0x17, 0x70, + 0x46, 0x52, 0x09, 0xf5, 0xab, 0x10, 0xf9, 0x60, 0xb0, 0x0c, 0x01, 0xf4, + 0x35, 0xc2, 0xce, 0xd3, 0xb6, 0xf8, 0x43, 0xb7, 0xfe, 0x16, 0x77, 0x86, + 0xb7, 0x10, 0xa3, 0xed, 0x69, 0xcb, 0x74, 0xeb, 0x5f, 0xa9, 0xda, 0x05, + 0xa4, 0x97, 0x3a, 0x8e, 0x93, 0x72, 0xa9, 0xfb, 0x88, 0xec, 0x0c, 0x0e, + 0xfd, 0x95, 0xc3, 0x0c, 0xaf, 0xe9, 0x5f, 0x94, 0x3e, 0x01, 0x9d, 0x6d, + 0xfc, 0x6f, 0xa1, 0xca, 0xd2, 0x79, 0x4a, 0x97, 0x51, 0xb6, 0xff, 0x00, + 0x4f, 0x98, 0x57, 0xeb, 0x3f, 0x86, 0xf5, 0x0b, 0xab, 0x2f, 0x0d, 0xdb, + 0xdc, 0x5c, 0x58, 0x18, 0x24, 0xb8, 0x9b, 0x26, 0x05, 0x6c, 0xec, 0x0c, + 0x78, 0x26, 0xb3, 0x9e, 0xa8, 0xec, 0xc3, 0xbb, 0x26, 0x78, 0xa7, 0xc6, + 0x59, 0xcd, 0xbe, 0xa5, 0x7a, 0x87, 0x25, 0x09, 0xbc, 0x1c, 0xf7, 0x06, + 0x34, 0xaf, 0x81, 0xfc, 0x1f, 0x63, 0x2d, 0xef, 0x89, 0x2d, 0xe1, 0x83, + 0x02, 0x47, 0x97, 0x6a, 0x96, 0x38, 0x00, 0x96, 0xaf, 0xd0, 0x2f, 0x8f, + 0xeb, 0x23, 0x6a, 0x8c, 0xdb, 0x41, 0x1f, 0x66, 0xb9, 0x6e, 0x9f, 0xf4, + 0xcd, 0x2b, 0xe0, 0xcf, 0x01, 0x5d, 0x47, 0x67, 0xe2, 0x7b, 0x59, 0xa5, + 0x25, 0x51, 0x26, 0x0c, 0x58, 0x0e, 0x98, 0x6a, 0xe9, 0x4d, 0x7b, 0x33, + 0x8e, 0x6b, 0xf7, 0xca, 0xe7, 0xec, 0xff, 0x00, 0xc3, 0x0b, 0x2b, 0xcd, + 0x27, 0xc0, 0x5a, 0x1d, 0x9d, 0xf3, 0xc7, 0x2d, 0xd5, 0xbd, 0x94, 0x51, + 0xbc, 0x91, 0x12, 0x55, 0xb0, 0xbd, 0x79, 0xae, 0x99, 0x08, 0x4c, 0xb7, + 0xfb, 0x42, 0xb1, 0x3c, 0x11, 0x7d, 0x0e, 0xab, 0xe1, 0x2d, 0x2e, 0xee, + 0xda, 0x43, 0x2d, 0xbc, 0xf6, 0x71, 0x49, 0x1b, 0x9e, 0x09, 0x05, 0x47, + 0x5f, 0x7a, 0xd9, 0x5e, 0x37, 0x0e, 0x48, 0xcd, 0x7a, 0x90, 0xb7, 0x2a, + 0xb1, 0xc1, 0x68, 0xad, 0x21, 0xb7, 0x4f, 0x43, 0xc1, 0x7f, 0x6f, 0x5b, + 0x90, 0x9f, 0x06, 0x2c, 0x57, 0x38, 0xce, 0xaf, 0x0f, 0xfe, 0x8a, 0x9a, + 0xbe, 0x11, 0xf8, 0x5d, 0x70, 0x90, 0xf8, 0xdf, 0x4c, 0x76, 0x3c, 0x7d, + 0xa1, 0x7a, 0xfd, 0x6b, 0xed, 0x2f, 0xf8, 0x28, 0x04, 0xac, 0xbf, 0x07, + 0xb4, 0x83, 0x92, 0x3f, 0xe2, 0x71, 0x17, 0x19, 0xff, 0x00, 0xa6, 0x33, + 0x57, 0xc2, 0x3e, 0x00, 0x90, 0xbf, 0x8a, 0xb4, 0xf0, 0x5c, 0xae, 0x67, + 0x51, 0xb8, 0x75, 0x1c, 0xd7, 0x06, 0x2a, 0xaf, 0xef, 0x5a, 0x3a, 0x70, + 0xf4, 0xd2, 0xe5, 0x3f, 0x65, 0x34, 0xd9, 0xb7, 0xd8, 0x5b, 0x9c, 0xf5, + 0x8d, 0x7f, 0x95, 0x58, 0x2f, 0xd2, 0xb1, 0x74, 0x47, 0xff, 0x00, 0x89, + 0x4d, 0x9f, 0xcc, 0xc7, 0xf7, 0x4b, 0xd4, 0xfb, 0x55, 0xc7, 0x7f, 0xbb, + 0xf3, 0x1e, 0xbe, 0xb5, 0xee, 0x42, 0x5e, 0xea, 0x38, 0x67, 0x4e, 0xd3, + 0x68, 0xbf, 0xbe, 0x8d, 0xf5, 0x50, 0x38, 0xf5, 0x3f, 0x9d, 0x2e, 0xf1, + 0xea, 0x6b, 0x4b, 0x99, 0x72, 0x16, 0x8c, 0x9c, 0x8a, 0x48, 0xe4, 0xf9, + 0x05, 0x54, 0x77, 0xc9, 0x5e, 0x4e, 0x73, 0x49, 0x6a, 0xe3, 0xc9, 0x5e, + 0x4d, 0x2b, 0xea, 0x3e, 0x4d, 0x0b, 0xaf, 0x27, 0xc8, 0xdf, 0x4a, 0x16, + 0x4c, 0xfe, 0x55, 0x52, 0xe1, 0xc1, 0x81, 0xf9, 0x3d, 0x0f, 0x7a, 0x58, + 0xca, 0xe7, 0xaf, 0x61, 0xde, 0x9d, 0xf5, 0x17, 0x26, 0x85, 0xcd, 0xd4, + 0x9b, 0xaa, 0x0d, 0xc3, 0xd7, 0xf5, 0xa5, 0x0c, 0x3d, 0x7f, 0x5a, 0xa2, + 0x79, 0x49, 0xb7, 0x73, 0x4b, 0xba, 0xab, 0x82, 0xbb, 0xfa, 0xf6, 0xf5, + 0xa7, 0xe4, 0x7a, 0xd0, 0x85, 0xca, 0x7c, 0x83, 0xfb, 0x74, 0x5d, 0x2c, + 0x77, 0x9a, 0x2a, 0xe7, 0x93, 0x1c, 0x9f, 0xfb, 0x2d, 0x78, 0x5f, 0xec, + 0xe9, 0x76, 0xa3, 0xe2, 0xcf, 0x86, 0x72, 0x78, 0xfe, 0xd0, 0x87, 0xff, + 0x00, 0x43, 0x15, 0xea, 0x1f, 0xb7, 0xdd, 0xe2, 0x5a, 0xeb, 0xba, 0x2a, + 0x82, 0x41, 0x68, 0x5c, 0x9e, 0x7d, 0xd6, 0xbc, 0x17, 0xf6, 0x7a, 0xd5, + 0x13, 0xfe, 0x16, 0xd7, 0x85, 0x83, 0x37, 0x5d, 0x4a, 0x01, 0xff, 0x00, + 0x8f, 0x8a, 0xf9, 0x4a, 0xd3, 0x6a, 0xb4, 0xbd, 0x4f, 0xa3, 0x74, 0x93, + 0x84, 0x23, 0xde, 0x2b, 0xf2, 0x3f, 0x58, 0x77, 0x64, 0x56, 0x5c, 0xad, + 0x99, 0xdf, 0xd8, 0x9f, 0xe9, 0x57, 0xd1, 0x86, 0xc1, 0xcf, 0x6a, 0xc9, + 0xce, 0x6f, 0x64, 0xfe, 0xe8, 0x24, 0x03, 0xeb, 0xd2, 0xbe, 0x9a, 0xa3, + 0xd1, 0x5c, 0xf0, 0x69, 0xc7, 0x73, 0x90, 0xf8, 0xc9, 0xa1, 0x4f, 0xe2, + 0xdf, 0x87, 0x1a, 0xee, 0x99, 0x15, 0xea, 0xe9, 0xbe, 0x6d, 0xa4, 0x9b, + 0xae, 0x1a, 0x3d, 0xf8, 0x00, 0x64, 0xf1, 0x91, 0xd7, 0x18, 0xaf, 0xc4, + 0x7d, 0x7e, 0x14, 0xb6, 0xd5, 0xaf, 0x21, 0x66, 0x0e, 0x51, 0xd9, 0x77, + 0x7a, 0xe0, 0x9e, 0x6b, 0xf7, 0x13, 0xe2, 0x7e, 0xa7, 0x6d, 0xa2, 0xf8, + 0x13, 0x5f, 0xbb, 0xbd, 0x91, 0xe1, 0xb7, 0x8e, 0xc6, 0x72, 0xcf, 0x1f, + 0xde, 0xc1, 0x5c, 0x0c, 0x7b, 0xf3, 0x5f, 0x85, 0xbe, 0x2c, 0xb8, 0x59, + 0xb5, 0x8b, 0xc7, 0x8d, 0x89, 0x46, 0x91, 0x8a, 0x93, 0xd4, 0x8c, 0xd7, + 0x99, 0x59, 0xfb, 0xe8, 0xe8, 0x82, 0xa7, 0xca, 0xda, 0xf8, 0xb4, 0xfb, + 0xb5, 0xff, 0x00, 0x82, 0x7b, 0xff, 0x00, 0xc3, 0x4b, 0x53, 0x79, 0xe0, + 0xf5, 0x8e, 0x05, 0xdd, 0x2b, 0x59, 0x15, 0x50, 0x3d, 0x77, 0x0a, 0xf4, + 0xdd, 0x47, 0x4d, 0xb8, 0x5b, 0x7d, 0x2a, 0xfe, 0x78, 0xdb, 0xca, 0xb0, + 0xb6, 0x6f, 0x38, 0xf7, 0xdd, 0x81, 0xf9, 0xd7, 0x9c, 0xfc, 0x15, 0x98, + 0x0f, 0x0d, 0x59, 0x05, 0xfb, 0xe2, 0xd4, 0x1f, 0xc7, 0x70, 0xaf, 0x62, + 0xb9, 0x9f, 0x54, 0xd5, 0x34, 0x6d, 0x5e, 0xc2, 0x1b, 0x75, 0x52, 0xa8, + 0x52, 0x36, 0x6f, 0xe2, 0x38, 0xef, 0x43, 0x57, 0x46, 0xd4, 0xf6, 0x47, + 0xc6, 0x9f, 0x18, 0x57, 0x67, 0x8d, 0x64, 0x8c, 0x8d, 0xad, 0x1c, 0x28, + 0xa4, 0x7b, 0xe2, 0xb8, 0x40, 0x40, 0x62, 0x4d, 0x75, 0xff, 0x00, 0x14, + 0xee, 0x9a, 0xeb, 0xc7, 0x3a, 0x83, 0xca, 0x36, 0xdc, 0x06, 0xdb, 0x32, + 0x0e, 0x8a, 0xe3, 0x82, 0x07, 0xb5, 0x71, 0x72, 0x3c, 0x63, 0x76, 0xe7, + 0xc7, 0xb5, 0x79, 0xb5, 0x35, 0x93, 0x3b, 0xa1, 0xb0, 0x4b, 0x29, 0x91, + 0x78, 0x53, 0x8c, 0x71, 0x58, 0xde, 0x20, 0x52, 0x74, 0x59, 0xb2, 0x30, + 0x71, 0xd2, 0xb5, 0xe4, 0x95, 0x12, 0x35, 0x3b, 0x73, 0x9e, 0x2b, 0x37, + 0xc4, 0x25, 0xdf, 0x4a, 0x9c, 0xa4, 0x47, 0x05, 0x7f, 0x2a, 0x74, 0xb4, + 0x9a, 0xf5, 0x1c, 0xfe, 0x16, 0x64, 0x68, 0x30, 0x0f, 0xb2, 0xa3, 0x67, + 0xf8, 0x45, 0x6e, 0x21, 0xca, 0x85, 0x06, 0xb2, 0x7c, 0x3e, 0x09, 0xd3, + 0x41, 0x08, 0xd8, 0x03, 0xae, 0x2b, 0x47, 0x3d, 0x89, 0xc7, 0x15, 0xb5, + 0x5d, 0x66, 0xc8, 0x86, 0xc3, 0x6e, 0x5b, 0xf7, 0x32, 0x29, 0x3c, 0xe2, + 0xb1, 0x4c, 0x40, 0xbe, 0x71, 0xda, 0xb5, 0xee, 0x00, 0xf2, 0xdc, 0x28, + 0x24, 0x8a, 0xcc, 0x23, 0x0f, 0x9f, 0x6a, 0x74, 0xf4, 0x42, 0x91, 0x2c, + 0x11, 0x0c, 0x55, 0x85, 0x40, 0x0d, 0x36, 0x2c, 0x01, 0x9a, 0x79, 0x23, + 0xb5, 0x29, 0x32, 0x96, 0xc5, 0x8b, 0x65, 0xeb, 0x8a, 0x7c, 0x8f, 0x8c, + 0xd4, 0x56, 0xb3, 0x00, 0x1b, 0x3e, 0xb4, 0xf7, 0x60, 0xe2, 0xb1, 0x7b, + 0x8d, 0x6c, 0x26, 0xf3, 0x83, 0x56, 0xa0, 0x63, 0xc0, 0xaa, 0x85, 0x70, + 0xa6, 0xae, 0x5b, 0x0c, 0x91, 0xe9, 0x53, 0x2b, 0x58, 0x68, 0xb9, 0x1a, + 0x10, 0x33, 0xeb, 0x56, 0x55, 0x88, 0x4e, 0x7d, 0x69, 0x62, 0x0a, 0xc3, + 0x18, 0xe4, 0x54, 0xa6, 0x3f, 0x94, 0x7d, 0x6b, 0x96, 0xe5, 0x9a, 0x10, + 0xc8, 0xc4, 0x0a, 0xb7, 0x1c, 0x8d, 0x91, 0x50, 0x41, 0x1e, 0x45, 0x5c, + 0x82, 0x10, 0x48, 0xa9, 0x45, 0x0d, 0xb8, 0x91, 0x8d, 0xb3, 0x8f, 0x6a, + 0xbd, 0x13, 0x36, 0xc0, 0x07, 0xe9, 0x55, 0xae, 0xa0, 0xff, 0x00, 0x47, + 0x7f, 0xa5, 0x5c, 0xb7, 0x4d, 0xa1, 0x78, 0x35, 0x62, 0x25, 0x8c, 0xba, + 0xf5, 0x35, 0xa5, 0x63, 0x21, 0x31, 0x48, 0x0f, 0xa1, 0x35, 0x5e, 0x38, + 0x8b, 0x00, 0x4f, 0x5a, 0xbb, 0x6f, 0x09, 0x39, 0x03, 0xd2, 0x9d, 0xc4, + 0xc8, 0xed, 0xf8, 0xd1, 0xe3, 0x7c, 0xf0, 0x3d, 0x2b, 0x45, 0x77, 0x3c, + 0x85, 0x54, 0x8c, 0x0c, 0x75, 0xaa, 0x7a, 0x5c, 0x67, 0xfb, 0x39, 0x23, + 0x28, 0x5b, 0x00, 0x1c, 0x76, 0xab, 0x6f, 0x12, 0x35, 0xb9, 0x65, 0x04, + 0x3a, 0x9c, 0x63, 0xbd, 0x6a, 0xd5, 0xd9, 0x9a, 0xd8, 0x73, 0x31, 0xf2, + 0xae, 0x51, 0x80, 0x25, 0x57, 0xd2, 0xbf, 0x48, 0xbf, 0x67, 0xbf, 0x03, + 0x6b, 0xd7, 0x3f, 0x07, 0xf4, 0x07, 0x36, 0x5a, 0x60, 0x82, 0x58, 0x37, + 0xc6, 0x64, 0xba, 0x7d, 0xec, 0xa4, 0xf0, 0x58, 0x08, 0xc8, 0x1f, 0x99, + 0xaf, 0xce, 0x3d, 0xa1, 0xe2, 0xb8, 0x27, 0xab, 0x28, 0xfd, 0x2b, 0xf5, + 0x8b, 0xf6, 0x68, 0xbd, 0x1a, 0x97, 0xc0, 0x4f, 0x07, 0x4e, 0x18, 0xb6, + 0x2c, 0xcc, 0x59, 0xc6, 0x3e, 0xe3, 0xb2, 0x7f, 0xec, 0xb5, 0xd3, 0x42, + 0x94, 0x6a, 0xb7, 0x19, 0x18, 0xd4, 0xab, 0x2a, 0x76, 0x71, 0x39, 0x3f, + 0x10, 0x78, 0x2b, 0x5b, 0xbb, 0x64, 0xb2, 0x5d, 0x13, 0x4a, 0xb9, 0x85, + 0xce, 0xd9, 0x0c, 0x57, 0xce, 0xa5, 0x7e, 0xa3, 0xca, 0x15, 0xc7, 0xf8, + 0xaf, 0xf6, 0x39, 0xd1, 0x17, 0xc3, 0xf3, 0xcf, 0x65, 0x04, 0xad, 0xab, + 0x45, 0x11, 0x70, 0x26, 0xbe, 0x63, 0x19, 0x61, 0xce, 0x33, 0xb7, 0xa7, + 0xe1, 0x5f, 0x48, 0x5a, 0x43, 0xbe, 0xe9, 0xa4, 0x1c, 0x7c, 0xdf, 0x9d, + 0x5b, 0xd6, 0x94, 0xfd, 0x92, 0xef, 0x8f, 0xe0, 0x6a, 0xe9, 0x85, 0x2e, + 0x58, 0x3b, 0x13, 0xed, 0xf9, 0xeb, 0xf2, 0xfa, 0x5c, 0xf8, 0xc3, 0xc3, + 0x56, 0xf7, 0x5a, 0xaf, 0x87, 0x84, 0xf6, 0xde, 0x0e, 0xb6, 0xb0, 0x96, + 0x36, 0x68, 0x36, 0x48, 0x03, 0x9c, 0xa9, 0x2a, 0x79, 0xe3, 0xb8, 0xaf, + 0x23, 0xf8, 0x8d, 0xe3, 0xdd, 0x73, 0xc2, 0xba, 0xc4, 0xfa, 0x7c, 0x9a, + 0x5e, 0x9e, 0xac, 0xa3, 0x3c, 0x42, 0x41, 0xfe, 0x75, 0xf6, 0xef, 0x83, + 0xbc, 0x3f, 0x1c, 0x7a, 0x15, 0xb2, 0x95, 0x04, 0x3b, 0xc8, 0xe7, 0xf1, + 0x91, 0x8f, 0xf5, 0xaf, 0x94, 0x7f, 0x6a, 0x7f, 0x0f, 0x46, 0x9f, 0x10, + 0xfe, 0x44, 0xc0, 0x6b, 0x65, 0x27, 0x1f, 0x52, 0x3f, 0xa5, 0x78, 0x95, + 0x2a, 0x55, 0x84, 0x79, 0xba, 0x1e, 0xfc, 0x69, 0x53, 0x95, 0xe3, 0x1d, + 0xd1, 0xf3, 0xde, 0xa9, 0xf1, 0x5b, 0x57, 0x9d, 0xc2, 0xbe, 0x9d, 0x69, + 0x86, 0x6c, 0x1c, 0x29, 0x1d, 0x69, 0x1a, 0xd7, 0x56, 0xd6, 0x20, 0x62, + 0x96, 0xb1, 0xa1, 0x6e, 0x7e, 0x44, 0x35, 0x6a, 0x7f, 0x0d, 0x09, 0x2f, + 0x6d, 0xd3, 0x6e, 0x43, 0x4a, 0xa3, 0xf5, 0xaf, 0xab, 0x7c, 0x03, 0xf0, + 0x9e, 0x11, 0xa6, 0xc5, 0x2c, 0xd0, 0x0e, 0x57, 0xb8, 0xac, 0x95, 0x49, + 0x38, 0xf3, 0x19, 0xc6, 0x8f, 0x34, 0xf9, 0x5b, 0x3e, 0x26, 0xf8, 0x8f, + 0xe0, 0x7d, 0x57, 0xc2, 0x7a, 0x5c, 0x17, 0x8a, 0xf2, 0x29, 0x9d, 0xb0, + 0x77, 0x8e, 0x2b, 0xc9, 0xee, 0x2e, 0x35, 0x74, 0x24, 0xab, 0xa7, 0xe2, + 0x95, 0xfa, 0x13, 0xfb, 0x5d, 0x78, 0x4a, 0x1b, 0x5f, 0x87, 0x16, 0x93, + 0xac, 0x01, 0x3c, 0xbb, 0xa4, 0x50, 0x40, 0xec, 0x41, 0xff, 0x00, 0x0a, + 0xf8, 0xa2, 0xea, 0xc2, 0x3c, 0x11, 0x8a, 0xa8, 0x55, 0x94, 0x95, 0xd1, + 0x9d, 0x7a, 0x31, 0xa7, 0x3e, 0x54, 0x79, 0x1d, 0xcf, 0x8e, 0x75, 0x6b, + 0x6b, 0x89, 0x6d, 0xfe, 0x56, 0xd8, 0xd8, 0x38, 0x18, 0xcd, 0x57, 0xff, + 0x00, 0x84, 0xf7, 0x51, 0x56, 0x27, 0x6a, 0xf1, 0xef, 0x50, 0xeb, 0x91, + 0x6c, 0xd6, 0xef, 0xd7, 0x1c, 0x2c, 0x84, 0xd6, 0x6a, 0xa2, 0xb6, 0xe3, + 0x8c, 0x2f, 0x7a, 0xf6, 0x94, 0x20, 0xd5, 0xdc, 0x4f, 0x2e, 0xf2, 0xee, + 0x6d, 0x37, 0xc4, 0x3d, 0x40, 0x91, 0xba, 0x30, 0x40, 0xf7, 0xa9, 0x07, + 0xc4, 0x7b, 0x9d, 0xbb, 0x5a, 0xd4, 0x1a, 0xe7, 0xda, 0x20, 0xee, 0x46, + 0x30, 0x36, 0xd3, 0x44, 0x23, 0x1c, 0x0c, 0x8a, 0xbf, 0x67, 0x4b, 0xf9, + 0x49, 0xbc, 0xfb, 0x9d, 0x4d, 0xaf, 0xc4, 0x00, 0xf8, 0xdd, 0x66, 0x5b, + 0x1c, 0x90, 0x2a, 0xfd, 0xa7, 0x8f, 0xad, 0x64, 0x38, 0x5b, 0x09, 0x73, + 0xec, 0x6b, 0x37, 0xc3, 0x5e, 0x1f, 0x17, 0x30, 0x33, 0x95, 0xec, 0x6b, + 0xae, 0xd0, 0x3c, 0x12, 0x3c, 0xb5, 0x7f, 0x2f, 0x39, 0xae, 0x49, 0xba, + 0x51, 0x6e, 0xc8, 0xd2, 0x3c, 0xef, 0x76, 0x57, 0x8f, 0x55, 0x4b, 0xb8, + 0x8c, 0x89, 0x6b, 0x32, 0xe7, 0xda, 0xac, 0xdb, 0x5e, 0xc4, 0x62, 0x01, + 0xd9, 0x90, 0x83, 0xfc, 0x4b, 0x8a, 0xeb, 0x7f, 0xb0, 0xd7, 0x4e, 0xb6, + 0x45, 0x28, 0x06, 0xe1, 0xe9, 0x59, 0xd2, 0xda, 0x29, 0x8c, 0xfc, 0x83, + 0xad, 0x71, 0x36, 0x9e, 0xc7, 0x42, 0x5d, 0xcc, 0xd7, 0xb9, 0xb5, 0x76, + 0x65, 0x59, 0x81, 0xc8, 0xe3, 0xeb, 0x55, 0xaf, 0x36, 0x05, 0x3f, 0x30, + 0x1d, 0x3a, 0x9a, 0xe8, 0x2c, 0xf4, 0xe8, 0xc4, 0xe9, 0x98, 0xc1, 0x38, + 0xf4, 0xae, 0x5f, 0xe2, 0x35, 0xb6, 0xcb, 0x27, 0xc7, 0x07, 0x7a, 0xf2, + 0x2a, 0xa0, 0xb9, 0xe5, 0x6d, 0x85, 0x2d, 0x11, 0x03, 0xdb, 0x03, 0x70, + 0x98, 0xe7, 0x27, 0xb5, 0x6a, 0xd9, 0xd8, 0x87, 0x5f, 0x99, 0x41, 0xac, + 0x5f, 0x09, 0xd8, 0x46, 0xf1, 0x07, 0x50, 0x4b, 0x88, 0xd4, 0x9c, 0x9c, + 0xf3, 0xcd, 0x76, 0x56, 0x3a, 0x7f, 0x9f, 0x13, 0x12, 0xbc, 0x05, 0x26, + 0x9c, 0xe3, 0x69, 0x72, 0x93, 0x17, 0xa5, 0xca, 0x90, 0xe9, 0xe9, 0xc8, + 0x11, 0xaf, 0xbd, 0x4f, 0x6d, 0xa6, 0xc4, 0x64, 0xc6, 0xc4, 0xc7, 0xd2, + 0xb0, 0xe6, 0xd2, 0xe6, 0x6d, 0x46, 0x67, 0x59, 0xa4, 0x0a, 0x3a, 0x20, + 0x6e, 0x05, 0x72, 0xae, 0x35, 0x1f, 0x38, 0x8f, 0xb4, 0x49, 0xb4, 0x93, + 0xde, 0xa9, 0x51, 0x4d, 0x7c, 0x44, 0xba, 0xb6, 0xe8, 0x7a, 0x72, 0x69, + 0xf1, 0x97, 0x03, 0x6a, 0x81, 0x4c, 0x7b, 0x13, 0x09, 0xde, 0xa3, 0x6b, + 0x0e, 0x41, 0x1d, 0x6b, 0x9c, 0xf0, 0x27, 0x82, 0xb5, 0xcf, 0x18, 0x6a, + 0xb3, 0xad, 0xb5, 0xc1, 0xf2, 0xec, 0xd1, 0x66, 0x91, 0x5f, 0x27, 0x70, + 0xcf, 0xff, 0x00, 0x5a, 0xbd, 0x5a, 0xd7, 0xc3, 0xaa, 0xd7, 0x10, 0xa3, + 0xc6, 0x00, 0xdc, 0x03, 0x71, 0xef, 0x59, 0xce, 0x97, 0xb3, 0x71, 0xd7, + 0x72, 0xe1, 0x51, 0x54, 0xba, 0x4b, 0x63, 0xef, 0xbd, 0x4f, 0x54, 0x8e, + 0x7f, 0xda, 0x1d, 0xe7, 0x12, 0xf9, 0x11, 0x9f, 0x0c, 0x41, 0xe6, 0xb1, + 0x3c, 0x82, 0x59, 0xb9, 0xaf, 0x67, 0xd1, 0xf5, 0xcb, 0x69, 0x16, 0xd9, + 0x63, 0x91, 0x5e, 0x34, 0x8c, 0x36, 0xfc, 0xf2, 0xc7, 0x1d, 0xeb, 0xe7, + 0xeb, 0xdf, 0x0f, 0x6b, 0x1a, 0xbf, 0xc7, 0xd9, 0x1a, 0xc4, 0x05, 0x49, + 0x7c, 0x3f, 0x6c, 0x5d, 0x58, 0xe3, 0x72, 0x6e, 0x6f, 0xf0, 0xae, 0xe4, + 0xf8, 0x6b, 0xc4, 0x53, 0x5a, 0x98, 0xa1, 0x7f, 0xec, 0xeb, 0xc4, 0x0c, + 0xab, 0x36, 0xe1, 0xb7, 0x6e, 0x31, 0xd2, 0xbe, 0x86, 0xad, 0x39, 0x54, + 0x9e, 0xda, 0x1f, 0x19, 0x57, 0x0d, 0x29, 0x54, 0xd3, 0xc8, 0xe7, 0xef, + 0x3c, 0x4f, 0x6a, 0xbf, 0xb4, 0xe6, 0xb1, 0x2c, 0x70, 0xa5, 0xe1, 0x7d, + 0x06, 0x05, 0x56, 0x8c, 0xe7, 0x69, 0x0f, 0x27, 0x5f, 0x7a, 0xf9, 0x9e, + 0x3d, 0x18, 0x5c, 0xbd, 0xc4, 0xa2, 0x3e, 0x1e, 0x67, 0x7e, 0x07, 0x1c, + 0xb1, 0xaf, 0x58, 0xd1, 0x3c, 0x13, 0xac, 0xe8, 0x9f, 0x1e, 0x75, 0x58, + 0x61, 0x99, 0x1a, 0xe0, 0x68, 0x70, 0xbb, 0x99, 0x24, 0x07, 0x7e, 0x5d, + 0xf3, 0xf4, 0xae, 0x7f, 0x45, 0xd3, 0x4a, 0x69, 0xe1, 0x64, 0x19, 0x6c, + 0xb6, 0xee, 0xfc, 0xe4, 0xd7, 0x8f, 0x8e, 0xa2, 0xe2, 0x96, 0x87, 0xd1, + 0x64, 0xf0, 0x74, 0xeb, 0x4e, 0xfd, 0x91, 0xf3, 0xcf, 0xc5, 0xad, 0x09, + 0x93, 0x5d, 0xd3, 0x23, 0x66, 0x8d, 0x83, 0x44, 0xcc, 0xa8, 0xbd, 0x57, + 0xeb, 0x5c, 0x2f, 0xf6, 0x5a, 0x45, 0x74, 0x17, 0x6f, 0xce, 0x1c, 0x57, + 0xb1, 0x7c, 0x6f, 0xb5, 0x16, 0xde, 0x30, 0xd2, 0x16, 0x3d, 0x99, 0x36, + 0xe4, 0x90, 0x0e, 0x4f, 0x5e, 0xfe, 0x95, 0xe7, 0x53, 0x40, 0x23, 0xbc, + 0x32, 0xb6, 0x09, 0x12, 0x0c, 0x81, 0xf4, 0xae, 0x19, 0x5d, 0x54, 0x8a, + 0x7e, 0x47, 0xaa, 0x95, 0xa3, 0x2f, 0x56, 0x68, 0x5e, 0x68, 0x3e, 0x6e, + 0x92, 0xf2, 0x00, 0x51, 0x82, 0x67, 0x2a, 0x71, 0x5d, 0xaf, 0x84, 0xf4, + 0x66, 0x4d, 0x2a, 0x36, 0x0a, 0x7e, 0xe8, 0xcf, 0xe5, 0x51, 0x44, 0x8b, + 0x37, 0x87, 0x65, 0x23, 0x27, 0xe4, 0xf4, 0xaf, 0x4f, 0xf0, 0xde, 0x86, + 0x13, 0x49, 0x8b, 0x08, 0x40, 0x31, 0xae, 0x70, 0x3d, 0xab, 0x26, 0xe4, + 0xdb, 0x47, 0x5d, 0x38, 0xab, 0x26, 0x78, 0x9c, 0x5a, 0x1e, 0x7c, 0x47, + 0x77, 0x70, 0x41, 0x05, 0x90, 0xae, 0x47, 0x7a, 0xf5, 0x7f, 0x85, 0x36, + 0x6b, 0xa5, 0x6a, 0x57, 0x72, 0xac, 0x7b, 0xb2, 0x83, 0x02, 0xb3, 0xae, + 0xb4, 0x16, 0x17, 0x37, 0x24, 0x47, 0xd0, 0x9e, 0x71, 0x5d, 0xff, 0x00, + 0xc2, 0xab, 0x16, 0x46, 0xb9, 0x92, 0x4b, 0x74, 0x90, 0xbc, 0x3b, 0x01, + 0x61, 0xd0, 0xe7, 0xad, 0x5d, 0x06, 0xde, 0xe3, 0xa9, 0x15, 0x19, 0x68, + 0x6a, 0xcb, 0xa3, 0x7f, 0x68, 0x49, 0xe6, 0x18, 0xb3, 0xbd, 0xb3, 0xc5, + 0x56, 0xd4, 0xbc, 0x34, 0x89, 0x6f, 0x70, 0xad, 0x11, 0x07, 0xcb, 0xe8, + 0x2b, 0xbe, 0xd3, 0x64, 0x58, 0xe4, 0x8e, 0xdd, 0x6d, 0xf7, 0x1e, 0xa5, + 0x89, 0xc5, 0x4f, 0xad, 0x69, 0xec, 0x2d, 0x6e, 0x2e, 0x42, 0xa0, 0x02, + 0x33, 0xf2, 0x9e, 0x7b, 0x1a, 0xdd, 0xd3, 0xb9, 0xb2, 0x6b, 0x63, 0xe1, + 0xd9, 0xfc, 0x30, 0xd0, 0x3b, 0x8c, 0x31, 0xdc, 0xe7, 0xbf, 0xbd, 0x72, + 0x5a, 0xae, 0x98, 0xdf, 0xda, 0xa6, 0x26, 0x52, 0x54, 0x2f, 0xdd, 0xaf, + 0x70, 0x9e, 0xd5, 0x2f, 0x1d, 0x9e, 0xdc, 0xa4, 0x98, 0x73, 0xf3, 0x2f, + 0x3c, 0xd7, 0x9d, 0xeb, 0x76, 0x4d, 0x0f, 0x88, 0x1d, 0x99, 0x79, 0x23, + 0x1c, 0x0a, 0xe0, 0x4d, 0xf3, 0x33, 0x19, 0xc5, 0x25, 0x73, 0x7e, 0x3f, + 0x0b, 0x4c, 0xde, 0x13, 0xde, 0xd1, 0x62, 0x31, 0x06, 0xe0, 0x4f, 0x71, + 0x5e, 0x53, 0x1e, 0x8c, 0xef, 0x16, 0xb4, 0xcf, 0x1f, 0x2a, 0x06, 0x31, + 0xe9, 0x83, 0x5f, 0x45, 0x5f, 0x44, 0x6d, 0x3e, 0x1d, 0x49, 0x2a, 0x10, + 0x4a, 0xd9, 0x92, 0xa0, 0xf4, 0xce, 0x3b, 0xd7, 0x8e, 0x78, 0x42, 0x33, + 0xa8, 0x78, 0x77, 0xc4, 0x93, 0xce, 0xc3, 0xcc, 0x38, 0xc0, 0x03, 0xa7, + 0x06, 0xae, 0xd2, 0x4d, 0x04, 0x9a, 0xe5, 0xb1, 0x2f, 0xc1, 0x7d, 0x0c, + 0x5f, 0xea, 0x51, 0x46, 0x10, 0x36, 0x20, 0x27, 0x07, 0xbd, 0x53, 0xf1, + 0x8f, 0x86, 0xbc, 0xbf, 0x18, 0xea, 0x10, 0x94, 0xc6, 0xd3, 0xd3, 0x1e, + 0xd5, 0xe8, 0x7f, 0xb3, 0xb6, 0x95, 0xe6, 0x6b, 0x70, 0x96, 0x18, 0x0d, + 0x6c, 0x76, 0xe3, 0xf0, 0xa5, 0xf1, 0xe6, 0x9e, 0x8b, 0xf1, 0x0b, 0x56, + 0xf9, 0x70, 0x01, 0x5f, 0xc3, 0x81, 0x50, 0x93, 0xb7, 0x37, 0x99, 0xb5, + 0x97, 0x27, 0xc8, 0xca, 0xf8, 0x77, 0xe1, 0x20, 0x9f, 0x11, 0x12, 0xdb, + 0x6a, 0xaa, 0x88, 0x8b, 0x00, 0x7b, 0xf0, 0x2b, 0x7c, 0x7c, 0x31, 0xb2, + 0xbe, 0xf1, 0xb6, 0xb8, 0xf2, 0xc0, 0xa6, 0x34, 0x60, 0xc5, 0x48, 0xe0, + 0x9d, 0x95, 0xd6, 0x7c, 0x3b, 0xd2, 0x12, 0x6f, 0x8c, 0x40, 0x30, 0xf3, + 0x10, 0xc0, 0x47, 0x1d, 0xb8, 0x15, 0xe8, 0x5a, 0x7e, 0x8f, 0x02, 0x78, + 0x8b, 0xc5, 0xec, 0x4e, 0xc4, 0x45, 0x38, 0xdd, 0xeb, 0xb2, 0xbb, 0xa9, + 0x53, 0x72, 0x7f, 0x33, 0x9e, 0x4d, 0x2a, 0x7f, 0x26, 0x78, 0xad, 0x8f, + 0x84, 0xdf, 0xfe, 0x14, 0xee, 0xbb, 0x70, 0xaf, 0xb1, 0xd6, 0x72, 0xa1, + 0x53, 0xaf, 0x51, 0xd2, 0xba, 0xd4, 0xf0, 0x25, 0xa5, 0x8d, 0xef, 0x87, + 0x25, 0xb7, 0xb6, 0x16, 0xa8, 0xfa, 0x52, 0x17, 0x55, 0x4c, 0x17, 0x7c, + 0x1c, 0xb1, 0xf5, 0x27, 0xd6, 0xb6, 0xf4, 0xcb, 0x38, 0xa0, 0xf8, 0x25, + 0xac, 0x1d, 0xb8, 0xff, 0x00, 0x4a, 0xc2, 0x93, 0xd4, 0x8d, 0xc2, 0xbd, + 0x37, 0xc6, 0x2b, 0x05, 0xfd, 0xc7, 0x85, 0x1a, 0x10, 0x23, 0x11, 0xe8, + 0x10, 0xab, 0x19, 0x17, 0x6e, 0x48, 0x07, 0xa7, 0xad, 0x6c, 0xa9, 0xde, + 0x83, 0xb7, 0x73, 0x16, 0xd2, 0xaf, 0x06, 0xdf, 0x43, 0xc1, 0x6f, 0xf4, + 0x87, 0xb4, 0xb8, 0x21, 0x00, 0x8c, 0x6d, 0x1f, 0x28, 0xfe, 0x2c, 0xd6, + 0xa7, 0x80, 0xca, 0xdd, 0xfc, 0x40, 0xd0, 0x62, 0x78, 0x94, 0x62, 0xe9, + 0x09, 0xc0, 0xc6, 0x70, 0xc2, 0xb4, 0xf5, 0x3b, 0x36, 0x92, 0xe1, 0xde, + 0x30, 0x4b, 0x85, 0x52, 0xbf, 0x86, 0x73, 0x4d, 0xf0, 0x76, 0x9e, 0x6d, + 0x3e, 0x24, 0xe8, 0xd2, 0x90, 0x7c, 0xaf, 0xb4, 0xa7, 0xd7, 0x25, 0xd7, + 0x8a, 0xe4, 0x85, 0x2b, 0x2b, 0x1d, 0x52, 0xa8, 0xdc, 0xb4, 0x3e, 0x8c, + 0xf8, 0xef, 0xe1, 0xb8, 0xef, 0xfc, 0x15, 0x77, 0x2e, 0xe7, 0x56, 0x12, + 0x47, 0xca, 0x9f, 0x7f, 0xfe, 0xbd, 0x62, 0x7c, 0x09, 0xd0, 0xe2, 0x8b, + 0xe1, 0xd6, 0xaa, 0x40, 0x93, 0x29, 0xa8, 0x44, 0xdb, 0xcb, 0x75, 0xc1, + 0x43, 0xcd, 0x7a, 0x57, 0xc6, 0x0b, 0x2c, 0xf8, 0x26, 0xf1, 0x00, 0x1c, + 0x98, 0xff, 0x00, 0xf4, 0x21, 0x58, 0x7f, 0x0d, 0x6c, 0x22, 0xd3, 0x7e, + 0x1d, 0x6a, 0xa0, 0x3a, 0x9c, 0xde, 0xc7, 0x82, 0x3a, 0x13, 0x94, 0xad, + 0x95, 0x27, 0x16, 0xfc, 0xaf, 0xf9, 0x04, 0x2a, 0x5d, 0xc7, 0xd5, 0x7e, + 0x68, 0xf7, 0x7d, 0x30, 0xee, 0xb0, 0x8b, 0x93, 0x9d, 0xa2, 0x9d, 0xa9, + 0x47, 0x1c, 0x9a, 0x55, 0xe2, 0x4b, 0x9f, 0x29, 0xa1, 0x70, 0xff, 0x00, + 0x4c, 0x1c, 0xd1, 0xa7, 0x00, 0x2c, 0xe2, 0x00, 0x7f, 0x08, 0xfe, 0x54, + 0xdd, 0x63, 0x77, 0xf6, 0x2e, 0xa1, 0xb7, 0xaf, 0x90, 0xf8, 0xcf, 0xfb, + 0xa6, 0xbe, 0x82, 0x1f, 0x09, 0xf3, 0x92, 0xf8, 0xdf, 0xa9, 0xf9, 0xf9, + 0xae, 0x0b, 0x9b, 0xbb, 0xbb, 0x82, 0xbe, 0x51, 0x84, 0x36, 0x21, 0x8c, + 0x70, 0xb1, 0xa0, 0xe8, 0xa0, 0x56, 0x69, 0x8e, 0x43, 0xd9, 0x41, 0x1d, + 0x85, 0x74, 0x57, 0xf1, 0x99, 0x64, 0xb6, 0x44, 0x55, 0xcb, 0x2b, 0x12, + 0x7e, 0x98, 0xe2, 0xb2, 0xa5, 0x5f, 0x24, 0x4f, 0xbb, 0x8d, 0xa8, 0x5b, + 0x8e, 0xd5, 0xe6, 0x6e, 0xee, 0xcf, 0x53, 0x65, 0x64, 0x72, 0x3e, 0x23, + 0xfb, 0x54, 0x2c, 0xae, 0x15, 0x70, 0x0a, 0xe4, 0x1e, 0x09, 0x19, 0xe2, + 0xb2, 0x2f, 0x2f, 0x26, 0x3c, 0x7d, 0x98, 0x73, 0xfe, 0xdd, 0x74, 0xfe, + 0x23, 0x8c, 0xcd, 0x0a, 0x6e, 0x39, 0xe2, 0x2e, 0x7f, 0xe0, 0x46, 0xb0, + 0x2f, 0x53, 0x72, 0xe7, 0x1c, 0x8a, 0x8a, 0x88, 0x88, 0xb7, 0xa9, 0xce, + 0xdf, 0x4f, 0x3a, 0x8f, 0xf5, 0x23, 0x3e, 0x9b, 0xab, 0x9a, 0xd7, 0x2e, + 0x26, 0xc4, 0x39, 0x81, 0x71, 0xe6, 0xaf, 0x01, 0xb3, 0x9e, 0xb5, 0xd7, + 0x5d, 0xa3, 0x0e, 0x4f, 0x4c, 0x57, 0x31, 0xac, 0xc5, 0xe6, 0xb4, 0x58, + 0x04, 0x11, 0x20, 0x3f, 0xa1, 0xa8, 0x4b, 0xb1, 0x32, 0x7d, 0xce, 0x7b, + 0x51, 0x99, 0x9b, 0x39, 0x83, 0x6f, 0xe3, 0x5c, 0x7e, 0xab, 0x29, 0x04, + 0x8d, 0xbf, 0xad, 0x76, 0x17, 0xb1, 0xba, 0xf9, 0x99, 0x3b, 0x87, 0x6a, + 0xe4, 0x35, 0x74, 0xc1, 0x27, 0x18, 0xcd, 0x40, 0x91, 0xc3, 0x6b, 0x37, + 0x1e, 0x65, 0xc8, 0x50, 0xa4, 0x63, 0x35, 0x93, 0x2b, 0xb7, 0xf7, 0x4d, + 0x69, 0xea, 0x63, 0x6d, 0xf7, 0x23, 0x3c, 0x1a, 0xa1, 0x36, 0x32, 0x6b, + 0x48, 0xf4, 0x19, 0x49, 0xd8, 0xfa, 0x55, 0x37, 0x93, 0x69, 0x3c, 0x64, + 0xfb, 0x55, 0xc9, 0x3b, 0xd5, 0x1c, 0x66, 0x46, 0xe3, 0xbd, 0x74, 0xc0, + 0xcd, 0x8d, 0x69, 0x32, 0x3a, 0x1a, 0x64, 0x84, 0x14, 0xa9, 0x88, 0xf6, + 0xfc, 0x6a, 0x39, 0x01, 0xda, 0x6b, 0x54, 0x43, 0x4c, 0x6e, 0xff, 0x00, + 0x63, 0x49, 0xbc, 0x9e, 0xa2, 0x97, 0x1c, 0x7b, 0xd2, 0x90, 0x76, 0xd5, + 0x91, 0xa8, 0x41, 0x2e, 0xd9, 0xa3, 0x3b, 0x49, 0x00, 0xd7, 0x47, 0x0b, + 0xa9, 0xe5, 0x87, 0x07, 0xda, 0xb9, 0xcb, 0x65, 0xcc, 0xb1, 0xfd, 0x6b, + 0xa5, 0xb7, 0xc1, 0x03, 0xe4, 0xcd, 0x73, 0xd6, 0xb6, 0x85, 0x53, 0x25, + 0x90, 0xc7, 0x8c, 0xe7, 0xb7, 0x4a, 0xcd, 0xd1, 0x4d, 0xbf, 0xfc, 0x24, + 0x4a, 0x27, 0x7d, 0x91, 0x3a, 0x95, 0xc8, 0xeb, 0x5a, 0x52, 0x01, 0xf3, + 0x60, 0x63, 0x8a, 0xc2, 0xb1, 0x0b, 0x2e, 0xbf, 0x02, 0x95, 0x18, 0xdd, + 0xde, 0xae, 0x8a, 0xbc, 0x64, 0x73, 0x55, 0x7e, 0xfc, 0x4f, 0x40, 0x96, + 0x65, 0x9a, 0x60, 0xa6, 0x25, 0x09, 0x1f, 0xc8, 0x8d, 0xea, 0x07, 0x43, + 0xf5, 0xa9, 0xd2, 0x24, 0x24, 0x71, 0xf9, 0x55, 0x34, 0xb6, 0x0c, 0x38, + 0xc7, 0x1e, 0xd5, 0x32, 0x5b, 0xb2, 0xe7, 0x04, 0xfe, 0x06, 0xb9, 0x1e, + 0xae, 0xe7, 0x56, 0xab, 0xa1, 0xbf, 0xe1, 0x5b, 0x7f, 0x33, 0xc4, 0xda, + 0x4a, 0xf3, 0xb7, 0xed, 0x51, 0x82, 0x3f, 0xe0, 0x42, 0xbf, 0x63, 0x18, + 0xc5, 0x06, 0x93, 0x02, 0x82, 0x01, 0xc2, 0x00, 0x45, 0x7e, 0x4a, 0x7c, + 0x07, 0x86, 0x39, 0xbe, 0x2f, 0x78, 0x5a, 0x29, 0xc6, 0xe8, 0x8d, 0xe2, + 0x6e, 0x0f, 0xc8, 0x22, 0xbf, 0x58, 0xb4, 0xe4, 0xb3, 0x36, 0xd0, 0xcd, + 0x1c, 0x6d, 0xe5, 0xba, 0x86, 0x50, 0xdd, 0x85, 0x63, 0x2d, 0x0e, 0xda, + 0x1a, 0xc5, 0xdb, 0xb9, 0xe5, 0xff, 0x00, 0x1b, 0x74, 0x88, 0xe7, 0xb5, + 0xb9, 0xd4, 0xe6, 0x92, 0x35, 0xb4, 0xb4, 0x82, 0x78, 0xa6, 0x62, 0xd8, + 0x6f, 0x9d, 0x17, 0x18, 0x1d, 0xfa, 0x1a, 0xfc, 0xde, 0xf0, 0xd4, 0x11, + 0xcf, 0xe2, 0x38, 0xa1, 0x52, 0x5a, 0x17, 0x9b, 0x68, 0xc7, 0x07, 0x05, + 0xab, 0xf4, 0x3f, 0xf6, 0x84, 0x3a, 0x6f, 0x89, 0xbc, 0x2b, 0xa8, 0x69, + 0x32, 0xbb, 0xad, 0xc4, 0xa2, 0x55, 0x88, 0x43, 0xf2, 0x8c, 0x22, 0x82, + 0xdb, 0x8f, 0xaf, 0x35, 0xf9, 0xcf, 0xe1, 0xe9, 0x4e, 0x97, 0xad, 0xc4, + 0x78, 0x76, 0x82, 0x4e, 0x87, 0x90, 0x70, 0x6b, 0x79, 0x69, 0x49, 0x1c, + 0x52, 0x97, 0xef, 0xb5, 0x3f, 0x6b, 0xbe, 0x1a, 0xe9, 0xd6, 0xda, 0x07, + 0x81, 0xf4, 0x4b, 0x2b, 0x33, 0x27, 0xd9, 0xa1, 0xb3, 0x84, 0x20, 0x91, + 0xcb, 0x90, 0x36, 0x83, 0xd4, 0xfd, 0x6b, 0xa6, 0x47, 0x0f, 0x21, 0xc0, + 0x3c, 0xb0, 0xcd, 0x72, 0x3f, 0x08, 0x35, 0xff, 0x00, 0xf8, 0x49, 0xfe, + 0x1c, 0x78, 0x7b, 0x52, 0xd8, 0x11, 0xae, 0x2c, 0x62, 0x67, 0x40, 0x30, + 0x15, 0x82, 0xe0, 0x8f, 0xcc, 0x57, 0x5a, 0x8c, 0x43, 0x3b, 0x63, 0x1c, + 0x8a, 0xf5, 0xa0, 0xd3, 0x8a, 0xb1, 0xc7, 0x78, 0xcb, 0x58, 0xad, 0x0f, + 0x97, 0x7f, 0xe0, 0xa2, 0xd3, 0x4b, 0x6f, 0xf0, 0xc7, 0xc3, 0x70, 0x2b, + 0x28, 0x85, 0xf5, 0x6d, 0xce, 0xb8, 0xe4, 0xb0, 0x85, 0xf1, 0xf8, 0x72, + 0x7f, 0x31, 0x5f, 0x09, 0xf8, 0x0e, 0x5f, 0xf8, 0xaa, 0xac, 0x07, 0xac, + 0xcb, 0xfc, 0xeb, 0xed, 0xef, 0xf8, 0x29, 0x14, 0xdb, 0x7c, 0x05, 0xe1, + 0x40, 0x47, 0x27, 0x52, 0x72, 0x09, 0x1d, 0x3f, 0x74, 0x6b, 0xe0, 0xff, + 0x00, 0x07, 0x5c, 0xf9, 0x7e, 0x24, 0xb1, 0x6c, 0xe3, 0x13, 0x2f, 0x3f, + 0x8d, 0x79, 0x58, 0xef, 0xf7, 0x8d, 0x3c, 0x8d, 0x30, 0xcd, 0xa8, 0xab, + 0xb3, 0xf6, 0x7f, 0xc2, 0x73, 0x45, 0x7d, 0xe1, 0x9d, 0x2a, 0xe7, 0x68, + 0x1e, 0x75, 0xac, 0x72, 0x63, 0xea, 0xa0, 0xd6, 0xb1, 0x8d, 0x0f, 0x40, + 0x3a, 0xd7, 0x2d, 0xe0, 0x55, 0x68, 0xbc, 0x11, 0xe1, 0xc3, 0xbc, 0x48, + 0x9f, 0xd9, 0xf0, 0x72, 0x3b, 0xfe, 0xec, 0x57, 0x40, 0x27, 0x55, 0xc0, + 0x6e, 0x72, 0xd8, 0x02, 0xbe, 0x86, 0x15, 0x12, 0x6a, 0x32, 0x56, 0x3c, + 0xd9, 0x39, 0x39, 0x37, 0x72, 0xc1, 0xf2, 0xf7, 0xe3, 0x60, 0xc7, 0xad, + 0x2e, 0xd8, 0x80, 0x1c, 0x0a, 0x4c, 0xf6, 0xe0, 0x0a, 0x73, 0x01, 0xb3, + 0x8c, 0x0f, 0xad, 0x77, 0x72, 0xc7, 0xb1, 0x8f, 0x34, 0x86, 0xb4, 0x48, + 0xc4, 0x61, 0x73, 0x83, 0x4c, 0xb6, 0x85, 0x0c, 0x2b, 0xc6, 0x3f, 0x1a, + 0x95, 0x70, 0x13, 0x01, 0xbb, 0xd4, 0x51, 0xb2, 0x88, 0x15, 0x8b, 0x01, + 0x81, 0x53, 0xcb, 0x1b, 0x97, 0xce, 0xf9, 0x42, 0xe2, 0x24, 0xf2, 0x24, + 0xc7, 0x3f, 0x2d, 0x2f, 0x90, 0x81, 0x8f, 0x24, 0x71, 0x43, 0x95, 0x30, + 0xb9, 0x18, 0x3c, 0x54, 0x84, 0x8c, 0x93, 0xd6, 0x8e, 0x58, 0xdc, 0x15, + 0x47, 0xcb, 0xb8, 0xcf, 0x25, 0x07, 0x76, 0xa3, 0xca, 0x5f, 0x56, 0xa7, + 0x00, 0x3d, 0x40, 0xfc, 0x69, 0x0c, 0xa0, 0x7c, 0xa5, 0x81, 0xfc, 0x69, + 0xf2, 0xc5, 0x13, 0xcf, 0x2e, 0xe3, 0x56, 0x01, 0xe6, 0x37, 0x27, 0xa0, + 0xa7, 0x79, 0x03, 0xfb, 0xc6, 0xab, 0x3d, 0xf2, 0xc7, 0x78, 0x23, 0x52, + 0x18, 0x95, 0x06, 0xa7, 0x0d, 0x29, 0x3c, 0xf0, 0x2b, 0x2b, 0xc6, 0xf6, + 0x4a, 0xe5, 0xb9, 0xb3, 0xf3, 0xcb, 0xfe, 0x0a, 0x33, 0xaa, 0xb5, 0xa7, + 0x8f, 0xf4, 0x4b, 0x4d, 0xd9, 0x02, 0xcd, 0xa4, 0xfc, 0xdb, 0x1f, 0xfb, + 0x2d, 0x7c, 0xe3, 0xf0, 0x57, 0xc4, 0x5f, 0xd9, 0xff, 0x00, 0x16, 0x7c, + 0x1d, 0x31, 0xcb, 0x2a, 0xeb, 0x16, 0x85, 0x94, 0x77, 0x1e, 0x72, 0xe4, + 0x57, 0xb2, 0x7f, 0xc1, 0x49, 0xef, 0xa5, 0x3f, 0x18, 0xec, 0x23, 0x70, + 0x02, 0x26, 0x9e, 0x81, 0x30, 0x7a, 0x8d, 0xcd, 0xd7, 0xf1, 0xcd, 0x7c, + 0xbd, 0xe0, 0x3b, 0xc1, 0x1f, 0x8d, 0xfc, 0x3e, 0xec, 0xd8, 0x55, 0xd4, + 0x20, 0x24, 0xfb, 0x79, 0x8b, 0x5f, 0x3d, 0x3a, 0x69, 0xd6, 0x7e, 0xa7, + 0xaf, 0x2a, 0xd2, 0xe5, 0x4f, 0xc9, 0x7e, 0x47, 0xee, 0xca, 0xc3, 0x95, + 0x18, 0x62, 0x38, 0xe8, 0x6a, 0x83, 0x44, 0x21, 0x99, 0x15, 0x86, 0xe3, + 0xc9, 0x18, 0x3d, 0x79, 0xa9, 0x12, 0xe3, 0x74, 0x68, 0x41, 0x05, 0x88, + 0x1d, 0x3b, 0xd3, 0xa7, 0x5d, 0xd2, 0xc6, 0xdc, 0x6e, 0x51, 0xfe, 0x15, + 0xed, 0xd4, 0xb3, 0xd2, 0xc7, 0x95, 0x4a, 0xa7, 0x31, 0xc5, 0x7c, 0x60, + 0xf0, 0xf5, 0xbf, 0x8a, 0xfe, 0x1e, 0xeb, 0xda, 0x76, 0xa0, 0xd3, 0xad, + 0xb4, 0x96, 0x52, 0xb3, 0x8b, 0x77, 0xd8, 0xc7, 0x6a, 0xee, 0x1c, 0xfd, + 0x45, 0x7e, 0x17, 0xf8, 0x8a, 0x34, 0x87, 0x56, 0xbb, 0x88, 0x64, 0xaa, + 0x48, 0xca, 0x33, 0xd7, 0x00, 0xd7, 0xee, 0x5f, 0xc7, 0x2f, 0x11, 0xc3, + 0xe1, 0x6f, 0x86, 0x3e, 0x23, 0xd4, 0xae, 0x20, 0x13, 0xc3, 0x15, 0x84, + 0xc0, 0xa6, 0x71, 0xbb, 0x70, 0xda, 0x07, 0xeb, 0x5f, 0x85, 0x3a, 0xfd, + 0xd2, 0xdc, 0xea, 0xf7, 0x32, 0x28, 0xd8, 0xb2, 0x3b, 0x30, 0x5c, 0xe7, + 0x00, 0x9e, 0x95, 0xe7, 0xd6, 0xb7, 0x3a, 0xb1, 0xd7, 0x19, 0x45, 0xc6, + 0xcb, 0x7f, 0xd0, 0xfa, 0x23, 0xe1, 0x3c, 0xa2, 0xdb, 0x4a, 0xd3, 0xae, + 0x62, 0x91, 0x56, 0xd1, 0x23, 0x58, 0xd8, 0x96, 0xe7, 0x39, 0x1d, 0xab, + 0xe8, 0x5f, 0x0f, 0x6a, 0x91, 0xde, 0xfd, 0xb5, 0x52, 0x41, 0xb4, 0x4a, + 0x54, 0x1c, 0xf5, 0xe2, 0xbe, 0x70, 0xf8, 0x2b, 0xa6, 0x41, 0x6d, 0xa0, + 0x46, 0x8d, 0x30, 0x69, 0xe5, 0x8b, 0xcc, 0xf2, 0xa5, 0x19, 0x18, 0xef, + 0xfc, 0xeb, 0xdd, 0xb4, 0xfb, 0x2d, 0x2e, 0xd2, 0xd8, 0x16, 0x0d, 0x90, + 0xb9, 0x21, 0x4f, 0x34, 0x5b, 0x4d, 0xcd, 0xa9, 0xb7, 0xd8, 0xf8, 0xb7, + 0xe2, 0x94, 0x3f, 0xf1, 0x71, 0x75, 0xe2, 0x1b, 0x23, 0xed, 0x4f, 0xfc, + 0xeb, 0x92, 0x92, 0x28, 0xc1, 0xc9, 0x5a, 0xef, 0xbe, 0x3b, 0x8b, 0x71, + 0xf1, 0x12, 0xf4, 0xda, 0x37, 0xee, 0x19, 0x55, 0x94, 0xa8, 0xc6, 0x72, + 0x3a, 0x9f, 0x7a, 0xf3, 0x87, 0x89, 0xdc, 0xff, 0x00, 0x19, 0xfa, 0x9a, + 0xf3, 0x2a, 0x46, 0xd2, 0x7a, 0x9d, 0xd0, 0x7a, 0x2d, 0x02, 0xe4, 0xc7, + 0x81, 0x84, 0x07, 0x9a, 0x83, 0xc4, 0x17, 0x11, 0xd9, 0x68, 0x93, 0x5b, + 0xc4, 0x43, 0x47, 0x2a, 0x19, 0x1d, 0xdb, 0xaa, 0xb7, 0xa0, 0xab, 0x22, + 0x07, 0xf4, 0x27, 0xea, 0xd5, 0x8d, 0xe2, 0xc8, 0x50, 0xe9, 0x52, 0xb6, + 0xd1, 0xb9, 0x48, 0xc1, 0x14, 0xe8, 0xfc, 0x69, 0x0e, 0x7f, 0x0b, 0x63, + 0x3c, 0x39, 0x3a, 0x0d, 0x23, 0xcb, 0x3c, 0x1d, 0xb5, 0x6d, 0x5e, 0x32, + 0x39, 0x21, 0x88, 0xac, 0xff, 0x00, 0x0d, 0xbe, 0xeb, 0x0c, 0x63, 0x04, + 0x2d, 0x68, 0x22, 0xa9, 0x1f, 0x77, 0x3f, 0x4a, 0xaa, 0x9a, 0x4e, 0x42, + 0x8e, 0xc4, 0x33, 0x5c, 0x04, 0x57, 0xf9, 0x78, 0x3e, 0x82, 0xb2, 0xa6, + 0x7c, 0x30, 0x1d, 0x2b, 0x5e, 0xe5, 0x41, 0x8c, 0xfc, 0xbb, 0x4d, 0x64, + 0x4f, 0xf7, 0xea, 0xe9, 0xd8, 0x99, 0x12, 0x47, 0x23, 0x63, 0x18, 0xa9, + 0x44, 0x8d, 0xc8, 0x2b, 0x4c, 0x41, 0xc0, 0xc5, 0x49, 0x8f, 0x5a, 0xa6, + 0x08, 0x58, 0x58, 0xf3, 0x56, 0x10, 0x9f, 0x4e, 0x2a, 0x18, 0x40, 0xc9, + 0x15, 0x61, 0x17, 0x15, 0x94, 0xb7, 0x1a, 0x14, 0xb1, 0xda, 0x46, 0x2a, + 0xdc, 0x0c, 0x40, 0x1c, 0x54, 0x3b, 0x38, 0xab, 0x56, 0xeb, 0xf2, 0x8a, + 0xc6, 0x4f, 0x43, 0x44, 0x5d, 0x81, 0xdb, 0xfb, 0xa6, 0xaf, 0x29, 0x3b, + 0x72, 0x41, 0xeb, 0x55, 0x2d, 0xf3, 0x9f, 0x4a, 0xbe, 0x47, 0xee, 0xfa, + 0x57, 0x2b, 0xdc, 0xb2, 0xec, 0x2c, 0x40, 0x1c, 0x1a, 0xbf, 0x03, 0xe0, + 0x8e, 0x0e, 0x6a, 0xb4, 0x0b, 0xc0, 0x26, 0xae, 0xc5, 0x1f, 0x3c, 0x52, + 0x8b, 0x18, 0xeb, 0x99, 0x43, 0x40, 0xdf, 0x2b, 0x74, 0xe4, 0xe2, 0xad, + 0x43, 0x3f, 0xca, 0xbf, 0xbb, 0x24, 0x54, 0x37, 0x08, 0x7e, 0xcf, 0x27, + 0xfb, 0xb5, 0x6e, 0xd2, 0x20, 0xd1, 0xa1, 0xc7, 0x6a, 0xd7, 0xa1, 0x25, + 0xb8, 0x2e, 0x01, 0x4f, 0xf5, 0x27, 0x3f, 0x5a, 0xbf, 0x6d, 0x29, 0xda, + 0x71, 0x16, 0x0e, 0x3d, 0x6a, 0x8c, 0x49, 0xb4, 0x7a, 0xd6, 0x85, 0xba, + 0x02, 0x06, 0x7b, 0x8a, 0x23, 0xab, 0x13, 0x2c, 0x69, 0x70, 0xb3, 0x59, + 0xc6, 0x54, 0x70, 0x46, 0x32, 0x4d, 0x5d, 0x82, 0xd1, 0xc6, 0xe5, 0x66, + 0x53, 0xb9, 0x89, 0xeb, 0x54, 0x74, 0x99, 0x4a, 0xe8, 0xaa, 0xc0, 0xe0, + 0x82, 0x79, 0xad, 0x64, 0x8d, 0x99, 0xbe, 0x4d, 0xa7, 0x1e, 0xfc, 0xd6, + 0xee, 0xd7, 0xd8, 0xcd, 0x5e, 0xdb, 0x96, 0x6d, 0x6c, 0x55, 0xd8, 0x09, + 0x55, 0x4a, 0x77, 0x27, 0xa5, 0x7e, 0xaa, 0x7c, 0x02, 0xd0, 0xed, 0x3c, + 0x3d, 0xf0, 0x67, 0xc2, 0xb6, 0x56, 0x17, 0x2d, 0x79, 0x66, 0x2d, 0x3c, + 0xd4, 0x99, 0xd7, 0x69, 0x62, 0xec, 0x5d, 0x86, 0x3b, 0x60, 0xb1, 0x1f, + 0x85, 0x7e, 0x57, 0x79, 0xa4, 0x5b, 0xcc, 0x8c, 0x06, 0xe5, 0x1d, 0xab, + 0xf5, 0x53, 0xe0, 0x14, 0xab, 0x27, 0xc1, 0x6f, 0x07, 0x90, 0xb8, 0x1f, + 0xd9, 0xd1, 0xff, 0x00, 0xf5, 0xeb, 0xbb, 0x0d, 0x6e, 0x66, 0x72, 0xd7, + 0xbd, 0x91, 0xd5, 0xd9, 0x02, 0x37, 0x9c, 0x63, 0xe6, 0xff, 0x00, 0x1a, + 0x97, 0x57, 0x39, 0xb3, 0xba, 0xe3, 0xfe, 0x59, 0x9f, 0xe5, 0x4c, 0xb5, + 0x04, 0x06, 0xcf, 0xf7, 0xb8, 0xa9, 0xb5, 0x75, 0xc5, 0x95, 0xd7, 0xfd, + 0x73, 0x6f, 0xe5, 0x5d, 0x71, 0x5f, 0xbb, 0xfb, 0xce, 0x38, 0x3f, 0xf6, + 0xb9, 0x7c, 0x8e, 0x3b, 0xc2, 0xf6, 0xbe, 0x5e, 0x85, 0x64, 0xb9, 0x27, + 0x70, 0x2d, 0x96, 0x39, 0xea, 0x49, 0xaf, 0x97, 0x3f, 0x69, 0xdd, 0x29, + 0xae, 0xfe, 0x21, 0xc4, 0x43, 0xb2, 0x0f, 0xb2, 0xa8, 0xc0, 0xff, 0x00, + 0x79, 0xab, 0xeb, 0x1f, 0x0d, 0x84, 0x3a, 0x2e, 0x9e, 0x41, 0xdd, 0xf2, + 0xed, 0xfc, 0x89, 0xaf, 0x9c, 0xbf, 0x68, 0x7b, 0x2f, 0x37, 0xc7, 0x16, + 0xec, 0x31, 0xff, 0x00, 0x1e, 0xe3, 0xff, 0x00, 0x42, 0x35, 0xe0, 0x57, + 0x85, 0xe1, 0x14, 0x7d, 0x3d, 0x29, 0x3f, 0x69, 0x3f, 0x9f, 0xe6, 0x7c, + 0xf3, 0x6d, 0xe1, 0xb2, 0xda, 0xc5, 0x80, 0x32, 0x3f, 0x33, 0xa7, 0xf3, + 0xaf, 0xb5, 0xfc, 0x3f, 0xa5, 0xb5, 0xb5, 0x94, 0x11, 0x12, 0x4e, 0x14, + 0x0e, 0x45, 0x7c, 0xc9, 0x05, 0x94, 0x70, 0xea, 0xb6, 0x12, 0x36, 0x30, + 0x27, 0x4f, 0xe6, 0x2b, 0xeb, 0xed, 0x3a, 0xdc, 0xf9, 0x28, 0x71, 0xda, + 0xb9, 0x55, 0x36, 0xd2, 0x8f, 0x99, 0x6e, 0x7c, 0xb3, 0x6f, 0xc8, 0xf0, + 0xcf, 0xdb, 0x23, 0x4a, 0x57, 0xf8, 0x3f, 0x26, 0x18, 0x82, 0xb7, 0x90, + 0x9c, 0xfe, 0x75, 0xf0, 0x05, 0xd6, 0x94, 0x36, 0x31, 0x2e, 0x73, 0x5f, + 0xa3, 0x7f, 0xb6, 0x35, 0xae, 0xef, 0x83, 0x17, 0x4e, 0x3f, 0x86, 0xea, + 0x12, 0x7f, 0xef, 0xac, 0x57, 0xe7, 0xbd, 0xda, 0xee, 0x8c, 0x8e, 0x87, + 0x9e, 0x6b, 0xa6, 0x51, 0x50, 0x76, 0x47, 0x2c, 0xe5, 0xce, 0xee, 0x7c, + 0xdb, 0xe2, 0x08, 0xc4, 0x3a, 0xe6, 0xa2, 0x33, 0xb8, 0x89, 0x48, 0xc9, + 0xac, 0x94, 0x64, 0xdc, 0x73, 0xc0, 0xad, 0x4f, 0x15, 0x15, 0x5f, 0x11, + 0xea, 0x43, 0x3c, 0x89, 0x8d, 0x61, 0xca, 0x48, 0x53, 0xf3, 0x28, 0x07, + 0xd4, 0xd7, 0xa9, 0x08, 0xdd, 0x1c, 0x37, 0xb2, 0x44, 0xdb, 0xc0, 0x70, + 0xa3, 0x04, 0x51, 0x90, 0x09, 0x20, 0x70, 0x7b, 0x55, 0x43, 0x2c, 0x68, + 0x79, 0x91, 0x73, 0xed, 0x52, 0x99, 0x51, 0x61, 0x2e, 0x0b, 0x30, 0xf5, + 0x02, 0xb4, 0xe5, 0x27, 0x9b, 0xb9, 0xea, 0xff, 0x00, 0x0f, 0xed, 0x16, + 0xe7, 0x4e, 0xc0, 0x18, 0x38, 0xeb, 0x5e, 0xb5, 0xe1, 0xcd, 0x04, 0x1b, + 0x38, 0xc0, 0x5c, 0xb6, 0x2b, 0xca, 0xbe, 0x14, 0x17, 0x96, 0x11, 0x98, + 0xd8, 0x82, 0xb9, 0x00, 0x57, 0xbf, 0xf8, 0x5a, 0xd5, 0xa4, 0xb4, 0x8b, + 0x6a, 0x91, 0x8a, 0xf2, 0xaa, 0x45, 0xa6, 0xee, 0x75, 0xc2, 0xcc, 0xe7, + 0x7c, 0x5d, 0xa2, 0x2d, 0xb7, 0xd8, 0xf3, 0x91, 0x90, 0x7a, 0x1a, 0xe5, + 0x66, 0xd3, 0x47, 0x96, 0xd8, 0x07, 0x83, 0x5e, 0x9d, 0xf1, 0x0e, 0xdf, + 0x60, 0xb1, 0xfd, 0xdb, 0x67, 0x6b, 0x73, 0x8f, 0xa5, 0x70, 0x72, 0x17, + 0xd8, 0x76, 0xc5, 0x9c, 0x9e, 0xe6, 0xb0, 0xb3, 0x34, 0x95, 0xae, 0xcc, + 0x88, 0x6d, 0x80, 0x9c, 0x13, 0x91, 0x8f, 0x7a, 0xe5, 0x7e, 0x28, 0xd9, + 0x18, 0xac, 0xf2, 0x01, 0x62, 0x5d, 0x7a, 0xd7, 0x77, 0x0d, 0xbc, 0x8d, + 0x78, 0x06, 0x14, 0x1f, 0x4c, 0x57, 0x33, 0xf1, 0x56, 0x27, 0x1a, 0x66, + 0x5b, 0x1c, 0x32, 0xf4, 0x15, 0xad, 0x3d, 0x19, 0x8c, 0xb5, 0x39, 0x4f, + 0x01, 0x9b, 0xa3, 0x6b, 0x7c, 0xd0, 0x5b, 0x0b, 0x99, 0x50, 0xa2, 0xf9, + 0x64, 0xe3, 0x03, 0x9a, 0xf4, 0xfb, 0x1b, 0x03, 0x2e, 0x8f, 0x2c, 0x86, + 0x32, 0x92, 0x15, 0xe4, 0x0e, 0xd5, 0xc1, 0xfc, 0x23, 0x46, 0x33, 0x6a, + 0x5c, 0x71, 0x95, 0xfe, 0xb5, 0xec, 0xd6, 0x56, 0x62, 0x5d, 0x2a, 0x50, + 0x14, 0x00, 0x57, 0x26, 0x9d, 0x4f, 0x8c, 0x23, 0xb1, 0xe5, 0xef, 0x64, + 0x33, 0x75, 0xc0, 0x0d, 0x9a, 0xe6, 0xf4, 0xfb, 0x45, 0x69, 0x17, 0x23, + 0x3c, 0x9a, 0xef, 0x6f, 0x6d, 0x96, 0x0b, 0x8b, 0xa2, 0x40, 0x28, 0x2b, + 0x92, 0xb1, 0x80, 0x79, 0x88, 0x46, 0x39, 0x27, 0x8a, 0x72, 0xda, 0xc6, + 0x4b, 0x73, 0xdd, 0x7f, 0x65, 0xad, 0x1f, 0x4b, 0xb9, 0xbf, 0xf1, 0x83, + 0x5e, 0x2c, 0xbe, 0x64, 0x76, 0x2a, 0xd1, 0x88, 0xdb, 0x68, 0xcf, 0xcd, + 0xd6, 0xb7, 0x6d, 0xb4, 0x61, 0x15, 0xda, 0xcb, 0xb4, 0xe1, 0x58, 0x1c, + 0x1f, 0xad, 0x62, 0xfe, 0xcc, 0x3a, 0x7d, 0xc5, 0xd7, 0x88, 0xfc, 0x4c, + 0x91, 0x22, 0xb8, 0xfb, 0x02, 0xe7, 0x71, 0xc6, 0x39, 0x35, 0xea, 0xe9, + 0xa6, 0xa2, 0x82, 0x59, 0x49, 0xc5, 0x6b, 0x89, 0x4f, 0xd9, 0x51, 0xb7, + 0x9f, 0xe6, 0x69, 0x84, 0xb7, 0x3d, 0x5f, 0x91, 0xe4, 0x5a, 0x77, 0xed, + 0x33, 0xf1, 0x6b, 0x49, 0xf1, 0xb5, 0xce, 0xbd, 0x6f, 0xfd, 0x9f, 0x35, + 0xc1, 0xb7, 0x5b, 0x05, 0x69, 0xa3, 0xf9, 0x7c, 0xa4, 0x27, 0x6f, 0x00, + 0xf5, 0xe6, 0xba, 0xab, 0x8f, 0xdb, 0x1f, 0xe3, 0x35, 0xcc, 0x6a, 0x3c, + 0xad, 0x0c, 0x90, 0xbb, 0x72, 0x22, 0x3d, 0x3f, 0xef, 0xaa, 0xf7, 0x5d, + 0x1b, 0xc0, 0xfe, 0x1d, 0x9a, 0xc2, 0x06, 0xfe, 0xcf, 0xb5, 0x3b, 0xa3, + 0x0c, 0x7e, 0x41, 0xc9, 0xc5, 0x74, 0xb6, 0x3f, 0x0f, 0x7c, 0x33, 0x1e, + 0x9f, 0xf3, 0x69, 0x56, 0x9d, 0x00, 0xe6, 0x31, 0x5e, 0x82, 0xc5, 0xb8, + 0xf7, 0x39, 0xde, 0x0d, 0xcb, 0x5d, 0x0f, 0x88, 0xb5, 0xbf, 0xda, 0x5f, + 0xe2, 0xbc, 0x9e, 0x34, 0x9b, 0xc4, 0x84, 0xe9, 0xd1, 0x5e, 0xcd, 0x68, + 0x96, 0x4f, 0xb2, 0x2f, 0x93, 0xcb, 0x52, 0x48, 0xc0, 0xcf, 0x5f, 0x98, + 0xd7, 0xd4, 0x5f, 0x0e, 0xd1, 0xef, 0xfc, 0x19, 0xa6, 0x5c, 0x5c, 0xfc, + 0xf7, 0x12, 0xc0, 0xb2, 0x48, 0x47, 0x42, 0xc4, 0x64, 0xd7, 0x58, 0x3c, + 0x05, 0xe1, 0x88, 0xd1, 0x07, 0xf6, 0x4d, 0x91, 0x5f, 0x78, 0xd4, 0xd4, + 0x90, 0x0b, 0x3d, 0x3e, 0x26, 0xb6, 0xb6, 0x09, 0x1c, 0x51, 0x92, 0x11, + 0x13, 0x00, 0x28, 0xf4, 0xae, 0x5c, 0x45, 0x7f, 0x6c, 0x92, 0x67, 0x6e, + 0x16, 0x83, 0xa0, 0xdb, 0x7d, 0x4f, 0x93, 0xbe, 0x3c, 0x4f, 0x72, 0xdf, + 0x12, 0xc1, 0x8a, 0xdd, 0x8c, 0x36, 0xd6, 0xe1, 0x58, 0x8e, 0x49, 0x27, + 0xda, 0xbc, 0xd6, 0xe2, 0x6b, 0xd4, 0xbb, 0x12, 0x1b, 0x49, 0x5a, 0x36, + 0x7d, 0xd8, 0x54, 0x27, 0x8a, 0xfb, 0xf7, 0x4e, 0xd2, 0xb4, 0x9b, 0xeb, + 0x9b, 0xdb, 0x8b, 0xa8, 0x21, 0x9a, 0x76, 0x7f, 0x99, 0xdc, 0x02, 0xc7, + 0x8a, 0xb1, 0x6d, 0xa1, 0x68, 0x31, 0x2c, 0x8f, 0xf6, 0x7b, 0x55, 0x1b, + 0x8e, 0x32, 0x05, 0x61, 0x78, 0x36, 0xa4, 0xd6, 0xa3, 0x95, 0x09, 0xcd, + 0xbb, 0x4b, 0x73, 0xe3, 0xbd, 0x33, 0x56, 0x07, 0x45, 0x78, 0x45, 0xa4, + 0xc5, 0xd9, 0x70, 0x06, 0xd3, 0xfe, 0x15, 0xf5, 0x27, 0x80, 0xec, 0xc3, + 0xf8, 0x5e, 0xd7, 0x6c, 0x47, 0xe6, 0x8c, 0x73, 0x8e, 0xf8, 0xad, 0xa8, + 0x24, 0xf0, 0xf5, 0x83, 0x16, 0x2f, 0x66, 0x80, 0x1e, 0x8c, 0x56, 0x99, + 0xa5, 0xf8, 0xc3, 0x47, 0x8a, 0xe2, 0x78, 0xe0, 0xd4, 0x2d, 0x94, 0x19, + 0x48, 0x55, 0x59, 0x06, 0x0f, 0xd2, 0xb3, 0x5c, 0x8a, 0x57, 0x5d, 0x4e, + 0x88, 0xd3, 0x9c, 0x17, 0xbc, 0xee, 0x79, 0x95, 0xe2, 0x89, 0x7c, 0x4f, + 0x7d, 0xa6, 0x6d, 0x06, 0x41, 0x1f, 0x99, 0x8a, 0xf4, 0x5f, 0x86, 0x7a, + 0x1f, 0x9b, 0xe7, 0x42, 0xc3, 0x0e, 0xa8, 0x06, 0x0f, 0x6e, 0xb5, 0xe6, + 0xe2, 0xed, 0x27, 0xf8, 0xf1, 0xaa, 0xa8, 0x6f, 0x90, 0xd8, 0x2f, 0x23, + 0xa6, 0x73, 0xcd, 0x7b, 0xbf, 0x80, 0x6c, 0x1a, 0x29, 0xee, 0x9b, 0xd4, + 0x03, 0xf8, 0x54, 0x38, 0x7b, 0x38, 0xb9, 0x21, 0x73, 0xde, 0x56, 0x25, + 0x83, 0xc3, 0xe6, 0x0b, 0x90, 0xd8, 0xdc, 0x41, 0xc6, 0x7d, 0x2a, 0xf5, + 0xee, 0x89, 0x1d, 0xd6, 0x9f, 0x73, 0x1c, 0x84, 0x88, 0xf6, 0x10, 0x46, + 0x3b, 0x62, 0xba, 0x05, 0xb6, 0xce, 0x71, 0xeb, 0x49, 0x2d, 0xa1, 0x96, + 0xd6, 0x78, 0x87, 0x04, 0xa9, 0x1c, 0xfd, 0x2b, 0x8d, 0xe2, 0x24, 0xdd, + 0x91, 0xd4, 0xa3, 0xd4, 0xf8, 0x6f, 0x47, 0x8f, 0x4b, 0xd2, 0x2f, 0xb5, + 0x1b, 0x0b, 0x08, 0x8a, 0xc3, 0x05, 0xc3, 0x28, 0x66, 0x07, 0xe7, 0x3e, + 0xb5, 0xc2, 0xf8, 0xa6, 0x50, 0x9a, 0xeb, 0xb1, 0xc2, 0x82, 0x45, 0x7b, + 0xb6, 0x8f, 0xfb, 0x3f, 0x78, 0x96, 0x7b, 0xe9, 0xdb, 0xcd, 0x81, 0x10, + 0xcc, 0xc4, 0x34, 0x8d, 0xd3, 0x26, 0xa4, 0xbd, 0xfd, 0x92, 0x5b, 0x55, + 0xba, 0x2f, 0xa9, 0x6a, 0x7c, 0xee, 0xdd, 0xfb, 0x93, 0x8a, 0xf4, 0x27, + 0x4a, 0x9f, 0x36, 0xe7, 0x98, 0xea, 0x54, 0x96, 0xc8, 0xe3, 0x3c, 0x42, + 0xb0, 0x47, 0xf0, 0x92, 0x77, 0x66, 0xf3, 0x14, 0xd9, 0x92, 0x54, 0x1c, + 0x1e, 0x95, 0xe4, 0x9e, 0x07, 0x82, 0x28, 0x3c, 0x15, 0xae, 0x80, 0xdb, + 0xbe, 0x50, 0x46, 0x7b, 0x70, 0x78, 0xaf, 0xa4, 0xf5, 0xcf, 0x84, 0x6d, + 0x6b, 0xa6, 0x4d, 0xa3, 0x19, 0x9a, 0x5b, 0x3f, 0x2f, 0xca, 0x24, 0xfa, + 0x57, 0x98, 0x6b, 0x5f, 0x01, 0xb5, 0x3d, 0x3b, 0x46, 0xd4, 0x6c, 0xb4, + 0x7b, 0xb1, 0x0f, 0xdb, 0x10, 0x0c, 0x48, 0x99, 0xc7, 0x5e, 0xf9, 0xad, + 0x63, 0x4e, 0x2d, 0x5a, 0xe4, 0x54, 0x94, 0xf7, 0xb7, 0x42, 0xf7, 0xec, + 0xc0, 0x90, 0x4d, 0xac, 0x5b, 0x82, 0xc2, 0x42, 0x6d, 0x49, 0x3e, 0xdd, + 0x2b, 0x1b, 0xe2, 0x65, 0xe4, 0x70, 0xfc, 0x56, 0xd7, 0x6d, 0xc7, 0xcb, + 0xb5, 0x94, 0x03, 0xf8, 0x0a, 0xab, 0xf0, 0xa7, 0xc3, 0x7e, 0x2a, 0xf8, + 0x51, 0xab, 0x34, 0xf7, 0x31, 0xad, 0xc2, 0x2c, 0x26, 0x2d, 0xd0, 0x13, + 0x93, 0xf5, 0x06, 0xbc, 0xfb, 0xe2, 0x5b, 0x78, 0x86, 0xe3, 0xc5, 0x1a, + 0xbe, 0xb8, 0x89, 0x25, 0xbf, 0x98, 0xc6, 0x4d, 0xb2, 0x46, 0x5b, 0x7e, + 0x07, 0x4a, 0x21, 0x86, 0x8f, 0xc2, 0xdf, 0x52, 0xa5, 0x89, 0x7c, 0xbf, + 0x23, 0xe9, 0xef, 0x84, 0xaf, 0x04, 0x9f, 0x14, 0xa4, 0xda, 0x14, 0x4a, + 0x96, 0xed, 0x92, 0x4f, 0x5e, 0x95, 0xb1, 0x36, 0xad, 0x6a, 0xbe, 0x24, + 0xf1, 0xb0, 0x37, 0x91, 0x46, 0x9b, 0x8a, 0xe5, 0xcf, 0x19, 0xd9, 0xd2, + 0xbe, 0x5c, 0xf8, 0x6b, 0xe3, 0xfb, 0xad, 0x4a, 0xfd, 0xf5, 0x98, 0xae, + 0xde, 0xdf, 0x53, 0x75, 0x29, 0x2c, 0x44, 0xed, 0x09, 0xf4, 0x1f, 0x85, + 0x75, 0x56, 0x97, 0xa8, 0xf7, 0xb7, 0xb2, 0x5d, 0x4e, 0xab, 0x34, 0xcf, + 0xe6, 0x4c, 0xc8, 0x71, 0xbb, 0x3d, 0xcd, 0x73, 0x3a, 0xf4, 0xe8, 0x49, + 0xad, 0x5e, 0xa7, 0xa7, 0x4b, 0x03, 0x5f, 0x13, 0x04, 0xee, 0x92, 0xb1, + 0xeb, 0x77, 0x77, 0x96, 0xb6, 0x5f, 0x03, 0x35, 0x09, 0xe5, 0x98, 0x49, + 0x27, 0xda, 0xf2, 0x22, 0x43, 0xf3, 0x3f, 0xcc, 0x3a, 0x0a, 0xd5, 0xf8, + 0x83, 0xe3, 0xc7, 0xb4, 0xd1, 0xbc, 0x3f, 0x7f, 0x3e, 0x8b, 0x7b, 0xa2, + 0x4b, 0x0e, 0x91, 0x14, 0x46, 0x0b, 0xf1, 0xb5, 0xdc, 0x60, 0xe1, 0xf1, + 0xe8, 0x7b, 0x57, 0x84, 0xff, 0x00, 0x6f, 0x59, 0xc7, 0x24, 0xd6, 0xf2, + 0x3b, 0x4a, 0x23, 0x90, 0xec, 0x00, 0x96, 0x1e, 0xa0, 0xd5, 0xaf, 0x1b, + 0xfc, 0x42, 0xf1, 0xaf, 0xc6, 0x7f, 0xb0, 0xd8, 0x6a, 0x72, 0xc3, 0x72, + 0x22, 0xb7, 0x4b, 0x18, 0xa4, 0x8a, 0x3c, 0x48, 0x51, 0x49, 0xc1, 0x3e, + 0xfc, 0xd6, 0x94, 0x71, 0x50, 0x71, 0x70, 0x92, 0x66, 0x58, 0xac, 0xbe, + 0xac, 0x1a, 0x9c, 0x1a, 0x7f, 0xa1, 0xe9, 0x1f, 0x0d, 0x35, 0x86, 0xf1, + 0xae, 0x99, 0x77, 0x71, 0x2c, 0x40, 0x3c, 0x72, 0x6c, 0x8c, 0x1e, 0xe2, + 0xba, 0xef, 0x08, 0x5b, 0x86, 0xf8, 0x8f, 0xa2, 0xab, 0xc6, 0xa4, 0xc7, + 0x70, 0xac, 0x07, 0xb8, 0x61, 0xfe, 0x35, 0xe7, 0xbf, 0x03, 0x34, 0x2d, + 0x5f, 0xc2, 0x1e, 0x1e, 0xd4, 0x74, 0x8d, 0x72, 0x39, 0xed, 0xb5, 0x18, + 0xee, 0x58, 0x48, 0xb3, 0xae, 0x08, 0xc7, 0x2b, 0x8a, 0xf4, 0xbf, 0x0f, + 0x0d, 0xbf, 0x11, 0x74, 0x99, 0xa3, 0x05, 0xd9, 0xe6, 0x44, 0x55, 0x51, + 0xd4, 0x96, 0x5f, 0xe8, 0x28, 0x69, 0xda, 0xc6, 0x71, 0xe8, 0x7d, 0x3d, + 0xf1, 0x15, 0x91, 0xbc, 0x29, 0x74, 0x65, 0x40, 0xd1, 0x1d, 0x99, 0x04, + 0x7f, 0xb4, 0x2b, 0x97, 0xf0, 0x65, 0xd1, 0xb8, 0xf0, 0x0e, 0xa2, 0x0a, + 0xaa, 0xaa, 0xde, 0x46, 0x02, 0xa8, 0xc0, 0xfb, 0xeb, 0x5d, 0x9f, 0xc4, + 0x5b, 0x64, 0x7f, 0x0a, 0x5c, 0x23, 0x86, 0x75, 0x1b, 0x09, 0x09, 0xc1, + 0xfb, 0xc2, 0xb9, 0x4f, 0x09, 0x47, 0x6a, 0xfe, 0x00, 0xd4, 0xda, 0xda, + 0x27, 0x8c, 0x0b, 0xc8, 0xf2, 0x8e, 0xd9, 0x39, 0x0c, 0xbc, 0xd6, 0xd5, + 0x23, 0x27, 0x74, 0xbf, 0xad, 0x05, 0x42, 0x51, 0x72, 0x8f, 0xaa, 0xfc, + 0xd1, 0xed, 0x3a, 0x7e, 0x7e, 0xc9, 0x17, 0xfb, 0xa2, 0xa2, 0xd7, 0x24, + 0x09, 0xa1, 0xea, 0x44, 0xe4, 0x01, 0x6f, 0x21, 0x38, 0xff, 0x00, 0x74, + 0xd4, 0xd6, 0x19, 0x16, 0xb1, 0x67, 0xfb, 0xa2, 0x9b, 0xa9, 0xec, 0xfe, + 0xcb, 0xbc, 0xf3, 0x17, 0x74, 0x7e, 0x53, 0xee, 0x1e, 0xa3, 0x1c, 0xd7, + 0xab, 0x1f, 0x80, 0xf0, 0xdf, 0xc6, 0x7c, 0x1b, 0x7c, 0xbe, 0x58, 0x83, + 0x2b, 0x82, 0x14, 0x2b, 0x1f, 0xe7, 0x59, 0xba, 0xa0, 0x45, 0x8e, 0x7d, + 0x9c, 0xee, 0x88, 0xa8, 0x02, 0xb6, 0x35, 0x06, 0x95, 0xa5, 0x70, 0xa4, + 0x79, 0x65, 0xb7, 0x2f, 0x1d, 0xb3, 0x59, 0x17, 0xd3, 0xb6, 0xef, 0x9a, + 0x20, 0x4f, 0xb1, 0xc7, 0xf4, 0xaf, 0x32, 0xe7, 0xa8, 0xd1, 0x8f, 0x75, + 0x6d, 0xe7, 0xfd, 0x9a, 0x23, 0xc3, 0x11, 0x17, 0xfe, 0x84, 0x6a, 0x8e, + 0xb5, 0xa2, 0x26, 0x9e, 0x1c, 0x4b, 0x30, 0xf3, 0xc7, 0xfc, 0xb3, 0x51, + 0x9f, 0xd6, 0xa7, 0xd5, 0xef, 0x27, 0xb7, 0x78, 0xd9, 0x02, 0x46, 0xc1, + 0xe3, 0xfb, 0xdc, 0x9e, 0xbc, 0x55, 0x2d, 0x5a, 0x7b, 0x8b, 0x99, 0x1e, + 0x49, 0xa7, 0x40, 0xcc, 0x7b, 0x47, 0xff, 0x00, 0xd7, 0xa5, 0x27, 0x1b, + 0x6a, 0x66, 0x93, 0xb9, 0xce, 0x5e, 0xa8, 0x60, 0x40, 0x1d, 0xb9, 0x15, + 0xcb, 0xea, 0xd0, 0x31, 0x92, 0x00, 0x32, 0x03, 0x4a, 0x3a, 0x7d, 0x0d, + 0x75, 0xd3, 0xa1, 0x0f, 0x9f, 0x3d, 0x7a, 0x7f, 0xcf, 0x3f, 0xfe, 0xbd, + 0x72, 0xfa, 0xe6, 0x63, 0x31, 0xca, 0x25, 0x56, 0x3e, 0x70, 0xc7, 0xcb, + 0xec, 0x6b, 0x15, 0xb8, 0xe4, 0x8e, 0x7f, 0x52, 0xb3, 0x0a, 0xad, 0xf2, + 0xd7, 0x0b, 0xae, 0xc4, 0x77, 0x1e, 0x3a, 0x57, 0x69, 0xab, 0xdf, 0x4e, + 0x03, 0x02, 0xcb, 0x8f, 0xa5, 0x70, 0x9a, 0xc5, 0xd4, 0x85, 0x98, 0x92, + 0xbf, 0x95, 0x4b, 0x7a, 0x92, 0x91, 0xc2, 0x6b, 0x2b, 0xb2, 0xf8, 0x67, + 0xb8, 0x3c, 0x56, 0x64, 0xfd, 0x7d, 0xea, 0xf6, 0xaf, 0x2b, 0xcb, 0x77, + 0xc9, 0x19, 0x03, 0xd2, 0xb3, 0x65, 0xdf, 0x9e, 0xa3, 0xf2, 0xab, 0x8a, + 0x19, 0x03, 0xfc, 0xc6, 0xab, 0x6d, 0xe4, 0xfd, 0x6a, 0x69, 0x19, 0xbd, + 0x47, 0xe5, 0x55, 0x77, 0x30, 0xcf, 0x3d, 0x4f, 0xa5, 0x74, 0xc5, 0x19, + 0xb2, 0x4e, 0xdd, 0x2a, 0x19, 0x07, 0x18, 0xa5, 0x2c, 0xdd, 0x8d, 0x44, + 0xcc, 0x46, 0x09, 0x3d, 0x6b, 0x44, 0x89, 0x6c, 0x7e, 0xdc, 0x0a, 0x4c, + 0x70, 0x6a, 0x20, 0x58, 0x9e, 0x49, 0xa4, 0x20, 0x8e, 0x7b, 0x55, 0xa4, + 0x66, 0xe4, 0x4d, 0x6a, 0xa7, 0xcd, 0x4f, 0x4a, 0xe8, 0xad, 0xf2, 0x07, + 0xca, 0xd9, 0x1d, 0xc5, 0x73, 0x96, 0x87, 0x13, 0x44, 0xc4, 0x67, 0x9a, + 0xe8, 0xe1, 0x68, 0xdc, 0xb0, 0x39, 0x42, 0x6b, 0x0a, 0xdb, 0x95, 0x4f, + 0x62, 0x49, 0x32, 0x10, 0xfa, 0xe2, 0xb1, 0x74, 0xc8, 0xca, 0xf8, 0x82, + 0x0c, 0x9e, 0xe6, 0xb7, 0xde, 0x00, 0x57, 0xe6, 0x39, 0x5c, 0x75, 0xac, + 0x3b, 0x05, 0x48, 0xbc, 0x40, 0xa4, 0x0f, 0x94, 0x67, 0xa7, 0x38, 0xab, + 0xa2, 0xfd, 0xd9, 0x7a, 0x1c, 0xf5, 0x57, 0xbf, 0x13, 0xb4, 0x8b, 0x2e, + 0xe5, 0x77, 0x11, 0xf4, 0xab, 0xa8, 0xad, 0x10, 0xfb, 0xe5, 0x81, 0xf5, + 0xaa, 0x51, 0xaa, 0x49, 0x92, 0xad, 0x86, 0xc7, 0x38, 0x3c, 0xd4, 0xb1, + 0xb3, 0x6d, 0x2a, 0xc4, 0xb6, 0x0f, 0x5a, 0xe4, 0x67, 0x49, 0xe8, 0x7f, + 0x02, 0x53, 0xcd, 0xf8, 0xc3, 0xe1, 0x75, 0xce, 0x33, 0x78, 0xbf, 0xc8, + 0xd7, 0xea, 0x6e, 0x83, 0xac, 0x34, 0x97, 0x36, 0x1a, 0x72, 0x22, 0x1c, + 0x59, 0x09, 0x99, 0x8f, 0x5e, 0xb8, 0x02, 0xbf, 0x2b, 0x7e, 0x06, 0x4e, + 0x2d, 0xbe, 0x2e, 0xf8, 0x62, 0x46, 0xe8, 0x2e, 0xd7, 0xf5, 0xcd, 0x7e, + 0xa4, 0x78, 0x3e, 0xc5, 0x6e, 0x21, 0xb5, 0xd5, 0x98, 0xb4, 0x37, 0x09, + 0x6e, 0x6c, 0xcc, 0x67, 0xa6, 0x15, 0xba, 0xd6, 0x72, 0x4a, 0xda, 0x9d, + 0x74, 0x2f, 0xcb, 0x64, 0x78, 0x8f, 0xc6, 0x5b, 0xe4, 0x7b, 0x7b, 0xf7, + 0x86, 0x5c, 0x9c, 0xea, 0x27, 0x70, 0xf5, 0xda, 0x9d, 0x2b, 0xe1, 0x6f, + 0x02, 0x01, 0x37, 0x8a, 0xb4, 0xe5, 0x71, 0xbc, 0x19, 0xd7, 0x23, 0x19, + 0xcf, 0xcd, 0x5f, 0x79, 0x7c, 0x6f, 0xd1, 0xe1, 0xd2, 0x12, 0x7b, 0x75, + 0x24, 0xa9, 0xb6, 0xbe, 0x97, 0x73, 0x9c, 0x9c, 0x95, 0x43, 0xfd, 0x6b, + 0xf3, 0xfb, 0xc2, 0xe6, 0x69, 0x35, 0xc8, 0x16, 0xdc, 0x9f, 0x3d, 0xa4, + 0x01, 0x31, 0xfd, 0xec, 0xf1, 0x5b, 0xcb, 0xe0, 0xba, 0x38, 0xde, 0x95, + 0x51, 0xfb, 0x91, 0xe0, 0xf4, 0xf2, 0xfc, 0x33, 0xa6, 0x8d, 0xa1, 0x48, + 0xb4, 0x87, 0xa0, 0xc6, 0x3e, 0x41, 0xc5, 0x6c, 0x21, 0xe5, 0xc1, 0x04, + 0x72, 0x0f, 0x15, 0xc6, 0x7c, 0x1c, 0xb4, 0xd5, 0x6c, 0x3e, 0x1b, 0xe8, + 0x16, 0xba, 0xdb, 0x2b, 0x6a, 0x31, 0xd8, 0xc4, 0x93, 0x32, 0xbe, 0xe1, + 0x90, 0xa3, 0x1c, 0xe0, 0x73, 0x8c, 0x57, 0x62, 0x0e, 0xd9, 0x79, 0xee, + 0x47, 0x4a, 0xf5, 0x20, 0xef, 0x14, 0xce, 0x69, 0x5d, 0xb7, 0x73, 0xe4, + 0x9f, 0xf8, 0x29, 0x5c, 0xff, 0x00, 0xf1, 0x42, 0x78, 0x3d, 0x7a, 0x13, + 0xa8, 0xc8, 0x71, 0x8f, 0xfa, 0x65, 0xff, 0x00, 0xd7, 0xaf, 0x81, 0x3c, + 0x33, 0x26, 0x3c, 0x43, 0x66, 0x33, 0xd6, 0x65, 0xfe, 0x75, 0xf7, 0x5f, + 0xfc, 0x14, 0xd2, 0xed, 0x97, 0xc1, 0xfe, 0x0d, 0x8c, 0x1f, 0x97, 0xed, + 0xf3, 0x1f, 0xca, 0x31, 0xfe, 0x35, 0xf0, 0x0f, 0x86, 0x65, 0xf3, 0xfc, + 0x45, 0x65, 0x1b, 0xf2, 0xad, 0x32, 0x82, 0x3d, 0x79, 0xae, 0x0c, 0x57, + 0xbf, 0x5a, 0xfe, 0x86, 0x14, 0x5d, 0x92, 0xb7, 0x73, 0xf6, 0xbf, 0xc0, + 0xb1, 0x18, 0xbc, 0x07, 0xe1, 0xb0, 0x87, 0x72, 0x8d, 0x3a, 0x01, 0x8e, + 0xdf, 0xea, 0xd6, 0xb6, 0xd6, 0x17, 0x25, 0x09, 0xec, 0xc0, 0x91, 0x5c, + 0xa7, 0xc3, 0x02, 0x53, 0xe1, 0xa7, 0x86, 0x08, 0x1c, 0xff, 0x00, 0x66, + 0xdb, 0xe0, 0x76, 0x1f, 0xbb, 0x5a, 0xea, 0xbe, 0xd4, 0x5a, 0x31, 0xf2, + 0xe1, 0xd8, 0xf5, 0x3d, 0x2b, 0xd2, 0x4e, 0x32, 0x97, 0xbd, 0xa3, 0x39, + 0x5f, 0xc5, 0xa1, 0x7d, 0x58, 0x12, 0x71, 0xd7, 0xd0, 0xd3, 0x19, 0x86, + 0x0f, 0xcd, 0xcf, 0xa5, 0x54, 0x4b, 0xa5, 0x7c, 0xb6, 0x7e, 0x51, 0xd7, + 0x14, 0xcb, 0xbb, 0x83, 0x96, 0x48, 0x88, 0x57, 0x03, 0x82, 0xc3, 0x9a, + 0xee, 0x55, 0x54, 0x95, 0xce, 0x66, 0xd2, 0x45, 0xdc, 0x82, 0x07, 0x52, + 0x47, 0xa5, 0x63, 0x5d, 0x17, 0x51, 0x6e, 0x01, 0x38, 0x2b, 0x83, 0x52, + 0xc7, 0x2d, 0xe0, 0x31, 0x74, 0x71, 0x9f, 0x9f, 0xa0, 0xc0, 0xa2, 0x6b, + 0x92, 0xb1, 0xc2, 0xbc, 0x36, 0x54, 0x1a, 0x96, 0xde, 0xf2, 0x42, 0x72, + 0x52, 0xa6, 0x4e, 0x2e, 0x7f, 0x76, 0x40, 0x7c, 0xe1, 0x79, 0xe2, 0xac, + 0x32, 0x4c, 0x25, 0x2f, 0x9d, 0xcb, 0x81, 0x80, 0x2b, 0x31, 0x6e, 0x64, + 0x25, 0xd0, 0xa7, 0xca, 0xca, 0x79, 0x1f, 0x4a, 0xbd, 0x75, 0x34, 0xa9, + 0x18, 0xf2, 0x57, 0x7c, 0x87, 0x8c, 0x54, 0x45, 0x29, 0x2d, 0xcb, 0x4e, + 0x3c, 0xbc, 0xcc, 0x2e, 0x8d, 0xc2, 0x44, 0xcc, 0x0e, 0x78, 0xc9, 0x03, + 0xad, 0x65, 0x47, 0x6f, 0x79, 0x2c, 0x85, 0xc2, 0x30, 0x4c, 0xf4, 0x3d, + 0x6a, 0xeb, 0x5f, 0xce, 0x23, 0x01, 0xe3, 0xda, 0xd8, 0x19, 0x35, 0x5e, + 0xf7, 0x51, 0x98, 0xc4, 0x0d, 0xbe, 0xcf, 0x30, 0x75, 0xdc, 0x2a, 0x3d, + 0xad, 0x15, 0x2b, 0x5f, 0x53, 0x17, 0xca, 0xb5, 0x77, 0x12, 0x3b, 0x3b, + 0x81, 0x79, 0x1c, 0xbb, 0x48, 0x1c, 0x67, 0x3d, 0xab, 0x4a, 0x3b, 0x8f, + 0x3c, 0xb3, 0x2a, 0x92, 0x07, 0xcb, 0xe9, 0x8a, 0xa5, 0x61, 0xab, 0x3c, + 0xed, 0xb6, 0x72, 0x37, 0xb0, 0x1c, 0xaf, 0x4e, 0xf4, 0xe5, 0xba, 0x9d, + 0x0b, 0xb8, 0x00, 0x44, 0x0e, 0xdf, 0x98, 0x71, 0x57, 0x74, 0xf5, 0x8e, + 0xc6, 0xb0, 0xa9, 0x14, 0xac, 0xae, 0xdb, 0x3f, 0x30, 0xbf, 0xe0, 0xa3, + 0xf1, 0xcd, 0x6b, 0xf1, 0xba, 0x2f, 0x33, 0x3b, 0x5e, 0xca, 0x32, 0x99, + 0x3d, 0xbf, 0xfd, 0x79, 0xaf, 0x9b, 0xbe, 0x1e, 0x98, 0xa7, 0xf1, 0xdf, + 0x87, 0x22, 0x9f, 0x3e, 0x4b, 0xea, 0x36, 0xea, 0xf8, 0x3c, 0xed, 0x32, + 0xae, 0x6b, 0xe8, 0xef, 0xf8, 0x29, 0x4b, 0x11, 0xf1, 0x96, 0xc9, 0xd8, + 0xae, 0x5a, 0xc5, 0x7e, 0xe9, 0xe0, 0xf3, 0x5f, 0x2e, 0xf8, 0x32, 0x73, + 0x1f, 0x8b, 0x74, 0x46, 0x0d, 0xb4, 0x8b, 0xe8, 0x48, 0x3e, 0x9f, 0x3a, + 0xd7, 0x9b, 0xff, 0x00, 0x2f, 0x2f, 0xe6, 0x7a, 0x95, 0x2f, 0xcb, 0xaf, + 0x6f, 0xd0, 0xfd, 0xee, 0xb6, 0xb6, 0x10, 0xda, 0xc6, 0x3f, 0x88, 0x00, + 0x33, 0xdf, 0x14, 0xae, 0xe1, 0x2e, 0x70, 0x4e, 0x49, 0x5e, 0x07, 0xe5, + 0x54, 0xed, 0xd9, 0xa6, 0xb5, 0x85, 0xf7, 0xe4, 0xec, 0x07, 0x20, 0xfb, + 0x55, 0x89, 0xe4, 0x0b, 0xe5, 0x8e, 0x4b, 0x30, 0x03, 0x35, 0xeb, 0x54, + 0xa9, 0xce, 0xaf, 0x63, 0xcd, 0xc3, 0xef, 0x65, 0xd8, 0xe5, 0x3e, 0x2b, + 0xe9, 0x36, 0x1a, 0xdf, 0x81, 0x75, 0xb8, 0x35, 0x3b, 0x58, 0x2f, 0xa0, + 0x16, 0x33, 0xbf, 0x95, 0x3a, 0xee, 0x4c, 0x84, 0x24, 0x1c, 0x7a, 0x8a, + 0xfc, 0x1d, 0xf1, 0x32, 0xa2, 0x6b, 0x77, 0x82, 0x20, 0x15, 0x04, 0x8c, + 0x14, 0x0e, 0xc3, 0x26, 0xbf, 0x73, 0x7f, 0x68, 0x0f, 0x12, 0xdc, 0xf8, + 0x4b, 0xe1, 0x57, 0x88, 0xaf, 0xac, 0xe3, 0xf3, 0xae, 0xfe, 0xc7, 0x2a, + 0xc6, 0x8a, 0x85, 0xce, 0x58, 0x63, 0x38, 0x1e, 0x83, 0x27, 0xf0, 0xaf, + 0xc2, 0x8d, 0x76, 0xe5, 0xee, 0x35, 0x4b, 0x99, 0x5f, 0xef, 0x3b, 0x33, + 0x1f, 0xae, 0x6b, 0xce, 0xac, 0xef, 0x24, 0x7a, 0x70, 0x92, 0x70, 0xe5, + 0xea, 0x7b, 0xe7, 0xc1, 0x90, 0x65, 0xd2, 0xed, 0x44, 0xad, 0xf2, 0xfd, + 0x8a, 0x41, 0xb8, 0xf6, 0xf9, 0x85, 0x7b, 0xb9, 0xd5, 0x97, 0x4f, 0x9e, + 0xd6, 0xc9, 0xa0, 0x19, 0xb9, 0x89, 0xb6, 0xca, 0xa7, 0x8e, 0x07, 0xff, + 0x00, 0x5e, 0xbc, 0x2b, 0xe0, 0xdc, 0x26, 0xef, 0x43, 0xb3, 0x88, 0x1d, + 0xa5, 0xec, 0xdd, 0x73, 0xff, 0x00, 0x02, 0x15, 0xed, 0x3a, 0x86, 0x95, + 0x3c, 0x2b, 0x61, 0x7f, 0x23, 0x28, 0xb7, 0xb0, 0x81, 0xd5, 0xce, 0x72, + 0x4e, 0x40, 0xc5, 0x27, 0xb1, 0xad, 0x3d, 0x91, 0xf2, 0x57, 0xc5, 0xb5, + 0x2b, 0xe3, 0x5b, 0x8c, 0xb6, 0xe3, 0xb1, 0x7a, 0xfd, 0x2b, 0x8e, 0x2e, + 0xe4, 0x6d, 0x50, 0x33, 0xea, 0x6b, 0xaf, 0xf8, 0xb4, 0xc3, 0xfe, 0x13, + 0x5b, 0x90, 0x07, 0x21, 0x14, 0x11, 0xe8, 0x71, 0x5c, 0x60, 0x93, 0x63, + 0x13, 0xed, 0x5e, 0x5d, 0x4f, 0x89, 0x9d, 0xf0, 0xd8, 0x47, 0x33, 0x27, + 0x2c, 0xe3, 0xe8, 0x05, 0x63, 0xf8, 0x93, 0x9d, 0x12, 0x6f, 0xc2, 0xb4, + 0x5a, 0x49, 0x26, 0xce, 0x70, 0xb9, 0xe9, 0x8a, 0xcc, 0xf1, 0x1a, 0x04, + 0xd1, 0xe6, 0x52, 0x78, 0xc7, 0xeb, 0x4e, 0x97, 0xc7, 0x1f, 0x51, 0xcf, + 0xe1, 0x65, 0x7f, 0x0c, 0x86, 0x1a, 0x79, 0x38, 0xe3, 0x6f, 0x15, 0xa5, + 0x1e, 0x57, 0x9a, 0xab, 0xe1, 0xbb, 0x41, 0xfd, 0x8a, 0x65, 0x0c, 0xdb, + 0x80, 0xe9, 0x9a, 0xb4, 0x11, 0x98, 0x0f, 0x9b, 0x68, 0xaa, 0xa8, 0xd3, + 0x9c, 0x85, 0x0d, 0x88, 0xee, 0xb3, 0xe5, 0xb3, 0x33, 0x0c, 0xe3, 0xa0, + 0xac, 0x6b, 0x94, 0xf9, 0xf3, 0xed, 0x5b, 0x52, 0xec, 0x50, 0xe5, 0x8e, + 0x4f, 0xad, 0x62, 0x5c, 0xc6, 0x3c, 0xde, 0x2a, 0xe9, 0x13, 0x32, 0xcc, + 0x63, 0xe5, 0x18, 0xa9, 0x42, 0x71, 0x55, 0x62, 0x52, 0x00, 0xe4, 0x8a, + 0xb0, 0xb9, 0xc7, 0xde, 0x35, 0x4c, 0x94, 0x49, 0x1e, 0x72, 0x6a, 0xca, + 0x8c, 0x01, 0x55, 0x14, 0x90, 0xe4, 0x03, 0xfa, 0x54, 0xe8, 0x5b, 0xd4, + 0x7e, 0x55, 0x9c, 0x91, 0x68, 0xb6, 0xbd, 0x2a, 0xdc, 0x0b, 0xc0, 0x35, + 0x9e, 0xb2, 0x30, 0xea, 0x06, 0x3d, 0x6a, 0xe5, 0xb4, 0xec, 0x40, 0xf9, + 0x7f, 0x5a, 0xe7, 0x92, 0x34, 0x4c, 0xd5, 0xb7, 0x8f, 0x76, 0x0d, 0x5e, + 0xd8, 0x3c, 0xa3, 0x54, 0x2d, 0xa7, 0xc7, 0xf0, 0xfe, 0xb5, 0x74, 0xdc, + 0x0f, 0x28, 0xe5, 0x4e, 0x2b, 0x99, 0xee, 0x59, 0xaf, 0x6e, 0x99, 0x00, + 0x0a, 0xd0, 0x86, 0x2c, 0x8a, 0xcb, 0xb5, 0xbb, 0x18, 0x1f, 0x23, 0x7e, + 0x55, 0xa3, 0x6f, 0x7c, 0x00, 0xfb, 0x8d, 0x42, 0x28, 0xb1, 0x75, 0x09, + 0xfb, 0x2b, 0xfd, 0x2a, 0xcd, 0xa0, 0xc4, 0x4b, 0xf4, 0xaa, 0xb7, 0x37, + 0xca, 0xd0, 0x32, 0x84, 0x6e, 0x9e, 0x95, 0x2c, 0x57, 0x6a, 0x63, 0x00, + 0x23, 0x8f, 0xc2, 0xb4, 0x5b, 0x10, 0xcd, 0x08, 0x94, 0x66, 0xaf, 0xc2, + 0x83, 0xcb, 0x3f, 0x4a, 0xc9, 0x86, 0x7e, 0x47, 0xee, 0xdb, 0x15, 0xab, + 0x66, 0xc5, 0x94, 0xfe, 0xed, 0x88, 0xc7, 0x22, 0x9c, 0x13, 0xb9, 0x32, + 0xd8, 0x6e, 0x8a, 0xc8, 0xda, 0x5a, 0xa3, 0xb7, 0x1d, 0xc0, 0xeb, 0x8a, + 0xbe, 0xce, 0x04, 0x26, 0x58, 0xa6, 0x23, 0x6f, 0x19, 0x07, 0xd3, 0xd6, + 0x99, 0xa2, 0xba, 0x2d, 0xaa, 0x15, 0x42, 0x3d, 0x88, 0xab, 0x96, 0xc8, + 0xbf, 0xbc, 0xdf, 0x6e, 0x5b, 0x2c, 0x4f, 0x03, 0xb5, 0x74, 0x38, 0xbb, + 0xd8, 0xce, 0x2d, 0x59, 0x13, 0xc6, 0xc6, 0x48, 0x2e, 0x1f, 0x20, 0xee, + 0x51, 0xd0, 0xd7, 0xea, 0x97, 0xec, 0xd3, 0x71, 0x1d, 0xff, 0x00, 0xc0, + 0x8f, 0x06, 0xbc, 0x4d, 0xbc, 0x0b, 0x2d, 0x84, 0x8f, 0x55, 0x76, 0x52, + 0x3f, 0x31, 0x5f, 0x97, 0x96, 0xf0, 0x5b, 0x34, 0x60, 0x14, 0x74, 0xcf, + 0x04, 0x6d, 0xaf, 0xd5, 0x0f, 0x81, 0x7e, 0x1a, 0x83, 0xc1, 0xff, 0x00, + 0x07, 0xbc, 0x2b, 0xa6, 0x5b, 0x5c, 0xb5, 0xdc, 0x2b, 0x64, 0xb3, 0x89, + 0x99, 0x76, 0x96, 0xf3, 0x49, 0x94, 0xf1, 0xec, 0x5f, 0x1f, 0x85, 0x76, + 0xe1, 0x53, 0x8c, 0x9d, 0xce, 0x5c, 0x43, 0x4e, 0xd6, 0x3b, 0x4b, 0x5d, + 0x3a, 0x54, 0x56, 0x67, 0x1b, 0x72, 0x72, 0x39, 0xa8, 0xf5, 0x71, 0xfe, + 0x87, 0x74, 0x3d, 0x51, 0xbf, 0x95, 0x59, 0x6b, 0xb7, 0x8d, 0x58, 0xf2, + 0x71, 0x59, 0x77, 0x5a, 0x88, 0xbc, 0xb2, 0xb9, 0xe3, 0x6e, 0x22, 0x63, + 0xcd, 0x76, 0xc9, 0xc6, 0x31, 0xe5, 0x47, 0x35, 0x2a, 0x72, 0xf6, 0xbe, + 0xd1, 0xf5, 0xb1, 0x91, 0xe1, 0xa5, 0x03, 0x43, 0xb1, 0x1f, 0xec, 0x73, + 0xef, 0xc9, 0xaf, 0x9f, 0x3f, 0x68, 0xbb, 0x15, 0x9f, 0xc6, 0x36, 0xa7, + 0xe6, 0x07, 0xc8, 0xc7, 0xca, 0x7d, 0xcd, 0x7d, 0x09, 0xe1, 0x51, 0xbb, + 0xc3, 0xf6, 0x05, 0x81, 0x1f, 0x2f, 0x7f, 0xa9, 0xaf, 0x0e, 0xfd, 0xa0, + 0x42, 0x27, 0x8a, 0x6d, 0x59, 0x99, 0x54, 0x98, 0x7b, 0x9f, 0x7a, 0xf1, + 0xa6, 0xbd, 0xc4, 0x7b, 0xd4, 0xdf, 0xef, 0xa7, 0xf3, 0xfc, 0xcf, 0x11, + 0x8f, 0x4e, 0x48, 0xaf, 0xed, 0xb7, 0xa9, 0x25, 0x66, 0x42, 0x32, 0x7d, + 0xc5, 0x7d, 0x9d, 0xa4, 0x60, 0x59, 0xc2, 0x4f, 0x52, 0x83, 0x83, 0xf4, + 0xaf, 0x90, 0xd6, 0x7b, 0x69, 0x75, 0x3b, 0x65, 0x32, 0xa6, 0x0c, 0xaa, + 0x39, 0x3f, 0xed, 0x0a, 0xfb, 0x16, 0xc2, 0x0c, 0x42, 0x9b, 0x79, 0x50, + 0xbd, 0xaa, 0x60, 0xb6, 0xb1, 0x35, 0x1d, 0xa4, 0x79, 0x1f, 0xed, 0x7d, + 0x09, 0x9b, 0xe0, 0x8e, 0xa4, 0x15, 0xb1, 0x89, 0xe0, 0x3f, 0xf8, 0xf8, + 0xaf, 0xce, 0x9b, 0xcb, 0x39, 0x7e, 0x61, 0xbc, 0x80, 0x79, 0xaf, 0xd2, + 0x4f, 0xda, 0xb6, 0xd8, 0xbf, 0xc1, 0x6d, 0x50, 0x76, 0x12, 0xc0, 0x7f, + 0xf2, 0x22, 0xd7, 0xc0, 0x17, 0xf0, 0x28, 0x81, 0xf8, 0x19, 0xed, 0x4a, + 0x4b, 0x53, 0x25, 0xaa, 0xb9, 0xf1, 0x47, 0xc4, 0x29, 0x24, 0xb5, 0xf1, + 0x96, 0xad, 0x12, 0xc8, 0xc4, 0x2c, 0xc4, 0x64, 0x9e, 0x4d, 0x73, 0xb0, + 0x89, 0xa5, 0x6c, 0x96, 0x6c, 0x1f, 0x5a, 0xe9, 0xbe, 0x27, 0x45, 0xff, + 0x00, 0x15, 0xde, 0xb1, 0xe9, 0xe7, 0x9f, 0xe4, 0x2b, 0x9e, 0xf3, 0xb6, + 0xc2, 0x11, 0x7a, 0xd7, 0xd1, 0x53, 0xf8, 0x23, 0x64, 0x78, 0x6f, 0xe2, + 0x77, 0x27, 0xd2, 0xac, 0x0d, 0xfe, 0xa6, 0x91, 0x03, 0xb9, 0x01, 0xaf, + 0x55, 0xbd, 0xf0, 0xc3, 0x41, 0xe1, 0x8b, 0x99, 0x23, 0x85, 0x55, 0x23, + 0x40, 0x49, 0x23, 0x9a, 0xe0, 0x3c, 0x18, 0x57, 0xfb, 0x45, 0x41, 0xe1, + 0x8b, 0x0a, 0xf7, 0xcf, 0x12, 0x5a, 0x41, 0x69, 0xe0, 0x3b, 0xc1, 0xcf, + 0x98, 0xf0, 0xe7, 0x20, 0xd6, 0x15, 0x5b, 0x75, 0x12, 0x3a, 0x60, 0x97, + 0x25, 0xcd, 0x3f, 0x86, 0x3a, 0x1a, 0xdb, 0xe8, 0xd6, 0xd3, 0x85, 0xf9, + 0x9a, 0xdd, 0x4d, 0x7b, 0x4f, 0x82, 0xac, 0xd4, 0x5a, 0xc5, 0xf3, 0x06, + 0xc9, 0x27, 0xe9, 0xcd, 0x79, 0xf7, 0x83, 0x6c, 0xa3, 0x4f, 0x05, 0x69, + 0xac, 0xa1, 0xb7, 0x35, 0x9a, 0x1c, 0x83, 0xde, 0xbd, 0x63, 0xc0, 0x96, + 0x91, 0x1b, 0x04, 0x1b, 0x70, 0x41, 0x23, 0x35, 0xe3, 0x55, 0x5e, 0xf5, + 0x8f, 0x4e, 0x91, 0x43, 0xe2, 0x1d, 0xae, 0x7e, 0xc1, 0xc0, 0x23, 0x0d, + 0xfd, 0x2b, 0xcf, 0x1a, 0x24, 0x08, 0xfd, 0xb0, 0x45, 0x7a, 0xef, 0xc4, + 0x5d, 0x2d, 0x5e, 0x1b, 0x06, 0x00, 0xf4, 0x6e, 0x33, 0xc7, 0x6a, 0xf3, + 0xfb, 0x6d, 0x28, 0x2c, 0x12, 0x00, 0xbc, 0xe6, 0xb3, 0xb1, 0x4d, 0xb6, + 0xce, 0x5d, 0x2c, 0xcc, 0x97, 0x80, 0xe0, 0x84, 0x27, 0xad, 0x73, 0x1f, + 0x17, 0xad, 0xbc, 0x9d, 0x30, 0x9c, 0x64, 0x6e, 0x4a, 0xee, 0xcc, 0x05, + 0x2f, 0xca, 0x29, 0xc9, 0xe0, 0x60, 0x1a, 0xe5, 0xbe, 0x36, 0x40, 0x62, + 0xd0, 0x83, 0x63, 0x3f, 0x32, 0x0f, 0xa7, 0x5a, 0x6a, 0x26, 0x6d, 0x9c, + 0xb7, 0xc1, 0xb8, 0x83, 0xcb, 0xa9, 0x8d, 0x80, 0xe0, 0x26, 0x7d, 0xba, + 0xd7, 0xb6, 0x5b, 0x5a, 0xef, 0xd0, 0x26, 0x2b, 0xf2, 0x92, 0x31, 0x8a, + 0xf1, 0x6f, 0x81, 0xf7, 0xb0, 0xdb, 0xdc, 0xea, 0xe2, 0x79, 0x56, 0x30, + 0x76, 0x01, 0xb8, 0xe2, 0xbe, 0x84, 0xd1, 0xae, 0xac, 0xa6, 0xd2, 0xc1, + 0x33, 0xc4, 0x54, 0x10, 0x4f, 0xcc, 0x31, 0x8c, 0xd4, 0xd4, 0xf8, 0x8d, + 0x20, 0xae, 0x8f, 0x1a, 0xd4, 0x40, 0x7b, 0xab, 0xc8, 0xf9, 0x39, 0xf6, + 0xf6, 0xae, 0x1a, 0xc4, 0xce, 0xb3, 0xae, 0x60, 0x70, 0x8a, 0x4f, 0x38, + 0xaf, 0xb4, 0xf4, 0xdb, 0x1d, 0x26, 0xe1, 0x15, 0x52, 0x18, 0x1d, 0x18, + 0x64, 0xe1, 0x47, 0x5a, 0xdc, 0x1e, 0x16, 0xd1, 0xa7, 0x5c, 0x3d, 0x9d, + 0xb9, 0x5c, 0x77, 0x41, 0x5a, 0xc2, 0x70, 0xb6, 0xc6, 0x32, 0xa1, 0x36, + 0xf4, 0x67, 0xc7, 0xfe, 0x01, 0xf1, 0xd7, 0x8a, 0xbc, 0x23, 0xe3, 0x08, + 0x57, 0x40, 0xd9, 0x0c, 0x1a, 0x8e, 0xcb, 0x6b, 0x96, 0x95, 0x32, 0x76, + 0x67, 0xf8, 0x7d, 0x3a, 0xd7, 0xd8, 0xb2, 0x59, 0xb7, 0xd8, 0x1d, 0x8e, + 0xed, 0xe2, 0x32, 0x73, 0xef, 0x8a, 0x96, 0x3f, 0x04, 0x68, 0x30, 0x81, + 0x30, 0xb3, 0xb6, 0x59, 0x13, 0x95, 0x3b, 0x06, 0x41, 0xed, 0x5d, 0x05, + 0xf8, 0x89, 0xad, 0x5b, 0x38, 0x1f, 0xbb, 0x23, 0x0a, 0x00, 0xed, 0x4e, + 0xa4, 0xbd, 0xa2, 0x4b, 0xa2, 0x37, 0xa3, 0x4f, 0xd9, 0x5d, 0xbe, 0xa7, + 0xcb, 0xda, 0x4f, 0x8e, 0xbc, 0x67, 0x05, 0xa4, 0x2b, 0x15, 0xd4, 0x9b, + 0x76, 0x8c, 0x0f, 0x2f, 0x35, 0xb8, 0x3c, 0x7d, 0xe3, 0xa7, 0x41, 0xfe, + 0x92, 0xe0, 0x0f, 0xe1, 0xf2, 0xab, 0xe9, 0xaf, 0x05, 0x7c, 0x15, 0x8a, + 0x5b, 0xfb, 0x7b, 0x69, 0x2d, 0x54, 0xa9, 0xb3, 0x49, 0xf9, 0x03, 0xbd, + 0x77, 0x37, 0x1f, 0x06, 0xa2, 0xfb, 0x41, 0x48, 0xec, 0x63, 0xc7, 0x1c, + 0xec, 0xaf, 0x6e, 0x39, 0x2e, 0x97, 0xe7, 0x67, 0x99, 0x2c, 0xe9, 0xa7, + 0x6b, 0x1f, 0x0e, 0x5e, 0xf8, 0xf7, 0xc6, 0xad, 0xf2, 0xbd, 0xe4, 0x91, + 0xe3, 0x8e, 0x23, 0xae, 0x72, 0x7f, 0x1d, 0x78, 0xa9, 0x5d, 0x83, 0x6a, + 0x4f, 0x1e, 0x0f, 0x5d, 0xbc, 0xd7, 0xe8, 0x77, 0x86, 0xff, 0x00, 0x67, + 0xfd, 0x12, 0xff, 0x00, 0x5b, 0xbf, 0x4d, 0x5a, 0xc5, 0x65, 0x8c, 0x46, + 0xa5, 0x14, 0x0c, 0x75, 0xcf, 0x3f, 0xa5, 0x7c, 0x1b, 0xf1, 0x73, 0x4a, + 0x83, 0xc3, 0xde, 0x37, 0xd5, 0xf4, 0xf8, 0x86, 0xd8, 0xa1, 0xb8, 0x74, + 0x51, 0xe8, 0x01, 0x35, 0xe6, 0x63, 0x72, 0xd7, 0x86, 0x87, 0x3a, 0x95, + 0xcf, 0x43, 0x0b, 0x99, 0x4b, 0x12, 0xdc, 0x4e, 0x7d, 0x3c, 0x5f, 0xe2, + 0x0b, 0xb6, 0x95, 0xdf, 0x5a, 0xba, 0x57, 0xcf, 0xcd, 0xb1, 0xb0, 0x0d, + 0x33, 0xfb, 0x6f, 0x54, 0xb9, 0x46, 0x12, 0x6b, 0x17, 0xad, 0xcf, 0x23, + 0xce, 0x35, 0xe7, 0x9a, 0xdf, 0x89, 0x67, 0xd3, 0x75, 0x09, 0x23, 0x84, + 0x8d, 0xbd, 0xf3, 0x58, 0xc7, 0xc5, 0xf7, 0xa2, 0x6f, 0xbf, 0xc1, 0xf4, + 0xaf, 0x0f, 0xd9, 0xc8, 0xf5, 0x3d, 0xac, 0xdf, 0x53, 0xd3, 0x0d, 0xb1, + 0xb8, 0x62, 0x64, 0xba, 0xb8, 0x90, 0x93, 0xfc, 0x52, 0x9a, 0x8e, 0xd2, + 0xc6, 0x4b, 0x7b, 0xbf, 0x39, 0x27, 0x9d, 0x5a, 0x36, 0xdc, 0x84, 0x39, + 0xe0, 0x8e, 0xf5, 0xc3, 0x43, 0xe2, 0x6b, 0x93, 0x1e, 0x7c, 0xd2, 0x0f, + 0xd6, 0xbb, 0x0d, 0x2b, 0x5c, 0xf3, 0x2c, 0xd0, 0xca, 0x72, 0x71, 0xcb, + 0x77, 0xac, 0xd4, 0x63, 0x17, 0xa8, 0xdc, 0xa7, 0x25, 0x6b, 0x9e, 0xb1, + 0xf0, 0x5b, 0xc5, 0x62, 0x6f, 0x1f, 0xdd, 0x9d, 0x4a, 0xe8, 0x25, 0xc4, + 0x90, 0x79, 0x71, 0xc9, 0x29, 0xfb, 0xe4, 0x91, 0xfe, 0x15, 0xf6, 0x27, + 0xc3, 0x7d, 0x44, 0x6a, 0x36, 0xf7, 0x12, 0xc4, 0xbb, 0x11, 0x4e, 0xde, + 0x3a, 0x1e, 0x6b, 0xf3, 0x93, 0x47, 0xd6, 0xd2, 0x1d, 0x7a, 0x46, 0x20, + 0x30, 0x2b, 0xcf, 0xa1, 0xaf, 0x6f, 0xf8, 0x63, 0xfb, 0x43, 0xdf, 0xf8, + 0x2a, 0x1b, 0x9b, 0x49, 0x16, 0x6b, 0xdb, 0x47, 0x20, 0xc4, 0x36, 0xee, + 0x65, 0x3e, 0x99, 0xcf, 0x4a, 0xed, 0xe6, 0x52, 0xa5, 0x6e, 0x6d, 0x4c, + 0x15, 0x27, 0xcf, 0xa1, 0xf7, 0x14, 0x47, 0x2c, 0xb9, 0xe9, 0x9f, 0x5a, + 0xbe, 0xfb, 0x56, 0x22, 0x0e, 0x07, 0x15, 0xf1, 0x5e, 0xb7, 0xfb, 0x55, + 0x6b, 0xf7, 0xf2, 0x15, 0xb1, 0xb0, 0x6b, 0x75, 0xc8, 0x21, 0x9d, 0xc0, + 0xc7, 0xa7, 0x18, 0xac, 0x5d, 0x5f, 0xe3, 0x5f, 0x8f, 0xb5, 0x50, 0x4b, + 0xea, 0xcb, 0x6f, 0x19, 0xec, 0x95, 0xe6, 0x39, 0x28, 0xed, 0xa9, 0xe8, + 0xac, 0x3b, 0x7b, 0xc9, 0x23, 0xea, 0x0b, 0xcf, 0x8b, 0xde, 0x10, 0xd0, + 0x4d, 0xc4, 0x77, 0x3a, 0xcd, 0xb2, 0xca, 0x8c, 0x41, 0x40, 0xe0, 0xb7, + 0xe5, 0x5c, 0x46, 0xbd, 0xfb, 0x53, 0x78, 0x27, 0x4e, 0x39, 0x4b, 0xa9, + 0x2e, 0x9b, 0x3f, 0x76, 0x24, 0xcd, 0x7c, 0x86, 0xd6, 0x16, 0xb7, 0x77, + 0x53, 0x5c, 0xdc, 0xc8, 0xd3, 0x4f, 0x23, 0x96, 0x76, 0x2d, 0xc1, 0x27, + 0xad, 0x29, 0x8e, 0xc6, 0xd8, 0xfc, 0xb1, 0xa0, 0x23, 0xbd, 0x3f, 0x6b, + 0x2b, 0xf3, 0x24, 0x1e, 0xca, 0x92, 0xd3, 0x56, 0x7d, 0x29, 0x6d, 0xfb, + 0x4d, 0xf8, 0x47, 0x5a, 0xbd, 0x9a, 0x3b, 0x89, 0x1e, 0xc8, 0x49, 0xf7, + 0x5a, 0x65, 0xc0, 0xfc, 0xeb, 0xb2, 0x1e, 0x21, 0xd1, 0x75, 0xeb, 0x48, + 0x65, 0xb0, 0xbd, 0x82, 0xed, 0x08, 0x1c, 0xa3, 0x83, 0x5f, 0x13, 0x5e, + 0x7d, 0x92, 0xed, 0xdc, 0x14, 0x46, 0xf4, 0xac, 0xef, 0x22, 0xe3, 0x4d, + 0x91, 0x65, 0xd3, 0xaf, 0x67, 0xb4, 0x71, 0xc8, 0xda, 0xe7, 0x15, 0xd3, + 0x0c, 0x54, 0xd2, 0xb3, 0x57, 0x30, 0x95, 0x2a, 0x6d, 0xe9, 0x74, 0x7d, + 0xd3, 0xa8, 0x69, 0xd6, 0xf2, 0xcb, 0x81, 0x8f, 0x9f, 0x1d, 0x2b, 0x0b, + 0x50, 0xf0, 0xbd, 0x9d, 0xc9, 0x29, 0x2d, 0xac, 0x2d, 0xbb, 0x8e, 0x17, + 0x06, 0xbe, 0x5b, 0xd2, 0x3e, 0x36, 0x78, 0xd7, 0xc3, 0xac, 0x8a, 0xf7, + 0x2b, 0xa8, 0xc4, 0xbd, 0xa6, 0x1b, 0x8e, 0x2b, 0xbc, 0xd1, 0x7f, 0x6a, + 0x8b, 0x59, 0xda, 0x34, 0xd6, 0x74, 0xb9, 0x2d, 0x9c, 0x11, 0x99, 0x62, + 0x39, 0x1f, 0x95, 0x75, 0x47, 0x15, 0x17, 0xbe, 0x86, 0x12, 0xc3, 0x37, + 0xb5, 0x99, 0xde, 0x6b, 0x1f, 0x04, 0xf4, 0x5b, 0xff, 0x00, 0xde, 0xb5, + 0x84, 0x45, 0x88, 0xea, 0x50, 0x13, 0x5c, 0xd6, 0xa9, 0xf0, 0x32, 0xda, + 0xde, 0x30, 0x23, 0x85, 0x81, 0x03, 0x00, 0x82, 0x46, 0x05, 0x77, 0x3a, + 0x27, 0xc6, 0xef, 0x09, 0x6b, 0xd6, 0xca, 0x90, 0xea, 0xd1, 0x43, 0x29, + 0xe9, 0x1d, 0xc7, 0xc8, 0x4f, 0xe7, 0x5d, 0x79, 0xd7, 0x2c, 0xf5, 0x5b, + 0x53, 0xe5, 0x4f, 0x14, 0xd9, 0x5e, 0x0a, 0x30, 0x35, 0xd4, 0xb9, 0x2a, + 0x2e, 0xe7, 0x3f, 0x2c, 0xe9, 0x3d, 0x2e, 0x8f, 0x06, 0xb1, 0xf0, 0x5d, + 0xd7, 0x86, 0x91, 0x84, 0x16, 0x22, 0xe3, 0x3c, 0xef, 0x61, 0x93, 0x53, + 0x69, 0xf7, 0x90, 0xe8, 0xa6, 0xe6, 0x7d, 0x6a, 0x4b, 0xbd, 0x36, 0x18, + 0x90, 0xc9, 0x1b, 0xd8, 0xda, 0xf9, 0x84, 0xc8, 0x39, 0x00, 0x8e, 0xc3, + 0xde, 0xbd, 0xd2, 0x2b, 0x58, 0x64, 0x8b, 0x63, 0xed, 0x3c, 0x77, 0xa8, + 0x22, 0xb1, 0xd2, 0x9e, 0xde, 0x78, 0x6e, 0x62, 0x8c, 0xb7, 0x3c, 0x1c, + 0x67, 0x15, 0xac, 0x39, 0x61, 0xb2, 0x32, 0xa8, 0xea, 0x54, 0xde, 0x4c, + 0xe4, 0xfe, 0x14, 0xf8, 0x9a, 0x5f, 0x89, 0x3a, 0x16, 0xa3, 0xad, 0x5e, + 0x4a, 0xf7, 0x13, 0x4b, 0x73, 0xb1, 0xe7, 0x94, 0x61, 0xb8, 0xe0, 0x1c, + 0x76, 0xe0, 0x57, 0x6d, 0xe0, 0x08, 0x9e, 0x1f, 0x88, 0xda, 0x74, 0x4e, + 0x0f, 0xc9, 0x2f, 0x01, 0xbb, 0x72, 0x31, 0xfc, 0xeb, 0x8e, 0xf8, 0x4f, + 0x0a, 0xe9, 0xda, 0x0e, 0xaf, 0x6d, 0x69, 0x6c, 0xad, 0x66, 0xb7, 0xb2, + 0x15, 0x2a, 0x7e, 0xee, 0x4d, 0x77, 0xde, 0x13, 0x5f, 0xb6, 0x78, 0xff, + 0x00, 0x4b, 0x68, 0x94, 0xac, 0xaf, 0x32, 0x82, 0xcc, 0x78, 0x03, 0x20, + 0x9f, 0xe5, 0x52, 0xd5, 0xf5, 0x1c, 0x5d, 0xac, 0x7b, 0xef, 0xc4, 0xd2, + 0x63, 0xf0, 0x8d, 0xe9, 0x27, 0x04, 0x84, 0xe9, 0xfe, 0xf0, 0xae, 0x2b, + 0xc1, 0x12, 0x63, 0xe1, 0xf6, 0xa2, 0x54, 0xe4, 0xbe, 0xa3, 0x02, 0x9f, + 0xc6, 0x48, 0xc1, 0xae, 0xbb, 0xe3, 0x3c, 0x91, 0xda, 0x78, 0x2a, 0xf3, + 0x74, 0x98, 0xc9, 0x8d, 0x72, 0x3d, 0x77, 0x0a, 0xf1, 0x2d, 0x0b, 0xc7, + 0x31, 0xe8, 0x3a, 0x24, 0xda, 0x5c, 0xf0, 0xad, 0xed, 0x95, 0xdb, 0xf9, + 0xac, 0x37, 0x14, 0x60, 0xca, 0x41, 0x18, 0x23, 0xdc, 0x03, 0xf8, 0x56, + 0x92, 0x8f, 0xbf, 0xa9, 0x34, 0xaa, 0x5a, 0x3a, 0x1f, 0x5b, 0xda, 0xba, + 0x88, 0x51, 0x41, 0x1d, 0x2a, 0xa6, 0xbb, 0x2e, 0xdd, 0x0b, 0x52, 0x39, + 0xc6, 0x2d, 0xe4, 0xff, 0x00, 0xd0, 0x4d, 0x7c, 0xb9, 0x1f, 0xc4, 0xab, + 0x28, 0xe4, 0xdc, 0x2f, 0x3c, 0x41, 0x6d, 0xff, 0x00, 0x5c, 0xb5, 0x42, + 0xca, 0x3f, 0x06, 0x06, 0xa4, 0xd5, 0x3e, 0x29, 0x9b, 0xed, 0x36, 0xee, + 0xd6, 0xc7, 0xc5, 0x9a, 0xac, 0x8d, 0x28, 0x30, 0x8b, 0x7b, 0xab, 0x78, + 0x48, 0x61, 0xd0, 0x82, 0xc1, 0x41, 0xae, 0xbf, 0x69, 0x1e, 0x5d, 0x19, + 0xc2, 0xa9, 0x3e, 0x63, 0xcf, 0x6e, 0x47, 0x9e, 0x6d, 0x40, 0x7f, 0x29, + 0x04, 0x6c, 0x49, 0xfc, 0xb1, 0xfd, 0x6b, 0x9f, 0xd5, 0x9c, 0x22, 0xce, + 0x77, 0x17, 0x01, 0x37, 0x66, 0xba, 0x39, 0xa2, 0x90, 0x25, 0xb8, 0xe1, + 0x82, 0xed, 0x46, 0xe3, 0xad, 0x61, 0xeb, 0x76, 0xf2, 0x48, 0xb3, 0x2c, + 0x70, 0x91, 0xbd, 0x76, 0xe4, 0x9a, 0xf3, 0xda, 0xd0, 0xf4, 0x1b, 0xb3, + 0xd4, 0xe6, 0xf5, 0x78, 0x5a, 0x68, 0xa1, 0xc7, 0x3c, 0xc2, 0x7f, 0x53, + 0x55, 0xf5, 0x68, 0x0b, 0xaf, 0xa5, 0x5f, 0xd4, 0x37, 0x5b, 0x88, 0xd4, + 0x81, 0x80, 0x61, 0x04, 0x93, 0xef, 0x4d, 0xd4, 0xbc, 0xbe, 0x72, 0xc0, + 0x7a, 0x56, 0x73, 0xd9, 0x12, 0xb7, 0x67, 0x15, 0x74, 0xaf, 0x1b, 0x63, + 0x3c, 0x57, 0x3b, 0xae, 0xe1, 0xcd, 0xb2, 0xf5, 0x26, 0x51, 0x9f, 0xc8, + 0xd7, 0x63, 0x7d, 0xb3, 0xe6, 0xe4, 0x57, 0x1b, 0xad, 0x80, 0xb7, 0x76, + 0x9c, 0xe1, 0x7c, 0xcf, 0xe9, 0x51, 0x1d, 0xc9, 0x99, 0xce, 0x6b, 0x10, + 0x63, 0x76, 0x39, 0x15, 0xc2, 0x6b, 0x28, 0x15, 0x8d, 0x7a, 0x56, 0xae, + 0x89, 0xb5, 0x8e, 0x47, 0x4a, 0xf3, 0xcd, 0x77, 0x68, 0x66, 0xc1, 0x15, + 0x2f, 0x72, 0x11, 0xe7, 0x5a, 0x97, 0x37, 0xa7, 0xd3, 0x15, 0x42, 0x50, + 0x32, 0x6b, 0x4b, 0x52, 0x20, 0x5e, 0xb7, 0xa6, 0x2b, 0x3e, 0x62, 0x32, + 0x6a, 0xe2, 0x32, 0x93, 0xf0, 0x48, 0x3d, 0x7a, 0xe2, 0xaa, 0x77, 0x6f, + 0xad, 0x5d, 0x95, 0x97, 0xd6, 0xa9, 0x33, 0xa8, 0x2d, 0x93, 0xdf, 0xa5, + 0x75, 0x44, 0xc9, 0x8d, 0xe9, 0xda, 0xa2, 0x93, 0x07, 0x1c, 0x77, 0xa9, + 0x0c, 0x8a, 0xc0, 0xd4, 0x6e, 0x73, 0x8e, 0x0f, 0x5a, 0xd5, 0x22, 0x5b, + 0x13, 0x1c, 0xe4, 0xd3, 0x8f, 0x23, 0xa5, 0x37, 0xcc, 0xc9, 0xfb, 0xb4, + 0x8c, 0xe7, 0x9e, 0x31, 0x56, 0x64, 0xda, 0x26, 0xb7, 0xe2, 0x68, 0x87, + 0xbd, 0x74, 0xb1, 0xaa, 0xb7, 0x55, 0x38, 0xf5, 0x15, 0xcc, 0x5a, 0x06, + 0x6b, 0xa8, 0x8f, 0x5c, 0x1e, 0x95, 0xd4, 0x5b, 0xbe, 0x01, 0xda, 0x78, + 0xce, 0x08, 0x35, 0xcd, 0x5b, 0x74, 0x5d, 0x3d, 0x50, 0x4d, 0x00, 0xf2, + 0xd8, 0x03, 0xc6, 0x3b, 0x56, 0x66, 0x84, 0xf1, 0x45, 0xae, 0x60, 0x90, + 0x32, 0xa4, 0x73, 0xdc, 0xd6, 0xab, 0x9f, 0x91, 0xbe, 0x95, 0xcf, 0xe9, + 0xf0, 0xef, 0xd7, 0xe1, 0x12, 0x28, 0x2b, 0xc9, 0xc5, 0x5d, 0x2d, 0x61, + 0x2b, 0x98, 0x54, 0xd2, 0xa4, 0x6c, 0x77, 0x42, 0x35, 0x33, 0x2b, 0x29, + 0x01, 0xb1, 0xf9, 0xd4, 0x8b, 0x1c, 0xd1, 0xb1, 0x20, 0x86, 0x04, 0xe7, + 0xa5, 0x57, 0x16, 0xec, 0x30, 0x54, 0x91, 0x8f, 0xc6, 0xa7, 0x8e, 0x79, + 0x14, 0xe0, 0x80, 0xdf, 0xa1, 0xae, 0x53, 0xa1, 0xf9, 0x9d, 0x67, 0xc3, + 0x1b, 0xd5, 0xd3, 0xfe, 0x20, 0xe8, 0x53, 0xbc, 0x66, 0x5c, 0x5d, 0x26, + 0x14, 0x1c, 0x72, 0x4e, 0x01, 0xfd, 0x6b, 0xf5, 0xaf, 0x4e, 0xf0, 0xfc, + 0x9a, 0x5f, 0x87, 0x2c, 0xa2, 0x9a, 0xf2, 0x49, 0xa4, 0x8d, 0xd6, 0x47, + 0x94, 0x0d, 0xa6, 0x42, 0x4f, 0x42, 0x3d, 0x39, 0xaf, 0xc9, 0x8f, 0x85, + 0x5a, 0x6c, 0xbe, 0x21, 0xf8, 0x8b, 0xe1, 0xeb, 0x3b, 0x64, 0x0b, 0x73, + 0x25, 0xe4, 0x7b, 0x4c, 0x9c, 0x0e, 0x0e, 0x4f, 0x3f, 0x85, 0x7e, 0xbd, + 0x49, 0x0d, 0xcd, 0xf5, 0x84, 0x51, 0x05, 0x10, 0x28, 0x2a, 0x4b, 0xbf, + 0xb7, 0xb5, 0x43, 0xdd, 0x23, 0xae, 0x8e, 0x90, 0xbd, 0xfa, 0x9e, 0x13, + 0xf1, 0xe7, 0x4f, 0x9e, 0xf2, 0x69, 0xe4, 0x10, 0xb2, 0x5b, 0x25, 0xbd, + 0xda, 0x49, 0x29, 0xe8, 0xa4, 0xaa, 0x63, 0x9a, 0xfc, 0xf0, 0xf0, 0xac, + 0xa3, 0x4c, 0xf1, 0x55, 0xac, 0x82, 0x50, 0x16, 0x19, 0xc3, 0x79, 0x84, + 0x64, 0x60, 0x37, 0x5a, 0xfd, 0x38, 0xf8, 0xdd, 0x0d, 0xb6, 0xbb, 0xe0, + 0x0d, 0x67, 0x4a, 0x8e, 0xe7, 0xec, 0xd7, 0x92, 0x79, 0xa3, 0x01, 0xb0, + 0xf2, 0x15, 0x03, 0x71, 0x1e, 0xdc, 0x8a, 0xfc, 0xc4, 0xf0, 0xce, 0x99, + 0xf6, 0xbf, 0x16, 0xda, 0x69, 0xb2, 0x3e, 0xd0, 0xf3, 0x88, 0x59, 0xb3, + 0xfe, 0xd6, 0x0d, 0x74, 0xb5, 0x7a, 0x67, 0x13, 0x6f, 0xdb, 0x23, 0xf6, + 0xf3, 0xc0, 0x1a, 0xa4, 0x1e, 0x20, 0xf0, 0x8e, 0x95, 0x7f, 0x6b, 0x70, + 0x2e, 0x2d, 0xae, 0x2d, 0x62, 0x74, 0x95, 0x7a, 0x36, 0x54, 0x7e, 0x5f, + 0x4a, 0xdd, 0x45, 0x2b, 0x2b, 0xfc, 0xc0, 0xe0, 0x8c, 0x57, 0x35, 0xf0, + 0xbb, 0xc3, 0xf6, 0x7e, 0x14, 0xf0, 0x3e, 0x91, 0xa5, 0xe9, 0xe5, 0xbe, + 0xc9, 0x6d, 0x6b, 0x1a, 0xc6, 0x1d, 0xcb, 0x12, 0x31, 0x9c, 0xe4, 0xfb, + 0xe4, 0xd7, 0x50, 0xa8, 0x1b, 0x71, 0x52, 0x3b, 0x57, 0x7c, 0x2f, 0xca, + 0xaf, 0xb9, 0x8c, 0x9b, 0xe6, 0x77, 0x3e, 0x34, 0xff, 0x00, 0x82, 0x9b, + 0x23, 0x7f, 0xc2, 0x21, 0xe0, 0xc7, 0xc1, 0xc7, 0xdb, 0xe7, 0x04, 0xe7, + 0x8f, 0xf5, 0x6b, 0x5f, 0x9f, 0x9e, 0x15, 0x90, 0x0f, 0x14, 0x59, 0x73, + 0xd2, 0x65, 0xfe, 0x75, 0xf7, 0xd7, 0xfc, 0x14, 0xea, 0x59, 0x63, 0xf0, + 0xcf, 0x83, 0x93, 0x3f, 0xb8, 0xfb, 0x74, 0xff, 0x00, 0x2f, 0x6c, 0xec, + 0x5c, 0x1f, 0xe7, 0x5f, 0x9e, 0xfe, 0x19, 0xb8, 0xc7, 0x89, 0xad, 0x3f, + 0xeb, 0xb2, 0xff, 0x00, 0x3a, 0xe4, 0xa9, 0xad, 0x43, 0x8e, 0x0d, 0x5a, + 0x36, 0xee, 0x7e, 0xda, 0xfc, 0x2d, 0x95, 0x9b, 0xe1, 0xe7, 0x86, 0x19, + 0xb6, 0x90, 0x34, 0xe8, 0x3e, 0x51, 0xff, 0x00, 0x5c, 0xd6, 0xba, 0xad, + 0x4e, 0x61, 0x0d, 0xb0, 0x2b, 0x11, 0x75, 0x24, 0x64, 0x0c, 0x71, 0xef, + 0x5c, 0x57, 0xc2, 0xcb, 0xc5, 0x5f, 0x87, 0x3e, 0x16, 0xc1, 0xc6, 0x74, + 0xdb, 0x7e, 0xbf, 0xee, 0x0a, 0xea, 0xee, 0xe3, 0x8e, 0xe2, 0x09, 0x19, + 0x6e, 0x5b, 0xe6, 0x18, 0xc7, 0xa5, 0x7a, 0x34, 0x65, 0x4f, 0xde, 0x53, + 0x95, 0x99, 0xc3, 0x56, 0xa5, 0x9b, 0x48, 0xab, 0x88, 0xee, 0xed, 0x95, + 0xed, 0xd8, 0xc7, 0x86, 0xc3, 0x86, 0x24, 0x1c, 0xfb, 0x55, 0x09, 0xb5, + 0xd8, 0xec, 0x1f, 0xcf, 0x9e, 0x40, 0x30, 0x78, 0x66, 0xee, 0x69, 0xcf, + 0x68, 0x74, 0xdb, 0x06, 0x45, 0xbb, 0x92, 0x58, 0x5b, 0xaa, 0xbf, 0x50, + 0x0f, 0x5e, 0x6b, 0xcd, 0x7c, 0x51, 0xa8, 0xdd, 0x43, 0x73, 0xb9, 0x6d, + 0xdc, 0xd8, 0xc0, 0xe3, 0x0a, 0xfd, 0x71, 0xee, 0x3b, 0xd5, 0x72, 0xc2, + 0x7c, 0xad, 0x3d, 0x51, 0xc1, 0x29, 0x39, 0x45, 0x24, 0x7a, 0xa2, 0x78, + 0xaa, 0x37, 0x30, 0x2a, 0xa2, 0xcc, 0x27, 0xe1, 0x36, 0xfd, 0x0e, 0x69, + 0x5e, 0xdd, 0xa7, 0xb6, 0x89, 0xe2, 0x65, 0x49, 0x02, 0x0f, 0x95, 0xba, + 0x7d, 0x2b, 0xcd, 0x7e, 0x1d, 0xf8, 0xb6, 0x2d, 0x6b, 0x54, 0xfb, 0x32, + 0x6c, 0x58, 0xd1, 0x4a, 0xc6, 0x07, 0x2d, 0xeb, 0x8f, 0xd2, 0xbd, 0x44, + 0x32, 0x5b, 0xc5, 0x18, 0x66, 0x1c, 0xa0, 0x38, 0xef, 0x4a, 0xad, 0x79, + 0x53, 0x56, 0xdf, 0x63, 0xd0, 0xa5, 0x14, 0xe8, 0xfe, 0xf5, 0x98, 0x7a, + 0xb5, 0xdd, 0xf6, 0x99, 0x00, 0xc3, 0x2b, 0x31, 0x04, 0xb0, 0xec, 0xa2, + 0xba, 0x89, 0x6e, 0xa5, 0x84, 0x20, 0x4c, 0x00, 0xcc, 0x41, 0x63, 0x58, + 0xb7, 0xd0, 0x5b, 0xea, 0x10, 0x4f, 0x1b, 0xe5, 0x4b, 0x8d, 0xdb, 0x89, + 0xee, 0x3a, 0x55, 0xfd, 0x5a, 0x3d, 0xba, 0x41, 0x7c, 0xbb, 0x3c, 0x6d, + 0x90, 0x13, 0xab, 0x1a, 0xce, 0x85, 0x65, 0x56, 0x32, 0x6b, 0x73, 0x9e, + 0x36, 0x51, 0x6d, 0x32, 0x7b, 0x89, 0x55, 0x15, 0xb2, 0xc1, 0xb3, 0xd3, + 0x9e, 0xf5, 0x46, 0x0b, 0xef, 0x25, 0x9e, 0x23, 0x00, 0x1d, 0xd5, 0xb3, + 0x91, 0x5c, 0x57, 0x86, 0xaf, 0xb5, 0x6d, 0x5f, 0x7c, 0xb2, 0x30, 0x8c, + 0x17, 0xca, 0xab, 0x0f, 0xe1, 0xe9, 0x5a, 0x7a, 0x85, 0xbd, 0xe4, 0x6a, + 0x40, 0x9b, 0x6a, 0x1f, 0xf9, 0x6b, 0x9c, 0x6d, 0x35, 0x9d, 0x44, 0xae, + 0xa3, 0xd4, 0x53, 0xab, 0xa9, 0xb2, 0x35, 0x08, 0xa1, 0xd5, 0x64, 0xb6, + 0x77, 0x4f, 0x3c, 0x46, 0x08, 0x51, 0xcf, 0x52, 0x7d, 0x2a, 0xe7, 0xf6, + 0x83, 0x5b, 0x6e, 0x48, 0xdf, 0x6e, 0x79, 0xe4, 0x66, 0xb8, 0x3d, 0x03, + 0xc3, 0x37, 0x43, 0x55, 0x96, 0xe2, 0xf6, 0x60, 0xf3, 0x04, 0x05, 0x24, + 0x89, 0xfa, 0xf2, 0x7a, 0x8a, 0xea, 0xe7, 0x47, 0xd9, 0xbe, 0x79, 0x91, + 0xb6, 0xf0, 0xac, 0x06, 0x0f, 0xe3, 0x5a, 0x38, 0x35, 0x17, 0xca, 0xf6, + 0x39, 0xe7, 0x52, 0x4f, 0x48, 0xab, 0x1f, 0x98, 0x9f, 0xf0, 0x51, 0xc6, + 0x65, 0xf8, 0xe2, 0x17, 0x7e, 0xff, 0x00, 0xf4, 0x38, 0xdb, 0xf3, 0x1f, + 0xa5, 0x7c, 0xd9, 0xe0, 0xb4, 0x69, 0x7c, 0x59, 0xa2, 0x27, 0xdd, 0x2d, + 0x7b, 0x08, 0xc9, 0xed, 0xf3, 0x8a, 0xf7, 0x8f, 0xf8, 0x28, 0x0d, 0xcc, + 0x87, 0xe3, 0x7c, 0xa2, 0x52, 0x18, 0x88, 0x14, 0x02, 0x0e, 0x72, 0x2b, + 0xc1, 0xbc, 0x0d, 0x70, 0x1b, 0xc5, 0xfa, 0x17, 0xa7, 0xdb, 0xa0, 0xff, + 0x00, 0xd1, 0x8b, 0x5c, 0xf1, 0x4f, 0x43, 0xde, 0x4d, 0xb8, 0x2b, 0xf6, + 0xfd, 0x0f, 0xde, 0xad, 0x3e, 0xdd, 0xe0, 0xb2, 0x81, 0x1a, 0x44, 0x25, + 0x51, 0x41, 0x20, 0xfb, 0x55, 0xbb, 0xb0, 0x0c, 0xb1, 0xfc, 0xa7, 0x38, + 0x1f, 0x36, 0x38, 0x15, 0x42, 0x15, 0x53, 0x6d, 0x11, 0x04, 0x92, 0x54, + 0x75, 0xfa, 0x56, 0x93, 0x9c, 0x92, 0xa7, 0x1c, 0x28, 0x35, 0xe8, 0xb7, + 0x75, 0xa9, 0xc5, 0x86, 0x7e, 0xf6, 0x87, 0x3d, 0xe3, 0xe8, 0x64, 0x4f, + 0x09, 0x6b, 0x38, 0x45, 0x7f, 0xf4, 0x09, 0xf0, 0x19, 0xb1, 0x93, 0xb0, + 0xf5, 0xaf, 0xc0, 0xbf, 0x16, 0x90, 0x3c, 0x45, 0x7e, 0x31, 0xb7, 0xf7, + 0xaf, 0xc0, 0xed, 0xc9, 0xaf, 0xdd, 0x3f, 0x8f, 0xb0, 0xea, 0x77, 0xff, + 0x00, 0x0a, 0xfc, 0x49, 0x6f, 0xa4, 0x04, 0x37, 0x4f, 0xa7, 0xce, 0xbb, + 0xa4, 0x90, 0xa0, 0x03, 0x6f, 0xcd, 0xc8, 0x07, 0xb6, 0x6b, 0xf0, 0x83, + 0x5c, 0x59, 0x13, 0x54, 0xb8, 0x59, 0x06, 0x24, 0x0c, 0xc1, 0x87, 0xbe, + 0x6b, 0x8e, 0xab, 0xf7, 0xed, 0x63, 0xd7, 0x83, 0x6e, 0x9d, 0x9a, 0x3e, + 0x8e, 0xf8, 0x21, 0xfb, 0xab, 0x2d, 0x29, 0x1f, 0x87, 0x16, 0xad, 0x9c, + 0xff, 0x00, 0xbc, 0x2b, 0xdc, 0x2e, 0x3f, 0xb4, 0xef, 0xb4, 0x3d, 0x66, + 0x14, 0x84, 0x5c, 0x44, 0x54, 0x88, 0x40, 0xee, 0x6b, 0xc3, 0x3f, 0x67, + 0xab, 0xc9, 0x6f, 0x74, 0x28, 0xc5, 0xd5, 0x9a, 0x06, 0x8d, 0x76, 0x45, + 0x73, 0xd3, 0x8c, 0xf4, 0x35, 0xf4, 0x5f, 0x84, 0xef, 0x1e, 0x3b, 0x7b, + 0xd8, 0xe6, 0x53, 0x16, 0xe6, 0x25, 0x43, 0x71, 0xc6, 0x29, 0xb4, 0x3a, + 0x6f, 0x4b, 0x23, 0xe1, 0x6f, 0x89, 0xb7, 0x22, 0xef, 0xc6, 0xda, 0x8c, + 0xc7, 0x01, 0x99, 0xfe, 0x64, 0x07, 0x3b, 0x0e, 0x30, 0x57, 0xf0, 0xc5, + 0x72, 0x12, 0x4c, 0xaa, 0x18, 0x6d, 0x66, 0x3e, 0xd5, 0xd4, 0x7c, 0x42, + 0x8c, 0x9f, 0x1d, 0x6b, 0x44, 0x11, 0xe5, 0xfd, 0xaa, 0x4f, 0xe7, 0x5c, + 0xdb, 0x98, 0x61, 0x3c, 0xe0, 0x1f, 0x73, 0x5e, 0x54, 0xdf, 0xbc, 0xce, + 0xe8, 0xec, 0x56, 0x92, 0x57, 0x65, 0x50, 0x80, 0xa9, 0x3c, 0x67, 0x1d, + 0x2a, 0x9e, 0xb7, 0x68, 0xb2, 0x69, 0x93, 0x19, 0x09, 0x72, 0x14, 0x9c, + 0x9f, 0x5a, 0xbd, 0x3d, 0xcf, 0x99, 0x80, 0xa0, 0x9f, 0xa0, 0xac, 0xef, + 0x10, 0xc9, 0x31, 0xd2, 0xa6, 0x65, 0x2a, 0x17, 0x18, 0x61, 0xd7, 0x8a, + 0x74, 0xef, 0xcf, 0x1b, 0x68, 0x39, 0x5b, 0x95, 0x90, 0xf8, 0x5c, 0xb8, + 0xb0, 0x28, 0x24, 0x3b, 0x48, 0xe9, 0xd4, 0x55, 0xd2, 0x8c, 0xf9, 0xdc, + 0xd8, 0x1e, 0xc7, 0x8a, 0xa5, 0xe1, 0x1c, 0x7d, 0x97, 0xf0, 0xad, 0x31, + 0x81, 0x9c, 0x8c, 0x81, 0x55, 0x55, 0xda, 0xa4, 0x85, 0x05, 0xa2, 0x2b, + 0xc8, 0xa9, 0xe5, 0x31, 0x07, 0x3f, 0x4a, 0xc8, 0xb8, 0xc1, 0x90, 0xd6, + 0xcc, 0xc4, 0xec, 0x63, 0x8d, 0xaa, 0x07, 0x4a, 0xc4, 0x95, 0x8b, 0x3e, + 0x78, 0xe7, 0xde, 0xae, 0x90, 0xa4, 0x4d, 0x10, 0x38, 0x15, 0x69, 0x54, + 0xe0, 0x1a, 0xab, 0x0c, 0x9c, 0x0e, 0x0d, 0x5a, 0x49, 0x55, 0xbd, 0xa9, + 0xca, 0xe2, 0x42, 0x22, 0xe6, 0x43, 0x56, 0x11, 0x73, 0x50, 0xa3, 0x0d, + 0xe7, 0x07, 0xad, 0x58, 0x53, 0xcd, 0x67, 0x22, 0x90, 0xed, 0xbc, 0x1a, + 0xb3, 0x6a, 0x30, 0xa3, 0xd6, 0xab, 0x67, 0x8a, 0xb9, 0x6c, 0x3f, 0x76, + 0xb5, 0x8c, 0xb6, 0x2d, 0x17, 0xa0, 0x38, 0x35, 0x70, 0x73, 0x0b, 0x0a, + 0xad, 0x12, 0xe3, 0xb5, 0x4e, 0xec, 0x52, 0x06, 0xae, 0x57, 0xb9, 0xa9, + 0xad, 0x66, 0xb8, 0x03, 0x35, 0xa5, 0x1a, 0x81, 0xda, 0xb3, 0xad, 0x06, + 0x40, 0xad, 0x3b, 0x71, 0x93, 0x53, 0x11, 0x92, 0x34, 0x78, 0x86, 0x43, + 0x9e, 0xd5, 0x3d, 0xba, 0xe2, 0x35, 0xfa, 0x53, 0x25, 0x18, 0x81, 0xfe, + 0x95, 0x62, 0xd4, 0x6e, 0x89, 0x73, 0xe9, 0x5a, 0x92, 0xcb, 0x11, 0x81, + 0xc5, 0x69, 0xd8, 0x39, 0x00, 0x8c, 0xf0, 0x45, 0x50, 0x88, 0x0c, 0xf0, + 0x38, 0xab, 0xd6, 0xc0, 0x03, 0x57, 0x1d, 0x1a, 0x33, 0x7b, 0x17, 0xb4, + 0x9c, 0xc5, 0xe1, 0xf4, 0x72, 0x39, 0x07, 0x3c, 0xd6, 0xbc, 0x44, 0x33, + 0x10, 0x22, 0x0c, 0x46, 0x3a, 0x35, 0x63, 0xe9, 0x73, 0x45, 0x26, 0x83, + 0xe5, 0xc8, 0xfb, 0x57, 0xeb, 0xce, 0x2a, 0xcb, 0x48, 0x23, 0x80, 0xcd, + 0x0d, 0xc7, 0x03, 0x82, 0x41, 0xcf, 0x4f, 0x5a, 0xed, 0x7b, 0x98, 0xad, + 0x91, 0xbd, 0x1c, 0x89, 0xb2, 0x75, 0xda, 0x15, 0x95, 0x7d, 0x73, 0x5f, + 0xaa, 0x7f, 0x08, 0xa7, 0xf3, 0xfe, 0x14, 0xf8, 0x46, 0x45, 0x70, 0xea, + 0x74, 0xab, 0x60, 0x48, 0x3e, 0x91, 0x80, 0x7f, 0x95, 0x7e, 0x4f, 0xdb, + 0xcc, 0x24, 0x37, 0x12, 0x64, 0x1d, 0xd1, 0x8e, 0x87, 0xd2, 0xbe, 0xfa, + 0xfd, 0x99, 0xbe, 0x27, 0x6b, 0x3a, 0x8f, 0xc2, 0x0d, 0x2e, 0xd6, 0x38, + 0x34, 0xb0, 0xba, 0x71, 0x6b, 0x61, 0x2d, 0xd5, 0xeb, 0x46, 0xec, 0xb9, + 0x24, 0x65, 0x42, 0x1f, 0x5c, 0x75, 0xed, 0x5d, 0x34, 0x5a, 0x57, 0xb9, + 0x85, 0x58, 0xb6, 0xd5, 0x8f, 0xa4, 0x26, 0xe8, 0xed, 0xdf, 0x15, 0x90, + 0xd1, 0xed, 0xb6, 0x9c, 0x77, 0x31, 0x11, 0x5c, 0x85, 0xc7, 0x8c, 0x35, + 0x49, 0x5b, 0xf7, 0xba, 0xb6, 0x93, 0x64, 0x08, 0xc7, 0xc9, 0x1b, 0xcc, + 0x49, 0xf4, 0x1f, 0x32, 0xd5, 0x28, 0xf5, 0x67, 0xb9, 0x91, 0xcd, 0xcf, + 0x88, 0xae, 0x25, 0x07, 0xf8, 0x2d, 0x6d, 0x96, 0x21, 0xff, 0x00, 0x8f, + 0x6e, 0x34, 0xea, 0x4e, 0x3d, 0x59, 0xb5, 0x3a, 0x72, 0x5f, 0xf0, 0xc7, + 0x65, 0xe1, 0x75, 0x27, 0x40, 0xb2, 0xe3, 0xa2, 0xe3, 0xf5, 0x35, 0xe0, + 0xff, 0x00, 0xb4, 0x2d, 0x98, 0x9f, 0xc4, 0xf6, 0x5b, 0x90, 0x37, 0xee, + 0x71, 0x92, 0x3d, 0xeb, 0xde, 0xfc, 0x21, 0x71, 0x6f, 0x7b, 0x60, 0xd6, + 0xd6, 0xc5, 0xc8, 0xb5, 0xc0, 0xfd, 0xe3, 0x65, 0x9b, 0x39, 0x3c, 0xd7, + 0x91, 0x7c, 0x77, 0x58, 0xa2, 0xd6, 0xec, 0xfc, 0xd0, 0xc5, 0xbc, 0xa3, + 0x80, 0x06, 0x4f, 0x5a, 0xc2, 0x70, 0xf7, 0x22, 0xd6, 0xc6, 0xf4, 0xaa, + 0x5e, 0xac, 0xef, 0xfd, 0x6a, 0x78, 0x78, 0xb3, 0x10, 0x5d, 0x40, 0x0a, + 0x8c, 0x09, 0x13, 0xb7, 0xb8, 0xaf, 0xb0, 0xf4, 0xb5, 0xd9, 0x0c, 0x60, + 0x0e, 0x36, 0x8e, 0x05, 0x7c, 0x9f, 0x77, 0x76, 0x86, 0xe6, 0x10, 0x90, + 0x39, 0x0d, 0x22, 0xe4, 0xb0, 0xc6, 0x39, 0x15, 0xf5, 0xae, 0x92, 0xa2, + 0x5b, 0x68, 0x98, 0x64, 0x12, 0xa0, 0xe0, 0x8a, 0x88, 0x46, 0xc3, 0xab, + 0x25, 0x73, 0xcd, 0x7f, 0x6a, 0x14, 0x33, 0x7c, 0x17, 0xd6, 0x90, 0x36, + 0xd2, 0x5a, 0x0e, 0x48, 0xcf, 0xfc, 0xb5, 0x4a, 0xfc, 0xf8, 0xbe, 0xd3, + 0x49, 0x24, 0x34, 0xb2, 0x30, 0xef, 0x83, 0x8a, 0xfd, 0x12, 0xfd, 0xa3, + 0xed, 0x7c, 0xff, 0x00, 0x84, 0x7a, 0xb0, 0xff, 0x00, 0x6a, 0x1f, 0xfd, + 0x1a, 0xb5, 0xf0, 0xcd, 0xe6, 0x98, 0xa3, 0x76, 0xec, 0x01, 0xde, 0xb1, + 0x9d, 0xee, 0x10, 0xb3, 0x89, 0xf0, 0xaf, 0xc5, 0x7d, 0x3a, 0x08, 0xbc, + 0x49, 0xaa, 0x88, 0xc9, 0xf3, 0x52, 0xe1, 0xbe, 0x51, 0xc9, 0x22, 0xb9, + 0x2d, 0x37, 0x41, 0xb8, 0xba, 0x22, 0x47, 0x1e, 0x4c, 0x39, 0xe6, 0x46, + 0xe2, 0xbd, 0x2f, 0xe2, 0x05, 0xf5, 0x95, 0xb7, 0xc4, 0x3d, 0x6a, 0x36, + 0x91, 0x1b, 0x17, 0x0d, 0xd4, 0x67, 0xd2, 0xb0, 0xef, 0x75, 0xad, 0x3e, + 0x1b, 0x20, 0x22, 0x87, 0xcd, 0x3b, 0xf7, 0x61, 0xb8, 0x5c, 0xf7, 0xaf, + 0x5a, 0x94, 0xe6, 0xa3, 0xca, 0x91, 0xe5, 0xca, 0x11, 0xbf, 0x35, 0xcc, + 0xcd, 0x37, 0x4b, 0xfe, 0xcf, 0xba, 0x91, 0xd5, 0xf7, 0x85, 0x61, 0x86, + 0xc6, 0x2b, 0xd6, 0x75, 0xcf, 0x11, 0xb5, 0xc7, 0x85, 0xae, 0x6d, 0x88, + 0x63, 0x19, 0x83, 0x1b, 0x88, 0xef, 0x5e, 0x5d, 0x0f, 0x88, 0x44, 0x92, + 0xa7, 0xfa, 0x1a, 0x79, 0x45, 0x83, 0x38, 0x5e, 0xa6, 0xba, 0x9b, 0xdf, + 0x19, 0x5b, 0xdc, 0xe9, 0x37, 0x36, 0x90, 0xdb, 0x48, 0xbe, 0x6c, 0x65, + 0x14, 0x1e, 0xc6, 0xb6, 0x70, 0x72, 0xd5, 0xee, 0x2e, 0x7e, 0x55, 0xca, + 0x7d, 0x0b, 0xf0, 0xed, 0xa6, 0x97, 0xc1, 0x7a, 0x79, 0x30, 0x82, 0xa2, + 0xd1, 0x14, 0x73, 0x5e, 0xbb, 0xe0, 0x59, 0x16, 0xde, 0xca, 0x35, 0x78, + 0xb9, 0x62, 0x4e, 0x41, 0xce, 0x2b, 0xe7, 0xcf, 0x86, 0x5e, 0x2f, 0x0d, + 0xe1, 0xf8, 0x2c, 0xf6, 0x48, 0x5a, 0x38, 0x02, 0x72, 0xa4, 0x73, 0x5e, + 0xad, 0xe1, 0x8f, 0x16, 0x0b, 0x47, 0x8c, 0x4d, 0x6f, 0x2a, 0x81, 0xd4, + 0x81, 0x91, 0x5e, 0x6c, 0xa9, 0x49, 0xbb, 0xd8, 0xed, 0x8d, 0x58, 0xad, + 0x2e, 0x7a, 0x17, 0xc4, 0x62, 0xb3, 0xda, 0xe9, 0xa2, 0x28, 0x9b, 0x27, + 0x70, 0x25, 0xba, 0x0e, 0x95, 0xe7, 0xb3, 0x5b, 0xfd, 0x9a, 0xd5, 0xc4, + 0xaf, 0xdf, 0xb7, 0x15, 0xd9, 0xf8, 0x8f, 0x5f, 0x83, 0x56, 0xb2, 0xb2, + 0xfb, 0x18, 0x69, 0x99, 0x73, 0x90, 0x57, 0x18, 0xae, 0x2f, 0x53, 0xd2, + 0xa6, 0xb8, 0x53, 0x25, 0xe5, 0xc2, 0xc3, 0x07, 0x52, 0x99, 0xc0, 0xfc, + 0x4d, 0x47, 0xb1, 0x9c, 0x9f, 0x91, 0x4e, 0xb4, 0x12, 0xf3, 0x39, 0x99, + 0x35, 0x48, 0x60, 0xd4, 0x7f, 0x76, 0x85, 0xce, 0x7a, 0x20, 0xce, 0x2b, + 0x88, 0xf8, 0xe9, 0xa9, 0x1b, 0xfd, 0x18, 0xc2, 0xb6, 0xf2, 0x15, 0x0e, + 0x8e, 0x5b, 0x1b, 0x47, 0x1e, 0xf5, 0xbf, 0xad, 0x78, 0xdb, 0x4a, 0xd2, + 0x5d, 0xed, 0x74, 0xb8, 0xd2, 0x79, 0xc7, 0x06, 0x45, 0x3f, 0x20, 0xf7, + 0xcf, 0x7a, 0xf3, 0xef, 0x13, 0xf8, 0x89, 0xaf, 0xed, 0xa5, 0x49, 0x07, + 0xda, 0xa6, 0x93, 0xe5, 0x2f, 0x20, 0xf9, 0x50, 0x7a, 0x28, 0xa7, 0xec, + 0xe1, 0x0d, 0x5b, 0x1c, 0x3d, 0xa5, 0x47, 0xb6, 0x87, 0x9e, 0xe8, 0x36, + 0x33, 0xcc, 0xf3, 0xb3, 0x16, 0x88, 0x1c, 0x1c, 0x21, 0xc0, 0xae, 0xbb, + 0x4f, 0x5b, 0xbb, 0x58, 0x76, 0xc5, 0x79, 0x3a, 0x29, 0xea, 0x03, 0xf1, + 0x59, 0xfa, 0x74, 0xc2, 0x06, 0x65, 0xc0, 0x24, 0x8a, 0xd8, 0x13, 0x88, + 0xa0, 0x24, 0x8f, 0x9b, 0xb5, 0x70, 0x54, 0x7c, 0xd2, 0xd4, 0xf4, 0x14, + 0x5c, 0x74, 0x4c, 0xeb, 0x34, 0x7f, 0x1a, 0xf8, 0x97, 0x49, 0x55, 0x5b, + 0x5d, 0x6e, 0xee, 0x25, 0x1d, 0xb7, 0x03, 0xfc, 0xc5, 0x69, 0xcd, 0xe3, + 0xff, 0x00, 0x12, 0xdc, 0x67, 0xce, 0xd6, 0xee, 0x09, 0xfa, 0x8f, 0xf0, + 0xaf, 0x2f, 0x97, 0x5e, 0x9a, 0x00, 0xc4, 0x1f, 0xa0, 0xac, 0xc6, 0xf1, + 0x55, 0xe9, 0x3f, 0x78, 0x1a, 0x8e, 0x56, 0xd5, 0x93, 0x2a, 0xf2, 0xdc, + 0xf6, 0x64, 0xf1, 0xe7, 0x88, 0x63, 0x8c, 0x6d, 0xd5, 0xe6, 0x6c, 0x1c, + 0x80, 0xe7, 0x35, 0xa8, 0x9f, 0x13, 0xfc, 0x52, 0x23, 0x62, 0x6f, 0x23, + 0x90, 0x6d, 0x20, 0x96, 0x4e, 0x7f, 0x9d, 0x78, 0xce, 0x8d, 0xe2, 0x19, + 0xa6, 0x97, 0xf7, 0xff, 0x00, 0x74, 0xf0, 0xb8, 0xaf, 0x4e, 0xd0, 0xd9, + 0x6e, 0xa6, 0xb7, 0x8c, 0x8f, 0xbe, 0x40, 0xa4, 0xa9, 0x37, 0x24, 0xbb, + 0x87, 0xb5, 0x94, 0x53, 0x67, 0xea, 0xff, 0x00, 0x87, 0x5e, 0x35, 0xd7, + 0x2c, 0xb6, 0xed, 0x61, 0xfd, 0x98, 0x8a, 0x18, 0x1e, 0xa0, 0x11, 0xfe, + 0x35, 0xda, 0x16, 0x5d, 0xfb, 0xb0, 0x32, 0x05, 0x7c, 0x83, 0xfb, 0x39, + 0x7c, 0x6b, 0xfe, 0xde, 0xd5, 0xad, 0xe2, 0xd4, 0xee, 0x82, 0x08, 0x6d, + 0x44, 0x08, 0x4f, 0x7e, 0x95, 0xf4, 0xf4, 0x7e, 0x21, 0xb3, 0x77, 0x91, + 0xc5, 0xdc, 0x45, 0x76, 0x67, 0xef, 0x8f, 0xce, 0xbf, 0x50, 0x83, 0x8c, + 0xd5, 0xd1, 0xf0, 0x73, 0xa6, 0xe9, 0xbb, 0x32, 0xe8, 0xd4, 0x92, 0x2d, + 0x5e, 0x71, 0x90, 0x31, 0x08, 0xc9, 0x27, 0x1e, 0xb5, 0xf9, 0x4d, 0xf1, + 0xff, 0x00, 0x56, 0xfb, 0x5f, 0xc4, 0x7d, 0x66, 0x75, 0x60, 0x44, 0x97, + 0x0e, 0xd9, 0x1f, 0x5a, 0xfa, 0xc7, 0xe3, 0xbf, 0xc7, 0xf9, 0x7c, 0x29, + 0xe2, 0x4b, 0xfb, 0x3b, 0x39, 0x31, 0x19, 0x8c, 0x47, 0xbd, 0x0f, 0x7f, + 0xf2, 0x6b, 0xe0, 0xbf, 0x1b, 0xeb, 0xcd, 0xad, 0x6a, 0xf3, 0xdd, 0x13, + 0x9f, 0x31, 0x8b, 0x66, 0xbe, 0x7f, 0x37, 0x9c, 0x5d, 0x3e, 0x54, 0x7b, + 0xd9, 0x5d, 0x29, 0x29, 0xb9, 0x3d, 0x8e, 0x2b, 0x5a, 0x90, 0x4d, 0x78, + 0xee, 0x4f, 0x3d, 0x3f, 0x0a, 0xcc, 0x64, 0xdf, 0xf3, 0x01, 0xd2, 0xae, + 0x5e, 0x0c, 0xdc, 0x33, 0x13, 0xd4, 0xd4, 0x31, 0x2f, 0xcd, 0xf5, 0xaf, + 0x90, 0x72, 0xd3, 0x53, 0xe9, 0xd4, 0x44, 0x47, 0x65, 0x23, 0x9c, 0x8a, + 0xe9, 0xac, 0xae, 0x88, 0x85, 0x76, 0x9e, 0xd5, 0xcf, 0xf9, 0x07, 0xaf, + 0x63, 0x57, 0xad, 0xa6, 0x28, 0x30, 0x6b, 0x8e, 0xa3, 0xe6, 0xd8, 0xd1, + 0x2b, 0x1b, 0x1a, 0x74, 0xa5, 0xef, 0xd9, 0xb3, 0x83, 0x8a, 0xec, 0x74, + 0x7b, 0xc3, 0xf3, 0x29, 0xef, 0x5c, 0x25, 0x99, 0x0b, 0x39, 0x75, 0x38, + 0x35, 0xd4, 0x68, 0xf7, 0x81, 0x89, 0xc8, 0xc3, 0x56, 0x0a, 0x56, 0x1b, + 0x8d, 0xf5, 0x3a, 0xf8, 0x6e, 0x49, 0xc6, 0x41, 0x2a, 0x2a, 0xe4, 0xfa, + 0xae, 0xdb, 0x67, 0x03, 0x9c, 0x0e, 0xe6, 0xb9, 0xd4, 0xbe, 0x31, 0x8c, + 0x75, 0x15, 0x0d, 0xcd, 0xe8, 0x31, 0x39, 0x56, 0xc1, 0x22, 0xa3, 0x98, + 0xa4, 0x9a, 0x39, 0xdb, 0xaf, 0x10, 0x5d, 0x34, 0xb2, 0x2a, 0xb6, 0xce, + 0x7b, 0x56, 0x5c, 0xda, 0x85, 0xd3, 0xb1, 0x2f, 0x23, 0x1a, 0x49, 0xf2, + 0xd3, 0x36, 0x46, 0x39, 0xeb, 0xeb, 0x4b, 0xe4, 0xb9, 0x03, 0x35, 0x5c, + 0xb2, 0xb5, 0xfa, 0x17, 0xa3, 0x1d, 0xf6, 0xe9, 0x23, 0x5c, 0x86, 0x3f, + 0x5a, 0xb7, 0x6b, 0xe2, 0x09, 0x30, 0x04, 0x9f, 0x30, 0x15, 0x59, 0xed, + 0xc9, 0x4e, 0x98, 0x35, 0x58, 0x42, 0x54, 0xfd, 0xd1, 0x58, 0xa9, 0x26, + 0x55, 0x8e, 0x9e, 0x2b, 0xe8, 0x6e, 0x70, 0x41, 0xda, 0x7d, 0x2a, 0x47, + 0x85, 0x66, 0xe1, 0x95, 0x5c, 0x56, 0x4d, 0xb4, 0x18, 0x88, 0x11, 0xc1, + 0xa9, 0xe1, 0x92, 0x44, 0x93, 0xad, 0x67, 0xed, 0x4a, 0x54, 0xc9, 0xe6, + 0xd0, 0xa0, 0x94, 0x65, 0x01, 0x8d, 0xbf, 0xd9, 0x38, 0xa7, 0x59, 0xc3, + 0xad, 0xe8, 0xf2, 0x79, 0x9a, 0x76, 0xa7, 0x3c, 0x27, 0xfd, 0x97, 0x22, + 0xb4, 0x2d, 0x8f, 0x9e, 0xa0, 0x31, 0x22, 0xb4, 0x22, 0xb6, 0x66, 0x1c, + 0x60, 0xd0, 0xab, 0xa5, 0xb1, 0x7e, 0xcd, 0xec, 0x4d, 0xa7, 0xfc, 0x63, + 0xf1, 0xee, 0x86, 0x54, 0x3d, 0xc9, 0xbc, 0x45, 0xff, 0x00, 0x9e, 0x83, + 0x75, 0x6a, 0xc9, 0xfb, 0x41, 0xdc, 0x5f, 0x43, 0x73, 0xfd, 0xad, 0x64, + 0xc2, 0x77, 0x5d, 0xa1, 0xe2, 0xca, 0x6d, 0xaa, 0x96, 0xd6, 0x21, 0x80, + 0xde, 0x31, 0xf5, 0xab, 0x0d, 0xe1, 0x78, 0x2f, 0x03, 0x6e, 0x0a, 0x73, + 0xc7, 0x22, 0x9f, 0xd7, 0x66, 0xb4, 0xb8, 0xfe, 0xa8, 0x9f, 0x43, 0xd7, + 0x3f, 0x65, 0xff, 0x00, 0x13, 0x69, 0x76, 0xdf, 0x0e, 0xe7, 0x12, 0xde, + 0xc6, 0xd2, 0xcd, 0x7d, 0x24, 0x82, 0x29, 0x9c, 0x6e, 0xc6, 0xee, 0xe2, + 0xbd, 0xbb, 0xc2, 0x77, 0x36, 0xb0, 0x78, 0xe7, 0x4f, 0x9a, 0x39, 0xa3, + 0x29, 0xe6, 0x0e, 0x50, 0xf6, 0x24, 0x57, 0xc6, 0x36, 0x3f, 0x0e, 0xe2, + 0xf2, 0xdb, 0xca, 0x66, 0x87, 0x07, 0xfe, 0x59, 0x9c, 0x57, 0x43, 0xa1, + 0x69, 0x1a, 0xe6, 0x85, 0xa9, 0x5a, 0xcf, 0x63, 0xaa, 0xdc, 0x21, 0x89, + 0xc3, 0x6c, 0x76, 0x2c, 0x0e, 0x0f, 0x4a, 0xf5, 0x29, 0x66, 0x71, 0x95, + 0x94, 0xa2, 0xce, 0x09, 0xe5, 0xcd, 0x2d, 0x24, 0x7d, 0x7f, 0xfb, 0x59, + 0x7c, 0x6a, 0xd1, 0x7c, 0x27, 0xa2, 0xae, 0x8f, 0x2d, 0xc1, 0x92, 0xf2, + 0x49, 0x15, 0xcc, 0x48, 0x32, 0xc0, 0x0a, 0xf9, 0x8a, 0x3f, 0x8c, 0xde, + 0x1c, 0xd4, 0xe0, 0x89, 0x46, 0xb0, 0x96, 0xb2, 0x00, 0x72, 0x26, 0x05, + 0x70, 0x7d, 0x39, 0xad, 0x0f, 0x18, 0x69, 0x73, 0xf8, 0xcb, 0x52, 0x7d, + 0x4f, 0x55, 0x22, 0xe2, 0xed, 0xfa, 0xb3, 0x74, 0x1e, 0xc2, 0xb8, 0xdd, + 0x47, 0xe1, 0xbd, 0x8c, 0xaa, 0x47, 0xd9, 0xe3, 0x62, 0x7b, 0x81, 0x5d, + 0xb3, 0xc4, 0xce, 0xac, 0xed, 0x08, 0x68, 0x72, 0xc3, 0x09, 0x1a, 0x50, + 0xf7, 0xa7, 0xa9, 0xb1, 0x75, 0xe3, 0xd2, 0x63, 0x0d, 0x65, 0xa8, 0xda, + 0x5e, 0x29, 0x6c, 0x7c, 0x92, 0x0c, 0xe2, 0xb7, 0x7c, 0x2d, 0xac, 0xc1, + 0xaa, 0xeb, 0x89, 0x11, 0x73, 0xbc, 0xc8, 0x72, 0x15, 0xb8, 0x35, 0xe4, + 0xb7, 0xff, 0x00, 0x0a, 0xad, 0x54, 0x7e, 0xe6, 0xd8, 0xc6, 0x71, 0xc9, + 0xc5, 0x69, 0x7c, 0x28, 0xf0, 0x6c, 0x9a, 0x0f, 0x8f, 0xac, 0xae, 0x99, + 0xa4, 0x58, 0xd7, 0x70, 0x20, 0xb1, 0x2b, 0xd3, 0xbd, 0x6c, 0xa3, 0x38, + 0xef, 0x1d, 0x0c, 0x5b, 0x8b, 0xd9, 0x9f, 0x47, 0xdc, 0x40, 0xd0, 0x24, + 0x65, 0xa6, 0x20, 0x3f, 0xcc, 0xa3, 0x75, 0x63, 0x5c, 0xcb, 0x73, 0xb5, + 0xbe, 0x60, 0xca, 0xbd, 0xc9, 0xce, 0x2b, 0x7a, 0xe4, 0x31, 0xfb, 0x2c, + 0xc4, 0x23, 0xaf, 0x95, 0xf2, 0xae, 0x7a, 0xee, 0xff, 0x00, 0xf5, 0x56, + 0x3e, 0xa4, 0x31, 0x0d, 0xd3, 0x04, 0x11, 0x91, 0x16, 0x71, 0xef, 0x5d, + 0x07, 0x33, 0x39, 0xad, 0x73, 0x25, 0x23, 0x47, 0x3e, 0x60, 0x77, 0x8f, + 0x81, 0xd3, 0x93, 0x55, 0xef, 0x2c, 0xe1, 0x44, 0xe6, 0x31, 0x93, 0xda, + 0xaf, 0xea, 0x11, 0x24, 0xd3, 0x5b, 0x23, 0xf1, 0xcc, 0x24, 0x73, 0xdf, + 0x26, 0x9b, 0xa9, 0xa8, 0x5c, 0x81, 0xda, 0xb2, 0x9e, 0x89, 0x30, 0x8f, + 0x53, 0x90, 0xbe, 0xb4, 0x8c, 0x12, 0x36, 0x63, 0xf1, 0xae, 0x47, 0x55, + 0xb5, 0x8b, 0xed, 0xd6, 0xe0, 0x02, 0xc0, 0x93, 0xc1, 0xfa, 0x57, 0x63, + 0xaa, 0x36, 0x38, 0x07, 0xad, 0x72, 0x9a, 0x92, 0xee, 0xbf, 0xb7, 0xe7, + 0x38, 0x0d, 0xfc, 0xab, 0x34, 0xc9, 0x92, 0xd0, 0xc5, 0xd5, 0xf4, 0xf4, + 0x16, 0xcf, 0x2e, 0xc1, 0x8a, 0xf3, 0x2d, 0x79, 0x14, 0x16, 0xf9, 0x71, + 0xf4, 0xaf, 0x4d, 0xd6, 0x03, 0x2a, 0xb2, 0xe4, 0xed, 0x3d, 0xab, 0xcd, + 0xb5, 0xe5, 0xc1, 0x7c, 0x0c, 0xd2, 0x9b, 0x22, 0x27, 0x9c, 0xea, 0x0a, + 0x05, 0xd3, 0x0e, 0xd8, 0xe9, 0x54, 0x64, 0x51, 0xe9, 0x57, 0xb5, 0x1f, + 0xf8, 0xfd, 0x71, 0xed, 0x54, 0x9d, 0x48, 0x15, 0x51, 0xe8, 0x53, 0x2b, + 0x3e, 0x07, 0x6c, 0x55, 0x6c, 0x67, 0x27, 0xa5, 0x5a, 0x90, 0x64, 0xd4, + 0x08, 0x84, 0xfd, 0x2b, 0xa1, 0x19, 0x8c, 0x2b, 0xc7, 0x4a, 0x8b, 0xf8, + 0xaa, 0xcb, 0xa1, 0x51, 0xcd, 0x56, 0x24, 0x06, 0xad, 0x16, 0xa4, 0xb1, + 0x14, 0x73, 0xd2, 0x91, 0xfb, 0x9a, 0x52, 0xe8, 0xbd, 0x5b, 0x34, 0xd6, + 0x70, 0x7a, 0x02, 0x73, 0xde, 0xad, 0x18, 0xca, 0xc4, 0xf6, 0xcc, 0xcb, + 0x77, 0x0e, 0x3a, 0xe6, 0xba, 0x18, 0x9c, 0x39, 0x21, 0xb2, 0x87, 0xa8, + 0x22, 0xb9, 0xc8, 0x9a, 0x41, 0x7f, 0x06, 0xe5, 0xe3, 0x3d, 0xab, 0xa7, + 0x8d, 0x37, 0xf2, 0x46, 0x47, 0xeb, 0x5c, 0xf5, 0xb4, 0xb1, 0xa5, 0x3d, + 0x6f, 0x62, 0x46, 0x88, 0xb2, 0x91, 0xbb, 0xb7, 0x5a, 0xc2, 0xb0, 0x4f, + 0x2f, 0xc4, 0x71, 0x8d, 0xc5, 0x80, 0xcf, 0x26, 0xb7, 0x1e, 0x10, 0x11, + 0xc6, 0x48, 0x18, 0xed, 0x58, 0x7a, 0x68, 0x09, 0xae, 0x02, 0x8a, 0xcf, + 0x85, 0x39, 0x22, 0x9d, 0x27, 0xee, 0x4b, 0xd0, 0xc6, 0xa2, 0xf7, 0xe2, + 0x76, 0x91, 0xbb, 0x16, 0x21, 0x18, 0x03, 0xef, 0x56, 0xa3, 0x2c, 0x0e, + 0x25, 0x40, 0x33, 0xc6, 0x45, 0x50, 0x40, 0xae, 0xc4, 0xc6, 0xf8, 0x7e, + 0xe3, 0xd2, 0xac, 0xa4, 0xce, 0xcb, 0x87, 0x3f, 0x32, 0x9e, 0xa2, 0xb9, + 0x0e, 0xaf, 0x53, 0xd3, 0x3f, 0x67, 0x67, 0x10, 0xfc, 0x6d, 0xf0, 0x9b, + 0x2e, 0x00, 0x17, 0x80, 0xfe, 0x86, 0xbf, 0x55, 0x57, 0x5d, 0x8d, 0xa2, + 0xb5, 0xb6, 0x05, 0xae, 0x2f, 0x24, 0xb7, 0x13, 0x6c, 0x1e, 0x9d, 0x32, + 0x4f, 0x6a, 0xfc, 0xa3, 0xfd, 0x9f, 0xf7, 0x3f, 0xc6, 0x5f, 0x0b, 0xed, + 0xc6, 0xef, 0xb5, 0x0e, 0xbd, 0x3e, 0xe9, 0xaf, 0xd4, 0xaf, 0x0d, 0x58, + 0x4c, 0x6f, 0x13, 0x52, 0x42, 0x92, 0x5b, 0x4b, 0x61, 0x0c, 0x48, 0x77, + 0x7f, 0x10, 0x2d, 0x9f, 0xe6, 0x2a, 0x5f, 0x73, 0xaa, 0x97, 0xc0, 0xd1, + 0xe0, 0xfe, 0x3f, 0x9a, 0x6b, 0x9b, 0x6d, 0x42, 0x43, 0x31, 0x39, 0x4d, + 0x4b, 0x0c, 0xa7, 0xa7, 0x09, 0xd2, 0xbf, 0x3f, 0xbc, 0x3f, 0x73, 0x2d, + 0x97, 0x88, 0x6d, 0xa7, 0x87, 0x2f, 0x34, 0x72, 0xee, 0x5e, 0x33, 0x92, + 0x0f, 0x15, 0xfa, 0x11, 0xf1, 0x23, 0x4a, 0x1a, 0x25, 0xbd, 0xf5, 0x98, + 0x90, 0xca, 0xcb, 0x16, 0xa2, 0xc4, 0xe3, 0x1d, 0x42, 0x1a, 0xf8, 0x07, + 0xc0, 0x97, 0x2b, 0x6f, 0xe3, 0x7d, 0x32, 0x67, 0xd8, 0x11, 0x2e, 0x51, + 0x8f, 0x99, 0xf7, 0x7e, 0xf7, 0x7a, 0xeb, 0xfb, 0x3f, 0x33, 0x8a, 0x4b, + 0xf7, 0x8b, 0xd0, 0xfd, 0xb3, 0xf8, 0x41, 0xab, 0x5f, 0x6b, 0x7f, 0x0d, + 0xf4, 0x2b, 0xbd, 0x4e, 0xd9, 0xed, 0x35, 0x09, 0xac, 0xa2, 0x69, 0xa0, + 0x75, 0xda, 0x55, 0xb6, 0x8e, 0xde, 0xfd, 0x7f, 0x1a, 0xeb, 0x17, 0x6f, + 0x9a, 0xc0, 0xae, 0x0e, 0x47, 0xe3, 0x59, 0x1e, 0x0e, 0xbc, 0x8f, 0x51, + 0xf0, 0xf5, 0x85, 0xcd, 0xbc, 0x89, 0x34, 0x53, 0x5b, 0xc6, 0xe9, 0x22, + 0x7d, 0xd2, 0x0a, 0x83, 0x91, 0xed, 0x5a, 0x82, 0x46, 0x13, 0xb0, 0x70, + 0x49, 0xc8, 0xfb, 0xb5, 0xdd, 0x1f, 0x85, 0x1c, 0xed, 0x5a, 0x4d, 0x5c, + 0xf8, 0xa3, 0xfe, 0x0a, 0x8d, 0x72, 0x07, 0x86, 0xbc, 0x15, 0x16, 0x70, + 0x7e, 0xd9, 0x3b, 0x63, 0xfe, 0xd9, 0xad, 0x7e, 0x76, 0x78, 0x6a, 0x5c, + 0x78, 0x9e, 0xcf, 0x82, 0xdf, 0xbf, 0x5e, 0x07, 0x5e, 0xb5, 0xfa, 0x15, + 0xff, 0x00, 0x05, 0x49, 0x5d, 0x9e, 0x1c, 0xf0, 0x53, 0xf6, 0x37, 0xb7, + 0x1f, 0xfa, 0x02, 0xd7, 0xe7, 0x57, 0x87, 0x27, 0x2b, 0xe2, 0x6b, 0x46, + 0x1d, 0x44, 0xcb, 0x8f, 0xce, 0xb9, 0xe6, 0x9f, 0x3d, 0xd9, 0xc5, 0x1f, + 0x85, 0x7a, 0x9f, 0xb8, 0x1f, 0x0d, 0xda, 0x06, 0xf8, 0x71, 0xe1, 0x76, + 0x8e, 0x6d, 0xc3, 0xfb, 0x32, 0xdc, 0x11, 0xd4, 0x8f, 0xdd, 0xad, 0x6e, + 0xf9, 0xf1, 0x47, 0x09, 0xcc, 0xa4, 0x6f, 0xf9, 0x57, 0xe5, 0xef, 0x5c, + 0x27, 0xc1, 0xfb, 0x86, 0x7f, 0x85, 0x7e, 0x15, 0x67, 0xc8, 0x63, 0xa7, + 0x43, 0x92, 0x47, 0xfb, 0x23, 0xa5, 0x69, 0x6a, 0xb7, 0xd1, 0xc5, 0x75, + 0x69, 0x1b, 0x12, 0xa1, 0xa5, 0x0c, 0x00, 0x3f, 0x5a, 0xa7, 0x18, 0xde, + 0xf6, 0x47, 0x93, 0x51, 0x7b, 0xee, 0xc8, 0xe9, 0xa3, 0x60, 0xa1, 0x4c, + 0x8e, 0x09, 0x07, 0xa5, 0x64, 0x6b, 0xba, 0x4c, 0xb7, 0xd7, 0xc9, 0x71, + 0x65, 0x3c, 0x10, 0x4c, 0xcb, 0xb1, 0xe4, 0x61, 0x96, 0xdb, 0xe8, 0x07, + 0xe3, 0x52, 0xda, 0x5d, 0xfd, 0xb9, 0x41, 0x1f, 0x88, 0xef, 0x8a, 0xd6, + 0xb7, 0x62, 0x5f, 0x6a, 0x42, 0x06, 0x30, 0x06, 0xe1, 0x9a, 0x58, 0x6a, + 0x91, 0x52, 0xe5, 0x4b, 0x43, 0x25, 0x78, 0x47, 0x95, 0xad, 0x0e, 0x5f, + 0x44, 0xf8, 0x6f, 0x61, 0xe1, 0xed, 0x62, 0x1d, 0x46, 0xcd, 0x8a, 0x4a, + 0x49, 0xdd, 0x93, 0xf7, 0x89, 0x06, 0xb6, 0xf5, 0x8b, 0x97, 0x92, 0xea, + 0xd8, 0x3c, 0x6e, 0xf6, 0xad, 0x0e, 0xe1, 0x34, 0x44, 0x11, 0x91, 0x55, + 0xfc, 0x5b, 0xa7, 0xea, 0x3a, 0x85, 0x98, 0x8a, 0xd0, 0xa8, 0x91, 0x8f, + 0x2c, 0x0e, 0x36, 0xf0, 0x6b, 0x91, 0xbf, 0xf0, 0xb7, 0x88, 0x46, 0x9b, + 0xa1, 0x25, 0xbc, 0x62, 0x43, 0x05, 0x94, 0x29, 0x32, 0x17, 0x03, 0xf7, + 0x80, 0x7c, 0xd9, 0xc9, 0x15, 0xea, 0x54, 0xc3, 0xca, 0xba, 0x6e, 0x51, + 0x65, 0x29, 0x46, 0x50, 0xb5, 0xcd, 0xdb, 0x78, 0xf5, 0x8b, 0xc9, 0xd6, + 0x51, 0x1f, 0x97, 0x6b, 0xb1, 0xcb, 0x06, 0xea, 0x00, 0xf5, 0xae, 0xf2, + 0xee, 0x27, 0x16, 0x78, 0xc1, 0x2c, 0x1b, 0x24, 0x0f, 0x4a, 0xf2, 0xef, + 0xec, 0x4d, 0x5e, 0x0b, 0x49, 0xd6, 0xf1, 0x5a, 0x28, 0x1d, 0x4e, 0xf2, + 0xac, 0x08, 0xfa, 0x60, 0x13, 0x5d, 0xd4, 0x5a, 0x8a, 0x1d, 0x46, 0xe6, + 0xd3, 0x76, 0xd7, 0x40, 0xa7, 0x93, 0xd4, 0x57, 0x34, 0xe9, 0x46, 0x95, + 0x37, 0x06, 0xac, 0x5c, 0x14, 0x7d, 0x9b, 0x43, 0x2e, 0x22, 0x78, 0x50, + 0x04, 0x8f, 0x93, 0xe8, 0x31, 0x8a, 0x96, 0xde, 0xde, 0x42, 0x87, 0x72, + 0x9e, 0x7b, 0xd3, 0x64, 0x05, 0xe6, 0xfb, 0xd9, 0x07, 0x9e, 0xb5, 0x69, + 0x44, 0x64, 0x95, 0x3d, 0xfb, 0x57, 0x2c, 0x61, 0x08, 0xab, 0xea, 0x4a, + 0x85, 0xd1, 0xce, 0xcb, 0xa2, 0x6a, 0xc3, 0x59, 0x7b, 0x83, 0x72, 0xaf, + 0x6c, 0xd1, 0x90, 0x14, 0x26, 0x19, 0x79, 0xe3, 0xbd, 0x45, 0x76, 0x9a, + 0x9f, 0x31, 0x6d, 0x8b, 0x61, 0x18, 0xf3, 0x1c, 0xed, 0xfe, 0xb5, 0xb1, + 0x37, 0xcb, 0xa8, 0xa4, 0x49, 0x95, 0x53, 0x11, 0x3c, 0x9f, 0x7a, 0x8a, + 0xf2, 0xde, 0xde, 0xe8, 0x6d, 0x78, 0x8b, 0xe0, 0xf5, 0x07, 0xf9, 0xd7, + 0x4a, 0x51, 0x93, 0xbd, 0x8d, 0x61, 0x43, 0x99, 0xdc, 0xfc, 0xa2, 0xff, + 0x00, 0x82, 0x80, 0x46, 0x2d, 0xbe, 0x36, 0xc9, 0x0f, 0x9d, 0x1c, 0xcc, + 0xb6, 0xe9, 0xb9, 0xa3, 0x39, 0x15, 0xe1, 0x5f, 0x0f, 0x23, 0x37, 0x3e, + 0x37, 0xf0, 0xec, 0x23, 0x93, 0x26, 0xa1, 0x6e, 0x98, 0xfa, 0xc8, 0xa2, + 0xbd, 0xcb, 0xfe, 0x0a, 0x0b, 0x84, 0xf8, 0xe1, 0x70, 0x36, 0x04, 0xc4, + 0x20, 0x60, 0x0c, 0x71, 0x5e, 0x11, 0xf0, 0xe6, 0xe1, 0x6d, 0xfc, 0x75, + 0xe1, 0xa9, 0x5d, 0x59, 0x91, 0x35, 0x2b, 0x76, 0x60, 0xa7, 0x04, 0x81, + 0x2a, 0x9e, 0xb5, 0x29, 0x27, 0x24, 0x7a, 0xcd, 0x72, 0xc6, 0xde, 0x47, + 0xef, 0xdd, 0xb4, 0x09, 0x6d, 0x0c, 0x6b, 0x86, 0x70, 0x14, 0x63, 0x9e, + 0x3f, 0x3a, 0xb1, 0x70, 0xac, 0x27, 0x27, 0x78, 0x08, 0x54, 0x7c, 0xb8, + 0xeb, 0x59, 0xd3, 0xb4, 0xd2, 0xc3, 0x0c, 0xd0, 0x13, 0x2c, 0x2e, 0xa0, + 0xed, 0x23, 0xa7, 0x15, 0xa1, 0x81, 0xb9, 0x09, 0xfe, 0xea, 0x9d, 0xa2, + 0xbd, 0x2a, 0x9c, 0xa9, 0x5a, 0x28, 0xc6, 0x95, 0x25, 0x08, 0xa9, 0x27, + 0xb9, 0xc6, 0x7c, 0x64, 0xd5, 0xac, 0xf4, 0x2f, 0x86, 0xbe, 0x23, 0xbd, + 0xbf, 0xb8, 0x36, 0xf6, 0xe9, 0xa7, 0xdc, 0x02, 0xcb, 0xea, 0x50, 0x81, + 0x8f, 0x7c, 0xd7, 0xe0, 0xa7, 0x88, 0x27, 0x13, 0x6b, 0x57, 0x72, 0x29, + 0xdc, 0xac, 0xec, 0x41, 0x3d, 0xf9, 0xaf, 0xdd, 0xff, 0x00, 0x8f, 0x3a, + 0x0e, 0x9b, 0xe2, 0xaf, 0x86, 0x7e, 0x21, 0xb1, 0xd5, 0x19, 0xbe, 0xcb, + 0xf6, 0x09, 0xe4, 0x64, 0x8e, 0x42, 0x98, 0x2a, 0x84, 0x82, 0x48, 0xeb, + 0x82, 0x2b, 0xf0, 0x6f, 0x5f, 0x85, 0x6d, 0xf5, 0x4b, 0xb8, 0xd0, 0xe5, + 0x11, 0x98, 0x03, 0xea, 0x33, 0x5e, 0x6d, 0x5f, 0x8c, 0xef, 0x82, 0x9f, + 0x26, 0xbb, 0x1f, 0x41, 0x7c, 0x16, 0xd5, 0x26, 0xb0, 0xd1, 0xed, 0x18, + 0x0c, 0xc4, 0xd6, 0xc6, 0x47, 0x89, 0x7a, 0x12, 0x18, 0x01, 0x5f, 0x4c, + 0x47, 0xa8, 0x1b, 0xad, 0x25, 0x9a, 0x68, 0x16, 0x58, 0xb6, 0x6f, 0xe9, + 0x86, 0x1f, 0x8d, 0x7c, 0xbd, 0xf0, 0xac, 0xc9, 0x1f, 0x87, 0x6d, 0xe4, + 0x89, 0x09, 0x75, 0xb2, 0x5c, 0x0c, 0x75, 0x3b, 0x85, 0x7b, 0xa5, 0xf6, + 0xa6, 0xf6, 0xf7, 0xba, 0x52, 0x5b, 0xbb, 0x2a, 0x5d, 0x5a, 0x48, 0xd3, + 0x45, 0x9e, 0x09, 0xc0, 0xed, 0x49, 0xb6, 0xae, 0x55, 0x34, 0x9a, 0x47, + 0xca, 0x7f, 0x1b, 0x6d, 0xad, 0x47, 0xc4, 0x4d, 0x47, 0xec, 0x80, 0xa4, + 0x0d, 0xb5, 0x95, 0x4f, 0x1d, 0x47, 0x7a, 0xe1, 0xbe, 0xc4, 0xa0, 0x64, + 0xe1, 0x7d, 0xc5, 0x76, 0xff, 0x00, 0x16, 0xd8, 0xbf, 0x8e, 0x6e, 0xcb, + 0x63, 0x3b, 0x57, 0xa7, 0xd2, 0xb8, 0xf3, 0xb5, 0xc8, 0x0d, 0xca, 0xe3, + 0xa5, 0x79, 0x75, 0x1b, 0xe6, 0x67, 0x74, 0x12, 0xb1, 0x58, 0xf9, 0x0a, + 0xc0, 0x16, 0xde, 0x7f, 0x3a, 0xcd, 0xf1, 0x09, 0x07, 0x44, 0xb8, 0x23, + 0x8e, 0x2b, 0x52, 0x69, 0x62, 0xc1, 0x58, 0x80, 0x62, 0x3f, 0xbb, 0x59, + 0x3a, 0xee, 0xe3, 0xa2, 0x5c, 0x29, 0xe3, 0xe5, 0xcd, 0x2a, 0x7f, 0x1c, + 0x7d, 0x47, 0x3f, 0x85, 0x95, 0xbc, 0x2d, 0x1c, 0xa3, 0x4f, 0x32, 0x6c, + 0x05, 0x00, 0xec, 0x6b, 0x48, 0xb1, 0x24, 0x05, 0x5d, 0xd9, 0xef, 0x55, + 0x3c, 0x1f, 0x2c, 0x9f, 0xd9, 0xaf, 0x16, 0xd0, 0x72, 0xb8, 0x1c, 0xe2, + 0xa6, 0xdd, 0x2b, 0xe4, 0x01, 0xb0, 0x0a, 0xd2, 0xa5, 0xdd, 0x49, 0x13, + 0x1d, 0x12, 0x09, 0x4a, 0xae, 0xe2, 0xe7, 0x9c, 0x74, 0xac, 0x19, 0x4f, + 0xef, 0x3d, 0xab, 0x70, 0xc6, 0xa1, 0x58, 0x86, 0xdc, 0x71, 0xcd, 0x60, + 0x5c, 0x3e, 0xd9, 0x3e, 0x6a, 0xd2, 0x92, 0x22, 0x6c, 0xb5, 0x6c, 0xdc, + 0x0a, 0x9d, 0x48, 0x03, 0x15, 0x52, 0x06, 0x05, 0x72, 0x0f, 0x4a, 0xb4, + 0x9c, 0x8a, 0xa9, 0x6e, 0x24, 0x2a, 0x7d, 0xfc, 0x11, 0x56, 0x13, 0x6e, + 0x7a, 0x54, 0x00, 0x66, 0x43, 0x53, 0x01, 0x81, 0x59, 0xb2, 0x91, 0x2a, + 0x20, 0x3d, 0x49, 0xfc, 0xea, 0xdd, 0xb0, 0x6d, 0x80, 0x86, 0xfc, 0x2a, + 0xa4, 0x67, 0x24, 0xd5, 0xcb, 0x6c, 0x88, 0xd6, 0xb1, 0x91, 0xa2, 0xdc, + 0xbd, 0x0c, 0x92, 0x1c, 0x0d, 0xc3, 0x1f, 0x4a, 0xb3, 0x23, 0xb9, 0x81, + 0xb2, 0x54, 0x8c, 0x7a, 0x55, 0x48, 0x58, 0x30, 0xe3, 0xf3, 0xab, 0x2c, + 0x7f, 0x70, 0xff, 0x00, 0x4a, 0xe5, 0x7b, 0x9a, 0x9a, 0xb6, 0x93, 0xcb, + 0xe5, 0xae, 0x11, 0x7e, 0xb9, 0xad, 0x3b, 0x79, 0xe6, 0x18, 0xfd, 0xda, + 0x9f, 0xc6, 0xb3, 0x6c, 0x47, 0xee, 0xd7, 0xe9, 0x5a, 0x70, 0xb6, 0x00, + 0xe2, 0xa6, 0x23, 0x26, 0x92, 0xe6, 0x43, 0x0b, 0x03, 0x18, 0x19, 0x1e, + 0xb5, 0x62, 0xca, 0xe9, 0xd2, 0x25, 0xcc, 0x61, 0x86, 0x3f, 0xbd, 0x51, + 0x49, 0xf3, 0xc2, 0xc7, 0xda, 0xa4, 0xb6, 0x5c, 0xc0, 0x87, 0xda, 0xb6, + 0x48, 0x86, 0x5c, 0x8e, 0xe6, 0x52, 0x72, 0x23, 0x03, 0xfe, 0x05, 0x5a, + 0x16, 0x73, 0x4b, 0x23, 0x81, 0xb1, 0x57, 0x3d, 0xf3, 0x54, 0x23, 0x5c, + 0x9c, 0x03, 0x9a, 0xbf, 0x6a, 0xa5, 0x0a, 0xe0, 0xf3, 0x55, 0x1d, 0xd1, + 0x12, 0xd8, 0xd3, 0xd0, 0xee, 0x15, 0xec, 0x02, 0x14, 0x27, 0x6f, 0x19, + 0x03, 0xad, 0x5b, 0xb6, 0x31, 0x47, 0xe6, 0xef, 0x87, 0xef, 0x31, 0x20, + 0x63, 0xb5, 0x67, 0xe8, 0xa4, 0xc7, 0xa0, 0x86, 0xc0, 0xc8, 0x39, 0xad, + 0xbb, 0x48, 0xfc, 0xe6, 0xc2, 0x88, 0xc6, 0x39, 0xe6, 0xba, 0x1c, 0xaf, + 0x26, 0x44, 0x57, 0xba, 0x8b, 0x56, 0x6d, 0x6f, 0xb7, 0x98, 0xce, 0x31, + 0xcf, 0x1c, 0x57, 0xd3, 0xbf, 0x02, 0x6f, 0x6d, 0x34, 0x5f, 0x08, 0x00, + 0x93, 0x36, 0xd9, 0x5c, 0x92, 0x8d, 0xd0, 0x1a, 0xf9, 0xc0, 0x20, 0x48, + 0xa6, 0x88, 0x85, 0xdc, 0xa9, 0x9e, 0x07, 0xad, 0x7d, 0xa7, 0xfb, 0x2d, + 0xfc, 0x3f, 0xd2, 0xb5, 0xdf, 0x86, 0x56, 0x77, 0x97, 0x51, 0xc6, 0xf2, + 0x19, 0x1c, 0x72, 0xa0, 0x9e, 0x0d, 0x74, 0x52, 0x83, 0xa9, 0x78, 0xa3, + 0x39, 0x49, 0x52, 0xb4, 0x99, 0x4f, 0x57, 0xf1, 0x4c, 0x61, 0x60, 0x08, + 0x4b, 0xe6, 0x55, 0x3c, 0x0c, 0xd5, 0xb5, 0xf1, 0x0d, 0xe4, 0xa4, 0x2d, + 0xad, 0x9d, 0xc4, 0xcc, 0x7f, 0xbb, 0x19, 0xaf, 0x74, 0xb7, 0xf0, 0x26, + 0x87, 0x65, 0x1e, 0xd1, 0x6e, 0x84, 0x7a, 0x1c, 0x56, 0xd5, 0x96, 0x95, + 0xa7, 0xc4, 0x07, 0x97, 0x6d, 0x1e, 0xe1, 0xd0, 0x85, 0xcd, 0x74, 0x2c, + 0x2a, 0x7b, 0xb1, 0x3c, 0x5c, 0x96, 0xc8, 0xe0, 0x3e, 0x09, 0x6a, 0x57, + 0xd0, 0x5f, 0x6a, 0x11, 0xea, 0x76, 0xf2, 0x5a, 0xb4, 0xe5, 0x0c, 0x5e, + 0x60, 0xfb, 0xc0, 0x67, 0x3f, 0xce, 0xb0, 0x7f, 0x68, 0x4b, 0xe8, 0xa0, + 0xf1, 0x0d, 0xb0, 0x66, 0x18, 0xf2, 0x33, 0xfa, 0x9f, 0xf0, 0xaf, 0x6e, + 0x52, 0xa8, 0x30, 0xb1, 0x05, 0xfc, 0x31, 0x58, 0x3a, 0xf7, 0x81, 0x34, + 0x8f, 0x14, 0x4b, 0xe7, 0xea, 0x3a, 0x7c, 0x57, 0x13, 0x05, 0x0a, 0xaf, + 0x26, 0x4e, 0x05, 0x75, 0xca, 0x8a, 0x70, 0x50, 0x8f, 0x43, 0x92, 0x15, + 0x5c, 0x6a, 0x3a, 0x92, 0xea, 0x7c, 0x6b, 0xa9, 0x6b, 0x4a, 0x97, 0x71, + 0x95, 0x25, 0x80, 0x75, 0x20, 0x0f, 0xad, 0x7d, 0x93, 0xe1, 0x8b, 0xa1, + 0x77, 0xa5, 0x5a, 0x4c, 0xa7, 0x39, 0x8c, 0x7f, 0x2a, 0xc7, 0x4f, 0x84, + 0x7a, 0x0d, 0xa7, 0x2b, 0x63, 0x12, 0xae, 0x7f, 0x81, 0x00, 0xad, 0xad, + 0x2f, 0x4a, 0xb6, 0xd0, 0x62, 0xf2, 0xed, 0x5d, 0xbc, 0xbc, 0xfd, 0xc6, + 0x3b, 0xb1, 0x59, 0x47, 0x0f, 0xca, 0xb5, 0x2a, 0x75, 0xf9, 0xdd, 0xce, + 0x43, 0xf6, 0x92, 0x88, 0x7f, 0xc2, 0xa0, 0xd6, 0x30, 0x4a, 0x65, 0xa1, + 0xe5, 0x7a, 0xff, 0x00, 0xad, 0x5a, 0xf8, 0x33, 0x53, 0x8e, 0x18, 0x57, + 0x7c, 0x87, 0xcd, 0x3f, 0xed, 0x9c, 0xd7, 0xdf, 0xdf, 0x1b, 0xb4, 0x8d, + 0x43, 0xc6, 0x5f, 0x0d, 0xee, 0xf4, 0x9d, 0x2e, 0x25, 0x37, 0xb3, 0x49, + 0x1e, 0x04, 0xc7, 0x6a, 0xe0, 0x30, 0x24, 0xe7, 0xf0, 0xaf, 0x96, 0x2f, + 0xff, 0x00, 0x64, 0xef, 0x18, 0xea, 0x11, 0xa9, 0xbb, 0xb9, 0xb5, 0xb6, + 0x52, 0x39, 0x10, 0xb6, 0xf3, 0xf9, 0xf1, 0x5c, 0xf3, 0xc3, 0x54, 0x9c, + 0xbd, 0xdd, 0x8d, 0x61, 0x88, 0x84, 0x21, 0x69, 0x6e, 0x7e, 0x60, 0xfc, + 0x56, 0xb4, 0xfb, 0x6f, 0xc4, 0xcd, 0x77, 0xca, 0x18, 0x5f, 0xb4, 0x1e, + 0x17, 0xe8, 0x2b, 0x3f, 0x4d, 0xf0, 0x36, 0xaf, 0xad, 0x48, 0x91, 0xd9, + 0x59, 0xcd, 0x30, 0xed, 0x85, 0x38, 0xaf, 0xd2, 0x18, 0x7f, 0x63, 0x2d, + 0x1f, 0xc3, 0x77, 0xd3, 0x5f, 0x6a, 0x56, 0x51, 0xdf, 0xdc, 0xcc, 0xe6, + 0x47, 0x9d, 0xce, 0x5b, 0x3e, 0xd9, 0xae, 0x8f, 0x4e, 0xf8, 0x2b, 0x6a, + 0x8f, 0x8d, 0x3a, 0xcd, 0x55, 0x71, 0x81, 0xe6, 0x26, 0xc5, 0xfa, 0x66, + 0xbd, 0x58, 0xc7, 0x92, 0x29, 0x33, 0xce, 0x73, 0x72, 0x7a, 0x1f, 0x9e, + 0xbe, 0x1d, 0xf8, 0x0d, 0xac, 0xdc, 0xb8, 0xfb, 0x59, 0xfb, 0x29, 0xfe, + 0xee, 0x09, 0x35, 0xe9, 0xfe, 0x18, 0xf8, 0x29, 0x63, 0x60, 0x40, 0x9a, + 0x16, 0x9a, 0x5c, 0xf0, 0xce, 0xb9, 0x15, 0xf6, 0x44, 0xbf, 0x05, 0x2f, + 0x22, 0x68, 0xfe, 0xd3, 0x10, 0x86, 0x2e, 0xb8, 0x03, 0xfa, 0xd1, 0x3f, + 0x83, 0x34, 0xff, 0x00, 0x0e, 0x42, 0xcf, 0x70, 0xb1, 0xac, 0x63, 0x92, + 0xc1, 0x82, 0xe3, 0xeb, 0x9a, 0x99, 0x30, 0x47, 0xcf, 0xfa, 0x77, 0x80, + 0x65, 0x80, 0x22, 0xc3, 0x6c, 0xa0, 0x8f, 0x6a, 0xe9, 0xac, 0xf4, 0x38, + 0xf4, 0xd5, 0xcd, 0xd4, 0x23, 0x8e, 0xac, 0xc7, 0x6e, 0x2a, 0x7f, 0x88, + 0x1f, 0x1b, 0xfc, 0x29, 0xe0, 0xe4, 0x68, 0xad, 0x27, 0xfe, 0xd0, 0xbb, + 0x5c, 0x83, 0x1a, 0xaf, 0xdd, 0xfc, 0x6b, 0xe7, 0x2f, 0x19, 0x7c, 0x6c, + 0xd7, 0xfc, 0x71, 0x3b, 0x5b, 0x5a, 0x93, 0x6d, 0x68, 0x4f, 0x11, 0xc4, + 0x7f, 0x99, 0xaf, 0x3e, 0xae, 0x2a, 0x9d, 0x3e, 0xb7, 0x67, 0x7d, 0x2c, + 0x25, 0x4a, 0x9a, 0xec, 0x8f, 0x60, 0xf1, 0x97, 0xc5, 0xbd, 0x0f, 0xc2, + 0xb0, 0x34, 0x76, 0xb3, 0x0b, 0x8b, 0xc0, 0x31, 0xe5, 0xc7, 0xd0, 0x7d, + 0x4d, 0x78, 0x77, 0x8a, 0x7e, 0x25, 0x6b, 0xde, 0x35, 0x90, 0xa3, 0xca, + 0x60, 0xb3, 0xec, 0x8b, 0xc0, 0xff, 0x00, 0xeb, 0xd6, 0x34, 0x5e, 0x1f, + 0x91, 0x48, 0x96, 0xe9, 0xcc, 0x92, 0x37, 0x38, 0xf4, 0xab, 0x82, 0xd8, + 0x46, 0xbd, 0x30, 0x07, 0x41, 0x5e, 0x15, 0x6c, 0xc2, 0x53, 0x76, 0x47, + 0xb9, 0x47, 0x03, 0x0a, 0x7a, 0xdb, 0x52, 0x9c, 0x4b, 0xe5, 0x00, 0x39, + 0xf7, 0x6f, 0x5a, 0x8b, 0x52, 0x93, 0x31, 0xf1, 0x56, 0xde, 0x37, 0x91, + 0xba, 0x60, 0x55, 0x6b, 0xa8, 0x4b, 0x0c, 0x74, 0xae, 0x1f, 0x6c, 0xe4, + 0xee, 0xd9, 0xda, 0xa9, 0x58, 0xcd, 0xb5, 0x3e, 0x59, 0x38, 0xeb, 0xeb, + 0x57, 0x0c, 0x8e, 0x62, 0x23, 0xad, 0x45, 0x1d, 0xb3, 0x07, 0xe9, 0xc5, + 0x5b, 0x58, 0x09, 0x5c, 0x1e, 0xa7, 0xb5, 0x53, 0x98, 0x7b, 0x33, 0x25, + 0xd5, 0x98, 0x9c, 0xd5, 0x7f, 0xb2, 0x9c, 0xf0, 0xa4, 0xd6, 0xe8, 0xb3, + 0xe4, 0x92, 0x33, 0x4c, 0x78, 0x76, 0x83, 0xc5, 0x5c, 0x6b, 0x2b, 0xe8, + 0x1e, 0xcc, 0xab, 0x61, 0x0e, 0xd9, 0xe3, 0xf4, 0x53, 0x5e, 0x9f, 0xe0, + 0xcb, 0x95, 0x7d, 0x6a, 0xc8, 0x31, 0xf9, 0x7c, 0xc5, 0xce, 0x6b, 0xcd, + 0x50, 0x84, 0x71, 0x8e, 0x39, 0xae, 0xaf, 0x43, 0xb9, 0x6b, 0x4b, 0x98, + 0xa4, 0xce, 0x0a, 0xf2, 0x09, 0xae, 0xca, 0x32, 0xbd, 0x48, 0xb7, 0xdc, + 0xc2, 0xa5, 0x3f, 0x75, 0xa3, 0xa7, 0xf0, 0x47, 0x8b, 0x2e, 0x74, 0xa7, + 0x47, 0x13, 0x15, 0x1f, 0xef, 0x63, 0x15, 0xdf, 0x5d, 0xfc, 0x5b, 0xbf, + 0x86, 0x32, 0xf0, 0xdc, 0x6e, 0x38, 0xe4, 0x19, 0x0e, 0x0d, 0x78, 0x7c, + 0x33, 0x79, 0x38, 0xf9, 0xa9, 0xb7, 0x17, 0xcf, 0xb7, 0x1b, 0xf8, 0x3d, + 0xab, 0xd7, 0xa5, 0x98, 0x59, 0x58, 0xc2, 0xa6, 0x0a, 0x32, 0x77, 0x3a, + 0xaf, 0x1d, 0xf8, 0xde, 0xef, 0xc4, 0xd7, 0x22, 0x67, 0x65, 0x46, 0xe8, + 0x42, 0x13, 0xcf, 0xbd, 0x71, 0x17, 0x17, 0x46, 0x56, 0x2a, 0x49, 0xce, + 0x29, 0xef, 0x2f, 0x9a, 0xa3, 0x27, 0xad, 0x57, 0x70, 0xa1, 0xf3, 0xd6, + 0xbc, 0xec, 0x46, 0x2b, 0xda, 0x37, 0x73, 0xaa, 0x95, 0x05, 0x4d, 0x24, + 0x8a, 0x73, 0x2e, 0xe9, 0x3a, 0x8e, 0x69, 0x11, 0x08, 0x38, 0xa9, 0x66, + 0x45, 0x42, 0x1b, 0x3c, 0x77, 0xa7, 0x2e, 0xdd, 0xc0, 0xfe, 0xb5, 0xe5, + 0xb9, 0x68, 0x75, 0xf2, 0x92, 0x45, 0x1e, 0x57, 0x91, 0x9f, 0x51, 0x53, + 0x8b, 0x7f, 0x97, 0xde, 0x9d, 0x19, 0x18, 0x1c, 0x73, 0x56, 0x42, 0x96, + 0x1d, 0x30, 0x3f, 0x95, 0x71, 0xca, 0x4c, 0x69, 0x11, 0xd9, 0x83, 0x1b, + 0x60, 0xf2, 0x0d, 0x6d, 0x59, 0x37, 0x96, 0x32, 0x39, 0xac, 0x98, 0xd7, + 0x07, 0x9a, 0xd0, 0xb4, 0x97, 0x61, 0x03, 0xa8, 0x35, 0x8b, 0x93, 0xdc, + 0xab, 0x23, 0x5a, 0x3b, 0x9d, 0xe4, 0x02, 0x70, 0x7d, 0x6a, 0x1b, 0xc7, + 0x78, 0xc1, 0xc7, 0x7e, 0xe2, 0x98, 0x71, 0xd4, 0x70, 0x7d, 0x29, 0x1a, + 0x62, 0x01, 0xcf, 0xcc, 0xb5, 0x9f, 0x31, 0x7c, 0xa6, 0x4f, 0xde, 0x7c, + 0x30, 0xab, 0xa9, 0x00, 0x49, 0x51, 0x55, 0x83, 0x8c, 0x03, 0x4d, 0x78, + 0x43, 0xf2, 0xbc, 0x8f, 0x43, 0x49, 0x09, 0x68, 0xdb, 0xa6, 0x47, 0xa5, + 0x69, 0xed, 0x5b, 0x8b, 0x88, 0xb9, 0x55, 0xee, 0x5d, 0xb9, 0x89, 0x4a, + 0x63, 0x85, 0x35, 0x4d, 0x2d, 0x98, 0x30, 0xc8, 0xab, 0x42, 0x71, 0x20, + 0xc6, 0x32, 0x3d, 0x0d, 0x4f, 0x12, 0xa1, 0xe5, 0x0e, 0x3f, 0xd9, 0x35, + 0xca, 0x9b, 0x45, 0xd8, 0x58, 0xa1, 0xf9, 0x46, 0x05, 0x48, 0x96, 0x9b, + 0xb2, 0x54, 0x1a, 0x92, 0x26, 0x4e, 0xeb, 0xb6, 0xac, 0xa8, 0xc1, 0xe3, + 0x3f, 0x5a, 0xc9, 0x96, 0x87, 0xda, 0xc0, 0xd1, 0xe3, 0x8f, 0xc4, 0x56, + 0x9d, 0xbc, 0x9e, 0x59, 0xe7, 0x39, 0xf5, 0xaa, 0x51, 0x4a, 0xcb, 0xfc, + 0x21, 0x87, 0xb7, 0x5a, 0xd0, 0xb7, 0xd9, 0x29, 0xeb, 0x8f, 0xad, 0x67, + 0x2d, 0xb5, 0x3a, 0x22, 0xd5, 0xcd, 0x7b, 0x3b, 0x93, 0x81, 0xca, 0x9f, + 0xaf, 0x15, 0xb1, 0x6e, 0xc9, 0x26, 0x03, 0x20, 0x1e, 0xe2, 0xb9, 0xf8, + 0x6c, 0x32, 0x37, 0x29, 0x22, 0xb5, 0x2d, 0x99, 0xe3, 0x5e, 0x1c, 0x16, + 0x03, 0xad, 0x60, 0xae, 0x9e, 0x87, 0x5b, 0xb3, 0x5a, 0x9d, 0x2e, 0x98, + 0x91, 0x05, 0x23, 0xe6, 0x41, 0x9f, 0xad, 0x6f, 0x58, 0xc0, 0x9e, 0x6a, + 0x1f, 0x31, 0x48, 0xcf, 0x43, 0xc1, 0xae, 0x4a, 0xca, 0xed, 0x80, 0x19, + 0x61, 0x9e, 0xfc, 0x56, 0xd6, 0x9b, 0x76, 0x82, 0xe1, 0x49, 0xfd, 0x0d, + 0x7a, 0xb8, 0x79, 0xa4, 0xd5, 0xd1, 0xc1, 0x5a, 0x37, 0xd8, 0xed, 0xe7, + 0xb7, 0x46, 0x83, 0x95, 0xe3, 0xd7, 0xad, 0x53, 0x83, 0x46, 0xb7, 0xb8, + 0x61, 0xce, 0xde, 0x7e, 0x94, 0x92, 0xdf, 0x01, 0x10, 0x20, 0xe0, 0x7b, + 0xd5, 0xed, 0x2e, 0xf8, 0xc9, 0xb5, 0x42, 0x86, 0x19, 0xea, 0x0d, 0x7d, + 0x2d, 0x3a, 0xf1, 0x4c, 0xf1, 0x27, 0x46, 0x52, 0x2e, 0x45, 0xe0, 0x84, + 0x9d, 0x32, 0x80, 0x9f, 0xd6, 0x92, 0xdb, 0xc2, 0xaf, 0xa6, 0x5f, 0xc7, + 0x70, 0xd0, 0x6f, 0x55, 0x3d, 0x36, 0xd7, 0xa6, 0xe8, 0x16, 0xf0, 0xb5, + 0xaa, 0x79, 0xa3, 0x69, 0x23, 0xd2, 0xb4, 0x35, 0x9b, 0x2b, 0x43, 0xa5, + 0x4d, 0xb4, 0x8d, 0xc1, 0x7b, 0x8a, 0xf4, 0xdd, 0x5b, 0xa4, 0x8e, 0x07, + 0x4b, 0x95, 0xb6, 0x79, 0x7e, 0xa1, 0x7b, 0x6c, 0xd2, 0x26, 0x21, 0x91, + 0x19, 0x58, 0x72, 0xa3, 0xb5, 0x66, 0xdf, 0x4d, 0x0d, 0xc1, 0x64, 0x37, + 0x6e, 0x55, 0xb8, 0x2a, 0xd5, 0xaf, 0xa8, 0x28, 0x69, 0x62, 0x89, 0x5a, + 0x34, 0x1b, 0x0b, 0x33, 0x3a, 0xd6, 0x15, 0xe2, 0x79, 0x02, 0x52, 0xc1, + 0x1b, 0x6a, 0xee, 0x05, 0x57, 0x8c, 0x56, 0x17, 0x66, 0x6d, 0x19, 0x3a, + 0x92, 0x2b, 0x5e, 0x40, 0x50, 0xab, 0x3f, 0x99, 0x1a, 0xa0, 0x27, 0xd0, + 0xd4, 0x5a, 0xac, 0x77, 0x8d, 0xb8, 0x08, 0xa3, 0x38, 0xff, 0x00, 0x6f, + 0xff, 0x00, 0xad, 0x56, 0xae, 0x89, 0x6b, 0xbb, 0x3e, 0x38, 0xf3, 0x22, + 0x6f, 0xa7, 0x5a, 0xb3, 0x7f, 0x0f, 0x2c, 0x7a, 0x53, 0x92, 0x4d, 0x23, + 0x35, 0x74, 0xd9, 0xc2, 0xde, 0xdb, 0xdc, 0xe4, 0x93, 0x14, 0x64, 0xfb, + 0x3f, 0xff, 0x00, 0x5a, 0xb9, 0x4d, 0x59, 0x67, 0xb7, 0xbe, 0xb6, 0x3e, + 0x50, 0x2e, 0x77, 0x71, 0xbf, 0xaf, 0x15, 0xe8, 0x1a, 0x95, 0xbe, 0x39, + 0x5f, 0xc7, 0x15, 0xc4, 0xf8, 0x81, 0x4f, 0xf6, 0xb5, 0x96, 0x39, 0xf9, + 0x5f, 0xfa, 0x56, 0x69, 0x22, 0x64, 0xce, 0x63, 0x59, 0x96, 0xe4, 0x23, + 0x13, 0x02, 0x73, 0xfe, 0xdd, 0x79, 0x9e, 0xbf, 0x3c, 0xf9, 0x7f, 0xdd, + 0x28, 0xff, 0x00, 0x81, 0x57, 0xa7, 0xeb, 0x8d, 0x98, 0xd8, 0x77, 0xc5, + 0x79, 0x7f, 0x88, 0x81, 0xcb, 0xe6, 0xb3, 0x92, 0x04, 0xcf, 0x3c, 0xbe, + 0x92, 0x46, 0xbb, 0x90, 0xed, 0x50, 0x71, 0xeb, 0x54, 0xdd, 0xe4, 0xc9, + 0xfb, 0xa2, 0xac, 0x5d, 0x31, 0xfb, 0x64, 0xbf, 0x4a, 0xac, 0xe4, 0x91, + 0x5a, 0x45, 0x09, 0xb2, 0x09, 0x3c, 0xcf, 0xef, 0x8f, 0xc0, 0x55, 0x75, + 0x2c, 0x17, 0x3b, 0xb1, 0xf4, 0xab, 0x12, 0x9c, 0x03, 0x55, 0x57, 0x3e, + 0x58, 0xcd, 0x6e, 0x96, 0x84, 0x36, 0x36, 0x43, 0x91, 0xc9, 0x3f, 0x9d, + 0x40, 0xc1, 0x43, 0x0e, 0x06, 0x2a, 0x67, 0x91, 0x14, 0x8d, 0xcc, 0xa3, + 0xf1, 0xaa, 0x92, 0xdd, 0x42, 0x18, 0x11, 0x20, 0x27, 0xda, 0xb7, 0x8a, + 0x7d, 0x0c, 0xa4, 0xc9, 0xf2, 0x38, 0xa5, 0xeb, 0x83, 0xe9, 0x54, 0x1f, + 0x55, 0x8c, 0x70, 0x01, 0x38, 0xaa, 0xd2, 0xeb, 0x0e, 0xc0, 0xaa, 0xae, + 0x33, 0xde, 0xb5, 0x54, 0xe4, 0xfa, 0x18, 0x39, 0xa4, 0x74, 0x30, 0x11, + 0x2d, 0xfc, 0x23, 0x38, 0xe7, 0xad, 0x74, 0x8a, 0x76, 0x1e, 0xbb, 0x48, + 0x38, 0xe0, 0xf5, 0xaf, 0x39, 0xd3, 0xaf, 0x64, 0x97, 0x51, 0xb7, 0x05, + 0x8e, 0x37, 0x62, 0xbb, 0xdb, 0x79, 0x4a, 0x02, 0x0f, 0xce, 0x3d, 0xeb, + 0x97, 0x13, 0x4d, 0xc5, 0xa3, 0x5a, 0x13, 0x52, 0xbb, 0x2f, 0xbb, 0x11, + 0x1b, 0xfb, 0x8a, 0xc3, 0xd2, 0xa5, 0x36, 0xfa, 0xe6, 0x19, 0x73, 0xb9, + 0x48, 0xe3, 0xb5, 0x6c, 0x07, 0x89, 0x90, 0xe4, 0xe1, 0x40, 0xe4, 0x66, + 0xb1, 0x74, 0xb6, 0x8c, 0xf8, 0x98, 0x08, 0xcf, 0xcb, 0xb4, 0xd6, 0x54, + 0xfe, 0x09, 0x0e, 0xa3, 0xf7, 0xe2, 0x75, 0xaa, 0x52, 0x49, 0x95, 0xd0, + 0x80, 0xd8, 0xa9, 0x71, 0x2a, 0x31, 0x2c, 0x03, 0x83, 0xe9, 0xda, 0xa3, + 0x16, 0xea, 0xdc, 0xa9, 0xc3, 0x7e, 0xb5, 0x32, 0x3c, 0x90, 0x9f, 0x9b, + 0xe6, 0x1e, 0xfc, 0x57, 0x25, 0xce, 0x86, 0x8e, 0xef, 0xe0, 0x8d, 0xea, + 0xe9, 0xdf, 0x15, 0x3c, 0x39, 0x72, 0xec, 0xaa, 0x23, 0xb9, 0x53, 0xf3, + 0x1e, 0xa7, 0xa6, 0x3f, 0x1c, 0xd7, 0xeb, 0x06, 0x85, 0x69, 0x7f, 0x6d, + 0xe1, 0xad, 0x26, 0x32, 0xab, 0x66, 0x57, 0x1e, 0x74, 0x44, 0xee, 0x38, + 0x23, 0xee, 0x83, 0x5f, 0x93, 0x5f, 0x07, 0x74, 0xa9, 0xb5, 0xff, 0x00, + 0x8a, 0x1e, 0x1b, 0xb7, 0xb3, 0x82, 0x5b, 0x89, 0xfe, 0xd9, 0x1b, 0x18, + 0x90, 0x64, 0xe0, 0x30, 0x24, 0xfe, 0x42, 0xbf, 0x60, 0xde, 0x11, 0x2c, + 0x11, 0x09, 0x33, 0x1a, 0xa6, 0x1b, 0xdf, 0x22, 0x8f, 0x23, 0xaa, 0x9f, + 0xc1, 0x7f, 0x33, 0xc6, 0x3e, 0x2f, 0xd8, 0xdb, 0x58, 0xd9, 0x6a, 0x3a, + 0xd6, 0xa2, 0x52, 0x2d, 0x32, 0xde, 0x2b, 0xc4, 0x9d, 0xd9, 0x80, 0xf9, + 0x99, 0x53, 0x00, 0x7e, 0x46, 0xbf, 0x33, 0x3c, 0x31, 0x67, 0x6d, 0xac, + 0xf8, 0xde, 0xd2, 0xd5, 0x1c, 0xc1, 0x69, 0x73, 0x72, 0x10, 0x31, 0x3f, + 0x75, 0x0b, 0xff, 0x00, 0x85, 0x7e, 0x9d, 0xfe, 0xd0, 0xcb, 0xa5, 0x6b, + 0x5e, 0x03, 0xd5, 0x6d, 0x2f, 0x93, 0xee, 0x5b, 0xdc, 0x5c, 0x02, 0x9f, + 0x77, 0x6a, 0x60, 0x12, 0x47, 0x73, 0xcd, 0x7e, 0x63, 0x78, 0x04, 0xac, + 0x7e, 0x3a, 0xd1, 0xd9, 0x06, 0x53, 0xed, 0x51, 0xe0, 0x1f, 0x4d, 0xe2, + 0xba, 0xf4, 0x54, 0xce, 0x3b, 0x37, 0x5a, 0xcd, 0x1f, 0xb7, 0x9f, 0x0d, + 0xf4, 0x4b, 0x6f, 0x0b, 0xf8, 0x3b, 0x4b, 0xd2, 0xec, 0xe5, 0x79, 0x6d, + 0x6d, 0x6d, 0x63, 0x8e, 0x26, 0x95, 0xf7, 0x31, 0x01, 0x7d, 0x7b, 0xd7, + 0x48, 0x80, 0x3b, 0xb3, 0x67, 0x90, 0x41, 0xac, 0xef, 0x0e, 0x9d, 0xfa, + 0x34, 0x23, 0xfe, 0x99, 0xaf, 0x18, 0xf6, 0xad, 0x28, 0x90, 0x07, 0x6c, + 0xae, 0xd3, 0xb8, 0x72, 0xbc, 0x57, 0x6c, 0x12, 0x51, 0x48, 0xc2, 0x69, + 0x46, 0x4d, 0x23, 0xe2, 0x3f, 0xf8, 0x2a, 0x64, 0xc0, 0xf8, 0x4b, 0xc1, + 0x70, 0x85, 0xc7, 0xfa, 0x7c, 0xec, 0x49, 0xff, 0x00, 0xae, 0x63, 0xfc, + 0x6b, 0xf3, 0x83, 0xc3, 0x6c, 0x17, 0xc5, 0x56, 0x7f, 0xf5, 0xd8, 0x7f, + 0x3a, 0xfd, 0x17, 0xff, 0x00, 0x82, 0xa4, 0xcf, 0xbb, 0xc2, 0xde, 0x0e, + 0xff, 0x00, 0x62, 0xfe, 0xe1, 0x79, 0x1c, 0x9c, 0x46, 0xb5, 0xf9, 0xc5, + 0xe1, 0xa7, 0x2d, 0xe2, 0x9b, 0x3f, 0x98, 0x2f, 0xef, 0x94, 0x64, 0xfd, + 0x6b, 0x29, 0x6b, 0x2b, 0x9c, 0x30, 0xda, 0x3e, 0xa7, 0xec, 0xaf, 0xc2, + 0xbd, 0x55, 0x20, 0xf8, 0x5b, 0xe1, 0x7f, 0xf9, 0x65, 0x22, 0xe9, 0xb0, + 0x9d, 0xac, 0x72, 0x18, 0x6d, 0x14, 0xba, 0xbe, 0xb3, 0x64, 0x75, 0x4b, + 0x69, 0x64, 0x95, 0x5b, 0x0c, 0x0e, 0xd4, 0x6c, 0x63, 0xaf, 0x6a, 0xa9, + 0xe0, 0x0f, 0x0c, 0xb8, 0xf8, 0x77, 0xe1, 0x84, 0xb2, 0xd5, 0x61, 0x49, + 0xff, 0x00, 0xb3, 0x61, 0x62, 0x8e, 0xc3, 0x2c, 0x4a, 0x0e, 0x31, 0x4c, + 0xd5, 0xbc, 0x25, 0xab, 0xdb, 0x5c, 0xc7, 0x3f, 0x90, 0x26, 0x93, 0x72, + 0xe1, 0xb0, 0x39, 0x6f, 0x6a, 0xea, 0x74, 0x2f, 0xab, 0x38, 0x55, 0xe3, + 0x26, 0x75, 0xba, 0x46, 0xb5, 0x1d, 0xad, 0xb9, 0x68, 0xa6, 0x46, 0x42, + 0x73, 0xc7, 0x50, 0x2b, 0xa9, 0xd3, 0xf5, 0xe5, 0x11, 0x8c, 0x44, 0xb3, + 0x64, 0x73, 0xf3, 0x64, 0xd7, 0x9b, 0xa5, 0x8c, 0x1a, 0x5e, 0xa4, 0x0c, + 0xfa, 0x79, 0x69, 0x66, 0x03, 0x2c, 0x99, 0xc7, 0x3d, 0x41, 0x1e, 0xb5, + 0xd4, 0xc8, 0x6d, 0x6d, 0x6d, 0xd5, 0xec, 0xdd, 0xe0, 0x21, 0x80, 0x62, + 0xd9, 0xc0, 0x1f, 0x4a, 0xc2, 0x14, 0x25, 0x45, 0xde, 0x0e, 0xcc, 0x9a, + 0xd3, 0x72, 0x5a, 0x9d, 0x0d, 0xff, 0x00, 0x8c, 0x6c, 0xec, 0x1a, 0x18, + 0xde, 0x25, 0x56, 0x76, 0x39, 0x56, 0xc7, 0x00, 0x02, 0x6a, 0xee, 0x8f, + 0xab, 0x41, 0xab, 0xe8, 0xf6, 0x97, 0x85, 0x0a, 0xb4, 0xb0, 0x2c, 0xc4, + 0x2f, 0x4e, 0x46, 0x71, 0x5e, 0x5b, 0xe3, 0x55, 0xbd, 0xb9, 0xfb, 0x3c, + 0xfb, 0x63, 0x92, 0xda, 0x30, 0xed, 0xbf, 0x6e, 0xf1, 0xf7, 0x4f, 0x7e, + 0xd5, 0xb3, 0xe0, 0xfb, 0x86, 0x87, 0xc3, 0x3a, 0x1b, 0x19, 0x82, 0xa1, + 0xb1, 0x89, 0x9d, 0x09, 0xe3, 0x04, 0x75, 0xcd, 0x74, 0xc2, 0xbd, 0x7a, + 0x7e, 0xf4, 0xa4, 0xd9, 0xcd, 0x7f, 0x72, 0xe7, 0xa3, 0x2c, 0x49, 0x7b, + 0x61, 0x23, 0x6d, 0xda, 0xaf, 0x19, 0x52, 0xad, 0xe8, 0x45, 0x64, 0xdc, + 0x68, 0x22, 0x3d, 0x5a, 0xe6, 0xe7, 0x24, 0x65, 0x11, 0x97, 0xdb, 0x19, + 0xcd, 0x5c, 0xb7, 0xd5, 0xad, 0x67, 0xd3, 0xd9, 0x22, 0x9d, 0x64, 0x75, + 0x43, 0xc2, 0x74, 0x1c, 0x54, 0xb7, 0x6e, 0x6e, 0x19, 0xbc, 0xab, 0x94, + 0x0f, 0xb1, 0x77, 0x46, 0x4f, 0x3d, 0xf9, 0x3f, 0xe7, 0xb5, 0x76, 0x4e, + 0xa7, 0xb5, 0x8b, 0xba, 0xb9, 0xd0, 0x92, 0xf6, 0x66, 0x34, 0x72, 0x91, + 0x72, 0x01, 0x63, 0x80, 0x0e, 0x71, 0xd2, 0xad, 0x09, 0x36, 0x9d, 0xd9, + 0xdc, 0x3a, 0x8a, 0xaf, 0x3d, 0xbf, 0xd9, 0xd0, 0x3b, 0xed, 0x24, 0xf0, + 0x4a, 0x9f, 0xe7, 0x4c, 0x82, 0x66, 0x81, 0x31, 0x85, 0x38, 0x1f, 0x76, + 0xbc, 0xbe, 0x57, 0x05, 0xb1, 0x8a, 0x7d, 0x19, 0x9f, 0x3c, 0xf9, 0xd7, + 0x84, 0x93, 0x31, 0x04, 0xc2, 0x71, 0x1e, 0x78, 0x0b, 0xba, 0xaf, 0xcd, + 0xab, 0x25, 0xbe, 0xd8, 0xd4, 0x2b, 0x6e, 0x00, 0x8e, 0x78, 0xfa, 0x56, + 0x45, 0xfd, 0x9a, 0xcd, 0xac, 0x45, 0x35, 0xd9, 0xdb, 0x02, 0x43, 0x92, + 0x17, 0xae, 0x73, 0xd3, 0x34, 0x89, 0x3a, 0x49, 0x7a, 0x42, 0xc0, 0xac, + 0xa0, 0x9f, 0x2e, 0x43, 0xd8, 0xf6, 0x15, 0xaa, 0x9b, 0x8d, 0x3b, 0xad, + 0xce, 0xfa, 0x53, 0x84, 0x62, 0xdb, 0x3f, 0x2e, 0xff, 0x00, 0xe0, 0xa1, + 0xf2, 0x99, 0xbe, 0x3c, 0xde, 0xbb, 0x00, 0xbf, 0xbb, 0x5c, 0x01, 0xf4, + 0x15, 0xe0, 0xbf, 0x0d, 0xe4, 0x09, 0xe3, 0x7f, 0x0f, 0x2f, 0x73, 0xa8, + 0x40, 0x07, 0xfd, 0xfc, 0x5a, 0xf6, 0xcf, 0xf8, 0x28, 0x00, 0x9e, 0x3f, + 0x8e, 0x17, 0x7e, 0x76, 0xd2, 0xe5, 0x01, 0xca, 0x8c, 0x0a, 0xf0, 0x6f, + 0x01, 0x36, 0xef, 0x1a, 0xf8, 0x78, 0x13, 0xb7, 0xfe, 0x26, 0x16, 0xfc, + 0x9e, 0xdf, 0xbc, 0x5a, 0x98, 0x6a, 0xe2, 0xd9, 0xd7, 0x26, 0xe5, 0x1b, + 0xf9, 0x1f, 0xd0, 0x5d, 0x94, 0x85, 0x63, 0x8e, 0x32, 0xe1, 0x4b, 0x28, + 0x01, 0x7d, 0x6a, 0x5d, 0x88, 0x6e, 0xe4, 0x1b, 0x06, 0xe4, 0x51, 0x86, + 0xf6, 0x35, 0xcb, 0xd8, 0xcb, 0x34, 0x17, 0xc8, 0xc8, 0xe6, 0x50, 0x42, + 0x8e, 0x09, 0x20, 0xf1, 0xd4, 0x57, 0x4e, 0xdb, 0xc5, 0xc4, 0x8c, 0x00, + 0xda, 0xea, 0x39, 0x27, 0x9a, 0xef, 0x9c, 0x14, 0x6c, 0xd3, 0xfb, 0xcc, + 0x63, 0x07, 0x0d, 0xfa, 0xa3, 0xcd, 0xff, 0x00, 0x68, 0xed, 0x67, 0x54, + 0xd2, 0x7e, 0x12, 0xf8, 0x92, 0x6d, 0x16, 0xcd, 0xef, 0x2f, 0xce, 0x9f, + 0x3a, 0x08, 0xe2, 0x4d, 0xc4, 0x29, 0x43, 0x96, 0xea, 0x3a, 0x0e, 0x6b, + 0xf0, 0x83, 0x57, 0x91, 0xa5, 0xbf, 0xb8, 0x2e, 0x30, 0xec, 0x4e, 0x41, + 0xf5, 0xcd, 0x7e, 0xfa, 0x7c, 0x59, 0x9e, 0x48, 0xbe, 0x1d, 0x78, 0x90, + 0xab, 0x2a, 0x91, 0xa6, 0x5d, 0x63, 0x2b, 0x9f, 0xf9, 0x66, 0x6b, 0xf0, + 0x2f, 0xc4, 0x25, 0xbf, 0xb5, 0xae, 0xf9, 0xe7, 0x7b, 0x7f, 0x3a, 0xf3, + 0xe6, 0xbd, 0xfb, 0xdc, 0xf4, 0x21, 0x1b, 0x53, 0xbd, 0xcf, 0xa5, 0xfe, + 0x0f, 0x5b, 0xf9, 0x16, 0x36, 0x2a, 0xcb, 0x9c, 0x5b, 0x44, 0x0f, 0xe7, + 0x5e, 0xcd, 0xae, 0x4f, 0xa7, 0xcd, 0x65, 0x71, 0x77, 0x69, 0x1a, 0x1b, + 0xbb, 0x30, 0x51, 0x55, 0xba, 0x8c, 0xe3, 0x35, 0xe4, 0xff, 0x00, 0xb3, + 0xfd, 0xa5, 0xd6, 0xa1, 0xe1, 0x78, 0x4d, 0xda, 0xac, 0x52, 0xa0, 0x50, + 0x92, 0x93, 0xc3, 0xa8, 0xe7, 0x6f, 0xd6, 0xbd, 0xab, 0x4e, 0xf0, 0xd5, + 0x97, 0x89, 0x74, 0xad, 0x52, 0x39, 0x21, 0x64, 0x3b, 0x8a, 0x96, 0x53, + 0x86, 0x3f, 0x8d, 0x12, 0x8b, 0x5b, 0x85, 0x36, 0x9a, 0xd0, 0xf8, 0xbf, + 0xe2, 0xbe, 0x07, 0x8f, 0x75, 0x18, 0xc1, 0xcf, 0x96, 0x55, 0x09, 0xf7, + 0x00, 0x57, 0x1e, 0xfc, 0x2b, 0x1c, 0x80, 0x3d, 0x4d, 0x74, 0x3e, 0x3e, + 0x9b, 0xce, 0xf1, 0xa6, 0xa8, 0x98, 0xc3, 0x47, 0x2b, 0x27, 0x5c, 0x93, + 0x83, 0x8c, 0x93, 0xeb, 0x5c, 0xe3, 0x59, 0xaf, 0x26, 0x46, 0xc8, 0xf4, + 0x35, 0xe4, 0xcf, 0xe2, 0x67, 0x74, 0x76, 0x23, 0x95, 0x84, 0x51, 0xa9, + 0x40, 0x19, 0x8f, 0x00, 0x56, 0x76, 0xbf, 0x6e, 0xcf, 0xa5, 0x4e, 0xd3, + 0x3e, 0x30, 0x99, 0xc2, 0xf0, 0x33, 0x5a, 0x32, 0x48, 0x83, 0x02, 0x25, + 0xdd, 0x8f, 0x4a, 0xc8, 0xf1, 0x4b, 0x49, 0x26, 0x8f, 0x3b, 0x67, 0x6a, + 0x8c, 0x70, 0x29, 0xd2, 0xbf, 0x3c, 0x7d, 0x42, 0x7f, 0x0b, 0x21, 0xf0, + 0x7c, 0x9f, 0xb9, 0xea, 0x7a, 0x56, 0x92, 0x90, 0x41, 0xdd, 0xd2, 0xb2, + 0x3c, 0x2a, 0x25, 0x5b, 0x53, 0x26, 0xcc, 0xae, 0x3a, 0x8a, 0xd3, 0x2c, + 0xc7, 0x85, 0x03, 0x9e, 0xa4, 0xd6, 0x95, 0x57, 0xef, 0x19, 0x10, 0x7e, + 0xea, 0x1b, 0x70, 0xe3, 0x69, 0x27, 0xe5, 0xe3, 0xee, 0x8a, 0xc4, 0xb8, + 0x5d, 0xd2, 0x9a, 0xd6, 0xb8, 0x98, 0x6e, 0x3d, 0x1c, 0xe3, 0x07, 0x23, + 0x8a, 0xe6, 0x9b, 0x5a, 0x85, 0xa7, 0x61, 0x82, 0x06, 0x71, 0x5b, 0x51, + 0x83, 0x7b, 0x11, 0x39, 0x25, 0xb9, 0x76, 0x15, 0x04, 0x03, 0x8a, 0xb0, + 0x80, 0xf6, 0x62, 0x3d, 0xaa, 0xa5, 0xbd, 0xdc, 0x2e, 0x06, 0x1c, 0x66, + 0xad, 0xa6, 0x3a, 0x83, 0x9a, 0xd2, 0x57, 0x25, 0x3e, 0xc4, 0x8b, 0xbc, + 0x37, 0x0c, 0x2a, 0xc0, 0xf3, 0x00, 0xfb, 0xa0, 0xfe, 0x35, 0x14, 0x3f, + 0x7d, 0xbb, 0xf1, 0x56, 0x40, 0xf4, 0xac, 0x1b, 0x2d, 0x02, 0xc9, 0x81, + 0x82, 0xac, 0x3e, 0x82, 0xad, 0x5b, 0xce, 0xbb, 0x14, 0x13, 0x8c, 0x7a, + 0xd4, 0x20, 0x54, 0xd6, 0xca, 0x36, 0x0a, 0xc6, 0x56, 0xb1, 0x6a, 0xe5, + 0xf4, 0xb8, 0x56, 0x00, 0x6f, 0x04, 0x0e, 0x82, 0xa7, 0x69, 0x33, 0x13, + 0x60, 0xf1, 0x8a, 0xa6, 0x8b, 0x53, 0xec, 0x5d, 0x87, 0x80, 0x6b, 0x9d, + 0xda, 0xfa, 0x9a, 0x26, 0x6f, 0xd8, 0xbf, 0xee, 0x94, 0x7b, 0x56, 0xad, + 0xb8, 0x2d, 0x8c, 0xd7, 0x37, 0x67, 0x08, 0xd8, 0xa7, 0x18, 0xad, 0x8b, + 0x7c, 0x28, 0x18, 0x07, 0xf3, 0xa8, 0x8a, 0x57, 0x2a, 0xe6, 0xab, 0x90, + 0x21, 0x7f, 0xa5, 0x59, 0xb1, 0x5d, 0xf6, 0xb1, 0xe0, 0x76, 0xac, 0xdd, + 0xb9, 0x89, 0xb3, 0x9e, 0x9e, 0xb5, 0x6e, 0xc2, 0xdc, 0x35, 0xb2, 0x36, + 0x4f, 0x23, 0xa0, 0x35, 0xab, 0x26, 0xe6, 0x9c, 0x68, 0x41, 0xc9, 0x18, + 0xab, 0xb6, 0xe9, 0x8f, 0x9b, 0x23, 0x8f, 0x5a, 0xce, 0x8a, 0xd5, 0x46, + 0x37, 0x64, 0xfe, 0x35, 0xa7, 0x0d, 0xbc, 0x42, 0x16, 0x3b, 0x01, 0x20, + 0x55, 0xc1, 0x26, 0xc8, 0x96, 0xc5, 0x8f, 0x0f, 0xb1, 0x97, 0x4c, 0x31, + 0x18, 0xdd, 0xf8, 0xe8, 0x07, 0x06, 0xb5, 0x61, 0x48, 0x5e, 0x07, 0x0a, + 0xae, 0x92, 0xa7, 0xcb, 0xb3, 0xa1, 0xac, 0x8f, 0x0c, 0xdc, 0x5c, 0xc5, + 0xa6, 0xf9, 0x80, 0x23, 0x21, 0x3c, 0x7b, 0x56, 0xdd, 0x93, 0x5e, 0xae, + 0xe2, 0xac, 0x9f, 0x31, 0xc9, 0xc8, 0xad, 0x9a, 0xb4, 0x99, 0x31, 0x7e, + 0xea, 0x36, 0x6d, 0xcb, 0xcc, 0x24, 0x6d, 0x92, 0x6e, 0x64, 0xc7, 0xcc, + 0xb8, 0xe9, 0x5f, 0x72, 0x7e, 0xc7, 0x1a, 0x8a, 0x4d, 0xf0, 0xd1, 0xad, + 0xe4, 0x50, 0x9e, 0x45, 0xc3, 0x61, 0xd8, 0xf0, 0x72, 0x07, 0x18, 0xaf, + 0x86, 0x6d, 0xa4, 0xbe, 0x00, 0x96, 0x91, 0x70, 0x07, 0x6e, 0x2b, 0xea, + 0xaf, 0xd9, 0xd7, 0xc4, 0xba, 0x7e, 0x97, 0xe1, 0x48, 0x16, 0xea, 0xdd, + 0x25, 0x9d, 0xa4, 0x24, 0xb3, 0x74, 0x6f, 0x4c, 0xd7, 0x6e, 0x1a, 0xdc, + 0xf7, 0x39, 0xeb, 0x7c, 0x28, 0xfa, 0xda, 0x3b, 0xcb, 0x42, 0x58, 0xab, + 0xa1, 0x2b, 0xc1, 0xda, 0x6a, 0xd0, 0xbb, 0x03, 0xee, 0x45, 0x23, 0x7d, + 0x17, 0x8a, 0xe1, 0x74, 0xbf, 0x1a, 0x5a, 0xbc, 0x23, 0x69, 0x86, 0x20, + 0x06, 0x7a, 0x80, 0x00, 0xad, 0xdd, 0x3b, 0xc6, 0x9a, 0x7d, 0xf4, 0x24, + 0xc1, 0x38, 0x79, 0x14, 0x85, 0x65, 0x4f, 0x98, 0x83, 0xf8, 0x57, 0xae, + 0x92, 0x7b, 0x1e, 0x74, 0xae, 0x8e, 0x8d, 0x2e, 0x59, 0xc9, 0x12, 0x26, + 0xd0, 0x7a, 0x31, 0x3c, 0x8a, 0x97, 0x32, 0x70, 0x0c, 0x99, 0x1d, 0xb6, + 0x8a, 0xc8, 0x17, 0x57, 0x37, 0x63, 0x11, 0x5a, 0x48, 0x3d, 0x0c, 0xbf, + 0x20, 0xa9, 0xed, 0x6d, 0xb5, 0x21, 0x20, 0x69, 0x25, 0x86, 0x24, 0xcf, + 0x28, 0x32, 0xf9, 0x1f, 0xa6, 0x2a, 0xbd, 0x49, 0xe6, 0xb1, 0x66, 0x56, + 0x64, 0x63, 0xf2, 0xb3, 0x8f, 0x73, 0xc5, 0x46, 0xd7, 0x50, 0x42, 0x99, + 0x62, 0x91, 0x1a, 0x73, 0xd8, 0x28, 0x6d, 0xd2, 0x4f, 0x23, 0x8e, 0xbb, + 0x77, 0x60, 0x53, 0xe3, 0x8e, 0xde, 0x1c, 0x95, 0x8d, 0x54, 0x9f, 0x41, + 0xd6, 0x95, 0x85, 0x73, 0x12, 0xf7, 0x52, 0x9d, 0xcb, 0x47, 0x15, 0x9c, + 0x93, 0x1e, 0x82, 0x43, 0xf2, 0xa7, 0xe7, 0x58, 0x6d, 0xa6, 0x6b, 0x2c, + 0xce, 0x45, 0xe4, 0x71, 0x44, 0xdf, 0xf2, 0xc0, 0x0d, 0xff, 0x00, 0xa9, + 0xad, 0xfd, 0x77, 0x5c, 0xb0, 0xd2, 0x2d, 0xda, 0x6b, 0x9b, 0xc8, 0xad, + 0x10, 0x75, 0x67, 0x60, 0x05, 0x78, 0x67, 0xc4, 0x5f, 0xda, 0xd7, 0xc1, + 0x1e, 0x0e, 0x82, 0x45, 0x6d, 0x44, 0x4f, 0x74, 0x01, 0xdb, 0x1c, 0x03, + 0x2a, 0xc7, 0xeb, 0x59, 0x4a, 0x4a, 0x1a, 0xb6, 0x6b, 0x08, 0x4a, 0x7f, + 0x0a, 0x3d, 0x0e, 0xe7, 0x47, 0xd3, 0xe0, 0x2a, 0xf7, 0x11, 0xb0, 0x94, + 0x70, 0x65, 0x66, 0xf3, 0x39, 0xfa, 0x76, 0xac, 0x1f, 0x16, 0x78, 0x83, + 0x4c, 0xf0, 0x7e, 0x9a, 0x2f, 0xaf, 0x6f, 0xed, 0xbe, 0xc7, 0xdc, 0x86, + 0x1f, 0x97, 0xd6, 0xbe, 0x1e, 0xf8, 0x97, 0xfb, 0x73, 0x6b, 0x9a, 0xc9, + 0x9e, 0x1d, 0x19, 0x16, 0xc2, 0xdd, 0xb8, 0x0e, 0x7e, 0xfd, 0x7c, 0xe9, + 0xe2, 0x0f, 0x88, 0x1e, 0x27, 0xf1, 0xac, 0xee, 0x6e, 0x6f, 0xae, 0xae, + 0x77, 0x9e, 0x77, 0xb9, 0xdb, 0xf9, 0x57, 0x97, 0x5b, 0x31, 0xa7, 0x0f, + 0x87, 0x53, 0xd2, 0xa5, 0x97, 0x54, 0x9f, 0xc5, 0xa1, 0xf6, 0x97, 0xc4, + 0x8f, 0xdb, 0x5b, 0x43, 0xf0, 0xd7, 0x9d, 0x0e, 0x82, 0x1a, 0xf6, 0x73, + 0x90, 0x0e, 0x7e, 0x41, 0xf5, 0xaf, 0x92, 0xbe, 0x22, 0x7c, 0x7c, 0xf1, + 0x4f, 0xc4, 0xad, 0x4a, 0x79, 0x1a, 0x76, 0x86, 0x29, 0x0f, 0x10, 0xdb, + 0xe5, 0x51, 0x47, 0xa5, 0x72, 0xf6, 0x3e, 0x0a, 0xb9, 0xbb, 0x22, 0x4b, + 0xa2, 0xc7, 0xd8, 0xd7, 0x57, 0xa6, 0xf8, 0x5e, 0x1b, 0x44, 0xf9, 0x62, + 0xfc, 0x71, 0x5f, 0x37, 0x89, 0xcd, 0x9c, 0xb4, 0x4f, 0xee, 0x3e, 0x87, + 0x0f, 0x96, 0x46, 0x1a, 0xdb, 0xef, 0x38, 0x8b, 0x4f, 0x0a, 0xdc, 0xdf, + 0xbf, 0x9b, 0x76, 0xe4, 0x82, 0x73, 0x8a, 0xe9, 0xf4, 0xfd, 0x05, 0x2c, + 0xd0, 0x04, 0x40, 0xa0, 0x77, 0xae, 0x89, 0x6d, 0xd6, 0xdc, 0x63, 0x6e, + 0x4f, 0xa5, 0x39, 0xa1, 0x67, 0xc6, 0x00, 0xfe, 0x82, 0xbc, 0x19, 0xe2, + 0xe7, 0x37, 0xa9, 0xec, 0xc7, 0x0d, 0x18, 0x98, 0x57, 0x36, 0xe0, 0x00, + 0x00, 0x24, 0xfa, 0x9a, 0xa6, 0xf6, 0xdb, 0x79, 0x7f, 0xca, 0xba, 0x3b, + 0x98, 0x96, 0x2e, 0x7e, 0xf3, 0x56, 0x63, 0x5b, 0xb4, 0xb2, 0x12, 0x47, + 0x4e, 0xd4, 0x95, 0x56, 0xc6, 0xe9, 0xa5, 0xb1, 0x94, 0x2d, 0x8c, 0xa4, + 0x05, 0x5c, 0x93, 0xd0, 0x01, 0x55, 0x6f, 0x6c, 0x84, 0x6d, 0xb5, 0xf3, + 0x91, 0xd5, 0x6b, 0x75, 0x8f, 0x90, 0x47, 0x96, 0x70, 0xc3, 0xf8, 0x87, + 0x6a, 0xa9, 0x25, 0xb9, 0x99, 0xcb, 0x31, 0xc9, 0x3c, 0xf3, 0x5a, 0x2a, + 0x96, 0x64, 0x72, 0x5c, 0xc6, 0x4b, 0x5d, 0xc7, 0x85, 0xff, 0x00, 0xeb, + 0x54, 0xd1, 0xd9, 0xe0, 0xf3, 0xc9, 0xab, 0xe4, 0x2a, 0x29, 0x03, 0xaf, + 0xf3, 0xa8, 0x62, 0x32, 0x16, 0x2b, 0xc0, 0x1d, 0xeb, 0x4f, 0x68, 0xd9, + 0x1c, 0xa8, 0xac, 0x6d, 0xf0, 0x4e, 0x3a, 0x55, 0x0b, 0x95, 0xf9, 0x8e, + 0x3b, 0x56, 0xb5, 0xc7, 0xcb, 0x1f, 0x1d, 0x4d, 0x65, 0xdc, 0x90, 0xab, + 0xc7, 0x5a, 0xde, 0x9b, 0xbb, 0x21, 0xa2, 0x94, 0x51, 0x17, 0xb9, 0x50, + 0x7d, 0x6b, 0x6b, 0xcc, 0xf2, 0xc7, 0x07, 0x04, 0x55, 0x5b, 0x08, 0x41, + 0x6d, 0xd8, 0xe9, 0x53, 0xcb, 0xcb, 0x91, 0x9a, 0xec, 0x85, 0x4b, 0x54, + 0x5e, 0x46, 0x52, 0x8d, 0xd0, 0xdd, 0x98, 0x60, 0x33, 0x9c, 0xd3, 0x1e, + 0x02, 0x30, 0x4f, 0x39, 0xed, 0x52, 0xa1, 0xce, 0xd1, 0xdc, 0x0c, 0xd4, + 0xae, 0x4f, 0xcb, 0x9e, 0x73, 0x58, 0x39, 0xb4, 0xf4, 0x34, 0xb6, 0x86, + 0x66, 0xcc, 0x49, 0xe9, 0xed, 0x4d, 0x95, 0x08, 0x15, 0x66, 0x61, 0x87, + 0xdd, 0x8e, 0x86, 0xa3, 0x65, 0x2c, 0x41, 0xed, 0x5a, 0x73, 0x5d, 0x8a, + 0xda, 0x15, 0xde, 0x22, 0xd1, 0xf3, 0xf4, 0xa4, 0x8d, 0x76, 0x90, 0x0f, + 0xd2, 0xae, 0x98, 0xb3, 0x91, 0xeb, 0x51, 0x88, 0x32, 0x0e, 0x78, 0xc7, + 0x7a, 0xcf, 0x9c, 0xab, 0x16, 0x20, 0x87, 0x7c, 0x5b, 0x80, 0xe9, 0xd6, + 0xac, 0xc4, 0x36, 0xf5, 0xa8, 0xac, 0x9f, 0x1e, 0xfe, 0xa2, 0xaf, 0x88, + 0x82, 0x9c, 0x63, 0xe5, 0x3c, 0x83, 0x5c, 0xd3, 0x96, 0xa2, 0xb1, 0x5d, + 0x94, 0x86, 0xc9, 0xe4, 0x54, 0xb1, 0x63, 0x24, 0x8e, 0x94, 0xe6, 0x8f, + 0x6f, 0xc8, 0x7a, 0x1e, 0x86, 0x9a, 0x10, 0xc6, 0x4e, 0x7a, 0x54, 0x5e, + 0xe0, 0x5b, 0x8d, 0xf7, 0xe0, 0x77, 0xec, 0x69, 0x59, 0x49, 0xc8, 0xe8, + 0xd5, 0x58, 0x31, 0x51, 0xb8, 0x72, 0x2a, 0x68, 0xee, 0x56, 0x44, 0x03, + 0xa8, 0xf5, 0xee, 0x2a, 0x1f, 0x91, 0x43, 0x76, 0xb2, 0x37, 0x1c, 0x1a, + 0x9e, 0x22, 0x92, 0x75, 0xe1, 0xa8, 0xe1, 0x86, 0x0f, 0x3e, 0x84, 0x53, + 0x1e, 0x32, 0x84, 0x13, 0xf9, 0xd4, 0x5c, 0xab, 0x13, 0x9b, 0x61, 0xc6, + 0x78, 0xf7, 0x14, 0x2c, 0x6c, 0x84, 0x7a, 0x7a, 0xd2, 0x41, 0x39, 0x4e, + 0x0f, 0x22, 0xaf, 0x44, 0x12, 0x75, 0x21, 0x5b, 0x07, 0xd2, 0xa2, 0xed, + 0x0e, 0xc4, 0x71, 0x12, 0x47, 0x1c, 0x8f, 0x43, 0x53, 0xc0, 0xe5, 0x08, + 0xda, 0x48, 0xf6, 0x35, 0x19, 0xb7, 0x68, 0xf9, 0x6f, 0xcc, 0x52, 0x84, + 0x27, 0xa1, 0xa5, 0x71, 0xd8, 0xd2, 0x86, 0xf1, 0x57, 0xfd, 0x62, 0x7f, + 0xc0, 0x85, 0x5e, 0x82, 0x74, 0x6e, 0x41, 0x0d, 0x9f, 0x5e, 0xb5, 0x8e, + 0xb8, 0xc0, 0xce, 0x40, 0xab, 0x4b, 0x08, 0x18, 0xdb, 0xd7, 0xd4, 0x71, + 0x56, 0x94, 0x5e, 0x81, 0x76, 0x8d, 0xcb, 0x79, 0x48, 0x07, 0x6b, 0x15, + 0x3f, 0x98, 0xab, 0x0b, 0x3b, 0x16, 0xe7, 0x6b, 0x0f, 0x6a, 0xc3, 0x86, + 0x63, 0x03, 0x02, 0xcc, 0x76, 0xfa, 0x55, 0xa3, 0x70, 0xa4, 0x70, 0x73, + 0xec, 0xdc, 0x1a, 0x6e, 0x9e, 0xa5, 0x2a, 0xae, 0xc6, 0xed, 0xb5, 0xc8, + 0x0d, 0x8c, 0x91, 0x8f, 0xca, 0xb5, 0x2d, 0x2e, 0xca, 0xcc, 0xbb, 0x5c, + 0x1f, 0xd2, 0xb9, 0x48, 0x2e, 0x1c, 0x00, 0x32, 0x47, 0xd7, 0xa5, 0x5a, + 0x82, 0xe8, 0x89, 0x07, 0xf4, 0xa7, 0x18, 0xf2, 0x97, 0xce, 0xa5, 0xa3, + 0x3d, 0x0a, 0x7b, 0xe7, 0x16, 0xc3, 0x9e, 0x7d, 0x45, 0x4b, 0xa4, 0x6a, + 0xd2, 0x46, 0xac, 0x04, 0x8b, 0x80, 0x7b, 0x9a, 0xe4, 0xe4, 0xd4, 0xb7, + 0x5b, 0xe0, 0x39, 0x52, 0x29, 0xda, 0x76, 0xa5, 0x20, 0x2c, 0xbb, 0xc1, + 0x1e, 0xf5, 0xdb, 0x19, 0x7b, 0xc8, 0xc7, 0x97, 0x4b, 0x1f, 0x42, 0xf8, + 0x63, 0xc4, 0x6f, 0x35, 0xa2, 0x2f, 0xde, 0x0b, 0xdc, 0x35, 0x33, 0xc7, + 0xbf, 0x13, 0x2c, 0xfc, 0x25, 0xa6, 0xc4, 0x75, 0x03, 0x2a, 0x8b, 0x86, + 0xd8, 0xbb, 0x39, 0x3f, 0x5a, 0xf3, 0x6f, 0x0d, 0x6a, 0xf2, 0x45, 0x6e, + 0x4e, 0x14, 0xe3, 0xdf, 0x15, 0xcb, 0x7c, 0x6a, 0x78, 0xbc, 0x47, 0xa0, + 0xab, 0x5c, 0x23, 0x89, 0x2d, 0x0f, 0x98, 0xa5, 0x1b, 0x07, 0xdc, 0x57, + 0xbd, 0x0a, 0xf6, 0xa7, 0xa6, 0xe7, 0x97, 0x52, 0x9f, 0x34, 0xf5, 0xd8, + 0xeb, 0x9b, 0xe3, 0x6e, 0x89, 0x71, 0x24, 0x48, 0x65, 0x63, 0x18, 0x01, + 0x7e, 0x68, 0xfa, 0x01, 0xea, 0x6a, 0x3b, 0xef, 0x89, 0xda, 0x0d, 0xe4, + 0x73, 0xa8, 0xb9, 0x8e, 0x3f, 0x34, 0x6d, 0xf9, 0x8f, 0x6f, 0xca, 0xbe, + 0x4a, 0xd5, 0x9a, 0xec, 0x5d, 0x33, 0x69, 0xce, 0xd0, 0xc0, 0x4e, 0x44, + 0x72, 0x49, 0xb8, 0xaf, 0xb6, 0x68, 0xb4, 0xd4, 0xb5, 0x34, 0x4c, 0xc9, + 0x36, 0x1b, 0xd3, 0xad, 0x71, 0xbc, 0x5d, 0x58, 0xab, 0xdd, 0x31, 0x7d, + 0x5a, 0x8c, 0x9d, 0xb5, 0x47, 0xd2, 0x5e, 0x30, 0xf8, 0xa9, 0xa5, 0xe8, + 0x96, 0x02, 0xf2, 0xd2, 0xe2, 0x1b, 0xb9, 0x22, 0x31, 0x7e, 0xe8, 0x3f, + 0x27, 0x19, 0xcd, 0x72, 0x33, 0xfe, 0xd2, 0xed, 0x75, 0xf7, 0xb4, 0xf8, + 0x7f, 0xef, 0xef, 0xff, 0x00, 0x5a, 0xbc, 0x62, 0xf6, 0xf2, 0xe6, 0xf5, + 0x0c, 0x73, 0x38, 0x65, 0x3d, 0x45, 0x66, 0x35, 0x9a, 0x28, 0xe0, 0x72, + 0x29, 0x7d, 0x6e, 0xa4, 0xd7, 0x60, 0x58, 0x6a, 0x50, 0x7a, 0xab, 0x9e, + 0xd5, 0x71, 0xf1, 0xfe, 0x29, 0xd7, 0x1f, 0xd9, 0xb1, 0x8f, 0x71, 0x3f, + 0xff, 0x00, 0x5a, 0xb9, 0xdd, 0x43, 0xe2, 0xea, 0x5c, 0x5e, 0xc7, 0x3f, + 0xd8, 0xd3, 0x6c, 0x6a, 0xc3, 0x6f, 0x9b, 0xcf, 0x3e, 0xf8, 0xaf, 0x31, + 0x92, 0x0e, 0x0d, 0x52, 0x96, 0xd8, 0x9e, 0xb4, 0xe3, 0x5a, 0xa7, 0xf3, + 0x7e, 0x02, 0x95, 0x1a, 0x3f, 0xca, 0x77, 0x9a, 0xbf, 0xc4, 0xf1, 0x72, + 0x9f, 0x25, 0xba, 0x47, 0xc6, 0x39, 0x7c, 0xff, 0x00, 0x4a, 0xe1, 0x75, + 0xaf, 0x17, 0x9b, 0x92, 0xc4, 0x84, 0x1f, 0x4a, 0xa3, 0x35, 0xa9, 0x3c, + 0x13, 0xc5, 0x67, 0x5e, 0x58, 0x29, 0x07, 0xb9, 0xae, 0x98, 0x4b, 0x99, + 0xfb, 0xcc, 0xe6, 0x9d, 0x38, 0x25, 0xee, 0xc4, 0xc5, 0xbb, 0xd5, 0x98, + 0xdc, 0x3b, 0x82, 0xbc, 0xf6, 0xc5, 0x54, 0x93, 0x58, 0x90, 0xae, 0x33, + 0xf9, 0x0a, 0xb5, 0x73, 0xa7, 0x0c, 0x9e, 0x2b, 0x3a, 0x6b, 0x52, 0x84, + 0xfa, 0x57, 0xaf, 0x0e, 0x46, 0x8f, 0x32, 0x71, 0x92, 0x7a, 0x11, 0xcb, + 0xa8, 0xca, 0xdd, 0xcd, 0x54, 0x7b, 0xb9, 0x49, 0xe4, 0x9c, 0x7d, 0x6a, + 0x63, 0x1a, 0x81, 0x51, 0x98, 0xfd, 0x06, 0x6b, 0xae, 0x2a, 0x2b, 0xa1, + 0xcb, 0x2e, 0x66, 0x40, 0xf2, 0x3b, 0x73, 0x9a, 0x84, 0xfc, 0xe3, 0xbd, + 0x5a, 0x68, 0x8f, 0x34, 0xcf, 0x27, 0xe6, 0xe4, 0xd6, 0xc9, 0xa3, 0x17, + 0x16, 0xca, 0xfb, 0x3f, 0x2f, 0x7a, 0x40, 0x07, 0x38, 0xef, 0x56, 0x76, + 0x05, 0xeb, 0x93, 0x4d, 0x23, 0x1c, 0x85, 0xab, 0x52, 0x32, 0x70, 0x17, + 0x4c, 0x42, 0xb7, 0xf0, 0x9c, 0x74, 0x39, 0xae, 0xe6, 0xd2, 0x51, 0x9e, + 0x7a, 0xe7, 0xa8, 0xae, 0x22, 0x26, 0x28, 0xc1, 0xb1, 0x8c, 0x77, 0xad, + 0xab, 0x3d, 0x51, 0x90, 0x7e, 0xf0, 0xf0, 0x7f, 0x88, 0x57, 0x2d, 0x78, + 0xb9, 0xea, 0x69, 0x4d, 0xf2, 0x1d, 0x35, 0xc1, 0x5d, 0x8c, 0x7d, 0xab, + 0x27, 0x40, 0x7d, 0xde, 0x20, 0x0d, 0xc0, 0xc2, 0x1f, 0xc6, 0xa5, 0xb8, + 0xbc, 0x0f, 0x6c, 0x4a, 0x9c, 0xe4, 0x75, 0x15, 0x0f, 0x85, 0x1e, 0x09, + 0xb5, 0x57, 0x57, 0x03, 0x3b, 0x78, 0xcd, 0x72, 0xa8, 0xf2, 0xd2, 0x93, + 0x2d, 0xca, 0xf5, 0x63, 0x63, 0xb5, 0x52, 0x37, 0x30, 0x95, 0x70, 0xbd, + 0x9a, 0xae, 0xc4, 0xbb, 0x42, 0xe1, 0xfc, 0xc4, 0x3e, 0xbc, 0xd5, 0x25, + 0xca, 0x4f, 0xb0, 0xb6, 0xf8, 0xd8, 0x71, 0x9e, 0xd4, 0xf8, 0x25, 0x4d, + 0xcc, 0x8a, 0xdc, 0x03, 0xd3, 0xd2, 0xbc, 0xab, 0x5c, 0xf4, 0x51, 0xec, + 0x5f, 0xb2, 0xb5, 0xd3, 0xd8, 0xfc, 0x78, 0xf0, 0xbc, 0x90, 0x8e, 0x44, + 0xcd, 0xc7, 0xfc, 0x01, 0xab, 0xf5, 0x2e, 0x0d, 0x59, 0x6f, 0x6e, 0x25, + 0xb3, 0x6d, 0xde, 0x64, 0x76, 0xeb, 0x2c, 0x92, 0x1e, 0x98, 0x6c, 0xf4, + 0xf7, 0xf9, 0x4d, 0x7e, 0x56, 0xfe, 0xcc, 0x4f, 0x8f, 0x8e, 0x1e, 0x19, + 0x0a, 0x7e, 0x6f, 0x38, 0xe3, 0xeb, 0xb0, 0xd7, 0xea, 0x6e, 0x97, 0x15, + 0x90, 0x11, 0xea, 0x7f, 0x32, 0x4b, 0x7b, 0x0c, 0x71, 0xec, 0x73, 0xd4, + 0x2e, 0x48, 0x18, 0xfc, 0x4d, 0x26, 0x8e, 0xfa, 0x5f, 0x05, 0x8f, 0x19, + 0xf8, 0xa9, 0x24, 0x13, 0xfc, 0x3d, 0xd4, 0xe4, 0x81, 0x1a, 0x38, 0x3f, + 0xb1, 0x2f, 0x8a, 0x86, 0x39, 0x38, 0xc8, 0xc7, 0x35, 0xf9, 0xc9, 0xf0, + 0xed, 0x56, 0x5f, 0x1d, 0x68, 0xaa, 0x78, 0x53, 0x75, 0x16, 0x49, 0xff, + 0x00, 0x7c, 0x57, 0xe9, 0x77, 0xc7, 0xbb, 0x06, 0xba, 0xd1, 0x75, 0xd8, + 0x11, 0xd6, 0xd6, 0x16, 0xd1, 0xee, 0xc0, 0x63, 0xf2, 0xa8, 0xc9, 0x15, + 0xf9, 0xc9, 0xf0, 0x57, 0x4c, 0x83, 0x52, 0xf8, 0xa5, 0xe1, 0xeb, 0x5b, + 0x96, 0xdd, 0x0b, 0xdd, 0x22, 0xb9, 0x5e, 0xfc, 0xd7, 0x6f, 0xd8, 0x5e, + 0xbf, 0xe4, 0x70, 0xff, 0x00, 0xcb, 0xef, 0xeb, 0xbb, 0x3f, 0x6e, 0xfc, + 0x3f, 0xb6, 0x3d, 0x3a, 0x05, 0x52, 0x08, 0xf2, 0xd7, 0x1f, 0x95, 0x69, + 0xab, 0xb3, 0x33, 0x11, 0xea, 0x05, 0x65, 0xf8, 0x7c, 0xaf, 0xf6, 0x2d, + 0xb7, 0x00, 0x81, 0x18, 0x03, 0x3d, 0x7a, 0x56, 0x94, 0x38, 0x01, 0xb1, + 0x91, 0x9e, 0xfd, 0x6b, 0xbe, 0x2f, 0x44, 0x8e, 0x3a, 0xab, 0xde, 0x67, + 0xc2, 0x7f, 0xf0, 0x54, 0x8b, 0x9d, 0xde, 0x1b, 0xf0, 0x94, 0x40, 0x0d, + 0x8b, 0x7f, 0x71, 0x93, 0xdf, 0x3b, 0x16, 0xbf, 0x3a, 0xbc, 0x20, 0x43, + 0x78, 0xbe, 0xc1, 0x48, 0xcf, 0xef, 0xd7, 0xaf, 0xd6, 0xbf, 0x45, 0xff, + 0x00, 0xe0, 0xaa, 0x36, 0xe2, 0x1f, 0x0c, 0x78, 0x3e, 0x45, 0x43, 0x97, + 0xbf, 0x9f, 0x2f, 0x9e, 0xbf, 0xbb, 0x5e, 0xd5, 0xf9, 0xcb, 0xe0, 0x9e, + 0x7c, 0x6d, 0xa6, 0x81, 0xce, 0x6e, 0x50, 0x7e, 0xb5, 0x8b, 0xb7, 0x36, + 0x87, 0x15, 0x15, 0xee, 0xc6, 0xdd, 0xcf, 0xd8, 0x09, 0xae, 0xf4, 0xfb, + 0x7f, 0x86, 0xbe, 0x18, 0xbd, 0xb7, 0xbe, 0x5b, 0x6d, 0x5a, 0x3d, 0x2e, + 0xdb, 0xc9, 0x18, 0xc6, 0x70, 0x83, 0x3f, 0xd7, 0x9a, 0xe2, 0xad, 0x7e, + 0x21, 0x6b, 0x16, 0x5a, 0xdd, 0xad, 0xe5, 0xe5, 0xc3, 0x5f, 0x24, 0x52, + 0x89, 0x0c, 0x25, 0xf1, 0xbb, 0x00, 0xf7, 0xed, 0x5a, 0x3e, 0x21, 0xb6, + 0xbe, 0x6f, 0x08, 0xf8, 0x3e, 0xd9, 0xed, 0x85, 0xc5, 0xb4, 0x1a, 0x74, + 0x2d, 0xe6, 0x46, 0xb9, 0xc6, 0x54, 0x70, 0x4f, 0xe1, 0xd2, 0xb9, 0xeb, + 0xcd, 0x26, 0x52, 0xbb, 0xe0, 0x81, 0xd4, 0x30, 0x23, 0xe6, 0x4c, 0x83, + 0xc1, 0xaf, 0x42, 0x10, 0x9a, 0xd5, 0x9e, 0x5b, 0x9c, 0x94, 0x9a, 0xf3, + 0x3b, 0x7b, 0x0f, 0x8a, 0x9a, 0xc6, 0xb2, 0x35, 0x2d, 0x7d, 0x63, 0xb6, + 0xb6, 0xd2, 0xad, 0x8c, 0x69, 0x24, 0x05, 0xfe, 0x65, 0x27, 0xba, 0xfa, + 0xd6, 0xee, 0x99, 0xaf, 0xea, 0x53, 0xdd, 0xc1, 0x28, 0xbe, 0x59, 0x21, + 0xba, 0x05, 0xa3, 0x47, 0x18, 0x0d, 0xec, 0x1a, 0xbc, 0x73, 0x41, 0xd3, + 0x35, 0x17, 0xf0, 0x9e, 0xb7, 0xa7, 0x2c, 0x6c, 0xad, 0x33, 0xa9, 0x11, + 0x1f, 0xe3, 0xc6, 0x79, 0xaf, 0x43, 0xf8, 0x3d, 0x61, 0x79, 0xe2, 0x2f, + 0x0f, 0xcd, 0xa2, 0xcc, 0xa5, 0x67, 0xb2, 0x60, 0xf1, 0xce, 0xe7, 0x05, + 0x3d, 0x00, 0xfa, 0x56, 0xea, 0x32, 0x96, 0xdb, 0x94, 0xa6, 0xa4, 0x9d, + 0xcd, 0xfd, 0x37, 0xc6, 0x5a, 0xbc, 0xfa, 0xdd, 0xde, 0x93, 0x71, 0x14, + 0x70, 0xed, 0x8e, 0x52, 0x12, 0x44, 0x0c, 0xa4, 0x85, 0x38, 0x06, 0xae, + 0xe9, 0x9e, 0x39, 0xd4, 0xf4, 0xdb, 0x2d, 0x02, 0xd2, 0x0d, 0x32, 0xca, + 0xe5, 0x1a, 0xc9, 0x15, 0xcc, 0xc9, 0xc8, 0x23, 0x20, 0x81, 0x8e, 0xdc, + 0x74, 0xaa, 0x7a, 0x0c, 0x72, 0xbf, 0x8c, 0x6f, 0x21, 0xbe, 0x0d, 0x2d, + 0xfd, 0xac, 0x32, 0x2b, 0x7f, 0x74, 0xe1, 0x4f, 0x4a, 0x65, 0xfe, 0xba, + 0xba, 0x65, 0x87, 0x87, 0xe1, 0x09, 0x18, 0x79, 0x6d, 0x11, 0xc6, 0x17, + 0x24, 0x3e, 0x4d, 0x65, 0x39, 0xc9, 0x46, 0xd6, 0x07, 0x2b, 0x45, 0xf2, + 0x9d, 0x35, 0xdf, 0x8c, 0xf5, 0xe8, 0xb4, 0x99, 0x2e, 0x85, 0x8e, 0x9b, + 0x6a, 0x8d, 0x16, 0x44, 0x9b, 0x0f, 0xc9, 0x91, 0xec, 0x6a, 0xf5, 0xcf, + 0x8c, 0x6f, 0xa1, 0xf1, 0x34, 0xb6, 0x71, 0xdb, 0xc1, 0x74, 0xc6, 0xdd, + 0x1c, 0x34, 0x48, 0x7a, 0x73, 0xd7, 0x9a, 0xe1, 0xfc, 0x3d, 0xe3, 0x08, + 0xe5, 0xf3, 0x74, 0xdb, 0xb2, 0x92, 0xac, 0xa8, 0x62, 0x31, 0x37, 0x5f, + 0xba, 0x79, 0xae, 0xb2, 0xdb, 0x56, 0xb6, 0xd2, 0x7c, 0x4b, 0x71, 0x16, + 0x40, 0x0f, 0x0c, 0x58, 0xdb, 0xc8, 0xcf, 0x35, 0x8c, 0x6a, 0xce, 0x11, + 0x72, 0x9a, 0x33, 0x73, 0x6e, 0x26, 0xcd, 0xf6, 0xbb, 0x71, 0x12, 0x28, + 0x99, 0xa0, 0x8d, 0x98, 0x73, 0x1e, 0xd2, 0x79, 0xf4, 0xeb, 0x49, 0xa7, + 0xf8, 0xa1, 0x6e, 0x24, 0x10, 0xcb, 0x1a, 0x02, 0x57, 0x92, 0x8b, 0x90, + 0x3e, 0xb5, 0xc6, 0x78, 0xe2, 0xfa, 0x25, 0xd5, 0x6c, 0xff, 0x00, 0x7c, + 0xa3, 0x79, 0xf9, 0x76, 0xf5, 0x24, 0xfb, 0x54, 0x3e, 0x46, 0xa3, 0xa3, + 0xdb, 0xc7, 0x3c, 0x62, 0x77, 0x2e, 0xfb, 0x88, 0xc7, 0x41, 0xdf, 0xf0, + 0xa2, 0x5c, 0xd3, 0xa7, 0xcc, 0x81, 0x34, 0xb7, 0x3b, 0x6b, 0x8d, 0x62, + 0x2b, 0xcd, 0x42, 0x6b, 0x6b, 0x79, 0x17, 0x22, 0x11, 0x9d, 0xd1, 0xee, + 0x55, 0xe4, 0xd4, 0x1a, 0x8e, 0xa3, 0x73, 0x09, 0x6f, 0xb1, 0xcc, 0xa9, + 0x1c, 0x6b, 0xf3, 0x05, 0x51, 0xc9, 0xae, 0x37, 0x48, 0xd6, 0xa3, 0x93, + 0x5c, 0x9e, 0x75, 0x52, 0x16, 0x68, 0x80, 0x62, 0x46, 0x30, 0x72, 0x7a, + 0xd6, 0x9d, 0xc5, 0xcd, 0xd5, 0xe0, 0x9e, 0x0b, 0x28, 0x5e, 0xe6, 0x6d, + 0xb9, 0x3e, 0x5f, 0x3c, 0x56, 0x33, 0xf6, 0x90, 0x87, 0x2a, 0x7a, 0xb3, + 0x19, 0xb7, 0x7d, 0x0f, 0xcc, 0x8f, 0xdb, 0xde, 0xf5, 0xef, 0x3e, 0x34, + 0x5c, 0xb4, 0x85, 0x99, 0xf6, 0x0c, 0x97, 0x3d, 0x78, 0xaf, 0x0c, 0xf0, + 0x0b, 0xed, 0xf1, 0xaf, 0x87, 0x49, 0x19, 0x02, 0xfe, 0x0e, 0x3d, 0x7f, + 0x78, 0xb5, 0xec, 0xff, 0x00, 0xb7, 0x23, 0x39, 0xf8, 0xb1, 0x29, 0x90, + 0x05, 0x7d, 0x98, 0x22, 0xbc, 0x4b, 0xc0, 0x84, 0xff, 0x00, 0xc2, 0x63, + 0xa0, 0x63, 0x96, 0x17, 0xd0, 0x60, 0x7f, 0xdb, 0x45, 0xaa, 0x8e, 0xe8, + 0xf7, 0x1a, 0xb5, 0x35, 0xe9, 0xfa, 0x1f, 0xbf, 0xd0, 0x3b, 0x3a, 0xdb, + 0x4b, 0x0c, 0x60, 0xe0, 0x29, 0x39, 0xed, 0xc5, 0x6e, 0xb8, 0x06, 0x4e, + 0x47, 0x61, 0x91, 0x58, 0x96, 0xb7, 0x93, 0x58, 0x69, 0x36, 0xf8, 0xb7, + 0xdf, 0x26, 0xc5, 0x24, 0x1e, 0x02, 0xd6, 0xae, 0xf6, 0x69, 0xa4, 0x62, + 0xac, 0x46, 0xd1, 0xd0, 0x77, 0xae, 0xfa, 0xb3, 0xe6, 0x49, 0x3d, 0xce, + 0x3c, 0x34, 0x65, 0x6e, 0x66, 0x72, 0x3f, 0x18, 0x94, 0x0f, 0x86, 0xfe, + 0x24, 0x20, 0x71, 0xfd, 0x99, 0x75, 0xc7, 0xfd, 0xb3, 0x35, 0xf8, 0x0d, + 0xe2, 0x67, 0x23, 0x58, 0xbb, 0xda, 0x7f, 0x8d, 0xbf, 0x9d, 0x7e, 0xfd, + 0xfc, 0x5b, 0x47, 0x9f, 0xe1, 0xbf, 0x89, 0x36, 0x85, 0xdc, 0xda, 0x65, + 0xca, 0x85, 0x66, 0xea, 0x4c, 0x6d, 0x8a, 0xfc, 0x04, 0xf1, 0x3a, 0x34, + 0x7a, 0xdd, 0xe2, 0x38, 0xc3, 0x2b, 0xb0, 0x38, 0xfa, 0xd7, 0x9f, 0x3f, + 0x89, 0x1e, 0xcc, 0x2f, 0xec, 0xbe, 0x67, 0xd4, 0x1f, 0x01, 0xb5, 0x19, + 0xa1, 0xd3, 0x6d, 0x99, 0xd5, 0xae, 0x10, 0x5b, 0x40, 0xe6, 0x20, 0x7a, + 0x9c, 0xd7, 0xd2, 0x8d, 0x71, 0x0c, 0x21, 0xae, 0x21, 0x53, 0x02, 0x49, + 0x1e, 0x5b, 0x3c, 0x63, 0xfd, 0xea, 0xf9, 0x8f, 0xe0, 0xc5, 0x93, 0xdc, + 0x68, 0xf6, 0xd1, 0x42, 0xdb, 0x65, 0x7b, 0x48, 0x36, 0x9c, 0xe3, 0x9c, + 0x9a, 0xf7, 0xad, 0x7b, 0x53, 0x94, 0xdd, 0xd8, 0x41, 0x1b, 0x32, 0x09, + 0x2c, 0xe5, 0xf3, 0x94, 0x8f, 0xbc, 0xc0, 0x0c, 0x1a, 0x72, 0x93, 0x48, + 0x9a, 0x69, 0x68, 0x7c, 0x59, 0xf1, 0x6f, 0x4e, 0x7d, 0x27, 0xe2, 0x0e, + 0xb1, 0x02, 0x48, 0x8e, 0x0c, 0xc6, 0x4d, 0xe0, 0x67, 0x3b, 0xb9, 0xe3, + 0xf3, 0xae, 0x35, 0xa1, 0x66, 0xe6, 0x46, 0xe3, 0xfd, 0xa3, 0xc5, 0x77, + 0xbf, 0x18, 0xd4, 0x2f, 0xc4, 0x1b, 0xf1, 0xc9, 0xe1, 0x79, 0x3f, 0x41, + 0x5c, 0x43, 0x32, 0x11, 0x96, 0xe4, 0x0a, 0xf1, 0xea, 0x3f, 0x79, 0xd8, + 0xef, 0x8a, 0xd0, 0xaf, 0x98, 0xfa, 0x00, 0x5f, 0xdf, 0x1c, 0x0a, 0xcc, + 0xf1, 0x38, 0xdd, 0xa0, 0xdc, 0x7e, 0x1d, 0x2b, 0x51, 0xe4, 0x69, 0xd4, + 0xaa, 0xaf, 0x96, 0xbe, 0xa6, 0xb2, 0x7c, 0x48, 0xe1, 0x34, 0x49, 0xd0, + 0x03, 0x27, 0xc9, 0x92, 0x45, 0x3a, 0x5f, 0xc4, 0x8f, 0xa8, 0xaa, 0x7c, + 0x0c, 0xa7, 0xe1, 0x1b, 0xa9, 0x45, 0x93, 0x44, 0xa1, 0x59, 0x4a, 0xe3, + 0x9a, 0xb4, 0x4b, 0x15, 0x3b, 0x8e, 0x14, 0x76, 0x15, 0x8d, 0xe1, 0x7b, + 0xb1, 0x1c, 0x23, 0x8e, 0xa3, 0xad, 0x6a, 0x3d, 0xc8, 0x8d, 0x18, 0x93, + 0x5d, 0x55, 0x23, 0x6a, 0x8f, 0x43, 0x9e, 0x0f, 0xdd, 0x40, 0xec, 0x11, + 0x4f, 0x18, 0xc8, 0xae, 0x05, 0xc1, 0x13, 0x3f, 0x50, 0x77, 0x1a, 0xeb, + 0x6e, 0x75, 0x18, 0xe3, 0x24, 0x17, 0x27, 0x8f, 0xc6, 0xb9, 0x89, 0x40, + 0xf3, 0x5b, 0xd3, 0x35, 0xdb, 0x86, 0x4e, 0x37, 0xb9, 0xcf, 0x57, 0x5b, + 0x58, 0x6a, 0x16, 0x51, 0xc1, 0xcd, 0x59, 0x8a, 0xea, 0x68, 0x80, 0xc3, + 0xb5, 0x40, 0xa9, 0x80, 0x38, 0xa9, 0x00, 0xae, 0xa7, 0x67, 0xb9, 0x0a, + 0xe5, 0xe8, 0x35, 0x89, 0xa3, 0x73, 0x92, 0x0e, 0x7d, 0x45, 0x69, 0x43, + 0xe2, 0x13, 0x8f, 0x99, 0x01, 0x1e, 0xc6, 0xb0, 0x56, 0x32, 0x4d, 0x3b, + 0xcb, 0x20, 0x63, 0x1d, 0x2b, 0x9e, 0x54, 0xe1, 0x2e, 0x86, 0xd1, 0x93, + 0x47, 0x55, 0x16, 0xbb, 0x03, 0x0e, 0x41, 0x04, 0xfb, 0x55, 0xbb, 0x4d, + 0x4e, 0xdc, 0xaa, 0xfc, 0xe1, 0x7e, 0xb5, 0xc7, 0x46, 0xa4, 0x74, 0xc8, + 0x35, 0x34, 0x72, 0x32, 0x0f, 0xbd, 0xcf, 0xbd, 0x73, 0x4b, 0x0f, 0x17, + 0xb1, 0xb2, 0xa9, 0xa9, 0xdf, 0x41, 0x77, 0x03, 0xe3, 0x12, 0xa9, 0xfc, + 0x6a, 0xd8, 0x91, 0x3c, 0xb6, 0xc3, 0x0f, 0xce, 0xbc, 0xfd, 0x2e, 0x9b, + 0x1c, 0x1a, 0xb2, 0x97, 0x2e, 0x3b, 0xe4, 0x7d, 0x6b, 0x92, 0x58, 0x7f, + 0x33, 0x75, 0x24, 0x7a, 0x45, 0x8c, 0xca, 0xd1, 0x28, 0xc8, 0xad, 0x5b, + 0x76, 0x53, 0x8c, 0x91, 0x5e, 0x59, 0x15, 0xf4, 0xc9, 0x80, 0xae, 0x47, + 0xd0, 0xd5, 0xb8, 0xb5, 0x6b, 0x85, 0xff, 0x00, 0x96, 0xb2, 0x67, 0xd8, + 0xd6, 0x3e, 0xc5, 0xc7, 0x63, 0x55, 0x69, 0x75, 0x3d, 0x5b, 0x23, 0xca, + 0x6e, 0x47, 0x4a, 0xd1, 0xd2, 0xde, 0x3f, 0xb2, 0x45, 0xc8, 0xfb, 0xb5, + 0xe4, 0x23, 0x5b, 0xba, 0xc1, 0x5f, 0x3e, 0x4e, 0x7f, 0xda, 0xa9, 0x62, + 0xd6, 0x6e, 0xa3, 0x55, 0x45, 0xb8, 0x93, 0x68, 0xe8, 0x03, 0x52, 0xe5, + 0x63, 0xe4, 0xbf, 0x53, 0xda, 0x51, 0xa3, 0xec, 0xc3, 0xf3, 0xab, 0x09, + 0x70, 0x89, 0x1b, 0x65, 0x86, 0x08, 0xf5, 0xaf, 0x13, 0x1a, 0xbd, 0xd3, + 0x1f, 0xf5, 0xf2, 0x1f, 0xf8, 0x15, 0x12, 0x6a, 0x37, 0x0e, 0xa7, 0x32, + 0xc9, 0x8f, 0x76, 0x34, 0x27, 0x67, 0xb0, 0xdd, 0x1b, 0xf5, 0x3d, 0xd7, + 0xc3, 0xc8, 0x25, 0xd0, 0x36, 0xa1, 0x25, 0xb1, 0xc6, 0x0d, 0x6d, 0x5b, + 0xed, 0x8d, 0x15, 0xe4, 0xb6, 0x2f, 0x85, 0x19, 0xe7, 0xbd, 0x79, 0x07, + 0x85, 0xbc, 0x78, 0x74, 0x9d, 0x25, 0x60, 0x95, 0x1a, 0x4c, 0x70, 0x00, + 0x6c, 0x64, 0x55, 0xa7, 0xf8, 0xb1, 0x73, 0x17, 0x9b, 0x1c, 0x70, 0xaf, + 0x94, 0xdd, 0x04, 0x8d, 0x9c, 0x56, 0xee, 0x71, 0xe6, 0x30, 0x54, 0x6a, + 0x5b, 0x63, 0xdc, 0x2d, 0x59, 0x0b, 0xcd, 0xb1, 0x70, 0xbe, 0x58, 0x20, + 0x7e, 0x75, 0xdf, 0xfc, 0x3f, 0xdd, 0x79, 0x6d, 0x1c, 0x2b, 0x77, 0x34, + 0x7b, 0x15, 0x49, 0x8d, 0x1c, 0x85, 0xe6, 0xbe, 0x50, 0x8b, 0xe2, 0xe5, + 0xf0, 0x04, 0x46, 0x57, 0x38, 0xc6, 0x10, 0x64, 0xfe, 0x75, 0xdc, 0x7c, + 0x30, 0xf8, 0xc3, 0xe4, 0x6a, 0x26, 0xd6, 0xfe, 0xe5, 0xed, 0xe3, 0x75, + 0x1b, 0x65, 0x90, 0xf0, 0x08, 0xad, 0xe8, 0xce, 0x0e, 0x56, 0x33, 0xa9, + 0x4a, 0x71, 0x8d, 0xcf, 0xbf, 0xfc, 0x03, 0xa7, 0x69, 0x50, 0xc6, 0x8d, + 0x3a, 0x2c, 0x8e, 0xa3, 0x24, 0xcf, 0xf3, 0x67, 0xf3, 0xaf, 0x51, 0xb0, + 0xf1, 0x2d, 0x86, 0x97, 0x09, 0x31, 0x4d, 0x14, 0x64, 0x1f, 0x94, 0x80, + 0x30, 0x2b, 0xe0, 0xb9, 0x3f, 0x68, 0x7b, 0x0d, 0x36, 0xdd, 0xa3, 0x4d, + 0x44, 0xcc, 0x47, 0x07, 0x62, 0x96, 0xc8, 0xae, 0x7f, 0x50, 0xfd, 0xa8, + 0xa4, 0x80, 0x62, 0xd4, 0xcd, 0x20, 0x03, 0x03, 0x71, 0xd8, 0x3f, 0xad, + 0x77, 0xbc, 0x5d, 0x3a, 0x7d, 0x4e, 0x35, 0x83, 0xa9, 0x3e, 0x87, 0xe9, + 0x66, 0x9f, 0xf1, 0x36, 0xd6, 0x72, 0x51, 0xdc, 0x23, 0xa8, 0xcf, 0x27, + 0xa8, 0xf5, 0x14, 0xdb, 0x9f, 0x8c, 0xbe, 0x1d, 0xb2, 0x46, 0xfb, 0x56, + 0xa7, 0x04, 0x7b, 0x7a, 0x8f, 0x30, 0x13, 0x5f, 0x94, 0x3a, 0xcf, 0xed, + 0x2d, 0xe2, 0x6b, 0xf9, 0x43, 0x41, 0x74, 0x60, 0x23, 0x80, 0x50, 0x92, + 0xd5, 0xc4, 0xea, 0x3f, 0x10, 0x3c, 0x47, 0xaf, 0x16, 0x59, 0xae, 0xee, + 0xa7, 0x0d, 0xd8, 0xb9, 0x02, 0xb9, 0x6a, 0x66, 0x94, 0xd6, 0xca, 0xe7, + 0x54, 0x32, 0xc9, 0x3f, 0x89, 0x9f, 0xa9, 0x9e, 0x32, 0xfd, 0xb4, 0x3c, + 0x0f, 0xe1, 0x68, 0xe4, 0x55, 0xbc, 0x17, 0x93, 0x2f, 0x44, 0x0c, 0x17, + 0xfc, 0x6b, 0xe6, 0xff, 0x00, 0x88, 0x5f, 0xf0, 0x50, 0xdd, 0x4a, 0xf7, + 0xce, 0x8b, 0x43, 0xb6, 0x16, 0xc8, 0x49, 0xdb, 0x29, 0xf9, 0x58, 0x0a, + 0xf8, 0xd2, 0x1d, 0x0f, 0x58, 0xd5, 0x19, 0x73, 0xb9, 0x41, 0xae, 0xd7, + 0xc3, 0x7f, 0x07, 0x4d, 0xeb, 0x24, 0x97, 0xd2, 0x92, 0x33, 0xc8, 0x26, + 0xbc, 0xaa, 0xd9, 0xbc, 0x9e, 0x89, 0xd8, 0xf4, 0xa9, 0x65, 0x90, 0x5d, + 0x2e, 0x3b, 0xc6, 0x7f, 0xb4, 0x2f, 0x8c, 0x3c, 0x6f, 0x72, 0xe6, 0xe3, + 0x53, 0xb9, 0x97, 0x77, 0xf0, 0xc4, 0xc4, 0x0a, 0xe3, 0x61, 0xd2, 0x35, + 0x9d, 0x7a, 0x52, 0xf2, 0x17, 0x1b, 0x8e, 0x49, 0x6e, 0x4d, 0x7b, 0xac, + 0x9e, 0x03, 0xd0, 0xb4, 0x6d, 0x2d, 0x56, 0x0b, 0x75, 0x79, 0x3b, 0x9c, + 0x66, 0xa8, 0xad, 0x92, 0x46, 0xb8, 0x8d, 0x15, 0x07, 0xa2, 0x8a, 0xf0, + 0x31, 0x18, 0xea, 0x8d, 0xf7, 0x3d, 0xca, 0x18, 0x38, 0xa5, 0xd8, 0xf3, + 0x7d, 0x33, 0xe1, 0xca, 0x21, 0x0d, 0x72, 0xc5, 0xdb, 0xdf, 0x9a, 0xea, + 0xec, 0x7c, 0x39, 0x15, 0x8a, 0x7c, 0x90, 0x01, 0xe9, 0x9e, 0xb5, 0xb9, + 0xb6, 0x28, 0x8e, 0x33, 0x96, 0x1e, 0x9f, 0xe3, 0x49, 0x3c, 0xa4, 0xa7, + 0xde, 0xc5, 0x78, 0x95, 0x2b, 0x4e, 0x7f, 0x13, 0x3d, 0x4a, 0x74, 0x21, + 0x1d, 0x91, 0x41, 0xed, 0xa3, 0x88, 0x65, 0xb1, 0xc7, 0x61, 0xda, 0xaa, + 0xcd, 0x3a, 0xee, 0x0a, 0xa0, 0x9c, 0xf6, 0x5a, 0xbd, 0x22, 0x21, 0x03, + 0xaa, 0xaf, 0xb9, 0xe4, 0xd5, 0x79, 0x65, 0x8e, 0x21, 0xb5, 0x46, 0xdf, + 0x7e, 0xe6, 0xb0, 0x57, 0x91, 0xb3, 0xb4, 0x48, 0x0c, 0x1c, 0x7c, 0xfc, + 0x7a, 0x20, 0xa8, 0x67, 0x94, 0x2a, 0xe0, 0x63, 0x1d, 0xb1, 0x4e, 0x79, + 0x70, 0xfc, 0xe4, 0xe7, 0xb7, 0xad, 0x46, 0x22, 0x11, 0x7c, 0xf3, 0x1e, + 0xbd, 0x10, 0x56, 0xab, 0x4d, 0xcc, 0x25, 0x2b, 0x95, 0xcd, 0xb1, 0x90, + 0x6e, 0x3c, 0x28, 0xea, 0x4d, 0x54, 0xb9, 0x95, 0x55, 0x76, 0x29, 0xc0, + 0x1f, 0xad, 0x5a, 0xbb, 0xba, 0x32, 0xf0, 0x9c, 0x01, 0xfa, 0x56, 0x79, + 0x8c, 0xb9, 0xf5, 0x3d, 0xcd, 0x68, 0xbc, 0xcc, 0x9b, 0x23, 0x48, 0xc3, + 0xe7, 0x67, 0x26, 0xa2, 0x9f, 0xe4, 0x52, 0x3f, 0x33, 0x56, 0x59, 0xd2, + 0x15, 0xda, 0x9c, 0x1e, 0xed, 0x59, 0xd3, 0x3b, 0x33, 0x13, 0x8e, 0x07, + 0x4a, 0xd5, 0x6a, 0xc9, 0x6c, 0x81, 0xf2, 0x0e, 0x07, 0xde, 0x3c, 0x01, + 0x52, 0xad, 0xb6, 0xc8, 0xf1, 0x9f, 0x76, 0x34, 0xeb, 0x68, 0x4e, 0x77, + 0x37, 0x2e, 0x7a, 0x0f, 0x4a, 0x92, 0xe1, 0xb6, 0xae, 0xc0, 0x79, 0xef, + 0x5a, 0xdf, 0x5b, 0x19, 0xb3, 0x3e, 0x60, 0x4e, 0x4d, 0x67, 0x4d, 0x16, + 0xe7, 0x00, 0xfd, 0x6b, 0x46, 0x77, 0xe7, 0x1d, 0xbb, 0x9a, 0x48, 0xad, + 0x03, 0xc7, 0xe6, 0x39, 0x39, 0x27, 0x81, 0x5d, 0x11, 0x97, 0x2a, 0xb9, + 0x0d, 0x0c, 0xb6, 0xb7, 0xdb, 0x17, 0xa7, 0x19, 0xaa, 0x8b, 0xf7, 0xdc, + 0xe7, 0x3c, 0x55, 0xfb, 0x99, 0x3c, 0xb8, 0xdb, 0x1f, 0x4a, 0xcf, 0x0a, + 0x58, 0xb1, 0xed, 0x5a, 0x53, 0x77, 0xbb, 0x62, 0x6b, 0xa1, 0x35, 0xa0, + 0x2e, 0xe4, 0x9f, 0x41, 0x56, 0xa5, 0x8f, 0x6e, 0xcf, 0x4a, 0x82, 0xd1, + 0x41, 0x39, 0xce, 0x38, 0x15, 0x72, 0x55, 0xfb, 0xbf, 0x5a, 0xce, 0x52, + 0xf7, 0x86, 0xb6, 0x28, 0xcf, 0x01, 0x21, 0xbe, 0x99, 0xa5, 0x36, 0xa1, + 0x97, 0x1d, 0x88, 0xed, 0x57, 0x24, 0x52, 0x18, 0x0e, 0xcc, 0x29, 0x91, + 0xb7, 0xc9, 0x83, 0xdb, 0x8a, 0x5c, 0xee, 0xc2, 0x5b, 0x95, 0x23, 0x8f, + 0x29, 0xd3, 0x95, 0xa7, 0x2c, 0x1b, 0x89, 0x07, 0xa1, 0xe6, 0xa4, 0x92, + 0x33, 0x1c, 0xdb, 0x87, 0xf1, 0x54, 0x8a, 0x09, 0xce, 0x3a, 0x8e, 0x69, + 0xb9, 0x14, 0x91, 0x07, 0x93, 0xe4, 0x38, 0x60, 0x30, 0x3b, 0xd5, 0xd8, + 0x87, 0x98, 0xbb, 0x09, 0xf7, 0x53, 0x4e, 0x0a, 0x24, 0x4e, 0x9c, 0x1a, + 0x62, 0x2f, 0x96, 0xd8, 0x3f, 0x78, 0x74, 0xf7, 0xac, 0xb9, 0xaf, 0xb8, + 0x34, 0x3c, 0x2b, 0x3a, 0x94, 0x23, 0x91, 0x4e, 0xf2, 0x8b, 0x2e, 0xc3, + 0xd4, 0x74, 0xf7, 0xab, 0x1f, 0xeb, 0x93, 0x70, 0x1f, 0xbc, 0x1d, 0x47, + 0xad, 0x46, 0x58, 0x49, 0x8e, 0xc7, 0xb5, 0x4d, 0xc9, 0xb1, 0x0f, 0x96, + 0xd1, 0x82, 0xa7, 0xf2, 0xa8, 0x3c, 0xa2, 0x8f, 0xbd, 0x3a, 0x77, 0x15, + 0x7d, 0x0f, 0x98, 0x0a, 0x49, 0xc3, 0x0e, 0x86, 0xa1, 0x68, 0xfe, 0x63, + 0x81, 0xcf, 0xf3, 0xa7, 0x71, 0xa4, 0x10, 0xb8, 0xce, 0x47, 0xe2, 0x2a, + 0x75, 0x21, 0x89, 0x18, 0xfc, 0x0d, 0x42, 0x21, 0x0d, 0xca, 0xf0, 0x47, + 0x51, 0x4e, 0xe8, 0x7e, 0x6e, 0xdd, 0x0f, 0xa5, 0x4b, 0x69, 0x97, 0x62, + 0x63, 0x01, 0xc6, 0x50, 0xfe, 0x14, 0xd5, 0xcc, 0x6d, 0xc7, 0xca, 0x6a, + 0x58, 0xdc, 0x0c, 0x64, 0xfd, 0x1a, 0xa5, 0x21, 0x4f, 0xde, 0x1d, 0x7b, + 0xf6, 0xac, 0xee, 0xd0, 0xec, 0x3e, 0xde, 0xf9, 0x97, 0x87, 0x19, 0x1e, + 0xf5, 0x72, 0x35, 0x8a, 0x5f, 0x99, 0x1b, 0x0d, 0xe8, 0x2b, 0x3c, 0xc0, + 0x57, 0x95, 0xe9, 0xe8, 0x69, 0xa3, 0x70, 0xe8, 0x4a, 0x37, 0xbd, 0x1a, + 0x3d, 0x82, 0xc6, 0xb8, 0x89, 0x94, 0x1e, 0x37, 0x0f, 0x51, 0xd6, 0x94, + 0x28, 0x27, 0xb8, 0xc7, 0xa7, 0x15, 0x46, 0x1d, 0x46, 0x48, 0x4e, 0x1c, + 0x6f, 0x1e, 0xb5, 0x34, 0x97, 0xff, 0x00, 0x69, 0x4c, 0x28, 0x0b, 0xee, + 0x69, 0xab, 0x88, 0xb2, 0x4b, 0x01, 0x82, 0x77, 0x7b, 0x1a, 0x14, 0xa9, + 0xfb, 0xd9, 0x06, 0xa9, 0x09, 0xa5, 0x51, 0xc9, 0xc8, 0xf7, 0xa7, 0xad, + 0xd0, 0x63, 0x86, 0x52, 0xa3, 0xdb, 0xa5, 0x35, 0x36, 0x83, 0x95, 0x32, + 0xec, 0x4f, 0x22, 0xb7, 0xee, 0xe4, 0x20, 0xfa, 0xe6, 0xad, 0xc1, 0x34, + 0xaa, 0x41, 0x72, 0x09, 0xac, 0xd8, 0xdd, 0x48, 0xf9, 0x48, 0xfc, 0x2a, + 0x75, 0x99, 0xd5, 0xd7, 0x3d, 0x07, 0xb5, 0x5f, 0x3b, 0x60, 0xa3, 0x63, + 0x7d, 0xee, 0x87, 0x94, 0x06, 0x41, 0xf5, 0xe6, 0x9f, 0x6d, 0x7a, 0x14, + 0x6d, 0x03, 0x00, 0xfe, 0x15, 0x85, 0xf6, 0xa0, 0xcd, 0xf3, 0x0c, 0x8a, + 0x7a, 0x5d, 0x2a, 0x9e, 0x09, 0x50, 0x3d, 0xeb, 0x48, 0x3d, 0x75, 0x1c, + 0x9f, 0x54, 0x77, 0x76, 0xfa, 0x8c, 0x11, 0x40, 0x37, 0x01, 0x9f, 0x55, + 0x35, 0x81, 0xe2, 0x6b, 0xe5, 0x9f, 0x4a, 0x9d, 0x56, 0x79, 0x32, 0xfc, + 0x6d, 0x63, 0x90, 0x6b, 0x16, 0x4d, 0x4a, 0x5c, 0x60, 0x38, 0x22, 0xa9, + 0x5f, 0x5c, 0xc9, 0x3c, 0x58, 0x03, 0x3f, 0x8d, 0x75, 0x3a, 0x97, 0x56, + 0x4c, 0xc5, 0xfa, 0x1c, 0xdc, 0xd6, 0xc7, 0x77, 0x62, 0x3e, 0x95, 0x5a, + 0x5b, 0x6c, 0xf5, 0x41, 0x9a, 0xd2, 0x99, 0x5c, 0xf5, 0x07, 0x8f, 0x4a, + 0xaa, 0x55, 0xc9, 0x39, 0x04, 0x0f, 0x71, 0x5c, 0x89, 0xbe, 0xe2, 0x69, + 0x19, 0x93, 0xd9, 0xe4, 0xe4, 0x29, 0xfc, 0x0d, 0x55, 0x6b, 0x5d, 0xa4, + 0xe4, 0x36, 0x6b, 0x64, 0xa3, 0x54, 0x6e, 0x99, 0x35, 0xa2, 0x9b, 0x46, + 0x4e, 0x28, 0xc2, 0x92, 0x01, 0xdf, 0x24, 0x55, 0x67, 0xb7, 0x8d, 0x8f, + 0x46, 0xfc, 0x6b, 0x7e, 0x5b, 0x7c, 0xf6, 0xaa, 0xaf, 0x6b, 0x8f, 0x4a, + 0xdd, 0x55, 0x23, 0x94, 0xc3, 0x92, 0xd2, 0x2c, 0x60, 0x03, 0x54, 0xe6, + 0xb7, 0x84, 0x64, 0x6d, 0x39, 0xae, 0x89, 0xed, 0x2a, 0xbc, 0xd6, 0x48, + 0xe7, 0xa7, 0x35, 0xbc, 0x6a, 0x99, 0xb8, 0x1c, 0xbc, 0xb6, 0xb0, 0xb6, + 0x72, 0xb5, 0x9d, 0x77, 0xa5, 0x23, 0x02, 0x52, 0x3c, 0xfd, 0x2b, 0xb3, + 0x6d, 0x3d, 0x40, 0xe8, 0x3f, 0x2a, 0x6b, 0x69, 0xf1, 0x94, 0x21, 0x81, + 0x3f, 0xee, 0x8a, 0xea, 0x8e, 0x2b, 0x94, 0xc6, 0x54, 0xd3, 0xe8, 0x79, + 0xa5, 0xce, 0x92, 0xc3, 0x3f, 0x29, 0x15, 0x46, 0x4b, 0x39, 0x22, 0xe3, + 0x1c, 0x7a, 0xd7, 0xa8, 0x36, 0x8f, 0x02, 0xf2, 0x21, 0x24, 0x9e, 0xe6, + 0xa9, 0xdc, 0x68, 0x61, 0xc1, 0xdb, 0x1a, 0x8a, 0xf4, 0x21, 0x8f, 0x5b, + 0x33, 0x8a, 0x78, 0x6b, 0xea, 0x8f, 0x37, 0x30, 0x9f, 0x4a, 0x61, 0xb7, + 0x3d, 0xc5, 0x76, 0x57, 0x9a, 0x01, 0x04, 0xe0, 0x05, 0x3e, 0xc2, 0xb3, + 0xe4, 0xd1, 0xa4, 0x53, 0xf7, 0x49, 0xfa, 0x57, 0x7c, 0x31, 0x51, 0x96, + 0xcc, 0xe4, 0x96, 0x1d, 0xad, 0xce, 0x73, 0xc8, 0xf5, 0xa5, 0xf2, 0x46, + 0x38, 0x06, 0xb7, 0x7f, 0xb3, 0x08, 0x07, 0x2b, 0x8a, 0x92, 0x2d, 0x21, + 0x9c, 0x67, 0x6f, 0x15, 0x7f, 0x58, 0x8f, 0x73, 0x27, 0x44, 0xe7, 0xbc, + 0x82, 0xdc, 0x63, 0x8a, 0x16, 0x09, 0x13, 0x1b, 0x41, 0x3e, 0xc6, 0xba, + 0x71, 0xa5, 0x28, 0x23, 0x38, 0x07, 0xda, 0xa7, 0x87, 0x4d, 0x1d, 0x94, + 0x67, 0xd6, 0x97, 0xd6, 0x92, 0x21, 0xe1, 0xee, 0x72, 0x92, 0xa4, 0xe1, + 0x3e, 0x40, 0xc9, 0x91, 0xc8, 0xed, 0x57, 0x7c, 0x23, 0x09, 0x4d, 0x58, + 0x99, 0x3f, 0xb8, 0x7a, 0xd7, 0x41, 0x26, 0x95, 0xb8, 0x72, 0x33, 0x51, + 0x5b, 0xd9, 0x0b, 0x1b, 0x90, 0xe7, 0x0b, 0xda, 0xab, 0xeb, 0x0a, 0x70, + 0x71, 0x5d, 0x4c, 0x1e, 0x1f, 0x96, 0x6a, 0x4f, 0xa1, 0xd0, 0x45, 0x94, + 0x70, 0xe8, 0x73, 0x8e, 0xc6, 0xac, 0x6e, 0x8a, 0xe5, 0x80, 0x71, 0xe5, + 0xbf, 0xaf, 0x63, 0x59, 0x31, 0x4c, 0x43, 0x9d, 0xc7, 0x68, 0xcf, 0x0c, + 0x0d, 0x69, 0xc4, 0x44, 0xa3, 0x92, 0x1b, 0x3d, 0x18, 0x57, 0x9b, 0x28, + 0xdb, 0x53, 0xa9, 0x3b, 0x9e, 0x95, 0xf0, 0x1a, 0x59, 0x2d, 0xfe, 0x30, + 0x78, 0x5f, 0xca, 0xdc, 0x24, 0x7b, 0xb4, 0x8d, 0x5d, 0x0e, 0x0a, 0x93, + 0xc6, 0x47, 0xbf, 0x35, 0xfa, 0xdd, 0x6d, 0xa5, 0x45, 0xa6, 0xd8, 0x5a, + 0xc3, 0x08, 0x69, 0x4c, 0x21, 0x54, 0x19, 0x4e, 0xe7, 0xc7, 0xa9, 0x35, + 0xf9, 0x4f, 0xfb, 0x28, 0xd8, 0xda, 0x5d, 0x7c, 0x6e, 0xf0, 0xfa, 0x5d, + 0x06, 0x31, 0xa4, 0xa5, 0xc6, 0xd6, 0xc6, 0x18, 0x02, 0x41, 0x15, 0xfa, + 0xa1, 0x7f, 0xaf, 0x59, 0xdb, 0x58, 0xdf, 0xb4, 0xb3, 0x98, 0xcd, 0xa4, + 0x1e, 0x6c, 0xcc, 0x39, 0x31, 0x82, 0x09, 0x07, 0xeb, 0xc5, 0x67, 0xaf, + 0xc2, 0x8f, 0x42, 0x9e, 0x94, 0xf9, 0x99, 0xe6, 0x7f, 0xb4, 0xf4, 0xd6, + 0x1a, 0x97, 0xc2, 0xcd, 0x6f, 0x4e, 0x96, 0xf8, 0xda, 0x15, 0xb6, 0x92, + 0xe2, 0x44, 0x5e, 0x18, 0xa0, 0xe0, 0x92, 0x7d, 0x33, 0xdb, 0xbd, 0x7e, + 0x6a, 0x7c, 0x12, 0xbc, 0x16, 0xff, 0x00, 0x15, 0x3c, 0x3a, 0xc9, 0xf3, + 0x85, 0xba, 0x4d, 0xa3, 0xd7, 0x9a, 0xfa, 0x53, 0xf6, 0x93, 0xf8, 0xd5, + 0x0d, 0xd6, 0x8d, 0x77, 0x6b, 0x6d, 0x2b, 0xbf, 0xda, 0x74, 0x63, 0x09, + 0x69, 0x0f, 0xce, 0xd9, 0x63, 0xd7, 0xde, 0xbe, 0x1e, 0xd0, 0x7c, 0x45, + 0x36, 0x97, 0xab, 0xc1, 0x79, 0x04, 0x8d, 0x14, 0xd0, 0xb0, 0x64, 0x75, + 0x3c, 0x82, 0x2b, 0xd1, 0xf6, 0x72, 0x50, 0x49, 0xf4, 0x3c, 0xcf, 0x69, + 0x15, 0x5a, 0xe8, 0xfe, 0x83, 0x3c, 0x38, 0xc1, 0xf4, 0x2b, 0x4c, 0x91, + 0x93, 0x1a, 0x93, 0x8f, 0xa0, 0xad, 0x25, 0x50, 0xcf, 0x8c, 0x9d, 0xbc, + 0x1e, 0x0d, 0x7e, 0x41, 0x7c, 0x3a, 0xff, 0x00, 0x82, 0x80, 0xfc, 0x41, + 0xf0, 0x74, 0x70, 0x5b, 0xcd, 0x73, 0x0e, 0xa7, 0x63, 0x10, 0x0a, 0x22, + 0xb8, 0x4e, 0x71, 0xe9, 0xb8, 0x73, 0x5f, 0x48, 0xf8, 0x0f, 0xfe, 0x0a, + 0x7f, 0xe1, 0xfb, 0xb4, 0x48, 0xfc, 0x4d, 0xa4, 0xcd, 0x61, 0x27, 0x79, + 0x2d, 0x4f, 0x98, 0xbf, 0x91, 0x23, 0x15, 0x4a, 0xaa, 0x5a, 0x34, 0x6d, + 0x2a, 0x4a, 0x6d, 0xca, 0x12, 0xdc, 0xdf, 0xff, 0x00, 0x82, 0xa8, 0x22, + 0x9f, 0x83, 0xde, 0x14, 0x90, 0xe1, 0x99, 0x35, 0xa2, 0xa1, 0x8f, 0x51, + 0x98, 0x1f, 0x8f, 0xd0, 0x7e, 0x55, 0xf9, 0xa7, 0xf0, 0xbb, 0xcb, 0x7f, + 0x89, 0x9a, 0x12, 0xcc, 0xbb, 0xa2, 0x37, 0x91, 0xee, 0x1e, 0xbc, 0xd7, + 0xd8, 0xdf, 0xb7, 0xc7, 0xed, 0x47, 0xe0, 0xaf, 0x8d, 0x3f, 0x0d, 0xbc, + 0x31, 0xa5, 0x78, 0x62, 0xf5, 0xae, 0xae, 0xa2, 0xd4, 0x0d, 0xe4, 0xca, + 0x50, 0xaf, 0x96, 0xa2, 0x36, 0x50, 0x0e, 0x7b, 0xe5, 0xbb, 0x7a, 0x57, + 0xc5, 0x3f, 0x0e, 0x6e, 0x5e, 0x2f, 0x1f, 0x68, 0xf2, 0x44, 0xbe, 0x64, + 0x8b, 0x77, 0x19, 0x55, 0xf5, 0x39, 0xab, 0xba, 0x93, 0xba, 0x38, 0xf9, + 0x7d, 0x9c, 0xd2, 0x7d, 0xcf, 0xdc, 0xd7, 0xf8, 0x4b, 0x69, 0xe2, 0x6b, + 0x0d, 0x1e, 0xf1, 0x75, 0x49, 0xad, 0x65, 0x8a, 0xca, 0x28, 0x95, 0x15, + 0x41, 0x5e, 0x17, 0x83, 0x8a, 0xb0, 0x9f, 0x0c, 0x35, 0x98, 0x2d, 0x16, + 0xd0, 0xeb, 0x10, 0x5c, 0x5a, 0x24, 0x81, 0xc4, 0x6f, 0x1e, 0xdc, 0x91, + 0xef, 0xcd, 0x74, 0xde, 0x11, 0x73, 0xff, 0x00, 0x08, 0xbe, 0x92, 0x65, + 0x0a, 0x25, 0x36, 0xb1, 0xee, 0x00, 0xe7, 0x07, 0x68, 0xcd, 0x6e, 0x87, + 0xdc, 0x3a, 0xe2, 0xbd, 0x28, 0xd5, 0x7c, 0xb6, 0x38, 0x6a, 0xd0, 0x5c, + 0xed, 0xa6, 0x79, 0xdc, 0x1f, 0x0a, 0xf6, 0x5f, 0x24, 0xcf, 0x05, 0xb2, + 0x0c, 0x92, 0xde, 0x5f, 0x20, 0xfd, 0x3a, 0x1f, 0xd2, 0xa6, 0xf0, 0x8f, + 0x84, 0x9b, 0xc3, 0xf3, 0xdd, 0xb3, 0x59, 0xf9, 0x0c, 0xee, 0xc5, 0x5e, + 0x2e, 0x54, 0x82, 0x7b, 0x8f, 0x5e, 0x2b, 0xbf, 0x59, 0x07, 0x5a, 0x6c, + 0x4e, 0x57, 0x71, 0x31, 0x14, 0xc9, 0xce, 0xf0, 0x78, 0x3f, 0x5a, 0xb5, + 0x54, 0xe7, 0x54, 0x14, 0x5d, 0xd1, 0xe7, 0xba, 0x6e, 0x89, 0x73, 0xa7, + 0x5c, 0x78, 0x8e, 0xf1, 0xb4, 0xa3, 0x71, 0x70, 0xef, 0xba, 0x30, 0xd2, + 0x60, 0xca, 0x08, 0x39, 0x0a, 0x71, 0xc5, 0x73, 0xf0, 0x78, 0x22, 0x5d, + 0x50, 0x68, 0x93, 0x5d, 0x69, 0x26, 0xd5, 0xa1, 0x89, 0x55, 0xca, 0xdc, + 0x6e, 0x11, 0x8e, 0x4e, 0x0f, 0xcb, 0xef, 0x5e, 0xcd, 0xe7, 0x11, 0x9f, + 0xe3, 0x07, 0xb8, 0xeb, 0x51, 0xab, 0x31, 0x8a, 0x3c, 0x36, 0xe0, 0x71, + 0xc1, 0xa3, 0x9d, 0x3d, 0x1a, 0x1f, 0xb1, 0xba, 0xb1, 0xe1, 0xda, 0x47, + 0xc3, 0xeb, 0x6d, 0x42, 0xfa, 0x7d, 0x66, 0x28, 0x9d, 0x30, 0xac, 0xb1, + 0xc0, 0xc7, 0x19, 0x70, 0x30, 0x79, 0xc5, 0x75, 0x7a, 0x87, 0x85, 0xec, + 0x6f, 0x6e, 0xfc, 0xf3, 0x0c, 0xd6, 0xb2, 0x10, 0xb8, 0x88, 0xa8, 0x38, + 0xc7, 0xd2, 0xbd, 0x18, 0x6d, 0x4b, 0x77, 0xc8, 0x55, 0xeb, 0xce, 0x32, + 0x69, 0xff, 0x00, 0x23, 0xf2, 0x8a, 0x09, 0xf5, 0x61, 0xc5, 0x0d, 0xc2, + 0xd6, 0x33, 0x74, 0x5d, 0xad, 0x65, 0xf8, 0x9e, 0x65, 0x3e, 0x81, 0x6c, + 0x85, 0x6e, 0x44, 0x12, 0x5e, 0x49, 0x17, 0x01, 0x04, 0x59, 0x22, 0xba, + 0xab, 0xdd, 0x36, 0x3b, 0xbd, 0x2e, 0xde, 0x29, 0x62, 0x2d, 0x1a, 0xf6, + 0x53, 0x83, 0xfc, 0xab, 0x76, 0xe5, 0x95, 0x22, 0x20, 0xc9, 0xb4, 0x9f, + 0xe1, 0x8c, 0x63, 0x35, 0x6c, 0x36, 0x4e, 0x00, 0x03, 0xea, 0x2a, 0x23, + 0xcb, 0xaa, 0xe8, 0x35, 0x47, 0x95, 0x6a, 0x97, 0xe2, 0x79, 0xcd, 0xef, + 0x84, 0x6d, 0xe5, 0x24, 0xdb, 0xd8, 0xbc, 0x4d, 0xb4, 0x0d, 0xdd, 0x73, + 0xfa, 0x55, 0xef, 0x0c, 0x78, 0x66, 0xe7, 0x4e, 0xbf, 0x69, 0xcd, 0xb9, + 0x8c, 0xba, 0x14, 0x2c, 0x38, 0x1f, 0x97, 0xe1, 0x5d, 0xce, 0xff, 0x00, + 0x4a, 0x19, 0xdc, 0x73, 0xb8, 0x01, 0x57, 0x1b, 0x45, 0xdc, 0x85, 0x47, + 0x5b, 0x9f, 0x8c, 0x7f, 0xf0, 0x51, 0xdd, 0x32, 0x6d, 0x23, 0xe3, 0xe5, + 0xdc, 0x13, 0x44, 0x91, 0x86, 0x85, 0x64, 0x4d, 0x83, 0x00, 0x82, 0x2b, + 0xe7, 0x9f, 0x87, 0x56, 0x2d, 0xa8, 0xf8, 0xe3, 0xc3, 0xb6, 0xa8, 0xe1, + 0x1a, 0x6d, 0x42, 0xde, 0x30, 0xe7, 0xa0, 0x26, 0x45, 0x19, 0xfd, 0x6b, + 0xe9, 0xef, 0xf8, 0x2a, 0x24, 0xa6, 0x4f, 0xda, 0x0f, 0x07, 0xef, 0x2d, + 0x8c, 0x79, 0xc7, 0xd2, 0xbe, 0x6b, 0xf8, 0x44, 0xd8, 0xf8, 0x9f, 0xe1, + 0x0f, 0x5f, 0xed, 0x6b, 0x4f, 0xfd, 0x1c, 0x95, 0xc1, 0x7f, 0x7a, 0xfe, + 0x67, 0xb3, 0x52, 0x1c, 0xb1, 0xb7, 0x92, 0xfc, 0x8f, 0xe8, 0x07, 0x4f, + 0xd2, 0xe3, 0xd3, 0x2c, 0x60, 0x86, 0x47, 0x69, 0xde, 0x38, 0x52, 0x22, + 0x76, 0xfd, 0xec, 0x0e, 0xb5, 0x3c, 0xae, 0xc4, 0xe3, 0x18, 0xcd, 0x4e, + 0x65, 0x11, 0x92, 0x49, 0x0b, 0xee, 0x4d, 0x63, 0xeb, 0x7e, 0x2d, 0xd0, + 0xf4, 0x08, 0xbc, 0xdd, 0x4f, 0x57, 0xb3, 0xb2, 0x5f, 0x59, 0xe6, 0x54, + 0xfe, 0x66, 0xba, 0x67, 0x2e, 0x6d, 0xd9, 0xc9, 0x4e, 0x16, 0xd9, 0x18, + 0x3f, 0x14, 0x81, 0xff, 0x00, 0x85, 0x6d, 0xe2, 0x46, 0x20, 0xf1, 0x61, + 0x3f, 0xfe, 0x8b, 0x6a, 0xfc, 0x09, 0xf1, 0x64, 0x9b, 0xbc, 0x47, 0x7e, + 0xcd, 0xff, 0x00, 0x3d, 0x5b, 0x23, 0xf1, 0xaf, 0xd9, 0x2f, 0x8e, 0x7f, + 0xb5, 0xf7, 0xc2, 0xed, 0x13, 0xc1, 0xda, 0xfe, 0x97, 0xff, 0x00, 0x09, + 0x24, 0x17, 0xb7, 0xf3, 0x5a, 0x4b, 0x02, 0x41, 0x6a, 0x4b, 0x12, 0xcc, + 0xa4, 0x0f, 0x9b, 0xa7, 0x7f, 0x5a, 0xfc, 0x5c, 0xf1, 0x16, 0xa0, 0xb7, + 0x7a, 0xe5, 0xdc, 0xd1, 0xfd, 0xc7, 0x91, 0x98, 0x7d, 0x33, 0x5c, 0x8d, + 0x5d, 0x9e, 0x8e, 0xb1, 0xa7, 0xcb, 0x2e, 0xe7, 0xd8, 0x5f, 0x01, 0xa2, + 0x8b, 0x54, 0xd2, 0x34, 0xfd, 0x42, 0xd4, 0xed, 0x8d, 0x63, 0x8a, 0x16, + 0x88, 0xfd, 0xe5, 0x65, 0x27, 0xf4, 0xaf, 0x5c, 0xd5, 0xf5, 0x96, 0xb6, + 0xd3, 0xb5, 0x01, 0x3c, 0x2b, 0x1b, 0x46, 0xa5, 0x62, 0x9c, 0x8c, 0x8c, + 0x1e, 0xb9, 0xf4, 0xaf, 0x13, 0xf8, 0x1f, 0xe2, 0xf8, 0xf4, 0xaf, 0x0e, + 0xda, 0x46, 0xbb, 0x20, 0xc5, 0xb2, 0x48, 0xd2, 0x81, 0xc8, 0xc9, 0xc1, + 0x1f, 0x4a, 0xf7, 0xcd, 0x32, 0x28, 0x6f, 0x6c, 0x2e, 0x14, 0x91, 0x3a, + 0x4d, 0x96, 0x25, 0xb9, 0xeb, 0x56, 0xd7, 0x63, 0x28, 0x3d, 0x35, 0x3e, + 0x26, 0xf8, 0xc7, 0x72, 0x97, 0x1f, 0x10, 0xf5, 0x33, 0x19, 0xdc, 0x88, + 0x55, 0x03, 0x76, 0x38, 0x02, 0xb8, 0x19, 0x67, 0x0d, 0x94, 0x55, 0x2e, + 0xd9, 0xe8, 0x2b, 0xa5, 0xf8, 0x8b, 0x70, 0xdf, 0xf0, 0x9a, 0xea, 0xfe, + 0x73, 0xfc, 0xab, 0x3b, 0xa2, 0x83, 0xd7, 0x00, 0xf0, 0x2b, 0x97, 0x7b, + 0x86, 0x3c, 0x44, 0x9b, 0x7d, 0xc8, 0xe6, 0xbc, 0x89, 0xab, 0xcd, 0x9d, + 0xc9, 0xe8, 0x3a, 0x7c, 0xc8, 0x23, 0x56, 0x1b, 0x57, 0x3c, 0x8c, 0xd6, + 0x6f, 0x8a, 0x2f, 0x62, 0x83, 0x44, 0xb8, 0x58, 0xd7, 0x82, 0xbb, 0x72, + 0x3a, 0x73, 0x56, 0x25, 0x60, 0x08, 0xde, 0xfb, 0x9b, 0xd0, 0xd6, 0x5e, + 0xbd, 0x1f, 0xda, 0x74, 0xb9, 0x11, 0x7a, 0x92, 0x2a, 0xe9, 0x45, 0x73, + 0xc6, 0xfb, 0x5c, 0x99, 0xc9, 0xb8, 0xb4, 0x8e, 0x4f, 0x47, 0xbf, 0x16, + 0xfc, 0x1d, 0xc3, 0xb5, 0x68, 0x5c, 0x6a, 0x0d, 0x28, 0xeb, 0xb1, 0x7d, + 0x4d, 0x32, 0xcf, 0x43, 0x63, 0x8d, 0xe0, 0xfd, 0x45, 0x68, 0xff, 0x00, + 0xc2, 0x38, 0xfb, 0x77, 0x7f, 0xac, 0x02, 0xbd, 0x3a, 0x95, 0x29, 0x73, + 0x5c, 0xe6, 0xa7, 0x4e, 0x7c, 0xb6, 0x66, 0x04, 0x8c, 0x64, 0x6d, 0xa0, + 0x71, 0xeb, 0xeb, 0x40, 0xb7, 0x2d, 0xdb, 0x15, 0xb6, 0x74, 0xb6, 0x42, + 0x7e, 0x5e, 0x7d, 0x08, 0xc5, 0x23, 0x69, 0xec, 0xa3, 0xa7, 0x4a, 0x3d, + 0xb4, 0x7a, 0x17, 0xec, 0x5f, 0x53, 0x28, 0x5b, 0x37, 0xa6, 0x69, 0xc2, + 0xdc, 0xfb, 0x83, 0x5a, 0xa2, 0xd8, 0x85, 0x07, 0x14, 0x82, 0xdd, 0xbd, + 0x2a, 0x7d, 0xa9, 0x6a, 0x95, 0x8c, 0xd4, 0x84, 0x86, 0x39, 0xfd, 0x2a, + 0x65, 0x41, 0xde, 0xad, 0xfd, 0x9f, 0x1d, 0xa9, 0xdf, 0x66, 0x0c, 0x38, + 0x35, 0x2e, 0xa5, 0xc6, 0xa9, 0x95, 0x15, 0x57, 0xa5, 0x48, 0xb1, 0xa9, + 0xc7, 0xcb, 0x56, 0xe3, 0xb2, 0xdd, 0xc0, 0xc7, 0xe3, 0x56, 0x62, 0xd3, + 0x5b, 0x3c, 0x8f, 0xc4, 0x56, 0x72, 0xa8, 0x97, 0x53, 0x45, 0x4d, 0x99, + 0xcb, 0x6a, 0xac, 0xc3, 0x8e, 0xb5, 0x2a, 0xdb, 0xa8, 0x18, 0x15, 0xae, + 0x9a, 0x78, 0x1d, 0x72, 0x2a, 0xc2, 0xe9, 0xea, 0x3d, 0x2b, 0x9e, 0x55, + 0xd1, 0xaa, 0xa3, 0x73, 0x10, 0x5b, 0x29, 0x03, 0x9e, 0x7e, 0xb4, 0xf5, + 0x87, 0x69, 0xef, 0x8a, 0xdd, 0xfe, 0xcf, 0x1e, 0x80, 0xd3, 0x92, 0xc0, + 0x63, 0xee, 0x8a, 0xcb, 0xeb, 0x08, 0xd1, 0x51, 0x68, 0xc7, 0x8e, 0x30, + 0x08, 0x19, 0x35, 0x6a, 0x28, 0x55, 0x4f, 0x56, 0xcd, 0x68, 0x7d, 0x85, + 0x41, 0xe0, 0x2d, 0x4a, 0xb6, 0x8a, 0x3b, 0x2d, 0x65, 0x2a, 0xc9, 0x9b, + 0x28, 0x32, 0x8a, 0x46, 0xa1, 0xba, 0x35, 0x59, 0x48, 0x03, 0x76, 0x35, + 0x6d, 0x6d, 0x71, 0xd0, 0x0f, 0xca, 0xa7, 0x8e, 0x10, 0xbe, 0x82, 0xb9, + 0xe5, 0x50, 0xd5, 0x40, 0xa3, 0x1d, 0xa8, 0x3e, 0xfe, 0xd9, 0xa9, 0xdf, + 0x4c, 0x82, 0x71, 0x8f, 0x2c, 0x85, 0x3c, 0xe0, 0xb6, 0x6a, 0xea, 0x28, + 0x03, 0x00, 0xd5, 0x88, 0xe3, 0x1e, 0x99, 0xac, 0x9d, 0x79, 0x25, 0x64, + 0x6b, 0xec, 0xa2, 0xf7, 0x29, 0xda, 0x69, 0x11, 0x40, 0xdf, 0xbb, 0x8f, + 0x6f, 0xbe, 0x2b, 0xd4, 0x34, 0x0f, 0x85, 0xb1, 0xf8, 0xa3, 0xc1, 0xe2, + 0xe6, 0xd5, 0xd5, 0x35, 0x11, 0x21, 0xda, 0x18, 0xf0, 0x47, 0xa5, 0x70, + 0xf6, 0xe8, 0x17, 0x1c, 0x1a, 0xf4, 0x1f, 0x09, 0x78, 0x8a, 0xe3, 0x4e, + 0xb0, 0xf2, 0xa3, 0x90, 0x22, 0x83, 0x90, 0x09, 0xac, 0xe1, 0x59, 0xf3, + 0x37, 0x2d, 0x46, 0xe9, 0x45, 0x24, 0x96, 0x85, 0x08, 0x3e, 0x08, 0xeb, + 0xc4, 0xff, 0x00, 0xa5, 0x4d, 0x1d, 0xba, 0xff, 0x00, 0xbd, 0x9a, 0xbc, + 0xdf, 0x06, 0x62, 0xb3, 0x88, 0xb4, 0xd7, 0xde, 0x63, 0xf6, 0x08, 0x33, + 0x5d, 0x32, 0x78, 0x9e, 0xe6, 0x61, 0xcc, 0xa7, 0xfe, 0x02, 0x29, 0x5b, + 0x52, 0x96, 0x65, 0x21, 0xd8, 0x90, 0x7b, 0xb9, 0xac, 0xea, 0x54, 0xec, + 0x8d, 0xa1, 0x4e, 0x3d, 0x59, 0x07, 0x87, 0x3c, 0x03, 0xa2, 0xd9, 0xa8, + 0x69, 0xe3, 0x49, 0x5f, 0x1d, 0x5b, 0x9a, 0x6d, 0xe6, 0x8b, 0x63, 0x6b, + 0x76, 0xc2, 0x18, 0x02, 0xaf, 0x6f, 0x97, 0x15, 0x7a, 0xc6, 0xec, 0xc5, + 0xc0, 0x23, 0xf0, 0x15, 0x1d, 0xf4, 0xdb, 0xdf, 0x24, 0x0f, 0xab, 0x73, + 0x5e, 0x65, 0x49, 0x36, 0xac, 0xd9, 0xdd, 0x18, 0xc5, 0x6c, 0x88, 0xed, + 0x42, 0xc2, 0xcb, 0xb4, 0x28, 0xc7, 0x6c, 0x57, 0x4b, 0x63, 0x3f, 0xc8, + 0x32, 0xc3, 0x8f, 0x5e, 0xbf, 0x95, 0x72, 0x7f, 0x6a, 0x8d, 0x38, 0x27, + 0xf0, 0xab, 0x56, 0xfa, 0xb0, 0x40, 0x36, 0xae, 0x7e, 0xbc, 0x57, 0x37, + 0xa1, 0xba, 0x6b, 0xab, 0x3a, 0xbd, 0x4a, 0xfb, 0x36, 0xc3, 0x82, 0x7d, + 0xdb, 0xa7, 0xe5, 0x58, 0x12, 0xde, 0x72, 0x07, 0x53, 0xe9, 0x51, 0xde, + 0xea, 0x86, 0x48, 0x39, 0x6c, 0xfb, 0x2f, 0x02, 0xb1, 0x5a, 0xfd, 0xb2, + 0x40, 0x18, 0xf6, 0x5e, 0xb5, 0x33, 0x52, 0x91, 0x4a, 0x71, 0x8e, 0x88, + 0xd9, 0x7b, 0xa3, 0x28, 0xc3, 0xe1, 0x3e, 0x9d, 0x6a, 0xa5, 0xc5, 0xf2, + 0x5b, 0x82, 0xa8, 0x06, 0xef, 0x7e, 0x49, 0xaa, 0x0d, 0x23, 0xc8, 0x01, + 0x2f, 0xb0, 0x1e, 0xbc, 0xf3, 0x4c, 0x50, 0xaa, 0x73, 0x18, 0xde, 0xde, + 0xb5, 0x87, 0x22, 0x1b, 0xaa, 0xd9, 0x69, 0x24, 0x79, 0x90, 0xb3, 0xb0, + 0x4e, 0x2a, 0x08, 0xc6, 0xe6, 0x24, 0x30, 0x2a, 0x3b, 0xd4, 0x53, 0x3c, + 0x71, 0x8f, 0xde, 0x3e, 0xe3, 0xfd, 0xd1, 0x54, 0x26, 0xbd, 0x66, 0xca, + 0xaf, 0x03, 0xd0, 0x74, 0xa3, 0x95, 0x91, 0xce, 0x69, 0x4f, 0x79, 0x1d, + 0xb9, 0xf9, 0x3e, 0x66, 0xee, 0xc6, 0xb3, 0xe4, 0xb9, 0x69, 0xcf, 0x39, + 0x00, 0xf7, 0x35, 0x5b, 0x71, 0x3c, 0xb9, 0xcd, 0x39, 0x3f, 0x78, 0x79, + 0x6d, 0xa8, 0x3b, 0x77, 0x34, 0xf9, 0x43, 0x98, 0x95, 0x22, 0x7b, 0x83, + 0xb5, 0x78, 0x41, 0xd4, 0xd3, 0x6e, 0x1d, 0x20, 0x05, 0x23, 0xe8, 0x3a, + 0xb5, 0x32, 0xe2, 0xf0, 0xc6, 0xbb, 0x54, 0xec, 0x4f, 0x41, 0xd4, 0xd5, + 0x32, 0xc5, 0x80, 0x66, 0xe0, 0x76, 0x15, 0x49, 0x3e, 0xa4, 0xb6, 0x81, + 0x9c, 0xb1, 0xc9, 0x18, 0x51, 0xda, 0x9b, 0x12, 0xb4, 0x8f, 0xb8, 0x8f, + 0x90, 0x7e, 0xb4, 0xa8, 0x3c, 0xf6, 0xc1, 0xfb, 0xa3, 0xad, 0x58, 0x04, + 0x28, 0xc6, 0x30, 0xa3, 0xad, 0x5e, 0xc4, 0xb6, 0x21, 0x2b, 0x08, 0xdf, + 0x8f, 0x98, 0xf0, 0xa2, 0xab, 0x5c, 0x05, 0x50, 0x4f, 0xe2, 0x6a, 0x59, + 0x1f, 0x27, 0x2d, 0xd4, 0xf4, 0x15, 0x52, 0xe0, 0x96, 0x3b, 0x46, 0x78, + 0xe4, 0x9a, 0xa5, 0xd8, 0x9b, 0x75, 0x2b, 0x2c, 0x46, 0x69, 0x00, 0x03, + 0x92, 0x6a, 0xfb, 0x44, 0x09, 0xda, 0x3a, 0x2f, 0x15, 0x0c, 0x18, 0x86, + 0x36, 0x94, 0xf5, 0xe8, 0xa3, 0xde, 0x88, 0xd5, 0x8f, 0x46, 0xc1, 0xea, + 0x4f, 0xbd, 0x5c, 0x9b, 0x63, 0x48, 0xad, 0x7d, 0x1a, 0xee, 0x55, 0xfc, + 0x6a, 0x03, 0x00, 0x8e, 0xd1, 0xdf, 0xbe, 0x09, 0xa9, 0x6e, 0x32, 0xd2, + 0x9e, 0xa7, 0x1c, 0x66, 0x9d, 0x7a, 0x40, 0xb7, 0xda, 0x06, 0x3b, 0x56, + 0xb1, 0x76, 0xb2, 0x25, 0xeb, 0x76, 0x43, 0x68, 0x06, 0xcc, 0x8e, 0xb9, + 0xab, 0x72, 0xb6, 0x0a, 0x7d, 0x6a, 0x0b, 0x28, 0xd0, 0x43, 0xb8, 0xf3, + 0x53, 0x48, 0xca, 0x42, 0x81, 0xeb, 0x49, 0xfc, 0x40, 0xbe, 0x11, 0xd2, + 0xb6, 0x4a, 0x60, 0x1c, 0xf4, 0xa8, 0xd1, 0x48, 0x91, 0xc7, 0x63, 0xcd, + 0x48, 0xed, 0xb0, 0x2b, 0x13, 0xc0, 0x34, 0xb3, 0x2e, 0xd9, 0x01, 0x1d, + 0x18, 0x52, 0x5b, 0x58, 0x9e, 0xa3, 0x67, 0x8f, 0xf7, 0x7b, 0x87, 0xf0, + 0x9a, 0x85, 0xbe, 0x42, 0xad, 0xf9, 0xd5, 0x95, 0x00, 0xa9, 0xcf, 0x43, + 0x54, 0xc7, 0xf1, 0x29, 0xea, 0x38, 0xa2, 0x3b, 0x16, 0x5a, 0x81, 0xb6, + 0xb1, 0x07, 0xa1, 0xe6, 0xa7, 0x78, 0xb7, 0x00, 0xeb, 0xd4, 0x55, 0x28, + 0x8e, 0xe4, 0xff, 0x00, 0x69, 0x6a, 0xf4, 0x12, 0xe4, 0x70, 0x78, 0x35, + 0x12, 0x5c, 0xae, 0xe8, 0x7b, 0x8a, 0x84, 0xb0, 0x0c, 0x9f, 0x7b, 0xd2, + 0x9b, 0x32, 0xef, 0x1e, 0x62, 0x0c, 0x67, 0xa8, 0xf4, 0xa5, 0x75, 0xf2, + 0x9f, 0x70, 0xfb, 0xa7, 0xad, 0x3c, 0x3e, 0xd6, 0xde, 0x39, 0xf5, 0x14, + 0x93, 0x24, 0xac, 0x65, 0x61, 0x82, 0x4f, 0x4e, 0x86, 0xad, 0x43, 0x32, + 0xcc, 0xa1, 0x1c, 0x61, 0xbb, 0x1f, 0x5a, 0x49, 0xad, 0x86, 0xcf, 0x31, + 0x3e, 0x68, 0xcf, 0xe9, 0x50, 0x14, 0x04, 0x0e, 0x7a, 0x51, 0xa3, 0x1a, + 0x65, 0x99, 0xa0, 0x31, 0x10, 0x4f, 0xe0, 0xe3, 0xbf, 0xd6, 0x9b, 0xb8, + 0x3f, 0xca, 0xc3, 0x6b, 0x53, 0xa0, 0xbb, 0xe3, 0x64, 0x83, 0x70, 0x3d, + 0xcf, 0x7a, 0x6c, 0xa9, 0xb4, 0xe5, 0x7e, 0x74, 0xf4, 0xee, 0x2a, 0x2d, + 0xdc, 0x69, 0x8d, 0x11, 0x98, 0xb3, 0x8e, 0x54, 0xf6, 0xa9, 0x91, 0xff, + 0x00, 0xba, 0xdf, 0x55, 0x35, 0x10, 0x97, 0x03, 0xfb, 0xc3, 0xd6, 0x94, + 0x85, 0x7e, 0x47, 0x06, 0x87, 0xe6, 0x52, 0x65, 0x85, 0x93, 0x1d, 0xf0, + 0x7d, 0x0f, 0x4a, 0x98, 0x32, 0x48, 0x30, 0xe3, 0x06, 0xaa, 0x06, 0x38, + 0xda, 0xc3, 0x34, 0xf8, 0xcf, 0x07, 0x69, 0xcf, 0xa8, 0x35, 0x2d, 0x0e, + 0xe4, 0xed, 0x07, 0x3f, 0x21, 0xc8, 0xf4, 0x34, 0x86, 0x3d, 0xbd, 0x57, + 0x69, 0xf5, 0x14, 0x81, 0xc0, 0x3d, 0x4a, 0x1f, 0x7e, 0x95, 0x3a, 0x48, + 0x40, 0xf9, 0x80, 0xc7, 0xa8, 0xa5, 0x76, 0x86, 0x44, 0xbb, 0xd3, 0xa7, + 0xcc, 0x29, 0x43, 0xe0, 0xe4, 0x8d, 0xa7, 0xda, 0xa7, 0xdb, 0x1b, 0x0c, + 0x83, 0xcd, 0x35, 0x90, 0x81, 0xcf, 0x2b, 0xef, 0x47, 0x37, 0x70, 0xb0, + 0xd0, 0xe1, 0x8f, 0x20, 0x7f, 0x2a, 0x99, 0x66, 0x2b, 0xd1, 0xc8, 0xfa, + 0xd4, 0x25, 0x11, 0x87, 0x20, 0xaf, 0xd2, 0x9a, 0xb0, 0x9c, 0xf0, 0xc0, + 0xd5, 0x5d, 0x01, 0x70, 0xcc, 0x18, 0x0c, 0x90, 0x4f, 0xe5, 0x4d, 0x62, + 0x30, 0x3a, 0xd5, 0x60, 0xed, 0x17, 0x04, 0x11, 0xfa, 0xd3, 0xbc, 0xe0, + 0x7d, 0x29, 0xab, 0xad, 0x82, 0xf7, 0x15, 0xf2, 0x3a, 0x30, 0x35, 0x1b, + 0xbb, 0x28, 0xe3, 0x77, 0x03, 0xb5, 0x48, 0xb2, 0xe0, 0x1e, 0x33, 0xf5, + 0xa6, 0xe5, 0x1b, 0x9e, 0x87, 0xda, 0x9f, 0x33, 0x25, 0x95, 0xcb, 0xb3, + 0x83, 0xd7, 0xf1, 0x14, 0xdf, 0x98, 0x29, 0x38, 0xfd, 0x2a, 0xc0, 0x03, + 0xb1, 0xc7, 0xe3, 0x52, 0x44, 0x76, 0xe7, 0x9c, 0xe7, 0xd7, 0x9a, 0x1b, + 0xb1, 0x25, 0x00, 0xc7, 0x77, 0x4c, 0xd2, 0x48, 0x32, 0x3e, 0xe6, 0x0d, + 0x5b, 0x94, 0x30, 0x7c, 0x80, 0x33, 0xec, 0x2a, 0x32, 0xd2, 0x37, 0x5c, + 0x7d, 0x48, 0xa6, 0x45, 0xca, 0x65, 0x46, 0xde, 0x52, 0xab, 0xc9, 0x6e, + 0x1b, 0xf8, 0x0e, 0x2b, 0x45, 0x81, 0x1c, 0x0c, 0x01, 0xf4, 0xa7, 0x07, + 0x54, 0x00, 0x6c, 0x04, 0x77, 0xa1, 0x36, 0xb6, 0x13, 0x48, 0xc9, 0x58, + 0x06, 0xee, 0x57, 0x8a, 0xaf, 0x35, 0xa0, 0x0f, 0x94, 0x1c, 0x7b, 0xd6, + 0xdb, 0x3a, 0x13, 0xf2, 0xa6, 0x2a, 0x2c, 0x80, 0x4f, 0xcb, 0x9a, 0xa5, + 0x36, 0x4b, 0x8a, 0x32, 0x4c, 0x05, 0xbf, 0x87, 0x14, 0xd3, 0x6a, 0xdd, + 0x86, 0x73, 0xed, 0x5a, 0xce, 0xa5, 0x87, 0xa7, 0xe1, 0x50, 0x49, 0x13, + 0x67, 0xef, 0xf3, 0xe9, 0x8a, 0x6a, 0x64, 0xb8, 0x99, 0xcd, 0x63, 0xd8, + 0xe6, 0x9a, 0x6c, 0x14, 0x0f, 0x4f, 0xc6, 0xb4, 0xc5, 0xae, 0xe2, 0x09, + 0x63, 0x8a, 0x53, 0x60, 0x39, 0xc0, 0xcf, 0xeb, 0x56, 0xa7, 0xe6, 0x66, + 0xe2, 0x63, 0x1d, 0x36, 0x2e, 0xe7, 0x3f, 0x85, 0x57, 0x9f, 0x4a, 0x47, + 0x07, 0x6c, 0x7f, 0x9d, 0x74, 0x1f, 0x62, 0x60, 0x39, 0x52, 0x3d, 0xcf, + 0x14, 0xe3, 0x64, 0xaa, 0x0e, 0xf9, 0x14, 0x7b, 0x75, 0xad, 0x15, 0x56, + 0xba, 0x99, 0x38, 0x5c, 0xe2, 0xee, 0x3c, 0x3c, 0xd3, 0x29, 0x07, 0x03, + 0xe8, 0x2a, 0xb3, 0x68, 0x12, 0x42, 0xb8, 0x19, 0x22, 0xbb, 0xa5, 0x11, + 0x28, 0x21, 0x95, 0x9b, 0xf4, 0x14, 0x92, 0x49, 0x95, 0xda, 0x91, 0xaa, + 0x0f, 0xa7, 0x35, 0xd7, 0x0c, 0x4c, 0xb6, 0x30, 0x95, 0x23, 0x80, 0x6d, + 0x3d, 0xa3, 0xeb, 0x19, 0x1e, 0xe6, 0xa3, 0x74, 0x8e, 0x23, 0xf7, 0xb7, + 0x1f, 0x45, 0xae, 0xda, 0x4d, 0x3b, 0xed, 0x04, 0xee, 0x5c, 0xfd, 0x6a, + 0x95, 0xcf, 0x87, 0x62, 0x71, 0xc8, 0xc7, 0xd2, 0xba, 0x23, 0x88, 0x5f, + 0x68, 0xc1, 0xd2, 0x7d, 0x0e, 0x36, 0xef, 0x50, 0x10, 0xc4, 0x48, 0x01, + 0x05, 0x72, 0xed, 0xaa, 0xca, 0xd7, 0x5e, 0x62, 0x30, 0x75, 0xe9, 0xb1, + 0xab, 0xbd, 0xd5, 0x3c, 0x30, 0x24, 0x8d, 0x82, 0x1c, 0x1f, 0xa5, 0x72, + 0xb7, 0x5e, 0x09, 0xbc, 0x52, 0x59, 0x30, 0x71, 0xcf, 0x15, 0xed, 0x61, + 0x6a, 0x51, 0xb6, 0xbd, 0x4f, 0x3a, 0xbd, 0x3a, 0x9d, 0x11, 0x0d, 0xbe, + 0xab, 0x1c, 0x93, 0x10, 0x73, 0x19, 0x3d, 0x9b, 0xa5, 0x69, 0xda, 0x5e, + 0x79, 0x47, 0x19, 0xf9, 0x73, 0xd2, 0xb0, 0xa4, 0xd2, 0x2f, 0xed, 0x78, + 0x96, 0xdd, 0x99, 0x7d, 0x71, 0x4c, 0x8a, 0x67, 0x84, 0x80, 0x8c, 0xc9, + 0xfe, 0xcb, 0x0e, 0x2b, 0xb9, 0xc2, 0x33, 0x5e, 0xeb, 0x38, 0x57, 0x34, + 0x4f, 0xa1, 0x7f, 0x66, 0xbd, 0x64, 0x69, 0x9f, 0x17, 0x34, 0x59, 0xf2, + 0x33, 0xb9, 0xb1, 0xf5, 0xda, 0x6b, 0xee, 0x1f, 0x89, 0x5f, 0x11, 0xac, + 0x2c, 0x0c, 0xd7, 0x71, 0x5d, 0xb3, 0xff, 0x00, 0x69, 0xc5, 0x1e, 0xe8, + 0xfb, 0x00, 0xab, 0x8e, 0x6b, 0xf3, 0x57, 0xe1, 0x56, 0xbf, 0x2d, 0x8f, + 0x8d, 0xf4, 0x99, 0x99, 0x42, 0x85, 0x94, 0x65, 0x83, 0x63, 0x8e, 0xf8, + 0xaf, 0xa2, 0xfe, 0x24, 0xf8, 0xd2, 0x4f, 0x10, 0x44, 0xb6, 0x3a, 0x64, + 0x66, 0x3b, 0x58, 0xd7, 0x1b, 0xd8, 0xf5, 0xa7, 0x46, 0x9c, 0x69, 0xde, + 0x52, 0xe8, 0x6d, 0x37, 0x3a, 0x91, 0x51, 0x89, 0xe2, 0xff, 0x00, 0x19, + 0xfc, 0x5b, 0x26, 0xad, 0xae, 0x5f, 0x48, 0x4f, 0xee, 0x8f, 0xee, 0xd0, + 0x03, 0xd4, 0x64, 0x9e, 0x2b, 0xc8, 0x22, 0x7d, 0xad, 0x92, 0x1c, 0x03, + 0xd0, 0xd7, 0xad, 0x5d, 0xf8, 0x36, 0x5b, 0xb9, 0x99, 0xa4, 0xcc, 0xaf, + 0xdc, 0x9a, 0xa1, 0x73, 0xe0, 0x64, 0x85, 0x38, 0x53, 0xbb, 0xd8, 0x57, + 0x34, 0xb1, 0xd4, 0xd4, 0x9e, 0x85, 0x7d, 0x46, 0x6d, 0x27, 0x73, 0x80, + 0x86, 0xe8, 0x2f, 0x19, 0xce, 0x2a, 0x53, 0x74, 0x48, 0xc8, 0xcd, 0x74, + 0x37, 0x5e, 0x0c, 0x90, 0x67, 0x74, 0x60, 0x1f, 0x6e, 0x0d, 0x62, 0x5c, + 0xe8, 0x13, 0xdb, 0xb6, 0x03, 0xba, 0x7b, 0x11, 0x9f, 0xd6, 0xae, 0x35, + 0xe9, 0x4f, 0xa9, 0x9c, 0xa8, 0xd6, 0x82, 0xda, 0xe3, 0x63, 0xb9, 0x2d, + 0x11, 0x27, 0xa6, 0x69, 0x96, 0x1a, 0x9c, 0xba, 0x76, 0xa2, 0x97, 0x30, + 0x48, 0x62, 0x9a, 0x36, 0x0e, 0x8e, 0xbc, 0x10, 0x45, 0x40, 0xf0, 0x5c, + 0xc6, 0xa5, 0x59, 0x04, 0x83, 0xfd, 0x93, 0x55, 0x58, 0x88, 0xdb, 0x2e, + 0xae, 0xa4, 0xfa, 0x8a, 0xe8, 0x8a, 0x4e, 0xf6, 0x39, 0x65, 0x29, 0x26, + 0xae, 0xb6, 0x3e, 0x9b, 0xf0, 0xa7, 0xed, 0xd7, 0xf1, 0x5f, 0xc2, 0xd6, + 0x36, 0xf6, 0x76, 0x9e, 0x22, 0xdf, 0x04, 0x2a, 0x11, 0x56, 0xe2, 0x15, + 0x90, 0xe0, 0x74, 0x1f, 0x30, 0x35, 0xec, 0x3e, 0x0d, 0xff, 0x00, 0x82, + 0xa5, 0xf8, 0xd3, 0x4c, 0x54, 0x8f, 0x5c, 0xd2, 0x6c, 0x75, 0x5c, 0x75, + 0x96, 0x3c, 0xc4, 0xc7, 0xf2, 0xe3, 0xf4, 0xaf, 0x82, 0x12, 0xe4, 0x03, + 0xc3, 0x03, 0x4a, 0x2e, 0xf2, 0x78, 0xe4, 0x53, 0xf6, 0x72, 0x5b, 0x33, + 0xa3, 0xeb, 0x57, 0x5a, 0xea, 0x7e, 0xa9, 0xf8, 0x7f, 0xfe, 0x0a, 0xaf, + 0xe1, 0x99, 0xa3, 0x5f, 0xed, 0x6f, 0x0f, 0x5e, 0xda, 0xbf, 0xf1, 0x79, + 0x2c, 0xb2, 0x0c, 0xfe, 0x95, 0xb7, 0xe1, 0x5f, 0xf8, 0x2a, 0x57, 0x82, + 0x35, 0x2d, 0x72, 0x4b, 0x5d, 0x43, 0x47, 0xbd, 0xd3, 0x6c, 0x59, 0xf1, + 0x1d, 0xd0, 0x65, 0x7e, 0x3d, 0x59, 0x78, 0xc7, 0x3e, 0x99, 0xaf, 0xc9, + 0x35, 0xbd, 0xdc, 0x71, 0x9a, 0x94, 0x5e, 0x01, 0x4e, 0xd3, 0xee, 0x67, + 0x2a, 0x94, 0xe7, 0x6b, 0xa3, 0xf7, 0x2a, 0xcb, 0xf6, 0xe1, 0xf8, 0x3f, + 0x7a, 0x81, 0xcf, 0x8b, 0x2d, 0x21, 0x2c, 0x3e, 0xe9, 0x0d, 0x9f, 0xc4, + 0x01, 0x57, 0xec, 0xff, 0x00, 0x6c, 0x8f, 0x85, 0x17, 0x56, 0xa9, 0x27, + 0xfc, 0x25, 0x76, 0x6a, 0x54, 0x81, 0x86, 0x57, 0x07, 0xff, 0x00, 0x41, + 0xaf, 0xc2, 0x7f, 0xed, 0x12, 0xa7, 0x86, 0x39, 0xfa, 0xd0, 0xba, 0xbc, + 0xd8, 0xc7, 0x9a, 0xe3, 0xf1, 0xab, 0xe6, 0x9f, 0x40, 0xbd, 0x2e, 0xa8, + 0xfd, 0xe3, 0x93, 0xf6, 0xad, 0xf8, 0x60, 0x34, 0xe6, 0xb9, 0x5f, 0x13, + 0xda, 0x3a, 0x96, 0xc0, 0xc0, 0x62, 0x7f, 0x2c, 0x56, 0xb9, 0xfd, 0xa3, + 0xbe, 0x1c, 0x34, 0x02, 0x57, 0xf1, 0x6e, 0x9a, 0x11, 0x86, 0x46, 0x6e, + 0x15, 0x6b, 0xf0, 0x1c, 0x6b, 0x13, 0x0f, 0xf9, 0x6c, 0xf8, 0xff, 0x00, + 0x78, 0xd2, 0x36, 0xb5, 0x31, 0xe0, 0xce, 0xe7, 0xfe, 0x04, 0x6a, 0xb9, + 0xa6, 0x3e, 0x6a, 0x3d, 0x99, 0xfb, 0x87, 0xe2, 0x0f, 0xdb, 0x8f, 0xe1, + 0x2e, 0x89, 0x7a, 0x2c, 0x47, 0x89, 0xa2, 0x99, 0xcb, 0x6d, 0x66, 0xb5, + 0x8c, 0xba, 0xa8, 0xcf, 0x24, 0xb7, 0x03, 0xf2, 0xcd, 0x6b, 0x4f, 0xfb, + 0x67, 0x7c, 0x20, 0x8b, 0x38, 0xf1, 0xa6, 0x9c, 0x73, 0xfe, 0xd3, 0x7f, + 0x85, 0x7e, 0x10, 0x36, 0xa6, 0xe7, 0xfe, 0x5a, 0x1f, 0xce, 0x93, 0xfb, + 0x55, 0xf9, 0x3e, 0x6b, 0x7e, 0x74, 0x97, 0x3a, 0x21, 0x7b, 0x2e, 0x66, + 0xde, 0xc7, 0xee, 0x3e, 0xa7, 0xfb, 0x76, 0x7c, 0x1f, 0xd3, 0x62, 0x69, + 0x0f, 0x8a, 0xed, 0x67, 0x2b, 0xfc, 0x31, 0x06, 0x62, 0x7f, 0x4a, 0xe0, + 0xf5, 0x4f, 0xf8, 0x29, 0xef, 0xc2, 0xbb, 0x20, 0xe2, 0x1f, 0xed, 0x2b, + 0xa2, 0xbd, 0x36, 0x5b, 0x0d, 0xac, 0x7e, 0xbb, 0xab, 0xf1, 0xc1, 0xb5, + 0x26, 0x61, 0xcb, 0xfe, 0x66, 0xa3, 0x6b, 0xd2, 0x47, 0x07, 0x35, 0x49, + 0xcc, 0x6e, 0x74, 0xba, 0x44, 0xf7, 0xdf, 0xda, 0xff, 0x00, 0xe3, 0xae, + 0x9b, 0xf1, 0xf7, 0xe2, 0x8c, 0xbe, 0x25, 0xd3, 0x6d, 0xa4, 0xb6, 0xb7, + 0x68, 0x96, 0x20, 0x92, 0x7d, 0xec, 0x28, 0xc6, 0x6b, 0xc5, 0x2c, 0xb5, + 0x69, 0xb4, 0xbb, 0xeb, 0x5b, 0xcb, 0x59, 0x5a, 0x1b, 0x8b, 0x79, 0x16, + 0x58, 0xe4, 0x5e, 0xaa, 0xca, 0x41, 0x04, 0x7d, 0x08, 0xac, 0x97, 0x95, + 0x99, 0x05, 0x44, 0x66, 0x20, 0x75, 0xfc, 0xea, 0x39, 0x05, 0x2a, 0xaa, + 0x4e, 0xec, 0xfa, 0x07, 0xc4, 0x5f, 0xb6, 0xff, 0x00, 0xc5, 0xff, 0x00, + 0x11, 0xdb, 0xac, 0x37, 0x3e, 0x31, 0xbe, 0x89, 0x40, 0xda, 0x7e, 0xcc, + 0x44, 0x45, 0xbe, 0xa5, 0x40, 0xcd, 0x79, 0x7f, 0x88, 0x7e, 0x2a, 0x78, + 0x9f, 0xc4, 0xbb, 0x9f, 0x53, 0xd7, 0x2f, 0xaf, 0x49, 0xea, 0x67, 0x9d, + 0x9b, 0xf9, 0x9a, 0xe2, 0x1a, 0x6e, 0x49, 0xcd, 0x34, 0xbb, 0xb0, 0xc2, + 0x82, 0xdf, 0x4a, 0xa5, 0x4d, 0x75, 0x21, 0xe2, 0x26, 0xf4, 0x4c, 0xbb, + 0x71, 0xa9, 0x49, 0x31, 0x3b, 0xe4, 0x66, 0x3e, 0xe7, 0x35, 0x46, 0xe2, + 0xe8, 0x99, 0x72, 0x33, 0x83, 0x42, 0x5a, 0x5c, 0x39, 0x3c, 0x60, 0xfb, + 0xd4, 0xd1, 0xe8, 0xf7, 0x0e, 0x72, 0x03, 0x37, 0xd0, 0x55, 0xfb, 0x91, + 0xea, 0x67, 0xfb, 0xc9, 0x74, 0x3d, 0xb7, 0xe1, 0xcf, 0x88, 0xa6, 0xb6, + 0xb2, 0x8a, 0x18, 0x9b, 0xe7, 0x78, 0x56, 0x35, 0xcf, 0x4f, 0xbc, 0x2b, + 0xe9, 0xcd, 0x33, 0xc6, 0x52, 0x5b, 0xfd, 0x9a, 0xda, 0x03, 0x89, 0x24, + 0xb6, 0x79, 0x37, 0xff, 0x00, 0x71, 0x94, 0x0e, 0x3e, 0x9c, 0xd7, 0xc3, + 0xbe, 0x1b, 0xd4, 0x6e, 0xf4, 0x7b, 0xb8, 0x8b, 0x16, 0x0a, 0xa4, 0x65, + 0x4f, 0x6e, 0x7b, 0x57, 0xd0, 0xde, 0x17, 0xf1, 0xd1, 0xba, 0xd1, 0xe5, + 0x9e, 0x41, 0x1c, 0x8c, 0x88, 0x51, 0x24, 0x1d, 0x54, 0x1e, 0xb9, 0xa4, + 0x95, 0xe3, 0xa3, 0x36, 0xd6, 0x2d, 0x5c, 0xf2, 0xff, 0x00, 0x8a, 0x97, + 0x82, 0xfb, 0xe2, 0x16, 0xad, 0x2b, 0x00, 0x0b, 0x49, 0x92, 0x31, 0x8e, + 0xc2, 0xb9, 0x29, 0x24, 0x50, 0x84, 0x67, 0x60, 0xf5, 0x15, 0xa1, 0xe3, + 0x9d, 0x45, 0x2e, 0xbc, 0x5f, 0xa9, 0x4a, 0x8d, 0xb9, 0x0b, 0x9c, 0x1f, + 0x5e, 0x2b, 0x92, 0xba, 0xd4, 0x84, 0x60, 0xe5, 0x80, 0x1e, 0xf5, 0xe6, + 0xca, 0x9b, 0x94, 0xd9, 0xd6, 0xa6, 0x94, 0x4b, 0xf3, 0xcd, 0x1e, 0xc3, + 0xb7, 0xe5, 0x1f, 0xde, 0x6a, 0xa8, 0xf2, 0x2c, 0xbb, 0x50, 0xb6, 0x13, + 0xfb, 0xd9, 0xac, 0x8b, 0x8d, 0x55, 0xa6, 0x2a, 0x22, 0x5d, 0xc0, 0x75, + 0x27, 0xa5, 0x53, 0x96, 0xe5, 0xa5, 0x7d, 0xd2, 0x3e, 0x71, 0xd1, 0x47, + 0x4a, 0xde, 0x34, 0x5f, 0x52, 0x79, 0xf5, 0xba, 0x3b, 0xbb, 0x1b, 0x11, + 0xb4, 0x60, 0x87, 0x5a, 0xd1, 0x4b, 0x14, 0x62, 0x36, 0xf0, 0x7f, 0x2a, + 0xc1, 0xf0, 0xee, 0xa7, 0xe6, 0xdb, 0xaa, 0xb2, 0x95, 0x65, 0xe3, 0x22, + 0xba, 0x58, 0x64, 0x69, 0x54, 0x64, 0x6e, 0x1e, 0xd5, 0xe3, 0x57, 0xe6, + 0x8c, 0x99, 0xeb, 0xd3, 0xb3, 0x49, 0x90, 0x49, 0x68, 0xa0, 0x7c, 0xc1, + 0x64, 0xfa, 0xd5, 0x29, 0xb4, 0xf8, 0x64, 0x3c, 0x02, 0x87, 0xd0, 0xf4, + 0xad, 0xe5, 0xb6, 0xf3, 0x31, 0xb0, 0xe3, 0xd8, 0xd2, 0xb6, 0x9c, 0xc4, + 0x64, 0xa6, 0x6b, 0x8d, 0x55, 0xe5, 0x7b, 0x9a, 0xf2, 0x26, 0x73, 0x0d, + 0xa3, 0x92, 0xbc, 0x00, 0xdf, 0x4a, 0x83, 0xfb, 0x31, 0xc3, 0x10, 0x57, + 0x1f, 0x51, 0x5d, 0x58, 0xd3, 0xb2, 0xd9, 0x23, 0x6d, 0x4a, 0x2d, 0x4c, + 0x63, 0xae, 0xef, 0xad, 0x69, 0xf5, 0x96, 0x87, 0xec, 0x91, 0xc7, 0xc7, + 0xa5, 0x3b, 0x37, 0x23, 0xe5, 0xa9, 0xd7, 0x47, 0x52, 0x79, 0x5c, 0x57, + 0x55, 0xe4, 0xc7, 0xde, 0x20, 0x3e, 0x94, 0x8f, 0x6a, 0x83, 0xd5, 0x7e, + 0xa2, 0xa5, 0xe2, 0xa4, 0xca, 0x54, 0xd7, 0x53, 0x9a, 0x1a, 0x62, 0xa9, + 0xe0, 0x66, 0xa7, 0x5b, 0x12, 0xb8, 0xc2, 0x56, 0xe1, 0xb4, 0xf4, 0xda, + 0xd4, 0x9f, 0x67, 0xe3, 0x90, 0x47, 0xd2, 0xa7, 0xdb, 0xb6, 0x35, 0x04, + 0x62, 0xfd, 0x8c, 0x9e, 0x8b, 0x8a, 0x78, 0xb6, 0x95, 0x7b, 0x66, 0xb5, + 0x7e, 0xcf, 0x9f, 0x5f, 0xc6, 0x9c, 0x6d, 0x4f, 0xad, 0x2f, 0x6a, 0x57, + 0x22, 0x32, 0x71, 0x22, 0xf0, 0x47, 0xe9, 0x52, 0x29, 0x6c, 0xf2, 0xbf, + 0xa5, 0x69, 0x0b, 0x53, 0xf5, 0xa9, 0x16, 0x03, 0x8c, 0x15, 0x15, 0x2e, + 0xaa, 0x29, 0x44, 0xcc, 0x55, 0xdd, 0xfc, 0x1f, 0xa5, 0x48, 0xb1, 0x11, + 0xfc, 0x1f, 0xa5, 0x69, 0x88, 0x82, 0xe0, 0x6d, 0xa9, 0x0c, 0x20, 0x8f, + 0xbb, 0x8a, 0xcd, 0xd5, 0x2b, 0x94, 0xcd, 0x11, 0x9c, 0x7d, 0xcf, 0xd2, + 0x9c, 0x21, 0x63, 0xd1, 0x7f, 0x4a, 0xd2, 0x09, 0x9c, 0x7c, 0xa2, 0x9e, + 0x23, 0xc0, 0xfb, 0xa3, 0x35, 0x9f, 0xb4, 0x2a, 0xc6, 0x7c, 0x56, 0xed, + 0x9e, 0x9f, 0xa5, 0x58, 0x4b, 0x77, 0x27, 0xa6, 0x3f, 0x1a, 0xb4, 0x03, + 0x11, 0xfc, 0x20, 0x0a, 0x76, 0xee, 0x3e, 0xf2, 0x8a, 0x87, 0x36, 0xcb, + 0x48, 0x48, 0xa1, 0x3c, 0x64, 0x0a, 0xdd, 0xd2, 0xff, 0x00, 0x74, 0x9d, + 0x71, 0x58, 0xaa, 0xe3, 0x8f, 0x98, 0xfe, 0x15, 0x76, 0xd9, 0xf0, 0x3d, + 0x7e, 0xa6, 0xb3, 0xbb, 0x2b, 0x43, 0xa7, 0xb7, 0xbb, 0x44, 0x38, 0x2d, + 0x9f, 0xa9, 0xab, 0xd1, 0xdf, 0xa6, 0x38, 0x04, 0x9f, 0xa5, 0x72, 0xf1, + 0x4e, 0x7b, 0x10, 0x2a, 0xec, 0x52, 0x39, 0xe4, 0x93, 0xf8, 0xf1, 0x4d, + 0xfb, 0xcb, 0x50, 0x4e, 0xc6, 0xe3, 0x5f, 0x30, 0xcf, 0x44, 0xfc, 0x6a, + 0x09, 0x2f, 0x7c, 0xec, 0xe5, 0x99, 0xbe, 0x95, 0x45, 0x0b, 0x67, 0x39, + 0x00, 0x7e, 0x74, 0xf6, 0x74, 0x41, 0xf3, 0x37, 0xe7, 0x58, 0xc9, 0x23, + 0x65, 0x26, 0x49, 0xe6, 0x1c, 0xf1, 0xfa, 0x54, 0xd1, 0xce, 0x57, 0xaf, + 0xeb, 0x54, 0x85, 0xc7, 0x64, 0x52, 0xdf, 0x87, 0x14, 0xf0, 0xed, 0xb7, + 0x2e, 0x42, 0x56, 0x4c, 0x68, 0xd1, 0x37, 0x61, 0x94, 0x02, 0x78, 0xa6, + 0x89, 0xbe, 0x52, 0x10, 0x67, 0x3f, 0xc4, 0x6b, 0x3d, 0x67, 0x8d, 0x7e, + 0xe2, 0x99, 0x0f, 0xaf, 0xa5, 0x47, 0x35, 0xc4, 0xce, 0x30, 0x0f, 0x3e, + 0x8b, 0x59, 0xda, 0xe3, 0xe6, 0xb1, 0x7e, 0x47, 0x8e, 0x3f, 0xf5, 0xb2, + 0x6e, 0x3f, 0xdd, 0x15, 0x03, 0xea, 0xae, 0xe7, 0x6c, 0x7f, 0x2a, 0xfa, + 0x01, 0x54, 0xd6, 0x30, 0x01, 0x33, 0x1f, 0xc0, 0x1a, 0x6b, 0x5c, 0xc7, + 0x12, 0xe1, 0x70, 0xa3, 0xda, 0xa2, 0xc8, 0x7c, 0xc4, 0xe5, 0xf9, 0xf9, + 0xce, 0x3f, 0xd9, 0x15, 0x13, 0x4b, 0x8f, 0x95, 0x47, 0xe0, 0x2a, 0xa9, + 0xb8, 0x12, 0x37, 0x27, 0x60, 0xf5, 0xa7, 0x2d, 0xc2, 0xe3, 0x11, 0x8e, + 0x3f, 0xbd, 0x4f, 0x94, 0x2e, 0x4b, 0x9d, 0xa7, 0x74, 0x87, 0xe8, 0xa2, + 0x9b, 0x35, 0xc8, 0x4e, 0xbc, 0xb7, 0x65, 0xff, 0x00, 0x1a, 0xab, 0x24, + 0xfc, 0x90, 0xa7, 0x2d, 0xdd, 0xcd, 0x42, 0x08, 0x04, 0xf3, 0x93, 0xdc, + 0xd3, 0xe5, 0x1d, 0xcb, 0x6a, 0xca, 0xe4, 0xbb, 0xb7, 0xcd, 0x4d, 0x6d, + 0xd3, 0xb6, 0xd5, 0xfb, 0xa3, 0xab, 0x54, 0x31, 0x6e, 0x90, 0xfa, 0x27, + 0x73, 0x56, 0x03, 0x8c, 0x6c, 0x4e, 0x31, 0x4e, 0xd6, 0x15, 0xc9, 0x40, + 0x0a, 0xa1, 0x50, 0xe0, 0x77, 0xa5, 0x32, 0x0f, 0xf8, 0x08, 0xfd, 0x6a, + 0xab, 0xce, 0x17, 0xe4, 0x53, 0xc7, 0x73, 0x4d, 0x79, 0xb7, 0x63, 0xb0, + 0x14, 0x58, 0x2f, 0x72, 0x49, 0x65, 0x3f, 0x56, 0x3c, 0x01, 0x46, 0xff, + 0x00, 0x2d, 0x02, 0x0e, 0x5d, 0xbb, 0x9a, 0x89, 0x18, 0x16, 0x2e, 0xdc, + 0x7a, 0x52, 0x6f, 0x21, 0x5a, 0x4c, 0x72, 0x7a, 0x50, 0xa3, 0xd0, 0xa7, + 0x20, 0xb9, 0x94, 0x33, 0xaa, 0x2f, 0x44, 0xeb, 0xf5, 0xa7, 0x2b, 0x88, + 0xd1, 0x89, 0xa8, 0x2d, 0xed, 0xd9, 0xf2, 0xf9, 0x04, 0xf5, 0x23, 0x34, + 0xe9, 0x86, 0x4a, 0xaf, 0xad, 0x53, 0x8e, 0xc8, 0x2f, 0x64, 0x36, 0x11, + 0xba, 0x74, 0x0d, 0xc9, 0xea, 0x69, 0xb7, 0xe3, 0x76, 0x07, 0xae, 0x4d, + 0x4d, 0x6a, 0x00, 0x95, 0xd8, 0xf6, 0x18, 0xa8, 0x2e, 0xd8, 0x34, 0xa4, + 0x0e, 0xcb, 0x54, 0xbe, 0x21, 0x27, 0xa0, 0x5b, 0xff, 0x00, 0xc7, 0xa4, + 0x7e, 0xe3, 0x34, 0x36, 0x72, 0x0f, 0xe9, 0x4f, 0x8b, 0x09, 0x6f, 0x1a, + 0xfa, 0x2e, 0x29, 0x92, 0x9c, 0x26, 0x45, 0x55, 0xef, 0x22, 0x16, 0xc4, + 0xf3, 0xa8, 0x68, 0x9b, 0x1d, 0x48, 0xa4, 0x12, 0x0f, 0x29, 0x09, 0xe8, + 0x39, 0xa7, 0x16, 0xe0, 0x8a, 0x5b, 0x78, 0x56, 0x48, 0x48, 0xcf, 0x4c, + 0x8a, 0x84, 0xec, 0xb5, 0x18, 0xa4, 0x84, 0x62, 0x47, 0x4a, 0x86, 0x64, + 0x02, 0x55, 0x93, 0xd7, 0x83, 0x52, 0x24, 0x8a, 0xeb, 0xb4, 0xf0, 0xc3, + 0x83, 0x4d, 0x71, 0x94, 0x2b, 0x9e, 0x7b, 0x1a, 0x16, 0x8c, 0xab, 0xdc, + 0x66, 0x36, 0x90, 0xfd, 0xbb, 0xfd, 0x2a, 0x45, 0x7f, 0x29, 0xf2, 0x7e, + 0xeb, 0x54, 0x71, 0x1d, 0xe9, 0x82, 0x30, 0x7a, 0x1a, 0x54, 0x1d, 0x63, + 0x3f, 0x85, 0x36, 0xba, 0x30, 0x4c, 0xbe, 0xac, 0x1d, 0x76, 0x9e, 0xf5, + 0x0f, 0x30, 0xb1, 0x52, 0x38, 0xed, 0x4c, 0x85, 0xcf, 0xdc, 0x3c, 0x11, + 0xd0, 0xfa, 0xd4, 0xff, 0x00, 0x2c, 0xab, 0x86, 0xeb, 0xeb, 0x58, 0xdb, + 0x95, 0xd8, 0x2e, 0x3a, 0x39, 0x8c, 0x23, 0x70, 0xe5, 0x0f, 0x55, 0xa6, + 0x5c, 0x43, 0x81, 0xe6, 0x45, 0xca, 0x1e, 0x70, 0x3b, 0x53, 0x15, 0xbc, + 0xb6, 0x28, 0xdf, 0x81, 0xa6, 0xc7, 0x3b, 0x5b, 0x31, 0x1d, 0x63, 0x3d, + 0x45, 0x52, 0x41, 0xe6, 0x46, 0xae, 0x4e, 0x72, 0x45, 0x49, 0x1b, 0x95, + 0x27, 0x1c, 0x83, 0xda, 0x96, 0x68, 0x04, 0x8b, 0xe6, 0x44, 0x73, 0x9e, + 0xd5, 0x4f, 0xcc, 0x2a, 0xdc, 0xe4, 0x55, 0xda, 0xe4, 0xdc, 0xd3, 0x58, + 0xc4, 0x9f, 0x32, 0x60, 0x1a, 0x6b, 0x21, 0x43, 0xdd, 0x1b, 0xf4, 0x35, + 0x55, 0x64, 0x65, 0x21, 0x94, 0xe0, 0xfa, 0x7a, 0xd5, 0xc8, 0x6e, 0x44, + 0xa3, 0x6b, 0x8c, 0x1f, 0x7a, 0x9b, 0x34, 0x55, 0xee, 0x3a, 0x39, 0x09, + 0xf9, 0x5f, 0x19, 0xed, 0x4f, 0xd9, 0x83, 0xd7, 0x06, 0xa3, 0x68, 0x33, + 0xf7, 0x79, 0xf6, 0x35, 0x19, 0x2c, 0x87, 0x03, 0x2b, 0x8e, 0xc6, 0xa6, + 0xc9, 0xea, 0x8a, 0xe6, 0xee, 0x59, 0x2c, 0xc0, 0xf2, 0x33, 0xfc, 0xe8, + 0x57, 0x00, 0xfc, 0xad, 0x83, 0xe8, 0x69, 0x8b, 0x36, 0x54, 0x06, 0x18, + 0x3f, 0xa5, 0x38, 0x44, 0x1c, 0x8e, 0x87, 0xe9, 0x4a, 0xd6, 0xdc, 0x7c, + 0xc3, 0xcc, 0x8f, 0x81, 0x91, 0x9f, 0x75, 0xe2, 0xa7, 0x86, 0x60, 0x78, + 0x27, 0x3e, 0xc6, 0xaa, 0xb2, 0xc9, 0x07, 0x43, 0x91, 0xe9, 0xd6, 0x98, + 0x6e, 0x86, 0x39, 0x43, 0x4b, 0x96, 0xfb, 0x07, 0x35, 0xb7, 0x35, 0x03, + 0xa1, 0xf6, 0xfa, 0xd2, 0x3e, 0x09, 0xf9, 0x79, 0xac, 0xb4, 0x9f, 0x7f, + 0x21, 0xf1, 0xed, 0x52, 0x09, 0x9b, 0x1d, 0x3f, 0x2a, 0x9e, 0x4b, 0x15, + 0x72, 0xd3, 0x92, 0x0e, 0x33, 0x4d, 0x62, 0x7a, 0x12, 0x31, 0x50, 0x09, + 0xc9, 0xeb, 0xc7, 0xd6, 0xa4, 0x0d, 0xbb, 0xb6, 0x7e, 0x94, 0x59, 0xa1, + 0xdc, 0x93, 0xaa, 0xf0, 0xb9, 0xfa, 0x52, 0xae, 0xc1, 0xd4, 0x10, 0x69, + 0xbb, 0xca, 0x8e, 0x01, 0x14, 0x06, 0x39, 0x19, 0x3f, 0x9d, 0x1a, 0x88, + 0x97, 0xca, 0x42, 0x3e, 0xf6, 0x3e, 0xa2, 0x90, 0x43, 0xbb, 0x80, 0xc0, + 0xd4, 0xaa, 0xfb, 0x97, 0x07, 0x69, 0xa5, 0xd8, 0xa1, 0x78, 0x4c, 0x1f, + 0x51, 0x45, 0xda, 0x11, 0x01, 0x89, 0xff, 0x00, 0xc9, 0xa5, 0x30, 0xb3, + 0x0e, 0x87, 0x15, 0x69, 0x10, 0x11, 0x92, 0xa4, 0xfd, 0x29, 0xd8, 0x18, + 0xf9, 0x54, 0x8a, 0x39, 0x84, 0xd1, 0x4f, 0xec, 0xce, 0x7a, 0x66, 0x97, + 0xec, 0xb2, 0x64, 0x63, 0x35, 0x31, 0xdc, 0xad, 0xfd, 0x69, 0xca, 0xec, + 0x1b, 0x39, 0xfd, 0x28, 0xb9, 0x25, 0x6f, 0xb1, 0x3e, 0xee, 0x49, 0xa4, + 0x3a, 0x71, 0x6e, 0xef, 0x57, 0xf2, 0x5b, 0xa9, 0xc5, 0x2a, 0xc4, 0xec, + 0x3a, 0x12, 0x3d, 0xa8, 0xe6, 0x68, 0x56, 0x33, 0x0e, 0x9c, 0xe4, 0x63, + 0x9c, 0x7b, 0x9a, 0x17, 0x4c, 0x65, 0x39, 0x28, 0xbf, 0x52, 0x6b, 0x50, + 0x43, 0x91, 0xc8, 0x2b, 0xf5, 0xa5, 0x36, 0x84, 0x0e, 0x69, 0xf3, 0x36, + 0x2b, 0x19, 0xc6, 0xcf, 0x76, 0x32, 0x51, 0x7e, 0x82, 0xa6, 0x86, 0xc5, + 0xf6, 0xfc, 0x84, 0x9f, 0xf7, 0x45, 0x5d, 0x48, 0x84, 0x7d, 0x08, 0x02, + 0xa6, 0x85, 0xbc, 0xb6, 0xf9, 0x5f, 0x8e, 0xe0, 0x53, 0x49, 0xbe, 0x84, + 0xb3, 0x22, 0x4d, 0x3d, 0xb2, 0x72, 0x85, 0x8f, 0xbd, 0x33, 0xfb, 0x3c, + 0xe7, 0x94, 0x0a, 0x2b, 0xa0, 0x98, 0xa3, 0x0c, 0xa8, 0x2c, 0x7b, 0xe7, + 0x8a, 0xa8, 0xef, 0x83, 0xce, 0x05, 0x69, 0x18, 0xc9, 0x90, 0xcc, 0xb1, + 0xa5, 0xc6, 0x7e, 0xf6, 0x4d, 0x1f, 0xd9, 0xf1, 0x27, 0x38, 0x00, 0x56, + 0x81, 0x1b, 0xba, 0x6e, 0x27, 0xdb, 0xa5, 0x37, 0xec, 0xee, 0x72, 0x48, + 0x0b, 0xfa, 0xd6, 0x96, 0x4b, 0x76, 0x67, 0xca, 0xd9, 0x41, 0xac, 0x37, + 0x03, 0xb1, 0x4e, 0x3d, 0x6a, 0x26, 0xd2, 0x4b, 0xf1, 0xde, 0xb7, 0x20, + 0x85, 0x88, 0xc0, 0x52, 0xd5, 0x7a, 0xdf, 0x4f, 0x18, 0xc9, 0xc2, 0x7b, + 0x56, 0x8a, 0x56, 0xd9, 0x0b, 0x90, 0xe5, 0x17, 0xc3, 0x62, 0x43, 0xf3, + 0xe7, 0xe9, 0x57, 0x2d, 0x3c, 0x0e, 0x97, 0x2d, 0xf7, 0x48, 0x07, 0xb9, + 0xae, 0xb2, 0xce, 0xd6, 0x2d, 0xc0, 0xb6, 0x32, 0x3d, 0x6b, 0x4f, 0xcd, + 0x8e, 0x21, 0x9c, 0xaa, 0x28, 0xee, 0x4e, 0x2b, 0x5b, 0xcf, 0xa3, 0xb9, + 0x2a, 0x31, 0xea, 0x72, 0x2d, 0xf0, 0xea, 0xc5, 0x17, 0xf7, 0xc7, 0x71, + 0xf4, 0xa7, 0x4d, 0xf0, 0x93, 0x41, 0xb8, 0xb6, 0x2d, 0x71, 0x12, 0x0f, + 0x7a, 0xdd, 0xbc, 0xd4, 0xa1, 0x63, 0x88, 0xc1, 0x96, 0x43, 0xd8, 0x74, + 0xac, 0xf9, 0x8d, 0xcd, 0xc9, 0x06, 0x67, 0x2a, 0x9d, 0x90, 0x1a, 0xe8, + 0xa6, 0xaa, 0xf7, 0xb1, 0x9c, 0xe1, 0x49, 0xee, 0xae, 0x72, 0x96, 0xbf, + 0x0a, 0xb4, 0x2d, 0x2b, 0x59, 0x8a, 0xe6, 0xc8, 0xcd, 0x23, 0xc6, 0xdb, + 0x82, 0x86, 0xf9, 0x73, 0x5d, 0xcc, 0x7a, 0x20, 0xb8, 0x19, 0x95, 0x82, + 0xa0, 0xfe, 0x11, 0x50, 0xd9, 0x46, 0xf9, 0x31, 0xa4, 0x7d, 0x7f, 0xcf, + 0x5a, 0xd8, 0x86, 0x31, 0x12, 0xe5, 0x9b, 0x2d, 0xed, 0xd0, 0x57, 0xa2, + 0xb9, 0xe7, 0x1b, 0x49, 0xb7, 0xfd, 0x7e, 0x26, 0x51, 0x8c, 0x21, 0xf0, + 0xab, 0x14, 0x25, 0xd1, 0x62, 0xda, 0x11, 0x23, 0x00, 0x7d, 0x2a, 0xb9, + 0xf0, 0xc4, 0x43, 0x0e, 0xe0, 0x1e, 0x6b, 0x6e, 0x4b, 0xc4, 0x4e, 0xbf, + 0x37, 0xb0, 0xeb, 0x44, 0x11, 0xcb, 0x79, 0x28, 0x6c, 0x61, 0x7d, 0x3d, + 0x2b, 0x48, 0x50, 0xe7, 0xd0, 0x99, 0xd4, 0x51, 0xd5, 0x99, 0x0f, 0xe0, + 0x8b, 0x5d, 0x41, 0x40, 0xf2, 0xc0, 0x73, 0xd3, 0x15, 0x97, 0xa9, 0x7c, + 0x29, 0x54, 0x8c, 0x84, 0x01, 0xdc, 0xf7, 0x22, 0xbd, 0x3f, 0x4f, 0xb5, + 0x16, 0xaa, 0x0f, 0xde, 0x91, 0xaa, 0xf2, 0x43, 0xbc, 0x31, 0x38, 0x20, + 0x72, 0xc4, 0xd7, 0x53, 0xc3, 0xc5, 0xec, 0x8c, 0x3d, 0xa2, 0x3e, 0x76, + 0xd4, 0xbe, 0x1a, 0xad, 0x8a, 0x91, 0x24, 0x00, 0x77, 0x2c, 0x47, 0x5a, + 0xe4, 0xae, 0xbc, 0x0c, 0x92, 0x48, 0xc1, 0x63, 0xc7, 0xb0, 0xaf, 0xa4, + 0xb5, 0xdb, 0x05, 0xbd, 0x24, 0x14, 0xc2, 0x76, 0x15, 0x89, 0x69, 0xe1, + 0x58, 0x9e, 0x6f, 0xba, 0x3e, 0xb8, 0xa7, 0x4b, 0x07, 0x37, 0x27, 0x66, + 0x61, 0x52, 0xb4, 0x12, 0xd5, 0x5c, 0xf9, 0xce, 0xf7, 0xe1, 0xc1, 0x08, + 0x48, 0x8c, 0x8f, 0x4e, 0x2b, 0x1a, 0xef, 0xe1, 0xfd, 0xc4, 0x21, 0x76, + 0x83, 0x93, 0xd8, 0x57, 0xd9, 0x5a, 0x67, 0x80, 0xad, 0xf5, 0x01, 0xe6, + 0x4b, 0x18, 0x11, 0x2f, 0x4c, 0x8e, 0xbe, 0xf4, 0xdb, 0x9f, 0x85, 0x56, + 0x97, 0x72, 0x19, 0x04, 0x40, 0x29, 0x18, 0x5e, 0x3b, 0x57, 0xa5, 0x1c, + 0x2d, 0x65, 0xf0, 0xcc, 0xe0, 0x9c, 0xa8, 0xbd, 0xe2, 0x7c, 0x4b, 0x3f, + 0x84, 0xaf, 0x6d, 0xce, 0x40, 0x3e, 0x83, 0xbd, 0x57, 0x97, 0x40, 0xd4, + 0x22, 0xeb, 0x11, 0xfc, 0xab, 0xec, 0xcb, 0xaf, 0x82, 0x90, 0x49, 0x3f, + 0x09, 0x90, 0x83, 0x71, 0xc5, 0x54, 0x9b, 0xe0, 0x89, 0x90, 0xfe, 0xee, + 0x32, 0x47, 0xa9, 0xa9, 0x94, 0x71, 0x70, 0xe8, 0x99, 0x31, 0xa7, 0x87, + 0x9f, 0x5b, 0x1f, 0x1b, 0x9d, 0x36, 0xee, 0x23, 0xf3, 0x45, 0x4c, 0xfb, + 0x1d, 0xce, 0x49, 0xf2, 0xc9, 0x3e, 0xd5, 0xf5, 0xad, 0xff, 0x00, 0xc0, + 0xa9, 0x95, 0xcb, 0x08, 0x73, 0xb4, 0x74, 0x03, 0xd6, 0xb3, 0xf4, 0xef, + 0x82, 0x72, 0xba, 0x5c, 0x3b, 0x42, 0x3e, 0x5e, 0x39, 0x5a, 0x87, 0x57, + 0x11, 0x15, 0xad, 0x30, 0xfa, 0xad, 0x16, 0xf4, 0x99, 0xf2, 0xb7, 0xd9, + 0x66, 0x5e, 0x7c, 0xb2, 0x3e, 0xb5, 0x1b, 0xc1, 0x2f, 0x64, 0xcd, 0x7d, + 0x35, 0x77, 0xf0, 0x5e, 0x69, 0x67, 0x55, 0x16, 0xea, 0x01, 0xcf, 0x6a, + 0x89, 0x3e, 0x04, 0x5d, 0x36, 0x71, 0x02, 0xe7, 0xe9, 0x55, 0x1a, 0xb5, + 0xdf, 0xfc, 0xbb, 0x21, 0xe1, 0x69, 0x2f, 0xb6, 0x7c, 0xcc, 0x2d, 0x66, + 0x63, 0xc2, 0x1a, 0x53, 0x63, 0x31, 0x3c, 0x29, 0x27, 0xd2, 0xbe, 0x9d, + 0xb2, 0xf8, 0x1f, 0x71, 0x05, 0xce, 0xd9, 0x6d, 0xd4, 0x86, 0x1e, 0x95, + 0x2b, 0x7c, 0x0b, 0x94, 0xdf, 0x95, 0x08, 0x02, 0x90, 0x31, 0x85, 0xeb, + 0x5b, 0xc6, 0x58, 0x99, 0x3b, 0x2a, 0x66, 0x6e, 0x85, 0x05, 0xab, 0x99, + 0xf3, 0x0c, 0x7a, 0x75, 0xcb, 0x9c, 0x08, 0xc9, 0x3f, 0x4a, 0x9e, 0x3d, + 0x16, 0xed, 0xdb, 0xee, 0x30, 0x3f, 0x4a, 0xfa, 0xae, 0xcf, 0xe0, 0x23, + 0x41, 0x75, 0x13, 0x3a, 0x9d, 0xac, 0x76, 0xfd, 0xdf, 0x5a, 0xd2, 0xbe, + 0xfd, 0x9f, 0x9e, 0xde, 0x40, 0xfb, 0x4a, 0xab, 0x71, 0x92, 0x3b, 0xd5, + 0xb8, 0x62, 0xba, 0x24, 0x25, 0x1c, 0x3a, 0xdd, 0x9f, 0x24, 0x8f, 0x0d, + 0xde, 0xbf, 0x05, 0x1a, 0xad, 0x41, 0xe0, 0xdb, 0x89, 0x00, 0x3b, 0x4f, + 0xd0, 0xd7, 0xd1, 0x5a, 0xdf, 0xc3, 0x27, 0xd2, 0xd8, 0xae, 0x01, 0x23, + 0xda, 0xb3, 0x74, 0xdf, 0x09, 0x79, 0x97, 0x4a, 0xac, 0xbf, 0x21, 0x3c, + 0x90, 0x2b, 0xce, 0x9c, 0xf1, 0x4a, 0x5c, 0xb6, 0xd4, 0xee, 0x8d, 0x1c, + 0x3d, 0xb9, 0x8f, 0x17, 0x83, 0xc0, 0x53, 0x30, 0xe1, 0x79, 0xeb, 0x9c, + 0x56, 0xd6, 0x9b, 0xf0, 0xf1, 0xae, 0x23, 0x07, 0xcb, 0x62, 0x47, 0x04, + 0x63, 0xa1, 0xaf, 0xae, 0xbc, 0x2f, 0xf0, 0xc7, 0x42, 0x5b, 0x48, 0x8c, + 0xd6, 0xfb, 0xcb, 0xff, 0x00, 0x13, 0x76, 0x35, 0x76, 0xff, 0x00, 0xc0, + 0x9a, 0x76, 0x99, 0x2f, 0x9f, 0x69, 0x6e, 0x9b, 0x87, 0x0c, 0x98, 0xe1, + 0x87, 0xf8, 0xd7, 0x4b, 0xc2, 0x56, 0x92, 0xf7, 0xa6, 0x66, 0xaa, 0xd2, + 0x8b, 0xf7, 0x62, 0x7c, 0xa9, 0x0f, 0xc3, 0x99, 0x23, 0x5d, 0xcb, 0x01, + 0x04, 0x7a, 0x8e, 0xb5, 0x62, 0x1f, 0x09, 0xed, 0x07, 0x11, 0x60, 0xf7, + 0x18, 0xaf, 0xa3, 0x35, 0x4d, 0x22, 0xde, 0x68, 0x0b, 0xc6, 0xa0, 0x0f, + 0x40, 0x3a, 0x57, 0x15, 0x7f, 0xa4, 0x2c, 0x6e, 0x4a, 0x2e, 0x6b, 0xcf, + 0xa9, 0x43, 0x93, 0x49, 0x3b, 0x9d, 0xf1, 0x92, 0x92, 0xd1, 0x1e, 0x49, + 0x3f, 0x85, 0x21, 0xb8, 0xc2, 0xba, 0x7e, 0x23, 0x82, 0x28, 0xb1, 0xb5, + 0xd4, 0xbc, 0x27, 0x23, 0x4d, 0x6c, 0x4c, 0xd6, 0xe4, 0x72, 0xbe, 0x83, + 0xe9, 0x5e, 0x95, 0x2e, 0x8e, 0xb8, 0x2e, 0xa0, 0x67, 0xbd, 0x52, 0x92, + 0xd0, 0x28, 0xe9, 0xf8, 0x1a, 0x29, 0xd5, 0xa9, 0x87, 0xdb, 0x54, 0x44, + 0xe9, 0xc2, 0xa6, 0xfa, 0x33, 0xe6, 0xcf, 0x11, 0xcd, 0x76, 0xfa, 0xad, + 0xcb, 0xcb, 0x32, 0xe6, 0x46, 0x24, 0x91, 0xc9, 0xac, 0x51, 0x6f, 0xbd, + 0xb3, 0xb1, 0xe6, 0x3e, 0xa6, 0xbe, 0x80, 0xd5, 0x3c, 0x05, 0xa5, 0xde, + 0xdd, 0xbd, 0xcc, 0x96, 0xc0, 0xc8, 0xdc, 0x9c, 0x74, 0xfc, 0xa9, 0x21, + 0xf0, 0x75, 0x84, 0x4b, 0x81, 0x0a, 0x0f, 0xc2, 0xaa, 0xa6, 0x63, 0x18, + 0xfc, 0x31, 0x32, 0x8e, 0x15, 0xf5, 0x67, 0x83, 0xc7, 0xa4, 0x5d, 0x5c, + 0x11, 0xf2, 0xec, 0x53, 0x5a, 0x16, 0xfe, 0x14, 0x62, 0x01, 0x2d, 0x8a, + 0xf6, 0x6b, 0x8f, 0x07, 0x5a, 0x75, 0x45, 0x00, 0xfb, 0x55, 0x23, 0xe1, + 0xa8, 0xe2, 0xe3, 0x6d, 0x72, 0xcb, 0x30, 0x9c, 0x97, 0xba, 0x74, 0xc7, + 0x0f, 0x1e, 0xa7, 0x05, 0xa3, 0xe9, 0xdf, 0x60, 0x6d, 0xac, 0x0e, 0x0d, + 0x75, 0x96, 0x76, 0x91, 0xb0, 0x0c, 0x06, 0x0d, 0x68, 0x26, 0x8b, 0x16, + 0x7e, 0xed, 0x59, 0x8b, 0x4b, 0x2a, 0x7e, 0x55, 0xc0, 0xaf, 0x3a, 0xad, + 0x59, 0x55, 0x77, 0xea, 0x76, 0xc1, 0x28, 0xab, 0x15, 0xa3, 0x88, 0x28, + 0xe5, 0x41, 0x15, 0x38, 0x4c, 0x71, 0xca, 0xd5, 0xa1, 0x6a, 0x54, 0xf2, + 0xb9, 0x1e, 0xd4, 0xf1, 0x1a, 0xaa, 0x9c, 0x9c, 0x63, 0xb1, 0xae, 0x7f, + 0x67, 0x27, 0xb9, 0x6a, 0x48, 0xa6, 0x23, 0xdc, 0xb9, 0x2a, 0x0a, 0xfa, + 0x8a, 0x61, 0x81, 0x5b, 0xd8, 0xfd, 0x2a, 0xea, 0x42, 0x1c, 0xf0, 0xa4, + 0xfb, 0xd4, 0xe6, 0xcd, 0x40, 0xe5, 0x80, 0xf5, 0x06, 0xb2, 0xb5, 0x8a, + 0x46, 0x49, 0xd3, 0xce, 0x72, 0x39, 0xa6, 0x3d, 0x9c, 0xbd, 0xd7, 0x22, + 0xb6, 0x7c, 0x95, 0x4f, 0xb8, 0x33, 0x51, 0x48, 0x18, 0x64, 0x72, 0xbf, + 0x51, 0x50, 0xdb, 0x2c, 0xc9, 0x36, 0xea, 0x10, 0xee, 0x18, 0x3f, 0x4a, + 0x6f, 0xd9, 0x81, 0x19, 0x07, 0x15, 0xa8, 0x18, 0x8e, 0xc1, 0xa9, 0xca, + 0xaa, 0x7a, 0xa7, 0xe5, 0x53, 0xce, 0xd0, 0x25, 0x73, 0x29, 0x6d, 0xce, + 0x7a, 0x9a, 0x97, 0xcb, 0x95, 0x7a, 0x10, 0x47, 0xb8, 0xad, 0x1f, 0x22, + 0x33, 0xc8, 0x05, 0x68, 0xf2, 0x23, 0xfe, 0xf1, 0x1f, 0x8d, 0x4b, 0x9d, + 0xcd, 0x39, 0x4c, 0xd6, 0x8c, 0xe3, 0xe6, 0x55, 0xcf, 0xd2, 0x90, 0x22, + 0xff, 0x00, 0x70, 0x13, 0xed, 0x5a, 0x3f, 0x64, 0x47, 0x3c, 0x3f, 0x1f, + 0x5a, 0x05, 0x88, 0x1c, 0x87, 0xcd, 0x1c, 0xe3, 0xe5, 0x33, 0xcc, 0x63, + 0x19, 0xd9, 0x81, 0x49, 0xb1, 0x7f, 0xbb, 0x57, 0xde, 0xc5, 0x8f, 0x3b, + 0xa9, 0x3e, 0xc6, 0x40, 0xe5, 0x85, 0x1c, 0xc1, 0x62, 0x96, 0xdc, 0x7f, + 0x0d, 0x28, 0x8f, 0x77, 0xf0, 0x81, 0x56, 0xfe, 0xcd, 0xcf, 0x2c, 0x28, + 0x58, 0x76, 0x8f, 0xbc, 0x29, 0xf3, 0x05, 0x8a, 0xbf, 0x66, 0xdf, 0xc1, + 0xc0, 0xfa, 0x0a, 0x7a, 0x59, 0xa8, 0x1c, 0xd5, 0x81, 0x1a, 0xff, 0x00, + 0x7f, 0xf2, 0xa4, 0xe0, 0x77, 0x24, 0x7b, 0x51, 0x76, 0xc3, 0x41, 0xab, + 0x6e, 0x8b, 0xef, 0xf5, 0xa9, 0xe2, 0x11, 0xa7, 0x38, 0x14, 0xc5, 0x50, + 0x4f, 0xdc, 0x27, 0xeb, 0x53, 0x46, 0x19, 0x47, 0x0a, 0x07, 0xd4, 0xd2, + 0x19, 0x2a, 0xc8, 0x0f, 0xdd, 0x52, 0x7e, 0x82, 0x9e, 0x25, 0x7c, 0x74, + 0xc7, 0xd4, 0xd4, 0x7b, 0x89, 0xe0, 0xb0, 0x1f, 0x4a, 0x02, 0x8f, 0xf6, + 0x8f, 0xd6, 0x8d, 0x85, 0x72, 0xc0, 0x73, 0xfc, 0x72, 0xff, 0x00, 0xdf, + 0x35, 0x34, 0x73, 0x2a, 0xe0, 0x08, 0x8b, 0x9f, 0xef, 0x35, 0x55, 0x5f, + 0x97, 0xa0, 0x03, 0xf5, 0xa7, 0x89, 0x3d, 0xc9, 0xa4, 0xe4, 0x17, 0xb9, + 0x69, 0xe7, 0x73, 0xc6, 0x42, 0x7b, 0x0e, 0x69, 0x99, 0xc8, 0x39, 0x04, + 0x9f, 0x56, 0xa8, 0x7c, 0xfd, 0xab, 0x92, 0x40, 0x15, 0x13, 0xde, 0x0c, + 0xf1, 0xf3, 0x7d, 0x2b, 0x32, 0xb5, 0x2e, 0x07, 0x01, 0x70, 0x4e, 0x69, + 0xb2, 0x5c, 0xac, 0x63, 0x92, 0x07, 0xb5, 0x66, 0xcb, 0x72, 0xe4, 0x75, + 0xda, 0x3d, 0xba, 0xd4, 0x6a, 0xdb, 0xbe, 0xee, 0x58, 0xfa, 0xf6, 0xa5, + 0xcb, 0x72, 0xb6, 0x2e, 0xb5, 0xcb, 0x4b, 0xd0, 0x60, 0x7a, 0x9a, 0x88, + 0x0d, 0xce, 0x71, 0x97, 0x3e, 0xd4, 0xd0, 0x55, 0x00, 0xf3, 0x1f, 0x3f, + 0xec, 0x8a, 0x6b, 0xdc, 0x92, 0xb8, 0x4f, 0xdd, 0xaf, 0xb7, 0x5a, 0x2c, + 0x3b, 0x93, 0x3a, 0xc4, 0x99, 0xf3, 0x0e, 0x5b, 0xb2, 0x0a, 0x86, 0x49, + 0x77, 0x8c, 0x0e, 0x07, 0xa0, 0xa6, 0x0c, 0x63, 0x35, 0x0b, 0x4c, 0x01, + 0x21, 0x39, 0x3f, 0xa0, 0xaa, 0x4a, 0xe2, 0xbd, 0x89, 0x1e, 0x45, 0x41, + 0x96, 0x38, 0x15, 0x34, 0x30, 0x89, 0x54, 0x31, 0x3f, 0x2f, 0xf7, 0x47, + 0xf5, 0xac, 0xf6, 0xfb, 0xdb, 0x9d, 0xb7, 0x54, 0x91, 0x6f, 0x1f, 0x36, + 0x4a, 0xa7, 0xa7, 0xad, 0x69, 0xec, 0xdb, 0x5a, 0x13, 0xce, 0x8d, 0x06, + 0x72, 0x49, 0x45, 0xc0, 0xc7, 0x53, 0xe9, 0x51, 0xb4, 0xf8, 0x1b, 0x23, + 0xfc, 0x5a, 0xaa, 0x99, 0xf7, 0xf0, 0xbc, 0x2f, 0xaf, 0xad, 0x29, 0x24, + 0x8c, 0x01, 0x81, 0x53, 0xc9, 0x61, 0xa9, 0x5c, 0x90, 0xb8, 0x3c, 0x0a, + 0x44, 0xfd, 0xe3, 0xe7, 0xf8, 0x07, 0xeb, 0x51, 0xaa, 0x99, 0x0e, 0xd0, + 0x70, 0xa3, 0xa9, 0xa9, 0x81, 0x08, 0x31, 0xdb, 0xb5, 0x2b, 0x58, 0xd2, + 0xf7, 0x1e, 0x47, 0x98, 0xdb, 0x47, 0x4e, 0xf4, 0xc9, 0xe4, 0xf9, 0x82, + 0x76, 0x1d, 0xa8, 0x69, 0xc4, 0x48, 0x71, 0xd4, 0xfe, 0xb5, 0x5c, 0x37, + 0x52, 0x4f, 0x34, 0x92, 0xb0, 0xef, 0x72, 0xc2, 0xb8, 0x5e, 0x69, 0x12, + 0x40, 0xee, 0xcd, 0xd8, 0x70, 0x2a, 0xa7, 0x9c, 0xd8, 0xc0, 0x1c, 0xf4, + 0x14, 0xe7, 0x91, 0x61, 0x40, 0xb9, 0xea, 0x71, 0x54, 0xa2, 0x27, 0x23, + 0x4a, 0xdd, 0x48, 0x8c, 0x1f, 0xef, 0x1d, 0xdc, 0xd5, 0x59, 0x79, 0x69, + 0x89, 0xed, 0x91, 0x53, 0x89, 0x42, 0xa5, 0x50, 0x69, 0x77, 0x40, 0xec, + 0x7b, 0x82, 0x6a, 0x22, 0xae, 0xee, 0x17, 0xb1, 0x69, 0x4e, 0x11, 0x7e, + 0x94, 0x4a, 0x01, 0x89, 0xbe, 0x94, 0xcd, 0xdf, 0x2f, 0xd0, 0x52, 0x17, + 0xca, 0x91, 0x47, 0x52, 0x51, 0x65, 0x48, 0x21, 0x4e, 0x3a, 0x8a, 0x4b, + 0x76, 0x31, 0x48, 0xea, 0x7a, 0x1e, 0x6a, 0x38, 0x64, 0x56, 0x81, 0x0e, + 0x79, 0xc5, 0x2e, 0xf2, 0x66, 0x43, 0xd8, 0x8c, 0x51, 0xcb, 0xab, 0x43, + 0xbe, 0x89, 0x84, 0xaa, 0x56, 0x76, 0xc7, 0x43, 0xc8, 0xa7, 0x06, 0xdd, + 0xc1, 0xeb, 0x49, 0x70, 0x4e, 0x11, 0xbb, 0x83, 0x83, 0xf4, 0xa7, 0x04, + 0xdd, 0xc7, 0x19, 0x14, 0x9e, 0xc9, 0x94, 0x9f, 0x42, 0x07, 0x3e, 0x53, + 0xee, 0xe7, 0x0d, 0xc1, 0xfa, 0xd4, 0x8d, 0xf3, 0x28, 0x2b, 0xd4, 0x73, + 0x45, 0xc4, 0x60, 0xae, 0x0f, 0x7a, 0xab, 0x04, 0xc5, 0x4e, 0xd3, 0xd4, + 0x71, 0x56, 0x97, 0x32, 0xba, 0x15, 0xfa, 0x13, 0xb4, 0xbb, 0xc6, 0x73, + 0x87, 0x15, 0x3c, 0x17, 0x02, 0x55, 0xf4, 0x23, 0xb5, 0x56, 0x90, 0x7f, + 0x1e, 0x3e, 0xb4, 0xd0, 0x76, 0x1d, 0xca, 0x79, 0xa1, 0xc5, 0x34, 0x3b, + 0xb6, 0x5f, 0x6c, 0x4a, 0x30, 0xdd, 0x7b, 0x1a, 0x87, 0x25, 0x49, 0x47, + 0xfc, 0x0d, 0x35, 0x2e, 0x55, 0xfa, 0x0f, 0xad, 0x48, 0x59, 0x65, 0x5c, + 0x1a, 0xce, 0xdc, 0xba, 0x31, 0x5f, 0xb0, 0xc0, 0xef, 0x6e, 0x72, 0xa3, + 0x23, 0xf9, 0xd4, 0xc5, 0x22, 0xbb, 0x4d, 0xc3, 0x87, 0xaa, 0xec, 0x4c, + 0x5c, 0x3f, 0x2b, 0xd8, 0xd2, 0x6c, 0xc9, 0x0c, 0x87, 0x1d, 0xf3, 0x56, + 0x17, 0x4c, 0x6b, 0x87, 0x84, 0xe1, 0x87, 0x03, 0xa1, 0xa9, 0x56, 0x42, + 0x71, 0xdc, 0x54, 0x90, 0xdc, 0x2b, 0x1d, 0x93, 0x00, 0x7d, 0xe9, 0xf2, + 0xd8, 0x02, 0x37, 0x42, 0xdf, 0x85, 0x2f, 0x50, 0xbd, 0x85, 0x8e, 0x76, + 0x42, 0x30, 0xd9, 0x03, 0xb1, 0xab, 0x1f, 0x69, 0x8e, 0x5e, 0x1b, 0x03, + 0xd8, 0xd6, 0x3c, 0xf7, 0x7f, 0x64, 0x07, 0x78, 0xc3, 0x55, 0x37, 0xbe, + 0x37, 0x07, 0x93, 0x81, 0x54, 0xa9, 0xb9, 0x6a, 0x27, 0x3b, 0x1b, 0xcd, + 0x73, 0xb3, 0x88, 0xf0, 0x47, 0xbd, 0x46, 0x2e, 0x99, 0x4e, 0x72, 0x53, + 0xe9, 0xd2, 0xb2, 0xa1, 0xb8, 0x2b, 0xd1, 0xb2, 0x3d, 0x0d, 0x59, 0x5b, + 0xc0, 0x07, 0x2a, 0x47, 0xd3, 0xa5, 0x3e, 0x4b, 0x13, 0xcd, 0x72, 0xfa, + 0x5d, 0xc8, 0xa3, 0xfb, 0xc3, 0xd6, 0xa4, 0x5b, 0xb5, 0x63, 0xc8, 0x1f, + 0x88, 0xac, 0xc4, 0x25, 0xce, 0xe5, 0x6d, 0xbf, 0x4a, 0x99, 0x5e, 0x4c, + 0x60, 0xa8, 0x7a, 0x97, 0x14, 0x34, 0xd9, 0xa0, 0x1a, 0x07, 0x3c, 0xae, + 0x0f, 0xb1, 0xa7, 0x88, 0xd3, 0xf8, 0x5f, 0x1f, 0x5a, 0xa0, 0x8e, 0x99, + 0xe7, 0x29, 0x56, 0x54, 0x92, 0x3e, 0x42, 0xad, 0x50, 0xe3, 0x62, 0xd4, + 0x8b, 0x3e, 0x4b, 0x8e, 0x46, 0x1b, 0xe9, 0x4d, 0x28, 0xc3, 0xaa, 0x1f, + 0xc2, 0x84, 0x95, 0x90, 0xfc, 0xca, 0x7f, 0x0e, 0x6a, 0x78, 0xee, 0x94, + 0x37, 0xdf, 0xc6, 0x7b, 0x35, 0x67, 0xcb, 0x22, 0xb9, 0xc8, 0x95, 0xf0, + 0x71, 0xf3, 0x0a, 0x78, 0x7c, 0xf1, 0xbb, 0xf3, 0x15, 0x6e, 0x37, 0x0f, + 0xd9, 0x58, 0x54, 0xd1, 0x5b, 0xc4, 0xe7, 0x2d, 0x16, 0x3d, 0xc5, 0x2b, + 0xf7, 0x2b, 0x98, 0xa0, 0x15, 0x8f, 0x25, 0x83, 0x0a, 0x99, 0x5d, 0x95, + 0x7e, 0xe0, 0xfc, 0x0d, 0x68, 0x0b, 0x0b, 0x77, 0x18, 0x04, 0x8a, 0x0e, + 0x96, 0x87, 0xa3, 0x9a, 0x4a, 0x41, 0x72, 0x92, 0x4c, 0x54, 0x67, 0x6b, + 0x0f, 0xa1, 0xa7, 0x7d, 0xa0, 0x1f, 0xe1, 0x93, 0x3e, 0xb5, 0x34, 0x9a, + 0x59, 0x1d, 0x1a, 0x98, 0x74, 0xf9, 0x3b, 0x3e, 0x2a, 0x94, 0x90, 0x9b, + 0x40, 0x2e, 0x01, 0xc0, 0xfd, 0xe5, 0x28, 0x95, 0x4f, 0x3f, 0x3f, 0xd3, + 0x15, 0x1f, 0xd8, 0xe5, 0x03, 0xef, 0x54, 0x91, 0xd9, 0xcd, 0x8e, 0xa0, + 0xd3, 0x52, 0x42, 0xd0, 0x1e, 0x55, 0x6e, 0xd2, 0x63, 0xd8, 0x54, 0xf1, + 0xdd, 0x15, 0x5d, 0xab, 0xe7, 0x01, 0xe9, 0x8a, 0x8c, 0xda, 0xcd, 0x8e, + 0x48, 0x14, 0xb1, 0x40, 0xc7, 0xef, 0x37, 0xe4, 0x2a, 0x5c, 0x82, 0xcb, + 0xb8, 0x8d, 0x23, 0xb9, 0x3f, 0x2b, 0x91, 0xe8, 0x4d, 0x05, 0xa4, 0x60, + 0x30, 0x83, 0xf1, 0x6a, 0xb0, 0x2c, 0xc7, 0x76, 0x6a, 0x9e, 0x3b, 0x14, + 0xce, 0x4b, 0x1f, 0xce, 0x8e, 0x71, 0xd9, 0x14, 0x42, 0xca, 0x47, 0x58, + 0xd7, 0xf0, 0xcd, 0x2a, 0x89, 0x13, 0xac, 0x84, 0x7b, 0x28, 0xc5, 0x68, + 0x08, 0xad, 0xd0, 0xf4, 0xcd, 0x4e, 0x92, 0xc1, 0x18, 0x1b, 0x11, 0x77, + 0x7b, 0xd3, 0xe6, 0x64, 0xe8, 0x51, 0x48, 0x9d, 0x87, 0x01, 0xd8, 0xfb, + 0xd4, 0xb1, 0x58, 0xbb, 0x0e, 0x14, 0x2f, 0xd6, 0xac, 0xbd, 0xdb, 0x16, + 0xec, 0x07, 0xb0, 0xa8, 0x7e, 0xd0, 0x77, 0x13, 0x9f, 0xca, 0xb5, 0x51, + 0x94, 0xba, 0x19, 0x39, 0x24, 0x4b, 0x1e, 0x9d, 0xc0, 0x2c, 0xff, 0x00, + 0x80, 0xa9, 0x16, 0x08, 0x97, 0xa7, 0x24, 0x7a, 0xd5, 0x5f, 0xb5, 0x11, + 0x9e, 0x0f, 0xd4, 0xd5, 0x69, 0xaf, 0x0a, 0x83, 0xf3, 0x01, 0x5a, 0x46, + 0x8c, 0xdb, 0x25, 0xd4, 0x46, 0xa1, 0x91, 0x46, 0x71, 0xc7, 0xd2, 0xa1, + 0x7b, 0xf5, 0x8d, 0x7e, 0xf6, 0x7d, 0x87, 0x5a, 0xc7, 0x69, 0xa5, 0x9f, + 0x80, 0x09, 0xf7, 0x3d, 0x29, 0x52, 0x07, 0x6c, 0xee, 0x6f, 0xca, 0xba, + 0xa3, 0x42, 0x31, 0xf8, 0x99, 0x8b, 0xa8, 0xde, 0xc6, 0x80, 0xd4, 0x64, + 0x24, 0xf9, 0x2b, 0x83, 0xea, 0x79, 0xa6, 0x32, 0xcb, 0x70, 0xdb, 0xa4, + 0x72, 0x7f, 0x1a, 0x8e, 0x25, 0x2a, 0x38, 0xe4, 0xfa, 0x9a, 0xb5, 0x0c, + 0x2d, 0x20, 0xc9, 0xae, 0xe8, 0xc6, 0xcb, 0x45, 0xf7, 0x98, 0x39, 0x6a, + 0x49, 0x6c, 0xe1, 0x1b, 0x62, 0x0e, 0xdc, 0xe2, 0xaf, 0xc6, 0xaa, 0xc3, + 0xf7, 0x9c, 0xfd, 0x2a, 0xbc, 0x16, 0x85, 0xf3, 0xc1, 0xe3, 0xd0, 0x56, + 0x4d, 0xde, 0xaa, 0xe6, 0x53, 0x08, 0x04, 0xe0, 0xe3, 0x69, 0xe2, 0xba, + 0x23, 0x49, 0xb7, 0xdc, 0x87, 0x51, 0x58, 0xdc, 0x3a, 0x82, 0xae, 0x56, + 0x3c, 0x60, 0x71, 0x42, 0x5d, 0x49, 0x37, 0x00, 0x93, 0xee, 0x6b, 0x22, + 0xc8, 0x34, 0x8c, 0x0b, 0xb6, 0x7d, 0x87, 0x6a, 0xdf, 0xb4, 0x80, 0x02, + 0x0b, 0x7e, 0x95, 0xdf, 0x1a, 0x7c, 0xae, 0xf2, 0x39, 0xdd, 0x4b, 0xaf, + 0x74, 0x96, 0xd6, 0xd1, 0xa4, 0x90, 0x64, 0x1f, 0xaf, 0xad, 0x74, 0x5a, + 0x7c, 0x21, 0x48, 0x50, 0x2a, 0xa5, 0xa2, 0x09, 0x00, 0x39, 0x18, 0x1d, + 0xab, 0x4d, 0x42, 0x46, 0x01, 0xce, 0x0f, 0x60, 0x3b, 0xd7, 0x54, 0x7d, + 0xed, 0x11, 0x84, 0x9b, 0x8e, 0xac, 0xd4, 0xb6, 0x85, 0x02, 0x65, 0x8e, + 0xd1, 0xeb, 0x53, 0x11, 0xe6, 0x70, 0x3e, 0x54, 0x1d, 0x07, 0xf5, 0x35, + 0x56, 0xd7, 0x2e, 0xc1, 0x9f, 0x90, 0x3a, 0x2f, 0xa5, 0x58, 0x92, 0xe7, + 0x20, 0xaa, 0xf7, 0xae, 0xb8, 0x53, 0x6f, 0x44, 0x73, 0x4e, 0xa2, 0xdd, + 0x95, 0x2e, 0x2d, 0x84, 0x8d, 0xd3, 0x35, 0x6a, 0xc3, 0x48, 0x5b, 0x89, + 0x04, 0x6a, 0x3f, 0xde, 0x3f, 0xd2, 0xa5, 0x8a, 0xdd, 0x9d, 0x82, 0xae, + 0x49, 0x3e, 0x9d, 0xab, 0x6e, 0xce, 0xdc, 0x69, 0xd0, 0xaa, 0x2f, 0x32, + 0xbf, 0x4f, 0xf1, 0xad, 0x5b, 0xe5, 0xf7, 0x62, 0x67, 0x15, 0xcf, 0xef, + 0x48, 0xbb, 0x15, 0x92, 0xa2, 0x25, 0xba, 0x0e, 0x30, 0x37, 0xe3, 0xd3, + 0xd2, 0xb4, 0xbc, 0x85, 0x55, 0x04, 0xaf, 0xca, 0xa3, 0x9a, 0xad, 0x66, + 0x9e, 0x5a, 0x75, 0xdc, 0xdd, 0xcf, 0xa9, 0xab, 0x51, 0xcc, 0x64, 0x95, + 0x22, 0x51, 0x90, 0x39, 0x39, 0x1d, 0xeb, 0xb2, 0x93, 0x67, 0x3d, 0x54, + 0xac, 0x2d, 0xae, 0x97, 0xbd, 0x77, 0x9f, 0xbc, 0xc7, 0x26, 0xae, 0xc1, + 0x60, 0x88, 0xf9, 0x2b, 0xf2, 0x8f, 0x41, 0x53, 0x59, 0x21, 0x27, 0x7e, + 0x3d, 0x80, 0xab, 0x57, 0x12, 0x32, 0xae, 0xd5, 0xfb, 0xc4, 0xed, 0xfc, + 0xeb, 0x59, 0x2b, 0xb3, 0x05, 0x2b, 0x19, 0xd7, 0xb6, 0x31, 0x8b, 0x19, + 0x66, 0xc7, 0xdf, 0x27, 0x07, 0xdb, 0xb5, 0x66, 0x69, 0x9a, 0x60, 0xfe, + 0xcf, 0xfb, 0xbf, 0xeb, 0x18, 0xb7, 0x4e, 0xd5, 0xb7, 0xe2, 0x09, 0x42, + 0xd8, 0x2d, 0xbc, 0x5f, 0xc2, 0x31, 0x8a, 0x21, 0x8b, 0xc8, 0x8e, 0x28, + 0xb9, 0xc2, 0x80, 0x30, 0x2a, 0xf9, 0x15, 0x89, 0xe7, 0x7c, 0xc6, 0x0c, + 0x9a, 0x22, 0x1b, 0xa8, 0x7e, 0x55, 0xfb, 0xad, 0xc7, 0xe5, 0x57, 0xec, + 0xb4, 0x64, 0x5f, 0x98, 0x46, 0x0f, 0x1d, 0xea, 0xf3, 0x46, 0x0d, 0xe2, + 0x00, 0x3f, 0x80, 0xfe, 0xb5, 0x7f, 0x4f, 0xb7, 0xf3, 0x14, 0xe6, 0xb5, + 0x84, 0x51, 0x94, 0x99, 0x95, 0x71, 0xa4, 0x44, 0x4c, 0x2e, 0xd0, 0xa8, + 0x2c, 0xe0, 0x63, 0x1d, 0x32, 0x2a, 0x85, 0xd5, 0x94, 0x50, 0x8b, 0x67, + 0x31, 0x00, 0x55, 0x8a, 0x13, 0x8f, 0x5f, 0xff, 0x00, 0x55, 0x75, 0x5a, + 0x95, 0xaa, 0xdb, 0x58, 0x1b, 0x87, 0x19, 0xf2, 0xca, 0xbe, 0x3e, 0x86, + 0xb3, 0x7c, 0x41, 0x6e, 0xcd, 0x6b, 0x72, 0x23, 0x00, 0x82, 0x03, 0xa7, + 0x1d, 0x0f, 0x5a, 0xde, 0xd6, 0x33, 0x4e, 0xe6, 0x74, 0xa6, 0x1f, 0xb2, + 0x30, 0x31, 0x8d, 0xcb, 0xc7, 0x03, 0x9a, 0x9b, 0x52, 0x58, 0x35, 0xbd, + 0x02, 0x39, 0x13, 0x01, 0xd9, 0x33, 0x81, 0xd5, 0x48, 0xaa, 0xa9, 0x71, + 0x1c, 0xd0, 0xa4, 0x88, 0x77, 0x6e, 0x1c, 0xd5, 0x2b, 0x39, 0xcd, 0xad, + 0xd4, 0xb6, 0xdb, 0xbf, 0x77, 0x26, 0x5d, 0x07, 0xbf, 0x7a, 0xce, 0x7a, + 0x14, 0x8e, 0x27, 0xc4, 0x36, 0x11, 0x5e, 0xc3, 0xb8, 0x81, 0xe6, 0x0f, + 0x95, 0xbd, 0x8d, 0x73, 0x76, 0x3a, 0x1a, 0x47, 0x21, 0xca, 0x82, 0xb5, + 0xda, 0xf8, 0x82, 0xcd, 0xad, 0xee, 0x99, 0x8f, 0x11, 0xb9, 0xe4, 0x7b, + 0xfa, 0xd6, 0x5c, 0x10, 0x94, 0x23, 0x1e, 0xb5, 0xe7, 0x4e, 0x29, 0xcb, + 0x98, 0xed, 0x8c, 0x9f, 0x2f, 0x2b, 0x34, 0x74, 0x6b, 0x95, 0x86, 0x36, + 0xb6, 0x7c, 0x1c, 0x0f, 0xcc, 0x7a, 0xd4, 0xf3, 0x4f, 0xbf, 0x31, 0xb3, + 0x61, 0xb1, 0xf2, 0xb7, 0xad, 0x67, 0x4a, 0x98, 0x0a, 0xe0, 0xed, 0x61, + 0xc8, 0x23, 0xb5, 0x06, 0x71, 0x75, 0x1e, 0x1b, 0xe5, 0x75, 0xfc, 0xc1, + 0xf5, 0xad, 0x2f, 0xa1, 0x9e, 0xa6, 0x5e, 0xa7, 0x1b, 0x47, 0x23, 0x32, + 0x0e, 0xbf, 0x79, 0x7d, 0x6b, 0x06, 0xe9, 0x63, 0x90, 0x96, 0x1f, 0xa8, + 0xae, 0x96, 0x79, 0x0c, 0xbf, 0xbb, 0x93, 0x1b, 0xc7, 0x43, 0xeb, 0x58, + 0x5a, 0x85, 0x9e, 0x72, 0xc0, 0x95, 0x6f, 0x6e, 0xf5, 0xe6, 0xd7, 0x4a, + 0x47, 0x75, 0x16, 0xe2, 0x73, 0xf7, 0x11, 0x2a, 0x9c, 0x8c, 0xad, 0x65, + 0xdd, 0x40, 0xac, 0x3a, 0x73, 0xfa, 0x56, 0xe3, 0xaa, 0xb6, 0x55, 0xba, + 0x8e, 0xc6, 0xaa, 0x5c, 0x44, 0x17, 0xa7, 0x4a, 0xf3, 0x1c, 0x6d, 0xa3, + 0x3b, 0x6f, 0xcd, 0xaa, 0x39, 0xb9, 0xa0, 0x2a, 0x4e, 0x57, 0xf1, 0xaa, + 0x12, 0xc6, 0xb9, 0xc9, 0x18, 0x3e, 0xb5, 0xd0, 0xc9, 0x0b, 0xc8, 0xc5, + 0x52, 0x33, 0x26, 0x7b, 0x0e, 0xb5, 0x9b, 0x7d, 0x60, 0xf6, 0xe0, 0x96, + 0x43, 0x11, 0xfe, 0xeb, 0x0c, 0x1a, 0xc2, 0x54, 0x63, 0x2d, 0x52, 0x1a, + 0x9b, 0x89, 0x92, 0xf1, 0x12, 0x46, 0xdc, 0x9f, 0x6a, 0x5f, 0xb2, 0xaa, + 0x1d, 0xd3, 0x10, 0x83, 0xd0, 0x9a, 0xc8, 0xbc, 0xbf, 0x99, 0x26, 0x65, + 0x52, 0x50, 0x03, 0xd6, 0xaa, 0x9b, 0x93, 0x2f, 0xdf, 0x72, 0xc7, 0xeb, + 0x5c, 0x8e, 0x8c, 0x63, 0xab, 0x46, 0xdc, 0xed, 0xe9, 0x73, 0x66, 0x6b, + 0x9b, 0x44, 0x3f, 0xbb, 0x00, 0x9f, 0x6a, 0xaa, 0xf7, 0xb9, 0x3c, 0x44, + 0x71, 0xeb, 0xe9, 0x54, 0x63, 0x23, 0xff, 0x00, 0xd7, 0x53, 0x45, 0x30, + 0x04, 0xf2, 0x2b, 0x29, 0x4e, 0x7d, 0x11, 0xa4, 0x52, 0x27, 0x12, 0x79, + 0xdd, 0x1c, 0x7d, 0x29, 0x63, 0x84, 0x33, 0xe5, 0x97, 0x70, 0x1f, 0x8d, + 0x42, 0xea, 0xae, 0x3e, 0xef, 0xe5, 0x4b, 0x00, 0x96, 0x33, 0xf2, 0x36, + 0x3e, 0xb5, 0xcb, 0xbe, 0xe6, 0xd7, 0x26, 0x93, 0x73, 0x67, 0x69, 0xd9, + 0xec, 0x2a, 0x09, 0x12, 0x41, 0xd7, 0x06, 0xae, 0x07, 0x69, 0x07, 0xce, + 0x80, 0x91, 0xde, 0x97, 0xc9, 0x89, 0xbb, 0xb2, 0x9f, 0x7a, 0x99, 0x6b, + 0xb9, 0x49, 0x94, 0x92, 0x4d, 0xa0, 0xe4, 0x30, 0x3f, 0x4c, 0xd4, 0xb1, + 0xba, 0x3b, 0x0f, 0x9c, 0x13, 0xe8, 0x6a, 0xc8, 0x83, 0x07, 0x0a, 0xe8, + 0xe3, 0xf2, 0xa5, 0xfb, 0x21, 0xcf, 0xcd, 0x16, 0x7e, 0x9c, 0xd7, 0x3b, + 0x48, 0xd5, 0x32, 0x23, 0x68, 0xae, 0x0f, 0x4a, 0x61, 0xb2, 0xda, 0x7e, + 0x50, 0x7f, 0x3a, 0x9b, 0xca, 0x54, 0x38, 0x09, 0xb7, 0xea, 0x29, 0x40, + 0xe3, 0x2a, 0xc4, 0x1f, 0xad, 0x66, 0xd5, 0x8a, 0x4a, 0xe4, 0x06, 0xd3, + 0x1d, 0xcd, 0x1f, 0x64, 0x38, 0x3c, 0x8f, 0xc4, 0x54, 0xe1, 0xdf, 0xbb, + 0x53, 0xbc, 0xe6, 0x27, 0x9d, 0xa7, 0xf0, 0xac, 0xf5, 0x65, 0xd8, 0xaa, + 0x2d, 0x0f, 0x39, 0x00, 0xfe, 0x14, 0x18, 0x30, 0x3e, 0xe8, 0xab, 0x0d, + 0x76, 0xc3, 0x23, 0x62, 0x90, 0x3d, 0xea, 0x0f, 0xb5, 0xbf, 0x52, 0xbf, + 0x86, 0x69, 0x01, 0x03, 0xc2, 0xc7, 0xb0, 0x1f, 0x53, 0x4f, 0xfb, 0x30, + 0x03, 0xa2, 0x93, 0xf5, 0xa1, 0xae, 0x32, 0xd9, 0xdb, 0xc7, 0xa5, 0x28, + 0x9d, 0x71, 0xd3, 0x03, 0xd3, 0x35, 0x44, 0xea, 0x47, 0xe4, 0x92, 0x4e, + 0x11, 0x4d, 0x2f, 0x92, 0xc0, 0xfd, 0xd5, 0xa9, 0x1a, 0xe9, 0x47, 0x45, + 0xa8, 0x8d, 0xd9, 0xea, 0x05, 0x34, 0xc2, 0xcc, 0x5c, 0x10, 0xd8, 0xe0, + 0x7e, 0x14, 0xa5, 0x4f, 0x77, 0xfc, 0xaa, 0x13, 0x72, 0xd9, 0x39, 0x14, + 0xd7, 0xb9, 0x63, 0xce, 0x45, 0x26, 0x3b, 0x13, 0x6c, 0x00, 0xf2, 0x49, + 0xa7, 0x00, 0x9e, 0x9c, 0xd5, 0x33, 0x33, 0x1e, 0xad, 0xc7, 0xb5, 0x33, + 0xcc, 0xf5, 0x62, 0x7e, 0xa6, 0x9d, 0x98, 0xcb, 0xe6, 0x65, 0x41, 0xc9, + 0x00, 0x54, 0x2f, 0x78, 0x83, 0xa3, 0x67, 0xe9, 0x54, 0x98, 0x86, 0x3c, + 0x0a, 0x4d, 0xa7, 0xd0, 0x0f, 0xa9, 0xa6, 0xa2, 0x2b, 0xa2, 0xc3, 0x5e, + 0x73, 0xc0, 0xfc, 0xe9, 0x86, 0xe1, 0xcf, 0x56, 0xc0, 0xf6, 0xa8, 0x4e, + 0x07, 0x56, 0xfc, 0xaa, 0x33, 0xb4, 0x9e, 0x84, 0x9f, 0x7a, 0xbe, 0x50, + 0xe6, 0x27, 0xfb, 0x40, 0xcf, 0x52, 0xc7, 0xdb, 0x9a, 0x3c, 0xe7, 0xea, + 0x00, 0x41, 0xea, 0x79, 0xa8, 0x4b, 0x05, 0x1c, 0x9c, 0x7d, 0x28, 0xf3, + 0x54, 0xf2, 0x06, 0x7d, 0xcd, 0x16, 0x43, 0xe6, 0x26, 0x0f, 0xb9, 0xb3, + 0xf7, 0xfe, 0xbd, 0x2a, 0x66, 0x99, 0x80, 0xc6, 0x71, 0xec, 0x2a, 0xa1, + 0x9c, 0x2f, 0x7a, 0x69, 0xb8, 0xdd, 0xd3, 0x9f, 0x7e, 0xd4, 0xb9, 0x5b, + 0x15, 0xec, 0x5a, 0x0c, 0xbe, 0xb5, 0x1c, 0xb7, 0x69, 0x17, 0x53, 0x93, + 0xe8, 0x2b, 0x2e, 0xee, 0xf5, 0xd5, 0xf6, 0x86, 0x18, 0xf6, 0xaa, 0xbf, + 0x68, 0xc9, 0xf5, 0x3e, 0x82, 0xba, 0x21, 0x87, 0x6f, 0x56, 0x66, 0xea, + 0xdb, 0x44, 0x6a, 0xbd, 0xeb, 0x49, 0xc1, 0x3b, 0x47, 0xa0, 0xa6, 0xc7, + 0x3f, 0xcd, 0xb5, 0x79, 0xaa, 0x08, 0xbb, 0xb9, 0x76, 0xda, 0x3d, 0x05, + 0x4a, 0xb7, 0x1b, 0x70, 0x23, 0xc6, 0x3d, 0x6b, 0x7f, 0x67, 0x18, 0xec, + 0x47, 0x33, 0x91, 0xa2, 0xa5, 0x63, 0xc3, 0x39, 0xdc, 0xdd, 0x85, 0x49, + 0xe6, 0x19, 0xd8, 0x06, 0xc8, 0x5f, 0x4a, 0xce, 0x47, 0xc3, 0x65, 0x8e, + 0x4f, 0xa9, 0xa9, 0xd6, 0x7d, 0xbc, 0x83, 0xf8, 0xd6, 0x32, 0xbd, 0xcd, + 0x52, 0x35, 0xd6, 0xdd, 0x51, 0x46, 0x31, 0x9a, 0x8d, 0xbe, 0x76, 0x28, + 0xa7, 0x00, 0x75, 0x6a, 0xaf, 0x6b, 0x7f, 0xe6, 0x7c, 0xac, 0x70, 0xbf, + 0xde, 0xf5, 0xab, 0x5e, 0x62, 0x79, 0x65, 0xb2, 0x02, 0x8a, 0xc5, 0xab, + 0x7a, 0x9a, 0x21, 0xa3, 0xf7, 0x69, 0x8c, 0xe1, 0x45, 0x31, 0x1b, 0x24, + 0xc8, 0xdc, 0x0e, 0xc3, 0xd2, 0x93, 0x26, 0x57, 0x04, 0x8c, 0x27, 0xa5, + 0x45, 0x2c, 0x9e, 0x63, 0x61, 0x7e, 0xe0, 0xfd, 0x6a, 0x1c, 0x4b, 0xb8, + 0x49, 0x2e, 0xf3, 0xbc, 0x9e, 0x3b, 0x54, 0x62, 0x43, 0x27, 0x02, 0x87, + 0xc7, 0x4a, 0x86, 0x45, 0x28, 0xa3, 0x69, 0xe4, 0x9e, 0x39, 0xa4, 0x95, + 0xc7, 0x7b, 0x13, 0xc2, 0xbb, 0xa5, 0xcf, 0x65, 0xfe, 0x75, 0x2c, 0x48, + 0x27, 0xb8, 0x39, 0xfb, 0xaa, 0x29, 0x87, 0xfd, 0x1e, 0xdf, 0x93, 0x93, + 0x8e, 0x7e, 0xb4, 0x45, 0x94, 0x8c, 0x0e, 0x8c, 0xdc, 0x9c, 0x52, 0x7d, + 0xc9, 0x5b, 0x96, 0xae, 0x1b, 0xcb, 0xb7, 0x61, 0xd7, 0x3c, 0x0a, 0xa9, + 0x2f, 0xfc, 0x7b, 0x90, 0x3b, 0xf1, 0x4e, 0xb9, 0x90, 0xb4, 0x91, 0x46, + 0x0f, 0x1f, 0x78, 0xd4, 0x72, 0xf2, 0xc8, 0x0f, 0xae, 0x68, 0x82, 0xb5, + 0x81, 0xbd, 0xc9, 0x4c, 0x83, 0x02, 0x96, 0x36, 0xf9, 0x79, 0xef, 0x4c, + 0xc6, 0x54, 0x7d, 0x29, 0xc3, 0xb5, 0x4b, 0x2d, 0x13, 0x40, 0xb9, 0xb7, + 0x5c, 0x76, 0xa4, 0x69, 0x0e, 0x33, 0xfd, 0xd3, 0x9a, 0x6d, 0x9c, 0x87, + 0xcb, 0x70, 0x7b, 0x31, 0xa9, 0x8a, 0xa9, 0x04, 0x1e, 0xf4, 0x9e, 0x92, + 0xb9, 0x09, 0xe9, 0x62, 0x49, 0x0e, 0xf8, 0xb6, 0xf5, 0x07, 0x90, 0x6a, + 0x38, 0xa4, 0x24, 0x67, 0x3f, 0x30, 0xe0, 0xd3, 0x2d, 0x9c, 0x6d, 0x31, + 0x9e, 0xaa, 0x71, 0x4d, 0x76, 0xf2, 0x27, 0x1f, 0xdc, 0x7e, 0x0f, 0xb1, + 0xa2, 0xdb, 0xc4, 0x2f, 0xb3, 0x26, 0x91, 0x89, 0xe7, 0xae, 0x6a, 0xb3, + 0xc2, 0x48, 0x2e, 0x3e, 0xf0, 0xfd, 0x6a, 0xc8, 0x62, 0x3a, 0xf2, 0x29, + 0x8c, 0xdb, 0x4e, 0x7b, 0x52, 0x8b, 0xe5, 0x7a, 0x14, 0xf5, 0x22, 0x8a, + 0x50, 0xeb, 0xcd, 0x45, 0x3a, 0x98, 0xc6, 0x57, 0x21, 0x7b, 0xfb, 0x53, + 0x66, 0xfd, 0xcb, 0x96, 0x1f, 0x70, 0xfe, 0x94, 0xbe, 0x6f, 0x18, 0x3d, + 0x2b, 0x5b, 0x5b, 0x55, 0xb0, 0x93, 0xbf, 0xa9, 0x1a, 0x33, 0x29, 0xc8, + 0x27, 0x3d, 0x8f, 0xad, 0x59, 0x82, 0x73, 0x29, 0xe0, 0x73, 0xdc, 0x55, + 0x47, 0x62, 0x9c, 0x81, 0x95, 0xf4, 0x15, 0x11, 0x2e, 0x48, 0x96, 0x23, + 0xf3, 0x0e, 0x2a, 0xf9, 0x53, 0x03, 0x64, 0xb1, 0xdb, 0x82, 0x32, 0x29, + 0x8a, 0x9b, 0x73, 0xb4, 0xe0, 0xfa, 0x1a, 0xad, 0x05, 0xe8, 0x93, 0x0a, + 0xe3, 0x6b, 0x55, 0x81, 0x92, 0x78, 0xe6, 0xb0, 0xb3, 0x88, 0x0d, 0x92, + 0x74, 0x52, 0x14, 0xe7, 0x79, 0x38, 0x0a, 0x3a, 0x9a, 0xb9, 0xe2, 0x8d, + 0x13, 0x5b, 0xf0, 0x94, 0x36, 0x52, 0x5e, 0xda, 0x4f, 0x65, 0x15, 0xda, + 0x79, 0x91, 0x79, 0xe9, 0xb7, 0x7a, 0xfa, 0x8a, 0xcc, 0x79, 0x2e, 0x34, + 0xfb, 0xd8, 0xae, 0x22, 0x60, 0xee, 0x87, 0x72, 0x36, 0x3e, 0xe9, 0xab, + 0x3e, 0x26, 0xf1, 0x2e, 0xbb, 0xe3, 0x2b, 0xc4, 0xb9, 0xd5, 0xef, 0xe6, + 0xd4, 0x25, 0x8d, 0x42, 0x21, 0x98, 0xe7, 0x6a, 0xfa, 0x01, 0x5d, 0xf0, + 0xa7, 0x4a, 0x31, 0xbc, 0xb7, 0x39, 0x9d, 0x49, 0xb9, 0x5b, 0xa1, 0x9d, + 0xf6, 0x88, 0xee, 0xe3, 0xc4, 0xc7, 0x2c, 0x7d, 0x6a, 0x16, 0xb2, 0x64, + 0x19, 0x89, 0xf8, 0xf4, 0xa0, 0xd9, 0x98, 0xd4, 0x9c, 0xe0, 0xf7, 0x06, + 0x99, 0x1b, 0x3a, 0x1f, 0x94, 0xf1, 0xe9, 0x53, 0xb7, 0xc2, 0x2f, 0x31, + 0x0c, 0x92, 0x44, 0x46, 0xe5, 0x2a, 0x7f, 0x4a, 0xb3, 0x15, 0xe0, 0xc7, + 0x3c, 0x54, 0x91, 0x5c, 0x82, 0xb8, 0x75, 0x1f, 0x95, 0x3b, 0xec, 0xd0, + 0x4d, 0xc8, 0xf9, 0x4f, 0xb5, 0x66, 0xda, 0xea, 0x8d, 0x13, 0x64, 0xb1, + 0xb2, 0x30, 0xce, 0x70, 0x7d, 0xaa, 0x65, 0x91, 0x94, 0x70, 0xc0, 0x8f, + 0x43, 0x54, 0x24, 0xb5, 0x64, 0xc6, 0xc3, 0x93, 0xed, 0x41, 0x9e, 0x68, + 0x00, 0xdc, 0xa4, 0x8f, 0x71, 0x51, 0xcb, 0x7d, 0x8d, 0x14, 0x97, 0xa1, + 0xaa, 0x93, 0xff, 0x00, 0x79, 0x78, 0xf6, 0xe6, 0xa7, 0x57, 0x8c, 0xf2, + 0x31, 0x9f, 0xca, 0xb2, 0xe0, 0xbf, 0x59, 0x07, 0xcc, 0xb8, 0x3e, 0xd5, + 0x71, 0x26, 0x89, 0xd4, 0xe1, 0x81, 0xf6, 0xac, 0x5a, 0xb7, 0x42, 0xf7, + 0x2f, 0xc6, 0x08, 0xe5, 0x64, 0x3f, 0x4e, 0xb5, 0x20, 0x67, 0x23, 0x1f, + 0x2b, 0xfe, 0x95, 0x42, 0x32, 0xa4, 0xf0, 0xdb, 0x7e, 0x87, 0x15, 0x3a, + 0x16, 0x4e, 0x8e, 0x7f, 0x1a, 0x86, 0x51, 0x6d, 0x0a, 0x83, 0xcc, 0x5c, + 0xfa, 0xad, 0x5a, 0x8a, 0x71, 0x18, 0xc6, 0xf7, 0x41, 0x59, 0xdf, 0x68, + 0x91, 0x7b, 0x03, 0x4e, 0x13, 0xc8, 0x7a, 0xaf, 0xe4, 0x6a, 0x4a, 0x56, + 0x35, 0x96, 0xe9, 0xba, 0x2c, 0xe3, 0xea, 0x79, 0xa7, 0x9b, 0xf9, 0xd7, + 0xfe, 0x5a, 0x21, 0xfc, 0x2b, 0x2b, 0xed, 0x38, 0x18, 0xda, 0x47, 0xe1, + 0x4c, 0x7b, 0x95, 0xc7, 0xdd, 0xfc, 0xc5, 0x25, 0x1e, 0xe8, 0x3d, 0x19, + 0xb2, 0x97, 0xd7, 0x2c, 0xb9, 0x11, 0xab, 0x0f, 0xf7, 0xa9, 0x5b, 0x53, + 0x99, 0x31, 0xba, 0x0f, 0xc9, 0xab, 0x0e, 0x39, 0x94, 0x67, 0x9c, 0x03, + 0xe8, 0x69, 0xc6, 0x55, 0xfe, 0xf1, 0x39, 0xf7, 0xab, 0xe4, 0x5d, 0x84, + 0x6c, 0x1d, 0x5c, 0xf1, 0x98, 0x1b, 0xf3, 0xa5, 0x1a, 0xce, 0x06, 0x3c, + 0xa6, 0xcf, 0xa6, 0x6b, 0x25, 0x70, 0x18, 0x7c, 0xc4, 0x67, 0xde, 0x87, + 0x2a, 0x39, 0x2e, 0x7f, 0x3a, 0x9e, 0x55, 0xd8, 0x0d, 0x31, 0xab, 0xbb, + 0x9f, 0xf5, 0x1f, 0x9b, 0x54, 0xa7, 0x50, 0x90, 0x71, 0xe5, 0x00, 0x3d, + 0x73, 0x58, 0x9e, 0x64, 0x64, 0xe3, 0x71, 0x1f, 0x8d, 0x4a, 0xa3, 0xbe, + 0xfd, 0xc3, 0xeb, 0x4f, 0x95, 0x76, 0x11, 0xaa, 0x75, 0x49, 0x3a, 0x6c, + 0x03, 0xdc, 0x9a, 0x3f, 0xb4, 0x65, 0xe7, 0xe6, 0x51, 0x59, 0x2b, 0x2a, + 0x12, 0x73, 0xda, 0xa4, 0x59, 0x10, 0x0c, 0x84, 0x2c, 0x7d, 0xaa, 0xe3, + 0x4d, 0x6f, 0x62, 0x5c, 0xad, 0xa5, 0xcd, 0x0f, 0xb6, 0x64, 0x7c, 0xd2, + 0x8f, 0x7c, 0x52, 0xc5, 0xa8, 0x47, 0x0c, 0xd9, 0x21, 0xa4, 0x03, 0xb3, + 0x74, 0xaa, 0x0b, 0x29, 0x5e, 0xb0, 0xb7, 0xe2, 0x29, 0x55, 0xdc, 0x9e, + 0x23, 0xeb, 0xef, 0x5b, 0x28, 0xd8, 0xc9, 0xb3, 0x75, 0xb5, 0xb8, 0xe4, + 0x1f, 0xbb, 0xb7, 0x50, 0x7a, 0x73, 0x54, 0xda, 0xfe, 0x49, 0x1c, 0x8f, + 0x95, 0x47, 0xf2, 0xaa, 0x8b, 0x1b, 0xb0, 0xeb, 0xb4, 0x7b, 0x0a, 0x3e, + 0xc4, 0x41, 0xdc, 0x5c, 0x92, 0x6a, 0xe3, 0xca, 0x89, 0x6d, 0xb2, 0xdb, + 0x63, 0xf8, 0xe4, 0x63, 0xed, 0x9a, 0x72, 0x34, 0x4a, 0x7e, 0x41, 0x93, + 0xed, 0x50, 0x24, 0x3d, 0x32, 0x3a, 0x77, 0x35, 0x32, 0xed, 0x5e, 0xfc, + 0xd6, 0xbc, 0xd7, 0x32, 0xd4, 0x7a, 0x3b, 0x3f, 0x1b, 0x30, 0x29, 0xea, + 0x9c, 0xe0, 0xb5, 0x35, 0x70, 0x7a, 0x9c, 0x54, 0x8a, 0x9d, 0xc3, 0x66, + 0xb5, 0x8f, 0x92, 0x21, 0xf9, 0x92, 0x19, 0x62, 0xb3, 0x8c, 0xc8, 0xec, + 0x15, 0x47, 0xad, 0x51, 0x83, 0xc4, 0xca, 0xf3, 0xe2, 0x38, 0x0c, 0x9e, + 0x84, 0xf4, 0xa8, 0xb5, 0x6d, 0x3e, 0x4b, 0xcd, 0xbb, 0x5b, 0x81, 0xfc, + 0x39, 0xeb, 0x51, 0xd8, 0x68, 0xb3, 0x70, 0x15, 0x36, 0xfa, 0x9a, 0xf4, + 0x28, 0x72, 0xa7, 0xcc, 0xf5, 0x39, 0xaa, 0xb7, 0x6b, 0x23, 0xd5, 0xbe, + 0x1d, 0x35, 0xee, 0xbf, 0xac, 0x45, 0x69, 0x63, 0x77, 0x67, 0x6f, 0x70, + 0xcb, 0x90, 0x66, 0x00, 0x28, 0xfc, 0x4d, 0x71, 0x1e, 0x2a, 0xd2, 0xa6, + 0xd2, 0xfc, 0x49, 0x7d, 0x0d, 0xec, 0x8b, 0x2d, 0xc2, 0xc8, 0x77, 0x3a, + 0x10, 0x55, 0x8f, 0xb5, 0x25, 0xae, 0x87, 0xe5, 0x10, 0xe2, 0x76, 0x8a, + 0x41, 0xd0, 0xa1, 0xa8, 0xe5, 0x84, 0x2d, 0xc1, 0xf3, 0x5b, 0xcd, 0x6e, + 0xec, 0xdd, 0x6b, 0xb6, 0x78, 0x98, 0xb5, 0xcb, 0xf9, 0x18, 0x53, 0xa0, + 0xd5, 0xd8, 0xb6, 0x4a, 0x40, 0xc2, 0x0e, 0x3d, 0x4d, 0x74, 0x16, 0x31, + 0x9f, 0xbc, 0xc7, 0x3e, 0xa4, 0xd6, 0x3c, 0x37, 0x11, 0xa8, 0xc2, 0x8d, + 0xc7, 0xf4, 0xab, 0xb1, 0xdc, 0xbb, 0x63, 0x77, 0xdd, 0x1d, 0x85, 0x42, + 0x6e, 0x5b, 0x9b, 0x59, 0x25, 0xa1, 0xbf, 0x0c, 0xe0, 0xe3, 0xca, 0x19, + 0x3f, 0xde, 0xed, 0x5a, 0x76, 0xc4, 0x63, 0x73, 0xfc, 0xcd, 0xea, 0x6b, + 0x9e, 0xb6, 0x98, 0x93, 0x9e, 0x9f, 0x8d, 0x5e, 0x1a, 0x86, 0x00, 0x19, + 0xe3, 0xbd, 0x7a, 0x74, 0x62, 0xda, 0xec, 0x8e, 0x1a, 0xad, 0x27, 0xdd, + 0x9b, 0x7f, 0x69, 0x21, 0x70, 0xb5, 0x66, 0xc9, 0x5d, 0xdc, 0x6d, 0xc9, + 0x35, 0x93, 0x62, 0x8f, 0x75, 0xc7, 0x2a, 0x3d, 0xfb, 0xd7, 0x41, 0x6a, + 0x63, 0xd3, 0x90, 0x6e, 0xf9, 0x9f, 0xf8, 0x56, 0xb7, 0x95, 0x58, 0xc5, + 0x72, 0x40, 0xce, 0x34, 0xa5, 0x27, 0xcd, 0x3d, 0x8d, 0x8b, 0x38, 0xd2, + 0xc9, 0x15, 0x88, 0xdd, 0x23, 0x7d, 0xd5, 0xf5, 0x35, 0x66, 0x29, 0x30, + 0xe5, 0xdb, 0xe6, 0x73, 0xd7, 0x1d, 0xbd, 0x85, 0x63, 0xc7, 0x7c, 0x0b, + 0x96, 0x76, 0xcb, 0x91, 0xf9, 0x7d, 0x2a, 0xc2, 0x5c, 0x84, 0x00, 0xe4, + 0x9c, 0x9e, 0x00, 0xea, 0x4d, 0x44, 0x59, 0xbf, 0x2f, 0x56, 0x6e, 0xc1, + 0x3b, 0x16, 0x55, 0x5f, 0xbe, 0xdd, 0x3d, 0xbd, 0xeb, 0x6a, 0x10, 0xb1, + 0xed, 0x44, 0xe0, 0x01, 0x8c, 0x9e, 0xa4, 0xf7, 0xac, 0x1d, 0x3c, 0xf9, + 0x2a, 0x4b, 0xb8, 0x2e, 0xdd, 0xfd, 0x3d, 0xab, 0x4e, 0x27, 0xf9, 0xf7, + 0x8e, 0x7b, 0x75, 0xae, 0xb8, 0x48, 0xe5, 0x9c, 0x6f, 0xb9, 0xbd, 0x04, + 0x80, 0x2a, 0xae, 0x70, 0x05, 0x13, 0x2a, 0xcb, 0x78, 0xa1, 0x09, 0xc4, + 0x63, 0x73, 0x67, 0xd4, 0xf4, 0xac, 0x93, 0x75, 0xe4, 0x46, 0xd2, 0x31, + 0xe9, 0x4d, 0x82, 0xe1, 0xe2, 0x8b, 0x2c, 0x71, 0x23, 0x9d, 0xcc, 0x73, + 0xde, 0xba, 0x62, 0xd1, 0xcb, 0x28, 0xf6, 0x2d, 0xdd, 0x20, 0xb8, 0xbf, + 0x86, 0x32, 0x46, 0x77, 0x6e, 0x3f, 0x41, 0x5a, 0x12, 0xb8, 0x59, 0x3a, + 0xf6, 0xac, 0x1b, 0x1b, 0xa3, 0x25, 0xf4, 0xb2, 0x93, 0x90, 0x83, 0x60, + 0x39, 0xef, 0xdf, 0xfa, 0x55, 0xc3, 0x3f, 0xef, 0x32, 0x4e, 0x73, 0x57, + 0x29, 0xea, 0x67, 0x1a, 0x77, 0xd5, 0x93, 0xc7, 0x20, 0x6d, 0x49, 0x87, + 0x5d, 0xa8, 0xbf, 0xd6, 0xb4, 0xf4, 0xf6, 0xda, 0x01, 0xdd, 0x81, 0x91, + 0xd7, 0xb5, 0x73, 0xb6, 0x77, 0x83, 0xed, 0xd3, 0xb7, 0x50, 0x30, 0xa3, + 0xf0, 0x15, 0x7a, 0xda, 0xf3, 0x73, 0xb0, 0x27, 0x00, 0xe3, 0x8a, 0xb8, + 0xcc, 0x89, 0x43, 0x53, 0xa3, 0xbb, 0x8d, 0x6e, 0x2c, 0xa6, 0x80, 0xb6, + 0x77, 0xc6, 0x47, 0xe3, 0x5c, 0xf4, 0x37, 0x42, 0xea, 0xc6, 0xd2, 0x46, + 0x6e, 0x0a, 0x00, 0x7d, 0xbd, 0x6a, 0xdf, 0xf6, 0x82, 0xb4, 0x3c, 0x1c, + 0x60, 0xe0, 0xd7, 0x35, 0x67, 0x37, 0xcb, 0x75, 0x6e, 0x4e, 0x04, 0x52, + 0xb6, 0xd0, 0x3b, 0x03, 0xc8, 0xad, 0x3d, 0xa5, 0xc8, 0x50, 0x21, 0xb5, + 0x91, 0x2d, 0xae, 0xae, 0x2d, 0x89, 0xe2, 0x37, 0xc2, 0xfb, 0xa9, 0xe9, + 0x55, 0xb5, 0x29, 0x0e, 0x44, 0x89, 0xf2, 0xc9, 0x1b, 0x6e, 0x5a, 0xa5, + 0xaa, 0x4a, 0xd6, 0xda, 0x8c, 0x33, 0x8f, 0xf5, 0x72, 0xfe, 0xed, 0xcf, + 0xbf, 0x6f, 0xeb, 0x56, 0x2e, 0x5f, 0xcd, 0x4f, 0xeb, 0x51, 0x27, 0xa1, + 0x71, 0x5a, 0x92, 0x6a, 0x42, 0x2d, 0x4e, 0xcd, 0x26, 0xe1, 0x92, 0x45, + 0xc1, 0x03, 0xb5, 0x72, 0xf9, 0x30, 0xca, 0xd0, 0xbf, 0x0e, 0x9d, 0xcf, + 0x71, 0xeb, 0x57, 0x22, 0xb8, 0x36, 0x33, 0x3c, 0x25, 0xbf, 0x75, 0x29, + 0xca, 0xe7, 0xa2, 0xb7, 0xa5, 0x55, 0xd6, 0x62, 0x69, 0xd1, 0x64, 0x8c, + 0xe2, 0x54, 0xe9, 0xef, 0xed, 0x5c, 0x8f, 0x47, 0x63, 0x7d, 0xd0, 0xfd, + 0xca, 0xc8, 0x79, 0xe6, 0xa8, 0xce, 0xdb, 0x7e, 0x65, 0x18, 0x90, 0x75, + 0xcf, 0x43, 0x4c, 0x82, 0xed, 0x1a, 0x2d, 0xf9, 0xda, 0x47, 0xde, 0x5e, + 0xf5, 0x0d, 0xd5, 0xda, 0xbe, 0x7b, 0x8a, 0x97, 0x74, 0x52, 0x57, 0xd4, + 0x59, 0xe5, 0x4b, 0xa8, 0xb8, 0xe1, 0x87, 0x61, 0xd4, 0x1a, 0xc9, 0xbb, + 0xbc, 0x68, 0xb2, 0xb2, 0xfe, 0x0d, 0xeb, 0x4f, 0xb9, 0x90, 0xa1, 0x0e, + 0xa7, 0x07, 0xb5, 0x54, 0x96, 0xe1, 0x6e, 0x94, 0xac, 0x80, 0x06, 0xfe, + 0xe9, 0xef, 0x5c, 0x95, 0x55, 0xd1, 0xd5, 0x4c, 0xcc, 0xbb, 0x65, 0x9a, + 0x4e, 0x1b, 0x0c, 0x3a, 0x11, 0x55, 0xa3, 0x53, 0x2c, 0xdb, 0x5d, 0x82, + 0x20, 0xea, 0xe7, 0xee, 0xe2, 0x92, 0xf2, 0x23, 0x6b, 0x21, 0x78, 0x86, + 0xf1, 0xfd, 0xd2, 0x7a, 0x56, 0x3d, 0xfc, 0xf7, 0x77, 0xa8, 0x52, 0x3c, + 0x2a, 0xe7, 0x90, 0xa7, 0xad, 0x79, 0xce, 0xeb, 0x5d, 0xd1, 0xd2, 0xac, + 0xf4, 0xd9, 0x9d, 0x5d, 0xef, 0xc4, 0x9d, 0x33, 0xc2, 0xd6, 0x26, 0xd3, + 0x45, 0xb2, 0x89, 0xaf, 0x18, 0x62, 0x4b, 0xf9, 0x80, 0x67, 0xff, 0x00, + 0x80, 0x8e, 0xd5, 0xe6, 0xba, 0xbe, 0xb2, 0xfa, 0xb5, 0xc1, 0x9a, 0x59, + 0x1f, 0x79, 0x39, 0x2e, 0x4f, 0x26, 0x92, 0x7f, 0x0f, 0x5c, 0xcd, 0x29, + 0x60, 0x15, 0x07, 0xa1, 0x3c, 0x50, 0x34, 0xcf, 0x24, 0x6c, 0x9d, 0xb1, + 0xe8, 0x07, 0x43, 0x4a, 0x55, 0xb9, 0x95, 0xa2, 0x4a, 0x85, 0xb7, 0x30, + 0x2e, 0x77, 0xf9, 0x84, 0x93, 0xe6, 0x0c, 0xf5, 0xef, 0x50, 0xaa, 0x2b, + 0x9e, 0x38, 0x3e, 0x95, 0xa3, 0x77, 0x0a, 0xc1, 0x31, 0x51, 0xc8, 0xaa, + 0x92, 0xc5, 0x1c, 0xb8, 0xc8, 0xc1, 0xf5, 0x15, 0xc7, 0xcd, 0xdc, 0xda, + 0xcc, 0x84, 0x86, 0x43, 0xd3, 0x23, 0xda, 0x9e, 0xb8, 0x34, 0xa5, 0x08, + 0x5c, 0x07, 0xcf, 0xd6, 0x95, 0x53, 0xa6, 0xe4, 0x3f, 0x87, 0x35, 0x94, + 0x92, 0x7b, 0x1a, 0x2b, 0xa1, 0xe8, 0x0a, 0x80, 0x01, 0xfc, 0x2a, 0x78, + 0xa4, 0x20, 0x1d, 0xcb, 0x8f, 0x71, 0x55, 0xf6, 0x7f, 0x10, 0x3f, 0x85, + 0x4e, 0xb3, 0x6c, 0x07, 0x72, 0x71, 0xea, 0x2b, 0x9a, 0x69, 0x9b, 0x26, + 0x5a, 0x47, 0x40, 0xb8, 0xce, 0x4d, 0x1b, 0xce, 0x0e, 0x39, 0xaa, 0xa6, + 0x65, 0x7e, 0x31, 0x81, 0xfe, 0xd0, 0xa5, 0x08, 0x14, 0x7c, 0xac, 0x47, + 0xd0, 0xd6, 0x0e, 0x1d, 0xcd, 0x13, 0x2d, 0x42, 0xca, 0xe3, 0x91, 0xf8, + 0xd5, 0xa5, 0x01, 0x3e, 0xeb, 0x11, 0xf8, 0xd6, 0x6a, 0x33, 0xa1, 0xe1, + 0xf3, 0xf5, 0xa7, 0xfd, 0xa9, 0xc1, 0xc1, 0x40, 0x71, 0xdc, 0x56, 0x2e, + 0x0c, 0xd1, 0x34, 0x5f, 0x67, 0x93, 0xfb, 0xe0, 0x8f, 0xa5, 0x31, 0x99, + 0x9f, 0x8d, 0xa0, 0x9a, 0x81, 0x2e, 0x94, 0x8e, 0x55, 0x87, 0xe1, 0x9a, + 0x95, 0x6e, 0x22, 0x5e, 0xa7, 0x1f, 0x51, 0x51, 0xc8, 0xcb, 0xb8, 0x6c, + 0xc9, 0xcf, 0x96, 0x33, 0xed, 0x51, 0x38, 0x51, 0xd5, 0x58, 0x54, 0xe6, + 0xe6, 0x33, 0xf7, 0x58, 0x01, 0x4d, 0x79, 0x15, 0xbf, 0x88, 0x11, 0x52, + 0xd5, 0xba, 0x0d, 0x3b, 0x95, 0x1b, 0x60, 0xee, 0xd5, 0x19, 0x40, 0x7a, + 0x37, 0xe7, 0x56, 0xd8, 0x29, 0x5e, 0xd4, 0xcc, 0x13, 0xd3, 0x15, 0x8b, + 0x34, 0x45, 0x52, 0xa0, 0xe3, 0xe6, 0x14, 0x8c, 0x80, 0x71, 0xba, 0xac, + 0x9c, 0x0e, 0xdc, 0xd4, 0x44, 0xee, 0x34, 0x01, 0x5f, 0x60, 0xc9, 0xf9, + 0xe8, 0xd8, 0x9f, 0xde, 0x27, 0xe9, 0x53, 0x33, 0xed, 0xed, 0x51, 0x99, + 0x79, 0xcf, 0x02, 0x80, 0xb0, 0xc2, 0x89, 0xb7, 0xab, 0x13, 0x51, 0xb4, + 0x41, 0x7f, 0x84, 0x9f, 0xa9, 0xa7, 0xb4, 0x84, 0x7a, 0x73, 0x51, 0x99, + 0x33, 0xdc, 0x66, 0xa9, 0x5c, 0x91, 0x8c, 0xa7, 0xb2, 0x8a, 0x69, 0x56, + 0x23, 0x8c, 0x0a, 0x90, 0xbf, 0x1d, 0x7f, 0x2a, 0x8f, 0xcd, 0xc7, 0x62, + 0x6a, 0x95, 0xc9, 0x1a, 0x54, 0x93, 0xc9, 0x3f, 0x85, 0x23, 0x28, 0x1d, + 0xb3, 0xf5, 0xa4, 0x79, 0x5b, 0xb2, 0xfe, 0x66, 0xa2, 0x66, 0x72, 0x7b, + 0x0f, 0xa0, 0xab, 0x49, 0x8a, 0xe4, 0x84, 0xe3, 0xb5, 0x31, 0x8a, 0xe3, + 0x92, 0x05, 0x44, 0xc0, 0x9e, 0x4b, 0x9a, 0x61, 0xd8, 0xa3, 0x9e, 0x69, + 0xa8, 0x8a, 0xe2, 0x48, 0xf9, 0x38, 0x5f, 0x98, 0x7a, 0xe3, 0x8a, 0x7d, + 0xa5, 0xad, 0xcd, 0xf5, 0xc4, 0x70, 0x5b, 0xa3, 0x4b, 0x34, 0x87, 0x6a, + 0xc7, 0x1a, 0x96, 0x66, 0x3e, 0x80, 0x52, 0x07, 0x38, 0xf9, 0x57, 0x35, + 0xee, 0xdf, 0xb2, 0x86, 0xb3, 0xf0, 0xef, 0xc3, 0xde, 0x29, 0xbc, 0xd4, + 0x3c, 0x75, 0x77, 0x3d, 0x8d, 0xd4, 0x51, 0xe6, 0xc2, 0x58, 0xc7, 0xc8, + 0xad, 0xee, 0x7d, 0x6b, 0xaf, 0x0f, 0x4e, 0x35, 0x6a, 0x28, 0x49, 0xd9, + 0x18, 0x56, 0xa9, 0x28, 0x43, 0x9a, 0x0a, 0xec, 0xca, 0xf0, 0x1f, 0xc1, + 0xfb, 0x0d, 0x22, 0xea, 0x3d, 0x53, 0xc7, 0xde, 0x65, 0xae, 0x99, 0x0b, + 0x6e, 0x7b, 0x3d, 0xdb, 0x5d, 0xbd, 0x89, 0xfe, 0x95, 0xce, 0x7c, 0x77, + 0xf1, 0x9f, 0x82, 0xb5, 0xdd, 0x52, 0x2b, 0x4f, 0x05, 0x78, 0x71, 0xb4, + 0x9b, 0x28, 0x78, 0x6b, 0x87, 0xe0, 0xbf, 0xe1, 0xfd, 0x4d, 0x52, 0xf8, + 0xe7, 0xf1, 0x36, 0xef, 0xc6, 0xde, 0x36, 0xd4, 0x4d, 0xa5, 0xdb, 0xdc, + 0x69, 0x29, 0x39, 0xf2, 0x1d, 0x46, 0x3c, 0xc1, 0xd8, 0x9a, 0x5f, 0x86, + 0x3f, 0x15, 0x2c, 0xfc, 0x24, 0xd2, 0x45, 0xad, 0x78, 0x56, 0xc7, 0x5e, + 0xb5, 0x94, 0x61, 0xbe, 0xd2, 0xbf, 0x38, 0xfa, 0x1a, 0xfa, 0x0e, 0x7c, + 0x3d, 0x28, 0xba, 0x51, 0x76, 0xf3, 0xdc, 0xe0, 0x70, 0xaa, 0xa5, 0xce, + 0xfd, 0xe7, 0xf9, 0x1e, 0x60, 0xc7, 0x9e, 0x4e, 0x07, 0xd6, 0x9e, 0xb3, + 0x80, 0x3e, 0x45, 0xfc, 0x6b, 0xa0, 0xf8, 0x91, 0xa9, 0xe8, 0x5a, 0xce, + 0xbe, 0xd7, 0x7a, 0x0e, 0x96, 0xda, 0x4d, 0xb3, 0x8c, 0xb4, 0x05, 0xb2, + 0x03, 0x7b, 0x0e, 0xc2, 0xb9, 0x70, 0xfb, 0x6b, 0xcf, 0x94, 0x52, 0xd2, + 0x2e, 0xe8, 0xeb, 0x57, 0x5b, 0x96, 0x83, 0x96, 0xfb, 0xc7, 0x3f, 0xca, + 0xa6, 0x57, 0xc0, 0xeb, 0x54, 0x7c, 0xe0, 0xb5, 0x34, 0x69, 0x24, 0x83, + 0x3f, 0x71, 0x7d, 0x4f, 0x5a, 0xe6, 0x94, 0x7b, 0x9b, 0x45, 0x96, 0x84, + 0xdc, 0xe0, 0x0c, 0x9f, 0x41, 0x53, 0xc6, 0x84, 0xfd, 0xff, 0x00, 0xfb, + 0xe6, 0xa2, 0x81, 0x16, 0x11, 0xc7, 0x27, 0xb9, 0xa5, 0xf3, 0xcb, 0x12, + 0xa8, 0x32, 0xde, 0xbd, 0x85, 0x73, 0x3d, 0x76, 0x35, 0x4f, 0xb9, 0x74, + 0x48, 0xb1, 0x8c, 0x93, 0xf8, 0x54, 0x91, 0x16, 0x63, 0xb9, 0xce, 0x07, + 0x65, 0xf4, 0xaa, 0x51, 0x81, 0x1f, 0xce, 0xed, 0x93, 0xea, 0x69, 0x1e, + 0xe4, 0xcd, 0xc2, 0xf0, 0x9f, 0xce, 0xb1, 0x71, 0xec, 0x5a, 0x95, 0xcd, + 0x07, 0xbd, 0x32, 0x65, 0x50, 0xe1, 0x3b, 0x9f, 0x5a, 0x67, 0xda, 0x00, + 0x1f, 0x4a, 0xa8, 0x18, 0x6c, 0xee, 0x29, 0x14, 0x7b, 0xd4, 0x72, 0xa2, + 0x93, 0x2c, 0xfd, 0xa0, 0x10, 0x73, 0x4e, 0xb5, 0xcc, 0x8f, 0xbc, 0xe4, + 0xaf, 0xf0, 0x8a, 0xa6, 0xb9, 0x96, 0x42, 0xbd, 0x50, 0x75, 0x3f, 0xd2, + 0xae, 0xb4, 0xe2, 0xda, 0x1d, 0xc7, 0xae, 0x30, 0x05, 0x26, 0xad, 0xa2, + 0xdd, 0x8e, 0xe3, 0xe7, 0x93, 0xcc, 0x9d, 0x63, 0x1d, 0x17, 0x93, 0x53, + 0x46, 0xd9, 0x62, 0x73, 0xc0, 0xaa, 0x11, 0x96, 0x45, 0x2c, 0xc7, 0x2c, + 0xc7, 0x26, 0x96, 0x49, 0x8c, 0x30, 0xb3, 0x67, 0x8c, 0x71, 0xcf, 0x7a, + 0x97, 0x1b, 0xd9, 0x20, 0x4e, 0xda, 0x93, 0x2c, 0xbe, 0x64, 0xd2, 0xbf, + 0x50, 0x3e, 0x51, 0xf8, 0x53, 0xa3, 0x3b, 0xe5, 0xfa, 0x2d, 0x41, 0x02, + 0xf9, 0x71, 0x2a, 0x8e, 0x48, 0xe4, 0x9a, 0x9e, 0xd8, 0x16, 0x12, 0xbf, + 0x6e, 0x94, 0xdd, 0x95, 0xec, 0x1e, 0x44, 0xd9, 0xca, 0x03, 0xed, 0x4b, + 0x9e, 0xf5, 0x08, 0x7f, 0x90, 0x53, 0x5a, 0x43, 0x83, 0x83, 0x59, 0x58, + 0xb4, 0xc9, 0x20, 0xb8, 0x11, 0xc9, 0x2a, 0x1f, 0xad, 0x4e, 0x24, 0x62, + 0x32, 0xb5, 0x98, 0x5b, 0x17, 0x4a, 0x73, 0xf7, 0x96, 0xaf, 0xc2, 0xf8, + 0x52, 0xb9, 0xeb, 0x55, 0x35, 0xd4, 0x84, 0x33, 0xcf, 0xdb, 0x30, 0xed, + 0xbb, 0xf9, 0xd4, 0xf2, 0x2f, 0xda, 0x21, 0xf4, 0x35, 0x05, 0xcc, 0x45, + 0x87, 0xcb, 0xf7, 0x87, 0x22, 0x96, 0xde, 0x57, 0xc0, 0x24, 0xf0, 0x7a, + 0x8f, 0x4a, 0x4f, 0x54, 0xa4, 0x87, 0xd6, 0xc4, 0xb0, 0x4c, 0x64, 0x5d, + 0xad, 0xc3, 0xaf, 0x06, 0xa4, 0xce, 0x78, 0xaa, 0xb3, 0x2b, 0x46, 0xfe, + 0x72, 0xf3, 0xea, 0x07, 0x71, 0x53, 0x2c, 0x9b, 0x80, 0x2b, 0xc8, 0x34, + 0xa4, 0xba, 0xa1, 0x27, 0xd1, 0x8e, 0x75, 0xca, 0x90, 0x45, 0x52, 0x71, + 0xe4, 0x37, 0x20, 0xec, 0x3f, 0xa5, 0x5e, 0x03, 0x70, 0xe4, 0xd4, 0x72, + 0xa0, 0x2b, 0xeb, 0x44, 0x5d, 0xb4, 0x65, 0x15, 0xc1, 0x04, 0x71, 0xd2, + 0x9b, 0xb0, 0x29, 0xca, 0xf0, 0x7b, 0x8e, 0xc6, 0x8f, 0x28, 0xa0, 0x3b, + 0x32, 0x47, 0xa5, 0x34, 0x9c, 0x8e, 0xb5, 0xa6, 0xdb, 0x05, 0xee, 0x23, + 0x48, 0xad, 0xc1, 0x5c, 0x37, 0xa5, 0x49, 0x0c, 0xb2, 0xc5, 0xc0, 0x04, + 0xaf, 0xa1, 0xa8, 0x1b, 0x34, 0xf4, 0xb9, 0x65, 0xe1, 0x86, 0xe1, 0xeb, + 0xde, 0xaa, 0xda, 0x68, 0x26, 0xcb, 0xa2, 0xe5, 0x5f, 0xa9, 0xc1, 0xf4, + 0x34, 0xec, 0xf1, 0xc1, 0xaa, 0x45, 0x96, 0x6e, 0x41, 0x1f, 0xd4, 0x51, + 0xbe, 0x48, 0xcf, 0x07, 0x78, 0xf4, 0x3d, 0x6b, 0x3e, 0x50, 0xb9, 0x6a, + 0x51, 0xbd, 0x08, 0x23, 0x35, 0x8c, 0xce, 0xf0, 0xb9, 0x18, 0xc8, 0xf7, + 0xad, 0x15, 0xb9, 0x52, 0x70, 0x78, 0x3e, 0x86, 0x92, 0x55, 0x8e, 0x6e, + 0xa3, 0x9a, 0xb8, 0x37, 0x1d, 0x19, 0x9c, 0x95, 0xca, 0x2b, 0x74, 0x3f, + 0x8b, 0x8a, 0xb2, 0x93, 0x2b, 0xe3, 0x0d, 0x51, 0xbe, 0x9e, 0x5b, 0x95, + 0x39, 0x15, 0x09, 0xb4, 0x92, 0x33, 0xe9, 0xf4, 0xad, 0xbd, 0xd9, 0x19, + 0xea, 0x8d, 0x34, 0x90, 0xf6, 0x3f, 0x9d, 0x5a, 0x8e, 0x67, 0xc7, 0xcc, + 0xa0, 0x8a, 0xc4, 0x49, 0x65, 0x8c, 0xfa, 0xfd, 0x6a, 0xc4, 0x7a, 0xa3, + 0x29, 0x01, 0xd3, 0xf1, 0x06, 0xb2, 0x95, 0x36, 0xf6, 0x2d, 0x49, 0x1a, + 0x6c, 0x96, 0xf2, 0xf0, 0xcb, 0xb4, 0xfa, 0xe2, 0x90, 0x69, 0xb1, 0x67, + 0x31, 0xca, 0x47, 0xe3, 0x50, 0xc7, 0xa8, 0xdb, 0x3f, 0x05, 0x82, 0x9f, + 0x7a, 0xb5, 0x1b, 0x47, 0x20, 0xe1, 0x94, 0xd6, 0x6d, 0x49, 0x68, 0x68, + 0xad, 0xb8, 0xa2, 0xd6, 0x54, 0xe8, 0x43, 0x54, 0x88, 0x1d, 0x0f, 0xcc, + 0xbc, 0xd2, 0xa2, 0xe3, 0xa1, 0x3f, 0x81, 0xa9, 0x15, 0x9f, 0x1d, 0x73, + 0xf8, 0x56, 0x4c, 0xd2, 0xef, 0xb8, 0x81, 0x9c, 0x9c, 0x02, 0x4f, 0xb6, + 0x29, 0xe2, 0x76, 0x51, 0xf7, 0x4d, 0x4d, 0x1c, 0xcc, 0x84, 0x1d, 0x8b, + 0x9f, 0x5a, 0xb0, 0x6e, 0x4c, 0x98, 0x2d, 0x1a, 0xe2, 0xa7, 0xe4, 0x3b, + 0x95, 0x56, 0xe4, 0x91, 0x4f, 0x32, 0xaf, 0x43, 0x83, 0x52, 0x1f, 0x2c, + 0x8e, 0x62, 0xe3, 0xda, 0xa2, 0x68, 0xad, 0xc9, 0xfb, 0xac, 0x28, 0x49, + 0x30, 0xe6, 0x1c, 0x5a, 0x31, 0xcd, 0x39, 0x5d, 0x00, 0xe0, 0x53, 0x04, + 0x36, 0xe7, 0xbb, 0x53, 0xc5, 0xad, 0xb1, 0xff, 0x00, 0x96, 0x8c, 0x3d, + 0xb3, 0x45, 0x85, 0x7f, 0x21, 0x7c, 0xd1, 0x8e, 0x99, 0x3e, 0x94, 0xbb, + 0xa3, 0x1c, 0x94, 0xdc, 0xc7, 0xda, 0x94, 0xdb, 0xdb, 0x8f, 0xf9, 0x6c, + 0x45, 0x1f, 0x61, 0x81, 0x88, 0x3e, 0x7b, 0x7e, 0x74, 0xd4, 0x6e, 0x2e, + 0x65, 0xd8, 0x63, 0x38, 0x1d, 0x22, 0x14, 0xbe, 0x73, 0x0e, 0x88, 0x05, + 0x49, 0xfd, 0x9f, 0x02, 0x8f, 0xf5, 0xad, 0xf9, 0xd2, 0x26, 0x9f, 0x6f, + 0x8f, 0x9a, 0x46, 0x3f, 0x8d, 0x5f, 0x29, 0x3c, 0xcb, 0xb1, 0x1a, 0x5c, + 0x1d, 0xd9, 0x21, 0x47, 0xd6, 0xae, 0x45, 0x72, 0xa7, 0x93, 0xb6, 0xa1, + 0x6b, 0x1b, 0x50, 0x06, 0x37, 0x37, 0xd6, 0xa1, 0xf2, 0x04, 0x6f, 0x85, + 0x8d, 0x9d, 0x69, 0xa8, 0x5c, 0x4e, 0x68, 0xd0, 0x6b, 0xa8, 0xbb, 0xb0, + 0x14, 0x9f, 0x6b, 0x87, 0x8c, 0x1c, 0x9a, 0xaa, 0x23, 0x19, 0xf9, 0x6d, + 0xf0, 0x7d, 0x4d, 0x4a, 0xb1, 0xcc, 0x06, 0x36, 0x20, 0xfc, 0x6b, 0x45, + 0x08, 0xd8, 0x87, 0x22, 0x53, 0x74, 0x03, 0x61, 0x11, 0x8f, 0xe1, 0xc5, + 0x23, 0x5c, 0x38, 0xea, 0x42, 0x8a, 0x41, 0x13, 0x8e, 0xae, 0xab, 0xf4, + 0x14, 0xe5, 0xb2, 0x8d, 0x8e, 0x5c, 0x96, 0xfd, 0x2b, 0x64, 0x91, 0x37, + 0x04, 0x93, 0x2a, 0x0b, 0x3e, 0x45, 0x4f, 0x1c, 0x8b, 0xdb, 0x2c, 0x69, + 0x42, 0x45, 0x10, 0xc0, 0x55, 0xc7, 0xa9, 0xa6, 0x35, 0xc4, 0x68, 0xe0, + 0xee, 0x0b, 0x8f, 0x4a, 0xd1, 0x79, 0x10, 0xf5, 0xdc, 0xb7, 0x17, 0x98, + 0xd9, 0xdb, 0x1e, 0xdf, 0x76, 0xa9, 0xd6, 0xdb, 0x03, 0x2c, 0xff, 0x00, + 0x82, 0xd5, 0x4f, 0xed, 0x02, 0xff, 0x00, 0x75, 0x49, 0xf7, 0x02, 0x9a, + 0xb7, 0x33, 0x36, 0x73, 0x85, 0xfa, 0xd3, 0xd7, 0x72, 0x4d, 0x78, 0x0c, + 0x31, 0x72, 0x54, 0x37, 0xbb, 0x55, 0xb1, 0x79, 0x06, 0x3e, 0x5c, 0x7d, + 0x05, 0x60, 0x6f, 0x3b, 0x70, 0xec, 0x4f, 0xb5, 0x48, 0x93, 0x18, 0xbe, + 0xe1, 0xc7, 0xe1, 0x5a, 0xab, 0xb6, 0x4e, 0x88, 0xd8, 0x6b, 0x96, 0x63, + 0xf2, 0x0c, 0x7d, 0x6b, 0x36, 0xfe, 0x39, 0x5a, 0x5f, 0x33, 0x04, 0x8f, + 0x7a, 0x6a, 0x5e, 0xb0, 0x23, 0x26, 0xac, 0xa5, 0xf2, 0xb0, 0x39, 0x5c, + 0x8f, 0x53, 0x5d, 0x31, 0x4e, 0xfb, 0x12, 0xda, 0x48, 0xa5, 0x0c, 0xa1, + 0x48, 0x24, 0x96, 0x23, 0xb5, 0x69, 0xc1, 0x75, 0x9c, 0x1c, 0xf5, 0xed, + 0x55, 0x59, 0x62, 0x90, 0xf0, 0x30, 0x4f, 0x71, 0x56, 0x21, 0xd3, 0x1a, + 0x4c, 0x1d, 0xdc, 0x7a, 0x63, 0x15, 0xd5, 0x19, 0x46, 0x3b, 0x98, 0xb5, + 0x29, 0x6c, 0x5f, 0x8a, 0xe3, 0x77, 0xdd, 0x3c, 0xfd, 0x78, 0xad, 0x1d, + 0x3e, 0x03, 0x23, 0x86, 0x66, 0x39, 0x15, 0x8f, 0xe5, 0x8b, 0x46, 0xc2, + 0xfe, 0xf1, 0xbd, 0x07, 0x35, 0x34, 0x77, 0x32, 0xb8, 0x01, 0xce, 0xd5, + 0xf4, 0xad, 0xfd, 0xb4, 0x9a, 0xb2, 0xd8, 0x85, 0x4e, 0x29, 0xdd, 0xee, + 0x75, 0xd1, 0x6a, 0x9e, 0x58, 0x11, 0xc3, 0x86, 0x6e, 0x9b, 0xbb, 0x55, + 0xb8, 0x6f, 0x02, 0xaf, 0xcc, 0x4b, 0x31, 0xea, 0x4d, 0x72, 0xd1, 0x5d, + 0x98, 0xe3, 0x1b, 0x79, 0x1f, 0xca, 0xa6, 0x82, 0xfd, 0x99, 0xf0, 0xbc, + 0xfa, 0xfb, 0x55, 0x45, 0xb4, 0x37, 0xa9, 0xd4, 0x8b, 0x90, 0x8c, 0x0b, + 0x65, 0x98, 0xf4, 0x41, 0xd4, 0xd6, 0xa5, 0x81, 0xd8, 0xde, 0x64, 0x8c, + 0x0b, 0x9e, 0xdd, 0x94, 0x7a, 0x57, 0x39, 0x67, 0x2a, 0xa7, 0x2c, 0x43, + 0xb1, 0xea, 0xc6, 0xb4, 0xad, 0xaf, 0x00, 0x3c, 0x8e, 0x0d, 0x74, 0x46, + 0x57, 0x32, 0x95, 0xd1, 0xd5, 0x47, 0x76, 0x46, 0x07, 0x18, 0xab, 0xa2, + 0xf8, 0xed, 0x1b, 0x7a, 0xd7, 0x2f, 0x1d, 0xf0, 0xce, 0x33, 0x4b, 0x71, + 0xaa, 0x98, 0x42, 0xa2, 0x10, 0xd2, 0xbf, 0x0a, 0x3f, 0xad, 0x75, 0x46, + 0x49, 0xbb, 0x23, 0x07, 0x17, 0x6b, 0xb3, 0xa8, 0x6b, 0xff, 0x00, 0xb4, + 0xce, 0xa8, 0x1b, 0xf7, 0x71, 0x72, 0xde, 0xe7, 0xb0, 0xa5, 0xb9, 0xd4, + 0x8a, 0x44, 0xf2, 0x13, 0xc2, 0x8a, 0xe7, 0x62, 0xba, 0xf2, 0x63, 0x11, + 0xab, 0x1c, 0xf5, 0x27, 0x3d, 0x4d, 0x20, 0xbf, 0x6b, 0xbb, 0xf8, 0xad, + 0xc3, 0x66, 0x38, 0xbf, 0x79, 0x21, 0xf7, 0xec, 0x2b, 0x75, 0x3b, 0x6a, + 0x62, 0xe1, 0x7d, 0x3b, 0x9d, 0x45, 0xa3, 0x1b, 0x6b, 0x44, 0x0e, 0x7f, + 0x78, 0x7e, 0x66, 0xfa, 0x9a, 0x92, 0x6b, 0xac, 0x2a, 0x1d, 0xd8, 0xac, + 0x5b, 0x8d, 0x40, 0x92, 0x06, 0x7a, 0xd5, 0x6b, 0xcd, 0x59, 0x63, 0x84, + 0xb1, 0x3c, 0x28, 0x26, 0x85, 0x36, 0xf5, 0x2b, 0x96, 0xda, 0x1b, 0x3a, + 0x75, 0xd8, 0x0b, 0x2b, 0x06, 0xce, 0xf9, 0x18, 0xe6, 0xad, 0x45, 0x7e, + 0x15, 0x81, 0xcf, 0x56, 0xc7, 0x5a, 0xe5, 0x34, 0xdb, 0xa1, 0xf6, 0x58, + 0xfd, 0x76, 0xd5, 0xc8, 0x6e, 0xd7, 0x38, 0x27, 0xa1, 0xe2, 0xb6, 0x53, + 0xb1, 0xcb, 0x28, 0xdc, 0xe9, 0x3e, 0xda, 0xc1, 0x18, 0x13, 0x8e, 0x4f, + 0xe1, 0x58, 0xd2, 0x5c, 0x88, 0xb5, 0xa3, 0x86, 0xc0, 0x9e, 0x3e, 0x9e, + 0xeb, 0xd7, 0xf9, 0xd5, 0x67, 0xbf, 0xc9, 0x20, 0xb0, 0x3e, 0xf5, 0x8d, + 0xac, 0xdf, 0x18, 0xa3, 0x8e, 0xe9, 0x4f, 0x30, 0x49, 0xb8, 0xff, 0x00, + 0xbb, 0xde, 0x9f, 0x3e, 0xa2, 0xe5, 0x37, 0x35, 0x00, 0x2e, 0x22, 0x92, + 0x22, 0xd8, 0x27, 0x95, 0x3e, 0x8d, 0xd8, 0xd4, 0x50, 0x5f, 0x2d, 0xd5, + 0xb2, 0xbe, 0xed, 0xa7, 0x18, 0x65, 0xf4, 0x35, 0x9a, 0xd7, 0x86, 0xe5, + 0x32, 0xac, 0x32, 0x06, 0x41, 0xcd, 0x63, 0x4b, 0xa8, 0xfd, 0x86, 0xe4, + 0xb6, 0x7e, 0x49, 0x4f, 0x3e, 0xcd, 0xff, 0x00, 0xd7, 0xa9, 0x72, 0xb8, + 0xd4, 0x6c, 0x6c, 0xea, 0x25, 0x27, 0x8d, 0x80, 0x62, 0x47, 0xaf, 0xbd, + 0x67, 0xdb, 0x6a, 0xc2, 0x48, 0xde, 0x09, 0x8f, 0xef, 0x94, 0x63, 0x3e, + 0xa3, 0xd6, 0xa1, 0x6d, 0x62, 0x29, 0x90, 0xa9, 0x60, 0x0d, 0x73, 0xfa, + 0x9d, 0xc6, 0xd9, 0x7c, 0xc4, 0x7c, 0x48, 0xbf, 0x74, 0xd6, 0x3c, 0xd7, + 0xd1, 0x9a, 0x72, 0xdb, 0x54, 0x5e, 0xd4, 0x65, 0x31, 0x4a, 0x66, 0x84, + 0x7c, 0xdf, 0xc4, 0xbf, 0xde, 0xaa, 0x12, 0x6a, 0x0b, 0x38, 0x3b, 0x5b, + 0xea, 0x07, 0x6a, 0xae, 0x9a, 0xca, 0xdd, 0x82, 0x18, 0x6d, 0x94, 0x70, + 0x54, 0xd6, 0x5d, 0xcc, 0xe2, 0x39, 0x5a, 0x48, 0xb8, 0x7e, 0xe3, 0xfb, + 0xd5, 0x6a, 0x56, 0xd1, 0x99, 0xb5, 0xd5, 0x1a, 0x9f, 0x6b, 0xcf, 0xcb, + 0xbb, 0x3e, 0xa2, 0xab, 0xdc, 0xb6, 0xe4, 0x3e, 0xdf, 0x98, 0xac, 0xc3, + 0xa8, 0x2c, 0xa0, 0x94, 0x3b, 0x5b, 0xb8, 0x3d, 0x45, 0x42, 0xd7, 0x65, + 0xd8, 0xe6, 0x4c, 0x03, 0xe9, 0x59, 0xce, 0xcf, 0x62, 0xa2, 0xda, 0x24, + 0x9a, 0xfd, 0xd7, 0x87, 0x24, 0x8f, 0xef, 0x55, 0x29, 0xa5, 0xf3, 0x30, + 0xf1, 0xb6, 0xd6, 0xf5, 0x1d, 0xe8, 0x95, 0xb7, 0x0c, 0x8c, 0xb0, 0xac, + 0xf9, 0xd5, 0x81, 0x26, 0x3c, 0xa9, 0xfd, 0x2b, 0xcd, 0xa9, 0x6b, 0x9d, + 0xb0, 0x65, 0x8f, 0xed, 0x19, 0x13, 0x89, 0x57, 0x1f, 0xed, 0x0e, 0x94, + 0xc9, 0x25, 0x8e, 0x74, 0xc9, 0xc3, 0x03, 0xde, 0xa8, 0x19, 0xdd, 0x49, + 0x12, 0x0d, 0xbe, 0xfd, 0xa9, 0x8c, 0x13, 0xa8, 0x62, 0x84, 0xf7, 0x1d, + 0xeb, 0xce, 0x9c, 0x6c, 0xf5, 0x3a, 0xa2, 0xee, 0x50, 0xd5, 0xb4, 0xe7, + 0x2f, 0xe6, 0x44, 0xc7, 0x1e, 0x95, 0x95, 0xfb, 0xc8, 0xfe, 0xfa, 0x91, + 0xee, 0x39, 0xae, 0x90, 0xc8, 0xea, 0xbc, 0xaf, 0x98, 0xbe, 0xa3, 0xad, + 0x44, 0x44, 0x13, 0xe7, 0xb3, 0x7a, 0x1e, 0xb5, 0x9b, 0x93, 0xb6, 0xba, + 0x8e, 0xda, 0x98, 0xf6, 0xed, 0x1b, 0x91, 0xf3, 0x62, 0xaf, 0x6d, 0x44, + 0x50, 0x17, 0x9e, 0x7a, 0xd3, 0x26, 0xd3, 0xa2, 0x63, 0x90, 0x39, 0xa8, + 0xc5, 0x9c, 0xf1, 0x7d, 0xc7, 0xca, 0xfa, 0x35, 0x61, 0x24, 0x99, 0xa2, + 0xba, 0x26, 0x68, 0x96, 0x41, 0xd9, 0x8d, 0x57, 0xb8, 0xb3, 0xde, 0xb8, + 0xc9, 0xa5, 0x66, 0x96, 0x20, 0x0b, 0x46, 0xc0, 0xfa, 0xaf, 0x34, 0xf1, + 0x74, 0xab, 0x80, 0x5b, 0x0c, 0x7a, 0x83, 0x42, 0x52, 0x43, 0xd1, 0x90, + 0xaf, 0x99, 0x1a, 0x85, 0x08, 0x18, 0x0a, 0x50, 0xcb, 0xfc, 0x68, 0x47, + 0xe1, 0x56, 0x16, 0x40, 0xc7, 0x3c, 0x0a, 0x7c, 0x80, 0x30, 0xe3, 0x1f, + 0x85, 0x4b, 0xd4, 0xb4, 0x54, 0x52, 0x87, 0xee, 0x3e, 0x3f, 0x1c, 0xd3, + 0x80, 0x27, 0xa3, 0x03, 0xf5, 0xa5, 0x30, 0xa9, 0xce, 0x14, 0x54, 0x5b, + 0x15, 0x1b, 0x8e, 0x0f, 0xb5, 0x49, 0x49, 0x16, 0x14, 0xb2, 0x72, 0x57, + 0x3f, 0x43, 0x4b, 0xe7, 0xe7, 0x9d, 0xa7, 0x15, 0x08, 0x2c, 0x9f, 0xf2, + 0xd0, 0x8f, 0x62, 0x69, 0x7c, 0xe6, 0xe9, 0x90, 0x7f, 0x0a, 0xcd, 0xd9, + 0x6e, 0x5a, 0x4c, 0x9f, 0xce, 0x4c, 0x7c, 0xcb, 0xc7, 0xb8, 0xa8, 0xbc, + 0xf4, 0x66, 0x23, 0x67, 0x1e, 0xa4, 0x60, 0x53, 0x91, 0x9f, 0x1f, 0x70, + 0x1a, 0x56, 0x2e, 0x07, 0xdd, 0x19, 0xf4, 0xcd, 0x62, 0xda, 0x1a, 0x4c, + 0x6f, 0xc8, 0x79, 0xc6, 0x29, 0x7e, 0x56, 0xe9, 0x9a, 0x42, 0xef, 0x8e, + 0x63, 0xa6, 0xe7, 0x6a, 0xe7, 0x67, 0x07, 0xb0, 0xac, 0xf4, 0x2b, 0x51, + 0xc6, 0x25, 0xc7, 0x5a, 0x8b, 0x60, 0xa4, 0x2f, 0xcf, 0xdc, 0x6a, 0x6b, + 0x38, 0x1d, 0x54, 0xd2, 0xd0, 0x62, 0x98, 0xd3, 0x9e, 0x73, 0x51, 0xed, + 0x50, 0x3a, 0x0a, 0x5f, 0x31, 0x3f, 0xb9, 0x4c, 0x37, 0x03, 0xfb, 0x83, + 0xf1, 0xa4, 0x30, 0x62, 0x83, 0xd2, 0x98, 0xcc, 0xa0, 0x67, 0x00, 0x53, + 0x5a, 0x6d, 0xdd, 0x14, 0x53, 0x4c, 0x8c, 0x06, 0x30, 0x29, 0xe8, 0x2b, + 0x0e, 0x2f, 0xc6, 0x00, 0xcd, 0x44, 0x4b, 0x02, 0x7e, 0x5a, 0x37, 0xb7, + 0x5c, 0x81, 0x4c, 0x2c, 0xc7, 0xbf, 0x14, 0xd3, 0x42, 0x68, 0x42, 0x1b, + 0x9e, 0x40, 0xa6, 0xb7, 0xbb, 0x81, 0x43, 0x2f, 0xb9, 0xa8, 0xcc, 0x5c, + 0xf4, 0xaa, 0xdc, 0x91, 0x73, 0x18, 0x1c, 0x9c, 0xfb, 0x53, 0x1a, 0x45, + 0xcf, 0x0b, 0xf9, 0xd0, 0x70, 0xa3, 0xad, 0x42, 0xec, 0x3a, 0xd3, 0xb0, + 0x87, 0x99, 0x58, 0x77, 0xc7, 0xd2, 0xa1, 0x2d, 0x9e, 0xb9, 0x27, 0xdc, + 0xd4, 0x4f, 0x70, 0x89, 0xd5, 0x80, 0xaa, 0xb3, 0x5f, 0x28, 0xe9, 0x93, + 0x5a, 0x46, 0x0d, 0xec, 0x0e, 0x45, 0xd6, 0x7d, 0xa3, 0xb5, 0x46, 0xd3, + 0x28, 0x1e, 0x95, 0x9c, 0x6e, 0x5e, 0x43, 0xc1, 0x0a, 0x3f, 0x3a, 0x91, + 0x55, 0x5b, 0x96, 0x25, 0x8f, 0xa1, 0x3c, 0x56, 0x9e, 0xce, 0xdb, 0x93, + 0xcd, 0x72, 0x0b, 0xf9, 0x4b, 0xb6, 0x57, 0x2f, 0xec, 0x2a, 0xba, 0x07, + 0x7f, 0xbc, 0x76, 0x8f, 0x41, 0x5a, 0x65, 0xd1, 0x57, 0x04, 0x00, 0x2a, + 0xb3, 0x27, 0x98, 0x7f, 0x76, 0xa7, 0xeb, 0xda, 0xba, 0xa9, 0xd4, 0xb4, + 0x6d, 0x63, 0x29, 0x46, 0xee, 0xf7, 0x1d, 0x02, 0xaa, 0x74, 0xeb, 0xea, + 0x6a, 0x61, 0x72, 0xab, 0xc7, 0x53, 0xe8, 0x2a, 0xb0, 0xb2, 0x97, 0xf8, + 0x9b, 0x8f, 0x6a, 0x70, 0x2b, 0x6f, 0xc1, 0x1c, 0xfb, 0x52, 0x97, 0x2c, + 0xba, 0xdc, 0xa5, 0x74, 0x5a, 0x52, 0xf2, 0xf5, 0x3b, 0x47, 0xa0, 0xab, + 0x70, 0x46, 0x5c, 0xed, 0x8c, 0x64, 0xf4, 0xc5, 0x65, 0xc6, 0xd3, 0x5d, + 0xca, 0xb1, 0xc4, 0x36, 0xe7, 0xbf, 0x7a, 0xfa, 0x0b, 0xe0, 0xd7, 0xc3, + 0x0b, 0x5d, 0x3a, 0xcd, 0x7c, 0x5b, 0xe2, 0x68, 0x4c, 0x7a, 0x25, 0xaf, + 0xcd, 0x14, 0x72, 0x0f, 0xf5, 0xef, 0xfe, 0x15, 0xd9, 0x86, 0xc1, 0xba, + 0xef, 0x5d, 0x8e, 0x7a, 0xd8, 0x9f, 0x64, 0xb4, 0xd5, 0x9e, 0x7d, 0xa9, + 0x7c, 0x2e, 0xd4, 0x74, 0xdd, 0x1e, 0x0d, 0x42, 0xfe, 0xea, 0xde, 0x29, + 0x27, 0x5d, 0xf1, 0x59, 0xee, 0xcb, 0x91, 0xdb, 0x22, 0xb9, 0xe9, 0xbc, + 0x3d, 0xaa, 0x5a, 0xe7, 0xcd, 0xb1, 0x9d, 0x07, 0xae, 0xc3, 0x8a, 0xf6, + 0x2f, 0x10, 0x6b, 0xf7, 0x3e, 0x3f, 0xf1, 0x6c, 0x72, 0xe8, 0xda, 0x60, + 0xb1, 0x89, 0xd8, 0x28, 0x76, 0xe4, 0x01, 0x9e, 0xbe, 0xd5, 0xed, 0xf7, + 0xd1, 0xe9, 0x3e, 0x13, 0xf0, 0xc5, 0xb2, 0xea, 0x12, 0xc5, 0x3c, 0xac, + 0x02, 0xb1, 0xc0, 0x25, 0x89, 0xeb, 0x5e, 0xcb, 0xca, 0xa8, 0x54, 0xd1, + 0x3b, 0x5b, 0xa9, 0xc0, 0xf1, 0xf5, 0x29, 0x35, 0x1b, 0x5d, 0xbf, 0xc0, + 0xf8, 0x88, 0x83, 0x1b, 0x61, 0x81, 0x04, 0x76, 0x22, 0x98, 0x64, 0xdc, + 0xdb, 0x57, 0xf1, 0x3e, 0x95, 0xf4, 0x07, 0x8b, 0xfe, 0x1e, 0xe8, 0xda, + 0xd5, 0xc9, 0xbc, 0xb4, 0xc2, 0xcc, 0xdf, 0x36, 0xdc, 0xe0, 0x7e, 0x22, + 0xbc, 0x77, 0xc5, 0x3a, 0x6c, 0x96, 0x37, 0x8d, 0x09, 0x8a, 0x28, 0xc0, + 0x38, 0xfd, 0xd0, 0xaf, 0x2b, 0x11, 0x95, 0xba, 0x09, 0xca, 0xf7, 0x3d, + 0x2a, 0x38, 0xb8, 0xd7, 0xd2, 0x26, 0x3c, 0x4c, 0x14, 0x60, 0x70, 0xa3, + 0xbd, 0x34, 0x49, 0xf6, 0x99, 0x77, 0x9f, 0xb8, 0xbf, 0x74, 0x7a, 0xfb, + 0xd5, 0xe9, 0x74, 0x92, 0xd6, 0x68, 0x40, 0x1b, 0x58, 0x67, 0x3d, 0xeb, + 0x37, 0x98, 0x8e, 0xcc, 0x63, 0x15, 0xe5, 0xd5, 0xc2, 0xce, 0x92, 0x4d, + 0xf5, 0x3a, 0xa1, 0x52, 0x35, 0x36, 0xd9, 0x16, 0x54, 0xee, 0x6e, 0x78, + 0x15, 0x14, 0x92, 0x09, 0xee, 0x55, 0x3a, 0xa2, 0x7c, 0xc7, 0xeb, 0xda, + 0x99, 0x35, 0xcf, 0x93, 0x11, 0x63, 0xf8, 0x0f, 0x53, 0x4d, 0xb3, 0x52, + 0x89, 0x96, 0xfb, 0xec, 0x72, 0x4d, 0x72, 0x72, 0xb8, 0xea, 0xcd, 0x5b, + 0xbb, 0xb1, 0x6c, 0xcc, 0x11, 0x58, 0xf4, 0xab, 0x96, 0xd9, 0x8e, 0xd3, + 0x07, 0xae, 0x32, 0x7e, 0xb5, 0x9b, 0x21, 0x12, 0xc8, 0x91, 0x8f, 0xe2, + 0x3f, 0xa5, 0x68, 0x33, 0x01, 0x1b, 0x56, 0x52, 0x5a, 0x25, 0xdc, 0x69, + 0xdd, 0x8c, 0x57, 0xf9, 0x3f, 0x0a, 0x40, 0x7a, 0xd4, 0x59, 0xf9, 0x46, + 0x0d, 0x37, 0x0c, 0xc0, 0xe4, 0xd2, 0xe5, 0x17, 0x31, 0x1c, 0xef, 0xb2, + 0x68, 0x98, 0xff, 0x00, 0x7b, 0x15, 0x79, 0x5b, 0x69, 0x06, 0xb2, 0xee, + 0xc9, 0xd8, 0xd9, 0xe4, 0x8e, 0x45, 0x5a, 0x8a, 0x5f, 0x32, 0x35, 0x20, + 0xf0, 0x6b, 0x49, 0x46, 0xf1, 0x4c, 0x14, 0xb5, 0x34, 0x37, 0xee, 0x04, + 0xd5, 0x51, 0x37, 0x93, 0x37, 0x3f, 0x71, 0xfa, 0xfb, 0x1a, 0x6a, 0xc8, + 0x54, 0xf3, 0x43, 0xa8, 0x95, 0x48, 0x6e, 0x87, 0xd2, 0xb2, 0x8a, 0xb6, + 0xfb, 0x14, 0xdd, 0xcb, 0x61, 0xc2, 0xfc, 0xac, 0x6a, 0x12, 0xcd, 0x6c, + 0x49, 0x1c, 0xc4, 0x7a, 0xfb, 0x55, 0x68, 0xa5, 0x64, 0x6f, 0x2a, 0x43, + 0x92, 0x3e, 0xeb, 0x7a, 0xd5, 0x91, 0x29, 0xe8, 0x40, 0xc5, 0x3e, 0x5e, + 0x5f, 0x34, 0x4d, 0xee, 0x4c, 0x93, 0x9f, 0xa8, 0x35, 0x2f, 0x98, 0x18, + 0x74, 0xac, 0xe2, 0x1e, 0x1f, 0x9a, 0x3f, 0x99, 0x7b, 0xaf, 0xf8, 0x54, + 0xb1, 0x4e, 0x1c, 0x65, 0x4f, 0xe1, 0x52, 0xe1, 0xd5, 0x0d, 0x4b, 0xa3, + 0x2c, 0x30, 0xed, 0xd3, 0xde, 0xa1, 0x64, 0x25, 0xb0, 0xdc, 0x7a, 0x30, + 0xa9, 0x43, 0xf1, 0x4a, 0x40, 0xea, 0x32, 0x2a, 0x56, 0x85, 0x5e, 0xe5, + 0x77, 0x8d, 0x97, 0xef, 0x0c, 0x8f, 0xef, 0x0a, 0x8c, 0xa2, 0xb8, 0xe3, + 0x9a, 0xb5, 0xf3, 0x03, 0xd7, 0x8a, 0x89, 0xc0, 0x0d, 0xf7, 0x70, 0x7d, + 0x45, 0x5a, 0x61, 0x72, 0xa3, 0xc2, 0xe0, 0xe5, 0x78, 0x34, 0x24, 0xb2, + 0x47, 0xf7, 0xbe, 0x6a, 0xb6, 0xfb, 0x80, 0xe0, 0x64, 0x54, 0x0c, 0x9b, + 0xcf, 0x5c, 0x1f, 0x43, 0x5a, 0x26, 0xde, 0xe2, 0xba, 0x1c, 0xb2, 0xa3, + 0x8c, 0x1e, 0xa7, 0xb1, 0xa7, 0xac, 0x43, 0xf8, 0x1b, 0x1f, 0xad, 0x57, + 0x36, 0xfc, 0x75, 0xa7, 0x24, 0x1e, 0x5f, 0x3b, 0xf6, 0x8a, 0x5a, 0x74, + 0x62, 0x27, 0xdd, 0x22, 0x9e, 0x46, 0x47, 0xb5, 0x3b, 0xcc, 0x43, 0xcb, + 0x1c, 0x7d, 0x6a, 0x17, 0xba, 0x58, 0xfa, 0x10, 0xf5, 0x5d, 0xee, 0x4c, + 0xa7, 0x1c, 0x81, 0x49, 0x45, 0xb1, 0x36, 0x91, 0x69, 0xa5, 0x4e, 0x42, + 0xe0, 0xd4, 0x46, 0xd8, 0x3b, 0x67, 0x35, 0x1a, 0xc6, 0x0f, 0x20, 0xd4, + 0xcb, 0x0b, 0xff, 0x00, 0x7a, 0xaf, 0x48, 0xec, 0x46, 0xe5, 0x6b, 0x8d, + 0x20, 0xcb, 0x92, 0xb2, 0x15, 0x3e, 0xa2, 0xb1, 0xf5, 0x04, 0xbc, 0xd2, + 0x23, 0x32, 0xa6, 0xa2, 0x98, 0x5e, 0xaa, 0xe2, 0xba, 0x19, 0x27, 0xfb, + 0x2a, 0xee, 0x95, 0x95, 0x57, 0xd4, 0x9a, 0xc0, 0xf1, 0x2e, 0xaf, 0xa7, + 0xc9, 0x0a, 0x2c, 0x8f, 0x19, 0x20, 0xe6, 0xba, 0x68, 0x39, 0xca, 0x49, + 0x5a, 0xeb, 0xd0, 0xc2, 0xa2, 0x49, 0x5d, 0x3b, 0x32, 0xce, 0x89, 0xe2, + 0xc8, 0x25, 0x3b, 0x26, 0xbe, 0x57, 0x90, 0x90, 0x00, 0x51, 0x8a, 0xea, + 0xa1, 0xbb, 0x24, 0x02, 0xb2, 0x64, 0x1e, 0x47, 0x7a, 0xf2, 0xe4, 0xd5, + 0xb4, 0x37, 0x62, 0x24, 0x2b, 0xe8, 0x4a, 0x0e, 0x45, 0x76, 0x5a, 0x4f, + 0x8a, 0x6d, 0x35, 0x08, 0xed, 0xad, 0x2d, 0xd9, 0xe6, 0x58, 0x97, 0x62, + 0x6e, 0xc0, 0xc0, 0xfa, 0x9a, 0xf4, 0x6b, 0xe1, 0x23, 0x52, 0x17, 0xa7, + 0x09, 0x73, 0x7a, 0x68, 0x65, 0x4e, 0xbc, 0xa3, 0x2f, 0x7d, 0xab, 0x7a, + 0xea, 0x74, 0xcb, 0x76, 0xe3, 0xa6, 0x1a, 0x9e, 0x2f, 0x65, 0x03, 0x05, + 0x47, 0xe1, 0x59, 0xd0, 0xdc, 0x47, 0x30, 0xcc, 0x6e, 0x18, 0x7b, 0x1c, + 0xd5, 0x94, 0x90, 0x8c, 0x71, 0x9a, 0xf9, 0xe9, 0x45, 0xc5, 0xda, 0x48, + 0xf4, 0x93, 0xbe, 0xa9, 0x96, 0xc6, 0xa0, 0xd8, 0xc1, 0x8b, 0x34, 0xa2, + 0xfd, 0x48, 0x3b, 0xa3, 0x39, 0xfa, 0x54, 0x31, 0xce, 0x1b, 0x39, 0x18, + 0xa7, 0xb3, 0x00, 0x71, 0xc5, 0x47, 0xbb, 0xd8, 0x7a, 0xf7, 0x1c, 0xb7, + 0xf1, 0xe7, 0xee, 0x30, 0xa9, 0x45, 0xec, 0x4c, 0x3b, 0x8f, 0xad, 0x50, + 0x69, 0x06, 0xee, 0xbc, 0x53, 0x92, 0x40, 0xa7, 0x3d, 0xaa, 0xad, 0x1e, + 0xc2, 0xbb, 0x2e, 0x0b, 0xd8, 0x50, 0xe3, 0x3f, 0x8d, 0x59, 0x8e, 0xea, + 0x02, 0x33, 0xbc, 0x03, 0x59, 0xeb, 0x32, 0xb7, 0x5e, 0x2a, 0x45, 0x95, + 0x17, 0xa6, 0x0d, 0x34, 0x90, 0x8d, 0x13, 0x79, 0x00, 0xc7, 0xcf, 0x41, + 0xbd, 0x83, 0x1d, 0x73, 0xf4, 0x15, 0x9f, 0xe7, 0xa6, 0x29, 0x3e, 0xd2, + 0x33, 0xc7, 0x14, 0xb9, 0x50, 0x1a, 0x1f, 0x6d, 0x8c, 0x8e, 0x03, 0x1f, + 0xa0, 0xa0, 0x5e, 0x2a, 0xf2, 0x15, 0xff, 0x00, 0x2a, 0xa4, 0x97, 0x89, + 0xde, 0xa4, 0xfb, 0x4a, 0x9e, 0xd4, 0x72, 0xae, 0xc3, 0x26, 0x6b, 0xd7, + 0x7e, 0x15, 0x0f, 0xe3, 0x4a, 0xb7, 0x52, 0xff, 0x00, 0xcf, 0x31, 0xf5, + 0x26, 0xab, 0xfd, 0xa3, 0x9e, 0x09, 0xa7, 0x7d, 0xab, 0x3d, 0x79, 0xab, + 0x8a, 0xb7, 0x42, 0x59, 0x60, 0xc9, 0x39, 0x27, 0xe6, 0x45, 0xfc, 0x28, + 0x0b, 0x2b, 0xfd, 0xe9, 0x48, 0xff, 0x00, 0x77, 0x8a, 0xab, 0xf6, 0x90, + 0x7b, 0x8a, 0x72, 0xdc, 0x7b, 0xe4, 0x9f, 0x4a, 0xd9, 0x39, 0x32, 0x2c, + 0x8b, 0x26, 0x35, 0xee, 0x59, 0xfe, 0xa6, 0x9f, 0x80, 0xb8, 0xda, 0xb5, + 0x54, 0x4a, 0xcc, 0x7f, 0x8a, 0xa4, 0x05, 0xf3, 0xdb, 0xea, 0x4d, 0x5f, + 0xab, 0x17, 0xa1, 0x7e, 0x29, 0x0e, 0x31, 0xd0, 0x53, 0x8c, 0xa3, 0x3f, + 0x7a, 0xb3, 0xcb, 0x37, 0x42, 0xff, 0x00, 0x90, 0xa0, 0x85, 0x53, 0x97, + 0x6c, 0x8f, 0x73, 0x4d, 0x59, 0x6a, 0x4b, 0x2f, 0xa4, 0xe0, 0x1c, 0x31, + 0x02, 0xa4, 0x56, 0x25, 0xf8, 0x05, 0xbe, 0xbc, 0x56, 0x7a, 0x5f, 0xc7, + 0x17, 0xdd, 0x00, 0x8f, 0xf6, 0x6a, 0x41, 0xab, 0x0f, 0xe1, 0x5f, 0xce, + 0xb5, 0x52, 0x6b, 0x64, 0x4d, 0xaf, 0xd4, 0xbc, 0x38, 0x27, 0x27, 0x07, + 0xdb, 0x9a, 0x7a, 0x3a, 0xa7, 0x25, 0x80, 0xf7, 0x26, 0xb3, 0x4d, 0xd3, + 0x4b, 0x9c, 0xbe, 0xdf, 0xa0, 0xc5, 0x20, 0xb8, 0x48, 0xce, 0x58, 0x83, + 0xee, 0x6b, 0x5e, 0x76, 0xf7, 0x33, 0xe5, 0x4b, 0x63, 0x69, 0x6e, 0xc8, + 0x20, 0xa2, 0x96, 0x23, 0xbf, 0x6a, 0xb4, 0xb7, 0x72, 0x3f, 0x2f, 0x26, + 0xd5, 0xf4, 0x15, 0xcc, 0xc9, 0xad, 0x84, 0x18, 0x4f, 0x9a, 0xab, 0x9d, + 0x46, 0x5b, 0x9e, 0xb9, 0x0b, 0xed, 0x5b, 0xc3, 0xc9, 0x19, 0xc9, 0xf7, + 0x67, 0x5a, 0xda, 0xc4, 0x70, 0x9d, 0x91, 0xf2, 0x7d, 0x6a, 0x21, 0x7c, + 0xd7, 0x0f, 0xc9, 0xc9, 0x3d, 0x00, 0xeb, 0x5c, 0xfc, 0x20, 0xe7, 0x2c, + 0x48, 0xf6, 0x15, 0xa3, 0x01, 0xf2, 0x80, 0x28, 0x40, 0xf5, 0xad, 0xd4, + 0x88, 0xb9, 0xd1, 0x5a, 0x87, 0x1f, 0x7c, 0xed, 0x5f, 0x40, 0x79, 0xad, + 0x5b, 0x79, 0x15, 0x40, 0x0a, 0x30, 0x2b, 0x9c, 0xb5, 0xb8, 0xc6, 0x09, + 0x6c, 0xfb, 0xd5, 0xe8, 0xf5, 0x02, 0xbd, 0x81, 0xad, 0x63, 0xa9, 0x2d, + 0xd8, 0xe8, 0xe2, 0xba, 0xd9, 0xd8, 0x1a, 0xb0, 0x2f, 0x9b, 0x3f, 0xd2, + 0xb9, 0x94, 0xd5, 0x06, 0x79, 0x14, 0x92, 0x6b, 0x38, 0x6d, 0x89, 0x96, + 0x73, 0xd8, 0x1e, 0x07, 0xd6, 0xad, 0x37, 0xd0, 0x57, 0xee, 0x74, 0xd2, + 0x6a, 0xfe, 0x4a, 0x8e, 0x72, 0xe7, 0xa2, 0x8e, 0xa6, 0x96, 0x0b, 0xe3, + 0x16, 0x64, 0x76, 0xdd, 0x2b, 0x75, 0x3e, 0x9e, 0xd5, 0xcd, 0xc2, 0xec, + 0xcd, 0xb9, 0xce, 0xe7, 0x3d, 0xea, 0x69, 0x6e, 0xa3, 0x84, 0x33, 0x3b, + 0x81, 0x8f, 0x53, 0x5d, 0x0a, 0x56, 0x56, 0x32, 0xdd, 0x9d, 0x0c, 0xba, + 0xc8, 0xb7, 0x85, 0xa4, 0x2c, 0x4b, 0x9e, 0x00, 0xf5, 0x35, 0x67, 0x4f, + 0xd4, 0x7e, 0xc5, 0x6c, 0x49, 0x70, 0x66, 0x90, 0xee, 0x73, 0xef, 0x5c, + 0xa5, 0xa3, 0x1b, 0x96, 0x13, 0x39, 0x21, 0x47, 0xdc, 0x53, 0xfc, 0xcd, + 0x5a, 0x19, 0x41, 0x9f, 0x30, 0xd5, 0x29, 0xf4, 0x0e, 0xb7, 0x3a, 0x79, + 0x35, 0xb3, 0xc7, 0xce, 0x0e, 0x6b, 0x3b, 0x58, 0xd5, 0x5b, 0xec, 0xac, + 0xa1, 0xbe, 0x69, 0x08, 0x51, 0xf8, 0xd6, 0x01, 0x76, 0xf3, 0x03, 0x6e, + 0xe0, 0x55, 0x3b, 0xdb, 0xd3, 0x71, 0x79, 0x04, 0x20, 0xe4, 0x27, 0xce, + 0x6b, 0x6e, 0x6b, 0x75, 0x22, 0xfe, 0x47, 0x77, 0x6b, 0xa8, 0x62, 0x15, + 0x19, 0x23, 0x8a, 0xa9, 0xab, 0xeb, 0x6f, 0x61, 0xa7, 0xcd, 0x24, 0x2e, + 0xbe, 0x6a, 0xa9, 0xd8, 0x1b, 0xa6, 0x7d, 0xeb, 0x05, 0xf5, 0x02, 0xa9, + 0xf2, 0x92, 0x78, 0xc5, 0x63, 0xea, 0xba, 0xd4, 0x26, 0x27, 0x8e, 0x59, + 0xd2, 0x31, 0x8c, 0x30, 0x90, 0xe2, 0x92, 0xa8, 0xdb, 0xb2, 0x21, 0xa4, + 0xb5, 0x2e, 0x5b, 0x78, 0xe6, 0xe1, 0x2d, 0xa3, 0xb8, 0x9b, 0x56, 0xb2, + 0x67, 0x52, 0x0c, 0xd0, 0xed, 0xc6, 0x07, 0xb1, 0xcd, 0x69, 0xda, 0x78, + 0xeb, 0x4a, 0xd7, 0x96, 0x5b, 0x78, 0x2f, 0xa2, 0x95, 0xdc, 0x60, 0xaa, + 0xb7, 0x4a, 0xe2, 0xf4, 0xed, 0x73, 0xc3, 0x96, 0xf6, 0xd2, 0xdb, 0x34, + 0xd6, 0xd2, 0xa3, 0x8c, 0x15, 0x51, 0x9a, 0xe4, 0xa5, 0xb5, 0xf0, 0x4e, + 0x9b, 0xad, 0x1d, 0x4f, 0xed, 0x4d, 0x0c, 0xaa, 0xdb, 0x95, 0x10, 0xb6, + 0xd0, 0x7e, 0x95, 0xe9, 0xca, 0x9a, 0x71, 0x4d, 0x2d, 0x4f, 0x3a, 0x35, + 0x66, 0xa5, 0x67, 0xa9, 0xec, 0x9a, 0x66, 0xb1, 0x3a, 0x5b, 0x18, 0x19, + 0x8f, 0x99, 0x09, 0xf2, 0xdb, 0xdc, 0x76, 0x34, 0xdb, 0xa9, 0xde, 0xe9, + 0x5d, 0x24, 0x23, 0x63, 0xf7, 0xcf, 0x43, 0xeb, 0x5e, 0x6f, 0x07, 0xc4, + 0x6d, 0x32, 0xf3, 0x55, 0x8d, 0xac, 0xe6, 0x77, 0x0c, 0x3c, 0xb9, 0x7e, + 0x42, 0x06, 0x3b, 0x1a, 0xeb, 0x62, 0xd4, 0x23, 0x9c, 0x01, 0xe6, 0xa6, + 0xd3, 0xc8, 0x39, 0xeb, 0x5e, 0x65, 0x49, 0xba, 0x4e, 0xf2, 0x5b, 0x9d, + 0xf0, 0x4a, 0xa2, 0xb4, 0x5e, 0xc5, 0x83, 0xa8, 0x1b, 0x57, 0xf2, 0xe4, + 0x19, 0x91, 0x7b, 0xe7, 0xa8, 0xf5, 0xa8, 0xee, 0x75, 0x5f, 0x37, 0x03, + 0x1c, 0xd5, 0x5b, 0xb3, 0x05, 0xda, 0x6d, 0xf3, 0x55, 0x66, 0x5f, 0xba, + 0xdf, 0xd2, 0xb1, 0x0d, 0xf8, 0x8e, 0x56, 0x56, 0x04, 0x32, 0xf5, 0x15, + 0x3e, 0xd9, 0x4f, 0x54, 0x35, 0x4f, 0x97, 0x46, 0x6a, 0x5d, 0x49, 0x99, + 0x37, 0xa1, 0xc3, 0x0e, 0x86, 0xa3, 0x4b, 0xc2, 0xec, 0x15, 0xce, 0xd7, + 0xf4, 0xf5, 0xaa, 0xe9, 0x7c, 0xac, 0x0e, 0x41, 0x35, 0x5e, 0x79, 0xbc, + 0xc1, 0xc0, 0x04, 0x76, 0xf5, 0x15, 0x3e, 0xdb, 0xb8, 0x7b, 0x2e, 0xc5, + 0xe9, 0xd0, 0x4b, 0x86, 0xc9, 0x46, 0xec, 0xc2, 0xa0, 0xf3, 0xfc, 0x90, + 0x56, 0x61, 0x81, 0xfd, 0xf1, 0xd3, 0xf1, 0xac, 0xe3, 0x7f, 0x24, 0x2c, + 0x03, 0x1d, 0xcb, 0xeb, 0xdc, 0x54, 0xa6, 0xed, 0x26, 0x5e, 0x1b, 0x70, + 0x35, 0x0e, 0xa3, 0xdd, 0x0d, 0x43, 0xa3, 0x2d, 0xbc, 0x87, 0x67, 0x07, + 0x2a, 0x7a, 0x30, 0x35, 0x03, 0x3a, 0x91, 0xcb, 0x1c, 0xd5, 0x53, 0x94, + 0xe6, 0x26, 0xdb, 0x9e, 0xdd, 0xaa, 0x27, 0x99, 0xd4, 0x1d, 0xe9, 0x81, + 0xea, 0xbc, 0xd6, 0x2d, 0xf3, 0x6a, 0x52, 0x5c, 0xa5, 0xa7, 0x4d, 0xcb, + 0x90, 0x7a, 0xfa, 0xd5, 0x47, 0x8c, 0x03, 0x9c, 0x15, 0x3e, 0xd4, 0xf5, + 0xba, 0xdc, 0x9c, 0x30, 0x23, 0xda, 0x93, 0xcc, 0xdc, 0x7e, 0xf0, 0x02, + 0xb9, 0x9f, 0x37, 0x53, 0x64, 0x41, 0xe7, 0x3a, 0x1e, 0x06, 0xe1, 0xed, + 0x51, 0xb5, 0xe2, 0x9e, 0x25, 0x50, 0x7e, 0xa2, 0xae, 0xac, 0x0d, 0x2a, + 0x96, 0xc6, 0x17, 0xbb, 0x13, 0x81, 0x55, 0x2e, 0x67, 0xb4, 0xb6, 0xe0, + 0xb7, 0x9e, 0xff, 0x00, 0xdd, 0x4e, 0x9f, 0x9d, 0x67, 0xec, 0x9c, 0xba, + 0x1a, 0xa9, 0xa4, 0x3e, 0x28, 0xbc, 0xe3, 0xfb, 0xb6, 0x23, 0xd8, 0xf2, + 0x29, 0x27, 0x9b, 0xec, 0xd9, 0xc9, 0x59, 0x5b, 0xd1, 0x0d, 0x65, 0xcf, + 0x79, 0x34, 0xe3, 0x6a, 0x01, 0x02, 0x7f, 0x75, 0x38, 0xcd, 0x42, 0xa9, + 0x22, 0x9f, 0xbd, 0x9f, 0xad, 0x27, 0x4d, 0x2f, 0x32, 0x94, 0x91, 0x78, + 0xdf, 0xf9, 0x8d, 0x96, 0xca, 0xfd, 0x45, 0x3d, 0xa4, 0x59, 0x47, 0x62, + 0x2a, 0xb2, 0x6f, 0x00, 0x6e, 0x8f, 0x3e, 0xe3, 0x9a, 0x90, 0x49, 0x0f, + 0xf1, 0xa9, 0x53, 0xee, 0x2b, 0x37, 0x16, 0x5a, 0x68, 0x4f, 0x21, 0x33, + 0xc2, 0x95, 0x1e, 0xd4, 0xe1, 0x09, 0xc7, 0x0e, 0x47, 0xd4, 0x66, 0x9e, + 0x9e, 0x4b, 0xfd, 0xd9, 0x08, 0xf6, 0x06, 0x86, 0x52, 0x0f, 0x0e, 0x08, + 0xf7, 0xa8, 0xb5, 0xb7, 0x65, 0x22, 0x2c, 0x4b, 0x1f, 0x39, 0x57, 0xfa, + 0x71, 0x40, 0x77, 0x6e, 0x5a, 0x32, 0x3e, 0x87, 0x34, 0xe7, 0x57, 0xcf, + 0xcb, 0x83, 0xf5, 0x34, 0xcc, 0xba, 0x0e, 0x41, 0xa8, 0x6d, 0x26, 0x5a, + 0xb8, 0x3a, 0xa4, 0x80, 0x83, 0x11, 0x3f, 0x85, 0x44, 0x22, 0x89, 0x0f, + 0x39, 0x5f, 0xa5, 0x4a, 0x93, 0xe5, 0x88, 0x01, 0x87, 0xb9, 0x14, 0x34, + 0xc3, 0xb9, 0xa9, 0xba, 0x7a, 0x14, 0x90, 0xf4, 0xb9, 0x8c, 0x75, 0x7c, + 0xfd, 0x69, 0x4c, 0xeb, 0xd4, 0x38, 0x35, 0x03, 0xcc, 0x36, 0xf1, 0xcd, + 0x46, 0x64, 0x4e, 0xea, 0x39, 0xae, 0x69, 0x42, 0x26, 0x89, 0xb2, 0xdb, + 0x4f, 0xb5, 0x7a, 0x8e, 0x69, 0x1a, 0x60, 0x47, 0x24, 0x55, 0x5f, 0xdd, + 0x63, 0xa0, 0xc5, 0x37, 0xf7, 0x5d, 0x70, 0x2b, 0x17, 0x14, 0x5d, 0xcb, + 0x2d, 0x36, 0x7a, 0x62, 0xa3, 0x77, 0xcf, 0x7a, 0xae, 0xe1, 0x7d, 0x31, + 0x4d, 0x60, 0x99, 0xf4, 0xa9, 0xe5, 0x42, 0xbb, 0x27, 0x3b, 0x40, 0xeb, + 0x8a, 0x89, 0xf1, 0xed, 0x55, 0xe5, 0x0a, 0x07, 0x5e, 0x94, 0xcf, 0x95, + 0x86, 0x77, 0x13, 0xf8, 0xd5, 0x72, 0xad, 0xc2, 0xe4, 0xc4, 0xed, 0x3e, + 0x94, 0x19, 0x54, 0x8e, 0x48, 0x07, 0xda, 0xab, 0x16, 0x55, 0xa8, 0xcd, + 0xc2, 0x7a, 0x01, 0x4f, 0x94, 0x57, 0x2c, 0x99, 0x94, 0x8c, 0x03, 0xd2, + 0x98, 0xd2, 0x8c, 0xf0, 0x09, 0xfa, 0x54, 0x26, 0xe5, 0x49, 0xe0, 0x53, + 0x4c, 0xcc, 0x73, 0x85, 0x3f, 0x95, 0x57, 0x2f, 0x91, 0x37, 0xf3, 0x24, + 0x79, 0xce, 0x3e, 0x54, 0x27, 0xeb, 0x50, 0x3b, 0x4a, 0xde, 0x80, 0x52, + 0x19, 0x1f, 0xa6, 0xd3, 0xf8, 0xd3, 0x33, 0x27, 0x50, 0xbf, 0xad, 0x3b, + 0x0a, 0xe2, 0x32, 0x37, 0x76, 0xfc, 0x85, 0x46, 0xd1, 0x02, 0x7e, 0x62, + 0xc6, 0xa4, 0x22, 0x42, 0x7b, 0x0a, 0x86, 0x57, 0x31, 0xa9, 0x2c, 0xc7, + 0xf0, 0xab, 0x8a, 0x6d, 0xd9, 0x09, 0xd9, 0x23, 0x9f, 0xf1, 0x0d, 0xda, + 0xdb, 0x2f, 0xc8, 0xd2, 0xa1, 0xf4, 0x41, 0xd6, 0xb9, 0xdb, 0x1d, 0x7e, + 0xdf, 0xed, 0x01, 0x2e, 0xa5, 0x9c, 0x64, 0xf5, 0x61, 0x5b, 0x7a, 0xe6, + 0xb1, 0x6b, 0x09, 0xe5, 0xb9, 0xf7, 0xac, 0x28, 0x7c, 0x45, 0xa6, 0x47, + 0x36, 0xf9, 0x63, 0x59, 0x31, 0xea, 0xb5, 0xf4, 0x34, 0xe9, 0xbf, 0x67, + 0x67, 0x4d, 0x9e, 0x65, 0x59, 0xfb, 0xda, 0x49, 0x1d, 0x8d, 0xac, 0x31, + 0xcf, 0x12, 0xbc, 0x39, 0x65, 0x23, 0x82, 0x6a, 0xda, 0xda, 0x9e, 0xe7, + 0x03, 0xda, 0xb9, 0x9b, 0x6f, 0x1e, 0xd8, 0xbb, 0x08, 0xa2, 0x8c, 0xa2, + 0xfa, 0xf6, 0xad, 0xdb, 0x7b, 0xd5, 0xbd, 0x8c, 0x32, 0x4b, 0x90, 0x7b, + 0x0a, 0xf2, 0xaa, 0xd2, 0xab, 0x07, 0xef, 0x2b, 0x1d, 0x70, 0x9c, 0x65, + 0xb3, 0x2d, 0x88, 0x62, 0x8f, 0x93, 0x83, 0xee, 0x69, 0x8d, 0x70, 0x14, + 0x7c, 0x8b, 0xc5, 0x33, 0x0a, 0x39, 0xcf, 0xe3, 0x50, 0x49, 0x79, 0x14, + 0x5c, 0x6e, 0xc9, 0xf4, 0x15, 0x82, 0x8b, 0x7e, 0x66, 0xd7, 0x24, 0x92, + 0x49, 0x1f, 0xf8, 0xb1, 0xec, 0x2a, 0x33, 0x22, 0xc5, 0x90, 0x4e, 0x4d, + 0x54, 0x92, 0xfd, 0x9f, 0x85, 0x5c, 0x0a, 0x62, 0xb1, 0x3c, 0x9a, 0xdd, + 0x41, 0xad, 0xcc, 0xf9, 0xd7, 0x43, 0x4a, 0xc7, 0x52, 0x7b, 0x2b, 0xa8, + 0xe6, 0x45, 0x0c, 0x54, 0x83, 0xb5, 0xba, 0x1a, 0xf7, 0xfd, 0x57, 0xf6, + 0xa2, 0x4f, 0x12, 0x78, 0x1a, 0xcf, 0xc3, 0x57, 0x9a, 0x58, 0xb4, 0x82, + 0x05, 0x00, 0xb4, 0x00, 0x10, 0x71, 0x5f, 0x38, 0xf9, 0xca, 0x38, 0x1f, + 0x31, 0xf4, 0x15, 0x20, 0x12, 0xbf, 0x5c, 0x20, 0xfd, 0x6b, 0xb2, 0x8e, + 0x26, 0xae, 0x1d, 0x5a, 0x0f, 0x43, 0x9e, 0x74, 0xa9, 0xd4, 0x9a, 0x9c, + 0xb7, 0x47, 0xb0, 0xd8, 0x7c, 0x59, 0xb1, 0x8d, 0xfc, 0xa3, 0x0c, 0x51, + 0x26, 0x36, 0xa0, 0x0b, 0xb4, 0x81, 0xf8, 0x77, 0xa6, 0xea, 0x9e, 0x35, + 0xb7, 0xbd, 0x7d, 0xa6, 0xed, 0x9e, 0x31, 0xc8, 0x55, 0x97, 0x8f, 0xd6, + 0xbc, 0x95, 0x11, 0x50, 0xf1, 0xcf, 0xbd, 0x12, 0x5c, 0x01, 0xc0, 0xf9, + 0x9b, 0xd0, 0x57, 0x4a, 0xcc, 0xaa, 0x3d, 0x2c, 0x42, 0xc2, 0xc2, 0xf7, + 0xb9, 0xdd, 0xdc, 0xf8, 0xb6, 0x7b, 0x67, 0x67, 0xb3, 0xba, 0x95, 0x5b, + 0xb9, 0x2d, 0x9e, 0x2b, 0x12, 0xfb, 0xc4, 0xb7, 0x3a, 0xcb, 0x01, 0x71, + 0x2b, 0x36, 0xd3, 0xd4, 0x8e, 0xb5, 0xce, 0xaa, 0x33, 0xe1, 0xa4, 0x6c, + 0xfa, 0x28, 0xe9, 0x56, 0x23, 0x18, 0x3d, 0x2b, 0x19, 0xe3, 0x64, 0xd5, + 0xac, 0x6f, 0x0a, 0x31, 0x5b, 0x1d, 0x48, 0xba, 0x69, 0x34, 0xff, 0x00, + 0x31, 0xa6, 0xdd, 0x8e, 0x02, 0x2d, 0x60, 0xb3, 0x96, 0x62, 0xdb, 0xbe, + 0xb9, 0xa8, 0x55, 0xd8, 0x03, 0xce, 0x07, 0xa5, 0x47, 0xbc, 0xdd, 0xb6, + 0xd5, 0xf9, 0x62, 0x1d, 0x5b, 0xd6, 0xb9, 0xaa, 0xd7, 0xf6, 0xc9, 0x26, + 0xb6, 0x36, 0x84, 0x7d, 0x9e, 0x88, 0x9a, 0x33, 0xf6, 0xa9, 0x43, 0xb7, + 0xfa, 0xb4, 0xe9, 0xee, 0x6a, 0xd1, 0x6c, 0x0c, 0xe6, 0xa2, 0x1b, 0x55, + 0x40, 0x50, 0x06, 0x29, 0x97, 0x13, 0x6c, 0x50, 0xab, 0xcb, 0xb7, 0x00, + 0x57, 0x9e, 0xef, 0x39, 0x59, 0x1b, 0xde, 0xca, 0xec, 0xb7, 0x65, 0xf3, + 0xcc, 0xd2, 0x75, 0x0b, 0xf2, 0x8f, 0x7a, 0xbb, 0x29, 0xe3, 0x15, 0x56, + 0xda, 0x31, 0x04, 0x4a, 0x99, 0xce, 0x3a, 0xfd, 0x6a, 0x66, 0x00, 0x82, + 0x77, 0x76, 0xae, 0x79, 0x6b, 0x2d, 0x02, 0x2e, 0xcb, 0x52, 0x01, 0x26, + 0x00, 0x26, 0x9c, 0x1b, 0xdf, 0xad, 0x40, 0x8c, 0x08, 0x14, 0xbb, 0x8f, + 0xb6, 0x2b, 0x46, 0x88, 0xb8, 0x92, 0x80, 0x73, 0x8e, 0x86, 0xa3, 0xb0, + 0x9b, 0x0a, 0xf1, 0x1e, 0x19, 0x0f, 0xe9, 0x52, 0x38, 0xca, 0xf5, 0xaa, + 0x33, 0x17, 0xb6, 0x9d, 0x65, 0xe3, 0x67, 0x43, 0x5b, 0x41, 0x29, 0x27, + 0x11, 0x49, 0xdb, 0x53, 0x57, 0xef, 0x0c, 0x66, 0x95, 0x24, 0x2a, 0x71, + 0x9a, 0xae, 0xb2, 0x83, 0xce, 0x72, 0x3b, 0x54, 0x9b, 0x81, 0xe4, 0x1a, + 0xc5, 0xc4, 0xae, 0x62, 0x57, 0x51, 0x2a, 0x74, 0xfc, 0x7b, 0xd4, 0x6b, + 0x39, 0x43, 0xb2, 0x4f, 0xc1, 0xbd, 0x69, 0x82, 0xe0, 0x03, 0xd7, 0x07, + 0xd2, 0x95, 0xa4, 0x47, 0x18, 0x62, 0x31, 0x42, 0x56, 0xd1, 0xec, 0x0d, + 0x93, 0x87, 0x20, 0xe7, 0x39, 0xa6, 0xba, 0xa3, 0xfc, 0xc8, 0x76, 0x49, + 0xea, 0x2a, 0x8c, 0x92, 0x7d, 0x9c, 0xee, 0x59, 0x43, 0x27, 0xf7, 0x49, + 0xa6, 0x7f, 0x6c, 0x59, 0x8f, 0xbd, 0x3a, 0x29, 0x1d, 0x41, 0x35, 0x4a, + 0x9b, 0xde, 0x3a, 0x8b, 0x9a, 0xfa, 0x32, 0xfa, 0xdc, 0x4b, 0x13, 0xfc, + 0xf8, 0xdb, 0xfd, 0xe5, 0x15, 0x66, 0x3b, 0x96, 0x3e, 0x98, 0xac, 0x46, + 0xf1, 0x25, 0x8c, 0x7f, 0xf2, 0xdd, 0x5b, 0xe8, 0x6a, 0xac, 0xde, 0x28, + 0xb1, 0xeb, 0x1e, 0xe0, 0xde, 0xdd, 0x2b, 0x4f, 0x61, 0x29, 0xfd, 0x92, + 0x79, 0xb9, 0x7a, 0x9d, 0x53, 0x4c, 0xe4, 0x7c, 0x80, 0x67, 0xde, 0xa3, + 0x52, 0xef, 0xf7, 0x80, 0x1e, 0xd5, 0xc9, 0x1f, 0x15, 0xc9, 0x83, 0xe5, + 0xa0, 0x27, 0xd7, 0x35, 0x13, 0xf8, 0x9a, 0xe6, 0x4e, 0x19, 0xb6, 0x7d, + 0x28, 0x58, 0x4a, 0x84, 0xfb, 0x78, 0x2e, 0xa7, 0x64, 0x76, 0xaf, 0x57, + 0xc7, 0xd4, 0xd5, 0x79, 0xef, 0x20, 0x51, 0x8d, 0xe1, 0xbd, 0x85, 0x72, + 0x6b, 0xa9, 0x34, 0xe7, 0xe6, 0x90, 0x9f, 0xc6, 0xa7, 0x8e, 0xe3, 0x9e, + 0xa0, 0xd3, 0xfa, 0xb3, 0x8e, 0xec, 0x7e, 0xd9, 0x3d, 0x91, 0xb0, 0xd7, + 0xc5, 0x8f, 0xee, 0x86, 0xdf, 0xad, 0x44, 0x67, 0xb8, 0x63, 0xf3, 0x1d, + 0xc2, 0xab, 0x24, 0xc0, 0xf6, 0xfc, 0x6a, 0x51, 0x30, 0xf5, 0xa7, 0xcb, + 0x6e, 0x84, 0x73, 0xb6, 0x4c, 0xb3, 0x85, 0x3f, 0x32, 0x9a, 0x99, 0x6e, + 0x63, 0x3f, 0xc4, 0x2a, 0xba, 0xb8, 0x6f, 0x4a, 0x90, 0x20, 0x3d, 0x81, + 0xa8, 0x69, 0x14, 0xa4, 0xd1, 0x6d, 0x66, 0x42, 0x31, 0x9c, 0xd4, 0xe8, + 0x53, 0xb7, 0x1f, 0x8d, 0x67, 0xec, 0x54, 0x04, 0x90, 0x14, 0x0e, 0xf5, + 0xcb, 0x78, 0x8f, 0xc5, 0xeb, 0x64, 0xad, 0x0d, 0xa4, 0x85, 0xa5, 0xe9, + 0x9c, 0xf4, 0xaa, 0xa7, 0x87, 0x95, 0x69, 0x72, 0xc0, 0x99, 0xd7, 0x8d, + 0x35, 0x79, 0x1d, 0x6e, 0xb1, 0x77, 0x1c, 0x36, 0x52, 0x7f, 0xa4, 0xac, + 0x4f, 0x8e, 0xac, 0x41, 0xc5, 0x79, 0xd5, 0xd9, 0xd3, 0xe5, 0x98, 0xc9, + 0x34, 0xbe, 0x7b, 0x7a, 0xb1, 0xce, 0x6b, 0x9e, 0xb9, 0xbc, 0xb9, 0xbb, + 0x73, 0x24, 0xb2, 0xbb, 0x93, 0xea, 0x6a, 0x00, 0x49, 0x3c, 0xf3, 0x5f, + 0x43, 0x87, 0xc0, 0xfb, 0x15, 0xac, 0xb5, 0x3c, 0x8a, 0xd8, 0xa8, 0xd4, + 0x77, 0x48, 0xe8, 0x64, 0xb7, 0xd2, 0xa5, 0x03, 0x91, 0x1b, 0x7a, 0xaf, + 0x15, 0x7a, 0xdb, 0x47, 0xb7, 0xb9, 0x41, 0xf6, 0x39, 0xd3, 0xce, 0xcf, + 0x56, 0x38, 0xae, 0x41, 0xcb, 0x67, 0xd3, 0x15, 0x7b, 0x4f, 0x92, 0x44, + 0x75, 0xc6, 0x7e, 0xb5, 0xea, 0x52, 0x85, 0x48, 0x7c, 0x13, 0x67, 0x24, + 0x9d, 0x29, 0xfc, 0x51, 0xfb, 0x8f, 0x74, 0xd1, 0xee, 0xd0, 0x78, 0x56, + 0xdb, 0x4f, 0xba, 0xb5, 0x89, 0x2e, 0xed, 0xdb, 0x31, 0xcf, 0x02, 0x8f, + 0x98, 0x77, 0x0d, 0xeb, 0x52, 0x07, 0x43, 0xd4, 0x85, 0xae, 0x0f, 0xc3, + 0xfa, 0xbc, 0xb1, 0x6d, 0x56, 0xdc, 0x57, 0xa7, 0x5a, 0xeb, 0xe1, 0xbb, + 0x0e, 0x80, 0xe7, 0x19, 0xaf, 0x9e, 0xcc, 0xe8, 0x57, 0x94, 0x95, 0x49, + 0xeb, 0xe9, 0xfa, 0x9e, 0xc6, 0x0e, 0xad, 0x14, 0xb9, 0x21, 0xa1, 0x7d, + 0x5d, 0x17, 0xf8, 0xbf, 0x23, 0x4f, 0xf3, 0x15, 0xbf, 0x8b, 0xf5, 0xaa, + 0x8b, 0x32, 0xe3, 0xef, 0x9a, 0x5f, 0x38, 0x1e, 0x8c, 0x3f, 0x11, 0x5f, + 0x3f, 0xc8, 0xcf, 0x52, 0xe8, 0xb7, 0xf2, 0x7f, 0x7e, 0x81, 0xb4, 0x8f, + 0xbf, 0xcd, 0x53, 0xdc, 0x0f, 0x42, 0x29, 0x72, 0x31, 0xfc, 0x34, 0xf9, + 0x05, 0x72, 0xd2, 0xae, 0x0f, 0x0f, 0xd6, 0xa4, 0xdb, 0xb7, 0xf8, 0xf3, + 0x59, 0xe1, 0xc0, 0x3d, 0x56, 0x94, 0x38, 0x3e, 0x95, 0x5c, 0xad, 0xec, + 0x2b, 0xa3, 0x43, 0x3f, 0xed, 0x7e, 0x54, 0xb9, 0x07, 0xab, 0x1a, 0xcf, + 0x32, 0x0e, 0x94, 0x79, 0xab, 0xed, 0x52, 0xa2, 0xc7, 0x72, 0xf8, 0x09, + 0xfd, 0xff, 0x00, 0xd6, 0x9e, 0x1a, 0x3c, 0x0f, 0xde, 0x60, 0xfd, 0x6b, + 0x38, 0x5c, 0x05, 0xe3, 0xa5, 0x06, 0xec, 0x0e, 0xe2, 0xad, 0x45, 0x8a, + 0xe8, 0xd3, 0x26, 0x25, 0x00, 0xef, 0x0d, 0xf8, 0xd3, 0x4c, 0xb0, 0x8e, + 0x47, 0xe8, 0x2b, 0x37, 0xed, 0x43, 0xfb, 0xc3, 0x14, 0x86, 0xea, 0x31, + 0xc9, 0x71, 0x55, 0x66, 0x85, 0x7b, 0x9a, 0xbf, 0x68, 0x4e, 0xa1, 0x5b, + 0xf2, 0xa9, 0x45, 0xe8, 0x03, 0x84, 0xcf, 0xd4, 0xd6, 0x13, 0xeb, 0x16, + 0xd1, 0x0f, 0x9a, 0x65, 0x5a, 0xad, 0x2f, 0x8a, 0xf4, 0xc8, 0x87, 0xcd, + 0x77, 0x18, 0xff, 0x00, 0x81, 0x0a, 0x71, 0xa5, 0x29, 0x6c, 0x83, 0x9a, + 0xdb, 0x9d, 0x21, 0xbe, 0x6c, 0xf0, 0xaa, 0x3f, 0x5a, 0x3e, 0xdc, 0xed, + 0xd5, 0xbf, 0x21, 0x5c, 0x83, 0xf8, 0xeb, 0x4b, 0x8f, 0xa4, 0xea, 0xdf, + 0x46, 0xa8, 0x1b, 0xc7, 0xf6, 0x8d, 0xfe, 0xac, 0xa1, 0xfa, 0xb5, 0x74, + 0x47, 0x0d, 0x3f, 0xe5, 0x21, 0xd4, 0x8a, 0xea, 0x76, 0xdf, 0x69, 0xdd, + 0xd5, 0x9a, 0x9c, 0x24, 0x8d, 0x46, 0x49, 0xae, 0x10, 0xf8, 0xcc, 0xc9, + 0xf7, 0x65, 0x89, 0x07, 0xb1, 0xa6, 0x9d, 0x74, 0xdc, 0x0c, 0x35, 0xe0, + 0xfa, 0x06, 0xad, 0x3d, 0x84, 0x96, 0xe4, 0x7b, 0x58, 0x9d, 0xbc, 0xba, + 0x8c, 0x30, 0xfd, 0xe7, 0x00, 0x7b, 0xd5, 0x69, 0x3c, 0x45, 0x6d, 0x1f, + 0xdc, 0x3b, 0xcf, 0xa2, 0xd7, 0x25, 0x14, 0xf6, 0xee, 0x72, 0x65, 0x52, + 0x7d, 0x4b, 0x55, 0xb8, 0x8c, 0x0c, 0x78, 0x95, 0x47, 0xd0, 0xd5, 0xaa, + 0x71, 0x5b, 0x90, 0xea, 0x37, 0xb2, 0x37, 0x1b, 0xc4, 0x32, 0xc9, 0xf7, + 0x23, 0xda, 0x3d, 0xe9, 0xe9, 0x3c, 0x97, 0x3c, 0xbb, 0xe0, 0x7a, 0x56, + 0x6c, 0x42, 0x1c, 0xff, 0x00, 0xac, 0x5f, 0xa6, 0x6a, 0xf4, 0x2d, 0x08, + 0xfe, 0x35, 0xfc, 0xe8, 0xb2, 0x5b, 0x22, 0x39, 0x9b, 0xdc, 0xb9, 0x10, + 0x0b, 0xea, 0xdf, 0x5a, 0xb9, 0x14, 0xbc, 0x8e, 0x09, 0xaa, 0x51, 0x4b, + 0x16, 0x73, 0xbc, 0x1f, 0xc6, 0xae, 0x45, 0x71, 0x18, 0xe8, 0x57, 0x3f, + 0x5a, 0x96, 0xd8, 0xd2, 0x2f, 0xc3, 0x23, 0x7a, 0x62, 0xae, 0x45, 0x21, + 0x23, 0xae, 0x2b, 0x27, 0xed, 0xa8, 0x06, 0x5a, 0x45, 0x5f, 0xc6, 0x81, + 0x7f, 0x93, 0x88, 0xc3, 0x39, 0xf5, 0x3c, 0x0a, 0xa5, 0xcc, 0xf6, 0x42, + 0xd0, 0xdd, 0x17, 0x04, 0x0c, 0x0e, 0x68, 0xfe, 0xd2, 0xf2, 0x72, 0x18, + 0xf2, 0x7a, 0x01, 0xd4, 0xd6, 0x4a, 0xbc, 0x92, 0x70, 0xd3, 0x04, 0x1f, + 0xdd, 0x4e, 0xbf, 0x9d, 0x4d, 0x0a, 0x88, 0xc7, 0xc9, 0x8c, 0x9e, 0xa7, + 0xb9, 0xad, 0x2e, 0xfa, 0x92, 0x6a, 0x2d, 0xe4, 0xd2, 0x2f, 0x4f, 0x2d, + 0x7f, 0x53, 0x52, 0xc3, 0x39, 0x1c, 0x00, 0x14, 0x55, 0x10, 0x25, 0x54, + 0x2d, 0xb5, 0x99, 0x7d, 0x70, 0x6a, 0xa9, 0x9a, 0xf2, 0xe5, 0xb6, 0xdb, + 0x5a, 0xce, 0xff, 0x00, 0xed, 0x04, 0x38, 0xfe, 0x55, 0xac, 0x54, 0xe5, + 0xd0, 0x97, 0x28, 0xae, 0xa6, 0xf4, 0xba, 0xaa, 0x5a, 0xa6, 0xe2, 0xfc, + 0x7b, 0x77, 0xaa, 0xd1, 0xde, 0xfd, 0xae, 0x40, 0xf3, 0x1d, 0xa9, 0xfc, + 0x28, 0x7b, 0xfb, 0x9a, 0xa7, 0x6b, 0xa2, 0x5f, 0x96, 0xf3, 0x27, 0xb4, + 0xb8, 0x73, 0xd8, 0xb4, 0x4d, 0xc5, 0x4d, 0x3d, 0x83, 0xed, 0xe5, 0x1d, + 0x08, 0xf5, 0x53, 0x57, 0xef, 0xad, 0x12, 0x15, 0xe3, 0xd4, 0xd9, 0xb7, + 0xb8, 0x66, 0xe9, 0x27, 0x14, 0xb3, 0xdf, 0x34, 0x2b, 0xb4, 0xbe, 0x71, + 0x58, 0x76, 0xef, 0x34, 0x6f, 0xfc, 0x45, 0x05, 0x32, 0xee, 0xe6, 0x46, + 0x6f, 0xba, 0xdf, 0x95, 0x3e, 0x69, 0x47, 0x42, 0xb4, 0x7d, 0x4d, 0x39, + 0x35, 0x52, 0x30, 0x4b, 0x70, 0x2a, 0xa5, 0x85, 0xff, 0x00, 0x9f, 0x2c, + 0x97, 0x19, 0xfb, 0xc7, 0x00, 0x7b, 0x0a, 0xc5, 0xbc, 0xb9, 0xb8, 0x94, + 0x08, 0x23, 0x8d, 0xb7, 0x39, 0xc1, 0x21, 0x7a, 0x0a, 0xb3, 0x04, 0x52, + 0xc4, 0x55, 0x02, 0x36, 0x00, 0xc0, 0xe0, 0xd6, 0x89, 0xc9, 0xad, 0xb5, + 0x64, 0x49, 0xc7, 0xbe, 0xc6, 0xd6, 0xa5, 0xad, 0x0b, 0x3b, 0x46, 0x90, + 0xee, 0x21, 0x46, 0x70, 0xbc, 0x93, 0x5c, 0xc8, 0xd1, 0x26, 0xf1, 0xad, + 0xca, 0x5c, 0xcd, 0x1c, 0xd1, 0xdb, 0x63, 0x02, 0x09, 0x4e, 0xd0, 0x7d, + 0xcd, 0x74, 0x76, 0x7a, 0x72, 0xcc, 0xc0, 0xce, 0xac, 0xc0, 0x7f, 0x0e, + 0x2b, 0xa6, 0xb1, 0x4b, 0x7b, 0x70, 0x02, 0xdb, 0xb1, 0xaf, 0x6f, 0x0f, + 0x84, 0xb2, 0xe6, 0xa9, 0xb9, 0xe1, 0xe2, 0x31, 0x6e, 0x4f, 0x96, 0x9e, + 0xc3, 0x7c, 0x3f, 0xf0, 0xcb, 0xc2, 0x36, 0x5a, 0x63, 0xac, 0xd1, 0xb8, + 0x9e, 0x45, 0xf9, 0x95, 0x50, 0x63, 0x3d, 0xf9, 0xae, 0x67, 0xc6, 0xdf, + 0x07, 0x7c, 0x33, 0x75, 0x66, 0xc7, 0x4b, 0x7b, 0x88, 0x66, 0x45, 0xf9, + 0x17, 0xa0, 0x27, 0xde, 0xbb, 0xd1, 0x36, 0x57, 0xe5, 0x8b, 0x68, 0xaa, + 0xd7, 0x07, 0x2a, 0x4b, 0x2e, 0x3e, 0xa2, 0xbd, 0x3e, 0x96, 0x3c, 0xd4, + 0xa3, 0xbd, 0x8f, 0x9c, 0x23, 0xf0, 0x07, 0x88, 0xec, 0xa4, 0x78, 0x9e, + 0xfe, 0x28, 0xa2, 0xe9, 0x92, 0x32, 0x4d, 0x75, 0xde, 0x1c, 0x5b, 0x9d, + 0x16, 0x05, 0xb1, 0xbc, 0xb8, 0x13, 0xbf, 0x58, 0xe5, 0x03, 0x00, 0xfb, + 0x57, 0xa2, 0x6a, 0x36, 0xf0, 0xdc, 0xa1, 0x05, 0x06, 0x4f, 0xb5, 0x71, + 0xda, 0xa6, 0x84, 0xe0, 0x30, 0x54, 0x63, 0x1f, 0x51, 0x8e, 0xc7, 0xd4, + 0x57, 0x9b, 0x8a, 0xa1, 0x3a, 0x8b, 0x47, 0x75, 0xd8, 0xf4, 0x30, 0xb5, + 0x63, 0x4d, 0xea, 0x5d, 0x49, 0xf7, 0x9c, 0x67, 0x9a, 0x25, 0x31, 0xce, + 0xd8, 0x6f, 0x91, 0xc7, 0x47, 0xac, 0x08, 0x64, 0xbb, 0x81, 0xfc, 0xab, + 0x85, 0x6c, 0x7f, 0x0c, 0xb9, 0x00, 0x7e, 0x35, 0x67, 0xfb, 0x46, 0xd2, + 0x1e, 0x27, 0xbf, 0xb5, 0x8c, 0xff, 0x00, 0xb7, 0x30, 0x06, 0xbc, 0x05, + 0x43, 0x11, 0x17, 0xa4, 0x59, 0xee, 0xaa, 0x94, 0xe4, 0xb7, 0x2c, 0x4b, + 0x33, 0xc0, 0xfb, 0x24, 0xe3, 0xd1, 0x87, 0x43, 0x4a, 0x24, 0xfe, 0xeb, + 0x91, 0xf8, 0xd6, 0x65, 0xc7, 0x89, 0xf4, 0x3b, 0x7c, 0x8b, 0x8d, 0x62, + 0xd9, 0xd3, 0xd2, 0x36, 0xde, 0x6b, 0x26, 0xe3, 0xc7, 0x7e, 0x18, 0xb5, + 0x62, 0x62, 0xd4, 0x26, 0x94, 0x7f, 0x74, 0x47, 0xfd, 0x49, 0xae, 0xd8, + 0xe1, 0xeb, 0xcd, 0x6b, 0x0b, 0x19, 0x39, 0xc2, 0x3b, 0x33, 0xa9, 0x67, + 0x57, 0xe1, 0xba, 0xd4, 0x2f, 0x18, 0x27, 0x29, 0x90, 0x7d, 0x45, 0x71, + 0xd3, 0xfc, 0x53, 0xd1, 0xd3, 0xfd, 0x4d, 0xb3, 0xca, 0x7d, 0x5e, 0x5c, + 0x7e, 0x98, 0xaa, 0xc7, 0xe2, 0xcb, 0xbe, 0x44, 0x11, 0x5a, 0xc0, 0x3b, + 0x12, 0xb9, 0x34, 0xfe, 0xa9, 0x51, 0x6a, 0xf4, 0x17, 0xb5, 0x8b, 0x3b, + 0xf8, 0xcd, 0xc1, 0x21, 0x44, 0x66, 0x4f, 0xf7, 0x47, 0x35, 0x33, 0xe2, + 0x15, 0xcd, 0xc4, 0x91, 0xdb, 0x0f, 0xfa, 0x6c, 0xc1, 0x6b, 0xcc, 0x25, + 0xf8, 0x89, 0x7d, 0x74, 0x08, 0x7d, 0x47, 0xe4, 0x3f, 0xc2, 0xac, 0x05, + 0x52, 0x3a, 0xe4, 0x57, 0x2d, 0xfb, 0xc9, 0xc3, 0x9f, 0xf6, 0x9b, 0x34, + 0x9d, 0x08, 0xad, 0xee, 0x0a, 0x4d, 0xec, 0x7a, 0x6d, 0xc6, 0xab, 0xa5, + 0xc2, 0xd9, 0xf3, 0xcc, 0xce, 0x3f, 0xe7, 0x88, 0xe3, 0xf3, 0xac, 0xf9, + 0xbc, 0x4e, 0xe3, 0x8b, 0x48, 0x51, 0x7d, 0xe5, 0xf9, 0x8d, 0x70, 0xd1, + 0xdd, 0xdb, 0x93, 0x94, 0x9c, 0x2f, 0xd1, 0xaa, 0xd4, 0x77, 0xdb, 0x06, + 0x44, 0xc8, 0xc3, 0xdc, 0xd4, 0xbf, 0x77, 0xe1, 0x40, 0x95, 0xcd, 0xfb, + 0x8d, 0x5a, 0xf2, 0xf0, 0xe6, 0x79, 0x1d, 0xbd, 0x81, 0xe3, 0xf2, 0xa4, + 0x8a, 0xe4, 0x6e, 0xc7, 0x99, 0x8f, 0x63, 0x59, 0x71, 0xea, 0xf1, 0xe3, + 0x0f, 0x8f, 0xa8, 0x39, 0xab, 0x0b, 0xa9, 0x5a, 0xca, 0x30, 0x5d, 0x47, + 0xd6, 0xb9, 0xa4, 0xdb, 0xdc, 0xd5, 0x26, 0x6c, 0x42, 0xc4, 0xb6, 0x49, + 0xc8, 0xf6, 0xab, 0x2b, 0x20, 0x07, 0x9f, 0xca, 0xb0, 0xd0, 0xc2, 0x79, + 0x8e, 0x50, 0x3e, 0x86, 0xac, 0x45, 0x2b, 0x0e, 0x44, 0xd9, 0xfa, 0x9c, + 0xd6, 0x57, 0x2f, 0x94, 0xd8, 0x5b, 0x95, 0xdd, 0xce, 0x0f, 0xb0, 0xa1, + 0xa7, 0x56, 0x1c, 0x00, 0x2b, 0x39, 0x67, 0x6e, 0xa4, 0xa3, 0x7e, 0x95, + 0x22, 0xdc, 0xae, 0x72, 0x50, 0x7e, 0x0d, 0x49, 0xb6, 0x34, 0x8b, 0xc3, + 0x63, 0x72, 0x54, 0x7e, 0x54, 0xf2, 0xb1, 0x1c, 0x60, 0x60, 0x7a, 0x0a, + 0xaa, 0x97, 0xa8, 0x47, 0x46, 0xa7, 0x0b, 0xd8, 0xd8, 0x7d, 0xec, 0x7f, + 0xbd, 0x5c, 0xed, 0x9a, 0x24, 0x48, 0xea, 0x08, 0xf9, 0x5d, 0xb3, 0xe9, + 0x9c, 0xd3, 0x0b, 0x4a, 0xa3, 0xef, 0x8c, 0x7d, 0x28, 0x33, 0x26, 0x38, + 0x65, 0x26, 0x98, 0x64, 0xf4, 0x20, 0xfe, 0x35, 0xce, 0xdc, 0x5e, 0xe6, + 0xca, 0xe3, 0xc4, 0xb2, 0xaf, 0x5c, 0x11, 0x46, 0xf6, 0x6e, 0x76, 0x0f, + 0xce, 0xab, 0x99, 0x1b, 0x27, 0xd3, 0xd6, 0x81, 0x26, 0x39, 0xdd, 0x58, + 0xb5, 0x1e, 0x86, 0x97, 0x64, 0xfb, 0xd8, 0x1f, 0xb8, 0x29, 0xac, 0xc3, + 0x07, 0x29, 0x50, 0x35, 0xce, 0x29, 0xa6, 0xeb, 0x03, 0x82, 0x2b, 0x3e, + 0x56, 0x57, 0x31, 0x39, 0x54, 0x3d, 0x63, 0x3f, 0x95, 0x30, 0xa2, 0x7f, + 0xcf, 0x33, 0x8f, 0xa5, 0x45, 0xf6, 0xe3, 0x8c, 0x9a, 0x70, 0xbc, 0x24, + 0x64, 0x8e, 0x2a, 0x5c, 0x64, 0xba, 0x05, 0xd0, 0xa5, 0x10, 0xff, 0x00, + 0x01, 0xfc, 0xa9, 0x85, 0x17, 0xfb, 0x8d, 0xf9, 0x53, 0xc4, 0xe4, 0xe7, + 0x1c, 0x52, 0xf9, 0xd9, 0xf6, 0x35, 0x3a, 0xa0, 0x20, 0x31, 0x23, 0x7f, + 0xcb, 0x36, 0xfc, 0xa8, 0x11, 0xa0, 0x1c, 0x46, 0x7f, 0x2a, 0x98, 0xca, + 0x41, 0xe0, 0x03, 0x49, 0xe7, 0xe3, 0xd2, 0x9d, 0xd8, 0xb4, 0x22, 0x68, + 0xd7, 0x1f, 0x70, 0xd3, 0x76, 0x00, 0x38, 0x8e, 0xa5, 0x6b, 0x9c, 0x76, + 0xc5, 0x42, 0xd7, 0x20, 0x1e, 0xd4, 0x2e, 0x60, 0xd0, 0x36, 0xf1, 0xf7, + 0x06, 0x68, 0x2a, 0xf8, 0xe1, 0x40, 0xa8, 0xda, 0xf9, 0x14, 0x72, 0xea, + 0xbf, 0x8d, 0x54, 0x9f, 0x5e, 0xb5, 0x8b, 0xef, 0xdc, 0xc4, 0xbf, 0x56, + 0xa7, 0xc9, 0x27, 0xb2, 0x1d, 0xcb, 0x2c, 0x92, 0x64, 0xe4, 0x81, 0xf8, + 0x55, 0x79, 0x44, 0x9d, 0x44, 0x98, 0x1e, 0x9d, 0x2b, 0x3a, 0xe3, 0xc5, + 0xba, 0x74, 0x59, 0xcd, 0xe4, 0x47, 0xe8, 0xd5, 0x95, 0x75, 0xf1, 0x07, + 0x4c, 0x88, 0x70, 0xe6, 0x42, 0x3b, 0x01, 0x9a, 0xea, 0xa7, 0x86, 0xad, + 0x37, 0x65, 0x17, 0xf7, 0x19, 0x4a, 0xa4, 0x62, 0xb5, 0x66, 0xa5, 0xfd, + 0xdc, 0xb6, 0xf1, 0x96, 0x8d, 0x5a, 0x52, 0x3b, 0x03, 0xcd, 0x60, 0xde, + 0xeb, 0x12, 0xb1, 0x19, 0x74, 0x88, 0x7f, 0x76, 0x45, 0x39, 0xa8, 0xf5, + 0x1f, 0x8c, 0xd2, 0x35, 0xbf, 0x91, 0x6d, 0x6f, 0x12, 0x2e, 0x31, 0xb8, + 0x46, 0x01, 0xae, 0x12, 0xff, 0x00, 0xc4, 0x53, 0xdf, 0xc8, 0xce, 0xff, + 0x00, 0xc5, 0x5f, 0x55, 0x43, 0x01, 0x08, 0x25, 0x25, 0xbf, 0xa1, 0xe3, + 0x54, 0xc5, 0xb7, 0x75, 0x26, 0xbe, 0x4e, 0xff, 0x00, 0xa1, 0xd2, 0xde, + 0x6a, 0x3a, 0x74, 0x87, 0x74, 0x84, 0xcb, 0x20, 0xea, 0x48, 0xc0, 0xac, + 0xcb, 0xa9, 0x74, 0xbb, 0x90, 0x47, 0x97, 0x83, 0xd8, 0xd7, 0x36, 0xd7, + 0x0e, 0xc7, 0xaf, 0x5a, 0x61, 0x66, 0xcf, 0x53, 0x5d, 0x8f, 0x0f, 0x77, + 0x7b, 0xb3, 0x85, 0xd7, 0x8f, 0x62, 0xfc, 0xd6, 0x90, 0x2b, 0x7e, 0xe2, + 0x46, 0xfa, 0x11, 0x5d, 0x2f, 0x87, 0xaf, 0x25, 0xb6, 0x88, 0x05, 0x2c, + 0x4f, 0xb8, 0xae, 0x42, 0xd6, 0x76, 0x8e, 0x40, 0x41, 0xae, 0xb7, 0x4e, + 0xb8, 0x4b, 0x88, 0x81, 0x2c, 0x49, 0xf4, 0x15, 0xcb, 0x8a, 0x4f, 0x93, + 0x95, 0xea, 0x74, 0xe1, 0xda, 0x7a, 0xc4, 0xda, 0x7b, 0xf9, 0x65, 0xfb, + 0xef, 0x81, 0x48, 0xb3, 0x0c, 0xf1, 0x96, 0x3e, 0xd5, 0x55, 0x42, 0x2f, + 0x38, 0x1f, 0x8d, 0x4c, 0xb7, 0x08, 0x07, 0x04, 0x7e, 0x15, 0xe4, 0x72, + 0xa5, 0xb2, 0x3d, 0x1e, 0x66, 0xf7, 0x2c, 0x2b, 0x31, 0x38, 0xc0, 0x5f, + 0xaf, 0x35, 0x61, 0x17, 0x3f, 0x78, 0x93, 0xed, 0xda, 0xa9, 0x24, 0xc4, + 0xf4, 0x43, 0xf8, 0xf1, 0x52, 0xa9, 0x92, 0x4e, 0xad, 0x81, 0xed, 0x59, + 0x34, 0xcb, 0x4c, 0xbc, 0xb2, 0x24, 0x6b, 0xc6, 0x05, 0x1f, 0x6b, 0xce, + 0x76, 0x8d, 0xc6, 0xab, 0xa4, 0x00, 0x72, 0x4e, 0x7d, 0xcd, 0x4c, 0xab, + 0xcf, 0x03, 0x8a, 0xc5, 0xa4, 0x5a, 0x6c, 0x50, 0x1e, 0x4e, 0x58, 0xe0, + 0x7a, 0x0a, 0x9e, 0x34, 0x0b, 0xf4, 0xa4, 0x55, 0x27, 0x8e, 0x94, 0xf2, + 0xf1, 0xc6, 0x3e, 0x66, 0xc9, 0xf4, 0xac, 0xdb, 0xbe, 0x88, 0xd1, 0x68, + 0x3f, 0xef, 0xf1, 0x9c, 0x52, 0x96, 0x58, 0x17, 0x73, 0xb6, 0x6a, 0x12, + 0xf2, 0x48, 0x30, 0x89, 0xb4, 0x7f, 0x79, 0xaa, 0x48, 0xed, 0xf0, 0x72, + 0xc7, 0x73, 0x7a, 0x9a, 0x8b, 0x25, 0xb9, 0x77, 0xec, 0x1b, 0x5e, 0xe0, + 0x8c, 0xfc, 0x91, 0xfa, 0x77, 0x35, 0x6d, 0x19, 0x55, 0x76, 0xa8, 0xda, + 0x05, 0x44, 0x00, 0x1d, 0x68, 0x32, 0xac, 0x23, 0x9e, 0x4f, 0x60, 0x2a, + 0x5f, 0xbd, 0xa2, 0x29, 0x3b, 0x6a, 0xc9, 0xde, 0x55, 0x45, 0xdc, 0xc7, + 0x00, 0x52, 0xdb, 0xc2, 0xcf, 0x99, 0xdc, 0x7c, 0xdf, 0xc2, 0xbe, 0x82, + 0xa1, 0xb7, 0x8c, 0xcc, 0x77, 0xcb, 0xdb, 0xee, 0xad, 0x5e, 0x56, 0xc8, + 0xf6, 0xa8, 0x97, 0xb9, 0xa2, 0x26, 0xfc, 0xc4, 0xea, 0xe0, 0x28, 0x3c, + 0xf3, 0x4d, 0x32, 0x65, 0x4e, 0x2a, 0x12, 0xd8, 0x1f, 0x2f, 0x6a, 0x69, + 0x7f, 0x97, 0x27, 0xbd, 0x62, 0xa2, 0x5d, 0xcf, 0x2f, 0x5f, 0x88, 0x9a, + 0x82, 0x8c, 0x6d, 0x8f, 0xf2, 0xa7, 0x7f, 0xc2, 0xc6, 0xbf, 0x5e, 0x71, + 0x1f, 0xe5, 0x5c, 0x81, 0x3c, 0xe3, 0x34, 0xd3, 0xc9, 0xcf, 0x27, 0xde, + 0xbe, 0xe7, 0xea, 0x74, 0x3f, 0x95, 0x1f, 0x26, 0xb1, 0xd5, 0xff, 0x00, + 0x98, 0xec, 0x3f, 0xe1, 0x63, 0xea, 0x1d, 0x36, 0xc7, 0xf8, 0x0a, 0x8e, + 0x7f, 0x88, 0x97, 0xed, 0x1e, 0xd6, 0x54, 0xc1, 0xf6, 0xae, 0x4c, 0xb9, + 0x1f, 0x4f, 0x5a, 0x0b, 0x83, 0xc7, 0x6a, 0x6b, 0x07, 0x41, 0x3f, 0x81, + 0x03, 0xc6, 0xd7, 0xfe, 0x63, 0xa8, 0x83, 0xe2, 0x0e, 0xa3, 0x12, 0x04, + 0x1b, 0x08, 0xed, 0x91, 0xd2, 0x9c, 0xff, 0x00, 0x10, 0xb5, 0x33, 0xd1, + 0xa3, 0x53, 0xf4, 0xae, 0x5c, 0x00, 0x69, 0xa7, 0xe5, 0x38, 0x14, 0xfe, + 0xa9, 0x41, 0xbb, 0xf2, 0xa2, 0x16, 0x36, 0xbf, 0xf3, 0x1d, 0x14, 0xde, + 0x38, 0xd5, 0x25, 0xe7, 0xcf, 0xdb, 0xfe, 0xe8, 0xaa, 0x92, 0xf8, 0x97, + 0x52, 0x98, 0x7c, 0xd7, 0x6f, 0xf8, 0x1a, 0xca, 0x04, 0x11, 0x9c, 0x7e, + 0x34, 0x13, 0xc7, 0x4a, 0xb5, 0x42, 0x94, 0x76, 0x8a, 0x21, 0xe2, 0x6b, + 0x3f, 0xb6, 0xcb, 0x52, 0x6a, 0x97, 0x92, 0x72, 0xf7, 0x32, 0x37, 0xfc, + 0x0a, 0xab, 0xbd, 0xc4, 0x8d, 0xc9, 0x91, 0xcf, 0xe3, 0x4c, 0x27, 0x3d, + 0xa9, 0x06, 0x07, 0xb5, 0x6c, 0xa2, 0x96, 0xc8, 0xc9, 0xd4, 0x9c, 0xb7, + 0x6c, 0x91, 0x6e, 0x64, 0x03, 0x86, 0x6f, 0xce, 0x9c, 0x2f, 0x25, 0x53, + 0xfe, 0xb1, 0xbf, 0x3a, 0x83, 0x70, 0xce, 0x78, 0xa5, 0xdd, 0x9e, 0xd4, + 0xf9, 0x57, 0x62, 0x79, 0xa5, 0xdc, 0xb0, 0x35, 0x1b, 0x85, 0x3c, 0x4c, + 0xc2, 0x9d, 0xfd, 0xab, 0x74, 0x3f, 0xe5, 0xbb, 0xfe, 0x75, 0x57, 0x18, + 0xe8, 0x29, 0xbc, 0x9e, 0xd4, 0xb9, 0x23, 0xd8, 0xaf, 0x69, 0x3e, 0xe5, + 0xe1, 0xaa, 0xdc, 0x83, 0x9f, 0x3d, 0xf3, 0xf5, 0xa9, 0x57, 0xc4, 0x17, + 0xc9, 0xf7, 0x67, 0x6f, 0xce, 0xb3, 0x68, 0x03, 0x3d, 0xa9, 0x3a, 0x70, + 0x7b, 0xa1, 0xaa, 0xd5, 0x17, 0xda, 0x66, 0xb2, 0xf8, 0xa3, 0x51, 0x5f, + 0xf9, 0x78, 0x6a, 0x90, 0x78, 0xbb, 0x52, 0x5f, 0xf9, 0x78, 0x6a, 0xc6, + 0xe9, 0x49, 0x8c, 0xd4, 0xfb, 0x0a, 0x4f, 0xec, 0xa1, 0xac, 0x45, 0x5e, + 0x92, 0x66, 0xe7, 0xfc, 0x26, 0x5a, 0x90, 0xe9, 0x3b, 0x7e, 0x34, 0xf1, + 0xe3, 0x8d, 0x54, 0x7f, 0xcb, 0x73, 0x58, 0x1b, 0x68, 0x39, 0xe9, 0xd2, + 0x97, 0xd5, 0xe8, 0xbf, 0xb2, 0x8a, 0xfa, 0xd5, 0x6f, 0xe6, 0x66, 0xec, + 0xfe, 0x31, 0xd4, 0xee, 0x63, 0x29, 0x25, 0xcb, 0x6d, 0x3d, 0x80, 0xac, + 0xa3, 0x7d, 0x23, 0x31, 0x63, 0xce, 0x7b, 0x9a, 0xac, 0x3e, 0x94, 0xfc, + 0xf6, 0xfd, 0x6b, 0x48, 0xd2, 0xa7, 0x0f, 0x85, 0x58, 0x89, 0x55, 0xa9, + 0x2d, 0x5b, 0xb9, 0x60, 0xdd, 0x3e, 0xdc, 0x91, 0x91, 0x4b, 0xf6, 0xd2, + 0xa3, 0x38, 0xfc, 0xaa, 0xbe, 0xd2, 0x05, 0x27, 0x97, 0x9e, 0x94, 0xf9, + 0x62, 0x47, 0xb4, 0x91, 0x67, 0xed, 0xcd, 0x8c, 0x84, 0xcf, 0xd6, 0xa4, + 0x8b, 0x52, 0x91, 0x08, 0x20, 0x81, 0xed, 0x54, 0x98, 0x91, 0xd7, 0x9f, + 0xad, 0x20, 0x19, 0xc7, 0x1f, 0x95, 0x0a, 0x28, 0xaf, 0x6b, 0x28, 0xec, + 0xcd, 0x9b, 0x7f, 0x12, 0xde, 0xc4, 0x7e, 0x49, 0x4a, 0x01, 0x57, 0x20, + 0xf1, 0xde, 0xab, 0x09, 0xe2, 0xe4, 0xe0, 0x7a, 0xd7, 0x36, 0x5c, 0xe3, + 0x18, 0xe2, 0x90, 0x9c, 0x9a, 0x1c, 0x14, 0x95, 0x99, 0x6b, 0x11, 0x34, + 0xee, 0x99, 0xd8, 0x1f, 0x89, 0x1a, 0xbf, 0x69, 0x53, 0x1f, 0x4a, 0x4f, + 0xf8, 0x58, 0xfa, 0xb9, 0xc9, 0xf3, 0x47, 0xe0, 0xb5, 0xc8, 0x0e, 0x31, + 0xfc, 0xe9, 0xde, 0x61, 0x1c, 0x0e, 0x95, 0xcb, 0xf5, 0x3a, 0x1d, 0x20, + 0x8d, 0xbe, 0xbb, 0x5f, 0xac, 0x8e, 0xa9, 0xbe, 0x23, 0xea, 0xc0, 0x71, + 0x28, 0xfc, 0xa9, 0x3f, 0xe1, 0x61, 0x6a, 0xc4, 0x64, 0xcc, 0x3f, 0x2a, + 0xe5, 0xb2, 0x17, 0xbe, 0x73, 0xeb, 0x48, 0xc3, 0x3d, 0xc1, 0xa6, 0xb0, + 0x94, 0x3f, 0x91, 0x13, 0xf5, 0xdc, 0x47, 0xf3, 0x1d, 0x48, 0xf8, 0x81, + 0xaa, 0x90, 0x7f, 0x7d, 0x48, 0x7c, 0x73, 0xac, 0x15, 0x27, 0xcf, 0xc5, + 0x72, 0xea, 0xa4, 0x91, 0x9a, 0x73, 0x12, 0x06, 0x32, 0x7e, 0x94, 0x7d, + 0x56, 0x8a, 0x7a, 0x45, 0x07, 0xd7, 0x2b, 0x7f, 0x31, 0xd2, 0x0f, 0x1f, + 0xea, 0xa0, 0x7f, 0xaf, 0x27, 0xf0, 0xa0, 0x78, 0xfb, 0x56, 0x23, 0x8b, + 0x92, 0x2b, 0x99, 0x19, 0x07, 0x20, 0xf1, 0xe8, 0x69, 0x72, 0xa4, 0x7c, + 0xdc, 0x7d, 0x29, 0xfd, 0x56, 0x8f, 0xf2, 0xa1, 0xfd, 0x6e, 0xb3, 0x5f, + 0x13, 0x3a, 0x17, 0xf1, 0xee, 0xb3, 0x8e, 0x6e, 0x9b, 0xea, 0x29, 0x07, + 0x8e, 0xf5, 0x82, 0xa7, 0xfd, 0x31, 0xb3, 0x5c, 0xfe, 0xd0, 0x39, 0xdd, + 0x91, 0xef, 0x40, 0x4c, 0xf2, 0x08, 0xc5, 0x57, 0xd5, 0xe8, 0xff, 0x00, + 0x2a, 0xfb, 0x88, 0xfa, 0xdd, 0x7f, 0xe6, 0x66, 0xd3, 0xf8, 0xcf, 0x58, + 0x90, 0x60, 0xde, 0x48, 0x2a, 0xa4, 0xbe, 0x20, 0xd4, 0x66, 0xce, 0xfb, + 0xb9, 0x0f, 0xe3, 0x54, 0x55, 0x71, 0xd4, 0xf1, 0xe9, 0x4d, 0x2d, 0xd8, + 0x0e, 0x2a, 0xe3, 0x46, 0x9a, 0x7a, 0x45, 0x7d, 0xc4, 0x3c, 0x4d, 0x69, + 0x6f, 0x27, 0xf7, 0x93, 0x9b, 0xbb, 0x89, 0x07, 0xcd, 0x3b, 0x9f, 0xab, + 0x1a, 0x8f, 0x2e, 0xc7, 0x92, 0x5b, 0xea, 0x69, 0xa1, 0x8f, 0xad, 0x28, + 0x63, 0x9e, 0x0d, 0x6e, 0xa2, 0x96, 0xc8, 0xc1, 0xce, 0x6f, 0x76, 0x38, + 0xa6, 0x7a, 0x12, 0x3f, 0x1a, 0x76, 0xd2, 0x07, 0xde, 0x39, 0xfa, 0xd3, + 0x55, 0x9b, 0xd3, 0x34, 0xec, 0x8e, 0xfc, 0x55, 0xa4, 0x88, 0xbb, 0xee, + 0x3d, 0x3a, 0x75, 0x6f, 0xce, 0x9e, 0x15, 0xfb, 0x33, 0x7e, 0x75, 0x18, + 0x7d, 0xbd, 0x39, 0xa7, 0x89, 0x4f, 0x7f, 0xe7, 0x5a, 0x25, 0x11, 0x73, + 0x4b, 0xa3, 0x24, 0x53, 0x30, 0xe8, 0xee, 0x3f, 0x1a, 0x90, 0x4f, 0x30, + 0xff, 0x00, 0x96, 0xb2, 0x03, 0xfe, 0xf5, 0x45, 0xbd, 0xbb, 0x52, 0xac, + 0x84, 0x75, 0xe9, 0xf5, 0xaa, 0xe4, 0x8f, 0x60, 0xf6, 0x95, 0x3b, 0x96, + 0x56, 0xe6, 0xe4, 0x0f, 0xf8, 0xf8, 0x97, 0xfe, 0xfa, 0xa7, 0xad, 0xf5, + 0xe2, 0xf3, 0xf6, 0xa9, 0x07, 0xfc, 0x0a, 0xa1, 0x59, 0xe3, 0x1c, 0x6d, + 0x34, 0xff, 0x00, 0x3a, 0x33, 0xd0, 0x1f, 0xca, 0x8f, 0x67, 0x0e, 0xc1, + 0xed, 0xaa, 0xae, 0xac, 0xb3, 0x1e, 0xab, 0xa8, 0x2f, 0xdd, 0xba, 0x93, + 0x1f, 0x5a, 0xb0, 0xba, 0xde, 0xa8, 0x3f, 0xe5, 0xe6, 0x4c, 0x7b, 0x1a, + 0xa4, 0xae, 0x8a, 0x3f, 0x88, 0xfe, 0x14, 0xf1, 0x32, 0xe7, 0xab, 0x0f, + 0xc2, 0x9f, 0xb3, 0xa7, 0xd8, 0x7f, 0x58, 0xac, 0xfe, 0xd3, 0xfb, 0xcb, + 0xe9, 0xaf, 0xea, 0x71, 0xb6, 0x45, 0xd3, 0x93, 0xef, 0x57, 0x62, 0xf1, + 0x96, 0xb1, 0x10, 0xe2, 0x6c, 0xfd, 0x45, 0x64, 0x24, 0x90, 0x93, 0xcb, + 0xb0, 0x3e, 0xeb, 0x53, 0x86, 0xb7, 0x23, 0x99, 0x88, 0xff, 0x00, 0x80, + 0xd5, 0x7b, 0x38, 0x76, 0x17, 0xd6, 0x2b, 0xad, 0x2e, 0x6a, 0xa7, 0x8e, + 0xf5, 0xae, 0x82, 0xe0, 0x0a, 0xb1, 0x07, 0xc4, 0x1d, 0x76, 0xdc, 0x82, + 0xb7, 0x55, 0x85, 0x98, 0x57, 0xee, 0xca, 0x08, 0xf5, 0xdb, 0x4e, 0x57, + 0x8d, 0xb8, 0xf3, 0x47, 0xe5, 0x4f, 0xd9, 0x43, 0xb0, 0x7d, 0x62, 0xbf, + 0x73, 0xbc, 0xb2, 0xf8, 0xf5, 0xe3, 0x3b, 0x08, 0x44, 0x50, 0xea, 0x21, + 0x50, 0x70, 0x06, 0xc0, 0x6b, 0x57, 0x4d, 0xfd, 0xa7, 0x3e, 0x20, 0x69, + 0x32, 0x07, 0x83, 0x54, 0x0a, 0x7d, 0xd1, 0x7f, 0xc2, 0xbc, 0xc4, 0x2a, + 0x6e, 0xff, 0x00, 0x5a, 0x9f, 0x8d, 0x4d, 0xf6, 0x68, 0xdf, 0x04, 0xcd, + 0x1d, 0x57, 0xb3, 0x87, 0x60, 0xfa, 0xd5, 0x64, 0xee, 0xdf, 0xe0, 0x7b, + 0x0c, 0x9f, 0xb6, 0x57, 0xc4, 0xa7, 0x8b, 0xcb, 0x7d, 0x52, 0x36, 0x5f, + 0x4f, 0x29, 0x7f, 0xc2, 0xb1, 0x2e, 0x7f, 0x69, 0x3f, 0x18, 0xea, 0x2c, + 0x5a, 0x6b, 0x98, 0x5c, 0x9e, 0xb9, 0x4a, 0xf3, 0xa1, 0x6b, 0x13, 0x70, + 0x66, 0x8b, 0x1e, 0xf4, 0xef, 0xb1, 0xc1, 0x9e, 0x27, 0x87, 0xf3, 0xa7, + 0xc9, 0x1e, 0xc2, 0x78, 0x9a, 0xaf, 0x73, 0xb9, 0xff, 0x00, 0x85, 0xeb, + 0xe2, 0x46, 0x39, 0x22, 0x03, 0xff, 0x00, 0x01, 0x3f, 0xe3, 0x4a, 0x3e, + 0x3c, 0xf8, 0x8f, 0xa6, 0xc8, 0x32, 0x3f, 0xd9, 0x3f, 0xe3, 0x5c, 0x3f, + 0xd9, 0xa2, 0x03, 0x1e, 0x74, 0x5f, 0x81, 0x34, 0x2d, 0xa4, 0x43, 0xa4, + 0xf1, 0x67, 0xeb, 0x49, 0xc2, 0x3d, 0x84, 0xab, 0xd5, 0x3b, 0xa5, 0xf8, + 0xf7, 0xe2, 0x54, 0x39, 0x55, 0xb7, 0x07, 0xfd, 0xd3, 0xfe, 0x34, 0xef, + 0xf8, 0x68, 0x4f, 0x15, 0x2f, 0x46, 0x81, 0x7f, 0xe0, 0x15, 0xc3, 0x2d, + 0x8c, 0x44, 0x64, 0xdc, 0xc2, 0x3e, 0xb4, 0xe3, 0x61, 0x09, 0x19, 0xfb, + 0x54, 0x39, 0xfa, 0xd3, 0xe4, 0x8f, 0x61, 0xac, 0x4d, 0x55, 0xff, 0x00, + 0x0c, 0x76, 0x4d, 0xfb, 0x41, 0xf8, 0xb4, 0xb7, 0xfa, 0xc8, 0x73, 0xff, + 0x00, 0x5c, 0xe9, 0xe3, 0xf6, 0x88, 0xf1, 0x9a, 0x8c, 0xad, 0xd4, 0x69, + 0xf4, 0x8c, 0x57, 0x11, 0xf6, 0x18, 0xc9, 0xff, 0x00, 0x8f, 0xa8, 0x73, + 0xf5, 0xa7, 0x25, 0x84, 0x7f, 0xc5, 0x77, 0x07, 0xe7, 0x4f, 0x95, 0x58, + 0x4e, 0xbd, 0x57, 0xff, 0x00, 0x0c, 0x76, 0x92, 0x7e, 0xd0, 0xde, 0x3a, + 0x91, 0x78, 0xd5, 0x8a, 0xff, 0x00, 0xba, 0x8b, 0xfe, 0x15, 0x42, 0xeb, + 0xe3, 0x6f, 0x8d, 0xee, 0xc6, 0x24, 0xd7, 0x26, 0xc1, 0xec, 0x00, 0x1f, + 0xd2, 0xb9, 0xf1, 0xa6, 0xc3, 0xff, 0x00, 0x3f, 0xb0, 0x0f, 0xc4, 0xd2, + 0x8d, 0x32, 0x0f, 0xf9, 0xfe, 0x80, 0x7e, 0x74, 0x59, 0x11, 0xf5, 0x9a, + 0xb6, 0xff, 0x00, 0x80, 0x58, 0x9f, 0xe2, 0x3f, 0x8a, 0x6e, 0x09, 0x2f, + 0xac, 0x5c, 0x9c, 0xfa, 0x35, 0x66, 0x5c, 0xf8, 0x97, 0x59, 0xbd, 0xcf, + 0x9d, 0xa8, 0xdc, 0x39, 0xf7, 0x73, 0x53, 0xb5, 0x8c, 0x0a, 0xdf, 0xf1, + 0xfd, 0x17, 0xe0, 0x0d, 0x46, 0xd6, 0xd6, 0xe0, 0xff, 0x00, 0xc7, 0xda, + 0x9f, 0xa2, 0x9a, 0x76, 0x40, 0xaa, 0xd5, 0xdd, 0x33, 0x36, 0x4b, 0x9b, + 0xc9, 0x3e, 0xf5, 0xc4, 0xad, 0xff, 0x00, 0x02, 0x35, 0x01, 0x12, 0xb9, + 0xe5, 0xdd, 0xbe, 0xa6, 0xb6, 0x3e, 0xcd, 0x6a, 0x0f, 0xfc, 0x7d, 0x11, + 0xf4, 0x43, 0x4d, 0x36, 0xf6, 0x83, 0xad, 0xd3, 0x7f, 0xdf, 0xba, 0x56, + 0xb0, 0xbd, 0xa4, 0xe4, 0x62, 0x98, 0x39, 0xe7, 0x24, 0x50, 0x2d, 0x82, + 0xf4, 0xfc, 0xab, 0x59, 0x92, 0xc8, 0x73, 0xf6, 0x87, 0x3f, 0xf6, 0xce, + 0xa3, 0x7f, 0xb1, 0x8f, 0xf9, 0x6a, 0xe7, 0xfe, 0x01, 0x4e, 0xc4, 0xb7, + 0x2e, 0xa6, 0x69, 0xb6, 0x18, 0xcf, 0x1f, 0x80, 0xa6, 0xfd, 0x98, 0x01, + 0xeb, 0xf4, 0xad, 0x0c, 0xdb, 0x0e, 0x85, 0xcf, 0xd5, 0x69, 0x8d, 0x24, + 0x23, 0xb3, 0x0a, 0x34, 0x15, 0xe4, 0x51, 0xf2, 0x7d, 0x01, 0xa6, 0x34, + 0x52, 0x2f, 0x4d, 0xdf, 0x81, 0xab, 0x8d, 0x71, 0x10, 0xcf, 0xca, 0xdf, + 0xca, 0xa2, 0x37, 0x51, 0x9e, 0x88, 0x7f, 0x16, 0xa5, 0xa1, 0x6a, 0x53, + 0x5b, 0x15, 0xc2, 0x48, 0x7a, 0xb3, 0x8f, 0xc6, 0x9c, 0x43, 0x8e, 0x92, + 0xb8, 0xfc, 0x6a, 0x53, 0x3a, 0xff, 0x00, 0xcf, 0x3c, 0xff, 0x00, 0xc0, + 0xaa, 0x36, 0x9d, 0x4f, 0xfc, 0xb3, 0xc7, 0xfc, 0x0a, 0x95, 0xa2, 0x57, + 0x3c, 0xff, 0x00, 0x98, 0x84, 0x99, 0x41, 0xe2, 0x57, 0xfc, 0xe9, 0x0b, + 0xcc, 0x39, 0xf3, 0x5f, 0xf3, 0xa7, 0xb5, 0xca, 0x81, 0xf7, 0x07, 0xe7, + 0x51, 0x1b, 0xb0, 0x4f, 0x4a, 0x9e, 0x58, 0x76, 0x2d, 0x54, 0xab, 0xfc, + 0xdf, 0x89, 0x22, 0x5e, 0x5d, 0xc7, 0xf7, 0x67, 0x90, 0x7e, 0x34, 0xff, + 0x00, 0xed, 0x1b, 0xe5, 0xff, 0x00, 0x97, 0xa9, 0x7f, 0x06, 0xa8, 0x3e, + 0xd2, 0x9d, 0xf3, 0x4b, 0xf6, 0x98, 0xfb, 0xee, 0xfc, 0xa9, 0x7b, 0x3a, + 0x7d, 0x8d, 0x3d, 0xb5, 0x65, 0xb4, 0x9f, 0xde, 0x4e, 0x35, 0xad, 0x41, + 0x38, 0x5b, 0x99, 0x3f, 0x33, 0x41, 0xd7, 0xf5, 0x21, 0xd6, 0xee, 0x55, + 0xfa, 0x31, 0xaa, 0xcf, 0x74, 0x8d, 0xc0, 0x6c, 0x0f, 0xa5, 0x33, 0xcd, + 0x8b, 0xb9, 0x2d, 0x53, 0xec, 0xa9, 0x3f, 0xb2, 0x8b, 0xf6, 0xf5, 0xff, + 0x00, 0x99, 0xfd, 0xe5, 0xd1, 0xe2, 0x5d, 0x55, 0x4e, 0x3e, 0xdd, 0x30, + 0xf4, 0xf9, 0xa9, 0xe9, 0xe2, 0xad, 0x61, 0x0e, 0x45, 0xec, 0xbf, 0x9d, + 0x67, 0x17, 0x88, 0x9c, 0xff, 0x00, 0x4a, 0x69, 0x68, 0xf8, 0xc1, 0xfc, + 0xea, 0x7e, 0xaf, 0x45, 0xfd, 0x95, 0xf7, 0x17, 0xf5, 0x9a, 0xff, 0x00, + 0xcc, 0xce, 0x82, 0x2f, 0x1e, 0xeb, 0x89, 0x1e, 0x05, 0xc6, 0x7d, 0xc8, + 0xaa, 0xb2, 0xf8, 0xc7, 0x59, 0x98, 0xe7, 0xed, 0x8c, 0x3f, 0xdd, 0x35, + 0x96, 0x26, 0x8f, 0x6e, 0x0e, 0x3f, 0x2a, 0x04, 0x91, 0x8e, 0x32, 0x31, + 0xdc, 0x0a, 0x4f, 0x0f, 0x45, 0xef, 0x14, 0x2f, 0xac, 0xd7, 0xee, 0x5f, + 0xff, 0x00, 0x84, 0xb7, 0x59, 0x27, 0x8b, 0xd9, 0x7f, 0x3a, 0x7a, 0xf8, + 0xcf, 0x5b, 0x07, 0x02, 0xfa, 0x4a, 0xcf, 0xf3, 0x22, 0xda, 0x40, 0xc0, + 0xa4, 0x0d, 0x1a, 0xf4, 0xc0, 0x35, 0x1f, 0x54, 0xa2, 0xfe, 0xca, 0xfb, + 0x8a, 0xfa, 0xde, 0x23, 0xf9, 0x99, 0xa6, 0x7c, 0x63, 0xae, 0x11, 0xff, + 0x00, 0x1f, 0x92, 0x1a, 0x6f, 0xfc, 0x26, 0x3a, 0xd0, 0x19, 0x37, 0x92, + 0x56, 0x7b, 0x34, 0x6f, 0xdd, 0x45, 0x3c, 0x2c, 0x5e, 0x58, 0x05, 0xc6, + 0x69, 0x7d, 0x52, 0x87, 0xf2, 0xaf, 0xb8, 0x7f, 0x5b, 0xc4, 0xaf, 0xb4, + 0xcb, 0x7f, 0xf0, 0x98, 0xeb, 0x24, 0x83, 0xf6, 0xc9, 0x33, 0x53, 0x0f, + 0x1c, 0x6b, 0x99, 0xc0, 0xbc, 0x92, 0xb3, 0x07, 0x96, 0x18, 0x90, 0x57, + 0x3e, 0x98, 0xa6, 0x96, 0x8d, 0x9b, 0x24, 0x81, 0xeb, 0x8a, 0x3e, 0xa9, + 0x41, 0xfd, 0x95, 0xf7, 0x0b, 0xeb, 0x98, 0x8f, 0xe6, 0x66, 0xaf, 0xfc, + 0x27, 0x1a, 0xe6, 0x4f, 0xfa, 0x6c, 0x9c, 0x7b, 0x51, 0xff, 0x00, 0x09, + 0xce, 0xb9, 0xff, 0x00, 0x3f, 0xb2, 0x67, 0xe9, 0x59, 0x4e, 0xf1, 0x70, + 0x55, 0xfa, 0x7a, 0x52, 0xf9, 0xa8, 0xb8, 0x3d, 0x69, 0x7d, 0x4f, 0x0f, + 0xfc, 0x8b, 0xee, 0x0f, 0xae, 0xe2, 0x3f, 0x99, 0x9a, 0xa7, 0xc7, 0x7a, + 0xe6, 0x30, 0x6f, 0x1f, 0x3e, 0xe2, 0x9a, 0xde, 0x35, 0xd7, 0x0a, 0xe7, + 0xed, 0xaf, 0x8f, 0x61, 0x59, 0x8d, 0x70, 0x87, 0xa0, 0x03, 0xeb, 0x48, + 0x26, 0x8d, 0x79, 0x20, 0x7e, 0x14, 0xbe, 0xa7, 0x87, 0x5f, 0x61, 0x7d, + 0xc0, 0xf1, 0xb8, 0x97, 0xf6, 0x99, 0x79, 0xfc, 0x63, 0xac, 0xca, 0x3e, + 0x6b, 0xe9, 0x0f, 0xd3, 0x8a, 0x86, 0x4d, 0x6f, 0x55, 0x9b, 0xef, 0x5e, + 0x4a, 0x73, 0xfe, 0xd9, 0xaa, 0xbe, 0x7c, 0x47, 0x3f, 0x26, 0x7d, 0xe9, + 0x3e, 0xd2, 0xa0, 0x60, 0x01, 0xf9, 0x55, 0x2c, 0x35, 0x18, 0xed, 0x15, + 0xf7, 0x09, 0xe2, 0xb1, 0x0f, 0xed, 0x31, 0x64, 0xbc, 0xbb, 0x7c, 0xee, + 0xb9, 0x91, 0xbf, 0xe0, 0x46, 0xab, 0xbb, 0x48, 0xdc, 0x97, 0x62, 0x7d, + 0xcd, 0x4c, 0x2e, 0x7d, 0x70, 0x45, 0x35, 0xee, 0x01, 0xe8, 0x05, 0x68, + 0xa9, 0xc1, 0x6c, 0x8c, 0x7d, 0xad, 0x59, 0x6e, 0xc8, 0x42, 0x33, 0x75, + 0x26, 0x95, 0x94, 0xa9, 0xe4, 0x9a, 0x7f, 0x9e, 0x3d, 0x29, 0x0c, 0xe0, + 0x8e, 0x83, 0xf2, 0xaa, 0xe5, 0x88, 0xaf, 0x31, 0x80, 0x0a, 0x41, 0x1e, + 0x69, 0xc6, 0x6e, 0x3a, 0x53, 0x44, 0xdf, 0x4a, 0x9f, 0x74, 0x5e, 0xf0, + 0x15, 0xc7, 0xad, 0x37, 0x92, 0x69, 0xcd, 0x2e, 0x47, 0xa5, 0x33, 0x75, + 0x4b, 0xb1, 0x49, 0xb1, 0xdc, 0x8e, 0x79, 0x15, 0x22, 0x5e, 0x4f, 0x0f, + 0xdc, 0x91, 0x97, 0xe8, 0x6a, 0x1d, 0xe6, 0x82, 0xf9, 0x15, 0x9c, 0xa3, + 0x17, 0xba, 0x29, 0x4a, 0x71, 0xd9, 0x96, 0x86, 0xa7, 0x74, 0xbc, 0xf9, + 0xad, 0x9a, 0x7a, 0xeb, 0x97, 0xab, 0xff, 0x00, 0x2d, 0x4d, 0x50, 0x2d, + 0x9e, 0xf4, 0x67, 0xf0, 0xac, 0xdd, 0x38, 0x3e, 0x86, 0x8a, 0xb5, 0x55, + 0xf6, 0x8d, 0x45, 0xf1, 0x25, 0xfa, 0xe3, 0xf7, 0xb5, 0x20, 0xf1, 0x55, + 0xfa, 0xff, 0x00, 0xcb, 0x51, 0xf9, 0x56, 0x31, 0xa5, 0x03, 0xde, 0xb2, + 0x74, 0x69, 0x7f, 0x2a, 0x2f, 0xeb, 0x15, 0x7f, 0x98, 0xdc, 0x1e, 0x2f, + 0xd4, 0x17, 0xf8, 0xc7, 0xe5, 0x52, 0x2f, 0x8d, 0x75, 0x01, 0xfc, 0x4b, + 0xf9, 0x57, 0x3e, 0x4d, 0x28, 0x1e, 0xd5, 0x0f, 0x0f, 0x4b, 0xf9, 0x51, + 0x6b, 0x13, 0x5b, 0xf9, 0x8d, 0xf3, 0xe3, 0x5d, 0x41, 0xff, 0x00, 0x8c, + 0x0f, 0xa0, 0xa9, 0x22, 0xf1, 0xad, 0xe4, 0x5d, 0x02, 0x13, 0xea, 0x47, + 0x26, 0xb9, 0xcd, 0xa4, 0x1a, 0x3a, 0x1e, 0x79, 0xa5, 0xf5, 0x6a, 0x2f, + 0x4e, 0x54, 0x37, 0x8b, 0xad, 0xfc, 0xc7, 0x51, 0xff, 0x00, 0x09, 0xe5, + 0xfe, 0x7f, 0x83, 0xf2, 0xa5, 0x1e, 0x3d, 0xd4, 0x7b, 0xec, 0xfc, 0xab, + 0x97, 0x1c, 0x9e, 0x98, 0xfa, 0xd2, 0xe0, 0x0e, 0x3b, 0xd4, 0x7d, 0x52, + 0x87, 0xf2, 0xa1, 0xfd, 0x72, 0xbf, 0xf3, 0x1d, 0x4f, 0xfc, 0x27, 0xba, + 0x81, 0x04, 0x7c, 0x99, 0xff, 0x00, 0x76, 0xa3, 0x8b, 0xc6, 0xd7, 0xd1, + 0xc8, 0xcf, 0x84, 0x66, 0x3e, 0xa3, 0x35, 0xcc, 0x16, 0xc1, 0xc1, 0x39, + 0x14, 0x64, 0x64, 0x60, 0x63, 0x14, 0xfe, 0xa9, 0x45, 0x6d, 0x14, 0x1f, + 0x5c, 0xad, 0xfc, 0xc7, 0x5e, 0x7e, 0x22, 0xea, 0x0b, 0x8f, 0x96, 0x3c, + 0xff, 0x00, 0xbb, 0x4b, 0xff, 0x00, 0x0b, 0x1b, 0x51, 0x23, 0xa4, 0x79, + 0xfa, 0x57, 0x22, 0x46, 0xe1, 0x91, 0x4d, 0x6c, 0x93, 0xef, 0x51, 0xf5, + 0x3a, 0x1f, 0xca, 0x8a, 0xfa, 0xed, 0x7f, 0xe6, 0x3b, 0x01, 0xf1, 0x1b, + 0x51, 0x07, 0xee, 0xc6, 0x3f, 0x0a, 0x1b, 0xe2, 0x2e, 0xa3, 0x22, 0x63, + 0x6c, 0x7f, 0x95, 0x72, 0x1c, 0x8f, 0x6a, 0x55, 0xe0, 0xd1, 0xf5, 0x3a, + 0x1f, 0xca, 0x87, 0xf5, 0xda, 0xff, 0x00, 0xcc, 0x34, 0x80, 0xd9, 0xc5, + 0x20, 0x05, 0x7b, 0xd2, 0xe3, 0x04, 0xf1, 0x41, 0x24, 0xd7, 0x71, 0xc0, + 0x1d, 0x0f, 0x1c, 0x0a, 0x31, 0x8e, 0xf9, 0xa4, 0xc1, 0xf4, 0xa4, 0xc1, + 0xf4, 0xa0, 0x07, 0x0a, 0x28, 0x02, 0x8e, 0x4d, 0x02, 0x01, 0xc1, 0xa5, + 0xcf, 0x3e, 0xd4, 0xdc, 0x1f, 0x4a, 0x3f, 0x0a, 0x06, 0x3b, 0x20, 0x8a, + 0x4c, 0x51, 0xf9, 0xd1, 0xf9, 0xd0, 0x02, 0x63, 0x14, 0xa0, 0x7e, 0x14, + 0x7e, 0x74, 0x76, 0xef, 0x40, 0x83, 0xf1, 0xa4, 0xa5, 0xfc, 0x0d, 0x27, + 0xe0, 0x68, 0x01, 0x7f, 0x2a, 0x32, 0x45, 0x27, 0xe0, 0x68, 0xfc, 0x0d, + 0x03, 0x14, 0x13, 0xde, 0x94, 0x48, 0x05, 0x26, 0x7f, 0xd9, 0x34, 0x06, + 0xff, 0x00, 0x66, 0x80, 0xb0, 0x19, 0x33, 0xed, 0x49, 0x9a, 0x76, 0xe1, + 0xfd, 0xdf, 0xd2, 0x93, 0x8f, 0x4a, 0x07, 0x61, 0x43, 0x81, 0xd8, 0x52, + 0x6e, 0x04, 0xf4, 0x03, 0xe9, 0x49, 0xb4, 0x1e, 0x99, 0xa3, 0x6e, 0x3d, + 0x68, 0xd0, 0x56, 0x24, 0xcb, 0x76, 0x34, 0xe1, 0x21, 0x51, 0xef, 0xed, + 0x50, 0xe0, 0x0e, 0xb9, 0xfc, 0xa9, 0xc3, 0x03, 0xfb, 0xd4, 0xac, 0x3b, + 0x0e, 0xce, 0xef, 0x41, 0xf5, 0xa6, 0x96, 0xf4, 0xfd, 0x29, 0x7e, 0x5f, + 0x4a, 0x6e, 0xd1, 0xda, 0x84, 0x2b, 0x00, 0x00, 0x8f, 0x5a, 0x42, 0xa7, + 0x1d, 0x38, 0xa5, 0x23, 0xeb, 0x40, 0xf7, 0xce, 0x2a, 0x85, 0xb0, 0x8a, + 0xa4, 0xfb, 0x53, 0xf6, 0x01, 0xe9, 0x49, 0xc0, 0xed, 0x4d, 0x6e, 0x7a, + 0x0a, 0x1e, 0xa1, 0xab, 0x25, 0x05, 0x7a, 0x15, 0xc8, 0xa4, 0x78, 0xfd, + 0x3a, 0x7a, 0x13, 0x51, 0x8c, 0xfb, 0xd3, 0xb2, 0xc7, 0xa9, 0xfd, 0x29, + 0x5a, 0xdb, 0x0a, 0xcc, 0x69, 0x27, 0xb5, 0x21, 0xe6, 0xa4, 0x00, 0x03, + 0xd7, 0xf4, 0xa4, 0x20, 0x7f, 0x91, 0x55, 0x74, 0x30, 0x0b, 0xde, 0x93, + 0x67, 0x3d, 0xcd, 0x00, 0x91, 0x46, 0xe6, 0xf4, 0xcd, 0x02, 0xd4, 0x09, + 0x00, 0xf0, 0x31, 0x4e, 0x1c, 0x72, 0x3a, 0xfb, 0x53, 0x77, 0x1f, 0x4a, + 0x4c, 0x9f, 0x43, 0x4a, 0xc3, 0xd4, 0x79, 0x63, 0xfd, 0xd3, 0x4d, 0xcf, + 0xb9, 0xa3, 0x27, 0xde, 0x8c, 0xf1, 0xf7, 0x73, 0x4a, 0xc1, 0xa8, 0x67, + 0x14, 0xbd, 0x7f, 0x8a, 0x93, 0x23, 0xd0, 0x8a, 0x32, 0x3d, 0x0d, 0x30, + 0xdc, 0x5d, 0xc4, 0x7a, 0x1a, 0x4d, 0xc4, 0xd1, 0x9f, 0x63, 0xf9, 0x51, + 0x9f, 0x63, 0xf9, 0x53, 0xbb, 0x0b, 0x0e, 0x07, 0xd8, 0xfe, 0x54, 0xff, + 0x00, 0x30, 0x0a, 0x8f, 0x23, 0x3d, 0xc7, 0xe1, 0x49, 0x9f, 0xaf, 0xe5, + 0x4d, 0x49, 0xa0, 0xb5, 0xc9, 0xc4, 0xa3, 0x1d, 0x69, 0xc0, 0x83, 0xfc, + 0x5c, 0x55, 0x6c, 0xfd, 0x7f, 0x2a, 0x50, 0xe4, 0x7a, 0xfe, 0x55, 0x4a, + 0xa3, 0x27, 0x94, 0xba, 0xbb, 0x7f, 0xbe, 0x3f, 0x1a, 0x94, 0x14, 0x1f, + 0xf2, 0xd3, 0xf2, 0xac, 0xef, 0x34, 0xfa, 0x52, 0x89, 0xcf, 0xf7, 0x6a, + 0xfd, 0xa9, 0x3c, 0x97, 0x34, 0xd3, 0x04, 0xf0, 0x6a, 0xc2, 0xa2, 0x0e, + 0xaf, 0xfa, 0x56, 0x38, 0xba, 0xc7, 0x58, 0xf3, 0x52, 0xc7, 0x7c, 0xab, + 0xd6, 0x0c, 0xff, 0x00, 0xc0, 0xa9, 0xfb, 0x42, 0x5d, 0x33, 0x50, 0x24, + 0x7d, 0xa5, 0xfd, 0x29, 0xea, 0x11, 0x47, 0x0e, 0x4f, 0xe1, 0x59, 0xcb, + 0xa9, 0xc2, 0x3a, 0xdb, 0x9f, 0xfb, 0xea, 0x9f, 0xfd, 0xa9, 0x6d, 0x8f, + 0xf8, 0xf7, 0x7f, 0xce, 0xaf, 0xda, 0xa2, 0x1d, 0x37, 0xe6, 0x5f, 0x12, + 0xa8, 0xef, 0x9a, 0x77, 0x9a, 0x0f, 0x4c, 0x0a, 0xce, 0xfe, 0xd4, 0xb6, + 0xed, 0x6c, 0xff, 0x00, 0xf7, 0xd5, 0x28, 0xd5, 0xa0, 0xff, 0x00, 0x9e, + 0x0c, 0x3f, 0x1a, 0x7e, 0xd1, 0x0b, 0xd9, 0x9a, 0x01, 0x80, 0x3c, 0xb7, + 0xe9, 0x4f, 0x12, 0x2f, 0x66, 0xac, 0xcf, 0xed, 0x4b, 0x7e, 0xf0, 0xbf, + 0xe7, 0x4a, 0x35, 0x4b, 0x6c, 0x7f, 0xa9, 0x71, 0x47, 0xb4, 0x40, 0xe9, + 0x9a, 0x59, 0x05, 0xb3, 0xb8, 0xd2, 0xef, 0x00, 0xfd, 0xea, 0xcc, 0xfe, + 0xd6, 0x83, 0xfe, 0x79, 0x49, 0xf9, 0xd2, 0xff, 0x00, 0x6c, 0x41, 0xff, + 0x00, 0x3c, 0x9e, 0x8f, 0x6a, 0x2e, 0x49, 0x1a, 0x82, 0x55, 0xcf, 0x5a, + 0x5f, 0x30, 0x29, 0xe0, 0xe6, 0xb2, 0x7f, 0xb5, 0xe1, 0xff, 0x00, 0x9e, + 0x6f, 0x4a, 0x35, 0x78, 0x3f, 0xe7, 0x9c, 0x95, 0x5e, 0xd5, 0x07, 0xb3, + 0x66, 0xb1, 0x9f, 0x3d, 0x4e, 0x3f, 0x0a, 0x51, 0x3e, 0x7f, 0x88, 0x56, + 0x50, 0xd6, 0x20, 0x1f, 0xf2, 0xce, 0x4a, 0x4f, 0xed, 0x98, 0x07, 0x48, + 0x9e, 0x8f, 0x6a, 0x85, 0xec, 0xdf, 0x63, 0x67, 0x3f, 0x2f, 0x50, 0x69, + 0x85, 0xf9, 0xea, 0x2b, 0x28, 0xeb, 0x71, 0x76, 0x8d, 0xe8, 0xfe, 0xdb, + 0x88, 0xf5, 0x85, 0xcf, 0xe3, 0x4f, 0xda, 0xa0, 0x54, 0xa4, 0x6a, 0x92, + 0x58, 0x73, 0x8f, 0xce, 0x90, 0x6e, 0x23, 0x19, 0x07, 0xf1, 0xac, 0xaf, + 0xed, 0xa8, 0x7b, 0x42, 0xff, 0x00, 0x9d, 0x28, 0xd7, 0x23, 0x1f, 0xf2, + 0xc9, 0xff, 0x00, 0x1a, 0x5e, 0xd5, 0x14, 0xa9, 0xb3, 0x54, 0x3b, 0xaf, + 0x55, 0x14, 0xef, 0x31, 0xc0, 0xfb, 0xa2, 0xb2, 0x46, 0xbf, 0x1f, 0xfc, + 0xf1, 0x63, 0x4a, 0x3c, 0x42, 0x98, 0xff, 0x00, 0x50, 0xdf, 0x9d, 0x1e, + 0xd5, 0x77, 0x25, 0xd2, 0x91, 0xa4, 0xd2, 0xc8, 0x7d, 0xaa, 0x22, 0xce, + 0x7a, 0x82, 0xc2, 0xa8, 0xff, 0x00, 0xc2, 0x42, 0x9f, 0xf3, 0xc0, 0x9f, + 0xc6, 0x93, 0xfe, 0x12, 0x15, 0xff, 0x00, 0x9f, 0x6c, 0xfe, 0x34, 0xbd, + 0xa4, 0x47, 0xec, 0xe5, 0xd8, 0xba, 0xc3, 0x1d, 0x01, 0x14, 0xdc, 0xb0, + 0xe8, 0x2a, 0x9f, 0xfc, 0x24, 0x0b, 0xff, 0x00, 0x3e, 0xbf, 0xad, 0x37, + 0xfb, 0x7d, 0x7f, 0xe7, 0xd7, 0xff, 0x00, 0x1e, 0xa3, 0xda, 0xc4, 0x7e, + 0xce, 0x45, 0xe2, 0xce, 0x7b, 0x54, 0x6d, 0xbb, 0xd6, 0xa9, 0x9d, 0x77, + 0x77, 0xfc, 0xbb, 0x7e, 0xb5, 0x1b, 0x6b, 0x05, 0xba, 0x40, 0x05, 0x2f, + 0x6a, 0x83, 0xd9, 0xc8, 0xb8, 0xde, 0xe6, 0x98, 0x36, 0xf7, 0xc5, 0x50, + 0x6d, 0x4e, 0x46, 0xe8, 0x80, 0x54, 0x6d, 0x7d, 0x29, 0xfe, 0x1f, 0xd2, + 0x8f, 0x69, 0x12, 0x95, 0x39, 0x1a, 0x47, 0x6d, 0x31, 0x86, 0x6b, 0x3f, + 0xed, 0x72, 0x7a, 0x51, 0xf6, 0xb9, 0x7d, 0xe8, 0xf6, 0x91, 0x1f, 0xb3, + 0x65, 0xef, 0x2f, 0x3d, 0xf1, 0x4c, 0x31, 0x01, 0xfc, 0x46, 0xa9, 0xfd, + 0xaa, 0x4f, 0x53, 0x48, 0x6e, 0x64, 0x3d, 0xcd, 0x2e, 0x78, 0x8f, 0x92, + 0x45, 0xcd, 0x81, 0x7b, 0x9f, 0xca, 0x9a, 0x48, 0x35, 0x50, 0xc8, 0x4f, + 0xad, 0x02, 0x42, 0x3a, 0x03, 0xf9, 0x51, 0xcf, 0x12, 0xb9, 0x59, 0x61, + 0x9f, 0x6f, 0x4c, 0x0a, 0x61, 0x72, 0xdd, 0xcd, 0x47, 0xe6, 0xb1, 0xec, + 0x7f, 0x2a, 0x4f, 0x37, 0xfd, 0x93, 0x4b, 0x9a, 0x25, 0x24, 0xd7, 0x42, + 0xcc, 0x68, 0x7a, 0xb3, 0x60, 0x7a, 0x50, 0xdb, 0x41, 0xf9, 0x1b, 0x9f, + 0x61, 0x55, 0xc4, 0xdd, 0xf6, 0x0f, 0xc4, 0x52, 0xf9, 0xe7, 0xb0, 0xc7, + 0xd0, 0x52, 0xe6, 0x89, 0x1c, 0xae, 0xe3, 0xc8, 0x03, 0xa8, 0xc9, 0xa6, + 0xf2, 0xc2, 0x9a, 0x66, 0x39, 0xce, 0x33, 0x40, 0x9c, 0x8f, 0xe1, 0x1f, + 0x95, 0x3e, 0x65, 0xdc, 0xab, 0x31, 0xc4, 0x11, 0xee, 0x68, 0xa4, 0xf3, + 0xcf, 0xbf, 0xe5, 0x47, 0x9d, 0xfe, 0xce, 0x7f, 0x0a, 0x7c, 0xcb, 0xa3, + 0x29, 0x5d, 0x6e, 0x89, 0x63, 0xc3, 0xf0, 0x5a, 0x86, 0x52, 0xbd, 0x31, + 0xf8, 0xd4, 0x62, 0xe0, 0xf4, 0x03, 0x1f, 0x85, 0x21, 0x93, 0x3c, 0x9c, + 0xd2, 0xe6, 0x5d, 0xc9, 0x51, 0x77, 0x26, 0x57, 0x65, 0xe8, 0xab, 0xf8, + 0x53, 0x24, 0x7d, 0xcf, 0x9c, 0x73, 0xe9, 0x4c, 0x59, 0x76, 0x9e, 0x9f, + 0xa5, 0x3b, 0xce, 0x43, 0xfc, 0x06, 0x9d, 0xd7, 0x71, 0x59, 0xa7, 0x7b, + 0x02, 0x0f, 0x51, 0x46, 0xe2, 0x0f, 0x07, 0x8f, 0x6a, 0x43, 0x28, 0x27, + 0x8d, 0xc3, 0xf0, 0xa6, 0xf9, 0x98, 0xec, 0x4f, 0xe1, 0x42, 0x71, 0x5d, + 0x4a, 0x48, 0x7a, 0xb8, 0x07, 0x91, 0x9a, 0x70, 0x75, 0xe7, 0x20, 0xe2, + 0x98, 0x2e, 0x08, 0xfe, 0x1c, 0xfd, 0x45, 0x28, 0xba, 0x6f, 0xee, 0xfe, + 0x94, 0x73, 0x2e, 0xe2, 0x69, 0xf6, 0x02, 0x14, 0x9f, 0x97, 0xa5, 0x28, + 0x52, 0x47, 0x50, 0x29, 0xa6, 0xe5, 0x8f, 0xf0, 0xfe, 0x94, 0x86, 0x73, + 0xe9, 0x8f, 0xa0, 0xa9, 0xba, 0xee, 0x16, 0x90, 0xa1, 0x0f, 0xff, 0x00, + 0xaa, 0x90, 0x85, 0x1d, 0x69, 0x3c, 0xe3, 0xe8, 0x69, 0xa6, 0x42, 0x7b, + 0x1a, 0x9b, 0xae, 0xe3, 0xb3, 0x14, 0x91, 0x9a, 0x42, 0x73, 0xeb, 0x46, + 0x7e, 0xb4, 0x6f, 0x23, 0xd6, 0x95, 0xd1, 0x5a, 0x86, 0x0f, 0xa5, 0x1b, + 0x4d, 0x1b, 0xc9, 0xed, 0xfa, 0x52, 0x6e, 0x3e, 0x94, 0xae, 0x85, 0xa8, + 0xb8, 0x34, 0x60, 0xf7, 0xa4, 0xc9, 0xf4, 0xa4, 0xc9, 0xa9, 0xba, 0x0b, + 0x31, 0x76, 0xfa, 0x52, 0xe0, 0x9e, 0xf4, 0xde, 0x4f, 0x6a, 0x39, 0xa9, + 0xba, 0x0b, 0x31, 0x4a, 0xe2, 0x90, 0xfe, 0x34, 0x7c, 0xd4, 0x98, 0x3e, + 0x94, 0x0e, 0xc1, 0x9a, 0x5e, 0xb4, 0x98, 0x34, 0xbc, 0xfb, 0xd0, 0x3b, + 0x07, 0x3e, 0x94, 0xec, 0x01, 0xd6, 0x9b, 0xcf, 0xbf, 0xe5, 0x49, 0x8c, + 0xf6, 0x34, 0xac, 0x02, 0xee, 0x02, 0x90, 0x9c, 0xf6, 0x34, 0x63, 0xd8, + 0xd2, 0xe4, 0x8e, 0x80, 0xd0, 0x00, 0x39, 0x3e, 0xd4, 0xee, 0x9d, 0x31, + 0x4d, 0xcb, 0x7b, 0xd2, 0xf3, 0x49, 0x86, 0xa2, 0xf5, 0x3c, 0x91, 0x48, + 0x47, 0x3c, 0x74, 0xf5, 0x26, 0x90, 0xe4, 0xd1, 0x83, 0xef, 0x45, 0x83, + 0x51, 0xd8, 0x20, 0x71, 0x49, 0x93, 0x9e, 0x79, 0xa3, 0x07, 0xd4, 0xd2, + 0x6d, 0xa0, 0x7c, 0xa3, 0xb9, 0x6e, 0xb4, 0x87, 0xa8, 0xc9, 0xa5, 0x03, + 0x3d, 0xe9, 0x76, 0xe4, 0x8e, 0x69, 0x0f, 0x96, 0xdb, 0x1f, 0xff, 0xd9 +}; +unsigned int ennis_jpg_len = 82716; diff --git a/assets/hdr/04_field.h b/assets/hdr/04_field.h new file mode 100644 index 0000000..37b02c1 --- /dev/null +++ b/assets/hdr/04_field.h @@ -0,0 +1,4903 @@ +unsigned char field_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x4b, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x30, 0x38, + 0x3a, 0x31, 0x39, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x34, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, + 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, + 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, + 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, + 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, + 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, + 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xf5, 0x8e, 0x31, 0x4b, 0xc7, 0xb5, 0x46, 0x0f, 0x14, 0xb9, + 0xaf, 0x4a, 0xc7, 0x2d, 0xc7, 0xe0, 0x51, 0x8a, 0x6e, 0x69, 0x73, 0x40, + 0x0e, 0xc7, 0xd2, 0x8c, 0x53, 0x73, 0x4b, 0x9a, 0x40, 0x2e, 0x05, 0x1b, + 0x69, 0x29, 0x73, 0x40, 0xc5, 0xdb, 0x46, 0xda, 0x4c, 0xd2, 0xe6, 0x80, + 0x17, 0x65, 0x1b, 0x7e, 0x94, 0x99, 0xa3, 0x26, 0x90, 0x0b, 0xb2, 0x8d, + 0xbf, 0x4a, 0x4c, 0x9a, 0x5c, 0xd0, 0x01, 0xb0, 0x7b, 0x51, 0xb0, 0x51, + 0x9a, 0x33, 0x40, 0x06, 0xd1, 0x4b, 0xb4, 0x51, 0x9a, 0x28, 0x18, 0x6d, + 0x14, 0x6d, 0x14, 0xb4, 0x52, 0x01, 0x36, 0x8f, 0x4a, 0x36, 0x8f, 0x4a, + 0x5a, 0x28, 0x01, 0x36, 0x8f, 0x4a, 0x36, 0x8f, 0x4a, 0x5a, 0x28, 0x01, + 0x36, 0x8f, 0x4a, 0x36, 0x8f, 0x4a, 0x5a, 0x28, 0x01, 0x36, 0x8f, 0x4a, + 0x36, 0x8f, 0x4a, 0x75, 0x14, 0x00, 0xdd, 0xa3, 0xd2, 0x8d, 0xa3, 0xd2, + 0x9d, 0x49, 0x40, 0x09, 0xb4, 0x7a, 0x51, 0xb4, 0x7a, 0x52, 0xd1, 0x40, + 0x09, 0xb4, 0x7a, 0x52, 0xed, 0x1e, 0x94, 0x51, 0x40, 0x09, 0xb4, 0x7a, + 0x0a, 0x5d, 0xa3, 0xd2, 0x8a, 0x5c, 0xd0, 0x02, 0x6d, 0x1e, 0x94, 0x9b, + 0x47, 0xa5, 0x3b, 0x34, 0x66, 0x80, 0x1b, 0xb4, 0x7a, 0x51, 0xb4, 0x7a, + 0x53, 0xb3, 0x46, 0x68, 0x01, 0xbb, 0x47, 0xa5, 0x1b, 0x47, 0xa5, 0x3b, + 0x34, 0x66, 0x80, 0x1b, 0xb4, 0x7a, 0x52, 0xed, 0xf6, 0xa5, 0xcd, 0x14, + 0x00, 0xdd, 0xa2, 0x8d, 0x83, 0xda, 0x9d, 0x45, 0x00, 0x37, 0x68, 0xa3, + 0x68, 0xa7, 0x52, 0xe2, 0x80, 0xb0, 0xcd, 0xa2, 0x8d, 0xa3, 0xd2, 0x9f, + 0x8a, 0x31, 0x45, 0xc2, 0xc3, 0x36, 0x8f, 0x4a, 0x36, 0x8a, 0x7e, 0xda, + 0x36, 0xd1, 0x70, 0x19, 0xb4, 0x7a, 0x51, 0xb4, 0x53, 0xf1, 0x46, 0x28, + 0xb8, 0x0c, 0xda, 0x28, 0xda, 0x3d, 0x29, 0xf8, 0xa3, 0x14, 0x5c, 0x2c, + 0x33, 0x68, 0xf4, 0xa3, 0x68, 0xf4, 0xa7, 0xe2, 0x8c, 0x51, 0x70, 0x19, + 0xb4, 0x7a, 0x51, 0xb4, 0x7a, 0x53, 0xb1, 0x46, 0x28, 0xb8, 0x0d, 0xda, + 0x3d, 0x28, 0xda, 0x3d, 0x29, 0xd8, 0xa2, 0x80, 0x1b, 0xb4, 0x51, 0xb4, + 0x53, 0xa8, 0xa0, 0x06, 0xed, 0x1e, 0x94, 0x6d, 0x14, 0xec, 0xd1, 0x9a, + 0x00, 0x6e, 0xd1, 0xe9, 0x46, 0xd1, 0x4e, 0xcd, 0x2e, 0x68, 0x01, 0x9b, + 0x45, 0x1b, 0x45, 0x3f, 0x22, 0x92, 0x80, 0x1b, 0xb4, 0x51, 0xb4, 0x52, + 0xd2, 0x50, 0x01, 0xb4, 0x51, 0xb4, 0x51, 0x49, 0x4c, 0x41, 0x81, 0xed, + 0x46, 0x07, 0xa5, 0x14, 0x50, 0x01, 0xb4, 0x51, 0x81, 0x45, 0x14, 0x00, + 0x98, 0x14, 0x60, 0x52, 0xd2, 0x53, 0x00, 0xc0, 0xf4, 0xa3, 0x1e, 0xd4, + 0xb4, 0x50, 0x21, 0x31, 0xed, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x52, 0xd1, + 0x40, 0x0d, 0xfc, 0x28, 0xa5, 0xa2, 0x80, 0x12, 0x8f, 0xc2, 0x96, 0x8a, + 0x00, 0x4f, 0xc2, 0x8f, 0xc2, 0x96, 0x8a, 0x00, 0x4e, 0x3d, 0x28, 0xfc, + 0x28, 0xc5, 0x18, 0xa0, 0x03, 0xf0, 0xa3, 0xf0, 0xa3, 0x14, 0x62, 0x80, + 0x0f, 0xc2, 0x8a, 0x31, 0x45, 0x00, 0x14, 0x7e, 0x14, 0x51, 0x40, 0x07, + 0xe1, 0x45, 0x14, 0x50, 0x01, 0x47, 0xe1, 0x49, 0x45, 0x00, 0x2f, 0xe1, + 0x49, 0xc5, 0x14, 0x53, 0x00, 0xfc, 0x28, 0xcf, 0xb5, 0x25, 0x14, 0x00, + 0xec, 0xfb, 0x0a, 0x4c, 0xfb, 0x52, 0x51, 0x40, 0x0b, 0xf8, 0x52, 0x7e, + 0x14, 0x51, 0x83, 0x40, 0x06, 0x7d, 0xa8, 0xcd, 0x18, 0x34, 0x9c, 0xd0, + 0x02, 0xe6, 0x8a, 0x4e, 0x68, 0xa0, 0x05, 0xa2, 0x92, 0x8a, 0x00, 0x5a, + 0x38, 0xa4, 0xa2, 0x80, 0x17, 0x22, 0x8c, 0x8a, 0x6d, 0x14, 0x00, 0xec, + 0x8a, 0x32, 0x29, 0xb4, 0x53, 0xb0, 0x87, 0x71, 0x47, 0x1e, 0xd4, 0xda, + 0x4a, 0x2c, 0x17, 0x1f, 0xc5, 0x1c, 0x62, 0x99, 0x9a, 0x09, 0xe2, 0x8b, + 0x05, 0xc4, 0x07, 0x8e, 0x94, 0x6e, 0xa3, 0xad, 0x26, 0x29, 0x88, 0x5d, + 0xd4, 0xbb, 0xa9, 0xb8, 0xa4, 0xa0, 0x09, 0x03, 0x52, 0x86, 0xa8, 0xa9, + 0x73, 0x45, 0x87, 0x72, 0x5d, 0xd4, 0xb9, 0xa8, 0xb3, 0x4b, 0x9a, 0x56, + 0x0b, 0x92, 0x66, 0x8a, 0x66, 0x69, 0x41, 0xa5, 0x61, 0x8e, 0xa2, 0x93, + 0x34, 0xb4, 0x00, 0x52, 0xd2, 0x52, 0xe2, 0x90, 0xc2, 0x96, 0x8c, 0x52, + 0xe2, 0x90, 0x05, 0x14, 0x62, 0x97, 0x14, 0x0c, 0x29, 0x71, 0x45, 0x2e, + 0x29, 0x00, 0x94, 0x52, 0xe2, 0x97, 0x14, 0x00, 0x94, 0x62, 0x96, 0x8a, + 0x06, 0x26, 0x28, 0xa5, 0xa3, 0x14, 0x80, 0x4a, 0x29, 0x71, 0x46, 0xda, + 0x04, 0x25, 0x25, 0x3c, 0x2d, 0x2e, 0xda, 0x2e, 0x3b, 0x11, 0xe2, 0x8c, + 0x54, 0x9b, 0x68, 0xdb, 0x45, 0xc2, 0xc4, 0x78, 0xa5, 0xc5, 0x3b, 0x14, + 0x62, 0x8b, 0x80, 0xdc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x17, 0x01, 0xb8, + 0xa3, 0x14, 0xec, 0x52, 0x51, 0x70, 0x13, 0x14, 0x62, 0x96, 0x8a, 0x00, + 0x4c, 0x52, 0xe2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xc8, 0xa3, + 0x8a, 0x31, 0x46, 0x28, 0x01, 0x78, 0xa3, 0x8a, 0x4a, 0x5a, 0x00, 0x5c, + 0xd1, 0x49, 0x9a, 0x33, 0x48, 0x07, 0x51, 0x49, 0x9a, 0x32, 0x28, 0x01, + 0x68, 0xa3, 0x8a, 0x31, 0x40, 0x09, 0x45, 0x2e, 0x29, 0x71, 0x40, 0x0c, + 0xc5, 0x14, 0xfc, 0x51, 0x8a, 0x2e, 0x03, 0x28, 0xa7, 0x6d, 0xa3, 0x6d, + 0x17, 0x01, 0x94, 0xb4, 0xbb, 0x69, 0x31, 0x4c, 0x04, 0xa2, 0x97, 0x14, + 0x94, 0x00, 0x94, 0x52, 0xe2, 0x93, 0x14, 0xc4, 0x25, 0x14, 0xb4, 0x94, + 0x00, 0xb4, 0x51, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x50, 0x02, 0x52, 0x62, + 0x9d, 0x8a, 0x5c, 0x51, 0x70, 0x19, 0x8a, 0x29, 0xf8, 0xa4, 0xc5, 0x17, + 0x01, 0x94, 0x53, 0xb1, 0x45, 0x3b, 0x88, 0x6d, 0x14, 0xea, 0x4a, 0x00, + 0x4a, 0x29, 0x71, 0x45, 0x02, 0x12, 0x8a, 0x5c, 0x51, 0x40, 0x09, 0x49, + 0x4e, 0xc5, 0x26, 0x28, 0x01, 0x28, 0xa5, 0xc5, 0x18, 0xa6, 0x02, 0x51, + 0xcd, 0x2e, 0x28, 0xc5, 0x00, 0x36, 0x8a, 0x76, 0x28, 0xa0, 0x04, 0xa2, + 0x96, 0x8a, 0x00, 0x4a, 0x33, 0x4b, 0x46, 0x28, 0x01, 0x28, 0xa5, 0xc5, + 0x14, 0x00, 0x94, 0x51, 0x8a, 0x31, 0x40, 0x05, 0x25, 0x2e, 0x28, 0xc5, + 0x00, 0x25, 0x18, 0xa5, 0xc5, 0x14, 0x00, 0x94, 0x94, 0xb4, 0x62, 0x80, + 0x12, 0x8a, 0x5a, 0x29, 0x88, 0x4a, 0x29, 0x69, 0x28, 0x00, 0xa3, 0x26, + 0x8a, 0x28, 0x00, 0xc9, 0xa2, 0x8c, 0x51, 0x8f, 0x7a, 0x00, 0x29, 0x29, + 0x70, 0x28, 0xc0, 0xa0, 0x04, 0xa5, 0xe2, 0x97, 0x02, 0x8e, 0x28, 0x18, + 0x60, 0x51, 0x81, 0x46, 0x68, 0xcd, 0x20, 0x13, 0x14, 0x62, 0x97, 0x34, + 0x99, 0xa6, 0x02, 0x51, 0x81, 0x4b, 0x91, 0x49, 0x40, 0x06, 0x05, 0x26, + 0xd1, 0xeb, 0x4b, 0x49, 0x9a, 0x62, 0x13, 0x6d, 0x21, 0x04, 0x0e, 0x94, + 0xec, 0xd2, 0x13, 0xc5, 0x00, 0x2e, 0xde, 0x29, 0x0a, 0x1a, 0x5d, 0xd4, + 0x85, 0xa8, 0xd4, 0x34, 0x1b, 0xb4, 0xd2, 0x62, 0x9d, 0x9a, 0x31, 0x4c, + 0x43, 0x28, 0xc5, 0x3b, 0x14, 0x6d, 0xa0, 0x04, 0xc5, 0x28, 0x14, 0x62, + 0x94, 0x0a, 0x00, 0x28, 0xa5, 0xc5, 0x18, 0xa4, 0x30, 0x14, 0xe1, 0x4d, + 0xa5, 0xa4, 0x31, 0xe0, 0x53, 0xb1, 0x4c, 0x14, 0xf1, 0x49, 0x8c, 0x5a, + 0x5a, 0x41, 0x4b, 0x52, 0x30, 0xc5, 0x2d, 0x25, 0x28, 0xa0, 0x05, 0xa2, + 0x93, 0x22, 0x8d, 0xc2, 0x90, 0xc7, 0x62, 0x97, 0x6d, 0x47, 0xbe, 0x8f, + 0x32, 0x8b, 0x31, 0x5c, 0x93, 0x6d, 0x18, 0xa6, 0x79, 0x94, 0xbb, 0xe8, + 0xb3, 0x18, 0xec, 0x0a, 0x30, 0x29, 0x9b, 0xc5, 0x2e, 0xea, 0x00, 0x76, + 0x29, 0x71, 0x4c, 0xdd, 0x46, 0xea, 0x56, 0x02, 0x4a, 0x2a, 0x3d, 0xd4, + 0x64, 0xd1, 0x60, 0xb9, 0x26, 0x28, 0xc5, 0x33, 0x71, 0xa3, 0x75, 0x16, + 0x1d, 0xc7, 0xe2, 0x8c, 0x53, 0x43, 0x52, 0xe7, 0xde, 0x80, 0x17, 0x14, + 0x98, 0xa3, 0x75, 0x1b, 0xa8, 0x00, 0xc5, 0x25, 0x1b, 0xc5, 0x1b, 0xe8, + 0x10, 0x11, 0x49, 0x46, 0xea, 0x4c, 0xd3, 0x01, 0x71, 0x46, 0x29, 0xb9, + 0xa3, 0x34, 0x00, 0xfc, 0x51, 0xb6, 0x9b, 0x9a, 0x28, 0x01, 0x70, 0x3d, + 0x69, 0x28, 0xa2, 0x80, 0x0c, 0xd1, 0x9a, 0x4a, 0x5c, 0xfb, 0x50, 0x02, + 0x66, 0x97, 0x34, 0x66, 0x8c, 0xd0, 0x20, 0xa2, 0x8a, 0x28, 0x18, 0xb4, + 0x64, 0xd2, 0x53, 0x85, 0x00, 0x19, 0xa5, 0xcd, 0x14, 0xb4, 0x80, 0x4c, + 0xd2, 0xd2, 0xe2, 0x8e, 0x29, 0x00, 0x94, 0x52, 0x66, 0x8c, 0xd3, 0x01, + 0x68, 0xa4, 0xdd, 0x46, 0x45, 0x00, 0x18, 0xa3, 0x14, 0xb9, 0x14, 0x64, + 0x50, 0x03, 0x71, 0x46, 0x29, 0xd9, 0x14, 0x64, 0x50, 0x03, 0x76, 0xd2, + 0x62, 0x9d, 0x9a, 0x4c, 0x9a, 0x00, 0x6e, 0x28, 0xa0, 0xd2, 0x53, 0x10, + 0x66, 0x8c, 0xd1, 0x49, 0x9a, 0x62, 0x17, 0x34, 0x66, 0x9b, 0x9a, 0x5c, + 0xd1, 0x60, 0xb8, 0xb9, 0xa3, 0x34, 0x94, 0x50, 0x02, 0xd1, 0x45, 0x14, + 0x00, 0x52, 0x52, 0xd1, 0x40, 0x09, 0x46, 0x29, 0x68, 0xa0, 0x04, 0xc5, + 0x18, 0xa5, 0xa2, 0x80, 0x13, 0x14, 0x62, 0x9d, 0x8a, 0x31, 0x40, 0x0d, + 0xc5, 0x2e, 0x29, 0x71, 0x46, 0x28, 0x01, 0x31, 0x49, 0x8a, 0x76, 0x28, + 0xc5, 0x00, 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x31, 0x40, 0x0d, 0xc5, 0x18, + 0xa7, 0x62, 0x8c, 0x50, 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0x00, + 0xdc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x33, 0x14, 0x62, 0x9f, 0x8a, + 0x4c, 0x50, 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0xc0, 0x66, 0x28, + 0xc5, 0x3f, 0x14, 0x98, 0xa2, 0xe2, 0x1b, 0x46, 0x29, 0xd8, 0xa4, 0xc5, + 0x17, 0x01, 0xb8, 0xa3, 0x14, 0xec, 0x52, 0x62, 0x80, 0x1b, 0x45, 0x3b, + 0x14, 0x98, 0xa6, 0x21, 0xb4, 0x52, 0xe2, 0x93, 0x14, 0xc0, 0x29, 0x29, + 0x68, 0xa0, 0x04, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x10, 0x94, + 0x51, 0x45, 0x31, 0x8b, 0x4a, 0x06, 0x69, 0x00, 0xa7, 0x67, 0x14, 0x80, + 0x4d, 0xb4, 0xb8, 0xa6, 0x96, 0x34, 0x9b, 0x8d, 0x00, 0x3c, 0x81, 0x4d, + 0x20, 0x52, 0x64, 0xd2, 0x12, 0x68, 0xb0, 0x5c, 0x5c, 0x51, 0xb4, 0xe2, + 0x93, 0x26, 0x97, 0x77, 0x14, 0xc0, 0x67, 0x6a, 0x31, 0x4d, 0xcf, 0x14, + 0xb9, 0xa6, 0x21, 0xf4, 0x6e, 0x15, 0x1e, 0xea, 0x4d, 0xd4, 0x58, 0x2e, + 0x49, 0x9a, 0x5e, 0x2a, 0x2d, 0xc6, 0x97, 0x26, 0x8b, 0x05, 0xc9, 0x32, + 0x28, 0xcd, 0x47, 0x93, 0x46, 0x68, 0xb0, 0x5c, 0x93, 0x34, 0x66, 0xa2, + 0xdd, 0x46, 0xea, 0x2c, 0x17, 0x25, 0xdc, 0x28, 0xdd, 0x51, 0x6e, 0xa3, + 0x75, 0x16, 0x0b, 0x93, 0x06, 0xa5, 0xdd, 0x50, 0x6e, 0xa4, 0xdf, 0x4b, + 0x94, 0x77, 0x2d, 0x6e, 0xa3, 0x7d, 0x57, 0xdd, 0x4b, 0xba, 0x8e, 0x50, + 0xb9, 0x3e, 0xfa, 0x5d, 0xf5, 0x5f, 0x75, 0x26, 0xfa, 0x5c, 0xa1, 0x72, + 0x72, 0xd4, 0x85, 0xaa, 0x1d, 0xf4, 0x66, 0x9f, 0x28, 0x5c, 0x97, 0x34, + 0xa0, 0xd4, 0x59, 0xa5, 0x06, 0x8b, 0x05, 0xc9, 0x73, 0x46, 0xea, 0x8f, + 0x77, 0x14, 0xdd, 0xd4, 0xac, 0x17, 0x26, 0xde, 0x29, 0x43, 0x54, 0x1b, + 0x85, 0x38, 0x35, 0x16, 0x0b, 0x93, 0x6e, 0xa5, 0xdd, 0x50, 0x17, 0xa6, + 0xef, 0xa3, 0x94, 0x7c, 0xc5, 0x9d, 0xc3, 0xd6, 0x8f, 0x30, 0x55, 0x6d, + 0xd4, 0xa3, 0x14, 0x72, 0x87, 0x31, 0x3f, 0x99, 0x47, 0x99, 0x51, 0x71, + 0x49, 0x9a, 0x56, 0x41, 0x72, 0x6f, 0x32, 0x8d, 0xf9, 0xa8, 0x69, 0x77, + 0x51, 0x60, 0xb9, 0x2e, 0xe3, 0x4b, 0xba, 0xa1, 0x0d, 0x4e, 0xa2, 0xc1, + 0x71, 0xfb, 0xe9, 0x37, 0x9a, 0x61, 0x34, 0x99, 0xa2, 0xc1, 0x72, 0x4d, + 0xd9, 0xa3, 0x75, 0x45, 0xbe, 0x8d, 0xf4, 0xec, 0x17, 0x26, 0xdd, 0x4a, + 0x18, 0x54, 0x1b, 0xa9, 0xc1, 0xb1, 0x4a, 0xc1, 0x72, 0xc0, 0x34, 0xb9, + 0xe2, 0xa1, 0x0c, 0x0f, 0x7a, 0x5d, 0xd4, 0xac, 0x3b, 0x8f, 0x2f, 0x4d, + 0x2f, 0x4d, 0xc8, 0xa4, 0x24, 0x51, 0x60, 0xb8, 0xed, 0xf4, 0x6f, 0xf7, + 0xa8, 0xcb, 0x52, 0x6e, 0x14, 0xec, 0x2b, 0x92, 0x6f, 0xa5, 0x0e, 0x7d, + 0x6a, 0x1d, 0xd9, 0xa5, 0x04, 0xd3, 0xb0, 0x5c, 0x9b, 0x79, 0xa3, 0x71, + 0xa8, 0xf3, 0x4e, 0x04, 0x52, 0xb0, 0x5c, 0x90, 0x1a, 0x76, 0x6a, 0x2d, + 0xe0, 0x52, 0xf9, 0xa2, 0x95, 0x87, 0x72, 0x50, 0x4d, 0x2e, 0xe3, 0x50, + 0x79, 0xb4, 0x6f, 0xf7, 0xa5, 0xca, 0x3b, 0x93, 0x6f, 0xa3, 0x75, 0x45, + 0xba, 0x97, 0x34, 0x58, 0x2e, 0x3f, 0x34, 0x6e, 0xa6, 0xe6, 0x96, 0x8b, + 0x00, 0xb9, 0xa4, 0xcd, 0x18, 0xa3, 0x14, 0x00, 0xb9, 0xa3, 0x34, 0x98, + 0xa3, 0x14, 0x80, 0x5c, 0xd2, 0xe6, 0x9b, 0x4b, 0x40, 0x0b, 0x45, 0x25, + 0x26, 0x68, 0xb0, 0x0e, 0xa4, 0xa4, 0xa4, 0xcd, 0x3b, 0x08, 0x53, 0x48, + 0x68, 0xcd, 0x14, 0x00, 0x98, 0xa5, 0xc5, 0x18, 0xa5, 0xa0, 0x42, 0x52, + 0xd1, 0x45, 0x03, 0x0a, 0x29, 0x68, 0xa0, 0x04, 0xa5, 0xc5, 0x2e, 0x28, + 0xa0, 0x04, 0xc5, 0x2e, 0x29, 0x68, 0xa4, 0x02, 0x62, 0x8c, 0x52, 0xe2, + 0x97, 0x14, 0x5c, 0x06, 0xd1, 0x4e, 0xc5, 0x2e, 0x28, 0xb8, 0xc6, 0xe2, + 0x8c, 0x53, 0xb1, 0x4b, 0x8a, 0x57, 0x01, 0x98, 0xa3, 0x14, 0xfc, 0x51, + 0x8a, 0x2e, 0x03, 0x31, 0x46, 0x29, 0xf8, 0xa3, 0x14, 0x5c, 0x06, 0x62, + 0x8c, 0x53, 0xf1, 0x46, 0x28, 0xb8, 0x58, 0x66, 0x28, 0xc5, 0x3f, 0x14, + 0x62, 0x8b, 0x80, 0xcc, 0x51, 0x8a, 0x7e, 0x28, 0xc5, 0x17, 0x02, 0x3c, + 0x51, 0x8a, 0x7e, 0x28, 0xc5, 0x3b, 0x80, 0xcc, 0x51, 0x8a, 0x76, 0x28, + 0xc5, 0x17, 0x10, 0xcc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x17, 0x01, 0xb4, + 0x94, 0xec, 0x51, 0x8a, 0x60, 0x37, 0x14, 0x98, 0xa7, 0x62, 0x92, 0x80, + 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x26, 0x29, 0xdc, 0x43, 0x71, 0x49, 0x8a, + 0x7e, 0x29, 0x31, 0x40, 0x0d, 0xc5, 0x25, 0x3b, 0x14, 0x98, 0xa6, 0x21, + 0xb4, 0x94, 0xec, 0x52, 0x53, 0x01, 0x28, 0xa2, 0x8a, 0x04, 0x14, 0x94, + 0x51, 0x4c, 0x03, 0x34, 0x66, 0x92, 0x92, 0x80, 0x17, 0x34, 0x1a, 0x4c, + 0xd2, 0x66, 0x8b, 0x00, 0xea, 0x29, 0x37, 0x52, 0x66, 0x8b, 0x00, 0xb4, + 0x86, 0x8d, 0xd4, 0xd2, 0x69, 0x80, 0xcc, 0xf1, 0x46, 0xea, 0x66, 0x78, + 0xa3, 0x35, 0x76, 0x22, 0xe3, 0xb3, 0x49, 0x9a, 0x6e, 0x68, 0xcd, 0x16, + 0x0b, 0x8f, 0xdd, 0x46, 0xea, 0x8f, 0x34, 0x66, 0x8b, 0x05, 0xc9, 0x37, + 0x50, 0x5a, 0xa3, 0xcd, 0x19, 0xa2, 0xc1, 0x71, 0xf9, 0xa4, 0xcd, 0x37, + 0x34, 0xb4, 0xec, 0x17, 0x17, 0x75, 0x19, 0xa6, 0xe6, 0x8a, 0x2c, 0x17, + 0x17, 0x34, 0x66, 0x9b, 0x45, 0x16, 0x0b, 0x8f, 0xcd, 0x38, 0x35, 0x46, + 0x0d, 0x2e, 0x69, 0x58, 0x2e, 0x49, 0x9a, 0x4a, 0x60, 0x34, 0xb9, 0xa2, + 0xc3, 0xb8, 0xf1, 0x4e, 0x14, 0xc0, 0x69, 0x73, 0x48, 0x63, 0xb7, 0x62, + 0x93, 0x75, 0x30, 0x9a, 0x0d, 0x16, 0x0b, 0x8e, 0x26, 0x92, 0x9b, 0x9a, + 0x5d, 0xd4, 0x58, 0x57, 0x17, 0x34, 0xa1, 0xa9, 0x85, 0x85, 0x26, 0xea, + 0x76, 0x0b, 0x92, 0x13, 0x9a, 0x4c, 0xd4, 0x7b, 0xe9, 0x77, 0xd1, 0x60, + 0xb9, 0x2e, 0x68, 0xdc, 0x6a, 0x3d, 0xd4, 0x6e, 0xa5, 0x60, 0xb9, 0x26, + 0xea, 0x70, 0x6a, 0x87, 0x75, 0x28, 0x6a, 0x2c, 0x3b, 0x93, 0x66, 0x93, + 0x34, 0xd0, 0xc2, 0x8d, 0xc2, 0x95, 0x80, 0x78, 0x34, 0xec, 0xe6, 0xa2, + 0xcd, 0x1b, 0xa9, 0x58, 0x77, 0x25, 0x26, 0x98, 0x4d, 0x37, 0x7d, 0x26, + 0xea, 0x69, 0x05, 0xc7, 0x66, 0x93, 0x75, 0x37, 0x75, 0x19, 0xa7, 0x61, + 0x5c, 0x76, 0xea, 0x37, 0x53, 0x73, 0x45, 0x16, 0x01, 0xe1, 0x8d, 0x3b, + 0x71, 0xa6, 0x0a, 0x4c, 0xd2, 0xb0, 0xc9, 0x77, 0xd2, 0x17, 0xf7, 0xa8, + 0xf9, 0xa3, 0x14, 0x58, 0x57, 0x1d, 0xba, 0x8c, 0xd2, 0x05, 0xa5, 0xdb, + 0xef, 0x40, 0x0b, 0xba, 0x97, 0x7d, 0x37, 0x68, 0xa7, 0x05, 0x14, 0x68, + 0x02, 0xee, 0xa7, 0x06, 0x14, 0xdd, 0xa3, 0xd6, 0x97, 0x0b, 0xeb, 0x52, + 0x31, 0x77, 0x52, 0x66, 0x97, 0x0b, 0x40, 0x0b, 0x40, 0xc4, 0xa7, 0x8a, + 0x4c, 0xa5, 0x1b, 0x85, 0x20, 0x1e, 0x31, 0x4a, 0x2a, 0x3d, 0xc2, 0x9d, + 0xbe, 0x95, 0x86, 0x3a, 0x97, 0x26, 0x99, 0xe6, 0x52, 0xf9, 0x94, 0x58, + 0x2e, 0x3b, 0x26, 0x97, 0x34, 0xcd, 0xe2, 0x97, 0x70, 0xa5, 0x60, 0xb8, + 0xed, 0xd4, 0xbb, 0xea, 0x3d, 0xc2, 0x93, 0x75, 0x16, 0x0b, 0x92, 0xee, + 0xa3, 0x75, 0x45, 0x9a, 0x33, 0x4e, 0xc1, 0x72, 0x5d, 0xd4, 0x64, 0x54, + 0x79, 0xa3, 0x34, 0xac, 0x17, 0x24, 0xcd, 0x14, 0xda, 0x51, 0x45, 0x80, + 0x5a, 0x5a, 0x4a, 0x5a, 0x40, 0x14, 0xb4, 0x52, 0xd0, 0x31, 0x28, 0xa5, + 0xc5, 0x2e, 0x29, 0x00, 0x98, 0xa5, 0xa5, 0xc5, 0x2e, 0x28, 0xb8, 0x0d, + 0xc5, 0x2e, 0x29, 0xd8, 0xa5, 0xc5, 0x2b, 0x8e, 0xc3, 0x71, 0x46, 0x29, + 0xd8, 0xa5, 0xc5, 0x2b, 0x85, 0x86, 0xe2, 0x8c, 0x53, 0xf1, 0x46, 0x28, + 0xb8, 0xc6, 0xe2, 0x97, 0x14, 0xb4, 0xb8, 0xa2, 0xe0, 0x37, 0x14, 0x62, + 0x9d, 0x8a, 0x31, 0x4a, 0xe0, 0x37, 0x14, 0xb8, 0xa7, 0x62, 0x8c, 0x51, + 0x70, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x18, 0xa2, 0xe0, 0x37, 0x14, 0x62, + 0x9d, 0x8a, 0x31, 0x45, 0xc0, 0x6e, 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x8b, + 0x80, 0xcc, 0x51, 0x8a, 0x7e, 0x28, 0xc5, 0x17, 0x0b, 0x0c, 0xc5, 0x26, + 0xda, 0x93, 0x14, 0x11, 0x45, 0xc7, 0x62, 0x2d, 0xb4, 0x62, 0xa4, 0xdb, + 0x49, 0x8a, 0x2e, 0x2b, 0x11, 0xe2, 0x8c, 0x53, 0xf6, 0xd2, 0x62, 0x9d, + 0xc2, 0xc4, 0x78, 0xa4, 0xc5, 0x49, 0x8a, 0x4c, 0x53, 0xb8, 0x86, 0x62, + 0x92, 0x9f, 0x8a, 0x4c, 0x53, 0xb8, 0x86, 0x62, 0x8c, 0x53, 0xb1, 0x49, + 0x8a, 0x00, 0x6d, 0x26, 0x29, 0xd8, 0xa2, 0x98, 0x86, 0xe2, 0x92, 0x9d, + 0x49, 0x4c, 0x06, 0xd3, 0x69, 0xe4, 0x52, 0x53, 0x10, 0xca, 0x29, 0x48, + 0xa4, 0x34, 0xc4, 0x25, 0x21, 0xa5, 0xa4, 0xa6, 0x02, 0x51, 0x45, 0x21, + 0xa0, 0x02, 0x90, 0x8a, 0x09, 0xa4, 0xa6, 0x21, 0x0d, 0x25, 0x29, 0x34, + 0xda, 0x60, 0x19, 0xa4, 0x27, 0x8a, 0x33, 0x4d, 0x27, 0x8a, 0x62, 0x1b, + 0xda, 0x92, 0x8e, 0xd4, 0x55, 0x12, 0x14, 0x94, 0x52, 0x53, 0x10, 0xb9, + 0xa4, 0xa2, 0x92, 0x80, 0x17, 0x34, 0x66, 0x9b, 0x9a, 0x33, 0x4e, 0xc0, + 0x3b, 0x34, 0x66, 0x99, 0x9a, 0x33, 0x45, 0x82, 0xe3, 0xb3, 0x46, 0xea, + 0x66, 0x68, 0xcd, 0x16, 0x0b, 0x8e, 0xdd, 0x46, 0x69, 0x94, 0xb9, 0xa2, + 0xc2, 0xb8, 0xfc, 0xd2, 0xe6, 0xa3, 0xcd, 0x2e, 0x68, 0xb0, 0xee, 0x3f, + 0x34, 0xa0, 0xd3, 0x29, 0x73, 0x4a, 0xc3, 0xb8, 0xf0, 0xd4, 0x66, 0x98, + 0x0d, 0x2e, 0xea, 0x56, 0x0b, 0x8e, 0xcd, 0x21, 0x6c, 0x52, 0x6e, 0x14, + 0xd2, 0xd4, 0xec, 0x17, 0x14, 0xb5, 0x37, 0x7d, 0x30, 0x9a, 0x6e, 0x6a, + 0xac, 0x4d, 0xc9, 0xb7, 0xd1, 0xba, 0xa2, 0x0d, 0x4b, 0xba, 0x8b, 0x05, + 0xc7, 0xee, 0xa5, 0x0d, 0x51, 0x8a, 0x70, 0xa2, 0xc1, 0x71, 0xe1, 0xa9, + 0x73, 0x4c, 0xa5, 0xcd, 0x48, 0xc7, 0x8a, 0x78, 0xa8, 0xf3, 0x4b, 0xba, + 0x95, 0x87, 0x71, 0xf9, 0xa7, 0x75, 0xa8, 0x77, 0x51, 0xbe, 0x8b, 0x0e, + 0xe4, 0xc4, 0x81, 0x48, 0x79, 0xa8, 0x4b, 0x9a, 0x51, 0x26, 0x28, 0xb0, + 0x5c, 0x93, 0x18, 0xeb, 0x48, 0x69, 0x9b, 0xf3, 0x46, 0x68, 0xb0, 0x5c, + 0x75, 0x14, 0x80, 0x8a, 0x5d, 0xd4, 0x00, 0x53, 0x81, 0xa6, 0xe6, 0x94, + 0x10, 0x28, 0x02, 0x55, 0x19, 0xa7, 0x15, 0xe2, 0x9a, 0xac, 0x31, 0x4d, + 0x92, 0x42, 0x78, 0x15, 0x1a, 0xdc, 0xa1, 0x72, 0x05, 0x34, 0xbd, 0x32, + 0x92, 0xaa, 0xc4, 0xdc, 0x93, 0xcc, 0x34, 0x6e, 0x34, 0xca, 0x70, 0x14, + 0x00, 0xed, 0xc6, 0x8c, 0x93, 0x40, 0x14, 0xec, 0x0a, 0x43, 0x12, 0x94, + 0x52, 0xe2, 0x8e, 0x05, 0x21, 0x86, 0x69, 0x72, 0x68, 0xe2, 0x92, 0x80, + 0x0d, 0xc6, 0x81, 0x49, 0x9a, 0x33, 0x40, 0x0f, 0xce, 0x28, 0xcd, 0x33, + 0x34, 0x9b, 0x8d, 0x16, 0x0b, 0x92, 0x66, 0x93, 0x75, 0x32, 0x96, 0x8b, + 0x05, 0xc7, 0xee, 0xa3, 0x71, 0xa6, 0x8a, 0x70, 0xa0, 0x05, 0x06, 0x9d, + 0x9a, 0x4c, 0x52, 0x81, 0x48, 0x05, 0x14, 0xb4, 0x52, 0x81, 0x52, 0x30, + 0xa5, 0x14, 0x01, 0x4e, 0x02, 0x90, 0xc0, 0x52, 0x81, 0x4a, 0x05, 0x2e, + 0x29, 0x5c, 0x61, 0x8a, 0x5a, 0x31, 0x4a, 0x05, 0x2b, 0x8c, 0x31, 0x4b, + 0x8a, 0x50, 0x29, 0x71, 0x4a, 0xe0, 0x20, 0x14, 0xa0, 0x53, 0x80, 0xa5, + 0x02, 0xa6, 0xe3, 0x13, 0x14, 0x62, 0x9c, 0x05, 0x3b, 0x14, 0xae, 0x31, + 0x98, 0xa5, 0xc5, 0x3b, 0x14, 0xb8, 0xa2, 0xe1, 0x61, 0xb8, 0xa5, 0xc5, + 0x3b, 0x14, 0xb8, 0xa5, 0x71, 0xd8, 0x6e, 0x29, 0x76, 0xd2, 0xe2, 0x96, + 0x95, 0xc0, 0x6e, 0xda, 0x36, 0xd3, 0xc0, 0xa5, 0xc5, 0x17, 0x0b, 0x11, + 0x62, 0x97, 0x14, 0xfc, 0x51, 0x8a, 0x2e, 0x16, 0x19, 0x8a, 0x31, 0x4e, + 0xc5, 0x18, 0xa2, 0xe0, 0x26, 0x28, 0xc5, 0x2e, 0x28, 0xa0, 0x04, 0xc5, + 0x18, 0xa5, 0xa5, 0xc5, 0x00, 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x5c, 0x52, + 0xb8, 0xc6, 0x62, 0x97, 0x14, 0xec, 0x51, 0x8a, 0x2e, 0x03, 0x71, 0x46, + 0x29, 0xfb, 0x68, 0xdb, 0x45, 0xc2, 0xc3, 0x31, 0x46, 0xda, 0x7e, 0x29, + 0x28, 0xb8, 0x0c, 0x2b, 0x4d, 0xc5, 0x3c, 0x8a, 0x6d, 0x31, 0x0c, 0xc5, + 0x21, 0x14, 0xf2, 0x29, 0x31, 0x4e, 0xe2, 0x23, 0x22, 0x93, 0x15, 0x21, + 0x14, 0xd2, 0x2a, 0xae, 0x03, 0x31, 0x49, 0x8a, 0x7e, 0x29, 0x29, 0x88, + 0x66, 0x29, 0x29, 0xd8, 0xa4, 0xa6, 0x21, 0xb8, 0xa4, 0xa7, 0x62, 0x92, + 0x98, 0x86, 0x91, 0x4d, 0x34, 0xfa, 0x42, 0x29, 0x80, 0xc3, 0x48, 0x69, + 0xd4, 0x86, 0x98, 0x86, 0x52, 0x53, 0xa9, 0xa6, 0x98, 0x84, 0xa4, 0x34, + 0xb4, 0x86, 0x98, 0x86, 0xd2, 0x1a, 0x5a, 0x4a, 0xa0, 0x12, 0x9a, 0x69, + 0xc6, 0x9b, 0x4d, 0x08, 0x43, 0x4d, 0x3d, 0x29, 0xc6, 0x9a, 0x7a, 0x53, + 0x10, 0xda, 0x29, 0x69, 0x29, 0x88, 0x4a, 0x4a, 0x5a, 0x4a, 0x62, 0x12, + 0x92, 0x96, 0x92, 0x98, 0x84, 0xa4, 0xa5, 0xa4, 0xa6, 0x01, 0x49, 0x45, + 0x25, 0x31, 0x05, 0x26, 0x68, 0xa4, 0xa0, 0x05, 0xcd, 0x19, 0xa4, 0xa4, + 0xcd, 0x30, 0x1d, 0x9a, 0x70, 0x35, 0x1e, 0x68, 0xcd, 0x2b, 0x01, 0x2e, + 0x68, 0xdd, 0x51, 0x6e, 0xa4, 0xdd, 0x45, 0x87, 0x72, 0x5d, 0xd4, 0x85, + 0xaa, 0x13, 0x2a, 0x2b, 0x6d, 0x2e, 0xa1, 0x88, 0xce, 0x09, 0xed, 0x4b, + 0x93, 0x49, 0x59, 0xe8, 0x0e, 0xe4, 0x9b, 0xe8, 0xdd, 0x9a, 0x84, 0xba, + 0x83, 0x82, 0xea, 0x0f, 0xbb, 0x0a, 0x5f, 0xa7, 0x3f, 0x4a, 0x69, 0xc6, + 0xf6, 0xb8, 0xb5, 0x1c, 0x4d, 0x26, 0x68, 0xda, 0xc7, 0xb1, 0xa6, 0x19, + 0x62, 0x57, 0x75, 0x66, 0x20, 0xaf, 0x5a, 0x52, 0xa9, 0x08, 0x7c, 0x4c, + 0x12, 0x6f, 0x61, 0xf9, 0xa5, 0xcd, 0x46, 0x1d, 0x58, 0x90, 0xac, 0x09, + 0x1d, 0x40, 0x34, 0xf1, 0x54, 0x9a, 0x6a, 0xe8, 0x5a, 0xa1, 0xe2, 0x9c, + 0x29, 0xa2, 0x97, 0x34, 0x86, 0x3f, 0x34, 0x6e, 0xa6, 0xe6, 0x9a, 0x5a, + 0x95, 0x87, 0x72, 0x4c, 0xd1, 0xba, 0xa3, 0xcd, 0x19, 0xa7, 0x60, 0xb8, + 0xfc, 0xd1, 0x9a, 0x8f, 0x75, 0x26, 0xea, 0x2c, 0x2b, 0x92, 0x6e, 0xa5, + 0xcd, 0x45, 0x9a, 0x70, 0x34, 0x58, 0x09, 0x29, 0x69, 0x80, 0xd3, 0x94, + 0x9c, 0xf0, 0x33, 0x52, 0xca, 0x43, 0x85, 0x3a, 0xab, 0xdd, 0x5d, 0x2d, + 0xb4, 0x2d, 0x26, 0x53, 0xe4, 0xea, 0xa4, 0xf2, 0x6b, 0x2a, 0x3f, 0x12, + 0xdb, 0xbb, 0xed, 0x78, 0xc2, 0x1c, 0xf1, 0xcf, 0x15, 0xc9, 0x53, 0x19, + 0x4a, 0x9c, 0x94, 0x66, 0xec, 0x68, 0xa9, 0xc9, 0xab, 0xa3, 0x76, 0x9c, + 0x05, 0x66, 0x47, 0xab, 0x45, 0x2d, 0xd2, 0x45, 0x1a, 0x02, 0x8d, 0xd5, + 0xb3, 0xd3, 0xde, 0xb4, 0x17, 0x24, 0x64, 0x1c, 0x8e, 0xc4, 0x74, 0xad, + 0x29, 0xd6, 0x85, 0x4b, 0xf2, 0xbd, 0x84, 0xe2, 0xd6, 0xe4, 0x84, 0xf6, + 0xcd, 0x26, 0x45, 0x37, 0x06, 0x9d, 0x8a, 0xd4, 0x42, 0x17, 0xf6, 0xa4, + 0xdc, 0x69, 0x48, 0xa6, 0xe2, 0x98, 0x85, 0x0c, 0x69, 0xc0, 0xd3, 0x05, + 0x38, 0x50, 0x03, 0xf3, 0x4e, 0x14, 0xd1, 0x4f, 0x03, 0x35, 0x2c, 0xa4, + 0x2e, 0x68, 0x22, 0x97, 0x18, 0xa4, 0x26, 0xa4, 0x62, 0x67, 0x14, 0x99, + 0xa4, 0xa2, 0xa8, 0x41, 0x9a, 0x33, 0x45, 0x18, 0xa0, 0x41, 0x4b, 0x46, + 0x29, 0x40, 0xa0, 0x61, 0x4a, 0x29, 0x40, 0xa7, 0x00, 0x2a, 0x6e, 0x16, + 0x10, 0x0a, 0x70, 0x14, 0xe5, 0x02, 0x9f, 0xb4, 0x54, 0xb6, 0x55, 0x86, + 0x01, 0x4e, 0x02, 0x9f, 0xb6, 0x94, 0x01, 0x4a, 0xe3, 0xb0, 0xcc, 0x52, + 0x81, 0x52, 0x00, 0x29, 0xe1, 0x45, 0x4d, 0xc7, 0x62, 0x20, 0x29, 0xc2, + 0xa4, 0xd8, 0x0d, 0x3b, 0xcb, 0xa9, 0xe6, 0x1d, 0x88, 0xf1, 0x4b, 0x4f, + 0xd8, 0x69, 0x76, 0x1a, 0x57, 0x1d, 0x86, 0x62, 0x9c, 0x05, 0x38, 0x2d, + 0x28, 0x14, 0xae, 0x16, 0x13, 0x14, 0xa0, 0x53, 0x80, 0xa5, 0xc5, 0x2b, + 0x8c, 0x4c, 0x52, 0xe2, 0x97, 0x14, 0xb8, 0xa5, 0x71, 0xd8, 0x40, 0x29, + 0x71, 0x4b, 0x4b, 0x48, 0x06, 0x81, 0x4e, 0x02, 0x80, 0x29, 0xd4, 0xae, + 0x31, 0x31, 0x45, 0x2d, 0x18, 0xa0, 0x04, 0xc5, 0x18, 0xa5, 0xc5, 0x2e, + 0x29, 0x5c, 0x04, 0x02, 0x94, 0x52, 0xe2, 0x8c, 0x50, 0x31, 0x29, 0x71, + 0x45, 0x18, 0xa4, 0x01, 0x80, 0x69, 0x36, 0x8f, 0x5a, 0x2a, 0x39, 0x66, + 0x10, 0xae, 0x4a, 0xb1, 0xfa, 0x53, 0x57, 0x7b, 0x03, 0xb2, 0xdc, 0x1e, + 0x44, 0x8f, 0xef, 0x1c, 0x7b, 0xd5, 0x4b, 0xbb, 0xe5, 0xb6, 0xb5, 0x96, + 0xe4, 0x7c, 0xc9, 0x1a, 0x96, 0xc0, 0xaa, 0x37, 0xb7, 0x37, 0x37, 0x91, + 0x89, 0x2c, 0x4a, 0x65, 0x72, 0x59, 0x1c, 0x1c, 0x9c, 0x76, 0xc7, 0xe7, + 0x58, 0x17, 0x9e, 0x21, 0x80, 0xc3, 0x2d, 0x8e, 0xa8, 0xc9, 0x68, 0x66, + 0x8c, 0x2a, 0x0c, 0x12, 0x39, 0xab, 0xb2, 0x5e, 0xa6, 0x2e, 0x77, 0xd8, + 0xbf, 0x17, 0x8d, 0xac, 0x96, 0x31, 0x25, 0xdb, 0x24, 0x19, 0xc0, 0xf2, + 0xc9, 0x25, 0xbe, 0xbd, 0x3a, 0x57, 0x47, 0x69, 0x7d, 0x6d, 0x79, 0x10, + 0x92, 0x09, 0xe3, 0x95, 0x7d, 0x51, 0xb3, 0x5e, 0x52, 0xfa, 0x7d, 0xa6, + 0x9f, 0xa9, 0x8b, 0xfd, 0x4e, 0x48, 0x66, 0xb3, 0x5e, 0x9b, 0x39, 0x0f, + 0x91, 0xd8, 0x66, 0xac, 0x47, 0xe3, 0x9d, 0x2e, 0x2d, 0x4a, 0x11, 0x65, + 0x66, 0x6d, 0x60, 0x25, 0x52, 0x57, 0x03, 0x19, 0x1c, 0xf6, 0x1c, 0x52, + 0x4d, 0x35, 0xa8, 0xb9, 0x9a, 0x3d, 0x58, 0x30, 0x34, 0xea, 0xca, 0xb4, + 0xba, 0x82, 0xe6, 0x20, 0xd0, 0x5c, 0x09, 0x54, 0x8c, 0xe4, 0x1e, 0x95, + 0x38, 0x98, 0xa4, 0xaa, 0x18, 0x9c, 0x13, 0xc6, 0x29, 0xb8, 0x96, 0xa6, + 0x5f, 0xc5, 0x14, 0x6e, 0x18, 0x07, 0x3d, 0x69, 0xc0, 0x56, 0x66, 0x80, + 0x05, 0x2e, 0x29, 0x45, 0x3a, 0x95, 0xc6, 0x30, 0x8a, 0x69, 0x15, 0x21, + 0xa6, 0x91, 0x9a, 0x13, 0x02, 0x22, 0x29, 0x08, 0xa9, 0x08, 0xa6, 0x91, + 0x54, 0x98, 0x9a, 0x23, 0x22, 0x93, 0x14, 0xf3, 0x4d, 0xc5, 0x51, 0x23, + 0x69, 0xa4, 0x54, 0x84, 0x53, 0x48, 0xa6, 0x80, 0x66, 0x29, 0x08, 0xa7, + 0xe2, 0x93, 0x14, 0xc4, 0x46, 0x45, 0x21, 0x14, 0xf2, 0x29, 0xa4, 0x53, + 0xb8, 0x86, 0x11, 0x49, 0x8a, 0x79, 0x14, 0x86, 0xa8, 0x43, 0x29, 0x31, + 0x4e, 0xa4, 0xa6, 0x21, 0x84, 0x52, 0x53, 0xe9, 0xa4, 0x53, 0x10, 0xc2, + 0x29, 0xb4, 0xf3, 0x4d, 0x35, 0x42, 0x1b, 0x48, 0x69, 0xc6, 0x9b, 0x4c, + 0x06, 0x9a, 0x69, 0xa7, 0x9a, 0x69, 0xa6, 0x84, 0x34, 0xd3, 0x4d, 0x38, + 0xd3, 0x4d, 0x50, 0x84, 0x34, 0xd3, 0xd2, 0x9c, 0x69, 0xa7, 0xa5, 0x31, + 0x09, 0xda, 0x92, 0x96, 0x92, 0x98, 0x84, 0x34, 0x94, 0xa6, 0x92, 0x98, + 0x84, 0x34, 0x94, 0xb4, 0x94, 0xc0, 0x4a, 0x4a, 0x75, 0x25, 0x31, 0x0d, + 0xa4, 0xa7, 0x62, 0x92, 0x98, 0x86, 0xd1, 0x4b, 0x48, 0x69, 0x80, 0xda, + 0x29, 0x69, 0xb4, 0x00, 0x94, 0x13, 0x45, 0x27, 0x7e, 0x69, 0x88, 0x01, + 0x1d, 0x08, 0xaa, 0x49, 0x7d, 0x2b, 0x6a, 0x1e, 0x4f, 0x94, 0x04, 0x63, + 0x3b, 0x98, 0x73, 0x56, 0x7c, 0xc5, 0x0f, 0xb7, 0xa3, 0x63, 0x20, 0x7a, + 0xfd, 0x2b, 0x03, 0x51, 0x79, 0x83, 0xc8, 0xd1, 0xaa, 0xa2, 0x49, 0xce, + 0xee, 0xf5, 0xc9, 0x89, 0xa9, 0xcb, 0x66, 0x8d, 0x69, 0xc6, 0xfa, 0x1a, + 0x97, 0x57, 0xd0, 0x46, 0xcd, 0xe6, 0x11, 0xd3, 0x04, 0x06, 0xac, 0x87, + 0xd4, 0xf6, 0xa9, 0xf2, 0xee, 0xdd, 0x23, 0xea, 0x57, 0x19, 0xc5, 0x60, + 0xde, 0x5c, 0x38, 0x84, 0xc5, 0xe6, 0x92, 0xcd, 0xc6, 0xde, 0x84, 0xd6, + 0x3c, 0xbf, 0x6f, 0x48, 0xd5, 0x5b, 0x81, 0xd7, 0x8e, 0xc3, 0xde, 0xbc, + 0x5a, 0x98, 0xaa, 0xd3, 0x6d, 0xc5, 0x68, 0x75, 0xaa, 0x71, 0x47, 0x51, + 0x7b, 0xad, 0x2d, 0xe2, 0xac, 0x71, 0xbb, 0x17, 0x43, 0xc0, 0xec, 0x6b, + 0x7a, 0xc0, 0xc3, 0x1d, 0xb2, 0x89, 0x66, 0x18, 0x7c, 0x30, 0x0c, 0xfd, + 0xfd, 0xbd, 0xab, 0x82, 0xb5, 0x89, 0x04, 0x1b, 0xcb, 0x12, 0xc4, 0x86, + 0x62, 0xbc, 0x85, 0x1d, 0x2b, 0x4d, 0x59, 0xec, 0xc7, 0x97, 0x29, 0x12, + 0x26, 0xcc, 0x82, 0xbc, 0x9e, 0x6a, 0xe9, 0xd5, 0xa9, 0x4a, 0xf5, 0x2a, + 0x2b, 0x8a, 0x51, 0x52, 0xf7, 0x53, 0xb1, 0xd0, 0xea, 0x97, 0xd7, 0x96, + 0xf2, 0x96, 0x59, 0x54, 0xa7, 0xf0, 0x00, 0x7b, 0x56, 0x1c, 0x9a, 0x93, + 0xc9, 0x70, 0xac, 0xf2, 0x16, 0xe7, 0x24, 0x75, 0xcd, 0x42, 0xf2, 0x87, + 0x50, 0xad, 0x21, 0x70, 0xa0, 0x37, 0x2d, 0x8f, 0xc2, 0xa9, 0x18, 0x3c, + 0xd6, 0x1e, 0x4e, 0x40, 0x1c, 0x86, 0xee, 0x7d, 0xab, 0x87, 0x11, 0x5d, + 0x4e, 0x5c, 0xca, 0xe8, 0xb8, 0x46, 0xca, 0xc7, 0x45, 0x6b, 0xaf, 0x47, + 0x04, 0xbf, 0xbc, 0xec, 0x09, 0xcf, 0x5e, 0x2b, 0x53, 0x49, 0xd6, 0x0d, + 0xf4, 0x8d, 0x24, 0x85, 0x52, 0x3c, 0x77, 0x38, 0xae, 0x30, 0x5b, 0x4a, + 0xa4, 0xaf, 0x07, 0x9c, 0xb3, 0x0e, 0x38, 0x35, 0x7e, 0xd6, 0x08, 0x6d, + 0xa0, 0x91, 0x9a, 0x56, 0x63, 0x91, 0xd2, 0xab, 0x0f, 0x8c, 0xa9, 0x06, + 0x92, 0xd8, 0x53, 0xa6, 0x99, 0xdd, 0x45, 0x73, 0x0c, 0x8e, 0x57, 0x91, + 0xcf, 0xca, 0x7f, 0xbd, 0x52, 0x93, 0x83, 0xdf, 0x15, 0xc5, 0xd9, 0x6a, + 0xae, 0x01, 0x02, 0x42, 0xbc, 0xf2, 0x1b, 0xd2, 0xb6, 0xad, 0x35, 0x68, + 0x92, 0xe3, 0xc8, 0x6c, 0x22, 0x30, 0xc8, 0x7c, 0xf0, 0x4d, 0x7a, 0xb8, + 0x5c, 0xce, 0x33, 0x7c, 0xb3, 0x7a, 0x9c, 0xf5, 0x28, 0xb5, 0xb1, 0xb1, + 0xba, 0x82, 0x70, 0x79, 0xe2, 0xb9, 0x6b, 0xcf, 0x13, 0xc9, 0x1d, 0xec, + 0xb6, 0xf1, 0x00, 0x53, 0xa2, 0x90, 0xbc, 0xfd, 0x73, 0x57, 0x2d, 0x75, + 0xf8, 0x80, 0x48, 0xa6, 0x46, 0xce, 0x70, 0x18, 0x76, 0x1e, 0xf5, 0xaf, + 0xf6, 0xbe, 0x1f, 0x9a, 0xcd, 0xd9, 0x77, 0xe8, 0x47, 0xb0, 0x9d, 0x8d, + 0xdd, 0xd4, 0x99, 0xa8, 0x22, 0xbe, 0xb7, 0x9e, 0x43, 0x1c, 0x72, 0xa1, + 0x61, 0xfa, 0xd4, 0x5a, 0x94, 0xb1, 0xdb, 0x42, 0xb2, 0x4a, 0xc4, 0x15, + 0x3f, 0x2e, 0xd6, 0xe7, 0xf2, 0xef, 0x5d, 0xcb, 0x11, 0x4e, 0x51, 0x72, + 0x8b, 0x56, 0x23, 0x92, 0x57, 0xb3, 0x2d, 0xe6, 0xa9, 0x4f, 0xab, 0x5a, + 0x40, 0x18, 0xb3, 0xe7, 0x6f, 0xde, 0x03, 0xa8, 0xae, 0x6e, 0x7d, 0x62, + 0x3d, 0x41, 0xda, 0xde, 0x3b, 0xe6, 0x86, 0x55, 0x04, 0xb3, 0x15, 0xc6, + 0x71, 0x59, 0xc2, 0x08, 0x5a, 0x03, 0x24, 0xb7, 0x32, 0x4b, 0xb8, 0x63, + 0x23, 0xd6, 0xb8, 0x6b, 0x63, 0xa5, 0x6f, 0xdd, 0xd9, 0x2e, 0xed, 0x9a, + 0xc2, 0x8a, 0xfb, 0x47, 0x5a, 0x3c, 0x49, 0xa6, 0xec, 0x46, 0xf3, 0x4e, + 0x5b, 0xf8, 0x71, 0xc8, 0xa9, 0xff, 0x00, 0xb6, 0xac, 0x4c, 0x88, 0x89, + 0x36, 0xf2, 0xfd, 0x36, 0x8e, 0x9f, 0x5a, 0xf3, 0xcf, 0xb3, 0xb4, 0x93, + 0x2b, 0x4a, 0xa0, 0x2a, 0x77, 0xcf, 0x38, 0xf4, 0xad, 0xed, 0x2e, 0xe2, + 0xce, 0x25, 0x94, 0xc9, 0x1a, 0xe5, 0x58, 0x6c, 0xdc, 0x9f, 0x33, 0x0a, + 0xc2, 0x8e, 0x3a, 0xac, 0xf7, 0x92, 0x2e, 0x54, 0x62, 0xb6, 0x47, 0x6a, + 0x1c, 0x1c, 0x10, 0x41, 0x07, 0xa5, 0x63, 0x6a, 0xba, 0x94, 0xf1, 0xce, + 0x61, 0x49, 0x36, 0xe0, 0x8d, 0xa4, 0x2f, 0x1f, 0x42, 0x69, 0xb7, 0x1a, + 0xc4, 0x16, 0x96, 0xe1, 0x2d, 0xb7, 0x3b, 0x9e, 0x42, 0x95, 0x3f, 0x2d, + 0x65, 0x6a, 0x3a, 0xb5, 0xc5, 0xcd, 0x89, 0xca, 0xc6, 0xc0, 0xb6, 0x0a, + 0x63, 0x93, 0x8a, 0xe8, 0xc4, 0xe2, 0x29, 0xc9, 0x38, 0x29, 0x6a, 0x89, + 0xa7, 0x06, 0x9d, 0xec, 0x54, 0xbb, 0xba, 0xbb, 0x8a, 0x63, 0x14, 0x92, + 0x2c, 0xa8, 0x46, 0x4b, 0x02, 0x08, 0x35, 0x46, 0x15, 0xf3, 0x12, 0x4c, + 0x21, 0x51, 0xd3, 0x7e, 0x4f, 0x15, 0x09, 0xba, 0x6f, 0xb4, 0x29, 0x78, + 0x0e, 0xc8, 0xff, 0x00, 0x80, 0x0a, 0x96, 0xf5, 0xa5, 0x36, 0xa9, 0x3c, + 0x88, 0x30, 0x4f, 0xca, 0xaa, 0xd8, 0x3f, 0x88, 0xaf, 0x0f, 0x91, 0xd4, + 0xe6, 0x6b, 0xa1, 0xd5, 0x7b, 0x68, 0x68, 0xd9, 0x5d, 0x79, 0x28, 0xcc, + 0x5d, 0x89, 0x09, 0xb0, 0x29, 0x18, 0xdc, 0x2b, 0xa7, 0xd1, 0xee, 0xe7, + 0x6d, 0xa4, 0x79, 0x49, 0x6c, 0x06, 0xdc, 0x34, 0x98, 0xae, 0x19, 0x64, + 0x49, 0x61, 0x08, 0xed, 0x86, 0xf5, 0x3d, 0xaa, 0x13, 0x72, 0x21, 0x67, + 0x2b, 0x3b, 0x1c, 0x8c, 0xaa, 0xf3, 0xd6, 0xb3, 0xa7, 0x5a, 0xa5, 0x36, + 0x9b, 0x5b, 0x79, 0x8d, 0xc5, 0x34, 0x7a, 0xef, 0x4f, 0xa5, 0x19, 0x35, + 0xe7, 0x96, 0x3a, 0xd5, 0xc8, 0x8f, 0x6b, 0xce, 0xea, 0x31, 0xf7, 0x77, + 0x77, 0xae, 0x9f, 0x4e, 0xd5, 0xa3, 0xc2, 0x35, 0xcd, 0xc0, 0x62, 0x47, + 0x03, 0x3f, 0x74, 0xfd, 0x2b, 0xdb, 0xa1, 0x99, 0x42, 0xa6, 0xea, 0xdf, + 0x33, 0x9a, 0x54, 0x5a, 0xd8, 0xdd, 0x07, 0x34, 0x60, 0x57, 0x35, 0xaa, + 0x78, 0x98, 0x46, 0xc6, 0x1b, 0x41, 0x9c, 0x37, 0x32, 0x67, 0xf9, 0x53, + 0x61, 0xf1, 0x04, 0xb3, 0xb2, 0x45, 0x32, 0x24, 0x7b, 0x87, 0xde, 0xc9, + 0xc1, 0xfa, 0xd6, 0xaf, 0x1d, 0x49, 0x49, 0xc5, 0x32, 0x55, 0x29, 0x33, + 0xa6, 0xc5, 0x18, 0xaa, 0xd6, 0xb7, 0x0d, 0x2c, 0x19, 0x62, 0x84, 0x83, + 0x8f, 0x90, 0x1c, 0x62, 0xa6, 0x2e, 0x14, 0x65, 0x8e, 0x2b, 0xae, 0x13, + 0x52, 0x8f, 0x31, 0x9b, 0x56, 0x76, 0x25, 0x1c, 0x54, 0xaa, 0x45, 0x42, + 0xad, 0x9e, 0x84, 0x1c, 0x75, 0xa9, 0x94, 0x03, 0xde, 0x86, 0x34, 0x3f, + 0x19, 0x14, 0xc6, 0x53, 0x4e, 0xc6, 0x28, 0x3c, 0xd2, 0x43, 0x22, 0xa4, + 0xa7, 0x11, 0x49, 0x8a, 0xa1, 0x05, 0x28, 0xa0, 0x0a, 0x70, 0x14, 0x00, + 0x80, 0x52, 0xd2, 0xe2, 0x8c, 0x52, 0x18, 0xb4, 0xa2, 0x93, 0x14, 0xe0, + 0x29, 0x31, 0x8a, 0x29, 0xc3, 0x34, 0x82, 0x9e, 0x00, 0xa9, 0x18, 0x03, + 0x4e, 0xa4, 0xa5, 0xa9, 0x18, 0xe0, 0x69, 0xc0, 0xd3, 0x05, 0x38, 0x0a, + 0x43, 0x1e, 0x1a, 0x9c, 0x1e, 0xa3, 0x14, 0xe1, 0x52, 0xd0, 0x5c, 0x97, + 0x7d, 0x38, 0x3d, 0x44, 0x05, 0x2d, 0x4d, 0x87, 0x72, 0x60, 0x41, 0xa7, + 0x0c, 0x54, 0x22, 0x9c, 0x29, 0x34, 0x55, 0xc9, 0x70, 0x29, 0x31, 0x48, + 0x0d, 0x3b, 0x35, 0x23, 0x10, 0x0a, 0x70, 0x14, 0x52, 0xd2, 0x00, 0xc5, + 0x00, 0x52, 0x8a, 0x77, 0x14, 0x86, 0x20, 0x5a, 0x5a, 0x5c, 0x0f, 0x5a, + 0x5d, 0xbe, 0xf4, 0xae, 0x31, 0xb4, 0x62, 0x9d, 0xb6, 0x97, 0x03, 0xd6, + 0x8b, 0x85, 0x84, 0x02, 0x97, 0x02, 0x90, 0xe2, 0x8a, 0x40, 0x2d, 0x26, + 0x28, 0xa3, 0x34, 0x00, 0x62, 0x98, 0xee, 0x10, 0xf3, 0x4f, 0xac, 0xbd, + 0x59, 0x2e, 0xe4, 0x82, 0x4f, 0xb1, 0x48, 0x89, 0x30, 0x5e, 0x37, 0x8c, + 0x8a, 0xa4, 0x29, 0x3b, 0x22, 0xf4, 0xb2, 0xa4, 0x70, 0xb4, 0x85, 0x80, + 0x55, 0x19, 0x26, 0xbc, 0xe6, 0x4f, 0x1c, 0xeb, 0x3a, 0xa4, 0xeb, 0x65, + 0xa5, 0x5a, 0x59, 0xf9, 0xf2, 0x12, 0x15, 0x9a, 0x6d, 0xdf, 0x8e, 0x38, + 0xe9, 0xf8, 0xd7, 0x21, 0xe2, 0x1f, 0x1f, 0xdf, 0xcb, 0xa6, 0x4f, 0xa4, + 0xc9, 0x30, 0x67, 0x12, 0x63, 0xce, 0x40, 0x54, 0xe0, 0x76, 0x23, 0xeb, + 0x5c, 0x17, 0xdb, 0xf5, 0x3d, 0x3a, 0xe5, 0x2f, 0x21, 0x79, 0x2d, 0xd9, + 0x78, 0x0e, 0xb9, 0x1c, 0x9a, 0x8f, 0x68, 0x93, 0xd0, 0x87, 0x76, 0x7b, + 0x15, 0x8d, 0xc7, 0x8a, 0x6d, 0x35, 0x08, 0xae, 0xa6, 0xd4, 0xad, 0x2e, + 0x4b, 0x31, 0x89, 0xed, 0xd9, 0xb6, 0xed, 0x39, 0xf6, 0xe3, 0x3c, 0xd7, + 0x4d, 0xae, 0x78, 0x6a, 0x3d, 0x73, 0x4d, 0x47, 0x92, 0x28, 0xa3, 0xbf, + 0xda, 0x0b, 0x48, 0x07, 0x7e, 0xfc, 0xd7, 0xce, 0x23, 0x52, 0xbb, 0x0a, + 0x64, 0x13, 0x4a, 0x41, 0x62, 0xc4, 0x96, 0x3f, 0x7b, 0xd6, 0xb7, 0xdb, + 0xe2, 0x4f, 0x89, 0x4e, 0x96, 0x96, 0x9f, 0x6f, 0x22, 0x30, 0xbb, 0x77, + 0x05, 0x1b, 0x88, 0xf7, 0x3d, 0x69, 0xba, 0xb1, 0x7b, 0x92, 0xa3, 0x63, + 0x7f, 0x53, 0xb7, 0xd9, 0x32, 0xda, 0x6a, 0x77, 0x4d, 0x0d, 0x8a, 0x0c, + 0x47, 0x3c, 0x49, 0x9c, 0x80, 0x71, 0xf4, 0xeb, 0x56, 0xf4, 0x66, 0xf0, + 0x7d, 0xa5, 0x95, 0xd5, 0xd4, 0xd7, 0x6f, 0x72, 0xe2, 0x40, 0x21, 0x81, + 0xb8, 0x70, 0x07, 0xf1, 0x7f, 0x3a, 0xf3, 0x4f, 0xed, 0x6d, 0x41, 0xa2, + 0x68, 0x85, 0xc4, 0x86, 0x39, 0x38, 0x61, 0x9c, 0xe4, 0x75, 0x35, 0x7e, + 0x1b, 0x18, 0xa2, 0x78, 0xa4, 0xfb, 0x54, 0x33, 0x6f, 0x03, 0x28, 0x03, + 0x65, 0x73, 0xfd, 0x69, 0x29, 0xdf, 0x61, 0xf2, 0x9e, 0xd3, 0x0d, 0xfd, + 0x9d, 0xf4, 0x9b, 0x74, 0x9b, 0xc7, 0x86, 0x67, 0x19, 0x31, 0x30, 0xdb, + 0x91, 0xdc, 0xfa, 0x74, 0x15, 0x66, 0xf3, 0xc4, 0x10, 0xbe, 0xa9, 0x6b, + 0xa7, 0x47, 0xa8, 0x5b, 0x98, 0x99, 0x95, 0x64, 0x74, 0x27, 0x70, 0x3f, + 0x5f, 0xf3, 0xd6, 0xbc, 0x74, 0xeb, 0x0d, 0x0d, 0xf3, 0xdb, 0x47, 0x00, + 0x85, 0x90, 0x79, 0x69, 0xb0, 0xf4, 0x1d, 0xeb, 0xd4, 0x7c, 0x2b, 0xf0, + 0xfe, 0xc6, 0xe3, 0x48, 0x5d, 0x47, 0x50, 0x96, 0x45, 0x77, 0x25, 0xc0, + 0x49, 0x38, 0x55, 0x1d, 0xf3, 0x42, 0x93, 0x61, 0xca, 0x7a, 0x3c, 0x30, + 0x88, 0x62, 0x50, 0x8c, 0x5f, 0x03, 0xb9, 0xcd, 0x5a, 0x1c, 0x8a, 0xe3, + 0xaf, 0x7c, 0x5b, 0xa1, 0xf8, 0x6e, 0x14, 0xb4, 0x37, 0x12, 0x4a, 0xdb, + 0x41, 0xdc, 0x80, 0xb9, 0xc7, 0xae, 0x6b, 0x77, 0x42, 0xd7, 0xb4, 0xfd, + 0x7a, 0xd3, 0xcf, 0xb1, 0x9f, 0xcc, 0x0a, 0x70, 0xc0, 0x82, 0x08, 0x3e, + 0xe0, 0xd5, 0x36, 0x5c, 0x6d, 0xb1, 0xab, 0x4b, 0x9a, 0x28, 0xc5, 0x49, + 0x62, 0x81, 0x9a, 0x28, 0xa2, 0x80, 0x1a, 0x6a, 0x32, 0x2a, 0x52, 0x29, + 0x08, 0xa6, 0x98, 0x88, 0x71, 0x49, 0x8a, 0x90, 0x8a, 0x69, 0xaa, 0x4c, + 0x4d, 0x0c, 0x22, 0x93, 0x14, 0xec, 0x52, 0x62, 0x98, 0x86, 0x62, 0x92, + 0x9f, 0x8a, 0x43, 0x4e, 0xe2, 0x18, 0x45, 0x34, 0x8a, 0x7d, 0x21, 0x15, + 0x42, 0x23, 0x22, 0x90, 0xd3, 0xc8, 0xa6, 0x91, 0x4c, 0x43, 0x69, 0xa4, + 0x53, 0xc8, 0xa6, 0x9a, 0xa1, 0x0d, 0xa6, 0x9a, 0x71, 0xa4, 0xa6, 0x84, + 0x30, 0xd3, 0x4d, 0x3c, 0xd3, 0x4d, 0x50, 0x86, 0xd3, 0x4d, 0x38, 0xd2, + 0x1a, 0x62, 0x1a, 0x69, 0xa6, 0x9c, 0x69, 0xa6, 0xa8, 0x06, 0x9a, 0x6d, + 0x3c, 0xd3, 0x0d, 0x34, 0x21, 0xa6, 0x9a, 0x7a, 0x53, 0xcd, 0x34, 0xf4, + 0xaa, 0x42, 0x13, 0xb5, 0x21, 0xa7, 0x76, 0xa4, 0xa6, 0x21, 0xb4, 0x94, + 0xb4, 0x53, 0x10, 0xda, 0x4a, 0x5a, 0x29, 0x88, 0x6d, 0x25, 0x2d, 0x14, + 0x08, 0x6d, 0x25, 0x3a, 0x92, 0x98, 0x09, 0x49, 0x4b, 0x49, 0x4c, 0x43, + 0x4d, 0x25, 0x38, 0xd2, 0x1a, 0x60, 0x34, 0xd3, 0x69, 0xe5, 0x82, 0x81, + 0x95, 0x27, 0x9e, 0xd5, 0x9d, 0x36, 0xab, 0xe4, 0xca, 0x50, 0xc2, 0xe4, + 0x21, 0x21, 0x8e, 0x30, 0x3e, 0xb5, 0x9c, 0xeb, 0x28, 0x6e, 0x54, 0x60, + 0xe5, 0xb0, 0xfb, 0xe8, 0xa5, 0x9a, 0x12, 0xb0, 0xfd, 0xf0, 0x38, 0xae, + 0x33, 0x52, 0xd4, 0x6e, 0xa0, 0x6f, 0x2a, 0x45, 0x72, 0xaa, 0xc4, 0x17, + 0xeb, 0x5b, 0x37, 0x1a, 0xbc, 0xaf, 0x3f, 0xd9, 0xde, 0x5d, 0xb1, 0xbf, + 0x43, 0xb7, 0x9c, 0xfa, 0x1a, 0xc3, 0xb8, 0x91, 0xd6, 0x42, 0x8e, 0xea, + 0xdc, 0xe4, 0x7b, 0xd7, 0x8b, 0x8d, 0xc4, 0x2a, 0x9a, 0xc7, 0x43, 0xae, + 0x94, 0x39, 0x74, 0x65, 0x69, 0x24, 0x92, 0x5d, 0xae, 0x36, 0x60, 0xf5, + 0x00, 0x60, 0x9f, 0xad, 0x2c, 0x82, 0x54, 0x25, 0x99, 0x95, 0xd7, 0x1c, + 0xe6, 0xab, 0x49, 0x74, 0x55, 0xa4, 0x41, 0x9e, 0x4f, 0x4d, 0xb9, 0xc5, + 0x48, 0x91, 0xca, 0xee, 0x46, 0xe0, 0x41, 0x39, 0xe3, 0xa5, 0x79, 0x9e, + 0xda, 0x6d, 0xee, 0x6f, 0xca, 0x86, 0xf9, 0x11, 0xc2, 0xaf, 0x1c, 0x44, + 0x85, 0x7e, 0x4e, 0x79, 0xfa, 0xe2, 0xad, 0xda, 0xc4, 0x65, 0xb5, 0x05, + 0xe6, 0x74, 0x54, 0x1f, 0x2e, 0x47, 0x5f, 0x73, 0x55, 0xd1, 0x67, 0xf3, + 0x18, 0xee, 0xce, 0x08, 0xc0, 0x27, 0xb5, 0x58, 0x4f, 0x30, 0x46, 0x58, + 0xbe, 0xe6, 0xc8, 0x3b, 0x0e, 0x71, 0x57, 0x0c, 0x4b, 0x4d, 0x27, 0xa8, + 0x9c, 0x4c, 0xef, 0xb3, 0x9f, 0x35, 0xda, 0x39, 0xd5, 0xd4, 0x70, 0x0e, + 0xd3, 0x8a, 0x96, 0x39, 0x93, 0x60, 0x55, 0x2c, 0x5b, 0x38, 0x21, 0x78, + 0xc5, 0x6b, 0x31, 0x26, 0x14, 0x2e, 0xaa, 0x42, 0xf0, 0x06, 0xde, 0x95, + 0x42, 0xe2, 0x29, 0x26, 0x66, 0xf2, 0xfc, 0xb4, 0x4f, 0x66, 0x39, 0xac, + 0x2b, 0x55, 0xa7, 0x7d, 0x10, 0xe2, 0x9f, 0x51, 0xcb, 0x30, 0xcf, 0x94, + 0x1d, 0xdc, 0x67, 0x82, 0x05, 0x3a, 0x06, 0x8e, 0x10, 0xe1, 0x8b, 0x24, + 0x64, 0xe3, 0x04, 0xf3, 0x59, 0xd1, 0xf9, 0xd6, 0x4a, 0xf2, 0x39, 0x03, + 0x73, 0x61, 0x43, 0x1e, 0x48, 0xa9, 0xbc, 0xe9, 0x27, 0x91, 0xe5, 0x92, + 0x13, 0xe5, 0x2a, 0xe7, 0x9a, 0xc1, 0xd4, 0xba, 0x6a, 0x3b, 0x21, 0xd8, + 0x9a, 0xfa, 0x3f, 0x35, 0x43, 0xab, 0x12, 0x14, 0x8e, 0x14, 0x75, 0x15, + 0x1c, 0x77, 0x72, 0x49, 0xbe, 0x25, 0x88, 0x82, 0xa3, 0x01, 0xb1, 0xc9, + 0xa8, 0xda, 0xe8, 0xcd, 0x6c, 0xa6, 0x1e, 0x02, 0xf2, 0x57, 0x1d, 0x2a, + 0xb4, 0x57, 0x72, 0x5c, 0xb6, 0xc5, 0x97, 0xcb, 0x64, 0xe5, 0x88, 0xef, + 0x5c, 0xad, 0xce, 0x4f, 0x99, 0xa0, 0x26, 0xf3, 0x59, 0xae, 0x0a, 0x06, + 0x22, 0x45, 0x1f, 0x31, 0xce, 0x07, 0xe5, 0x57, 0xe2, 0xb8, 0x84, 0xb8, + 0x1b, 0xb7, 0x31, 0xe4, 0x90, 0x6b, 0x3a, 0xf2, 0x48, 0xde, 0xd8, 0x32, + 0x38, 0x12, 0x0f, 0xbc, 0x49, 0xc1, 0x35, 0x42, 0xc1, 0x19, 0xa5, 0x32, + 0xa9, 0x2b, 0xea, 0x73, 0xc0, 0xa3, 0x93, 0xda, 0x46, 0xe2, 0xd9, 0x9d, + 0x5b, 0xdc, 0xc5, 0x17, 0x97, 0x24, 0x39, 0x12, 0x01, 0xf3, 0x7c, 0xd8, + 0xcd, 0x25, 0xdd, 0xea, 0xdd, 0x47, 0x0b, 0xdd, 0x4f, 0xbb, 0xcb, 0x6e, + 0x02, 0x9c, 0xd6, 0x44, 0x92, 0xe6, 0x25, 0x97, 0x6a, 0x36, 0xce, 0x37, + 0x37, 0x35, 0x35, 0x9d, 0x95, 0xed, 0xf4, 0x05, 0xd6, 0x15, 0x10, 0xbb, + 0xec, 0x00, 0x0e, 0x73, 0xeb, 0xf4, 0xae, 0xea, 0x6f, 0x11, 0x52, 0x49, + 0x41, 0x09, 0xb8, 0xad, 0xcb, 0x9f, 0xbb, 0x8e, 0x76, 0x2a, 0xaa, 0xa8, + 0x41, 0x27, 0x22, 0xa9, 0x25, 0xcb, 0x17, 0x2e, 0xdb, 0x36, 0x03, 0xfc, + 0x3d, 0x4f, 0xd0, 0x55, 0x96, 0xd0, 0xf5, 0x69, 0x5c, 0xfe, 0xe3, 0x02, + 0x33, 0xfc, 0x4c, 0x30, 0xd5, 0x49, 0x82, 0x58, 0xfc, 0xae, 0x23, 0x12, + 0xab, 0x61, 0xc2, 0x9c, 0x85, 0xae, 0x9a, 0xb4, 0x6a, 0xc6, 0x3c, 0xd5, + 0x17, 0xde, 0x25, 0x28, 0xb7, 0x64, 0x5d, 0x49, 0x6d, 0xa7, 0xca, 0x47, + 0x13, 0x96, 0x3c, 0xfc, 0xeb, 0x50, 0xce, 0x24, 0x86, 0xe9, 0x65, 0x58, + 0xdc, 0x6d, 0xe7, 0x66, 0x09, 0xc0, 0xa4, 0x4b, 0xbb, 0x7c, 0x06, 0x3b, + 0x8f, 0x70, 0xc3, 0xa5, 0x49, 0xbb, 0xcc, 0x0d, 0x2a, 0x4c, 0x55, 0x4e, + 0x01, 0x40, 0x7a, 0xd6, 0x4a, 0xac, 0x1a, 0xe5, 0x97, 0xdf, 0xa1, 0x56, + 0x7b, 0xa2, 0x9d, 0xdd, 0xf5, 0xd4, 0x97, 0x45, 0xe2, 0x12, 0x16, 0xe8, + 0x4e, 0x0f, 0x02, 0xa4, 0xf3, 0xee, 0x57, 0x69, 0x62, 0xbe, 0x66, 0x0f, + 0x18, 0xc9, 0xc5, 0x36, 0xe3, 0x51, 0x89, 0x0e, 0xc6, 0x0e, 0xc7, 0xf8, + 0x70, 0x31, 0xf9, 0xd3, 0x45, 0xd2, 0xb8, 0x3b, 0x8a, 0xa9, 0xc6, 0x71, + 0x8c, 0xe6, 0xb2, 0xb4, 0x64, 0xef, 0x2d, 0x4a, 0x16, 0xda, 0xf5, 0xbf, + 0x7a, 0x24, 0x2a, 0xbb, 0x7a, 0xf1, 0xcd, 0x49, 0x3c, 0xd0, 0x4c, 0x16, + 0x48, 0x95, 0x78, 0x1f, 0x33, 0x13, 0xd7, 0xff, 0x00, 0xaf, 0x4e, 0x99, + 0x2d, 0x65, 0x85, 0xb6, 0x45, 0x82, 0xcb, 0xf3, 0xb7, 0xbd, 0x57, 0x6d, + 0x26, 0x21, 0x18, 0x78, 0x9c, 0x92, 0x7f, 0x80, 0x1c, 0x93, 0x5a, 0x53, + 0x9a, 0x85, 0xd2, 0xea, 0x26, 0xae, 0x6a, 0xd8, 0x8b, 0x2f, 0x2c, 0xfd, + 0xaa, 0x6d, 0x92, 0xb2, 0x7e, 0xed, 0x7a, 0x06, 0x3e, 0xe6, 0xa8, 0x34, + 0x2d, 0x72, 0xc8, 0x00, 0x1f, 0x29, 0xc1, 0xc0, 0xe7, 0xaf, 0xad, 0x52, + 0x9a, 0x19, 0x5e, 0x7d, 0x91, 0x40, 0x76, 0x13, 0x90, 0x49, 0xe9, 0xf8, + 0xd5, 0xab, 0x31, 0x77, 0x67, 0x96, 0x21, 0x8a, 0x39, 0xc0, 0x63, 0xc9, + 0x3e, 0xd5, 0xdc, 0xa4, 0xe7, 0x05, 0xa6, 0x84, 0x5a, 0xcc, 0xd3, 0x4d, + 0x3e, 0x29, 0x83, 0x49, 0x2d, 0xd0, 0x81, 0x14, 0xe7, 0x19, 0xce, 0xe3, + 0xfd, 0x28, 0x96, 0x3b, 0x75, 0x39, 0x8d, 0x9e, 0x56, 0x53, 0xf2, 0xed, + 0x6e, 0x9e, 0xe6, 0xa9, 0x79, 0xf2, 0x5c, 0x48, 0xd2, 0x9c, 0xe4, 0x70, + 0x46, 0x0f, 0x6a, 0x8f, 0xed, 0xbe, 0x4c, 0xa1, 0x57, 0xa8, 0x3c, 0xf1, + 0x8e, 0x6b, 0x92, 0xad, 0x55, 0x17, 0xca, 0xa2, 0x35, 0x16, 0xcb, 0x6e, + 0xaf, 0x24, 0xbb, 0x55, 0x76, 0xe4, 0x1f, 0xc4, 0xd5, 0xab, 0x63, 0x2c, + 0x11, 0xac, 0x8e, 0x32, 0xe1, 0xb0, 0x14, 0x8c, 0x62, 0xa9, 0xa5, 0xd3, + 0x36, 0x5a, 0x5c, 0x63, 0xd4, 0x1a, 0x82, 0x5b, 0x99, 0x25, 0x97, 0x6a, + 0x33, 0x1f, 0x4c, 0x56, 0x74, 0xaa, 0xc5, 0x2f, 0x87, 0x51, 0xb4, 0xce, + 0xb2, 0xd2, 0x7b, 0xd7, 0x9c, 0x48, 0x5b, 0x60, 0xc6, 0x77, 0x06, 0xf9, + 0x73, 0x5a, 0x36, 0x97, 0xea, 0xf2, 0xb4, 0x97, 0x73, 0x2a, 0x14, 0xcf, + 0xc8, 0x07, 0x03, 0xfc, 0x6b, 0x91, 0xb2, 0x76, 0x52, 0x1e, 0x67, 0x76, + 0x51, 0xfc, 0x18, 0xce, 0x6b, 0x4c, 0xdf, 0x41, 0xcb, 0x48, 0x9b, 0x41, + 0x5f, 0x90, 0x01, 0xc8, 0xf6, 0xe6, 0xbd, 0x3a, 0x15, 0xd7, 0x27, 0x35, + 0xed, 0xea, 0xcc, 0x65, 0x0d, 0x4e, 0x87, 0xfe, 0x12, 0x1b, 0x68, 0xe1, + 0xdc, 0x4a, 0xb3, 0x67, 0xb1, 0xe8, 0x2b, 0x46, 0xdb, 0x57, 0xb2, 0x9a, + 0x24, 0x90, 0x4a, 0x39, 0xe0, 0xaf, 0x70, 0x6b, 0xcc, 0xe4, 0x80, 0xc9, + 0xbc, 0xc3, 0x3e, 0xd6, 0x24, 0xf1, 0x8a, 0xb3, 0x65, 0xba, 0x2f, 0x2d, + 0x84, 0xdf, 0x77, 0xa9, 0x63, 0xce, 0x6b, 0x37, 0x98, 0xd5, 0x8c, 0xb7, + 0x4d, 0x0f, 0xd9, 0x46, 0xc7, 0xac, 0x04, 0xc8, 0x04, 0x74, 0x3e, 0xd4, + 0xd6, 0x42, 0xb5, 0xc8, 0xe9, 0xda, 0xc3, 0xc7, 0x3a, 0x25, 0xee, 0xa2, + 0xc1, 0x3d, 0x8f, 0x07, 0xf1, 0xad, 0x61, 0xe2, 0x9d, 0x39, 0xdb, 0x09, + 0x23, 0xc8, 0xa3, 0x82, 0x51, 0x73, 0x5e, 0x8d, 0x1c, 0x64, 0x67, 0x1b, + 0xcb, 0x43, 0x39, 0x42, 0xda, 0x1a, 0x84, 0x1a, 0x00, 0xa7, 0x2b, 0x2b, + 0xa2, 0xb8, 0x39, 0x56, 0x19, 0x14, 0x71, 0x5d, 0xaa, 0x57, 0x57, 0x46, + 0x76, 0x0d, 0xa6, 0x8d, 0xb4, 0xa1, 0xb1, 0x41, 0x6a, 0x60, 0x26, 0x29, + 0x40, 0xa4, 0xcd, 0x00, 0xd0, 0x03, 0xc0, 0x14, 0xb4, 0x2d, 0x3f, 0x68, + 0xa9, 0xb8, 0xc6, 0x73, 0x40, 0xa7, 0x63, 0x14, 0x94, 0x00, 0xa2, 0x9c, + 0x29, 0xb4, 0xe1, 0x48, 0x07, 0x0a, 0x7d, 0x30, 0x53, 0x81, 0xa9, 0x63, + 0x1c, 0x29, 0xc2, 0x9a, 0x29, 0x45, 0x48, 0xc7, 0xd2, 0x8a, 0x68, 0xa7, + 0x52, 0x18, 0xe1, 0x4a, 0x29, 0xb4, 0xea, 0x91, 0x8e, 0x14, 0xe1, 0x4c, + 0x14, 0xe0, 0x0d, 0x26, 0x31, 0xc2, 0x94, 0x52, 0x01, 0x4e, 0x1c, 0x54, + 0xb1, 0x85, 0x14, 0x66, 0xa0, 0xb8, 0xbb, 0x86, 0xd9, 0x41, 0x95, 0xc2, + 0x82, 0x40, 0x04, 0x9e, 0xf4, 0x01, 0x36, 0xe1, 0xeb, 0x41, 0x75, 0x51, + 0x92, 0x70, 0x2b, 0x8a, 0xf1, 0x57, 0x89, 0x6d, 0x6c, 0xbc, 0x94, 0xf2, + 0x9e, 0xe5, 0x26, 0x2c, 0x87, 0xc9, 0x98, 0xab, 0x29, 0x1d, 0x38, 0xac, + 0x0f, 0x1a, 0x78, 0x93, 0x52, 0x3a, 0x1e, 0x9b, 0x2d, 0x9a, 0xaf, 0xd9, + 0x6e, 0x94, 0x16, 0x04, 0xee, 0x93, 0x70, 0xec, 0x45, 0x4b, 0x92, 0x57, + 0x11, 0xe9, 0xa3, 0x51, 0xb6, 0x33, 0xf9, 0x22, 0x64, 0xf3, 0x31, 0x9c, + 0x67, 0xb5, 0x4f, 0x14, 0xc9, 0x32, 0x07, 0x8d, 0xd5, 0xd4, 0xf7, 0x53, + 0x91, 0x5e, 0x0b, 0xe1, 0xaf, 0x12, 0xbd, 0xa5, 0xd2, 0xcd, 0x77, 0x67, + 0xf6, 0x91, 0x21, 0xc1, 0x2e, 0x7e, 0x5f, 0x4f, 0xc2, 0xba, 0xad, 0x2f, + 0x58, 0xb9, 0xd2, 0xb5, 0x2b, 0xc3, 0x12, 0x45, 0x0c, 0x64, 0x19, 0xbe, + 0xcc, 0xce, 0x00, 0x20, 0x8e, 0x08, 0xe9, 0x9a, 0xc7, 0xdb, 0xf7, 0x43, + 0xd4, 0xf5, 0x40, 0x69, 0x6a, 0x86, 0x91, 0xa8, 0xc3, 0xaa, 0xe9, 0xd0, + 0x5d, 0xc2, 0xe1, 0x84, 0x8b, 0x93, 0x8e, 0xc7, 0xb8, 0xfc, 0xeb, 0x42, + 0xb5, 0x4d, 0x35, 0x74, 0x34, 0x14, 0xd7, 0x38, 0x52, 0x07, 0x5a, 0x75, + 0x32, 0x49, 0xa2, 0x8d, 0x09, 0x76, 0x00, 0x01, 0xc9, 0x27, 0xa5, 0x31, + 0x94, 0x0d, 0xff, 0x00, 0xd9, 0x44, 0xad, 0x78, 0xcb, 0x1c, 0x28, 0x37, + 0x79, 0x85, 0x80, 0x00, 0x56, 0x17, 0x88, 0x35, 0x06, 0xb7, 0xb2, 0x97, + 0x59, 0xb5, 0xd5, 0xd0, 0x44, 0x89, 0xb5, 0x23, 0x55, 0x56, 0x56, 0x3e, + 0x87, 0x27, 0xad, 0x79, 0x8f, 0x8f, 0xb5, 0xc8, 0x1b, 0x5c, 0x9e, 0xde, + 0x0b, 0xf1, 0x79, 0x19, 0x20, 0xb3, 0x8f, 0xba, 0xa3, 0xfb, 0xb9, 0x1d, + 0x71, 0x5c, 0xa4, 0x37, 0x33, 0x2c, 0xf1, 0xc9, 0x03, 0x91, 0x19, 0x7f, + 0x9f, 0x07, 0x70, 0x19, 0xff, 0x00, 0x64, 0xf5, 0xe2, 0xb3, 0x75, 0x9f, + 0x35, 0x92, 0x22, 0xda, 0x0c, 0xd6, 0xb5, 0x2d, 0x3e, 0xf4, 0x34, 0xca, + 0x67, 0x37, 0xaf, 0x33, 0x33, 0x83, 0x8d, 0xb8, 0x3f, 0xfd, 0x7a, 0xcb, + 0xbd, 0xb7, 0xbc, 0x79, 0x92, 0x39, 0x21, 0x95, 0x5e, 0x5c, 0x30, 0x41, + 0xce, 0xe0, 0x7a, 0x60, 0x0a, 0xf4, 0x7b, 0xff, 0x00, 0x85, 0xb7, 0xa7, + 0xc3, 0xb1, 0x5d, 0x69, 0xaf, 0x05, 0xd1, 0x76, 0xf3, 0x49, 0x2b, 0xb5, + 0xb6, 0x91, 0xef, 0xfc, 0xab, 0x92, 0xb4, 0xb7, 0xd4, 0xbc, 0x33, 0xaa, + 0x93, 0x71, 0x13, 0x0b, 0x94, 0x03, 0xcb, 0x98, 0xfc, 0xe9, 0x1f, 0x3f, + 0xa7, 0xe6, 0x2b, 0x36, 0x9f, 0x51, 0xd8, 0xc4, 0x17, 0x4f, 0xa6, 0xcd, + 0x77, 0x6b, 0x1c, 0x05, 0xb7, 0x0d, 0x87, 0xcf, 0x8f, 0xe6, 0x51, 0xf4, + 0x3d, 0x0d, 0x41, 0x0c, 0xd0, 0xcd, 0x6e, 0xf6, 0xed, 0x08, 0x52, 0x0e, + 0x43, 0xf3, 0x9f, 0x71, 0x5d, 0x56, 0xb3, 0xa6, 0x6a, 0x9a, 0xa3, 0x4d, + 0xaf, 0x7d, 0xa1, 0x2e, 0x03, 0x44, 0xed, 0x31, 0x5c, 0x6e, 0x55, 0x07, + 0x19, 0x23, 0x3e, 0xf5, 0xce, 0x8d, 0x1e, 0x68, 0xae, 0x3e, 0xc7, 0x7b, + 0x8b, 0x67, 0x96, 0x3f, 0x35, 0x1e, 0x4e, 0x38, 0xc6, 0x47, 0xe7, 0x52, + 0xd0, 0xec, 0x0d, 0x6f, 0x3d, 0xa4, 0xcc, 0xa8, 0xac, 0x37, 0x2e, 0xe8, + 0xc9, 0x18, 0x3b, 0x7d, 0x6a, 0xcf, 0x86, 0xa4, 0xb9, 0x6d, 0x7e, 0xda, + 0xe3, 0x6b, 0xc9, 0xf6, 0x63, 0xbf, 0x94, 0x2e, 0x17, 0x1e, 0xa3, 0xd2, + 0x8d, 0x07, 0x53, 0x87, 0x4e, 0xbf, 0x33, 0x5f, 0x07, 0x96, 0x04, 0x42, + 0xab, 0xb4, 0x0e, 0x71, 0xd0, 0x73, 0xef, 0x50, 0x5b, 0x78, 0x82, 0xfa, + 0xca, 0x6b, 0x86, 0xb0, 0x95, 0xe0, 0xfb, 0x4e, 0x44, 0x8a, 0x80, 0x0d, + 0xca, 0x7b, 0x51, 0x1b, 0x27, 0x71, 0x33, 0xa1, 0xd4, 0xb4, 0x99, 0x6e, + 0x2e, 0xef, 0x35, 0x4b, 0x99, 0x02, 0x48, 0xe4, 0xca, 0x12, 0x18, 0x88, + 0x03, 0x9f, 0xd0, 0x57, 0x73, 0xe1, 0xdf, 0x88, 0x17, 0xb6, 0xbe, 0x13, + 0x96, 0xd3, 0xec, 0xd1, 0xdc, 0x5e, 0x5b, 0x2e, 0xd8, 0xf6, 0x72, 0x08, + 0x3d, 0x09, 0x15, 0xe5, 0xd6, 0x7a, 0xb6, 0xa3, 0x25, 0xb9, 0xb7, 0x67, + 0x12, 0x44, 0x58, 0x0d, 0x8e, 0x46, 0x4f, 0x1d, 0x3e, 0x95, 0xbd, 0xe1, + 0x77, 0xb7, 0xd3, 0xef, 0xee, 0xa4, 0xd5, 0x2d, 0x19, 0xa6, 0xb7, 0x8b, + 0xe5, 0x48, 0xe4, 0x09, 0x8f, 0xf1, 0x22, 0xb4, 0x52, 0xec, 0x06, 0xd5, + 0x8f, 0x8b, 0xe2, 0xd5, 0x22, 0x96, 0x6d, 0x5b, 0x4c, 0x49, 0x2e, 0x95, + 0x3c, 0xa8, 0xd4, 0xa1, 0x00, 0x73, 0x9c, 0xf1, 0xde, 0xba, 0x2f, 0x02, + 0x3d, 0xcd, 0xcc, 0xd3, 0xc9, 0x0c, 0x82, 0xd1, 0x13, 0x96, 0xe3, 0xa8, + 0xcf, 0x0b, 0x8a, 0xf3, 0xc9, 0xfc, 0x5b, 0xe6, 0xde, 0x48, 0xf6, 0xf6, + 0x11, 0x60, 0x12, 0xdb, 0x9c, 0x7c, 0xdf, 0x8f, 0xad, 0x68, 0x68, 0x7e, + 0x25, 0xbe, 0xb6, 0xbd, 0x4b, 0x89, 0x24, 0x75, 0x89, 0x98, 0x33, 0x04, + 0xe3, 0xfc, 0x9a, 0x23, 0x27, 0xcd, 0x71, 0x3d, 0x8f, 0xa2, 0x2d, 0x24, + 0x67, 0x84, 0x6f, 0x39, 0x61, 0xd6, 0xac, 0xd7, 0x3f, 0xe1, 0xdd, 0x5e, + 0xcf, 0x56, 0xd3, 0xda, 0xee, 0xd4, 0x95, 0xf9, 0xb0, 0xca, 0xc7, 0x90, + 0x7d, 0xeb, 0x5e, 0x3b, 0x86, 0xe4, 0x15, 0x2d, 0x8e, 0xe2, 0xb6, 0x6a, + 0xfa, 0xa1, 0xc6, 0x5a, 0x6a, 0x59, 0xa2, 0x91, 0x58, 0x30, 0xc8, 0xe9, + 0x4e, 0xc5, 0x49, 0x62, 0x52, 0x1a, 0x5a, 0x43, 0x40, 0x0d, 0x34, 0xc3, + 0x52, 0x11, 0x4c, 0xc5, 0x34, 0x21, 0xb4, 0x94, 0xe3, 0x49, 0x54, 0x4b, + 0x1a, 0x69, 0xb4, 0xe3, 0x49, 0x4c, 0x06, 0x9a, 0x69, 0xa7, 0xd3, 0x48, + 0xa6, 0x21, 0xa6, 0x9a, 0x45, 0x3e, 0x9a, 0x6a, 0x84, 0x32, 0x9a, 0x69, + 0xe4, 0x53, 0x4d, 0x50, 0x86, 0x1a, 0x4a, 0x71, 0xa6, 0x9a, 0x62, 0x1a, + 0x69, 0xa6, 0x9f, 0x4d, 0x35, 0x48, 0x43, 0x0d, 0x34, 0xd3, 0xc8, 0xa6, + 0x91, 0x54, 0x21, 0xa6, 0x9a, 0x69, 0xe4, 0x53, 0x4d, 0x34, 0x03, 0x0d, + 0x34, 0xd3, 0xcd, 0x34, 0xd5, 0x12, 0x30, 0xd3, 0x4f, 0x4a, 0x79, 0xa6, + 0x91, 0x54, 0x84, 0x27, 0x6a, 0x29, 0xd4, 0x98, 0xa0, 0x43, 0x4d, 0x36, + 0x9f, 0x8a, 0x42, 0x29, 0x88, 0x61, 0xa4, 0xa7, 0xd2, 0x62, 0x98, 0x86, + 0x52, 0x53, 0xa9, 0x29, 0x80, 0xda, 0x29, 0x69, 0x31, 0xd4, 0xfa, 0x0c, + 0xd3, 0xbd, 0x84, 0x25, 0x25, 0x35, 0x26, 0x8a, 0x53, 0x88, 0xe4, 0x56, + 0x3e, 0x80, 0xf3, 0xf9, 0x53, 0xc8, 0xc5, 0x28, 0xc9, 0x4b, 0x66, 0x0d, + 0x35, 0xb8, 0x94, 0xd3, 0x4e, 0xa4, 0x35, 0x42, 0x18, 0xc7, 0x08, 0x71, + 0xc9, 0x1d, 0x07, 0xad, 0x67, 0xdd, 0xc4, 0x24, 0x85, 0xfe, 0xd0, 0xc8, + 0xa0, 0xf4, 0xc7, 0x6f, 0xf1, 0xa9, 0x17, 0x53, 0xb6, 0x7b, 0x97, 0x87, + 0x24, 0x15, 0x38, 0xc9, 0x1c, 0x1a, 0x8b, 0x54, 0x9a, 0xd4, 0x5b, 0xed, + 0x95, 0xd4, 0xb1, 0xe5, 0x47, 0xbf, 0x6a, 0xc2, 0xa5, 0x58, 0x72, 0x39, + 0x5c, 0xd2, 0x31, 0x77, 0xb1, 0xce, 0x6a, 0xd7, 0x11, 0xac, 0x4b, 0x03, + 0x6c, 0x0e, 0x06, 0x01, 0x41, 0xd6, 0xb1, 0x15, 0x64, 0x66, 0xd9, 0xe6, + 0xe7, 0x1d, 0x54, 0xf7, 0xab, 0xb7, 0x2c, 0x27, 0x18, 0x74, 0x07, 0x66, + 0x70, 0xca, 0x71, 0x9f, 0xc6, 0xa8, 0xc3, 0x14, 0x72, 0x87, 0x90, 0x6e, + 0x1d, 0xb6, 0xb5, 0x7c, 0xb6, 0x2a, 0xab, 0xa9, 0x36, 0xce, 0xf8, 0x46, + 0xca, 0xc4, 0xaf, 0x0c, 0x63, 0x05, 0x42, 0x16, 0x07, 0xb1, 0xe9, 0x50, + 0xcf, 0x70, 0x12, 0x26, 0x07, 0x18, 0xc9, 0x3c, 0x75, 0x22, 0xa3, 0xb8, + 0x96, 0x20, 0x07, 0x94, 0x76, 0x0c, 0x64, 0x82, 0x6a, 0x9c, 0xb3, 0x79, + 0x8b, 0xf2, 0xf2, 0xc0, 0x76, 0xe4, 0x57, 0x3a, 0x45, 0x8a, 0xda, 0x82, + 0x0c, 0x36, 0x08, 0xdc, 0x71, 0xef, 0x4e, 0x33, 0xcb, 0x2e, 0x48, 0x24, + 0x20, 0xe4, 0x1e, 0xbb, 0x6a, 0x81, 0x40, 0x66, 0x5f, 0x2c, 0x6e, 0xdd, + 0xc1, 0x04, 0x74, 0x35, 0xd0, 0x41, 0xa3, 0xdf, 0x43, 0x08, 0x98, 0xa8, + 0x78, 0x40, 0xc9, 0x1f, 0x5e, 0x9f, 0x5a, 0xe8, 0xa7, 0x42, 0x53, 0xd6, + 0x2b, 0x42, 0x1c, 0x92, 0xdc, 0xae, 0x93, 0x4d, 0x16, 0xd3, 0x2c, 0xb9, + 0x45, 0xe7, 0xaf, 0x5a, 0x25, 0xb9, 0x37, 0x91, 0x9f, 0x28, 0x32, 0x3e, + 0xee, 0x47, 0xaf, 0xbd, 0x47, 0x74, 0xb1, 0xa4, 0xb1, 0x87, 0x46, 0x2c, + 0xa7, 0xa0, 0x6e, 0x95, 0x16, 0xe9, 0x80, 0x12, 0xf2, 0xa0, 0x64, 0xe4, + 0x0c, 0xe6, 0xb9, 0xaa, 0x52, 0xba, 0xe6, 0xea, 0x55, 0xc5, 0xb8, 0xf9, + 0x54, 0x0b, 0xa6, 0x5d, 0x83, 0xd3, 0x9a, 0x9c, 0xdc, 0x2c, 0x96, 0xf9, + 0x84, 0xe1, 0x00, 0xc0, 0x06, 0xb2, 0xde, 0xef, 0x74, 0xc1, 0xdf, 0xe7, + 0x27, 0xb1, 0x1d, 0x3f, 0x0a, 0x86, 0xf2, 0xfd, 0xdd, 0x56, 0x18, 0x10, + 0xf9, 0x84, 0xf1, 0x8e, 0xd5, 0x84, 0xa8, 0xb9, 0x34, 0x92, 0x0b, 0x96, + 0xa3, 0xb8, 0x48, 0x64, 0x65, 0x7d, 0xd8, 0x7e, 0xa1, 0x4e, 0x69, 0x67, + 0x78, 0x04, 0x8d, 0x0c, 0x4b, 0x86, 0x23, 0x2d, 0xd8, 0x9a, 0x48, 0xf7, + 0x5b, 0x44, 0x1c, 0xc3, 0x97, 0x6f, 0xbf, 0x9c, 0x71, 0xf4, 0xa8, 0x76, + 0x89, 0x75, 0x16, 0xb9, 0x12, 0x00, 0xb1, 0xa8, 0x2e, 0x1d, 0xba, 0xfd, + 0x2a, 0xa1, 0x4d, 0xd4, 0x9d, 0x90, 0xaf, 0x64, 0x50, 0xba, 0xb8, 0xd9, + 0x27, 0x97, 0x0a, 0x1f, 0x9f, 0x82, 0x1b, 0x9c, 0x55, 0x98, 0x21, 0x01, + 0xfc, 0xa4, 0xba, 0x1f, 0x32, 0x03, 0x83, 0xd8, 0xd6, 0xb5, 0xa3, 0xc7, + 0x0d, 0xfa, 0x4f, 0x6f, 0x00, 0x33, 0x03, 0xb5, 0x91, 0xd3, 0x20, 0x82, + 0x3d, 0x2a, 0xf4, 0x56, 0xb6, 0x4c, 0x67, 0x9f, 0x64, 0x0e, 0x4f, 0x41, + 0x82, 0x3f, 0x1a, 0xf4, 0x61, 0x4a, 0x2e, 0x8d, 0xdc, 0xac, 0xfc, 0xc8, + 0x6f, 0x53, 0x01, 0x7e, 0xd7, 0x68, 0xe4, 0x4a, 0xdb, 0xb2, 0x78, 0x21, + 0xb8, 0xae, 0xda, 0xdb, 0xc4, 0xee, 0x21, 0x8d, 0x23, 0x8a, 0x15, 0x74, + 0x5c, 0x3f, 0x1d, 0x6b, 0x05, 0x0c, 0x52, 0x28, 0xb9, 0x8a, 0xd0, 0x4c, + 0x63, 0xf9, 0x46, 0x47, 0x02, 0xb0, 0x26, 0xb8, 0x71, 0x3c, 0x85, 0x98, + 0x8f, 0x30, 0xe4, 0x04, 0x3d, 0x0d, 0x28, 0x54, 0x9d, 0x08, 0xfe, 0xea, + 0x56, 0x6f, 0xc8, 0x1c, 0x54, 0xb7, 0x47, 0xa0, 0x5c, 0xf8, 0x8a, 0x5b, + 0x88, 0xc1, 0x44, 0x55, 0x6e, 0x80, 0x8a, 0xc1, 0xbb, 0xb1, 0x59, 0x21, + 0x6b, 0xcc, 0x36, 0xc2, 0xc7, 0x73, 0xfa, 0x1f, 0x43, 0x5c, 0xb8, 0xbc, + 0xbd, 0x05, 0x80, 0x24, 0x27, 0xba, 0xf5, 0xad, 0x21, 0xa9, 0xdd, 0x49, + 0x65, 0xf6, 0x76, 0x0d, 0xb5, 0xb0, 0x78, 0x1f, 0xa5, 0x6c, 0xa5, 0x3a, + 0xad, 0xfb, 0x56, 0xd8, 0x59, 0x47, 0xe1, 0x21, 0x8a, 0x46, 0x66, 0xf3, + 0x21, 0x51, 0xb5, 0x49, 0x04, 0x67, 0x8c, 0x7a, 0x91, 0x5a, 0x50, 0xca, + 0x14, 0x94, 0x65, 0x41, 0xbb, 0xa3, 0xa9, 0xc0, 0xcd, 0x43, 0xa7, 0xe9, + 0x82, 0x5b, 0x96, 0xb7, 0x46, 0x78, 0x09, 0x5c, 0x8f, 0x33, 0x8d, 0xde, + 0xa2, 0xae, 0xde, 0xf8, 0x7e, 0x5b, 0x31, 0x11, 0x96, 0x4f, 0x35, 0x5b, + 0x93, 0xb6, 0x87, 0x86, 0x8c, 0x62, 0xe7, 0x25, 0xa2, 0x1f, 0x3e, 0xb6, + 0x2b, 0xa5, 0x9b, 0x49, 0xfb, 0xcf, 0x2f, 0xcc, 0x50, 0xdc, 0xb8, 0x3c, + 0x0f, 0xce, 0x9b, 0x71, 0x0c, 0xa1, 0xc4, 0x62, 0xdf, 0x0a, 0xfd, 0xc1, + 0xc8, 0x1e, 0xf5, 0x62, 0x22, 0xb2, 0xc9, 0xf6, 0x34, 0x56, 0x5c, 0x7d, + 0xe0, 0x49, 0xad, 0x02, 0xf3, 0x69, 0xd6, 0xbb, 0x07, 0xca, 0x31, 0x87, + 0xe3, 0x92, 0x3f, 0x1a, 0xcd, 0x46, 0x1b, 0xa4, 0xd5, 0xc7, 0xa9, 0x98, + 0x8b, 0x71, 0x6e, 0xa6, 0x26, 0xfd, 0xe2, 0x13, 0xe9, 0xfd, 0x6a, 0xec, + 0xaf, 0xe4, 0x43, 0x18, 0x45, 0xeb, 0xcb, 0x12, 0xdf, 0xa5, 0x54, 0x9e, + 0xe2, 0xe1, 0xa5, 0x10, 0xc7, 0x80, 0xaa, 0x4e, 0xdf, 0x53, 0x9f, 0x5a, + 0x9e, 0x4d, 0x2f, 0x6c, 0xa8, 0xb1, 0xdd, 0x79, 0x83, 0x1b, 0x98, 0x90, + 0x78, 0xcf, 0xa5, 0x35, 0x86, 0x4e, 0x2e, 0xcd, 0x79, 0x8b, 0x9b, 0x52, + 0xcc, 0x60, 0xde, 0xc2, 0x23, 0x50, 0x15, 0xe4, 0x52, 0x14, 0x1e, 0x0e, + 0x7d, 0x6a, 0xa0, 0x69, 0xb4, 0x91, 0xb2, 0xe0, 0x36, 0x4e, 0x70, 0x4f, + 0x7f, 0x7a, 0xbb, 0xa7, 0xc7, 0x1d, 0xbc, 0x96, 0xd7, 0x12, 0x86, 0x70, + 0xa7, 0x70, 0xed, 0x91, 0x58, 0x9e, 0x24, 0xd6, 0xd7, 0x51, 0xd5, 0x0d, + 0xc4, 0x31, 0x4a, 0x8a, 0x17, 0x6e, 0x18, 0xe6, 0xae, 0x34, 0xe3, 0x4e, + 0x8d, 0xde, 0x92, 0xe8, 0x0d, 0xbe, 0x6b, 0x74, 0x1b, 0x1e, 0xa0, 0xd7, + 0x4e, 0x55, 0xdd, 0xf6, 0x83, 0x8f, 0x96, 0xa1, 0xbd, 0x0d, 0x0d, 0xca, + 0x94, 0x57, 0x39, 0x00, 0xe7, 0xad, 0x41, 0x63, 0x30, 0x3b, 0x84, 0x31, + 0x86, 0x6c, 0x75, 0xce, 0x3f, 0xfd, 0x75, 0xbd, 0x6b, 0x2b, 0x88, 0x52, + 0x41, 0x10, 0xcb, 0xae, 0xd6, 0xdc, 0x32, 0x00, 0xae, 0x35, 0x4e, 0xd3, + 0xe6, 0x92, 0xd0, 0xb3, 0x24, 0xb4, 0xea, 0xeb, 0xb9, 0x59, 0x54, 0xff, + 0x00, 0x7e, 0xb4, 0xad, 0xf8, 0xc9, 0x8d, 0xbe, 0x63, 0xc9, 0xe2, 0xad, + 0x5f, 0xea, 0x70, 0xca, 0x23, 0x8a, 0x43, 0x19, 0x44, 0x1b, 0x78, 0x18, + 0x27, 0xdc, 0xd5, 0x45, 0x78, 0xe3, 0x54, 0x08, 0x9f, 0x2f, 0x50, 0x49, + 0xe9, 0x45, 0x78, 0xa8, 0xbb, 0xd3, 0xe8, 0x11, 0x7d, 0xce, 0x8b, 0x4f, + 0x30, 0x3c, 0x0d, 0x6d, 0x2b, 0x91, 0x23, 0x74, 0x35, 0x85, 0x7f, 0x73, + 0x24, 0x57, 0x0c, 0x99, 0x6c, 0xa9, 0xe0, 0x1e, 0xd5, 0x21, 0x9c, 0x6c, + 0x0c, 0x0b, 0x2b, 0x67, 0x19, 0xcd, 0x45, 0x34, 0x6d, 0x2b, 0x64, 0x48, + 0x1b, 0x3c, 0x30, 0x23, 0x9a, 0x99, 0x56, 0x52, 0xa6, 0x94, 0xb7, 0x5d, + 0x44, 0x93, 0x4c, 0xcc, 0x7b, 0xd9, 0x9d, 0x32, 0x80, 0x46, 0xa4, 0xfc, + 0xc7, 0x3c, 0x9a, 0xd3, 0xb4, 0x9a, 0x48, 0x91, 0x15, 0xa2, 0x70, 0xce, + 0x37, 0x03, 0x83, 0x82, 0x3d, 0x6a, 0x15, 0x58, 0x9a, 0x43, 0x19, 0x0a, + 0xdc, 0x63, 0x69, 0xc8, 0x07, 0xda, 0xb4, 0xf4, 0xa9, 0x53, 0x4f, 0x12, + 0x32, 0x8d, 0xa7, 0x68, 0x1b, 0x59, 0x72, 0x47, 0xd2, 0xa6, 0x3e, 0xc9, + 0xd9, 0x4f, 0x44, 0x37, 0x7e, 0x86, 0x96, 0x97, 0x1c, 0x77, 0x73, 0x86, + 0x9e, 0x59, 0x76, 0x29, 0xc3, 0x29, 0x5c, 0x0c, 0x54, 0xd7, 0xab, 0x6d, + 0x14, 0x8a, 0x2c, 0xe4, 0x62, 0xbb, 0xb6, 0xf0, 0x0a, 0xf3, 0xdf, 0x3c, + 0x53, 0x62, 0xd7, 0x12, 0xd2, 0x41, 0x73, 0x3c, 0x31, 0xca, 0x5f, 0x82, + 0x3a, 0x7f, 0x4a, 0xd2, 0xb3, 0xd7, 0x2c, 0x2f, 0x23, 0x9a, 0x2b, 0xbf, + 0xdd, 0x89, 0x71, 0xca, 0x0e, 0xf5, 0xe9, 0xd1, 0xa9, 0x87, 0x70, 0xe4, + 0xbd, 0x9b, 0x31, 0x92, 0x92, 0x77, 0x2c, 0x69, 0xf7, 0xb7, 0xf6, 0x92, + 0x62, 0x79, 0x0c, 0xf1, 0x91, 0xb8, 0x2a, 0xe1, 0xb8, 0xf7, 0x3d, 0xab, + 0xa4, 0x8a, 0x51, 0x34, 0x29, 0x2a, 0x82, 0x03, 0x0c, 0xe0, 0xf6, 0xac, + 0xfb, 0x2d, 0x36, 0x0d, 0xa2, 0xe2, 0x39, 0xa4, 0x60, 0xdf, 0x74, 0x86, + 0x1c, 0x0a, 0xd4, 0x0b, 0x80, 0x00, 0xe8, 0x2b, 0xd5, 0xc3, 0xd3, 0x71, + 0x5b, 0xe8, 0x63, 0x37, 0x71, 0x30, 0x69, 0xc1, 0x4d, 0x38, 0x6d, 0x5e, + 0x58, 0x80, 0x2a, 0x0b, 0xab, 0xe8, 0x2c, 0x6d, 0xde, 0x6b, 0xa9, 0x51, + 0x11, 0x7b, 0xd6, 0xee, 0x69, 0x09, 0x44, 0x4b, 0xdb, 0xb8, 0x34, 0xfb, + 0x7f, 0x36, 0x77, 0x0a, 0xb9, 0xc0, 0xcf, 0x7a, 0xc5, 0x9f, 0xc5, 0x76, + 0xea, 0xc0, 0x5b, 0xaa, 0x12, 0x4f, 0x47, 0x24, 0x96, 0xfa, 0x62, 0xb8, + 0xdd, 0x57, 0x59, 0xb9, 0xbc, 0xbd, 0x6b, 0x99, 0xae, 0xc0, 0x89, 0x8e, + 0x23, 0x44, 0x90, 0x95, 0x03, 0xe9, 0xda, 0xab, 0x40, 0xe8, 0x92, 0x79, + 0xb0, 0xcc, 0x37, 0x74, 0x2c, 0x45, 0x78, 0x78, 0xdc, 0xc6, 0x50, 0x97, + 0x2c, 0x6e, 0x8e, 0x88, 0x52, 0x4f, 0x73, 0xd1, 0xa3, 0xd7, 0x00, 0xcf, + 0x9a, 0xbb, 0x08, 0x5d, 0xd8, 0x51, 0x9a, 0xd5, 0xb4, 0xbd, 0x8e, 0xfe, + 0x01, 0x34, 0x65, 0x73, 0xd1, 0x94, 0x1f, 0xbb, 0x5e, 0x7f, 0x69, 0x24, + 0x57, 0x37, 0xc8, 0x6e, 0xe7, 0x61, 0x1b, 0x7c, 0xbb, 0x97, 0xf9, 0x1a, + 0xd5, 0xd4, 0xe4, 0xb9, 0xd1, 0xb6, 0x47, 0xa7, 0xcd, 0xfb, 0x99, 0x4e, + 0x37, 0xaf, 0x38, 0xfa, 0x9e, 0x9f, 0x8d, 0x56, 0x1f, 0x17, 0x39, 0x2e, + 0x74, 0xf9, 0x92, 0xdf, 0xb8, 0xa5, 0x04, 0xb4, 0x3a, 0xf7, 0x92, 0x34, + 0x6d, 0xae, 0xea, 0xa7, 0x19, 0xe7, 0xa5, 0x28, 0xc3, 0x22, 0xba, 0x90, + 0x55, 0x86, 0x41, 0x1d, 0xeb, 0xce, 0x25, 0xbf, 0xba, 0x79, 0x8c, 0xaf, + 0x70, 0xf3, 0x85, 0xc2, 0xb1, 0x27, 0xa1, 0xf4, 0xae, 0xc3, 0x4d, 0xd5, + 0x55, 0x3c, 0xbb, 0x7b, 0x87, 0x7f, 0x98, 0x61, 0x00, 0x5d, 0xd9, 0xcf, + 0xb8, 0xad, 0xa9, 0xe3, 0xe4, 0xea, 0xb8, 0xca, 0x36, 0x42, 0x74, 0xf4, + 0xba, 0x66, 0xc5, 0x38, 0x53, 0x46, 0x0f, 0x20, 0x82, 0x3d, 0x45, 0x38, + 0x0a, 0xf4, 0xaf, 0x7d, 0x51, 0x88, 0xe0, 0x29, 0xc0, 0x52, 0x01, 0x4f, + 0xc5, 0x26, 0x31, 0x29, 0xc2, 0x93, 0x06, 0x82, 0x76, 0x8c, 0xb1, 0xc0, + 0xf7, 0xa9, 0x63, 0x1e, 0x29, 0xe2, 0xa3, 0xde, 0x8b, 0x22, 0xc6, 0xce, + 0xa1, 0xd8, 0x64, 0x29, 0x3c, 0x9a, 0x0d, 0xd5, 0xaa, 0x92, 0xa6, 0xe2, + 0x20, 0xe0, 0xe0, 0xa9, 0x71, 0xc5, 0x43, 0x9c, 0x7b, 0x94, 0x93, 0x26, + 0x02, 0x9c, 0x05, 0x20, 0x06, 0x9c, 0x01, 0xa4, 0x31, 0x40, 0xa7, 0x0a, + 0x68, 0xa5, 0xa4, 0x31, 0x68, 0xa4, 0xa5, 0xa4, 0x02, 0x1c, 0xf6, 0x35, + 0xc9, 0x78, 0xf2, 0x1d, 0x46, 0xe3, 0x44, 0x6b, 0x7d, 0x3d, 0x1d, 0xdd, + 0x8e, 0x5d, 0x23, 0xfb, 0xcc, 0x3d, 0x01, 0xfa, 0xd7, 0x58, 0xe7, 0x6a, + 0x16, 0xf4, 0x15, 0xc0, 0x0d, 0x57, 0x58, 0xd5, 0xb5, 0x55, 0x9a, 0xc6, + 0xfe, 0x3b, 0x5b, 0x15, 0x90, 0xa3, 0x19, 0xa2, 0x18, 0xce, 0x70, 0x46, + 0x49, 0xe4, 0xfd, 0x29, 0xda, 0xe8, 0x96, 0xcf, 0x16, 0xb8, 0x87, 0x52, + 0x8e, 0xfe, 0x48, 0xf5, 0x46, 0x9a, 0xd7, 0xcb, 0x5d, 0xc5, 0x65, 0x04, + 0x10, 0x4f, 0x4a, 0xd2, 0xb5, 0xd7, 0x66, 0x93, 0x48, 0x0d, 0x36, 0xb4, + 0x01, 0xb4, 0x20, 0x25, 0xb4, 0xf9, 0x25, 0xc6, 0x78, 0xdb, 0xc7, 0x6a, + 0xd1, 0xf8, 0x99, 0x77, 0x0d, 0xb5, 0xec, 0xf6, 0x31, 0x5e, 0xb5, 0xe4, + 0xd2, 0x95, 0x96, 0x79, 0x09, 0x18, 0x38, 0xfb, 0xa0, 0x60, 0xe3, 0x8a, + 0xf3, 0xe6, 0x88, 0x32, 0x86, 0x59, 0x50, 0x74, 0x25, 0x79, 0x26, 0xb8, + 0xe4, 0x94, 0x25, 0x64, 0x33, 0x4b, 0xed, 0x32, 0x5c, 0x49, 0x37, 0x94, + 0xe4, 0x6d, 0x56, 0x7c, 0xe7, 0x35, 0xa1, 0xe1, 0xef, 0x12, 0x18, 0x35, + 0x28, 0x5e, 0xf6, 0xe2, 0x58, 0xe0, 0x03, 0x0c, 0xe8, 0x9b, 0xcf, 0x1d, + 0x05, 0x60, 0xa4, 0x11, 0xb5, 0xa4, 0xac, 0x27, 0x2a, 0xe3, 0x90, 0x87, + 0x80, 0xc3, 0xbd, 0x43, 0x13, 0x06, 0x93, 0x62, 0x9f, 0xbc, 0x30, 0x06, + 0x33, 0x8a, 0xc9, 0xd9, 0x5a, 0x43, 0x3d, 0x36, 0x6f, 0x89, 0x2f, 0x0c, + 0xb1, 0xc9, 0xa1, 0xc0, 0x2c, 0x95, 0x19, 0x95, 0x94, 0x8d, 0xdb, 0xc1, + 0xfe, 0x22, 0xbd, 0x05, 0x7a, 0x9f, 0x83, 0x6e, 0xb5, 0x6b, 0xeb, 0x28, + 0xaf, 0x2f, 0xf5, 0x48, 0x2e, 0xa0, 0x91, 0x03, 0xa8, 0x8b, 0x01, 0x81, + 0xf4, 0x23, 0x15, 0xf3, 0x4d, 0xab, 0xcf, 0x6e, 0x65, 0x41, 0x19, 0xc3, + 0xae, 0xd2, 0x58, 0x02, 0x48, 0xfe, 0x95, 0xd5, 0x69, 0x37, 0xd6, 0xf6, + 0xda, 0x5c, 0x97, 0x56, 0xba, 0x84, 0x96, 0xb7, 0xb0, 0xc5, 0xbd, 0x90, + 0xbe, 0x16, 0x4e, 0x71, 0x81, 0xef, 0x5b, 0x53, 0xab, 0xcc, 0xc1, 0xab, + 0x1f, 0x4c, 0xcc, 0xbb, 0xe1, 0x60, 0xac, 0x54, 0x91, 0xc1, 0x1d, 0xab, + 0xc9, 0xbc, 0x5b, 0x77, 0x35, 0x85, 0xfb, 0x43, 0x77, 0x34, 0xee, 0x24, + 0xc6, 0xc6, 0xce, 0x50, 0x1e, 0xf5, 0xd2, 0x78, 0x57, 0xc5, 0xeb, 0x75, + 0xa5, 0x5a, 0x4b, 0x72, 0x24, 0x91, 0xa5, 0x8f, 0xe7, 0xc3, 0x89, 0x19, + 0x48, 0xc0, 0xe8, 0x39, 0xe6, 0xad, 0xeb, 0x97, 0x1a, 0x5c, 0xea, 0x8d, + 0x7b, 0x04, 0x43, 0xe5, 0xcf, 0x93, 0x70, 0x0e, 0x18, 0x67, 0xd0, 0x74, + 0x3e, 0x86, 0xb6, 0xbe, 0x82, 0x95, 0x9e, 0xa7, 0x9a, 0x7f, 0x65, 0x69, + 0x3a, 0x96, 0x89, 0x2e, 0xa1, 0x36, 0xa1, 0x2b, 0xdd, 0x37, 0xcb, 0x2c, + 0x70, 0xc1, 0x90, 0xaa, 0x3a, 0x64, 0x63, 0xda, 0xb0, 0x34, 0x9f, 0x09, + 0x6a, 0xfa, 0x94, 0x7e, 0x7e, 0x9d, 0x01, 0x96, 0xda, 0x39, 0x70, 0xb2, + 0x9c, 0x0e, 0x73, 0x5d, 0xc6, 0xae, 0xfe, 0x0f, 0xb6, 0x52, 0xfa, 0x6d, + 0xac, 0xf1, 0xdc, 0x3a, 0xec, 0xf2, 0x11, 0x8a, 0x61, 0xb3, 0xdc, 0x1a, + 0xdd, 0xd3, 0xae, 0xec, 0xf4, 0x7d, 0x36, 0x34, 0xd2, 0xec, 0xae, 0xe2, + 0x17, 0xc4, 0x46, 0x61, 0x39, 0xd8, 0x8e, 0x7b, 0x8d, 0xdd, 0x09, 0x1f, + 0xd2, 0xb2, 0x92, 0x4c, 0xa4, 0x8c, 0x4b, 0x1b, 0x3f, 0x11, 0x35, 0xdf, + 0xd9, 0xae, 0xaf, 0xae, 0x44, 0x31, 0x7c, 0x8d, 0x12, 0x1c, 0x17, 0x3d, + 0x71, 0x8e, 0xf5, 0xd2, 0xe9, 0xbe, 0x0e, 0x66, 0x8a, 0xf8, 0x4d, 0x71, + 0x2b, 0xc5, 0x76, 0xe7, 0xcf, 0x85, 0xd4, 0x72, 0xa0, 0xe4, 0x05, 0xf4, + 0x3d, 0x2b, 0xa5, 0x4d, 0x32, 0x7b, 0x4b, 0x66, 0x7b, 0x69, 0x95, 0xee, + 0x49, 0xdd, 0xba, 0x55, 0x04, 0x9f, 0x6c, 0x8c, 0x57, 0x2f, 0x37, 0x88, + 0x6e, 0x99, 0xa7, 0x84, 0xdc, 0x24, 0x1a, 0xbc, 0x52, 0x10, 0x22, 0x56, + 0xc4, 0x72, 0x85, 0x3d, 0x31, 0x93, 0xc9, 0xfe, 0x94, 0xac, 0x96, 0xe5, + 0xa3, 0xce, 0x35, 0xdf, 0x06, 0x6b, 0x16, 0x87, 0x50, 0x9a, 0xc2, 0xd2, + 0xe6, 0x3b, 0x24, 0x97, 0x6b, 0x03, 0x28, 0x27, 0x07, 0x04, 0x82, 0x47, + 0x51, 0x9c, 0x57, 0x39, 0xac, 0x78, 0x77, 0x5f, 0x86, 0xeb, 0x1a, 0xa5, + 0x9c, 0xef, 0x20, 0x0a, 0x40, 0x28, 0x4b, 0x6d, 0xc1, 0xf4, 0xe3, 0x15, + 0xea, 0xfa, 0xbf, 0x89, 0x35, 0xab, 0xed, 0x36, 0xde, 0x15, 0xb3, 0xf2, + 0x12, 0x79, 0x44, 0x53, 0xcb, 0xe5, 0x9d, 0x8e, 0xac, 0xc3, 0x95, 0x24, + 0x75, 0x18, 0xad, 0x7f, 0x19, 0x78, 0x9e, 0x3d, 0x2a, 0x08, 0xe2, 0xb4, + 0xb6, 0x7b, 0x8b, 0xd6, 0x84, 0xa8, 0x98, 0xe7, 0x08, 0x8c, 0x39, 0x27, + 0x1d, 0xf8, 0x07, 0x9a, 0x86, 0x93, 0xd6, 0xe5, 0x24, 0x78, 0x7f, 0x85, + 0x3c, 0x17, 0x71, 0xe2, 0xdd, 0x42, 0x58, 0xa2, 0xb8, 0x8e, 0xd6, 0xde, + 0x3f, 0x98, 0xb4, 0xa7, 0x04, 0x2e, 0x79, 0xc0, 0xef, 0x5d, 0x1e, 0xbb, + 0xf0, 0x92, 0xe7, 0x40, 0xb6, 0x7b, 0xa4, 0xbf, 0x5b, 0xc8, 0xd1, 0x19, + 0x8c, 0x71, 0x8c, 0x49, 0xd3, 0xa8, 0x07, 0xa8, 0xcd, 0x6c, 0xe9, 0xde, + 0x00, 0xd5, 0xf5, 0xfd, 0x0d, 0x24, 0x87, 0x51, 0x10, 0xc1, 0x1c, 0xcf, + 0xe5, 0x29, 0xca, 0x92, 0x33, 0xd8, 0x8e, 0xc7, 0x9f, 0x5a, 0xe6, 0x35, + 0x7b, 0x67, 0xd2, 0x74, 0xcd, 0xd7, 0xfa, 0x94, 0xf2, 0xc9, 0x0b, 0x9b, + 0x78, 0xe2, 0x32, 0x30, 0x7c, 0x13, 0x96, 0x3c, 0xf0, 0x47, 0x5e, 0xf4, + 0xb4, 0x61, 0xc9, 0x63, 0x8a, 0xb9, 0xb6, 0x92, 0x0b, 0x58, 0xee, 0x89, + 0xf9, 0x1c, 0xf0, 0x3b, 0xe6, 0xae, 0xda, 0x5d, 0xdc, 0x48, 0x63, 0x2a, + 0xab, 0x70, 0xc4, 0x60, 0x70, 0x72, 0x3b, 0xfe, 0x35, 0x79, 0x6d, 0xf4, + 0xdd, 0x42, 0xda, 0x77, 0xb9, 0x9a, 0xe2, 0x20, 0x5c, 0x08, 0x8a, 0xa0, + 0x08, 0x00, 0x07, 0xef, 0x01, 0xdf, 0xa5, 0x32, 0xf3, 0x47, 0xb2, 0xd2, + 0xd2, 0xdd, 0xed, 0x75, 0x48, 0x6e, 0x99, 0xc9, 0x27, 0x60, 0x3f, 0x2f, + 0xa5, 0x52, 0xd3, 0x63, 0x26, 0x84, 0xb6, 0xd2, 0xee, 0xb5, 0x0d, 0x58, + 0x44, 0x13, 0xcb, 0x92, 0x42, 0x38, 0xc6, 0x07, 0x22, 0xbb, 0xdd, 0x27, + 0xe1, 0xbe, 0xad, 0x75, 0x67, 0x6f, 0x74, 0xb2, 0x45, 0x24, 0x32, 0x37, + 0x20, 0x36, 0x0a, 0x80, 0x70, 0x78, 0x35, 0xcf, 0x58, 0x78, 0x86, 0xe9, + 0xad, 0xd4, 0x47, 0x0f, 0x99, 0xa8, 0x79, 0x8a, 0x16, 0xe0, 0x1e, 0x76, + 0x81, 0x80, 0x00, 0xaf, 0x4e, 0xf8, 0x79, 0xaf, 0x5f, 0x5c, 0xab, 0x59, + 0x5d, 0xe7, 0x6c, 0x79, 0x38, 0xc0, 0xf9, 0x72, 0x7f, 0xfa, 0xf5, 0xac, + 0x52, 0x21, 0x9d, 0x1f, 0x87, 0xbc, 0x3d, 0x6f, 0xa4, 0xc7, 0x24, 0x65, + 0xb7, 0xb1, 0x62, 0x71, 0xd8, 0x0f, 0xeb, 0x5d, 0x1a, 0xa0, 0x45, 0xc2, + 0x8a, 0x8b, 0xe5, 0x12, 0x64, 0x60, 0xfb, 0xd4, 0xa1, 0x81, 0x02, 0xb5, + 0x1c, 0x6c, 0x87, 0x20, 0xc2, 0xd3, 0xa9, 0x01, 0xa7, 0x75, 0xa9, 0x34, + 0x0a, 0x69, 0xa7, 0x1e, 0x29, 0xa4, 0xd0, 0x02, 0x53, 0x49, 0xa0, 0xd2, + 0x53, 0x10, 0x52, 0x62, 0x8a, 0x4a, 0x62, 0x13, 0x14, 0x86, 0x9d, 0x4d, + 0xaa, 0x10, 0x86, 0x9a, 0x69, 0xc6, 0x9a, 0x4d, 0x31, 0x08, 0x69, 0xa6, + 0x94, 0xd2, 0x1a, 0x68, 0x43, 0x4d, 0x34, 0xd3, 0x8d, 0x34, 0xd5, 0x08, + 0x69, 0xa6, 0x9a, 0x71, 0xa4, 0xc1, 0xf4, 0xaa, 0x10, 0xc3, 0x48, 0x69, + 0xd4, 0xd3, 0x4c, 0x06, 0xd2, 0x1a, 0x53, 0x48, 0x6a, 0x84, 0x30, 0xd3, + 0x4d, 0x3c, 0xd3, 0x4d, 0x52, 0x10, 0xc3, 0x48, 0x69, 0xc6, 0x90, 0xd3, + 0x10, 0xc3, 0x4d, 0x3d, 0x29, 0xe4, 0x53, 0x48, 0xaa, 0x44, 0x86, 0x28, + 0xc5, 0x3b, 0x14, 0x98, 0xa0, 0x06, 0x62, 0x8c, 0x53, 0xb1, 0x49, 0x8a, + 0x77, 0x10, 0xc2, 0x29, 0x31, 0x4f, 0xa4, 0x22, 0x98, 0x86, 0x1a, 0x6e, + 0x29, 0xe4, 0x61, 0x4b, 0x60, 0x9c, 0x7a, 0x0a, 0xcc, 0xd4, 0xb5, 0x39, + 0x6c, 0xd9, 0xa3, 0x82, 0x02, 0xc5, 0x46, 0x59, 0xd8, 0x70, 0x2b, 0x3a, + 0xb5, 0xa3, 0x49, 0x5d, 0x8e, 0x31, 0x72, 0x76, 0x44, 0x97, 0x5a, 0x95, + 0xbd, 0xb3, 0xb4, 0x6c, 0x49, 0x75, 0x5c, 0xf1, 0xd2, 0xb9, 0xf9, 0xfc, + 0x41, 0x24, 0xb3, 0x7d, 0x9b, 0x7a, 0xa8, 0x67, 0xfb, 0xca, 0x71, 0xc7, + 0xa6, 0x69, 0x63, 0xb6, 0x37, 0xd7, 0x11, 0x1b, 0x83, 0xb1, 0x66, 0x1b, + 0x91, 0x95, 0xba, 0xe3, 0xa8, 0xac, 0x9d, 0x4a, 0xd6, 0x3b, 0x4b, 0xd9, + 0x21, 0x82, 0xea, 0x33, 0x19, 0x19, 0x2a, 0xc3, 0x9c, 0x83, 0x5e, 0x45, + 0x5a, 0xb8, 0x89, 0xae, 0x69, 0x3b, 0x44, 0xe8, 0x8c, 0x60, 0x9d, 0x96, + 0xe5, 0xfb, 0x36, 0x96, 0x5d, 0x45, 0x19, 0xdb, 0xf7, 0x5b, 0xb1, 0x96, + 0x39, 0xe3, 0xeb, 0x5d, 0x5e, 0xf5, 0x8c, 0xaa, 0x60, 0xe3, 0x1c, 0x7b, + 0x57, 0x21, 0x60, 0xc9, 0x76, 0x21, 0xb7, 0x59, 0x37, 0x48, 0xab, 0xcb, + 0x2a, 0xe0, 0x8e, 0x7a, 0x56, 0xcd, 0xe2, 0x8b, 0x2d, 0x38, 0x35, 0xcc, + 0xd2, 0x4b, 0x8e, 0x07, 0xcd, 0x83, 0xcf, 0x6e, 0xb5, 0xd9, 0x84, 0xb4, + 0x62, 0xe4, 0xbe, 0xf3, 0x3a, 0xaa, 0xed, 0x26, 0x69, 0x9b, 0xbb, 0x70, + 0xe1, 0x0c, 0xe9, 0xb8, 0xf6, 0xcd, 0x56, 0xd4, 0xa6, 0x0b, 0x11, 0x89, + 0x64, 0x21, 0xfe, 0xf1, 0x03, 0xae, 0x3b, 0x56, 0x05, 0xce, 0xa9, 0x6f, + 0x2f, 0xee, 0xe4, 0x41, 0x1a, 0x15, 0xfd, 0xd8, 0x03, 0x38, 0xfa, 0xd6, + 0x4d, 0xd5, 0xdc, 0x90, 0x49, 0xbd, 0x8b, 0x88, 0xc9, 0xe3, 0x70, 0x24, + 0x30, 0xed, 0x59, 0xd5, 0xc7, 0xbb, 0x38, 0xa5, 0x7d, 0x47, 0x1a, 0x3d, + 0x4d, 0x9d, 0x42, 0xf1, 0x25, 0x97, 0x7c, 0xb6, 0x85, 0x5d, 0x17, 0x6e, + 0x5b, 0x3d, 0x0f, 0x43, 0x8a, 0xc4, 0xf3, 0x8c, 0xcc, 0x30, 0xdf, 0x27, + 0x7c, 0x9e, 0x94, 0xd9, 0xb5, 0x27, 0xba, 0x60, 0xd2, 0x3e, 0x31, 0x85, + 0x03, 0x6e, 0x38, 0xaa, 0xed, 0x1c, 0x71, 0xc2, 0xfe, 0x6b, 0x93, 0xbc, + 0xfc, 0xb8, 0x1d, 0x2b, 0xc7, 0xc5, 0xd7, 0x75, 0x66, 0x75, 0x53, 0x87, + 0x2a, 0x1c, 0xd3, 0x2c, 0x5c, 0x17, 0x5c, 0x12, 0x41, 0xe3, 0x93, 0x54, + 0x2e, 0x6f, 0x63, 0x87, 0x92, 0xc4, 0x82, 0x73, 0xc0, 0xe2, 0xaa, 0x5c, + 0x4c, 0xcb, 0xb2, 0x3d, 0xc3, 0x69, 0xef, 0x9e, 0x69, 0xb7, 0x36, 0xe9, + 0x0a, 0xa8, 0x0e, 0x65, 0x18, 0xce, 0x2b, 0x18, 0x53, 0xe6, 0x65, 0x37, + 0x62, 0x2b, 0xcb, 0xb8, 0x88, 0x4d, 0xaa, 0x71, 0xd8, 0xb7, 0x71, 0x48, + 0xb3, 0x85, 0x89, 0x6e, 0x19, 0x72, 0x08, 0x2b, 0xb3, 0x3c, 0xd3, 0xee, + 0x64, 0x83, 0xec, 0xa8, 0x8b, 0x12, 0x1c, 0x0c, 0x8c, 0x73, 0x54, 0xa2, + 0x48, 0x5d, 0x64, 0x2d, 0x74, 0xaa, 0xca, 0x01, 0xc1, 0xe7, 0x77, 0x35, + 0xd3, 0x1a, 0x76, 0x95, 0xa2, 0x4b, 0x7a, 0x6a, 0x36, 0x5b, 0xcd, 0xa4, + 0x6c, 0x1b, 0x5f, 0x39, 0xcf, 0xf4, 0xad, 0x4d, 0x33, 0x5d, 0xb8, 0xb6, + 0x2d, 0x0c, 0xbb, 0xa5, 0x47, 0x00, 0x28, 0x0f, 0x82, 0x31, 0x58, 0x57, + 0x01, 0x00, 0x8b, 0x6a, 0x1d, 0xcc, 0x72, 0x54, 0xd2, 0xc6, 0x8f, 0x3b, + 0x9d, 0xbc, 0x6d, 0x3f, 0x30, 0xab, 0x85, 0x69, 0x53, 0x7a, 0x04, 0xa2, + 0x9a, 0x3b, 0x64, 0xd1, 0x21, 0xba, 0x44, 0x78, 0x9d, 0x8b, 0x48, 0xc7, + 0x71, 0x63, 0xca, 0xe6, 0xab, 0x4b, 0xa7, 0x2e, 0x9f, 0xba, 0x37, 0xb9, + 0x49, 0x37, 0xa9, 0xc0, 0x43, 0x9c, 0x2f, 0xbf, 0xa5, 0x66, 0x59, 0x6b, + 0x97, 0x96, 0x08, 0xbe, 0x4c, 0xce, 0x00, 0x52, 0x07, 0x35, 0x62, 0x4b, + 0xb9, 0x35, 0x28, 0x5e, 0x49, 0x15, 0x16, 0x52, 0x70, 0xdb, 0x40, 0x19, + 0xa7, 0x5a, 0xb4, 0x5d, 0x37, 0xfc, 0xc4, 0xa8, 0xb4, 0xf4, 0xd8, 0xce, + 0x9a, 0x1b, 0x78, 0x5c, 0x65, 0x89, 0x2d, 0xd0, 0x82, 0x71, 0x9a, 0xb1, + 0x69, 0x66, 0xb6, 0x33, 0xb1, 0xb9, 0xf3, 0x12, 0x57, 0xe0, 0x2b, 0x0c, + 0x71, 0x50, 0xf9, 0xd1, 0xc2, 0xe6, 0x07, 0x60, 0xca, 0x78, 0x18, 0x39, + 0x35, 0x3c, 0xad, 0x32, 0xa3, 0x06, 0x2f, 0x20, 0x1c, 0x83, 0x2f, 0x3c, + 0x7b, 0x1a, 0xe0, 0x8c, 0xed, 0x07, 0x14, 0xdf, 0x37, 0x46, 0x53, 0x16, + 0xe6, 0x58, 0xbe, 0xd0, 0x21, 0x91, 0xc6, 0x1b, 0xf9, 0x7d, 0x69, 0x7e, + 0xcb, 0x0d, 0x84, 0x5e, 0x6c, 0x8e, 0x1c, 0x1c, 0xed, 0xdc, 0x32, 0x05, + 0x65, 0xc0, 0xd3, 0xc9, 0x23, 0x4a, 0x22, 0x59, 0x22, 0x51, 0x92, 0x33, + 0xc8, 0xf4, 0xab, 0x06, 0xee, 0xda, 0x78, 0x8a, 0xdd, 0x1d, 0x80, 0x1e, + 0x9d, 0x0f, 0xeb, 0x51, 0x2a, 0x53, 0x51, 0x5d, 0x81, 0x58, 0x9a, 0xd3, + 0x50, 0x82, 0x4b, 0xd3, 0xb6, 0x5f, 0x28, 0xb7, 0x7f, 0x5a, 0xbb, 0x21, + 0x2e, 0xec, 0x5a, 0x68, 0x95, 0x31, 0x90, 0x77, 0x70, 0x4d, 0x60, 0x18, + 0x20, 0x92, 0x41, 0x15, 0xb3, 0x07, 0xc9, 0xc8, 0x6d, 0xb9, 0xe2, 0xaf, + 0xe9, 0xfa, 0x73, 0xcb, 0x1a, 0xc7, 0x2c, 0x0d, 0xc1, 0xe4, 0x2b, 0x10, + 0x0f, 0xe7, 0x54, 0xe0, 0x92, 0xbd, 0xf7, 0x19, 0xaa, 0xa5, 0xe7, 0xb6, + 0xf2, 0x12, 0x45, 0x3c, 0x64, 0xba, 0x63, 0x15, 0x0d, 0xbe, 0x9f, 0x04, + 0x2c, 0x24, 0x59, 0x23, 0x39, 0x38, 0x39, 0xf5, 0xa8, 0x26, 0xd3, 0xe3, + 0xb4, 0xcc, 0x96, 0xd7, 0x12, 0x44, 0xac, 0x40, 0x28, 0x49, 0x3b, 0x69, + 0xda, 0x36, 0x89, 0x26, 0xb5, 0x75, 0x2d, 0xb4, 0x77, 0xc3, 0xe4, 0x6c, + 0x86, 0x07, 0x1f, 0xa5, 0x6b, 0x4e, 0x94, 0xeb, 0xbe, 0x58, 0xb1, 0x36, + 0xa2, 0xae, 0xcd, 0x23, 0x6f, 0x6c, 0x1c, 0x03, 0x22, 0x34, 0x5d, 0x55, + 0x47, 0x50, 0x7a, 0xe3, 0xda, 0xac, 0x43, 0xe4, 0x29, 0xc3, 0xe0, 0x05, + 0xe0, 0x10, 0x73, 0x48, 0xfe, 0x10, 0xd4, 0xe1, 0xd4, 0xe0, 0xb6, 0xfb, + 0x44, 0x2f, 0x01, 0x5d, 0xdb, 0xd8, 0x91, 0xdf, 0x91, 0x4d, 0xbc, 0xd1, + 0x27, 0xd3, 0x6e, 0x64, 0x56, 0x99, 0x0a, 0x29, 0x04, 0x21, 0x3f, 0x78, + 0x7b, 0x57, 0x54, 0xb0, 0xb8, 0x8a, 0x51, 0xe6, 0x93, 0x68, 0x95, 0x38, + 0xc9, 0xd9, 0x0e, 0xb8, 0x9b, 0xc9, 0x99, 0x65, 0xca, 0x6f, 0x56, 0x3c, + 0x30, 0x1c, 0x0a, 0x86, 0x6d, 0x42, 0xde, 0x31, 0xb7, 0x90, 0xfe, 0x9c, + 0x90, 0x3e, 0x95, 0x99, 0x7b, 0x2d, 0xc5, 0xdb, 0xe4, 0xa3, 0xac, 0x5d, + 0x0f, 0x39, 0xe9, 0x48, 0xd7, 0x8a, 0xfa, 0x7b, 0xc9, 0x1a, 0x91, 0x28, + 0xf9, 0x56, 0x2c, 0x12, 0xe4, 0x0e, 0xff, 0x00, 0x4a, 0xe7, 0x50, 0xab, + 0x52, 0xe9, 0x3b, 0x97, 0x74, 0x8d, 0x68, 0x65, 0x8a, 0x34, 0x92, 0x45, + 0x62, 0x8e, 0xeb, 0xf3, 0x1c, 0x63, 0x03, 0xd6, 0xa1, 0x8a, 0x79, 0xa7, + 0x45, 0x90, 0x3a, 0x95, 0xcf, 0x4e, 0xb9, 0xac, 0x41, 0x76, 0x6f, 0x36, + 0xae, 0xfd, 0xae, 0x54, 0xab, 0x07, 0x38, 0x04, 0xd4, 0x96, 0xd7, 0x0d, + 0x1b, 0x88, 0x7c, 0xa5, 0x50, 0xbd, 0x48, 0x6e, 0xb5, 0x94, 0xf9, 0x9e, + 0x9d, 0x8a, 0x5b, 0x9b, 0x6d, 0x12, 0xab, 0x6f, 0xcb, 0x29, 0xdb, 0xc2, + 0xe3, 0x22, 0xb4, 0xac, 0xa3, 0x6b, 0x98, 0x95, 0x97, 0xe5, 0x8d, 0x46, + 0x08, 0x07, 0x9c, 0xd7, 0x3d, 0x06, 0xa1, 0xe7, 0x5d, 0x32, 0x05, 0x26, + 0x51, 0xc0, 0x23, 0xbf, 0xd2, 0xba, 0x48, 0x26, 0x6b, 0x6b, 0x53, 0xbc, + 0x3c, 0x61, 0x86, 0xf6, 0xca, 0x60, 0x91, 0x5d, 0x18, 0x58, 0xdd, 0xfb, + 0xe4, 0x4f, 0xc8, 0xaf, 0x1c, 0x57, 0x51, 0xe8, 0xbe, 0x62, 0xb0, 0x96, + 0x35, 0x62, 0x04, 0x4e, 0xdc, 0x83, 0xea, 0x2a, 0xaa, 0x24, 0x37, 0xb0, + 0xba, 0xcb, 0x10, 0x0c, 0x38, 0x6e, 0xdf, 0x4a, 0xc4, 0xbe, 0xd6, 0x66, + 0xb6, 0x0a, 0xa1, 0xb0, 0x4f, 0x41, 0x8e, 0x45, 0x55, 0x8b, 0x57, 0x99, + 0x18, 0xbf, 0xcc, 0x78, 0xc1, 0x3b, 0x73, 0xcd, 0x45, 0x7e, 0x7a, 0xd6, + 0x5d, 0x86, 0x92, 0x89, 0xd0, 0x7f, 0x67, 0xc3, 0x05, 0xbc, 0x82, 0x1f, + 0x2e, 0x23, 0xb7, 0xd7, 0x93, 0xf4, 0x35, 0x15, 0x9d, 0xda, 0x4b, 0x90, + 0xd7, 0x0a, 0x4c, 0x7c, 0x00, 0x78, 0x00, 0x7b, 0xd4, 0x36, 0xc4, 0xdc, + 0x71, 0x28, 0x67, 0x49, 0x00, 0xe8, 0x39, 0x5a, 0x6d, 0xc6, 0x81, 0x1a, + 0xdc, 0x66, 0x09, 0x87, 0x94, 0xc8, 0x18, 0x12, 0x38, 0x07, 0xe9, 0x4e, + 0x84, 0x26, 0x93, 0x6d, 0x84, 0x9a, 0x2f, 0xdf, 0x69, 0xd1, 0xc9, 0x36, + 0xe4, 0x64, 0xcb, 0x95, 0x8c, 0x18, 0xc8, 0xdb, 0x9f, 0x73, 0x55, 0xaf, + 0xec, 0x1a, 0xc2, 0xe8, 0x41, 0x23, 0x87, 0x2c, 0xb9, 0x62, 0xbd, 0xbe, + 0x95, 0x5e, 0xd3, 0x49, 0xbf, 0x90, 0x2c, 0x32, 0x0d, 0xca, 0xf2, 0x62, + 0x33, 0xdb, 0x3e, 0xd5, 0x7f, 0x51, 0x57, 0xb7, 0x99, 0x12, 0x55, 0x2a, + 0xd1, 0x29, 0xdc, 0xe7, 0x39, 0x72, 0x3a, 0x03, 0x5e, 0x85, 0x55, 0x19, + 0xc7, 0x9a, 0xd6, 0xd8, 0xce, 0x37, 0x4e, 0xd7, 0x21, 0x8a, 0xe8, 0xcd, + 0x70, 0xb1, 0x98, 0xe3, 0x91, 0x16, 0x3d, 0xaa, 0x23, 0xe3, 0xa7, 0x7a, + 0x4f, 0xde, 0x5a, 0x93, 0x34, 0xf1, 0xba, 0x2b, 0x36, 0xd0, 0x49, 0xe2, + 0xa3, 0xd2, 0x44, 0x2d, 0x36, 0xec, 0xaa, 0x15, 0x3d, 0x4f, 0x7c, 0xd5, + 0xed, 0x4e, 0xd9, 0x27, 0xd3, 0xa4, 0x9c, 0xdc, 0x2a, 0x95, 0x27, 0x08, + 0x7b, 0x7e, 0x15, 0xc7, 0x52, 0x1e, 0xd1, 0x3e, 0x65, 0xf9, 0x14, 0x9d, + 0x8a, 0x66, 0xf2, 0xdd, 0x0e, 0x51, 0x11, 0xa5, 0x73, 0x80, 0x73, 0xc5, + 0x12, 0x4d, 0x38, 0x64, 0x6e, 0x8a, 0x4e, 0x36, 0xf5, 0x39, 0xf6, 0xaa, + 0xf0, 0xc1, 0x0a, 0xd8, 0x96, 0x9a, 0x43, 0xb0, 0x00, 0x72, 0x13, 0xbf, + 0xd6, 0xaa, 0xac, 0xe8, 0xed, 0x1a, 0xf9, 0x8d, 0xb3, 0x78, 0xda, 0x5b, + 0xaf, 0xd6, 0xb0, 0x54, 0x23, 0x1d, 0x25, 0xb1, 0x77, 0xb9, 0xbb, 0x13, + 0xfd, 0xa2, 0x37, 0x86, 0x78, 0x09, 0x53, 0xcf, 0x00, 0xe2, 0xae, 0xd9, + 0x9b, 0x48, 0x21, 0x09, 0x1c, 0x66, 0x27, 0x53, 0xc9, 0xea, 0x4d, 0x6b, + 0x25, 0xd6, 0x80, 0xda, 0x7c, 0x4a, 0x65, 0x26, 0x6f, 0x44, 0x3c, 0x92, + 0x6a, 0x37, 0xb6, 0x86, 0x38, 0x3f, 0xd1, 0xd3, 0xce, 0xc7, 0xcc, 0x70, + 0x0f, 0x4f, 0x5a, 0xe9, 0x9e, 0x12, 0x30, 0x4e, 0x54, 0xde, 0x9f, 0x79, + 0x9a, 0x9d, 0xf7, 0x46, 0x9e, 0x95, 0xaa, 0xdf, 0x23, 0xac, 0x64, 0x91, + 0x6e, 0xb9, 0x03, 0x6a, 0x02, 0x73, 0xef, 0xc5, 0x74, 0x96, 0xb7, 0xb2, + 0xc9, 0x3f, 0x97, 0x35, 0xbb, 0x28, 0xdb, 0xc4, 0x80, 0x1d, 0xa4, 0xd7, + 0x39, 0xa6, 0xf8, 0x96, 0xde, 0x13, 0xe4, 0xc9, 0x0a, 0x46, 0xc4, 0xe0, + 0xb2, 0x9c, 0x0e, 0x3f, 0x9d, 0x75, 0x29, 0x2c, 0x72, 0x42, 0xb2, 0xc6, + 0xe1, 0xd1, 0x86, 0x41, 0x15, 0xe9, 0xe0, 0xdc, 0x65, 0x14, 0xa3, 0x3d, + 0x4c, 0x6a, 0x5d, 0x3d, 0x51, 0x5b, 0x56, 0x9d, 0xd6, 0xd4, 0xa4, 0x51, + 0x19, 0x5c, 0x9e, 0x50, 0x75, 0xc5, 0x79, 0xf6, 0xbb, 0x78, 0x8d, 0x09, + 0x4b, 0x9b, 0xc9, 0x12, 0x47, 0x90, 0x97, 0xb6, 0x04, 0x13, 0x81, 0xd3, + 0xe9, 0x5a, 0x7e, 0x27, 0xf1, 0x24, 0xb2, 0x4e, 0x6c, 0x74, 0xe9, 0x24, + 0x0c, 0xb9, 0x12, 0x3c, 0x6b, 0xf3, 0x03, 0xf5, 0xed, 0x5e, 0x73, 0x75, + 0x6c, 0xd3, 0xde, 0x3b, 0x4f, 0x76, 0xa1, 0xc8, 0xcb, 0x6e, 0x24, 0x92, + 0x7b, 0x8a, 0xac, 0x4c, 0xad, 0xf0, 0xa0, 0x82, 0xee, 0x49, 0x77, 0x79, + 0x13, 0x48, 0x89, 0x9f, 0x2e, 0x24, 0x04, 0x00, 0x07, 0x26, 0xa3, 0x5b, + 0xd7, 0x60, 0x3c, 0x92, 0x70, 0x07, 0x3c, 0xf4, 0xaa, 0x52, 0x45, 0x8d, + 0xaa, 0x5f, 0x7e, 0x3b, 0x01, 0x52, 0x40, 0xbe, 0x5b, 0x31, 0x03, 0x00, + 0x73, 0x8c, 0x57, 0x87, 0x52, 0x37, 0x7e, 0xf6, 0xac, 0xe8, 0x47, 0x43, + 0xa5, 0xdd, 0xcb, 0x21, 0xce, 0xe6, 0x3f, 0x2e, 0x78, 0xf6, 0xae, 0xd2, + 0xc5, 0xd2, 0xe2, 0xdd, 0x12, 0x78, 0x44, 0x80, 0x90, 0x3e, 0x5e, 0x17, + 0x9f, 0x53, 0xd2, 0xb8, 0xad, 0x28, 0x5d, 0xb4, 0xa8, 0xb6, 0xf0, 0x28, + 0x70, 0xbb, 0x89, 0x0d, 0xdb, 0xbd, 0x75, 0xb1, 0x58, 0xc9, 0x6f, 0xa2, + 0xdd, 0x5f, 0x4f, 0x34, 0x52, 0x46, 0xa8, 0x70, 0x11, 0xb1, 0x86, 0x1d, + 0x38, 0xaa, 0xc3, 0xd3, 0xb4, 0xae, 0xa2, 0x12, 0x7a, 0x6e, 0x4f, 0x05, + 0x84, 0x4b, 0xa8, 0xcb, 0x03, 0x18, 0x22, 0xb6, 0xdd, 0xfe, 0xad, 0x9c, + 0xe1, 0xf0, 0x7d, 0x6b, 0x62, 0xc6, 0xff, 0x00, 0x4e, 0xd3, 0xb7, 0xc6, + 0xd1, 0xbb, 0x48, 0x8e, 0x42, 0xac, 0x7f, 0x32, 0x0e, 0x7f, 0x84, 0x9a, + 0xf3, 0x91, 0xa9, 0xcf, 0x2d, 0xca, 0x9b, 0xa9, 0x9d, 0x62, 0x40, 0x30, + 0x17, 0x8c, 0xd7, 0x5f, 0xa4, 0x6b, 0xf6, 0x2d, 0x70, 0x37, 0xd8, 0xc6, + 0xb1, 0x90, 0x17, 0xf7, 0x83, 0x7f, 0xe3, 0x5b, 0x42, 0xb7, 0xbc, 0xec, + 0xd2, 0xfc, 0x49, 0x71, 0x3b, 0xbb, 0x6b, 0x88, 0xee, 0x53, 0x72, 0xa4, + 0x8a, 0x07, 0x67, 0x5c, 0x7f, 0xf5, 0xaa, 0xc0, 0xdb, 0x9e, 0x95, 0x9d, + 0xa6, 0xdf, 0x35, 0xf1, 0x60, 0xd6, 0xe6, 0x25, 0x5e, 0x15, 0xf3, 0xc3, + 0x7d, 0x05, 0x68, 0x01, 0x8a, 0xf6, 0x28, 0xcd, 0x4e, 0x17, 0xbd, 0xff, + 0x00, 0x03, 0x07, 0xa3, 0x27, 0x0a, 0xa4, 0x70, 0x68, 0xda, 0x33, 0xd4, + 0x54, 0x42, 0x9f, 0x8c, 0x0e, 0x6a, 0xec, 0x3b, 0x8b, 0x70, 0x1a, 0x3b, + 0x59, 0x5e, 0x35, 0xde, 0xea, 0x84, 0xaa, 0x83, 0xd4, 0xe3, 0xa5, 0x79, + 0x7e, 0xad, 0x7b, 0xe2, 0x20, 0x2d, 0xe7, 0xba, 0x47, 0xfb, 0x3c, 0x8b, + 0xba, 0x3c, 0x93, 0x8f, 0x5f, 0xce, 0xbd, 0x3f, 0x79, 0x1f, 0x4a, 0xf2, + 0xef, 0x19, 0x78, 0xa2, 0x6b, 0xad, 0x46, 0x4d, 0x11, 0x23, 0xf2, 0xa2, + 0x8c, 0x86, 0x12, 0x8e, 0x4b, 0x02, 0x3b, 0x7a, 0x57, 0x2e, 0x26, 0x17, + 0x8e, 0xac, 0xb8, 0xbd, 0x4c, 0x98, 0xb5, 0xeb, 0xeb, 0xb2, 0xcd, 0xf6, + 0xb9, 0x11, 0xe3, 0xe4, 0x3a, 0xb6, 0x59, 0x71, 0x9c, 0x0a, 0xd1, 0xb5, + 0x87, 0x52, 0xbf, 0x6f, 0x3e, 0x29, 0x3c, 0xc9, 0x62, 0x5f, 0x36, 0x52, + 0x0e, 0x49, 0x1c, 0x72, 0x6b, 0x9a, 0xd3, 0xa7, 0xb2, 0xb3, 0x37, 0x11, + 0x4a, 0x8c, 0x66, 0xdb, 0x84, 0x6c, 0xe3, 0x0d, 0x9e, 0xe3, 0xe9, 0x9a, + 0xf4, 0x5f, 0x0c, 0xe9, 0x50, 0xde, 0x5a, 0x0b, 0x8b, 0x1b, 0x87, 0x58, + 0xca, 0xed, 0x97, 0x9c, 0x6e, 0x3d, 0xc6, 0x3d, 0x2b, 0xcf, 0x8c, 0x1c, + 0x9a, 0x89, 0xad, 0xec, 0xae, 0x76, 0x9a, 0x5d, 0xcc, 0x57, 0x1a, 0x74, + 0x25, 0x24, 0x0c, 0xca, 0x83, 0x76, 0xee, 0x08, 0x35, 0x0e, 0xb5, 0xab, + 0x26, 0x95, 0xa7, 0xcb, 0x3e, 0x3c, 0xc9, 0x40, 0xc2, 0xc6, 0x3a, 0xe7, + 0xdf, 0xda, 0xb8, 0x9d, 0x42, 0x3d, 0x67, 0x49, 0x76, 0xbd, 0x7b, 0xb6, + 0x54, 0x2c, 0xc1, 0x21, 0x5c, 0xf2, 0x01, 0xe0, 0x62, 0xb0, 0x6e, 0xfc, + 0x5f, 0xa8, 0x6a, 0x3e, 0x6a, 0x4d, 0x00, 0x32, 0x42, 0xb9, 0x67, 0x1c, + 0x7e, 0x95, 0xd5, 0x2a, 0xb2, 0x84, 0x6d, 0x62, 0x2c, 0x99, 0xe9, 0x5a, + 0x45, 0xfd, 0xe0, 0x89, 0x0e, 0xad, 0x75, 0x69, 0x99, 0x57, 0x72, 0x79, + 0x63, 0x18, 0x3c, 0x71, 0x9e, 0x95, 0xba, 0x2b, 0xc4, 0x34, 0x4f, 0x10, + 0x29, 0xba, 0x59, 0xe4, 0x22, 0x42, 0x38, 0xf2, 0x5c, 0x9c, 0x57, 0xb0, + 0x68, 0xf7, 0xf0, 0x5f, 0xe9, 0xf0, 0xbc, 0x32, 0xa3, 0x90, 0x83, 0x78, + 0x56, 0xc9, 0x53, 0xe8, 0x68, 0xc3, 0xd6, 0xe7, 0x6e, 0x2c, 0x25, 0x1b, + 0x1a, 0x14, 0x71, 0x4b, 0xb4, 0xd4, 0x17, 0x77, 0x56, 0xf6, 0x36, 0xef, + 0x3d, 0xcc, 0xc9, 0x14, 0x48, 0x32, 0xce, 0xe7, 0x00, 0x57, 0x51, 0x24, + 0x77, 0xb7, 0x70, 0xdb, 0x45, 0x99, 0xe7, 0x8e, 0x28, 0xfb, 0x97, 0x38, + 0xaf, 0x35, 0xf1, 0x36, 0xb5, 0xe1, 0x4d, 0x0e, 0xd2, 0xe6, 0xee, 0x19, + 0xad, 0xef, 0xef, 0x5c, 0x87, 0x8a, 0xd0, 0x48, 0x5a, 0x32, 0xde, 0xa4, + 0x0e, 0x33, 0xd6, 0xb9, 0xef, 0x1b, 0xfc, 0x4f, 0x4d, 0x4a, 0xda, 0xe2, + 0xc2, 0xca, 0xde, 0x22, 0x9b, 0xf0, 0x93, 0xb7, 0xde, 0x00, 0x1e, 0xa3, + 0xeb, 0x5e, 0x4f, 0x2c, 0xa5, 0x98, 0xb8, 0x60, 0xd9, 0xef, 0x58, 0xce, + 0xba, 0xda, 0x22, 0xb1, 0x36, 0xb9, 0x7c, 0x75, 0x2d, 0x46, 0x6b, 0xc3, + 0x04, 0x56, 0xe6, 0x56, 0x2c, 0x52, 0x21, 0x85, 0x19, 0xf4, 0x15, 0x5e, + 0x17, 0x53, 0x19, 0x8e, 0x3d, 0xde, 0x71, 0x38, 0x51, 0xd8, 0x8a, 0x6c, + 0xf3, 0x96, 0x00, 0x4a, 0xa4, 0x8c, 0x71, 0x9a, 0x4b, 0x5b, 0x83, 0x6d, + 0x38, 0x9e, 0x29, 0x0a, 0x32, 0x8e, 0x0a, 0xf6, 0xae, 0x7b, 0xdf, 0xe2, + 0x1a, 0x27, 0xbb, 0xb3, 0xbb, 0xb3, 0x58, 0x5a, 0xe1, 0x36, 0x99, 0x97, + 0x7a, 0x80, 0x72, 0x40, 0xf7, 0x1d, 0xaa, 0xa8, 0x98, 0x29, 0xde, 0x33, + 0x9f, 0x50, 0x3a, 0x55, 0xcb, 0x0f, 0xed, 0x0b, 0xfd, 0x45, 0x12, 0xd4, + 0x4d, 0x35, 0xc4, 0x80, 0xa2, 0x88, 0x86, 0x59, 0xb3, 0x9c, 0x8f, 0xca, + 0x91, 0xad, 0x27, 0xb4, 0x79, 0x22, 0x92, 0x36, 0x8d, 0xe3, 0x62, 0xae, + 0xb2, 0x2f, 0xdd, 0x3e, 0x84, 0x51, 0x2e, 0x54, 0x01, 0x0d, 0xc8, 0x91, + 0xc3, 0x6e, 0x6c, 0xa8, 0x3d, 0xb3, 0x5d, 0x0f, 0x86, 0x6f, 0x6c, 0x64, + 0xba, 0x7b, 0x4b, 0xab, 0x68, 0x24, 0x7b, 0x82, 0x11, 0x5e, 0x7d, 0xc0, + 0x47, 0xc1, 0xc9, 0x1b, 0x4d, 0x64, 0x69, 0xe9, 0x26, 0x9d, 0x20, 0x9a, + 0xe6, 0xd0, 0xcd, 0x04, 0xa8, 0x42, 0x91, 0xfc, 0xc1, 0xed, 0xd2, 0xba, + 0xcd, 0x0b, 0xc2, 0x03, 0x55, 0xb6, 0x9a, 0xf6, 0x19, 0x14, 0xaa, 0xae, + 0xe5, 0x3d, 0x08, 0x63, 0xd3, 0x27, 0xa7, 0x15, 0x31, 0x8a, 0xe6, 0xba, + 0x03, 0x42, 0xc3, 0xc4, 0x4b, 0xa0, 0x8b, 0x61, 0x35, 0x9c, 0x51, 0xdd, + 0xdb, 0xca, 0xe1, 0x4e, 0xd6, 0x63, 0x22, 0xf6, 0xeb, 0xc6, 0x3d, 0x0d, + 0x58, 0x6f, 0x16, 0x6a, 0xcd, 0x7e, 0x97, 0x77, 0x1a, 0x6b, 0x48, 0xc2, + 0x26, 0xfb, 0xfb, 0xc6, 0x41, 0x18, 0xdd, 0xf8, 0x56, 0x1f, 0x8b, 0x34, + 0xcd, 0x43, 0x49, 0x92, 0xde, 0xd2, 0xe9, 0xda, 0x74, 0xb4, 0x8c, 0x15, + 0x93, 0x1b, 0x94, 0x96, 0x39, 0xc6, 0x7d, 0x3f, 0xc2, 0xb1, 0x25, 0xba, + 0xbd, 0xb9, 0x90, 0xc1, 0x2d, 0xcb, 0x28, 0x2a, 0x1c, 0x02, 0xe4, 0x0c, + 0x7a, 0x55, 0xb6, 0xef, 0xb8, 0x1d, 0x45, 0x9f, 0x8d, 0x2e, 0x7f, 0xb7, + 0x7e, 0xdb, 0x29, 0x83, 0xce, 0xd9, 0xb0, 0x3c, 0xd1, 0x6e, 0x0c, 0x7a, + 0x67, 0xa5, 0x4f, 0x73, 0xe3, 0xdd, 0x64, 0x5d, 0xa4, 0x93, 0x3a, 0xf9, + 0xed, 0x2a, 0x85, 0x8d, 0x90, 0x79, 0x61, 0x71, 0xb7, 0x38, 0xf5, 0xf7, + 0xc5, 0x71, 0xf6, 0xb7, 0x76, 0xc9, 0x71, 0x12, 0xde, 0x2c, 0xa6, 0x1d, + 0xc3, 0x71, 0x4c, 0xee, 0xc6, 0x4e, 0x71, 0xf9, 0xd7, 0x41, 0xa9, 0xea, + 0x56, 0x1a, 0xad, 0x8c, 0xb2, 0x5b, 0x58, 0x33, 0x45, 0x11, 0x0a, 0xd2, + 0xc8, 0x0a, 0xb0, 0x51, 0x9c, 0x0d, 0xd9, 0xc6, 0x48, 0xa6, 0xb6, 0xdc, + 0x76, 0x3a, 0xcb, 0x5f, 0x1f, 0xdc, 0xe8, 0x7a, 0x75, 0xf4, 0x37, 0x57, + 0x12, 0xcd, 0x70, 0xed, 0x8b, 0x5c, 0x4b, 0xb9, 0x15, 0x7b, 0xe3, 0x23, + 0xad, 0x71, 0x77, 0x9e, 0x31, 0x94, 0x5f, 0xbc, 0xd6, 0xb6, 0xc6, 0x29, + 0x49, 0x04, 0xb6, 0xec, 0x92, 0x71, 0xf3, 0x74, 0xf5, 0xe6, 0xad, 0xea, + 0x1e, 0x20, 0xf0, 0xfb, 0x78, 0x5a, 0x28, 0x2d, 0x34, 0x4c, 0x6a, 0x12, + 0x8d, 0x9e, 0x6b, 0x48, 0x0b, 0x28, 0x07, 0xa8, 0x03, 0xbf, 0x4a, 0xe7, + 0xad, 0xf5, 0x4b, 0x78, 0x6f, 0x6d, 0x16, 0xf6, 0xc5, 0x92, 0x1b, 0x79, + 0x32, 0xfb, 0x3e, 0x59, 0x18, 0x7d, 0x4d, 0x27, 0x2d, 0x46, 0x76, 0x4f, + 0xf1, 0x03, 0x56, 0xb8, 0xd2, 0x65, 0x6b, 0xc7, 0x91, 0x52, 0xe4, 0xaa, + 0xdb, 0xc6, 0x9f, 0x2a, 0x20, 0x0c, 0x3a, 0xfa, 0xf4, 0xeb, 0x5e, 0x8b, + 0xe1, 0xef, 0x1a, 0xdb, 0xdd, 0xce, 0xda, 0x67, 0xf6, 0x6c, 0xb3, 0xdd, + 0x63, 0x9d, 0x80, 0x15, 0x93, 0x8e, 0x7f, 0x00, 0x3f, 0x95, 0x79, 0x04, + 0x37, 0xf6, 0x57, 0x7f, 0x33, 0x42, 0x63, 0xb4, 0x69, 0x51, 0x71, 0x21, + 0x56, 0xf9, 0x77, 0x83, 0x9e, 0x00, 0xc7, 0x00, 0xe4, 0xd7, 0xd0, 0x49, + 0xa1, 0x59, 0x69, 0x91, 0x36, 0xa3, 0xa1, 0xdb, 0x42, 0xb7, 0x05, 0x0b, + 0x26, 0xec, 0x95, 0x60, 0x79, 0xc0, 0xf4, 0xfc, 0x29, 0xfc, 0x45, 0xc5, + 0xb3, 0x0f, 0x43, 0xf8, 0x81, 0xa4, 0xff, 0x00, 0x67, 0xb4, 0x17, 0xb2, + 0x7d, 0x8e, 0x54, 0xb9, 0x78, 0x04, 0x4f, 0x92, 0x46, 0x0f, 0xaf, 0xe9, + 0x5c, 0x27, 0xc4, 0xad, 0x67, 0x48, 0xdf, 0x00, 0xb1, 0x09, 0x76, 0x6e, + 0x0e, 0x5d, 0x4c, 0x5d, 0x08, 0xc8, 0x05, 0x5b, 0xaf, 0xe1, 0x5c, 0x76, + 0xa3, 0x6f, 0x77, 0x71, 0x77, 0xac, 0x6a, 0x4f, 0x01, 0x95, 0xa0, 0xbe, + 0x67, 0x9d, 0xa5, 0x62, 0x32, 0x49, 0xe8, 0x3a, 0x56, 0x7b, 0xf8, 0x89, + 0x25, 0x0a, 0xd2, 0xdb, 0x7e, 0xfe, 0x24, 0x29, 0x6e, 0xca, 0x70, 0x22, + 0xe7, 0x23, 0x1f, 0xad, 0x2b, 0x0d, 0xd4, 0xd0, 0xe8, 0x74, 0x8b, 0x2b, + 0xbf, 0xb0, 0x3c, 0x27, 0x48, 0x9c, 0xa3, 0xb7, 0x2f, 0x20, 0x60, 0x1c, + 0x11, 0xc0, 0x3d, 0xbe, 0x95, 0x1e, 0x89, 0xa1, 0xcd, 0xad, 0xad, 0xde, + 0x9c, 0xe1, 0x61, 0x9e, 0x16, 0xca, 0x7d, 0xa5, 0x82, 0x84, 0x5f, 0x41, + 0x9e, 0x4d, 0x59, 0xf0, 0x97, 0x8c, 0x35, 0xeb, 0x24, 0x91, 0x6e, 0x1a, + 0xe2, 0xf2, 0xd5, 0xce, 0x4a, 0x95, 0xc8, 0xe9, 0xd4, 0x1e, 0xdd, 0x05, + 0x5c, 0xf1, 0x76, 0xb5, 0xa2, 0x0b, 0xe4, 0xb9, 0xb4, 0xb6, 0x95, 0xa6, + 0x92, 0x02, 0x1a, 0x69, 0x27, 0xf9, 0x83, 0x90, 0x3d, 0x39, 0xe2, 0x9a, + 0x69, 0x6e, 0x43, 0xd4, 0xd8, 0xf0, 0x27, 0xc3, 0xab, 0xb9, 0x9a, 0x2d, + 0x42, 0x69, 0x40, 0x84, 0x4a, 0x78, 0xf2, 0xf2, 0x19, 0x47, 0x19, 0x04, + 0xfa, 0xd7, 0xaa, 0xd9, 0x78, 0x66, 0xcb, 0x4a, 0x49, 0x5b, 0x4e, 0x41, + 0x14, 0xd2, 0xfd, 0xe6, 0x7c, 0x90, 0x7f, 0x0a, 0xf3, 0xdf, 0x0c, 0x78, + 0xe2, 0xee, 0xdb, 0x40, 0x45, 0xb5, 0x89, 0xef, 0xa7, 0x58, 0x95, 0x51, + 0x4f, 0x0a, 0x0f, 0x4c, 0x70, 0x6b, 0x57, 0xc1, 0xff, 0x00, 0x13, 0x2e, + 0x75, 0xad, 0x5e, 0x5d, 0x33, 0x55, 0xb7, 0xb5, 0xb5, 0x99, 0x5b, 0x6a, + 0x9d, 0xe5, 0x39, 0xf4, 0xc1, 0xce, 0x4f, 0xe3, 0x5a, 0x29, 0x2e, 0x84, + 0xd9, 0x58, 0xf4, 0x14, 0x84, 0xaa, 0xa8, 0x3d, 0x47, 0x52, 0x2a, 0x40, + 0xb8, 0xe0, 0x66, 0x97, 0x79, 0xcf, 0x4a, 0x5d, 0xc3, 0x35, 0xa5, 0xc1, + 0x24, 0x1d, 0x28, 0x06, 0x97, 0xa8, 0xe2, 0x93, 0xa5, 0x03, 0x06, 0x6e, + 0x69, 0x85, 0xaa, 0x8e, 0xb1, 0xa8, 0x9d, 0x37, 0x4e, 0x9a, 0xe8, 0x44, + 0x64, 0xf2, 0xc6, 0x70, 0x3b, 0x7d, 0x7d, 0xab, 0xca, 0xbc, 0x67, 0xe3, + 0xfd, 0x5d, 0x50, 0x1d, 0x35, 0x0c, 0x36, 0xe4, 0x85, 0x67, 0x8d, 0xb2, + 0x77, 0x7b, 0x30, 0xa9, 0x94, 0xd4, 0x77, 0x03, 0xd8, 0x49, 0xa8, 0xa6, + 0xb9, 0x86, 0xdc, 0x03, 0x34, 0xd1, 0xc6, 0x0f, 0x77, 0x60, 0x3f, 0x9d, + 0x7c, 0xe5, 0x7b, 0xf1, 0x33, 0xc4, 0x77, 0x96, 0xf0, 0x41, 0x2d, 0xd8, + 0x44, 0x85, 0x83, 0x6f, 0x8d, 0x40, 0x72, 0x47, 0x1d, 0x6a, 0x4d, 0x5b, + 0xc5, 0xda, 0xfe, 0xa9, 0xa5, 0xda, 0xc3, 0x74, 0xfe, 0x6c, 0x5b, 0x8b, + 0x43, 0x28, 0x51, 0xe6, 0x36, 0x7a, 0x03, 0x8e, 0x6a, 0x5d, 0x5b, 0xfc, + 0x28, 0x47, 0xd1, 0x10, 0xdc, 0xc3, 0x72, 0x9b, 0xe1, 0x95, 0x24, 0x4c, + 0xe3, 0x72, 0x10, 0x45, 0x3f, 0x70, 0xaf, 0x94, 0xe1, 0xf1, 0x7e, 0xb7, + 0xa5, 0x44, 0xeb, 0x6d, 0x79, 0x34, 0x1e, 0x61, 0x2a, 0xe9, 0xbb, 0x83, + 0x8f, 0x6a, 0xe8, 0x3c, 0x3d, 0xf1, 0x5b, 0x58, 0xd3, 0x87, 0x91, 0x23, + 0xad, 0xc2, 0xbe, 0x17, 0x32, 0xf3, 0xb3, 0xe9, 0x54, 0xaa, 0x77, 0x42, + 0x3e, 0x8d, 0xa4, 0x26, 0xbc, 0xe6, 0xdb, 0xe2, 0x8e, 0x9f, 0x33, 0xdd, + 0x59, 0x92, 0x52, 0xf2, 0x24, 0xca, 0x99, 0x31, 0xb1, 0xd8, 0x75, 0x03, + 0x18, 0xac, 0xe3, 0xe3, 0x1f, 0x15, 0xde, 0x99, 0xa7, 0xb5, 0x80, 0xa5, + 0xbd, 0xba, 0xef, 0x66, 0x78, 0xf6, 0x8c, 0x76, 0x1e, 0xf4, 0xe5, 0x55, + 0x47, 0x4b, 0x5c, 0x0f, 0x55, 0x26, 0x9b, 0xd4, 0x66, 0xbc, 0xc7, 0x46, + 0xf8, 0xa3, 0x73, 0x7b, 0x32, 0x5b, 0xcf, 0xa7, 0xa6, 0xff, 0x00, 0xba, + 0xcc, 0xa4, 0xae, 0x0f, 0xbe, 0x6b, 0x57, 0x59, 0xf1, 0x25, 0xe3, 0x48, + 0xcf, 0x67, 0x77, 0x1c, 0x21, 0x4a, 0x81, 0x0e, 0xf0, 0x58, 0xf1, 0x9c, + 0xfd, 0x2a, 0x67, 0x88, 0x8c, 0x63, 0xcc, 0x82, 0xd7, 0x3a, 0x79, 0xf5, + 0xcd, 0x3a, 0xdf, 0x1e, 0x6d, 0xd2, 0x23, 0x13, 0xf7, 0x4f, 0x51, 0xcd, + 0x28, 0xd5, 0xec, 0x24, 0x90, 0x45, 0x15, 0xdc, 0x2f, 0x21, 0xc1, 0xc2, + 0xb8, 0xe9, 0xd7, 0x35, 0xe2, 0xba, 0xc6, 0xaf, 0x2c, 0xd7, 0x0f, 0x25, + 0xcc, 0xca, 0x65, 0x62, 0x79, 0x1d, 0x73, 0x49, 0x1d, 0xb4, 0xf3, 0xc7, + 0x19, 0x80, 0xcb, 0x6f, 0x1b, 0x7c, 0xcd, 0x70, 0xff, 0x00, 0x2e, 0xe1, + 0x8e, 0x80, 0x56, 0x34, 0xb1, 0x35, 0x27, 0xb0, 0xdc, 0x52, 0x3d, 0xc2, + 0x3b, 0xdb, 0x79, 0x65, 0x31, 0x24, 0xc8, 0xce, 0x06, 0x48, 0x0c, 0x0d, + 0x4d, 0x5e, 0x3f, 0xe1, 0xdb, 0xbb, 0x8b, 0x6d, 0x4e, 0x0b, 0x58, 0x4c, + 0x64, 0xf9, 0x81, 0x59, 0xbc, 0xd2, 0x37, 0x01, 0xd4, 0xfa, 0x7f, 0xfa, + 0xab, 0xd4, 0xed, 0xf5, 0x1b, 0x69, 0xd2, 0x4f, 0x2e, 0x78, 0x9d, 0xd0, + 0x91, 0xb4, 0x38, 0xea, 0x3b, 0x57, 0x74, 0x67, 0x75, 0x76, 0x43, 0x24, + 0xbb, 0xbb, 0x4b, 0x44, 0x0c, 0xca, 0x48, 0xda, 0x49, 0x3d, 0x87, 0xe3, + 0x58, 0xef, 0xe2, 0x54, 0x88, 0x2a, 0xba, 0x7c, 0xdf, 0x78, 0x30, 0x5f, + 0x97, 0x18, 0xef, 0xe9, 0x58, 0x3a, 0xa6, 0xbf, 0x79, 0x23, 0xdd, 0x45, + 0x79, 0x72, 0xb6, 0x88, 0xb8, 0x22, 0x35, 0xf9, 0xb7, 0x03, 0xfe, 0x15, + 0xca, 0x5f, 0xeb, 0x40, 0x42, 0xdf, 0x67, 0x2d, 0x2c, 0x6d, 0x91, 0xbb, + 0xa1, 0x1f, 0x85, 0x71, 0x4a, 0xbc, 0xa4, 0xef, 0xd0, 0xbe, 0x53, 0xd6, + 0xac, 0x6f, 0x62, 0xbf, 0xb6, 0x49, 0xa2, 0x95, 0x64, 0x04, 0x02, 0x4a, + 0x8c, 0x60, 0xd5, 0x9a, 0xf3, 0x9d, 0x3b, 0x5f, 0xbb, 0xd2, 0x6d, 0xec, + 0xa2, 0x30, 0xa1, 0x86, 0xe1, 0x94, 0xa9, 0x43, 0x96, 0x71, 0xdc, 0x62, + 0xbd, 0x02, 0xce, 0xe5, 0x6f, 0x2d, 0x52, 0x74, 0x49, 0x11, 0x58, 0x64, + 0x2c, 0x8b, 0x83, 0x5d, 0xd4, 0xa7, 0x75, 0x63, 0x26, 0xac, 0x4a, 0x69, + 0x0d, 0x3c, 0xd3, 0x4d, 0x6c, 0x98, 0x86, 0x1a, 0x69, 0xa7, 0x91, 0x4d, + 0x22, 0xa9, 0x08, 0x61, 0xa6, 0xd3, 0xc8, 0xa4, 0x22, 0x98, 0x86, 0x52, + 0x11, 0xc5, 0x3c, 0x8a, 0x69, 0xe9, 0x54, 0x21, 0x71, 0xc5, 0x25, 0x3f, + 0x1c, 0x52, 0x62, 0x95, 0xc0, 0x66, 0x29, 0x31, 0x4f, 0xc5, 0x26, 0x29, + 0x88, 0x61, 0x14, 0xd2, 0x29, 0xe6, 0x9a, 0x69, 0x88, 0x63, 0x64, 0x23, + 0x15, 0x19, 0x20, 0x13, 0x8a, 0xe2, 0xbc, 0x43, 0xaa, 0xbc, 0xe4, 0x22, + 0x7c, 0xa0, 0xfc, 0xa4, 0x0e, 0xf5, 0xd0, 0x78, 0x86, 0x4b, 0x88, 0xed, + 0x94, 0x42, 0xfb, 0x53, 0x19, 0x60, 0x3a, 0x9e, 0x7b, 0xd7, 0x11, 0x76, + 0xf1, 0xf3, 0xe6, 0xca, 0xc5, 0x8f, 0xf0, 0xd7, 0x81, 0x99, 0xe2, 0xa4, + 0xdb, 0xa7, 0x1d, 0x11, 0xd5, 0x46, 0x9a, 0x4b, 0x99, 0x90, 0x49, 0x2c, + 0xb0, 0xa7, 0xde, 0x2a, 0xa3, 0xa7, 0x27, 0x8f, 0xa5, 0x67, 0xb4, 0xed, + 0x30, 0x2e, 0x0e, 0x18, 0x1e, 0x09, 0xef, 0x4f, 0x98, 0x79, 0x90, 0x90, + 0x4f, 0x7e, 0x01, 0xed, 0x54, 0x8c, 0x82, 0x28, 0x30, 0xa3, 0x2d, 0xeb, + 0xc8, 0x15, 0xe5, 0x27, 0x26, 0x74, 0x16, 0x06, 0xa0, 0xd1, 0x3a, 0xca, + 0xa5, 0x92, 0x45, 0x20, 0x17, 0x53, 0x8c, 0xd6, 0xa2, 0xea, 0x72, 0x5e, + 0x4d, 0xb5, 0xfc, 0xc9, 0xb7, 0x10, 0x11, 0x9d, 0xba, 0x1a, 0xc1, 0xdd, + 0x0c, 0xf1, 0x1e, 0x0f, 0x4e, 0x76, 0x8e, 0xf5, 0xad, 0x68, 0x10, 0x47, + 0x18, 0x40, 0x44, 0x84, 0xe7, 0x8e, 0x76, 0xd7, 0x44, 0x2b, 0x38, 0xdb, + 0x57, 0xe8, 0x4b, 0x49, 0x9d, 0x2c, 0xda, 0x4c, 0x5a, 0x4d, 0x94, 0x77, + 0xb3, 0x15, 0x92, 0x45, 0x1b, 0x9e, 0x23, 0xf3, 0x02, 0x3d, 0x3e, 0x95, + 0x16, 0xa1, 0xa9, 0xde, 0x5e, 0x69, 0x06, 0x5b, 0x7b, 0x58, 0xd2, 0x3d, + 0xb8, 0x11, 0xed, 0xc9, 0x03, 0xd4, 0x55, 0x1d, 0x42, 0x3b, 0x89, 0xa2, + 0x12, 0xdd, 0xdd, 0x33, 0x36, 0x00, 0x54, 0x53, 0xc9, 0x1e, 0x86, 0xaa, + 0x3c, 0xf2, 0x3f, 0x94, 0xa0, 0x91, 0x16, 0xd0, 0x18, 0x1e, 0x31, 0x5d, + 0xf5, 0x31, 0x3c, 0xaa, 0xd6, 0xe5, 0x46, 0x31, 0x85, 0xf5, 0xdc, 0xce, + 0x89, 0x6e, 0xa6, 0xbd, 0x46, 0xb9, 0xc8, 0x04, 0x01, 0xf7, 0x7b, 0x55, + 0xab, 0x94, 0x06, 0x50, 0x63, 0x6c, 0x0c, 0x63, 0x2d, 0x56, 0x64, 0x96, + 0x08, 0x11, 0x8f, 0x98, 0x1b, 0x6f, 0x45, 0xac, 0xa6, 0xd4, 0x11, 0x97, + 0x11, 0x0f, 0xde, 0x96, 0xcf, 0xdd, 0xe9, 0x5e, 0x65, 0x49, 0x73, 0xca, + 0xf1, 0x37, 0x4a, 0xc8, 0x49, 0x21, 0x81, 0x59, 0x9a, 0x46, 0xc3, 0x01, + 0x90, 0x0f, 0x39, 0xaa, 0x7e, 0x50, 0x66, 0x0c, 0x84, 0x61, 0x94, 0x86, + 0x2d, 0xce, 0x2a, 0xfc, 0xd2, 0xa3, 0xb1, 0x0f, 0x82, 0x06, 0x0e, 0x1c, + 0x55, 0x59, 0xa5, 0x52, 0xcc, 0xea, 0xeb, 0x1e, 0xee, 0x14, 0x05, 0x18, + 0x1f, 0x95, 0x2a, 0x6e, 0x4a, 0x5a, 0x03, 0x44, 0x12, 0x58, 0x86, 0x88, + 0x08, 0xdf, 0x68, 0x0d, 0x9d, 0xc4, 0xe7, 0x15, 0x58, 0xe9, 0xeb, 0x13, + 0x87, 0x42, 0xc5, 0xb9, 0xc9, 0xc7, 0x14, 0xfb, 0x85, 0x92, 0xd2, 0x05, + 0xfd, 0xf2, 0x4c, 0x1f, 0x93, 0x82, 0x41, 0x02, 0xb4, 0x62, 0xb9, 0x58, + 0xad, 0x7c, 0xcc, 0x0c, 0x30, 0x00, 0x64, 0x7f, 0x4a, 0xd6, 0x4e, 0x51, + 0x76, 0xb8, 0x24, 0x54, 0xd4, 0x6c, 0xa6, 0xba, 0x11, 0x3e, 0x02, 0xba, + 0x10, 0xbf, 0x77, 0x6e, 0xea, 0x6f, 0xf6, 0x2b, 0xc2, 0x82, 0x63, 0x95, + 0x43, 0xf7, 0x94, 0x9e, 0x41, 0xce, 0x2b, 0x4e, 0xda, 0x57, 0xbc, 0x12, + 0x10, 0x32, 0xa0, 0xf1, 0x91, 0xc8, 0xfa, 0x54, 0xc6, 0x66, 0xc9, 0x45, + 0x90, 0x46, 0xa4, 0x77, 0x3d, 0x4f, 0xe3, 0x4a, 0x75, 0x24, 0xdf, 0xbc, + 0x87, 0xcb, 0xa1, 0x9f, 0x6b, 0x61, 0x0b, 0x38, 0x5d, 0x92, 0x16, 0xec, + 0x5c, 0x70, 0x6a, 0x69, 0x12, 0x3b, 0x78, 0x98, 0x3a, 0x18, 0xc0, 0x3f, + 0x36, 0x3a, 0x1a, 0xb3, 0x73, 0x78, 0xad, 0x28, 0x25, 0x81, 0x11, 0x8c, + 0x0c, 0x0e, 0xbe, 0xb5, 0x9c, 0xfb, 0xae, 0xb7, 0xe3, 0x70, 0x1d, 0xd8, + 0x9e, 0x9f, 0x51, 0x59, 0x24, 0xe4, 0xec, 0x90, 0x9a, 0xb1, 0x81, 0x7d, + 0x1a, 0xad, 0xf3, 0xbc, 0x5b, 0x8a, 0x13, 0x91, 0xcf, 0x6a, 0xb1, 0x35, + 0xd2, 0xfd, 0x89, 0x4a, 0x99, 0x94, 0xf4, 0xf5, 0x1f, 0x4a, 0x96, 0x5b, + 0x99, 0x84, 0x8d, 0x1a, 0xc5, 0x1e, 0x57, 0x8d, 0xcc, 0x33, 0x8a, 0x74, + 0x96, 0xd7, 0x12, 0x59, 0xa9, 0x89, 0xa2, 0x7f, 0xe2, 0x65, 0x38, 0xeb, + 0xed, 0x5b, 0x5d, 0x37, 0xef, 0x13, 0x63, 0x2e, 0xc6, 0x69, 0x92, 0xe8, + 0x18, 0xa3, 0xde, 0xc3, 0x9f, 0x2c, 0x9c, 0x66, 0x9f, 0xae, 0xea, 0x3f, + 0xda, 0x0d, 0xbe, 0xe1, 0x16, 0x39, 0xf8, 0x3e, 0x5a, 0xae, 0x06, 0x3e, + 0xb5, 0x3d, 0x95, 0xac, 0x71, 0x5e, 0x4a, 0xd7, 0xa2, 0x40, 0x9b, 0x78, + 0xf2, 0xc9, 0x18, 0xc8, 0xef, 0x52, 0xcb, 0x6f, 0x6d, 0x7d, 0x3c, 0x4e, + 0x91, 0xbb, 0x47, 0x1a, 0xed, 0x0a, 0x07, 0x53, 0xeb, 0x5d, 0xbc, 0xd1, + 0x8d, 0x2b, 0x5c, 0x8f, 0xb4, 0x57, 0xd0, 0x64, 0x11, 0xa3, 0x49, 0xe5, + 0x9d, 0xcb, 0xc8, 0x72, 0xdc, 0x0a, 0xe8, 0x56, 0xfe, 0xde, 0x0b, 0x70, + 0xd3, 0x48, 0x77, 0x1e, 0x46, 0x0f, 0x35, 0x91, 0x7d, 0x2d, 0xb4, 0x76, + 0x01, 0x2d, 0x63, 0x29, 0x18, 0x6c, 0x67, 0xd4, 0xf7, 0xa8, 0x60, 0xbc, + 0x0c, 0xab, 0x12, 0x23, 0xc9, 0x9c, 0xa8, 0x70, 0xbc, 0xe6, 0xbc, 0xc9, + 0xc3, 0x9d, 0xf3, 0x34, 0x5a, 0xd3, 0x43, 0xa0, 0xb2, 0xd4, 0x6c, 0xe7, + 0xf3, 0x54, 0x2a, 0x8f, 0x5d, 0xc7, 0x24, 0xd4, 0xd6, 0x76, 0xf3, 0x5a, + 0x5d, 0xfd, 0xbb, 0x4d, 0x70, 0xa1, 0x98, 0x12, 0x07, 0x38, 0xff, 0x00, + 0xeb, 0x57, 0x24, 0xe2, 0xe7, 0x4b, 0xbb, 0x57, 0xb9, 0xb7, 0x71, 0xbc, + 0x75, 0x6e, 0x09, 0x06, 0xbd, 0x2b, 0x45, 0xd2, 0xd2, 0xdf, 0x43, 0xb7, + 0xbc, 0x81, 0xb1, 0x19, 0x5d, 0xce, 0xe7, 0xaf, 0x3d, 0x7b, 0x57, 0x75, + 0x0c, 0x2c, 0xa5, 0xef, 0xd3, 0x96, 0xc4, 0xca, 0x49, 0x68, 0xc8, 0x35, + 0x6d, 0x4f, 0x55, 0x59, 0x6d, 0x2f, 0x7c, 0xa7, 0xf3, 0x42, 0xb2, 0x28, + 0x51, 0x90, 0x7d, 0xc0, 0xae, 0x7b, 0x50, 0xd5, 0x2f, 0x6e, 0x2c, 0x44, + 0x97, 0x28, 0xee, 0x5f, 0xfe, 0x5a, 0x95, 0xc6, 0x3d, 0xab, 0x71, 0xf5, + 0x4b, 0x67, 0x28, 0xf2, 0xbb, 0x8f, 0x2d, 0x99, 0x41, 0x3f, 0x28, 0xc7, + 0xb5, 0x66, 0x6a, 0xd7, 0xe2, 0x38, 0x56, 0x1b, 0x5b, 0x6d, 0xb0, 0xb1, + 0xc8, 0x67, 0xe4, 0x1f, 0xf0, 0xad, 0x2a, 0x62, 0xdc, 0xbd, 0xd7, 0x76, + 0x38, 0xd3, 0x48, 0xe5, 0xe7, 0x7b, 0xd6, 0x8d, 0x77, 0x3c, 0x8b, 0x0a, + 0xfc, 0xca, 0x0f, 0x19, 0xfa, 0x56, 0x85, 0x9e, 0xa6, 0x8b, 0xe5, 0xe6, + 0x59, 0x0c, 0xe0, 0x70, 0xcb, 0x83, 0x81, 0x59, 0xd7, 0x52, 0x3b, 0x4a, + 0x7e, 0xd3, 0x2b, 0x1c, 0x74, 0x00, 0x70, 0x4f, 0xa5, 0x16, 0xb6, 0x31, + 0xcd, 0xb5, 0xc3, 0x04, 0xdf, 0xd3, 0xe6, 0xe4, 0x7d, 0x45, 0x2c, 0x3c, + 0xe5, 0x0d, 0x87, 0x35, 0x72, 0xcc, 0x96, 0x17, 0x6f, 0x74, 0x2e, 0xed, + 0xd8, 0x30, 0x95, 0x87, 0xde, 0x3c, 0xe4, 0xd5, 0x99, 0xb4, 0x6b, 0xd8, + 0xee, 0x11, 0x59, 0xb7, 0xca, 0xd8, 0xdc, 0x14, 0x1f, 0x94, 0xfa, 0x55, + 0xd9, 0xee, 0xe7, 0xb6, 0xd3, 0x64, 0xb4, 0x5b, 0x48, 0xcc, 0xc1, 0x77, + 0xac, 0xc1, 0xf3, 0x8f, 0x71, 0xf9, 0x55, 0x6b, 0x6b, 0xfd, 0x5a, 0xe6, + 0x48, 0xae, 0x9a, 0x72, 0x52, 0x3c, 0x36, 0xd3, 0xc6, 0xea, 0xde, 0x4a, + 0x8b, 0x7a, 0xee, 0x4a, 0xe6, 0xb1, 0x78, 0xd8, 0xca, 0x75, 0x28, 0x8c, + 0xcf, 0x1a, 0x9f, 0x2d, 0x58, 0x32, 0x70, 0x3e, 0x9e, 0xd5, 0xd1, 0xeb, + 0xda, 0xad, 0xa5, 0xb6, 0x95, 0x1f, 0x97, 0x2b, 0x4b, 0x74, 0x8a, 0x04, + 0x88, 0xa4, 0x10, 0x06, 0x7b, 0xfe, 0x35, 0xcc, 0x5e, 0x49, 0x73, 0x72, + 0xed, 0x75, 0xe4, 0x85, 0xdd, 0xd9, 0x4e, 0x42, 0x8a, 0xc0, 0x9e, 0x6b, + 0xc0, 0x66, 0x53, 0x38, 0x40, 0xc3, 0x90, 0x07, 0xde, 0xa8, 0x8e, 0x26, + 0x9a, 0x94, 0xa2, 0xba, 0x83, 0x83, 0xd1, 0x96, 0xb5, 0x09, 0x56, 0x7b, + 0xbc, 0x05, 0x21, 0x36, 0x02, 0x0e, 0x72, 0x4f, 0xbd, 0x59, 0x8a, 0xdd, + 0xa2, 0x41, 0xb4, 0x81, 0x91, 0xf7, 0x9b, 0xbf, 0xb5, 0x63, 0x4c, 0xd3, + 0x5a, 0xdc, 0x40, 0x2e, 0x50, 0x8d, 0xf1, 0x82, 0xad, 0x8e, 0x83, 0xb1, + 0xad, 0x5b, 0x69, 0xdf, 0xce, 0x8d, 0x46, 0x24, 0x0c, 0x09, 0x27, 0x82, + 0x45, 0x70, 0xd4, 0x8b, 0xe9, 0xb1, 0xb5, 0xb5, 0xb9, 0xa5, 0x65, 0x7c, + 0x60, 0x8f, 0xcb, 0x92, 0x20, 0xa3, 0x1f, 0x78, 0x36, 0x72, 0x6a, 0xda, + 0x5f, 0x0b, 0x92, 0xd2, 0x13, 0xb6, 0x35, 0x5f, 0xbb, 0xe9, 0x58, 0x53, + 0x06, 0x13, 0x8c, 0x44, 0xc4, 0x1e, 0xa0, 0x9e, 0x86, 0xac, 0x40, 0xec, + 0x83, 0x2b, 0x11, 0xc9, 0xea, 0x31, 0x91, 0x59, 0x49, 0x5d, 0x68, 0x22, + 0xd4, 0xba, 0x8d, 0xcd, 0xa5, 0xc4, 0x7e, 0x4c, 0x9b, 0xa3, 0x0c, 0x1f, + 0x0d, 0x4e, 0x7d, 0x79, 0x7e, 0xda, 0xb7, 0x4c, 0xfe, 0x6e, 0x4e, 0x5a, + 0x33, 0xcd, 0x36, 0x44, 0x37, 0xc3, 0x0e, 0x9e, 0x54, 0xab, 0xf7, 0x72, + 0x38, 0xac, 0x79, 0x6c, 0xe5, 0x8e, 0xe8, 0xc6, 0x59, 0x41, 0x6e, 0x0f, + 0x15, 0xa5, 0x3a, 0xd6, 0xb5, 0xde, 0xc2, 0x68, 0xec, 0xfc, 0x3f, 0x15, + 0xb6, 0xb3, 0x2f, 0x9c, 0xd1, 0xac, 0x7b, 0x9f, 0x00, 0x01, 0x81, 0x8e, + 0x33, 0x57, 0x7c, 0x5a, 0x34, 0xc9, 0x22, 0x6b, 0x45, 0xfd, 0xd9, 0x11, + 0xec, 0x0c, 0x06, 0x00, 0xc7, 0xa9, 0xef, 0x5c, 0xdd, 0x8e, 0xa7, 0x79, + 0x61, 0x68, 0x2d, 0xe3, 0x65, 0xda, 0x06, 0xd1, 0x84, 0x1c, 0x0e, 0xf5, + 0x76, 0x5d, 0x42, 0xde, 0xe6, 0x09, 0xbc, 0xf2, 0x99, 0xd9, 0xb0, 0x16, + 0xee, 0x3d, 0xeb, 0xd2, 0xfa, 0xc5, 0x09, 0xd3, 0x7c, 0xae, 0xcc, 0xc7, + 0x96, 0x49, 0xea, 0x66, 0x5c, 0xdb, 0xa0, 0xb3, 0x54, 0xb7, 0x66, 0x20, + 0xf1, 0xe5, 0xff, 0x00, 0x5c, 0xd4, 0x47, 0x46, 0x95, 0x92, 0x12, 0x48, + 0x3c, 0x7c, 0xc4, 0x1e, 0x2a, 0x74, 0xd5, 0x20, 0x48, 0xd5, 0x22, 0xc2, + 0x11, 0xc7, 0x3d, 0x2a, 0xca, 0x4f, 0x14, 0xca, 0x8d, 0x23, 0x85, 0xcf, + 0x70, 0x40, 0xdd, 0x5e, 0x55, 0x6a, 0xf2, 0x94, 0xae, 0x91, 0xba, 0x56, + 0x23, 0x8e, 0xcf, 0xcb, 0xd8, 0xc5, 0x86, 0x3f, 0x86, 0xba, 0x3d, 0x1f, + 0x52, 0xfe, 0xce, 0x84, 0x28, 0x11, 0xb3, 0xbf, 0xcb, 0x26, 0xfe, 0x8d, + 0x9f, 0x4a, 0xc7, 0x43, 0x14, 0x85, 0x50, 0x2c, 0x92, 0x10, 0x7f, 0x88, + 0xe7, 0x8a, 0x8e, 0x1f, 0xb5, 0xb9, 0x95, 0xa1, 0x0b, 0x12, 0x8e, 0x76, + 0xba, 0xd1, 0x87, 0xc4, 0xce, 0x9c, 0xb7, 0x14, 0xa1, 0x74, 0x7a, 0x8c, + 0x30, 0xe8, 0xb3, 0xc4, 0x84, 0x45, 0x6c, 0xc5, 0x87, 0x01, 0xb1, 0xbb, + 0x9f, 0xeb, 0x54, 0x1a, 0xc6, 0xe2, 0x3d, 0x4e, 0x5f, 0x28, 0x15, 0x80, + 0x00, 0x54, 0x06, 0x20, 0x1f, 0x6a, 0xe2, 0x2d, 0x1a, 0xe6, 0xdc, 0xa1, + 0x98, 0x67, 0x9c, 0x87, 0x51, 0xc5, 0x68, 0x6a, 0x3a, 0xcd, 0xf4, 0xb6, + 0xee, 0x16, 0xe8, 0xa9, 0x65, 0xc1, 0x8d, 0x79, 0x24, 0x63, 0xde, 0xbd, + 0x3a, 0x59, 0x85, 0x29, 0xbf, 0xde, 0x2b, 0x35, 0xd5, 0x18, 0xca, 0x94, + 0x96, 0xc1, 0x7d, 0x7b, 0x1c, 0xd7, 0xd3, 0x5b, 0xec, 0x2a, 0x5f, 0x21, + 0x99, 0x78, 0x73, 0x93, 0x5c, 0x4d, 0xe5, 0x8d, 0x9a, 0x4b, 0xf2, 0xce, + 0x59, 0x79, 0xc8, 0x3d, 0x41, 0xab, 0x97, 0x12, 0xc9, 0x03, 0x25, 0xc7, + 0xdb, 0x0a, 0xb9, 0xc6, 0x10, 0x13, 0xb8, 0xae, 0x3d, 0xab, 0x3f, 0x50, + 0x8e, 0xcd, 0x63, 0x84, 0xc2, 0xd9, 0x2c, 0x49, 0x66, 0x66, 0xe7, 0xf1, + 0x15, 0x75, 0x71, 0x0a, 0xda, 0xa1, 0x46, 0x25, 0x18, 0xa3, 0x26, 0x4c, + 0x23, 0x9e, 0x0f, 0x06, 0xb6, 0x6c, 0xd2, 0xda, 0x09, 0xbc, 0xd9, 0x4a, + 0xce, 0x00, 0x3b, 0xa3, 0x6a, 0xcb, 0x81, 0x7c, 0xb9, 0x18, 0xa3, 0xee, + 0x50, 0x7b, 0x8a, 0x26, 0x91, 0x4c, 0x8e, 0xd1, 0x81, 0xb8, 0x70, 0x41, + 0xe2, 0xbc, 0xfe, 0x77, 0x19, 0x5d, 0x1b, 0x5b, 0x43, 0x7e, 0x7b, 0xcb, + 0x3c, 0x28, 0xb4, 0x52, 0x4f, 0x07, 0x2b, 0xc6, 0x38, 0xe9, 0xf8, 0x55, + 0x8b, 0x59, 0x1a, 0x6b, 0x52, 0x87, 0xe5, 0x1d, 0x46, 0x4f, 0x7a, 0xe7, + 0xec, 0xad, 0xa5, 0x9e, 0x34, 0x2b, 0x17, 0x6c, 0xe7, 0x3c, 0xd4, 0xcf, + 0x71, 0x25, 0xb3, 0x7d, 0x99, 0x14, 0x33, 0xfa, 0xe7, 0x15, 0x86, 0x25, + 0x4a, 0x6e, 0xfb, 0x04, 0x74, 0x36, 0x62, 0x2c, 0x2e, 0xc4, 0x77, 0x16, + 0xec, 0xd1, 0x64, 0x12, 0xfb, 0x72, 0x71, 0xed, 0x5d, 0xd6, 0x93, 0x25, + 0xba, 0xac, 0x76, 0xe6, 0xe2, 0x05, 0x27, 0xe7, 0x54, 0x8e, 0x3d, 0xee, + 0x79, 0xe8, 0x48, 0xaf, 0x38, 0x53, 0x24, 0x96, 0xfb, 0xe4, 0xba, 0x39, + 0xe8, 0x13, 0x38, 0xc5, 0x74, 0x5e, 0x1e, 0xd6, 0x75, 0x0d, 0x35, 0x45, + 0xbd, 0x9d, 0xb5, 0xb4, 0x93, 0x36, 0x48, 0x79, 0x07, 0x38, 0xfa, 0xd6, + 0xb8, 0x3a, 0xc9, 0x35, 0x19, 0x8a, 0x6b, 0xaa, 0x3d, 0x56, 0x1b, 0x68, + 0xe3, 0x91, 0xa4, 0x1b, 0xcb, 0xb7, 0x39, 0x62, 0x7f, 0x97, 0x4a, 0xb2, + 0x05, 0x72, 0x16, 0xde, 0x26, 0xd4, 0x63, 0x52, 0x2f, 0xac, 0x55, 0xa4, + 0x2b, 0xb9, 0x56, 0x06, 0xc9, 0x23, 0xdb, 0xad, 0x6d, 0x69, 0xfa, 0xc9, + 0xd4, 0x64, 0x0b, 0x0d, 0xa4, 0xf1, 0xa8, 0x19, 0x66, 0x94, 0x05, 0xc7, + 0xf8, 0xd7, 0xbf, 0x09, 0xc3, 0x64, 0x73, 0x34, 0xcd, 0x81, 0x80, 0x79, + 0xa6, 0x5c, 0x48, 0x63, 0x89, 0xa4, 0x08, 0xcf, 0xb4, 0x67, 0x6a, 0x8c, + 0x93, 0x54, 0x35, 0x17, 0xb7, 0x95, 0x45, 0xbb, 0x5e, 0xfd, 0x9e, 0x5c, + 0x86, 0x05, 0x1b, 0x0d, 0xff, 0x00, 0xea, 0xaa, 0x8a, 0xcf, 0xa6, 0x2c, + 0xb7, 0x53, 0xea, 0x0d, 0x2c, 0x08, 0x9b, 0x9b, 0x76, 0x0d, 0x39, 0x49, + 0xa6, 0x08, 0x76, 0xab, 0xae, 0x7f, 0x66, 0x98, 0xc3, 0x40, 0xc4, 0xc8, + 0x85, 0x86, 0xe3, 0xb4, 0x67, 0x8e, 0x33, 0xeb, 0x5e, 0x51, 0xae, 0xcf, + 0x65, 0x0f, 0x9f, 0x70, 0xa5, 0x0d, 0xc4, 0x8c, 0x1b, 0x6a, 0xb7, 0x20, + 0x62, 0xba, 0xaf, 0x16, 0x6b, 0xda, 0x5e, 0xaf, 0x67, 0x03, 0x5b, 0x6a, + 0x22, 0x27, 0x4c, 0x97, 0xc8, 0xe8, 0x3f, 0xc6, 0xb8, 0xf9, 0x2c, 0xed, + 0x9a, 0x2b, 0xe4, 0x89, 0x56, 0xe9, 0xcc, 0x3e, 0x62, 0x4a, 0x78, 0xc0, + 0xff, 0x00, 0x1a, 0xe7, 0xab, 0x2e, 0x62, 0xe2, 0xac, 0x62, 0x69, 0xf0, + 0xb4, 0xb7, 0x2a, 0x76, 0xf9, 0xc6, 0x5c, 0x8c, 0x67, 0xda, 0xbb, 0xb8, + 0xb5, 0x47, 0xd0, 0xbc, 0x31, 0xe5, 0x5a, 0xbc, 0xf1, 0xdc, 0xa9, 0x2e, + 0x5c, 0x67, 0x6b, 0x03, 0xc7, 0xe7, 0xfe, 0x15, 0xc5, 0xe9, 0xf7, 0xb6, + 0x96, 0x97, 0x76, 0xb2, 0x34, 0x87, 0x2a, 0x43, 0x14, 0x61, 0xd0, 0xf3, + 0x9f, 0xe9, 0x5d, 0x15, 0xc7, 0x89, 0xe6, 0xd6, 0x2c, 0xa4, 0xb3, 0x8a, + 0x01, 0x32, 0x4f, 0x20, 0x52, 0xac, 0xbc, 0xaf, 0xa0, 0x5f, 0x6c, 0x57, + 0x3d, 0x34, 0xd5, 0xdb, 0x7a, 0x96, 0xd9, 0x97, 0x7d, 0xe2, 0x5b, 0xeb, + 0xa4, 0x71, 0x3d, 0xd1, 0x6f, 0x2d, 0xb7, 0x29, 0x3d, 0x43, 0x63, 0x8e, + 0x45, 0x65, 0xcb, 0xae, 0x96, 0xb6, 0xda, 0xb2, 0x94, 0x99, 0xc9, 0x59, + 0x0a, 0xf2, 0x58, 0x1a, 0xf4, 0x18, 0x3c, 0x21, 0x6a, 0x6d, 0xac, 0xe6, + 0x7d, 0x24, 0xbd, 0xca, 0xc8, 0xde, 0x72, 0x00, 0xc3, 0x70, 0x1f, 0xa6, + 0x3b, 0x57, 0x2f, 0xac, 0x68, 0xf0, 0x45, 0x7e, 0x65, 0x1a, 0x43, 0x5a, + 0xc3, 0x29, 0x28, 0xbe, 0x66, 0x76, 0x82, 0x3a, 0xe3, 0xe9, 0x55, 0x55, + 0x59, 0x73, 0x36, 0x25, 0xae, 0x86, 0x05, 0x84, 0x73, 0xcb, 0x30, 0x4b, + 0x58, 0x1e, 0x59, 0x0e, 0x00, 0x08, 0x0e, 0x6b, 0xd7, 0xbe, 0x1e, 0xe9, + 0xd3, 0xcb, 0x22, 0xdc, 0xa7, 0x9d, 0x62, 0xf6, 0xff, 0x00, 0x2d, 0xca, + 0x30, 0xcf, 0x9f, 0x9e, 0x46, 0x41, 0xe9, 0xf5, 0xae, 0x73, 0xc3, 0x1a, + 0xad, 0x97, 0x86, 0xed, 0x2e, 0x65, 0x9e, 0x2f, 0x35, 0x57, 0xe4, 0x0c, + 0x00, 0x25, 0x5f, 0x19, 0x07, 0xd7, 0xf1, 0xae, 0xdf, 0xc3, 0x1e, 0x38, + 0xd3, 0x6f, 0xa2, 0x81, 0x26, 0x53, 0x1d, 0xd4, 0xcc, 0x10, 0xb2, 0xa0, + 0x20, 0x9e, 0xd9, 0x23, 0xdc, 0xd4, 0xd2, 0x8a, 0xd1, 0x8d, 0x9d, 0x66, + 0xab, 0x74, 0x6c, 0x74, 0xbb, 0x8b, 0x95, 0x68, 0xd5, 0xa3, 0x8c, 0xb0, + 0x32, 0xe7, 0x6e, 0x7b, 0x67, 0x1c, 0xd7, 0xcd, 0xde, 0x32, 0xf1, 0xce, + 0xa9, 0xae, 0x5e, 0x34, 0x57, 0x2b, 0x11, 0x58, 0x89, 0x54, 0x11, 0x02, + 0x02, 0x8f, 0x50, 0x3b, 0xfe, 0x35, 0xf4, 0x9e, 0xa1, 0x34, 0x71, 0xd8, + 0xca, 0xd2, 0xc6, 0x24, 0x4d, 0xb8, 0x28, 0x48, 0x1b, 0xb3, 0xc6, 0x39, + 0xe2, 0xbe, 0x75, 0xf1, 0x16, 0x8b, 0xa9, 0x5a, 0x5d, 0x5f, 0xc9, 0x06, + 0x88, 0x62, 0x91, 0xdc, 0x95, 0x65, 0x7d, 0xc4, 0x27, 0x4c, 0x63, 0xa1, + 0x06, 0xb7, 0x9a, 0x6c, 0x96, 0x79, 0xe3, 0xce, 0x64, 0x0d, 0x93, 0xd7, + 0x9a, 0x88, 0x4c, 0x02, 0x81, 0x81, 0x9a, 0x79, 0x47, 0xc1, 0x62, 0x80, + 0x1f, 0x4a, 0x2d, 0xd5, 0xe6, 0x7d, 0xa9, 0x1a, 0x96, 0xcf, 0x7a, 0xe7, + 0xb0, 0x90, 0x92, 0x4c, 0xf2, 0x10, 0x0a, 0x80, 0x00, 0xf4, 0xa8, 0xbe, + 0x7d, 0xb9, 0x54, 0xe4, 0x72, 0x46, 0x2a, 0xdf, 0x92, 0x7c, 0xc0, 0xef, + 0x97, 0x01, 0xba, 0x83, 0x57, 0x06, 0x23, 0x90, 0xc7, 0x3c, 0x2b, 0xb1, + 0xc6, 0x43, 0x91, 0xd0, 0x56, 0x6e, 0x7d, 0x91, 0x56, 0x2e, 0xf8, 0x73, + 0xc4, 0x17, 0x3a, 0x1e, 0xb7, 0x65, 0x79, 0x6d, 0x00, 0x84, 0xed, 0x31, + 0xc8, 0xec, 0xb9, 0xca, 0xb7, 0x05, 0xbd, 0xb0, 0x33, 0x83, 0x5d, 0x37, + 0x8b, 0xf5, 0x5f, 0x0e, 0x4f, 0xac, 0xdc, 0x5b, 0xe9, 0xd7, 0x32, 0x36, + 0x9e, 0x46, 0xe7, 0x2a, 0x37, 0xb1, 0x97, 0x6f, 0x27, 0x71, 0xec, 0x4e, + 0x3b, 0xfa, 0xd5, 0x2b, 0x6d, 0x56, 0x75, 0xbb, 0xb0, 0xfb, 0x11, 0x82, + 0xfd, 0x22, 0x8a, 0x48, 0x3e, 0xcd, 0x3a, 0xe1, 0x82, 0x95, 0xe7, 0x24, + 0x76, 0xeb, 0x8f, 0xa5, 0x75, 0x1a, 0x7f, 0x85, 0x7c, 0x28, 0x3c, 0x23, + 0x69, 0xa8, 0x5c, 0xdb, 0xdd, 0xec, 0x0a, 0x8f, 0x71, 0x71, 0x18, 0x22, + 0x35, 0xcb, 0x1c, 0xf5, 0xef, 0xda, 0xb6, 0x8f, 0xbd, 0x11, 0x98, 0xde, + 0x09, 0x6b, 0x79, 0xb5, 0x5f, 0xec, 0xab, 0xc3, 0x6e, 0xf1, 0x5f, 0xc7, + 0x88, 0x5a, 0x56, 0x1f, 0xbb, 0x6c, 0x1c, 0x1e, 0xff, 0x00, 0x95, 0x7a, + 0x0d, 0xb7, 0x87, 0x35, 0x5f, 0x0a, 0x66, 0xe3, 0x45, 0x68, 0xb5, 0x4d, + 0x3b, 0xcb, 0x26, 0x58, 0x4e, 0x0e, 0x5b, 0xf2, 0xe9, 0x90, 0x2b, 0xcc, + 0xac, 0x74, 0x5b, 0x7b, 0xcd, 0x7a, 0xee, 0x7b, 0x15, 0x69, 0x6d, 0xe1, + 0x84, 0xcb, 0x1c, 0x71, 0x83, 0xca, 0x90, 0x46, 0x41, 0xe7, 0xa5, 0x76, + 0x9e, 0x19, 0xd7, 0x35, 0x4f, 0x0d, 0xe8, 0xe6, 0x09, 0x26, 0x36, 0xf0, + 0x23, 0x16, 0x75, 0xb8, 0x88, 0xb0, 0x24, 0x9e, 0x00, 0x3c, 0x15, 0x1c, + 0xf7, 0xf4, 0xa5, 0x05, 0x61, 0x1c, 0xdf, 0x89, 0xf5, 0x3f, 0x10, 0x78, + 0x94, 0xca, 0x27, 0xd2, 0xc2, 0x88, 0x1f, 0x13, 0x2a, 0x7d, 0xf8, 0xd4, + 0x1e, 0x00, 0xcf, 0x41, 0xcf, 0x6a, 0x6e, 0x9f, 0xa6, 0x69, 0xb7, 0x36, + 0x77, 0x42, 0x78, 0x21, 0xb6, 0x92, 0x12, 0x0f, 0x97, 0x73, 0x93, 0x2f, + 0x23, 0x8c, 0x72, 0x32, 0x39, 0x15, 0xd1, 0x78, 0x9f, 0xc4, 0x3e, 0x1b, + 0xb4, 0x84, 0xcb, 0x6b, 0x1a, 0x4f, 0xb9, 0x5b, 0xcd, 0x31, 0x8d, 0x9f, + 0x3b, 0x03, 0x82, 0x09, 0xc9, 0x20, 0x1f, 0xe5, 0x5c, 0xb6, 0x81, 0xe6, + 0x78, 0x87, 0xc5, 0x76, 0x9a, 0x83, 0x4b, 0xb9, 0x37, 0xaf, 0x9c, 0x8f, + 0xf2, 0xed, 0x00, 0x0e, 0x7d, 0xe9, 0xf5, 0x03, 0x32, 0x6d, 0x13, 0x53, + 0xd1, 0xf3, 0x20, 0x88, 0xe6, 0x74, 0xd8, 0xa8, 0xeb, 0x91, 0x26, 0x4f, + 0x1b, 0x47, 0x3c, 0x57, 0x65, 0xe0, 0x5b, 0xa3, 0xa2, 0x5e, 0xe3, 0x5c, + 0x8a, 0x2f, 0x26, 0x68, 0x4a, 0x18, 0x1a, 0x20, 0x00, 0x61, 0xf5, 0xea, + 0x70, 0x7f, 0x5a, 0xd2, 0xf1, 0x3f, 0x8f, 0x74, 0x59, 0x2f, 0xe3, 0xb2, + 0xb7, 0xb3, 0x89, 0x92, 0x01, 0x93, 0x2a, 0xa6, 0x0e, 0xe1, 0xc0, 0x00, + 0x8f, 0xaf, 0x6a, 0xc3, 0xf1, 0x35, 0xde, 0x91, 0xe2, 0x2d, 0x1e, 0x4b, + 0xdf, 0xed, 0x4b, 0x18, 0x27, 0x8e, 0x3c, 0x46, 0x89, 0x1e, 0xd2, 0x48, + 0xf5, 0x38, 0xc9, 0x3f, 0x35, 0x3d, 0x7a, 0x0d, 0x33, 0x23, 0x54, 0x6f, + 0xb3, 0xd9, 0xdb, 0x6a, 0x5a, 0x66, 0x8c, 0xb8, 0x65, 0x2a, 0xd3, 0x48, + 0xa1, 0xb0, 0x77, 0x0c, 0x10, 0xa3, 0xa0, 0xed, 0x4b, 0xab, 0xe8, 0x5a, + 0xb4, 0x88, 0x35, 0x3b, 0xdb, 0x6f, 0x3e, 0x59, 0x62, 0xdc, 0xeb, 0x14, + 0x47, 0x64, 0x3e, 0x9c, 0xf7, 0xe2, 0xac, 0x58, 0x49, 0xae, 0xd8, 0xd9, + 0x26, 0x97, 0x67, 0x0a, 0x5d, 0xd8, 0x03, 0xb4, 0xdc, 0x28, 0x3b, 0x4e, + 0x7b, 0xfc, 0xdc, 0x0e, 0xb5, 0xdf, 0x5a, 0xde, 0x3e, 0x9f, 0x14, 0x11, + 0x5e, 0xde, 0x84, 0xb3, 0x71, 0xe5, 0x98, 0x96, 0x45, 0x04, 0x63, 0x20, + 0x93, 0xd7, 0x3f, 0x85, 0x27, 0x67, 0xb8, 0xcf, 0x2b, 0xbe, 0xf0, 0xfd, + 0xa5, 0x97, 0x87, 0x9e, 0xf7, 0xfb, 0x72, 0xd6, 0x6b, 0xdd, 0xea, 0xa6, + 0xcd, 0x01, 0xce, 0x0f, 0x3b, 0x85, 0x7a, 0x07, 0x84, 0xfc, 0x7f, 0xaa, + 0xf8, 0x6b, 0x48, 0x92, 0x2d, 0x5e, 0xce, 0x4b, 0x9b, 0x55, 0x8c, 0x1b, + 0x59, 0x83, 0x61, 0x4e, 0x07, 0xdd, 0x04, 0x8a, 0xc3, 0xf1, 0x67, 0x82, + 0x7c, 0x39, 0x16, 0x97, 0xa8, 0xea, 0xfa, 0x6e, 0xbc, 0xb8, 0x8e, 0x40, + 0xab, 0x6c, 0xee, 0x09, 0xe9, 0xf9, 0xf3, 0x4f, 0xba, 0xd4, 0xee, 0xfc, + 0x4b, 0xe1, 0xab, 0x1d, 0x0f, 0x4d, 0xb6, 0x3b, 0x92, 0x25, 0x5d, 0xc4, + 0x00, 0xa0, 0x63, 0x9e, 0x4f, 0x35, 0x29, 0x34, 0xf4, 0x0d, 0x8c, 0xbd, + 0x0f, 0xc6, 0x90, 0xde, 0x78, 0x9b, 0x56, 0x97, 0x54, 0xd3, 0x16, 0xe3, + 0x4e, 0xbe, 0x99, 0xa5, 0x96, 0x34, 0x5e, 0x55, 0xbb, 0x62, 0xb9, 0x9f, + 0x13, 0x5b, 0x69, 0x56, 0xfa, 0x92, 0xb6, 0x95, 0x21, 0x92, 0x07, 0x5d, + 0xcc, 0x46, 0x70, 0x18, 0xf2, 0x40, 0xcf, 0xa7, 0x4a, 0x76, 0xa3, 0xa6, + 0xde, 0x78, 0x3b, 0xc4, 0x33, 0xe9, 0xb7, 0x01, 0x64, 0x6c, 0x24, 0x8e, + 0x9b, 0x88, 0x57, 0x53, 0xce, 0x0f, 0x4a, 0xa1, 0xab, 0x6a, 0x02, 0xe2, + 0x65, 0x58, 0xed, 0xa3, 0xb6, 0x08, 0xcc, 0x55, 0x63, 0x39, 0x18, 0x3d, + 0x81, 0xaa, 0xb8, 0x9e, 0xda, 0x92, 0xda, 0x6a, 0x52, 0xc7, 0x2c, 0x4a, + 0x24, 0x60, 0xb1, 0x8c, 0x27, 0x1c, 0x1e, 0xf8, 0x23, 0xbd, 0x49, 0xab, + 0x3c, 0xd7, 0x44, 0xdd, 0x98, 0xdc, 0xa9, 0x20, 0x17, 0x31, 0xe0, 0x7b, + 0x01, 0x8f, 0xa5, 0x65, 0x19, 0x65, 0x52, 0x92, 0x10, 0xcb, 0xdd, 0x1b, + 0x18, 0xe9, 0xe9, 0x57, 0x6f, 0xbc, 0x47, 0x35, 0xce, 0x8f, 0x69, 0xa7, + 0x3c, 0x31, 0xa0, 0xb7, 0x62, 0xde, 0x62, 0xe7, 0x2f, 0x9f, 0x5a, 0x11, + 0x17, 0x25, 0xd3, 0x27, 0x9c, 0xea, 0x10, 0x25, 0x93, 0x4e, 0x1d, 0x88, + 0xc8, 0x8f, 0x92, 0x7e, 0x80, 0x57, 0x6f, 0x7b, 0xe1, 0x6b, 0x38, 0xb4, + 0xb6, 0xd5, 0x52, 0xe6, 0x49, 0xcc, 0xb3, 0xaa, 0xa4, 0x79, 0x21, 0xc9, + 0x3c, 0x96, 0x20, 0xf3, 0xc0, 0xc8, 0xaf, 0x3b, 0xd1, 0xb5, 0xfb, 0xad, + 0x17, 0x52, 0x86, 0xfa, 0xce, 0x4f, 0x2e, 0xe2, 0x23, 0x95, 0x6c, 0x66, + 0xbd, 0x33, 0xc3, 0x7e, 0x39, 0xd2, 0x2f, 0x6c, 0xee, 0xed, 0xb5, 0x7b, + 0x05, 0x92, 0xe0, 0xfe, 0xfa, 0x3b, 0x98, 0xd0, 0x07, 0x0e, 0x7a, 0x8c, + 0x77, 0xfc, 0x2a, 0xa2, 0xfb, 0x82, 0x3d, 0xcb, 0x42, 0x8e, 0x58, 0xb4, + 0x8b, 0x7d, 0xd7, 0x62, 0xe5, 0x0c, 0x4b, 0xb1, 0xb6, 0x05, 0xc2, 0xe0, + 0x62, 0xb1, 0x93, 0xc5, 0x69, 0x1d, 0xc4, 0x89, 0x74, 0x8a, 0xb3, 0xab, + 0xb2, 0x85, 0x20, 0xaf, 0x00, 0x9e, 0xe7, 0x8f, 0x4a, 0xe3, 0xbc, 0x25, + 0xe3, 0x99, 0xde, 0x48, 0xac, 0x19, 0x44, 0xf0, 0x4b, 0xbb, 0xc9, 0x68, + 0xd8, 0x2e, 0xc3, 0xdc, 0x1c, 0xf6, 0xe6, 0xa6, 0x78, 0x34, 0x5d, 0x2f, + 0x5b, 0x92, 0xef, 0x58, 0xd5, 0xe3, 0x95, 0x65, 0x57, 0x22, 0x12, 0xc4, + 0xe1, 0x81, 0xe3, 0x3d, 0x78, 0xad, 0x34, 0x19, 0xea, 0x16, 0xf7, 0x49, + 0x71, 0x1a, 0xbc, 0x7f, 0xc4, 0x33, 0x8a, 0xcd, 0xd6, 0x35, 0xd9, 0xf4, + 0xe6, 0x91, 0x61, 0xd2, 0xee, 0x6e, 0x42, 0x20, 0x76, 0x95, 0x00, 0xd8, + 0xbd, 0x7f, 0x13, 0xd3, 0xb5, 0x65, 0x69, 0x5e, 0x2c, 0xd1, 0x2f, 0xe2, + 0x80, 0x59, 0x4d, 0x1a, 0x49, 0x20, 0x03, 0x61, 0x05, 0x70, 0x3b, 0xfe, + 0x15, 0xcf, 0xf8, 0xcf, 0xc4, 0xf7, 0xda, 0x63, 0x35, 0xa6, 0x9e, 0xd3, + 0x49, 0x62, 0xaa, 0x3c, 0xe9, 0xc1, 0xdc, 0x72, 0x7b, 0x6e, 0xeb, 0x4a, + 0x72, 0xb2, 0xb8, 0xce, 0x63, 0xc4, 0x9f, 0x14, 0x35, 0x05, 0xba, 0x9e, + 0xd6, 0xc9, 0x5b, 0xec, 0xe1, 0x59, 0x26, 0x69, 0x53, 0x96, 0xdd, 0xd7, + 0x82, 0x4e, 0x31, 0x5c, 0x0c, 0xda, 0xcc, 0xcd, 0xf7, 0x95, 0x9a, 0x16, + 0xe4, 0xe3, 0xa6, 0x2b, 0x5b, 0xc4, 0x5a, 0x8d, 0xb2, 0xc0, 0x25, 0x8d, + 0x7c, 0xbb, 0xc9, 0x79, 0x9d, 0x25, 0x40, 0xdb, 0xf3, 0xdf, 0x27, 0x9a, + 0xe3, 0xdb, 0x50, 0x6e, 0x17, 0x2c, 0xb1, 0x80, 0x40, 0x5e, 0xbd, 0x6b, + 0x95, 0xab, 0xbb, 0xb1, 0xdc, 0x6d, 0xe4, 0x80, 0xcf, 0xb9, 0x0e, 0x10, + 0xb6, 0x17, 0x23, 0x14, 0xe6, 0xd4, 0x2e, 0x88, 0x30, 0xb4, 0xef, 0x93, + 0x80, 0x4b, 0x37, 0x50, 0x3a, 0x53, 0x1a, 0xe9, 0x64, 0xd8, 0x80, 0x2e, + 0x10, 0xf0, 0xf8, 0xc5, 0x57, 0xb8, 0x0f, 0x3c, 0xc6, 0x53, 0x8e, 0x4f, + 0x6e, 0x33, 0x57, 0x17, 0x61, 0x33, 0x46, 0x28, 0xe1, 0xbd, 0x85, 0x6d, + 0x23, 0x90, 0x19, 0xdc, 0xe4, 0x6e, 0x50, 0x39, 0xcf, 0x4d, 0xd9, 0xaa, + 0x77, 0xd6, 0x6f, 0x61, 0x75, 0xf6, 0x72, 0x72, 0xca, 0x32, 0x4a, 0x9c, + 0x83, 0x50, 0x12, 0xd1, 0x7c, 0xa0, 0x80, 0xc0, 0xe7, 0x22, 0x9a, 0x2f, + 0x26, 0x00, 0xee, 0x62, 0x49, 0xe3, 0x27, 0x9e, 0x2a, 0xdc, 0xb4, 0xd3, + 0x71, 0x17, 0xb4, 0x99, 0x50, 0x5c, 0xf9, 0xb2, 0x36, 0x4a, 0x10, 0xdf, + 0x36, 0x48, 0x6e, 0x7a, 0x57, 0xb4, 0x5b, 0xea, 0x97, 0x3a, 0xb5, 0x9f, + 0xdb, 0x74, 0x8b, 0xd8, 0x0d, 0xa8, 0x45, 0x59, 0xec, 0x7a, 0x30, 0xda, + 0x39, 0x20, 0x1e, 0xde, 0xf5, 0xe0, 0xa2, 0x52, 0x01, 0xf9, 0x8e, 0x0d, + 0x6b, 0x68, 0x77, 0xf2, 0x5a, 0x5e, 0x47, 0x3a, 0x4e, 0xb1, 0x18, 0xd8, + 0x75, 0x3d, 0x46, 0x7b, 0xd0, 0x9b, 0x5a, 0xb0, 0x47, 0x59, 0x79, 0xac, + 0x8b, 0x3d, 0x42, 0x69, 0xf4, 0xf4, 0x21, 0xdc, 0xe7, 0xcc, 0x27, 0x38, + 0x6e, 0xf5, 0x9a, 0x2f, 0x26, 0xf3, 0xdd, 0xe5, 0x99, 0xb7, 0x4a, 0xd9, + 0x63, 0x9e, 0xbf, 0x8d, 0x59, 0xd5, 0x75, 0x9b, 0x79, 0x2f, 0x16, 0x7b, + 0x18, 0xf6, 0xc6, 0xc0, 0x12, 0x24, 0x50, 0x46, 0xee, 0xf8, 0xf6, 0xac, + 0x99, 0x24, 0x91, 0xc9, 0x72, 0xe0, 0x82, 0x48, 0xe0, 0xe7, 0xf4, 0xfc, + 0x6b, 0x9a, 0x72, 0x6d, 0xb4, 0xf6, 0x28, 0xea, 0x21, 0xd3, 0x6c, 0xe5, + 0xb1, 0x86, 0xe7, 0xfb, 0x43, 0xce, 0x98, 0xbe, 0x1a, 0xd9, 0x78, 0xda, + 0x47, 0xa9, 0x3c, 0x57, 0x69, 0xe0, 0xc8, 0x2d, 0x2e, 0xa4, 0x11, 0x5d, + 0x28, 0x90, 0xc2, 0x71, 0xe5, 0xca, 0x48, 0x54, 0x63, 0xfe, 0xcf, 0x43, + 0xd2, 0xbc, 0xbe, 0xc6, 0xfc, 0x5a, 0xaa, 0x8d, 0xfb, 0x95, 0xe4, 0xf9, + 0x97, 0xa6, 0x40, 0xad, 0x8d, 0x3b, 0xc4, 0x17, 0x70, 0xdd, 0x15, 0x8e, + 0x56, 0x92, 0x06, 0x70, 0x70, 0xe7, 0xa1, 0x07, 0xf5, 0xad, 0xa9, 0xd4, + 0x8c, 0x35, 0x13, 0x57, 0x3d, 0xbd, 0xb4, 0x9d, 0x0e, 0xce, 0x07, 0x49, + 0xad, 0x6d, 0x22, 0x8c, 0xae, 0x48, 0x6c, 0x72, 0x3d, 0xb3, 0xf8, 0xd7, + 0x13, 0xa8, 0x0f, 0x0e, 0xd9, 0xce, 0xb3, 0xe8, 0xfe, 0x64, 0x17, 0x0a, + 0x0e, 0xe0, 0x32, 0x54, 0x9e, 0xdd, 0x73, 0x59, 0x6f, 0xad, 0xda, 0x5f, + 0xa2, 0xce, 0x11, 0x15, 0xe1, 0x23, 0x72, 0x1c, 0x90, 0x7d, 0xaa, 0xbc, + 0xa2, 0xea, 0xf2, 0x4d, 0xd0, 0x59, 0x4e, 0xb1, 0xb7, 0x20, 0x05, 0xc0, + 0x6a, 0xc2, 0xa6, 0x2e, 0x75, 0x1f, 0x2c, 0x22, 0x52, 0x82, 0x44, 0xcb, + 0xad, 0x47, 0x71, 0xe7, 0x1b, 0x8b, 0x68, 0xa6, 0x2c, 0x85, 0x59, 0x97, + 0xef, 0x67, 0xd7, 0x35, 0xc9, 0x5c, 0x9c, 0x5e, 0x16, 0xce, 0xd2, 0x9f, + 0x30, 0x01, 0xb8, 0xc5, 0x6d, 0x4f, 0xe1, 0xdd, 0x6a, 0x3b, 0x5b, 0xbb, + 0x96, 0xb5, 0xd8, 0x91, 0xf5, 0x52, 0xdc, 0xd7, 0x30, 0xf2, 0x44, 0x15, + 0x94, 0xc4, 0xe2, 0x60, 0xd8, 0xeb, 0xd2, 0x8b, 0x4a, 0xde, 0xfa, 0x03, + 0x79, 0xad, 0xf5, 0x0f, 0x3a, 0xd6, 0xf5, 0xef, 0x03, 0x40, 0x08, 0x2b, + 0xb0, 0x72, 0x9f, 0x85, 0x7a, 0xff, 0x00, 0x86, 0xf5, 0x7b, 0x6b, 0xdb, + 0x34, 0x81, 0x2e, 0xe2, 0x99, 0xd1, 0x46, 0x36, 0xe4, 0x12, 0x3d, 0xc7, + 0xad, 0x78, 0x4a, 0x5d, 0xed, 0x82, 0x34, 0x81, 0xe7, 0x13, 0x8c, 0x83, + 0xcf, 0xcb, 0x83, 0xe9, 0xfa, 0xd5, 0xad, 0x13, 0x59, 0xd4, 0x74, 0x7b, + 0x90, 0xf0, 0x47, 0xb5, 0xb2, 0x33, 0xb8, 0xd7, 0x4d, 0x3a, 0xf1, 0x83, + 0x22, 0x51, 0xb9, 0xf4, 0x45, 0x21, 0xaf, 0x2c, 0xb1, 0xf1, 0xde, 0xa5, + 0x7d, 0x72, 0x23, 0xfb, 0x46, 0xc6, 0xdd, 0xf7, 0x00, 0x19, 0x39, 0xed, + 0x56, 0x35, 0x2d, 0x72, 0xfe, 0xe5, 0x4a, 0x5c, 0x16, 0x88, 0xdb, 0x3e, + 0xd0, 0x33, 0x82, 0x4f, 0x73, 0x8f, 0xc2, 0xb7, 0x78, 0xb5, 0xcb, 0xcc, + 0x91, 0x3c, 0x8e, 0xe7, 0xa4, 0x91, 0x4d, 0x35, 0x81, 0x06, 0xbd, 0x6b, + 0xa7, 0x68, 0x96, 0x8d, 0x3d, 0xc7, 0x9d, 0x23, 0x46, 0x3b, 0xf2, 0x4d, + 0x69, 0x69, 0x1a, 0x88, 0xd5, 0x2c, 0xbe, 0xd0, 0x17, 0x8d, 0xc4, 0x02, + 0x07, 0x07, 0x9e, 0xd5, 0xd7, 0x19, 0xa7, 0x62, 0x0b, 0x84, 0x52, 0x62, + 0x9e, 0x69, 0xb8, 0xad, 0x04, 0x33, 0x14, 0x84, 0x71, 0x52, 0x62, 0x9a, + 0x47, 0x14, 0xee, 0x21, 0x71, 0x46, 0x29, 0xf8, 0xa3, 0x6d, 0x2b, 0x81, + 0x16, 0x29, 0x08, 0xa9, 0x08, 0xa6, 0x91, 0xd7, 0xdb, 0x9a, 0x77, 0x11, + 0x9f, 0xa9, 0xdf, 0x0d, 0x3a, 0xd8, 0x4e, 0xca, 0xa5, 0x77, 0x85, 0x25, + 0x9b, 0x18, 0xfd, 0x0d, 0x52, 0xbc, 0xd6, 0x22, 0x6b, 0x20, 0x6d, 0x25, + 0xf9, 0xd8, 0xf2, 0xc3, 0x8c, 0x62, 0xb1, 0x3c, 0x41, 0xa8, 0xbd, 0xea, + 0x4d, 0x0b, 0xe3, 0xec, 0xea, 0xdf, 0x22, 0x0e, 0x0e, 0x47, 0xae, 0x6b, + 0x12, 0xc7, 0xcd, 0x7b, 0x29, 0x51, 0xdb, 0x0c, 0x58, 0xe0, 0x0c, 0xe0, + 0x57, 0x89, 0x88, 0xc7, 0xca, 0x4e, 0x50, 0x86, 0xc7, 0x4d, 0x3a, 0x4b, + 0x46, 0xcb, 0x5a, 0x85, 0xfc, 0xb2, 0xf1, 0xe6, 0x3b, 0x3e, 0x33, 0x92, + 0x7a, 0xd6, 0x38, 0x95, 0x67, 0x05, 0x48, 0xcb, 0x03, 0x92, 0x47, 0x38, + 0xad, 0x19, 0x63, 0x58, 0xe2, 0x61, 0x2b, 0x64, 0xf4, 0x18, 0x1c, 0xe2, + 0xa8, 0xc0, 0xa2, 0x14, 0x95, 0xb0, 0x46, 0x4f, 0x41, 0xcd, 0x79, 0x52, + 0x6f, 0x56, 0x74, 0x58, 0xa9, 0x71, 0x98, 0xe1, 0x21, 0x08, 0x27, 0xae, + 0x3b, 0x9a, 0xa4, 0x24, 0x47, 0x4c, 0x0e, 0x77, 0x2e, 0x19, 0x47, 0x6a, + 0xd0, 0xb9, 0x65, 0x00, 0x48, 0x01, 0x3b, 0xba, 0x81, 0xc5, 0x65, 0x6e, + 0x0b, 0x2b, 0x66, 0x26, 0xdd, 0xc9, 0x14, 0x53, 0x4f, 0x76, 0x84, 0x4b, + 0x10, 0x68, 0xd5, 0x13, 0x98, 0xd1, 0xbf, 0x8c, 0x8c, 0xe7, 0xd0, 0x7b, + 0x55, 0x45, 0xbb, 0xb8, 0x92, 0xf1, 0xda, 0x35, 0xf2, 0xe3, 0x5e, 0xe3, + 0xfc, 0x69, 0x2f, 0x2e, 0x9d, 0x9e, 0x16, 0x28, 0x47, 0x97, 0xdf, 0x3f, + 0x7b, 0xd2, 0xb3, 0xde, 0xf8, 0x09, 0x55, 0x0f, 0xfa, 0xac, 0xf2, 0x01, + 0xc5, 0x6d, 0x6d, 0x34, 0x42, 0x96, 0x86, 0x93, 0xea, 0x86, 0x57, 0xf2, + 0xa4, 0x79, 0x0c, 0x87, 0x8c, 0x9a, 0x75, 0xbe, 0xa6, 0xe6, 0x5d, 0x9b, + 0x59, 0xd9, 0x4f, 0xcb, 0xdc, 0x9a, 0x8e, 0xd5, 0x52, 0xe1, 0x64, 0x74, + 0x68, 0x54, 0x93, 0xc6, 0x7a, 0xe2, 0xa4, 0x82, 0xef, 0x4f, 0xb6, 0x65, + 0x75, 0x76, 0x32, 0x0e, 0xa7, 0x1c, 0x8a, 0xcd, 0xb6, 0xf7, 0x57, 0x62, + 0x48, 0x75, 0xff, 0x00, 0xda, 0xda, 0x11, 0x2b, 0xf5, 0x6e, 0x36, 0x28, + 0xeb, 0x4e, 0xd3, 0x21, 0x4f, 0xb3, 0xf9, 0xce, 0xdf, 0xbc, 0xe9, 0x82, + 0x70, 0x05, 0x57, 0x17, 0xbe, 0x64, 0xcc, 0x12, 0x6c, 0x90, 0x49, 0x01, + 0xfb, 0xd4, 0x5f, 0xda, 0x13, 0x3c, 0xe5, 0x23, 0x4c, 0x31, 0x3b, 0x42, + 0x91, 0x80, 0x69, 0xc5, 0x49, 0xae, 0x51, 0xdc, 0xd4, 0xb9, 0x87, 0x39, + 0xb8, 0x77, 0x0d, 0x8c, 0x0d, 0xad, 0xdf, 0xe9, 0x55, 0x2f, 0xf6, 0xb4, + 0xe4, 0xed, 0x58, 0x37, 0x60, 0xa9, 0x1d, 0x0d, 0x53, 0x92, 0xe4, 0xbc, + 0xdb, 0x5d, 0x9b, 0x83, 0xf3, 0x63, 0x93, 0xf8, 0x55, 0xa4, 0x68, 0xf5, + 0x08, 0xe3, 0x85, 0xe2, 0x99, 0x36, 0x12, 0x03, 0xe4, 0x1e, 0x7f, 0xc2, + 0xba, 0xe9, 0xae, 0x58, 0x34, 0x4b, 0xd5, 0x94, 0xe7, 0x12, 0x82, 0x89, + 0x22, 0xe5, 0x4f, 0x52, 0xa3, 0x26, 0xb5, 0xec, 0x2d, 0x05, 0xc4, 0x91, + 0xbb, 0xbb, 0x79, 0x6a, 0x85, 0x59, 0x48, 0xc8, 0xff, 0x00, 0xeb, 0x56, + 0x85, 0xb5, 0xa4, 0x16, 0xf0, 0xac, 0x71, 0x82, 0xc8, 0x98, 0xfb, 0xc7, + 0x27, 0xdc, 0xd5, 0xa9, 0x6e, 0x61, 0x46, 0x01, 0x00, 0x4d, 0xc7, 0xe6, + 0x6c, 0x01, 0xcd, 0x61, 0x39, 0x47, 0x97, 0x42, 0x95, 0xca, 0xe1, 0x22, + 0x85, 0x01, 0x42, 0x17, 0x8f, 0xb9, 0xc9, 0xcf, 0xbd, 0x57, 0x40, 0xf2, + 0x07, 0x96, 0x74, 0xdd, 0x16, 0x48, 0x0c, 0x78, 0xcd, 0x59, 0x49, 0xb0, + 0xe5, 0x8b, 0x23, 0x00, 0x79, 0x62, 0x6a, 0x9c, 0xd7, 0x68, 0x91, 0xee, + 0x66, 0xf9, 0x24, 0x6d, 0xbc, 0xb6, 0x39, 0xac, 0xe2, 0xda, 0x7d, 0xca, + 0x7b, 0x14, 0xcb, 0x5b, 0xba, 0xbf, 0x9c, 0x92, 0x44, 0xc0, 0xff, 0x00, + 0x0f, 0xdd, 0x02, 0xa4, 0x9a, 0x48, 0x20, 0xdb, 0x14, 0x6c, 0x01, 0x23, + 0x82, 0x4e, 0x01, 0xfc, 0x69, 0xf3, 0x14, 0x82, 0xd0, 0xb2, 0xfe, 0xf9, + 0x1d, 0x81, 0x2a, 0xad, 0xd7, 0xb0, 0x15, 0x91, 0xa8, 0x5f, 0xb5, 0xf4, + 0xdb, 0x1a, 0xcf, 0x2e, 0xbd, 0x36, 0xae, 0x30, 0x3d, 0xeb, 0x5f, 0x67, + 0x4e, 0x6b, 0x4b, 0xa6, 0x66, 0xdb, 0xb9, 0x7b, 0xcb, 0xb0, 0x76, 0xf3, + 0xa4, 0x1b, 0x24, 0x07, 0x90, 0xc7, 0xad, 0x5d, 0x68, 0x6d, 0x52, 0x35, + 0x9b, 0xcb, 0xca, 0x91, 0xc6, 0xd1, 0x8a, 0xe2, 0xe4, 0x33, 0x5c, 0x5d, + 0x79, 0x72, 0xbf, 0x96, 0xbf, 0xdd, 0x5e, 0x71, 0x8a, 0xb7, 0x69, 0xaf, + 0xc9, 0x6d, 0x98, 0x99, 0xcb, 0x0c, 0xe0, 0x93, 0xe9, 0x58, 0xce, 0x8c, + 0xba, 0x30, 0xb9, 0xd3, 0xc7, 0x7d, 0x64, 0x4f, 0x92, 0x63, 0xcc, 0xa5, + 0x72, 0x09, 0xed, 0x51, 0x5c, 0x6b, 0x96, 0xf0, 0x5a, 0x9c, 0x0c, 0xe3, + 0x83, 0xd8, 0x67, 0xda, 0x90, 0xdc, 0x58, 0x5d, 0x58, 0x97, 0xb5, 0x55, + 0x2e, 0xb8, 0xcb, 0xa8, 0xf9, 0x97, 0xf1, 0xac, 0x5b, 0xdb, 0x48, 0x6e, + 0x67, 0xb6, 0xb5, 0xf2, 0x9d, 0x27, 0x2c, 0x1d, 0xe4, 0x2d, 0x9c, 0x2f, + 0xd3, 0xb5, 0x55, 0x3a, 0x2a, 0x7a, 0xcb, 0x4b, 0x05, 0xc4, 0x98, 0xda, + 0x6b, 0x04, 0xad, 0x9c, 0x52, 0x09, 0xba, 0xb1, 0xed, 0xef, 0xc5, 0x6b, + 0x78, 0x6f, 0x4e, 0x22, 0x29, 0x12, 0x7c, 0xa9, 0x0d, 0xc2, 0xb2, 0xf1, + 0xf5, 0x15, 0x61, 0x56, 0x2b, 0x28, 0x04, 0x76, 0xd2, 0x24, 0x6d, 0x80, + 0x08, 0xd8, 0x32, 0xdf, 0x88, 0xaa, 0xad, 0xa8, 0x14, 0xbe, 0x48, 0xd6, + 0x35, 0xdc, 0xdc, 0x06, 0x79, 0x78, 0x07, 0xfa, 0x53, 0x6d, 0xbd, 0x3a, + 0x0e, 0xdd, 0x4e, 0x95, 0xb4, 0xe9, 0x2e, 0x53, 0x04, 0x24, 0xb0, 0x21, + 0xfe, 0x31, 0x92, 0x7d, 0xbb, 0xe2, 0x9d, 0x3b, 0x4a, 0x96, 0x89, 0x6c, + 0x93, 0xcb, 0x0d, 0xb1, 0x05, 0x7c, 0xb4, 0x6c, 0xa9, 0xf6, 0xac, 0x44, + 0xf1, 0x25, 0xd5, 0xad, 0xc8, 0x47, 0x8d, 0x64, 0x8b, 0x18, 0x0e, 0xb5, + 0x62, 0x5b, 0xf9, 0xee, 0x63, 0x69, 0x2d, 0xa2, 0xcf, 0x66, 0x45, 0xc1, + 0x3f, 0x5c, 0x51, 0x4e, 0x75, 0x29, 0xbd, 0x1e, 0x83, 0x69, 0x32, 0x98, + 0xc4, 0x2c, 0xf6, 0x6f, 0x18, 0x9c, 0x31, 0x3b, 0x54, 0xf1, 0xb0, 0x7b, + 0x9a, 0x8d, 0xad, 0xaf, 0x02, 0xb5, 0xb4, 0xae, 0x65, 0xb7, 0xeb, 0x1e, + 0x4e, 0x71, 0xed, 0x57, 0xe1, 0xd4, 0x3e, 0xd3, 0x24, 0x0b, 0x33, 0xc0, + 0x18, 0xae, 0x01, 0x43, 0x8c, 0x11, 0xc7, 0xcd, 0xe9, 0x51, 0xdf, 0x9b, + 0x7b, 0x78, 0xe3, 0x94, 0xc9, 0x82, 0xf9, 0xc2, 0xee, 0x38, 0x3f, 0x8d, + 0x6f, 0x38, 0x34, 0xfc, 0x98, 0x96, 0xc6, 0x16, 0xa3, 0x6d, 0x12, 0x41, + 0x0a, 0xe1, 0x4c, 0x8e, 0xc3, 0x69, 0xcf, 0x4a, 0x45, 0xd2, 0xee, 0xee, + 0x6e, 0x1a, 0x68, 0xa2, 0x55, 0x89, 0x58, 0x29, 0x2a, 0xdd, 0xeb, 0x62, + 0x4b, 0x34, 0xbf, 0x81, 0x62, 0x59, 0x13, 0xef, 0x06, 0x03, 0x70, 0x18, + 0x1d, 0xb9, 0xaa, 0x2b, 0x67, 0x7b, 0x03, 0xc8, 0x55, 0x91, 0x91, 0x7a, + 0xae, 0x4e, 0x0d, 0x42, 0xa9, 0x68, 0x59, 0x6e, 0x51, 0x38, 0xb0, 0x91, + 0x7e, 0x69, 0x67, 0x0d, 0xe5, 0x83, 0x94, 0x3c, 0x64, 0x54, 0x57, 0x70, + 0xc5, 0x0d, 0xb2, 0xc8, 0x25, 0x07, 0x07, 0xa2, 0x9c, 0x82, 0x2a, 0x95, + 0xcc, 0x57, 0x8a, 0x5e, 0x69, 0x63, 0x68, 0xad, 0x8e, 0x1c, 0xfc, 0xc4, + 0x81, 0x9e, 0xc0, 0xd5, 0xed, 0x2a, 0xdd, 0x6f, 0x2c, 0xe4, 0xb6, 0x92, + 0x45, 0x2b, 0xb4, 0xf9, 0x44, 0x8c, 0x9c, 0x93, 0x51, 0xcb, 0x24, 0xb9, + 0x9b, 0x05, 0xa9, 0x14, 0x33, 0xcb, 0x7e, 0x8d, 0x18, 0x52, 0x91, 0x60, + 0x80, 0xe0, 0x01, 0xce, 0x2a, 0xb5, 0xb6, 0x93, 0x77, 0xbd, 0xbc, 0xd1, + 0x22, 0xaf, 0x62, 0xdd, 0x6b, 0x76, 0xc2, 0xec, 0x69, 0xf1, 0x1b, 0x69, + 0x92, 0x26, 0x94, 0x0d, 0xb8, 0x1c, 0xfe, 0x35, 0x6a, 0x6b, 0xc0, 0x13, + 0x7f, 0x13, 0x37, 0x07, 0x68, 0xe9, 0x49, 0xc9, 0xed, 0x61, 0xa4, 0x8c, + 0x2d, 0x4e, 0xca, 0x49, 0x6f, 0x2c, 0xc5, 0xd3, 0x17, 0x65, 0x84, 0x2a, + 0x36, 0x38, 0x1d, 0xf9, 0xfc, 0xea, 0xc6, 0x9f, 0xa6, 0x8d, 0x35, 0x50, + 0xc6, 0x56, 0x61, 0x23, 0x10, 0xed, 0x8e, 0x17, 0xda, 0xaf, 0x4d, 0xab, + 0xc4, 0x27, 0x85, 0x66, 0xf9, 0xa3, 0xdb, 0x9c, 0x01, 0x8c, 0x55, 0x51, + 0xab, 0x8b, 0x4b, 0xb6, 0x60, 0xc9, 0x86, 0x19, 0x20, 0xfd, 0xdc, 0x1f, + 0xc3, 0xad, 0x5c, 0x2e, 0xf4, 0x92, 0xd0, 0x24, 0x26, 0xa5, 0x0b, 0x4f, + 0x3a, 0x47, 0xe5, 0xc8, 0xab, 0xb7, 0x3b, 0xc7, 0x72, 0x2b, 0x2e, 0x6b, + 0xcb, 0x85, 0x26, 0x36, 0x2e, 0xbb, 0x71, 0x85, 0xc7, 0xad, 0x6b, 0xc7, + 0x7f, 0x2c, 0xc2, 0x57, 0x86, 0x40, 0x23, 0x0b, 0xbc, 0x97, 0x23, 0x3f, + 0x81, 0xfe, 0x95, 0x57, 0x53, 0xbd, 0x36, 0xa1, 0xe6, 0x8c, 0xc7, 0x70, + 0xaf, 0x12, 0x81, 0xc8, 0x05, 0x49, 0xe4, 0x1f, 0xd2, 0xaa, 0x8d, 0x3e, + 0x69, 0x34, 0xf6, 0x44, 0xb7, 0x62, 0x4d, 0x36, 0xf5, 0x4a, 0x6d, 0x73, + 0x96, 0x27, 0xbf, 0x3c, 0x55, 0xf9, 0xa4, 0x46, 0x68, 0xd6, 0x48, 0xce, + 0xfc, 0x1c, 0x70, 0x3a, 0x7a, 0x75, 0xae, 0x42, 0x2b, 0x98, 0x58, 0xe1, + 0x54, 0xa4, 0xc3, 0x07, 0x24, 0xf1, 0x9a, 0xd4, 0xfe, 0xd6, 0x58, 0xee, + 0x42, 0xdc, 0xe0, 0x1d, 0x98, 0x46, 0x8c, 0xe7, 0x24, 0x8c, 0x73, 0x58, + 0xce, 0x97, 0xbd, 0xa1, 0x49, 0x96, 0x80, 0x9d, 0x1a, 0x56, 0x46, 0x04, + 0x0e, 0x36, 0x11, 0xd0, 0x7b, 0xe6, 0xaa, 0xcd, 0x68, 0xf2, 0xce, 0xd1, + 0x46, 0xa0, 0xb9, 0x19, 0xc0, 0xe9, 0x9a, 0x96, 0xde, 0xf3, 0xca, 0xbb, + 0x5f, 0xb5, 0x02, 0x80, 0xfc, 0xb9, 0x6e, 0xe3, 0xd0, 0xd0, 0x67, 0x9e, + 0x39, 0x1c, 0x40, 0x37, 0xac, 0x4d, 0x9d, 0xc5, 0x00, 0x18, 0xa8, 0xd5, + 0x31, 0x19, 0x37, 0x09, 0x32, 0xcd, 0xb2, 0x36, 0x2c, 0x14, 0x00, 0x78, + 0xc7, 0x3e, 0x95, 0x3a, 0x59, 0x5d, 0xcd, 0x08, 0x08, 0x42, 0xfa, 0x93, + 0xc0, 0x15, 0x66, 0x20, 0x5e, 0x49, 0x04, 0xf3, 0xaa, 0x01, 0xca, 0xe0, + 0x67, 0x23, 0x34, 0x8d, 0xaa, 0x79, 0x57, 0x4d, 0x14, 0x52, 0x31, 0x5c, + 0x80, 0x02, 0xa8, 0xc6, 0x3b, 0xd6, 0xd7, 0x93, 0xd8, 0x3a, 0x8e, 0x8c, + 0x5c, 0xdb, 0x48, 0xa8, 0x6e, 0xb6, 0xed, 0x18, 0xc9, 0x3d, 0xfd, 0xa8, + 0x9e, 0xee, 0xf8, 0x90, 0x9f, 0x68, 0xde, 0x47, 0x24, 0x83, 0xde, 0xb2, + 0x2e, 0xf5, 0x39, 0xa6, 0xb9, 0xc3, 0x10, 0x48, 0xeb, 0x8e, 0xff, 0x00, + 0x5a, 0x9d, 0x2f, 0x56, 0xd2, 0x54, 0x69, 0x46, 0xf0, 0xc0, 0x10, 0x14, + 0xf0, 0x3e, 0xb4, 0xbd, 0x9b, 0xdd, 0x85, 0xce, 0x93, 0x4a, 0xd6, 0xae, + 0xde, 0x2d, 0x8d, 0x00, 0x60, 0x9c, 0x97, 0xea, 0x2b, 0x40, 0x5c, 0x89, + 0xee, 0x84, 0x12, 0xa7, 0x96, 0x0a, 0x6f, 0x0d, 0x8e, 0x30, 0x7d, 0x2b, + 0x3b, 0x47, 0xd7, 0x6d, 0xa6, 0x74, 0x56, 0x8f, 0x68, 0x55, 0x23, 0xe4, + 0xe0, 0x7e, 0x35, 0x62, 0xf7, 0x4f, 0x8e, 0xfa, 0xd9, 0xda, 0xcc, 0xb4, + 0x57, 0x20, 0x64, 0x60, 0x92, 0x08, 0xf4, 0xac, 0x1a, 0x51, 0x9f, 0xbc, + 0xac, 0x57, 0x4d, 0x0e, 0x7f, 0x5a, 0x84, 0x41, 0x74, 0xbb, 0x27, 0x47, + 0xc3, 0x65, 0x76, 0x0e, 0x7e, 0x95, 0x4e, 0xe6, 0x4b, 0x9b, 0xab, 0xb2, + 0xb2, 0x47, 0x20, 0xc7, 0x3e, 0x58, 0x04, 0x90, 0x29, 0x92, 0x09, 0x2d, + 0x27, 0x65, 0x97, 0x77, 0x9a, 0xad, 0xd7, 0x1d, 0x3f, 0x1a, 0xbd, 0x6f, + 0xad, 0x35, 0x93, 0x49, 0x3a, 0x46, 0x25, 0xb8, 0x90, 0x15, 0x79, 0x9c, + 0xf2, 0x41, 0x15, 0xe9, 0xd2, 0x9c, 0x5a, 0xb4, 0x99, 0x83, 0x4e, 0xe5, + 0x23, 0x23, 0x3b, 0xed, 0x40, 0xd1, 0xa3, 0x7d, 0xe5, 0x27, 0xa6, 0x29, + 0x59, 0x5b, 0xec, 0xe5, 0x8e, 0xcf, 0xbc, 0x71, 0xf3, 0x73, 0x4b, 0x6d, + 0xa9, 0x11, 0xbc, 0x08, 0xd5, 0xb3, 0x9f, 0x99, 0xc5, 0x41, 0x1d, 0xd4, + 0x2b, 0x2b, 0x32, 0x43, 0xb9, 0x8f, 0xd7, 0x8a, 0xc7, 0x9b, 0x57, 0xee, + 0x95, 0x72, 0xf5, 0xbd, 0xc5, 0xc0, 0xb7, 0x54, 0x89, 0x1b, 0xe5, 0x03, + 0x38, 0xec, 0x3f, 0xa5, 0x2c, 0xb3, 0xb8, 0x40, 0x43, 0x8d, 0xce, 0x40, + 0xc1, 0x1c, 0x83, 0x9a, 0x89, 0x1e, 0x40, 0x9e, 0x73, 0x33, 0x28, 0xf4, + 0xa7, 0xc9, 0x77, 0xe6, 0xbc, 0x32, 0x97, 0x09, 0x22, 0x48, 0x09, 0xe3, + 0xb7, 0xf5, 0xac, 0x9a, 0x4d, 0xe8, 0x86, 0x8b, 0x46, 0xdb, 0x72, 0x86, + 0x67, 0x39, 0x3e, 0xc3, 0xad, 0x6e, 0xf8, 0x5f, 0x4b, 0xd5, 0xaf, 0xaf, + 0x92, 0xd6, 0xdf, 0x68, 0x57, 0xfb, 0xce, 0x78, 0x00, 0x0a, 0xc7, 0x92, + 0xf1, 0x65, 0xca, 0xa2, 0x13, 0xfd, 0xd6, 0xc6, 0x3f, 0x1a, 0xd3, 0xb1, + 0xf1, 0x15, 0xee, 0x93, 0x75, 0x1c, 0x8a, 0x02, 0xe0, 0x60, 0x11, 0xc6, + 0xea, 0xce, 0x0a, 0xd2, 0x5c, 0xdb, 0x5c, 0x1f, 0x91, 0xe9, 0x6d, 0xe0, + 0x08, 0x64, 0x21, 0xdb, 0x51, 0x9d, 0x24, 0x07, 0x39, 0x8d, 0x40, 0x1f, + 0xae, 0x6b, 0x73, 0x4a, 0xd0, 0xe0, 0xd1, 0xd5, 0x84, 0x72, 0xcd, 0x29, + 0x7e, 0xf2, 0xb6, 0x71, 0xf4, 0xaf, 0x34, 0x87, 0xe2, 0x2e, 0xb3, 0x6b, + 0xb0, 0xb1, 0x8a, 0x78, 0xcb, 0xfc, 0xca, 0x79, 0x60, 0x33, 0x5d, 0x1c, + 0x3e, 0x3c, 0x8f, 0x50, 0xd6, 0xa2, 0x11, 0xc2, 0xe9, 0x67, 0x14, 0x6c, + 0x5f, 0x38, 0xc9, 0x38, 0xce, 0x7e, 0x9c, 0x57, 0xb7, 0x4a, 0x74, 0x6f, + 0x78, 0xad, 0x4c, 0x1a, 0x67, 0x75, 0x1c, 0x51, 0x23, 0x33, 0x2a, 0xa8, + 0x67, 0xea, 0x71, 0xd6, 0xbc, 0x7b, 0xc6, 0xf1, 0x4b, 0xa3, 0xea, 0x17, + 0xea, 0x64, 0x94, 0xc1, 0x2f, 0x31, 0x46, 0xaf, 0xc0, 0xfa, 0xfe, 0x75, + 0xa7, 0x3e, 0xaf, 0xa8, 0x5d, 0x2c, 0x31, 0xc7, 0x75, 0x29, 0xbc, 0x3f, + 0xbc, 0x8b, 0xcb, 0x93, 0xa0, 0xf7, 0x18, 0xf4, 0xae, 0x2f, 0xc4, 0xfe, + 0x22, 0x92, 0xe6, 0xdd, 0x6d, 0xae, 0x67, 0x17, 0x13, 0x2b, 0x16, 0xdf, + 0x8c, 0x1c, 0xfb, 0xfa, 0xd2, 0xaf, 0x52, 0xf1, 0xba, 0x43, 0x8a, 0xb1, + 0xcb, 0x09, 0xde, 0xe6, 0xf3, 0x0e, 0xc7, 0x61, 0x3f, 0x36, 0xd1, 0xc9, + 0xa9, 0xb5, 0x2b, 0xa9, 0x10, 0x18, 0x62, 0xba, 0x9c, 0xaa, 0x0c, 0x22, + 0x93, 0xd0, 0x1e, 0xb9, 0xaa, 0x3f, 0x69, 0x22, 0xe5, 0xe7, 0x62, 0x03, + 0x13, 0x9c, 0xa8, 0xc0, 0xa8, 0x67, 0xb9, 0xf3, 0x9c, 0xb1, 0xfb, 0xc7, + 0xa9, 0xf5, 0xae, 0x65, 0x37, 0x71, 0xbd, 0x82, 0x39, 0x9f, 0xcc, 0x50, + 0x72, 0xd8, 0x1c, 0x13, 0x5a, 0xb6, 0x77, 0x6c, 0xb7, 0x31, 0x4f, 0xb8, + 0xa1, 0x46, 0xc8, 0xdb, 0xd6, 0xb0, 0xda, 0x40, 0x5f, 0x83, 0xd2, 0xa7, + 0x8e, 0xed, 0xb0, 0x42, 0x64, 0x02, 0x73, 0x44, 0xaf, 0xba, 0x04, 0x7b, + 0x55, 0x9f, 0xc5, 0x7b, 0x4b, 0x38, 0x6d, 0xe0, 0x92, 0x17, 0x58, 0xd0, + 0x6d, 0x6e, 0x37, 0x31, 0xe3, 0xaf, 0xe7, 0x5c, 0x76, 0xb5, 0xaa, 0xdf, + 0x78, 0x92, 0x69, 0x75, 0x14, 0x92, 0x69, 0x2d, 0xd0, 0x9d, 0xe1, 0x88, + 0x50, 0xa3, 0xd8, 0x57, 0x23, 0x67, 0x73, 0x60, 0xd7, 0x51, 0xfd, 0xa9, + 0x25, 0x29, 0x9c, 0xb7, 0x96, 0xd8, 0x3f, 0xe7, 0xad, 0x77, 0x1a, 0x5e, + 0x8a, 0xde, 0x27, 0x8a, 0xe6, 0x2d, 0x3e, 0xcc, 0x25, 0xb2, 0x8e, 0x18, + 0x48, 0x72, 0x3d, 0xc8, 0x06, 0xb4, 0x8b, 0x73, 0x8d, 0xa4, 0x3e, 0xba, + 0x1c, 0xfe, 0x97, 0xab, 0xc3, 0xa5, 0x6a, 0x4d, 0x34, 0xb0, 0xfd, 0xa6, + 0x3d, 0xf8, 0x78, 0x99, 0xb8, 0x65, 0xef, 0x5e, 0xc9, 0xe0, 0xcd, 0x73, + 0x4d, 0xd4, 0x2d, 0x66, 0xb8, 0xd3, 0x7c, 0x31, 0x2c, 0x6a, 0xae, 0x14, + 0x98, 0x82, 0x1e, 0x7f, 0x12, 0x31, 0x5e, 0x23, 0x2d, 0xa4, 0x7a, 0x7e, + 0xaf, 0x25, 0xbb, 0xe1, 0xe5, 0x82, 0x4c, 0x65, 0x4e, 0x54, 0xe2, 0xb4, + 0x65, 0xf1, 0x7e, 0xa5, 0x6d, 0x3d, 0xd1, 0x81, 0x85, 0xb0, 0x9c, 0x80, + 0xeb, 0x10, 0xd9, 0x9c, 0x7d, 0x28, 0x8d, 0x4e, 0x5d, 0x10, 0xf9, 0x7b, + 0x9e, 0xf1, 0xad, 0x78, 0xa3, 0x49, 0x85, 0x8e, 0x99, 0x7c, 0xa6, 0x39, + 0x64, 0x4c, 0xb4, 0x72, 0xa0, 0x38, 0x1e, 0xbd, 0x70, 0x6b, 0xc9, 0x35, + 0x9d, 0x56, 0xce, 0x5d, 0x52, 0xe2, 0x78, 0x21, 0x95, 0xb4, 0xc6, 0xc4, + 0x42, 0x29, 0x1c, 0x86, 0x90, 0x8e, 0xe3, 0x8e, 0x05, 0x71, 0x57, 0x77, + 0x57, 0x37, 0x77, 0x3f, 0x6d, 0x7b, 0xaf, 0x32, 0x52, 0xdc, 0x96, 0x62, + 0x7f, 0x9d, 0x41, 0x7f, 0xab, 0x5c, 0xc8, 0x77, 0x4d, 0x21, 0x90, 0x91, + 0xc6, 0x0f, 0x03, 0xf0, 0xa2, 0x55, 0x9b, 0xd1, 0x0a, 0xd6, 0x19, 0x79, + 0x99, 0x0a, 0x2f, 0xcc, 0x81, 0x38, 0x44, 0x1c, 0x05, 0xcf, 0xd6, 0x99, + 0x68, 0x6d, 0x61, 0xdf, 0xe7, 0xca, 0x53, 0x62, 0xe7, 0x0a, 0xb9, 0x2c, + 0x6b, 0x25, 0xe5, 0x92, 0x56, 0x1c, 0x9f, 0xcf, 0xa5, 0x4e, 0x6c, 0xa4, + 0xf2, 0xc4, 0x99, 0x2c, 0x09, 0xfb, 0xc3, 0x9e, 0x2b, 0x36, 0x92, 0xdd, + 0x89, 0x3b, 0xec, 0x36, 0xe6, 0xe8, 0x34, 0x87, 0xcb, 0x04, 0x27, 0x6c, + 0xf5, 0xa4, 0x82, 0x70, 0x27, 0x8d, 0x99, 0xc8, 0x21, 0x81, 0xde, 0x3f, + 0x84, 0x7d, 0x3b, 0xd3, 0x64, 0x48, 0x22, 0x1f, 0x79, 0x9d, 0xb3, 0xf7, + 0x71, 0xda, 0x99, 0x1c, 0xa9, 0xe6, 0x64, 0xa1, 0x1c, 0xf6, 0xfe, 0x54, + 0xd5, 0x92, 0xf7, 0x50, 0x7a, 0x9d, 0x4c, 0x5a, 0x95, 0xa4, 0x17, 0xcf, + 0x70, 0x04, 0xf3, 0xdb, 0xab, 0xef, 0x79, 0x11, 0x76, 0x48, 0x73, 0x9c, + 0x90, 0x7a, 0x01, 0x93, 0xde, 0xb4, 0xee, 0x6f, 0xad, 0x6d, 0xbc, 0x3d, + 0x6b, 0x63, 0x6f, 0x7f, 0x76, 0x56, 0xe6, 0x20, 0x6e, 0x23, 0x6e, 0x51, + 0x86, 0xec, 0xe3, 0x39, 0xc6, 0x45, 0x70, 0xc6, 0xfe, 0x65, 0x85, 0xe0, + 0x59, 0x1d, 0x60, 0x73, 0x92, 0x9b, 0xb8, 0xa9, 0x45, 0xc4, 0x82, 0x28, + 0x3c, 0xa9, 0x9e, 0x4d, 0x83, 0x21, 0x59, 0x72, 0x14, 0xe7, 0xa7, 0xd2, + 0xad, 0x5d, 0x21, 0xdc, 0xd0, 0x5d, 0x47, 0x51, 0xd2, 0xef, 0x4c, 0xda, + 0x55, 0xec, 0x91, 0x60, 0xe5, 0x4c, 0x27, 0x07, 0x8f, 0x6a, 0xf4, 0xaf, + 0x0d, 0x7c, 0x4a, 0x9b, 0x5f, 0xb5, 0xba, 0xd3, 0xbc, 0x47, 0x1d, 0xc5, + 0xf3, 0x4d, 0x6f, 0xe5, 0x47, 0x1c, 0x2a, 0x17, 0x73, 0x7a, 0x9e, 0x9c, + 0xf4, 0xae, 0x1f, 0x42, 0xbd, 0xfe, 0xcc, 0xd6, 0xac, 0xe5, 0x8e, 0xce, + 0xda, 0xfa, 0x42, 0x43, 0x36, 0x4b, 0x0d, 0xc4, 0xff, 0x00, 0x09, 0xaf, + 0x40, 0x93, 0x59, 0xf0, 0x14, 0x71, 0xed, 0x7b, 0x65, 0xb0, 0xbc, 0x8e, + 0x50, 0x25, 0x58, 0xc6, 0x4a, 0xb6, 0x0e, 0x4a, 0xfe, 0x26, 0x88, 0xbe, + 0xc0, 0x79, 0xce, 0xbb, 0xab, 0x1b, 0x96, 0x83, 0x70, 0x29, 0x2c, 0x6a, + 0x10, 0xab, 0x0e, 0xca, 0x78, 0xc8, 0xf5, 0xad, 0xbd, 0x06, 0x18, 0xe7, + 0xd1, 0x6f, 0x2e, 0xe3, 0xbc, 0x63, 0x30, 0x0a, 0x81, 0x01, 0xd8, 0xcc, + 0xb8, 0xe4, 0x7f, 0x93, 0x58, 0x3e, 0x2b, 0xbd, 0x3a, 0x8d, 0xfb, 0x4b, + 0x15, 0xa3, 0x2c, 0x2f, 0xcc, 0x33, 0x32, 0xe3, 0x7c, 0x63, 0x80, 0x7e, + 0xbc, 0x55, 0xcb, 0x1d, 0x1a, 0x7d, 0x3f, 0x44, 0x8a, 0xfe, 0x2d, 0x49, + 0xc5, 0xc5, 0xea, 0xb2, 0x43, 0x6d, 0x0a, 0x96, 0x66, 0xe7, 0x18, 0x3f, + 0x5a, 0x12, 0xd4, 0x5a, 0x95, 0x23, 0xba, 0x82, 0x0b, 0x88, 0x6e, 0x63, + 0x17, 0x5f, 0x69, 0x86, 0x56, 0x56, 0x40, 0xc3, 0x0a, 0x07, 0x4e, 0x7b, + 0xf7, 0xae, 0xaa, 0x3f, 0x0e, 0xd8, 0x5d, 0x69, 0xf7, 0xda, 0xc2, 0xdd, + 0x59, 0xcd, 0x23, 0x44, 0x17, 0xec, 0xe5, 0x70, 0x55, 0xdb, 0xa6, 0x31, + 0xfc, 0x59, 0xae, 0x77, 0x4c, 0x4b, 0x8f, 0x0e, 0x5f, 0x5c, 0xdc, 0xde, + 0xc6, 0xbf, 0x68, 0x55, 0xda, 0x20, 0x96, 0x02, 0x43, 0x96, 0x1c, 0x8e, + 0x71, 0x82, 0x33, 0x4e, 0x09, 0xa8, 0x5f, 0xfd, 0xb0, 0x5c, 0x4a, 0xb0, + 0x4b, 0x32, 0xa3, 0x6c, 0x74, 0xd9, 0xbb, 0x9e, 0x30, 0x7b, 0x71, 0x54, + 0xc1, 0x23, 0xd1, 0x3c, 0x31, 0xab, 0x79, 0x5a, 0x93, 0xe8, 0x37, 0xd7, + 0xf3, 0xc1, 0x1c, 0x5e, 0x5c, 0x33, 0x1b, 0x84, 0xf9, 0x86, 0xdf, 0x98, + 0x8d, 0xdc, 0xe3, 0xb8, 0xae, 0x97, 0x54, 0x8b, 0xc0, 0x56, 0x7b, 0xb5, + 0x8f, 0x38, 0x5d, 0x5d, 0xc5, 0xba, 0x45, 0x2b, 0xf3, 0x82, 0x5b, 0xfb, + 0xcb, 0xd3, 0x19, 0xef, 0x5e, 0x65, 0x1f, 0x87, 0x6d, 0x34, 0x9d, 0x79, + 0x2e, 0xb5, 0x69, 0x44, 0xb1, 0x16, 0x28, 0xe9, 0xe7, 0x89, 0x0b, 0x30, + 0x5e, 0x49, 0x39, 0xeb, 0xc8, 0xad, 0xbd, 0x53, 0x40, 0xb3, 0xb9, 0xd0, + 0x86, 0xb5, 0x69, 0x7b, 0x6d, 0x61, 0x6a, 0x51, 0x55, 0xe0, 0x8a, 0x4d, + 0xa7, 0x9c, 0x80, 0x48, 0x3d, 0x49, 0xfe, 0xb4, 0xb9, 0x8a, 0x39, 0x7f, + 0x17, 0x78, 0xab, 0x48, 0xd5, 0x35, 0x1b, 0xd9, 0x13, 0x46, 0x11, 0x4e, + 0xe3, 0x66, 0x56, 0x40, 0x54, 0x11, 0xc6, 0x70, 0x38, 0xad, 0x7f, 0x08, + 0xcb, 0x24, 0xde, 0x14, 0x96, 0xc6, 0x2d, 0x62, 0xc2, 0xda, 0x5b, 0x99, + 0x11, 0x23, 0x81, 0x93, 0x32, 0x48, 0x47, 0x3f, 0x78, 0x74, 0xc5, 0x79, + 0x79, 0x51, 0x2e, 0xa6, 0x21, 0x0e, 0x23, 0x12, 0x4b, 0xb4, 0x3b, 0xf0, + 0x00, 0x27, 0x19, 0x3e, 0xd5, 0xd4, 0x5f, 0x78, 0x6d, 0x34, 0xcd, 0x5f, + 0xec, 0x70, 0xea, 0xab, 0x76, 0xd1, 0x00, 0x7c, 0xeb, 0x4e, 0x8a, 0x49, + 0xeb, 0x4d, 0x2e, 0xa2, 0x57, 0x1b, 0xa9, 0x6a, 0x12, 0xd8, 0xf8, 0x87, + 0x53, 0x96, 0x56, 0x8a, 0xf6, 0x62, 0xa1, 0x0c, 0x92, 0xae, 0xe0, 0xbc, + 0x8e, 0x95, 0xce, 0x5c, 0x4a, 0x6e, 0x25, 0x2d, 0xf2, 0x86, 0x3d, 0x94, + 0x56, 0xb5, 0xee, 0xab, 0x70, 0x9a, 0xa6, 0xa3, 0x69, 0x24, 0xe8, 0xfe, + 0x74, 0x2b, 0x6e, 0xd2, 0x30, 0xc8, 0xc2, 0xe3, 0xd3, 0xe9, 0x5c, 0xf7, + 0x98, 0x56, 0x4d, 0xc1, 0xb0, 0x7d, 0x47, 0x14, 0x34, 0x26, 0x6c, 0xc9, + 0x06, 0xaf, 0xa9, 0xda, 0xa2, 0x88, 0x77, 0xc5, 0x69, 0xf2, 0x28, 0x4c, + 0x7c, 0xb9, 0xed, 0xef, 0x59, 0x52, 0x23, 0x47, 0x27, 0x97, 0x32, 0x95, + 0x38, 0xcf, 0x35, 0xad, 0xe1, 0x9b, 0x9d, 0x3e, 0x3d, 0x44, 0x26, 0xa7, + 0x1b, 0x49, 0x6f, 0x23, 0x0c, 0xb6, 0xf2, 0x36, 0x9f, 0x5e, 0x3a, 0xd4, + 0x1e, 0x22, 0xfe, 0xcc, 0xfe, 0xd3, 0x0b, 0xa3, 0xbc, 0xaf, 0x6e, 0x14, + 0x73, 0x2f, 0x5c, 0xf7, 0xfc, 0x29, 0x83, 0x4a, 0xd7, 0x33, 0xb0, 0x01, + 0xf9, 0x70, 0x41, 0xa9, 0xed, 0xdb, 0x69, 0x07, 0xcc, 0x2b, 0x83, 0xd6, + 0x9d, 0x62, 0x56, 0xc6, 0x53, 0x25, 0xc5, 0x94, 0x77, 0x68, 0xea, 0xe8, + 0xa8, 0xce, 0x78, 0x38, 0xfb, 0xc3, 0x1e, 0x95, 0x58, 0x23, 0x16, 0x19, + 0x24, 0x0f, 0x4a, 0x19, 0x2d, 0x1e, 0x9b, 0xe1, 0xef, 0x1b, 0xe9, 0xfa, + 0x2f, 0x87, 0xde, 0xd6, 0x1b, 0x14, 0xfb, 0x7d, 0xc0, 0x60, 0xf7, 0x65, + 0x41, 0xd9, 0xee, 0x05, 0x32, 0xd3, 0xc5, 0xde, 0x74, 0x89, 0x6f, 0x22, + 0xfd, 0xb6, 0x71, 0x18, 0x4b, 0x67, 0x2b, 0xca, 0x1c, 0x9c, 0xae, 0x0f, + 0x04, 0x1a, 0xe2, 0x2f, 0xae, 0xf4, 0xf7, 0x96, 0x36, 0xb0, 0xb5, 0x7b, + 0x71, 0xe5, 0x84, 0x70, 0x5f, 0x3b, 0x9b, 0x1c, 0x9f, 0xc6, 0xb4, 0xad, + 0x35, 0x39, 0xcd, 0xc5, 0xab, 0x59, 0xd9, 0xda, 0xa4, 0x91, 0x28, 0x08, + 0xc1, 0x40, 0xe4, 0x73, 0xb8, 0x93, 0xde, 0x8e, 0x62, 0xae, 0x7a, 0x66, + 0x83, 0xe1, 0xfd, 0x2f, 0x52, 0xd6, 0xaf, 0x52, 0xc2, 0xe2, 0xf4, 0x5c, + 0x85, 0x4d, 0xd0, 0x79, 0x5e, 0x59, 0x0d, 0xd5, 0xb9, 0x27, 0x80, 0x0e, + 0x6b, 0xae, 0xd3, 0xfc, 0x35, 0x7f, 0x77, 0x15, 0xcd, 0xb0, 0x48, 0x56, + 0x08, 0x9b, 0x09, 0x1c, 0xed, 0xb9, 0xc1, 0x07, 0x23, 0x23, 0x90, 0x33, + 0xcf, 0xad, 0x70, 0xda, 0x2e, 0xab, 0x0f, 0x98, 0xda, 0xb5, 0xc7, 0x88, + 0x27, 0xb3, 0xd6, 0x9f, 0x70, 0x6f, 0x32, 0x3e, 0x24, 0xe0, 0x60, 0x67, + 0xeb, 0x55, 0xee, 0x35, 0x9d, 0x6a, 0x2b, 0xf9, 0xb5, 0x0d, 0x3a, 0xfd, + 0x9a, 0x76, 0x45, 0x69, 0xe7, 0x89, 0x8e, 0x40, 0x3d, 0xb2, 0x78, 0x3d, + 0x3a, 0x51, 0x29, 0x24, 0x87, 0x63, 0x57, 0x5c, 0xf0, 0x3c, 0xd1, 0x4a, + 0x6e, 0xb5, 0x6b, 0xeb, 0x08, 0x6e, 0x58, 0x19, 0x45, 0xbb, 0x73, 0xe6, + 0x31, 0x3d, 0x0f, 0xe1, 0x5e, 0x57, 0x77, 0xa7, 0xc5, 0x14, 0xad, 0xbd, + 0xb0, 0x3a, 0xaa, 0xaf, 0x7a, 0xe8, 0xf5, 0x8f, 0x13, 0xde, 0x6b, 0x33, + 0xc9, 0x71, 0x7b, 0x73, 0x2d, 0xc3, 0xa8, 0xdb, 0x1c, 0x92, 0x60, 0x1c, + 0x7b, 0x01, 0xc0, 0xae, 0x6e, 0xe2, 0x7f, 0x39, 0xa3, 0x33, 0x28, 0x65, + 0x19, 0x39, 0xdd, 0x82, 0x7d, 0xab, 0x97, 0xda, 0x36, 0xfd, 0xd5, 0xa2, + 0x1d, 0x91, 0x98, 0xb1, 0x16, 0x59, 0x79, 0xe5, 0x17, 0x23, 0x06, 0xa3, + 0x02, 0x5d, 0x99, 0xed, 0xe8, 0x6b, 0x6e, 0x45, 0xb1, 0x37, 0x28, 0xf0, + 0x39, 0x0a, 0xf1, 0xf3, 0x1a, 0x82, 0xc4, 0x1c, 0xe3, 0x1d, 0xb3, 0xc5, + 0x59, 0xd3, 0x4e, 0x97, 0x25, 0xce, 0x35, 0x24, 0x9c, 0x23, 0x44, 0x11, + 0x0c, 0x4b, 0x80, 0x0e, 0x30, 0x09, 0xeb, 0xe9, 0x5b, 0x27, 0x71, 0x72, + 0x9c, 0xcf, 0xce, 0xc4, 0xe1, 0x49, 0x2b, 0xc9, 0xc7, 0xa5, 0x29, 0xc1, + 0x00, 0x11, 0x8e, 0x2a, 0xe4, 0xfb, 0x19, 0x9a, 0x34, 0x1b, 0xc8, 0x25, + 0x55, 0xc7, 0xf1, 0x7a, 0x52, 0x4a, 0x6d, 0x12, 0xd5, 0xd1, 0xa1, 0x95, + 0x6e, 0xd4, 0x8f, 0x98, 0xb8, 0xc6, 0x3b, 0xf1, 0x8a, 0xad, 0x09, 0x68, + 0xaa, 0xdb, 0x64, 0x54, 0x0b, 0x1e, 0xc6, 0x03, 0x04, 0xff, 0x00, 0x7a, + 0xae, 0xd9, 0x35, 0xad, 0xb5, 0xca, 0x33, 0xc6, 0x2e, 0x63, 0xee, 0x8d, + 0xc6, 0x6a, 0xdc, 0x5e, 0x1a, 0xbd, 0xbb, 0x4b, 0x15, 0xb2, 0x9a, 0x2b, + 0xa9, 0xee, 0x81, 0x3e, 0x44, 0x67, 0xe6, 0x8f, 0x1f, 0xde, 0xed, 0x4c, + 0xb7, 0xd3, 0x43, 0xe1, 0x15, 0xd6, 0x2b, 0xe8, 0xdd, 0xb7, 0xa3, 0xfd, + 0xdc, 0x0f, 0xeb, 0x55, 0xa8, 0xac, 0xce, 0xc2, 0x0d, 0x3e, 0xe6, 0xee, + 0xca, 0x4b, 0x74, 0xd2, 0xd6, 0x0b, 0x64, 0x40, 0xd9, 0x98, 0x83, 0xb4, + 0x31, 0xe3, 0x04, 0xf4, 0xac, 0x27, 0xd3, 0x0c, 0x21, 0x63, 0x58, 0x1d, + 0x4e, 0xed, 0xa6, 0x40, 0xe1, 0x95, 0x8f, 0xb7, 0xe6, 0x2b, 0x76, 0xe3, + 0xfb, 0x63, 0x5e, 0x02, 0xe2, 0xfa, 0xfa, 0x1b, 0x69, 0x17, 0x10, 0x32, + 0x83, 0xb0, 0x32, 0xa8, 0xc0, 0xf9, 0x6b, 0x95, 0xb8, 0x8a, 0x6b, 0x79, + 0xda, 0x01, 0xe7, 0x7d, 0x99, 0x1c, 0xae, 0xe5, 0x24, 0xab, 0x1f, 0xaf, + 0x4a, 0x53, 0xb5, 0xb6, 0x19, 0xb9, 0x6c, 0x74, 0x08, 0xac, 0xe6, 0x17, + 0xb0, 0xcc, 0xb7, 0x71, 0xae, 0xd1, 0xbf, 0x38, 0x62, 0x4f, 0x50, 0x07, + 0x4c, 0x56, 0x25, 0xdc, 0x13, 0x97, 0x61, 0x6f, 0x2a, 0xc8, 0xaa, 0x32, + 0x36, 0xf1, 0xc5, 0x25, 0xdd, 0x9c, 0x91, 0xcd, 0x89, 0x0b, 0x47, 0xf2, + 0x82, 0xa1, 0xd4, 0x82, 0xf4, 0xcb, 0x3d, 0x46, 0xef, 0x4e, 0xbc, 0x1e, + 0x4a, 0x86, 0x62, 0x36, 0x90, 0x54, 0x37, 0x1f, 0x4a, 0xc1, 0xdd, 0xb4, + 0x31, 0x2c, 0xcd, 0xe1, 0xdc, 0xca, 0xcf, 0x95, 0xea, 0x01, 0xc5, 0x77, + 0x5a, 0x47, 0x89, 0xcb, 0xe9, 0x31, 0x5a, 0x4d, 0x24, 0xd7, 0x28, 0x8c, + 0x5f, 0xec, 0xfb, 0x88, 0xdb, 0xf8, 0x8e, 0x7f, 0x5a, 0xe2, 0x6e, 0x59, + 0x8d, 0xcb, 0xcb, 0x6e, 0x92, 0xba, 0x1f, 0x9b, 0x71, 0x4c, 0x62, 0xb7, + 0xf4, 0x8f, 0x18, 0x5a, 0xd8, 0xe9, 0x53, 0xda, 0x4d, 0xa5, 0x43, 0x25, + 0xc4, 0xcc, 0x3f, 0xd2, 0x33, 0x86, 0x50, 0x07, 0x41, 0x57, 0x17, 0x60, + 0x37, 0x35, 0x2f, 0x16, 0x5d, 0x1d, 0x30, 0xda, 0x24, 0x73, 0x42, 0x8a, + 0xd9, 0x75, 0xdf, 0x92, 0x46, 0x3f, 0xfa, 0xf5, 0xc1, 0xdc, 0x4f, 0x2c, + 0xd7, 0x2d, 0x22, 0x06, 0x2a, 0xc7, 0x77, 0x27, 0x9c, 0x56, 0xad, 0xde, + 0xab, 0x15, 0xdc, 0x31, 0xee, 0x81, 0xd5, 0xb7, 0x8d, 0xfb, 0x5f, 0xe5, + 0x61, 0xf4, 0xa8, 0x2f, 0xe5, 0xb3, 0x9e, 0xe6, 0x67, 0xb4, 0x5f, 0x26, + 0x11, 0xb7, 0x62, 0x37, 0x51, 0x51, 0x52, 0x57, 0x5b, 0x94, 0x8c, 0xf5, + 0xbb, 0x91, 0x0f, 0xca, 0x19, 0x48, 0xea, 0x33, 0x57, 0xec, 0xee, 0x1a, + 0xee, 0x50, 0xb3, 0x48, 0xaa, 0x1b, 0xab, 0x31, 0xaa, 0x79, 0x8c, 0xb8, + 0x65, 0x63, 0xbf, 0xb8, 0xed, 0x57, 0x2d, 0xc4, 0x52, 0xb6, 0x52, 0x1c, + 0xb0, 0x3c, 0xed, 0xe9, 0x59, 0xa6, 0xbb, 0x0a, 0xc6, 0xa5, 0x84, 0xff, + 0x00, 0xd9, 0xd7, 0xc2, 0x74, 0xb7, 0x8e, 0xe5, 0xd9, 0x4a, 0xae, 0x7a, + 0xab, 0x1e, 0xf5, 0xae, 0x90, 0x6b, 0x52, 0xcf, 0x75, 0x11, 0x82, 0x46, + 0x9a, 0x30, 0x19, 0xc6, 0x4e, 0x46, 0x7b, 0xf3, 0xd8, 0xd6, 0x56, 0x9b, + 0x72, 0x96, 0xda, 0x9a, 0x48, 0x61, 0xc2, 0x2e, 0x72, 0x01, 0xc6, 0x4f, + 0xd6, 0xba, 0x3d, 0x37, 0xc4, 0x2e, 0xb1, 0xdf, 0xdc, 0x4f, 0x30, 0xf3, + 0xa5, 0x24, 0x16, 0x0e, 0x77, 0x91, 0xd8, 0x6e, 0xcf, 0x6a, 0xde, 0x0a, + 0x32, 0x8d, 0xa4, 0xc4, 0xef, 0x7d, 0x0c, 0x99, 0x35, 0x63, 0x6f, 0xe5, + 0x79, 0xcc, 0x43, 0x2a, 0x91, 0xb7, 0x77, 0xfa, 0xbe, 0x71, 0x5e, 0xa1, + 0xe0, 0xcd, 0x5a, 0x19, 0xb4, 0x71, 0x68, 0x80, 0xb4, 0xd0, 0xf6, 0x1d, + 0x59, 0x4f, 0x3b, 0xab, 0xcd, 0x75, 0x9b, 0x5b, 0x0b, 0x9d, 0x1d, 0x0d, + 0xa2, 0xbc, 0xb7, 0x8d, 0xcb, 0x10, 0x99, 0xcf, 0xe3, 0xef, 0x59, 0x76, + 0x7e, 0x2b, 0xd4, 0x74, 0x6b, 0xb4, 0x92, 0x28, 0xc4, 0x32, 0x2a, 0x04, + 0x70, 0x57, 0x8c, 0x0a, 0xda, 0x95, 0x48, 0x52, 0x76, 0xb9, 0x32, 0x4d, + 0x9f, 0x44, 0xd2, 0x62, 0xbc, 0xcf, 0xc3, 0x9f, 0x14, 0xad, 0x24, 0x09, + 0x6d, 0xa9, 0x2c, 0xad, 0x71, 0x24, 0xb8, 0x69, 0x40, 0x1b, 0x00, 0x3d, + 0xf1, 0xda, 0xbd, 0x26, 0xda, 0xe6, 0xde, 0xee, 0x33, 0x25, 0xb4, 0xd1, + 0xca, 0x80, 0xe0, 0x94, 0x6c, 0x80, 0x6b, 0xba, 0x15, 0x63, 0x3d, 0x99, + 0x9d, 0x87, 0x91, 0x4d, 0x23, 0x8a, 0x93, 0x14, 0x85, 0x78, 0xad, 0x2e, + 0x22, 0x4c, 0x52, 0x15, 0x35, 0x2e, 0x69, 0xa4, 0xd4, 0x5c, 0xab, 0x11, + 0x6d, 0x39, 0xe9, 0x5c, 0xce, 0xb3, 0xe2, 0x0b, 0x9d, 0x29, 0xe5, 0x8c, + 0x79, 0x45, 0xf2, 0x4a, 0x7c, 0xa4, 0x60, 0x7b, 0xe6, 0xba, 0x69, 0xe7, + 0x4b, 0x78, 0x5e, 0x69, 0x5d, 0x51, 0x10, 0x64, 0x96, 0x3c, 0x57, 0x8e, + 0xeb, 0xba, 0xb5, 0xfd, 0xdb, 0xbe, 0xf9, 0x7c, 0xe0, 0xd9, 0x00, 0xb7, + 0x61, 0xe9, 0x5c, 0x58, 0xda, 0xd2, 0x84, 0x52, 0x8e, 0xec, 0xa8, 0x45, + 0x36, 0x56, 0xd5, 0x99, 0xee, 0xff, 0x00, 0x7e, 0x67, 0x70, 0xee, 0x77, + 0x7c, 0xa3, 0x22, 0x8d, 0x26, 0xf6, 0xd2, 0xdf, 0x4d, 0x74, 0x13, 0xf9, + 0x92, 0xab, 0xe5, 0xcf, 0xbd, 0x53, 0xb6, 0x8e, 0xe1, 0x26, 0x40, 0xaf, + 0x85, 0x23, 0x25, 0x71, 0x92, 0xbc, 0x7a, 0xf6, 0xa9, 0x34, 0x9d, 0x26, + 0x09, 0x24, 0xbb, 0x79, 0xd4, 0xca, 0x41, 0xe3, 0x70, 0xc7, 0x3e, 0xb5, + 0xe3, 0x37, 0x15, 0x17, 0x77, 0x76, 0x74, 0xa4, 0xee, 0x68, 0x3d, 0xd8, + 0x01, 0xe7, 0x95, 0xcb, 0x32, 0x90, 0x85, 0x71, 0x8c, 0x54, 0x77, 0x32, + 0x3f, 0x9e, 0x63, 0x88, 0x03, 0x1b, 0x0c, 0xe4, 0x76, 0xad, 0x14, 0x82, + 0x29, 0xe0, 0xda, 0xf2, 0x45, 0x18, 0x90, 0xe1, 0x43, 0x13, 0xcf, 0xd3, + 0x8a, 0x23, 0xb2, 0x68, 0x1f, 0x60, 0x44, 0x38, 0x3c, 0x6d, 0x1d, 0xeb, + 0x09, 0x4d, 0x58, 0xbb, 0x33, 0x32, 0x7b, 0x52, 0x51, 0x4c, 0x87, 0xee, + 0xf4, 0xac, 0xbb, 0x87, 0x66, 0x90, 0xab, 0x2b, 0x15, 0xdd, 0x8f, 0x4e, + 0x2b, 0x7e, 0xe8, 0x33, 0x38, 0x47, 0x2b, 0x93, 0xef, 0xd2, 0xb3, 0xe4, + 0x3b, 0x7c, 0xcf, 0x37, 0x62, 0xc6, 0x3a, 0x3f, 0xad, 0x4a, 0x9b, 0xea, + 0x26, 0x64, 0xcd, 0x1a, 0xcd, 0x6e, 0x21, 0xdb, 0x80, 0x3a, 0x1c, 0xf4, + 0xac, 0xd9, 0x2d, 0x2c, 0x97, 0x2b, 0x2e, 0xe6, 0x97, 0x91, 0xf2, 0x9e, + 0xf5, 0xb1, 0x25, 0xe4, 0x30, 0x8e, 0x8a, 0xec, 0x7e, 0xeb, 0x28, 0xc9, + 0xa8, 0x3e, 0xd9, 0x68, 0x84, 0xce, 0xf6, 0xd9, 0x3d, 0x89, 0xe0, 0x13, + 0x5b, 0xf3, 0x4a, 0xc4, 0xbd, 0x4a, 0xf6, 0x16, 0x57, 0x5e, 0x5f, 0x9b, + 0x6e, 0x16, 0x42, 0x3e, 0x55, 0x05, 0xb1, 0x8a, 0x88, 0xda, 0x97, 0xb8, + 0x64, 0x71, 0x1c, 0x6f, 0x8f, 0x9c, 0xb7, 0x00, 0x55, 0xcf, 0xed, 0x07, + 0xb8, 0xba, 0x1b, 0x0a, 0x44, 0x8f, 0xd5, 0x53, 0x8c, 0xd6, 0x6e, 0xb1, + 0x21, 0x2d, 0xb1, 0x40, 0x24, 0x72, 0x4e, 0x73, 0x44, 0x54, 0x9c, 0xb5, + 0x16, 0x96, 0x2d, 0x46, 0xd6, 0xf6, 0x6f, 0x1a, 0xee, 0x89, 0xd8, 0xe5, + 0xbc, 0xe1, 0xce, 0x31, 0x4c, 0x76, 0xb4, 0xbc, 0x94, 0xf9, 0x65, 0x95, + 0xd7, 0x9d, 0xfc, 0x06, 0x07, 0x3d, 0x6b, 0x16, 0x00, 0xd0, 0xc8, 0x25, + 0x28, 0x64, 0x1d, 0x30, 0xe3, 0x8a, 0x15, 0x0f, 0x9c, 0x64, 0x05, 0x76, + 0x9e, 0x30, 0x4e, 0x2b, 0xae, 0x2a, 0x31, 0x5a, 0x3d, 0x49, 0xb9, 0xb5, + 0x35, 0xa4, 0x26, 0xd6, 0x49, 0x20, 0x9c, 0x34, 0x8a, 0x32, 0xaa, 0x3a, + 0x9f, 0x73, 0x57, 0xb4, 0xdb, 0xc8, 0x8c, 0x30, 0xb5, 0xd2, 0xc6, 0xcf, + 0xfc, 0x23, 0xb9, 0x3d, 0x2b, 0x97, 0xb7, 0x43, 0x2b, 0x88, 0xe5, 0x9b, + 0x62, 0x0c, 0x80, 0x7b, 0x0f, 0xca, 0xba, 0x9b, 0x1d, 0x3a, 0xc6, 0xd8, + 0x43, 0x34, 0x4c, 0x0b, 0xa2, 0xf2, 0xdb, 0xf2, 0x37, 0x1f, 0x4a, 0xce, + 0xaf, 0x2a, 0x56, 0x2a, 0x29, 0xdc, 0xd9, 0x8f, 0x11, 0xe4, 0x2e, 0xdd, + 0x9d, 0xc1, 0xed, 0x59, 0xed, 0xa8, 0x42, 0x1d, 0xe3, 0x99, 0xb7, 0x14, + 0xcf, 0xdd, 0x3c, 0x0a, 0x9a, 0x16, 0x95, 0x8c, 0x88, 0xec, 0x14, 0x37, + 0x20, 0x13, 0x9a, 0xc9, 0xbf, 0xb1, 0x29, 0x6f, 0x23, 0x21, 0x12, 0x36, + 0xe0, 0x48, 0xea, 0x45, 0x42, 0x71, 0x7a, 0x32, 0xec, 0x2d, 0xdd, 0xf8, + 0x94, 0x65, 0x15, 0x7c, 0xa1, 0xc3, 0x63, 0xf0, 0xa6, 0xea, 0x27, 0xfb, + 0x4a, 0x18, 0xa2, 0xb4, 0xb7, 0x2e, 0x91, 0xc6, 0xae, 0xec, 0x9d, 0x17, + 0x03, 0x9f, 0xc6, 0x96, 0xce, 0xd6, 0xda, 0x3b, 0x94, 0x86, 0x77, 0x60, + 0xce, 0x09, 0x90, 0x93, 0xdb, 0x1c, 0x62, 0xb3, 0xe3, 0x79, 0x34, 0x7b, + 0x8b, 0x9b, 0x73, 0x29, 0x78, 0x9b, 0x85, 0x3b, 0xb8, 0xc7, 0xd2, 0xbb, + 0x29, 0x4a, 0x31, 0x5a, 0x13, 0x25, 0xa5, 0xc4, 0x6b, 0xd7, 0xb4, 0x76, + 0xb5, 0xb6, 0xb6, 0x92, 0x40, 0x58, 0x85, 0xf3, 0x06, 0x58, 0x0e, 0xd5, + 0x55, 0xae, 0x10, 0x4e, 0x61, 0x91, 0xca, 0x4b, 0x92, 0x19, 0xf9, 0xe0, + 0xd2, 0xcd, 0x7c, 0xb3, 0x81, 0x30, 0x9b, 0xf7, 0x8b, 0xf2, 0xb2, 0x73, + 0xf3, 0x0f, 0xc2, 0xa1, 0x8e, 0x23, 0x2d, 0xab, 0x4a, 0xe8, 0xaa, 0x8a, + 0xdb, 0x83, 0x75, 0x3c, 0xfa, 0xd3, 0x9b, 0x85, 0x93, 0x96, 0xe6, 0x7a, + 0xf4, 0x2c, 0x34, 0xeb, 0x2c, 0xc5, 0x9e, 0xda, 0x34, 0x91, 0x13, 0x6f, + 0xcb, 0xc0, 0x38, 0xef, 0xf5, 0xac, 0x68, 0xc4, 0x72, 0xdd, 0x33, 0x3b, + 0x34, 0x71, 0x31, 0x39, 0x23, 0x9c, 0x7b, 0x55, 0xdd, 0x4e, 0x59, 0x5a, + 0xd9, 0x23, 0x92, 0x36, 0x56, 0xe4, 0x86, 0x23, 0x00, 0x8f, 0x6a, 0x91, + 0xbe, 0xc3, 0x26, 0x8d, 0x1a, 0xa4, 0x99, 0xb8, 0x52, 0x32, 0xbd, 0x3a, + 0xd6, 0x5c, 0xd7, 0x7c, 0xdd, 0xc7, 0xb0, 0x9a, 0x6d, 0xab, 0xb5, 0xf7, + 0x97, 0x14, 0x8c, 0x00, 0x05, 0x8e, 0x4f, 0x6e, 0xd9, 0xad, 0x08, 0x52, + 0x0b, 0xf6, 0xb8, 0x9e, 0x6b, 0x86, 0x5b, 0x8c, 0xed, 0x2a, 0x1b, 0x9f, + 0xfe, 0xbd, 0x64, 0xd8, 0x69, 0xd7, 0x57, 0x32, 0x4a, 0x2d, 0xdf, 0x2d, + 0x1a, 0x6f, 0x64, 0x56, 0xf9, 0x88, 0x07, 0xd3, 0xbd, 0x56, 0x59, 0xd2, + 0x09, 0x55, 0xdf, 0x71, 0x1b, 0xb2, 0xc3, 0x1d, 0x47, 0xa5, 0x69, 0x38, + 0x37, 0x15, 0x61, 0x5d, 0x5c, 0xd6, 0xbe, 0x37, 0x16, 0xd1, 0x6d, 0x8d, + 0xcf, 0x96, 0x46, 0xd1, 0x20, 0xe0, 0x9f, 0xad, 0x55, 0x86, 0xd0, 0xf9, + 0x1f, 0x68, 0x95, 0xd9, 0x0f, 0xa9, 0x07, 0x06, 0xba, 0x78, 0x75, 0x3d, + 0x3e, 0xe3, 0x46, 0x59, 0x2f, 0x7e, 0x58, 0xf3, 0x88, 0xd4, 0xae, 0x76, + 0x91, 0xef, 0xde, 0xaa, 0xea, 0x57, 0xf1, 0xcf, 0x1a, 0xa9, 0xb6, 0x06, + 0x25, 0xc3, 0x29, 0x23, 0x19, 0xae, 0x58, 0xb7, 0xb5, 0x8b, 0x76, 0x32, + 0xed, 0x4a, 0x2d, 0xc4, 0x6c, 0x66, 0x12, 0x28, 0xfb, 0xc1, 0x8f, 0x04, + 0x57, 0x67, 0x0e, 0xa4, 0x23, 0xb7, 0x49, 0x2c, 0xe4, 0x31, 0x84, 0x38, + 0x75, 0x2b, 0xc6, 0x3f, 0x0a, 0xf3, 0xfd, 0x84, 0xdc, 0x84, 0x08, 0x79, + 0x62, 0x55, 0x57, 0xa5, 0x6b, 0x45, 0x2b, 0x5a, 0xa8, 0x59, 0xee, 0x9c, + 0x09, 0x31, 0xba, 0x36, 0x04, 0x10, 0x29, 0xce, 0x9f, 0x32, 0x12, 0x76, + 0x3a, 0x6b, 0xd8, 0x60, 0xbe, 0x96, 0x42, 0xaa, 0x04, 0xc7, 0xee, 0xe3, + 0xe5, 0x5a, 0xce, 0xbf, 0xd2, 0x66, 0x82, 0xde, 0x36, 0xbc, 0xb8, 0x0c, + 0x07, 0x2b, 0x17, 0x38, 0x03, 0xdb, 0x15, 0x97, 0x15, 0xfc, 0x8b, 0x71, + 0x22, 0xdb, 0xc8, 0x7c, 0xac, 0xf0, 0x24, 0x18, 0x24, 0x57, 0x40, 0x8d, + 0xa8, 0xc5, 0x14, 0x6e, 0xea, 0xb2, 0xc2, 0xc3, 0x00, 0x67, 0x91, 0x9a, + 0x88, 0x27, 0x01, 0xbd, 0x48, 0x61, 0xb5, 0xb7, 0x82, 0x68, 0xe4, 0x7f, + 0x31, 0x5d, 0x97, 0x20, 0x33, 0x72, 0x3d, 0xc5, 0x3a, 0x1b, 0x97, 0xb9, + 0x67, 0x8d, 0x2f, 0x0c, 0x05, 0x97, 0xe5, 0x62, 0x30, 0x5b, 0xb1, 0xaa, + 0x72, 0xcf, 0x7c, 0xf2, 0x33, 0x35, 0xb4, 0xbf, 0xbb, 0x60, 0x4b, 0x13, + 0x90, 0x07, 0xd3, 0xbd, 0x46, 0xd7, 0x66, 0xda, 0x67, 0x62, 0x8a, 0xb7, + 0x1d, 0x61, 0xc4, 0x59, 0x0f, 0xfe, 0x14, 0xfe, 0xd7, 0x35, 0xf5, 0x1f, + 0x42, 0xec, 0x56, 0x26, 0x3b, 0x70, 0x6f, 0xae, 0x08, 0x80, 0x30, 0xdc, + 0x3a, 0x93, 0xf5, 0x15, 0x56, 0xeb, 0x50, 0xb4, 0x5b, 0xa5, 0x92, 0xd3, + 0x1b, 0x1f, 0xe4, 0x2c, 0x06, 0x36, 0xfb, 0xd6, 0xaf, 0xf6, 0xaa, 0xea, + 0x36, 0x2c, 0x2e, 0xac, 0x64, 0x86, 0x51, 0x80, 0x1d, 0x47, 0xca, 0x4f, + 0x1e, 0xb5, 0xcf, 0x5f, 0x96, 0x12, 0x1d, 0x83, 0x24, 0x9c, 0x10, 0x71, + 0xfd, 0x2a, 0x22, 0xdb, 0xba, 0x63, 0xdb, 0x62, 0xfa, 0xcb, 0x69, 0x10, + 0x96, 0x66, 0x93, 0xcd, 0xee, 0x09, 0x35, 0x8d, 0x2d, 0xf5, 0xc7, 0xdb, + 0x03, 0xc3, 0x74, 0xa9, 0x12, 0x02, 0x30, 0x79, 0xeb, 0xd7, 0x8a, 0x4b, + 0x98, 0xcc, 0x16, 0xd2, 0x63, 0x64, 0x79, 0x20, 0x32, 0x03, 0x92, 0x6b, + 0x22, 0x41, 0xe6, 0x48, 0xab, 0x08, 0x6c, 0xb1, 0x1d, 0xba, 0xd6, 0xf4, + 0xd2, 0x4e, 0xe8, 0x4c, 0xdd, 0xd4, 0xf5, 0x58, 0xcb, 0x47, 0x12, 0xa3, + 0xc6, 0x0c, 0x2a, 0x36, 0xfa, 0x9f, 0x7a, 0xaf, 0x34, 0x62, 0xe7, 0x6a, + 0xee, 0xc0, 0xe0, 0x8d, 0x9d, 0x3f, 0x1a, 0xb7, 0x35, 0x94, 0xd2, 0xa2, + 0xdd, 0xde, 0x03, 0xf6, 0x88, 0xd4, 0x0c, 0x15, 0x1c, 0x81, 0xd2, 0xaa, + 0xe9, 0xd6, 0x72, 0x5f, 0x7d, 0xa9, 0x0c, 0xbe, 0x42, 0x0f, 0x99, 0x32, + 0x38, 0xeb, 0x4e, 0x53, 0x5b, 0xae, 0x80, 0xd3, 0x6c, 0x65, 0xf4, 0x69, + 0x68, 0x3c, 0x8f, 0x33, 0xcc, 0x2d, 0x80, 0x18, 0x1c, 0x66, 0x89, 0xa3, + 0x48, 0xe3, 0xc6, 0xe2, 0x09, 0x5c, 0xe3, 0x3c, 0x55, 0x99, 0x2c, 0xa5, + 0x79, 0x94, 0xce, 0xaa, 0xfb, 0x72, 0xaa, 0x47, 0x4f, 0xad, 0x32, 0x09, + 0x9a, 0x38, 0xde, 0x19, 0x6d, 0x01, 0x75, 0x18, 0x00, 0xe4, 0xe7, 0xde, + 0xa1, 0xca, 0xfb, 0x0a, 0xc5, 0x37, 0x85, 0x65, 0x58, 0x96, 0xdd, 0x99, + 0x9f, 0xab, 0x71, 0xc1, 0xa8, 0x22, 0x49, 0x22, 0xba, 0x1b, 0x97, 0xcc, + 0xdb, 0xd8, 0xf6, 0xad, 0x20, 0xed, 0x6d, 0x18, 0xdb, 0x13, 0x0d, 0xc3, + 0x23, 0x1c, 0xf1, 0x55, 0x6f, 0xa1, 0xb9, 0x42, 0x64, 0x65, 0x08, 0x92, + 0x70, 0x0d, 0x0a, 0x5a, 0xd8, 0x5b, 0x13, 0x98, 0xae, 0xb5, 0x24, 0xcb, + 0x30, 0x55, 0x0d, 0xd7, 0x35, 0xb2, 0x63, 0xfb, 0x0d, 0xac, 0xa5, 0xce, + 0xfc, 0x7c, 0xac, 0x15, 0xbe, 0xf7, 0x1d, 0xab, 0x92, 0x8c, 0xce, 0xa7, + 0x03, 0x04, 0x37, 0xcb, 0x8c, 0xf3, 0x9a, 0xd8, 0x4d, 0x65, 0xa3, 0x95, + 0x2c, 0xae, 0x90, 0x93, 0x1f, 0xdd, 0x6e, 0xe0, 0xf1, 0x4a, 0x74, 0xe5, + 0xa5, 0x8a, 0x4d, 0x17, 0xd6, 0xdd, 0x6f, 0x16, 0x3f, 0x25, 0x0a, 0x1e, + 0xe7, 0x18, 0x3c, 0x54, 0x96, 0xda, 0x34, 0xf7, 0x17, 0x20, 0x49, 0xb0, + 0x2b, 0x30, 0x70, 0xd9, 0xc5, 0x65, 0xdf, 0xea, 0xd2, 0x0b, 0x95, 0xfb, + 0x2c, 0xd1, 0x2b, 0x81, 0xf7, 0x93, 0xaf, 0xe3, 0x51, 0xe9, 0xa6, 0xee, + 0xee, 0xe6, 0x2f, 0x36, 0xf5, 0xf7, 0x09, 0x39, 0x8f, 0x38, 0xe3, 0xd7, + 0x35, 0x3c, 0x92, 0x4a, 0xf7, 0xb0, 0xd3, 0x57, 0x2c, 0xde, 0x78, 0x6a, + 0xee, 0x00, 0xf7, 0x47, 0x09, 0x18, 0x3c, 0xe4, 0xe7, 0xf9, 0x56, 0x7c, + 0x97, 0x91, 0x61, 0x55, 0xca, 0xb6, 0x07, 0xa7, 0xf8, 0xd7, 0x6d, 0x63, + 0x7f, 0x04, 0xd6, 0x42, 0xd2, 0x7b, 0x7f, 0x39, 0x63, 0x3c, 0x92, 0x72, + 0x3a, 0xfa, 0xf7, 0xa1, 0xbc, 0x3f, 0xa7, 0x5c, 0x86, 0x4f, 0xb2, 0xb0, + 0x2f, 0x92, 0x0e, 0x3f, 0xad, 0x4a, 0xad, 0xcb, 0xa4, 0xc7, 0xcb, 0xd8, + 0xe2, 0x16, 0xe1, 0x6d, 0xdb, 0x72, 0x7c, 0xa0, 0xf7, 0xff, 0x00, 0xeb, + 0xd6, 0xee, 0x9f, 0xac, 0x4b, 0xe4, 0x97, 0x47, 0x00, 0x28, 0xc1, 0xc9, + 0xe6, 0xb5, 0xa1, 0xf0, 0xed, 0x9d, 0xbc, 0x62, 0x21, 0x6e, 0x19, 0x40, + 0x24, 0x6e, 0xc9, 0xcf, 0xbd, 0x47, 0x7f, 0xe1, 0x9b, 0x1b, 0x6b, 0x73, + 0x34, 0x2c, 0x40, 0x7f, 0x98, 0x64, 0xff, 0x00, 0x17, 0xa1, 0xe2, 0x93, + 0xa9, 0x09, 0xbb, 0x58, 0x56, 0x68, 0xc0, 0xbd, 0xd4, 0xa4, 0xbf, 0x98, + 0x42, 0x5c, 0x90, 0xbc, 0x92, 0xe0, 0x67, 0x3f, 0xe1, 0x54, 0x27, 0x94, + 0xc6, 0xdb, 0x4e, 0x09, 0x3d, 0x45, 0x55, 0x9e, 0x61, 0x25, 0xc4, 0x9b, + 0x97, 0x6b, 0x0e, 0x3a, 0xfa, 0x55, 0x79, 0x19, 0xa5, 0x65, 0x55, 0x19, + 0xec, 0x08, 0xae, 0xa5, 0x4e, 0xda, 0x19, 0x5e, 0xe5, 0xdf, 0x30, 0x30, + 0xc0, 0xca, 0xae, 0x39, 0x00, 0x75, 0xa9, 0x23, 0x90, 0x48, 0xe1, 0x33, + 0x82, 0x07, 0x1c, 0x63, 0x35, 0x5d, 0xbc, 0xe8, 0xf7, 0x44, 0xca, 0x0e, + 0xc1, 0x96, 0xa6, 0x49, 0x2a, 0xbe, 0xd6, 0x0b, 0x80, 0x7d, 0xba, 0x51, + 0x61, 0xb5, 0x6d, 0xcb, 0xa2, 0x77, 0x3f, 0x28, 0x25, 0xb1, 0xdb, 0xd2, + 0xac, 0x43, 0x29, 0x8a, 0x45, 0x0d, 0x10, 0x72, 0xc7, 0xee, 0x9a, 0x8b, + 0x47, 0xf2, 0x15, 0xc6, 0xe7, 0x01, 0xbb, 0x33, 0x00, 0x47, 0xe5, 0x45, + 0xf4, 0xf2, 0x7d, 0xa9, 0x58, 0xbc, 0x64, 0x9c, 0xe7, 0x1c, 0x63, 0xa7, + 0x4a, 0x8b, 0x27, 0xee, 0x8e, 0xdd, 0x4b, 0xcb, 0x7f, 0x10, 0x23, 0x10, + 0x8e, 0x0f, 0xdd, 0x39, 0xa5, 0x8e, 0x3b, 0xab, 0x83, 0x98, 0x63, 0x32, + 0x77, 0x5f, 0x6f, 0x6c, 0xd4, 0xba, 0x7c, 0xd6, 0x6d, 0x1b, 0x15, 0x45, + 0x3b, 0x7a, 0xee, 0xef, 0x54, 0xa5, 0xd4, 0xe4, 0x59, 0x0a, 0x5b, 0x2b, + 0x22, 0x9e, 0x30, 0x3b, 0xd6, 0x0a, 0x37, 0x76, 0x48, 0x6f, 0xcc, 0xb6, + 0x45, 0xc9, 0x57, 0x69, 0x4f, 0x96, 0x57, 0xd0, 0x67, 0x15, 0xa7, 0x63, + 0x75, 0x6d, 0x6b, 0xa4, 0xb5, 0xcb, 0x5e, 0x16, 0xba, 0xde, 0x02, 0xc4, + 0xbc, 0x65, 0x7b, 0xe6, 0xb9, 0x97, 0xbe, 0x90, 0xc3, 0xb0, 0x82, 0x1b, + 0x27, 0x73, 0x12, 0x72, 0x7d, 0xaa, 0x8c, 0xf7, 0x06, 0x20, 0x08, 0x3c, + 0x1e, 0x98, 0x35, 0xd5, 0x46, 0x3c, 0xac, 0xca, 0x4c, 0xdc, 0x9a, 0xf2, + 0xe2, 0xda, 0x5f, 0x3e, 0xdc, 0xb0, 0x70, 0x0b, 0x2b, 0x93, 0x9c, 0x2f, + 0xa5, 0x73, 0x72, 0xdc, 0xb4, 0xae, 0xcc, 0xdf, 0x31, 0x27, 0x9e, 0x6b, + 0x4e, 0x4d, 0xeb, 0xa3, 0x19, 0x63, 0xd4, 0x21, 0x26, 0x41, 0xfb, 0xc8, + 0x70, 0x77, 0x0f, 0x6a, 0xc2, 0x59, 0xa4, 0x0f, 0x92, 0x3f, 0x4a, 0xe9, + 0xe5, 0x6b, 0x72, 0x77, 0x2c, 0xfc, 0xca, 0xa7, 0xaf, 0xb8, 0xa8, 0xc8, + 0x24, 0xfb, 0x52, 0x2c, 0xad, 0xbb, 0x9e, 0xfd, 0x85, 0x2b, 0x82, 0x06, + 0x7b, 0x1a, 0x95, 0xb8, 0xec, 0x39, 0x13, 0xaf, 0x43, 0xed, 0x4f, 0x8d, + 0x24, 0x69, 0x36, 0x03, 0xde, 0x8b, 0x70, 0xd9, 0x2d, 0x9c, 0x01, 0xe9, + 0x57, 0x3c, 0xc8, 0xd4, 0x28, 0x23, 0xdc, 0x01, 0x4a, 0x52, 0xd6, 0xc5, + 0x25, 0xa1, 0x1c, 0x16, 0xad, 0x9d, 0xc1, 0x7a, 0x1e, 0xb5, 0xd0, 0x58, + 0x78, 0xa3, 0x50, 0xd1, 0xec, 0xe5, 0xb6, 0xb0, 0xb9, 0x92, 0x11, 0x30, + 0xc3, 0xed, 0xea, 0x7d, 0xab, 0x2c, 0xcd, 0x98, 0x97, 0xc9, 0x01, 0x54, + 0x70, 0x45, 0x53, 0x76, 0xf2, 0xa4, 0xdd, 0xb8, 0x1e, 0x7a, 0x0a, 0xcd, + 0x36, 0xdd, 0xc3, 0x44, 0x4a, 0x2f, 0xcc, 0xd7, 0xf2, 0xcd, 0x33, 0x12, + 0xec, 0x72, 0x4b, 0x1e, 0x73, 0x53, 0x2e, 0xa1, 0x6e, 0x44, 0xc2, 0x58, + 0x55, 0xdd, 0x86, 0x11, 0x98, 0x1e, 0x0f, 0xb5, 0x56, 0x49, 0xad, 0xd9, + 0x99, 0xd9, 0x06, 0xee, 0x82, 0x9d, 0x21, 0x46, 0xc3, 0x6c, 0xc1, 0xed, + 0xe8, 0x2b, 0x4b, 0x94, 0x8a, 0xad, 0x33, 0x4b, 0x21, 0x62, 0xaa, 0x07, + 0xa6, 0x69, 0x1d, 0xd5, 0xc7, 0x3c, 0x2f, 0xa0, 0xa4, 0x11, 0xb6, 0xd6, + 0x71, 0xc9, 0x3d, 0xea, 0x21, 0x8c, 0x85, 0x23, 0x04, 0xfb, 0xd0, 0xc9, + 0xb1, 0x7a, 0xcc, 0x41, 0x1c, 0x6c, 0x5e, 0x21, 0x23, 0x9f, 0xba, 0x4f, + 0x6a, 0x26, 0x95, 0x62, 0x01, 0x5c, 0x90, 0xbf, 0xdd, 0x15, 0x25, 0xa8, + 0x58, 0x09, 0xde, 0xa1, 0xc0, 0x5e, 0xdc, 0x8a, 0x8a, 0xe2, 0xc6, 0x7b, + 0xc6, 0x33, 0xc4, 0x06, 0xd1, 0xd4, 0x7a, 0x56, 0x09, 0xae, 0x6d, 0x76, + 0x1d, 0x9d, 0xb4, 0x2b, 0x23, 0x89, 0xcb, 0x22, 0x42, 0x36, 0xe7, 0x39, + 0x07, 0x07, 0x15, 0x21, 0xb5, 0x8a, 0x22, 0x19, 0x41, 0x12, 0x93, 0xf7, + 0x7a, 0xe2, 0x9d, 0x68, 0x4d, 0xb3, 0xe6, 0x6c, 0x79, 0x79, 0xc7, 0x03, + 0x3c, 0x55, 0xf7, 0x36, 0x51, 0xa8, 0x99, 0x26, 0x5e, 0x4e, 0x48, 0x55, + 0x3c, 0x0f, 0xc6, 0x9c, 0xe5, 0x67, 0x64, 0x34, 0x8c, 0xb9, 0xd6, 0x15, + 0x89, 0x95, 0x23, 0xf9, 0xff, 0x00, 0x8b, 0x75, 0x4b, 0xa6, 0xcf, 0xb6, + 0x20, 0xbb, 0x38, 0x50, 0x41, 0x23, 0xad, 0x3e, 0xe6, 0xf2, 0x17, 0xb1, + 0x78, 0xd6, 0x15, 0x52, 0x5b, 0x87, 0xee, 0x45, 0x62, 0x2b, 0xb2, 0x8c, + 0x02, 0x47, 0xd0, 0xd5, 0xc6, 0x2e, 0x71, 0x69, 0x89, 0xe8, 0x6f, 0x5c, + 0x3c, 0x56, 0xd1, 0xdb, 0xcb, 0x67, 0x75, 0xfe, 0x90, 0x39, 0xe3, 0xa8, + 0xe6, 0xb3, 0x24, 0xf3, 0x59, 0x8c, 0xd2, 0xab, 0x3b, 0x31, 0xeb, 0x9e, + 0xa6, 0xab, 0xa8, 0x57, 0x70, 0x09, 0x20, 0x1f, 0x4a, 0xd1, 0xb7, 0x51, + 0x1b, 0x32, 0x37, 0x29, 0xdd, 0x80, 0xe4, 0x55, 0x37, 0xc8, 0xac, 0x2d, + 0xc6, 0x49, 0x7d, 0x2c, 0x8d, 0xba, 0x5d, 0xec, 0x08, 0xc6, 0x1d, 0xb3, + 0xfe, 0x45, 0x76, 0xba, 0x07, 0x8e, 0xbc, 0xb1, 0x1a, 0xde, 0x18, 0xe2, + 0x82, 0xca, 0x1c, 0x5a, 0x44, 0xb0, 0x06, 0xcc, 0x9c, 0x63, 0xf9, 0x7e, + 0xb5, 0xc3, 0x4b, 0x1b, 0x6f, 0xc1, 0x6c, 0x71, 0x8c, 0x13, 0xc9, 0xae, + 0x82, 0xc2, 0xea, 0xda, 0xc2, 0xef, 0x4d, 0xb4, 0xd5, 0xb4, 0x84, 0xf2, + 0xad, 0xe7, 0x59, 0xae, 0x4a, 0x67, 0x74, 0xd1, 0x9c, 0x10, 0xa7, 0x9c, + 0x63, 0x1f, 0xce, 0xb5, 0x83, 0x5b, 0x86, 0xa7, 0xab, 0x5b, 0xf8, 0x42, + 0x5d, 0x57, 0xc3, 0xc9, 0xe2, 0x18, 0xf6, 0xc9, 0x7f, 0x28, 0xf3, 0x5d, + 0x0c, 0x4d, 0xb8, 0x1c, 0xe4, 0x01, 0x9e, 0x08, 0xe9, 0xdb, 0x15, 0x1e, + 0xb5, 0xac, 0x47, 0x7f, 0xa1, 0x5f, 0xdb, 0x36, 0x95, 0x6e, 0xd3, 0x88, + 0xb2, 0x44, 0x50, 0x15, 0xe0, 0x29, 0xc9, 0xc8, 0x3c, 0x60, 0x8a, 0x92, + 0xd3, 0xe3, 0x45, 0x8c, 0x9a, 0xc2, 0xc7, 0x05, 0xa3, 0x58, 0xe8, 0x90, + 0xc4, 0x13, 0x6c, 0x68, 0xa5, 0xc1, 0x07, 0xa8, 0x1d, 0x00, 0xf6, 0xad, + 0xdd, 0x4b, 0x54, 0xf0, 0x66, 0xa9, 0xe0, 0x8d, 0x42, 0x64, 0x12, 0xcb, + 0x08, 0x8a, 0x49, 0x95, 0x8c, 0x4c, 0xb2, 0x6e, 0xe7, 0xf8, 0xbe, 0xa4, + 0x75, 0xf5, 0xab, 0x6d, 0x35, 0xa1, 0x49, 0x23, 0xce, 0xf4, 0xcf, 0x0e, + 0xeb, 0xb1, 0x4c, 0xfa, 0xb5, 0xb5, 0x95, 0x88, 0x5b, 0x58, 0x63, 0x47, + 0x8a, 0x6f, 0x9f, 0x70, 0x75, 0xce, 0xe0, 0x0f, 0x7c, 0x57, 0x29, 0x7b, + 0xa3, 0x99, 0x35, 0x2b, 0xa8, 0x7e, 0xdf, 0x04, 0x2c, 0x63, 0x69, 0x5a, + 0x17, 0x62, 0x04, 0x64, 0x74, 0x5c, 0x7a, 0x9f, 0xeb, 0x5e, 0xab, 0xf0, + 0x82, 0x7d, 0x29, 0xf4, 0x2b, 0xf8, 0xee, 0x6e, 0xe1, 0xbb, 0x9a, 0x26, + 0x49, 0x37, 0x4a, 0xc5, 0x76, 0x8d, 0x83, 0x83, 0x9e, 0xc0, 0xf1, 0x9c, + 0x57, 0x98, 0x78, 0xda, 0xdf, 0xed, 0x7a, 0xe4, 0x93, 0x69, 0xfa, 0x75, + 0xda, 0x10, 0x5d, 0x66, 0x92, 0x49, 0x04, 0x8a, 0xe4, 0x72, 0x0a, 0xb0, + 0x1d, 0x31, 0x8a, 0x9d, 0xb6, 0x06, 0xb4, 0x39, 0x6b, 0xd8, 0x9e, 0x3b, + 0xa4, 0x5b, 0x92, 0xa4, 0x85, 0x07, 0x28, 0xc0, 0xe4, 0x63, 0x8e, 0x7d, + 0x6b, 0xd0, 0xfc, 0x1b, 0xa5, 0xd8, 0xea, 0xf0, 0x43, 0x63, 0xa7, 0xe9, + 0xc6, 0x72, 0x32, 0xd3, 0x5d, 0x36, 0xe5, 0x2a, 0xc4, 0x74, 0x62, 0x3f, + 0x84, 0x75, 0xaf, 0x32, 0x70, 0xcb, 0x2a, 0xee, 0x21, 0xb8, 0xe7, 0x1d, + 0xab, 0x67, 0x46, 0xd6, 0x65, 0xd1, 0xee, 0x56, 0xe6, 0xd2, 0x7c, 0x14, + 0x70, 0x5a, 0x22, 0x48, 0x12, 0x8e, 0xe0, 0xe2, 0x8b, 0xd9, 0x92, 0xb4, + 0x64, 0x97, 0x7a, 0x15, 0xd5, 0x9f, 0x8b, 0x6e, 0xf4, 0xdb, 0xab, 0x98, + 0xa0, 0x9d, 0x19, 0x83, 0x49, 0xbc, 0x95, 0x39, 0xec, 0x08, 0xeb, 0x9c, + 0xd5, 0x28, 0x6c, 0x5e, 0x3d, 0x5a, 0xe6, 0xcd, 0x44, 0x37, 0x0d, 0x1e, + 0xe0, 0x72, 0xc3, 0x6b, 0x01, 0xcf, 0x07, 0xd7, 0x8e, 0xd5, 0xa5, 0xab, + 0x78, 0xb2, 0xef, 0x52, 0xf1, 0x4d, 0xce, 0xb5, 0x1d, 0xb4, 0x36, 0xed, + 0x3a, 0xec, 0xf2, 0xc2, 0xee, 0x0a, 0x31, 0xdb, 0x3d, 0xea, 0xb6, 0x85, + 0x60, 0x35, 0x0b, 0x8b, 0xd9, 0xda, 0x58, 0xd5, 0xa2, 0x50, 0xc6, 0x33, + 0x26, 0xd6, 0x70, 0xcd, 0x82, 0x17, 0xd7, 0xad, 0x55, 0xf5, 0x05, 0x6e, + 0x85, 0x79, 0x20, 0x88, 0xea, 0x71, 0xa5, 0x8c, 0x73, 0x6c, 0x6c, 0x79, + 0xd1, 0x14, 0x3f, 0x23, 0x77, 0x1c, 0x1e, 0x40, 0xa7, 0x6b, 0x51, 0x58, + 0x43, 0x3a, 0x47, 0x62, 0x7c, 0xe4, 0x40, 0xca, 0x66, 0x00, 0x8f, 0x33, + 0x9e, 0xb8, 0x3d, 0xc5, 0x7a, 0x82, 0x78, 0xaf, 0xc2, 0x7a, 0x23, 0xde, + 0xda, 0xe9, 0xda, 0x7f, 0xef, 0x22, 0x40, 0xd1, 0xb4, 0xe7, 0x67, 0xcf, + 0x8f, 0x99, 0x78, 0x1c, 0xf3, 0xeb, 0x5c, 0x6f, 0x89, 0xf5, 0x91, 0x7b, + 0x26, 0x9d, 0x3d, 0x9c, 0x71, 0x24, 0x62, 0x07, 0x5d, 0xab, 0x08, 0x00, + 0x16, 0x27, 0x70, 0xf7, 0xea, 0x79, 0xa5, 0x71, 0xb3, 0x94, 0x82, 0xe6, + 0x58, 0x18, 0xb4, 0x45, 0x94, 0xed, 0x2b, 0xb8, 0x76, 0x07, 0xad, 0x2a, + 0x97, 0x60, 0xee, 0x24, 0x52, 0xcb, 0xc9, 0x07, 0xa9, 0x1d, 0xea, 0x5b, + 0xad, 0x3e, 0xf6, 0xd2, 0x18, 0x64, 0x9a, 0x02, 0x21, 0x9e, 0x3f, 0x31, + 0x18, 0x74, 0x2b, 0x9c, 0x67, 0xf3, 0xaa, 0x3b, 0x30, 0x81, 0xf2, 0x40, + 0x3d, 0x09, 0xa0, 0x8b, 0x77, 0x2d, 0x79, 0x9f, 0x68, 0x02, 0x26, 0xe1, + 0x13, 0xee, 0x80, 0x3d, 0x7a, 0xd5, 0xfd, 0x29, 0x6d, 0x80, 0xcc, 0xec, + 0x23, 0x64, 0x39, 0x52, 0xed, 0xf2, 0x93, 0x9e, 0x01, 0x1d, 0x71, 0xc1, + 0x15, 0x91, 0x1e, 0xe5, 0x39, 0xcd, 0x3c, 0xca, 0x03, 0x6f, 0x20, 0x64, + 0x74, 0xcd, 0x46, 0xa9, 0x8e, 0xe8, 0xee, 0x7c, 0x57, 0xe3, 0x77, 0xd7, + 0x74, 0xe8, 0xec, 0xd7, 0x4f, 0xb7, 0x55, 0xca, 0x94, 0x96, 0x32, 0x77, + 0x26, 0x06, 0x08, 0x19, 0xf5, 0xae, 0x77, 0xfb, 0x4d, 0xad, 0xa0, 0x61, + 0x08, 0x74, 0x07, 0x19, 0x04, 0xd6, 0x54, 0x57, 0x4a, 0x2e, 0x8b, 0xf9, + 0x5b, 0xd0, 0x8e, 0x54, 0x93, 0xc7, 0x1d, 0x78, 0xa8, 0x64, 0x72, 0x3a, + 0x12, 0x53, 0xb1, 0xa5, 0x28, 0xb9, 0xb5, 0x71, 0x9d, 0x46, 0x97, 0x3c, + 0x1a, 0x95, 0xbf, 0x97, 0x3b, 0x98, 0xb6, 0xe4, 0xbb, 0x76, 0x55, 0xf6, + 0x1d, 0xea, 0x9d, 0xc0, 0x82, 0xce, 0xff, 0x00, 0x7c, 0x4b, 0xe6, 0xc6, + 0x33, 0xb0, 0xb7, 0x46, 0xf7, 0xfc, 0xea, 0x0f, 0x0f, 0xac, 0x6f, 0x75, + 0xba, 0xea, 0xe5, 0xa3, 0x82, 0x30, 0x58, 0x2a, 0x9e, 0x59, 0xb1, 0xd0, + 0x7d, 0x7d, 0x6a, 0xe6, 0xaf, 0x77, 0x04, 0xae, 0x22, 0xb5, 0x42, 0x2d, + 0x63, 0x50, 0x13, 0x8c, 0x1d, 0xdd, 0xf3, 0xef, 0x4f, 0x95, 0x47, 0x61, + 0x8b, 0x71, 0x02, 0x83, 0x08, 0x44, 0x48, 0xe7, 0x62, 0x0b, 0x2b, 0x8d, + 0x98, 0xef, 0xf4, 0xc5, 0x6e, 0xe8, 0xff, 0x00, 0x66, 0x4b, 0x99, 0xad, + 0xb3, 0x0c, 0x65, 0xa0, 0x00, 0xb3, 0xb6, 0xe5, 0xdc, 0x1b, 0x23, 0x07, + 0xb7, 0x1e, 0x95, 0xca, 0x89, 0x5a, 0xea, 0x38, 0xa1, 0x69, 0xd3, 0xe4, + 0x0d, 0xc3, 0x75, 0xe9, 0xeb, 0x5d, 0x05, 0xa5, 0x8e, 0x9d, 0x2c, 0x22, + 0x29, 0x24, 0xf2, 0xee, 0x70, 0xac, 0x8e, 0xae, 0x08, 0x23, 0x07, 0x3c, + 0x7e, 0x54, 0x5e, 0xdb, 0x0d, 0x15, 0xaf, 0x23, 0xb6, 0xd3, 0xa6, 0x9e, + 0x77, 0xb7, 0x13, 0x09, 0xd0, 0xf9, 0x4a, 0x7e, 0xe8, 0x24, 0x9e, 0x72, + 0x39, 0xe2, 0xb9, 0xeb, 0x8b, 0x79, 0x60, 0x8b, 0xcd, 0x62, 0x4e, 0xfc, + 0x1c, 0x60, 0xff, 0x00, 0x3a, 0xd9, 0xbe, 0xd2, 0xda, 0x2b, 0x58, 0x24, + 0x4b, 0xa5, 0x96, 0x56, 0x94, 0xaf, 0x94, 0x78, 0x20, 0x7b, 0xd2, 0xdd, + 0xea, 0x77, 0x52, 0xdb, 0x3c, 0x37, 0x31, 0x46, 0x15, 0x3e, 0xe2, 0x22, + 0x71, 0x81, 0xc7, 0x50, 0x7a, 0x55, 0x2b, 0xd8, 0x4d, 0x17, 0xbc, 0x37, + 0xe1, 0xcd, 0x43, 0x52, 0xd5, 0xad, 0xa0, 0x9e, 0xf2, 0x1b, 0x11, 0x24, + 0x79, 0x8e, 0x66, 0x7c, 0x67, 0x2b, 0x90, 0x06, 0x3b, 0xd6, 0xd6, 0x97, + 0xe1, 0xb9, 0xb4, 0x8b, 0xf8, 0xde, 0x7b, 0xe4, 0x9e, 0x19, 0xe1, 0x6d, + 0xca, 0x9c, 0x12, 0x99, 0x00, 0xf2, 0x7b, 0xe0, 0x9a, 0xe3, 0x22, 0xd4, + 0xb5, 0x2f, 0xb3, 0x45, 0x89, 0x14, 0x24, 0x1f, 0x22, 0x16, 0x00, 0x95, + 0x07, 0xaf, 0xbf, 0xe3, 0x5b, 0xbf, 0x6b, 0xd4, 0x4e, 0x95, 0xa6, 0xdd, + 0x33, 0x5b, 0xb2, 0x5a, 0xa8, 0x29, 0x6e, 0x5b, 0xe6, 0x98, 0x64, 0x9e, + 0x40, 0xfa, 0x55, 0xa0, 0x47, 0xa2, 0xf8, 0x87, 0xc3, 0x68, 0xba, 0x79, + 0xb9, 0x0a, 0xc6, 0xda, 0x24, 0x05, 0x22, 0x92, 0x45, 0x59, 0x1d, 0x71, + 0xc6, 0x31, 0xf7, 0xb1, 0x9f, 0x5a, 0xc0, 0x81, 0x65, 0xd1, 0xa3, 0xf2, + 0x27, 0x54, 0x5d, 0x3a, 0x78, 0xc9, 0x8e, 0x09, 0x4e, 0x4a, 0x96, 0x1c, + 0x37, 0x22, 0xb9, 0x6d, 0x5b, 0xe2, 0x16, 0xb1, 0xad, 0x5a, 0xf9, 0x17, + 0x72, 0x7e, 0xec, 0x64, 0xa2, 0xa9, 0xc0, 0x5e, 0x9d, 0x3d, 0xb8, 0xe9, + 0x54, 0x2c, 0xaf, 0xe6, 0xba, 0x81, 0x92, 0x6b, 0xa6, 0xc2, 0x03, 0x8d, + 0xcc, 0x49, 0x3e, 0x80, 0x76, 0xa9, 0x9b, 0xd3, 0x40, 0xba, 0x65, 0xbd, + 0x5a, 0xd6, 0xec, 0xea, 0x30, 0xc9, 0x1e, 0xc9, 0x11, 0xe3, 0x22, 0x32, + 0x4a, 0x9f, 0x95, 0x78, 0xfc, 0xea, 0xd2, 0xc1, 0xa7, 0xda, 0x5b, 0xdb, + 0xde, 0xc7, 0x70, 0x5a, 0x76, 0x4d, 0xaf, 0x1e, 0xde, 0x51, 0xfe, 0xb5, + 0x8a, 0x12, 0x47, 0xbf, 0x8c, 0x0b, 0x87, 0x66, 0xc6, 0x58, 0xb9, 0xc6, + 0x29, 0xb7, 0x6e, 0x63, 0x98, 0xab, 0x36, 0xec, 0x71, 0xc7, 0x4a, 0xe5, + 0x73, 0xd6, 0xc8, 0x0e, 0xea, 0x0d, 0x6e, 0x3b, 0x4d, 0x2e, 0xe5, 0x27, + 0xd3, 0x5e, 0x61, 0x32, 0x0d, 0x92, 0xc6, 0x15, 0x40, 0x00, 0xe3, 0xe6, + 0xc5, 0x79, 0xff, 0x00, 0xd9, 0x66, 0x9a, 0xe9, 0xd6, 0x1f, 0xbb, 0xd4, + 0x2b, 0x1a, 0xb0, 0xb2, 0xbb, 0x5b, 0x08, 0xfc, 0xd9, 0x0a, 0x13, 0xc2, + 0xe7, 0x02, 0x93, 0xec, 0xce, 0x92, 0xed, 0x79, 0x18, 0x1d, 0xbc, 0x10, + 0x45, 0x54, 0xaa, 0x05, 0xae, 0x5d, 0x44, 0x65, 0xb4, 0x5f, 0x36, 0x24, + 0xfb, 0xc1, 0x79, 0xeb, 0x4c, 0x9e, 0xda, 0x5b, 0x79, 0xe4, 0x8c, 0x46, + 0x1b, 0x76, 0x32, 0x71, 0xd2, 0xac, 0x30, 0x92, 0x0d, 0x36, 0x27, 0x2d, + 0xb9, 0x1a, 0x40, 0x1b, 0x8e, 0x41, 0xa8, 0xcd, 0xd4, 0xaa, 0xf2, 0x34, + 0x47, 0x70, 0xc8, 0xcf, 0x3d, 0x6b, 0x9a, 0xee, 0xe5, 0xdb, 0x42, 0x92, + 0x14, 0x59, 0xf1, 0x39, 0x31, 0xe7, 0xd1, 0x72, 0x3f, 0x1a, 0x58, 0x99, + 0xe3, 0xbb, 0x0f, 0x1b, 0x85, 0x56, 0x39, 0xe0, 0xd4, 0x92, 0xdd, 0xa4, + 0xec, 0xef, 0x24, 0x60, 0x12, 0x00, 0x39, 0xc5, 0x53, 0x11, 0x6e, 0x93, + 0x28, 0x0e, 0x0f, 0x4c, 0x8a, 0xdd, 0x3d, 0x35, 0x33, 0x67, 0x49, 0x24, + 0xed, 0x2d, 0xb9, 0x8d, 0x19, 0x0a, 0xa9, 0x38, 0x3d, 0x18, 0xfd, 0x6b, + 0x35, 0xae, 0x30, 0x8b, 0x18, 0x50, 0xa4, 0x3e, 0x77, 0x66, 0xab, 0xc2, + 0x19, 0x37, 0x06, 0x25, 0x48, 0xed, 0x51, 0xb5, 0xe4, 0x96, 0x72, 0xf9, + 0xa8, 0xa0, 0xe3, 0x9e, 0x46, 0x41, 0xa9, 0xd5, 0xbb, 0x31, 0x9b, 0x11, + 0xeb, 0x72, 0xad, 0xbb, 0xee, 0xf2, 0xc1, 0x53, 0x82, 0x43, 0x72, 0x7e, + 0x82, 0xb3, 0x26, 0x91, 0xaf, 0x37, 0x48, 0xec, 0xd8, 0xce, 0x01, 0xeb, + 0x59, 0xe6, 0xed, 0xa7, 0x5d, 0xcc, 0xb8, 0xe4, 0x9c, 0x01, 0x53, 0x43, + 0x3e, 0xd6, 0x03, 0x6e, 0x06, 0x39, 0x52, 0x6b, 0x4e, 0x4b, 0x6a, 0x2b, + 0xdc, 0xb3, 0x02, 0xba, 0x82, 0x11, 0x0b, 0x11, 0xdd, 0x7d, 0x2b, 0xd4, + 0xfe, 0x1f, 0x78, 0xb6, 0x31, 0xac, 0x47, 0x67, 0x3b, 0xa2, 0xad, 0xca, + 0x2c, 0x21, 0x55, 0x76, 0xfc, 0xe0, 0x70, 0x48, 0xfd, 0x33, 0x5e, 0x5f, + 0xb1, 0xad, 0xca, 0xb2, 0x86, 0x57, 0x3c, 0xe1, 0xb8, 0x05, 0x7d, 0x8f, + 0x7a, 0xd3, 0xf0, 0xce, 0xa1, 0x1e, 0x97, 0xa8, 0xc7, 0xa8, 0xa8, 0xdf, + 0x79, 0x14, 0x9b, 0xa2, 0x8d, 0xf8, 0x4f, 0xc4, 0xd6, 0xb4, 0xdb, 0x8b, + 0xb9, 0x2d, 0x1f, 0x4f, 0x34, 0x45, 0x47, 0x35, 0x19, 0x1c, 0x56, 0x67, + 0x85, 0xfc, 0x45, 0x6d, 0xe2, 0x3d, 0x25, 0x67, 0x49, 0x10, 0xdc, 0xa7, + 0xcb, 0x3c, 0x61, 0xbe, 0xe3, 0x7f, 0x85, 0x6c, 0x37, 0xd0, 0x57, 0xa3, + 0x19, 0x5c, 0x97, 0x11, 0x1b, 0x0a, 0xa5, 0x8f, 0x00, 0x0c, 0x93, 0x58, + 0xd0, 0xf8, 0x8e, 0xca, 0x7b, 0xb5, 0x85, 0x52, 0x6d, 0x8e, 0x76, 0xa4, + 0xbb, 0x7e, 0x56, 0x34, 0xcf, 0x19, 0x6a, 0x2f, 0x61, 0xa5, 0xf9, 0x76, + 0xf3, 0x24, 0x72, 0xca, 0x70, 0x72, 0x46, 0x4a, 0xe3, 0x07, 0xf9, 0xd7, + 0x92, 0xdf, 0x78, 0xa2, 0xe6, 0xce, 0xe0, 0x45, 0x0c, 0x66, 0x11, 0xf7, + 0x80, 0xeb, 0x83, 0xea, 0x2b, 0x19, 0xd5, 0xe5, 0xd4, 0xab, 0x1e, 0xc1, + 0xad, 0xea, 0xf6, 0x9a, 0x55, 0xa3, 0x79, 0xee, 0xbe, 0x63, 0xa9, 0xd8, + 0x84, 0x67, 0x3f, 0x5f, 0x6a, 0xf2, 0x1b, 0xbb, 0xa9, 0x26, 0xb9, 0xf3, + 0x24, 0x64, 0xdb, 0xd5, 0x55, 0x46, 0x05, 0x36, 0xf3, 0xc4, 0x0f, 0x7f, + 0x10, 0x7b, 0xdf, 0x32, 0x49, 0x19, 0x7e, 0x66, 0x23, 0xa7, 0xa6, 0x2b, + 0x9d, 0xb0, 0x92, 0xe2, 0x59, 0x24, 0xd9, 0x93, 0x12, 0x64, 0x92, 0x7a, + 0xe2, 0xbc, 0xaa, 0xf5, 0xe5, 0x59, 0xb6, 0xf4, 0x48, 0xb8, 0xa5, 0x13, + 0x66, 0xe6, 0xfd, 0xed, 0xe1, 0x29, 0x10, 0x2a, 0xee, 0xc4, 0x99, 0x31, + 0xc1, 0x15, 0x72, 0xd1, 0x83, 0xe8, 0xe6, 0x6b, 0x9b, 0xff, 0x00, 0x2a, + 0x22, 0xdd, 0x0f, 0x5f, 0xa5, 0x50, 0x92, 0x19, 0xee, 0xe3, 0x81, 0x84, + 0x58, 0xe7, 0x39, 0x07, 0x80, 0x3d, 0x4d, 0x74, 0x10, 0xe8, 0x3f, 0x6f, + 0xb0, 0x6b, 0x59, 0x24, 0x55, 0xb6, 0xea, 0xf2, 0x67, 0x92, 0x7d, 0x2b, + 0x8d, 0xa8, 0xa3, 0x68, 0xa6, 0xcb, 0xd1, 0xe9, 0xcd, 0x3c, 0x56, 0xd7, + 0x96, 0xfb, 0x7c, 0xbd, 0xb9, 0x5c, 0xf2, 0x29, 0x93, 0x6a, 0x4b, 0x6e, + 0xc4, 0x88, 0x72, 0xe4, 0x7f, 0x7b, 0x3b, 0x6b, 0x46, 0xc8, 0xc3, 0x0d, + 0xaa, 0xdb, 0xa4, 0x92, 0x08, 0x20, 0x50, 0xa1, 0x43, 0x64, 0xb0, 0x1e, + 0xfd, 0xab, 0x9e, 0xbe, 0xb5, 0x86, 0x78, 0xe6, 0x96, 0xcd, 0x9c, 0x36, + 0x4e, 0xe0, 0xc7, 0x23, 0xf3, 0xac, 0x97, 0xbc, 0xf5, 0x35, 0x6a, 0xc8, + 0xad, 0x15, 0xd2, 0x5c, 0x4b, 0x23, 0x10, 0x1b, 0x6b, 0x72, 0xde, 0x9e, + 0xd5, 0x06, 0xa1, 0x65, 0x1d, 0xda, 0xf9, 0x6c, 0xdb, 0x10, 0x73, 0x80, + 0xd5, 0x2e, 0x99, 0x2c, 0x0a, 0xcf, 0x11, 0x8b, 0x32, 0x32, 0x7f, 0x17, + 0x4f, 0xad, 0x55, 0x9a, 0xda, 0x56, 0x56, 0x2a, 0xcc, 0xaa, 0xc7, 0x04, + 0x91, 0xfc, 0xaa, 0xb6, 0x96, 0x86, 0x6d, 0x99, 0xb2, 0x79, 0x56, 0x33, + 0xa1, 0x2a, 0x30, 0x17, 0x05, 0xcf, 0xcd, 0x8a, 0xab, 0x79, 0x32, 0x14, + 0x2a, 0xad, 0xb9, 0x1b, 0xe6, 0x03, 0x19, 0xeb, 0x56, 0xcd, 0x85, 0xd1, + 0x46, 0x9f, 0x6e, 0xe0, 0x84, 0x90, 0x5f, 0xa3, 0x1a, 0xc6, 0x9a, 0xe2, + 0x61, 0x31, 0x59, 0x12, 0x38, 0xd7, 0x1f, 0xc2, 0x78, 0xad, 0xe3, 0xab, + 0x21, 0xc8, 0xb3, 0x6a, 0x96, 0xf1, 0xdb, 0x89, 0xe4, 0x7f, 0x98, 0x1f, + 0xef, 0x74, 0xaa, 0x97, 0xde, 0x56, 0x54, 0xc6, 0x77, 0xbb, 0x13, 0xdf, + 0xb7, 0x6a, 0xb3, 0x05, 0xa5, 0xbb, 0x2b, 0x2c, 0xbf, 0xbd, 0x2d, 0x1e, + 0xe5, 0xc1, 0xc6, 0x05, 0x67, 0x5d, 0x59, 0x3c, 0x7a, 0x80, 0xb7, 0xb7, + 0x25, 0x97, 0x68, 0x3f, 0xbc, 0x38, 0x22, 0xb4, 0x49, 0x73, 0x10, 0x5c, + 0x1a, 0x45, 0xe6, 0xa0, 0xaa, 0x04, 0x8b, 0x1a, 0x80, 0x30, 0x5b, 0x8c, + 0xf3, 0x5a, 0xf6, 0xfa, 0x45, 0xa5, 0xb5, 0x9c, 0x91, 0x89, 0x03, 0x28, + 0x19, 0x77, 0x62, 0x33, 0x91, 0xe9, 0x4c, 0xb6, 0x5b, 0x66, 0x93, 0x6a, + 0xea, 0x71, 0xa4, 0x88, 0x02, 0xb2, 0xa8, 0xc0, 0x3f, 0x8d, 0x2c, 0x9e, + 0x1c, 0x6b, 0xa5, 0x71, 0x6f, 0x72, 0xf2, 0x4a, 0x4f, 0x2f, 0xc8, 0x03, + 0x1d, 0x6b, 0x19, 0x4f, 0xa3, 0x76, 0x29, 0x22, 0x92, 0xc7, 0xa5, 0xd9, + 0x4e, 0x1c, 0x19, 0x1c, 0x93, 0xbb, 0x6b, 0x1c, 0x55, 0xbb, 0x5b, 0x9b, + 0x09, 0xfc, 0xc4, 0x29, 0x0c, 0x48, 0x4f, 0x00, 0x64, 0xe4, 0xd6, 0xb5, + 0xbe, 0x82, 0xa9, 0x14, 0x5f, 0x6a, 0x6f, 0x39, 0xe3, 0x5e, 0x59, 0x97, + 0xf4, 0xab, 0x36, 0x5e, 0x17, 0xb5, 0x8a, 0xe5, 0xee, 0x81, 0x01, 0x38, + 0x62, 0x8c, 0xb9, 0x15, 0x12, 0xad, 0x0e, 0xe5, 0x24, 0xcc, 0xfb, 0x7d, + 0x3e, 0x1b, 0x79, 0x4c, 0xa3, 0x78, 0x8c, 0xf4, 0x66, 0x3d, 0x4f, 0xa0, + 0xa7, 0xcf, 0x24, 0x50, 0xc7, 0xbd, 0x07, 0xce, 0x49, 0x24, 0x7f, 0x4a, + 0xdc, 0xf2, 0xe1, 0x79, 0x42, 0xa0, 0x57, 0x00, 0xe7, 0x9e, 0x80, 0x54, + 0x13, 0xe9, 0xd1, 0xc9, 0x72, 0xb8, 0x2b, 0xb4, 0xf2, 0xdf, 0xec, 0xd6, + 0x0a, 0x77, 0x77, 0x63, 0xf4, 0x39, 0x69, 0xed, 0xa6, 0x9e, 0x44, 0x9b, + 0x61, 0x32, 0x2b, 0x06, 0x50, 0x17, 0x3f, 0x9d, 0x37, 0xc6, 0x5a, 0x7c, + 0xab, 0x79, 0x6d, 0x2f, 0x9a, 0x93, 0x34, 0x91, 0x65, 0xbc, 0xb5, 0xc6, + 0xde, 0xfd, 0x2b, 0xb0, 0x09, 0xb2, 0x55, 0x5d, 0xa8, 0x57, 0x39, 0x39, + 0xe9, 0xed, 0x51, 0xcb, 0x14, 0x77, 0x28, 0x59, 0x62, 0x55, 0x60, 0x7e, + 0xf1, 0x5c, 0xed, 0xf5, 0xe6, 0xb7, 0xa7, 0x8a, 0xe4, 0xdd, 0x0f, 0xec, + 0xb4, 0x79, 0x3b, 0x43, 0x35, 0xbe, 0xc7, 0x11, 0xb6, 0xd3, 0xd0, 0x91, + 0xd6, 0xba, 0x3b, 0x10, 0xb3, 0x58, 0xa2, 0x19, 0xb6, 0x19, 0x0f, 0xcf, + 0x1e, 0xce, 0x0e, 0x3d, 0x0f, 0xad, 0x69, 0xcf, 0xe1, 0xbb, 0xab, 0x8b, + 0xcd, 0xee, 0xca, 0xd0, 0x37, 0x0a, 0x43, 0x7f, 0x4a, 0xd3, 0xb0, 0xd1, + 0xe1, 0xd3, 0xd8, 0xfd, 0x9d, 0x51, 0xe4, 0x07, 0x21, 0x99, 0xbe, 0xed, + 0x6b, 0x53, 0x11, 0x19, 0x2f, 0x33, 0x35, 0x1b, 0x18, 0x1a, 0x84, 0xed, + 0x71, 0x6c, 0xb1, 0x5d, 0x41, 0xe5, 0x82, 0x47, 0xef, 0x18, 0x7d, 0xd1, + 0xc7, 0x5a, 0xe5, 0xf5, 0x8b, 0x24, 0xb2, 0xbb, 0x51, 0x04, 0xfe, 0x74, + 0x4c, 0x32, 0x1b, 0x18, 0xaf, 0x4d, 0xd4, 0x2e, 0xa3, 0x48, 0x5d, 0x6e, + 0xe2, 0x0d, 0xbc, 0x6d, 0x6f, 0x93, 0x9f, 0xce, 0xb0, 0xe4, 0xb6, 0xd1, + 0xe5, 0xdb, 0x1c, 0xd0, 0xbe, 0xe0, 0xfb, 0x81, 0x2d, 0x92, 0x7d, 0xbe, + 0x94, 0xa8, 0xd6, 0xb7, 0x40, 0x92, 0x46, 0x4f, 0x85, 0x62, 0x57, 0x92, + 0x59, 0x16, 0x1e, 0x71, 0x86, 0x25, 0xba, 0x03, 0x5a, 0x72, 0xd9, 0xd9, + 0x5e, 0x3c, 0xb6, 0x71, 0xe9, 0xeb, 0x13, 0x1e, 0xb2, 0x13, 0xf9, 0x11, + 0x59, 0xb7, 0x16, 0xb2, 0x5b, 0xcb, 0x35, 0xc5, 0xb3, 0xc6, 0x91, 0x6e, + 0xe1, 0x37, 0x64, 0xd2, 0x23, 0x5e, 0xad, 0xbc, 0xae, 0xf7, 0x89, 0x1f, + 0x70, 0xbb, 0x73, 0xd3, 0xde, 0xb7, 0x9b, 0x72, 0x77, 0xb9, 0x2b, 0xb1, + 0x9d, 0xab, 0xc1, 0x71, 0x67, 0x18, 0xb3, 0xb9, 0x5f, 0x91, 0x4f, 0xee, + 0xca, 0xf4, 0x3e, 0xf5, 0x44, 0xdc, 0x34, 0x91, 0x88, 0xcb, 0x49, 0x24, + 0xad, 0xf2, 0xed, 0x3c, 0x80, 0x07, 0x4c, 0x56, 0xfd, 0xfd, 0x99, 0xbb, + 0x88, 0x1b, 0xcb, 0x84, 0x79, 0xb0, 0x0a, 0x32, 0x74, 0xfa, 0x1a, 0xad, + 0x1a, 0xc1, 0x6e, 0xe8, 0x3e, 0xcc, 0x15, 0xc7, 0x01, 0xd4, 0xe6, 0xae, + 0x0f, 0x40, 0x6c, 0x76, 0x97, 0x63, 0x7b, 0x71, 0x3c, 0x71, 0x30, 0x8d, + 0x72, 0x30, 0x24, 0x3f, 0xc2, 0x2b, 0xb3, 0x93, 0x41, 0xb3, 0xb7, 0xb3, + 0x49, 0xf6, 0x3d, 0xc5, 0xd4, 0x43, 0x00, 0x37, 0x20, 0xfe, 0x75, 0xcc, + 0xa6, 0xa0, 0x88, 0x3c, 0xb5, 0x65, 0x32, 0x13, 0xce, 0x5b, 0xa5, 0x69, + 0xe9, 0xde, 0x21, 0x78, 0xa6, 0x11, 0xca, 0x7c, 0xc0, 0xa7, 0x1b, 0x89, + 0xfd, 0x6b, 0x2a, 0xb1, 0x93, 0xd8, 0x71, 0x92, 0x29, 0xea, 0x16, 0x5b, + 0x24, 0xdd, 0x67, 0x69, 0xfb, 0xe6, 0x6e, 0x63, 0xd9, 0x92, 0x7d, 0xc5, + 0x4f, 0x67, 0x7c, 0xf6, 0x76, 0xa6, 0x3b, 0xd8, 0xdb, 0x96, 0xc0, 0xdc, + 0xdf, 0x74, 0x8e, 0xb4, 0xfd, 0x40, 0xac, 0x7a, 0x97, 0x9f, 0x05, 0xcc, + 0x9e, 0x62, 0x90, 0xde, 0x58, 0xf7, 0xe4, 0x73, 0x4e, 0xd4, 0xd2, 0xf6, + 0xf7, 0x45, 0x95, 0x62, 0x80, 0xbc, 0xa5, 0xb2, 0xea, 0xbc, 0xe3, 0x1d, + 0xeb, 0x3b, 0xb7, 0x64, 0xc6, 0x42, 0xd3, 0xbc, 0xf7, 0x88, 0x60, 0x57, + 0x91, 0x01, 0xcb, 0x2a, 0xa7, 0x6f, 0xae, 0x6b, 0x4a, 0xd4, 0xd9, 0x34, + 0x82, 0x79, 0x23, 0x41, 0x3a, 0xb6, 0x02, 0xb0, 0x38, 0xc7, 0xf4, 0xac, + 0x2d, 0x2d, 0xb5, 0x28, 0xe2, 0x56, 0x37, 0x28, 0xaa, 0x07, 0x31, 0x91, + 0x83, 0xf8, 0xd2, 0x2e, 0xad, 0x73, 0x0d, 0xd4, 0xa9, 0x71, 0xb7, 0xa6, + 0x09, 0x5c, 0x12, 0x3d, 0xf3, 0x4d, 0xc2, 0xfa, 0x21, 0xa6, 0x6c, 0xf8, + 0x8a, 0xf8, 0x45, 0xa7, 0xca, 0xa5, 0x51, 0x59, 0xdb, 0x01, 0xa3, 0x93, + 0xd3, 0xda, 0xb0, 0xf4, 0xe6, 0x86, 0x7b, 0x77, 0x79, 0xa6, 0xc2, 0xa7, + 0x3b, 0x5b, 0x92, 0xc6, 0x93, 0x56, 0x99, 0x2f, 0xa3, 0x8e, 0x02, 0xab, + 0x2c, 0xac, 0xa1, 0xa2, 0x92, 0x21, 0xd7, 0xd9, 0xbd, 0xea, 0x4b, 0x1d, + 0x3c, 0x41, 0x01, 0xcc, 0xdb, 0x5c, 0x7d, 0xe0, 0x47, 0x1f, 0x4a, 0x70, + 0xa7, 0xcb, 0x1b, 0x03, 0x77, 0x64, 0x77, 0x96, 0xb6, 0x88, 0x9e, 0x64, + 0x65, 0x80, 0xce, 0x4a, 0xbe, 0x70, 0x2a, 0x9c, 0x4a, 0x3e, 0xdb, 0x03, + 0xed, 0x0b, 0x12, 0xb2, 0xef, 0xc1, 0xf7, 0xad, 0x79, 0x34, 0xf9, 0x6e, + 0xe7, 0xfd, 0xc0, 0x90, 0x5b, 0x6d, 0xc1, 0x60, 0x73, 0xcd, 0x54, 0xfb, + 0x20, 0xb5, 0x9d, 0x22, 0x8f, 0x73, 0x64, 0xe5, 0xdc, 0x9e, 0x9f, 0x5a, + 0x69, 0xd9, 0xee, 0x1d, 0x4d, 0x9b, 0xcb, 0xc8, 0x4e, 0xaa, 0xf6, 0xd1, + 0x1d, 0xc9, 0x9c, 0xa8, 0x0b, 0xc1, 0xa5, 0xf2, 0xe2, 0x36, 0x6c, 0xec, + 0x02, 0xe4, 0x9c, 0x85, 0x1c, 0x81, 0xf4, 0xac, 0x89, 0xa7, 0x41, 0x31, + 0x78, 0x5b, 0x75, 0xc0, 0xea, 0x54, 0x55, 0xbd, 0x3d, 0x96, 0x53, 0x14, + 0xd2, 0x3c, 0xa3, 0x2a, 0x49, 0x2d, 0xc6, 0x4d, 0x44, 0xa3, 0xd5, 0x16, + 0xdd, 0xd9, 0x23, 0xc5, 0x2d, 0xdd, 0xb2, 0xe2, 0x47, 0x8e, 0x10, 0x07, + 0x21, 0x7a, 0xd2, 0x19, 0xbc, 0xae, 0x24, 0x0b, 0x12, 0x9c, 0x0d, 0xe0, + 0x03, 0x9f, 0x62, 0x2b, 0x48, 0x3a, 0xc5, 0x13, 0xda, 0x90, 0x1b, 0x1d, + 0x40, 0x38, 0x20, 0x56, 0x45, 0xcd, 0xd4, 0x31, 0xc8, 0xb0, 0xc8, 0x8a, + 0xf9, 0xe4, 0x6d, 0x53, 0x95, 0x35, 0x9a, 0xbb, 0xd2, 0xc2, 0x7a, 0x16, + 0xad, 0xd4, 0x94, 0xc8, 0x58, 0xd5, 0x48, 0x3c, 0x90, 0x2b, 0x2b, 0x5a, + 0x81, 0x3c, 0x95, 0x91, 0x9d, 0x4c, 0xc0, 0xe1, 0x15, 0x47, 0xf3, 0xad, + 0x38, 0xa2, 0x91, 0xd1, 0xc8, 0xde, 0xc7, 0x1c, 0xe3, 0x8f, 0x7a, 0x86, + 0x5b, 0x6e, 0x8d, 0x36, 0x09, 0x38, 0x3f, 0x3f, 0x06, 0x9c, 0x74, 0x95, + 0xc4, 0xd6, 0x87, 0x3a, 0x2c, 0x98, 0x45, 0xe6, 0xbe, 0xe0, 0xe5, 0xb0, + 0x0f, 0xaf, 0xd2, 0x99, 0x2d, 0x8c, 0xe2, 0xe7, 0xcc, 0x46, 0x60, 0x47, + 0x57, 0xcf, 0x35, 0xd6, 0x9f, 0xb3, 0x9c, 0x43, 0x24, 0x00, 0xed, 0x38, + 0x03, 0xb6, 0x7e, 0xb5, 0x9d, 0x79, 0x68, 0xbb, 0x77, 0x42, 0xcc, 0x13, + 0x77, 0x2b, 0xba, 0xb4, 0x8d, 0x67, 0x71, 0x72, 0x98, 0xd7, 0x1e, 0x1f, + 0x11, 0x81, 0x22, 0x5d, 0x2b, 0xee, 0xe7, 0xa6, 0x32, 0x6a, 0xee, 0x95, + 0x04, 0x9a, 0x76, 0xa0, 0x91, 0xcf, 0x0c, 0x61, 0x24, 0x6f, 0x99, 0xfe, + 0xf0, 0x03, 0xd8, 0xd4, 0x77, 0x52, 0x5c, 0x47, 0x22, 0xba, 0xc6, 0x76, + 0xa8, 0xce, 0x3a, 0x8a, 0xd2, 0xb0, 0x49, 0x25, 0x74, 0x9a, 0x48, 0x9d, + 0x15, 0xb0, 0x14, 0x6d, 0xe0, 0xff, 0x00, 0x85, 0x69, 0xcc, 0xda, 0xd4, + 0x71, 0xb5, 0xca, 0x30, 0x6b, 0x30, 0xd8, 0xca, 0xeb, 0x8c, 0x49, 0x1b, + 0x9c, 0x12, 0x7e, 0x56, 0x19, 0xe9, 0x8a, 0xd6, 0x93, 0xc4, 0x71, 0x08, + 0xcd, 0xd2, 0xac, 0xb2, 0x46, 0xa4, 0x06, 0xd8, 0xe3, 0x83, 0xeb, 0xeb, + 0x5c, 0x9e, 0xb1, 0x3b, 0x26, 0xa3, 0x72, 0x9e, 0x42, 0x29, 0x0e, 0x40, + 0xe3, 0x9a, 0x9e, 0x78, 0xec, 0x2d, 0xf4, 0x38, 0xfc, 0xc6, 0x91, 0x6f, + 0x24, 0xf9, 0xb6, 0xe3, 0x8c, 0x53, 0x95, 0x28, 0xbb, 0x37, 0xd4, 0x2f, + 0xb9, 0xa5, 0x2f, 0x8e, 0x2e, 0x44, 0x8a, 0xb1, 0x6e, 0x31, 0x90, 0x37, + 0x6f, 0x19, 0x38, 0xf4, 0x15, 0x22, 0xf8, 0xc1, 0x25, 0xb2, 0x78, 0x25, + 0x88, 0x90, 0xc7, 0x2a, 0x73, 0xc8, 0xae, 0x33, 0x77, 0xce, 0x46, 0x78, + 0xa7, 0x32, 0xc8, 0xa0, 0x1d, 0x98, 0x53, 0xd0, 0xd6, 0xbf, 0x57, 0x86, + 0xd6, 0x23, 0x9d, 0x97, 0x9c, 0xa3, 0x82, 0x23, 0x40, 0x1c, 0x92, 0x77, + 0x1e, 0xf4, 0xc4, 0x53, 0x1f, 0x05, 0x58, 0x37, 0xa8, 0xaa, 0x42, 0x47, + 0x5e, 0x48, 0x35, 0x22, 0x4e, 0x64, 0x95, 0x7c, 0xc2, 0x76, 0x92, 0x01, + 0xad, 0x39, 0x59, 0x26, 0xa8, 0x8d, 0xde, 0x49, 0x09, 0x90, 0x9c, 0x8e, + 0x6a, 0x24, 0x78, 0x80, 0xc6, 0x46, 0x15, 0x78, 0xcf, 0xad, 0x4d, 0x23, + 0x25, 0xb5, 0x81, 0x63, 0xe6, 0x28, 0x91, 0xc8, 0x0d, 0x8e, 0x0e, 0x2b, + 0x2b, 0x7e, 0x5b, 0x70, 0x1f, 0x28, 0xef, 0xeb, 0x59, 0xa5, 0x72, 0xe5, + 0xa1, 0xa5, 0x0d, 0xc4, 0x62, 0xc8, 0x83, 0xf2, 0xbe, 0x4e, 0x08, 0xef, + 0x51, 0x34, 0x9e, 0x68, 0x1e, 0x69, 0xc9, 0x1d, 0x0d, 0x51, 0x49, 0xfc, + 0xb7, 0xdc, 0x24, 0x51, 0xbb, 0xa8, 0xf4, 0xa8, 0xae, 0x24, 0xdc, 0xe0, + 0x89, 0x3a, 0x74, 0xaa, 0x50, 0xd4, 0x86, 0xee, 0x68, 0x1b, 0x91, 0x1a, + 0xe1, 0x58, 0x8a, 0x7c, 0x57, 0x5b, 0x8a, 0x9c, 0x93, 0x8f, 0x41, 0x59, + 0x09, 0x76, 0xc3, 0x3b, 0x80, 0x60, 0x7d, 0x69, 0xa9, 0x2b, 0x03, 0x80, + 0x48, 0xc9, 0xed, 0x57, 0xec, 0x89, 0xd4, 0xde, 0x92, 0xe0, 0x48, 0x4e, + 0x22, 0xc8, 0x35, 0x12, 0xc1, 0x0b, 0x21, 0xdc, 0x36, 0x7b, 0x9e, 0x71, + 0x50, 0x2d, 0xcb, 0x88, 0x76, 0x82, 0xa7, 0x3d, 0xc9, 0xa8, 0x24, 0x9e, + 0x6d, 0x9b, 0x73, 0xc7, 0x7a, 0x4a, 0x8c, 0xfa, 0x0e, 0xc9, 0x8d, 0x96, + 0x67, 0x00, 0xa2, 0xb6, 0x50, 0x1e, 0x2a, 0x35, 0x72, 0x48, 0xa4, 0x12, + 0x05, 0xce, 0x46, 0x7d, 0x28, 0x32, 0xb1, 0xec, 0x07, 0xb0, 0xad, 0x79, + 0x64, 0x2b, 0x13, 0x2e, 0x43, 0x10, 0x41, 0xf7, 0xab, 0x08, 0x77, 0x01, + 0x93, 0xc5, 0x51, 0x69, 0xdd, 0x9b, 0x9e, 0x06, 0x30, 0x71, 0x57, 0x00, + 0xdb, 0x81, 0xb9, 0x72, 0x46, 0x72, 0x4d, 0x67, 0x28, 0xb5, 0xab, 0x19, + 0x3c, 0x92, 0x24, 0x7f, 0xbb, 0x56, 0xc6, 0x70, 0x78, 0xef, 0x4b, 0x23, + 0x87, 0x91, 0x4e, 0x30, 0x00, 0xed, 0xc5, 0x40, 0xb2, 0x05, 0x90, 0x12, + 0xaa, 0xc7, 0xfd, 0xaa, 0x4b, 0x89, 0x7c, 0xc8, 0xf7, 0x74, 0x23, 0x8c, + 0x54, 0xda, 0xed, 0x0e, 0xe3, 0xe0, 0xba, 0x2b, 0x39, 0x8f, 0x18, 0x19, + 0xf5, 0xab, 0xfc, 0x6e, 0x06, 0x3c, 0x37, 0x1c, 0x93, 0x5c, 0xe6, 0x49, + 0x6d, 0xc4, 0xe7, 0xf1, 0xe6, 0xac, 0xad, 0xe4, 0x8b, 0xf2, 0x67, 0xa7, + 0x7a, 0xa9, 0x53, 0xec, 0x2d, 0x8d, 0x89, 0xa3, 0x8a, 0xda, 0x52, 0x92, + 0x6d, 0x2e, 0x57, 0x2a, 0x47, 0x43, 0x50, 0x5c, 0x23, 0x2c, 0x6b, 0xb4, + 0x1d, 0xd8, 0xc9, 0xf6, 0xa8, 0xe1, 0x95, 0xee, 0xa6, 0x1c, 0x6e, 0x28, + 0x9c, 0x0e, 0xf5, 0x7f, 0x63, 0x18, 0x15, 0x9c, 0x3e, 0x49, 0x24, 0xab, + 0x70, 0x38, 0xac, 0xe4, 0xf9, 0x77, 0x2a, 0xd7, 0x46, 0x5f, 0xda, 0x18, + 0x26, 0xdc, 0x91, 0x83, 0x4e, 0x01, 0x24, 0x42, 0xcc, 0xdf, 0x32, 0xf3, + 0xe9, 0x56, 0x6e, 0xec, 0x63, 0x44, 0x56, 0x25, 0x83, 0x37, 0x20, 0x91, + 0xc5, 0x51, 0x78, 0x90, 0x7c, 0xdb, 0xf6, 0x8c, 0x72, 0x7d, 0x6a, 0xa2, + 0xd4, 0x95, 0xd0, 0xac, 0xd1, 0x22, 0x5e, 0x79, 0x38, 0xd8, 0x33, 0xea, + 0x3d, 0x69, 0xcb, 0xa8, 0xca, 0xaa, 0x46, 0x7a, 0x9e, 0x99, 0xe8, 0x2a, + 0xb4, 0xf2, 0xc6, 0xfb, 0x04, 0x61, 0x46, 0xd5, 0xe4, 0x81, 0xd4, 0xd5, + 0x72, 0xf9, 0xe0, 0x0a, 0xd1, 0x53, 0x8c, 0x95, 0xda, 0x26, 0xec, 0x9e, + 0x5b, 0xa2, 0xc4, 0xaa, 0xaf, 0xc9, 0xd3, 0x9a, 0x20, 0x78, 0xfe, 0xeb, + 0xee, 0xcf, 0x6c, 0x1e, 0x2a, 0xb7, 0x3d, 0x33, 0x53, 0x28, 0x01, 0xc0, + 0x65, 0x3f, 0x41, 0xde, 0x9b, 0x8a, 0x4a, 0xc3, 0x4c, 0x9e, 0x54, 0x69, + 0xe0, 0x76, 0x0f, 0xc4, 0x7d, 0x13, 0xda, 0xab, 0x41, 0x11, 0x94, 0x06, + 0x00, 0xed, 0xcf, 0x26, 0xad, 0xab, 0x01, 0x04, 0x9c, 0x82, 0x71, 0xca, + 0xb5, 0x55, 0x82, 0xe3, 0x68, 0x60, 0x17, 0x00, 0x93, 0xd2, 0xa5, 0x5d, + 0x27, 0x62, 0xac, 0x8b, 0xe6, 0x08, 0xcd, 0xda, 0xf9, 0x60, 0xec, 0x03, + 0x80, 0x39, 0xa9, 0x26, 0x75, 0x4d, 0xcc, 0x15, 0xba, 0x6d, 0x03, 0x1d, + 0x45, 0x1a, 0x74, 0xcb, 0x05, 0xc0, 0x79, 0x32, 0xe8, 0x50, 0x80, 0xa3, + 0xa8, 0xa9, 0xa6, 0x96, 0x39, 0x1d, 0xbc, 0xa9, 0x01, 0x1b, 0x77, 0x15, + 0x23, 0xa9, 0xf4, 0xae, 0x77, 0x74, 0xd0, 0xfa, 0x19, 0x4a, 0x0c, 0xee, + 0x77, 0x37, 0x00, 0x52, 0x34, 0xd2, 0xa4, 0x84, 0x09, 0x58, 0xe3, 0x8c, + 0xe7, 0xb5, 0x35, 0x8f, 0xef, 0x1f, 0x6a, 0x80, 0x0f, 0x6c, 0x53, 0x10, + 0x11, 0x21, 0x1b, 0x5b, 0x23, 0x90, 0x07, 0x6a, 0xe9, 0xf5, 0xd8, 0xcc, + 0x9e, 0x3b, 0xb9, 0x43, 0x81, 0xc7, 0xa7, 0x4e, 0xb5, 0xd6, 0xe8, 0xfe, + 0x2d, 0x16, 0x5a, 0x3d, 0xed, 0x8d, 0xca, 0x79, 0xab, 0x24, 0x6c, 0x91, + 0x93, 0x8f, 0x94, 0x91, 0x5c, 0x5c, 0xb2, 0x23, 0x4b, 0xb9, 0x37, 0x03, + 0xef, 0x4e, 0x59, 0x4e, 0x32, 0x14, 0x74, 0xc1, 0xcd, 0x1c, 0xbd, 0x51, + 0x49, 0xd8, 0xf4, 0x2f, 0x0d, 0x68, 0x2d, 0xa8, 0x78, 0x37, 0x50, 0xbd, + 0xb2, 0x30, 0x9b, 0xc8, 0xee, 0x63, 0x41, 0x99, 0x30, 0xc5, 0x48, 0xc1, + 0x5d, 0x9d, 0x0e, 0x73, 0x55, 0xf4, 0xeb, 0x2d, 0x7a, 0xd2, 0xea, 0xfa, + 0xce, 0x13, 0x31, 0xf2, 0xe3, 0xfd, 0xfa, 0xb1, 0x0b, 0x81, 0x9c, 0x63, + 0xf4, 0xc7, 0x15, 0xc8, 0xd9, 0xea, 0x97, 0x96, 0x70, 0x35, 0xbc, 0x13, + 0x48, 0x90, 0xc8, 0xe1, 0x8a, 0xab, 0x60, 0x12, 0x3a, 0x56, 0xd6, 0xa7, + 0xe3, 0x0b, 0xeb, 0xdb, 0xd8, 0x67, 0x75, 0x82, 0x39, 0x92, 0x11, 0x13, + 0x3c, 0x29, 0xb4, 0x36, 0x3b, 0x91, 0xd0, 0x9a, 0x07, 0x75, 0x62, 0x96, + 0xae, 0x6d, 0xae, 0x35, 0xd6, 0x54, 0x80, 0x40, 0x81, 0x40, 0x65, 0x4c, + 0x91, 0xc0, 0xeb, 0x59, 0x60, 0xc0, 0xb1, 0x10, 0x43, 0x17, 0x04, 0x80, + 0x6a, 0xc3, 0xea, 0xb7, 0x2d, 0xab, 0x1b, 0xd5, 0x9b, 0x6b, 0xb2, 0xf9, + 0x65, 0x95, 0x00, 0xf9, 0x48, 0xc7, 0x4f, 0xa5, 0x43, 0xa9, 0xdd, 0x7d, + 0xaa, 0xf1, 0xdd, 0x02, 0x94, 0x00, 0x2a, 0x91, 0x18, 0x4c, 0x80, 0x30, + 0x09, 0x03, 0xbd, 0x3b, 0x5c, 0x97, 0x6e, 0x85, 0x70, 0x41, 0xe3, 0x77, + 0x5a, 0x72, 0x3b, 0xc3, 0x20, 0x91, 0x1c, 0xab, 0xa9, 0x1b, 0x48, 0xea, + 0x2a, 0xb6, 0x7d, 0xa9, 0xff, 0x00, 0x36, 0x3a, 0x55, 0x58, 0x9b, 0x58, + 0xb0, 0xf7, 0x0f, 0x73, 0x34, 0x93, 0x4f, 0x29, 0x69, 0x58, 0xe4, 0x96, + 0xea, 0x4d, 0x1e, 0x66, 0xdc, 0x0d, 0xe7, 0x8e, 0x87, 0x3d, 0x2a, 0xa1, + 0xc9, 0x34, 0xbc, 0x67, 0x38, 0x20, 0x52, 0x68, 0x76, 0x35, 0x25, 0xbe, + 0x8a, 0x4d, 0x38, 0xdb, 0x48, 0x27, 0x91, 0x90, 0xfe, 0xe4, 0x87, 0xc2, + 0xa8, 0xef, 0x91, 0x59, 0xf1, 0x02, 0xec, 0xaa, 0x08, 0x04, 0x9c, 0x0d, + 0xdd, 0x29, 0x62, 0x75, 0xda, 0x43, 0xe7, 0x1d, 0x88, 0xeb, 0x51, 0xec, + 0x39, 0xe0, 0xf1, 0x42, 0xec, 0x0f, 0xcc, 0xbb, 0xa8, 0xda, 0x0b, 0x19, + 0x56, 0x1d, 0xca, 0xce, 0xb9, 0x59, 0x0a, 0xb8, 0x60, 0x5b, 0xd4, 0x63, + 0xb6, 0x31, 0x55, 0xb7, 0x6e, 0x8c, 0x29, 0x00, 0x8e, 0xb4, 0x80, 0x31, + 0x24, 0xe7, 0xad, 0x30, 0x82, 0xb4, 0xc3, 0xd0, 0x73, 0x64, 0x2f, 0xcb, + 0xfa, 0x54, 0x5b, 0x8e, 0x39, 0xe7, 0x1d, 0xaa, 0x56, 0x42, 0x80, 0x12, + 0xdd, 0x45, 0x20, 0x90, 0xa0, 0xda, 0x46, 0x73, 0xfa, 0x51, 0x7b, 0xec, + 0x35, 0xa0, 0x43, 0x73, 0x2c, 0x32, 0x17, 0x85, 0xca, 0x36, 0x08, 0xc8, + 0x3d, 0x8f, 0x5a, 0xeb, 0xb4, 0x7d, 0x47, 0x42, 0x7f, 0x07, 0xdc, 0xe9, + 0xb7, 0x56, 0xb3, 0xb6, 0xa2, 0xd2, 0x19, 0x22, 0x98, 0x11, 0x8e, 0x95, + 0xc8, 0xf9, 0x7b, 0xf3, 0x85, 0xf9, 0xb3, 0xda, 0xb6, 0xb4, 0x79, 0x20, + 0x8f, 0x0a, 0xc3, 0x0c, 0x39, 0xdd, 0x53, 0x39, 0x69, 0xa1, 0x48, 0xcf, + 0x28, 0xc0, 0x80, 0x54, 0x83, 0xd7, 0xa5, 0x58, 0x57, 0x0f, 0xc1, 0xc6, + 0x71, 0xcf, 0x35, 0xa7, 0x24, 0x70, 0xcd, 0x32, 0x31, 0x6d, 0xca, 0x15, + 0xb3, 0x86, 0x03, 0x1d, 0x2a, 0x9d, 0xf5, 0x90, 0x82, 0x04, 0x90, 0xee, + 0x5c, 0xb7, 0x52, 0x47, 0x4a, 0xc5, 0xcf, 0x54, 0x98, 0x72, 0xf6, 0x20, + 0x72, 0xe6, 0x34, 0x40, 0xc5, 0x39, 0x2c, 0x58, 0x13, 0x40, 0xb9, 0x95, + 0x22, 0xf2, 0xe6, 0x05, 0x94, 0x70, 0x09, 0xea, 0x29, 0xca, 0x62, 0x10, + 0x7f, 0xac, 0x39, 0x04, 0x7c, 0xb9, 0xeb, 0x49, 0x2b, 0xaa, 0x47, 0xb1, + 0x88, 0x72, 0xe3, 0xa9, 0xfe, 0x11, 0x4d, 0x49, 0xec, 0x16, 0x2a, 0xbc, + 0xee, 0xb2, 0x34, 0x80, 0xee, 0xcf, 0x73, 0x5a, 0xee, 0xcc, 0x20, 0x99, + 0x21, 0xb3, 0x96, 0xe1, 0xa4, 0x54, 0x63, 0x2b, 0x29, 0x56, 0x88, 0x91, + 0x9c, 0x01, 0x9c, 0x10, 0x6b, 0x11, 0xf0, 0x59, 0x80, 0xfe, 0x74, 0xf1, + 0x7d, 0x77, 0x1b, 0x12, 0x92, 0x94, 0x62, 0xa1, 0x0b, 0x2f, 0x19, 0x03, + 0xb7, 0x15, 0xbc, 0x76, 0x25, 0x58, 0x49, 0x9d, 0x7c, 0xb0, 0xbb, 0x9b, + 0x76, 0xf3, 0x95, 0x2a, 0x06, 0x3f, 0x1a, 0x58, 0x25, 0x31, 0x36, 0x41, + 0xc1, 0xea, 0x0d, 0x56, 0x27, 0x71, 0x1c, 0x7d, 0x4d, 0x4a, 0xca, 0x48, + 0x51, 0x19, 0x2c, 0x31, 0xce, 0x69, 0xb4, 0x9a, 0x13, 0x2f, 0xa4, 0xee, + 0x66, 0x69, 0x37, 0x13, 0x91, 0x83, 0x4a, 0x65, 0x32, 0x2e, 0x73, 0x9c, + 0x55, 0x4b, 0x77, 0x75, 0x93, 0xcb, 0x03, 0x83, 0xd4, 0x1a, 0x91, 0xa6, + 0x0a, 0xe7, 0x0b, 0xc6, 0x6b, 0x9d, 0xc5, 0x5c, 0x0b, 0x90, 0x5c, 0x66, + 0x16, 0x4c, 0x90, 0x1b, 0xb6, 0x69, 0xaf, 0x2b, 0x46, 0xea, 0xcb, 0x29, + 0xfa, 0x1a, 0x81, 0x65, 0x55, 0x39, 0x20, 0x83, 0x52, 0x7c, 0xae, 0xe0, + 0xe0, 0x67, 0x1d, 0x4d, 0x27, 0xe6, 0x06, 0xaf, 0xf6, 0xaa, 0xdc, 0x1b, + 0x78, 0xcf, 0xcb, 0xb5, 0xb2, 0xc4, 0x9e, 0x0d, 0x6b, 0xc7, 0x2d, 0x8b, + 0x5c, 0x5c, 0x10, 0x43, 0x7c, 0xa0, 0x0d, 0xa3, 0x8c, 0xf7, 0x22, 0xb9, + 0x61, 0xe5, 0xc7, 0x38, 0x0e, 0x31, 0xc7, 0x6e, 0xf5, 0x3d, 0xa4, 0xd1, + 0x47, 0x38, 0x61, 0xbc, 0x26, 0x39, 0x23, 0xad, 0x63, 0x2a, 0x6a, 0xda, + 0x1a, 0x29, 0x13, 0xdc, 0x21, 0x69, 0x24, 0x32, 0x26, 0x1b, 0xb1, 0x51, + 0xfc, 0xc5, 0x43, 0x0c, 0xd2, 0x80, 0x50, 0x6d, 0x27, 0xb5, 0x5f, 0x8b, + 0xcb, 0x79, 0x89, 0x84, 0xb6, 0x0f, 0x04, 0x75, 0xcd, 0x56, 0x9a, 0x02, + 0xb7, 0x47, 0x70, 0xda, 0x7a, 0xe0, 0xf4, 0x34, 0x29, 0x74, 0x60, 0xd1, + 0x22, 0x48, 0x26, 0x5c, 0x30, 0x26, 0x43, 0xed, 0x55, 0xae, 0x23, 0x97, + 0x05, 0x41, 0xda, 0x45, 0x4d, 0x23, 0x08, 0xca, 0xb9, 0x40, 0x14, 0xfa, + 0x75, 0xa6, 0x4f, 0x38, 0x2a, 0x07, 0x6c, 0xf5, 0x26, 0x9c, 0x5b, 0x5b, + 0x09, 0xa2, 0xab, 0x4a, 0x32, 0x16, 0x78, 0x87, 0x4c, 0x6e, 0x5e, 0x9d, + 0x38, 0x35, 0xa1, 0xaf, 0xe9, 0x56, 0x96, 0x16, 0x3a, 0x75, 0xd5, 0xb6, + 0xa6, 0x97, 0x92, 0x5c, 0xc6, 0x5a, 0x45, 0x51, 0xfe, 0xaf, 0x1c, 0x60, + 0xd5, 0x06, 0xb8, 0x8b, 0x04, 0xb2, 0x8c, 0xe3, 0x19, 0x14, 0xd9, 0x5b, + 0x16, 0xfc, 0x61, 0x97, 0xa8, 0xae, 0x88, 0xce, 0xca, 0xcd, 0x10, 0xd5, + 0xcd, 0x2b, 0x58, 0x66, 0x80, 0xdb, 0xcb, 0x75, 0x0b, 0x98, 0x19, 0x09, + 0x42, 0x4e, 0x46, 0x3d, 0x47, 0xe3, 0x5d, 0x2f, 0x83, 0x75, 0x7d, 0x3a, + 0xda, 0xfa, 0xf8, 0x6a, 0x68, 0x26, 0x6b, 0x98, 0x7c, 0xb8, 0xda, 0x58, + 0xb7, 0x84, 0xf7, 0xf6, 0xe2, 0xb9, 0x1b, 0x6d, 0x66, 0xe9, 0x6d, 0x45, + 0xbc, 0x6f, 0x85, 0xff, 0x00, 0x6b, 0x9c, 0x7d, 0x33, 0xd2, 0xa3, 0xf3, + 0x25, 0x8b, 0xe6, 0x1b, 0x82, 0x92, 0x37, 0x02, 0x3a, 0xd5, 0xc6, 0x56, + 0x68, 0x47, 0xb4, 0xfc, 0x34, 0xb3, 0xd3, 0xec, 0x7c, 0x49, 0x78, 0x2d, + 0xae, 0x9e, 0x57, 0x92, 0x21, 0xb3, 0xcb, 0x1f, 0x23, 0x2f, 0x72, 0x7d, + 0x0d, 0x7a, 0xc1, 0x1c, 0x57, 0x8e, 0xfc, 0x13, 0x31, 0x5d, 0xea, 0x1a, + 0x84, 0x8c, 0xab, 0xba, 0x14, 0x1b, 0x38, 0x3c, 0x02, 0x7d, 0x6b, 0xda, + 0x0a, 0xaf, 0xa5, 0x75, 0xc2, 0x5a, 0x0e, 0xc7, 0x86, 0xfc, 0x50, 0xfe, + 0xd1, 0x8f, 0xc4, 0xcf, 0x71, 0xe7, 0x15, 0x84, 0x28, 0x11, 0x8d, 0xc0, + 0x63, 0xf0, 0xaf, 0x3a, 0xfb, 0x5b, 0x79, 0xfb, 0xfc, 0xc6, 0x66, 0xe7, + 0x23, 0x3c, 0xd5, 0xad, 0x53, 0xc4, 0x9a, 0x8e, 0xb6, 0xa2, 0x4b, 0xeb, + 0xd1, 0x24, 0xc0, 0x9e, 0x58, 0x73, 0x8f, 0x4a, 0xe7, 0x83, 0xc8, 0x66, + 0xf9, 0xba, 0x13, 0xeb, 0xd6, 0xb8, 0xa5, 0x66, 0xd8, 0x36, 0x76, 0x51, + 0x47, 0x2c, 0xf6, 0x88, 0xea, 0x3c, 0xb4, 0x6e, 0x80, 0x9c, 0x93, 0x53, + 0xd9, 0xdb, 0xb5, 0xb6, 0x7c, 0xc7, 0x18, 0x23, 0x90, 0x38, 0xa7, 0xda, + 0x6d, 0x4d, 0x1d, 0x26, 0x0a, 0x55, 0x17, 0xa6, 0x5b, 0x3f, 0x85, 0x66, + 0x5c, 0xdf, 0xb8, 0xdc, 0x73, 0x9e, 0x30, 0x31, 0x5e, 0x52, 0x94, 0xa6, + 0xdc, 0x51, 0x6e, 0xc8, 0xe9, 0xec, 0xee, 0x95, 0xe5, 0x58, 0x96, 0x40, + 0x13, 0x1d, 0x40, 0xae, 0x96, 0x16, 0x8d, 0xe0, 0x28, 0x8c, 0x0b, 0xf2, + 0xde, 0x80, 0x57, 0x93, 0xdb, 0xea, 0xef, 0x0c, 0xe0, 0x2b, 0xfc, 0xe7, + 0xa3, 0x67, 0x81, 0x5d, 0x3e, 0x89, 0x76, 0x25, 0xb1, 0x94, 0xad, 0xc1, + 0x33, 0x33, 0x61, 0x99, 0x9b, 0xe5, 0x5f, 0x7c, 0x50, 0xf0, 0xfc, 0xaa, + 0xe6, 0xb4, 0xe7, 0x73, 0xa4, 0x83, 0x57, 0x41, 0x72, 0xfb, 0x46, 0x01, + 0x1b, 0x42, 0x91, 0x90, 0x6b, 0x1a, 0x7b, 0xc4, 0x4b, 0xd3, 0x04, 0x6c, + 0xf0, 0x8c, 0xee, 0x21, 0xba, 0x1f, 0x5a, 0x2e, 0x2f, 0xa1, 0xd3, 0xad, + 0x92, 0x18, 0x7c, 0x99, 0x6e, 0x24, 0xf9, 0x99, 0xbd, 0x71, 0x59, 0xf3, + 0xde, 0x35, 0xec, 0x82, 0xf2, 0x58, 0xc3, 0x79, 0x80, 0x2e, 0xcc, 0xe3, + 0x9a, 0x56, 0xb6, 0xa6, 0x92, 0x66, 0xe5, 0xa8, 0x89, 0xe5, 0x33, 0x4b, + 0xf2, 0x79, 0x38, 0x00, 0xe3, 0x3b, 0xbf, 0x1f, 0x4a, 0x42, 0xaf, 0x34, + 0xc3, 0xcb, 0x74, 0xf2, 0xb7, 0x1f, 0x41, 0x8a, 0x7d, 0x8c, 0x0b, 0x6b, + 0x6d, 0xfe, 0x93, 0x30, 0x22, 0x45, 0xc2, 0xa7, 0xa7, 0xb6, 0x6a, 0x08, + 0xed, 0x25, 0x12, 0x2c, 0x79, 0x66, 0x59, 0x01, 0x2a, 0xbd, 0x00, 0xf4, + 0xae, 0x27, 0x57, 0xde, 0x6e, 0xe4, 0x09, 0x73, 0x04, 0xf2, 0x41, 0x74, + 0xb1, 0xb0, 0x71, 0xb8, 0x6d, 0x26, 0xb0, 0xee, 0x34, 0xf8, 0x2d, 0xf4, + 0xff, 0x00, 0x3e, 0x72, 0xa6, 0x53, 0xd8, 0x8c, 0xf5, 0xfe, 0xb5, 0xb5, + 0x75, 0x7b, 0x2d, 0x95, 0xba, 0x25, 0xc4, 0x4d, 0x8d, 0xf8, 0x67, 0x51, + 0x91, 0x9c, 0xf4, 0xa8, 0x24, 0xfb, 0x40, 0x9d, 0xe0, 0x96, 0x10, 0x44, + 0x8c, 0x0a, 0x36, 0x78, 0x51, 0x5a, 0x53, 0xab, 0x25, 0xa9, 0x2d, 0x1c, + 0xdd, 0x90, 0x82, 0xe2, 0xed, 0x62, 0x77, 0xf2, 0xd4, 0x03, 0xb9, 0x9c, + 0x60, 0x01, 0xed, 0x49, 0x7a, 0x34, 0x24, 0xb6, 0x79, 0x3c, 0xd9, 0xa5, + 0x95, 0x49, 0x40, 0xa5, 0xb2, 0x7e, 0xbf, 0x4a, 0xd0, 0xd5, 0x2c, 0x64, + 0x17, 0x66, 0x30, 0x1d, 0x77, 0x11, 0x85, 0x23, 0x86, 0xf5, 0xc5, 0x6a, + 0x58, 0xe8, 0xd1, 0x5e, 0x4b, 0x10, 0x96, 0xc6, 0x11, 0x84, 0xc2, 0x9e, + 0x06, 0x71, 0x5d, 0x72, 0xaa, 0x94, 0x79, 0xef, 0xa1, 0x29, 0x74, 0x31, + 0x6c, 0x7c, 0x3f, 0xa6, 0x5e, 0xf9, 0x52, 0x5a, 0x8b, 0x94, 0xca, 0xe4, + 0xb1, 0xe9, 0x9a, 0xec, 0x61, 0xb6, 0x96, 0xda, 0xdb, 0x8b, 0x85, 0x6d, + 0xbc, 0x11, 0xb7, 0x18, 0x5a, 0xb9, 0xb2, 0x28, 0x08, 0x8d, 0x63, 0x48, + 0x95, 0x4f, 0x38, 0x18, 0xa8, 0xa7, 0x9a, 0x24, 0x3e, 0x56, 0xc3, 0x9c, + 0xf0, 0xe2, 0xb8, 0xe7, 0x59, 0xd4, 0x2d, 0x2b, 0x10, 0xb3, 0x98, 0xe0, + 0xcc, 0x41, 0x9d, 0xb3, 0xd1, 0x8f, 0x5a, 0xa2, 0x97, 0x77, 0x04, 0x00, + 0xd9, 0xfb, 0xd9, 0x61, 0x8e, 0x94, 0xfb, 0xcb, 0x89, 0xd5, 0x77, 0xa0, + 0x1b, 0x41, 0xe0, 0xe3, 0x26, 0xb3, 0x9e, 0xe7, 0x7c, 0x2c, 0x91, 0xa7, + 0xce, 0xcd, 0xd4, 0x9e, 0x7f, 0x1a, 0x23, 0x1b, 0xea, 0x26, 0xc8, 0x2e, + 0x75, 0x29, 0x12, 0x66, 0x8e, 0x3c, 0xab, 0xe7, 0xe6, 0x03, 0xa1, 0xaa, + 0xe3, 0x59, 0xb8, 0x45, 0x90, 0xbb, 0x8c, 0x63, 0x3c, 0x1c, 0xe6, 0xaa, + 0x5d, 0x02, 0x91, 0xb9, 0xc3, 0x33, 0xaf, 0xbd, 0x66, 0x43, 0x76, 0xcc, + 0xec, 0xa6, 0x3c, 0xab, 0x70, 0x6b, 0xae, 0x14, 0x93, 0x5a, 0x19, 0x39, + 0x33, 0x7e, 0xd7, 0x5e, 0x96, 0x41, 0x95, 0xe0, 0x76, 0x35, 0x76, 0x1d, + 0x5a, 0x4b, 0x8c, 0xed, 0x48, 0xdb, 0x92, 0x1b, 0x38, 0x19, 0x35, 0xcc, + 0x6d, 0xc2, 0x85, 0x74, 0x45, 0x8f, 0x39, 0xf4, 0x35, 0x18, 0x91, 0x9e, + 0x3d, 0xb6, 0xfb, 0xc3, 0x6e, 0xc9, 0x15, 0x4e, 0x92, 0x1a, 0x91, 0xdc, + 0xae, 0xa4, 0xcc, 0x19, 0x25, 0x40, 0x50, 0x0c, 0x7e, 0xed, 0xf2, 0x2a, + 0x93, 0x5f, 0xdb, 0x88, 0x64, 0xf2, 0x43, 0x2b, 0x13, 0xd3, 0x39, 0xc9, + 0xae, 0x7d, 0xef, 0xa5, 0x82, 0xdf, 0x13, 0x2e, 0xc7, 0x3d, 0x02, 0xf7, + 0xfa, 0xd5, 0x18, 0x2f, 0x9d, 0x6e, 0x3c, 0xc2, 0xa7, 0x66, 0x7f, 0x2a, + 0x88, 0xd1, 0x40, 0xe4, 0x6a, 0xcb, 0xa9, 0xee, 0x8d, 0x95, 0xc9, 0xc8, + 0x04, 0x66, 0xb2, 0xbc, 0xf2, 0xf2, 0x16, 0xdf, 0xc6, 0x39, 0x24, 0x67, + 0xf2, 0xab, 0x17, 0x71, 0x17, 0xb7, 0xf3, 0x11, 0x8f, 0xcc, 0x72, 0x0e, + 0x3b, 0x7d, 0x28, 0xb6, 0x46, 0x31, 0x14, 0x67, 0x5f, 0x97, 0x04, 0x36, + 0xde, 0xd5, 0xb4, 0x52, 0x4a, 0xe4, 0xdd, 0x95, 0x23, 0x79, 0x62, 0x8f, + 0x79, 0xc9, 0x62, 0x73, 0x83, 0xd2, 0xb3, 0xae, 0xb5, 0x11, 0x38, 0x64, + 0x93, 0x76, 0x47, 0x5c, 0x1e, 0x2b, 0x4a, 0xe6, 0x39, 0xdc, 0x33, 0xef, + 0x4c, 0x0e, 0x54, 0x0a, 0xe7, 0xee, 0xa1, 0x90, 0x29, 0x62, 0xbd, 0x3a, + 0x91, 0x5d, 0x34, 0xec, 0xf7, 0x17, 0x52, 0xec, 0x7a, 0xa4, 0xaf, 0x08, + 0x87, 0x70, 0xc9, 0x1b, 0x41, 0x27, 0xb5, 0x45, 0x14, 0x92, 0x4d, 0x2e, + 0xe7, 0xde, 0x50, 0x72, 0x70, 0x7a, 0x56, 0x79, 0x08, 0xab, 0x16, 0xdc, + 0xee, 0xc7, 0xce, 0x4f, 0x63, 0x53, 0xee, 0x28, 0x80, 0xab, 0x70, 0x7d, + 0x2b, 0x57, 0x1b, 0x6c, 0x37, 0xa3, 0x34, 0x6d, 0x66, 0x44, 0x70, 0xce, + 0xb9, 0xc7, 0x43, 0x9a, 0x91, 0x24, 0x53, 0x73, 0xb0, 0xb1, 0x0a, 0x5b, + 0xaf, 0xa5, 0x52, 0x46, 0x46, 0x5c, 0x2e, 0x47, 0x7c, 0x63, 0xad, 0x4a, + 0x99, 0x79, 0x77, 0xb0, 0xc1, 0x1c, 0x9a, 0x80, 0x3b, 0x78, 0x08, 0x46, + 0x8d, 0x99, 0xd5, 0xe5, 0x28, 0x0e, 0xfe, 0xc7, 0x1d, 0x2a, 0xf9, 0xd4, + 0x26, 0x82, 0xdd, 0xa4, 0x60, 0x4a, 0xaf, 0x5d, 0x87, 0x07, 0xf2, 0xae, + 0x29, 0x2f, 0xa6, 0xf3, 0x54, 0x16, 0x63, 0x0a, 0x8f, 0xbb, 0xd3, 0x15, + 0x6a, 0xde, 0xe6, 0xe9, 0xee, 0x50, 0x41, 0x36, 0x5d, 0x89, 0x1b, 0x48, + 0xc8, 0xfc, 0x6b, 0x09, 0x52, 0x7b, 0x94, 0xa7, 0xad, 0x8d, 0xbb, 0xfd, + 0x97, 0xf2, 0x5b, 0xcd, 0x25, 0xd2, 0xc3, 0x80, 0x18, 0xaa, 0x72, 0x5a, + 0xad, 0xdc, 0x49, 0x61, 0x6d, 0xa7, 0xca, 0xa1, 0x16, 0x48, 0xcb, 0x02, + 0x37, 0x47, 0xcb, 0x1e, 0xe3, 0xa5, 0x72, 0xed, 0x6f, 0x7d, 0x0d, 0xe4, + 0x30, 0x34, 0xe9, 0xfb, 0xc6, 0xfe, 0x2e, 0x42, 0xf3, 0x5d, 0x10, 0xd2, + 0x1e, 0xea, 0x2c, 0xdc, 0xce, 0x5b, 0x1c, 0xe1, 0x46, 0x00, 0x3e, 0xd5, + 0x0d, 0x2d, 0x2e, 0x5a, 0x20, 0xb6, 0xd4, 0xad, 0x0a, 0x47, 0x0c, 0x16, + 0xeb, 0x13, 0x2b, 0x65, 0x89, 0x18, 0x00, 0x7d, 0x6a, 0x79, 0xed, 0xac, + 0x6f, 0x2e, 0xa4, 0x9a, 0x39, 0x62, 0x12, 0x15, 0x39, 0x52, 0x72, 0x0f, + 0xbd, 0x66, 0x6b, 0x3a, 0x70, 0x92, 0xcf, 0xed, 0x16, 0x30, 0x11, 0xe5, + 0xfd, 0xe7, 0x0d, 0xd4, 0x0e, 0xbc, 0x54, 0xbe, 0x1d, 0x8e, 0x3b, 0x8b, + 0x73, 0x2c, 0x91, 0xa8, 0x95, 0x54, 0x8d, 0xa5, 0x7e, 0xf2, 0xd5, 0xbb, + 0x25, 0x70, 0xd6, 0xe4, 0x86, 0x4d, 0x56, 0xde, 0xc4, 0xad, 0x9b, 0x43, + 0x3c, 0x00, 0x65, 0x76, 0x8e, 0x49, 0xff, 0x00, 0x1a, 0xcd, 0xb7, 0x9e, + 0xfa, 0x72, 0xf0, 0xfd, 0x99, 0xa2, 0x7d, 0xfb, 0xb6, 0x49, 0x9c, 0x73, + 0xef, 0x56, 0xdb, 0x59, 0x8f, 0x4c, 0x91, 0x22, 0x0e, 0x22, 0x8b, 0xa8, + 0x50, 0x73, 0xb0, 0x66, 0xae, 0x3d, 0xfd, 0xae, 0xa5, 0x68, 0xb7, 0x36, + 0xc6, 0x49, 0x59, 0x01, 0xc8, 0x03, 0x07, 0xf2, 0xac, 0xb5, 0x5b, 0xa1, + 0x99, 0xf6, 0x7a, 0x82, 0xd9, 0xea, 0x06, 0xde, 0x48, 0x81, 0x93, 0x6f, + 0x20, 0x7f, 0x15, 0x68, 0x5c, 0xa4, 0x53, 0x5b, 0xef, 0xdc, 0x96, 0xf2, + 0x31, 0x24, 0x13, 0xd8, 0x9a, 0xab, 0x16, 0x99, 0x0d, 0xe3, 0xfd, 0xa3, + 0x72, 0xc7, 0x3f, 0x72, 0xcc, 0x33, 0xf9, 0x55, 0x1d, 0x4e, 0xcd, 0x56, + 0x50, 0x63, 0xba, 0x66, 0x31, 0x9f, 0xde, 0x21, 0x38, 0x3f, 0x85, 0x2f, + 0x75, 0xca, 0xc9, 0x8b, 0x63, 0x4e, 0xd1, 0x22, 0x42, 0x21, 0x79, 0xfc, + 0xc9, 0xd9, 0xb2, 0x25, 0x43, 0xc9, 0x1e, 0x95, 0x06, 0xab, 0xa5, 0xca, + 0xd2, 0x2b, 0xdb, 0x06, 0x1b, 0x9b, 0xe6, 0x2c, 0xfd, 0x2a, 0x95, 0xa5, + 0xf5, 0x8c, 0x1b, 0x58, 0x39, 0x8f, 0x07, 0x8c, 0x9e, 0x5b, 0xeb, 0x5a, + 0xbf, 0x6d, 0xb7, 0x9c, 0x28, 0x37, 0x41, 0x0b, 0x13, 0x82, 0x0f, 0x02, + 0x93, 0x52, 0x8c, 0xae, 0x3d, 0x19, 0x22, 0xda, 0x5c, 0x43, 0x62, 0x16, + 0x29, 0x02, 0xbf, 0x46, 0x39, 0xe2, 0xa9, 0xcb, 0x0d, 0xcd, 0xd3, 0xa4, + 0x52, 0xce, 0xbd, 0x3e, 0x52, 0x07, 0x2d, 0xf5, 0xad, 0x04, 0x93, 0xe5, + 0xf9, 0x2e, 0x95, 0xc0, 0x5c, 0x10, 0xdc, 0x67, 0xf0, 0xac, 0xed, 0x42, + 0xf1, 0x2d, 0xa2, 0x57, 0x43, 0xb9, 0x87, 0x04, 0x29, 0xcf, 0x15, 0x31, + 0x6d, 0xb1, 0xdd, 0x15, 0x63, 0x90, 0xd9, 0xcf, 0xe5, 0x4f, 0x33, 0x39, + 0x0d, 0xeb, 0x57, 0x96, 0x78, 0xa5, 0x81, 0xd5, 0x58, 0xee, 0x3c, 0xe4, + 0xd6, 0x3c, 0xfa, 0x8a, 0xdd, 0xca, 0xa1, 0x4a, 0xf0, 0x3e, 0xf0, 0x5e, + 0x7f, 0x3a, 0x63, 0x6a, 0x9b, 0x47, 0x94, 0x83, 0x0d, 0xd3, 0x38, 0xed, + 0x5a, 0xba, 0x6d, 0xf4, 0xd4, 0x5c, 0xc5, 0xf4, 0x47, 0xd4, 0xa7, 0xd8, + 0xa0, 0xe3, 0xb6, 0xd3, 0xfc, 0xeb, 0xa1, 0xd2, 0xf7, 0xda, 0xbe, 0xc9, + 0x55, 0xa3, 0x40, 0x71, 0xd3, 0x18, 0x15, 0x81, 0x69, 0x2c, 0x71, 0x45, + 0xba, 0x0d, 0xc8, 0xe0, 0x67, 0x72, 0xf7, 0x35, 0xab, 0x65, 0xad, 0x80, + 0x83, 0xcc, 0x93, 0xe6, 0x1c, 0x02, 0x57, 0xad, 0x44, 0xef, 0xb2, 0x12, + 0x64, 0x5a, 0x97, 0x87, 0x62, 0xbb, 0xcc, 0xd1, 0xb3, 0x09, 0x4b, 0xee, + 0xde, 0xc7, 0xa0, 0xf5, 0xac, 0x3b, 0xbd, 0x16, 0xee, 0xef, 0x56, 0x48, + 0x2e, 0xbc, 0xc2, 0xec, 0xa3, 0xf7, 0xa0, 0x64, 0x63, 0x15, 0xd2, 0xdd, + 0xeb, 0x90, 0x92, 0x58, 0x2a, 0x93, 0xd3, 0xeb, 0x53, 0xc7, 0xab, 0xa7, + 0x95, 0x1c, 0xd7, 0x0c, 0xa0, 0x81, 0xc0, 0x1d, 0x7d, 0xb3, 0x44, 0x27, + 0x52, 0x20, 0xec, 0xce, 0x1e, 0xe3, 0xc2, 0xd7, 0x56, 0xbb, 0xd9, 0x18, + 0x4a, 0x50, 0x6e, 0xf9, 0x3d, 0x09, 0xad, 0x3b, 0x7d, 0x1a, 0x03, 0x69, + 0xfb, 0xe6, 0x03, 0x18, 0xe4, 0x8e, 0x73, 0xde, 0xb4, 0xaf, 0xbc, 0x42, + 0x93, 0x16, 0x58, 0x11, 0x50, 0x81, 0x8c, 0x8e, 0xe2, 0xb9, 0xcb, 0x8b, + 0xa9, 0x64, 0x72, 0xe5, 0xd9, 0xb3, 0xcf, 0x06, 0xba, 0x22, 0xea, 0x4d, + 0x7b, 0xda, 0x10, 0xe5, 0x15, 0xb0, 0xfb, 0x9b, 0x5b, 0x52, 0xc5, 0x51, + 0x32, 0x80, 0xe3, 0x76, 0x31, 0x9a, 0xa0, 0xf6, 0x71, 0xe4, 0x79, 0x78, + 0x18, 0x6c, 0xf3, 0xe9, 0x53, 0x25, 0xc0, 0x69, 0x42, 0x91, 0x85, 0xef, + 0x9e, 0xd4, 0xd3, 0x0a, 0x89, 0x4b, 0xac, 0xc0, 0x8f, 0xee, 0xd6, 0xf1, + 0x56, 0x23, 0x99, 0xee, 0x1a, 0xb4, 0xff, 0x00, 0xe8, 0xb6, 0xd1, 0x06, + 0xdd, 0x10, 0xcb, 0x61, 0x7b, 0x12, 0x7b, 0xd6, 0x54, 0xca, 0xc0, 0xfc, + 0xa0, 0xfe, 0x55, 0xa6, 0xe9, 0x9f, 0xe1, 0x5c, 0x63, 0x81, 0xeb, 0x55, + 0x4b, 0x90, 0x76, 0xb0, 0x19, 0xaa, 0x8a, 0xb0, 0x4a, 0x77, 0x77, 0x32, + 0x58, 0x90, 0xde, 0xf4, 0x98, 0xf9, 0x41, 0xf5, 0x35, 0xac, 0xf1, 0xa1, + 0x56, 0x26, 0x3e, 0xb5, 0x4a, 0x78, 0x02, 0xaa, 0xed, 0xe8, 0x3b, 0x56, + 0xea, 0x49, 0x82, 0x92, 0x2b, 0x70, 0x3b, 0x53, 0xd7, 0x14, 0x98, 0x34, + 0x0d, 0xd9, 0xe9, 0xc5, 0x03, 0x25, 0x90, 0x82, 0x81, 0x80, 0x60, 0xbd, + 0x29, 0xe0, 0x7f, 0xa1, 0xef, 0xc9, 0xfb, 0xd8, 0xa7, 0xc7, 0x1c, 0xbe, + 0x51, 0xc2, 0x12, 0x09, 0xcf, 0x4a, 0x73, 0x46, 0xc6, 0xdd, 0x94, 0x46, + 0x46, 0x5b, 0x81, 0x44, 0x65, 0xab, 0x40, 0x87, 0x98, 0xe1, 0x16, 0x71, + 0x3b, 0x8d, 0x9f, 0xed, 0x0e, 0x73, 0x51, 0xcd, 0x00, 0x8e, 0xde, 0x39, + 0x41, 0xe1, 0x98, 0x8c, 0xfe, 0x55, 0x75, 0x63, 0xb7, 0x93, 0x4e, 0x92, + 0x29, 0x19, 0xc4, 0xc0, 0x03, 0x10, 0xed, 0xbb, 0xde, 0xa0, 0x9e, 0x32, + 0xd6, 0x49, 0xb6, 0x44, 0x2d, 0xbb, 0x1b, 0x33, 0xd3, 0xde, 0x9c, 0x9a, + 0xe8, 0x34, 0x8a, 0xa0, 0x06, 0xe5, 0x99, 0x47, 0xa5, 0x05, 0xc3, 0x31, + 0x19, 0xc5, 0x44, 0xf1, 0xb2, 0x38, 0x0c, 0x47, 0x3e, 0x87, 0x34, 0x8e, + 0x15, 0x5c, 0x85, 0x3b, 0x97, 0xb1, 0xa9, 0x25, 0xab, 0x92, 0x16, 0x39, + 0x27, 0x34, 0x82, 0x52, 0x4f, 0x3c, 0x8a, 0x8c, 0x9c, 0x0f, 0x51, 0x4b, + 0x83, 0x80, 0x71, 0x9c, 0xd3, 0xd1, 0x0a, 0xc0, 0xc4, 0x67, 0x03, 0xa5, + 0x35, 0x4e, 0x1b, 0x38, 0xcd, 0x29, 0x8c, 0x64, 0x60, 0xd0, 0x10, 0x9a, + 0x2e, 0x8a, 0x2f, 0x69, 0xd3, 0xb2, 0x5e, 0x2b, 0xc7, 0xb4, 0x32, 0xf3, + 0xf3, 0x1c, 0x66, 0xba, 0x04, 0x7d, 0x96, 0x72, 0x24, 0xa5, 0x47, 0xcc, + 0x0a, 0x86, 0xe7, 0x39, 0xae, 0x5e, 0x27, 0x8e, 0x19, 0x94, 0xe0, 0x36, + 0x06, 0x1b, 0x22, 0xb6, 0x24, 0xbd, 0x4b, 0xa8, 0x55, 0x59, 0xb6, 0xc4, + 0xa3, 0xa0, 0xea, 0x6b, 0x96, 0xb4, 0x6f, 0x24, 0xec, 0x5c, 0x1d, 0x89, + 0x6f, 0x2e, 0xe3, 0x6d, 0xc2, 0x46, 0x56, 0x50, 0x0e, 0xd0, 0x3f, 0xa5, + 0x62, 0x49, 0x20, 0x6e, 0x41, 0x3f, 0x8d, 0x3a, 0xe8, 0xc2, 0xd2, 0xfe, + 0xe9, 0x98, 0xaf, 0xbd, 0x57, 0x62, 0x2b, 0x5a, 0x54, 0xd4, 0x51, 0x12, + 0x77, 0x63, 0x09, 0xe6, 0x95, 0x58, 0x7a, 0xd3, 0x49, 0x07, 0x8c, 0x53, + 0x76, 0xfa, 0x56, 0xe1, 0x61, 0xcc, 0xc3, 0xb1, 0xa1, 0x24, 0xc0, 0x24, + 0x93, 0x9e, 0xd4, 0xcc, 0x11, 0x4a, 0xbc, 0x9f, 0x41, 0x49, 0x8d, 0x22, + 0xe8, 0x78, 0xda, 0x20, 0xcd, 0x82, 0xde, 0x99, 0xa8, 0x0b, 0x0c, 0x92, + 0xa0, 0x05, 0x27, 0xa7, 0xa5, 0x46, 0xae, 0x73, 0x81, 0x4a, 0xa7, 0x2b, + 0x8e, 0xf5, 0x16, 0xb0, 0xcb, 0x22, 0x46, 0x00, 0xb0, 0x39, 0x04, 0x6d, + 0xfa, 0x52, 0xc7, 0x26, 0x1f, 0x73, 0x1f, 0x9a, 0xa1, 0x59, 0x03, 0x29, + 0x52, 0xbc, 0xf6, 0x22, 0x99, 0xdf, 0x26, 0x97, 0x29, 0x2f, 0x72, 0x47, + 0x72, 0xf2, 0x16, 0xe8, 0x4f, 0xa5, 0x28, 0xe1, 0xb2, 0x58, 0x8f, 0x71, + 0x48, 0x18, 0x6d, 0xe0, 0x01, 0x4d, 0x0e, 0x32, 0x01, 0xe6, 0x9f, 0x41, + 0x58, 0x52, 0xb8, 0x38, 0x3f, 0x9d, 0x1e, 0xa0, 0x67, 0x14, 0xec, 0x0e, + 0xbd, 0xb3, 0xd2, 0x98, 0xeb, 0xe9, 0x9a, 0x2f, 0x70, 0x1c, 0x98, 0xdc, + 0x46, 0x41, 0x03, 0xd6, 0x91, 0xc9, 0x21, 0x70, 0x3d, 0xba, 0xd3, 0xed, + 0x63, 0x8e, 0x42, 0x77, 0xb6, 0x31, 0xd2, 0xb5, 0x5a, 0x0b, 0x26, 0x95, + 0x63, 0x89, 0xa3, 0x60, 0x13, 0x71, 0x66, 0x38, 0xe4, 0xd6, 0x72, 0xa8, + 0xa2, 0xca, 0x48, 0xca, 0x19, 0x55, 0xce, 0x39, 0xa8, 0xd9, 0x8b, 0x72, + 0x48, 0x15, 0x6c, 0xda, 0xb7, 0xda, 0x7c, 0x85, 0x75, 0x62, 0x4f, 0x04, + 0x1e, 0x0d, 0x54, 0x92, 0x37, 0x59, 0x59, 0x5b, 0xa8, 0x38, 0xe2, 0xb4, + 0x52, 0x4c, 0x9e, 0x51, 0x4a, 0x95, 0x01, 0x86, 0x09, 0xa1, 0x9c, 0x91, + 0x83, 0xcd, 0x31, 0x89, 0xf3, 0x36, 0xe0, 0x83, 0xe9, 0x4a, 0xad, 0x80, + 0x41, 0x15, 0x42, 0xb0, 0xdc, 0x95, 0x38, 0x22, 0x9d, 0xbb, 0x8c, 0xe6, + 0x86, 0x93, 0xb0, 0xa5, 0x65, 0x0b, 0xf2, 0x9e, 0xbe, 0xd4, 0x0c, 0x8c, + 0x1c, 0xf4, 0xa7, 0x0d, 0xc3, 0xa1, 0xa4, 0xc6, 0xd1, 0x90, 0x7e, 0xb4, + 0x80, 0xe5, 0xba, 0xf7, 0xa0, 0x64, 0xc6, 0x32, 0x14, 0xb6, 0xe1, 0x8f, + 0x6a, 0x4c, 0x9d, 0x98, 0x3d, 0xf9, 0xa6, 0x31, 0xe3, 0x03, 0x83, 0x4e, + 0x0e, 0x4e, 0xd0, 0x48, 0xce, 0x30, 0x78, 0xa9, 0xd4, 0x34, 0x26, 0x09, + 0x0b, 0x42, 0xac, 0xcc, 0xc1, 0xf9, 0xe3, 0x1c, 0x54, 0x12, 0x0d, 0xac, + 0x00, 0xce, 0x3e, 0x94, 0xe1, 0xb8, 0x77, 0xa6, 0x30, 0x27, 0xa9, 0xcd, + 0x38, 0xa7, 0x70, 0xba, 0x25, 0xb6, 0x9d, 0xe2, 0x91, 0x4a, 0xf2, 0x73, + 0xc0, 0x3c, 0xd6, 0xbd, 0x9c, 0xd6, 0x52, 0x14, 0x6b, 0x8c, 0x44, 0xe0, + 0x7c, 0xd9, 0xe8, 0x7d, 0xeb, 0x9f, 0xe8, 0x78, 0x3c, 0xd3, 0x8e, 0xf2, + 0xbc, 0xf4, 0xa9, 0x9c, 0x39, 0xb6, 0xd0, 0xa4, 0xec, 0x6f, 0xb3, 0xdb, + 0x7d, 0xa4, 0x2d, 0xbc, 0xe1, 0xb8, 0x24, 0x83, 0xc0, 0xe9, 0x4c, 0xd4, + 0x5d, 0xa7, 0x86, 0x3f, 0x9f, 0x19, 0xe7, 0x1e, 0x95, 0x84, 0x32, 0xa4, + 0x10, 0x70, 0x6a, 0x71, 0x2b, 0x32, 0xe3, 0x38, 0xfa, 0xd4, 0x7b, 0x26, + 0x9a, 0x77, 0x0e, 0x62, 0xc4, 0x50, 0xb3, 0x64, 0x1c, 0x63, 0x3d, 0x4d, + 0x59, 0x86, 0x11, 0x34, 0xff, 0x00, 0x30, 0x5c, 0x05, 0x3f, 0x4c, 0x54, + 0x1f, 0x6c, 0xde, 0x88, 0xac, 0xaa, 0x36, 0x8e, 0xab, 0xc5, 0x40, 0x2e, + 0xe4, 0x47, 0x20, 0x37, 0x1c, 0xf5, 0x1e, 0xb4, 0xb9, 0x64, 0xc3, 0x42, + 0x7b, 0xab, 0x45, 0x82, 0x57, 0x08, 0xe1, 0x94, 0x74, 0x20, 0xd5, 0x1d, + 0xdd, 0xf1, 0x53, 0xbc, 0xfe, 0x62, 0xe3, 0xa7, 0xad, 0x44, 0xab, 0xb8, + 0xed, 0x03, 0x35, 0xa4, 0x2e, 0x96, 0xa4, 0xbb, 0x0c, 0x32, 0x13, 0x40, + 0x76, 0x5e, 0x41, 0xa2, 0x44, 0x64, 0x6c, 0x11, 0x8a, 0x4c, 0xf1, 0x5a, + 0x05, 0x89, 0xa1, 0x94, 0x9b, 0x95, 0x66, 0x38, 0xec, 0x49, 0xa9, 0xd9, + 0xb1, 0x23, 0x14, 0xc1, 0xc7, 0xa0, 0xe2, 0xaa, 0x23, 0xaa, 0xca, 0x8e, + 0x46, 0x40, 0x39, 0x22, 0xa7, 0xfb, 0x40, 0x32, 0x65, 0x10, 0x0c, 0xf6, + 0xac, 0xe4, 0xb5, 0x1d, 0x87, 0x09, 0x43, 0x70, 0xdd, 0x7d, 0x6a, 0xc0, + 0x94, 0xa4, 0x79, 0x53, 0xcf, 0x4a, 0xa2, 0xcd, 0xcf, 0x4e, 0x73, 0x9e, + 0x29, 0xe1, 0xcb, 0x01, 0xe9, 0x52, 0xe2, 0x27, 0xb9, 0x36, 0xff, 0x00, + 0x5c, 0xf4, 0xe2, 0x94, 0x39, 0xc6, 0xdc, 0xe3, 0x35, 0x0f, 0x99, 0x83, + 0x93, 0xc8, 0xa8, 0xda, 0x6f, 0x98, 0x95, 0xe3, 0xd2, 0x85, 0x11, 0xb3, + 0x66, 0xc5, 0xe3, 0x89, 0xf3, 0x2b, 0xb0, 0xee, 0x0a, 0xd6, 0x81, 0x95, + 0x67, 0x6d, 0xc1, 0xb3, 0x8e, 0x39, 0xea, 0x6b, 0x02, 0x0b, 0x8e, 0x91, + 0xe7, 0x04, 0xfa, 0xd5, 0xf1, 0x23, 0x2a, 0x60, 0x95, 0xcf, 0x50, 0x47, + 0x15, 0x8c, 0xe1, 0xad, 0xd8, 0xd3, 0xb6, 0x84, 0xf7, 0x67, 0x90, 0x32, + 0x0f, 0x23, 0x15, 0x52, 0xe2, 0x58, 0xf6, 0x63, 0x68, 0xcf, 0xa5, 0x47, + 0x34, 0xfb, 0xd4, 0x96, 0x7c, 0xb7, 0xa7, 0x61, 0x54, 0xde, 0x72, 0x2a, + 0xa3, 0x0d, 0x81, 0xbb, 0x87, 0x9a, 0x72, 0x41, 0x00, 0xa9, 0xa5, 0x33, + 0x90, 0x81, 0x54, 0x6d, 0xf5, 0xe7, 0xad, 0x55, 0xe4, 0xb9, 0x62, 0x7d, + 0xea, 0x40, 0x7e, 0x50, 0x48, 0xfc, 0x6b, 0x7e, 0x54, 0x4b, 0x2d, 0x47, + 0x31, 0x5d, 0xb8, 0x51, 0x8c, 0xd5, 0x96, 0xb8, 0x62, 0xdb, 0x8f, 0x7e, + 0x9e, 0xd5, 0x47, 0x78, 0xf5, 0xa5, 0x59, 0x3e, 0x6a, 0x8e, 0x5d, 0x6e, + 0x4d, 0xce, 0xdf, 0xc2, 0x7e, 0x3a, 0xd4, 0x3c, 0x32, 0xf3, 0x79, 0x30, + 0xc3, 0x34, 0x77, 0x0c, 0x0c, 0xa0, 0x8c, 0x13, 0xed, 0x91, 0xd2, 0xbe, + 0x94, 0xd0, 0x35, 0x9b, 0x5f, 0x10, 0x68, 0xd0, 0x5f, 0xda, 0x30, 0x28, + 0xeb, 0xf3, 0x0f, 0xee, 0xb7, 0x71, 0x5f, 0x21, 0xc1, 0x0c, 0x8c, 0xbb, + 0xd5, 0x48, 0x18, 0xee, 0x3a, 0xd7, 0x5d, 0xe1, 0xcf, 0x19, 0x6b, 0x1e, + 0x19, 0xd3, 0xe7, 0xb6, 0xb5, 0x94, 0xc7, 0x14, 0xa7, 0x70, 0xef, 0x86, + 0xad, 0xa1, 0x52, 0x36, 0xdc, 0x71, 0x6f, 0x66, 0x63, 0xc7, 0x65, 0x6c, + 0xb1, 0x82, 0xca, 0x59, 0x8d, 0x24, 0xf0, 0x44, 0x30, 0x14, 0x10, 0xde, + 0xc3, 0x35, 0xa6, 0x89, 0x90, 0x38, 0x15, 0x2a, 0xa0, 0xdd, 0x8d, 0xa0, + 0x9f, 0x5a, 0xe2, 0xe6, 0x02, 0x35, 0x96, 0xfe, 0x1d, 0x2f, 0xec, 0xbf, + 0xbb, 0x36, 0xdd, 0x41, 0x0b, 0x86, 0x15, 0x52, 0x55, 0xd8, 0x9b, 0x83, + 0x85, 0x38, 0xe7, 0x35, 0xb7, 0x15, 0xa4, 0x97, 0x47, 0xca, 0x12, 0xc6, + 0xab, 0xfe, 0xd3, 0xf1, 0x4d, 0xb8, 0xf0, 0xb5, 0xc5, 0xcb, 0x61, 0x2f, + 0x21, 0xc7, 0xb3, 0x83, 0x5c, 0xee, 0x50, 0x4c, 0xab, 0x36, 0x72, 0x52, + 0xbf, 0x9f, 0x70, 0xa9, 0x1c, 0x63, 0x3d, 0x09, 0x1c, 0x73, 0x5d, 0x26, + 0x8f, 0xa2, 0xdc, 0x34, 0x32, 0x48, 0xf3, 0x08, 0xa1, 0x75, 0x28, 0x38, + 0xce, 0x7d, 0xe9, 0xf6, 0xfe, 0x07, 0xbd, 0x89, 0x89, 0x5b, 0x88, 0x5b, + 0x9e, 0xa1, 0xc5, 0x74, 0x76, 0x7e, 0x1f, 0xd5, 0x7e, 0xc6, 0xd6, 0xf2, + 0x79, 0x6e, 0xa1, 0x30, 0xa5, 0x58, 0x75, 0xa5, 0x52, 0xbd, 0x35, 0x1b, + 0x46, 0x45, 0x42, 0x32, 0x4f, 0x62, 0x85, 0xbf, 0x87, 0x6d, 0xfe, 0xc6, + 0xd1, 0xb5, 0xe1, 0x96, 0x4c, 0x61, 0x59, 0x41, 0xf9, 0x79, 0xad, 0x2d, + 0x3f, 0xc3, 0xb1, 0x23, 0x2f, 0xda, 0x65, 0xde, 0xc9, 0xf7, 0x01, 0x38, + 0xfc, 0xf1, 0x5a, 0x56, 0x5a, 0x4d, 0xdd, 0xa5, 0xa4, 0x4b, 0xf6, 0x68, + 0xda, 0x44, 0x53, 0xb8, 0x96, 0xe4, 0x9a, 0x75, 0x86, 0x9f, 0xa8, 0x79, + 0xaf, 0x35, 0xcc, 0x3b, 0x65, 0x91, 0xbe, 0x6d, 0x8c, 0x0e, 0x07, 0xa0, + 0xae, 0x1a, 0x95, 0xf9, 0x93, 0x4a, 0x46, 0xd6, 0x91, 0x1d, 0xf4, 0x6c, + 0x48, 0xf2, 0x91, 0x7c, 0x94, 0x3b, 0x71, 0xb4, 0xe7, 0x91, 0xfe, 0x79, + 0xac, 0xf7, 0x12, 0xdb, 0x4d, 0x6d, 0x25, 0xca, 0xc9, 0x81, 0x9d, 0xaa, + 0x09, 0xc6, 0x07, 0x4a, 0xbf, 0xae, 0xa6, 0xa8, 0x9b, 0x16, 0xcd, 0x1a, + 0x45, 0xe4, 0x94, 0xc7, 0xe9, 0x9a, 0xcf, 0x91, 0x35, 0x99, 0x6c, 0x3c, + 0xb3, 0xa7, 0xb8, 0xb8, 0x1c, 0x74, 0xe3, 0x18, 0xf5, 0xae, 0x58, 0xc5, + 0xb4, 0x84, 0xd3, 0x2b, 0x49, 0xa9, 0xbc, 0xcd, 0x24, 0x31, 0xc6, 0x9e, + 0x54, 0xec, 0x76, 0x87, 0xf9, 0x88, 0x35, 0x5a, 0x78, 0xee, 0xee, 0xee, + 0x64, 0x2f, 0x1a, 0xa4, 0xf1, 0x60, 0x04, 0x3f, 0xc5, 0x9e, 0x33, 0x56, + 0xbf, 0xb0, 0xef, 0xf4, 0xcb, 0x75, 0xb9, 0xb2, 0xb3, 0x95, 0xee, 0xdc, + 0x85, 0xda, 0x7a, 0x8e, 0xe4, 0xd6, 0xa5, 0xd0, 0x96, 0x5d, 0x3d, 0x66, + 0x92, 0xd1, 0xc5, 0xcb, 0x73, 0x22, 0x85, 0xe7, 0x3f, 0x5c, 0x56, 0x8b, + 0xdd, 0x7e, 0xea, 0xd0, 0x2c, 0xfa, 0x95, 0x12, 0x21, 0x39, 0xb6, 0x67, + 0x9b, 0xcd, 0x78, 0x8e, 0x19, 0x73, 0xc8, 0xad, 0xc4, 0x11, 0x6e, 0x21, + 0x06, 0xc2, 0x01, 0xc2, 0x83, 0xc0, 0xac, 0x3d, 0x0f, 0x4d, 0xbe, 0x5b, + 0x7b, 0x89, 0x64, 0x82, 0x44, 0x76, 0x39, 0x55, 0x61, 0xd6, 0xb6, 0x62, + 0xb5, 0x68, 0xe3, 0x4f, 0x35, 0x5b, 0x70, 0x04, 0x95, 0x14, 0xe5, 0x4e, + 0x3b, 0x5c, 0x4a, 0xfd, 0x8a, 0xde, 0x63, 0x4a, 0x8c, 0x08, 0x04, 0xa9, + 0xc3, 0x11, 0xde, 0xb3, 0x75, 0x03, 0xb6, 0x32, 0x0b, 0x90, 0xc7, 0xa0, + 0xce, 0x70, 0x29, 0xf7, 0x77, 0xf1, 0x59, 0xac, 0x80, 0xe3, 0x0c, 0x4f, + 0xee, 0xd0, 0xe3, 0x9f, 0x5a, 0xc4, 0xb8, 0xb8, 0x67, 0x87, 0x7f, 0x92, + 0x53, 0x92, 0x7e, 0x7a, 0xb8, 0x42, 0xef, 0xc8, 0x4d, 0xd8, 0x65, 0xd8, + 0xb8, 0x8a, 0x21, 0x21, 0xbb, 0x1b, 0x14, 0xf0, 0x0d, 0x62, 0xcd, 0xab, + 0x39, 0x95, 0x9d, 0x70, 0xde, 0x80, 0x75, 0x34, 0xfb, 0xeb, 0x87, 0x68, + 0xb6, 0x60, 0xbb, 0x37, 0x4e, 0x6b, 0x26, 0x4b, 0x59, 0x61, 0x7d, 0xce, + 0xbc, 0x9e, 0x08, 0xcf, 0x4a, 0xf4, 0x29, 0x45, 0x5b, 0x53, 0x19, 0x5c, + 0xbe, 0x6e, 0x8c, 0xb1, 0xf9, 0x66, 0x37, 0xcf, 0x5c, 0x29, 0xef, 0x59, + 0x6c, 0x5a, 0x26, 0x7c, 0x12, 0x58, 0x76, 0xa8, 0xa3, 0x77, 0xf3, 0x36, + 0x99, 0x48, 0x7e, 0xde, 0x95, 0x69, 0x9e, 0x10, 0x81, 0x66, 0x70, 0xd2, + 0x0e, 0x72, 0xbc, 0x56, 0xca, 0x1c, 0xbb, 0x0a, 0xf7, 0x22, 0x49, 0x3c, + 0xc6, 0xfd, 0xe4, 0x8d, 0x9e, 0xbc, 0x9a, 0xd5, 0x37, 0x36, 0xcb, 0x16, + 0xc8, 0xd5, 0xd9, 0xc0, 0xc6, 0xe0, 0xd5, 0x8c, 0xa4, 0x49, 0x3b, 0x1f, + 0x94, 0x2f, 0xa3, 0xf2, 0x4d, 0x4c, 0xbe, 0x4e, 0xf0, 0x55, 0xc8, 0x27, + 0xd0, 0xd2, 0x94, 0x6e, 0x2b, 0x9d, 0x05, 0xbb, 0xc2, 0xaa, 0x37, 0x92, + 0x73, 0x82, 0x77, 0x75, 0x15, 0x66, 0xee, 0xe7, 0x4f, 0x91, 0x0c, 0x68, + 0x8a, 0x92, 0x0e, 0x8a, 0x8b, 0xfa, 0x9a, 0xe7, 0xd6, 0xf8, 0x14, 0xd8, + 0x8a, 0x19, 0x54, 0xfc, 0xc4, 0x9e, 0x6b, 0x5a, 0x29, 0xa1, 0x4b, 0x69, + 0x19, 0x91, 0x4b, 0x49, 0xc8, 0x6e, 0x2b, 0x09, 0x53, 0x69, 0xf3, 0x14, + 0xa5, 0xdc, 0xcf, 0x92, 0xf3, 0xce, 0x3e, 0x49, 0xc9, 0x4c, 0xe3, 0x8a, + 0x88, 0x29, 0x8d, 0xdb, 0xc9, 0x94, 0xee, 0x1f, 0xc1, 0x52, 0xba, 0x1d, + 0x9e, 0x7f, 0x92, 0x44, 0x69, 0xd4, 0xe3, 0x8a, 0xa0, 0xf7, 0x6a, 0xec, + 0x56, 0x3f, 0x94, 0x8f, 0xd6, 0xba, 0x22, 0x95, 0x88, 0x2c, 0xc9, 0x3c, + 0xfb, 0x76, 0x18, 0x40, 0xcf, 0x3d, 0x3a, 0xd6, 0x41, 0x91, 0xde, 0xe2, + 0x58, 0xc9, 0xce, 0xe5, 0xc1, 0x02, 0xb7, 0x2d, 0xe7, 0x50, 0xc3, 0x78, + 0x24, 0xe3, 0xa1, 0xed, 0x55, 0x35, 0x1c, 0x45, 0x34, 0x72, 0xc4, 0x10, + 0x36, 0x73, 0x94, 0x19, 0xfc, 0xea, 0xa0, 0xec, 0xed, 0x62, 0xa2, 0xec, + 0xee, 0x66, 0x7f, 0x65, 0xcd, 0xbb, 0xe6, 0xc2, 0x8d, 0xbb, 0xb0, 0xe7, + 0x19, 0x14, 0xe8, 0xa0, 0x85, 0x63, 0x2c, 0xe7, 0xe6, 0xec, 0xa0, 0xd4, + 0xd7, 0xb3, 0x5c, 0xdf, 0x5d, 0x23, 0xba, 0x63, 0x03, 0x04, 0x8a, 0x59, + 0x6d, 0x64, 0x46, 0xcc, 0x61, 0x5c, 0xb0, 0xe4, 0xff, 0x00, 0x76, 0xb4, + 0xbb, 0xb6, 0xac, 0x1e, 0xe1, 0x14, 0x4b, 0x2b, 0x80, 0x8c, 0xa8, 0x0f, + 0x5c, 0x9a, 0x92, 0xe5, 0xa1, 0x07, 0xca, 0x88, 0x87, 0x23, 0xf8, 0x89, + 0xaa, 0x5f, 0x67, 0x91, 0xbf, 0x8c, 0xe7, 0xbf, 0xb5, 0x05, 0x1a, 0x13, + 0xf2, 0x00, 0x78, 0xe4, 0xd3, 0xea, 0x16, 0xd0, 0x90, 0xcd, 0x22, 0xe4, + 0x16, 0xdc, 0x48, 0x1c, 0x8e, 0xd5, 0xa3, 0x6b, 0xa9, 0x25, 0xba, 0x46, + 0xb1, 0xc3, 0x96, 0x1d, 0x4f, 0x72, 0x6b, 0x3a, 0x19, 0x0c, 0x53, 0x03, + 0xb0, 0x39, 0x3d, 0x45, 0x49, 0x0b, 0x3c, 0x97, 0x19, 0x03, 0x07, 0x39, + 0xfa, 0x54, 0x48, 0x76, 0x3b, 0x0b, 0x45, 0xd3, 0xae, 0xed, 0xfe, 0xd1, + 0x2c, 0x6b, 0xe6, 0x0e, 0xa4, 0xb7, 0x20, 0xfd, 0x29, 0x9a, 0x94, 0x97, + 0x13, 0x58, 0x48, 0x96, 0x88, 0xa1, 0xcf, 0x24, 0xab, 0xe3, 0x00, 0x56, + 0x6d, 0xae, 0x9d, 0x72, 0xf3, 0xed, 0x68, 0x25, 0xd9, 0x21, 0xfe, 0x1e, + 0x39, 0xff, 0x00, 0x26, 0x99, 0xa8, 0xe9, 0x3a, 0x8d, 0xa6, 0xfd, 0x82, + 0xe0, 0x02, 0x78, 0xca, 0xf1, 0x8f, 0xad, 0x60, 0x9c, 0x6f, 0xb9, 0xa2, + 0xb9, 0x4a, 0xcf, 0x53, 0xbb, 0x85, 0x0d, 0x9e, 0xec, 0x23, 0x03, 0xd4, + 0x67, 0x39, 0xab, 0x9a, 0x5d, 0xfd, 0xfe, 0x93, 0x7f, 0xbc, 0xc2, 0xc6, + 0x39, 0x3e, 0xee, 0x71, 0x95, 0x3d, 0x8d, 0x4d, 0xa4, 0x78, 0x66, 0xed, + 0xe6, 0x59, 0xae, 0x54, 0xa8, 0x38, 0x28, 0xad, 0xfc, 0x55, 0xa1, 0x75, + 0xa2, 0x6b, 0xf7, 0x8b, 0x2c, 0x2b, 0x6b, 0xe5, 0x26, 0x32, 0x8c, 0x07, + 0xde, 0xf4, 0xcf, 0x7a, 0xa9, 0xce, 0x1d, 0x5a, 0x05, 0x71, 0xfa, 0xa5, + 0xc5, 0x96, 0xaf, 0x0c, 0xd1, 0x5e, 0xd9, 0x9f, 0xb6, 0x47, 0xf2, 0x97, + 0x8c, 0x72, 0x78, 0xe0, 0xd7, 0x37, 0x61, 0xa9, 0x7f, 0x63, 0x9f, 0x26, + 0xe4, 0xca, 0xc8, 0x06, 0x36, 0x63, 0xa5, 0x6e, 0x5b, 0xe8, 0xfe, 0x21, + 0xd3, 0x6d, 0x8c, 0xef, 0x09, 0x0a, 0x1b, 0xe7, 0xc7, 0x2e, 0x47, 0xbd, + 0x2e, 0xa3, 0xa2, 0x3e, 0xa9, 0x6a, 0xad, 0xf6, 0x39, 0x60, 0x9d, 0x4f, + 0x52, 0xbf, 0x7b, 0x35, 0x9c, 0x67, 0x4d, 0x2e, 0x56, 0xee, 0x86, 0xee, + 0x67, 0xdb, 0xe9, 0xf2, 0xea, 0x4a, 0xf7, 0x81, 0x9e, 0x28, 0x9b, 0x91, + 0x8e, 0x09, 0xa9, 0x2c, 0xbc, 0x39, 0xe7, 0xdd, 0x19, 0xee, 0xae, 0x72, + 0xa0, 0x11, 0xb7, 0x9c, 0x9a, 0xbf, 0x68, 0x64, 0xd3, 0xb4, 0x85, 0x82, + 0x64, 0x04, 0xae, 0x70, 0x3d, 0xbd, 0xeb, 0x0a, 0xe3, 0x55, 0xbd, 0x79, + 0x84, 0x0c, 0xf8, 0x8d, 0xc8, 0xc0, 0x4e, 0xd5, 0x4b, 0x9e, 0x57, 0xe5, + 0x62, 0xd1, 0x6e, 0x74, 0x77, 0x16, 0xda, 0x60, 0x82, 0x3b, 0x69, 0x92, + 0x32, 0xde, 0x8a, 0x39, 0xaa, 0x72, 0x69, 0x3a, 0x6b, 0xbf, 0xee, 0x8b, + 0xc4, 0xc3, 0x9c, 0xaf, 0x40, 0x6a, 0x1b, 0x7b, 0xa4, 0xb3, 0xbc, 0x1c, + 0x87, 0x52, 0x06, 0x59, 0xb9, 0x26, 0x99, 0x79, 0xaa, 0x2f, 0x9e, 0x70, + 0x9c, 0x67, 0x1f, 0x28, 0xeb, 0x59, 0x28, 0xcd, 0x3b, 0x26, 0xc6, 0xda, + 0xea, 0x47, 0xac, 0xdc, 0x25, 0x85, 0xac, 0x02, 0x19, 0x44, 0x84, 0xf0, + 0x48, 0x03, 0x35, 0x96, 0xac, 0x64, 0xb4, 0x75, 0x66, 0x3b, 0x98, 0x71, + 0x51, 0xb2, 0x6d, 0x95, 0x9c, 0x23, 0x73, 0xc8, 0xca, 0xe4, 0x53, 0x24, + 0x0c, 0xfd, 0x0b, 0x29, 0xef, 0x90, 0x6b, 0xaa, 0x11, 0xb2, 0xb1, 0x94, + 0xa5, 0xa9, 0x62, 0xd1, 0x1e, 0x10, 0x48, 0x20, 0x13, 0xde, 0xad, 0x5b, + 0xd9, 0x89, 0xa4, 0x12, 0x6f, 0xf3, 0x18, 0xf2, 0x45, 0x55, 0xb5, 0x00, + 0x80, 0x00, 0x72, 0x7d, 0x48, 0xad, 0x2d, 0x3a, 0x49, 0x2d, 0x25, 0x76, + 0xf2, 0x8b, 0x1c, 0x61, 0x09, 0x14, 0x4e, 0xe9, 0x3b, 0x02, 0x6d, 0x96, + 0x15, 0x66, 0x48, 0xa4, 0x41, 0x84, 0x11, 0x1c, 0xed, 0x3e, 0xf5, 0x9f, + 0x24, 0xdb, 0x18, 0xbb, 0xb6, 0xf0, 0x0e, 0x00, 0xab, 0x37, 0x4d, 0x71, + 0x24, 0xb2, 0x3a, 0xc6, 0xe5, 0xdb, 0xf8, 0xbb, 0x55, 0x19, 0x2d, 0x2e, + 0x65, 0x53, 0xfb, 0xa7, 0xe7, 0xae, 0x06, 0x2a, 0x61, 0x0b, 0xee, 0x0e, + 0xfd, 0x09, 0x3e, 0xd6, 0x59, 0x5b, 0x1c, 0x67, 0x1c, 0x75, 0xa8, 0xd2, + 0x63, 0x2b, 0x83, 0x2b, 0x90, 0xa0, 0xfd, 0xda, 0x22, 0xb0, 0xbb, 0x19, + 0xfd, 0xd1, 0x1f, 0x5a, 0x6b, 0xe9, 0xb7, 0x0d, 0x19, 0x5d, 0xa4, 0x73, + 0x9e, 0x95, 0xa7, 0x2a, 0x42, 0xf7, 0xba, 0x8f, 0x94, 0x42, 0xad, 0xba, + 0x17, 0x62, 0x4f, 0x6c, 0xf0, 0x2a, 0x90, 0x90, 0x44, 0xe7, 0xa9, 0x1f, + 0x5a, 0x9f, 0xfb, 0x3a, 0xed, 0x55, 0x76, 0x21, 0xf7, 0x26, 0x9d, 0xfd, + 0x9d, 0x72, 0x48, 0x6c, 0x0c, 0xf7, 0x15, 0x6a, 0xc8, 0x96, 0x99, 0x1e, + 0xe0, 0x14, 0xb8, 0xc6, 0xde, 0xb5, 0x18, 0x99, 0x73, 0xd3, 0x93, 0xd1, + 0xa9, 0xe7, 0x4b, 0xba, 0x24, 0x8c, 0x2a, 0x83, 0xef, 0x52, 0x5b, 0xe9, + 0x53, 0x26, 0x77, 0xc8, 0xb9, 0xed, 0x45, 0xe2, 0x16, 0x63, 0x63, 0xf3, + 0x03, 0xe3, 0x00, 0x85, 0xe7, 0x27, 0xd2, 0x9b, 0x76, 0x61, 0x11, 0xa3, + 0xa2, 0x00, 0xd9, 0xc9, 0xad, 0x0f, 0xb1, 0x33, 0x21, 0x0f, 0x29, 0xdd, + 0xd8, 0x8e, 0xd4, 0xd1, 0xa7, 0x26, 0xdd, 0xb2, 0x48, 0x58, 0x7d, 0x2a, + 0x79, 0x95, 0xca, 0xb6, 0x86, 0x19, 0x97, 0x24, 0x65, 0xb8, 0xcf, 0x4a, + 0x47, 0x61, 0xc7, 0x7f, 0xa5, 0x6d, 0x7f, 0x64, 0xdb, 0x75, 0xda, 0x4f, + 0xd6, 0x9e, 0xb6, 0x31, 0x27, 0xdd, 0x8c, 0x62, 0xaf, 0xda, 0xae, 0x84, + 0xf2, 0x9c, 0xd3, 0xc4, 0xf9, 0xf9, 0x10, 0x9f, 0xa5, 0x38, 0x23, 0x22, + 0x60, 0xa9, 0xdd, 0xf4, 0xe9, 0x5d, 0x3a, 0xc4, 0x83, 0xf8, 0x14, 0x7e, + 0x14, 0xe3, 0x12, 0xb1, 0xe1, 0x07, 0xe0, 0xb4, 0x2c, 0x47, 0x2f, 0x42, + 0xd2, 0x39, 0x55, 0x47, 0x1e, 0xb4, 0xf5, 0x8a, 0x43, 0xd0, 0x37, 0xeb, + 0x5d, 0x29, 0x80, 0x2f, 0x25, 0x71, 0xf8, 0x54, 0xb1, 0xb0, 0x5e, 0x99, + 0x07, 0xd4, 0x53, 0x78, 0xa7, 0xd1, 0x01, 0xca, 0x98, 0xe4, 0x1d, 0x55, + 0xbf, 0x11, 0x47, 0x91, 0x2b, 0x74, 0x52, 0x7f, 0x0a, 0xea, 0xd8, 0x87, + 0x39, 0x07, 0x3f, 0x5a, 0x45, 0x73, 0x1e, 0x70, 0x83, 0x3e, 0xb8, 0xa5, + 0xf5, 0xa9, 0x76, 0x0b, 0x1c, 0xb8, 0xd3, 0xae, 0x9c, 0x7c, 0xb0, 0xb9, + 0xfc, 0x29, 0x87, 0x4f, 0xb9, 0x07, 0x06, 0x26, 0x07, 0xe9, 0x5d, 0x6f, + 0xda, 0xa5, 0xf9, 0x40, 0x27, 0x8a, 0x6b, 0x4d, 0x23, 0xb7, 0xdd, 0x5c, + 0xfa, 0xd4, 0x7d, 0x66, 0xa3, 0xdd, 0x21, 0xe8, 0x73, 0x09, 0xa4, 0x5e, + 0xc8, 0x72, 0xb6, 0xee, 0x7f, 0x0a, 0x9f, 0xfb, 0x13, 0x52, 0x0b, 0x86, + 0xb6, 0x71, 0xef, 0x8a, 0xe8, 0x92, 0xe2, 0xe6, 0x33, 0xba, 0x39, 0xb6, + 0x9f, 0x63, 0x4d, 0x96, 0xf2, 0xe9, 0xff, 0x00, 0xd6, 0x5d, 0x3b, 0x7e, + 0x35, 0x9b, 0xad, 0x55, 0xbe, 0x81, 0xa1, 0x85, 0x17, 0x86, 0xb5, 0x39, + 0x79, 0x58, 0x33, 0x9f, 0x7a, 0x93, 0xfe, 0x11, 0x7d, 0x44, 0x36, 0x24, + 0xf2, 0xe3, 0xff, 0x00, 0x79, 0xb1, 0x5a, 0x66, 0xe2, 0x6c, 0x00, 0x25, + 0x7e, 0x3d, 0xea, 0x36, 0x79, 0x1c, 0x60, 0xbb, 0x1f, 0xa9, 0xa7, 0xed, + 0x2b, 0x3e, 0xa8, 0x57, 0x89, 0x99, 0x3e, 0x85, 0x34, 0x0d, 0xb5, 0xe5, + 0x8c, 0x9f, 0xf6, 0x58, 0x11, 0x55, 0xdb, 0x4d, 0x64, 0xe0, 0xbf, 0xe5, + 0x5b, 0x62, 0x16, 0x7e, 0xd5, 0x1b, 0x45, 0xcf, 0x20, 0x53, 0x55, 0x25, + 0xd5, 0x89, 0x98, 0x86, 0xc5, 0x87, 0xf1, 0x1f, 0xca, 0xab, 0xc9, 0x03, + 0xa9, 0xfb, 0xa4, 0x8f, 0xa5, 0x74, 0x5e, 0x58, 0x07, 0xb5, 0x49, 0xf6, + 0x64, 0x6c, 0x2b, 0x49, 0x18, 0xf7, 0xc5, 0x5f, 0xb6, 0x68, 0x11, 0xc9, + 0x94, 0x3f, 0xdd, 0x61, 0xf8, 0x51, 0x87, 0xf4, 0x3f, 0x95, 0x75, 0xad, + 0xa7, 0x42, 0x3a, 0x4f, 0x1b, 0x71, 0xdb, 0x35, 0x0b, 0x5a, 0x40, 0xa7, + 0x04, 0xee, 0xfa, 0x55, 0x7d, 0x61, 0x76, 0x2b, 0x53, 0x97, 0x08, 0xc4, + 0xf4, 0x35, 0x26, 0xc3, 0x82, 0x31, 0x5d, 0x03, 0x5b, 0x44, 0xbd, 0xb7, + 0x0a, 0x67, 0xd9, 0xe1, 0x38, 0xe2, 0x9f, 0xb6, 0xbf, 0x41, 0x5c, 0xc2, + 0x58, 0xf8, 0xce, 0x33, 0x4a, 0x53, 0x8c, 0xe2, 0xb7, 0x0d, 0xbc, 0x40, + 0x82, 0xa0, 0x93, 0xef, 0x4a, 0x50, 0x1c, 0x70, 0xbc, 0x7b, 0x52, 0xf6, + 0xa1, 0x73, 0x03, 0x69, 0x53, 0xdc, 0x52, 0x63, 0x9f, 0x5a, 0xdd, 0x92, + 0x04, 0x70, 0x3e, 0x55, 0xcf, 0xb0, 0xa6, 0x8b, 0x28, 0x0f, 0x1b, 0x4e, + 0x6a, 0xbd, 0xaf, 0x70, 0xb9, 0x8e, 0x46, 0x31, 0x83, 0x4d, 0x11, 0xb6, + 0xee, 0x7d, 0x6b, 0x6c, 0xe9, 0xf0, 0x03, 0x80, 0xa7, 0xf1, 0xa7, 0xa5, + 0xac, 0x03, 0xfd, 0x64, 0x65, 0xfd, 0xb3, 0xc5, 0x2f, 0x6a, 0x87, 0x73, + 0x2a, 0x74, 0x00, 0xa8, 0x4e, 0x10, 0x01, 0xdf, 0x3c, 0xd5, 0x76, 0x90, + 0xf4, 0xcd, 0x6e, 0x3c, 0x28, 0x70, 0x11, 0x00, 0x41, 0xd0, 0x54, 0x12, + 0x58, 0xa3, 0xf6, 0x03, 0xe8, 0x29, 0x46, 0xa2, 0xea, 0x26, 0xd1, 0x90, + 0x1b, 0x03, 0x9a, 0x15, 0xfe, 0x61, 0x93, 0x8f, 0x7a, 0xd2, 0x7d, 0x39, + 0x46, 0x38, 0xa1, 0x34, 0xd8, 0xf2, 0x77, 0xe7, 0xe9, 0x57, 0xed, 0x22, + 0x17, 0x45, 0x4f, 0xb6, 0x6c, 0x98, 0x32, 0x63, 0x03, 0xbe, 0x3a, 0xd4, + 0x93, 0xc9, 0x1b, 0xc3, 0xbb, 0x23, 0xdb, 0x1d, 0x4d, 0x5b, 0x5d, 0x36, + 0x0e, 0x4b, 0xe4, 0x8f, 0x41, 0x51, 0x3e, 0x9d, 0x11, 0x3f, 0x26, 0xe1, + 0xf5, 0xa9, 0xe6, 0x85, 0xca, 0xba, 0x33, 0x14, 0xe5, 0xc6, 0x4d, 0x48, + 0x5f, 0xa9, 0xfd, 0x2a, 0xcf, 0xf6, 0x6b, 0x16, 0xc0, 0x6a, 0x4f, 0xec, + 0xf7, 0x07, 0xad, 0x69, 0xcf, 0x12, 0x5d, 0x8a, 0x5b, 0x89, 0x39, 0xa9, + 0x15, 0x89, 0x20, 0xe6, 0xad, 0x7f, 0x67, 0x1e, 0xd9, 0x27, 0xd2, 0x9e, + 0x2c, 0x48, 0x03, 0xb5, 0x27, 0x38, 0x8e, 0xe8, 0xa6, 0xcd, 0xb5, 0x48, + 0xeb, 0x9a, 0x88, 0x67, 0xb0, 0xad, 0x21, 0x60, 0x0f, 0x18, 0x39, 0xa9, + 0x56, 0xc4, 0xa9, 0xdb, 0xd3, 0x3e, 0xf4, 0xbd, 0xa4, 0x50, 0x93, 0x32, + 0x43, 0x1e, 0xf5, 0x22, 0xb6, 0xd1, 0xc8, 0x3f, 0x85, 0x69, 0xc9, 0xa7, + 0xa8, 0x27, 0x23, 0x9f, 0xad, 0x24, 0x76, 0xa6, 0x2e, 0xc1, 0x87, 0xa1, + 0xa3, 0xda, 0xab, 0x06, 0x86, 0x69, 0x0d, 0x9e, 0xf8, 0xa5, 0xc1, 0x2b, + 0x8a, 0xd1, 0x36, 0x41, 0xb3, 0xd7, 0x9f, 0xd2, 0x93, 0xfb, 0x3b, 0x03, + 0xef, 0x51, 0xed, 0x50, 0x8c, 0xe1, 0x18, 0x18, 0xcf, 0x5a, 0x73, 0xaf, + 0x1c, 0x1e, 0x95, 0x7c, 0x69, 0x8c, 0xe7, 0xe5, 0x27, 0x34, 0x1d, 0x35, + 0x97, 0x82, 0x48, 0xa7, 0xed, 0x22, 0x1a, 0x99, 0x64, 0x90, 0x39, 0xa6, + 0xe6, 0xb5, 0x0e, 0x9a, 0x1b, 0xbd, 0x2a, 0xe9, 0x20, 0xf1, 0xc9, 0xa7, + 0xed, 0x22, 0x3b, 0xa3, 0x3b, 0x71, 0x1d, 0xea, 0x44, 0x89, 0x9f, 0x0c, + 0x54, 0x91, 0xeb, 0x57, 0x86, 0x8e, 0x49, 0xc6, 0x1b, 0x3f, 0x4a, 0x51, + 0xa6, 0x6d, 0xe0, 0x92, 0x2a, 0x7d, 0xa4, 0x7a, 0x0f, 0x43, 0x35, 0x90, + 0xae, 0x4f, 0x38, 0xa5, 0x49, 0x5a, 0x33, 0xb9, 0x4e, 0x1a, 0xb5, 0x52, + 0xc5, 0x17, 0xa8, 0xc8, 0xf4, 0xa5, 0xfe, 0xcf, 0x8f, 0x39, 0xdb, 0x8a, + 0x5e, 0xd1, 0x75, 0x15, 0xd1, 0x8e, 0xf2, 0x3c, 0xb8, 0xdc, 0x73, 0x8e, + 0xf4, 0xdc, 0x1a, 0xda, 0x16, 0x11, 0x8f, 0xe0, 0x14, 0xe1, 0x63, 0x17, + 0xf7, 0x7f, 0x4a, 0x7e, 0xd5, 0x76, 0x0e, 0x63, 0x0f, 0x1c, 0x54, 0x90, + 0x48, 0xd1, 0xca, 0x1d, 0x38, 0x22, 0xb6, 0x85, 0x8c, 0x59, 0xfb, 0x82, + 0x97, 0xec, 0x31, 0x03, 0xc2, 0x0a, 0x4e, 0xaa, 0x6a, 0xd6, 0x15, 0xcc, + 0x8c, 0x96, 0x24, 0xf1, 0xef, 0x4a, 0x39, 0xc8, 0xad, 0x91, 0x65, 0x1f, + 0xf7, 0x47, 0xe5, 0x4e, 0x5b, 0x58, 0xc7, 0xf0, 0x0f, 0xca, 0x97, 0xb4, + 0x44, 0x98, 0x8a, 0x79, 0xe4, 0x73, 0x4a, 0x63, 0xdc, 0x72, 0x10, 0xe7, + 0xe9, 0x5b, 0xa2, 0x14, 0x1f, 0xc3, 0xfa, 0x53, 0x84, 0x6a, 0x0f, 0x0a, + 0x3f, 0x2a, 0x5e, 0xd0, 0x67, 0x3c, 0xb6, 0xec, 0xc7, 0x84, 0x61, 0x8e, + 0xf5, 0x71, 0x61, 0x9b, 0xcb, 0x0b, 0xb0, 0x93, 0xef, 0x5b, 0x00, 0x60, + 0x63, 0x03, 0xf2, 0xa5, 0x53, 0x83, 0xd3, 0xf4, 0xa4, 0xe6, 0xd8, 0xee, + 0x62, 0xa6, 0x9f, 0x2b, 0x38, 0xdf, 0x95, 0x43, 0xd4, 0x8e, 0x48, 0xab, + 0x7f, 0xd8, 0xf6, 0xef, 0x81, 0xf6, 0x99, 0x07, 0xb9, 0x8c, 0x7f, 0x8d, + 0x69, 0x1e, 0x7f, 0x87, 0xf4, 0xa1, 0x7e, 0x53, 0xd3, 0x34, 0x7b, 0x49, + 0x0d, 0x4a, 0xc5, 0x11, 0xe1, 0xe5, 0x7d, 0xa2, 0x3b, 0xc4, 0x3f, 0x51, + 0x8a, 0x9d, 0xbc, 0x21, 0x71, 0x80, 0x56, 0xe1, 0x08, 0x3d, 0xaa, 0xd0, + 0xc9, 0x3c, 0x00, 0x3e, 0x95, 0x2a, 0x79, 0x83, 0xf8, 0xc8, 0xfc, 0x69, + 0x3a, 0x8f, 0xa3, 0x1f, 0x32, 0x7d, 0x0a, 0x70, 0xf8, 0x61, 0xad, 0xe5, + 0x57, 0xb8, 0x61, 0x22, 0x0e, 0xaa, 0x29, 0xcd, 0x67, 0x0c, 0x0e, 0x0a, + 0xdb, 0xe0, 0x82, 0x70, 0x71, 0x57, 0x77, 0x31, 0x3f, 0x78, 0xd2, 0x00, + 0xc7, 0xd0, 0xfd, 0x6a, 0x39, 0x9f, 0x56, 0x2b, 0xa2, 0xba, 0x42, 0x6e, + 0xf0, 0xd8, 0x75, 0x03, 0x81, 0x93, 0x8c, 0x54, 0x37, 0x16, 0xca, 0x84, + 0xee, 0x72, 0x6b, 0x40, 0x6e, 0x07, 0xb5, 0x48, 0x41, 0x61, 0x93, 0x8a, + 0x49, 0xd9, 0x89, 0xd8, 0x7a, 0xb3, 0x71, 0x4e, 0xcc, 0x99, 0xab, 0xed, + 0xa6, 0xba, 0x85, 0x11, 0xe5, 0xa9, 0x9f, 0x62, 0x99, 0x5b, 0xe6, 0x18, + 0x15, 0x9f, 0x32, 0x1d, 0x99, 0x58, 0x3c, 0x83, 0xd7, 0x14, 0xb9, 0x60, + 0x73, 0x93, 0x8a, 0xd3, 0x86, 0xce, 0xdd, 0xd7, 0x0c, 0xef, 0x9f, 0x6c, + 0x55, 0xd8, 0x2d, 0xed, 0x61, 0x6c, 0xb0, 0xdc, 0x7d, 0xea, 0x1d, 0x44, + 0xba, 0x0f, 0x96, 0xe5, 0x1b, 0x33, 0x0c, 0x84, 0x07, 0x59, 0xcf, 0xfb, + 0xa2, 0xba, 0xed, 0x31, 0x6d, 0x51, 0x46, 0xd8, 0xe6, 0x07, 0xfd, 0xa2, + 0x69, 0x96, 0xd7, 0xb6, 0x71, 0x22, 0x80, 0x98, 0x3d, 0xf8, 0xab, 0xab, + 0xaa, 0xd9, 0x03, 0xd7, 0x1f, 0xf0, 0x1a, 0xe2, 0xad, 0x39, 0x4f, 0x4b, + 0x33, 0x68, 0x45, 0x2e, 0xa6, 0xa4, 0x72, 0x2e, 0xde, 0x54, 0xe3, 0xd0, + 0xd4, 0xa5, 0xbf, 0xba, 0x00, 0xfa, 0xd6, 0x4a, 0xea, 0xd6, 0xbd, 0x41, + 0x6c, 0x7b, 0xd4, 0xcb, 0xaa, 0xda, 0x30, 0xc0, 0x7c, 0x93, 0xed, 0x5c, + 0x4e, 0x8c, 0xbb, 0x1a, 0xf3, 0x23, 0x41, 0x0b, 0x91, 0x93, 0xb4, 0xd3, + 0x83, 0x90, 0x72, 0x40, 0xfc, 0x2a, 0x80, 0xbd, 0x8f, 0x92, 0xa7, 0x3f, + 0x4a, 0x8c, 0x6a, 0x30, 0x0e, 0x25, 0x90, 0x8a, 0x9f, 0x65, 0x2e, 0xc3, + 0xe6, 0x35, 0xbc, 0xc5, 0x2c, 0x30, 0x45, 0x49, 0x94, 0x55, 0x19, 0x55, + 0xe7, 0xbd, 0x61, 0xb6, 0xad, 0x62, 0x9f, 0xc7, 0xf8, 0xe2, 0xa3, 0xff, + 0x00, 0x84, 0x92, 0xc1, 0x30, 0xa5, 0xf9, 0xf4, 0xc5, 0x35, 0x46, 0x7d, + 0x10, 0xf9, 0xd7, 0x56, 0x6e, 0x33, 0xe5, 0x8a, 0xed, 0x38, 0x1d, 0x0d, + 0x53, 0xbe, 0x8c, 0xf9, 0x25, 0x94, 0x0d, 0xa3, 0xae, 0x4d, 0x66, 0x9d, + 0x72, 0xc5, 0x8e, 0xe4, 0x98, 0x0f, 0xce, 0xa9, 0xdc, 0xea, 0xa9, 0x29, + 0x25, 0x2e, 0x54, 0x82, 0x3a, 0x62, 0xae, 0x34, 0xe7, 0xd8, 0x4e, 0x68, + 0xc1, 0xd6, 0xe4, 0xb0, 0x47, 0x52, 0x80, 0xc9, 0x29, 0x93, 0xe6, 0x28, + 0xbd, 0x3d, 0xea, 0x8d, 0xeb, 0xc1, 0x22, 0xb4, 0x89, 0x23, 0x63, 0xcb, + 0x00, 0x21, 0xe3, 0x3e, 0xf5, 0x6e, 0xee, 0xf0, 0x28, 0x65, 0x8f, 0x62, + 0xf3, 0xd8, 0x01, 0x9a, 0xc7, 0x96, 0xe2, 0x66, 0x38, 0x2c, 0x31, 0xeb, + 0x5d, 0xd4, 0xe9, 0x35, 0xa9, 0xcf, 0x29, 0x23, 0x2a, 0x5b, 0xa8, 0xda, + 0x50, 0x01, 0x55, 0x75, 0xee, 0xc3, 0x38, 0xa8, 0x63, 0x75, 0x79, 0xe6, + 0xf3, 0x0e, 0xe5, 0xc6, 0x72, 0xc7, 0xa9, 0xa9, 0xee, 0x2c, 0x63, 0x9c, + 0xe5, 0x8e, 0x0f, 0xa8, 0x15, 0x44, 0xe9, 0x2e, 0x18, 0xed, 0x7f, 0x97, + 0xde, 0xbb, 0x63, 0x63, 0x22, 0x09, 0xfc, 0xb4, 0x7f, 0x95, 0xa3, 0x20, + 0x2e, 0x7a, 0x7f, 0x2a, 0xa7, 0x10, 0x2d, 0x87, 0xf2, 0xc7, 0xce, 0x76, + 0x86, 0x6e, 0x79, 0xf4, 0xad, 0x35, 0xd2, 0x02, 0xe0, 0xee, 0x27, 0x02, + 0xa7, 0x8f, 0x4e, 0x45, 0x03, 0x6a, 0x81, 0x8e, 0x78, 0xf5, 0xad, 0x13, + 0x8a, 0x24, 0xce, 0x9e, 0xcd, 0x95, 0x63, 0x69, 0x89, 0x46, 0xe7, 0x18, + 0xa6, 0x1b, 0x2f, 0x32, 0x3c, 0xf9, 0xc0, 0xf3, 0x9e, 0x38, 0xcd, 0x6c, + 0x9b, 0x33, 0x23, 0x02, 0xcf, 0xbb, 0x1e, 0xbc, 0xd3, 0xc5, 0x84, 0x4a, + 0x30, 0x14, 0x0f, 0xa0, 0xa5, 0xcc, 0x06, 0x4d, 0xad, 0xb9, 0x85, 0x4e, + 0xe1, 0xc1, 0xc9, 0xdd, 0x4a, 0xd7, 0x4e, 0x81, 0x61, 0x7c, 0x30, 0xeb, + 0xb7, 0x15, 0xa8, 0x74, 0xe8, 0xf6, 0x04, 0x1b, 0x80, 0x1e, 0xf4, 0xd3, + 0xa4, 0x5b, 0xb1, 0xc9, 0x0c, 0x4f, 0xa9, 0x34, 0x75, 0xd4, 0x06, 0x45, + 0x74, 0xc1, 0x12, 0x37, 0x19, 0x42, 0x39, 0x50, 0x78, 0xfc, 0x6a, 0xad, + 0xe3, 0xc0, 0x92, 0xa1, 0x50, 0x88, 0x3b, 0xed, 0x19, 0xab, 0x8d, 0xa5, + 0x2b, 0x1e, 0x25, 0x71, 0xf4, 0x34, 0x7f, 0x63, 0xc2, 0x63, 0xd8, 0xc5, + 0x8a, 0x93, 0x93, 0xcd, 0x09, 0x45, 0x3b, 0x81, 0x9a, 0xf3, 0xaf, 0x99, + 0x88, 0xe4, 0xcb, 0x11, 0xc8, 0x23, 0x8a, 0xb7, 0x6c, 0xad, 0x24, 0x45, + 0x64, 0x40, 0x78, 0xe1, 0xaa, 0xec, 0x5a, 0x5d, 0xbc, 0x3f, 0x75, 0x3f, + 0x13, 0xcd, 0x58, 0x54, 0x50, 0x70, 0xbd, 0x2a, 0xa5, 0x28, 0xda, 0xc8, + 0x12, 0x28, 0x47, 0x65, 0x8c, 0x70, 0x4d, 0x59, 0x4b, 0x69, 0x31, 0xb7, + 0xcb, 0x18, 0x3e, 0xd5, 0x6c, 0x30, 0x5e, 0xa6, 0xa4, 0x0c, 0xdc, 0x1c, + 0x9c, 0x54, 0x5c, 0x68, 0xa8, 0x6c, 0xf0, 0xac, 0x16, 0x35, 0xe7, 0xb9, + 0x15, 0x55, 0xb4, 0x92, 0xc7, 0x27, 0x6d, 0x6b, 0xa9, 0xc0, 0x3b, 0x8e, + 0x01, 0xf7, 0xa0, 0xac, 0x7d, 0x77, 0x9f, 0x6a, 0x68, 0x76, 0x46, 0x09, + 0xd0, 0x9f, 0x24, 0x87, 0x03, 0xe9, 0x4f, 0x83, 0x46, 0x78, 0x24, 0xdf, + 0xe6, 0x03, 0xf8, 0x56, 0xc1, 0x75, 0xce, 0x39, 0x34, 0x9b, 0x81, 0x63, + 0x90, 0x69, 0xde, 0xeb, 0x51, 0xd9, 0x09, 0x03, 0x5e, 0xc4, 0xe8, 0xe2, + 0xe0, 0xb0, 0x4f, 0xba, 0x0f, 0x20, 0x56, 0xdd, 0xbf, 0x89, 0x2f, 0x11, + 0x42, 0x4e, 0x91, 0xc9, 0x18, 0xea, 0x0a, 0xd6, 0x28, 0x1c, 0xf5, 0x34, + 0xf0, 0x54, 0x75, 0x03, 0xe8, 0x6b, 0x27, 0x4a, 0x9b, 0xdd, 0x14, 0xa5, + 0x6d, 0x99, 0xd6, 0xc1, 0xe2, 0x9d, 0x3a, 0x36, 0x05, 0xac, 0xc8, 0xf6, + 0x51, 0xd2, 0xad, 0x37, 0x8c, 0xec, 0x1b, 0x38, 0xb4, 0x93, 0xd3, 0xeb, + 0x5c, 0x49, 0x68, 0x8f, 0x61, 0xf8, 0x54, 0x60, 0xa2, 0xb7, 0xca, 0xdf, + 0xfd, 0x6a, 0xcf, 0xea, 0x94, 0x8b, 0xf6, 0x8c, 0xeb, 0x6e, 0x3c, 0x59, + 0x6e, 0x49, 0x2b, 0x66, 0x48, 0x3e, 0xac, 0x45, 0x55, 0x6f, 0x16, 0xb4, + 0xb8, 0xc5, 0xaa, 0x90, 0x3e, 0xef, 0x3d, 0x2b, 0x09, 0x84, 0x60, 0x0c, + 0xb8, 0x63, 0x53, 0xa5, 0xd5, 0x8a, 0x20, 0x41, 0x01, 0xdc, 0x3b, 0x83, + 0x47, 0xd5, 0xe9, 0xf6, 0x0e, 0x76, 0xfa, 0x8e, 0xbc, 0xb9, 0x4b, 0xc2, + 0x64, 0x92, 0xd5, 0x01, 0x3d, 0xf9, 0xa2, 0xd2, 0x3d, 0x09, 0x9b, 0xfd, + 0x32, 0xcd, 0x81, 0xfe, 0xf2, 0x70, 0x6a, 0xb4, 0xb3, 0xa3, 0x13, 0xb4, + 0x7d, 0x33, 0x50, 0xaf, 0x3c, 0xf1, 0x54, 0xa2, 0x90, 0xb9, 0xb5, 0x36, + 0x6e, 0x61, 0xf0, 0xb4, 0xe8, 0x17, 0xec, 0x93, 0x36, 0x3e, 0xe9, 0x26, + 0xb3, 0x1a, 0x2d, 0x3e, 0x3c, 0xa4, 0x76, 0xc4, 0xa7, 0xa3, 0x36, 0x6a, + 0x32, 0xdd, 0xb2, 0x3f, 0x0a, 0x88, 0xb6, 0x09, 0xef, 0x4a, 0xde, 0x64, + 0x39, 0xdc, 0x99, 0x92, 0xc7, 0x07, 0x6d, 0x9a, 0x83, 0xea, 0x5a, 0xa1, + 0x09, 0x6e, 0x1b, 0x2d, 0x02, 0x91, 0xe9, 0x49, 0xe6, 0x02, 0x0f, 0x14, + 0x99, 0x52, 0x29, 0xdc, 0x9b, 0x84, 0x82, 0x26, 0x3f, 0xbb, 0x88, 0x20, + 0xa4, 0x56, 0xdb, 0xd3, 0x8a, 0x45, 0xc0, 0xf5, 0xc5, 0x0c, 0x01, 0x6e, + 0xa6, 0x8b, 0x87, 0x30, 0xe1, 0x29, 0x1d, 0xf9, 0xa7, 0x8b, 0x96, 0xfe, + 0x26, 0x3f, 0x85, 0x41, 0xb1, 0x41, 0xce, 0xfa, 0x0e, 0xd0, 0x38, 0xe6, + 0xa9, 0x49, 0x8f, 0x99, 0x93, 0x34, 0xbb, 0xba, 0x1e, 0x3d, 0xe9, 0x03, + 0xa7, 0xf1, 0x13, 0xf8, 0x55, 0x6d, 0xc3, 0x38, 0xce, 0x29, 0xdc, 0x7a, + 0xd0, 0xdb, 0x0e, 0x76, 0x39, 0xf2, 0x5b, 0x2a, 0x78, 0xa6, 0xf3, 0x49, + 0xd3, 0xf8, 0xa9, 0x17, 0x0d, 0xd5, 0x80, 0xfa, 0xd0, 0xae, 0x4d, 0xc3, + 0x1f, 0x4a, 0x4e, 0x3d, 0x28, 0x70, 0xab, 0xfc, 0x40, 0xfd, 0x2a, 0x30, + 0xea, 0xdf, 0xc4, 0x6a, 0x92, 0x6f, 0x50, 0xd4, 0x7d, 0x37, 0x22, 0x9c, + 0xa9, 0xb9, 0x7e, 0x52, 0x69, 0x19, 0x19, 0x7a, 0xd0, 0x80, 0x6e, 0x69, + 0x4c, 0x8e, 0x17, 0x1b, 0x8e, 0x29, 0x00, 0xe4, 0xe6, 0x9c, 0x14, 0x1e, + 0xe0, 0x53, 0x68, 0x15, 0xc8, 0xb7, 0x0e, 0x9c, 0x1a, 0x15, 0x8a, 0x1c, + 0xaf, 0x06, 0x9e, 0xea, 0x01, 0xe1, 0x85, 0x26, 0x39, 0xe4, 0xd1, 0x64, + 0x30, 0x79, 0x64, 0x90, 0x7c, 0xcc, 0x4f, 0xd6, 0xa2, 0xe7, 0x38, 0xa9, + 0x37, 0x0f, 0x4a, 0x5d, 0xc0, 0x8e, 0x05, 0x0b, 0x41, 0x11, 0x72, 0x29, + 0x72, 0x71, 0x8c, 0x52, 0xee, 0x39, 0xe9, 0x4a, 0x18, 0xe7, 0xa0, 0xfc, + 0xa8, 0x01, 0x84, 0x10, 0x29, 0xa7, 0x26, 0xa5, 0x7c, 0x9a, 0x8f, 0x9a, + 0x2e, 0x03, 0x55, 0x0e, 0x7a, 0x13, 0x4f, 0x72, 0x48, 0x1f, 0xbb, 0xc0, + 0x1e, 0xd4, 0x80, 0x93, 0xd0, 0xd2, 0x95, 0x6c, 0x60, 0x9e, 0x28, 0x01, + 0x04, 0x9d, 0x0e, 0xd5, 0x38, 0xf6, 0xa4, 0x62, 0xce, 0xdb, 0x82, 0x81, + 0xf8, 0x50, 0x7d, 0x05, 0x1c, 0x0f, 0xbd, 0xcd, 0x01, 0x71, 0x23, 0x9a, + 0x48, 0xf2, 0x13, 0x82, 0x6a, 0x37, 0xdc, 0x4f, 0x26, 0x9f, 0x9e, 0xe0, + 0x62, 0x9a, 0x73, 0xda, 0x9a, 0xb0, 0x11, 0x95, 0x34, 0x98, 0x3e, 0x94, + 0xfc, 0x1a, 0x5f, 0xad, 0x3b, 0x88, 0x8b, 0x06, 0x93, 0x91, 0xd6, 0xa5, + 0xc7, 0xb5, 0x21, 0x51, 0x9e, 0x94, 0xc0, 0x8b, 0xad, 0x28, 0x5d, 0xcd, + 0x8a, 0x79, 0x5e, 0xe3, 0x14, 0xa3, 0x38, 0xe9, 0xf9, 0x50, 0x02, 0xa5, + 0xb1, 0x63, 0xc3, 0x0c, 0x53, 0xa5, 0xb1, 0x96, 0x2c, 0x6e, 0x1c, 0x1e, + 0x86, 0x99, 0xd3, 0xd7, 0x34, 0xa5, 0xdd, 0xbf, 0x8d, 0x8f, 0xd4, 0xd2, + 0xb3, 0x1e, 0x83, 0x5e, 0x12, 0x84, 0x61, 0x86, 0x69, 0x98, 0x00, 0xf3, + 0x9a, 0x93, 0x0c, 0x79, 0x26, 0xa4, 0x1e, 0x51, 0x53, 0xbc, 0x36, 0xef, + 0x6a, 0x00, 0x83, 0x6a, 0x75, 0x26, 0x8f, 0x94, 0x9e, 0x3a, 0x53, 0x8e, + 0xde, 0xc0, 0xd2, 0x82, 0x17, 0xf8, 0x68, 0x10, 0xdc, 0x2e, 0x71, 0xda, + 0x9c, 0xa1, 0x17, 0x9d, 0xbb, 0xbe, 0xb4, 0x8d, 0x9c, 0xd1, 0xd0, 0x53, + 0x01, 0x85, 0x41, 0x3d, 0x28, 0x28, 0x33, 0xc0, 0x38, 0xa7, 0x00, 0x73, + 0x4a, 0x01, 0x26, 0x90, 0x11, 0x14, 0xa0, 0x47, 0xc7, 0x4a, 0x79, 0x04, + 0x1e, 0xf4, 0xa3, 0x38, 0xe9, 0x4e, 0xe0, 0x46, 0x12, 0x82, 0x8b, 0x52, + 0x8f, 0x73, 0x4a, 0x76, 0x9e, 0x94, 0x08, 0x83, 0x67, 0x3c, 0x52, 0xec, + 0x07, 0xb5, 0x48, 0x47, 0x14, 0x9c, 0xd0, 0x03, 0x76, 0x52, 0x84, 0xcf, + 0x51, 0x4e, 0xe6, 0x94, 0x31, 0xe9, 0x48, 0x63, 0x0a, 0x0a, 0x36, 0x8a, + 0x7d, 0x07, 0x34, 0x00, 0xcd, 0xa0, 0x76, 0xa7, 0x72, 0x68, 0xe6, 0x94, + 0x13, 0x4c, 0x06, 0x60, 0x8e, 0x87, 0x14, 0xbc, 0xb7, 0x5e, 0x4d, 0x3b, + 0x14, 0x72, 0x07, 0x4c, 0xd3, 0x01, 0x36, 0x7b, 0x52, 0x85, 0xc1, 0xce, + 0x71, 0x4a, 0xa1, 0x8d, 0x2f, 0x27, 0xa8, 0xa2, 0xe0, 0x26, 0x5b, 0x83, + 0xb8, 0xf1, 0x41, 0x24, 0xf2, 0x79, 0xfa, 0xd3, 0xc0, 0xa7, 0x7e, 0x14, + 0xae, 0x80, 0x8c, 0x76, 0xe9, 0x4e, 0x39, 0x63, 0x92, 0x05, 0x3c, 0x2f, + 0x71, 0x4f, 0x5f, 0x98, 0xe3, 0x14, 0x5c, 0x64, 0x40, 0x36, 0x78, 0x14, + 0xbe, 0x5b, 0xb6, 0x78, 0x06, 0xa7, 0xd9, 0x8a, 0x8d, 0xda, 0x58, 0xc6, + 0x63, 0x52, 0x4f, 0xb5, 0x20, 0x05, 0x80, 0x63, 0x0c, 0x18, 0x54, 0xe9, + 0x6b, 0x6c, 0x63, 0x25, 0xe5, 0x75, 0x6e, 0xdf, 0x2d, 0x53, 0x37, 0x77, + 0x4c, 0x70, 0x60, 0xc7, 0xb9, 0xa4, 0x13, 0x5c, 0xb1, 0xc1, 0x8c, 0x01, + 0xf5, 0xa6, 0xe1, 0x3e, 0xe3, 0xd0, 0xd0, 0xfb, 0x14, 0x25, 0x72, 0x92, + 0x83, 0xf5, 0xa8, 0x9a, 0x24, 0x53, 0xca, 0xf1, 0xec, 0x6a, 0x1f, 0xde, + 0x30, 0xf6, 0xef, 0x42, 0x92, 0xbc, 0x0c, 0x9a, 0x94, 0x9f, 0x70, 0xd0, + 0x71, 0x8c, 0x76, 0x06, 0x97, 0xcb, 0xc0, 0xe9, 0x52, 0x05, 0x63, 0xdc, + 0x53, 0xdb, 0x80, 0x06, 0x05, 0x17, 0x0b, 0x15, 0xf6, 0x52, 0x6d, 0x39, + 0xa9, 0xcf, 0x34, 0x8a, 0xbc, 0xd3, 0xb8, 0xac, 0x46, 0x11, 0xb3, 0x4b, + 0xe5, 0xb7, 0x5c, 0x71, 0x53, 0x88, 0xc9, 0xe8, 0x41, 0xa9, 0x56, 0xde, + 0x47, 0x1f, 0x2e, 0x0f, 0xb6, 0x69, 0x39, 0x0e, 0xc5, 0x4d, 0xa6, 0x9c, + 0x14, 0xfb, 0xd5, 0x93, 0x6f, 0x2a, 0x75, 0x4c, 0x0a, 0x40, 0x8d, 0xda, + 0x97, 0x32, 0x0b, 0x10, 0x6d, 0x39, 0xef, 0x4e, 0x08, 0x71, 0x53, 0x98, + 0x9f, 0xae, 0x29, 0xe9, 0x69, 0x2b, 0xf3, 0xb4, 0xd1, 0xcc, 0x82, 0xc5, + 0x5d, 0x87, 0xd6, 0x9c, 0x03, 0x28, 0x3c, 0xd5, 0xb5, 0xb5, 0x72, 0xf8, + 0x2b, 0x8f, 0xad, 0x5c, 0x5d, 0x31, 0x4c, 0x79, 0x2d, 0x83, 0x8a, 0x5c, + 0xe8, 0x2c, 0x74, 0x31, 0x5c, 0x2b, 0xa8, 0x3e, 0x5a, 0x8c, 0xfa, 0x1a, + 0x8a, 0x74, 0x49, 0x01, 0xe0, 0x8e, 0x2a, 0xf4, 0x56, 0xd6, 0xcd, 0x8f, + 0x97, 0x03, 0x14, 0xfb, 0x88, 0x21, 0x5e, 0x30, 0x40, 0xc7, 0x5a, 0xe2, + 0x4f, 0x5d, 0x0e, 0x8b, 0x1c, 0xf9, 0xb4, 0x3b, 0xb7, 0x2f, 0x6f, 0x7a, + 0x61, 0x8e, 0x53, 0xd2, 0x45, 0xc8, 0xf5, 0x15, 0x76, 0xe4, 0xc3, 0x1b, + 0x70, 0x64, 0x3f, 0x4a, 0xa7, 0x2d, 0xd4, 0x21, 0x08, 0xf9, 0xce, 0x3b, + 0x93, 0x5a, 0xa6, 0xd9, 0x9b, 0x56, 0x18, 0x65, 0x91, 0x3f, 0xe5, 0xb0, + 0x27, 0xda, 0x94, 0x5f, 0xcc, 0xa3, 0x0c, 0xe7, 0x1e, 0xb5, 0x9f, 0x2c, + 0xde, 0x71, 0x1e, 0x5a, 0xfd, 0x69, 0xbe, 0x4c, 0x9f, 0x7b, 0x69, 0xcd, + 0x69, 0xc8, 0xba, 0x91, 0x73, 0x47, 0xed, 0xc8, 0xcc, 0x09, 0x79, 0x08, + 0xf4, 0x15, 0x2a, 0xea, 0x16, 0xe3, 0x8f, 0xde, 0xe6, 0xb2, 0x3c, 0xf0, + 0x98, 0x0c, 0xa3, 0xf1, 0xa6, 0x9b, 0x82, 0x73, 0x82, 0xb8, 0xa7, 0xec, + 0xd3, 0x17, 0x31, 0xb2, 0xda, 0x8b, 0x0f, 0xf5, 0x7b, 0x80, 0xff, 0x00, + 0x7a, 0xa3, 0x17, 0xfb, 0xc9, 0xdc, 0x18, 0xfe, 0x35, 0x92, 0x26, 0x6c, + 0x9e, 0x69, 0xdf, 0x69, 0x75, 0x23, 0x1c, 0x7d, 0x29, 0xfb, 0x30, 0xe6, + 0x34, 0xde, 0x58, 0xdc, 0x03, 0x86, 0x1f, 0x53, 0x51, 0x03, 0x82, 0x48, + 0x1b, 0x7d, 0xc9, 0xaa, 0x26, 0xfa, 0x53, 0xc6, 0xf1, 0xf5, 0xc5, 0x31, + 0xa6, 0x91, 0xba, 0x9a, 0x39, 0x02, 0xe5, 0xfd, 0xc3, 0xf8, 0xa5, 0xc0, + 0xfa, 0xd3, 0xcc, 0x96, 0xca, 0x3e, 0x66, 0x67, 0xfc, 0x6b, 0x37, 0x71, + 0x03, 0x24, 0x8a, 0x04, 0xc0, 0x71, 0x8d, 0xd4, 0x72, 0x07, 0x31, 0x7f, + 0xce, 0xb7, 0x75, 0xe2, 0x0c, 0x01, 0xde, 0xa1, 0x91, 0xe1, 0xfe, 0x14, + 0x23, 0xdc, 0xd5, 0x61, 0x31, 0x6e, 0x07, 0x14, 0xa5, 0x1d, 0x87, 0x23, + 0x8f, 0xad, 0x35, 0x14, 0x82, 0xe2, 0x31, 0x5c, 0xf1, 0xd2, 0x80, 0xbd, + 0xf3, 0x49, 0xb7, 0x68, 0xc1, 0xa4, 0x39, 0xed, 0x55, 0x64, 0x48, 0xb8, + 0xcf, 0xa5, 0x28, 0x00, 0x0e, 0xd4, 0xcd, 0xd8, 0x1c, 0xe6, 0x93, 0x7f, + 0x04, 0x51, 0x60, 0x1f, 0xb0, 0xf5, 0x00, 0x7e, 0x14, 0x99, 0x6e, 0x9d, + 0x29, 0xa5, 0xc8, 0xe0, 0x13, 0x49, 0x9a, 0x76, 0x11, 0x28, 0x62, 0x3b, + 0x93, 0x4e, 0xcf, 0xd3, 0x15, 0x08, 0x62, 0x3a, 0xd2, 0x9c, 0x7e, 0x14, + 0x01, 0x21, 0x61, 0x8c, 0x8e, 0x29, 0x0b, 0xfb, 0xd3, 0x43, 0x2e, 0x31, + 0x41, 0x20, 0x9c, 0x63, 0x8a, 0x40, 0x2e, 0xec, 0x52, 0x87, 0x52, 0xb4, + 0xdc, 0xfe, 0x34, 0x05, 0x18, 0xf4, 0x14, 0x00, 0xa5, 0x81, 0xa5, 0x12, + 0x71, 0x8c, 0xf1, 0x51, 0x91, 0xef, 0xf9, 0x52, 0xe3, 0x03, 0x96, 0xc0, + 0xa0, 0x07, 0xef, 0xcf, 0x19, 0xa3, 0x7f, 0xad, 0x46, 0xd8, 0x56, 0xf9, + 0x79, 0x1e, 0xb8, 0xa8, 0xdf, 0x73, 0x1f, 0x95, 0xb1, 0x4d, 0x2b, 0x8d, + 0x16, 0x37, 0x64, 0xf5, 0xa3, 0xa7, 0x26, 0xa0, 0xc1, 0x00, 0x0d, 0xd8, + 0xa7, 0x01, 0x81, 0x43, 0x0b, 0x92, 0x87, 0xf4, 0xa5, 0xc1, 0xea, 0x4f, + 0xeb, 0x51, 0x00, 0x5b, 0x8e, 0x45, 0x48, 0xb0, 0xc8, 0xc7, 0x81, 0xfa, + 0xd2, 0x60, 0x80, 0x95, 0x14, 0xd0, 0xc0, 0xb7, 0xdd, 0x26, 0x9e, 0xd0, + 0x3c, 0x63, 0xe6, 0x5a, 0x7d, 0xb8, 0x4d, 0xf8, 0x6e, 0x33, 0xde, 0x87, + 0xb5, 0xc6, 0x0c, 0xb1, 0x95, 0xc8, 0xc8, 0x35, 0x5f, 0x96, 0x6c, 0x6f, + 0xc1, 0xad, 0x69, 0x2c, 0xf7, 0x47, 0xb9, 0x64, 0x56, 0x5f, 0xad, 0x67, + 0xbb, 0x47, 0x0b, 0x9e, 0x7f, 0x02, 0x2b, 0x34, 0xc6, 0xd5, 0xb7, 0x15, + 0x10, 0x60, 0x16, 0x70, 0x4f, 0xa5, 0x5f, 0x54, 0x46, 0x87, 0x0b, 0x10, + 0x3e, 0xfb, 0xab, 0x3f, 0xed, 0x10, 0x3f, 0xf0, 0x60, 0xfb, 0x53, 0x95, + 0xc6, 0xd3, 0xb6, 0x4c, 0x1e, 0xc2, 0x86, 0x9f, 0x50, 0x4c, 0x74, 0xd1, + 0x38, 0xe8, 0xbb, 0x7e, 0x95, 0x0a, 0xaf, 0x23, 0x79, 0x34, 0xa8, 0xee, + 0xcf, 0x87, 0x73, 0x8a, 0xb9, 0xf6, 0x48, 0x59, 0x73, 0xe6, 0x8c, 0xfa, + 0x52, 0xbd, 0xb4, 0x11, 0x12, 0x1b, 0x40, 0x39, 0x19, 0x3f, 0x5a, 0xb0, + 0x91, 0xda, 0xcc, 0x47, 0xc8, 0x45, 0x51, 0x92, 0xd4, 0x6f, 0xf9, 0x58, + 0x55, 0xab, 0x7b, 0x49, 0x94, 0x7e, 0xed, 0x81, 0x3f, 0x5a, 0x89, 0x0d, + 0x17, 0x7f, 0xb2, 0x22, 0x71, 0xf2, 0x31, 0xfc, 0xaa, 0x07, 0xd3, 0x16, + 0x1c, 0x97, 0x39, 0x1e, 0x99, 0xab, 0x22, 0x4d, 0x46, 0x04, 0xda, 0xaa, + 0x08, 0xf6, 0xef, 0x54, 0xe6, 0x9e, 0xe6, 0x42, 0x7c, 0xc4, 0xe6, 0xa2, + 0x2e, 0x5d, 0xc7, 0x64, 0x33, 0x16, 0x84, 0xe0, 0xc6, 0x47, 0xe3, 0x53, + 0x47, 0x69, 0x65, 0x28, 0xfb, 0xdb, 0x7f, 0x0a, 0xcf, 0x7b, 0x79, 0x58, + 0x7a, 0x66, 0x9f, 0x0b, 0x4d, 0x17, 0x01, 0x97, 0xf3, 0xaa, 0x6b, 0xb3, + 0x04, 0xfb, 0x97, 0xc6, 0x91, 0x0c, 0xdf, 0xea, 0xe5, 0x19, 0xfa, 0x55, + 0x4b, 0x8d, 0x34, 0xc1, 0x90, 0x5f, 0xe8, 0x45, 0x5c, 0x87, 0xed, 0xae, + 0xbf, 0xb9, 0x31, 0x8f, 0xa1, 0xa8, 0xae, 0xad, 0xb5, 0x20, 0x0f, 0x9a, + 0x38, 0x3c, 0xfc, 0xa7, 0x35, 0x29, 0xb4, 0xfe, 0x22, 0x9a, 0x5d, 0x11, + 0x92, 0xdf, 0x29, 0xc6, 0xec, 0xfe, 0x15, 0x1b, 0x0c, 0xf4, 0xfe, 0x55, + 0x2b, 0xa3, 0x23, 0xe1, 0xd1, 0xb3, 0xef, 0x50, 0xb3, 0x61, 0xb8, 0x27, + 0x1e, 0x95, 0xd1, 0x13, 0x3b, 0x09, 0xb0, 0x9c, 0x74, 0xa0, 0x46, 0x41, + 0xc8, 0x5e, 0x69, 0x7c, 0xde, 0x3e, 0xee, 0x29, 0xbe, 0x73, 0x86, 0xef, + 0x56, 0x9c, 0x80, 0x90, 0xa4, 0x80, 0x71, 0xc5, 0x34, 0xa3, 0xe0, 0x12, + 0x7f, 0x5a, 0x69, 0x91, 0xf9, 0x2c, 0x73, 0x49, 0x92, 0xd8, 0x19, 0xa6, + 0xae, 0x00, 0xd9, 0xe9, 0x41, 0x04, 0x76, 0xa4, 0x3c, 0x52, 0x67, 0x9e, + 0xe6, 0x98, 0x01, 0x20, 0x0e, 0xd4, 0xd5, 0x6c, 0xf6, 0xa7, 0xaa, 0x06, + 0xea, 0x47, 0xe5, 0x4d, 0xd8, 0x47, 0x71, 0xf8, 0x50, 0x02, 0xff, 0x00, + 0x2a, 0x43, 0xf4, 0xa7, 0x7e, 0x74, 0x87, 0xa1, 0xe7, 0x34, 0x90, 0x07, + 0xae, 0x4f, 0xe9, 0x42, 0x91, 0xeb, 0x48, 0x46, 0x06, 0x69, 0x01, 0xc7, + 0x6a, 0x42, 0x24, 0x3b, 0x71, 0xd6, 0xa2, 0xe0, 0x1a, 0x77, 0x06, 0x90, + 0xae, 0x39, 0xa5, 0xb0, 0xc6, 0x93, 0x46, 0x4d, 0x21, 0x3e, 0xd4, 0x67, + 0x9a, 0x00, 0x53, 0x9e, 0xc2, 0x9a, 0x41, 0x3d, 0x71, 0x52, 0xae, 0x3a, + 0x9e, 0x28, 0xca, 0xff, 0x00, 0x74, 0x1a, 0x2e, 0x04, 0x5d, 0x3a, 0x52, + 0x1e, 0x94, 0xe7, 0xe4, 0x70, 0x31, 0x4d, 0xc1, 0xa6, 0x84, 0x1c, 0x63, + 0x9a, 0x30, 0x07, 0x34, 0xe5, 0x55, 0x3d, 0x6a, 0xdc, 0x4f, 0x66, 0x8b, + 0xf3, 0x8c, 0x9a, 0x87, 0x2b, 0x14, 0x95, 0xca, 0x23, 0x1d, 0xb3, 0x48, + 0x4f, 0x1e, 0xb5, 0x62, 0x69, 0x2d, 0xdb, 0x26, 0x35, 0x39, 0xaa, 0xfc, + 0xd5, 0x27, 0x7d, 0x44, 0x07, 0x27, 0x14, 0xb8, 0xfc, 0xe9, 0x06, 0x48, + 0xc5, 0x3b, 0x6f, 0xd4, 0x9a, 0x77, 0x18, 0xd6, 0x51, 0x8e, 0x94, 0xc3, + 0x80, 0x3a, 0x1a, 0x94, 0xab, 0x9f, 0xe1, 0xe2, 0x94, 0x32, 0xa0, 0xe5, + 0x79, 0xa3, 0x98, 0x2c, 0x40, 0x39, 0x14, 0x67, 0x34, 0xf2, 0xd9, 0xe7, + 0xfa, 0x54, 0x2e, 0x5c, 0xae, 0x54, 0x00, 0x7e, 0x95, 0x6b, 0x51, 0x0f, + 0xc6, 0x78, 0xcd, 0x3b, 0xb7, 0xf5, 0xa8, 0x51, 0x5f, 0x19, 0x2d, 0xcf, + 0xd2, 0xa5, 0x51, 0xc7, 0x5c, 0xd0, 0xf4, 0x0b, 0x06, 0x7d, 0x28, 0xc5, + 0x28, 0x1d, 0xf1, 0x4b, 0xf8, 0x52, 0xb8, 0xac, 0x27, 0x5e, 0x31, 0xcd, + 0x1b, 0x68, 0x22, 0x8c, 0x8a, 0x2e, 0x16, 0x13, 0x6f, 0x34, 0xbb, 0x38, + 0xe6, 0x94, 0x0e, 0xfd, 0x29, 0x7b, 0x50, 0x16, 0x23, 0xda, 0x41, 0xe9, + 0x46, 0x09, 0xf6, 0xa9, 0x17, 0x1d, 0x79, 0xa4, 0xc6, 0x49, 0x39, 0xa2, + 0xe1, 0x61, 0x80, 0x7a, 0xd2, 0x81, 0x4b, 0xb4, 0x93, 0xed, 0x4e, 0x00, + 0x7a, 0xf3, 0x45, 0xc0, 0x69, 0x5f, 0xca, 0x97, 0xb7, 0xad, 0x2f, 0x27, + 0xf8, 0xa8, 0x1f, 0x5e, 0x29, 0x00, 0xcf, 0xa0, 0xa0, 0x29, 0x22, 0xa5, + 0x07, 0xae, 0x00, 0xa6, 0xe3, 0x1d, 0x68, 0xd0, 0x08, 0xf0, 0x73, 0xc5, + 0x28, 0x56, 0x34, 0xe0, 0x06, 0x7a, 0xf3, 0xed, 0x4e, 0xe4, 0x53, 0xb8, + 0x58, 0x68, 0x1e, 0xb4, 0x70, 0x0f, 0x26, 0x97, 0x6e, 0x7b, 0xd2, 0x85, + 0xa0, 0x06, 0x6e, 0xf4, 0x34, 0xa3, 0x14, 0xa5, 0x31, 0x49, 0xb5, 0x81, + 0xe4, 0xf1, 0x40, 0x0e, 0xe3, 0xb0, 0xcd, 0x28, 0xfa, 0x52, 0x00, 0x7b, + 0x0a, 0x78, 0x07, 0x8c, 0x50, 0x31, 0x01, 0xc5, 0x39, 0x5b, 0xd0, 0xd2, + 0x60, 0xe7, 0xad, 0x34, 0xa1, 0x23, 0x86, 0xc5, 0x08, 0x09, 0x95, 0xd9, + 0x7b, 0xf1, 0x4e, 0x32, 0xb1, 0x03, 0xa1, 0x15, 0x0a, 0x70, 0x30, 0x4e, + 0x71, 0x4f, 0xdd, 0x91, 0xc7, 0x4a, 0x2c, 0x82, 0xe3, 0xcb, 0x0e, 0xac, + 0x07, 0xe1, 0x4f, 0xf3, 0x21, 0x64, 0xfb, 0xbf, 0x88, 0xa8, 0x43, 0x0a, + 0x69, 0xeb, 0xd2, 0x97, 0x2d, 0xc7, 0x72, 0xc9, 0xf2, 0x88, 0x05, 0x58, + 0x9f, 0x50, 0x69, 0x8c, 0x17, 0xd3, 0x15, 0x1a, 0x8c, 0x0c, 0xf3, 0x4a, + 0x5b, 0x02, 0x8b, 0x00, 0xf5, 0x0b, 0xea, 0x69, 0xe0, 0x2f, 0x76, 0xc5, + 0x42, 0x1f, 0x1d, 0x85, 0x38, 0xb8, 0xe8, 0x7f, 0x0a, 0x4c, 0x07, 0xb9, + 0x5c, 0xf0, 0x49, 0x14, 0x99, 0xf6, 0xa6, 0x67, 0x9e, 0x4d, 0x1b, 0x8e, + 0x40, 0x27, 0x8a, 0x00, 0x94, 0x12, 0x28, 0xdc, 0xd9, 0xc8, 0x38, 0xfa, + 0x53, 0x46, 0x7d, 0x6a, 0x40, 0x17, 0x38, 0x27, 0x14, 0x9b, 0x00, 0x57, + 0x72, 0x71, 0x92, 0x6a, 0x64, 0xc8, 0x23, 0x3c, 0x1a, 0x45, 0x88, 0x71, + 0x86, 0x15, 0x34, 0x76, 0x6d, 0x29, 0xc0, 0x6f, 0xd2, 0xa1, 0xb5, 0xd4, + 0xa4, 0x8d, 0x3b, 0x59, 0x6d, 0x44, 0x60, 0x4c, 0x88, 0xd9, 0xab, 0x1b, + 0x2c, 0x39, 0x75, 0xda, 0x08, 0xe4, 0x28, 0x35, 0x9c, 0x74, 0xb7, 0x8d, + 0x41, 0x24, 0xd3, 0xa3, 0x85, 0xa3, 0xf9, 0x84, 0x61, 0xc0, 0xeb, 0x58, + 0xb4, 0xb7, 0x4c, 0xb2, 0xff, 0x00, 0xf6, 0x9c, 0x71, 0x91, 0xfb, 0xbc, + 0xe3, 0xd4, 0x54, 0xc9, 0xab, 0x2b, 0x0e, 0x20, 0x5c, 0x1a, 0xae, 0x97, + 0x76, 0xad, 0x80, 0x60, 0x39, 0x1d, 0xaa, 0xcc, 0x32, 0x5a, 0x4b, 0x9c, + 0xdb, 0xed, 0x3f, 0x4a, 0x4d, 0x2e, 0xc0, 0x66, 0xa6, 0xbe, 0xe0, 0xe5, + 0x57, 0x07, 0x14, 0xa7, 0x5f, 0x9e, 0x45, 0x23, 0x78, 0x03, 0xd3, 0x15, + 0x8a, 0x19, 0x48, 0xc2, 0xf5, 0xa3, 0x60, 0x07, 0x24, 0xe3, 0xf1, 0xae, + 0x87, 0x08, 0x19, 0xf3, 0x33, 0x4d, 0xf5, 0x07, 0x75, 0xe1, 0xbf, 0x21, + 0x54, 0xe4, 0xb8, 0x24, 0x72, 0x73, 0x50, 0x82, 0x08, 0xc2, 0x92, 0x71, + 0xe9, 0x40, 0xc7, 0x73, 0x8a, 0xa4, 0xa2, 0x84, 0xe4, 0xc7, 0xa4, 0xa8, + 0xbc, 0x8c, 0xe6, 0x9c, 0xd7, 0x92, 0x11, 0x8f, 0x9b, 0x1e, 0x95, 0x01, + 0x5c, 0x37, 0x23, 0x8a, 0x42, 0xe1, 0x7e, 0xb4, 0xec, 0x98, 0x85, 0x92, + 0x50, 0xe7, 0x38, 0x3c, 0xfb, 0xd3, 0x59, 0xb6, 0x80, 0x47, 0x23, 0xd2, + 0x86, 0x39, 0x39, 0x24, 0x52, 0x8e, 0x7f, 0x87, 0xf1, 0xa6, 0x21, 0x03, + 0x06, 0x3c, 0x66, 0x94, 0x0c, 0x0a, 0x53, 0xf2, 0x03, 0xd0, 0x66, 0x9b, + 0x9c, 0x72, 0x7b, 0xf6, 0xa0, 0x07, 0x87, 0x1b, 0x70, 0x3f, 0x4a, 0x4d, + 0xe3, 0xee, 0xed, 0xe6, 0x9a, 0x92, 0x0c, 0x93, 0xd0, 0x7d, 0x29, 0xcc, + 0xc0, 0xe0, 0x8a, 0x00, 0x78, 0x39, 0xe1, 0x81, 0xa5, 0xe0, 0x1e, 0x2a, + 0x30, 0x38, 0xe3, 0x34, 0x81, 0x87, 0xd0, 0xfd, 0x29, 0x5c, 0x09, 0x41, + 0x00, 0xf7, 0x04, 0xd3, 0x81, 0x72, 0x71, 0x9c, 0x0f, 0x7a, 0x88, 0x1e, + 0xf9, 0xe6, 0x9b, 0x96, 0x24, 0x9c, 0x9a, 0x00, 0x9f, 0x7f, 0x04, 0x1a, + 0x8d, 0xa4, 0xdd, 0x90, 0x3b, 0x54, 0x45, 0x9c, 0x8c, 0x1e, 0x94, 0xd1, + 0xf7, 0x6a, 0xac, 0x03, 0xf3, 0x83, 0x9c, 0xd3, 0xb2, 0x09, 0x18, 0x35, + 0x10, 0x41, 0x9c, 0x82, 0x69, 0x5c, 0x01, 0x9c, 0xf1, 0x4c, 0x44, 0xa1, + 0xbb, 0x03, 0x9a, 0x06, 0x41, 0xe9, 0x9a, 0x8c, 0x72, 0x78, 0x3f, 0x9d, + 0x34, 0x3b, 0xa9, 0xe9, 0xc5, 0x2b, 0x01, 0x60, 0xb8, 0x51, 0xc8, 0xa6, + 0x89, 0x09, 0x6c, 0x0e, 0x3d, 0xea, 0x17, 0x60, 0x08, 0xe7, 0xad, 0x3c, + 0x30, 0x07, 0xbe, 0x3d, 0xe8, 0xb0, 0x16, 0x0c, 0x80, 0x0c, 0x11, 0x9a, + 0x66, 0xf0, 0x3b, 0x1c, 0x54, 0x64, 0x82, 0x7a, 0x7e, 0x54, 0xbb, 0xb2, + 0x38, 0xa5, 0x60, 0x1c, 0x18, 0x31, 0xf9, 0x73, 0xd6, 0x86, 0x04, 0x1e, + 0x5b, 0x8a, 0x60, 0xcf, 0xd3, 0x9a, 0x46, 0x70, 0x3b, 0xf3, 0x4e, 0xc2, + 0x24, 0xe3, 0x38, 0xdd, 0xc5, 0x38, 0x37, 0xe5, 0x50, 0xee, 0x07, 0xb5, + 0x06, 0x5c, 0x02, 0x30, 0x7e, 0x94, 0x58, 0x64, 0xae, 0xe0, 0x0e, 0x00, + 0xa4, 0x0e, 0xbe, 0x95, 0x10, 0x3b, 0xc6, 0x47, 0x02, 0x82, 0xc0, 0x74, + 0x39, 0x34, 0x9e, 0x82, 0x26, 0x52, 0x99, 0x14, 0xff, 0x00, 0x93, 0x39, + 0xa8, 0x03, 0xaf, 0xad, 0x29, 0xe4, 0x75, 0xc0, 0xa3, 0x51, 0x92, 0x92, + 0x33, 0xc1, 0xfc, 0x2a, 0x45, 0x59, 0x14, 0x65, 0x78, 0x15, 0x4f, 0x9e, + 0xbc, 0xd4, 0xc8, 0xf2, 0x3a, 0xe0, 0x13, 0x9a, 0x4d, 0x0d, 0x16, 0xb1, + 0x2b, 0x2f, 0x26, 0xa2, 0x30, 0x39, 0x3c, 0x1c, 0xd2, 0x66, 0x74, 0xf9, + 0x81, 0x26, 0x94, 0x5c, 0xb0, 0x3f, 0xbc, 0xe3, 0xe9, 0x53, 0x76, 0xb6, + 0x1e, 0x84, 0x65, 0x26, 0x88, 0xf0, 0x48, 0x15, 0x1c, 0x8c, 0xc4, 0x7c, + 0xc7, 0xe6, 0xab, 0x52, 0xdd, 0x23, 0x27, 0x5a, 0x80, 0xe2, 0x4e, 0x40, + 0xe6, 0x84, 0xee, 0x26, 0x42, 0xb1, 0x9d, 0xbb, 0xb3, 0x4e, 0x03, 0x23, + 0x19, 0x39, 0xab, 0x90, 0x44, 0x32, 0x37, 0x82, 0x45, 0x17, 0x11, 0x46, + 0xad, 0xf2, 0x10, 0x29, 0xdc, 0x56, 0x2a, 0xaa, 0xe0, 0x72, 0x4d, 0x2e, + 0xe6, 0xce, 0x14, 0x92, 0x29, 0x37, 0x02, 0x70, 0x4e, 0x71, 0x4f, 0x48, + 0xc6, 0x7a, 0x9c, 0x1a, 0x18, 0xc7, 0xac, 0x13, 0x38, 0x04, 0x26, 0x41, + 0xf7, 0xa7, 0x6f, 0x9e, 0x1e, 0x41, 0x2a, 0x6a, 0xd4, 0x4d, 0xb0, 0x05, + 0x06, 0xa7, 0x65, 0x0e, 0xbc, 0x91, 0xf5, 0xac, 0x5c, 0x87, 0x62, 0x90, + 0xd4, 0xee, 0x80, 0xc1, 0x94, 0xf1, 0x50, 0xc9, 0x74, 0xf2, 0x75, 0x72, + 0x49, 0xef, 0x52, 0x5c, 0x46, 0xbb, 0x8e, 0x06, 0x2a, 0xa9, 0x5d, 0xb5, + 0x51, 0x8c, 0x47, 0xa8, 0x09, 0xa4, 0x5e, 0x37, 0x93, 0x4c, 0x76, 0x63, + 0xde, 0x97, 0x3c, 0xf1, 0x48, 0x48, 0xce, 0x31, 0x57, 0xb0, 0x86, 0x09, + 0xe5, 0x8c, 0x8d, 0x92, 0x30, 0xfa, 0x1a, 0xb0, 0x2f, 0xee, 0x88, 0xc7, + 0x9c, 0xd8, 0xf4, 0x26, 0xa2, 0x2a, 0x9f, 0x8d, 0x27, 0x03, 0xa0, 0xa3, + 0x47, 0xba, 0x1a, 0x76, 0x15, 0xee, 0x25, 0x27, 0xe6, 0x72, 0x6a, 0x3f, + 0x33, 0x27, 0x91, 0x4e, 0x23, 0xd4, 0x0a, 0x85, 0x8b, 0x67, 0xb6, 0x2a, + 0x95, 0x85, 0x72, 0x41, 0x9e, 0xa3, 0x18, 0xf4, 0xa3, 0x23, 0xa0, 0xa6, + 0x03, 0xb8, 0x64, 0x1c, 0x53, 0x78, 0xe7, 0x9c, 0x11, 0x4d, 0x0a, 0xe3, + 0xcb, 0x60, 0xe3, 0x9a, 0x55, 0x3f, 0x95, 0x31, 0x4e, 0x4f, 0x5c, 0xd3, + 0xb7, 0x00, 0x31, 0xde, 0x81, 0xdc, 0x77, 0x5a, 0x33, 0x8c, 0xe0, 0xd4, + 0x78, 0xc8, 0xc8, 0x34, 0xa1, 0x48, 0xa0, 0x04, 0x0d, 0x9e, 0xa2, 0x9c, + 0x0a, 0xf7, 0xe2, 0x9a, 0x40, 0xf5, 0xa4, 0xe3, 0x34, 0x5c, 0x07, 0x99, + 0x17, 0x9e, 0x94, 0xdf, 0x31, 0x4f, 0x4a, 0x8d, 0xa2, 0x46, 0x7c, 0x90, + 0x7f, 0x3a, 0x70, 0x5c, 0x71, 0x8e, 0x28, 0x01, 0x0b, 0x02, 0x7b, 0xd3, + 0xc7, 0x14, 0xcc, 0x63, 0xb5, 0x28, 0x1c, 0xf0, 0x69, 0x08, 0x93, 0x38, + 0xf4, 0xa4, 0xdd, 0xc5, 0x28, 0x39, 0xef, 0x9a, 0x0e, 0x3f, 0x0a, 0x96, + 0x86, 0x34, 0x9c, 0x76, 0xa6, 0x0f, 0x5a, 0x56, 0x1e, 0xf4, 0xdc, 0xe7, + 0xb5, 0x52, 0x00, 0x3d, 0x69, 0x43, 0x10, 0xbd, 0x29, 0x0f, 0x4a, 0x14, + 0xb7, 0xd4, 0x50, 0x03, 0x83, 0x03, 0x41, 0xc1, 0x14, 0xdc, 0x92, 0x78, + 0x3f, 0x9d, 0x23, 0x6e, 0x53, 0xd8, 0x8a, 0x2c, 0x00, 0x71, 0xeb, 0x49, + 0xb0, 0x67, 0x20, 0xd2, 0x71, 0x9c, 0xf6, 0x34, 0x86, 0x3c, 0x93, 0x86, + 0x6a, 0x00, 0x70, 0x5d, 0xcf, 0xc0, 0xa9, 0x56, 0x21, 0x9c, 0x33, 0x0a, + 0xa7, 0xfb, 0xc8, 0x9b, 0x76, 0xe2, 0x47, 0xa7, 0x7a, 0x70, 0xb9, 0x57, + 0x6e, 0x43, 0x66, 0x9b, 0x8b, 0x1a, 0x6b, 0xa9, 0x75, 0x6d, 0xd9, 0xb9, + 0x50, 0x0d, 0x23, 0x83, 0x17, 0x07, 0x19, 0xa8, 0x85, 0xe3, 0xf4, 0x5c, + 0x0a, 0x8d, 0xa5, 0x2e, 0x7e, 0x63, 0xcd, 0x42, 0x8c, 0xaf, 0xa8, 0x5d, + 0x12, 0x99, 0xb0, 0x7d, 0x6a, 0x26, 0x77, 0x63, 0xcd, 0x34, 0x12, 0x29, + 0xd9, 0xc8, 0xc6, 0x71, 0xf5, 0xab, 0xb2, 0x41, 0x71, 0xa0, 0x12, 0x79, + 0xa5, 0x03, 0x23, 0x8a, 0x5c, 0x85, 0x20, 0x75, 0xa7, 0x02, 0x3a, 0x01, + 0x45, 0xc4, 0x33, 0x1e, 0xb4, 0x15, 0xe2, 0x9c, 0xca, 0x73, 0xd6, 0x8d, + 0x9b, 0x06, 0x49, 0xc9, 0xa0, 0x06, 0x06, 0xed, 0x9a, 0x5c, 0xd3, 0xc0, + 0xdf, 0xda, 0x82, 0x31, 0xeb, 0x40, 0x09, 0xb4, 0x63, 0xef, 0x62, 0x99, + 0xf3, 0x67, 0x93, 0xf9, 0x0a, 0x93, 0x01, 0xba, 0x62, 0x9b, 0xf7, 0x4e, + 0x3b, 0xd2, 0x01, 0xa5, 0xb1, 0x4b, 0x92, 0x31, 0x8a, 0x43, 0x9c, 0xf4, + 0xfc, 0x69, 0x40, 0xcf, 0x6c, 0xd3, 0xb8, 0x0a, 0x31, 0xd6, 0x82, 0x47, + 0xff, 0x00, 0x5a, 0x97, 0x1c, 0x74, 0x14, 0x81, 0x41, 0xeb, 0xc5, 0x09, + 0x85, 0x84, 0xeb, 0x40, 0x4f, 0x9b, 0xa9, 0xa7, 0x6c, 0xf5, 0xfc, 0x28, + 0xc7, 0xcd, 0xd0, 0x9a, 0x00, 0x40, 0xb4, 0x60, 0xfa, 0x52, 0x82, 0x69, + 0xfb, 0x46, 0xdc, 0xe6, 0x90, 0x0c, 0x18, 0x23, 0x1d, 0x28, 0x09, 0xcf, + 0xf8, 0xd3, 0xb0, 0x01, 0xeb, 0x9a, 0x50, 0xc7, 0xb6, 0x3f, 0x13, 0x4f, + 0x50, 0x10, 0x47, 0xb7, 0x27, 0xad, 0x23, 0x64, 0x76, 0x14, 0xa6, 0x5e, + 0x71, 0xfc, 0xa8, 0x07, 0x26, 0x97, 0xa8, 0x10, 0x0b, 0x9c, 0xbe, 0xc1, + 0x13, 0x67, 0xe9, 0x56, 0x47, 0x4e, 0x69, 0xa7, 0x20, 0xf5, 0xc5, 0x3b, + 0xf8, 0x69, 0xbb, 0x3d, 0x80, 0x32, 0x01, 0xe2, 0x97, 0x39, 0x1d, 0x31, + 0x4d, 0xc0, 0xed, 0xfc, 0xa8, 0x00, 0xe6, 0x90, 0x0e, 0x20, 0xe2, 0x81, + 0xf5, 0xe2, 0x9b, 0xdf, 0x07, 0x26, 0x95, 0x49, 0x5f, 0x4a, 0x76, 0x18, + 0xec, 0x0f, 0x5a, 0x06, 0x07, 0x02, 0x90, 0xc9, 0xc8, 0x07, 0x34, 0x00, + 0x3b, 0x1a, 0x76, 0xb0, 0x0b, 0x8e, 0x33, 0x49, 0x9e, 0x3a, 0x71, 0x49, + 0xdf, 0x83, 0xf9, 0xd2, 0xf4, 0xf5, 0xa0, 0x56, 0x0c, 0xa8, 0x1d, 0x0e, + 0x68, 0xe4, 0x9a, 0x4f, 0x9c, 0xf4, 0x3f, 0x9d, 0x04, 0x9f, 0x41, 0x40, + 0x87, 0xef, 0xc2, 0xf4, 0xa3, 0x23, 0xe9, 0x4d, 0x24, 0xd0, 0x39, 0x3d, + 0x69, 0x58, 0x77, 0x02, 0x0f, 0x6a, 0x02, 0x1c, 0xe6, 0x9d, 0x82, 0x7a, + 0x9a, 0x78, 0xfb, 0xb4, 0x80, 0x62, 0x83, 0x92, 0x08, 0xc8, 0xa7, 0x79, + 0x63, 0x07, 0x04, 0x66, 0x80, 0x71, 0x4e, 0x18, 0xf5, 0xa2, 0xe0, 0x20, + 0x1e, 0xf8, 0xc5, 0x23, 0x6e, 0x04, 0x90, 0x33, 0xf4, 0x34, 0x12, 0x47, + 0x3d, 0x69, 0xa1, 0xce, 0x7b, 0x50, 0x32, 0xca, 0x6e, 0x61, 0xc9, 0xc5, + 0x5d, 0x80, 0xb2, 0xf3, 0xe6, 0x11, 0xdb, 0x8a, 0xc9, 0x76, 0x38, 0xe0, + 0x50, 0x92, 0x4a, 0xa3, 0x70, 0x24, 0x54, 0x38, 0x5c, 0x69, 0xd8, 0xea, + 0xed, 0xbc, 0xc6, 0x50, 0x03, 0xee, 0xfa, 0xd4, 0xd3, 0x49, 0xe5, 0x21, + 0x38, 0x00, 0x74, 0x3e, 0xf5, 0xca, 0x0b, 0xcb, 0x9c, 0x00, 0x24, 0x3f, + 0x85, 0x4c, 0xb7, 0xb7, 0x05, 0x36, 0x34, 0x84, 0xaf, 0xa1, 0xac, 0xfd, + 0x8b, 0x2f, 0x9d, 0x1a, 0x0d, 0x7c, 0x43, 0x37, 0xee, 0x90, 0x8e, 0xc6, + 0x9d, 0x1e, 0xa8, 0x63, 0x5e, 0x63, 0x5d, 0xd8, 0xac, 0xbf, 0x30, 0xbb, + 0x64, 0xe0, 0xfd, 0x29, 0x49, 0x00, 0x7d, 0xe3, 0x5a, 0x28, 0x22, 0x79, + 0x98, 0xd5, 0x23, 0x1e, 0x94, 0x32, 0x1c, 0xe4, 0x90, 0x69, 0x42, 0x81, + 0x18, 0xf5, 0xa5, 0x52, 0xa4, 0xe3, 0xbd, 0x5d, 0xc9, 0x11, 0x55, 0x80, + 0xe1, 0x97, 0x9a, 0x42, 0x58, 0x02, 0x07, 0x5a, 0x78, 0x19, 0x27, 0x04, + 0x0a, 0x8f, 0x9e, 0x72, 0xd4, 0x08, 0x5d, 0xdc, 0x80, 0x4e, 0x69, 0x55, + 0x37, 0x31, 0x24, 0x8c, 0x54, 0x4b, 0x2a, 0xa9, 0xc7, 0x5f, 0x7a, 0x7a, + 0xbe, 0x73, 0x85, 0xa3, 0x60, 0x14, 0x28, 0x07, 0x14, 0xe6, 0xe1, 0x71, + 0xcd, 0x47, 0xb8, 0x2e, 0x48, 0xe0, 0x9a, 0x91, 0x94, 0xf1, 0xcf, 0x5e, + 0xf4, 0xec, 0x16, 0x00, 0x83, 0x61, 0x27, 0xad, 0x28, 0xc1, 0x5c, 0x60, + 0x66, 0xa1, 0x66, 0x71, 0x90, 0x0f, 0x4a, 0x72, 0x63, 0x19, 0xdd, 0x9f, + 0xad, 0x31, 0x08, 0xf9, 0x3d, 0xfa, 0x7a, 0x53, 0x58, 0x9c, 0x0e, 0xb5, + 0x20, 0x64, 0x3c, 0xe7, 0xf0, 0x14, 0x19, 0x23, 0xe9, 0x8e, 0x69, 0x80, + 0xc0, 0x5c, 0x75, 0xcd, 0x2a, 0x9d, 0xc4, 0xf3, 0xcd, 0x28, 0x03, 0xa9, + 0x39, 0xa4, 0x20, 0xee, 0xe0, 0x54, 0x00, 0x02, 0xea, 0xd9, 0x38, 0xc7, + 0xa5, 0x26, 0x72, 0xd9, 0xce, 0x0e, 0x69, 0x0e, 0x49, 0x1c, 0x13, 0x4a, + 0xc0, 0x75, 0x22, 0x9e, 0xe3, 0x1d, 0x90, 0xd9, 0x1b, 0xa8, 0x61, 0xb5, + 0x31, 0xd8, 0xd4, 0x6b, 0xc3, 0x74, 0xcd, 0x4a, 0x49, 0x63, 0xf2, 0xd3, + 0xd4, 0x43, 0x15, 0x47, 0x63, 0xc9, 0xef, 0x4e, 0x0a, 0x06, 0x49, 0xa0, + 0xae, 0x32, 0x71, 0xee, 0x69, 0xb8, 0x24, 0xe5, 0x40, 0xa1, 0x31, 0x58, + 0x0e, 0x33, 0xd7, 0xad, 0x28, 0x6f, 0x41, 0xf9, 0xd3, 0x58, 0xb9, 0xe3, + 0x68, 0x00, 0x52, 0x7c, 0xd9, 0xf4, 0xfc, 0x6a, 0xac, 0x03, 0xb0, 0xad, + 0x92, 0x46, 0x4d, 0x29, 0x03, 0x1c, 0x02, 0x7d, 0xa9, 0xa3, 0x76, 0xfe, + 0x7b, 0xd4, 0xdb, 0x76, 0xae, 0x4d, 0x16, 0x11, 0x07, 0x20, 0xfc, 0xb9, + 0x14, 0xfd, 0xdc, 0x63, 0x1c, 0xd3, 0xb6, 0x90, 0x73, 0x9a, 0x0f, 0x62, + 0x7a, 0x0a, 0x00, 0x14, 0xfc, 0xbd, 0x39, 0x34, 0xe3, 0x1f, 0x38, 0x23, + 0x35, 0x20, 0x95, 0x4a, 0x80, 0x3b, 0x50, 0xf2, 0x92, 0x72, 0xa0, 0x62, + 0x95, 0xc2, 0xc5, 0x72, 0x9e, 0xe4, 0x50, 0x42, 0x86, 0xea, 0x0f, 0x1d, + 0xe8, 0x92, 0x52, 0x3a, 0xe0, 0x7a, 0x54, 0x45, 0xb2, 0x7d, 0xe8, 0x48, + 0x07, 0x6e, 0x61, 0xd0, 0x51, 0xd5, 0x69, 0x99, 0x60, 0xdc, 0x1a, 0x70, + 0x73, 0x9c, 0x63, 0xda, 0x9d, 0x80, 0x01, 0x24, 0xf0, 0x3a, 0x53, 0xf2, + 0x4f, 0x24, 0x9a, 0x6e, 0x33, 0x40, 0x38, 0x38, 0x51, 0x9a, 0x40, 0x38, + 0x49, 0x8e, 0x31, 0x48, 0x6e, 0x02, 0xb0, 0x20, 0xe2, 0x9c, 0xa4, 0x05, + 0x20, 0xaf, 0x26, 0x98, 0x63, 0x19, 0xdc, 0x40, 0xa4, 0x32, 0xd4, 0x57, + 0xa5, 0xb1, 0x92, 0x3d, 0xf3, 0x4d, 0xb8, 0x95, 0x5d, 0x8f, 0x1f, 0x95, + 0x57, 0xc7, 0xa5, 0x04, 0x80, 0xb9, 0x39, 0x18, 0xe9, 0x4b, 0x91, 0x6e, + 0x17, 0x1c, 0x18, 0x10, 0x47, 0xa5, 0x3d, 0x33, 0xf4, 0xa8, 0x18, 0xb0, + 0xc0, 0x1c, 0xe6, 0x85, 0x32, 0x13, 0x82, 0xb4, 0xdc, 0x7b, 0x08, 0xd6, + 0xb6, 0x96, 0x35, 0xe2, 0x46, 0xa6, 0xdc, 0x32, 0x48, 0x3e, 0x57, 0xc9, + 0xac, 0xe6, 0x3d, 0x31, 0x9a, 0x01, 0x3d, 0x2a, 0x39, 0x35, 0xb9, 0x57, + 0x1e, 0x46, 0x32, 0x05, 0x26, 0x19, 0x7f, 0x88, 0xd3, 0x72, 0x0e, 0x72, + 0x79, 0xa5, 0x00, 0x1e, 0x4b, 0x1a, 0x00, 0x78, 0x9c, 0xa9, 0xe0, 0x9a, + 0x93, 0xed, 0x72, 0xed, 0x03, 0x3f, 0x9d, 0x41, 0xf2, 0xad, 0x0c, 0x57, + 0xb7, 0x1c, 0xd1, 0xcb, 0x7d, 0xc6, 0x3d, 0xee, 0x18, 0x8e, 0x4f, 0x34, + 0xcd, 0xf9, 0x19, 0x6c, 0x9a, 0x61, 0x5e, 0x72, 0x7a, 0x7a, 0x53, 0xd4, + 0x03, 0x8c, 0x7e, 0xb4, 0xb9, 0x40, 0x01, 0xe3, 0x04, 0x51, 0xbb, 0xb0, + 0xe2, 0x95, 0x40, 0x23, 0x93, 0x43, 0x6d, 0xec, 0x29, 0xf2, 0x80, 0x81, + 0x41, 0xc9, 0x2d, 0x49, 0x82, 0xd9, 0xeb, 0x49, 0x93, 0x93, 0xc6, 0x45, + 0x21, 0x38, 0x3c, 0x93, 0x4e, 0xc8, 0x42, 0x02, 0x03, 0x61, 0x8d, 0x0f, + 0x82, 0x46, 0xd1, 0x9f, 0xad, 0x21, 0x60, 0x70, 0x68, 0x0c, 0x4b, 0x60, + 0xe3, 0x14, 0xd2, 0x40, 0x21, 0x20, 0x0c, 0x53, 0x18, 0x16, 0x1d, 0x29, + 0xcc, 0x07, 0x50, 0x72, 0x69, 0x8a, 0xcc, 0x7b, 0x52, 0x01, 0x40, 0x2a, + 0x71, 0x81, 0x4e, 0xda, 0x40, 0xcf, 0x27, 0xda, 0xa3, 0xc3, 0x6e, 0xa9, + 0x53, 0x70, 0x3c, 0x9a, 0x00, 0x06, 0xf2, 0x38, 0x4c, 0x7d, 0x69, 0x76, + 0x35, 0x39, 0xa5, 0xc0, 0xc6, 0x69, 0xbb, 0xcf, 0x7e, 0xb4, 0xdd, 0xc6, + 0x23, 0x23, 0x0e, 0x48, 0xa4, 0x00, 0x81, 0x93, 0x8a, 0x52, 0x49, 0xfc, + 0x3a, 0x52, 0xb1, 0x5d, 0xb9, 0x3d, 0x69, 0x5c, 0x08, 0x5d, 0xb6, 0x75, + 0x34, 0xf5, 0x3b, 0xb9, 0x52, 0x3e, 0x80, 0xd4, 0x65, 0x94, 0xf0, 0x40, + 0x22, 0x95, 0x40, 0x50, 0x76, 0x2e, 0x3e, 0x95, 0x76, 0x56, 0x11, 0x2e, + 0x09, 0xec, 0x31, 0x51, 0xf1, 0xda, 0x9d, 0xca, 0xae, 0xe2, 0x69, 0xa3, + 0xd4, 0x8e, 0x2a, 0x18, 0x0b, 0xbb, 0x8e, 0x94, 0xe0, 0xd9, 0x5a, 0x66, + 0xf5, 0x07, 0x9a, 0x71, 0x70, 0xd8, 0xc5, 0x03, 0x1f, 0x81, 0x8a, 0x8d, + 0x87, 0x3e, 0xf4, 0xae, 0xea, 0x71, 0xda, 0x9a, 0x71, 0xd4, 0xf3, 0x49, + 0x5c, 0x6c, 0x4e, 0x69, 0x72, 0x07, 0x27, 0x34, 0x98, 0x19, 0xc8, 0x34, + 0xa3, 0x9f, 0x7a, 0x04, 0x34, 0xbe, 0x79, 0x18, 0xa5, 0x24, 0x91, 0xce, + 0x29, 0xae, 0xa3, 0x3e, 0x94, 0x85, 0x32, 0x30, 0x6a, 0xb4, 0x01, 0x54, + 0x64, 0xe0, 0x1a, 0x08, 0x20, 0xf5, 0x34, 0xe5, 0x1b, 0x46, 0x07, 0x1e, + 0xf4, 0xa1, 0x73, 0xd4, 0xd2, 0xba, 0x01, 0x9d, 0xb3, 0x4c, 0x61, 0xce, + 0x70, 0x2a, 0x6d, 0x8b, 0x8e, 0xb4, 0x81, 0x10, 0xf0, 0x0d, 0x30, 0xb1, + 0x10, 0x50, 0x7a, 0xf4, 0xa7, 0x08, 0x33, 0xd1, 0x6a, 0xca, 0x43, 0x9e, + 0x86, 0xad, 0x2c, 0x66, 0x3c, 0x64, 0x0a, 0x87, 0x51, 0xad, 0x86, 0xa2, + 0x51, 0x5b, 0x56, 0xc7, 0x24, 0x03, 0xe9, 0x4c, 0x31, 0x31, 0x38, 0xed, + 0x5a, 0x32, 0x02, 0xe9, 0xc1, 0x5c, 0xfb, 0xd5, 0x77, 0x0e, 0x83, 0x00, + 0x8c, 0x52, 0x53, 0x7d, 0x4a, 0xe5, 0x2a, 0x85, 0x00, 0xf2, 0x69, 0xe8, + 0x06, 0x4f, 0x42, 0x28, 0x7e, 0x79, 0xa4, 0x0f, 0xf2, 0xf1, 0x55, 0xab, + 0x24, 0x79, 0x42, 0x06, 0x41, 0x14, 0xdd, 0xa4, 0xfd, 0xea, 0x69, 0x61, + 0x81, 0x9c, 0xd2, 0xe7, 0x3c, 0x0a, 0x2e, 0xd0, 0x02, 0xe3, 0x3c, 0x13, + 0x4b, 0xf3, 0x01, 0xce, 0x29, 0x1a, 0x36, 0x18, 0x2a, 0x71, 0xea, 0x29, + 0xac, 0x71, 0xc9, 0xce, 0x68, 0x40, 0x2f, 0x42, 0x4e, 0x3f, 0x2a, 0x50, + 0x41, 0xeb, 0x48, 0x1b, 0x23, 0x1e, 0xb4, 0xa5, 0x00, 0x39, 0xa6, 0xc0, + 0x42, 0x83, 0xa8, 0xa6, 0xe0, 0xe3, 0xaf, 0xe5, 0x4e, 0x32, 0x01, 0xc1, + 0x14, 0x9d, 0x7a, 0x0a, 0x57, 0xee, 0x02, 0x60, 0xff, 0x00, 0x7b, 0x34, + 0xfc, 0x8c, 0x72, 0x7f, 0x2a, 0x69, 0xc8, 0x1e, 0x94, 0xa1, 0x4f, 0x5a, + 0x13, 0x0b, 0x0d, 0x67, 0xe3, 0x8c, 0x9a, 0x50, 0xe3, 0xa1, 0x38, 0x27, + 0xd6, 0x97, 0x1b, 0x58, 0x66, 0x9e, 0xd1, 0x83, 0x82, 0xad, 0x9a, 0xbb, + 0x2e, 0xa3, 0x23, 0x08, 0x1b, 0x9c, 0xe7, 0xf0, 0xa1, 0xb2, 0x47, 0xcb, + 0x8e, 0x29, 0x4a, 0xb0, 0xe1, 0x59, 0xb9, 0xed, 0x4c, 0xc4, 0x88, 0x01, + 0x27, 0x39, 0xed, 0x8c, 0x53, 0x5b, 0x01, 0x0c, 0xb1, 0x4a, 0xc3, 0x2a, + 0xfb, 0x68, 0x82, 0x39, 0x7a, 0xbc, 0x99, 0xfa, 0x55, 0xa0, 0x78, 0xe0, + 0x71, 0xde, 0x8d, 0xa0, 0xe4, 0x60, 0x8a, 0x7c, 0xda, 0x5a, 0xc0, 0x27, + 0xcc, 0x3d, 0x08, 0xa5, 0x5c, 0x38, 0xf7, 0xa4, 0xda, 0x06, 0x79, 0x26, + 0x91, 0x59, 0xbd, 0xb1, 0x53, 0x61, 0x0b, 0xbd, 0x73, 0x82, 0x29, 0xaf, + 0x3a, 0x27, 0x04, 0xfe, 0x94, 0x8e, 0x43, 0x2f, 0x3c, 0x7b, 0xe2, 0x90, + 0x00, 0x7a, 0xf3, 0xe9, 0x9a, 0x76, 0x41, 0x60, 0x59, 0x95, 0xf3, 0x8c, + 0xe0, 0x54, 0x8a, 0xdc, 0x7b, 0x7b, 0xd3, 0x4c, 0x9b, 0x57, 0xee, 0x66, + 0x82, 0x4b, 0x01, 0x83, 0xd6, 0x95, 0xba, 0xd8, 0x76, 0x1c, 0x01, 0xce, + 0x7b, 0x53, 0x9b, 0x07, 0x8c, 0xf3, 0x42, 0xa7, 0x19, 0x34, 0xe5, 0x00, + 0x73, 0xd6, 0xa7, 0xa8, 0x86, 0xe0, 0x8e, 0x99, 0x3e, 0xb4, 0xe0, 0x31, + 0xf8, 0xd3, 0x83, 0x29, 0x3d, 0x69, 0xa4, 0xe4, 0xf4, 0x38, 0xa6, 0x01, + 0xce, 0x78, 0x00, 0xd3, 0x81, 0xf5, 0x20, 0x53, 0x00, 0xc8, 0xca, 0x9a, + 0x15, 0x01, 0xe0, 0x9a, 0x40, 0x3c, 0x32, 0xe4, 0xf1, 0x4d, 0x00, 0x93, + 0x9e, 0x45, 0x18, 0xe7, 0x1c, 0x60, 0x50, 0x72, 0x0f, 0x5c, 0xd0, 0x84, + 0x05, 0x71, 0x8e, 0x29, 0x42, 0x81, 0xdb, 0x3e, 0xb4, 0xa0, 0x93, 0x8e, + 0x39, 0xa5, 0x2a, 0x4f, 0x20, 0x62, 0x95, 0xc6, 0x39, 0x50, 0x0c, 0x50, + 0xc7, 0x6f, 0x02, 0x9b, 0xc8, 0x18, 0xa4, 0xce, 0x4e, 0x31, 0x8a, 0x00, + 0x50, 0x7d, 0x78, 0xa0, 0x36, 0x3a, 0x66, 0x82, 0xbb, 0xfa, 0x75, 0xa4, + 0x08, 0x7a, 0x13, 0x8c, 0x50, 0x03, 0xb2, 0x58, 0xf4, 0x14, 0xbe, 0x58, + 0xef, 0xd4, 0xd3, 0xe3, 0x23, 0xda, 0x98, 0x43, 0x6e, 0xc8, 0x34, 0x0c, + 0x51, 0x01, 0xc7, 0x5a, 0x94, 0x42, 0x71, 0xd7, 0x8a, 0x89, 0x59, 0xb3, + 0xdc, 0x53, 0xcc, 0xae, 0xbd, 0x06, 0x7e, 0xb5, 0x3a, 0x85, 0x86, 0x18, + 0xdb, 0x9e, 0x3f, 0x5a, 0x36, 0x3a, 0x9c, 0xe2, 0x9d, 0xe6, 0x36, 0x73, + 0xc6, 0x69, 0xe0, 0xef, 0x39, 0x62, 0x31, 0x54, 0xaf, 0xd4, 0x44, 0x61, + 0xd8, 0x9e, 0x83, 0x34, 0xf7, 0x62, 0x57, 0xd2, 0x9c, 0x63, 0x4c, 0x0d, + 0xa7, 0xa9, 0xe6, 0x90, 0xc6, 0x9b, 0x78, 0x24, 0x9a, 0x2e, 0x1a, 0x8d, + 0x0d, 0xce, 0x07, 0x14, 0xe2, 0xeb, 0x1a, 0xe3, 0x04, 0x93, 0xde, 0x9a, + 0x30, 0x71, 0xcf, 0x34, 0xd6, 0x56, 0x66, 0xce, 0xef, 0xce, 0x98, 0x0d, + 0x77, 0xc1, 0x18, 0x27, 0x34, 0x67, 0x23, 0x3c, 0x91, 0xeb, 0x46, 0xd6, + 0xdc, 0x0e, 0x41, 0x35, 0x22, 0x96, 0xc6, 0x08, 0x18, 0xa6, 0x2b, 0x11, + 0xa9, 0x0d, 0xc7, 0x7f, 0xa5, 0x29, 0x1d, 0xb0, 0x79, 0xf4, 0x34, 0x13, + 0x86, 0xe0, 0xf3, 0x4c, 0x91, 0xd9, 0x57, 0x8e, 0xb4, 0xed, 0xd8, 0x09, + 0x97, 0x3b, 0x71, 0x8f, 0xcf, 0xad, 0x37, 0x6c, 0x8d, 0xd3, 0x8f, 0xad, + 0x32, 0x3d, 0xc5, 0x43, 0x1e, 0xb4, 0xfc, 0xb6, 0x46, 0x7e, 0xed, 0x16, + 0xb0, 0x31, 0xe6, 0x30, 0x10, 0x93, 0xcf, 0xe1, 0x51, 0xe0, 0x1e, 0x9c, + 0x0a, 0x90, 0xb1, 0x0b, 0x85, 0x52, 0x7f, 0x0a, 0x6a, 0xa3, 0x30, 0x2c, + 0xc4, 0x00, 0x3b, 0x52, 0x01, 0xa3, 0x6a, 0xb0, 0x2c, 0x73, 0x4a, 0x76, + 0x16, 0xcf, 0x22, 0x94, 0xc6, 0x09, 0xc6, 0xdc, 0xfb, 0xfa, 0x53, 0x84, + 0x41, 0x73, 0xc6, 0x4d, 0x55, 0xc4, 0x30, 0x91, 0xeb, 0x4d, 0x32, 0x05, + 0xe3, 0x35, 0x2a, 0xa6, 0x72, 0x18, 0x63, 0xd0, 0xd4, 0x65, 0x50, 0x36, + 0xe2, 0xdf, 0x95, 0x34, 0x97, 0x50, 0x1c, 0xb3, 0x02, 0x7e, 0xef, 0x1e, + 0xb4, 0xa3, 0x04, 0x9c, 0xf4, 0xa8, 0x4b, 0xb1, 0x7c, 0x01, 0x85, 0xa5, + 0xe4, 0x36, 0x71, 0x9a, 0x39, 0x40, 0x79, 0xe0, 0xe0, 0x62, 0x9e, 0x8c, + 0x40, 0x20, 0x01, 0x49, 0xb7, 0xa9, 0x23, 0x14, 0x86, 0x42, 0xab, 0x8f, + 0xe5, 0x4a, 0xc1, 0x71, 0xcc, 0xe7, 0x18, 0xeb, 0x49, 0xbd, 0x40, 0x18, + 0x00, 0x54, 0x20, 0x9d, 0xc7, 0x1c, 0x9a, 0x46, 0x04, 0x9a, 0xab, 0x03, + 0x65, 0x81, 0x22, 0x12, 0x09, 0xe2, 0x91, 0x8a, 0x91, 0xc0, 0xa8, 0x02, + 0xb0, 0x3d, 0x38, 0xa7, 0x1c, 0x91, 0xd6, 0x95, 0x84, 0x4c, 0x1b, 0x03, + 0x38, 0xa8, 0xdd, 0xc8, 0x3c, 0x67, 0x14, 0x81, 0xb0, 0x79, 0x39, 0xa0, + 0xbe, 0x41, 0x38, 0xa0, 0x07, 0xab, 0xe5, 0x79, 0xe6, 0x8c, 0x80, 0x3b, + 0x62, 0x99, 0x83, 0xdb, 0x8a, 0x68, 0x39, 0x25, 0x4f, 0x5a, 0x35, 0x02, + 0x40, 0x76, 0x36, 0x45, 0x3b, 0x76, 0xee, 0x7b, 0xd4, 0x4c, 0xbf, 0x30, + 0x07, 0x8a, 0x06, 0x02, 0x92, 0xa4, 0x8a, 0x12, 0x02, 0x75, 0x40, 0xfd, + 0x7b, 0x54, 0x65, 0x15, 0x49, 0x23, 0xad, 0x33, 0x2c, 0x07, 0x5c, 0xd3, + 0x80, 0xf9, 0x7e, 0xf1, 0xa7, 0x70, 0x10, 0xae, 0x79, 0x6c, 0x7e, 0x14, + 0x84, 0xe3, 0x38, 0x06, 0x8c, 0x82, 0xc7, 0x1c, 0xf1, 0x4f, 0x4d, 0x87, + 0x93, 0x8a, 0x04, 0x22, 0x02, 0x71, 0x90, 0x70, 0x6a, 0xfd, 0xbd, 0xb0, + 0x94, 0xf1, 0xf2, 0x8e, 0xe4, 0xf6, 0xa8, 0xd2, 0x45, 0x50, 0x3a, 0x0a, + 0xb1, 0x03, 0xe4, 0x91, 0xb7, 0x8f, 0x5a, 0xce, 0x4f, 0xb1, 0x71, 0x43, + 0x27, 0xb3, 0x31, 0x21, 0x91, 0x59, 0x5e, 0x3c, 0xe3, 0x70, 0xeb, 0xf9, + 0x55, 0x42, 0x87, 0x1c, 0xfe, 0x15, 0xab, 0x23, 0x28, 0x1c, 0xfe, 0x55, + 0x99, 0x71, 0x2f, 0xcd, 0x9c, 0x71, 0xda, 0x8b, 0xdf, 0x61, 0xbb, 0x74, + 0x22, 0x60, 0x47, 0x50, 0x71, 0xed, 0x4d, 0xda, 0xc7, 0x90, 0x0d, 0x28, + 0x97, 0x22, 0x86, 0x76, 0x03, 0x3c, 0x9a, 0xab, 0x90, 0x21, 0x27, 0x66, + 0x0f, 0x3e, 0x84, 0x1a, 0x8c, 0x3b, 0x03, 0x8e, 0x45, 0x39, 0x4b, 0x13, + 0xb7, 0x06, 0x9d, 0xb1, 0x89, 0xe9, 0x8c, 0x53, 0xe6, 0x5d, 0x46, 0x20, + 0xdc, 0x39, 0x66, 0xa5, 0xc6, 0x4f, 0x5c, 0x1a, 0x0e, 0xe1, 0x8c, 0x8a, + 0x52, 0xc1, 0x87, 0x23, 0x8f, 0x6a, 0x57, 0x40, 0x37, 0x1c, 0xe0, 0x9f, + 0xc6, 0x80, 0x31, 0xf4, 0xa4, 0x6f, 0x6c, 0xd0, 0xaa, 0x48, 0xe6, 0xa4, + 0x05, 0xdc, 0x78, 0x1d, 0xa8, 0x0f, 0xd8, 0x0a, 0x3d, 0xa8, 0xfb, 0x87, + 0xa7, 0xe3, 0x4b, 0x51, 0x86, 0x58, 0xf5, 0x3c, 0x52, 0xa9, 0x55, 0x5e, + 0x39, 0x14, 0xc2, 0xe0, 0xe7, 0x8a, 0x37, 0x67, 0xb5, 0x52, 0xd0, 0x44, + 0x87, 0x04, 0xf5, 0xa6, 0xbf, 0x1c, 0x50, 0x08, 0xc5, 0x37, 0x24, 0x93, + 0xc8, 0xfc, 0x68, 0x00, 0xdf, 0x46, 0xec, 0xf5, 0xe6, 0x9c, 0xb1, 0xfa, + 0xd3, 0x58, 0x11, 0xcf, 0x4a, 0x00, 0x50, 0xa0, 0x81, 0x8e, 0x29, 0x18, + 0x28, 0xe8, 0x29, 0x9d, 0xb8, 0x6a, 0x50, 0x79, 0xeb, 0x52, 0xd8, 0xc4, + 0x03, 0x27, 0xa5, 0x2b, 0x06, 0xec, 0x71, 0x4e, 0x24, 0xf1, 0x8c, 0x51, + 0xe5, 0x9e, 0x86, 0x80, 0x13, 0x6b, 0x63, 0x86, 0xcd, 0x34, 0x31, 0x1d, + 0x4f, 0xe1, 0x4e, 0x60, 0x57, 0x00, 0x51, 0x83, 0x9c, 0x90, 0x29, 0x80, + 0xc6, 0xf9, 0xba, 0x8a, 0x03, 0xa8, 0x3c, 0xd4, 0xac, 0xc3, 0x6f, 0x22, + 0xa2, 0xda, 0xac, 0x38, 0x18, 0x34, 0x5c, 0x03, 0x19, 0xe5, 0x69, 0xa4, + 0x16, 0xea, 0x45, 0x28, 0x25, 0x7b, 0x7e, 0x54, 0xa7, 0x2c, 0x0f, 0x14, + 0xd2, 0xea, 0x04, 0x24, 0x0c, 0xfa, 0xd3, 0xd1, 0x82, 0x8e, 0x78, 0xa4, + 0xda, 0x33, 0xd0, 0x8c, 0x52, 0xe0, 0x96, 0x00, 0x74, 0xf7, 0xa6, 0x21, + 0xdb, 0x98, 0x8e, 0x0e, 0x68, 0xf4, 0xe3, 0xad, 0x29, 0x2d, 0x81, 0xc0, + 0xe3, 0xd2, 0x93, 0x76, 0x78, 0xcd, 0x46, 0x9d, 0x06, 0x2e, 0xd5, 0x27, + 0x25, 0x41, 0x22, 0x94, 0x60, 0x74, 0x18, 0x06, 0x98, 0x09, 0x06, 0x9e, + 0xa7, 0xd7, 0x8a, 0x6d, 0x80, 0x87, 0xef, 0x75, 0x07, 0xdb, 0x14, 0x6d, + 0xcf, 0x51, 0x4e, 0xc6, 0x31, 0xe9, 0xeb, 0x4e, 0x03, 0x27, 0x83, 0x49, + 0xb1, 0x91, 0x84, 0x19, 0xe4, 0xe6, 0x95, 0x93, 0x1c, 0xe6, 0x9d, 0x21, + 0x3d, 0x8d, 0x47, 0xbb, 0x3f, 0x7b, 0x06, 0x90, 0x06, 0x47, 0x7e, 0xbe, + 0xf4, 0xd2, 0xdd, 0x33, 0x4e, 0x00, 0x1a, 0x42, 0x8a, 0x0e, 0x69, 0xd9, + 0x00, 0x85, 0x86, 0x39, 0xeb, 0x41, 0x6e, 0x3b, 0x9a, 0x42, 0x01, 0x1d, + 0x4d, 0x2a, 0x81, 0x8e, 0x41, 0xa5, 0x60, 0x10, 0xbb, 0xf1, 0x46, 0xe2, + 0x0f, 0x4a, 0x71, 0x50, 0x7e, 0xa2, 0x80, 0xa0, 0xfa, 0xd2, 0x0b, 0x12, + 0xc7, 0xf3, 0x11, 0xce, 0x2a, 0x7d, 0xa7, 0xb9, 0x20, 0x7a, 0xd4, 0x2a, + 0x40, 0xe2, 0x98, 0xe5, 0x89, 0xea, 0x69, 0x5a, 0xe3, 0x2d, 0x2a, 0xaa, + 0x0c, 0xee, 0xce, 0x7d, 0x6a, 0x29, 0x79, 0xf4, 0xfa, 0xd4, 0x40, 0x93, + 0xcf, 0x7a, 0x95, 0x03, 0x38, 0xc1, 0x14, 0xad, 0x6d, 0xc7, 0x72, 0x00, + 0xae, 0xbf, 0x31, 0xc1, 0xf4, 0xa6, 0x92, 0xcd, 0xd4, 0x62, 0xaf, 0x79, + 0x3c, 0x1c, 0xd5, 0x66, 0x50, 0xcc, 0x41, 0x18, 0xaa, 0x4d, 0x0a, 0xc4, + 0x5b, 0x4a, 0x8e, 0x70, 0x69, 0xa0, 0x9c, 0xe7, 0x1d, 0x2a, 0x55, 0x8f, + 0x73, 0x63, 0xa9, 0x1e, 0x94, 0xd1, 0x1b, 0xa3, 0xe7, 0x07, 0x6d, 0x3d, + 0x58, 0xac, 0x3b, 0x79, 0x2b, 0xc0, 0xa6, 0x05, 0x72, 0x71, 0x8e, 0x2a, + 0x44, 0x88, 0xb9, 0xf9, 0x41, 0xc7, 0xad, 0x5a, 0x48, 0x76, 0xaf, 0xde, + 0xfc, 0xea, 0x5d, 0xd0, 0xec, 0x55, 0x30, 0xed, 0x4d, 0xdd, 0x2a, 0x2d, + 0xd9, 0x3f, 0x4a, 0xb7, 0x34, 0x8a, 0x38, 0xdd, 0x91, 0xe9, 0x55, 0x98, + 0xaf, 0x50, 0x05, 0x11, 0x6d, 0xee, 0x0c, 0x6e, 0x72, 0x7a, 0x66, 0x9d, + 0xf9, 0x03, 0x4d, 0x07, 0x27, 0x03, 0x8a, 0x53, 0xc7, 0x6e, 0x6a, 0xb7, + 0x10, 0xa7, 0x79, 0xc0, 0xe3, 0x14, 0x67, 0x6f, 0x14, 0xd0, 0x73, 0xde, + 0x9c, 0x03, 0x1f, 0xfe, 0xbd, 0x00, 0x18, 0x03, 0xbe, 0x4f, 0x5e, 0x69, + 0xde, 0x70, 0x1c, 0x0a, 0x6e, 0xe3, 0xd0, 0x0a, 0x47, 0xc6, 0x3d, 0x29, + 0xbb, 0x6c, 0x32, 0x41, 0x20, 0xf5, 0xe6, 0x90, 0x90, 0xc7, 0xd4, 0x54, + 0x60, 0x29, 0xc9, 0x0b, 0xcf, 0xad, 0x19, 0x2b, 0x53, 0xca, 0xc4, 0x48, + 0x3a, 0x64, 0x74, 0xa6, 0x96, 0xe6, 0x90, 0x36, 0x57, 0xa1, 0xa6, 0x86, + 0x1d, 0x0a, 0x9c, 0x53, 0xe5, 0xd4, 0x07, 0x07, 0x19, 0xe0, 0x8c, 0xd3, + 0xc6, 0x3a, 0x90, 0x01, 0xf6, 0xa8, 0x89, 0x4c, 0x63, 0x6f, 0x3e, 0xd4, + 0xd6, 0x0c, 0xe3, 0x0a, 0xd8, 0x3e, 0xf5, 0x4e, 0x29, 0xec, 0x32, 0x43, + 0xcb, 0xf1, 0x8c, 0x51, 0xb7, 0x23, 0xa8, 0xaa, 0xc1, 0x2e, 0x97, 0x24, + 0x15, 0x34, 0x37, 0x9b, 0x81, 0xe6, 0x1e, 0xfe, 0x95, 0x5c, 0x8e, 0xf6, + 0x11, 0x60, 0x30, 0x1d, 0x4f, 0xd2, 0x9d, 0x86, 0xeb, 0x81, 0x8a, 0x8d, + 0x47, 0x03, 0x03, 0x14, 0xa1, 0xf6, 0xf7, 0x39, 0x34, 0xda, 0x48, 0x07, + 0x92, 0xcc, 0x71, 0x8c, 0x0f, 0x7a, 0x78, 0x53, 0x8f, 0xbd, 0x9a, 0x89, + 0x03, 0x1f, 0xbd, 0x90, 0x3a, 0xe6, 0x94, 0xb9, 0xfe, 0x11, 0x49, 0xab, + 0x00, 0xfc, 0x7c, 0xdd, 0x39, 0xf5, 0x14, 0xef, 0x5e, 0xd4, 0xd0, 0xa3, + 0x86, 0xc7, 0x3e, 0xc6, 0x9c, 0x5d, 0x4f, 0x07, 0x9a, 0x86, 0xd8, 0x02, + 0x02, 0x99, 0x20, 0x0e, 0x7d, 0xe8, 0xea, 0x0e, 0x58, 0x0f, 0xa5, 0x28, + 0x2a, 0x46, 0x05, 0x18, 0x5c, 0x72, 0x39, 0xa1, 0x31, 0x8d, 0xc6, 0x3a, + 0x1c, 0xd3, 0xc1, 0x0a, 0x3b, 0x1a, 0x40, 0x9b, 0xb9, 0xf4, 0xf7, 0xa6, + 0x96, 0xec, 0x16, 0x93, 0x10, 0xa5, 0xf0, 0x3e, 0x55, 0xa5, 0x12, 0xb6, + 0x71, 0x4c, 0xfb, 0xa3, 0xa7, 0x14, 0x05, 0x2c, 0xd9, 0x5c, 0x01, 0x40, + 0x0b, 0xd4, 0x9c, 0x9a, 0x50, 0x70, 0x48, 0xc1, 0xa0, 0x64, 0x73, 0x80, + 0x48, 0xa7, 0x3b, 0x12, 0x33, 0xc6, 0x69, 0xd8, 0x76, 0x14, 0xb1, 0x03, + 0x8e, 0xb4, 0x8b, 0x21, 0x63, 0x8c, 0x1a, 0x62, 0xb6, 0x0e, 0x7b, 0xd3, + 0xc9, 0xe0, 0x9e, 0x73, 0x40, 0x08, 0xc0, 0xc9, 0xc0, 0x6c, 0x0e, 0xf4, + 0xa0, 0x63, 0x81, 0xc9, 0xa8, 0xc3, 0xfc, 0xfc, 0x2f, 0xd6, 0xa4, 0x38, + 0x51, 0x93, 0xc1, 0xa6, 0xee, 0xc4, 0x48, 0xb9, 0x3c, 0x96, 0x00, 0x0e, + 0xb4, 0x02, 0x19, 0xba, 0x9a, 0x84, 0xf3, 0xd0, 0xe2, 0x9c, 0x1c, 0xe7, + 0xef, 0x54, 0xea, 0x3b, 0x92, 0x1d, 0xc1, 0xba, 0x70, 0x69, 0x19, 0x9c, + 0x2f, 0x40, 0x05, 0x30, 0xc8, 0x07, 0xe1, 0xde, 0x9a, 0x64, 0x24, 0x64, + 0xf2, 0x69, 0xa4, 0x04, 0x82, 0x52, 0xc3, 0x8e, 0xb5, 0x28, 0x19, 0x5c, + 0xb7, 0x5a, 0xad, 0xf3, 0x10, 0x31, 0xfa, 0x54, 0xa9, 0xb8, 0x0c, 0x31, + 0xa6, 0xd0, 0x89, 0x84, 0x6b, 0xcf, 0xcd, 0x9f, 0xa5, 0x00, 0x44, 0x17, + 0x1c, 0xe7, 0xde, 0xa0, 0x32, 0x46, 0x40, 0xeb, 0xc7, 0xa1, 0xa6, 0x9b, + 0x8d, 0xc7, 0x00, 0x10, 0x29, 0x59, 0x95, 0x72, 0x47, 0x23, 0x3d, 0x31, + 0xe9, 0x4d, 0x66, 0xcf, 0x03, 0x34, 0xd0, 0xe3, 0x18, 0x34, 0xc3, 0x21, + 0x2c, 0x40, 0x5c, 0x7a, 0x55, 0x58, 0x96, 0x49, 0x8d, 0xab, 0x9e, 0x94, + 0xd2, 0x33, 0xc9, 0x27, 0x34, 0xd0, 0xcc, 0x48, 0xc9, 0x27, 0xe9, 0x41, + 0x63, 0x9c, 0x1c, 0xd0, 0xd0, 0x9b, 0x14, 0x1e, 0x7a, 0xf1, 0x4b, 0xe6, + 0x6d, 0x27, 0x00, 0xe0, 0x77, 0xa6, 0xed, 0x3d, 0xba, 0x1a, 0x12, 0x23, + 0xb8, 0x7c, 0xc0, 0x0a, 0xad, 0x1e, 0xe2, 0x25, 0x57, 0x72, 0x32, 0x57, + 0x00, 0x8a, 0x37, 0x8e, 0xf9, 0x02, 0x9e, 0xca, 0x7a, 0x16, 0xfc, 0x6a, + 0x02, 0xff, 0x00, 0x31, 0x1c, 0x71, 0xe9, 0x52, 0xf7, 0xd0, 0x6c, 0xb4, + 0x85, 0x4e, 0x08, 0xed, 0xeb, 0x43, 0x48, 0x33, 0xf2, 0xf5, 0xfa, 0xd5, + 0x60, 0x18, 0xf2, 0x58, 0x0f, 0x6a, 0x43, 0x21, 0xcf, 0xdd, 0xa0, 0x0b, + 0x07, 0x39, 0xa4, 0x2a, 0x36, 0xe0, 0x63, 0x35, 0x58, 0x4a, 0xd9, 0xf9, + 0x87, 0x1e, 0xd5, 0x3a, 0x15, 0x31, 0x9c, 0xfe, 0xb4, 0xda, 0xb0, 0x83, + 0x68, 0xe3, 0x38, 0xc8, 0xa3, 0x77, 0x4e, 0x2a, 0x33, 0xcf, 0x41, 0x8e, + 0x69, 0x57, 0x93, 0xb4, 0x03, 0x46, 0xa1, 0xa1, 0x22, 0xb6, 0x79, 0x3e, + 0xb4, 0xae, 0x4e, 0xdc, 0xe3, 0xf4, 0xa6, 0x2c, 0x58, 0x6c, 0xf2, 0x7d, + 0xa9, 0x58, 0x31, 0x61, 0xcf, 0xca, 0x28, 0xd0, 0x76, 0x1a, 0xbf, 0x2f, + 0xcc, 0xc3, 0x8a, 0x46, 0xdc, 0xc7, 0x3d, 0xbd, 0x8d, 0x0d, 0x96, 0x18, + 0xcf, 0x43, 0xd6, 0x9b, 0xf3, 0x67, 0xa8, 0xaa, 0x68, 0x4e, 0xc2, 0x85, + 0x72, 0x7d, 0xbd, 0xea, 0x4e, 0x83, 0x19, 0xcd, 0x27, 0x0b, 0x8d, 0xc4, + 0xfe, 0x14, 0xe0, 0xb9, 0x19, 0xce, 0x69, 0x79, 0x00, 0xc0, 0x80, 0xe7, + 0x24, 0x52, 0x90, 0x71, 0xd8, 0x52, 0x80, 0xc5, 0xbe, 0x61, 0xc7, 0x5a, + 0x56, 0x0a, 0xdd, 0x78, 0xed, 0x4c, 0x43, 0x4f, 0x63, 0xc8, 0xa0, 0x6d, + 0x07, 0x76, 0x31, 0xef, 0x4b, 0xf7, 0x7a, 0x72, 0x29, 0x8c, 0xa7, 0x19, + 0x1f, 0x95, 0x08, 0x07, 0xae, 0xc2, 0xe3, 0xd0, 0xf7, 0xa1, 0x88, 0xc9, + 0xf5, 0x3d, 0x38, 0xc5, 0x22, 0x72, 0x79, 0x5e, 0x45, 0x3d, 0xce, 0xe5, + 0x00, 0x11, 0xc5, 0x3d, 0x00, 0x6a, 0x6f, 0xee, 0x00, 0xa0, 0x9e, 0x72, + 0xc7, 0x3e, 0x94, 0xc0, 0xad, 0x8c, 0x96, 0xef, 0x4e, 0xe7, 0xdb, 0xf0, + 0xa4, 0x21, 0x09, 0x03, 0xd3, 0x14, 0x8a, 0xdc, 0xf4, 0xe9, 0x42, 0x72, + 0xd8, 0x38, 0xa7, 0xed, 0x19, 0xef, 0xf5, 0xa9, 0x77, 0x18, 0x2b, 0x82, + 0x7a, 0x55, 0xc8, 0xe6, 0xda, 0x38, 0x39, 0xf5, 0x15, 0x40, 0xe5, 0x4e, + 0x07, 0x3e, 0xf4, 0xf8, 0x89, 0x56, 0x1c, 0xf6, 0xa4, 0x32, 0xff, 0x00, + 0xda, 0x72, 0x41, 0x23, 0x9f, 0x7a, 0x86, 0x52, 0x1c, 0x70, 0xa0, 0x83, + 0x48, 0xcc, 0xa3, 0xa9, 0xe2, 0xa2, 0x32, 0xa0, 0x3c, 0x52, 0x49, 0xde, + 0xe3, 0x6c, 0x89, 0x98, 0x20, 0xc0, 0x18, 0x1e, 0xd4, 0xc5, 0x6c, 0x9c, + 0xe7, 0x8a, 0x90, 0x32, 0x93, 0xc7, 0x26, 0x90, 0xa9, 0xec, 0x78, 0xaa, + 0xb3, 0x62, 0x1e, 0x8f, 0xb4, 0x72, 0x38, 0xa5, 0xf3, 0xb2, 0x2a, 0x30, + 0x42, 0x8e, 0xb9, 0xa0, 0x32, 0xe3, 0x03, 0xa5, 0x4b, 0x02, 0x4f, 0x30, + 0x35, 0x3b, 0x20, 0xae, 0x08, 0xa8, 0xb2, 0xb9, 0xc8, 0xa9, 0x01, 0xce, + 0x07, 0x7f, 0x7a, 0x56, 0xec, 0x34, 0x0c, 0xab, 0x8a, 0x41, 0x90, 0x0e, + 0x0d, 0x05, 0xb2, 0x71, 0x90, 0x2a, 0x32, 0xfb, 0x72, 0x00, 0xa1, 0x20, + 0x1f, 0xb8, 0xf4, 0x26, 0x9b, 0xcf, 0x38, 0xe4, 0x53, 0x77, 0xab, 0x2f, + 0x4e, 0x94, 0xa9, 0xcf, 0xd2, 0x9d, 0x80, 0x07, 0x5f, 0xf1, 0xa4, 0x2b, + 0x9e, 0x77, 0x53, 0xc8, 0x03, 0xa1, 0xa4, 0x21, 0x4f, 0xd4, 0x52, 0x01, + 0x9f, 0x41, 0x4b, 0x95, 0x03, 0xe6, 0xa3, 0x90, 0x79, 0xe0, 0x50, 0xfc, + 0xaf, 0x34, 0xd0, 0x06, 0xfe, 0xd9, 0xa6, 0x3b, 0x1f, 0x5a, 0x6f, 0x7e, + 0x2a, 0x4c, 0x00, 0x39, 0xa9, 0xdc, 0x06, 0x01, 0xc6, 0x69, 0xc3, 0x83, + 0xcf, 0x14, 0xec, 0x8e, 0x80, 0x62, 0x9b, 0xb3, 0x2b, 0x4e, 0xc0, 0x23, + 0x30, 0x50, 0x0f, 0xf2, 0xa3, 0x79, 0x23, 0x20, 0xe2, 0x80, 0x00, 0x24, + 0x1e, 0x94, 0x17, 0x5e, 0x9b, 0x7a, 0x77, 0xa3, 0x40, 0x17, 0x82, 0x39, + 0x34, 0xd6, 0x61, 0xc0, 0xcf, 0x34, 0xbb, 0x55, 0x87, 0x27, 0x14, 0xac, + 0xa3, 0x38, 0xfc, 0xaa, 0x98, 0x09, 0xc6, 0x3d, 0xe9, 0x3e, 0xb4, 0xbb, + 0x40, 0x3c, 0xd2, 0x13, 0x9e, 0x7a, 0x50, 0x80, 0x33, 0xb7, 0xa1, 0xa6, + 0xb3, 0x73, 0x90, 0x7f, 0x0a, 0x52, 0x72, 0x3b, 0xe6, 0x90, 0x30, 0x03, + 0x07, 0x14, 0x08, 0x5d, 0xd9, 0x5e, 0x99, 0xa0, 0x1e, 0x73, 0x8a, 0x68, + 0xc9, 0x3c, 0xf4, 0xa7, 0x80, 0x3d, 0x68, 0xd0, 0x63, 0x48, 0xf4, 0x3f, + 0x85, 0x34, 0x64, 0x7f, 0x0f, 0x14, 0xb8, 0xc3, 0x52, 0xf2, 0x78, 0x3c, + 0x54, 0xdc, 0x44, 0x80, 0x8c, 0x03, 0xd2, 0x9e, 0xae, 0x83, 0x8d, 0xb9, + 0xa8, 0x36, 0x1c, 0x67, 0x77, 0x14, 0xec, 0x36, 0x32, 0x06, 0x68, 0x65, + 0x13, 0x19, 0x57, 0x1b, 0x54, 0x54, 0x2d, 0x31, 0x19, 0xef, 0x42, 0xa9, + 0x07, 0xe6, 0xfd, 0x29, 0xf8, 0x51, 0xdb, 0xeb, 0x45, 0x97, 0x50, 0x22, + 0x2c, 0x4e, 0x1b, 0x1c, 0x52, 0x66, 0x9e, 0x7d, 0x78, 0xc5, 0x22, 0x84, + 0x39, 0xa1, 0x08, 0x4e, 0x3b, 0x35, 0x34, 0x8c, 0xf7, 0xc7, 0xad, 0x3c, + 0x05, 0x19, 0xc1, 0xc5, 0x1d, 0xf1, 0xd4, 0x50, 0x02, 0x05, 0x1d, 0x41, + 0xa0, 0xf4, 0xeb, 0x49, 0xcf, 0x4a, 0x1f, 0x0b, 0xe9, 0x48, 0x60, 0x15, + 0xb3, 0xcf, 0x4a, 0x79, 0x61, 0xd2, 0xa3, 0x0f, 0x80, 0x09, 0x22, 0x9d, + 0xe6, 0x67, 0xe9, 0xf4, 0xa5, 0x61, 0x89, 0xbb, 0xf3, 0x15, 0x21, 0xe9, + 0x93, 0xd3, 0xde, 0x9a, 0xa5, 0x18, 0xf2, 0x2a, 0x56, 0x11, 0x15, 0x18, + 0x07, 0x8f, 0x53, 0x45, 0xc6, 0x3a, 0x14, 0x42, 0x73, 0xde, 0xa7, 0x0c, + 0xca, 0x0f, 0xc8, 0x18, 0x7d, 0x6a, 0xa0, 0x95, 0x54, 0xf4, 0xa8, 0xbc, + 0xf6, 0x07, 0x68, 0x07, 0x06, 0x95, 0xae, 0x2b, 0x97, 0x45, 0xc1, 0xdb, + 0xb7, 0x68, 0x07, 0xda, 0xa2, 0x7c, 0xe0, 0xb9, 0xe2, 0xab, 0xef, 0x27, + 0xae, 0x69, 0x1d, 0xc6, 0x06, 0x58, 0xf1, 0x54, 0xa2, 0x90, 0xae, 0x4f, + 0x1c, 0x8f, 0x1c, 0x81, 0x90, 0xfe, 0x95, 0xa1, 0x0b, 0x42, 0x72, 0xc4, + 0x6e, 0x27, 0xd6, 0xb2, 0xa2, 0x9c, 0x0e, 0x73, 0xd2, 0xa7, 0x4b, 0x95, + 0x2a, 0x79, 0xe3, 0xd4, 0x52, 0x7a, 0xe8, 0x52, 0x2e, 0xdc, 0x4f, 0x12, + 0xa6, 0xd4, 0x51, 0xd2, 0xa8, 0x89, 0x81, 0x1b, 0x76, 0xe0, 0x7a, 0x53, + 0x1a, 0x54, 0x39, 0xc7, 0x27, 0xd4, 0xd4, 0x7b, 0xb2, 0x79, 0xe2, 0x98, + 0x36, 0x4a, 0xdb, 0x48, 0xce, 0x30, 0x45, 0x34, 0x29, 0x3d, 0xb8, 0xa5, + 0x46, 0x5c, 0x11, 0xc5, 0x38, 0x10, 0x14, 0x62, 0x81, 0x11, 0x10, 0xa3, + 0x8e, 0x01, 0xa6, 0xec, 0xc9, 0xce, 0x7a, 0x54, 0xac, 0xa1, 0x86, 0x78, + 0xa6, 0x6d, 0xda, 0x84, 0x01, 0xfa, 0xd5, 0x00, 0xc2, 0xac, 0x7e, 0xe8, + 0x1f, 0x9d, 0x2a, 0x07, 0x04, 0xee, 0xc1, 0xa2, 0x3e, 0x17, 0x38, 0xe4, + 0xfa, 0x9a, 0x78, 0xc7, 0x7a, 0x34, 0x5b, 0x80, 0xa4, 0x8c, 0xe3, 0x1c, + 0x53, 0x1a, 0x35, 0x27, 0x1c, 0xe0, 0x7b, 0xd4, 0xdb, 0x7e, 0x50, 0x14, + 0xe2, 0xa1, 0x7d, 0xc0, 0xf0, 0x33, 0xef, 0x42, 0xbf, 0x40, 0x7e, 0x43, + 0x82, 0xaa, 0x8a, 0x6b, 0x0d, 0xcd, 0x9a, 0x4e, 0x71, 0x92, 0x08, 0x34, + 0xf0, 0x0e, 0x32, 0x28, 0x13, 0x10, 0x2b, 0x01, 0xc6, 0x4d, 0x1b, 0x8e, + 0x39, 0xeb, 0x4b, 0xbc, 0x81, 0xd2, 0x80, 0x00, 0x19, 0xef, 0x40, 0x11, + 0x85, 0xda, 0xdc, 0x0c, 0x93, 0xfa, 0x53, 0xcc, 0x6c, 0x08, 0x3c, 0x7e, + 0x14, 0xaa, 0xff, 0x00, 0x37, 0x4f, 0xc6, 0x97, 0x38, 0x3c, 0xd1, 0xaa, + 0x19, 0x19, 0xda, 0x5b, 0x23, 0x83, 0x4e, 0x5f, 0x98, 0x8f, 0xeb, 0x48, + 0xf8, 0x1c, 0x81, 0x4d, 0x19, 0x7e, 0x99, 0x14, 0xb5, 0x11, 0x2a, 0x80, + 0x0e, 0xed, 0xb8, 0xa7, 0x15, 0x5c, 0xe7, 0x03, 0x3e, 0xb5, 0x1e, 0x4f, + 0x4d, 0xd4, 0xe2, 0x48, 0x1e, 0xb4, 0x5d, 0xdc, 0x04, 0x3c, 0x0f, 0x5a, + 0x66, 0xf5, 0x4e, 0x31, 0x9c, 0xd2, 0x92, 0x36, 0xe4, 0x0a, 0x40, 0x5f, + 0x82, 0x70, 0x29, 0xa1, 0x8e, 0x12, 0x2b, 0x70, 0x0f, 0xe1, 0x4a, 0x38, + 0x3c, 0xf4, 0xa6, 0x6f, 0xe6, 0x95, 0x5b, 0x34, 0x3f, 0x21, 0x12, 0x6d, + 0x51, 0xd0, 0x11, 0xf4, 0xa3, 0x95, 0x60, 0x39, 0xe6, 0x90, 0x03, 0xf8, + 0x53, 0xf9, 0x5e, 0xf5, 0x20, 0x21, 0xc6, 0x7b, 0x8a, 0x42, 0x7a, 0x75, + 0xc1, 0xa7, 0x83, 0xb8, 0x7c, 0xd4, 0x01, 0x93, 0xc7, 0xeb, 0x4a, 0xe0, + 0x0a, 0x81, 0x93, 0xe6, 0xcd, 0x1b, 0x5b, 0x8e, 0x30, 0x3b, 0x0a, 0x7a, + 0xaf, 0xcd, 0xf7, 0x86, 0x7e, 0xb4, 0xe6, 0x25, 0x40, 0x2d, 0xd3, 0xd7, + 0xa5, 0x3b, 0x94, 0x44, 0x37, 0x31, 0xc0, 0x1c, 0x53, 0xb6, 0x10, 0x7e, + 0x63, 0x91, 0xe9, 0x4f, 0x52, 0x5b, 0x18, 0x07, 0x1e, 0xb4, 0xe2, 0x00, + 0xcf, 0x73, 0x8a, 0x2f, 0xd8, 0x08, 0x08, 0xc7, 0xdd, 0x15, 0x1b, 0x07, + 0x66, 0x1c, 0x55, 0x8d, 0xea, 0xc3, 0xe5, 0xcf, 0x14, 0xd0, 0x49, 0xc9, + 0xcf, 0xe7, 0x4d, 0x3e, 0xe2, 0x68, 0x8b, 0x61, 0x0f, 0x9c, 0x71, 0x41, + 0x61, 0xf5, 0x14, 0xef, 0x30, 0xf2, 0x07, 0x5a, 0x8b, 0x24, 0x9c, 0x30, + 0xa6, 0xdd, 0xc4, 0xc7, 0x92, 0x48, 0xc8, 0xe9, 0x48, 0x37, 0x74, 0x6a, + 0x39, 0x5e, 0x9c, 0xd3, 0xd7, 0x38, 0xa0, 0x42, 0x05, 0xf7, 0xa0, 0x90, + 0x8c, 0x06, 0x33, 0x4f, 0x2a, 0x47, 0x07, 0xaf, 0xd6, 0x95, 0x76, 0xc7, + 0x82, 0x46, 0xe3, 0x8a, 0x76, 0xb1, 0x49, 0xa1, 0xe8, 0x50, 0x28, 0x38, + 0xc5, 0x2e, 0x51, 0xf2, 0x49, 0xa8, 0x45, 0xc8, 0x0a, 0x40, 0x5c, 0x7e, + 0x14, 0xe5, 0x61, 0x82, 0x58, 0xf5, 0xe4, 0x54, 0xd8, 0x68, 0x84, 0x8e, + 0x0e, 0x0e, 0x7e, 0x94, 0xc0, 0x8c, 0xc3, 0xef, 0x01, 0xef, 0x4b, 0xb2, + 0x4d, 0xb9, 0x3f, 0xa5, 0x21, 0x52, 0x78, 0xcd, 0x5d, 0xc9, 0xd4, 0x7c, + 0x6a, 0xc0, 0x1c, 0xe0, 0xe3, 0xbd, 0x3e, 0x33, 0x96, 0xc9, 0xe9, 0x55, + 0xca, 0xb4, 0x7b, 0xb9, 0x24, 0x7b, 0x53, 0xd5, 0xb6, 0x2a, 0x96, 0xe3, + 0x8c, 0xd5, 0x38, 0xb6, 0xae, 0x82, 0xc4, 0xec, 0x49, 0xfb, 0x95, 0x11, + 0x0f, 0x9f, 0x98, 0x62, 0x98, 0x6e, 0x15, 0x47, 0x5e, 0x68, 0x5b, 0x87, + 0x66, 0xe0, 0x13, 0xf4, 0xa4, 0xa3, 0xdc, 0x44, 0xc7, 0x8c, 0x2e, 0x09, + 0xa5, 0x20, 0x01, 0xc6, 0x45, 0x30, 0x96, 0x60, 0x19, 0x99, 0xa9, 0x86, + 0x52, 0xc7, 0x1c, 0x91, 0x49, 0xc7, 0xb0, 0x31, 0xe7, 0x71, 0xc9, 0xcd, + 0x19, 0x6e, 0x9d, 0xa9, 0xbb, 0xb6, 0x9c, 0x01, 0x4b, 0xbc, 0x3f, 0x55, + 0x35, 0x29, 0x34, 0x22, 0x41, 0x26, 0xd1, 0xd4, 0x64, 0xfb, 0x54, 0x32, + 0x33, 0x03, 0x9e, 0x4e, 0x69, 0xc4, 0xe0, 0x73, 0x4a, 0xb8, 0x71, 0xeb, + 0xfd, 0x2a, 0x97, 0x98, 0xc8, 0x77, 0x0e, 0xed, 0x8f, 0x7c, 0x54, 0xc1, + 0xfe, 0x51, 0x82, 0x0d, 0x0d, 0x04, 0x78, 0xe8, 0x7d, 0xe9, 0x15, 0x56, + 0x21, 0x8d, 0xa0, 0x0a, 0x72, 0x6a, 0xc0, 0x85, 0x59, 0x8a, 0x9f, 0x5a, + 0x9c, 0x48, 0xa5, 0x78, 0xfd, 0x2a, 0xab, 0x06, 0x2d, 0x90, 0x38, 0xef, + 0x4f, 0x39, 0x55, 0xeb, 0x4a, 0xca, 0xc0, 0x89, 0x84, 0xa3, 0x18, 0x3d, + 0x4d, 0x1b, 0x48, 0x6c, 0x93, 0xc5, 0x56, 0xdc, 0x47, 0x20, 0x67, 0x14, + 0xf5, 0x97, 0x72, 0xfa, 0x50, 0x17, 0xb9, 0x33, 0x0c, 0xf7, 0xe2, 0x9a, + 0x61, 0x00, 0xf2, 0xc7, 0xf0, 0xa8, 0xfc, 0xcc, 0x11, 0xde, 0x9e, 0x24, + 0xe4, 0x12, 0x69, 0xad, 0x45, 0x71, 0xc1, 0x54, 0x60, 0x67, 0x3f, 0x5a, + 0x7b, 0x30, 0x4d, 0xc3, 0xf4, 0xa8, 0x43, 0x11, 0x93, 0x91, 0xcd, 0x30, + 0xcc, 0x73, 0xf3, 0x53, 0xba, 0x11, 0x3a, 0x92, 0xc3, 0x21, 0xb9, 0xf4, + 0xa9, 0x44, 0x78, 0x52, 0x58, 0x13, 0x55, 0xe3, 0x68, 0xd4, 0x6e, 0x07, + 0x24, 0xd3, 0xf7, 0x92, 0x7e, 0xf7, 0xeb, 0x48, 0x03, 0x2b, 0xf7, 0x47, + 0x15, 0x11, 0xea, 0x0e, 0xea, 0x74, 0x9b, 0x5f, 0xa7, 0x0d, 0xed, 0x49, + 0x1c, 0x4a, 0xa1, 0x99, 0x9b, 0x91, 0xd0, 0x7a, 0xd1, 0xa8, 0x02, 0xb1, + 0xdd, 0xd3, 0xa5, 0x48, 0xc0, 0x39, 0xeb, 0x93, 0xde, 0x9b, 0x90, 0x38, + 0x06, 0x9b, 0x96, 0x63, 0xed, 0x45, 0xc0, 0x18, 0xec, 0x38, 0x19, 0xc5, + 0x29, 0x39, 0x5f, 0x94, 0x52, 0x28, 0x5e, 0x72, 0x33, 0x9a, 0x5c, 0xe4, + 0x60, 0xf1, 0x43, 0x62, 0x1b, 0x8f, 0x98, 0x9c, 0xd0, 0x4e, 0xd1, 0x8e, + 0x71, 0x4a, 0x13, 0x68, 0xe0, 0xe6, 0x90, 0x81, 0x93, 0xb8, 0xd2, 0xb0, + 0xc6, 0xe7, 0x1d, 0x39, 0xcd, 0x3c, 0x3e, 0x0f, 0x5a, 0x48, 0xc6, 0x0f, + 0x4e, 0x0d, 0x34, 0xc2, 0x19, 0xf3, 0xcf, 0x1e, 0xf5, 0x4a, 0x2b, 0xa8, + 0x03, 0x6f, 0x66, 0x0c, 0xa4, 0x91, 0xe9, 0x9a, 0x7e, 0xd2, 0x48, 0xe9, + 0xc7, 0x06, 0x9b, 0xb3, 0x60, 0x38, 0x1d, 0x7d, 0x29, 0x77, 0x15, 0x34, + 0xdb, 0x41, 0x71, 0xc5, 0x58, 0x0c, 0x8f, 0xd2, 0x91, 0x77, 0x03, 0xc9, + 0xe2, 0x81, 0x31, 0x52, 0x32, 0x38, 0x34, 0x8c, 0xe5, 0xce, 0x07, 0x15, + 0x2f, 0x51, 0x81, 0x41, 0x9f, 0xbd, 0x4d, 0xda, 0x77, 0x11, 0x8f, 0xc6, + 0x9e, 0xb0, 0xb4, 0x99, 0xc3, 0x28, 0x20, 0x64, 0x02, 0x7a, 0xd3, 0x53, + 0x78, 0xe4, 0xaf, 0x5f, 0x4e, 0x69, 0xf2, 0xf7, 0x0b, 0x0a, 0x23, 0x71, + 0xdf, 0xf1, 0xa3, 0xe6, 0xdd, 0xd4, 0xe2, 0xa4, 0xdd, 0x81, 0x9c, 0xd3, + 0x4f, 0xd4, 0x00, 0x6a, 0x79, 0x50, 0x84, 0x51, 0xd4, 0xf7, 0xf7, 0xa3, + 0x71, 0x19, 0xc8, 0xe3, 0xde, 0xa2, 0x2c, 0xfb, 0xd4, 0x31, 0xf9, 0x7d, + 0x40, 0xa0, 0x3f, 0x38, 0xc1, 0x6a, 0xd3, 0x95, 0xa4, 0x51, 0x26, 0x72, + 0xc0, 0x9c, 0x0f, 0xc2, 0x9e, 0x5c, 0x29, 0xf5, 0xa0, 0x2a, 0xe0, 0x64, + 0x54, 0x52, 0xab, 0x31, 0xce, 0x40, 0x03, 0xa5, 0x66, 0xef, 0x26, 0x04, + 0xc1, 0x81, 0x5f, 0x6a, 0x6a, 0xae, 0x1b, 0x24, 0xd3, 0x23, 0xc1, 0x1c, + 0xf5, 0x14, 0xb9, 0xe7, 0x35, 0x36, 0xe8, 0x3b, 0x8a, 0xcc, 0x70, 0x70, + 0x09, 0xf6, 0xa6, 0x0c, 0x9c, 0x82, 0x0d, 0x1b, 0xc7, 0x6e, 0x28, 0x39, + 0x23, 0xe9, 0x49, 0xd9, 0x21, 0x0b, 0x95, 0x5e, 0x36, 0x9a, 0x93, 0x70, + 0xc7, 0x1d, 0x2a, 0x3c, 0xf1, 0x81, 0xcd, 0x22, 0xb1, 0x07, 0x9e, 0x68, + 0xd4, 0xa2, 0x4c, 0x86, 0x1c, 0x53, 0x4e, 0xee, 0x80, 0xd0, 0x49, 0xea, + 0x29, 0xa4, 0xfb, 0xe4, 0xd2, 0x4f, 0xb0, 0xac, 0x23, 0x6f, 0xcf, 0x18, + 0xa0, 0x75, 0xe4, 0x60, 0xd3, 0x40, 0x67, 0x04, 0x83, 0xc6, 0x69, 0xac, + 0x8c, 0x3b, 0x91, 0x4c, 0x44, 0xe5, 0x41, 0x23, 0x07, 0x9a, 0x8d, 0xcb, + 0xfa, 0x53, 0xa3, 0x38, 0x1c, 0xf3, 0x4e, 0xeb, 0x56, 0x04, 0x23, 0x2c, + 0x06, 0x6a, 0x45, 0xc0, 0x1d, 0x69, 0xcc, 0xa8, 0x40, 0xe4, 0xe6, 0x98, + 0xc4, 0x70, 0x07, 0x5a, 0x9d, 0x98, 0xc5, 0x23, 0x9f, 0x4a, 0x63, 0x2e, + 0x1b, 0x23, 0x06, 0x9d, 0xc8, 0xce, 0x69, 0xbc, 0x1e, 0xbf, 0x85, 0x31, + 0x5c, 0x52, 0x73, 0xdb, 0xf2, 0xa4, 0xf9, 0xb8, 0xe3, 0x14, 0xdd, 0xd9, + 0x1f, 0xd6, 0x82, 0x5b, 0xd3, 0x34, 0x9f, 0x60, 0x42, 0x90, 0x41, 0xcf, + 0x5a, 0x52, 0x72, 0x3b, 0x0a, 0x6e, 0xf2, 0x4e, 0x29, 0x46, 0xd3, 0x53, + 0x60, 0x24, 0x19, 0x23, 0x14, 0xd2, 0x58, 0x70, 0x01, 0xcd, 0x1b, 0x80, + 0xe9, 0xc5, 0x38, 0x12, 0x78, 0x27, 0x34, 0x00, 0x9f, 0x36, 0x39, 0xcf, + 0x14, 0x12, 0x71, 0xea, 0x68, 0x24, 0xf4, 0x06, 0xa4, 0x52, 0x00, 0xe6, + 0x86, 0xd0, 0xc6, 0x01, 0xf2, 0x91, 0x9a, 0x69, 0x03, 0x68, 0x1d, 0x4d, + 0x4b, 0xf2, 0xe7, 0xa5, 0x31, 0x94, 0x07, 0xc7, 0xf3, 0xa2, 0xec, 0x00, + 0x01, 0xd0, 0xf1, 0x4a, 0x47, 0xbf, 0xe5, 0x41, 0x1b, 0x46, 0x0f, 0xf3, + 0xa6, 0x6e, 0xe7, 0x00, 0xf1, 0x45, 0xc0, 0x46, 0x56, 0xcf, 0xde, 0xa4, + 0x7b, 0x77, 0x64, 0xff, 0x00, 0x59, 0xee, 0x06, 0x29, 0xfb, 0x80, 0x1c, + 0x8a, 0x33, 0x81, 0xc0, 0xc8, 0xab, 0xbd, 0x86, 0x41, 0x1c, 0x2e, 0x99, + 0xc9, 0x04, 0xd2, 0x89, 0x7e, 0x62, 0x0f, 0x14, 0xa4, 0xee, 0x3c, 0x0a, + 0x5c, 0x00, 0x72, 0xc3, 0x26, 0x9b, 0x77, 0xdc, 0x42, 0x83, 0x9e, 0x48, + 0xc5, 0x2a, 0x96, 0xfc, 0x29, 0x30, 0x38, 0x66, 0x34, 0xa5, 0xb8, 0xea, + 0x2a, 0x06, 0x35, 0xc9, 0x1d, 0x17, 0x34, 0xd0, 0xfc, 0xe7, 0xbd, 0x3f, + 0x76, 0xfc, 0x1a, 0x68, 0x51, 0xdd, 0xa9, 0x88, 0x78, 0x6d, 0xc3, 0x07, + 0xf4, 0xa6, 0x6d, 0x00, 0x75, 0xc9, 0xa4, 0xe8, 0x7e, 0x51, 0x9a, 0x71, + 0xe4, 0x74, 0xe6, 0x8b, 0x86, 0xac, 0x8c, 0xe3, 0xfb, 0xb4, 0x6e, 0x3d, + 0x28, 0x27, 0xd8, 0xd2, 0x6e, 0xe7, 0x95, 0x22, 0x80, 0xb1, 0x20, 0x1c, + 0x52, 0xb4, 0x40, 0x26, 0x77, 0x60, 0xfa, 0x9a, 0x00, 0x52, 0x01, 0xc9, + 0xa9, 0x57, 0x6b, 0x30, 0x57, 0x7c, 0x29, 0xef, 0x8c, 0xd3, 0x8e, 0xaf, + 0x41, 0xa2, 0x05, 0x4c, 0x0e, 0x0e, 0x6a, 0x45, 0x23, 0x3c, 0x9a, 0x1c, + 0x80, 0xb8, 0xa8, 0xf2, 0x45, 0x27, 0xab, 0x17, 0x51, 0xec, 0x24, 0xf3, + 0x30, 0x07, 0xcb, 0x4f, 0x2a, 0x07, 0xff, 0x00, 0xae, 0x9a, 0xb2, 0x71, + 0x8c, 0xd0, 0x46, 0x5a, 0x87, 0xe4, 0x3b, 0x88, 0x54, 0x16, 0x18, 0x6a, + 0x7f, 0x00, 0x70, 0x33, 0xef, 0x51, 0xb8, 0xe3, 0x8a, 0x44, 0xf3, 0x30, + 0x4f, 0x04, 0x7a, 0x50, 0x93, 0x6a, 0xe1, 0x61, 0xce, 0x48, 0x00, 0xf3, + 0xcd, 0x0a, 0xcb, 0x9c, 0x91, 0x93, 0x48, 0x59, 0xf0, 0x7a, 0x0f, 0x6a, + 0x4c, 0x1e, 0x38, 0xc9, 0xef, 0x4e, 0xcc, 0x09, 0x91, 0xb2, 0x30, 0x38, + 0x14, 0x17, 0x0b, 0xd7, 0xbd, 0x35, 0xb1, 0x9c, 0x02, 0x68, 0x63, 0xb5, + 0x78, 0x50, 0xdf, 0x5a, 0x5a, 0x88, 0x68, 0xda, 0x4e, 0x41, 0x3f, 0x4a, + 0x76, 0x48, 0x1c, 0x53, 0x03, 0x73, 0xcf, 0x06, 0x9f, 0xb6, 0x42, 0x09, + 0x1c, 0x8a, 0x18, 0x06, 0xe3, 0xc6, 0xef, 0xd2, 0x9a, 0xce, 0xdb, 0xc6, + 0xd1, 0xc7, 0x7a, 0x6b, 0x12, 0x07, 0xfb, 0x5e, 0x94, 0xd1, 0x21, 0xc1, + 0x1f, 0x9d, 0x2f, 0x31, 0x93, 0x11, 0x99, 0x30, 0x78, 0xa7, 0x8d, 0x8a, + 0xdc, 0xe7, 0x8a, 0x62, 0xb0, 0x03, 0xde, 0x9b, 0xb8, 0xe6, 0x80, 0x1d, + 0x2a, 0xe7, 0x94, 0xc8, 0x34, 0x8c, 0xcd, 0xe9, 0x4c, 0x2c, 0xd8, 0x24, + 0x9a, 0x55, 0x62, 0x7b, 0x52, 0xdc, 0x43, 0xc2, 0x03, 0xcb, 0x7e, 0x94, + 0xf2, 0x14, 0xf1, 0xfc, 0xe9, 0x80, 0x1e, 0xbd, 0xa9, 0x32, 0x73, 0x43, + 0x63, 0xd4, 0x71, 0x8d, 0x5b, 0xdb, 0xe9, 0x49, 0xe5, 0x84, 0xfe, 0x1a, + 0x89, 0xe6, 0x96, 0x2e, 0xa9, 0x91, 0xeb, 0x52, 0x47, 0x39, 0xda, 0x09, + 0x43, 0x93, 0x57, 0xcb, 0x3b, 0x0e, 0xcc, 0x90, 0x86, 0x3c, 0xe7, 0x14, + 0x8c, 0xa4, 0x77, 0xe6, 0x94, 0x96, 0x90, 0x0c, 0x0c, 0x52, 0xe0, 0xa8, + 0xe4, 0xd4, 0x35, 0x67, 0xa8, 0xac, 0x22, 0x86, 0xdb, 0x92, 0x29, 0xe1, + 0xbd, 0x78, 0xa6, 0x70, 0x07, 0x27, 0xf5, 0xa4, 0xc7, 0x3d, 0x78, 0xa2, + 0xc0, 0x3c, 0x9c, 0x77, 0x14, 0xc1, 0x21, 0x7e, 0x0f, 0x41, 0xd3, 0x34, + 0xc2, 0x48, 0xe0, 0x0a, 0x58, 0x57, 0xfb, 0xc7, 0x9a, 0x6a, 0x3d, 0x40, + 0xb6, 0x92, 0x05, 0x40, 0x0b, 0x7e, 0x18, 0xa4, 0x66, 0x00, 0xf6, 0xcd, + 0x44, 0x30, 0x4e, 0x01, 0x1c, 0x52, 0x32, 0x0c, 0xe7, 0x77, 0x4a, 0x5b, + 0x8e, 0xe3, 0xc1, 0x23, 0x3c, 0x0c, 0x1e, 0xd4, 0xd6, 0x90, 0x6e, 0xdb, + 0x82, 0x3d, 0xe9, 0x80, 0xe5, 0x80, 0xdd, 0xd6, 0x86, 0xc8, 0x3c, 0xf4, + 0xaa, 0xb5, 0xf7, 0x0b, 0x8a, 0xe5, 0x41, 0x04, 0x73, 0x4d, 0xdc, 0x79, + 0x24, 0x62, 0x9a, 0x40, 0xc8, 0x39, 0xa4, 0xfb, 0xc3, 0x82, 0x07, 0xe1, + 0x4d, 0x22, 0x47, 0x79, 0x87, 0x68, 0xc6, 0xda, 0x88, 0x4e, 0x58, 0xed, + 0x8d, 0x94, 0x91, 0xd6, 0x97, 0xca, 0xf9, 0xc3, 0x1e, 0xa3, 0xa5, 0x34, + 0x46, 0xb1, 0xb9, 0x97, 0x6f, 0x27, 0xd0, 0x56, 0x8a, 0x2b, 0x71, 0xe8, + 0x48, 0xae, 0x58, 0x1c, 0x93, 0x52, 0x64, 0x7f, 0x15, 0x41, 0xe6, 0x12, + 0x78, 0x5e, 0xb5, 0x26, 0x58, 0x8e, 0x45, 0x43, 0x10, 0xa1, 0xf9, 0xe7, + 0xa5, 0x3f, 0x2c, 0x4f, 0xca, 0x70, 0x2a, 0x10, 0x53, 0x3c, 0xf5, 0xef, + 0x4f, 0x2d, 0x95, 0xf9, 0x05, 0x4d, 0x80, 0x5c, 0x12, 0xa0, 0xe5, 0x88, + 0xa7, 0x2c, 0x67, 0xae, 0x79, 0xa7, 0x20, 0x07, 0x1b, 0x58, 0x74, 0xf5, + 0xa4, 0x71, 0xb7, 0x1f, 0x38, 0x22, 0xa8, 0x6d, 0x0c, 0x50, 0xe1, 0xb8, + 0x3c, 0xd3, 0xc2, 0x02, 0x41, 0x23, 0x9f, 0x73, 0x9a, 0x68, 0x25, 0x8e, + 0x72, 0x69, 0x37, 0x15, 0x25, 0x49, 0x35, 0x7c, 0xd6, 0xd0, 0x57, 0x1e, + 0xe4, 0x13, 0x82, 0xa3, 0xeb, 0x4d, 0x4e, 0xea, 0x00, 0x03, 0xd6, 0x9c, + 0x8e, 0xa0, 0x0e, 0xe7, 0xde, 0x9c, 0xcc, 0xbe, 0xc4, 0x8a, 0x9b, 0xf7, + 0x11, 0x18, 0x91, 0x79, 0x01, 0xb3, 0x8e, 0xb4, 0x80, 0x6e, 0x3c, 0x0c, + 0x0a, 0x52, 0x63, 0xe8, 0x54, 0x7f, 0x8d, 0x1b, 0xb9, 0xe0, 0x1c, 0x53, + 0xf4, 0x01, 0xc1, 0x18, 0x64, 0x8e, 0xfd, 0x29, 0x00, 0x39, 0x3c, 0x71, + 0xeb, 0x4e, 0x50, 0xdd, 0xb1, 0xf8, 0xd0, 0x17, 0x19, 0xcb, 0x75, 0x3d, + 0xaa, 0x6e, 0x31, 0x00, 0x18, 0xf9, 0xb1, 0x4e, 0x45, 0x07, 0xf8, 0x80, + 0xf6, 0x14, 0x63, 0x6f, 0xa1, 0x1e, 0xf4, 0xcd, 0xa0, 0x64, 0xab, 0x1e, + 0x94, 0x90, 0xac, 0x89, 0x08, 0x5e, 0x9b, 0xb9, 0xf5, 0xa8, 0xe6, 0x6e, + 0x83, 0xb0, 0xe2, 0x8c, 0xe1, 0xbe, 0x62, 0x30, 0x3d, 0x29, 0x18, 0x86, + 0xe9, 0xc8, 0xfa, 0x55, 0x6c, 0x03, 0x43, 0x9c, 0x74, 0x18, 0xa4, 0x79, + 0x38, 0x19, 0xe2, 0x98, 0x4a, 0x97, 0xf4, 0xf6, 0xa9, 0x14, 0x06, 0xfb, + 0xc0, 0xfb, 0x71, 0x4f, 0x47, 0xb8, 0x90, 0xd5, 0xdc, 0xca, 0x4a, 0xa9, + 0x20, 0x75, 0xe3, 0xa5, 0x29, 0x52, 0x07, 0x71, 0x52, 0x6e, 0x2a, 0xbf, + 0x2f, 0x34, 0xf0, 0x77, 0x03, 0xbb, 0x9a, 0x5a, 0x74, 0x0d, 0x08, 0x95, + 0x0e, 0x3a, 0x50, 0xb9, 0x1d, 0x7a, 0x54, 0xe0, 0x67, 0xa1, 0x14, 0xc7, + 0x52, 0xa7, 0xd4, 0x52, 0x11, 0x19, 0xe4, 0xe3, 0x18, 0x35, 0x11, 0x2d, + 0xf8, 0xf6, 0xe2, 0xa7, 0x3d, 0x07, 0x38, 0xa6, 0xe5, 0x49, 0xc8, 0xe6, + 0x98, 0x88, 0x90, 0x1e, 0xe7, 0x9f, 0x6a, 0x99, 0x08, 0x38, 0xa4, 0xd8, + 0xcd, 0x8d, 0xbc, 0x51, 0xe4, 0xed, 0x39, 0xc9, 0xa6, 0xee, 0x3b, 0x12, + 0x1c, 0x03, 0xc7, 0x53, 0x4a, 0x30, 0xce, 0xaa, 0x4e, 0x06, 0x79, 0x35, + 0x11, 0x5e, 0x40, 0xce, 0x29, 0x09, 0x2a, 0x47, 0x3c, 0xe7, 0xb5, 0x3b, + 0x5d, 0x01, 0x61, 0x8e, 0x3b, 0x7b, 0x66, 0x99, 0x90, 0x05, 0x28, 0xcb, + 0x0c, 0x9e, 0xd4, 0xbb, 0x41, 0x19, 0x3c, 0x0a, 0x5c, 0xa0, 0x46, 0xc3, + 0x1d, 0x0f, 0xd2, 0x9d, 0x92, 0xbc, 0x62, 0x95, 0xa3, 0x5e, 0x08, 0x3d, + 0x3d, 0xe9, 0x0c, 0x9b, 0xce, 0x36, 0x00, 0x00, 0xc7, 0x14, 0x08, 0x72, + 0x81, 0xb7, 0x8e, 0x73, 0xd6, 0x98, 0xc8, 0x71, 0x91, 0xcd, 0x26, 0xec, + 0x0c, 0x00, 0x69, 0xc8, 0xc3, 0x1b, 0x9b, 0xf0, 0xa2, 0xc0, 0x00, 0x10, + 0x33, 0xb7, 0x14, 0xee, 0x00, 0xc7, 0x7f, 0x6a, 0x6e, 0xfe, 0x0e, 0x41, + 0x3e, 0xf4, 0xd1, 0x93, 0x93, 0x8a, 0x1e, 0x9b, 0x00, 0xe2, 0x7e, 0x51, + 0xd7, 0x34, 0xde, 0x99, 0x23, 0x9a, 0x6e, 0x4b, 0x36, 0x29, 0xdb, 0xb0, + 0x31, 0x8e, 0x69, 0x26, 0x03, 0x72, 0x49, 0x19, 0xe2, 0x97, 0x70, 0xa5, + 0x62, 0x15, 0x47, 0x4c, 0xd3, 0x01, 0x63, 0xdb, 0x8a, 0x2c, 0x31, 0xc2, + 0x40, 0x30, 0x4e, 0x69, 0xdb, 0xb7, 0x1e, 0x33, 0x4c, 0x27, 0x00, 0x52, + 0x29, 0xe7, 0xdb, 0xd6, 0x80, 0x26, 0x60, 0x0a, 0xf5, 0x19, 0xa8, 0xf2, + 0x32, 0x77, 0x0c, 0x7d, 0x29, 0x0e, 0x09, 0xef, 0x48, 0x48, 0xec, 0x72, + 0x7d, 0xe9, 0xd8, 0x05, 0x08, 0x8d, 0xd4, 0x91, 0xe8, 0x69, 0x8b, 0x18, + 0x85, 0xc9, 0x24, 0xb8, 0x1d, 0x39, 0xa0, 0x1c, 0x8e, 0x78, 0xe6, 0x9d, + 0x90, 0x3a, 0x53, 0xe7, 0x69, 0x58, 0x77, 0x14, 0xc8, 0x64, 0xe9, 0xc0, + 0xa0, 0x8f, 0x7e, 0x69, 0x01, 0xc8, 0xcd, 0x38, 0x2e, 0x5b, 0xad, 0x66, + 0x98, 0x24, 0x28, 0x61, 0x8a, 0x61, 0xc6, 0x7a, 0xd2, 0xb8, 0x23, 0xdc, + 0x53, 0x40, 0x3c, 0x8e, 0xd4, 0xae, 0x31, 0xdb, 0x00, 0x00, 0xe6, 0x8f, + 0x98, 0xe7, 0x14, 0xd0, 0x40, 0xfa, 0xd3, 0xd4, 0xfb, 0x66, 0x93, 0x43, + 0x6c, 0x40, 0x0f, 0x24, 0x8e, 0x29, 0xfb, 0x80, 0xda, 0x70, 0x32, 0x28, + 0x5c, 0x1c, 0xd2, 0x36, 0xd2, 0x46, 0x69, 0xa1, 0x21, 0xaa, 0xc4, 0x93, + 0x9e, 0x94, 0xa5, 0x79, 0x24, 0xf5, 0xa5, 0xde, 0xa0, 0x7d, 0xda, 0x61, + 0x62, 0x4e, 0x06, 0x71, 0xef, 0x4d, 0x05, 0xc3, 0xe6, 0xe4, 0xe7, 0x8a, + 0x4e, 0xc7, 0x71, 0xa5, 0x00, 0x01, 0x82, 0x7f, 0x0a, 0x43, 0x96, 0x20, + 0x53, 0xb2, 0x62, 0xb8, 0xfc, 0x00, 0xbc, 0x1a, 0x69, 0x62, 0xa7, 0x83, + 0xf8, 0xd3, 0x43, 0x75, 0xed, 0x48, 0xe3, 0x07, 0x8a, 0x7b, 0x0e, 0xe4, + 0xa3, 0x81, 0xc9, 0x15, 0x13, 0xe7, 0xd6, 0x94, 0x31, 0x00, 0x77, 0x06, + 0x82, 0xb9, 0x39, 0xc0, 0x02, 0x92, 0x57, 0x40, 0x2f, 0x9a, 0x00, 0xc6, + 0x39, 0xa0, 0x6d, 0x29, 0x9a, 0x8f, 0x0d, 0x9e, 0x94, 0xa0, 0x9e, 0xf4, + 0x6c, 0x02, 0xe0, 0x0f, 0xba, 0x0d, 0x28, 0x24, 0x76, 0xa0, 0x36, 0x07, + 0x23, 0xf1, 0xa6, 0x87, 0x04, 0xf3, 0x45, 0xc2, 0xe3, 0x98, 0x65, 0x72, + 0x3a, 0xd3, 0x42, 0x9e, 0xfc, 0x53, 0xb0, 0x5b, 0x81, 0x4c, 0x05, 0x83, + 0x7c, 0xd4, 0xb7, 0x40, 0x39, 0x88, 0x55, 0xcf, 0xa5, 0x2a, 0xcb, 0x49, + 0x95, 0x65, 0xcd, 0x22, 0xae, 0x06, 0xe5, 0xe9, 0x4a, 0xc3, 0x44, 0x80, + 0xe4, 0xe7, 0x14, 0xa4, 0x03, 0xd0, 0x1c, 0xd3, 0x53, 0x2c, 0x7d, 0x2a, + 0x42, 0x42, 0xfd, 0x7d, 0x69, 0x30, 0x1c, 0x1b, 0x70, 0xc7, 0x43, 0x4d, + 0x91, 0x5c, 0x8e, 0xff, 0x00, 0x5a, 0x40, 0x7f, 0x3f, 0x6a, 0x76, 0xee, + 0x33, 0xc5, 0x25, 0xdd, 0x0c, 0x8b, 0x93, 0x81, 0x8f, 0xce, 0x93, 0x63, + 0x0e, 0x6a, 0x5e, 0x18, 0xf1, 0x48, 0x51, 0xb2, 0x08, 0x6c, 0x8a, 0x10, + 0x0d, 0xcb, 0x63, 0x91, 0x4c, 0xc9, 0xe7, 0x6d, 0x4a, 0x54, 0x85, 0xe7, + 0x34, 0xd6, 0x24, 0x73, 0x81, 0x8a, 0x68, 0x06, 0x0d, 0xde, 0xdf, 0x4a, + 0x0e, 0x47, 0xf3, 0xcd, 0x0d, 0xd3, 0x22, 0x85, 0x5c, 0xa7, 0x3d, 0x7e, + 0xb4, 0xec, 0xc0, 0x68, 0x21, 0xba, 0xd3, 0xb0, 0x08, 0xc7, 0xe5, 0x48, + 0x13, 0x68, 0x38, 0x23, 0x3e, 0xf4, 0xc2, 0x1b, 0xfb, 0xd8, 0xa2, 0xda, + 0xe8, 0x04, 0xd8, 0x50, 0x3a, 0xf3, 0xed, 0x51, 0xbc, 0x67, 0x1c, 0x50, + 0x13, 0xbf, 0x7f, 0x6a, 0x76, 0x18, 0x71, 0x45, 0xde, 0xe2, 0x08, 0x14, + 0xae, 0x4b, 0x11, 0xec, 0x2a, 0x62, 0x73, 0xdb, 0x8a, 0x87, 0xe7, 0xcf, + 0x0a, 0x31, 0x4a, 0x03, 0xf3, 0xc7, 0x4a, 0x1e, 0xa3, 0x09, 0x10, 0x11, + 0x95, 0x1c, 0x8a, 0x11, 0xbe, 0x5f, 0x98, 0x1f, 0xca, 0x90, 0x37, 0x3f, + 0x31, 0x22, 0xa5, 0x55, 0x3b, 0x72, 0x08, 0x34, 0x37, 0x6d, 0x18, 0xc6, + 0x26, 0xdc, 0xf0, 0x0d, 0x3d, 0x80, 0x2a, 0x7b, 0x1a, 0x8d, 0xf2, 0x9f, + 0x32, 0x8c, 0xfb, 0x0a, 0x79, 0x95, 0x48, 0x18, 0x53, 0xee, 0x48, 0xa4, + 0xbb, 0x8d, 0x11, 0x64, 0x83, 0xf3, 0x1c, 0xd3, 0xd3, 0x6d, 0x21, 0x55, + 0x3d, 0xcf, 0xd2, 0x99, 0x80, 0x0f, 0xdd, 0xfc, 0x68, 0xb9, 0x36, 0x24, + 0x28, 0xbb, 0x89, 0xc7, 0xe5, 0x4c, 0x70, 0xcb, 0xc8, 0x07, 0x14, 0xfc, + 0xe1, 0x69, 0x46, 0x09, 0xc9, 0xa7, 0x71, 0xd8, 0x8b, 0xcc, 0x5c, 0xd2, + 0xf9, 0xb8, 0x5e, 0x07, 0xb5, 0x24, 0x88, 0x99, 0xef, 0x9f, 0x5a, 0x69, + 0xb7, 0x4d, 0xb9, 0x00, 0xe7, 0xeb, 0x56, 0x94, 0x58, 0xb4, 0x24, 0x01, + 0xd8, 0x65, 0x88, 0x07, 0xda, 0x9c, 0x17, 0x81, 0x93, 0xf9, 0x53, 0x23, + 0x03, 0x0b, 0xc9, 0xfa, 0x1a, 0x52, 0x32, 0x4f, 0x38, 0xa8, 0x93, 0xd4, + 0x6c, 0x6b, 0xb1, 0xcf, 0x1d, 0x29, 0x8a, 0xe4, 0xb6, 0x79, 0x18, 0xf6, + 0xa9, 0x80, 0x0a, 0x31, 0x8f, 0xc6, 0x97, 0x6a, 0x00, 0x49, 0x3c, 0xf6, + 0x1e, 0xb5, 0x56, 0x42, 0xb1, 0x08, 0x3c, 0xee, 0x62, 0x71, 0xf4, 0xa9, + 0x7c, 0xd2, 0x57, 0x2a, 0x4f, 0xd2, 0x8d, 0xc0, 0x8c, 0x60, 0x62, 0x9a, + 0x38, 0x6e, 0x47, 0xe5, 0x4b, 0x46, 0xc0, 0x67, 0x98, 0x58, 0xee, 0x65, + 0xe4, 0xfb, 0x54, 0x85, 0x43, 0x0c, 0xe4, 0x03, 0x4e, 0x5c, 0x01, 0xbb, + 0x02, 0x9d, 0xb9, 0x7d, 0xb3, 0x4e, 0x4d, 0x74, 0x1b, 0xb0, 0xc5, 0x04, + 0xf0, 0x68, 0xc1, 0xc5, 0x48, 0x24, 0x5c, 0x1f, 0x5f, 0x6a, 0x4c, 0xb1, + 0x1d, 0x05, 0x4d, 0x84, 0x37, 0x60, 0x3c, 0x9c, 0xe7, 0xd2, 0x90, 0x60, + 0x73, 0x8a, 0x91, 0x14, 0xff, 0x00, 0x11, 0x06, 0x9a, 0xe5, 0x73, 0xc8, + 0xc5, 0x4b, 0x18, 0x8c, 0xdc, 0x64, 0x1a, 0x6e, 0xf6, 0xeb, 0x83, 0x49, + 0xb7, 0x3d, 0x29, 0xdb, 0x4e, 0x68, 0xb1, 0x23, 0x59, 0xd5, 0xc1, 0x0c, + 0x69, 0xc8, 0x40, 0x8f, 0x09, 0xcf, 0xd6, 0x83, 0x14, 0x6c, 0x08, 0x61, + 0xd6, 0x90, 0x40, 0x14, 0xed, 0x46, 0xda, 0x0d, 0x5a, 0xd5, 0x5a, 0xe5, + 0x21, 0x56, 0x49, 0x01, 0xe4, 0x71, 0xeb, 0x52, 0x2b, 0xef, 0x1c, 0x93, + 0x48, 0x22, 0x25, 0x40, 0x0f, 0x93, 0x49, 0x82, 0xa3, 0x19, 0x24, 0xd4, + 0x34, 0x16, 0x17, 0x1b, 0x9b, 0x85, 0xe3, 0xbe, 0x69, 0xa6, 0x22, 0x4e, + 0x43, 0xe3, 0xda, 0x84, 0xc9, 0x3f, 0x31, 0xa9, 0x70, 0x80, 0x71, 0xc7, + 0x7a, 0xa4, 0xc6, 0x47, 0xb4, 0xaa, 0xe0, 0xf5, 0xe9, 0x4d, 0xe5, 0x4e, + 0x0d, 0x4c, 0xdc, 0x00, 0xc3, 0x91, 0xef, 0x51, 0xb9, 0x70, 0x0b, 0x2f, + 0xde, 0x3e, 0xb5, 0x5b, 0x93, 0x61, 0x85, 0xb0, 0x3e, 0x51, 0xf8, 0xd3, + 0x44, 0x8d, 0x9c, 0xb7, 0x14, 0xe4, 0x59, 0x7c, 0xcc, 0x94, 0x53, 0xee, + 0x4f, 0x4a, 0x26, 0x2a, 0x80, 0x9d, 0x9f, 0x35, 0x36, 0xad, 0xa0, 0xda, + 0x1f, 0xe6, 0x0d, 0xc3, 0x20, 0x50, 0xd2, 0x2b, 0xf7, 0xc0, 0xaa, 0x2f, + 0x21, 0xda, 0x58, 0x9c, 0x66, 0x9f, 0x10, 0x76, 0x50, 0xe0, 0x65, 0x48, + 0xe2, 0x9b, 0x86, 0x82, 0xd4, 0xb4, 0xa3, 0x9f, 0x63, 0xeb, 0x4f, 0xca, + 0x46, 0x71, 0xd7, 0x35, 0x4f, 0xcf, 0x6d, 0xdb, 0x76, 0x91, 0xf5, 0xa9, + 0x01, 0x63, 0xd7, 0xbd, 0x4b, 0x4d, 0x6e, 0x04, 0xc5, 0xd5, 0x8f, 0x04, + 0xe3, 0xda, 0x9d, 0xbc, 0x0e, 0x31, 0x9a, 0x8d, 0x57, 0x8f, 0x4a, 0x46, + 0x53, 0x8c, 0xab, 0x00, 0x69, 0x2e, 0xc8, 0x09, 0x19, 0x7a, 0x10, 0x05, + 0x1b, 0x86, 0x70, 0x7a, 0xd3, 0x06, 0x7a, 0x66, 0x95, 0x43, 0x12, 0x49, + 0x1c, 0x0e, 0x86, 0xaa, 0xd7, 0x42, 0xb8, 0x32, 0xf3, 0xc0, 0xe2, 0x9c, + 0xa1, 0x54, 0x7e, 0x94, 0xc7, 0x76, 0x07, 0xaf, 0x14, 0x89, 0x28, 0x70, + 0x77, 0x71, 0x8a, 0x49, 0x3e, 0x83, 0x4a, 0xe4, 0x26, 0xef, 0x6a, 0xf1, + 0xce, 0x29, 0x6d, 0xa6, 0x66, 0x9d, 0x5a, 0x4f, 0xbb, 0x8c, 0xe0, 0x8a, + 0x94, 0xa2, 0x30, 0x03, 0x68, 0x02, 0x85, 0x45, 0x43, 0xbb, 0x19, 0xf4, + 0xe7, 0xa5, 0x6b, 0x09, 0x41, 0x7a, 0x8d, 0x59, 0x13, 0x12, 0x58, 0x13, + 0xd3, 0x3e, 0x95, 0x16, 0x02, 0xb7, 0x38, 0x3f, 0x8d, 0x3f, 0x70, 0x63, + 0xc8, 0xe2, 0x91, 0x82, 0x67, 0x85, 0xe3, 0xd6, 0xb3, 0xea, 0x4b, 0x43, + 0x71, 0xfd, 0xdc, 0xd3, 0x9b, 0x70, 0x03, 0x9f, 0xca, 0x91, 0x4e, 0xe0, + 0x58, 0x0e, 0x29, 0x99, 0x7d, 0x9b, 0x82, 0x67, 0x9f, 0x5e, 0x68, 0xb3, + 0x0b, 0x0f, 0xdd, 0x82, 0x41, 0xc9, 0xf4, 0xe6, 0x96, 0x37, 0xdd, 0x9c, + 0x0f, 0xad, 0x22, 0xee, 0xf9, 0x4b, 0x60, 0x7b, 0x53, 0xca, 0x1c, 0x16, + 0x50, 0x0f, 0xbe, 0x69, 0xbd, 0x06, 0x39, 0xa5, 0xc7, 0xcb, 0xd0, 0xd4, + 0x64, 0xe0, 0x75, 0x14, 0xa9, 0x10, 0xde, 0x49, 0x53, 0xbb, 0xeb, 0x43, + 0x42, 0x87, 0x24, 0xb0, 0x53, 0xf5, 0xa3, 0x91, 0x05, 0x86, 0xa9, 0x77, + 0x61, 0xd7, 0x14, 0xec, 0xe0, 0xb0, 0x20, 0xf1, 0xef, 0x48, 0x87, 0x6f, + 0x43, 0x8f, 0x7a, 0x50, 0x3a, 0x93, 0xce, 0x68, 0x24, 0x52, 0x7e, 0x50, + 0x36, 0xe7, 0xde, 0x9b, 0x9e, 0x70, 0x57, 0x14, 0xa4, 0x15, 0x8c, 0xe0, + 0xe4, 0xfb, 0xd2, 0x16, 0x62, 0xa3, 0x20, 0x80, 0x3a, 0x52, 0xb6, 0x81, + 0x61, 0xa7, 0x69, 0x38, 0xe9, 0x4f, 0x53, 0xe9, 0xc8, 0xa8, 0xf2, 0x33, + 0xef, 0xde, 0x9e, 0xbb, 0x70, 0x57, 0x3c, 0xd0, 0x03, 0xe2, 0x6c, 0xf2, + 0x41, 0x03, 0xb6, 0x69, 0xf9, 0x07, 0xee, 0xd4, 0x19, 0x74, 0x6c, 0x6d, + 0xce, 0x69, 0xc8, 0xf2, 0x07, 0xe5, 0x40, 0xf4, 0xa7, 0x6b, 0x85, 0x87, + 0x16, 0x2a, 0x70, 0x47, 0x34, 0xbb, 0x98, 0x82, 0x7b, 0xd3, 0x0b, 0x8c, + 0xf3, 0x82, 0x69, 0x1a, 0x5e, 0x30, 0x3a, 0x1a, 0x97, 0x71, 0x6c, 0x37, + 0x05, 0x98, 0x6e, 0x3d, 0x3b, 0x54, 0xaa, 0x01, 0xe7, 0x3c, 0x7a, 0x54, + 0x44, 0x8f, 0xc6, 0x9c, 0x0e, 0x00, 0xc8, 0xa6, 0xd8, 0x12, 0x93, 0xb0, + 0x67, 0xb5, 0x26, 0x79, 0xce, 0x73, 0xe8, 0x29, 0xa1, 0xb7, 0x53, 0x59, + 0x49, 0x3d, 0x79, 0xf5, 0x14, 0xd2, 0x41, 0x71, 0xe7, 0x1e, 0x98, 0xa4, + 0xdb, 0xf3, 0x02, 0xd5, 0x19, 0xde, 0x64, 0xc6, 0x78, 0x15, 0x21, 0xfd, + 0xe3, 0x0d, 0xdd, 0xaa, 0x94, 0x44, 0xec, 0x48, 0x49, 0x2b, 0x85, 0x1c, + 0x54, 0x62, 0x6d, 0x8b, 0xf3, 0x00, 0x32, 0x7a, 0xd3, 0xb7, 0xec, 0x3f, + 0x2e, 0x30, 0x7a, 0x8a, 0x09, 0x5c, 0x63, 0x19, 0xa3, 0x60, 0x14, 0x9d, + 0xc3, 0x8e, 0x94, 0xd5, 0xc8, 0xe4, 0x7e, 0x34, 0x16, 0xf4, 0xed, 0x4d, + 0x67, 0x20, 0x71, 0x49, 0x2b, 0xb0, 0x03, 0x82, 0xe4, 0xe4, 0xd2, 0x86, + 0x09, 0xdf, 0x27, 0xae, 0x0d, 0x30, 0x67, 0x93, 0x4d, 0x2a, 0x59, 0xb9, + 0xef, 0x40, 0x13, 0x7d, 0xa0, 0x0c, 0x70, 0x3f, 0x0a, 0x67, 0x9b, 0xbd, + 0xba, 0xf1, 0x48, 0x53, 0xe5, 0xc0, 0xa6, 0x95, 0xc2, 0x8c, 0x76, 0xa4, + 0x22, 0x44, 0x42, 0x49, 0x0b, 0xdb, 0x9e, 0xb4, 0xc6, 0x6e, 0xbc, 0xfe, + 0x34, 0xbd, 0x07, 0xbd, 0x35, 0x9b, 0xdb, 0x8a, 0x7a, 0x0d, 0x31, 0xe5, + 0x9b, 0x61, 0xf9, 0x73, 0x4a, 0xae, 0x78, 0x0c, 0x3b, 0x54, 0x21, 0xce, + 0x3a, 0x52, 0xe4, 0x93, 0x40, 0x5c, 0x53, 0xb8, 0xc8, 0x4f, 0x45, 0xf7, + 0xa7, 0x2a, 0x8c, 0xf2, 0xd4, 0xc0, 0x49, 0x38, 0xa5, 0x03, 0x1f, 0x5a, + 0x4e, 0xc1, 0x72, 0x52, 0x58, 0x81, 0x82, 0x2a, 0x32, 0xb9, 0xea, 0x71, + 0x40, 0x72, 0x01, 0x04, 0x73, 0xeb, 0x43, 0x64, 0xe3, 0xd6, 0x95, 0xec, + 0x31, 0x08, 0x1d, 0x28, 0x0b, 0xd3, 0x22, 0x95, 0x41, 0xef, 0xda, 0x9f, + 0x9c, 0x93, 0x9a, 0x97, 0x65, 0xa8, 0x08, 0xc3, 0x34, 0x60, 0xaa, 0xfa, + 0x8a, 0x37, 0x2e, 0x3d, 0xe9, 0x37, 0x83, 0x90, 0x29, 0x6e, 0x08, 0x55, + 0x20, 0xf5, 0xa4, 0xce, 0x0f, 0x02, 0x90, 0x11, 0x9f, 0xd2, 0x83, 0x80, + 0x3a, 0xd2, 0xb0, 0xc0, 0x7d, 0xea, 0x78, 0x52, 0xc7, 0x8e, 0x29, 0xb8, + 0x18, 0xe3, 0xa5, 0x0a, 0xe5, 0x7a, 0x82, 0x28, 0x02, 0x40, 0xb9, 0xef, + 0x4d, 0xe0, 0xe4, 0x53, 0xd1, 0x8e, 0xec, 0x9a, 0x63, 0x92, 0x58, 0x05, + 0x23, 0x35, 0x56, 0x01, 0xbb, 0x88, 0x38, 0xef, 0x4d, 0x76, 0x20, 0x83, + 0x9e, 0x29, 0xe4, 0x67, 0xe5, 0xef, 0xeb, 0x4c, 0x08, 0x58, 0x60, 0xfe, + 0xb5, 0x51, 0x4b, 0x70, 0x0f, 0x30, 0x37, 0x43, 0x83, 0x4e, 0x07, 0x7f, + 0x39, 0xa6, 0xf9, 0x24, 0x1e, 0x00, 0xa5, 0xda, 0xc8, 0x01, 0xc6, 0x05, + 0x20, 0xb0, 0xae, 0x03, 0x0c, 0xf7, 0xa8, 0xc7, 0x03, 0x9e, 0x4d, 0x4d, + 0x19, 0xc7, 0x34, 0xd6, 0xeb, 0xcf, 0x27, 0xda, 0x81, 0xd8, 0x66, 0xec, + 0x8e, 0x06, 0x29, 0xe1, 0x38, 0xc9, 0x3c, 0xfa, 0x52, 0x67, 0x23, 0x91, + 0x9c, 0x54, 0x65, 0xc9, 0x3d, 0x68, 0xf4, 0x10, 0xf2, 0x58, 0x1c, 0x0a, + 0x63, 0x1d, 0xbc, 0x91, 0xf8, 0x52, 0xef, 0x34, 0xa4, 0xf5, 0x38, 0xa1, + 0x5b, 0xa8, 0x0d, 0xf3, 0x37, 0x8e, 0x00, 0xfc, 0xe8, 0x04, 0xe4, 0x13, + 0xd8, 0x52, 0x08, 0xd4, 0x3e, 0xe1, 0xd4, 0xf5, 0xa7, 0x71, 0xde, 0x9e, + 0xfb, 0x03, 0x1e, 0x8c, 0x31, 0xc1, 0xa5, 0xea, 0xbb, 0x81, 0xa8, 0xc0, + 0x5e, 0x18, 0x0e, 0x4d, 0x48, 0x73, 0x8c, 0xe3, 0x3e, 0xd4, 0x59, 0x82, + 0x1b, 0xbb, 0x9c, 0x10, 0x0d, 0x34, 0xe7, 0xa0, 0x3c, 0x52, 0x94, 0x6c, + 0x64, 0x0f, 0xd6, 0x98, 0xcc, 0x47, 0x18, 0xa9, 0x5b, 0x8c, 0x94, 0x1c, + 0x00, 0x0d, 0x05, 0x88, 0x35, 0x12, 0x7d, 0xd3, 0xc7, 0x3f, 0x5a, 0x96, + 0x33, 0x90, 0x72, 0x78, 0xa7, 0x64, 0x04, 0xa1, 0xb8, 0xe7, 0x02, 0x98, + 0x46, 0x49, 0x34, 0xf0, 0x30, 0x40, 0x23, 0xf5, 0xa9, 0x30, 0x70, 0x31, + 0x8a, 0xcd, 0xe8, 0x3b, 0x5c, 0x84, 0x28, 0xc7, 0x3d, 0x7e, 0xb4, 0xa2, + 0x51, 0x19, 0xda, 0x07, 0xe3, 0x43, 0xf1, 0x83, 0x8f, 0xc2, 0x95, 0x76, + 0xbe, 0x73, 0xc7, 0xe1, 0x46, 0xa3, 0x0f, 0x33, 0x78, 0xc6, 0x33, 0x4a, + 0x47, 0x1e, 0xd4, 0xc5, 0x4d, 0xac, 0xcc, 0x09, 0xa1, 0x9f, 0xa8, 0x34, + 0x5a, 0xc0, 0x36, 0x55, 0xca, 0xe4, 0x7e, 0x75, 0x12, 0xb9, 0xdb, 0x8e, + 0x43, 0x53, 0xcf, 0x38, 0xc9, 0xcd, 0x37, 0xdf, 0x9c, 0xd5, 0xa6, 0x48, + 0xef, 0x3b, 0x38, 0x05, 0x4f, 0xd6, 0x98, 0x58, 0x31, 0xa9, 0x54, 0x6e, + 0x03, 0x1c, 0x7e, 0x14, 0xe6, 0x45, 0x03, 0xee, 0xf3, 0x4a, 0xe9, 0x31, + 0x91, 0x21, 0x39, 0xc6, 0x38, 0xf7, 0xa5, 0xdf, 0x83, 0xc5, 0x35, 0xdf, + 0x1c, 0x6d, 0xe9, 0x4a, 0x1f, 0x7a, 0x74, 0xc1, 0x14, 0xec, 0x84, 0x4c, + 0xae, 0x30, 0x49, 0x38, 0x3f, 0xce, 0x82, 0xf9, 0x19, 0x07, 0x9a, 0xac, + 0xcc, 0x71, 0xd7, 0x9a, 0x10, 0x9c, 0xf2, 0x47, 0x35, 0x0d, 0x31, 0x96, + 0x19, 0xd3, 0xf8, 0xb1, 0x9f, 0x4a, 0x51, 0xb7, 0xf8, 0x4f, 0x5e, 0xde, + 0x95, 0x1e, 0x06, 0x72, 0x7a, 0xd0, 0x81, 0x06, 0x4b, 0x96, 0x07, 0xb6, + 0x39, 0xa3, 0xa8, 0xd3, 0x15, 0x89, 0x1c, 0x03, 0xf5, 0xa6, 0xb1, 0x21, + 0x40, 0x38, 0x34, 0x3b, 0x0c, 0x60, 0x64, 0x54, 0x26, 0x5f, 0x98, 0x28, + 0xeb, 0x54, 0x95, 0xf6, 0x02, 0x60, 0x46, 0x3a, 0xf3, 0x47, 0xd7, 0x26, + 0x98, 0x31, 0x8c, 0xb7, 0xe5, 0x4e, 0x0e, 0x31, 0xc1, 0xa5, 0xaa, 0x01, + 0x4c, 0x8a, 0x78, 0x22, 0x8d, 0xd8, 0xe8, 0x29, 0x9b, 0xd5, 0xc1, 0xee, + 0x69, 0xa2, 0x4d, 0xbd, 0x14, 0xd3, 0xb3, 0x11, 0x6a, 0x19, 0x11, 0x27, + 0x49, 0x76, 0x2b, 0xed, 0x39, 0xda, 0xdd, 0x0d, 0x2d, 0xc4, 0x9f, 0x68, + 0xb8, 0x79, 0x76, 0xaa, 0x6e, 0x39, 0xda, 0x9c, 0x01, 0x55, 0x0b, 0x37, + 0x51, 0x9f, 0xc2, 0x91, 0x64, 0xf4, 0xa7, 0x17, 0x2e, 0x5e, 0x5e, 0x80, + 0x58, 0x2c, 0x3a, 0xd3, 0x00, 0x2c, 0xd9, 0xc8, 0xc0, 0xed, 0x8a, 0x68, + 0xc9, 0xe2, 0xa4, 0xc1, 0x03, 0x96, 0x19, 0x3d, 0xa8, 0x49, 0x00, 0x8c, + 0x71, 0xd3, 0xf4, 0x34, 0xc2, 0xde, 0x86, 0x90, 0xc7, 0x23, 0x67, 0x00, + 0x05, 0xc7, 0x23, 0xd6, 0x84, 0xc8, 0x5c, 0x79, 0x6d, 0xf8, 0xd3, 0x70, + 0xec, 0x3b, 0x0a, 0xac, 0x47, 0x51, 0x4e, 0x24, 0xe3, 0x81, 0x9a, 0x52, + 0x17, 0x03, 0x06, 0x9c, 0x50, 0x7c, 0xb8, 0xe9, 0xde, 0xa5, 0x25, 0xd5, + 0x85, 0x88, 0x4b, 0xb2, 0xff, 0x00, 0x09, 0xa5, 0x0c, 0xdc, 0x6e, 0x04, + 0x54, 0x98, 0x09, 0xc0, 0xc9, 0xa8, 0xc9, 0x27, 0x39, 0xe1, 0x7d, 0x6a, + 0xb4, 0xe8, 0x1a, 0x0a, 0x0e, 0xe3, 0xf2, 0x9a, 0x5c, 0x91, 0x8e, 0x69, + 0xab, 0xe5, 0x82, 0x38, 0xc9, 0xf5, 0xa9, 0x0a, 0x46, 0xdc, 0x8e, 0x0f, + 0xb5, 0x16, 0x8b, 0x0b, 0x20, 0x32, 0x63, 0xa1, 0x24, 0x7d, 0x29, 0x0b, + 0x01, 0x90, 0x40, 0xcd, 0x29, 0x2b, 0xd0, 0x9e, 0x7b, 0x52, 0x06, 0x5c, + 0xff, 0x00, 0x5a, 0x5a, 0x00, 0xe5, 0x20, 0x0e, 0x94, 0x87, 0xf1, 0xa1, + 0xb1, 0x8c, 0x83, 0x51, 0x12, 0xf9, 0xe9, 0xc5, 0x4b, 0x5d, 0x84, 0x4b, + 0x9c, 0x0a, 0x39, 0x23, 0x8f, 0xe7, 0x51, 0x05, 0xcf, 0x5a, 0x51, 0x22, + 0x6e, 0x2a, 0x09, 0xc8, 0xa7, 0x1b, 0x85, 0x89, 0x95, 0x88, 0x5e, 0x94, + 0xa5, 0x81, 0x00, 0x6d, 0xed, 0xd6, 0x9b, 0x82, 0x57, 0xe5, 0x3f, 0x8d, + 0x26, 0x1b, 0x90, 0x48, 0xcd, 0x0c, 0x04, 0x62, 0xe0, 0xfc, 0xa4, 0x1a, + 0x93, 0x69, 0x61, 0x92, 0x7a, 0x8e, 0xf5, 0x10, 0x07, 0x77, 0xd3, 0xd6, + 0x9d, 0xb9, 0xd8, 0x72, 0x00, 0x5a, 0xa4, 0x9a, 0xd8, 0x76, 0xec, 0x2a, + 0xa0, 0x76, 0xc9, 0x60, 0x9b, 0x7b, 0x67, 0xad, 0x38, 0x92, 0x33, 0x8e, + 0x47, 0xad, 0x42, 0xcc, 0x01, 0xce, 0x38, 0xe9, 0x41, 0x72, 0xeb, 0x8c, + 0x11, 0xf4, 0xaa, 0x7a, 0xd9, 0x58, 0x1d, 0xc7, 0x09, 0x39, 0x1c, 0xe7, + 0xeb, 0x4f, 0x2a, 0x48, 0x27, 0x82, 0xde, 0xb5, 0x5c, 0x22, 0x0e, 0xc7, + 0xf1, 0xa9, 0xc4, 0x9b, 0x14, 0x60, 0x53, 0x9c, 0x79, 0x75, 0x4c, 0x19, + 0x0c, 0x83, 0x9c, 0x32, 0x01, 0xc7, 0xa5, 0x09, 0x17, 0xca, 0x00, 0x90, + 0xaf, 0xe1, 0x52, 0x33, 0x82, 0x39, 0xe6, 0xa2, 0xf3, 0x14, 0x10, 0x02, + 0xb6, 0x68, 0x4e, 0x4d, 0x09, 0x79, 0x0f, 0xf2, 0xc0, 0x39, 0x56, 0xe9, + 0x48, 0x8a, 0xfb, 0xb9, 0xc6, 0x33, 0xcf, 0x14, 0xe8, 0x99, 0xb0, 0x49, + 0x8c, 0x81, 0x4a, 0xf7, 0x1b, 0x70, 0xa5, 0x48, 0x27, 0xa5, 0x2b, 0xc9, + 0xe9, 0x61, 0xea, 0x4b, 0xb1, 0x4f, 0x7e, 0x29, 0x85, 0x76, 0xf0, 0xbc, + 0xd4, 0x2d, 0x26, 0x30, 0x41, 0xfc, 0x29, 0x86, 0x49, 0x5a, 0x50, 0xa7, + 0x28, 0x3e, 0x95, 0x4a, 0x94, 0xb7, 0x61, 0xca, 0xcb, 0x40, 0x6e, 0x1c, + 0x75, 0xa6, 0x36, 0xe2, 0xdd, 0x70, 0x3e, 0xb4, 0xe1, 0x1b, 0x74, 0xdf, + 0xf4, 0xc0, 0xa8, 0xc0, 0x7c, 0x63, 0xd7, 0xd6, 0xa6, 0xd6, 0x15, 0x86, + 0xb0, 0xdc, 0x30, 0x73, 0xc5, 0x04, 0xaa, 0xa0, 0xce, 0x3d, 0xaa, 0x60, + 0x8b, 0xb4, 0x73, 0xcf, 0x7a, 0x8f, 0xf7, 0x7d, 0xc6, 0x71, 0x55, 0xcd, + 0x75, 0x60, 0xd4, 0x94, 0x80, 0x40, 0xa8, 0xc6, 0x41, 0xc1, 0xc1, 0xf4, + 0xa7, 0x07, 0xca, 0xed, 0xda, 0x48, 0xf6, 0xa3, 0xe5, 0x62, 0x32, 0xb8, + 0xf4, 0xac, 0xe3, 0xdd, 0x8d, 0x08, 0x11, 0xb9, 0x05, 0xb8, 0xa7, 0x12, + 0x14, 0xe7, 0xae, 0x29, 0x8f, 0x9d, 0xd8, 0xce, 0x73, 0xe9, 0x49, 0x93, + 0x8c, 0x1f, 0xd6, 0x9b, 0xb9, 0x37, 0x26, 0x59, 0x95, 0x54, 0xfc, 0xbc, + 0x9a, 0x68, 0x93, 0x20, 0x12, 0x40, 0x1e, 0x95, 0x0b, 0x64, 0x72, 0x4f, + 0xe1, 0x41, 0x2a, 0x07, 0xdd, 0xeb, 0xc7, 0x34, 0xac, 0xb6, 0x19, 0x29, + 0x75, 0x66, 0x03, 0x83, 0x52, 0x03, 0xef, 0xc5, 0x31, 0x15, 0x71, 0xd3, + 0x1e, 0xf4, 0xe0, 0x42, 0xae, 0x30, 0x48, 0x34, 0x9a, 0x48, 0x06, 0xa1, + 0x24, 0x9c, 0xb6, 0x3f, 0x1a, 0x79, 0xda, 0x33, 0xb4, 0x76, 0xeb, 0x51, + 0x94, 0x45, 0x6d, 0xc3, 0x39, 0x34, 0x85, 0x8e, 0x71, 0xd4, 0x0f, 0x4a, + 0xb4, 0xd7, 0x41, 0x21, 0x21, 0x24, 0x33, 0x6f, 0x3c, 0x67, 0x8a, 0x98, + 0xe3, 0x20, 0x97, 0xe3, 0x15, 0x58, 0x36, 0xe7, 0xc6, 0xd2, 0x06, 0x69, + 0x58, 0x30, 0x3e, 0xa2, 0x93, 0x7d, 0xc5, 0x76, 0x48, 0xcd, 0xce, 0x47, + 0xe3, 0x48, 0xce, 0x7e, 0xee, 0x71, 0x50, 0xb3, 0x9e, 0x28, 0xdd, 0xd7, + 0xb9, 0x34, 0x26, 0x21, 0xe4, 0x05, 0xe4, 0x1c, 0xb5, 0x30, 0x97, 0x5e, + 0x73, 0x9f, 0x6a, 0x40, 0x5b, 0xbf, 0x4a, 0x70, 0x27, 0x69, 0xeb, 0xf5, + 0xaa, 0xbb, 0x01, 0xe2, 0x42, 0x58, 0x2e, 0x79, 0xa9, 0x55, 0xc8, 0x38, + 0x24, 0x55, 0x41, 0xf3, 0x37, 0x23, 0xa5, 0x4a, 0xaa, 0x7d, 0xff, 0x00, + 0xc6, 0xab, 0x41, 0xdc, 0x95, 0xf6, 0xe7, 0x80, 0x3e, 0xb5, 0x11, 0x6c, + 0x1f, 0xe7, 0x41, 0x71, 0x9c, 0x53, 0x41, 0x19, 0xe0, 0x54, 0xb6, 0x21, + 0xc5, 0x99, 0x9b, 0x81, 0xc5, 0x3b, 0xb7, 0x5e, 0x69, 0x3e, 0xee, 0x38, + 0xe6, 0x83, 0x83, 0x92, 0x7a, 0xfb, 0x1a, 0x4f, 0x50, 0x14, 0x1e, 0x39, + 0x39, 0xa5, 0x2c, 0xc4, 0x1e, 0x69, 0x40, 0xf9, 0x3a, 0x73, 0x48, 0x14, + 0x73, 0x93, 0xcf, 0x71, 0x45, 0x84, 0x47, 0xb9, 0xbf, 0xbd, 0x81, 0x4e, + 0xde, 0xc3, 0x3e, 0xb8, 0xa1, 0x93, 0x9e, 0xbc, 0x52, 0x1c, 0x00, 0x05, + 0x09, 0x88, 0x4d, 0xe7, 0x1f, 0x30, 0x14, 0x09, 0x5b, 0x79, 0x3d, 0x0d, + 0x21, 0xc3, 0x0e, 0x45, 0x21, 0x50, 0x73, 0x8a, 0x13, 0x7d, 0x00, 0x78, + 0x90, 0x16, 0xe7, 0xa9, 0xa7, 0x79, 0x83, 0x3d, 0x79, 0xaa, 0xc5, 0x30, + 0x06, 0x0f, 0x22, 0x9c, 0x07, 0xca, 0x39, 0xfc, 0xe9, 0xdb, 0x40, 0x27, + 0xdf, 0xce, 0x00, 0xeb, 0xe9, 0x4e, 0x57, 0xdb, 0x8c, 0x9a, 0xaf, 0xce, + 0xde, 0xf8, 0xf5, 0xa5, 0x00, 0xb7, 0xad, 0x2b, 0x01, 0x39, 0x90, 0x1c, + 0xd3, 0x8b, 0x06, 0x1f, 0xce, 0xa1, 0x0b, 0xdb, 0x1f, 0x8d, 0x28, 0xe3, + 0x83, 0xc5, 0x3b, 0x0c, 0x5c, 0x63, 0xd4, 0xd0, 0x5b, 0x3c, 0x11, 0x48, + 0xb4, 0xe6, 0x07, 0x20, 0x0e, 0x3d, 0x69, 0x73, 0x74, 0x1a, 0x43, 0x54, + 0x65, 0xb8, 0xe6, 0x9f, 0x85, 0xc6, 0x0f, 0x5a, 0x42, 0xb8, 0xec, 0x29, + 0x7e, 0xea, 0xfd, 0xdc, 0xb8, 0x3c, 0x13, 0xd2, 0xa9, 0x59, 0xee, 0xc1, + 0x2d, 0x46, 0x86, 0x08, 0x38, 0xed, 0x47, 0x99, 0x9e, 0x82, 0x97, 0x67, + 0x25, 0xb8, 0xe7, 0xd0, 0x53, 0x0f, 0xb9, 0xe2, 0xa1, 0xab, 0x80, 0xfd, + 0xc1, 0xbb, 0x51, 0xb4, 0x0e, 0x3f, 0x2a, 0x60, 0xc6, 0xec, 0x8e, 0x94, + 0xa7, 0xa8, 0xc1, 0xed, 0x4b, 0x40, 0x25, 0xf9, 0x40, 0xc9, 0x34, 0xa3, + 0xa7, 0x27, 0x15, 0x17, 0xa8, 0xea, 0x3d, 0xa9, 0xd9, 0x42, 0xa0, 0x1e, + 0xde, 0xb4, 0xb7, 0x1a, 0x1c, 0x79, 0x6c, 0x6d, 0x20, 0x7a, 0xd0, 0x42, + 0x82, 0x05, 0x1f, 0x33, 0x01, 0x49, 0x90, 0x06, 0x31, 0xc8, 0xef, 0x9a, + 0xad, 0x3a, 0x09, 0x88, 0x57, 0x1d, 0x71, 0x43, 0x0c, 0x95, 0xf4, 0xed, + 0x48, 0x4b, 0x7d, 0x68, 0xcb, 0x01, 0xd3, 0x1e, 0xd5, 0x23, 0xb1, 0x28, + 0x2a, 0x53, 0x1b, 0x70, 0xc3, 0xbd, 0x3c, 0x01, 0xe9, 0x9e, 0x2a, 0x28, + 0x8e, 0x72, 0x58, 0x67, 0xf1, 0xa7, 0xee, 0xe7, 0x91, 0x4d, 0xd8, 0xa1, + 0x72, 0x10, 0x64, 0xae, 0x41, 0xf7, 0xa8, 0xb2, 0xb9, 0xce, 0x08, 0x3e, + 0xb8, 0xa7, 0x9c, 0xe7, 0x39, 0xa0, 0xb6, 0x78, 0xee, 0x28, 0x5a, 0x83, + 0x22, 0x2d, 0x8e, 0x69, 0xcb, 0x87, 0x3f, 0xe1, 0x4d, 0x60, 0x33, 0xc6, + 0x0d, 0x3d, 0x18, 0x01, 0x90, 0x00, 0xed, 0x46, 0xc4, 0x58, 0x71, 0x04, + 0x11, 0xb4, 0xee, 0x3d, 0x85, 0x3a, 0x3d, 0xec, 0x0f, 0x98, 0xb8, 0x00, + 0xf4, 0xa4, 0x57, 0x54, 0xc1, 0x04, 0x64, 0xf5, 0xa4, 0x69, 0x03, 0x64, + 0x64, 0x81, 0xd7, 0x8a, 0x5a, 0x3d, 0x0d, 0x15, 0x85, 0x68, 0x94, 0x36, + 0x56, 0x98, 0xcc, 0x78, 0x0a, 0x39, 0xfd, 0x6a, 0x3f, 0x37, 0x6e, 0x14, + 0x0e, 0x29, 0x77, 0x00, 0x0e, 0x7a, 0xd2, 0x77, 0xb8, 0x0e, 0x04, 0x0e, + 0x1b, 0x8e, 0xf4, 0xd7, 0x40, 0x70, 0x78, 0x22, 0x95, 0x94, 0xb0, 0xdd, + 0xbb, 0x8a, 0x6c, 0x78, 0x00, 0x93, 0xf9, 0x55, 0x24, 0x48, 0x81, 0x73, + 0xf7, 0x4d, 0x34, 0x82, 0x0f, 0x35, 0x20, 0xdb, 0xd4, 0x9c, 0x54, 0x9b, + 0x37, 0x63, 0x6a, 0xf3, 0xf5, 0xa5, 0xb0, 0x58, 0x80, 0x83, 0x91, 0xcd, + 0x38, 0xe0, 0x71, 0x4e, 0x11, 0xb5, 0x26, 0x48, 0x52, 0x0f, 0x5a, 0x5d, + 0x47, 0x66, 0x34, 0x20, 0xec, 0x7e, 0x94, 0xf2, 0xfb, 0x53, 0x07, 0x00, + 0xfa, 0x53, 0x17, 0x0c, 0x70, 0x48, 0x3f, 0x5a, 0x7b, 0x44, 0xac, 0x38, + 0xc6, 0x7d, 0xeb, 0x4d, 0xc1, 0x03, 0x1f, 0x94, 0x60, 0x83, 0x9a, 0x62, + 0x90, 0xc4, 0xe7, 0x02, 0xa3, 0x28, 0x50, 0x90, 0x80, 0x9c, 0x7b, 0x53, + 0x4b, 0xb1, 0x6c, 0x82, 0x30, 0x3d, 0xb1, 0x49, 0xc6, 0xdb, 0x05, 0x8b, + 0xbb, 0x70, 0x8a, 0x48, 0x18, 0x1d, 0xc0, 0xeb, 0x4e, 0x47, 0xf9, 0x19, + 0x59, 0x32, 0x3b, 0x55, 0x64, 0x9b, 0x8e, 0xf9, 0xf6, 0xa3, 0xcf, 0x60, + 0xf8, 0xda, 0x6a, 0x6c, 0xd8, 0xac, 0x5d, 0x8d, 0x55, 0x8e, 0xd2, 0x7f, + 0x3a, 0x59, 0x10, 0xed, 0xf9, 0x58, 0x66, 0xaa, 0xef, 0x38, 0xce, 0xe1, + 0xf8, 0x53, 0x44, 0xf9, 0xef, 0x8e, 0x3a, 0xd4, 0xd9, 0xa2, 0x93, 0x1f, + 0xbe, 0x60, 0xc3, 0xe5, 0x52, 0x47, 0x5c, 0x51, 0xf3, 0x92, 0x59, 0xf0, + 0x3e, 0x9d, 0xaa, 0x29, 0x5c, 0x95, 0x38, 0x97, 0x68, 0xf6, 0xa3, 0x7e, + 0x54, 0x73, 0x92, 0x3d, 0xea, 0xdd, 0xad, 0xa0, 0xdb, 0x27, 0x07, 0x2b, + 0xcb, 0x64, 0xd3, 0x36, 0xf7, 0x27, 0x02, 0xa1, 0x32, 0x85, 0xfc, 0x29, + 0x0c, 0xe4, 0xae, 0x09, 0xeb, 0x4a, 0xcc, 0x9b, 0x8e, 0x38, 0xe7, 0x07, + 0x34, 0x06, 0xc8, 0xc3, 0x0d, 0xb9, 0xe9, 0x50, 0x06, 0xda, 0x7e, 0x56, + 0x1f, 0x4c, 0x52, 0x09, 0x8f, 0x04, 0x90, 0x73, 0x57, 0x6d, 0x00, 0xb5, + 0x19, 0x64, 0x6e, 0x39, 0x14, 0xe6, 0x76, 0xdc, 0x78, 0xc6, 0x3a, 0xd4, + 0x22, 0x61, 0xea, 0x29, 0x5d, 0x8b, 0x71, 0x9e, 0x2a, 0x00, 0x6b, 0xbc, + 0x83, 0x39, 0xe7, 0x1e, 0x95, 0x0e, 0xf6, 0x7e, 0x79, 0x1e, 0xd5, 0x26, + 0xd3, 0xd4, 0x64, 0xd3, 0x00, 0xe7, 0x39, 0xa6, 0x03, 0x86, 0x7d, 0xff, + 0x00, 0x1a, 0x91, 0x54, 0x7a, 0xe2, 0x90, 0x64, 0xe4, 0x63, 0x8a, 0x5c, + 0x1c, 0x60, 0x01, 0x49, 0xbe, 0xc0, 0x48, 0x4f, 0x18, 0xcd, 0x26, 0x0a, + 0xb9, 0xc1, 0xcd, 0x31, 0xc1, 0x53, 0xda, 0x90, 0x16, 0x03, 0xad, 0x25, + 0xa0, 0x12, 0x64, 0x72, 0x1b, 0x34, 0xc0, 0x8a, 0x0e, 0x78, 0x3f, 0x5a, + 0x5c, 0x12, 0x31, 0x91, 0x9a, 0x6e, 0xc6, 0x1f, 0x4a, 0x77, 0x6b, 0x60, + 0xb8, 0xec, 0x74, 0xe2, 0x9e, 0xa3, 0xa8, 0xc7, 0x15, 0x10, 0x6c, 0x1c, + 0x02, 0x69, 0xd9, 0x24, 0x8f, 0x9a, 0x8b, 0xb1, 0x0f, 0x5d, 0xa0, 0x73, + 0x41, 0xdb, 0xd4, 0x81, 0x9e, 0xd4, 0xcd, 0xb8, 0xe8, 0x73, 0x4d, 0x09, + 0x2c, 0x9c, 0x81, 0x80, 0x28, 0x49, 0xee, 0x3b, 0x96, 0x13, 0x69, 0x27, + 0x91, 0x48, 0xeb, 0x1e, 0x7a, 0xd4, 0x0c, 0xbb, 0x79, 0x39, 0x07, 0xda, + 0x94, 0xb0, 0x2b, 0xb5, 0x94, 0x9a, 0x5b, 0x3d, 0x01, 0x32, 0x62, 0xa3, + 0x1d, 0x71, 0xed, 0x4e, 0xdb, 0x90, 0x3d, 0x6a, 0x12, 0x48, 0x5f, 0x97, + 0x1f, 0x88, 0xcd, 0x20, 0x69, 0x94, 0x1c, 0xe3, 0x9e, 0xf4, 0xf9, 0x5b, + 0xd6, 0xe5, 0x12, 0x9d, 0xeb, 0xdb, 0x34, 0xa5, 0xb3, 0xc0, 0x18, 0x34, + 0x9b, 0x9c, 0x2f, 0x38, 0x27, 0xd7, 0x15, 0x11, 0x94, 0x6e, 0xc7, 0x21, + 0xbb, 0xd2, 0xd7, 0x64, 0x2d, 0x09, 0x3d, 0xcf, 0x6a, 0x42, 0xdc, 0x52, + 0x6e, 0xc7, 0x53, 0x9f, 0xad, 0x35, 0x98, 0x75, 0xe2, 0xa5, 0xab, 0x08, + 0x78, 0x3e, 0xf4, 0x86, 0x45, 0x0a, 0x46, 0x45, 0x47, 0x90, 0x4f, 0x7a, + 0x36, 0x8d, 0xbc, 0x60, 0xfb, 0x53, 0x4a, 0xc0, 0x37, 0x76, 0x4e, 0x46, + 0x71, 0x4f, 0x56, 0xe7, 0xf9, 0x52, 0x75, 0xe3, 0x14, 0xae, 0x8d, 0x20, + 0xf9, 0x58, 0x0c, 0x55, 0x25, 0x70, 0x14, 0x64, 0x9e, 0x0e, 0x07, 0xa9, + 0xa7, 0x85, 0x51, 0xf7, 0x69, 0x12, 0x20, 0x1b, 0x96, 0xcf, 0x1d, 0xe9, + 0xec, 0xc8, 0x49, 0xe4, 0x01, 0xd3, 0x8e, 0xf4, 0x36, 0xb6, 0x1d, 0x88, + 0xd8, 0x86, 0xe3, 0x14, 0x0e, 0x9b, 0x77, 0x0c, 0xd2, 0x48, 0x81, 0xb9, + 0x51, 0xcd, 0x02, 0x21, 0xc1, 0xa1, 0x24, 0x2d, 0x49, 0x00, 0x00, 0xe0, + 0xfa, 0x51, 0xb7, 0xe4, 0x2b, 0xb4, 0x64, 0xd0, 0x36, 0xe7, 0x8c, 0xfe, + 0x34, 0xa4, 0x80, 0x3a, 0xf3, 0x4d, 0x4d, 0xa7, 0xa0, 0x26, 0x2c, 0x49, + 0xb4, 0x7f, 0x4a, 0x49, 0x18, 0x85, 0x18, 0xa5, 0xdd, 0x95, 0xe0, 0x9f, + 0xc6, 0x90, 0x83, 0x83, 0xd0, 0xd2, 0x6b, 0x5b, 0xb1, 0xee, 0x3a, 0x23, + 0xb8, 0x36, 0xe5, 0xe3, 0xeb, 0x48, 0x65, 0x6e, 0x07, 0x1d, 0x7a, 0x0a, + 0x68, 0x25, 0x46, 0x32, 0x31, 0x52, 0x6e, 0x51, 0xc7, 0xe4, 0x45, 0x2b, + 0xdd, 0x88, 0x8c, 0x9e, 0xa4, 0xaf, 0x23, 0xda, 0x95, 0x5b, 0x2b, 0xc7, + 0xad, 0x0e, 0x71, 0xc3, 0x13, 0xc9, 0xa4, 0x24, 0xa9, 0x1b, 0x71, 0x83, + 0xd8, 0xd5, 0x59, 0xb0, 0x15, 0x94, 0xf5, 0xc8, 0xa6, 0x0c, 0xe7, 0x15, + 0x31, 0x8d, 0x9b, 0xb8, 0x38, 0xa6, 0x63, 0x27, 0x14, 0xaf, 0x60, 0x62, + 0x2a, 0xe3, 0x93, 0x8a, 0x7f, 0xcb, 0x9c, 0x85, 0x19, 0xa6, 0x15, 0x21, + 0xb0, 0x4e, 0x07, 0xad, 0x23, 0x33, 0x01, 0xc0, 0xe2, 0x9d, 0xd8, 0x89, + 0x43, 0xee, 0xed, 0x8a, 0x46, 0x0a, 0x46, 0x4e, 0x0d, 0x57, 0xf3, 0x4e, + 0x79, 0x18, 0xa6, 0xef, 0x62, 0xd9, 0x02, 0x9d, 0xed, 0xb0, 0x12, 0x6c, + 0x52, 0xf9, 0xe4, 0x0a, 0x9b, 0x39, 0x50, 0x08, 0x07, 0x03, 0x02, 0xa0, + 0x52, 0x5d, 0x80, 0x00, 0x64, 0x9e, 0x84, 0xf1, 0x4a, 0xfb, 0xc3, 0x14, + 0x50, 0x06, 0x3d, 0xea, 0xb9, 0xa4, 0xf7, 0x1e, 0xbb, 0x93, 0x2b, 0xb6, + 0xef, 0xc2, 0xa2, 0x75, 0x2e, 0xc1, 0x9b, 0x8c, 0x7a, 0x1a, 0x44, 0x76, + 0xdb, 0xca, 0x90, 0x69, 0xc0, 0x6e, 0x03, 0xae, 0x6a, 0x6f, 0xca, 0xee, + 0x09, 0xd8, 0x98, 0x42, 0xa5, 0x7e, 0x52, 0x49, 0xc5, 0x42, 0xa0, 0x80, + 0x77, 0x0e, 0x3a, 0x62, 0x9f, 0x92, 0x98, 0xe6, 0x91, 0xa5, 0xc8, 0x3c, + 0x52, 0xe6, 0x0b, 0x8c, 0x24, 0xe4, 0x71, 0xc0, 0xf7, 0xa7, 0xe4, 0x63, + 0x85, 0xc9, 0xf5, 0xa6, 0x9c, 0x6d, 0xf5, 0x34, 0x6f, 0xc9, 0xc0, 0x1c, + 0x54, 0xfa, 0x0a, 0xe2, 0xe0, 0x90, 0x3e, 0x5f, 0xca, 0x82, 0xbc, 0x90, + 0x49, 0xfc, 0x29, 0xac, 0xc3, 0x1b, 0x4b, 0x11, 0xc7, 0x5c, 0xd2, 0x46, + 0x40, 0x23, 0xe6, 0xc8, 0x1d, 0xbd, 0x69, 0x85, 0xc9, 0x55, 0x54, 0xe0, + 0x63, 0x3e, 0xe6, 0x92, 0x44, 0x55, 0x07, 0x6a, 0x92, 0x7b, 0x02, 0x69, + 0xbb, 0xf6, 0x8c, 0x7e, 0x94, 0x9e, 0x63, 0x9c, 0x06, 0xc8, 0xa6, 0xae, + 0x9d, 0xc7, 0x72, 0x58, 0xd7, 0x62, 0xee, 0x24, 0x93, 0xdf, 0x34, 0xf6, + 0x64, 0x2a, 0x39, 0xe3, 0xde, 0xa1, 0xe9, 0xf7, 0x8f, 0x14, 0xb8, 0x18, + 0x1b, 0x47, 0x5a, 0x1b, 0xbe, 0xa2, 0xd4, 0x43, 0x82, 0x7a, 0xf3, 0x4f, + 0x3c, 0x2e, 0x29, 0x8c, 0x30, 0x39, 0xeb, 0xeb, 0x49, 0xe6, 0x0c, 0xe0, + 0xfe, 0x74, 0xae, 0x21, 0x76, 0xfd, 0xd2, 0x69, 0x70, 0xad, 0x9c, 0xe4, + 0x53, 0x4b, 0xf6, 0xa6, 0x9e, 0x3a, 0x0c, 0x8f, 0xa5, 0x35, 0x76, 0x02, + 0xba, 0x0c, 0x75, 0xa8, 0x4c, 0x81, 0x0e, 0x31, 0xf9, 0x54, 0xbc, 0x9e, + 0x70, 0x7d, 0xaa, 0x17, 0x45, 0xea, 0xd9, 0xe4, 0xe3, 0x8a, 0x76, 0xb8, + 0x86, 0x99, 0x79, 0xe7, 0x38, 0xf6, 0xa9, 0x90, 0xb3, 0x7f, 0x0f, 0x1e, + 0xa6, 0x99, 0xe5, 0x2e, 0x38, 0xe9, 0x4f, 0xda, 0xcb, 0x8c, 0x0c, 0xfe, + 0x35, 0x4a, 0xc3, 0x43, 0x94, 0x02, 0x41, 0x27, 0x9a, 0x5e, 0x00, 0xeb, + 0x9a, 0x68, 0x8d, 0xcb, 0x10, 0xa3, 0x8a, 0x4f, 0x2d, 0xf7, 0xf2, 0x46, + 0x3b, 0x0a, 0x03, 0x51, 0x77, 0x67, 0xbd, 0x2e, 0x0e, 0xe1, 0xe9, 0x4c, + 0xc0, 0x07, 0xaf, 0x4a, 0x7f, 0x98, 0x02, 0xed, 0xe3, 0xeb, 0x43, 0x10, + 0xbf, 0x30, 0xed, 0xf9, 0xd2, 0x28, 0xc9, 0xe0, 0x1e, 0x68, 0x69, 0x32, + 0xa0, 0x63, 0x34, 0x8b, 0x2e, 0x3b, 0x50, 0xb4, 0xe8, 0x3d, 0x89, 0x4e, + 0x55, 0xb3, 0xe9, 0x4c, 0x2f, 0x8f, 0x7a, 0x6b, 0x31, 0xef, 0xde, 0x9b, + 0x9c, 0x30, 0xc0, 0xcd, 0x2d, 0x58, 0x9b, 0x1c, 0x1c, 0x9e, 0x3b, 0x51, + 0x82, 0x5b, 0xa7, 0x5a, 0x5c, 0x86, 0x6e, 0x9c, 0xf7, 0x14, 0xe3, 0xc6, + 0x45, 0x2b, 0x08, 0x60, 0x8f, 0x27, 0xe9, 0x40, 0x40, 0xa4, 0x8e, 0xa4, + 0xd3, 0xfc, 0xd5, 0xc0, 0x07, 0xf4, 0xa2, 0x36, 0xf3, 0x09, 0xe3, 0x8a, + 0x2d, 0x2b, 0x5c, 0x76, 0x23, 0x2a, 0x54, 0x67, 0x1c, 0x52, 0x01, 0xcf, + 0x43, 0x8a, 0xb0, 0xc9, 0xc6, 0x33, 0xf4, 0xa6, 0x0e, 0x0e, 0x32, 0x2a, + 0x6e, 0x16, 0x13, 0x20, 0x2e, 0x00, 0xc5, 0x00, 0x93, 0x91, 0x8e, 0x69, + 0xdb, 0x46, 0x31, 0x91, 0x4d, 0x6c, 0x83, 0x90, 0x79, 0xa6, 0xa4, 0x1d, + 0x06, 0x12, 0xc3, 0x91, 0x4b, 0x86, 0x39, 0x39, 0x19, 0xa5, 0xdf, 0x91, + 0x82, 0x29, 0xad, 0x95, 0x61, 0x83, 0x4e, 0xe2, 0x15, 0x77, 0x7f, 0x17, + 0x06, 0x97, 0xcc, 0x0b, 0xcb, 0x73, 0x4d, 0xc9, 0xe4, 0x75, 0xa4, 0xe3, + 0x1c, 0x81, 0x9a, 0x5a, 0x8c, 0x79, 0x99, 0x49, 0xc5, 0x29, 0x98, 0x1c, + 0x8e, 0x86, 0xa2, 0x68, 0xd4, 0xf4, 0xeb, 0x4c, 0x0a, 0x73, 0xcf, 0x6a, + 0x60, 0x58, 0x56, 0xca, 0xf5, 0xe7, 0xd6, 0x99, 0x8c, 0x03, 0xb4, 0xfe, + 0x75, 0x1f, 0x20, 0xd3, 0x94, 0xe4, 0x61, 0xb9, 0x07, 0xd2, 0x9a, 0x90, + 0xc5, 0x18, 0xc8, 0xc6, 0x69, 0xc1, 0x94, 0xe7, 0xd4, 0x53, 0x38, 0x55, + 0x1b, 0x49, 0xa0, 0xb7, 0xe7, 0xed, 0x4a, 0xc8, 0x34, 0x25, 0x56, 0x50, + 0x31, 0xcd, 0x38, 0x7d, 0xd2, 0x0f, 0x7e, 0x86, 0xa2, 0xde, 0x36, 0xe3, + 0xbf, 0xad, 0x26, 0xf6, 0x1c, 0x13, 0x4b, 0x50, 0x27, 0x1f, 0x2e, 0x07, + 0x34, 0x8e, 0x72, 0x29, 0x8a, 0xc5, 0xbb, 0xe6, 0x8c, 0x90, 0x0e, 0x30, + 0x08, 0x34, 0x59, 0x85, 0x85, 0x04, 0xa1, 0xce, 0x29, 0xf9, 0x2d, 0x83, + 0x8a, 0x8d, 0x1c, 0x3a, 0xfb, 0x52, 0xee, 0xc9, 0xc0, 0xe2, 0x86, 0x82, + 0xc2, 0xba, 0x21, 0x3b, 0xd4, 0x61, 0x8d, 0x34, 0xee, 0xc7, 0xcb, 0x92, + 0x71, 0x43, 0x2f, 0x38, 0xce, 0x3e, 0xa2, 0x80, 0x4a, 0x9e, 0x39, 0xa7, + 0xea, 0x3b, 0xb6, 0x21, 0x72, 0xc0, 0x75, 0xcf, 0x7a, 0x5c, 0x90, 0x49, + 0xf4, 0x34, 0xf1, 0x8e, 0x4b, 0x10, 0x08, 0xa4, 0xdc, 0xa7, 0x9e, 0x28, + 0xba, 0xe8, 0x2b, 0x0a, 0x08, 0x28, 0x4e, 0x30, 0x4d, 0x46, 0x18, 0x7d, + 0xdc, 0x92, 0x7d, 0x29, 0xdb, 0xb8, 0xe3, 0x8a, 0x6e, 0x7d, 0x07, 0x5a, + 0x9d, 0x18, 0x0e, 0x0c, 0x3d, 0x29, 0x9c, 0x73, 0xcf, 0x34, 0x2a, 0x7f, + 0x8f, 0x35, 0x22, 0x8a, 0x7b, 0x0c, 0x89, 0x58, 0x8e, 0xab, 0x4f, 0x5c, + 0x63, 0x27, 0x9c, 0x52, 0xb9, 0x2a, 0x38, 0x5c, 0xfb, 0x53, 0x55, 0xb2, + 0x99, 0xc7, 0x1e, 0xc6, 0x9b, 0x88, 0x12, 0xa1, 0x57, 0xcf, 0x6e, 0x29, + 0x07, 0x0d, 0xd0, 0x1a, 0x87, 0xcc, 0x3b, 0x80, 0x03, 0x2b, 0x4f, 0x92, + 0x50, 0x06, 0x31, 0xd6, 0x95, 0x9a, 0x60, 0x38, 0xc7, 0x19, 0x61, 0x9c, + 0x91, 0x9e, 0x94, 0xf2, 0x11, 0x01, 0x01, 0x8f, 0x23, 0x18, 0xcd, 0x40, + 0x24, 0xc0, 0xa7, 0xbb, 0x2e, 0x14, 0xab, 0x72, 0x47, 0x3c, 0x74, 0xa3, + 0x99, 0xdc, 0x77, 0x16, 0x3c, 0x29, 0x2a, 0x18, 0xfe, 0x34, 0xd9, 0x08, + 0x3d, 0xcf, 0xd6, 0xa2, 0x69, 0x33, 0xd4, 0xfe, 0x34, 0xcd, 0xf8, 0xe9, + 0x54, 0x2b, 0xb1, 0xeb, 0xb8, 0x13, 0xdc, 0xfb, 0xd3, 0x84, 0xa4, 0x70, + 0x08, 0xc8, 0xa6, 0x96, 0xe3, 0x19, 0x04, 0x7f, 0xb3, 0x4d, 0x07, 0x77, + 0x7f, 0xce, 0x9d, 0xd0, 0x5c, 0x90, 0xcc, 0xdb, 0xb3, 0xc8, 0xfc, 0x2a, + 0x37, 0x6f, 0x33, 0x27, 0xa0, 0x3c, 0x7d, 0x69, 0x72, 0x54, 0x60, 0xf7, + 0xa0, 0x38, 0x4e, 0xb4, 0xd3, 0x5d, 0x07, 0x7b, 0x91, 0x31, 0x70, 0xca, + 0x00, 0x20, 0x0e, 0xf4, 0xfd, 0xc4, 0xf3, 0x9e, 0x69, 0xe2, 0x50, 0x7d, + 0x3f, 0x0a, 0x8e, 0x45, 0x2d, 0xc8, 0x23, 0x20, 0xd4, 0xd9, 0x37, 0xa8, + 0x2d, 0xc7, 0x8c, 0x85, 0xce, 0xec, 0xf3, 0x41, 0x1c, 0xe5, 0x9b, 0x81, + 0x50, 0xc7, 0x13, 0x12, 0x4b, 0x29, 0xf6, 0xc1, 0xa9, 0x4b, 0x22, 0x9c, + 0xbb, 0x1c, 0x9e, 0xd5, 0x52, 0x8a, 0x5a, 0x21, 0xb4, 0x23, 0x0c, 0x8e, + 0x01, 0x27, 0xdc, 0xf5, 0xa6, 0x89, 0x48, 0x21, 0x48, 0xe3, 0xd8, 0xd0, + 0x19, 0xd8, 0xfc, 0xb8, 0x23, 0xd3, 0xa5, 0x0f, 0x10, 0x61, 0xcf, 0x04, + 0x7a, 0xd5, 0xc6, 0x1a, 0x6a, 0x1c, 0xa2, 0xca, 0xc9, 0xb1, 0x8e, 0x70, + 0x4d, 0x56, 0x31, 0x3b, 0xc4, 0x5d, 0x64, 0x24, 0x8f, 0xbc, 0xbe, 0xde, + 0xb5, 0x60, 0xc4, 0xab, 0x92, 0xbf, 0x91, 0xa4, 0x88, 0x84, 0x72, 0xe0, + 0xf2, 0x07, 0xa5, 0x6d, 0x05, 0x18, 0xa1, 0xa4, 0x92, 0xd4, 0xac, 0xa8, + 0xc0, 0x83, 0x93, 0xf4, 0xcd, 0x3a, 0x48, 0xbc, 0xd9, 0x0f, 0x96, 0x48, + 0xf4, 0x04, 0xd4, 0xde, 0x58, 0x77, 0xdc, 0x38, 0x07, 0xa0, 0xa5, 0x68, + 0x54, 0x71, 0x93, 0x43, 0x9d, 0x3b, 0x8e, 0xf1, 0x2b, 0x04, 0x91, 0x24, + 0xda, 0x64, 0x24, 0x63, 0x9a, 0xb0, 0x99, 0x55, 0x03, 0xe6, 0xff, 0x00, + 0x81, 0x52, 0x85, 0x87, 0x38, 0x65, 0x39, 0xa9, 0x10, 0x2a, 0xa6, 0xd0, + 0xd9, 0x1d, 0x81, 0xeb, 0x59, 0x4e, 0x51, 0x7b, 0x12, 0xda, 0xe8, 0x39, + 0x65, 0x51, 0xd4, 0x8f, 0xc0, 0xd3, 0x5a, 0x55, 0x24, 0x10, 0x01, 0x23, + 0xbd, 0x01, 0x06, 0x31, 0xb0, 0x50, 0xa9, 0x8f, 0xe1, 0xc5, 0x64, 0xec, + 0x22, 0x44, 0x70, 0x7a, 0x8f, 0xca, 0x9f, 0xbc, 0x67, 0x0a, 0xa4, 0x7d, + 0x45, 0x30, 0x0f, 0x6c, 0x7d, 0x29, 0xc4, 0x37, 0x7e, 0x45, 0x4a, 0xb2, + 0x10, 0x32, 0x1c, 0xf6, 0x6f, 0xa5, 0x34, 0x02, 0x41, 0xc8, 0xa9, 0x01, + 0xc7, 0x7a, 0x3a, 0x8e, 0x9c, 0xfa, 0xd4, 0x8e, 0xc3, 0x14, 0xb6, 0x30, + 0x53, 0x3e, 0xf4, 0xa2, 0x40, 0xdc, 0x2f, 0x6e, 0x38, 0xa3, 0x0d, 0x92, + 0x08, 0x1b, 0x4f, 0x7c, 0xd3, 0x56, 0x30, 0x01, 0x0b, 0xc7, 0xa9, 0xab, + 0xb2, 0xb6, 0xa1, 0x62, 0x40, 0xbc, 0x67, 0x9f, 0xc6, 0x82, 0x33, 0x48, + 0x0f, 0xe5, 0x46, 0x48, 0x04, 0xd6, 0x6d, 0x58, 0x2c, 0x3d, 0x50, 0x11, + 0xd7, 0x9a, 0x63, 0xa9, 0x53, 0x90, 0x4f, 0xe1, 0x4d, 0x1b, 0xb7, 0x64, + 0x67, 0x9f, 0x5a, 0x90, 0x11, 0xfc, 0x47, 0xe9, 0x4f, 0x65, 0xb8, 0x59, + 0x00, 0x45, 0x75, 0x19, 0x34, 0x34, 0x59, 0x1c, 0x60, 0xfd, 0x4d, 0x34, + 0xb1, 0x07, 0xa7, 0xe3, 0x9a, 0x4d, 0xed, 0xd9, 0x79, 0xcf, 0xad, 0x4e, + 0xa1, 0xa0, 0xe0, 0xbb, 0x7a, 0x0c, 0xfe, 0x35, 0x27, 0xde, 0x18, 0xef, + 0x50, 0x8d, 0xc4, 0xf3, 0xc7, 0xe3, 0x4f, 0x4d, 0xb9, 0xf9, 0x98, 0x81, + 0xdf, 0xde, 0x9a, 0xd7, 0x70, 0xb8, 0xf6, 0x4c, 0x0c, 0xf0, 0x7f, 0x1a, + 0x88, 0xed, 0xfc, 0x4d, 0x4a, 0x49, 0x3c, 0x02, 0xbf, 0x8d, 0x34, 0x46, + 0xa7, 0xe6, 0x67, 0x14, 0xf5, 0x5b, 0x81, 0x5d, 0xcf, 0xbe, 0x28, 0xea, + 0xdb, 0x40, 0xc1, 0xa9, 0x9b, 0x07, 0x80, 0x79, 0xa5, 0x45, 0xce, 0x37, + 0x71, 0x8f, 0x6a, 0x5b, 0x88, 0x87, 0xcb, 0x60, 0x7d, 0x47, 0xad, 0x03, + 0x83, 0xd3, 0x15, 0x68, 0xae, 0x7a, 0xb7, 0x4e, 0xd4, 0xc6, 0x8c, 0x6e, + 0xe0, 0xf1, 0xd6, 0xaa, 0xda, 0x01, 0x10, 0x05, 0x87, 0x7c, 0x53, 0x82, + 0x1c, 0x72, 0x0f, 0xe2, 0x29, 0xfb, 0x7d, 0x01, 0xfc, 0x29, 0x7e, 0x7e, + 0x87, 0x38, 0x1e, 0xb4, 0xae, 0x16, 0x1b, 0x82, 0x7e, 0x5e, 0x71, 0xea, + 0x3b, 0xd0, 0x20, 0x41, 0xf8, 0xd3, 0x4e, 0xf0, 0x49, 0x51, 0xf8, 0x54, + 0xa3, 0x24, 0xe7, 0x1f, 0x4c, 0x9a, 0x77, 0x65, 0x24, 0x23, 0x40, 0x78, + 0x22, 0x90, 0xf9, 0x8b, 0xc6, 0x30, 0x05, 0x3b, 0x79, 0x07, 0x04, 0xfe, + 0x54, 0x85, 0xb9, 0xc6, 0x33, 0xed, 0x53, 0xaf, 0x50, 0x1b, 0xd1, 0x73, + 0x49, 0x80, 0x33, 0x96, 0xcd, 0x18, 0x25, 0xb9, 0x5e, 0x3d, 0xbb, 0x54, + 0x60, 0x86, 0x7d, 0xa4, 0x11, 0x8a, 0x2d, 0x70, 0xb0, 0xf5, 0x2b, 0x9e, + 0x4d, 0x29, 0x7c, 0x0f, 0x41, 0x48, 0x10, 0x11, 0x91, 0xf8, 0x0a, 0x40, + 0x08, 0x6e, 0x70, 0x45, 0x2b, 0x5c, 0x43, 0x46, 0x58, 0x9e, 0x71, 0x4e, + 0x07, 0xb1, 0x04, 0xe2, 0x97, 0xcb, 0xcb, 0x75, 0xc5, 0x37, 0x6e, 0x49, + 0x0a, 0x3a, 0x53, 0xb3, 0x01, 0xdb, 0x97, 0x20, 0x74, 0xa9, 0x54, 0x29, + 0xe0, 0x39, 0xaa, 0xe1, 0x30, 0x49, 0x0a, 0x73, 0xef, 0x52, 0x06, 0x3d, + 0x4f, 0x41, 0x4e, 0xed, 0x6c, 0x1a, 0x12, 0xa9, 0x08, 0x4f, 0x53, 0x4e, + 0x2c, 0xb9, 0xdd, 0xdf, 0x15, 0x11, 0x9c, 0x28, 0xe9, 0x4e, 0x12, 0x24, + 0xb8, 0x27, 0x3f, 0x4a, 0x49, 0x5f, 0x71, 0x8d, 0x79, 0x1d, 0xb3, 0x85, + 0x00, 0x1e, 0x95, 0x10, 0x72, 0xc0, 0x82, 0x72, 0xd9, 0xe3, 0x1d, 0x29, + 0xf2, 0x5b, 0xe7, 0x04, 0x3f, 0x03, 0xb5, 0x2a, 0x22, 0xa0, 0xe9, 0x5a, + 0xfb, 0xa0, 0xec, 0x31, 0x09, 0xc7, 0xcf, 0xc0, 0xf5, 0xa9, 0x0a, 0xae, + 0x32, 0x39, 0x06, 0x94, 0x32, 0xa8, 0xe8, 0x29, 0x4b, 0x6e, 0xe0, 0x03, + 0x8a, 0x97, 0x6e, 0x81, 0xa1, 0x09, 0x75, 0x04, 0x27, 0xdd, 0x3e, 0xb4, + 0xe1, 0x9f, 0xf0, 0xf7, 0xa5, 0xeb, 0xd8, 0x1c, 0x7a, 0xd2, 0x6e, 0x25, + 0xb3, 0xcd, 0x4b, 0x7a, 0x12, 0x05, 0x19, 0xbb, 0xe2, 0x94, 0x65, 0x47, + 0x5a, 0x50, 0x79, 0xcf, 0x6a, 0x1d, 0xd4, 0x75, 0xc2, 0x8a, 0x5b, 0x81, + 0x1b, 0xbb, 0x37, 0x1f, 0xca, 0x80, 0x7e, 0x5e, 0xff, 0x00, 0x8d, 0x3c, + 0x6d, 0x04, 0x11, 0xce, 0x69, 0x59, 0xb8, 0xc6, 0x3f, 0x4a, 0x7b, 0x0c, + 0x42, 0x85, 0x88, 0xc7, 0x07, 0x14, 0xcd, 0xed, 0xb8, 0x8f, 0x4a, 0x6f, + 0x98, 0x48, 0xc8, 0xa0, 0x49, 0x8e, 0x49, 0x15, 0x64, 0xe8, 0x4b, 0xc3, + 0xf0, 0x40, 0x1e, 0xbc, 0x53, 0x48, 0x55, 0x6c, 0x64, 0x30, 0xa6, 0xf9, + 0xa8, 0xc3, 0xb9, 0x34, 0xdd, 0xbc, 0x70, 0x71, 0x9f, 0x7a, 0x49, 0x8c, + 0x93, 0x2b, 0x9e, 0x45, 0x1c, 0xfa, 0xf3, 0xf5, 0xa8, 0xc2, 0x91, 0xd5, + 0x89, 0xa9, 0x00, 0xe3, 0xad, 0x4b, 0x6d, 0x6c, 0x21, 0x76, 0xb3, 0x0e, + 0x99, 0xf7, 0x34, 0x6f, 0x28, 0x9c, 0x0f, 0xd2, 0x9b, 0xf3, 0x67, 0x8c, + 0x9a, 0x68, 0xdc, 0xac, 0x4e, 0x32, 0x68, 0xd5, 0x8c, 0x3c, 0xc6, 0x07, + 0x9e, 0x69, 0x8c, 0xd8, 0x39, 0x3c, 0xd4, 0x8c, 0x59, 0xba, 0xfe, 0x42, + 0x9b, 0xe5, 0xb3, 0x0e, 0x16, 0x8b, 0x09, 0x88, 0x25, 0x2b, 0xc8, 0xa9, + 0x04, 0xac, 0xdd, 0x73, 0x4d, 0x11, 0x90, 0x39, 0xfc, 0xa9, 0xdb, 0x3e, + 0x5c, 0x93, 0xfa, 0xd3, 0xb0, 0x85, 0xde, 0x54, 0xe4, 0x0c, 0xd3, 0x43, + 0x9c, 0xf2, 0x69, 0x58, 0x02, 0x46, 0xec, 0x05, 0xa5, 0xda, 0x0f, 0xdd, + 0xe9, 0x46, 0xc0, 0x46, 0x59, 0x84, 0x99, 0xc5, 0x38, 0xb9, 0xc8, 0xcf, + 0x7a, 0x7e, 0x14, 0xa9, 0xe7, 0x9f, 0x43, 0x51, 0xe7, 0xd8, 0x53, 0xdf, + 0x70, 0x1f, 0x9f, 0x9a, 0x86, 0xda, 0x47, 0xbd, 0x33, 0x24, 0x91, 0xc9, + 0x14, 0xb9, 0x23, 0x8f, 0xd6, 0x80, 0x11, 0x55, 0x31, 0x86, 0x38, 0x15, + 0x3a, 0xc6, 0x81, 0x7e, 0xf0, 0xc8, 0xa8, 0x76, 0x77, 0xc6, 0x7d, 0x0d, + 0x20, 0x66, 0x0c, 0x41, 0x20, 0x9f, 0x4c, 0xd5, 0xad, 0x74, 0x1a, 0xd4, + 0x99, 0x82, 0x80, 0x30, 0x06, 0x7d, 0x68, 0x2a, 0xab, 0xee, 0x6a, 0x15, + 0x91, 0xd9, 0xb6, 0x94, 0xc7, 0xe3, 0x4f, 0x45, 0x97, 0xcc, 0xc3, 0x01, + 0xb7, 0xb1, 0x26, 0x8e, 0x49, 0x07, 0x28, 0x3f, 0xcc, 0x07, 0x6f, 0x4a, + 0x50, 0x39, 0xc9, 0xe0, 0x52, 0xcc, 0x8d, 0xbb, 0xa8, 0xf6, 0xdb, 0x50, + 0xb0, 0x60, 0x08, 0xcf, 0x35, 0x0f, 0x41, 0x58, 0x94, 0x32, 0xee, 0xce, + 0x39, 0x14, 0xd3, 0x28, 0xc5, 0x34, 0x80, 0xa3, 0x8e, 0xb8, 0xa4, 0xe9, + 0x46, 0xe2, 0x16, 0x3c, 0x47, 0xca, 0x8e, 0x7d, 0xea, 0x55, 0x73, 0xb4, + 0xf4, 0xcd, 0x47, 0xb8, 0x11, 0x4d, 0x29, 0xdf, 0x77, 0x1e, 0x99, 0xa6, + 0x9d, 0xf7, 0x1d, 0xd9, 0x23, 0x06, 0x75, 0xdb, 0xbc, 0x0f, 0xc2, 0xa1, + 0x48, 0xca, 0xb9, 0x05, 0xfa, 0x52, 0xee, 0x00, 0x10, 0xa4, 0xa9, 0xf5, + 0x06, 0x9e, 0xa0, 0x11, 0xf3, 0x0c, 0x9e, 0xe6, 0xb4, 0xe6, 0xb2, 0x2a, + 0xe3, 0xd5, 0x77, 0x02, 0x4b, 0x11, 0x4a, 0xd1, 0xf4, 0x20, 0x9a, 0x4d, + 0xcb, 0x81, 0x9f, 0xd0, 0xd0, 0x58, 0x63, 0x83, 0x8a, 0xca, 0xe4, 0x89, + 0xb7, 0x1c, 0x91, 0x4d, 0xc8, 0x38, 0x18, 0xa1, 0xa5, 0xdd, 0xc7, 0x6f, + 0x5a, 0x6f, 0x03, 0xd6, 0x9a, 0x42, 0x10, 0xb1, 0x53, 0x9c, 0x02, 0x29, + 0xfb, 0x83, 0x75, 0xe2, 0x93, 0xe5, 0xce, 0x08, 0x34, 0x7c, 0xa3, 0xa6, + 0x29, 0xdc, 0x60, 0x7d, 0x00, 0x3c, 0x53, 0x82, 0x8c, 0x7b, 0xd3, 0x0f, + 0x4e, 0x0d, 0x37, 0x71, 0x07, 0x9c, 0xd2, 0xdc, 0x07, 0xb2, 0x91, 0xff, + 0x00, 0xd6, 0xa4, 0xc6, 0x07, 0x02, 0x90, 0x3e, 0x79, 0xc9, 0xa5, 0xdd, + 0x9a, 0x9b, 0x00, 0x8b, 0xc3, 0x73, 0x9c, 0x7a, 0x50, 0x0a, 0x9c, 0xe7, + 0x8a, 0x5d, 0xa4, 0xf3, 0x8a, 0x06, 0x3d, 0x33, 0x54, 0xb5, 0xd0, 0x00, + 0x2a, 0xfa, 0x9a, 0x18, 0x0c, 0xd0, 0x58, 0x02, 0x30, 0x0d, 0x21, 0x90, + 0x1c, 0x0c, 0x73, 0xd6, 0x9f, 0x28, 0x5c, 0x77, 0x99, 0x83, 0xc7, 0x34, + 0xad, 0x31, 0x1c, 0x9e, 0x3d, 0xa9, 0x85, 0x70, 0x73, 0x8e, 0x4d, 0x2f, + 0xd6, 0x93, 0xb2, 0x1d, 0xc7, 0x67, 0x20, 0x12, 0x06, 0x69, 0xc8, 0xbc, + 0x83, 0xd0, 0xf6, 0xa6, 0x65, 0x48, 0xc1, 0xa4, 0x04, 0xe7, 0x19, 0xc5, + 0x4b, 0x60, 0x99, 0x39, 0x38, 0xe5, 0xa9, 0x87, 0x74, 0x8c, 0x30, 0x01, + 0x1d, 0x01, 0x14, 0x2c, 0x8a, 0x47, 0x39, 0xa0, 0xc8, 0x33, 0xd4, 0xd0, + 0xae, 0x3b, 0xe8, 0x0d, 0x1b, 0x2e, 0x73, 0xf9, 0xd3, 0x76, 0x15, 0xc1, + 0x6f, 0xd3, 0x9a, 0x91, 0x5c, 0x30, 0x3b, 0x98, 0xfd, 0x29, 0x37, 0x2f, + 0xdd, 0x5e, 0x00, 0xa6, 0xd2, 0xb6, 0xc1, 0x74, 0x30, 0x94, 0x3d, 0xf1, + 0x40, 0xdf, 0xb8, 0x71, 0xc5, 0x2b, 0x73, 0xc9, 0x03, 0xf1, 0xa5, 0xde, + 0x0b, 0x60, 0x71, 0x45, 0xe2, 0x21, 0x1b, 0x2b, 0xd3, 0xf5, 0xa5, 0x0c, + 0x49, 0xe4, 0x62, 0x9e, 0x40, 0x39, 0x19, 0x06, 0x9a, 0xdc, 0x77, 0xe9, + 0xed, 0x53, 0xbe, 0xc3, 0xb0, 0xdd, 0xc3, 0x34, 0xd1, 0xc3, 0x11, 0xda, + 0x9d, 0xb7, 0x78, 0xc8, 0x03, 0x3f, 0x4a, 0x02, 0xed, 0x24, 0x63, 0x3e, + 0xf9, 0xaa, 0x60, 0x37, 0x1c, 0x1e, 0xb5, 0x1e, 0x18, 0xf3, 0x9a, 0x99, + 0x94, 0xb0, 0xc0, 0x5c, 0x7b, 0xd1, 0xe5, 0x3f, 0x5a, 0x91, 0x15, 0xf0, + 0x54, 0xe0, 0x0f, 0xca, 0x9a, 0x0b, 0xfa, 0x1c, 0x55, 0xb3, 0x85, 0xc6, + 0x41, 0x20, 0x8a, 0x60, 0x2a, 0x49, 0x5c, 0x50, 0x04, 0x3b, 0x8e, 0x36, + 0xe3, 0xf4, 0xa0, 0x28, 0x5e, 0x40, 0x02, 0xa4, 0x69, 0x11, 0x78, 0xc8, + 0x07, 0xde, 0x98, 0x25, 0x8d, 0xba, 0x38, 0xaa, 0xb3, 0x1d, 0x98, 0xd2, + 0xa3, 0x3f, 0x7b, 0x06, 0x97, 0x07, 0x34, 0xa5, 0x90, 0x9f, 0x5f, 0xc2, + 0x94, 0x11, 0xb4, 0x7a, 0x7b, 0xd3, 0xb3, 0xec, 0x16, 0x13, 0x8c, 0x53, + 0x4a, 0x93, 0xfc, 0x7c, 0x7b, 0xd4, 0xa7, 0x2e, 0xb9, 0x18, 0x23, 0xde, + 0x99, 0xb4, 0xe3, 0x20, 0x71, 0xed, 0x4d, 0x48, 0x7b, 0x04, 0x36, 0xa0, + 0x75, 0x39, 0xcf, 0xbd, 0x4b, 0x22, 0x01, 0xca, 0x82, 0xd8, 0xf4, 0xa4, + 0x12, 0x60, 0x03, 0x83, 0xf8, 0xd2, 0x09, 0x06, 0xef, 0x94, 0xfc, 0xc6, + 0x9e, 0xb7, 0xb8, 0xae, 0xc6, 0x9d, 0xca, 0xdb, 0x48, 0xe2, 0xab, 0xca, + 0xd9, 0x38, 0x03, 0x8a, 0xb4, 0xe4, 0x91, 0xf7, 0x47, 0xbe, 0x3b, 0xd3, + 0x0a, 0x15, 0x5d, 0x84, 0xf0, 0x7b, 0x1a, 0xb8, 0xca, 0xdb, 0x8d, 0x4a, + 0xc3, 0x22, 0x0a, 0x3e, 0x6d, 0xe0, 0x8c, 0x76, 0xa7, 0x19, 0x53, 0x05, + 0x41, 0x3c, 0xf4, 0xa0, 0x2a, 0xf6, 0x4e, 0x9d, 0x7d, 0xe8, 0x68, 0x83, + 0xe0, 0x63, 0x18, 0x14, 0x9b, 0x8b, 0x7a, 0x85, 0xd3, 0x02, 0xc1, 0x94, + 0x63, 0x8f, 0x5c, 0xd3, 0x5d, 0x72, 0x4e, 0x3a, 0x7a, 0xe7, 0x14, 0x18, + 0x48, 0xca, 0xf0, 0x7d, 0xe9, 0xe2, 0x32, 0x06, 0x71, 0xcf, 0xb5, 0x25, + 0x25, 0x17, 0xa0, 0x5c, 0x8e, 0x25, 0xc6, 0x77, 0x1c, 0xfa, 0x54, 0x98, + 0x3c, 0xe4, 0x53, 0xcc, 0x63, 0xb9, 0xa3, 0x6e, 0x0e, 0x31, 0x93, 0xda, + 0xa1, 0xc9, 0xb1, 0x6e, 0x30, 0x60, 0x76, 0x14, 0xf1, 0x11, 0xeb, 0x9e, + 0x69, 0xe2, 0x3a, 0x76, 0xd2, 0x3a, 0x0c, 0x7b, 0xd4, 0x00, 0xc0, 0x84, + 0x29, 0xa1, 0x70, 0xa7, 0xb9, 0xa9, 0x36, 0xb0, 0x5e, 0x4f, 0x1e, 0xb4, + 0x87, 0x6f, 0x7c, 0xf3, 0xed, 0x4d, 0x30, 0xb1, 0x19, 0x6f, 0x98, 0x75, + 0xfa, 0x0a, 0x90, 0x10, 0x46, 0x00, 0xe6, 0x90, 0x6d, 0xe0, 0xae, 0x29, + 0xcb, 0x8e, 0x70, 0x49, 0x39, 0xf5, 0xaa, 0xd0, 0x2c, 0x26, 0x38, 0xc1, + 0x04, 0x51, 0x83, 0x90, 0x09, 0x22, 0xa4, 0xf9, 0x59, 0x0f, 0x52, 0xde, + 0xf5, 0x1e, 0x11, 0xe4, 0x1d, 0x72, 0x3d, 0xe9, 0x68, 0x16, 0x19, 0x9c, + 0x1e, 0xe6, 0x85, 0x60, 0x3d, 0x79, 0xa7, 0xf9, 0x6b, 0xf8, 0xfa, 0x9a, + 0x63, 0xae, 0x3f, 0xfa, 0xd4, 0xae, 0x03, 0xc6, 0x30, 0x31, 0x8a, 0x6b, + 0x2b, 0x10, 0x39, 0xe9, 0x4c, 0x19, 0xc8, 0xc8, 0xa7, 0x93, 0xc7, 0x38, + 0x02, 0x86, 0xd8, 0xc5, 0x0c, 0xc0, 0x60, 0xe7, 0x8a, 0x09, 0x1d, 0x80, + 0xc5, 0x20, 0x01, 0xb3, 0xf3, 0x1e, 0x3d, 0x69, 0x4a, 0x1a, 0x9d, 0x41, + 0x8c, 0xf9, 0xc9, 0xe4, 0xe1, 0x69, 0xc4, 0x12, 0x06, 0x30, 0x69, 0x84, + 0x1e, 0x9d, 0xfa, 0x52, 0x84, 0xd9, 0xc8, 0x38, 0x35, 0x49, 0x77, 0x11, + 0x22, 0xa9, 0xc1, 0x38, 0xe9, 0x4c, 0x0f, 0x93, 0x82, 0x05, 0x1e, 0x60, + 0xc6, 0x0f, 0x34, 0x98, 0xdc, 0xf9, 0xe9, 0x8a, 0x4a, 0x2b, 0xa8, 0x0a, + 0x79, 0xe0, 0x83, 0x4a, 0x02, 0x7e, 0x3d, 0xe9, 0x76, 0x9c, 0x74, 0xc5, + 0x20, 0x53, 0xca, 0xf5, 0x34, 0xf9, 0x50, 0x0e, 0xcc, 0x6a, 0x32, 0x0f, + 0x3e, 0x94, 0xf3, 0x70, 0xc4, 0x67, 0x8c, 0x7d, 0x2a, 0x13, 0x1e, 0xe1, + 0x82, 0x0e, 0x68, 0xd9, 0x24, 0x7f, 0x2e, 0x30, 0x3e, 0x94, 0xd2, 0x5d, + 0xc6, 0x3f, 0xcc, 0x20, 0xe7, 0x27, 0x34, 0xbe, 0x67, 0xcd, 0xc8, 0xcd, + 0x35, 0x57, 0x1d, 0xc1, 0xa7, 0x2e, 0x00, 0xef, 0x8a, 0x86, 0x81, 0x12, + 0x79, 0xbd, 0x31, 0xd3, 0xe9, 0x48, 0xcc, 0xee, 0xdc, 0x9e, 0x29, 0xa4, + 0x2f, 0xa7, 0xeb, 0x47, 0x0b, 0xc8, 0xa5, 0xb0, 0xc5, 0x00, 0x81, 0xdf, + 0x14, 0x8f, 0x21, 0x3f, 0x2d, 0x3b, 0x7f, 0x1d, 0x69, 0x9b, 0x41, 0x20, + 0xff, 0x00, 0x5a, 0x77, 0x02, 0x32, 0x5f, 0x6e, 0x03, 0x62, 0x94, 0x03, + 0xb8, 0x12, 0xb8, 0xfa, 0x54, 0xa0, 0x63, 0x1c, 0x8c, 0x7b, 0xd0, 0x76, + 0x9e, 0x8c, 0x71, 0xed, 0x55, 0x7d, 0x2c, 0x21, 0x9d, 0x0f, 0xde, 0xc1, + 0xa0, 0x30, 0x1d, 0xf9, 0xf7, 0xa0, 0x63, 0x76, 0x7a, 0xd0, 0x42, 0xe0, + 0xe3, 0x83, 0x52, 0xd8, 0x06, 0x4b, 0x63, 0x00, 0x0a, 0x76, 0xe6, 0x39, + 0xc0, 0xcf, 0xd2, 0xa3, 0x25, 0x81, 0xc0, 0x3f, 0xa5, 0x20, 0x24, 0x37, + 0xde, 0x38, 0xfa, 0x50, 0x81, 0x92, 0x0c, 0xe6, 0x93, 0x04, 0x64, 0x83, + 0x8a, 0x15, 0x86, 0x0e, 0xe0, 0x4f, 0xd0, 0xd1, 0x96, 0xce, 0x07, 0x4f, + 0xe5, 0x4e, 0xcc, 0x00, 0x13, 0x8f, 0xa5, 0x1c, 0x77, 0x1f, 0xad, 0x21, + 0xdd, 0xb7, 0x91, 0x93, 0x51, 0xb0, 0x3b, 0xf1, 0xd0, 0x55, 0x72, 0x5c, + 0x13, 0x25, 0x38, 0x61, 0x8f, 0x5a, 0x42, 0xaa, 0x30, 0x46, 0x7e, 0x94, + 0x80, 0x10, 0x3a, 0xf2, 0x2a, 0x40, 0x0e, 0x33, 0xd7, 0xeb, 0x4e, 0xcd, + 0x05, 0x86, 0x92, 0xdd, 0x29, 0xa7, 0x7f, 0x71, 0x53, 0x00, 0x71, 0x83, + 0x8f, 0x6a, 0x61, 0x19, 0x1f, 0x4a, 0x96, 0xc1, 0x88, 0xa8, 0x7a, 0xe6, + 0x96, 0x4e, 0x30, 0xa8, 0xc4, 0xfa, 0xe6, 0x98, 0x0c, 0xa5, 0xf6, 0xb2, + 0x64, 0x76, 0xc1, 0xa7, 0xe3, 0x0d, 0xcf, 0xe5, 0xe9, 0x4e, 0xf6, 0x0b, + 0xd8, 0x6e, 0x0e, 0x3b, 0x92, 0x3d, 0xe9, 0xe4, 0xe4, 0x76, 0x06, 0x93, + 0x18, 0xc7, 0x3d, 0x69, 0x4a, 0x2f, 0x5e, 0x68, 0x6e, 0xe1, 0x71, 0x14, + 0x10, 0x30, 0x5c, 0x1f, 0x6a, 0x1a, 0x14, 0x39, 0x07, 0xa5, 0x31, 0xf2, + 0x39, 0x03, 0x3f, 0x85, 0x30, 0x4a, 0x41, 0xe8, 0x7f, 0x95, 0x1e, 0xf0, + 0xae, 0x4a, 0xa4, 0xa0, 0xf9, 0x4f, 0x1e, 0x94, 0x17, 0xc7, 0x3c, 0x9a, + 0x62, 0x86, 0x63, 0xd0, 0xe2, 0x9c, 0x41, 0x0b, 0xd2, 0x8e, 0x6e, 0xe3, + 0xd4, 0x8d, 0x90, 0x85, 0xc9, 0x38, 0x15, 0x17, 0x03, 0x24, 0x9e, 0x6a, + 0xd9, 0x50, 0x57, 0x18, 0xeb, 0xeb, 0x48, 0x63, 0x18, 0xc1, 0xc1, 0x1e, + 0xb8, 0xa1, 0x5b, 0xa8, 0xac, 0x57, 0xfe, 0x13, 0x8f, 0x4c, 0xe7, 0x14, + 0x28, 0x24, 0x63, 0x26, 0xa6, 0x48, 0x95, 0x41, 0x00, 0x92, 0x3d, 0xcd, + 0x38, 0x20, 0x3d, 0x38, 0xa4, 0xec, 0x16, 0x22, 0x19, 0x3c, 0xf3, 0x4f, + 0xcf, 0x3d, 0x70, 0x69, 0xfb, 0x01, 0x18, 0x20, 0x67, 0xd7, 0x34, 0x63, + 0x9a, 0x94, 0xc0, 0x36, 0xb1, 0xfe, 0x20, 0x3b, 0xd3, 0x46, 0x37, 0x63, + 0xab, 0x53, 0x8c, 0x79, 0x1d, 0x69, 0x0c, 0x79, 0xef, 0xcf, 0xad, 0x34, + 0xd0, 0x0e, 0xc1, 0x50, 0x73, 0x8c, 0xfe, 0x74, 0x9b, 0xf0, 0x07, 0xca, + 0x33, 0x48, 0x63, 0x61, 0xd0, 0x83, 0x49, 0xb1, 0x88, 0xc9, 0x14, 0xee, + 0x80, 0x37, 0xfc, 0xd9, 0xa7, 0x96, 0x07, 0x39, 0xa6, 0x6d, 0x34, 0xb8, + 0xa4, 0x04, 0x6c, 0x03, 0x0c, 0x31, 0xfa, 0x52, 0xee, 0x0a, 0xa1, 0x72, + 0x48, 0x14, 0xbb, 0x39, 0xe7, 0x34, 0x9b, 0x39, 0xed, 0x55, 0xcc, 0x21, + 0x4c, 0x8b, 0x90, 0x79, 0x02, 0x93, 0x28, 0x4e, 0x71, 0x9a, 0x0a, 0xe0, + 0xe3, 0x9a, 0x30, 0xbb, 0x4e, 0x32, 0x0d, 0x1b, 0x85, 0x98, 0xf5, 0xd9, + 0x9e, 0x5b, 0x9f, 0x4a, 0x6b, 0x4a, 0xbc, 0xf3, 0x4d, 0xda, 0x00, 0xc9, + 0x34, 0x9b, 0x72, 0x79, 0xfd, 0x68, 0xb3, 0xea, 0x16, 0x1f, 0xe6, 0x90, + 0x32, 0xbf, 0x77, 0xde, 0x8f, 0x37, 0x23, 0xee, 0x8a, 0x66, 0x0f, 0xa1, + 0xc5, 0x07, 0x39, 0x03, 0x02, 0x8b, 0x01, 0x22, 0x91, 0x90, 0x7b, 0xd4, + 0x9b, 0x87, 0x07, 0x3c, 0x7d, 0x6a, 0x20, 0x3a, 0xe4, 0xe2, 0x90, 0x87, + 0xf5, 0x04, 0x7d, 0x29, 0xa0, 0x44, 0xc6, 0x41, 0xc9, 0xc8, 0x3f, 0x87, + 0x14, 0xc3, 0x87, 0x27, 0x8e, 0x7d, 0x2a, 0xb9, 0x8e, 0x42, 0x7e, 0xf6, + 0x00, 0xf4, 0xa5, 0x10, 0xfc, 0xd9, 0x32, 0xb6, 0x47, 0x4a, 0xa7, 0x15, + 0x6d, 0x58, 0xc7, 0x90, 0x00, 0xeb, 0x83, 0x40, 0xda, 0x48, 0xeb, 0x8a, + 0x4f, 0x24, 0x02, 0x4b, 0x1c, 0xe7, 0xd6, 0x9c, 0xaa, 0x31, 0xb4, 0x7f, + 0x3a, 0x9b, 0x21, 0x0a, 0x71, 0xc8, 0xcd, 0x37, 0x8c, 0xe4, 0x9a, 0x7e, + 0xde, 0xd4, 0x86, 0x33, 0xc1, 0xce, 0x29, 0x2b, 0x08, 0x8d, 0xd1, 0x5b, + 0x93, 0xf9, 0x52, 0x2e, 0x40, 0xe0, 0x71, 0xed, 0x52, 0x6c, 0xcf, 0x5e, + 0x94, 0xa0, 0x7d, 0x3e, 0x98, 0xaa, 0xb8, 0x0c, 0x20, 0xf6, 0x34, 0xa1, + 0x41, 0xee, 0x73, 0x4f, 0x29, 0x81, 0x9a, 0x45, 0x53, 0x9c, 0xf1, 0xeb, + 0x9a, 0x5a, 0x30, 0x01, 0x1d, 0x21, 0x52, 0x38, 0xc5, 0x49, 0xe6, 0x0c, + 0xfb, 0x50, 0xcc, 0x0e, 0x31, 0x49, 0xab, 0x01, 0x10, 0x1f, 0x85, 0x21, + 0x5e, 0x69, 0xec, 0x46, 0x68, 0xe3, 0x3d, 0x39, 0xa5, 0xa8, 0x0d, 0x0b, + 0x9a, 0x0a, 0x13, 0xc1, 0xa7, 0x0c, 0x06, 0xe4, 0x60, 0x53, 0xd4, 0x1c, + 0xfc, 0xd4, 0x05, 0xc6, 0x2a, 0x64, 0xfa, 0xe2, 0x9c, 0x57, 0xdb, 0x07, + 0xda, 0x9c, 0x32, 0x84, 0xe4, 0x73, 0xe9, 0x41, 0x65, 0x3e, 0xa0, 0xd1, + 0xa8, 0x86, 0x04, 0xc9, 0xf4, 0xa3, 0x60, 0x27, 0x86, 0xc1, 0xf4, 0xa9, + 0x09, 0x51, 0xcf, 0xe1, 0x8a, 0x6b, 0x37, 0x39, 0x04, 0x01, 0xea, 0x68, + 0x57, 0xbe, 0x85, 0x24, 0x47, 0xe5, 0x00, 0x72, 0x79, 0xa0, 0x22, 0x8f, + 0xbc, 0xb4, 0xa9, 0x38, 0x3c, 0x14, 0x3f, 0x5a, 0x99, 0x1d, 0x5c, 0x6e, + 0x28, 0x47, 0x3d, 0xf8, 0xaa, 0x6a, 0x4b, 0x70, 0xe5, 0x22, 0xdb, 0x9f, + 0xe9, 0x49, 0x8e, 0x2a, 0x7c, 0x0c, 0xe4, 0x0a, 0x63, 0xa6, 0x57, 0xb6, + 0x69, 0x2d, 0x47, 0x64, 0x45, 0xb3, 0x70, 0xe9, 0x4b, 0xe5, 0xe3, 0xbd, + 0x44, 0x77, 0xa1, 0xc0, 0x3b, 0x8d, 0x3c, 0x79, 0xa7, 0xb0, 0x15, 0x4e, + 0x9b, 0xee, 0x16, 0x1c, 0xaa, 0x37, 0x70, 0x71, 0x4e, 0x03, 0xe6, 0xc1, + 0xe4, 0xd0, 0xbb, 0xb6, 0xd3, 0x4e, 0x47, 0x38, 0x39, 0xef, 0x4a, 0xcc, + 0x56, 0x1d, 0xbe, 0x3c, 0x77, 0x1e, 0xc2, 0xa3, 0x56, 0x27, 0x38, 0xcd, + 0x29, 0x75, 0x00, 0x7c, 0xb8, 0x34, 0xe5, 0x39, 0x1c, 0x0e, 0x69, 0x34, + 0x03, 0x1c, 0x3b, 0x2a, 0xf0, 0x71, 0xeb, 0x42, 0x06, 0xce, 0x40, 0x18, + 0x15, 0x29, 0x72, 0xdc, 0x67, 0x81, 0xda, 0x98, 0xc7, 0x03, 0x18, 0xc6, + 0x68, 0x49, 0x3e, 0x82, 0x10, 0x36, 0x58, 0x9f, 0xe5, 0x4a, 0xe0, 0xb7, + 0x46, 0x23, 0x3d, 0x8d, 0x21, 0x0a, 0x30, 0x3a, 0x7b, 0xd3, 0x72, 0xac, + 0x71, 0xd6, 0x9a, 0x8d, 0x9e, 0x85, 0x20, 0x50, 0xca, 0xd9, 0x2d, 0x9c, + 0x7b, 0xd4, 0xd9, 0x6c, 0x64, 0xd3, 0x43, 0xaa, 0x8c, 0x0f, 0xca, 0x94, + 0xcc, 0x70, 0x30, 0xb9, 0xfc, 0x6a, 0x5f, 0x30, 0x21, 0xdb, 0xcf, 0x39, + 0xe9, 0x51, 0x99, 0xbb, 0x11, 0xdf, 0xbd, 0x1e, 0x68, 0x61, 0x8d, 0xa4, + 0x53, 0x70, 0x09, 0xe7, 0xf0, 0xe2, 0x8b, 0x30, 0x62, 0x99, 0x81, 0xe0, + 0x8e, 0x94, 0x83, 0x93, 0xf2, 0xd3, 0x80, 0x0c, 0x70, 0x45, 0x3c, 0xc5, + 0x81, 0xe8, 0x3d, 0xcd, 0x1b, 0x01, 0x1f, 0x95, 0x1b, 0x1f, 0x98, 0x64, + 0xd2, 0x79, 0x2a, 0x39, 0x01, 0x47, 0xe1, 0x4e, 0xda, 0xc3, 0x8c, 0xe6, + 0x9c, 0x14, 0xe3, 0x34, 0x29, 0x35, 0xd4, 0x6d, 0x8c, 0xda, 0xa7, 0x1d, + 0x01, 0x1d, 0xa8, 0xc8, 0x1d, 0x47, 0xe9, 0x4f, 0x0b, 0x91, 0xd2, 0x9c, + 0x54, 0x7f, 0x78, 0x13, 0xe9, 0x4f, 0x99, 0x88, 0x8d, 0x79, 0x5e, 0x31, + 0xf8, 0xd1, 0xb5, 0xb1, 0x81, 0xfa, 0x53, 0x8e, 0xd5, 0x38, 0x6c, 0x03, + 0xe9, 0x46, 0x77, 0x70, 0xb4, 0x92, 0x60, 0x30, 0x02, 0x18, 0x64, 0x66, + 0x95, 0x86, 0x4f, 0x2b, 0xf8, 0x53, 0xf6, 0x63, 0xbf, 0x34, 0xf5, 0x89, + 0xdf, 0xa2, 0x12, 0x3d, 0x69, 0xa5, 0x27, 0xb0, 0x88, 0x54, 0x1f, 0x71, + 0x4b, 0xb5, 0x49, 0xe4, 0x72, 0x7d, 0xab, 0x46, 0x0d, 0x2a, 0x59, 0x94, + 0xb6, 0xf8, 0x93, 0xd9, 0x9e, 0xaa, 0xcb, 0x17, 0xd9, 0xdf, 0x63, 0x90, + 0x48, 0xf4, 0x39, 0xad, 0x1c, 0x26, 0x97, 0xbc, 0x82, 0xe8, 0x80, 0xc6, + 0x47, 0x38, 0xc0, 0xa4, 0x23, 0x91, 0x8e, 0x6a, 0x52, 0x19, 0x8e, 0x73, + 0x95, 0xf4, 0xa5, 0x11, 0x91, 0xce, 0xd1, 0xf5, 0xac, 0x9b, 0x45, 0x58, + 0x89, 0x50, 0x1f, 0x6a, 0x5f, 0x2f, 0x35, 0x31, 0x39, 0x04, 0x9e, 0x3f, + 0x0a, 0x83, 0xce, 0x4c, 0xf2, 0x7f, 0x01, 0x52, 0x80, 0x7a, 0xa7, 0x39, + 0xed, 0x52, 0x05, 0x00, 0xf2, 0x33, 0x4c, 0x0c, 0x85, 0x86, 0xde, 0x87, + 0xae, 0x7b, 0x54, 0xa9, 0xb4, 0xfd, 0xd6, 0xfc, 0x29, 0x36, 0x02, 0x1c, + 0x13, 0xc5, 0x18, 0x62, 0x3d, 0x6a, 0x40, 0xa3, 0x27, 0x71, 0x38, 0xfa, + 0x50, 0x14, 0x6d, 0xe0, 0x7e, 0xb4, 0x82, 0xc3, 0x15, 0x01, 0x3c, 0xb7, + 0x4f, 0x5a, 0x46, 0x01, 0x86, 0x38, 0xfa, 0xd3, 0xf6, 0xb1, 0xc8, 0xc7, + 0x1f, 0x5a, 0x63, 0x28, 0x5c, 0x13, 0xf7, 0x7e, 0xb5, 0x4a, 0xe1, 0x62, + 0x07, 0x8b, 0x70, 0xda, 0x00, 0xfc, 0x29, 0x9e, 0x5b, 0x46, 0x0a, 0x28, + 0xc1, 0xef, 0x9a, 0xb2, 0x24, 0x00, 0x6d, 0x5c, 0x66, 0x90, 0xb6, 0x58, + 0x06, 0xc6, 0x4f, 0x7a, 0x7c, 0xcd, 0x20, 0xd8, 0x81, 0x25, 0x09, 0x90, + 0x47, 0x1d, 0xe8, 0x0c, 0xac, 0x4e, 0x07, 0x7f, 0xa5, 0x38, 0xb6, 0xc6, + 0xe3, 0xaf, 0xd2, 0x97, 0x6c, 0x8c, 0xa5, 0xbe, 0x4f, 0xca, 0x84, 0xee, + 0x2b, 0x8c, 0x27, 0x91, 0xb7, 0x34, 0x14, 0x6c, 0x7c, 0xdc, 0x67, 0xd2, + 0x94, 0x03, 0x8e, 0x71, 0x9a, 0x70, 0x8c, 0x84, 0xc0, 0x3c, 0x7b, 0xd3, + 0xba, 0x02, 0x0f, 0x2d, 0xc9, 0xe1, 0x88, 0xf5, 0xef, 0x4f, 0x08, 0x07, + 0x19, 0xcd, 0x4c, 0x23, 0x1b, 0x79, 0x6e, 0x33, 0x41, 0x88, 0x76, 0x23, + 0x35, 0x57, 0xb8, 0xc8, 0x1c, 0x90, 0xfc, 0x70, 0x29, 0x54, 0x12, 0xc4, + 0xe4, 0x01, 0x4e, 0x11, 0x9e, 0xbf, 0xa1, 0x3c, 0x53, 0xd7, 0x03, 0xd0, + 0x9f, 0xa5, 0x26, 0xd2, 0x13, 0x10, 0xf2, 0xbc, 0xe3, 0x34, 0xdd, 0xaa, + 0x47, 0x39, 0x35, 0x27, 0x5e, 0xb8, 0xfa, 0x52, 0x80, 0x33, 0xed, 0x53, + 0x70, 0x21, 0xc2, 0xe7, 0x03, 0xaf, 0xad, 0x3f, 0x0a, 0x46, 0x1a, 0x9e, + 0x40, 0x2d, 0xc2, 0xf4, 0xef, 0x8a, 0x36, 0x8c, 0xfa, 0x8a, 0x02, 0xe3, + 0x76, 0x91, 0xc7, 0x51, 0x4e, 0xc0, 0x3d, 0xe9, 0x09, 0x45, 0x3d, 0x4d, + 0x07, 0x0c, 0x78, 0xfd, 0x0d, 0x2b, 0xea, 0x02, 0x9e, 0x0e, 0x01, 0x39, + 0x14, 0xd6, 0x66, 0x6e, 0xae, 0x4f, 0xd6, 0x82, 0xc4, 0x67, 0x93, 0x49, + 0xbf, 0x68, 0x19, 0xef, 0xde, 0x8b, 0x8d, 0x31, 0x36, 0x03, 0xc9, 0x27, + 0x34, 0xd2, 0x39, 0xee, 0x71, 0x52, 0x12, 0xae, 0x06, 0x38, 0xc5, 0x01, + 0x5f, 0x3c, 0x62, 0x80, 0x18, 0x1d, 0x41, 0xf5, 0xfc, 0x29, 0x77, 0x67, + 0xff, 0x00, 0xd5, 0x4b, 0xe5, 0xc8, 0x49, 0xe0, 0x1c, 0x9e, 0xb9, 0xa7, + 0xf9, 0x64, 0x02, 0x32, 0x29, 0xb6, 0x96, 0xe3, 0xb0, 0xc2, 0x07, 0x63, + 0x4d, 0x3e, 0xb9, 0xfc, 0xaa, 0x40, 0xaa, 0x57, 0x0c, 0x31, 0xf4, 0xef, + 0x50, 0x88, 0x15, 0x64, 0x24, 0x96, 0x23, 0xd3, 0x34, 0xb4, 0x6c, 0x42, + 0xe7, 0x0d, 0xb7, 0x3f, 0x85, 0x07, 0xe5, 0x06, 0x90, 0x84, 0x56, 0x2c, + 0x07, 0x4a, 0x90, 0x0d, 0xe9, 0xc7, 0x07, 0xeb, 0x45, 0xbb, 0x01, 0x1e, + 0x40, 0x02, 0x9c, 0x24, 0xe3, 0x81, 0xf8, 0x53, 0xc4, 0x58, 0x03, 0x2d, + 0x9a, 0x43, 0x80, 0x7b, 0x53, 0xb2, 0xea, 0x00, 0x4f, 0xcb, 0xd3, 0x06, + 0x98, 0x50, 0x13, 0x9e, 0x2a, 0x65, 0x07, 0x6e, 0x01, 0x1f, 0x9d, 0x34, + 0x20, 0xe7, 0x70, 0xe7, 0x3d, 0xa9, 0xa4, 0x04, 0x60, 0x6c, 0x1d, 0x3a, + 0xf7, 0xa7, 0x06, 0x23, 0xa5, 0x38, 0x95, 0x50, 0x40, 0xeb, 0xeb, 0x52, + 0x46, 0xa1, 0xd7, 0x82, 0x07, 0xae, 0x68, 0x15, 0x8a, 0xe4, 0xf3, 0xd7, + 0x39, 0xa4, 0xda, 0xfb, 0x87, 0x03, 0x1e, 0xb5, 0x28, 0x08, 0xdf, 0x28, + 0xce, 0x7e, 0x94, 0x05, 0xc1, 0xe4, 0x91, 0x4f, 0x44, 0x82, 0xc3, 0x42, + 0xb8, 0x3d, 0x47, 0xe3, 0x4a, 0x58, 0x01, 0xf7, 0xb9, 0xf6, 0x14, 0xac, + 0x06, 0x00, 0xc9, 0x06, 0x86, 0x44, 0xc7, 0x52, 0x5a, 0xa1, 0xca, 0xe0, + 0x20, 0x62, 0x7b, 0xf3, 0x4e, 0x2a, 0x31, 0xc9, 0xa6, 0xae, 0x49, 0x38, + 0xed, 0xed, 0x4f, 0x0b, 0xb4, 0xf5, 0xa5, 0xd4, 0x06, 0xff, 0x00, 0x0f, + 0xca, 0xdd, 0x29, 0x00, 0xe7, 0x3c, 0x1a, 0x70, 0x60, 0x4e, 0x02, 0x9f, + 0xa9, 0x14, 0xec, 0x1c, 0xe6, 0x93, 0x0b, 0x0c, 0x20, 0x81, 0xcd, 0x1e, + 0x66, 0xd0, 0x7b, 0x53, 0x9f, 0xee, 0xf3, 0xc8, 0xf6, 0xa8, 0xf8, 0x6e, + 0x36, 0x90, 0x3f, 0x4a, 0x68, 0x2c, 0x05, 0xb7, 0x63, 0xbf, 0xe3, 0x46, + 0xdc, 0xf3, 0xb7, 0x9a, 0x78, 0x51, 0x90, 0x50, 0x62, 0x9e, 0x1f, 0x04, + 0x74, 0x3e, 0xb4, 0xee, 0xd0, 0xec, 0x46, 0x37, 0x6d, 0xce, 0x0d, 0x23, + 0x16, 0xf4, 0xa9, 0xc9, 0x53, 0x51, 0xb0, 0xf5, 0x07, 0x06, 0x95, 0xd3, + 0x63, 0x1c, 0x80, 0x10, 0x09, 0x34, 0x84, 0xaa, 0x9c, 0xfa, 0xd2, 0x82, + 0x07, 0x55, 0x19, 0xf6, 0xa6, 0x1c, 0x37, 0x21, 0x6a, 0xf4, 0x64, 0xdc, + 0x6b, 0x6d, 0x5e, 0x71, 0xcf, 0x6a, 0x60, 0x65, 0x76, 0xe4, 0x54, 0xfc, + 0x95, 0x1c, 0x28, 0x1f, 0xdd, 0xa0, 0x46, 0x33, 0x96, 0x8f, 0xfe, 0xf9, + 0xaa, 0xb4, 0x17, 0x50, 0xb9, 0x10, 0x0a, 0xa4, 0xf2, 0x28, 0x0e, 0xbd, + 0x81, 0xcd, 0x3d, 0xa3, 0x8f, 0x9f, 0x95, 0xb3, 0xeb, 0x4c, 0x03, 0x8c, + 0x05, 0x34, 0x5e, 0x00, 0x48, 0xa4, 0x9e, 0x4f, 0x03, 0xb5, 0x3b, 0xb7, + 0x6c, 0xd4, 0x21, 0x32, 0xdc, 0x16, 0x02, 0x97, 0x7b, 0x29, 0x2a, 0x0a, + 0xb0, 0xfa, 0x54, 0xde, 0x2c, 0x2e, 0xc9, 0x3a, 0x74, 0xa6, 0x16, 0x24, + 0xf4, 0xa6, 0x96, 0x7c, 0xfa, 0x7e, 0x14, 0xe0, 0x4e, 0x79, 0x38, 0xa4, + 0x3d, 0x46, 0x91, 0x92, 0x0e, 0x71, 0xf8, 0xd3, 0x46, 0x54, 0x90, 0x4e, + 0x3d, 0xea, 0x41, 0x1e, 0x79, 0x03, 0x3f, 0x4a, 0x53, 0xb4, 0xe4, 0x31, + 0xc7, 0x1d, 0x29, 0xab, 0xf5, 0x02, 0x36, 0xde, 0xca, 0x08, 0x60, 0x09, + 0xf4, 0xa4, 0x24, 0xed, 0xc6, 0xe1, 0x9f, 0xa5, 0x28, 0x51, 0x9e, 0x3f, + 0x9d, 0x4a, 0xb1, 0xa9, 0xea, 0xdc, 0xd1, 0x74, 0x17, 0x20, 0xcb, 0x60, + 0x2b, 0x60, 0x93, 0xd0, 0xd2, 0xb6, 0x41, 0xc0, 0x0b, 0x9a, 0x98, 0x42, + 0x0e, 0x48, 0x2b, 0x9f, 0x7a, 0x68, 0x50, 0x18, 0xe7, 0x14, 0xf9, 0x90, + 0x59, 0x91, 0x29, 0x7f, 0xe2, 0x4a, 0x1a, 0x49, 0x31, 0x90, 0x00, 0x51, + 0xdf, 0x35, 0x3f, 0x1b, 0x89, 0x03, 0x27, 0xdf, 0xb5, 0x45, 0x80, 0xc4, + 0xf0, 0x38, 0xaa, 0xe6, 0x88, 0x9a, 0x01, 0x20, 0x28, 0x39, 0xa6, 0xb3, + 0x27, 0x56, 0x62, 0x0d, 0x29, 0x8c, 0x7a, 0x60, 0x7d, 0x69, 0x55, 0x41, + 0x52, 0x06, 0x0d, 0x24, 0xe2, 0x21, 0x9b, 0x90, 0x65, 0x8b, 0x71, 0x4e, + 0x59, 0x23, 0x3f, 0x76, 0x45, 0x27, 0xeb, 0x49, 0x24, 0x23, 0x19, 0xc0, + 0x34, 0x24, 0x28, 0x07, 0xcd, 0x12, 0x7d, 0x6a, 0xad, 0x10, 0xba, 0x1d, + 0xbc, 0x73, 0x92, 0x0e, 0x29, 0x32, 0xbb, 0xb2, 0x39, 0xa8, 0xbe, 0xce, + 0xaa, 0xd9, 0x0a, 0xc7, 0x9e, 0xc6, 0xa5, 0xf9, 0xfa, 0x63, 0x8a, 0x87, + 0x65, 0xb0, 0xee, 0x85, 0xf7, 0xec, 0x7d, 0x29, 0xdf, 0x28, 0xf6, 0xf5, + 0xcd, 0x35, 0x50, 0x63, 0x04, 0x0c, 0xd3, 0x96, 0x25, 0x0f, 0x93, 0xd6, + 0xa6, 0xe8, 0x76, 0x0d, 0xca, 0x39, 0x3d, 0x3d, 0xa9, 0x72, 0xac, 0xb9, + 0xcd, 0x06, 0x24, 0x27, 0x24, 0x9c, 0x52, 0xf9, 0x2a, 0xbc, 0xaa, 0xf1, + 0xe8, 0x0d, 0x1e, 0xe9, 0x3a, 0x8c, 0x24, 0x05, 0xc0, 0xa6, 0x1e, 0x9f, + 0x2f, 0x26, 0x9e, 0xe8, 0xa5, 0x42, 0x90, 0x57, 0xf4, 0xa1, 0x61, 0x00, + 0x12, 0xaa, 0x7e, 0x99, 0xaa, 0x51, 0x0b, 0x32, 0x32, 0x5f, 0xda, 0x8d, + 0xcd, 0x83, 0x91, 0x9a, 0x73, 0x29, 0x8c, 0x64, 0x82, 0x7f, 0x0a, 0x62, + 0x4e, 0x80, 0xe1, 0x81, 0xc7, 0xa6, 0x0d, 0x56, 0xbd, 0x83, 0x95, 0x80, + 0x88, 0xb3, 0x0e, 0x06, 0x7d, 0x69, 0xde, 0x5b, 0x12, 0x07, 0x1f, 0x52, + 0x71, 0x56, 0x01, 0x6c, 0xab, 0x2a, 0xae, 0xcf, 0xf7, 0xa8, 0x99, 0xb0, + 0xe0, 0x2e, 0x0e, 0x45, 0x1a, 0x8f, 0x95, 0x90, 0xbd, 0xb8, 0x07, 0x9f, + 0x9b, 0x1f, 0x8d, 0x28, 0x56, 0xec, 0x31, 0x4b, 0xc9, 0xe4, 0x9c, 0x7b, + 0x0a, 0x91, 0x24, 0x23, 0x39, 0x40, 0xf9, 0xef, 0x83, 0xc5, 0x17, 0xe6, + 0x61, 0xca, 0xc8, 0xd8, 0x36, 0x01, 0xdb, 0x9a, 0x42, 0x59, 0x86, 0xd0, + 0x31, 0x8f, 0xc2, 0xac, 0xcb, 0x34, 0x61, 0x40, 0x44, 0xc9, 0xc7, 0xb8, + 0xa8, 0x8b, 0xa2, 0xe3, 0x0d, 0xbb, 0x23, 0x9e, 0x31, 0x8a, 0x1a, 0x68, + 0x5c, 0x84, 0x64, 0xb6, 0x00, 0x6e, 0x7e, 0xb4, 0xa1, 0xb9, 0xfb, 0xa4, + 0x90, 0x3a, 0x0a, 0x56, 0xe5, 0xf2, 0x30, 0x28, 0x0e, 0xdc, 0x85, 0x27, + 0x26, 0xa5, 0xc8, 0x14, 0x43, 0x19, 0x03, 0x82, 0x41, 0xf5, 0xa4, 0x78, + 0x87, 0x42, 0x7f, 0x5a, 0x70, 0x79, 0x07, 0x1b, 0x71, 0xf8, 0xd4, 0x86, + 0x40, 0x3a, 0xa2, 0x83, 0xeb, 0x53, 0x74, 0x86, 0xa2, 0x55, 0x68, 0x15, + 0x3f, 0x8d, 0x87, 0xd6, 0x9e, 0x92, 0x08, 0xff, 0x00, 0x8b, 0x77, 0xd6, + 0x9f, 0x2c, 0x8a, 0xcd, 0xc1, 0xe3, 0xd0, 0x0a, 0x8f, 0x2b, 0xdb, 0x8a, + 0x6e, 0x65, 0x5b, 0xcc, 0x6b, 0x48, 0x64, 0x3c, 0x13, 0xf8, 0x52, 0xfc, + 0xe5, 0xb8, 0xdc, 0x7d, 0x78, 0xa9, 0x84, 0xb9, 0xc6, 0xd4, 0x38, 0x14, + 0x9b, 0x98, 0x49, 0xd3, 0x03, 0xbe, 0x69, 0x29, 0x5c, 0x4a, 0x23, 0x07, + 0x3c, 0x36, 0x47, 0xb5, 0x35, 0xa4, 0x00, 0x61, 0x41, 0x1e, 0xbb, 0xaa, + 0x79, 0x1a, 0x1f, 0xb3, 0x92, 0x19, 0xbc, 0xec, 0xfd, 0xd2, 0xa3, 0x18, + 0xfa, 0xe6, 0xa9, 0xa8, 0x00, 0x92, 0xc3, 0xf5, 0xad, 0x6e, 0x96, 0xe5, + 0x72, 0xa0, 0x33, 0xb2, 0xf1, 0x82, 0x73, 0x4e, 0x59, 0x73, 0xd7, 0x83, + 0x48, 0xe8, 0xae, 0x38, 0x18, 0xfc, 0x69, 0x8d, 0x6e, 0x00, 0x0c, 0x01, + 0xc8, 0xf7, 0x34, 0xaf, 0x16, 0x2b, 0x16, 0x86, 0x59, 0x72, 0x69, 0xac, + 0xca, 0x87, 0xad, 0x57, 0x31, 0xbe, 0x77, 0x79, 0xa4, 0x7b, 0x55, 0x84, + 0x1c, 0x0c, 0x8c, 0x9f, 0x5a, 0x96, 0xd2, 0x0b, 0x21, 0x15, 0x83, 0x93, + 0x80, 0x4f, 0xe1, 0x4e, 0x21, 0x43, 0x60, 0xd2, 0x83, 0xb4, 0xf0, 0x09, + 0xa6, 0xb2, 0x92, 0x72, 0x57, 0xf5, 0xa1, 0x34, 0x48, 0x14, 0x04, 0x83, + 0xc1, 0xf7, 0xa5, 0x11, 0x32, 0xb1, 0x3f, 0xa5, 0x34, 0x6e, 0x03, 0x1d, + 0x3f, 0x1a, 0x7a, 0x3b, 0xa8, 0xeb, 0x83, 0xea, 0x69, 0xb9, 0xd8, 0x77, + 0x1a, 0x23, 0x3f, 0x78, 0xa9, 0x1f, 0x4e, 0x29, 0xe0, 0x63, 0x80, 0x09, + 0xf7, 0xa4, 0x6c, 0x81, 0xd7, 0x39, 0xa0, 0x7b, 0x8f, 0xd6, 0xa1, 0xca, + 0xfa, 0x80, 0xa5, 0x4f, 0xa0, 0x34, 0x6c, 0x03, 0x9a, 0x5c, 0xaa, 0xfa, + 0xf3, 0xef, 0x4d, 0x66, 0xe7, 0x20, 0xd2, 0xe6, 0x01, 0x4f, 0x18, 0x38, + 0xa0, 0x16, 0x7f, 0xbc, 0x18, 0x0a, 0x66, 0x5b, 0xde, 0xa4, 0x56, 0x39, + 0xe3, 0x3f, 0x8d, 0x1c, 0xc1, 0xa0, 0x60, 0xfb, 0x8c, 0xf6, 0xc5, 0x3c, + 0x45, 0x23, 0x92, 0x07, 0x38, 0xec, 0x05, 0x1b, 0xdb, 0xee, 0xf5, 0xfc, + 0x29, 0x55, 0xb6, 0x0e, 0x32, 0x29, 0xf3, 0x00, 0x6d, 0x7c, 0x9c, 0xae, + 0x29, 0xa2, 0x2e, 0x41, 0x20, 0x52, 0x09, 0xce, 0xe2, 0x73, 0xde, 0x9e, + 0xee, 0x58, 0x72, 0x45, 0x26, 0xd8, 0x07, 0x95, 0xb8, 0xf3, 0x8c, 0xd3, + 0x4c, 0x61, 0x49, 0x19, 0x03, 0x34, 0xa1, 0x86, 0xdc, 0x60, 0x1c, 0x7b, + 0x52, 0xaf, 0xbf, 0x27, 0xde, 0x97, 0x30, 0xec, 0x81, 0x61, 0x18, 0x2d, + 0xbf, 0xb7, 0x4a, 0x6a, 0x87, 0x6c, 0xa3, 0x31, 0x03, 0xb1, 0x06, 0xa4, + 0x12, 0x05, 0xfe, 0x1a, 0x43, 0x23, 0xee, 0xca, 0xe3, 0x1f, 0x4a, 0xb5, + 0x51, 0xf4, 0x04, 0x91, 0x1f, 0x94, 0xc0, 0xf4, 0x27, 0xea, 0xd4, 0xe7, + 0xce, 0x46, 0x54, 0x63, 0xda, 0xa4, 0x59, 0x65, 0xef, 0x8a, 0x46, 0x7f, + 0xef, 0x62, 0x9f, 0x33, 0xea, 0x3b, 0x21, 0x8b, 0xb0, 0x9e, 0x18, 0xe0, + 0x75, 0xc5, 0x49, 0x29, 0x56, 0x40, 0x11, 0x76, 0xfb, 0xb1, 0xce, 0x69, + 0xbf, 0x27, 0x66, 0xa4, 0xc8, 0x53, 0x95, 0x34, 0xb9, 0x90, 0xac, 0x21, + 0x0e, 0x87, 0x24, 0x0c, 0xe3, 0xad, 0x42, 0xfb, 0x01, 0xcb, 0x1c, 0x93, + 0xed, 0x53, 0x11, 0xbb, 0xb9, 0x1e, 0xf5, 0x11, 0x05, 0x4f, 0x1c, 0xd1, + 0xcc, 0x90, 0xac, 0x29, 0x8b, 0x66, 0xd2, 0x5b, 0x6e, 0x47, 0xe5, 0x48, + 0x1d, 0x94, 0xf0, 0xbb, 0xb0, 0x7a, 0xf4, 0xa7, 0x28, 0x73, 0xc9, 0x14, + 0xa4, 0x03, 0xcf, 0x22, 0x93, 0x69, 0x80, 0x82, 0x6c, 0x9c, 0x10, 0xc3, + 0x1e, 0xb4, 0xe2, 0xf8, 0x5e, 0xe3, 0xdb, 0x14, 0x73, 0xdb, 0x1f, 0xd6, + 0x9a, 0x41, 0xce, 0x7a, 0x9a, 0x96, 0x80, 0x5d, 0xd9, 0x23, 0x1d, 0x29, + 0x49, 0x00, 0x67, 0x19, 0x15, 0x13, 0x48, 0xc9, 0x83, 0x80, 0x5b, 0xe9, + 0x4e, 0x12, 0xbb, 0xa1, 0x3b, 0x78, 0xf6, 0x14, 0x86, 0x84, 0x24, 0x11, + 0xb8, 0x0f, 0xca, 0x9d, 0x90, 0x78, 0x06, 0x85, 0x6d, 0xcb, 0x8d, 0xbc, + 0x77, 0xa1, 0x4a, 0xe3, 0x2a, 0x3a, 0x53, 0x01, 0x4f, 0x23, 0x04, 0x0a, + 0x6a, 0xb7, 0x24, 0x28, 0x39, 0xa7, 0x60, 0x93, 0x9c, 0x7e, 0x66, 0x82, + 0xed, 0x9c, 0x0c, 0x7d, 0x6a, 0x76, 0x15, 0xc4, 0xd8, 0xc3, 0x96, 0x1f, + 0x95, 0x29, 0x04, 0xf4, 0xe9, 0xe9, 0x4a, 0x5c, 0xe3, 0xa8, 0xfc, 0xa9, + 0x54, 0x82, 0x33, 0x90, 0x4f, 0xf2, 0xa6, 0x98, 0x68, 0x47, 0xf3, 0x06, + 0x3f, 0x2f, 0xcb, 0xea, 0x29, 0xbb, 0x1c, 0x0c, 0x92, 0x70, 0x6a, 0x60, + 0x46, 0x36, 0xb1, 0x38, 0xf6, 0x34, 0xd3, 0x80, 0x38, 0xce, 0x2a, 0xb9, + 0x90, 0x86, 0x6e, 0xc2, 0x72, 0xd4, 0x9b, 0xc8, 0x3c, 0x00, 0x45, 0x49, + 0x85, 0x34, 0xd1, 0xb5, 0x32, 0x30, 0x7f, 0x1a, 0x5c, 0xc8, 0x2c, 0x0a, + 0xc7, 0x23, 0x2b, 0xc7, 0xb5, 0x23, 0x67, 0x76, 0x01, 0x22, 0x97, 0x2a, + 0x7f, 0x87, 0xf5, 0xa7, 0x64, 0xe3, 0xee, 0xf1, 0xed, 0x47, 0x30, 0x58, + 0x67, 0x39, 0xfb, 0xdc, 0xd2, 0x96, 0xc1, 0xf9, 0x87, 0x1e, 0xa2, 0x82, + 0xdc, 0x7d, 0xda, 0x36, 0x93, 0xfc, 0x27, 0x1e, 0xb9, 0xa2, 0xe1, 0x61, + 0x8c, 0xc3, 0x70, 0xc5, 0x00, 0x9c, 0xf4, 0xfc, 0x4d, 0x49, 0xf7, 0x47, + 0xca, 0x09, 0x27, 0xd6, 0x91, 0x4b, 0xee, 0xe5, 0x29, 0xab, 0x30, 0x23, + 0x57, 0x0a, 0x0e, 0x48, 0x1e, 0x98, 0x34, 0xf5, 0x61, 0x26, 0x41, 0x43, + 0x8f, 0xc2, 0x9e, 0xcc, 0xff, 0x00, 0xdc, 0xc8, 0xfa, 0x52, 0x33, 0xb9, + 0xe8, 0x9b, 0x4f, 0xa8, 0x14, 0xee, 0xac, 0x03, 0x94, 0x20, 0x1f, 0x2a, + 0x11, 0xf8, 0x50, 0x5c, 0xe0, 0x0c, 0x15, 0x34, 0xd7, 0x67, 0x65, 0xe5, + 0xb0, 0xdf, 0x4a, 0x6a, 0x3b, 0x03, 0xf3, 0x73, 0xef, 0x9a, 0x9b, 0x00, + 0xfc, 0xb5, 0x27, 0x3d, 0xf1, 0xcf, 0xa5, 0x4e, 0x88, 0xcc, 0x06, 0xcc, + 0x37, 0xb0, 0xa4, 0x92, 0x16, 0x0c, 0x32, 0x99, 0xfa, 0x51, 0xca, 0x3b, + 0x91, 0x15, 0x08, 0x46, 0x41, 0xfa, 0xd3, 0x58, 0x6f, 0x07, 0x60, 0x26, + 0xa6, 0xda, 0x78, 0xca, 0x8f, 0xc4, 0xd2, 0xf3, 0xb7, 0x0a, 0x17, 0x14, + 0x6a, 0x82, 0xe4, 0x3b, 0x55, 0x46, 0x09, 0x39, 0xa8, 0xc2, 0x36, 0x4e, + 0x06, 0x71, 0xe9, 0x56, 0x5a, 0x33, 0x8d, 0xc4, 0x00, 0x3e, 0xb8, 0xa6, + 0xa2, 0xc7, 0x82, 0x4b, 0x60, 0xf6, 0xe6, 0x9a, 0x76, 0xdc, 0x44, 0x40, + 0x02, 0xa3, 0x76, 0xe5, 0x23, 0xb1, 0xa4, 0x78, 0x0b, 0x0e, 0x0f, 0xe3, + 0x52, 0xa8, 0x6c, 0xfd, 0xef, 0xd2, 0xa2, 0x94, 0x4c, 0x7a, 0x70, 0x3d, + 0x45, 0x0a, 0x48, 0x62, 0x2d, 0xb1, 0x5e, 0x43, 0x70, 0x3d, 0xe9, 0xe1, + 0x07, 0x42, 0x7f, 0x1a, 0x64, 0x45, 0xd1, 0x48, 0x23, 0x71, 0xfa, 0xd4, + 0xa0, 0xee, 0xc6, 0x54, 0x29, 0xff, 0x00, 0x7b, 0x39, 0xaa, 0x7a, 0xad, + 0x00, 0x6b, 0x9d, 0xbc, 0x9e, 0x3e, 0xb4, 0x8a, 0x63, 0x7e, 0xac, 0x2a, + 0x52, 0x8a, 0x57, 0x96, 0xfc, 0xc5, 0x0b, 0x08, 0xff, 0x00, 0x64, 0x8f, + 0xa5, 0x24, 0xc0, 0x6e, 0xd1, 0xbc, 0x18, 0xfb, 0xfa, 0x8a, 0x63, 0x86, + 0x56, 0x3c, 0x1a, 0x91, 0xd0, 0x20, 0x19, 0x20, 0x7a, 0x62, 0x95, 0x42, + 0x11, 0xd5, 0x68, 0xd4, 0x2c, 0x43, 0xbb, 0x70, 0xe4, 0x62, 0x95, 0x58, + 0x28, 0xfb, 0xb9, 0xf7, 0x26, 0xa7, 0xc4, 0x40, 0xe0, 0x91, 0x9a, 0x46, + 0x0a, 0xbd, 0x31, 0x52, 0xfd, 0x03, 0x95, 0x90, 0x97, 0xda, 0x3e, 0x65, + 0x18, 0x34, 0xf0, 0xe8, 0x53, 0xa6, 0x4f, 0xd6, 0x9a, 0x59, 0x18, 0xf2, + 0xc0, 0xd2, 0x10, 0x84, 0xe1, 0x47, 0x14, 0xbd, 0x42, 0xc3, 0xb0, 0x48, + 0xe0, 0x51, 0x82, 0x7a, 0x74, 0xef, 0x9a, 0x5c, 0x94, 0x38, 0xdb, 0xc5, + 0x1f, 0x79, 0x8e, 0x07, 0x1e, 0xf4, 0x0e, 0xc8, 0x06, 0xd1, 0x95, 0x0c, + 0x0f, 0xd2, 0x8d, 0xbb, 0x7a, 0x91, 0xcf, 0x4a, 0x15, 0x76, 0xb7, 0x18, + 0xfc, 0x2a, 0x6f, 0x2d, 0x4f, 0x39, 0xe6, 0x98, 0x32, 0xb8, 0x0e, 0xcd, + 0xb4, 0x1c, 0x54, 0x86, 0x20, 0xab, 0xc8, 0x04, 0xfa, 0xd4, 0x8b, 0x1e, + 0x1b, 0x20, 0x8e, 0x29, 0xc5, 0xbe, 0x53, 0x9a, 0x7c, 0xc2, 0x64, 0x6a, + 0x01, 0xc0, 0xc1, 0xc5, 0x29, 0x55, 0x2a, 0x71, 0xb4, 0xe3, 0xd0, 0xf3, + 0x4b, 0x95, 0x2b, 0x8e, 0x3e, 0xa2, 0x9a, 0x1c, 0xaf, 0x40, 0x28, 0x4d, + 0x06, 0xa2, 0x6e, 0xcf, 0x6a, 0x42, 0xc7, 0xfc, 0x8a, 0x70, 0xb7, 0xbb, + 0xff, 0x00, 0x9f, 0x49, 0xff, 0x00, 0xef, 0xd9, 0xff, 0x00, 0x0a, 0x77, + 0xd9, 0xae, 0xff, 0x00, 0xe7, 0xd6, 0x7f, 0xfb, 0xf6, 0x7f, 0xc2, 0x9f, + 0x2c, 0xbb, 0x08, 0x8b, 0x3e, 0xb9, 0xfa, 0x53, 0xb7, 0xae, 0x31, 0xb4, + 0xfe, 0x55, 0x27, 0xd9, 0xae, 0xff, 0x00, 0xe7, 0xd6, 0x6f, 0xfb, 0xf6, + 0x7f, 0xc2, 0x97, 0xec, 0xb7, 0x9f, 0xf3, 0xed, 0x37, 0xfd, 0xfb, 0x3f, + 0xe1, 0x4b, 0x92, 0x5d, 0x83, 0x42, 0x01, 0x8f, 0xee, 0xb5, 0x21, 0x03, + 0xd1, 0x87, 0xe1, 0x56, 0x3e, 0xcb, 0x78, 0x7f, 0xe5, 0xde, 0x6f, 0xfb, + 0xf6, 0x69, 0x0d, 0xa5, 0xef, 0xfc, 0xfb, 0xcd, 0xff, 0x00, 0x7e, 0xcd, + 0x1c, 0xb2, 0xec, 0x1a, 0x15, 0xb6, 0x8e, 0xc1, 0x8f, 0xe1, 0x46, 0xd6, + 0xec, 0x0d, 0x58, 0xfb, 0x2d, 0xf0, 0xe9, 0x6f, 0x37, 0xfd, 0xfb, 0x34, + 0x9f, 0x65, 0xbe, 0xef, 0x6d, 0x37, 0xfd, 0xfa, 0x34, 0x72, 0x4b, 0xb0, + 0x5c, 0xab, 0x92, 0x0f, 0x23, 0x9a, 0x9a, 0x32, 0x0f, 0x2d, 0x81, 0x52, + 0x7d, 0x86, 0xec, 0xff, 0x00, 0xcb, 0xac, 0xff, 0x00, 0xf7, 0xec, 0xd0, + 0x2c, 0x6f, 0x7f, 0xe7, 0xde, 0x7f, 0xfb, 0xf6, 0x69, 0xa8, 0xc8, 0x2e, + 0x21, 0x50, 0xe7, 0xe5, 0x5f, 0xc7, 0x75, 0x35, 0xa3, 0x6c, 0x72, 0xf9, + 0xa9, 0x85, 0xad, 0xf0, 0x18, 0xfb, 0x3c, 0xdf, 0xf7, 0xe8, 0xd2, 0xfd, + 0x92, 0xf0, 0x8e, 0x6d, 0xe7, 0xff, 0x00, 0xbf, 0x67, 0xfc, 0x29, 0xda, + 0x41, 0xa1, 0x54, 0x46, 0xbb, 0x79, 0x43, 0x9f, 0x51, 0x42, 0xfc, 0xa4, + 0xf5, 0x35, 0x6b, 0xec, 0x37, 0x23, 0xa5, 0xbc, 0xff, 0x00, 0xf7, 0xe8, + 0xd3, 0x1a, 0xce, 0xef, 0xfe, 0x7d, 0xa6, 0x3f, 0xf6, 0xc8, 0xff, 0x00, + 0x85, 0x27, 0x17, 0xd8, 0x34, 0x20, 0x18, 0x07, 0xe6, 0xe9, 0x49, 0x95, + 0xe9, 0xcf, 0xe1, 0x53, 0x7d, 0x92, 0xef, 0xfe, 0x7c, 0xe7, 0xff, 0x00, + 0xbf, 0x47, 0xfc, 0x28, 0xfb, 0x25, 0xd7, 0xfc, 0xf9, 0x4f, 0xff, 0x00, + 0x7e, 0xcf, 0xf8, 0x51, 0xcb, 0x2e, 0xc1, 0x72, 0x1c, 0x93, 0xc9, 0xa6, + 0xfc, 0xbd, 0xfa, 0xd5, 0x9f, 0xb1, 0xdd, 0x1f, 0xf9, 0x73, 0x9f, 0xfe, + 0xfd, 0x9f, 0xf0, 0xa6, 0x9b, 0x1b, 0xbf, 0xf9, 0xf3, 0x9b, 0xfe, 0xfd, + 0x9f, 0xf0, 0xa7, 0xcb, 0x2e, 0xc0, 0x44, 0x76, 0xbd, 0x38, 0x05, 0x03, + 0x00, 0x81, 0x52, 0x0b, 0x1b, 0xbf, 0xf9, 0xf3, 0x9b, 0xfe, 0xfd, 0x9a, + 0x5f, 0xb0, 0xdd, 0xf6, 0xb4, 0x9b, 0xfe, 0xfd, 0x9a, 0x5c, 0xaf, 0xb0, + 0x86, 0x46, 0x42, 0xe4, 0x32, 0x86, 0x53, 0x4d, 0xda, 0x84, 0xf3, 0x9f, + 0xa5, 0x4b, 0xf6, 0x1b, 0xdf, 0xf9, 0xf5, 0x9b, 0xfe, 0xfd, 0x9a, 0x05, + 0x95, 0xe0, 0xff, 0x00, 0x97, 0x59, 0xff, 0x00, 0xef, 0xd9, 0xa7, 0x69, + 0x76, 0x01, 0x8a, 0x54, 0x1e, 0x14, 0x7e, 0x34, 0x16, 0x00, 0xe7, 0x70, + 0x03, 0xda, 0x9c, 0x6c, 0xae, 0xff, 0x00, 0xe7, 0xd6, 0xe3, 0xfe, 0xf8, + 0x6f, 0xf0, 0xa4, 0xfb, 0x15, 0xcf, 0x7b, 0x3b, 0x83, 0xff, 0x00, 0x6c, + 0xdb, 0xfc, 0x29, 0x38, 0x4b, 0xb0, 0x0c, 0x32, 0xc4, 0x7a, 0x9f, 0xc8, + 0x53, 0x77, 0xc6, 0x7a, 0x37, 0xe9, 0x53, 0x7d, 0x92, 0xe7, 0xfe, 0x7c, + 0xae, 0x3f, 0xef, 0xdb, 0x7f, 0x85, 0x1f, 0x61, 0xb9, 0x3f, 0xf2, 0xe7, + 0x71, 0xff, 0x00, 0x7e, 0x9a, 0x8f, 0x67, 0x2e, 0xc3, 0xd0, 0x8b, 0x20, + 0xaf, 0x41, 0xf5, 0xa6, 0x37, 0x9d, 0xc1, 0x5c, 0x71, 0xe9, 0x56, 0x85, + 0x8d, 0xc7, 0xfc, 0xf9, 0xdc, 0x7f, 0xdf, 0xb3, 0xfe, 0x14, 0x7d, 0x8e, + 0xec, 0x74, 0xb2, 0xb8, 0xff, 0x00, 0xbf, 0x67, 0xfc, 0x29, 0xa8, 0x49, + 0x6c, 0x82, 0xe5, 0x27, 0x12, 0x48, 0xdc, 0xef, 0x14, 0xe4, 0x9d, 0xe2, + 0xe0, 0x82, 0xde, 0xc4, 0x9a, 0xb4, 0x6c, 0xef, 0x0f, 0xfc, 0xb9, 0x5c, + 0x7f, 0xdf, 0x07, 0xfc, 0x29, 0x05, 0x8d, 0xe7, 0xfc, 0xf9, 0xce, 0x3f, + 0xed, 0x99, 0xaa, 0x5e, 0xd3, 0xb0, 0xf9, 0x8a, 0xac, 0xf3, 0x49, 0x9c, + 0x10, 0x07, 0xa6, 0x28, 0x0d, 0x20, 0x00, 0x6d, 0x53, 0x8e, 0xf5, 0x7c, + 0x58, 0x5d, 0x11, 0xff, 0x00, 0x1e, 0xd3, 0x7f, 0xdf, 0xb3, 0x4d, 0x3a, + 0x6d, 0xe8, 0xe9, 0x6f, 0x2f, 0xfd, 0xf0, 0xd4, 0xed, 0x3f, 0xe9, 0x07, + 0x39, 0x57, 0xcc, 0x3f, 0xdc, 0x3f, 0x9d, 0x00, 0xb8, 0xe8, 0x4f, 0xe5, + 0x56, 0x4e, 0x9f, 0x7b, 0xff, 0x00, 0x3e, 0x93, 0x1f, 0xf8, 0x01, 0xa4, + 0x1a, 0x7d, 0xef, 0xfc, 0xfa, 0x4c, 0x3f, 0xe0, 0x06, 0xa6, 0xd3, 0xec, + 0x1c, 0xc4, 0x00, 0xfa, 0x8c, 0xd0, 0x40, 0x03, 0x82, 0x7f, 0x1a, 0xb6, + 0xba, 0x7d, 0xd7, 0x7b, 0x59, 0xbf, 0xef, 0xd9, 0xa1, 0xb4, 0xeb, 0x9e, + 0xd6, 0xf3, 0xfe, 0x28, 0x6a, 0x5c, 0x67, 0xd8, 0x57, 0x45, 0x33, 0xbe, + 0x42, 0x17, 0x39, 0x1d, 0xb3, 0x4a, 0x23, 0x55, 0x38, 0x23, 0x9a, 0xb5, + 0xfd, 0x9f, 0x75, 0xff, 0x00, 0x3e, 0xf3, 0x0f, 0xfb, 0x66, 0x69, 0xdf, + 0x61, 0xb8, 0x1d, 0x6d, 0xe7, 0x27, 0xfe, 0xb9, 0x9a, 0x56, 0x9f, 0x60, + 0xb9, 0x4b, 0x62, 0xee, 0xfb, 0xc3, 0xe9, 0x49, 0x86, 0x07, 0x03, 0xf4, + 0xab, 0x4d, 0x67, 0x79, 0x9f, 0x96, 0xd2, 0x6f, 0xfb, 0xf6, 0x69, 0xa6, + 0xce, 0xfc, 0xff, 0x00, 0xcb, 0xa4, 0xff, 0x00, 0xf7, 0xc1, 0xa1, 0x42, + 0x5d, 0x82, 0xe5, 0x6d, 0xac, 0xbc, 0xf2, 0x4d, 0x26, 0xd6, 0x7e, 0xe2, + 0xad, 0x2d, 0x8d, 0xe1, 0xfb, 0xd6, 0x73, 0xff, 0x00, 0xdf, 0x06, 0xa5, + 0x16, 0x17, 0x38, 0xe2, 0xda, 0x71, 0xff, 0x00, 0x6c, 0xcd, 0x1c, 0x92, + 0x1d, 0xca, 0x21, 0x02, 0x0e, 0x4e, 0x7f, 0x0a, 0x36, 0x86, 0xe4, 0x0a, + 0xb8, 0x74, 0xeb, 0xc3, 0xff, 0x00, 0x2e, 0xd2, 0x9f, 0xfb, 0x66, 0xd4, + 0xe5, 0xb3, 0xba, 0x41, 0xff, 0x00, 0x1e, 0x53, 0x1f, 0xfb, 0x66, 0x68, + 0x54, 0xe4, 0x17, 0x29, 0x72, 0x3b, 0x9a, 0x6b, 0x67, 0xde, 0xae, 0xb5, + 0xad, 0xf6, 0x7e, 0x5b, 0x09, 0x7f, 0xef, 0x86, 0xa6, 0xfd, 0x92, 0xfb, + 0xbd, 0x94, 0xff, 0x00, 0xf7, 0xc1, 0xa3, 0xd9, 0xb0, 0xb9, 0x4b, 0x61, + 0xeb, 0x8c, 0x52, 0x84, 0x7e, 0xfd, 0x3e, 0x95, 0x74, 0x59, 0xde, 0x0f, + 0xf9, 0x73, 0x9f, 0xfe, 0xf8, 0x34, 0xef, 0xb2, 0x5f, 0x7f, 0xcf, 0x9c, + 0xdf, 0xf7, 0xc1, 0xff, 0x00, 0x0a, 0x39, 0x25, 0xd8, 0x2e, 0x50, 0xf2, + 0xf3, 0xd9, 0xbf, 0x2c, 0x52, 0xf9, 0x6c, 0x07, 0x43, 0xf9, 0xd5, 0xef, + 0xb2, 0x5e, 0x9f, 0xf9, 0x75, 0x9f, 0xfe, 0xf8, 0x3f, 0xe1, 0x4a, 0x2c, + 0xef, 0x47, 0xfc, 0xbb, 0x4f, 0xf8, 0xc6, 0x7f, 0xc2, 0x8e, 0x49, 0x05, + 0xca, 0x05, 0x5b, 0x6f, 0x0b, 0xf9, 0xd3, 0x72, 0xf8, 0xc1, 0x5a, 0xd3, + 0x36, 0x97, 0xa7, 0xad, 0xac, 0xbf, 0xf7, 0xec, 0xff, 0x00, 0x85, 0x21, + 0xb2, 0xbc, 0xff, 0x00, 0x9f, 0x59, 0xbf, 0x04, 0x3f, 0xe1, 0x47, 0xb3, + 0x60, 0x67, 0xaa, 0x9f, 0xee, 0xd4, 0x84, 0x16, 0x1c, 0xe6, 0xac, 0x1b, + 0x0b, 0xce, 0xd6, 0xd7, 0x3f, 0xf7, 0xc1, 0xa4, 0xfb, 0x0d, 0xef, 0xfc, + 0xfb, 0xdc, 0xff, 0x00, 0xdf, 0xb3, 0x47, 0xb2, 0x90, 0x15, 0x0c, 0x6e, + 0x0f, 0x00, 0x62, 0x9a, 0x55, 0xfa, 0xed, 0xcd, 0x5b, 0xfe, 0xce, 0xbd, + 0x3d, 0x6d, 0xae, 0x3f, 0xef, 0xd9, 0xa9, 0x13, 0x4f, 0xb8, 0xfe, 0x2b, + 0x4b, 0x8f, 0xfb, 0xf6, 0x69, 0xfb, 0x39, 0x08, 0xa2, 0xa1, 0xfd, 0x29, + 0x40, 0x7c, 0xf5, 0xad, 0x0f, 0xec, 0xfb, 0x8f, 0xe1, 0xb7, 0xb9, 0x1f, + 0xf6, 0xcc, 0xd3, 0x0e, 0x9b, 0x78, 0x7f, 0xe5, 0xde, 0x6f, 0xfb, 0xf6, + 0x68, 0xf6, 0x72, 0xec, 0x05, 0x53, 0x93, 0xd4, 0xd2, 0xaa, 0xa9, 0xe7, + 0x9c, 0xd5, 0x9f, 0xec, 0xdb, 0xcf, 0xf9, 0xf7, 0x9b, 0xfe, 0xfd, 0x9f, + 0xf0, 0xa3, 0xfb, 0x36, 0xf3, 0xfe, 0x7d, 0xa6, 0xff, 0x00, 0xbf, 0x66, + 0x97, 0xb3, 0x97, 0x60, 0x2b, 0x94, 0x0c, 0x79, 0x6a, 0x4c, 0x28, 0x3c, + 0x9f, 0xca, 0xac, 0xff, 0x00, 0x67, 0x5e, 0xff, 0x00, 0xcf, 0xb4, 0xbf, + 0xf7, 0xec, 0xd1, 0xfd, 0x9f, 0x79, 0xde, 0xd2, 0x5f, 0xfb, 0xf6, 0x7f, + 0xc2, 0x9f, 0x24, 0xbb, 0x01, 0x06, 0xf1, 0xdc, 0xe6, 0x9a, 0x02, 0x83, + 0x9e, 0xde, 0x95, 0x67, 0xec, 0x17, 0x7f, 0xf3, 0xe7, 0x37, 0xfd, 0xfb, + 0x34, 0x9f, 0xd9, 0xf7, 0x9f, 0xf3, 0xeb, 0x30, 0xff, 0x00, 0xb6, 0x66, + 0x8e, 0x59, 0x76, 0x02, 0x02, 0xc0, 0xf1, 0xc0, 0x14, 0x80, 0x81, 0xd3, + 0x69, 0xab, 0x3f, 0xd9, 0xd7, 0x7f, 0xf3, 0xed, 0x37, 0xfd, 0xfb, 0x34, + 0x7f, 0x67, 0x5d, 0xff, 0x00, 0xcf, 0xb4, 0xdf, 0xf7, 0xec, 0xd0, 0xe1, + 0x26, 0x04, 0x02, 0x42, 0x0f, 0x6a, 0x47, 0x72, 0x7a, 0x7f, 0x2a, 0xb1, + 0xfd, 0x9d, 0x79, 0xff, 0x00, 0x3e, 0xd3, 0x7f, 0xdf, 0x06, 0x94, 0x69, + 0xf7, 0x83, 0xfe, 0x5d, 0x66, 0xff, 0x00, 0xbe, 0x0d, 0x2e, 0x49, 0x76, + 0x0b, 0x94, 0xcb, 0xb8, 0xfb, 0xc3, 0xf5, 0xa7, 0x89, 0x0f, 0x18, 0x23, + 0xf9, 0xd5, 0xc1, 0x61, 0x77, 0xde, 0xce, 0x43, 0xff, 0x00, 0x6c, 0xcd, + 0x1f, 0x61, 0xbb, 0xed, 0x69, 0x20, 0xff, 0x00, 0x80, 0x1f, 0xf0, 0xa1, + 0x29, 0xae, 0x85, 0x27, 0x62, 0x38, 0xae, 0x98, 0x71, 0x2a, 0x6f, 0x5f, + 0x63, 0x8f, 0xe5, 0x56, 0xe2, 0x93, 0x4a, 0x29, 0xfb, 0xeb, 0x69, 0x73, + 0xea, 0x0f, 0xff, 0x00, 0x5e, 0xa0, 0xfb, 0x05, 0xe7, 0xfc, 0xfb, 0xcc, + 0x3f, 0xe0, 0x07, 0xfc, 0x29, 0x7e, 0xc3, 0x79, 0x8e, 0x6d, 0xa6, 0x3f, + 0xf6, 0xcc, 0xd6, 0x8a, 0x75, 0x17, 0x40, 0xe6, 0x63, 0x27, 0x8a, 0xc8, + 0xb1, 0x6b, 0x76, 0x74, 0x5f, 0x47, 0x00, 0xd5, 0x7f, 0x29, 0xc0, 0x25, + 0x59, 0x6a, 0xdf, 0xd8, 0xae, 0xb1, 0xff, 0x00, 0x1e, 0x92, 0xff, 0x00, + 0xdf, 0xb3, 0x4a, 0x6d, 0x2e, 0xf1, 0x8f, 0xb2, 0x4b, 0xff, 0x00, 0x7e, + 0x8d, 0x4b, 0xe6, 0x7b, 0xc4, 0x57, 0xb9, 0x4d, 0x43, 0x9e, 0xbf, 0xa1, + 0xa0, 0x2e, 0x47, 0x27, 0x9a, 0xb4, 0x6c, 0xee, 0xbb, 0xd9, 0xcd, 0xf8, + 0x44, 0x69, 0x3e, 0xc9, 0x74, 0x3a, 0x59, 0xcf, 0xff, 0x00, 0x7e, 0xcd, + 0x43, 0x8c, 0xbb, 0x06, 0x85, 0x3f, 0x2d, 0xc9, 0xc2, 0xb8, 0xfc, 0xa9, + 0x4c, 0x53, 0x8e, 0x38, 0xc7, 0xd2, 0xae, 0x7d, 0x9a, 0xf3, 0xfe, 0x7c, + 0xe7, 0xff, 0x00, 0xbf, 0x6d, 0x40, 0xb4, 0xbb, 0xff, 0x00, 0x9f, 0x59, + 0xc7, 0xfd, 0xb3, 0x6a, 0x39, 0x5a, 0xe8, 0x17, 0x28, 0x98, 0x9d, 0x4e, + 0x73, 0xcf, 0xa0, 0xa7, 0x0d, 0xe4, 0x72, 0xa4, 0x1f, 0x5a, 0xb9, 0xf6, + 0x4b, 0xaf, 0xf9, 0xf5, 0xb8, 0xff, 0x00, 0xbf, 0x66, 0x97, 0xec, 0xb7, + 0x5f, 0xf3, 0xeb, 0x71, 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x51, 0x69, 0x76, + 0x0b, 0x94, 0xca, 0xb1, 0x18, 0x00, 0xe7, 0xd4, 0xd2, 0x47, 0x1c, 0xdb, + 0xbe, 0x66, 0xf9, 0x6a, 0xef, 0xd9, 0x6e, 0x7f, 0xe7, 0xce, 0x7f, 0xc6, + 0x33, 0xfe, 0x14, 0xa6, 0xda, 0xe8, 0x8f, 0xf8, 0xf5, 0x98, 0x7f, 0xdb, + 0x33, 0xfe, 0x14, 0x72, 0xcb, 0xb0, 0x5c, 0xae, 0xd1, 0x83, 0xd3, 0x03, + 0xeb, 0x51, 0x98, 0x24, 0x3d, 0x18, 0x7e, 0x15, 0x6c, 0x5a, 0x5c, 0x83, + 0xc5, 0xac, 0xdf, 0xf7, 0xe8, 0xd2, 0x9b, 0x7b, 0xae, 0xd6, 0x72, 0x7f, + 0xdf, 0xa6, 0xa4, 0xa2, 0xd7, 0x40, 0xe6, 0x28, 0xb4, 0x1b, 0x53, 0x26, + 0x42, 0x1b, 0xd3, 0x19, 0xa6, 0x44, 0xad, 0xbb, 0x25, 0x81, 0xfc, 0x2a, + 0xf1, 0xb6, 0xbc, 0x3f, 0xf2, 0xe9, 0x37, 0xfd, 0xfb, 0x3f, 0xe1, 0x40, + 0xb5, 0xbc, 0xff, 0x00, 0x9f, 0x49, 0xbf, 0xef, 0xd9, 0xff, 0x00, 0x0a, + 0x76, 0x7d, 0x82, 0xe5, 0x53, 0x08, 0x07, 0x39, 0x24, 0xfa, 0x50, 0xb1, + 0x91, 0xd6, 0xad, 0xfd, 0x9a, 0xf3, 0xfe, 0x7d, 0x26, 0xff, 0x00, 0xbf, + 0x67, 0xfc, 0x29, 0x3e, 0xcb, 0x79, 0xff, 0x00, 0x3e, 0xb3, 0x7f, 0xdf, + 0xb3, 0x4b, 0x96, 0x5d, 0x82, 0xe5, 0x62, 0x18, 0x73, 0x8c, 0xd3, 0x76, + 0xab, 0x72, 0x41, 0xfc, 0xaa, 0xef, 0xd9, 0xef, 0x3f, 0xe7, 0xd2, 0x5f, + 0xfb, 0xf4, 0x7f, 0xc2, 0x9a, 0x6d, 0xef, 0x3f, 0xe7, 0xd2, 0x6f, 0xfb, + 0xf6, 0x7f, 0xc2, 0x8e, 0x57, 0xd8, 0x57, 0x2a, 0xf9, 0x40, 0x8e, 0x14, + 0xd3, 0xc2, 0x64, 0x70, 0xb8, 0x35, 0x37, 0xd9, 0xaf, 0x3f, 0xe7, 0xce, + 0x7f, 0xfb, 0xe0, 0xd1, 0xf6, 0x5b, 0xc3, 0xff, 0x00, 0x2e, 0x97, 0x1f, + 0xf7, 0xc1, 0xa7, 0xca, 0xfb, 0x05, 0xc8, 0x0a, 0x63, 0xae, 0x7f, 0x2a, + 0x72, 0xa9, 0xf5, 0xc8, 0xfa, 0x54, 0x9f, 0x62, 0xba, 0x3f, 0xf2, 0xe9, + 0x71, 0xff, 0x00, 0x7c, 0x1a, 0x3e, 0xc7, 0x79, 0xda, 0xd6, 0xe3, 0xfe, + 0xf8, 0xff, 0x00, 0xeb, 0x53, 0xe5, 0x7d, 0x80, 0x66, 0x17, 0x77, 0x23, + 0xf4, 0xa0, 0x85, 0xf7, 0xfc, 0x29, 0x7e, 0xc5, 0x79, 0xff, 0x00, 0x3e, + 0xb7, 0x1f, 0xf7, 0xc5, 0x2f, 0xd8, 0xef, 0x3f, 0xe7, 0xd6, 0xe7, 0xfe, + 0xfd, 0x9a, 0x5c, 0xb2, 0x02, 0x35, 0x58, 0xc9, 0xce, 0x1b, 0x3e, 0xb4, + 0xad, 0x81, 0xd1, 0x9b, 0xf1, 0x35, 0x27, 0xd9, 0x2e, 0xff, 0x00, 0xe7, + 0xd6, 0xe3, 0xfe, 0xfd, 0x9a, 0x4f, 0xb1, 0xde, 0x7f, 0xcf, 0xac, 0xff, + 0x00, 0x8c, 0x66, 0x9d, 0xa4, 0x31, 0x99, 0x52, 0x39, 0x5e, 0x69, 0xa0, + 0xae, 0x79, 0x5a, 0x90, 0xda, 0x5f, 0x7f, 0xcf, 0xac, 0xdf, 0xf7, 0xec, + 0xd2, 0x7d, 0x8e, 0xf7, 0xbd, 0xac, 0xdf, 0xf7, 0xec, 0xff, 0x00, 0x85, + 0x2e, 0x59, 0x00, 0xc6, 0xdb, 0xd8, 0x52, 0x7c, 0xbe, 0x9c, 0xd3, 0xcd, + 0x8d, 0xd9, 0xff, 0x00, 0x97, 0x49, 0xff, 0x00, 0xef, 0x83, 0xfe, 0x14, + 0x9f, 0x61, 0xbd, 0x1d, 0x2d, 0xa7, 0x1f, 0xf6, 0xcc, 0xff, 0x00, 0x85, + 0x1c, 0xb2, 0x01, 0x51, 0xca, 0x72, 0xbf, 0x29, 0xa6, 0xbc, 0x84, 0xe4, + 0xe4, 0xe6, 0x90, 0xe9, 0xd7, 0x8d, 0xd6, 0xde, 0x7f, 0xfb, 0xf6, 0x7f, + 0xc2, 0x9e, 0xb6, 0x17, 0x8b, 0xd2, 0xda, 0x6f, 0xfb, 0xf6, 0x7f, 0xc2, + 0x8e, 0x49, 0x01, 0x1a, 0xbb, 0xe3, 0x1b, 0x37, 0x0f, 0xa5, 0x28, 0x6e, + 0xc2, 0x27, 0x15, 0x38, 0xb5, 0xbf, 0x1d, 0x2d, 0xe5, 0xff, 0x00, 0xbf, + 0x67, 0xfc, 0x29, 0x7e, 0xcd, 0x7f, 0xff, 0x00, 0x3e, 0xf2, 0xff, 0x00, + 0xdf, 0xb3, 0xfe, 0x14, 0xf9, 0x58, 0x5c, 0xae, 0x77, 0x1e, 0xab, 0xc7, + 0xd2, 0x9b, 0xe4, 0xab, 0xf5, 0x62, 0x2a, 0xd7, 0xd9, 0x6f, 0xcf, 0xfc, + 0xbb, 0x4b, 0xff, 0x00, 0x7e, 0xcf, 0xf8, 0x53, 0x7e, 0xc3, 0x7b, 0x9f, + 0xf8, 0xf5, 0x93, 0xf1, 0x8c, 0xd1, 0xca, 0xfb, 0x05, 0xc6, 0xc7, 0xe5, + 0x40, 0x3a, 0x86, 0x3e, 0xd4, 0xc7, 0x99, 0x71, 0xc6, 0x4f, 0xb1, 0xab, + 0x02, 0xce, 0xf7, 0xfe, 0x7d, 0x5f, 0xfe, 0xfd, 0x1f, 0xf0, 0xa4, 0x6b, + 0x0b, 0xb6, 0xeb, 0x6d, 0x27, 0xfd, 0xfb, 0x3f, 0xe1, 0x4e, 0xcc, 0x0a, + 0x86, 0x50, 0xf8, 0x1e, 0x5d, 0x48, 0x8e, 0xbd, 0xd7, 0x1f, 0x85, 0x49, + 0xfd, 0x95, 0x73, 0xff, 0x00, 0x3e, 0xf2, 0xff, 0x00, 0xdf, 0x07, 0xfc, + 0x28, 0xfe, 0xcb, 0xba, 0xff, 0x00, 0x9e, 0x13, 0x7f, 0xdf, 0x07, 0xfc, + 0x29, 0x34, 0xfb, 0x31, 0xdd, 0x0a, 0x0e, 0x7b, 0x12, 0x29, 0x0c, 0x98, + 0xe3, 0x68, 0xc5, 0x1f, 0xd9, 0xd7, 0xa3, 0xa4, 0x53, 0xff, 0x00, 0xdf, + 0x06, 0x93, 0xfb, 0x3a, 0xf3, 0xfe, 0x78, 0x4c, 0x7f, 0xed, 0x99, 0xff, + 0x00, 0x0a, 0x5c, 0xac, 0x34, 0x1a, 0xfb, 0x5c, 0x60, 0x81, 0x51, 0x88, + 0xd3, 0xba, 0x0a, 0x9f, 0xec, 0x17, 0x83, 0xfe, 0x5d, 0xe6, 0xff, 0x00, + 0xbf, 0x66, 0x8f, 0xb1, 0x5e, 0x7f, 0xcf, 0xbc, 0xdf, 0xf7, 0xec, 0xff, + 0x00, 0x85, 0x5c, 0x79, 0xa3, 0xd0, 0x13, 0x48, 0x8b, 0x6c, 0x23, 0xa0, + 0xa7, 0x0f, 0x2f, 0x1c, 0x21, 0xa7, 0x7d, 0x86, 0xeb, 0xfe, 0x7d, 0x66, + 0xff, 0x00, 0xbf, 0x66, 0x8f, 0xb0, 0x5d, 0x7f, 0xcf, 0xbc, 0xff, 0x00, + 0xf7, 0xec, 0xd5, 0xbe, 0x66, 0x1c, 0xc2, 0xfc, 0xbf, 0xdc, 0xe2, 0x97, + 0xe5, 0xea, 0x10, 0x03, 0x4d, 0xfb, 0x15, 0xe0, 0xff, 0x00, 0x96, 0x17, + 0x1f, 0xf7, 0xed, 0xa8, 0xfb, 0x1d, 0xd8, 0xff, 0x00, 0x96, 0x37, 0x1f, + 0xf7, 0xe9, 0xaa, 0x39, 0x64, 0x2e, 0x60, 0x39, 0x63, 0x47, 0x03, 0xa8, + 0xa6, 0xfd, 0x92, 0xef, 0xfe, 0x78, 0x5c, 0x7f, 0xdf, 0xa3, 0x47, 0xd9, + 0x6e, 0xff, 0x00, 0xe7, 0xde, 0xe3, 0xfe, 0xfd, 0x1f, 0xf0, 0xa5, 0xcb, + 0x30, 0xb8, 0xa5, 0x41, 0xe8, 0x16, 0x99, 0x92, 0x1b, 0x18, 0xfc, 0xa9, + 0xdf, 0x66, 0xba, 0xff, 0x00, 0x9f, 0x6b, 0x8f, 0xfb, 0xf4, 0x7f, 0xc2, + 0x97, 0xec, 0xd7, 0x5f, 0xf3, 0xeb, 0x71, 0xff, 0x00, 0x7e, 0xcf, 0xf8, + 0x53, 0x51, 0x97, 0x61, 0x5c, 0x5d, 0xe7, 0x1c, 0xe3, 0xf3, 0xa3, 0x70, + 0xc7, 0x5a, 0x4f, 0xb3, 0x5d, 0x1f, 0xf9, 0x75, 0x9f, 0xfe, 0xfd, 0x9f, + 0xf0, 0xa4, 0xfb, 0x2d, 0xd7, 0xfc, 0xfa, 0xdc, 0x7f, 0xdf, 0xb6, 0xff, + 0x00, 0x0a, 0x39, 0x5f, 0x60, 0xb8, 0xa1, 0xb9, 0xe9, 0x41, 0x66, 0xf4, + 0x14, 0x9f, 0x66, 0xba, 0xff, 0x00, 0x9f, 0x59, 0xff, 0x00, 0xef, 0xd9, + 0xff, 0x00, 0x0a, 0x3e, 0xcf, 0x75, 0xff, 0x00, 0x3e, 0x93, 0xff, 0x00, + 0xdf, 0xb3, 0xfe, 0x14, 0xb9, 0x1f, 0x60, 0xb9, 0xff, 0xd9 +}; +unsigned int field_jpg_len = 58798; diff --git a/assets/hdr/05_footprint_court.h b/assets/hdr/05_footprint_court.h new file mode 100644 index 0000000..093c6aa --- /dev/null +++ b/assets/hdr/05_footprint_court.h @@ -0,0 +1,4692 @@ +unsigned char footprint_court_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x4b, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x30, 0x38, + 0x3a, 0x34, 0x39, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x34, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, + 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, + 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, + 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, + 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, + 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, + 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xea, 0x16, 0x34, 0xda, 0x3e, 0x45, 0xe9, 0xe9, 0x47, 0x96, + 0x9f, 0xdd, 0x5f, 0xca, 0x9c, 0xbf, 0x74, 0x7d, 0x28, 0xaf, 0xa0, 0x38, + 0x46, 0xf9, 0x69, 0xfd, 0xc1, 0xf9, 0x51, 0xe5, 0xa7, 0xf7, 0x57, 0xf2, + 0xa7, 0x52, 0xd0, 0x03, 0x36, 0x27, 0xf7, 0x17, 0xf2, 0xa3, 0xcb, 0x4f, + 0xee, 0xaf, 0xe5, 0x4e, 0xa2, 0x80, 0x1b, 0xb1, 0x3f, 0xba, 0xbf, 0x95, + 0x1b, 0x13, 0xfb, 0xab, 0xf9, 0x53, 0xa8, 0xa0, 0x06, 0xec, 0x4f, 0xee, + 0xaf, 0xe5, 0x46, 0xc4, 0xfe, 0xea, 0xfe, 0x54, 0xea, 0x28, 0x01, 0xbb, + 0x13, 0xfb, 0xab, 0xf9, 0x51, 0xb1, 0x3f, 0xba, 0x3f, 0x2a, 0x75, 0x14, + 0x00, 0xdd, 0x89, 0xfd, 0xd1, 0xf9, 0x51, 0xb1, 0x3f, 0xb8, 0xbf, 0x95, + 0x3a, 0x8a, 0x00, 0x6e, 0xc4, 0xfe, 0xea, 0xfe, 0x54, 0x6c, 0x4f, 0xee, + 0xaf, 0xe5, 0x4e, 0xa2, 0x80, 0x1b, 0xb1, 0x3f, 0xba, 0xbf, 0x95, 0x1b, + 0x13, 0xfb, 0xab, 0xf9, 0x53, 0xa8, 0xa0, 0x06, 0xec, 0x4f, 0xee, 0xaf, + 0xe5, 0x46, 0xc4, 0xfe, 0xe2, 0xfe, 0x54, 0xea, 0x4a, 0x00, 0x4d, 0x89, + 0xfd, 0xc5, 0xfc, 0xa8, 0xd8, 0x9f, 0xdd, 0x5f, 0xca, 0x9d, 0x45, 0x00, + 0x37, 0x62, 0xff, 0x00, 0x74, 0x7e, 0x54, 0x6c, 0x5f, 0xee, 0x8f, 0xca, + 0x9d, 0x49, 0x40, 0x09, 0xb1, 0x3f, 0xba, 0xbf, 0x95, 0x1b, 0x13, 0xfb, + 0xab, 0xf9, 0x52, 0xd1, 0x40, 0x09, 0xb1, 0x7f, 0xba, 0xbf, 0x95, 0x1b, + 0x17, 0xfb, 0xa3, 0xf2, 0xa5, 0xa2, 0x80, 0x13, 0x62, 0x7f, 0x75, 0x7f, + 0x2a, 0x36, 0x27, 0xf7, 0x57, 0xf2, 0xa7, 0x52, 0x50, 0x02, 0x6c, 0x4f, + 0xee, 0xaf, 0xe5, 0x46, 0xc5, 0xfe, 0xe8, 0xfc, 0xa9, 0x68, 0xa0, 0x04, + 0xd8, 0x9f, 0xdd, 0x5f, 0xca, 0x8d, 0x89, 0xfd, 0xd1, 0xf9, 0x52, 0xd2, + 0xd0, 0x03, 0x76, 0x27, 0xf7, 0x57, 0xf2, 0xa3, 0x62, 0x7f, 0x75, 0x7f, + 0x2a, 0x75, 0x14, 0x00, 0xdd, 0x89, 0xfd, 0xd5, 0xfc, 0xa8, 0xd8, 0x9f, + 0xdd, 0x5f, 0xca, 0x9d, 0x49, 0x40, 0x09, 0xb1, 0x3f, 0xba, 0xbf, 0x95, + 0x1b, 0x13, 0xfb, 0xab, 0xf9, 0x52, 0xd2, 0xd0, 0x03, 0x76, 0x27, 0xf7, + 0x47, 0xe5, 0x46, 0xc4, 0xfe, 0xe8, 0xfc, 0xa9, 0xd4, 0x50, 0x03, 0x76, + 0x27, 0xf7, 0x57, 0xf2, 0xa3, 0x62, 0x7f, 0x74, 0x7e, 0x54, 0xea, 0x28, + 0x01, 0xbb, 0x13, 0xfb, 0x83, 0xf2, 0xa3, 0x62, 0x7f, 0x75, 0x7f, 0x2a, + 0x75, 0x25, 0x00, 0x26, 0xc4, 0xfe, 0xea, 0xfe, 0x54, 0x6c, 0x4f, 0xee, + 0xaf, 0xe5, 0x4e, 0xa2, 0x80, 0x1b, 0xb1, 0x3f, 0xba, 0xbf, 0x95, 0x1b, + 0x17, 0xfb, 0x8b, 0xf9, 0x53, 0xa8, 0xa0, 0x06, 0xec, 0x5f, 0xee, 0xaf, + 0xe5, 0x46, 0xc4, 0xfe, 0xea, 0xfe, 0x54, 0xea, 0x28, 0x01, 0xbb, 0x13, + 0xfb, 0x8b, 0xf9, 0x51, 0xb1, 0x3f, 0xba, 0xbf, 0x95, 0x3a, 0x8a, 0x00, + 0x6e, 0xc4, 0xfe, 0xea, 0xfe, 0x54, 0x6c, 0x4f, 0xee, 0x2f, 0xe5, 0x4e, + 0xa2, 0x80, 0x1b, 0xb1, 0x3f, 0xb8, 0xbf, 0x95, 0x1b, 0x13, 0xfb, 0xab, + 0xf9, 0x53, 0xa8, 0xa0, 0x06, 0xec, 0x4f, 0xee, 0xaf, 0xe5, 0x46, 0xc4, + 0xfe, 0xea, 0xfe, 0x54, 0xea, 0x28, 0x01, 0x36, 0x27, 0xf7, 0x57, 0xf2, + 0xa4, 0xd8, 0x9f, 0xdd, 0x5f, 0xca, 0x9d, 0x45, 0x00, 0x37, 0x62, 0x7f, + 0x75, 0x7f, 0x2a, 0x36, 0x27, 0xf7, 0x17, 0xf2, 0xa7, 0x51, 0x45, 0x80, + 0x4d, 0x89, 0xfd, 0xc5, 0xfc, 0xa8, 0xd8, 0x9f, 0xdd, 0x5f, 0xca, 0x96, + 0x8a, 0x00, 0x6e, 0xc4, 0xfe, 0xea, 0xfe, 0x54, 0xbb, 0x13, 0xfb, 0xa3, + 0xf2, 0xa7, 0x51, 0x40, 0x0d, 0xd8, 0x9f, 0xdc, 0x1f, 0x95, 0x1b, 0x13, + 0xfb, 0xa3, 0xf2, 0xa7, 0x51, 0x40, 0x0d, 0xf2, 0xd7, 0xfb, 0xab, 0xf9, + 0x51, 0xb1, 0x3f, 0xba, 0x3f, 0x2a, 0x75, 0x14, 0x00, 0xdd, 0x8b, 0xfd, + 0xd5, 0xfc, 0xa8, 0xd8, 0xbf, 0xdd, 0x5f, 0xca, 0x9d, 0x45, 0x00, 0x37, + 0x62, 0xff, 0x00, 0x74, 0x7e, 0x54, 0x79, 0x6b, 0xfd, 0xd5, 0xfc, 0xa9, + 0xd4, 0x50, 0x03, 0x76, 0x2f, 0xf7, 0x57, 0xf2, 0xa3, 0x62, 0x7f, 0x75, + 0x7f, 0x2a, 0x76, 0x28, 0xc5, 0x00, 0x33, 0xcb, 0x4f, 0xee, 0xaf, 0xe5, + 0x46, 0xc5, 0xfe, 0xea, 0xfe, 0x55, 0x25, 0x25, 0x00, 0x37, 0xcb, 0x5f, + 0xee, 0xaf, 0xe5, 0x47, 0x96, 0x9f, 0xdd, 0x5f, 0xca, 0x9f, 0x8a, 0x28, + 0x01, 0x9b, 0x17, 0xfb, 0x8b, 0xf9, 0x51, 0xb1, 0x7f, 0xba, 0x3f, 0x2a, + 0x7e, 0x28, 0xa4, 0x03, 0x36, 0x2f, 0xf7, 0x47, 0xe5, 0x46, 0xc4, 0xfe, + 0xea, 0xfe, 0x54, 0xfa, 0x29, 0x80, 0xcf, 0x2d, 0x3f, 0xba, 0xbf, 0x95, + 0x1b, 0x17, 0xfb, 0xab, 0xf9, 0x53, 0xe8, 0xa0, 0x06, 0x79, 0x69, 0xfd, + 0xc1, 0xf9, 0x51, 0xe5, 0xa7, 0xf7, 0x57, 0xf2, 0xa7, 0xd1, 0x8a, 0x40, + 0x33, 0xcb, 0x4f, 0xee, 0xaf, 0xe5, 0x47, 0x96, 0x9f, 0xdc, 0x5f, 0xca, + 0x9f, 0x45, 0x02, 0x19, 0xe5, 0xa7, 0xf7, 0x57, 0xf2, 0xa5, 0xf2, 0xd3, + 0xfb, 0xab, 0xf9, 0x53, 0xa8, 0xa0, 0x63, 0x3c, 0xb4, 0xfe, 0xe8, 0xfc, + 0xa8, 0xf2, 0xd3, 0xfb, 0xa3, 0xf2, 0xa7, 0xd1, 0x40, 0x0c, 0xf2, 0xd7, + 0xfb, 0xab, 0xf9, 0x51, 0xe5, 0xa7, 0xf7, 0x57, 0xf2, 0xa7, 0xe2, 0x8a, + 0x62, 0x19, 0xe5, 0xaf, 0xf7, 0x47, 0xe5, 0x47, 0x96, 0xbf, 0xdd, 0x1f, + 0x95, 0x3e, 0x8a, 0x40, 0x33, 0xcb, 0x5f, 0xee, 0x8f, 0xca, 0x8f, 0x2d, + 0x3f, 0xba, 0x3f, 0x2a, 0x7d, 0x14, 0xc6, 0x33, 0xcb, 0x4f, 0xee, 0xaf, + 0xe5, 0x47, 0x96, 0x9f, 0xdd, 0x1f, 0x95, 0x3f, 0x14, 0x62, 0x80, 0x19, + 0xe5, 0xa7, 0xf7, 0x57, 0xf2, 0xa3, 0xcb, 0x4f, 0xee, 0xaf, 0xe5, 0x4f, + 0xc5, 0x18, 0xa0, 0x06, 0x6c, 0x4f, 0xee, 0xaf, 0xe5, 0x46, 0xc4, 0xfe, + 0xea, 0xfe, 0x54, 0xfc, 0x51, 0x40, 0x0c, 0xf2, 0xd7, 0xfb, 0xab, 0xf9, + 0x51, 0xe5, 0xa7, 0xf7, 0x57, 0xf2, 0xa7, 0xd1, 0x40, 0x0c, 0xf2, 0xd7, + 0xfb, 0xab, 0xf9, 0x51, 0xe5, 0xaf, 0xf7, 0x47, 0xe5, 0x4f, 0xa2, 0x90, + 0x0c, 0xd8, 0x9f, 0xdd, 0x5f, 0xca, 0x8d, 0x8b, 0xfd, 0xd1, 0xf9, 0x53, + 0xf1, 0x46, 0x29, 0x80, 0xcf, 0x2d, 0x7f, 0xba, 0x3f, 0x2a, 0x36, 0x2f, + 0xf7, 0x57, 0xf2, 0xa7, 0xd1, 0x48, 0x06, 0x6c, 0x4f, 0xee, 0xaf, 0xe5, + 0x47, 0x96, 0xbf, 0xdd, 0x5f, 0xca, 0x9f, 0x49, 0x40, 0x0d, 0xf2, 0xd3, + 0xfb, 0xa3, 0xf2, 0xa3, 0xcb, 0x4f, 0xee, 0x2f, 0xe5, 0x4e, 0xa2, 0x98, + 0x0d, 0xd8, 0x9f, 0xdc, 0x5f, 0xca, 0x93, 0x62, 0x7f, 0x75, 0x7f, 0x2a, + 0x7d, 0x18, 0xa0, 0x06, 0x79, 0x69, 0xfd, 0xd5, 0xfc, 0xa8, 0xf2, 0xd3, + 0xfb, 0xab, 0xf9, 0x53, 0xf1, 0x45, 0x00, 0x33, 0xcb, 0x4f, 0xee, 0xaf, + 0xe5, 0x47, 0x96, 0x9f, 0xdc, 0x5f, 0xca, 0x9f, 0x45, 0x00, 0x37, 0xcb, + 0x4f, 0xee, 0x2f, 0xe5, 0x4d, 0x68, 0xd3, 0x69, 0xf9, 0x17, 0xa7, 0xa5, + 0x49, 0x48, 0xdf, 0x74, 0xfd, 0x28, 0x00, 0x5f, 0xba, 0x3e, 0x94, 0xb4, + 0x0f, 0xba, 0x3e, 0x94, 0xb4, 0x00, 0x94, 0x52, 0xd1, 0x40, 0x09, 0x45, + 0x14, 0x50, 0x01, 0x45, 0x14, 0x62, 0x80, 0x12, 0x8a, 0x5a, 0x28, 0x01, + 0x28, 0xa5, 0xa2, 0x80, 0x12, 0x8a, 0x5a, 0x31, 0x40, 0x09, 0x45, 0x2e, + 0x28, 0xa0, 0x04, 0xa2, 0x96, 0x8a, 0x00, 0x4a, 0x29, 0x69, 0x28, 0x00, + 0xa2, 0x8a, 0x31, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x8a, + 0x00, 0x4a, 0x5a, 0x28, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x04, 0xa5, 0xa2, + 0x8c, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, + 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, + 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x49, 0x4b, 0x45, 0x00, 0x26, + 0x68, 0xcd, 0x2d, 0x18, 0xa0, 0x04, 0xcd, 0x19, 0xa5, 0xa3, 0x14, 0x00, + 0x94, 0xb4, 0x51, 0x40, 0x05, 0x14, 0x52, 0xd0, 0x02, 0x51, 0x4b, 0x45, + 0x00, 0x25, 0x14, 0xb4, 0x50, 0x02, 0x52, 0xd1, 0x45, 0x00, 0x14, 0x51, + 0x45, 0x00, 0x14, 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, + 0xb4, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x52, 0xd0, 0x02, + 0x51, 0x8a, 0x5a, 0x28, 0x01, 0x28, 0xa5, 0xa2, 0x80, 0x12, 0x8a, 0x5a, + 0x31, 0x40, 0x05, 0x14, 0xb8, 0xa2, 0x90, 0x09, 0x45, 0x2e, 0x28, 0xc5, + 0x00, 0x25, 0x14, 0xb8, 0xa3, 0x14, 0x00, 0x94, 0x52, 0xe2, 0x8c, 0x53, + 0x01, 0x28, 0xa7, 0x62, 0x8c, 0x52, 0x01, 0xb4, 0x52, 0xe2, 0x97, 0x14, + 0x00, 0xdc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x37, 0x14, 0x53, 0xb1, + 0x46, 0x28, 0x01, 0xb4, 0x53, 0xb1, 0x45, 0x00, 0x37, 0x14, 0x53, 0xb1, + 0x46, 0x28, 0x01, 0xb4, 0x62, 0x9d, 0x8a, 0x28, 0x01, 0xb4, 0x53, 0xb1, + 0x46, 0x28, 0x01, 0xb4, 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb4, 0x52, 0xe2, + 0x8c, 0x50, 0x02, 0x51, 0x4b, 0x8a, 0x31, 0x40, 0x09, 0x45, 0x2d, 0x18, + 0xa0, 0x04, 0xa2, 0x97, 0x14, 0x62, 0x98, 0x0d, 0xa2, 0x9d, 0x8a, 0x4a, + 0x00, 0x4a, 0x31, 0x4b, 0x45, 0x00, 0x26, 0x28, 0xa5, 0xa2, 0x80, 0x12, + 0x8a, 0x5a, 0x28, 0x01, 0x28, 0xa5, 0xa4, 0xa0, 0x02, 0x8a, 0x31, 0x45, + 0x00, 0x25, 0x23, 0x7d, 0xd3, 0xf4, 0xa7, 0x52, 0x30, 0xf9, 0x4f, 0xd2, + 0x80, 0x14, 0x7d, 0xd1, 0x45, 0x03, 0xee, 0x8a, 0x5a, 0x00, 0x4a, 0x29, + 0x69, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, + 0x8a, 0x28, 0x00, 0xa4, 0xa5, 0xa2, 0x80, 0x12, 0x96, 0x8a, 0x28, 0x10, + 0x94, 0x52, 0xd1, 0x40, 0xc4, 0xa2, 0x96, 0x8a, 0x00, 0x4a, 0x29, 0x68, + 0xa0, 0x04, 0xa2, 0x96, 0x8a, 0x00, 0x4a, 0x29, 0x68, 0xa0, 0x04, 0xa2, + 0x96, 0x8a, 0x00, 0x4c, 0x51, 0x4b, 0x45, 0x00, 0x25, 0x1c, 0xd2, 0xd1, + 0x40, 0x0d, 0xe6, 0x97, 0x9a, 0x5a, 0x28, 0x01, 0x28, 0xa5, 0xa2, 0x81, + 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2d, + 0x14, 0x00, 0x94, 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, + 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x0c, 0x4a, 0x29, 0x69, 0x28, + 0x00, 0xa2, 0x8a, 0x28, 0x10, 0x51, 0x45, 0x2d, 0x03, 0x12, 0x8a, 0x28, + 0xa0, 0x41, 0x45, 0x2d, 0x14, 0x0c, 0x4a, 0x29, 0x71, 0x45, 0x02, 0x0a, + 0x28, 0xa2, 0x81, 0x85, 0x14, 0x51, 0x40, 0x05, 0x14, 0x52, 0xd0, 0x02, + 0x51, 0x4b, 0x45, 0x00, 0x14, 0x51, 0x46, 0x28, 0x00, 0xa2, 0x97, 0x14, + 0x50, 0x02, 0x51, 0x8a, 0x5a, 0x5a, 0x00, 0x4a, 0x31, 0x4b, 0x8a, 0x31, + 0x48, 0x04, 0xc5, 0x18, 0xa7, 0x51, 0x8a, 0x00, 0x6e, 0x29, 0x69, 0x71, + 0x46, 0x28, 0x01, 0x31, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0x00, 0x98, 0xa3, + 0x14, 0xb8, 0xa5, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xa8, 0xa0, 0x06, 0xe2, + 0x8c, 0x53, 0xb1, 0x46, 0x28, 0x01, 0x31, 0x46, 0x29, 0x71, 0x4b, 0x8a, + 0x00, 0x6e, 0x28, 0xc5, 0x3b, 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x31, 0x4e, + 0xc5, 0x18, 0xa4, 0x31, 0xb8, 0xa3, 0x14, 0xec, 0x51, 0x8a, 0x00, 0x6e, + 0x28, 0xc5, 0x3b, 0x14, 0x62, 0x98, 0x0d, 0xc5, 0x18, 0xa7, 0x62, 0x8c, + 0x52, 0x01, 0xb8, 0xa3, 0x14, 0xec, 0x51, 0x8a, 0x60, 0x37, 0x14, 0x62, + 0x9d, 0x8a, 0x31, 0x40, 0x0d, 0xc5, 0x18, 0xa7, 0x62, 0x93, 0x14, 0x08, + 0x6e, 0x28, 0xc5, 0x3b, 0x14, 0x50, 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa2, + 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x26, 0x28, 0x01, 0xb4, 0x62, 0x9d, + 0x46, 0x28, 0x01, 0xb8, 0xa3, 0x14, 0xb8, 0xa3, 0x14, 0x00, 0xdc, 0x51, + 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x36, 0x8c, 0x52, 0xe2, 0x8c, 0x50, 0x03, + 0x71, 0x45, 0x3a, 0x8c, 0x53, 0x01, 0xb4, 0x52, 0xd1, 0x40, 0x09, 0x45, + 0x2e, 0x29, 0x28, 0x00, 0xa4, 0x6f, 0xba, 0x7e, 0x94, 0xb4, 0x8d, 0xf7, + 0x4f, 0xd2, 0x80, 0x14, 0x7d, 0xd1, 0xf4, 0xa2, 0x94, 0x74, 0x14, 0x62, + 0x80, 0x12, 0x8a, 0x5a, 0x28, 0x01, 0x28, 0xa5, 0xc5, 0x18, 0xa0, 0x04, + 0xa2, 0x96, 0x8a, 0x00, 0x4a, 0x29, 0x71, 0x49, 0x40, 0x05, 0x14, 0x62, + 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x28, 0xa5, + 0xc5, 0x18, 0xa0, 0x04, 0xa2, 0x96, 0x8a, 0x00, 0x4a, 0x29, 0x71, 0x46, + 0x28, 0x01, 0x28, 0xc5, 0x2e, 0x28, 0xc5, 0x00, 0x25, 0x18, 0xa5, 0xc5, + 0x18, 0xa0, 0x04, 0xc5, 0x18, 0xa5, 0xc5, 0x14, 0x00, 0x98, 0xa3, 0x14, + 0xb8, 0xa3, 0x14, 0x00, 0x98, 0xa3, 0x14, 0xb4, 0x62, 0x80, 0x13, 0x14, + 0x62, 0x9d, 0x49, 0x40, 0x09, 0x8a, 0x31, 0x4b, 0x46, 0x28, 0x01, 0x31, + 0x46, 0x29, 0x68, 0xa0, 0x04, 0xc5, 0x14, 0xb4, 0x50, 0x02, 0x62, 0x8a, + 0x5c, 0x51, 0x40, 0x0d, 0xa2, 0x9d, 0x46, 0x28, 0x01, 0xb4, 0x53, 0xb1, + 0x49, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x52, 0xd1, 0x8a, 0x00, + 0x4a, 0x29, 0x71, 0x45, 0x00, 0x25, 0x14, 0xb8, 0xa2, 0x80, 0x12, 0x8a, + 0x5c, 0x51, 0x40, 0x09, 0x41, 0x38, 0x19, 0xa8, 0x27, 0xbd, 0x82, 0xd9, + 0xb1, 0x33, 0x94, 0xf7, 0x20, 0xe3, 0xf3, 0xac, 0xab, 0xdf, 0x14, 0xe9, + 0xd0, 0x02, 0x91, 0xbb, 0x4e, 0xff, 0x00, 0xf4, 0xcf, 0xa7, 0xe7, 0x51, + 0x2a, 0x90, 0x8e, 0xec, 0xa5, 0x16, 0xf6, 0x46, 0xb4, 0xb7, 0x76, 0xf0, + 0xaa, 0xb3, 0xca, 0xa0, 0x39, 0x00, 0x73, 0xd7, 0x34, 0xf1, 0x34, 0x65, + 0xf6, 0x2b, 0x06, 0x6c, 0x67, 0x03, 0xd2, 0xbc, 0xc2, 0xe2, 0xf2, 0xe2, + 0x4b, 0xd6, 0x99, 0x25, 0x65, 0x83, 0x39, 0x11, 0x31, 0xe9, 0x57, 0xa3, + 0xf1, 0x15, 0xdd, 0xac, 0x65, 0x6d, 0xdd, 0x06, 0x4f, 0x70, 0x09, 0xae, + 0x35, 0x8e, 0x8d, 0xec, 0xd6, 0x86, 0xbe, 0xc7, 0x43, 0xd1, 0x68, 0xaf, + 0x35, 0x93, 0xc4, 0xda, 0xab, 0xf5, 0xbb, 0x23, 0xfd, 0xd5, 0x02, 0x98, + 0xde, 0x20, 0xd4, 0xca, 0xff, 0x00, 0xc7, 0xe4, 0xbf, 0x85, 0x57, 0xd7, + 0xe9, 0xf6, 0x62, 0xf6, 0x12, 0x3d, 0x36, 0x8a, 0xf2, 0xd1, 0xac, 0x6a, + 0x4e, 0x4e, 0x6f, 0xa7, 0xc7, 0xfb, 0xc6, 0x99, 0xfd, 0xa5, 0x7f, 0xbb, + 0xfe, 0x3f, 0x66, 0xcf, 0xfb, 0xc6, 0xa7, 0xeb, 0xf0, 0xec, 0x3f, 0x60, + 0xfb, 0x9e, 0xab, 0x45, 0x79, 0x70, 0xd6, 0x75, 0x34, 0x3f, 0xf1, 0xfd, + 0x36, 0x3f, 0xde, 0x35, 0x2f, 0xfc, 0x24, 0x1a, 0x92, 0xff, 0x00, 0xcb, + 0xec, 0xa6, 0x9f, 0xd7, 0xe1, 0xd9, 0x87, 0xb0, 0x7d, 0xcf, 0x4d, 0xc5, + 0x42, 0xf7, 0x11, 0xc5, 0x20, 0x49, 0x0e, 0xd2, 0x46, 0x41, 0x3d, 0x0d, + 0x79, 0xdc, 0x7e, 0x25, 0xd5, 0x13, 0xfe, 0x5f, 0x9b, 0xfe, 0x04, 0xa0, + 0xd2, 0x5f, 0xeb, 0x7a, 0x8d, 0xf5, 0xba, 0xc5, 0x25, 0xd6, 0xd1, 0x9c, + 0xe5, 0x70, 0xa4, 0xfe, 0x54, 0x3c, 0x74, 0x2d, 0xa0, 0x95, 0x17, 0x73, + 0xd0, 0xe1, 0xbd, 0x82, 0x61, 0x21, 0x57, 0xc0, 0x8d, 0x8a, 0xb1, 0x3e, + 0xd5, 0x3a, 0x90, 0xca, 0x18, 0x72, 0x0f, 0x43, 0x5e, 0x5d, 0xa7, 0xdc, + 0xc9, 0x65, 0x31, 0x76, 0x06, 0x74, 0x27, 0x25, 0x77, 0x90, 0x6b, 0xb4, + 0xb2, 0xf1, 0x6e, 0x97, 0x28, 0x58, 0xe4, 0x67, 0xb7, 0x60, 0x3a, 0x48, + 0x38, 0xfc, 0xea, 0xa8, 0xe2, 0xa3, 0x3f, 0x8b, 0x40, 0x9d, 0x26, 0xb6, + 0x37, 0xe8, 0xc5, 0x43, 0x05, 0xe5, 0xbd, 0xd0, 0xcc, 0x12, 0x89, 0x07, + 0xfb, 0x3c, 0xd4, 0xf8, 0xae, 0xb4, 0xd3, 0xd8, 0xc6, 0xd6, 0x0a, 0x31, + 0x4b, 0x8a, 0x28, 0x01, 0x31, 0x4b, 0x8a, 0x5a, 0x31, 0x40, 0x09, 0x8a, + 0x29, 0xd8, 0xa3, 0x14, 0x00, 0x98, 0xa3, 0x14, 0xec, 0x51, 0x8a, 0x00, + 0x6e, 0x29, 0x71, 0x4e, 0xc5, 0x18, 0xa4, 0x31, 0xb8, 0xa3, 0x14, 0xfc, + 0x51, 0x8a, 0x00, 0x6e, 0x28, 0xc5, 0x3b, 0x14, 0xb8, 0xa0, 0x06, 0xe2, + 0x8c, 0x53, 0xb1, 0x4b, 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3f, 0x14, 0x62, + 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x2e, 0x28, 0x01, 0x98, 0xa3, 0x14, + 0xfc, 0x51, 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x90, 0x0c, + 0xc5, 0x18, 0xa7, 0xe2, 0x8c, 0x50, 0x03, 0x31, 0x46, 0x29, 0xf8, 0xa3, + 0x14, 0xc0, 0x66, 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x80, 0x19, 0x8a, 0x31, + 0x4f, 0xc5, 0x26, 0x28, 0x01, 0x98, 0xa3, 0x14, 0xfc, 0x51, 0x8a, 0x00, + 0x66, 0x28, 0xc5, 0x3f, 0x14, 0x98, 0xa0, 0x06, 0x62, 0x8c, 0x53, 0xf1, + 0x49, 0x8a, 0x00, 0x6e, 0x29, 0x31, 0x4f, 0xc5, 0x18, 0xa0, 0x06, 0x62, + 0x93, 0x14, 0xfc, 0x51, 0x8a, 0x00, 0x66, 0x28, 0xa7, 0x62, 0x8c, 0x53, + 0x10, 0xca, 0x31, 0x4e, 0xc5, 0x18, 0xa0, 0x06, 0xd2, 0x53, 0xa8, 0xa0, + 0x06, 0xe2, 0x8a, 0x5a, 0x28, 0x01, 0xb4, 0x62, 0x9d, 0x49, 0x8a, 0x00, + 0x4c, 0x51, 0x8a, 0x5a, 0x31, 0x4c, 0x06, 0xd2, 0x37, 0xdd, 0x3f, 0x4a, + 0x75, 0x21, 0x1f, 0x29, 0xfa, 0x50, 0x02, 0x8e, 0x94, 0x52, 0x8e, 0x94, + 0x50, 0x02, 0x51, 0x4b, 0x49, 0x40, 0x05, 0x14, 0x51, 0x40, 0x09, 0x45, + 0x2d, 0x14, 0x00, 0x94, 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2d, 0x18, 0xa0, + 0x04, 0xa2, 0x97, 0x14, 0x50, 0x02, 0x51, 0x4e, 0xc5, 0x18, 0xa0, 0x04, + 0xa2, 0x96, 0x8a, 0x00, 0x4a, 0x31, 0x4b, 0x8a, 0x28, 0x01, 0x28, 0xa7, + 0x51, 0x8a, 0x00, 0x6e, 0x29, 0x71, 0x4b, 0x45, 0x00, 0x25, 0x18, 0xa5, + 0xc5, 0x18, 0xa0, 0x04, 0xa3, 0x14, 0xb8, 0xa2, 0x80, 0x12, 0x8a, 0x5c, + 0x51, 0x8a, 0x00, 0x4a, 0x29, 0xd8, 0xa4, 0xc5, 0x00, 0x26, 0x28, 0xc5, + 0x2d, 0x18, 0xa0, 0x04, 0xa3, 0x14, 0xb8, 0xa3, 0x14, 0x00, 0x98, 0xa3, + 0x14, 0xb8, 0xa2, 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x14, 0x00, 0xda, + 0x43, 0xc7, 0x5c, 0xd3, 0xe9, 0x31, 0x40, 0x0d, 0x0c, 0xa7, 0xa1, 0x1f, + 0x9d, 0x2d, 0x67, 0xde, 0xe9, 0x31, 0xde, 0xca, 0x19, 0xa7, 0x9a, 0x32, + 0x07, 0xf0, 0x10, 0x2b, 0x36, 0xe3, 0x4a, 0xbb, 0xb5, 0x18, 0xb5, 0xd5, + 0x4a, 0xa9, 0xff, 0x00, 0x96, 0x72, 0x12, 0x77, 0x7e, 0x39, 0xcd, 0x66, + 0xe5, 0x25, 0xd0, 0x69, 0x23, 0x46, 0xef, 0x51, 0xb9, 0xb6, 0xe5, 0x74, + 0xcb, 0x89, 0x93, 0xb9, 0x8d, 0x94, 0x9f, 0xcb, 0x35, 0x56, 0x2f, 0x14, + 0xe9, 0x8d, 0x20, 0x8a, 0x79, 0x24, 0xb4, 0x97, 0xfb, 0x97, 0x08, 0x50, + 0xff, 0x00, 0x85, 0x62, 0xcf, 0xa8, 0xdc, 0xe9, 0x7b, 0xfc, 0xeb, 0x6d, + 0x42, 0x26, 0x51, 0x91, 0x22, 0x39, 0x78, 0x9b, 0xf3, 0x07, 0x15, 0xc6, + 0x6a, 0x9e, 0x25, 0xbc, 0xba, 0x9c, 0xbd, 0xda, 0x89, 0x10, 0x1f, 0x97, + 0x63, 0x64, 0x7e, 0x20, 0xf1, 0xfa, 0x56, 0x33, 0xaf, 0xca, 0x5a, 0x85, + 0xcf, 0x64, 0x8a, 0x68, 0xa7, 0x40, 0xf1, 0x48, 0x8e, 0xa7, 0xa1, 0x53, + 0x91, 0x4f, 0xaf, 0x05, 0xfe, 0xdf, 0xb9, 0xb6, 0xb8, 0x59, 0x34, 0xe9, + 0x9a, 0xd9, 0xb3, 0xce, 0xc2, 0x40, 0x6f, 0xc3, 0x38, 0xae, 0xe3, 0x40, + 0xf1, 0xd6, 0xa1, 0xbe, 0x28, 0x75, 0x88, 0x17, 0x63, 0xfd, 0xd9, 0x80, + 0xc6, 0x7e, 0xb4, 0x47, 0x17, 0x06, 0xed, 0x2d, 0x06, 0xe9, 0x3e, 0x87, + 0xa1, 0x51, 0x8a, 0xe6, 0x75, 0x5f, 0x1a, 0x5b, 0x69, 0xfb, 0x56, 0x3b, + 0x59, 0xa6, 0x77, 0xfb, 0xb8, 0x18, 0x19, 0xfa, 0xd6, 0x14, 0xbe, 0x25, + 0xf1, 0x15, 0xc2, 0x89, 0x20, 0x11, 0x5b, 0xb1, 0x6f, 0xf5, 0x6c, 0xa0, + 0x8c, 0x7f, 0x3c, 0xd5, 0x4b, 0x15, 0x4e, 0x3d, 0x44, 0xa9, 0x49, 0x9e, + 0x87, 0x46, 0x2b, 0xcf, 0x53, 0x5a, 0xf1, 0x2b, 0x71, 0x25, 0xec, 0x0a, + 0x3f, 0xd9, 0x88, 0x53, 0x86, 0xa7, 0xac, 0x9c, 0x89, 0x35, 0x02, 0xc0, + 0xff, 0x00, 0x75, 0x76, 0xe3, 0xf2, 0xa8, 0xfa, 0xed, 0x32, 0xbd, 0x8c, + 0x8f, 0x40, 0xa6, 0xb4, 0x91, 0xa0, 0xcb, 0x3a, 0xaf, 0xd4, 0xd7, 0x9b, + 0xcc, 0xd7, 0x72, 0xf3, 0x36, 0xa3, 0x76, 0xc3, 0xd3, 0xcc, 0xc7, 0xf2, + 0xaa, 0xcd, 0x6b, 0x13, 0x70, 0xef, 0x23, 0x0f, 0xf6, 0xe5, 0x27, 0xfa, + 0xd6, 0x6f, 0x1f, 0x15, 0xb2, 0x29, 0x50, 0x7d, 0xcf, 0x45, 0xb8, 0xd5, + 0x6c, 0xe1, 0x1f, 0xf1, 0xf7, 0x6d, 0x9e, 0xe1, 0xa5, 0x02, 0xb9, 0x9d, + 0x47, 0xe2, 0x05, 0xad, 0xb1, 0x78, 0x61, 0x55, 0x69, 0x41, 0xc0, 0x60, + 0xd9, 0x5a, 0xe7, 0xbe, 0xcf, 0xa7, 0x27, 0x25, 0x21, 0xcf, 0xbe, 0x2a, + 0x40, 0xf6, 0x4a, 0x30, 0xaa, 0x9f, 0xf0, 0x15, 0xcd, 0x61, 0x53, 0x1c, + 0xdf, 0xc3, 0xa1, 0xa4, 0x68, 0x5b, 0x74, 0x51, 0xbd, 0xf1, 0x0c, 0xba, + 0x89, 0x26, 0xe6, 0x69, 0x25, 0x1d, 0x42, 0xa8, 0x38, 0xfc, 0xaa, 0xa0, + 0xbe, 0xcf, 0x0b, 0x6f, 0x70, 0x47, 0xb4, 0x66, 0xb6, 0xbe, 0xd1, 0x00, + 0x3f, 0x24, 0x4c, 0x7e, 0x89, 0x4b, 0xf6, 0x8e, 0x32, 0xb0, 0x49, 0xf9, + 0x57, 0x14, 0xaa, 0x26, 0xee, 0xd9, 0xb2, 0xa6, 0xfb, 0x18, 0x9f, 0x6c, + 0x94, 0xfd, 0xdb, 0x19, 0xcf, 0xd5, 0x71, 0x4b, 0xe6, 0x5d, 0xbf, 0x22, + 0xc6, 0x51, 0xf5, 0xad, 0xa4, 0x7b, 0xa7, 0x19, 0x16, 0x8f, 0x83, 0xde, + 0x9b, 0x24, 0xd3, 0xc5, 0xf7, 0xd2, 0x34, 0x1e, 0xae, 0xf8, 0xa8, 0xf6, + 0x90, 0xd8, 0x7c, 0x92, 0x32, 0x3f, 0xd3, 0xc9, 0xe2, 0xc5, 0xcf, 0xd5, + 0x85, 0x38, 0x0b, 0xf2, 0x39, 0xb0, 0x61, 0xf4, 0x71, 0x56, 0xdb, 0x51, + 0xc3, 0x63, 0xcf, 0xb6, 0x1f, 0xf0, 0x3a, 0x63, 0x6a, 0x64, 0x74, 0xbb, + 0x80, 0x7d, 0x39, 0xa3, 0xda, 0x44, 0x5c, 0xac, 0x83, 0x6d, 0xe8, 0x3c, + 0x58, 0xbf, 0xfd, 0xf6, 0x29, 0x7f, 0xd3, 0x7a, 0x1b, 0x27, 0x1f, 0xf0, + 0x35, 0xa8, 0xe5, 0xd5, 0x9d, 0x1b, 0xfe, 0x3f, 0xa3, 0xe7, 0xd1, 0x33, + 0x51, 0x1d, 0x69, 0xfb, 0xdf, 0xaf, 0xfd, 0xfb, 0xaa, 0xe6, 0x88, 0x59, + 0x96, 0x36, 0x5d, 0x9e, 0xb6, 0x52, 0x7f, 0xdf, 0x6b, 0x41, 0x5b, 0x9f, + 0xf9, 0xf2, 0x7f, 0xcc, 0x54, 0x0b, 0xad, 0xbf, 0xfc, 0xff, 0x00, 0x27, + 0xfd, 0xfb, 0xa5, 0xfe, 0xd8, 0x25, 0xb9, 0xbe, 0x87, 0x3e, 0xe8, 0x68, + 0xbc, 0x45, 0x62, 0x6f, 0xf4, 0x80, 0x30, 0x6d, 0x24, 0xfd, 0x3f, 0xc6, + 0x83, 0x2c, 0xdb, 0x00, 0x6b, 0x69, 0xb8, 0xf4, 0x1f, 0xfd, 0x7a, 0x91, + 0x35, 0x46, 0x20, 0x7f, 0xa4, 0xdb, 0x37, 0xe3, 0x8a, 0xb0, 0x97, 0xb3, + 0x3f, 0x0a, 0x60, 0x7f, 0xa3, 0x51, 0xcd, 0x10, 0xe5, 0x65, 0x01, 0x72, + 0xc3, 0xad, 0xbc, 0xe3, 0xfe, 0x01, 0x41, 0xbc, 0x4c, 0x90, 0xd1, 0x4c, + 0x07, 0xab, 0x21, 0xc5, 0x69, 0x79, 0xf7, 0x3d, 0x7e, 0xcc, 0xa7, 0xe8, + 0xd4, 0x7d, 0xa2, 0x43, 0xf7, 0xad, 0x5b, 0xf0, 0x20, 0xd3, 0x4d, 0x05, + 0x99, 0x05, 0x97, 0x88, 0xe4, 0xd2, 0xdf, 0x75, 0xb5, 0xd1, 0x40, 0x7a, + 0xa3, 0x03, 0xb4, 0xd7, 0x49, 0x67, 0xf1, 0x22, 0x19, 0x0a, 0xc7, 0x34, + 0x28, 0x1f, 0x38, 0xdc, 0x1b, 0x00, 0xd6, 0x1f, 0xda, 0x23, 0xe8, 0xd6, + 0xee, 0x3f, 0xe0, 0x19, 0xa4, 0x2f, 0x64, 0xe3, 0xe7, 0x8d, 0x47, 0xfb, + 0xc9, 0x5b, 0x53, 0xc4, 0x4a, 0x9e, 0xcc, 0x87, 0x4e, 0xfb, 0xa3, 0xd3, + 0x2d, 0xb5, 0x6b, 0x2b, 0x88, 0xc3, 0x0b, 0xcb, 0x6d, 0xc7, 0xb2, 0xca, + 0x0d, 0x5d, 0x57, 0x47, 0x19, 0x57, 0x56, 0xfa, 0x1a, 0xf2, 0x41, 0x6f, + 0xa6, 0x39, 0xc8, 0x48, 0x81, 0xf5, 0x1c, 0x53, 0xd6, 0xce, 0x00, 0x73, + 0x1c, 0xb2, 0x29, 0xed, 0xb2, 0x52, 0x3f, 0xad, 0x76, 0x47, 0x1c, 0xbb, + 0x19, 0x3a, 0x07, 0xad, 0x62, 0x97, 0x15, 0xe5, 0x89, 0x3d, 0xfc, 0x4c, + 0x04, 0x3a, 0xa5, 0xe2, 0x01, 0xe9, 0x26, 0x47, 0xeb, 0x56, 0xd3, 0x59, + 0xd7, 0xa2, 0x1f, 0xbb, 0xd4, 0xf7, 0x7f, 0xd7, 0x48, 0x83, 0x56, 0x8b, + 0x1b, 0x07, 0xba, 0x27, 0xd8, 0xb3, 0xd2, 0x71, 0x46, 0x2b, 0xce, 0xc7, + 0x89, 0xfc, 0x47, 0x18, 0xff, 0x00, 0x59, 0x69, 0x2f, 0xd5, 0x36, 0xd4, + 0xb6, 0xbe, 0x33, 0xd6, 0xa3, 0xb8, 0x1f, 0x6b, 0xb3, 0xb7, 0x92, 0x2e, + 0xe2, 0x26, 0xc1, 0xfd, 0x6a, 0xd6, 0x2a, 0x9b, 0x27, 0xd9, 0x48, 0xf4, + 0x0c, 0x51, 0x8a, 0xc2, 0x87, 0xc5, 0xfa, 0x54, 0x8c, 0xa8, 0xf2, 0x3c, + 0x6e, 0x46, 0x48, 0x2b, 0x9c, 0x57, 0x39, 0xe2, 0x0f, 0x88, 0xf2, 0x5a, + 0x3b, 0xc5, 0xa5, 0xda, 0x09, 0xb6, 0x8f, 0x9a, 0x46, 0x39, 0xdb, 0xf8, + 0x55, 0xba, 0xf4, 0xd2, 0xbd, 0xc4, 0xa9, 0xc9, 0x9e, 0x83, 0x8c, 0x75, + 0xaa, 0x17, 0x7a, 0xde, 0x99, 0x63, 0x91, 0x73, 0x7d, 0x0a, 0x1f, 0xee, + 0xee, 0xc9, 0xfc, 0x87, 0x35, 0xe2, 0x57, 0xde, 0x2e, 0xd6, 0xf5, 0x4f, + 0x9a, 0x7b, 0xe7, 0x31, 0x13, 0xcc, 0x68, 0x76, 0x2f, 0xe9, 0x51, 0xdb, + 0x6b, 0xd7, 0x90, 0xcb, 0x1b, 0x5a, 0xc7, 0x04, 0x4c, 0x87, 0x39, 0xd9, + 0xb8, 0x9f, 0xa9, 0x3c, 0xd6, 0x2f, 0x16, 0xba, 0x16, 0xa9, 0x1e, 0xd5, + 0x6d, 0xe2, 0x1b, 0x6b, 0xc9, 0x36, 0xdb, 0xdb, 0x5e, 0x48, 0x9f, 0xf3, + 0xd0, 0x40, 0x76, 0xfe, 0x75, 0xac, 0x87, 0x7a, 0x06, 0xc1, 0x19, 0xec, + 0x6b, 0x8e, 0xd1, 0xf5, 0x9d, 0x43, 0x55, 0xb3, 0x89, 0xfc, 0xbb, 0xf1, + 0x3f, 0x42, 0x12, 0x34, 0x58, 0xfe, 0xb9, 0x22, 0xae, 0xa6, 0x9d, 0xe2, + 0x6b, 0xa2, 0x52, 0xe3, 0x57, 0x8a, 0x18, 0xc1, 0x3c, 0x44, 0x83, 0x7e, + 0x3b, 0x64, 0xd6, 0xb1, 0xa9, 0x75, 0x75, 0xa9, 0x0e, 0x29, 0x1d, 0x36, + 0x28, 0xaa, 0x16, 0x7a, 0x7d, 0xcd, 0xbb, 0x62, 0xe2, 0xf9, 0xae, 0x10, + 0xae, 0x08, 0x65, 0xc7, 0xf5, 0xad, 0x10, 0x80, 0x74, 0x18, 0xad, 0x13, + 0x6c, 0x9d, 0x04, 0xc5, 0x18, 0xa7, 0x62, 0x97, 0x14, 0xc0, 0x66, 0x29, + 0x71, 0x4e, 0xc5, 0x18, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xa8, 0xa4, 0x03, + 0x71, 0x46, 0x29, 0xd4, 0x50, 0x02, 0x62, 0x8c, 0x52, 0xd1, 0x40, 0x09, + 0x8a, 0x31, 0x4b, 0x45, 0x00, 0x26, 0x28, 0xc5, 0x2d, 0x14, 0x00, 0x98, + 0xa3, 0x14, 0xb4, 0x50, 0x03, 0x71, 0x46, 0x29, 0xd4, 0x50, 0x03, 0x71, + 0x49, 0x8a, 0x75, 0x14, 0xc0, 0x6e, 0x28, 0xc5, 0x3a, 0x93, 0x14, 0x08, + 0x6e, 0x28, 0xc5, 0x3a, 0x92, 0x80, 0x13, 0x14, 0x98, 0xa7, 0x52, 0x50, + 0x02, 0x62, 0x93, 0x14, 0xea, 0x4a, 0x60, 0x26, 0x29, 0x31, 0x4e, 0xa2, + 0x80, 0x19, 0x8a, 0x31, 0x4e, 0xa4, 0xa0, 0x43, 0x71, 0x49, 0x8a, 0x7d, + 0x25, 0x30, 0x1b, 0x8a, 0x4c, 0x53, 0xe9, 0x28, 0x01, 0xb8, 0xa2, 0x97, + 0x14, 0x50, 0x03, 0x71, 0x45, 0x2d, 0x14, 0x00, 0xda, 0x42, 0x38, 0x34, + 0xea, 0x43, 0xd0, 0xd3, 0x00, 0x07, 0x8a, 0x29, 0x07, 0x41, 0x45, 0x3b, + 0x08, 0x5a, 0x29, 0x28, 0xa2, 0xc0, 0x2d, 0x14, 0x94, 0x50, 0x02, 0xd1, + 0x49, 0x45, 0x00, 0x2d, 0x14, 0x94, 0xb4, 0x00, 0x51, 0x45, 0x14, 0x00, + 0x51, 0x4b, 0x45, 0x03, 0x0a, 0x29, 0x71, 0x46, 0x29, 0x00, 0x94, 0x53, + 0xb1, 0x46, 0x28, 0x01, 0x2a, 0x0f, 0xb5, 0x45, 0xf6, 0xa3, 0x6e, 0x5c, + 0x79, 0xb8, 0xdd, 0xb7, 0x3c, 0xe2, 0xa5, 0x9a, 0x58, 0xe0, 0x89, 0xa5, + 0x91, 0xb6, 0xa2, 0xf5, 0x35, 0xca, 0xdc, 0xeb, 0x76, 0x51, 0x6b, 0xd0, + 0xde, 0x4b, 0xb8, 0x47, 0xb7, 0xcb, 0xce, 0x7a, 0x7b, 0xd6, 0x35, 0x2b, + 0x46, 0x9b, 0x49, 0xbd, 0xcb, 0x84, 0x1c, 0xae, 0xd1, 0xd6, 0x62, 0x8c, + 0x51, 0x1b, 0xac, 0xa8, 0xb2, 0x23, 0x06, 0x46, 0x19, 0x04, 0x77, 0x14, + 0xec, 0x56, 0xc4, 0x09, 0x8a, 0x31, 0x4b, 0x8a, 0x31, 0x40, 0x09, 0x8a, + 0x31, 0x4e, 0xa3, 0x14, 0x00, 0xdc, 0x51, 0x8a, 0x75, 0x18, 0xa0, 0x04, + 0xc5, 0x26, 0x29, 0xd8, 0xa5, 0xc5, 0x00, 0x33, 0x14, 0xb8, 0xa7, 0x62, + 0x8c, 0x50, 0x03, 0x71, 0x49, 0x8a, 0x76, 0x29, 0x71, 0x40, 0x0c, 0xc5, + 0x18, 0xa7, 0xe2, 0x8c, 0x50, 0x03, 0x31, 0x46, 0x29, 0xd8, 0xa3, 0x14, + 0x00, 0xdc, 0x52, 0x62, 0x9f, 0x8a, 0x31, 0x40, 0x0c, 0xc5, 0x18, 0xa7, + 0x62, 0x8c, 0x50, 0x04, 0x66, 0x30, 0x5c, 0xb1, 0xc1, 0xc8, 0xc6, 0x2a, + 0x3f, 0xb2, 0x5b, 0xff, 0x00, 0xcf, 0x08, 0xfd, 0x7e, 0xe8, 0xab, 0x18, + 0xa3, 0x14, 0xac, 0x80, 0x84, 0xc2, 0xa4, 0x60, 0xe4, 0x8f, 0x72, 0x6b, + 0x97, 0xf1, 0x1f, 0x83, 0xb4, 0xbd, 0x46, 0xda, 0x49, 0xdb, 0xfd, 0x1a, + 0x45, 0x04, 0xf9, 0x88, 0x30, 0x3f, 0x1a, 0xeb, 0xb1, 0x48, 0x46, 0x46, + 0x0d, 0x4c, 0xa1, 0x19, 0xab, 0x34, 0x09, 0xd9, 0xdd, 0x1f, 0x35, 0x5e, + 0x5a, 0x4b, 0x6f, 0x70, 0xd0, 0xa9, 0x12, 0x22, 0xb1, 0x02, 0x41, 0xd0, + 0xd6, 0xce, 0x9f, 0x1d, 0xcd, 0x8d, 0xb2, 0xdc, 0x47, 0x37, 0xda, 0xd0, + 0x9f, 0x9a, 0x10, 0xd9, 0x18, 0xf6, 0x1e, 0xb5, 0xea, 0xfa, 0xcf, 0x84, + 0x60, 0xbf, 0x9c, 0xdd, 0x40, 0xe6, 0x39, 0x48, 0xc1, 0x8f, 0x8d, 0x8d, + 0xfe, 0x15, 0xc0, 0xea, 0xc2, 0x3f, 0x0a, 0xdc, 0x18, 0x16, 0xc5, 0x84, + 0xd2, 0x0c, 0xe4, 0xfd, 0xd3, 0xf4, 0x35, 0xe4, 0xd6, 0xa1, 0x3a, 0x6f, + 0xc8, 0xeb, 0xa7, 0x35, 0x2f, 0x53, 0x52, 0xd2, 0xf5, 0x67, 0xb5, 0x59, + 0x1a, 0x26, 0x41, 0x8e, 0x51, 0xc7, 0x22, 0xb8, 0xcd, 0x67, 0x51, 0xba, + 0x4d, 0x51, 0xfc, 0xab, 0x97, 0x31, 0xa9, 0xca, 0x8d, 0xdc, 0x0a, 0xb0, + 0x5b, 0x58, 0xd4, 0xdb, 0x73, 0xb7, 0x91, 0x19, 0xfc, 0x38, 0xfa, 0x75, + 0x35, 0x2c, 0x3e, 0x1d, 0xb7, 0x56, 0x2d, 0x31, 0x79, 0x1b, 0xb9, 0x27, + 0x02, 0xb9, 0x65, 0x38, 0xc7, 0x73, 0xa6, 0x14, 0x67, 0x53, 0xe1, 0x44, + 0xda, 0x7e, 0xad, 0xa8, 0xde, 0x81, 0x14, 0x4b, 0x19, 0x60, 0x32, 0x5d, + 0xf3, 0x57, 0xf6, 0x5e, 0x37, 0xfa, 0xeb, 0xe5, 0x5f, 0x68, 0xd2, 0x9f, + 0x05, 0xba, 0x45, 0x10, 0x58, 0xd7, 0x00, 0x0e, 0x8a, 0x31, 0x4f, 0x60, + 0x23, 0x4d, 0xf2, 0x10, 0x83, 0xde, 0xb2, 0xf6, 0xcd, 0xfc, 0x28, 0xdd, + 0x61, 0xa3, 0x1f, 0xe2, 0x48, 0x8e, 0x2b, 0x24, 0x9a, 0x50, 0xb2, 0x4b, + 0x3b, 0x83, 0xfd, 0xe7, 0xc5, 0x6c, 0x0d, 0x0b, 0x4e, 0x8b, 0x06, 0x59, + 0x56, 0x24, 0xc6, 0x49, 0x70, 0x4d, 0x54, 0xd3, 0xcc, 0x72, 0xde, 0x46, + 0x8a, 0x59, 0x83, 0x10, 0x32, 0x16, 0xb7, 0x7c, 0x45, 0x10, 0x8e, 0x0d, + 0xdb, 0x43, 0xc5, 0xb7, 0x82, 0x3f, 0xad, 0x73, 0x62, 0x2b, 0x4e, 0x11, + 0x5d, 0xd9, 0xa5, 0x2a, 0x34, 0xe7, 0x27, 0x67, 0xa1, 0x96, 0x4e, 0x85, + 0x6f, 0xc2, 0xc9, 0x24, 0xec, 0x3f, 0xe7, 0x92, 0x52, 0x0b, 0xc8, 0x8f, + 0xfc, 0x7b, 0x69, 0x4c, 0xde, 0x86, 0x46, 0xc5, 0x68, 0x69, 0x76, 0x73, + 0xcf, 0x0a, 0xb4, 0x7a, 0x7d, 0xa4, 0x3c, 0x03, 0x99, 0x1c, 0xb1, 0xfa, + 0xe0, 0x56, 0xc2, 0xe9, 0xf7, 0x00, 0x7c, 0xf7, 0x89, 0x18, 0xf4, 0x82, + 0x20, 0xbf, 0xcf, 0x35, 0xc8, 0xeb, 0xf7, 0x6d, 0xfc, 0xed, 0xf9, 0x15, + 0xc9, 0xe4, 0x73, 0x83, 0xfb, 0x56, 0x41, 0xfb, 0xbb, 0x28, 0x22, 0x53, + 0xdf, 0xcb, 0xcf, 0xf3, 0xaa, 0x97, 0x06, 0xe8, 0xb7, 0x91, 0x73, 0xa8, + 0xa4, 0x7c, 0x67, 0x68, 0x21, 0x6b, 0xae, 0x6d, 0x26, 0xd2, 0x4f, 0xf5, + 0xf2, 0xcf, 0x37, 0xb3, 0x4a, 0x40, 0xfc, 0x85, 0x67, 0xdd, 0x69, 0x7a, + 0x6c, 0x1a, 0x8d, 0xab, 0x25, 0xb4, 0x20, 0x15, 0x60, 0x72, 0x33, 0x93, + 0xc5, 0x25, 0x5a, 0x37, 0xd8, 0x4d, 0x74, 0x39, 0xd5, 0xb1, 0x81, 0xa3, + 0x01, 0xf5, 0x62, 0x41, 0xec, 0x1c, 0x9f, 0xe5, 0x50, 0xc9, 0xe1, 0xbd, + 0x3a, 0x6e, 0x5a, 0xe2, 0xee, 0x4f, 0xf7, 0x63, 0x63, 0x5d, 0xac, 0x77, + 0x56, 0x36, 0xd6, 0xca, 0x5c, 0x24, 0x40, 0x12, 0xa3, 0x2b, 0xe9, 0x57, + 0x50, 0xab, 0xa8, 0x64, 0x19, 0x07, 0x90, 0x45, 0x29, 0x62, 0x79, 0x17, + 0x33, 0xd1, 0x7c, 0x88, 0x5a, 0xbb, 0x2d, 0xcf, 0x39, 0x93, 0xc3, 0xba, + 0x65, 0xac, 0x4d, 0x2b, 0x58, 0xde, 0x48, 0xa8, 0x32, 0x58, 0xc7, 0x8e, + 0x2b, 0x96, 0xbe, 0xd5, 0x2d, 0x03, 0x94, 0xb1, 0xb4, 0x54, 0x4f, 0xef, + 0x30, 0xe6, 0xbd, 0xbe, 0x64, 0x06, 0x16, 0xdc, 0x85, 0x97, 0x07, 0x2b, + 0xeb, 0x5e, 0x6d, 0x77, 0xe1, 0x9d, 0x37, 0x58, 0xd4, 0x91, 0x34, 0xed, + 0xf6, 0xed, 0x21, 0xcb, 0x86, 0xe8, 0x38, 0xcf, 0x02, 0xb7, 0xc3, 0xe3, + 0x21, 0x24, 0xe5, 0x27, 0x74, 0x67, 0x34, 0xef, 0xcb, 0xb1, 0xc2, 0xc9, + 0x3c, 0x8c, 0xdb, 0x89, 0xfc, 0xaa, 0x36, 0x2e, 0xdf, 0x36, 0xe6, 0xc5, + 0x77, 0x57, 0x3f, 0x0c, 0xb5, 0x38, 0xf2, 0x6d, 0xe7, 0x86, 0x41, 0xd8, + 0x1e, 0x0d, 0x73, 0xf7, 0x1e, 0x15, 0xd6, 0x2d, 0xae, 0xc5, 0xa4, 0x90, + 0x01, 0x2b, 0x63, 0x68, 0x0d, 0x9c, 0xe6, 0xba, 0xe8, 0xe2, 0xf0, 0xf5, + 0x55, 0xe9, 0xc9, 0x33, 0x39, 0xd3, 0xa9, 0x07, 0xa9, 0x88, 0x3a, 0x70, + 0xe4, 0x1a, 0x42, 0xbb, 0xfa, 0xcb, 0xb4, 0xfd, 0x2b, 0xa3, 0xff, 0x00, + 0x84, 0x1f, 0x5f, 0xcf, 0xfc, 0x79, 0x7e, 0xb4, 0xcb, 0xdf, 0x05, 0xea, + 0xb6, 0x10, 0xac, 0xb7, 0x4b, 0x1a, 0x2b, 0x30, 0x51, 0x86, 0xcf, 0x26, + 0xa9, 0x62, 0xa8, 0x39, 0x72, 0xa9, 0x2b, 0x87, 0xb2, 0xa9, 0x6b, 0xdb, + 0x43, 0x22, 0xc6, 0x4b, 0x44, 0x94, 0x25, 0xe0, 0x67, 0x8c, 0x9f, 0xbe, + 0x9c, 0x11, 0x5d, 0x7d, 0xae, 0x87, 0xa3, 0xcf, 0x0a, 0x4f, 0x14, 0xf7, + 0x3b, 0x58, 0x64, 0x36, 0xd6, 0x02, 0x9d, 0xa2, 0x7c, 0x3e, 0x4b, 0xc8, + 0xc4, 0xf7, 0x57, 0x0c, 0x57, 0x71, 0x1b, 0x54, 0x63, 0x38, 0xf7, 0xaf, + 0x40, 0xb4, 0xd3, 0x56, 0xce, 0xda, 0x3b, 0x78, 0x63, 0x0b, 0x12, 0x0c, + 0x28, 0xae, 0x2c, 0x4e, 0x3a, 0x94, 0x64, 0xa3, 0x19, 0x6a, 0x74, 0x52, + 0xc3, 0xd4, 0x6a, 0xfd, 0x0e, 0x24, 0x69, 0xd6, 0x91, 0x8d, 0xb1, 0xea, + 0x3b, 0x3d, 0x8b, 0x91, 0xfc, 0xe9, 0xbe, 0x54, 0x91, 0x1c, 0xc5, 0xa9, + 0x2b, 0x73, 0x8e, 0x58, 0x35, 0x76, 0xde, 0x5d, 0xb4, 0xf2, 0x34, 0x59, + 0x47, 0x75, 0xce, 0x57, 0x19, 0xac, 0x5b, 0xad, 0x2a, 0xca, 0x79, 0x20, + 0xff, 0x00, 0x47, 0x88, 0x16, 0x97, 0x04, 0x05, 0xc1, 0x3d, 0x6b, 0x25, + 0x8b, 0x5d, 0x47, 0xec, 0x99, 0x91, 0xff, 0x00, 0x13, 0x28, 0x87, 0x29, + 0x14, 0x80, 0xfa, 0xae, 0x29, 0xa6, 0xf9, 0x90, 0xfe, 0xfe, 0xc0, 0xe3, + 0xb9, 0x46, 0xae, 0x8c, 0x78, 0x76, 0x08, 0xff, 0x00, 0xd4, 0xbc, 0xd1, + 0x1f, 0xf6, 0x64, 0x3f, 0xc8, 0xd4, 0x72, 0x68, 0xf7, 0x4a, 0x3e, 0x5b, + 0x90, 0xfe, 0xd2, 0xc6, 0x0f, 0xf2, 0xab, 0x58, 0x98, 0xff, 0x00, 0x4c, + 0x1d, 0x26, 0x73, 0xdf, 0x6d, 0xd3, 0x65, 0xe1, 0xf7, 0x46, 0x7f, 0xdb, + 0x5a, 0x77, 0xd9, 0x2d, 0x25, 0x01, 0xa3, 0x64, 0x65, 0x3d, 0xd0, 0xe2, + 0xac, 0x5e, 0xe9, 0x73, 0xa8, 0x2d, 0x25, 0x8c, 0x32, 0x8f, 0x58, 0x9f, + 0x69, 0xfc, 0x8d, 0x67, 0xe9, 0x91, 0xfe, 0xfa, 0x44, 0x58, 0xde, 0x31, + 0x9f, 0xb8, 0xc7, 0x38, 0xaa, 0xfa, 0xcc, 0x92, 0xbc, 0x5d, 0xc4, 0xa9, + 0x27, 0xbe, 0x83, 0xe5, 0xd3, 0xc4, 0x78, 0x31, 0x4d, 0x32, 0xfd, 0x1b, + 0x35, 0x5a, 0x45, 0xd4, 0x22, 0x19, 0x86, 0xe4, 0x49, 0xfe, 0xcb, 0xaf, + 0x35, 0xa7, 0x34, 0xaa, 0x8d, 0xb1, 0x8e, 0x3d, 0xf1, 0xc5, 0x35, 0x1d, + 0x25, 0x04, 0x2b, 0x2b, 0xe3, 0xae, 0x0e, 0x6b, 0xd0, 0xe7, 0x9a, 0xd5, + 0x2d, 0x0c, 0xe1, 0x4e, 0x9c, 0xd6, 0xae, 0xcc, 0xe6, 0xee, 0xbc, 0x43, + 0xa8, 0xd9, 0xfc, 0x92, 0xc2, 0x80, 0x9e, 0x86, 0xa9, 0x59, 0x6a, 0x3a, + 0x8d, 0xcd, 0xf2, 0x8f, 0xb4, 0x15, 0xde, 0x79, 0xdc, 0x78, 0xae, 0xb6, + 0x7b, 0x28, 0x2e, 0x10, 0xa4, 0x88, 0xac, 0x3d, 0x08, 0xac, 0xab, 0x8f, + 0x0d, 0xc0, 0xc3, 0xf7, 0x25, 0xa3, 0x3d, 0xb0, 0x72, 0x2a, 0xa3, 0x59, + 0x3d, 0x1e, 0x84, 0xcf, 0x0d, 0x35, 0xb6, 0xa6, 0xcc, 0x9b, 0x2c, 0xed, + 0x0b, 0xf9, 0x6d, 0x29, 0xc7, 0xcc, 0x57, 0x92, 0x6b, 0x96, 0x9e, 0xce, + 0x7b, 0xc1, 0x2c, 0xea, 0xdf, 0x65, 0x84, 0xf2, 0x23, 0x91, 0xb0, 0x5f, + 0xeb, 0x53, 0xa0, 0xd5, 0xf4, 0xb6, 0x05, 0x18, 0xcd, 0x12, 0xf6, 0xeb, + 0xfa, 0x75, 0x15, 0xad, 0xa6, 0xbc, 0x5e, 0x28, 0xb9, 0x4b, 0x49, 0x2c, + 0x5d, 0xa7, 0x1c, 0x80, 0xbd, 0x3e, 0xa4, 0xf6, 0xad, 0x96, 0xbb, 0x1c, + 0xed, 0x72, 0xee, 0x72, 0x16, 0x56, 0xb7, 0x37, 0x53, 0x79, 0x2b, 0x85, + 0x52, 0x70, 0x5f, 0xb0, 0xf7, 0xaf, 0x69, 0xf0, 0xbf, 0x81, 0x74, 0xbd, + 0x3e, 0xde, 0x2b, 0xa7, 0x7f, 0xb6, 0x4e, 0xc0, 0x10, 0xec, 0x06, 0xd1, + 0xf4, 0x15, 0x77, 0x44, 0xf0, 0x7d, 0xb6, 0x9d, 0x34, 0x77, 0x12, 0x1f, + 0x9d, 0x47, 0x11, 0x00, 0x36, 0x8f, 0xaf, 0xad, 0x75, 0x00, 0x00, 0x38, + 0xaf, 0x42, 0x85, 0x0b, 0x6b, 0x35, 0xa9, 0xcd, 0x39, 0xdf, 0x44, 0x31, + 0x53, 0x68, 0x00, 0x1c, 0x01, 0xd8, 0x0a, 0x8d, 0xac, 0xe1, 0x69, 0x0c, + 0x85, 0x4e, 0xf3, 0xfc, 0x41, 0x88, 0x35, 0x3d, 0x15, 0xd7, 0x63, 0x31, + 0x82, 0x3d, 0xbb, 0x40, 0x27, 0x03, 0xd4, 0xe6, 0x9f, 0x8a, 0x29, 0x33, + 0x40, 0x0b, 0x45, 0x26, 0x69, 0x33, 0x45, 0x80, 0x5a, 0x33, 0x4d, 0xcd, + 0x19, 0xa7, 0x60, 0x1d, 0x9a, 0x4c, 0xd3, 0x73, 0x45, 0x16, 0x01, 0xd9, + 0xa4, 0xcd, 0x25, 0x14, 0xec, 0x31, 0x73, 0x46, 0x69, 0x28, 0xa2, 0xc0, + 0x3b, 0x34, 0x66, 0x9b, 0x45, 0x16, 0x01, 0xd9, 0xa3, 0x34, 0xda, 0x33, + 0x45, 0x80, 0x76, 0x68, 0xcd, 0x37, 0x34, 0x66, 0x95, 0x80, 0x76, 0x68, + 0xcd, 0x37, 0x34, 0x66, 0x8b, 0x00, 0xec, 0xd2, 0x66, 0x92, 0x8a, 0x2c, + 0x21, 0x69, 0x15, 0xd5, 0xf3, 0xb4, 0xe7, 0x07, 0x07, 0xeb, 0x51, 0xcf, + 0x71, 0x15, 0xb4, 0x2f, 0x34, 0xce, 0x12, 0x35, 0x19, 0x2c, 0x4f, 0x4a, + 0xe7, 0x3c, 0x3b, 0xe2, 0x5d, 0x36, 0xee, 0x49, 0xad, 0x16, 0x7d, 0xb3, + 0x19, 0x99, 0x97, 0x7f, 0x1b, 0xc1, 0x3d, 0xaa, 0x65, 0x35, 0x16, 0x93, + 0x63, 0x51, 0xba, 0xb9, 0xd4, 0x52, 0x51, 0x45, 0x50, 0x82, 0x8a, 0x29, + 0x29, 0x88, 0x28, 0xa2, 0x92, 0x80, 0x0a, 0x28, 0xa4, 0xa0, 0x02, 0x8a, + 0x28, 0xa6, 0x21, 0x28, 0xa5, 0xa4, 0xa0, 0x04, 0xa4, 0xa7, 0x52, 0x1a, + 0x00, 0x4a, 0x28, 0xa2, 0x98, 0x08, 0x69, 0x29, 0x69, 0x28, 0x01, 0x29, + 0x0f, 0x43, 0x4b, 0x48, 0x7a, 0x1a, 0x60, 0x03, 0xa0, 0xa2, 0x9c, 0x07, + 0x02, 0x8c, 0x51, 0x71, 0x0d, 0xa4, 0xa7, 0x62, 0x8c, 0x53, 0x01, 0xb4, + 0x52, 0xe2, 0x8a, 0x00, 0x4a, 0x28, 0xa2, 0x80, 0x0a, 0x5a, 0x29, 0x69, + 0x00, 0x51, 0x4b, 0x8a, 0x5a, 0x00, 0x4c, 0x52, 0xe2, 0x8a, 0x5a, 0x43, + 0x12, 0x96, 0x8a, 0x5c, 0x50, 0x02, 0x62, 0x97, 0x14, 0xb8, 0xa3, 0x14, + 0x01, 0x8f, 0xe2, 0x29, 0x02, 0x69, 0x64, 0x7f, 0x79, 0xc0, 0xae, 0x03, + 0x5a, 0x31, 0x98, 0x63, 0x6d, 0xa0, 0x00, 0x79, 0x02, 0xbb, 0x4f, 0x16, + 0x4c, 0x16, 0x18, 0x22, 0x1d, 0x49, 0x26, 0xb8, 0x5d, 0x57, 0xe6, 0xb2, + 0x3d, 0x30, 0x2b, 0xc3, 0xc6, 0xbe, 0x6a, 0xfe, 0x96, 0x3b, 0x68, 0x69, + 0x03, 0xd1, 0x3c, 0x2d, 0x28, 0x97, 0xc3, 0x96, 0x64, 0x1c, 0xe1, 0x48, + 0xfd, 0x4d, 0x6c, 0x62, 0xb9, 0x9f, 0x00, 0xcb, 0xe6, 0xf8, 0x69, 0x41, + 0x39, 0x29, 0x23, 0x0a, 0xea, 0x31, 0x5e, 0xbd, 0x27, 0x78, 0x23, 0x92, + 0x5f, 0x13, 0x13, 0x14, 0x62, 0x96, 0x8a, 0xd0, 0x91, 0x28, 0xa5, 0xa5, + 0xc5, 0x00, 0x37, 0x14, 0xb8, 0xa5, 0xc5, 0x18, 0xa0, 0x04, 0xc5, 0x18, + 0xa7, 0x62, 0x8c, 0x50, 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0x00, + 0xdc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x26, 0x29, 0x31, 0x4e, 0xc5, + 0x18, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb4, 0x62, + 0x9d, 0x8a, 0x31, 0x40, 0x0d, 0xc5, 0x26, 0x29, 0xd8, 0xa3, 0x14, 0x00, + 0xdc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x37, 0x14, 0x98, 0xa7, 0xe2, + 0x93, 0x14, 0x00, 0xdc, 0x56, 0x6e, 0xb1, 0xa4, 0xc1, 0xa9, 0xdb, 0x62, + 0x48, 0xd5, 0xa5, 0x8f, 0x98, 0xd8, 0x8e, 0x86, 0xb5, 0x31, 0x41, 0x14, + 0xa5, 0x15, 0x25, 0x66, 0x34, 0xec, 0xee, 0x8f, 0x2a, 0xb8, 0xb6, 0xf2, + 0x24, 0x65, 0x23, 0x6e, 0x3a, 0x93, 0xda, 0xaa, 0x79, 0xb1, 0xec, 0xcc, + 0x7f, 0xbc, 0x3f, 0x90, 0xfc, 0xeb, 0xae, 0xf1, 0x66, 0x92, 0xa5, 0xc5, + 0xd2, 0x2e, 0x03, 0x70, 0xde, 0x99, 0xfa, 0x57, 0x23, 0xb3, 0x07, 0x27, + 0x80, 0x3b, 0x9a, 0xf9, 0xca, 0xd4, 0x55, 0x09, 0xb8, 0xda, 0xe7, 0xb5, + 0x46, 0xb4, 0xea, 0xc3, 0xe2, 0xb2, 0x42, 0x33, 0xcb, 0x22, 0x63, 0x3b, + 0x07, 0xa4, 0x7f, 0xe3, 0x4d, 0xd8, 0x41, 0x04, 0xf3, 0xee, 0x79, 0x3f, + 0xad, 0x2b, 0xcc, 0x8a, 0x42, 0xa8, 0x69, 0x4f, 0x70, 0x9d, 0x05, 0x31, + 0xa5, 0x91, 0x88, 0xda, 0xc2, 0x30, 0x3b, 0x01, 0xb8, 0x9a, 0xcd, 0xf3, + 0xfd, 0xa7, 0x64, 0x34, 0xe9, 0xa7, 0xa2, 0xe6, 0x66, 0xae, 0x8e, 0xa4, + 0x5d, 0xa9, 0xe7, 0x39, 0xcf, 0x35, 0xad, 0x2c, 0xeb, 0x2d, 0x8d, 0xd8, + 0x73, 0xf3, 0x85, 0x3c, 0x37, 0x46, 0xff, 0x00, 0xeb, 0xd6, 0x26, 0x8e, + 0xd1, 0xb3, 0x19, 0x9a, 0x66, 0xf9, 0x73, 0xf3, 0x13, 0xe9, 0x5a, 0x48, + 0xff, 0x00, 0xda, 0x3e, 0x72, 0x42, 0x83, 0xba, 0xb1, 0xec, 0xdf, 0x4f, + 0x7a, 0xe2, 0xc6, 0x29, 0x24, 0xb9, 0x1e, 0xc6, 0x94, 0x25, 0x06, 0xda, + 0x9a, 0xdf, 0xf0, 0x22, 0x17, 0x17, 0x36, 0x36, 0xc8, 0xf1, 0x7d, 0xdc, + 0x02, 0x39, 0xfb, 0xbe, 0xd5, 0x72, 0xd3, 0x59, 0x92, 0xe1, 0x33, 0x2b, + 0x05, 0xa8, 0x19, 0xc3, 0x66, 0x26, 0x00, 0xb0, 0x1b, 0x79, 0xee, 0x2b, + 0x3e, 0x4b, 0x9b, 0x1b, 0x0b, 0xc8, 0x92, 0xea, 0x45, 0x50, 0xfc, 0x2a, + 0x9f, 0xeb, 0x5e, 0x73, 0x82, 0xa8, 0xbd, 0xdd, 0xbf, 0x13, 0x4a, 0xb3, + 0xf6, 0x7a, 0x4b, 0x7e, 0xe4, 0xda, 0xad, 0xeb, 0x24, 0xb1, 0xdc, 0xdb, + 0x5e, 0x16, 0x64, 0x3f, 0x34, 0x61, 0xb2, 0x08, 0xad, 0x08, 0xf5, 0x68, + 0xee, 0xa4, 0xb3, 0x92, 0x2b, 0x79, 0xa4, 0xc3, 0x10, 0xc1, 0x57, 0x3c, + 0xe0, 0xf1, 0x9a, 0x85, 0x75, 0xbd, 0x0a, 0xd9, 0x76, 0xf9, 0xf0, 0xa0, + 0x23, 0xa0, 0x15, 0x81, 0x1e, 0xad, 0x15, 0xa6, 0xbf, 0x69, 0xf6, 0x19, + 0x9e, 0x5b, 0x37, 0x97, 0x76, 0xd5, 0xc8, 0xe7, 0xd2, 0xae, 0x10, 0x55, + 0xe1, 0x67, 0x17, 0xa7, 0x7d, 0x0e, 0x19, 0x4a, 0x54, 0xe5, 0xbf, 0xdc, + 0x76, 0x57, 0xf1, 0x5d, 0x6a, 0x16, 0x6d, 0x12, 0x69, 0xcc, 0x3b, 0xab, + 0x33, 0x01, 0x83, 0x4d, 0xd0, 0xee, 0xaf, 0xa7, 0xb6, 0x36, 0xf0, 0xa4, + 0x3b, 0xa0, 0xf9, 0x4f, 0x98, 0x4e, 0x6b, 0x6a, 0x1b, 0xbb, 0x89, 0x54, + 0x79, 0x5a, 0x74, 0xe7, 0x3f, 0xde, 0xc2, 0xff, 0x00, 0x5a, 0xc7, 0x31, + 0xde, 0xe9, 0x7e, 0x23, 0x59, 0xbe, 0xcc, 0xb1, 0x0b, 0xdf, 0x94, 0x23, + 0x3f, 0xcb, 0x9f, 0xa8, 0xff, 0x00, 0x3c, 0xd2, 0xa4, 0x9c, 0xa0, 0xe9, + 0xce, 0x29, 0x5b, 0xa5, 0xee, 0x44, 0xe7, 0x69, 0x73, 0x26, 0xdf, 0x9e, + 0xc6, 0xa0, 0xb7, 0xd5, 0x99, 0x48, 0x69, 0x2d, 0x97, 0x3e, 0x8a, 0x4d, + 0x72, 0x16, 0xf6, 0xf2, 0x5a, 0x78, 0xae, 0x3b, 0x6f, 0x34, 0x45, 0x31, + 0x66, 0x50, 0xfb, 0x72, 0x0f, 0x19, 0xe9, 0xf8, 0xd7, 0xa0, 0x88, 0x35, + 0x53, 0xda, 0xd1, 0x7f, 0xef, 0xa3, 0x5e, 0x7d, 0xe2, 0x88, 0xef, 0xed, + 0x3c, 0x6d, 0xa6, 0x3b, 0xe5, 0x5e, 0x47, 0x1f, 0x3c, 0x68, 0x48, 0xf4, + 0xe9, 0x46, 0x0d, 0xb7, 0x78, 0x37, 0x1b, 0xf9, 0x0e, 0xa3, 0xea, 0x93, + 0xf9, 0x9d, 0x88, 0xd3, 0xb5, 0x0e, 0xfa, 0x8f, 0xe5, 0x10, 0xae, 0x7f, + 0x51, 0xb5, 0xb8, 0x5f, 0x12, 0xda, 0xc2, 0xf7, 0x1b, 0xe5, 0x60, 0xa5, + 0x64, 0xd8, 0x06, 0xde, 0x4f, 0x6a, 0xeb, 0xd2, 0xc7, 0x50, 0x74, 0x56, + 0xfb, 0x72, 0x0c, 0x8c, 0xff, 0x00, 0xa9, 0xff, 0x00, 0xeb, 0xd7, 0x3f, + 0xa9, 0x69, 0xf7, 0x4b, 0xe2, 0xcb, 0x18, 0xde, 0xe4, 0x34, 0xac, 0xb9, + 0x57, 0xd9, 0x8c, 0x75, 0xed, 0x59, 0x61, 0xa6, 0xdb, 0x92, 0x72, 0x4e, + 0xdd, 0x95, 0x8b, 0xa9, 0x65, 0x66, 0x93, 0x5e, 0xa5, 0xe3, 0xa7, 0x6a, + 0x1f, 0xf4, 0x11, 0xcf, 0xfd, 0xb2, 0x15, 0xce, 0x78, 0xa6, 0xda, 0x78, + 0x62, 0xb5, 0x8e, 0xe6, 0xe8, 0x49, 0xe6, 0xcc, 0x36, 0xa8, 0x4c, 0x12, + 0x40, 0x35, 0xda, 0x1b, 0x1b, 0xf5, 0x3f, 0xf1, 0xfe, 0x87, 0xfe, 0xd8, + 0xff, 0x00, 0xf5, 0xeb, 0x86, 0xf1, 0x7b, 0xdd, 0x27, 0x8a, 0xb4, 0x4b, + 0x39, 0x65, 0x59, 0x18, 0x48, 0x1c, 0x15, 0x8c, 0xe0, 0x7d, 0x40, 0xa5, + 0x86, 0x6e, 0x75, 0x1f, 0xbc, 0x9e, 0xfb, 0x23, 0x69, 0xfb, 0xb1, 0x56, + 0x4d, 0x1b, 0xd6, 0x7a, 0x5e, 0xa5, 0x69, 0x6b, 0x1c, 0x51, 0xbd, 0xbe, + 0x15, 0x7a, 0x30, 0x35, 0x3d, 0xcc, 0x9a, 0x85, 0x85, 0x9b, 0xcf, 0x34, + 0x50, 0x32, 0x8e, 0x32, 0x8c, 0x7a, 0x9f, 0xad, 0x6a, 0xc6, 0xb7, 0xe4, + 0x02, 0xdf, 0x65, 0x60, 0x47, 0xa3, 0x29, 0xaa, 0x3a, 0x88, 0xba, 0xbe, + 0xd4, 0x6d, 0xf4, 0xc3, 0x6e, 0x84, 0x47, 0x89, 0xa4, 0x08, 0xfc, 0x11, + 0xee, 0x4f, 0x4f, 0xfe, 0xbd, 0x63, 0x7e, 0x79, 0xf3, 0x34, 0x99, 0xd8, + 0xa2, 0xa3, 0x04, 0xb5, 0x45, 0x5d, 0x0e, 0xc2, 0x7b, 0x68, 0x9e, 0xe2, + 0x6b, 0x37, 0x76, 0x9f, 0xe6, 0x0e, 0x18, 0x67, 0x1f, 0x43, 0x57, 0x2e, + 0xcc, 0x2a, 0xd0, 0x34, 0xb0, 0xcd, 0x1a, 0x89, 0x32, 0x59, 0xa3, 0xe0, + 0x0c, 0x1e, 0xe2, 0xb7, 0x43, 0x67, 0x19, 0x82, 0x45, 0xc0, 0xc0, 0x03, + 0x04, 0x0f, 0xc8, 0xd7, 0x39, 0xe2, 0xad, 0x5e, 0x0b, 0x79, 0x74, 0xed, + 0x3f, 0xcf, 0x30, 0xf9, 0xf7, 0x2a, 0x26, 0x76, 0xe3, 0x6a, 0x73, 0xd7, + 0xeb, 0x54, 0xe9, 0xa9, 0xbd, 0x77, 0x36, 0x52, 0xf6, 0x71, 0xd1, 0x95, + 0xd2, 0x37, 0xd5, 0x35, 0x86, 0x65, 0x9b, 0xc8, 0xb4, 0x8b, 0xa0, 0xce, + 0xd2, 0xf5, 0x77, 0x51, 0x58, 0xed, 0x2d, 0xcc, 0x84, 0x0f, 0x6e, 0x6b, + 0x72, 0x13, 0x62, 0xf1, 0xac, 0x36, 0xf2, 0x41, 0x22, 0x28, 0xc0, 0x0a, + 0xc1, 0xab, 0x0f, 0xc4, 0x76, 0xd0, 0x6f, 0x82, 0x18, 0x99, 0x16, 0xe5, + 0xb3, 0x88, 0xff, 0x00, 0xd9, 0xa5, 0x38, 0x3e, 0x5b, 0xa6, 0x54, 0x1c, + 0x56, 0xac, 0xe3, 0xae, 0x6f, 0x67, 0xba, 0x76, 0x55, 0x50, 0x00, 0xef, + 0xd8, 0x0a, 0xca, 0xb7, 0x8c, 0x2a, 0x4a, 0xee, 0x70, 0x44, 0x87, 0x8f, + 0x5a, 0xdd, 0xb8, 0x8a, 0x2b, 0x60, 0x14, 0x8c, 0x77, 0x1f, 0xed, 0x7b, + 0xd6, 0x5c, 0x8b, 0xf6, 0x78, 0xe4, 0x95, 0xd1, 0x9e, 0x36, 0x6d, 0xdc, + 0x0e, 0x6b, 0xa2, 0x94, 0x9f, 0xc3, 0x1d, 0xcc, 0x2b, 0x46, 0x3f, 0x13, + 0xd2, 0x23, 0x2e, 0x30, 0xd1, 0x82, 0x3b, 0x8e, 0xd5, 0x40, 0x45, 0xf3, + 0x16, 0x18, 0x07, 0xd4, 0x70, 0x7f, 0x4a, 0xb3, 0x70, 0xe9, 0x3a, 0x07, + 0x86, 0x6f, 0x94, 0x0e, 0x36, 0x63, 0x8a, 0xa2, 0x97, 0x32, 0x96, 0x0c, + 0x0a, 0x49, 0x19, 0xec, 0x46, 0xd3, 0x5e, 0xf5, 0x3b, 0xb8, 0x2d, 0x75, + 0x3c, 0xf8, 0xca, 0x3a, 0xde, 0x37, 0x45, 0x84, 0x92, 0x68, 0xb3, 0x96, + 0x2e, 0x0f, 0x67, 0xed, 0xf8, 0x8a, 0x96, 0x3b, 0xb5, 0x20, 0xf9, 0x8a, + 0x63, 0xc7, 0x72, 0x72, 0x0f, 0xe3, 0x50, 0x0b, 0x98, 0x8b, 0x84, 0x60, + 0xd1, 0x93, 0xd3, 0x70, 0xe0, 0xfe, 0x34, 0xf6, 0x41, 0x8c, 0x8f, 0xcc, + 0x55, 0x7b, 0xdf, 0x69, 0x17, 0x14, 0xbf, 0xe5, 0xdc, 0xac, 0x59, 0x38, + 0x98, 0x28, 0x8f, 0x0d, 0xbb, 0x80, 0x45, 0x7a, 0x1f, 0x87, 0x34, 0x58, + 0x34, 0xbb, 0x41, 0x2f, 0x94, 0xa2, 0xe6, 0x55, 0x1b, 0xdb, 0x1c, 0xe3, + 0xb0, 0xae, 0x4f, 0xc1, 0xfa, 0x60, 0xba, 0xbe, 0xf3, 0x9d, 0x07, 0x93, + 0x17, 0x38, 0xec, 0x4f, 0x6a, 0xf4, 0x50, 0x6b, 0xd3, 0xc0, 0x61, 0xd2, + 0x4e, 0xa7, 0x73, 0xcf, 0xc5, 0xd6, 0x94, 0xa5, 0xca, 0xfa, 0x0f, 0xcd, + 0x2e, 0x69, 0x99, 0xa3, 0x35, 0xe9, 0xd8, 0xe3, 0x1f, 0x9a, 0x4c, 0xd3, + 0x68, 0xcd, 0x2b, 0x0c, 0x76, 0x69, 0x33, 0x49, 0x9a, 0x4a, 0x76, 0x18, + 0xb9, 0xa4, 0xcd, 0x14, 0x62, 0x80, 0x0a, 0x29, 0x71, 0x4b, 0x8a, 0x61, + 0x61, 0x28, 0xa7, 0x62, 0x97, 0x14, 0xae, 0x3b, 0x0c, 0xc5, 0x2e, 0x29, + 0xd8, 0xa3, 0x14, 0x5c, 0x2c, 0x37, 0x14, 0x62, 0x9f, 0x8a, 0x31, 0x45, + 0xc7, 0x61, 0x98, 0xa3, 0x14, 0xfd, 0xb4, 0xb8, 0xa5, 0x70, 0xb1, 0x1e, + 0x28, 0xc5, 0x49, 0x8a, 0x36, 0xd1, 0x70, 0xb1, 0x1e, 0x28, 0xc5, 0x3f, + 0x6d, 0x1b, 0x69, 0xdc, 0x2c, 0x47, 0x8a, 0x31, 0x4f, 0xdb, 0x46, 0x28, + 0xb8, 0xac, 0x33, 0x14, 0x94, 0xfc, 0x51, 0x8a, 0x02, 0xc7, 0x0d, 0xf1, + 0x16, 0xe0, 0xc7, 0x65, 0x67, 0x08, 0x62, 0x03, 0xbb, 0x12, 0x01, 0xeb, + 0x81, 0x5e, 0x65, 0x67, 0x3f, 0x91, 0x7d, 0x1b, 0xee, 0x23, 0x6c, 0x80, + 0xe7, 0xf1, 0xae, 0xdb, 0xe2, 0x85, 0xc1, 0x5d, 0x52, 0xc2, 0x10, 0x78, + 0x58, 0xcb, 0x1f, 0xce, 0xbc, 0xf7, 0x78, 0x2f, 0x5e, 0x3e, 0x2d, 0xbf, + 0x6d, 0x73, 0xa6, 0x9f, 0xc0, 0x7d, 0x1b, 0x13, 0x89, 0x62, 0x49, 0x17, + 0xa3, 0x28, 0x22, 0x9f, 0x59, 0xbe, 0x1f, 0x9c, 0x5d, 0x78, 0x7e, 0xc2, + 0x61, 0xc8, 0x68, 0x54, 0x7e, 0x43, 0x1f, 0xd2, 0xb4, 0xab, 0xd7, 0x8b, + 0xba, 0x4c, 0xe5, 0x68, 0x28, 0xa2, 0x8a, 0x62, 0x13, 0x14, 0x94, 0xea, + 0x28, 0x10, 0xda, 0x29, 0x69, 0x29, 0x80, 0x94, 0x52, 0xd2, 0x50, 0x01, + 0x49, 0x4b, 0x45, 0x02, 0x12, 0x92, 0x96, 0x8c, 0x53, 0x01, 0x29, 0x29, + 0xd8, 0xa3, 0x14, 0x00, 0xca, 0x29, 0xc4, 0x52, 0x62, 0x80, 0x1b, 0x48, + 0x7a, 0x1a, 0x7e, 0xda, 0x42, 0xbc, 0x1a, 0x60, 0x78, 0x7c, 0x7e, 0x3f, + 0xf1, 0x4e, 0xe2, 0x16, 0xee, 0x32, 0x15, 0x32, 0x73, 0x18, 0xa9, 0xa3, + 0xf8, 0x8b, 0xe2, 0x81, 0xb4, 0x99, 0x6d, 0xd8, 0x60, 0x93, 0x98, 0xc5, + 0x73, 0x4f, 0xa3, 0xce, 0x8c, 0x59, 0x67, 0x8d, 0x81, 0x5c, 0x70, 0xde, + 0xd5, 0x11, 0xd3, 0x6e, 0x53, 0x69, 0xdc, 0x08, 0x0a, 0x73, 0x83, 0xf5, + 0xaf, 0x15, 0x62, 0xbf, 0xbc, 0x7a, 0x1f, 0x57, 0xfe, 0xe9, 0xd9, 0x45, + 0xf1, 0x43, 0x5e, 0x5d, 0x9e, 0x65, 0xb5, 0xb3, 0xee, 0x38, 0x3c, 0x7f, + 0x85, 0x5c, 0xb7, 0xf8, 0xb1, 0x7b, 0xf2, 0x7d, 0xa3, 0x4b, 0x8c, 0xee, + 0x38, 0xca, 0x31, 0x15, 0xe7, 0xab, 0x65, 0x74, 0x82, 0x33, 0x83, 0x80, + 0xde, 0xb4, 0xe4, 0x17, 0x81, 0x20, 0x52, 0x18, 0xae, 0xf2, 0x47, 0x15, + 0x6b, 0x13, 0x2e, 0x92, 0x21, 0xe1, 0xd7, 0x54, 0x7a, 0x8d, 0xb7, 0xc5, + 0x9b, 0x09, 0x00, 0xf3, 0xf4, 0xf9, 0xa3, 0xc9, 0xc6, 0x43, 0x06, 0xad, + 0x5b, 0x7f, 0x88, 0xfe, 0x1f, 0xb9, 0xc0, 0x69, 0xa5, 0x88, 0x93, 0x8f, + 0xde, 0x25, 0x78, 0x9a, 0x99, 0x00, 0x8f, 0x2b, 0xff, 0x00, 0x2d, 0x0f, + 0x6a, 0xb9, 0x63, 0x71, 0x68, 0x8b, 0xb6, 0xe6, 0xdc, 0xb9, 0x66, 0x3b, + 0x59, 0x4e, 0x30, 0x6b, 0x47, 0x8b, 0xa9, 0x15, 0x7d, 0xc9, 0x58, 0x78, + 0xb7, 0x6b, 0xd8, 0xf7, 0x6b, 0x5f, 0x12, 0x68, 0xd7, 0x80, 0x18, 0x35, + 0x18, 0x1b, 0x3d, 0x32, 0xf8, 0xfe, 0x75, 0xa8, 0x92, 0x24, 0x83, 0x28, + 0xea, 0xc3, 0xd4, 0x1c, 0xd7, 0xce, 0xd2, 0xb5, 0x91, 0xfb, 0x39, 0xb7, + 0xf3, 0x14, 0xee, 0x3b, 0x83, 0x76, 0x35, 0x3d, 0x95, 0xfd, 0xed, 0xae, + 0xd3, 0x6d, 0x7f, 0x2c, 0x67, 0xe6, 0x3c, 0x39, 0x15, 0x71, 0xc6, 0xdd, + 0x5e, 0x48, 0x87, 0x87, 0x7d, 0x19, 0xf4, 0x28, 0xa7, 0x0a, 0xf1, 0x9b, + 0x2f, 0x1c, 0xf8, 0x86, 0xc7, 0x60, 0x92, 0x55, 0xb8, 0x5d, 0x9b, 0xb1, + 0x22, 0xe4, 0x9f, 0xc6, 0xba, 0x5b, 0x1f, 0x8a, 0x10, 0x92, 0x16, 0xfe, + 0xc5, 0xe3, 0x3c, 0x65, 0xe2, 0x39, 0x1c, 0xfb, 0x1a, 0xde, 0x38, 0xaa, + 0x72, 0x33, 0x74, 0x66, 0xba, 0x1e, 0x85, 0x8a, 0x5c, 0x56, 0x36, 0x9f, + 0xe2, 0x9d, 0x1b, 0x52, 0xc0, 0x86, 0xf6, 0x30, 0xf9, 0xc6, 0xc7, 0x3b, + 0x4f, 0xeb, 0x5b, 0x4b, 0x86, 0x19, 0x04, 0x10, 0x7b, 0x8a, 0xdd, 0x49, + 0x4b, 0x66, 0x67, 0x60, 0xc5, 0x2e, 0x29, 0x71, 0x46, 0x28, 0x01, 0x31, + 0x4b, 0x8a, 0x5a, 0x31, 0x40, 0xc4, 0xc5, 0x56, 0xd4, 0x2e, 0xbe, 0xc5, + 0x68, 0xd7, 0x18, 0xca, 0xa1, 0x1b, 0x87, 0xb6, 0x71, 0x56, 0x8e, 0x15, + 0x49, 0x3d, 0x00, 0xc9, 0xac, 0x5b, 0xcd, 0x41, 0x6e, 0xe2, 0x7b, 0x61, + 0x0e, 0x51, 0xf8, 0x25, 0x8f, 0x5a, 0xc2, 0xb5, 0x68, 0xd3, 0x5a, 0xee, + 0x5c, 0x20, 0xe4, 0xf4, 0x32, 0x3c, 0x48, 0xdf, 0x6c, 0xbd, 0x8c, 0x43, + 0x97, 0x02, 0x31, 0x8d, 0xbe, 0xfc, 0xd7, 0x33, 0xa8, 0xd8, 0xdd, 0x4b, + 0x1f, 0xd9, 0xe2, 0x88, 0x19, 0x36, 0xe7, 0x6e, 0xe1, 0xfa, 0xd7, 0x59, + 0x28, 0x55, 0x50, 0xaa, 0x70, 0xa3, 0x03, 0x03, 0x80, 0x2a, 0x08, 0xa3, + 0x4f, 0xed, 0x19, 0x08, 0x0b, 0xf2, 0xc2, 0x71, 0x8a, 0xf1, 0xe7, 0x2e, + 0x79, 0xb9, 0x33, 0xb2, 0x31, 0xe5, 0x56, 0x20, 0xf8, 0x6f, 0x24, 0xb1, + 0xe9, 0x77, 0x91, 0x5d, 0x28, 0x8c, 0xa4, 0x99, 0x19, 0xf4, 0xee, 0x6b, + 0xb7, 0x8d, 0x96, 0x48, 0xd5, 0xd7, 0x95, 0x61, 0x91, 0xf4, 0xaf, 0x34, + 0x96, 0x53, 0x0c, 0x31, 0x88, 0xc9, 0x04, 0xb3, 0x02, 0x07, 0x7c, 0x9a, + 0xef, 0xbc, 0x3f, 0xa8, 0xa6, 0xad, 0x0a, 0x40, 0xaa, 0x16, 0xe1, 0x14, + 0x02, 0x9e, 0xbe, 0xe2, 0xbd, 0x1c, 0x35, 0x75, 0xcb, 0xcb, 0x23, 0x9a, + 0xa5, 0x37, 0x7b, 0xa2, 0xfe, 0x28, 0xc5, 0x5c, 0xb8, 0xb1, 0x96, 0xdb, + 0x1e, 0x62, 0xe3, 0x35, 0x58, 0x8a, 0xec, 0x52, 0x4d, 0x5d, 0x19, 0x38, + 0xb5, 0xa3, 0x1b, 0x8a, 0x31, 0x4e, 0xa3, 0x14, 0xc4, 0x26, 0x28, 0xa5, + 0xc5, 0x2e, 0x28, 0x01, 0x31, 0x45, 0x2e, 0x28, 0xc5, 0x00, 0x25, 0x14, + 0xec, 0x51, 0x8a, 0x00, 0x6e, 0x28, 0xc5, 0x3b, 0x14, 0x62, 0x80, 0x1b, + 0x45, 0x3b, 0x14, 0x62, 0x80, 0xb0, 0xdc, 0x51, 0x8a, 0x76, 0x28, 0xc5, + 0x00, 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x31, 0x40, 0x0c, 0xc5, 0x18, 0xa7, + 0xe2, 0x93, 0x14, 0x00, 0xdc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x33, + 0x14, 0x62, 0x9d, 0x8a, 0x31, 0x40, 0x0d, 0xc5, 0x18, 0xa7, 0x62, 0x8c, + 0x53, 0x11, 0x4e, 0xfa, 0xd5, 0x2e, 0xed, 0x64, 0x86, 0x4e, 0x8c, 0x3a, + 0xfa, 0x57, 0x94, 0x5f, 0x5a, 0xbc, 0x77, 0x0c, 0x92, 0x9f, 0x33, 0x69, + 0x20, 0x67, 0xa7, 0xe5, 0x5e, 0xc2, 0xc3, 0x83, 0x8e, 0xb5, 0xe5, 0x3e, + 0x3a, 0x9a, 0x2d, 0x33, 0x53, 0x49, 0x50, 0x14, 0x49, 0xb8, 0x96, 0x23, + 0xd5, 0x5b, 0xfb, 0xc3, 0xd8, 0xd7, 0x06, 0x61, 0x4d, 0xca, 0x9f, 0x34, + 0x77, 0x47, 0x56, 0x12, 0x51, 0x53, 0xb4, 0xb6, 0x30, 0x6f, 0x2f, 0xe1, + 0xb2, 0x92, 0x28, 0xe5, 0xc9, 0xde, 0x78, 0x03, 0xa0, 0xa7, 0xdc, 0xdd, + 0xa4, 0x36, 0x92, 0x48, 0x3b, 0x2e, 0x6b, 0x9c, 0xd5, 0xa5, 0x37, 0x13, + 0x24, 0x9b, 0x4b, 0x47, 0xd0, 0x1a, 0x64, 0x97, 0x12, 0xcf, 0x64, 0x2d, + 0xf7, 0xfc, 0xac, 0x70, 0x3f, 0xfa, 0xf5, 0xe1, 0x3a, 0x37, 0xb3, 0x91, + 0xeb, 0xaa, 0xbb, 0xa8, 0x9a, 0x3a, 0x46, 0xa1, 0x2c, 0x36, 0x2d, 0x71, + 0x38, 0x06, 0xde, 0x32, 0x76, 0x82, 0x7e, 0xf3, 0x1c, 0xd7, 0x5b, 0xa5, + 0x5e, 0xf9, 0x16, 0x71, 0xb4, 0xcc, 0x03, 0x37, 0xce, 0xd9, 0x38, 0xe4, + 0xd7, 0x9c, 0x4b, 0x0d, 0xc2, 0x24, 0x6a, 0x58, 0x98, 0xb7, 0x0e, 0x33, + 0xc6, 0x6b, 0x5e, 0x79, 0xe5, 0x96, 0x58, 0xd6, 0x5f, 0x92, 0x24, 0x00, + 0xed, 0x07, 0xd3, 0xde, 0xb2, 0xc4, 0xd2, 0x72, 0x6a, 0x49, 0x91, 0x49, + 0xa8, 0xa6, 0xa4, 0x8f, 0x45, 0x92, 0x3f, 0xb6, 0x9f, 0x31, 0x30, 0xa4, + 0x72, 0x48, 0xef, 0x5e, 0x7f, 0xe3, 0x00, 0x4e, 0xaf, 0x1e, 0x7b, 0x02, + 0x05, 0x77, 0x5a, 0x54, 0xe9, 0x25, 0x8a, 0x48, 0xa4, 0xb1, 0x93, 0xee, + 0xa8, 0xe4, 0xe3, 0xd6, 0xb8, 0xcf, 0x19, 0xa6, 0x35, 0x78, 0xc7, 0xb1, + 0xac, 0x68, 0x46, 0xd2, 0x52, 0xb5, 0x9b, 0x33, 0xad, 0x27, 0xf0, 0xde, + 0xe9, 0x1c, 0xb0, 0x27, 0xc8, 0x6c, 0x92, 0x7e, 0x6a, 0xec, 0x74, 0x68, + 0xb4, 0xa9, 0x34, 0x92, 0xf7, 0x52, 0x4b, 0x1d, 0xdc, 0x6f, 0xba, 0x12, + 0xbc, 0x8a, 0xe3, 0xba, 0x5b, 0x9f, 0xf7, 0xeb, 0xa6, 0xd2, 0x7f, 0xe3, + 0xde, 0xba, 0x6b, 0x6c, 0x72, 0xcb, 0x6d, 0x0f, 0x4c, 0xd3, 0xfc, 0x79, + 0x0c, 0x56, 0x31, 0x24, 0x96, 0xcf, 0x2c, 0xe8, 0xb8, 0x62, 0x08, 0x19, + 0xaa, 0x9a, 0xbf, 0x8c, 0x0e, 0xad, 0x0c, 0x71, 0xc7, 0x60, 0xd1, 0x34, + 0x6e, 0x1d, 0x1c, 0x9c, 0x90, 0x6b, 0x98, 0x8f, 0x02, 0x4c, 0xfb, 0x0a, + 0xb7, 0x1b, 0x2f, 0xa7, 0x3e, 0x95, 0xc2, 0xa8, 0xd3, 0x8c, 0xdc, 0xd4, + 0x75, 0x64, 0x5e, 0x4d, 0x72, 0xb7, 0xa1, 0xd2, 0x3f, 0x8f, 0xf5, 0x31, + 0x18, 0xff, 0x00, 0x44, 0xb7, 0x07, 0xa7, 0x73, 0x59, 0x3a, 0xaf, 0x89, + 0xf5, 0x1b, 0xf9, 0xed, 0xae, 0x19, 0x21, 0x12, 0xdb, 0xb6, 0xe8, 0xc8, + 0x1d, 0x0f, 0xf9, 0x15, 0x98, 0xa9, 0x35, 0xf4, 0xe6, 0x28, 0x82, 0x82, + 0x9d, 0x72, 0x69, 0x93, 0x5a, 0xbc, 0x2d, 0x87, 0x99, 0x33, 0xdf, 0x15, + 0x9d, 0xa3, 0x16, 0xdc, 0x52, 0x46, 0xd1, 0xa6, 0xda, 0x57, 0x36, 0xc7, + 0x8e, 0xbc, 0x44, 0x7a, 0xcb, 0x00, 0xff, 0x00, 0xb6, 0x62, 0xa9, 0x4d, + 0xe2, 0x5d, 0x6e, 0xe2, 0xfe, 0x2b, 0xd9, 0x25, 0x88, 0xcf, 0x10, 0xc2, + 0x36, 0xce, 0x83, 0xe9, 0x59, 0xde, 0x56, 0x7f, 0xe5, 0xa8, 0x3f, 0x85, + 0x02, 0x17, 0x2a, 0xcc, 0x1c, 0x6d, 0x1d, 0x4d, 0x42, 0x69, 0x6c, 0x8d, + 0x55, 0x03, 0x70, 0x78, 0xcf, 0xc4, 0x1d, 0x4c, 0xf0, 0x9f, 0xfb, 0x66, + 0x2a, 0xb2, 0xeb, 0xfa, 0x8b, 0x6a, 0x63, 0x50, 0x95, 0x21, 0x92, 0xe0, + 0x0c, 0x02, 0xcb, 0xc0, 0xfa, 0x55, 0x04, 0xb7, 0x2c, 0x32, 0x65, 0xe3, + 0xd8, 0x55, 0x95, 0xd3, 0xe1, 0x68, 0x44, 0x8b, 0x33, 0xe4, 0x9c, 0x01, + 0x8c, 0xf3, 0x51, 0x78, 0xad, 0x91, 0xaa, 0xa4, 0xce, 0x82, 0x1f, 0x1a, + 0xea, 0x7c, 0x6e, 0xb4, 0xb6, 0x6f, 0xcc, 0x52, 0x5a, 0xf8, 0xba, 0x4b, + 0x0b, 0xbb, 0xab, 0xeb, 0x9b, 0x23, 0x34, 0x97, 0x18, 0x1f, 0x23, 0x63, + 0x68, 0xf4, 0x1f, 0xa5, 0x60, 0xb4, 0x4f, 0x68, 0xa0, 0x97, 0x57, 0x19, + 0xc7, 0x06, 0x8b, 0x99, 0x07, 0x92, 0x2a, 0x14, 0x63, 0xd1, 0x1b, 0x3e, + 0x64, 0xb5, 0x66, 0xcd, 0xdf, 0xc4, 0xb7, 0xc3, 0x08, 0x6c, 0xa4, 0x87, + 0xd0, 0xb1, 0xdc, 0x6b, 0x91, 0xbd, 0xb8, 0xb0, 0xd5, 0x6c, 0xde, 0xf2, + 0xfa, 0xf2, 0xed, 0xb5, 0x6f, 0x37, 0x70, 0x07, 0x94, 0x23, 0xd2, 0x9f, + 0x20, 0x0e, 0xea, 0x38, 0xeb, 0x54, 0x6e, 0xe2, 0xf2, 0x88, 0x18, 0x19, + 0xed, 0x5d, 0x34, 0xd4, 0x56, 0xda, 0x33, 0x09, 0x4a, 0x72, 0x77, 0x93, + 0xb8, 0x82, 0xee, 0x48, 0xda, 0x43, 0x1c, 0x8c, 0xa7, 0x03, 0x90, 0x70, + 0x6b, 0x6b, 0xc3, 0x77, 0x92, 0xcd, 0xad, 0xa9, 0x92, 0x66, 0x7c, 0xc5, + 0xce, 0xe3, 0x93, 0x5c, 0xeb, 0x03, 0xe6, 0xcb, 0x95, 0x24, 0xed, 0x1c, + 0xe6, 0xb7, 0x7c, 0x25, 0x83, 0xae, 0xc6, 0x48, 0xff, 0x00, 0x96, 0x67, + 0xa8, 0xa7, 0x52, 0x2b, 0x95, 0x9b, 0x41, 0xbe, 0x64, 0x74, 0x5a, 0x9d, + 0xac, 0xb1, 0xc8, 0x67, 0x93, 0x2d, 0x18, 0x3c, 0x02, 0x79, 0x35, 0x99, + 0x3d, 0xda, 0x61, 0x94, 0xb8, 0x04, 0xf1, 0x8c, 0xf4, 0xae, 0x87, 0x5c, + 0x90, 0x7d, 0x9e, 0x48, 0xf7, 0x10, 0xc0, 0x6e, 0xc3, 0x74, 0x3f, 0x4a, + 0xf2, 0x5b, 0xeb, 0xd6, 0x1a, 0x93, 0x4f, 0x0b, 0x96, 0x56, 0x38, 0x20, + 0x9f, 0x4a, 0x8a, 0x34, 0x9c, 0xd7, 0x2c, 0x74, 0x35, 0xa9, 0x34, 0x9a, + 0x72, 0xd4, 0x9d, 0xee, 0x77, 0xda, 0xc8, 0x20, 0x71, 0x14, 0xf0, 0x31, + 0x56, 0x6e, 0xc4, 0x54, 0xda, 0x2d, 0xdf, 0x99, 0xa7, 0x0f, 0x30, 0xe4, + 0xa9, 0x35, 0xcd, 0x4f, 0x34, 0x82, 0xee, 0x7d, 0x84, 0x85, 0x7e, 0xb8, + 0x35, 0x3d, 0xbc, 0xb2, 0x5b, 0x5b, 0xba, 0xc6, 0xf9, 0x53, 0xed, 0x5e, + 0xc2, 0xa5, 0xfb, 0xbb, 0x1c, 0x74, 0xe5, 0x69, 0xdd, 0x1d, 0x34, 0x77, + 0xf0, 0x4b, 0x7b, 0xf6, 0x44, 0x27, 0x76, 0x32, 0x7d, 0x2a, 0xe4, 0x70, + 0x95, 0x9d, 0x7c, 0xbf, 0x95, 0x9b, 0x8f, 0x97, 0xa1, 0xfc, 0x2b, 0x8d, + 0xd3, 0xee, 0x4c, 0x77, 0xe8, 0xe3, 0x25, 0xbb, 0x9e, 0xe6, 0xbb, 0x8f, + 0x0e, 0xb8, 0xd4, 0xb5, 0x94, 0x85, 0x64, 0x0a, 0xab, 0xcb, 0x39, 0x19, + 0xc7, 0xb0, 0x1d, 0xcd, 0x6b, 0x0a, 0x73, 0xe7, 0x51, 0x42, 0xa9, 0x52, + 0x0e, 0x0e, 0x4c, 0xf5, 0x2d, 0x07, 0x4f, 0x5d, 0x3f, 0x4b, 0x89, 0x3f, + 0x8d, 0xc0, 0x77, 0x24, 0x63, 0x93, 0x5a, 0x95, 0x14, 0x0b, 0xb6, 0x25, + 0x07, 0x77, 0xfc, 0x08, 0xf3, 0xf8, 0xd4, 0xc0, 0x57, 0xd1, 0xc6, 0x2a, + 0x31, 0x49, 0x1e, 0x36, 0xaf, 0x50, 0xa5, 0xa3, 0x14, 0xb8, 0xa6, 0x34, + 0x84, 0xa2, 0x97, 0x14, 0xb8, 0xa0, 0xab, 0x0d, 0xc5, 0x2e, 0x29, 0xc1, + 0x69, 0x71, 0x45, 0xc7, 0x61, 0x98, 0xa5, 0xc5, 0x3f, 0x14, 0xbb, 0x69, + 0x5c, 0x2c, 0x33, 0x14, 0xbb, 0x69, 0xfb, 0x69, 0x76, 0xd2, 0xb8, 0xec, + 0x33, 0x6d, 0x28, 0x5a, 0x7e, 0xda, 0x5c, 0x51, 0x70, 0xb0, 0xcd, 0xb4, + 0x6d, 0xa7, 0xe2, 0x97, 0x6d, 0x2b, 0x8c, 0x66, 0xda, 0x36, 0xd4, 0x9b, + 0x69, 0x76, 0xd1, 0x70, 0x23, 0xdb, 0x46, 0xda, 0x93, 0x6d, 0x1b, 0x69, + 0x5c, 0x08, 0xb6, 0xd1, 0xb6, 0xa5, 0xdb, 0x46, 0xda, 0x2e, 0x16, 0x22, + 0xdb, 0x46, 0x2a, 0x5d, 0xb4, 0x9b, 0x69, 0xdc, 0x2c, 0x45, 0xb6, 0x8c, + 0x54, 0xbb, 0x68, 0xd9, 0x9a, 0x2e, 0x16, 0x21, 0xc5, 0x35, 0xb0, 0x08, + 0x04, 0xe3, 0x27, 0x02, 0xae, 0x0b, 0x49, 0x4a, 0x6e, 0x08, 0x71, 0x5c, + 0x87, 0x8c, 0x35, 0xa5, 0xb0, 0x81, 0x6d, 0xad, 0xdf, 0xfd, 0x2c, 0x30, + 0x6c, 0x8f, 0xe0, 0xc5, 0x44, 0xaa, 0xc6, 0x2a, 0xed, 0x8f, 0x95, 0x9e, + 0x7d, 0xf1, 0x2a, 0x47, 0x97, 0xc5, 0x12, 0x22, 0x82, 0xde, 0x4c, 0x2b, + 0x80, 0x06, 0x49, 0xcf, 0x35, 0xc5, 0x88, 0xe5, 0x55, 0x12, 0x18, 0xdf, + 0x61, 0xef, 0x8a, 0xeb, 0x99, 0xde, 0xef, 0x51, 0x79, 0xe7, 0x90, 0xc9, + 0x23, 0x8c, 0xb3, 0x1a, 0x8e, 0x05, 0x0a, 0xac, 0x9e, 0xe6, 0xbc, 0xaa, + 0x92, 0xe6, 0x93, 0x97, 0x73, 0xa2, 0x29, 0x59, 0x23, 0xbf, 0xf0, 0x66, + 0xa5, 0x14, 0x7e, 0x0a, 0xb4, 0x91, 0x8e, 0x4a, 0x39, 0x85, 0x57, 0xfb, + 0xcd, 0x9e, 0x07, 0xeb, 0x5d, 0x6e, 0x2b, 0xc8, 0xac, 0xae, 0x5a, 0xce, + 0x6b, 0x63, 0x82, 0x62, 0x86, 0x61, 0x30, 0x89, 0x4e, 0x01, 0x6f, 0xa5, + 0x7a, 0x46, 0x93, 0xe2, 0x3b, 0x1d, 0x5d, 0x84, 0x51, 0x16, 0x49, 0xf1, + 0x9f, 0x2d, 0xc7, 0x3f, 0x85, 0x7a, 0x18, 0x7a, 0xf1, 0x69, 0x45, 0xee, + 0x73, 0xd4, 0x83, 0x4e, 0xe6, 0xa6, 0x28, 0xc5, 0x3f, 0x14, 0x98, 0xae, + 0xb3, 0x2b, 0x0c, 0xc5, 0x14, 0xec, 0x52, 0x62, 0x81, 0x0d, 0xa2, 0x97, + 0x14, 0x94, 0xc0, 0x4a, 0x28, 0xa2, 0x81, 0x06, 0x29, 0xae, 0xf1, 0xc4, + 0xa5, 0xa4, 0x75, 0x45, 0x1d, 0xd8, 0xe0, 0x57, 0x9e, 0xfc, 0x45, 0xd7, + 0xf5, 0x5d, 0x2e, 0xfe, 0xd6, 0xde, 0xc2, 0xe8, 0xc1, 0x14, 0x91, 0x6e, + 0x7d, 0xbd, 0x73, 0x93, 0xde, 0xbc, 0xce, 0x7d, 0x4a, 0xee, 0xf1, 0x95, + 0xae, 0xef, 0xe7, 0x94, 0x92, 0x73, 0x97, 0x26, 0xb9, 0xea, 0x62, 0x14, + 0x1d, 0xac, 0x69, 0x1a, 0x4e, 0x5a, 0x9e, 0xf5, 0x77, 0xe2, 0x7d, 0x0e, + 0xcb, 0xfd, 0x7e, 0xa7, 0x6e, 0xa7, 0xd0, 0x3e, 0xef, 0xe5, 0x58, 0xb7, + 0x3f, 0x13, 0x3c, 0x3b, 0x01, 0xc2, 0x4b, 0x34, 0xc7, 0x19, 0x1b, 0x23, + 0xe3, 0xf5, 0xaf, 0x1a, 0xf3, 0x2c, 0x55, 0x31, 0xb5, 0xdd, 0xb6, 0x9c, + 0x1a, 0xac, 0xb2, 0x72, 0xbb, 0x22, 0xfe, 0x13, 0x8e, 0x33, 0xeb, 0x5c, + 0xff, 0x00, 0x5b, 0x93, 0xd9, 0x58, 0xd7, 0xd8, 0x25, 0xd4, 0xf5, 0xa9, + 0x7e, 0x2c, 0x5a, 0x16, 0x02, 0xd7, 0x4b, 0xb8, 0x97, 0x23, 0x20, 0x96, + 0x02, 0xa9, 0xc9, 0xf1, 0x3b, 0x56, 0x94, 0xff, 0x00, 0xa3, 0x68, 0x60, + 0x2f, 0x52, 0x5f, 0x71, 0xc0, 0xae, 0x2b, 0x4b, 0xd6, 0xf5, 0x0d, 0x3e, + 0xd4, 0x41, 0x0d, 0x94, 0x6d, 0xbb, 0x27, 0x73, 0x26, 0x48, 0x35, 0x61, + 0x75, 0xef, 0x11, 0x34, 0x8d, 0xc2, 0xa7, 0x9a, 0x36, 0xb8, 0xf2, 0xc0, + 0xe2, 0xb8, 0xe7, 0x8e, 0xc4, 0xf3, 0x35, 0x14, 0xad, 0xea, 0x74, 0xc7, + 0x0b, 0x4a, 0xca, 0xf7, 0xfb, 0x8d, 0x69, 0x3e, 0x2a, 0xeb, 0x92, 0x15, + 0xd9, 0x6f, 0x6d, 0x1e, 0xe6, 0xc7, 0xdd, 0x27, 0x1f, 0x9d, 0x54, 0x3f, + 0x12, 0x7c, 0x50, 0xe3, 0xe5, 0x9a, 0x05, 0x25, 0xb0, 0x00, 0x88, 0x57, + 0x3e, 0x9a, 0x1e, 0xa0, 0xdb, 0x19, 0x94, 0x0c, 0x31, 0x27, 0x2d, 0x4a, + 0xde, 0x1f, 0xbd, 0x48, 0xf2, 0xd2, 0x46, 0x39, 0xc8, 0xf9, 0xaa, 0xde, + 0x36, 0x3f, 0xce, 0x42, 0xc2, 0xbf, 0xe5, 0x37, 0x24, 0xf8, 0x87, 0xe2, + 0x85, 0x2e, 0x0d, 0xd4, 0x60, 0x86, 0xc7, 0xfa, 0xb1, 0x4d, 0x6f, 0x88, + 0x3e, 0x27, 0xcb, 0x8f, 0xb6, 0x27, 0x03, 0xfe, 0x79, 0x8a, 0xc3, 0x3a, + 0x34, 0x8e, 0x5c, 0x9b, 0xa8, 0xb2, 0x5b, 0x3c, 0x9a, 0x53, 0xa3, 0x39, + 0xdc, 0x7e, 0xd5, 0x17, 0x20, 0x0e, 0xb4, 0xfe, 0xb5, 0xfd, 0xf1, 0x7b, + 0x0f, 0x22, 0x9c, 0x56, 0xaf, 0x33, 0xc8, 0x56, 0x40, 0x36, 0x47, 0x93, + 0x93, 0xed, 0x50, 0x85, 0x7f, 0x97, 0xe6, 0x3f, 0x70, 0xf7, 0xfa, 0xd4, + 0x9e, 0x43, 0x19, 0x1b, 0x0e, 0x3e, 0xe7, 0xf4, 0xa9, 0xe3, 0xd3, 0x27, + 0x6b, 0x71, 0x38, 0x2b, 0xb4, 0x21, 0xcf, 0x3f, 0x5a, 0x3e, 0x63, 0xf9, + 0x15, 0x63, 0x79, 0x80, 0x88, 0x09, 0x1b, 0x19, 0xf5, 0xa9, 0xd0, 0xdd, + 0xc7, 0x1c, 0x0c, 0x59, 0xc2, 0x16, 0x3b, 0x72, 0x78, 0xa6, 0x47, 0x69, + 0x33, 0x18, 0xf6, 0x8c, 0x81, 0xef, 0x52, 0x18, 0x6e, 0xd5, 0x62, 0x8d, + 0xc3, 0xe0, 0x37, 0x03, 0xae, 0x29, 0x3b, 0x74, 0xb0, 0xf5, 0x1a, 0x97, + 0x32, 0x91, 0x10, 0x6c, 0x1f, 0xde, 0x1e, 0xdf, 0x4a, 0x74, 0x52, 0x80, + 0xd1, 0x96, 0x8d, 0x48, 0xdc, 0x78, 0xa8, 0xd6, 0x39, 0x63, 0xf2, 0x83, + 0x21, 0x1f, 0x39, 0xea, 0x3e, 0x95, 0x2d, 0xb4, 0x82, 0x27, 0x8c, 0xb2, + 0x07, 0x1b, 0x88, 0xc1, 0xa6, 0xe2, 0xbb, 0x09, 0x30, 0x46, 0x88, 0x98, + 0xfe, 0x5c, 0x7c, 0xc6, 0x9e, 0x89, 0x19, 0x55, 0xc3, 0x63, 0x86, 0xeb, + 0x51, 0xa1, 0x52, 0xc8, 0x76, 0xe0, 0x6f, 0x34, 0xf4, 0x50, 0x76, 0x8c, + 0xe3, 0xe5, 0x6a, 0x1a, 0x1a, 0x64, 0xad, 0x0c, 0x91, 0x2a, 0xe1, 0xc1, + 0xfd, 0xde, 0x78, 0x3e, 0xf5, 0x6a, 0xd2, 0xf4, 0xda, 0xbb, 0x19, 0xad, + 0xd2, 0x64, 0x3b, 0x41, 0x0c, 0x3d, 0xaa, 0xb4, 0xd0, 0x18, 0x50, 0x00, + 0xe1, 0xbf, 0x77, 0x9c, 0xa9, 0xf7, 0xa5, 0x2c, 0xe1, 0x71, 0xd4, 0x65, + 0x7b, 0x7b, 0x54, 0x4a, 0x2a, 0x4a, 0xcc, 0xa8, 0xbe, 0x57, 0x74, 0x6b, + 0x87, 0xd2, 0x6e, 0x44, 0x8d, 0x87, 0xb6, 0x93, 0x2d, 0xb7, 0xb8, 0xce, + 0x39, 0xad, 0x7d, 0x32, 0xe7, 0x59, 0xb0, 0x01, 0xf4, 0xdd, 0x4b, 0xcd, + 0x8c, 0x60, 0x94, 0xdd, 0x91, 0x8f, 0xa1, 0xae, 0x5c, 0x4b, 0x0b, 0x81, + 0xba, 0x3d, 0xa7, 0xe6, 0xe4, 0x77, 0xa9, 0xa2, 0x21, 0x1c, 0x18, 0x66, + 0x2a, 0x72, 0x9d, 0x0e, 0x3b, 0x56, 0x6a, 0x13, 0x87, 0xc1, 0x26, 0xbf, + 0x12, 0xb9, 0xa3, 0x2f, 0x8d, 0x5c, 0xf6, 0x7f, 0x0a, 0x6a, 0xf7, 0x9a, + 0xc6, 0x9e, 0xf2, 0x5e, 0xc2, 0xb1, 0xcd, 0x1b, 0x6d, 0x21, 0x46, 0x33, + 0x5b, 0xf8, 0xae, 0x47, 0xe1, 0xdb, 0x4d, 0x26, 0x89, 0x2b, 0xce, 0xc5, + 0xdc, 0xc9, 0xd4, 0xf7, 0xae, 0xc3, 0x15, 0xed, 0x51, 0x6d, 0xc1, 0x39, + 0x6e, 0x79, 0xf5, 0x12, 0x52, 0x69, 0x6c, 0x26, 0x28, 0xc5, 0x2e, 0x29, + 0x71, 0x5a, 0x10, 0x47, 0x20, 0x06, 0x19, 0x01, 0x19, 0xf9, 0x4f, 0xf2, + 0xae, 0x54, 0xf9, 0x8d, 0x9d, 0xa9, 0x8e, 0xdc, 0xf1, 0xc5, 0x75, 0x8f, + 0xfe, 0xa9, 0xff, 0x00, 0xdd, 0x35, 0xcd, 0xca, 0xdf, 0x3b, 0x7a, 0x66, + 0xbc, 0xcc, 0x77, 0xc4, 0x8e, 0x9a, 0x1b, 0x32, 0x01, 0x06, 0xe1, 0xfb, + 0xc6, 0x27, 0xd8, 0x70, 0x29, 0x22, 0x44, 0x59, 0xae, 0x58, 0x28, 0x07, + 0xcb, 0x03, 0x3f, 0x9d, 0x48, 0x49, 0xc1, 0xc5, 0x40, 0x87, 0x0f, 0x75, + 0xfe, 0xe5, 0x71, 0x23, 0x73, 0x9a, 0xb9, 0x8c, 0x94, 0x56, 0x43, 0xf3, + 0x02, 0x4e, 0x0f, 0x7a, 0xd7, 0xf0, 0xb6, 0xaa, 0xb6, 0x7a, 0xc5, 0xbc, + 0xa5, 0x82, 0x90, 0xc0, 0x36, 0xee, 0xd5, 0x92, 0xcd, 0xf2, 0x2f, 0xe3, + 0x4f, 0xb7, 0x85, 0x1e, 0xe5, 0x5f, 0xbf, 0x7f, 0x7a, 0xd2, 0xc9, 0xee, + 0x45, 0xda, 0xd8, 0xf6, 0x3b, 0xed, 0x4d, 0xef, 0xd5, 0x37, 0x05, 0x0a, + 0x3a, 0x6d, 0xef, 0x59, 0xe4, 0x57, 0x23, 0xa7, 0xea, 0x57, 0x36, 0x18, + 0x55, 0xcc, 0xb0, 0x7f, 0xcf, 0x36, 0x3c, 0x8f, 0xa1, 0xae, 0x96, 0xca, + 0xfe, 0xde, 0xf9, 0x37, 0x42, 0xff, 0x00, 0x30, 0xea, 0x87, 0x82, 0x3f, + 0x0a, 0xf4, 0xe8, 0xce, 0x16, 0xe5, 0x8e, 0x87, 0x2c, 0xd3, 0xea, 0x4e, + 0xc4, 0x28, 0x24, 0x91, 0xc0, 0xc9, 0xa5, 0x52, 0xae, 0xa1, 0x94, 0x82, + 0x0f, 0x71, 0x58, 0x5e, 0x26, 0x6b, 0x88, 0xd2, 0x33, 0x00, 0xc1, 0x75, + 0x65, 0x27, 0xdb, 0xd2, 0xac, 0x78, 0x6c, 0xbb, 0xe9, 0xbf, 0x3b, 0x12, + 0x41, 0xc7, 0xb7, 0x4e, 0xd4, 0xa3, 0x89, 0x4e, 0xb3, 0xa5, 0xd5, 0x1a, + 0x4a, 0x83, 0x54, 0xfd, 0xa1, 0xad, 0x8a, 0x5c, 0x53, 0xb1, 0x46, 0x2b, + 0xa4, 0xc0, 0x6e, 0x29, 0x71, 0x4e, 0xc5, 0x18, 0xa2, 0xe0, 0x37, 0x14, + 0x62, 0x9d, 0x8a, 0x31, 0x4a, 0xe0, 0x37, 0x14, 0x62, 0x9f, 0x8a, 0x31, + 0x45, 0xc0, 0x66, 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x81, 0x8d, 0xc5, 0x18, + 0xa5, 0xc5, 0x18, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xb1, 0x46, 0x28, 0x01, + 0xb8, 0xa4, 0xc5, 0x3e, 0x8c, 0x51, 0x71, 0x0c, 0xc5, 0x18, 0xa7, 0x62, + 0x8c, 0x53, 0xb8, 0x0c, 0xc5, 0x18, 0xa7, 0xe2, 0x8c, 0x51, 0x70, 0x19, + 0x8a, 0x31, 0x4e, 0xc5, 0x18, 0xa2, 0xe0, 0x30, 0x8a, 0xf2, 0x1f, 0x8a, + 0x7a, 0x94, 0x53, 0x5f, 0x5b, 0xda, 0xed, 0x03, 0xc9, 0x5d, 0xdf, 0x32, + 0x72, 0xd9, 0xf4, 0x3e, 0x95, 0xec, 0x04, 0x64, 0x11, 0x5e, 0x15, 0xf1, + 0x4a, 0xcb, 0x52, 0xb5, 0xd6, 0x61, 0x6b, 0xad, 0x8d, 0x66, 0xc0, 0x8b, + 0x76, 0x1d, 0x71, 0xdc, 0x1a, 0xc3, 0x11, 0x7e, 0x4d, 0x0d, 0x28, 0xaf, + 0x7a, 0xe7, 0x1a, 0xfa, 0x95, 0xc3, 0xc2, 0x23, 0x00, 0x26, 0x0f, 0xf0, + 0x8c, 0xd4, 0x69, 0x71, 0x2c, 0x92, 0x83, 0x23, 0x12, 0x10, 0x13, 0x56, + 0x7e, 0xcd, 0x14, 0x71, 0x29, 0x73, 0xb9, 0xd9, 0x58, 0xfe, 0x80, 0xd4, + 0x66, 0xdb, 0xcd, 0x8e, 0x49, 0x63, 0x27, 0x60, 0xc1, 0x03, 0xf0, 0xe9, + 0x5e, 0x23, 0x94, 0x35, 0xd0, 0xf4, 0xd4, 0x66, 0xd9, 0x10, 0xb9, 0xbc, + 0x62, 0x88, 0x03, 0x30, 0x6c, 0x10, 0x02, 0xf5, 0x15, 0xbf, 0x73, 0x7b, + 0x6d, 0x34, 0xa8, 0xb7, 0x0b, 0x22, 0x26, 0xd1, 0x8d, 0xa3, 0x24, 0x71, + 0xe9, 0x58, 0x36, 0x2f, 0x71, 0x05, 0xd2, 0x3c, 0x0e, 0xe9, 0x20, 0x38, + 0xe0, 0xf6, 0xf4, 0xae, 0x9d, 0x63, 0xd2, 0xae, 0xee, 0xdc, 0xde, 0xc1, + 0x25, 0xbb, 0xf0, 0x02, 0xc6, 0x7e, 0x51, 0xc7, 0x5e, 0x6b, 0x0c, 0x47, + 0x2a, 0x9a, 0xf4, 0xe8, 0x55, 0x35, 0x27, 0x1f, 0xf3, 0x3b, 0x2f, 0x09, + 0xa4, 0x29, 0xa5, 0xed, 0x4e, 0x49, 0xf9, 0x83, 0x1e, 0xa5, 0x7b, 0x57, + 0x29, 0xe3, 0x90, 0x06, 0xb3, 0x1e, 0x3f, 0xba, 0x6b, 0x67, 0x43, 0x8e, + 0xe5, 0x35, 0xf8, 0xad, 0xa0, 0x53, 0xf6, 0x78, 0xe2, 0xc9, 0xda, 0x0e, + 0x08, 0x23, 0x20, 0x9f, 0xce, 0xb2, 0x3c, 0x76, 0xac, 0xba, 0xcc, 0x39, + 0x1c, 0x15, 0x24, 0x1a, 0xc2, 0x96, 0xb6, 0x64, 0xd5, 0x56, 0x6c, 0xe3, + 0xf1, 0xfe, 0x8f, 0xff, 0x00, 0x03, 0xae, 0x97, 0x4a, 0x5c, 0xc0, 0x3e, + 0xb5, 0xcd, 0x1f, 0xf5, 0x1f, 0xf0, 0x3a, 0xea, 0xf4, 0x61, 0x9b, 0x71, + 0xf5, 0xad, 0x2a, 0xad, 0x0e, 0x79, 0x6c, 0x6a, 0x46, 0xbf, 0xbd, 0xc6, + 0x3b, 0x0a, 0xd1, 0x86, 0x26, 0x23, 0x38, 0x38, 0xfa, 0x55, 0x78, 0xe3, + 0xfd, 0xf1, 0xc7, 0xf7, 0x45, 0x69, 0x5b, 0xaf, 0x1c, 0xd6, 0x36, 0x32, + 0xbe, 0xa2, 0xf8, 0x6e, 0x38, 0xbf, 0xb4, 0xaf, 0x1a, 0xe1, 0xd9, 0x21, + 0x44, 0x1b, 0xb6, 0xa8, 0x25, 0x8f, 0xa6, 0x4f, 0x4a, 0x9b, 0x50, 0xd3, + 0x17, 0x54, 0x9c, 0x2e, 0x8d, 0x63, 0x75, 0x33, 0xa7, 0x32, 0xb9, 0x19, + 0xe0, 0xf4, 0xc9, 0xa8, 0xf4, 0x49, 0xfe, 0xcf, 0xa9, 0x5e, 0x26, 0xe8, + 0xc1, 0x75, 0x5c, 0x79, 0x8a, 0x08, 0xfd, 0x6b, 0x6a, 0xd7, 0xc5, 0x37, + 0xf6, 0xb2, 0xc9, 0x6b, 0xf6, 0x98, 0x2c, 0x23, 0x52, 0x0b, 0x17, 0x4c, + 0x96, 0x1e, 0x8b, 0x8a, 0xe6, 0x68, 0xea, 0x4d, 0xad, 0x51, 0xcf, 0x5b, + 0xf8, 0x47, 0x5a, 0xba, 0xde, 0x05, 0x9f, 0x96, 0x50, 0xe0, 0xf9, 0x8d, + 0xb4, 0x9f, 0xa7, 0xad, 0x68, 0xc7, 0xf0, 0xf7, 0x55, 0x20, 0x96, 0x96, + 0x10, 0x31, 0x9c, 0xe1, 0x8e, 0x7f, 0x4a, 0xd3, 0xbd, 0xf8, 0x8d, 0x22, + 0x5d, 0xb1, 0xb6, 0xb4, 0x0f, 0x06, 0x46, 0xd3, 0x24, 0x8d, 0x93, 0x8e, + 0xf8, 0x06, 0xaa, 0x5f, 0x7c, 0x44, 0xbc, 0xbc, 0x5d, 0xb1, 0x69, 0xb6, + 0xe3, 0x8f, 0x42, 0xdc, 0xd4, 0x3e, 0x6e, 0x88, 0xd1, 0x3a, 0x8c, 0xce, + 0x7f, 0x09, 0xdd, 0x42, 0xe5, 0x1a, 0xfe, 0xde, 0x33, 0xd3, 0xe7, 0x0e, + 0xa3, 0xf5, 0x14, 0x45, 0xe1, 0xfb, 0xeb, 0x57, 0x0f, 0x1d, 0xc5, 0x94, + 0xcc, 0xa7, 0x23, 0x6c, 0xe3, 0xaf, 0xe2, 0x69, 0xe9, 0x75, 0xab, 0xea, + 0x48, 0x5a, 0xe2, 0xd6, 0x38, 0xe1, 0x3d, 0x58, 0xa0, 0x53, 0x8f, 0x63, + 0xd6, 0xab, 0xc8, 0x16, 0xdd, 0x8c, 0x72, 0x58, 0xac, 0x80, 0x0f, 0xf5, + 0x88, 0x4e, 0x45, 0x67, 0x24, 0xf6, 0x37, 0x85, 0xfa, 0x86, 0xb1, 0xe7, + 0x2d, 0x9a, 0x25, 0xc4, 0x42, 0x39, 0x03, 0x7f, 0x09, 0x18, 0x3f, 0x95, + 0x66, 0x5c, 0xff, 0x00, 0xc7, 0xba, 0xd6, 0x86, 0xa4, 0x61, 0x7d, 0x2c, + 0x3c, 0x33, 0x13, 0xf3, 0x8c, 0xc6, 0xe7, 0x24, 0x7e, 0x35, 0x9b, 0x74, + 0x48, 0xb6, 0x5e, 0x69, 0x53, 0x43, 0xaa, 0xf4, 0x28, 0xab, 0xfe, 0xfd, + 0x07, 0xbd, 0x3b, 0x59, 0x51, 0xbe, 0x31, 0x8c, 0x64, 0x54, 0x51, 0xff, + 0x00, 0xc7, 0xcc, 0x79, 0xfe, 0xf5, 0x4f, 0xad, 0x63, 0xcc, 0x8c, 0x1c, + 0xe3, 0x1c, 0xe3, 0xad, 0x6f, 0x6f, 0x79, 0x18, 0x27, 0xee, 0xb3, 0x35, + 0xa3, 0x22, 0x59, 0x40, 0x19, 0x1b, 0x06, 0x4d, 0x6f, 0x78, 0x3e, 0x22, + 0xfa, 0xfc, 0x59, 0x3c, 0x79, 0x67, 0xbf, 0x4a, 0xc6, 0x78, 0xc3, 0x4d, + 0x21, 0x07, 0x8d, 0x83, 0xad, 0x5e, 0xd1, 0x25, 0x9a, 0xdf, 0x58, 0x81, + 0x6d, 0x93, 0x32, 0x48, 0xa5, 0x7a, 0xfd, 0xdf, 0x7a, 0x25, 0xac, 0x6c, + 0x6d, 0x1d, 0x1a, 0x67, 0x61, 0xe2, 0xd9, 0xed, 0x9b, 0x4d, 0xb9, 0x8f, + 0xe4, 0x6d, 0xab, 0xf2, 0x92, 0x71, 0xcf, 0xb5, 0x78, 0xcf, 0xda, 0x23, + 0x8e, 0x47, 0x0b, 0xb8, 0xe4, 0xf5, 0x35, 0xe8, 0xbe, 0x3a, 0xd3, 0xef, + 0xed, 0x21, 0xb7, 0x90, 0x44, 0xcd, 0x6e, 0x72, 0x1d, 0xf1, 0xc1, 0x6a, + 0xf3, 0x89, 0x6d, 0xd5, 0x30, 0x40, 0xdc, 0x4f, 0xbf, 0x4a, 0xea, 0xc2, + 0x46, 0x2a, 0x24, 0x57, 0x72, 0x6c, 0xa3, 0x33, 0xba, 0x4e, 0xf8, 0x24, + 0x73, 0xc5, 0x48, 0x27, 0x70, 0x80, 0xf7, 0xc6, 0x08, 0xf5, 0xa6, 0x4a, + 0x8e, 0xce, 0xc5, 0xb3, 0xc7, 0x6a, 0x72, 0x5b, 0xbf, 0x92, 0x5c, 0x70, + 0x2b, 0xd2, 0xf7, 0x6c, 0xae, 0x73, 0x25, 0x2b, 0xbb, 0x0f, 0xb6, 0xba, + 0x92, 0x19, 0x95, 0xc6, 0x0f, 0x3d, 0x31, 0x8a, 0xed, 0x3c, 0x13, 0xac, + 0xa5, 0x8f, 0x88, 0x61, 0x93, 0xc9, 0x8c, 0xbc, 0xe7, 0x61, 0x8f, 0x1f, + 0x36, 0x49, 0xc7, 0x15, 0xc5, 0x45, 0x10, 0x67, 0x3f, 0x37, 0x21, 0x80, + 0x1f, 0x91, 0xae, 0x83, 0xc2, 0x77, 0x53, 0x59, 0xf8, 0x9a, 0x06, 0x8e, + 0x08, 0xe5, 0x72, 0x76, 0x92, 0x7a, 0xa0, 0xee, 0x45, 0x6b, 0x4a, 0x49, + 0x4d, 0x5b, 0x43, 0x3a, 0xa9, 0xb8, 0x35, 0xb9, 0xf4, 0x4c, 0x6c, 0x24, + 0x50, 0xc3, 0xa1, 0xec, 0x6a, 0x4c, 0x57, 0x2b, 0x3e, 0xb9, 0x29, 0x85, + 0x61, 0xb6, 0x06, 0x35, 0x03, 0x1b, 0x89, 0xcb, 0x56, 0xad, 0xbe, 0xa2, + 0xd1, 0xc4, 0xa6, 0x56, 0xde, 0xb8, 0xe7, 0x27, 0x9a, 0xf4, 0xa5, 0x8c, + 0x82, 0x69, 0x18, 0x47, 0x0f, 0x26, 0xae, 0x6b, 0x01, 0x4b, 0x8a, 0xcb, + 0x9b, 0xc4, 0x16, 0x31, 0x47, 0x94, 0x2d, 0x23, 0xff, 0x00, 0x74, 0x0f, + 0xeb, 0x58, 0xb7, 0x7a, 0xfd, 0xe5, 0xc6, 0x55, 0x1b, 0xc9, 0x4f, 0x44, + 0xeb, 0xf9, 0xd5, 0x4b, 0x13, 0x04, 0xb4, 0xd4, 0x51, 0xa5, 0x26, 0x75, + 0xc1, 0x90, 0xc9, 0xe5, 0xef, 0x5d, 0xf8, 0xce, 0xdc, 0xf3, 0xf9, 0x53, + 0xf1, 0x5c, 0x56, 0x91, 0x23, 0x7d, 0xb1, 0x98, 0xb1, 0xdd, 0xb7, 0xae, + 0x6b, 0xaa, 0xb6, 0xbe, 0x0c, 0x76, 0x4c, 0x70, 0x7b, 0x37, 0xf8, 0xd6, + 0x10, 0xc6, 0xc5, 0xcb, 0x96, 0x5a, 0x1a, 0xbc, 0x34, 0x94, 0x79, 0x96, + 0xa5, 0xcc, 0x52, 0x85, 0xa7, 0xe2, 0x9c, 0x16, 0xba, 0xee, 0x61, 0x62, + 0x30, 0xb4, 0xbb, 0x6a, 0x40, 0xb4, 0xbb, 0x69, 0x5c, 0x76, 0x18, 0x16, + 0x97, 0x6d, 0x49, 0xb6, 0x97, 0x6d, 0x2b, 0x85, 0x88, 0xf6, 0xd1, 0xb6, + 0xa4, 0xdb, 0x4b, 0xb6, 0x8b, 0x8e, 0xc4, 0x7b, 0x69, 0x76, 0xd4, 0x9b, + 0x68, 0xdb, 0x4a, 0xe1, 0x62, 0x3c, 0x52, 0xe2, 0x9f, 0xb6, 0x97, 0x6d, + 0x17, 0x1d, 0x88, 0xf6, 0xd2, 0xed, 0xa9, 0x36, 0xd2, 0xed, 0xa5, 0x70, + 0xb1, 0x16, 0xda, 0x36, 0xd4, 0xbb, 0x68, 0xdb, 0x45, 0xc2, 0xc4, 0x3b, + 0x68, 0x23, 0x03, 0x35, 0x2e, 0xda, 0xe7, 0xfc, 0x5e, 0xf7, 0x11, 0x68, + 0xae, 0x2d, 0xcf, 0xce, 0xc0, 0xe0, 0x74, 0xc9, 0x18, 0xef, 0x59, 0x56, + 0xac, 0xa9, 0x41, 0xcd, 0xf4, 0x2e, 0x9d, 0x37, 0x52, 0x5c, 0xa8, 0xda, + 0xdb, 0x4e, 0x03, 0x06, 0xb2, 0x3c, 0x2f, 0x73, 0x3d, 0xf6, 0x93, 0xf6, + 0x8b, 0x94, 0x22, 0x62, 0xe5, 0x58, 0x93, 0xd7, 0x15, 0x67, 0x54, 0xd6, + 0x2c, 0xf4, 0x98, 0xb7, 0x5c, 0x49, 0xf3, 0x91, 0xf2, 0xc6, 0xbc, 0xb3, + 0x7e, 0x15, 0x50, 0xab, 0x19, 0xc1, 0x4d, 0x6c, 0xc5, 0x38, 0x38, 0x4b, + 0x95, 0x9b, 0xed, 0xaa, 0xc5, 0x6f, 0xa5, 0x4a, 0x1d, 0x30, 0x52, 0x32, + 0x77, 0x67, 0xda, 0xbc, 0x1b, 0x5d, 0xbc, 0x17, 0x77, 0x92, 0x3a, 0x1c, + 0xbb, 0xb1, 0x35, 0xbf, 0xab, 0x6b, 0xd7, 0xba, 0xb1, 0x60, 0xcd, 0xe4, + 0xc1, 0xfc, 0x31, 0x29, 0xfe, 0x7e, 0xb5, 0xc8, 0x63, 0x6b, 0x12, 0x4e, + 0x58, 0x9e, 0x4d, 0x79, 0xd5, 0x63, 0x17, 0x53, 0x9a, 0x26, 0x91, 0x93, + 0xe5, 0xb3, 0x19, 0x69, 0x1b, 0x2c, 0xe7, 0x7b, 0x64, 0xe2, 0xa4, 0x8e, + 0x15, 0x0f, 0x23, 0x0c, 0x83, 0xbe, 0x99, 0x13, 0x7f, 0xa5, 0x1f, 0xa5, + 0x4c, 0x87, 0x99, 0x3f, 0xde, 0xa4, 0xc6, 0x86, 0x3e, 0xf5, 0x72, 0x4f, + 0x2a, 0x7d, 0x2b, 0x67, 0xc1, 0xe1, 0x64, 0xf1, 0x1d, 0xbe, 0x7a, 0x8d, + 0xc7, 0x1f, 0x85, 0x65, 0x13, 0x9a, 0xdd, 0xf0, 0x80, 0x07, 0xc4, 0x50, + 0x11, 0xd7, 0x0d, 0xfc, 0xaa, 0xa9, 0x7c, 0x68, 0x27, 0xf0, 0xb3, 0xd2, + 0xc8, 0xa4, 0x22, 0xa4, 0x2b, 0x48, 0x45, 0x7b, 0x37, 0x39, 0x2c, 0x44, + 0x45, 0x26, 0x2a, 0x4c, 0x52, 0x11, 0x4e, 0xe4, 0xd8, 0x8c, 0x8a, 0x42, + 0x29, 0xf8, 0xa4, 0xc5, 0x31, 0x58, 0x66, 0x29, 0x31, 0x4f, 0xc5, 0x21, + 0x14, 0xc4, 0x79, 0x5f, 0xc4, 0xeb, 0x55, 0xb9, 0xd6, 0xec, 0xf7, 0xcc, + 0xb1, 0x05, 0xb7, 0xce, 0x5b, 0xbf, 0xcc, 0x6b, 0xcd, 0x82, 0xc3, 0x16, + 0xd0, 0x4e, 0xf3, 0x9e, 0xdd, 0xab, 0xd1, 0xbe, 0x2a, 0xc4, 0xaf, 0xac, + 0x59, 0x16, 0x70, 0xa1, 0x60, 0xfc, 0xfe, 0x63, 0x5e, 0x72, 0x05, 0xba, + 0xed, 0xea, 0xdc, 0xd7, 0x9b, 0x5f, 0xf8, 0x8c, 0xeb, 0xa6, 0xbd, 0xd4, + 0x0b, 0x2d, 0xba, 0x14, 0x65, 0x42, 0xdc, 0x1c, 0x83, 0x4e, 0x4d, 0x46, + 0x48, 0xc8, 0xf2, 0xa3, 0x45, 0xf9, 0x49, 0x1c, 0x66, 0x88, 0xee, 0x62, + 0x8d, 0xd4, 0xf9, 0x0a, 0xc0, 0x03, 0xc1, 0xaa, 0xcc, 0xdb, 0xdf, 0x70, + 0x50, 0x01, 0x52, 0x70, 0x3f, 0x1a, 0xe7, 0x70, 0x52, 0xdd, 0x1a, 0x29, + 0x38, 0xec, 0xcb, 0x0d, 0xaa, 0xde, 0xb9, 0x5f, 0xde, 0xe3, 0x2a, 0x4f, + 0x02, 0x90, 0xcf, 0x7e, 0xd1, 0xc3, 0x2b, 0xcd, 0x26, 0xc6, 0x6e, 0xbb, + 0xba, 0xd5, 0x75, 0x57, 0x2c, 0x80, 0x03, 0x92, 0xa6, 0xa5, 0x31, 0x5d, + 0x28, 0x86, 0x39, 0x37, 0x85, 0x07, 0x21, 0x49, 0xe9, 0x47, 0xb3, 0x82, + 0xd9, 0x21, 0xf3, 0xc9, 0xef, 0x72, 0x31, 0x3d, 0xc3, 0x98, 0xf7, 0x4c, + 0xe7, 0xe6, 0x3f, 0xc4, 0x69, 0x91, 0xac, 0x93, 0x61, 0x3c, 0xc3, 0x96, + 0x70, 0x39, 0x34, 0xe5, 0x89, 0x81, 0x8f, 0x3c, 0x7c, 0xc6, 0x91, 0x60, + 0x62, 0x9c, 0x11, 0xf7, 0xaa, 0xb9, 0x52, 0xd8, 0x9b, 0xb1, 0x6e, 0x60, + 0x68, 0x64, 0x95, 0x0b, 0x82, 0x43, 0x8e, 0x41, 0xa6, 0x15, 0x3b, 0x9f, + 0xe6, 0xfe, 0x11, 0xfd, 0x29, 0xf2, 0xc0, 0xc3, 0xcc, 0xc9, 0x1f, 0x7e, + 0x94, 0xdb, 0x9f, 0x9c, 0xee, 0x1d, 0x05, 0x1f, 0x30, 0xf9, 0x1b, 0x5a, + 0xc7, 0x84, 0xb5, 0xcd, 0x0e, 0xec, 0x41, 0xa8, 0x58, 0xc9, 0x04, 0x8e, + 0x99, 0x50, 0x48, 0x20, 0x8f, 0xa8, 0xe2, 0xa1, 0xb8, 0xd1, 0x35, 0xab, + 0x1b, 0x48, 0x66, 0xb8, 0xb3, 0xba, 0x86, 0xde, 0x64, 0x25, 0x1d, 0xd0, + 0x85, 0x71, 0xec, 0x7b, 0xd6, 0x9e, 0xb9, 0xe3, 0xcf, 0x10, 0x6b, 0xf3, + 0xa4, 0x9a, 0x95, 0xca, 0xcc, 0x62, 0x4c, 0x27, 0xee, 0x95, 0x40, 0xce, + 0x33, 0xd0, 0x52, 0xea, 0xde, 0x3e, 0xd6, 0xb5, 0x9d, 0x1e, 0xc3, 0x4b, + 0xbb, 0x68, 0x4d, 0xb5, 0xa4, 0x78, 0x8c, 0x2a, 0x60, 0x9c, 0x02, 0x06, + 0x7f, 0x0e, 0x2b, 0x04, 0xeb, 0x69, 0x74, 0x8a, 0x6a, 0x9f, 0x99, 0xce, + 0xaa, 0x5d, 0xc3, 0xe4, 0x9d, 0xb2, 0x28, 0x23, 0x23, 0x8e, 0xbc, 0xd4, + 0xa9, 0x35, 0xdf, 0xee, 0xd9, 0xb7, 0x1c, 0x36, 0x39, 0x15, 0xa9, 0x71, + 0xe2, 0xdb, 0xeb, 0xcd, 0x3e, 0xc2, 0xc6, 0x68, 0x6d, 0xbc, 0xab, 0x55, + 0x22, 0x32, 0xb1, 0xe1, 0xbf, 0x13, 0xde, 0xb7, 0xf4, 0xff, 0x00, 0x88, + 0xc9, 0x07, 0x82, 0xdf, 0xc3, 0xd2, 0xe9, 0x11, 0x49, 0xe7, 0x4d, 0xbf, + 0xcf, 0x0f, 0x8f, 0xe2, 0x07, 0x91, 0x8e, 0x4f, 0x18, 0xce, 0x68, 0x94, + 0xaa, 0x25, 0xac, 0x06, 0x94, 0x2f, 0xa4, 0x8e, 0x3c, 0x5c, 0x5c, 0x4f, + 0xe5, 0x97, 0x5c, 0xe1, 0x8f, 0x6a, 0x75, 0xbc, 0xe8, 0xb1, 0x85, 0x78, + 0x55, 0x8b, 0x31, 0xc1, 0xf4, 0xaf, 0x48, 0xd2, 0xfc, 0x69, 0xe0, 0xd8, + 0x7c, 0x12, 0x34, 0xdb, 0x8d, 0x07, 0x76, 0xa4, 0xdb, 0x94, 0xcd, 0xe5, + 0x21, 0xc9, 0x2d, 0x9c, 0xef, 0xfb, 0xc3, 0x00, 0xfe, 0x95, 0x5f, 0x46, + 0x1f, 0x0f, 0x26, 0xf0, 0x9d, 0xd9, 0xd4, 0x59, 0xd3, 0x58, 0x3b, 0xcd, + 0xb8, 0xfd, 0xe0, 0xc3, 0x63, 0xe5, 0xc6, 0x3e, 0x5f, 0xcf, 0xde, 0xb3, + 0x55, 0xda, 0xbd, 0xe2, 0xc7, 0xc8, 0xad, 0x75, 0x23, 0xce, 0xe3, 0xf2, + 0x88, 0x8f, 0x2a, 0x47, 0xcc, 0x69, 0x56, 0x34, 0x3b, 0x70, 0x7f, 0x85, + 0xbf, 0xad, 0x7a, 0x06, 0x91, 0xe0, 0xef, 0x0d, 0x6a, 0x5e, 0x14, 0xb8, + 0xd4, 0x24, 0xf1, 0x04, 0x30, 0x6a, 0x11, 0xef, 0x68, 0xad, 0x8c, 0x8a, + 0x33, 0x8e, 0xc5, 0x4f, 0x24, 0x9f, 0x6f, 0x5a, 0xad, 0x6d, 0xf0, 0xcb, + 0x56, 0xbc, 0xf0, 0xec, 0xba, 0xdd, 0xb4, 0xf6, 0xad, 0x6d, 0x0c, 0x6e, + 0xc5, 0x19, 0xc8, 0x72, 0x06, 0x73, 0x8e, 0x31, 0xfa, 0xd6, 0x8b, 0x11, + 0x0b, 0xef, 0x61, 0x3a, 0x72, 0x38, 0xc6, 0xb6, 0x75, 0xb7, 0xdc, 0x08, + 0x23, 0x67, 0xaf, 0xbd, 0x18, 0x71, 0xc6, 0x3f, 0x89, 0x7f, 0x95, 0x6a, + 0xcf, 0xe1, 0x9d, 0x6a, 0xd7, 0x4a, 0x6b, 0xf7, 0xb1, 0x98, 0x5a, 0x01, + 0xb3, 0xcd, 0xc7, 0x19, 0xcd, 0x67, 0xac, 0x8f, 0x1b, 0xe1, 0x97, 0xba, + 0xf5, 0x1e, 0xd5, 0xaa, 0x92, 0x92, 0xd1, 0xdc, 0x56, 0x69, 0xeb, 0xa0, + 0xe5, 0x9e, 0x27, 0x45, 0x56, 0x84, 0x02, 0x03, 0x0c, 0x8e, 0xf4, 0xe4, + 0x8e, 0x37, 0x61, 0xb1, 0xf0, 0x72, 0xbc, 0x1f, 0xa5, 0x46, 0xb2, 0x46, + 0xe4, 0x16, 0x4c, 0x7d, 0xec, 0xe3, 0xe9, 0x52, 0xac, 0x68, 0xce, 0x36, + 0x37, 0xf1, 0x2f, 0xf2, 0xa2, 0xd6, 0x0b, 0x9e, 0xb5, 0xf0, 0xe6, 0x27, + 0x8b, 0xc3, 0xcc, 0xae, 0x72, 0xde, 0x69, 0xae, 0xc7, 0x15, 0xc8, 0x7c, + 0x38, 0x8d, 0xe3, 0xf0, 0xd9, 0x57, 0xfb, 0xde, 0x69, 0xfe, 0x95, 0xd8, + 0xe2, 0xbd, 0x4a, 0x5f, 0x02, 0x38, 0xea, 0x7c, 0x4c, 0x6d, 0x2e, 0x29, + 0x71, 0x46, 0x2a, 0xc8, 0x23, 0x97, 0xfd, 0x4c, 0x9f, 0xee, 0x9a, 0xe5, + 0xa4, 0x6c, 0xbb, 0x0f, 0x7a, 0xea, 0x2e, 0xb2, 0x2d, 0x26, 0x3f, 0xec, + 0x1f, 0xe5, 0x5c, 0x66, 0xf3, 0x8e, 0xbd, 0x39, 0x35, 0xe7, 0x63, 0x7e, + 0x24, 0x74, 0xd1, 0xd9, 0x92, 0x3c, 0x85, 0x57, 0x8e, 0xe7, 0x15, 0x52, + 0x39, 0x89, 0x9a, 0xed, 0x4f, 0xfc, 0xf3, 0xcf, 0xf3, 0xa7, 0x49, 0x28, + 0xc8, 0x5e, 0xbe, 0xc2, 0xab, 0xc2, 0xcc, 0x5e, 0xf5, 0x8a, 0x15, 0x0b, + 0x1e, 0xde, 0x7e, 0x95, 0xc4, 0x8d, 0x99, 0x93, 0x2b, 0x28, 0x8e, 0x32, + 0x32, 0x09, 0x07, 0x3f, 0x9d, 0x4d, 0x66, 0x7f, 0x7c, 0xa6, 0xb3, 0xe4, + 0x9d, 0x1b, 0xcb, 0x42, 0x78, 0x1d, 0x88, 0xc7, 0x7a, 0xb1, 0x65, 0x2f, + 0xfa, 0x42, 0x8e, 0x70, 0x7a, 0x66, 0xb5, 0x46, 0x6c, 0xe8, 0xe3, 0x35, + 0x32, 0x0f, 0x9c, 0x3a, 0x31, 0x47, 0x1d, 0x19, 0x4e, 0x08, 0xaa, 0xb1, + 0x9e, 0x05, 0x58, 0x46, 0xc5, 0x58, 0x8b, 0x37, 0x57, 0xd7, 0x12, 0xc4, + 0xab, 0x70, 0xa2, 0x45, 0x50, 0x40, 0x75, 0x1c, 0xf3, 0xeb, 0x5a, 0x9a, + 0x45, 0xfd, 0x94, 0x1a, 0x7c, 0x71, 0x2c, 0xb9, 0x7c, 0xfd, 0xc5, 0x04, + 0x9a, 0xc8, 0x0d, 0xc5, 0x51, 0x00, 0x6e, 0x2c, 0x38, 0x60, 0x72, 0x08, + 0xe0, 0xd4, 0x41, 0x28, 0x56, 0xf6, 0xdd, 0x59, 0x72, 0x93, 0x74, 0xfd, + 0x9f, 0x43, 0xd0, 0x07, 0x22, 0x97, 0x15, 0x87, 0x63, 0xaa, 0xdc, 0xa5, + 0xba, 0x0b, 0x84, 0x13, 0x0c, 0x7d, 0xe5, 0xe1, 0xab, 0x56, 0x0b, 0xfb, + 0x69, 0xf8, 0x59, 0x00, 0x6f, 0xee, 0xb7, 0x06, 0xbd, 0x48, 0x56, 0x84, + 0xb6, 0x67, 0x23, 0x83, 0x45, 0x8c, 0x51, 0x8a, 0x5c, 0x52, 0xe2, 0xb4, + 0xb8, 0xac, 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x42, 0x42, 0x8c, 0xb1, 0x00, + 0x0e, 0xe6, 0x8b, 0x80, 0x62, 0x93, 0x15, 0x8d, 0xa2, 0xeb, 0xff, 0x00, + 0xda, 0xf7, 0x97, 0x30, 0xf9, 0x3e, 0x58, 0x8f, 0x94, 0x39, 0xea, 0x33, + 0x8e, 0x6b, 0x73, 0x15, 0x31, 0x92, 0x92, 0xba, 0x1d, 0x86, 0x62, 0x8c, + 0x53, 0xf1, 0x46, 0x2a, 0x85, 0x61, 0x98, 0xa3, 0x14, 0xfc, 0x51, 0x8a, + 0x02, 0xc3, 0x31, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0x05, 0x86, 0xe2, 0x8c, + 0x53, 0xb1, 0x49, 0x8a, 0x02, 0xc3, 0x71, 0x46, 0x29, 0xd8, 0xa3, 0x14, + 0x5c, 0x2c, 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x4c, 0x50, 0x2b, 0x0d, 0xc5, + 0x18, 0xa7, 0x62, 0x8c, 0x50, 0x16, 0x19, 0x8a, 0xe3, 0x7e, 0x25, 0xe8, + 0xd1, 0xea, 0x7e, 0x15, 0x9a, 0x6f, 0x2d, 0x4c, 0xf6, 0xbf, 0xbc, 0x46, + 0x6e, 0xc0, 0x75, 0xae, 0x8b, 0x59, 0xd6, 0xed, 0x74, 0x38, 0xa2, 0x96, + 0xe9, 0x65, 0x29, 0x23, 0x6d, 0x05, 0x17, 0x20, 0x7d, 0x7d, 0x2b, 0x98, + 0xf1, 0x8f, 0x8a, 0xb4, 0x29, 0x74, 0x99, 0x2c, 0x1a, 0xf4, 0xba, 0xcc, + 0x31, 0x21, 0x80, 0x64, 0xa8, 0xeb, 0xd7, 0xeb, 0x8a, 0xca, 0xad, 0x48, + 0x24, 0xd4, 0x99, 0xa5, 0x38, 0x4d, 0xc9, 0x38, 0xa3, 0xc4, 0x04, 0x52, + 0xdc, 0x6c, 0x60, 0xc1, 0x46, 0x73, 0xf4, 0xcd, 0x69, 0xd8, 0x44, 0x86, + 0xdd, 0xa3, 0x5e, 0x54, 0x71, 0xd3, 0xad, 0x3e, 0xd6, 0xce, 0x39, 0x22, + 0x12, 0x64, 0x9c, 0x8e, 0x0f, 0xb5, 0x68, 0xc3, 0x1a, 0xa2, 0xed, 0x51, + 0x81, 0x5f, 0x2d, 0x88, 0xae, 0x9f, 0xba, 0x8f, 0xa6, 0xc2, 0xe1, 0x1a, + 0x6a, 0x4d, 0x99, 0xda, 0x6e, 0x98, 0xc2, 0xfd, 0x77, 0x0f, 0xdd, 0xa9, + 0xce, 0x6b, 0xab, 0xbd, 0xd1, 0x7c, 0x82, 0x7c, 0xfb, 0x62, 0x1d, 0xa4, + 0x3b, 0x14, 0xe7, 0x32, 0x29, 0xee, 0xb8, 0xf4, 0xac, 0xdb, 0x6c, 0x0b, + 0xc4, 0x1d, 0xb2, 0x3f, 0x9d, 0x7a, 0x36, 0xbd, 0x6f, 0x04, 0xda, 0x6c, + 0x52, 0x5e, 0x4d, 0x22, 0xda, 0xc4, 0x54, 0xb1, 0x5e, 0xaa, 0x3a, 0x71, + 0x5c, 0x55, 0x6b, 0x4e, 0x53, 0x52, 0xec, 0x75, 0x3c, 0x2c, 0x7d, 0x93, + 0x51, 0xee, 0x72, 0xbe, 0x1a, 0x90, 0x8d, 0x65, 0x5d, 0x43, 0x07, 0x0b, + 0xb5, 0xb3, 0xed, 0x54, 0x3e, 0x20, 0xa8, 0x9e, 0xee, 0x26, 0x8d, 0x31, + 0x8f, 0xbc, 0x2b, 0x63, 0x44, 0xb6, 0x86, 0x1d, 0x69, 0x96, 0xde, 0x5f, + 0x3a, 0x11, 0x9d, 0x92, 0x63, 0xef, 0x0f, 0x5a, 0xad, 0xe2, 0xfc, 0x79, + 0x33, 0x7a, 0xef, 0x5a, 0xed, 0x76, 0x56, 0x6b, 0xb1, 0xe1, 0xd4, 0x56, + 0x95, 0x99, 0xe7, 0x23, 0x4f, 0x9f, 0x62, 0xc6, 0x53, 0x6b, 0x13, 0xb8, + 0x03, 0xdc, 0x57, 0x4d, 0xa3, 0xa0, 0x58, 0x00, 0x27, 0xbd, 0x41, 0x78, + 0x53, 0xed, 0x36, 0xe0, 0x36, 0x7f, 0x72, 0xbf, 0xca, 0xad, 0x69, 0x38, + 0x68, 0x87, 0x7e, 0x68, 0xe6, 0x72, 0x66, 0x13, 0xb7, 0x29, 0xbd, 0x02, + 0x2f, 0x9c, 0x79, 0xfe, 0x11, 0xd0, 0x56, 0xb5, 0xbc, 0x48, 0x57, 0xee, + 0xb1, 0xfa, 0x9a, 0xcf, 0xb7, 0x8c, 0x79, 0xc7, 0xfd, 0xd1, 0x5b, 0xb6, + 0x90, 0xae, 0xde, 0x02, 0xf4, 0xa6, 0x72, 0x37, 0xa9, 0x4b, 0x48, 0xd2, + 0x3f, 0xb5, 0x75, 0x0b, 0xdb, 0x64, 0x91, 0xa1, 0x2c, 0xaa, 0x37, 0x2a, + 0xe7, 0x8c, 0x77, 0xa7, 0xde, 0x78, 0x07, 0x54, 0xb6, 0x8e, 0x52, 0x92, + 0xda, 0xdc, 0x01, 0xc8, 0x22, 0x4f, 0x9f, 0x1f, 0x4a, 0xbf, 0xa2, 0xbc, + 0x96, 0x97, 0xba, 0xac, 0xf0, 0xab, 0x34, 0xab, 0x12, 0xec, 0x03, 0xd7, + 0x15, 0xa5, 0xa0, 0x68, 0x77, 0x92, 0xdc, 0xff, 0x00, 0x69, 0xea, 0x93, + 0xc6, 0x80, 0x9d, 0xd8, 0x6c, 0xe7, 0x1d, 0x87, 0xd2, 0xb9, 0x6e, 0xd3, + 0x3b, 0x23, 0x36, 0x91, 0x95, 0x0f, 0x85, 0xad, 0xb4, 0x7b, 0x28, 0x6e, + 0x6f, 0x74, 0xbb, 0x8d, 0x46, 0x47, 0x1f, 0x71, 0x58, 0xaa, 0x27, 0xd7, + 0x8a, 0xdc, 0xb6, 0xb3, 0xb8, 0x96, 0xc4, 0xcb, 0x6b, 0x67, 0x6b, 0x63, + 0x02, 0x8f, 0xbd, 0x11, 0xde, 0x47, 0xe6, 0x0f, 0x35, 0xba, 0xfe, 0x22, + 0xb6, 0x44, 0x2b, 0x6d, 0x73, 0x04, 0x91, 0x27, 0x1b, 0x4a, 0x9c, 0x9f, + 0x5e, 0xb5, 0x89, 0x78, 0x11, 0x27, 0x8b, 0x55, 0xd3, 0xe4, 0x64, 0x82, + 0x43, 0x93, 0x1e, 0x7e, 0x5c, 0xfd, 0x2b, 0x19, 0x49, 0xb2, 0xa2, 0xdb, + 0x7a, 0x98, 0xba, 0x8d, 0xb4, 0x6b, 0x12, 0xcd, 0x6f, 0x74, 0xf7, 0xd7, + 0x79, 0xf9, 0x51, 0xce, 0x31, 0x8e, 0xbc, 0x76, 0xac, 0x81, 0xa5, 0x4f, + 0x2a, 0x3e, 0xa5, 0x1c, 0xe6, 0xdd, 0xd4, 0xfc, 0xd1, 0xb7, 0xf1, 0x1e, + 0xe0, 0x56, 0xf5, 0xcd, 0xbc, 0x17, 0xfa, 0x9a, 0xea, 0x29, 0x32, 0x5b, + 0xb2, 0xaf, 0xdd, 0x41, 0xc1, 0x61, 0xd7, 0xf0, 0xaa, 0x97, 0x32, 0x0b, + 0xeb, 0xc2, 0xcd, 0x71, 0xb2, 0xde, 0x38, 0xc3, 0x31, 0x5e, 0x17, 0x71, + 0xed, 0x59, 0xea, 0x74, 0x45, 0xe8, 0x61, 0x6b, 0x09, 0x6c, 0xd6, 0x02, + 0x68, 0x94, 0xa3, 0xb3, 0x2e, 0xf1, 0x8c, 0x03, 0xef, 0x8e, 0xd5, 0x9d, + 0x72, 0xaa, 0x60, 0x5e, 0x69, 0xd7, 0xf3, 0x48, 0xca, 0xe1, 0xf2, 0x37, + 0x38, 0xe0, 0x8c, 0x71, 0xda, 0x9f, 0x70, 0xaa, 0x6d, 0xd7, 0x81, 0x5a, + 0x41, 0x6a, 0x15, 0x5e, 0x86, 0x4a, 0xa8, 0xfb, 0x44, 0x7d, 0x3e, 0xf7, + 0x6a, 0x97, 0x57, 0x5f, 0xf4, 0x88, 0x89, 0xe9, 0xed, 0x48, 0x17, 0x17, + 0x11, 0xff, 0x00, 0xbd, 0x4f, 0xd5, 0xc7, 0xef, 0x62, 0x35, 0xa4, 0xbe, + 0x24, 0x65, 0x0f, 0x84, 0x88, 0xc0, 0x24, 0xba, 0x7d, 0xad, 0xfc, 0x03, + 0xe5, 0x23, 0xad, 0x75, 0x1e, 0x04, 0xd2, 0x63, 0x9f, 0x59, 0x6b, 0x89, + 0xa4, 0x55, 0x8e, 0x18, 0xf2, 0x54, 0xf5, 0x63, 0x9e, 0xd5, 0xcf, 0x5a, + 0xa0, 0x3a, 0x91, 0x04, 0xed, 0x05, 0x57, 0x93, 0xda, 0xba, 0x9f, 0x05, + 0x38, 0x8f, 0x55, 0x99, 0x3a, 0xee, 0x8c, 0x81, 0xf9, 0x8a, 0xe6, 0x94, + 0x9a, 0x47, 0x74, 0x62, 0xae, 0x3f, 0xe2, 0x94, 0xc1, 0xad, 0xac, 0xd4, + 0x82, 0x21, 0x0c, 0xd8, 0x45, 0xf5, 0xc7, 0x15, 0xe4, 0x9e, 0x49, 0x96, + 0x53, 0xb5, 0x39, 0xeb, 0x8a, 0xf5, 0xaf, 0x89, 0xa9, 0x9b, 0x1b, 0x32, + 0x7f, 0xbe, 0x7f, 0x95, 0x79, 0xfe, 0x9f, 0x6a, 0x97, 0x4e, 0xed, 0x1b, + 0x12, 0x89, 0x80, 0x5b, 0xa6, 0x4f, 0x7a, 0xec, 0xa5, 0x51, 0x42, 0x97, + 0x31, 0x13, 0xa6, 0xea, 0x54, 0xe5, 0x47, 0x3b, 0x3d, 0x9b, 0x05, 0x50, + 0x01, 0xc9, 0xfb, 0xde, 0xd5, 0x33, 0x40, 0xb1, 0xda, 0x00, 0x4e, 0x3f, + 0x0a, 0xd4, 0xbb, 0x8c, 0x0b, 0xa2, 0xa3, 0x18, 0xc9, 0xe2, 0x90, 0x46, + 0xac, 0x36, 0x91, 0xc5, 0x6d, 0xed, 0xdb, 0x4a, 0xe7, 0x5c, 0x70, 0xd1, + 0x5c, 0xd6, 0xea, 0x73, 0xc2, 0xd5, 0x9b, 0x98, 0xd8, 0x15, 0xce, 0x7e, + 0x95, 0xd4, 0xf8, 0x2a, 0xc2, 0x19, 0xee, 0xa7, 0xbb, 0x91, 0x0f, 0x99, + 0x01, 0x0a, 0x8d, 0x92, 0x2a, 0x8f, 0xd8, 0x51, 0x03, 0x15, 0xe3, 0x35, + 0xad, 0xe1, 0xdb, 0xfb, 0x6b, 0x02, 0x63, 0x32, 0xb1, 0x49, 0x07, 0xce, + 0x4f, 0x40, 0xdf, 0xfe, 0xaf, 0xe5, 0x5d, 0xb4, 0xab, 0xc6, 0x4f, 0x53, + 0xcf, 0xad, 0x84, 0x9c, 0x16, 0x9a, 0x9d, 0x9f, 0x6a, 0x7c, 0x93, 0xc9, + 0x20, 0x01, 0x98, 0xe0, 0x76, 0xac, 0xc8, 0x35, 0x7b, 0x7b, 0x9b, 0xb3, + 0x6f, 0x18, 0x62, 0x71, 0x90, 0xd8, 0xe2, 0xae, 0xe6, 0xba, 0x93, 0x4f, + 0x54, 0x72, 0xb8, 0xb8, 0xe8, 0xc7, 0x66, 0x93, 0x34, 0x99, 0xa3, 0x34, + 0xc4, 0x68, 0x69, 0x1f, 0xf1, 0xf4, 0xdf, 0xee, 0xd6, 0xd8, 0x38, 0x35, + 0x85, 0xa5, 0x37, 0xfa, 0x51, 0xff, 0x00, 0x76, 0xb6, 0x59, 0x8a, 0xa3, + 0x30, 0x19, 0x20, 0x67, 0x1e, 0xb5, 0xcf, 0x53, 0xe2, 0x3a, 0x29, 0xbf, + 0x74, 0xd3, 0xb3, 0xbe, 0x30, 0xe1, 0x24, 0xcb, 0x47, 0xfa, 0x8a, 0xd9, + 0x5d, 0xae, 0xa1, 0x94, 0x82, 0xa7, 0xa1, 0x15, 0xca, 0x5b, 0x4f, 0xe7, + 0xc0, 0x92, 0x6d, 0x2b, 0x9f, 0xe1, 0x6e, 0xa2, 0xb4, 0x2c, 0xaf, 0x5a, + 0xd9, 0xf0, 0x79, 0x8c, 0xf5, 0x5a, 0xe8, 0xc3, 0xe2, 0x5c, 0x3d, 0xd9, + 0x6c, 0x63, 0x56, 0x82, 0x96, 0xb1, 0xdc, 0xdd, 0xc5, 0x3b, 0x6d, 0x66, + 0x5d, 0x78, 0x82, 0xc2, 0xcc, 0x80, 0xcd, 0x23, 0x12, 0x33, 0x85, 0x5a, + 0x6e, 0x97, 0xe2, 0x08, 0x35, 0x2b, 0x93, 0x08, 0x89, 0xa3, 0xfe, 0xe9, + 0x63, 0xd4, 0xd7, 0x7f, 0xb6, 0x87, 0x73, 0x93, 0x92, 0x5d, 0x8d, 0x6d, + 0xb4, 0xbb, 0x6a, 0x40, 0x29, 0x76, 0xd5, 0x5c, 0x56, 0x23, 0x0b, 0x4b, + 0xb6, 0xa4, 0xdb, 0x4b, 0xb6, 0x95, 0xc7, 0x62, 0x3d, 0xb4, 0x6d, 0xa9, + 0x76, 0xd1, 0xb6, 0x95, 0xc7, 0x62, 0x3d, 0xb4, 0x6d, 0xae, 0x6f, 0x5d, + 0xf1, 0x84, 0x5a, 0x1f, 0x89, 0x74, 0xcd, 0x25, 0xed, 0xcb, 0xad, 0xdf, + 0xdf, 0x97, 0x76, 0x36, 0x0c, 0xe0, 0x57, 0x52, 0x00, 0x23, 0x23, 0xa1, + 0xa3, 0x98, 0x56, 0xd6, 0xc4, 0x5b, 0x69, 0x76, 0xd4, 0xbb, 0x68, 0xdb, + 0x45, 0xc7, 0x62, 0x3d, 0xb4, 0x6d, 0xa9, 0x76, 0xd6, 0x66, 0xa3, 0xaf, + 0x69, 0x9a, 0x60, 0x3f, 0x69, 0xba, 0x4d, 0xff, 0x00, 0xf3, 0xcd, 0x3e, + 0x66, 0xfc, 0x85, 0x2e, 0x60, 0x76, 0x45, 0xc6, 0xc2, 0xa9, 0x63, 0xd0, + 0x0c, 0xf4, 0xac, 0x1f, 0x10, 0xea, 0x3a, 0x68, 0xd3, 0x42, 0xcd, 0x75, + 0x0f, 0xdf, 0xfb, 0xbb, 0x81, 0x6f, 0xcb, 0xad, 0x73, 0xda, 0xf7, 0x8e, + 0xee, 0x27, 0xb7, 0x78, 0x74, 0xd8, 0x8c, 0x0a, 0xdc, 0x19, 0x5c, 0xfc, + 0xd8, 0xf6, 0x1d, 0xab, 0x83, 0x1f, 0x35, 0xe2, 0xbb, 0x12, 0xcc, 0x79, + 0x24, 0xf2, 0x4d, 0x72, 0xe2, 0xa2, 0xab, 0xd3, 0x74, 0x9e, 0xcc, 0xba, + 0x35, 0x5d, 0x39, 0xa9, 0xae, 0x87, 0x67, 0xff, 0x00, 0x09, 0x5c, 0xf6, + 0xf6, 0xaf, 0x6b, 0xa6, 0xc4, 0xb1, 0xc6, 0x58, 0x91, 0x2b, 0x8f, 0x9b, + 0x9f, 0x41, 0x58, 0x4f, 0x23, 0xcd, 0x2b, 0x4b, 0x2c, 0x8d, 0x24, 0xad, + 0xcb, 0x3b, 0x1c, 0x93, 0x51, 0x83, 0xc5, 0x19, 0xa8, 0xa7, 0x05, 0x4e, + 0x0a, 0x9c, 0x76, 0x41, 0x39, 0x39, 0xc9, 0xcd, 0xee, 0xc7, 0x96, 0xc2, + 0x1f, 0xa5, 0x61, 0xca, 0xf8, 0x27, 0xeb, 0x5a, 0xd2, 0x3e, 0xd8, 0xd8, + 0xf6, 0x02, 0xb9, 0xe9, 0xa6, 0xdc, 0x0e, 0xde, 0x84, 0xf1, 0x49, 0x81, + 0x34, 0x0e, 0x0d, 0xc8, 0xfa, 0x54, 0x91, 0x4b, 0xb8, 0xbf, 0x18, 0xf9, + 0xb1, 0x55, 0x6d, 0x64, 0x56, 0xb9, 0x1b, 0x5b, 0x3c, 0x53, 0xe1, 0x6f, + 0xde, 0xc8, 0xa4, 0x7f, 0x11, 0x04, 0x91, 0x52, 0xc6, 0x8b, 0x80, 0xe7, + 0x9a, 0xe8, 0x3c, 0x1d, 0xcf, 0x89, 0x2d, 0xfe, 0x8d, 0xfc, 0x8d, 0x73, + 0x64, 0x80, 0x76, 0x02, 0x78, 0xc5, 0x74, 0x3e, 0x08, 0x7d, 0xde, 0x28, + 0x80, 0x7b, 0x37, 0xf2, 0x34, 0xe9, 0x7c, 0x68, 0x25, 0xb3, 0x3d, 0x54, + 0xad, 0x34, 0x8a, 0x98, 0x8a, 0x69, 0x5a, 0xf5, 0xee, 0x72, 0x91, 0x11, + 0x4d, 0x22, 0xa6, 0xdb, 0x4d, 0x22, 0x9d, 0xc5, 0x62, 0x1c, 0x52, 0x11, + 0x52, 0x91, 0x4d, 0x22, 0xaa, 0xe2, 0xb1, 0x11, 0x14, 0x98, 0xa9, 0x08, + 0xa6, 0x91, 0x4e, 0xe2, 0xb1, 0xe4, 0x9f, 0x15, 0xe3, 0x0f, 0xac, 0xd8, + 0x64, 0xe0, 0x08, 0x4f, 0xfe, 0x84, 0x6b, 0x85, 0xb6, 0x86, 0xc3, 0xc9, + 0x73, 0x34, 0xad, 0xbc, 0x0f, 0x90, 0x0e, 0xe6, 0xbb, 0xff, 0x00, 0x8a, + 0xb0, 0x3c, 0xda, 0xc5, 0x80, 0x5c, 0x71, 0x01, 0x27, 0x3f, 0xef, 0x57, + 0x9f, 0xc3, 0x60, 0x84, 0xaf, 0x99, 0x30, 0x5a, 0xf3, 0xb1, 0x12, 0x4a, + 0x6e, 0xec, 0xea, 0xa6, 0x9d, 0x95, 0x8a, 0x9b, 0xa2, 0x18, 0xc2, 0xe7, + 0xe5, 0x34, 0xc0, 0xc7, 0x72, 0xe0, 0x7f, 0x09, 0xfe, 0xb5, 0xd1, 0x47, + 0x61, 0xa1, 0x25, 0xb1, 0x69, 0x6e, 0xcf, 0x99, 0x8e, 0x06, 0x73, 0x5b, + 0xf6, 0x5a, 0x9f, 0x80, 0x6d, 0x7c, 0x35, 0x3d, 0xa5, 0xce, 0x9b, 0x73, + 0x3e, 0xa6, 0x77, 0x79, 0x77, 0x0b, 0xd3, 0xbe, 0xd3, 0xc9, 0xe3, 0xf2, + 0xae, 0x27, 0x88, 0x5f, 0x66, 0x2d, 0xfc, 0x8d, 0xbd, 0x9f, 0x76, 0x8e, + 0x03, 0xf7, 0xa5, 0x92, 0x40, 0x0f, 0x0b, 0xc1, 0xc5, 0x28, 0x6b, 0xa9, + 0xda, 0x36, 0x21, 0xdb, 0x1d, 0x4e, 0x2b, 0xd1, 0x74, 0x8f, 0x88, 0x5a, + 0x2e, 0x9b, 0xe1, 0x0b, 0x9d, 0x15, 0xfc, 0x3d, 0x1c, 0xd2, 0xca, 0x8e, + 0x04, 0xe4, 0x8c, 0x9c, 0xe7, 0x04, 0xf1, 0xd4, 0x76, 0xfa, 0x57, 0x16, + 0x9a, 0xeb, 0xc6, 0xc0, 0x25, 0xbc, 0x7b, 0x58, 0xf4, 0x35, 0x50, 0xa9, + 0x39, 0x36, 0xb9, 0x44, 0xe3, 0x05, 0xd4, 0x8b, 0x4e, 0xd0, 0xb5, 0x8d, + 0x5f, 0x26, 0xc7, 0x4f, 0xbb, 0xba, 0xf2, 0x8e, 0x5f, 0xca, 0x89, 0x9f, + 0x6f, 0xd7, 0x15, 0x4d, 0x34, 0xeb, 0xe9, 0x1f, 0xc9, 0x8e, 0xde, 0x56, + 0x94, 0x31, 0xf9, 0x15, 0x49, 0x6e, 0x3a, 0xf1, 0x5d, 0x7f, 0x85, 0x7e, + 0x25, 0xea, 0xbe, 0x15, 0x33, 0x8b, 0x1b, 0x6b, 0x37, 0x5b, 0x92, 0x03, + 0x2c, 0xa8, 0xc4, 0x0c, 0x74, 0xc6, 0x08, 0xf5, 0x35, 0x89, 0xff, 0x00, + 0x09, 0x6e, 0xad, 0x1e, 0xb1, 0x36, 0xad, 0x6d, 0x30, 0x82, 0xee, 0x69, + 0x5d, 0xd9, 0xa3, 0x5e, 0x32, 0xc7, 0x27, 0x8f, 0x4e, 0x69, 0x29, 0x56, + 0xbb, 0x5c, 0xa8, 0x2d, 0x4f, 0xbb, 0x20, 0xd3, 0x7c, 0x39, 0xab, 0x6b, + 0x57, 0xc6, 0xce, 0xc6, 0xd5, 0xa5, 0xb8, 0x67, 0xe1, 0x32, 0x07, 0xaf, + 0xad, 0x3e, 0xf3, 0xc2, 0xda, 0xd5, 0x8e, 0xad, 0x26, 0x9b, 0x71, 0x65, + 0x22, 0xde, 0x65, 0x54, 0x45, 0xd4, 0x92, 0x71, 0x8c, 0x63, 0xad, 0x4f, + 0xa7, 0xf8, 0xc3, 0x5a, 0xd2, 0x75, 0x03, 0x7f, 0x67, 0x70, 0xb1, 0xdc, + 0x87, 0x27, 0x7f, 0x96, 0xa4, 0xf2, 0x08, 0x3d, 0x45, 0x4d, 0x77, 0xe3, + 0x9f, 0x10, 0x5e, 0xeb, 0x07, 0x54, 0x9e, 0xef, 0x75, 0xda, 0x15, 0x2b, + 0x27, 0x96, 0xa3, 0x1b, 0x4e, 0x47, 0x00, 0x62, 0x87, 0xed, 0xef, 0xa2, + 0x41, 0xfb, 0xaf, 0x32, 0xad, 0xc6, 0xb1, 0x6b, 0x2c, 0x8e, 0x52, 0xcd, + 0x50, 0x75, 0xda, 0x06, 0x7f, 0x0a, 0x67, 0xf6, 0x95, 0x9b, 0x01, 0x9b, + 0x51, 0xd3, 0xfb, 0xa2, 0xa9, 0xad, 0xa0, 0x71, 0x21, 0x04, 0x8c, 0x2e, + 0x6a, 0x3f, 0x28, 0x7c, 0xbc, 0xff, 0x00, 0x09, 0xad, 0xd4, 0x62, 0x95, + 0x8c, 0xef, 0x22, 0xe4, 0x97, 0x56, 0x4e, 0x57, 0x6c, 0x00, 0x7c, 0xbc, + 0x71, 0xd2, 0xac, 0xe9, 0xa9, 0xa3, 0x4a, 0xca, 0x2f, 0x24, 0x68, 0x86, + 0x4e, 0x0a, 0x82, 0x4e, 0x6b, 0x31, 0x6d, 0xd4, 0xaa, 0x9f, 0x30, 0x03, + 0xb4, 0xf1, 0x8a, 0x5f, 0xb2, 0x3c, 0x62, 0x26, 0x3d, 0x18, 0xe4, 0x1f, + 0x5a, 0x4e, 0x29, 0xf5, 0x1a, 0x6c, 0xb5, 0x3c, 0x36, 0x22, 0x78, 0x96, + 0xde, 0x42, 0x50, 0xb7, 0x5c, 0xd3, 0xda, 0xc5, 0x15, 0xe3, 0x11, 0x4d, + 0xb8, 0x67, 0x35, 0x9e, 0x91, 0x36, 0x63, 0xff, 0x00, 0x7a, 0xa7, 0x48, + 0xe4, 0x1b, 0x30, 0x0f, 0xde, 0x3d, 0x29, 0xf2, 0xf9, 0x8a, 0xfe, 0x45, + 0x94, 0xb2, 0x9b, 0x60, 0x64, 0x65, 0x21, 0x49, 0xe8, 0x6a, 0xd5, 0xbd, + 0xf6, 0xb1, 0x6d, 0x66, 0x6d, 0xa0, 0xbb, 0xba, 0x4b, 0x67, 0x04, 0xbc, + 0x49, 0x21, 0xd8, 0xc7, 0xdc, 0x67, 0x06, 0xb3, 0xa3, 0x79, 0x11, 0x40, + 0x0c, 0xc0, 0x1c, 0xe4, 0x54, 0xd0, 0x5d, 0xcd, 0x12, 0xaa, 0xa9, 0xe3, + 0x69, 0x38, 0xa5, 0x28, 0x27, 0xbe, 0xa3, 0x4c, 0xdb, 0xff, 0x00, 0x84, + 0xd3, 0xc4, 0x0b, 0xa4, 0x36, 0x97, 0x25, 0xeb, 0x35, 0x99, 0xf9, 0x8c, + 0x4e, 0x83, 0x93, 0x9c, 0xf5, 0xc6, 0x7a, 0xd5, 0x07, 0xd4, 0x85, 0xc4, + 0xc8, 0x67, 0x81, 0x76, 0x87, 0x19, 0x0b, 0xc5, 0x46, 0x35, 0x0c, 0xa6, + 0x24, 0x8c, 0x37, 0xcb, 0x9a, 0x78, 0x7b, 0x29, 0x4f, 0x29, 0xb0, 0xee, + 0x1d, 0x3d, 0x6a, 0x15, 0x38, 0x2b, 0xd9, 0x58, 0xae, 0x66, 0xfa, 0x97, + 0xd2, 0x1d, 0x0a, 0xe2, 0xcf, 0xf7, 0x72, 0x49, 0x15, 0xc0, 0xcf, 0xdf, + 0x3c, 0x11, 0x5d, 0x2d, 0xef, 0xc2, 0xfb, 0xc8, 0x74, 0xf5, 0xd4, 0xb4, + 0xed, 0x4a, 0xd2, 0xfa, 0xdb, 0x6a, 0x37, 0xc8, 0x48, 0x63, 0xc7, 0x20, + 0x0e, 0xff, 0x00, 0xe7, 0x8a, 0xe2, 0xd6, 0xc2, 0x39, 0x00, 0x30, 0x4c, + 0x0f, 0x07, 0x83, 0x56, 0x6d, 0x26, 0xd4, 0x6c, 0x64, 0xcd, 0xb4, 0xf2, + 0xa6, 0x0a, 0x83, 0xb1, 0xb8, 0xe9, 0x59, 0x4a, 0x9d, 0x45, 0xfc, 0x39, + 0x7d, 0xe5, 0xa9, 0x45, 0xfc, 0x4b, 0xee, 0x3d, 0x4f, 0xe1, 0xf5, 0xbc, + 0xd6, 0xde, 0x1e, 0x78, 0x67, 0x52, 0xb2, 0xac, 0xec, 0x18, 0x1f, 0xc2, + 0xba, 0xdc, 0x57, 0x2f, 0xe0, 0x1b, 0x99, 0xef, 0x7c, 0x3e, 0xd7, 0x17, + 0x2d, 0xba, 0x67, 0x9d, 0xb7, 0x12, 0x31, 0xe9, 0x5d, 0x56, 0x2b, 0xd9, + 0xa3, 0x7f, 0x66, 0xaf, 0xb9, 0xc3, 0x56, 0xdc, 0xee, 0xc3, 0x71, 0x4b, + 0x4b, 0x8a, 0x5c, 0x56, 0x97, 0x22, 0xc5, 0x7b, 0xb1, 0xfe, 0x87, 0x37, + 0xfb, 0x86, 0xb8, 0x73, 0x00, 0xe7, 0x7b, 0x93, 0xcf, 0xd2, 0xbb, 0xab, + 0xbe, 0x2c, 0xe6, 0xff, 0x00, 0x74, 0xd7, 0x12, 0xfc, 0xb1, 0xaf, 0x3b, + 0x19, 0xf1, 0x23, 0xa2, 0x8e, 0xcc, 0x6a, 0xa2, 0xa8, 0x38, 0x00, 0x54, + 0x24, 0xe2, 0x2b, 0xef, 0xa7, 0xf4, 0xa9, 0xb3, 0xda, 0xab, 0x31, 0x3e, + 0x45, 0xef, 0x3f, 0xe7, 0x15, 0xc8, 0x8d, 0x59, 0xce, 0x4f, 0x1a, 0xc9, + 0x1a, 0x02, 0x3b, 0x70, 0x7d, 0x29, 0x2c, 0x4c, 0x82, 0xed, 0x16, 0x4e, + 0x40, 0xe8, 0xde, 0xb4, 0x31, 0xf9, 0x53, 0xe9, 0x53, 0xda, 0x63, 0xcd, + 0x53, 0x5a, 0x22, 0x0d, 0xd8, 0x9b, 0x8a, 0xb0, 0xa6, 0xa9, 0xc4, 0xd5, + 0x61, 0x4d, 0x58, 0x8b, 0x2a, 0xdc, 0x1a, 0xa6, 0x1f, 0xef, 0x7d, 0x6a, + 0x60, 0xd8, 0x15, 0x51, 0x4f, 0x5a, 0x96, 0x33, 0xa1, 0xb5, 0x6f, 0xdc, + 0xa7, 0xd2, 0xad, 0x85, 0x47, 0x18, 0x65, 0x06, 0xb3, 0xad, 0x9b, 0xf7, + 0x29, 0xf4, 0x15, 0x71, 0x1e, 0x80, 0x2e, 0x42, 0x65, 0x88, 0x62, 0x29, + 0x9d, 0x47, 0xf7, 0x4f, 0x23, 0xf5, 0xab, 0x89, 0x7b, 0x32, 0xfd, 0xf8, + 0x95, 0xfd, 0xd4, 0xe2, 0xb2, 0x24, 0xbb, 0x58, 0x64, 0x89, 0x09, 0xfb, + 0xed, 0x8a, 0xb7, 0x6d, 0x72, 0xb3, 0x26, 0xe5, 0x3d, 0x09, 0x15, 0x51, + 0xa9, 0x38, 0xec, 0xc4, 0xe2, 0x99, 0xa4, 0xb7, 0xd0, 0x93, 0x87, 0xdc, + 0x9f, 0xef, 0x2d, 0x55, 0xd7, 0x2e, 0x11, 0x74, 0x4b, 0xa6, 0x46, 0x0e, + 0x4a, 0x6d, 0x1b, 0x4f, 0x73, 0x4a, 0x1c, 0x11, 0x51, 0x5d, 0xc5, 0x13, + 0x40, 0xe4, 0xa0, 0xce, 0x3a, 0x8e, 0x2b, 0x4f, 0xac, 0xca, 0xd6, 0x64, + 0xba, 0x48, 0xe5, 0x3c, 0x30, 0xeb, 0x6f, 0xac, 0xc2, 0x9e, 0x63, 0x29, + 0x61, 0xb5, 0xc1, 0x07, 0x9c, 0x8e, 0x3f, 0x5a, 0xf4, 0x3c, 0x57, 0x28, + 0xa8, 0xb1, 0xb4, 0x72, 0x03, 0xb5, 0x94, 0xe4, 0x1a, 0xd0, 0x1a, 0xac, + 0xff, 0x00, 0xf3, 0xd1, 0x4f, 0xe0, 0x29, 0xd1, 0xae, 0xa1, 0x1b, 0x31, + 0x3a, 0x6f, 0xa1, 0xb7, 0x8a, 0x31, 0x58, 0xc3, 0x55, 0x9c, 0x7f, 0x12, + 0x1f, 0xc2, 0x98, 0x75, 0x09, 0x9a, 0xea, 0x39, 0xc9, 0xe1, 0x01, 0x1b, + 0x01, 0x3b, 0x4e, 0x7b, 0x9a, 0xd7, 0xeb, 0x50, 0x27, 0xd9, 0xb3, 0x73, + 0x14, 0x98, 0xac, 0xe5, 0xd5, 0xff, 0x00, 0xbf, 0x0f, 0xe4, 0xd5, 0x22, + 0xea, 0xd0, 0x1f, 0xbc, 0x8e, 0xbf, 0x4e, 0x6a, 0xd6, 0x22, 0x9b, 0xea, + 0x1c, 0x8c, 0xc6, 0xf1, 0x9d, 0xd4, 0xd6, 0xfa, 0x74, 0x42, 0x09, 0x59, + 0x18, 0xc9, 0x93, 0xb4, 0xf2, 0x71, 0x5b, 0xd6, 0x52, 0x19, 0xac, 0xa1, + 0x72, 0xdb, 0x98, 0xa2, 0x96, 0x3e, 0xf8, 0x06, 0xb9, 0x2f, 0x11, 0x7d, + 0xaf, 0x54, 0xb9, 0x65, 0x85, 0x94, 0x40, 0xb8, 0x29, 0xb8, 0x73, 0xef, + 0x5b, 0x3a, 0x0d, 0xff, 0x00, 0x97, 0xa7, 0xf9, 0x57, 0x92, 0x28, 0x92, + 0x33, 0xb4, 0x10, 0x38, 0x2b, 0x8e, 0x2b, 0x38, 0x56, 0x8b, 0xa8, 0xf5, + 0x0e, 0x47, 0x63, 0x73, 0x14, 0x62, 0xab, 0xff, 0x00, 0x69, 0x59, 0xff, + 0x00, 0xcf, 0x71, 0xf9, 0x1a, 0x69, 0xd5, 0x2c, 0x47, 0x5b, 0x85, 0xfc, + 0x8f, 0xf8, 0x56, 0xfe, 0xd2, 0x3d, 0xc9, 0xb3, 0x2c, 0xe2, 0x8c, 0x55, + 0x43, 0xab, 0xd8, 0x8f, 0xf9, 0x6d, 0x9f, 0xa2, 0x9f, 0xf0, 0xac, 0xbd, + 0x6a, 0x7b, 0x3d, 0x4a, 0xcd, 0xa2, 0x8e, 0xfe, 0xee, 0xda, 0x4f, 0xe1, + 0x92, 0x0d, 0xc0, 0xfe, 0x5d, 0x0d, 0x0e, 0xac, 0x7b, 0x85, 0x99, 0xb9, + 0x24, 0xb1, 0xc2, 0xbb, 0xa5, 0x91, 0x11, 0x7d, 0x59, 0x80, 0x15, 0x97, + 0x77, 0xe2, 0x6d, 0x16, 0xc8, 0x1f, 0x3b, 0x51, 0x83, 0x23, 0xb2, 0x36, + 0xe3, 0xfa, 0x57, 0x8d, 0x78, 0x86, 0x2f, 0x22, 0xed, 0x12, 0x3d, 0x5e, + 0x4b, 0xa4, 0x1c, 0x39, 0x73, 0x86, 0x07, 0xdc, 0x66, 0xb1, 0x44, 0xb6, + 0xca, 0x76, 0xfe, 0xf2, 0x42, 0x7b, 0x0a, 0xe2, 0xad, 0x8d, 0x94, 0x74, + 0x8c, 0x4e, 0xaa, 0x18, 0x55, 0x53, 0x59, 0xc9, 0x25, 0xf8, 0x9e, 0xb9, + 0x7f, 0xf1, 0x37, 0x4c, 0x85, 0xd1, 0x6c, 0xe2, 0x7b, 0x81, 0x92, 0x1b, + 0x77, 0xcb, 0xf4, 0xc5, 0x73, 0xf7, 0xdf, 0x11, 0xf5, 0x7b, 0x9c, 0xad, + 0xac, 0x51, 0x5b, 0x2f, 0xa8, 0x19, 0x3f, 0xad, 0x72, 0x96, 0xd6, 0x73, + 0xca, 0x14, 0x8b, 0x7f, 0x29, 0x58, 0xf1, 0xbb, 0xaf, 0xe5, 0x5a, 0xf6, + 0xfa, 0x38, 0x18, 0x67, 0xe4, 0xfa, 0xb7, 0xf8, 0x57, 0x1c, 0xab, 0xe2, + 0xaa, 0xf5, 0xb2, 0x3b, 0x94, 0x30, 0x74, 0x96, 0xdc, 0xcc, 0xce, 0xbb, + 0xbd, 0xd4, 0xb5, 0x59, 0x37, 0x5d, 0x5c, 0xcb, 0x39, 0xff, 0x00, 0x68, + 0xf0, 0x2a, 0xbc, 0x7a, 0x7b, 0xc9, 0x33, 0x23, 0x73, 0x80, 0x38, 0x1c, + 0xd7, 0x4a, 0x6d, 0xa3, 0x87, 0x68, 0xdb, 0xb8, 0x93, 0x8e, 0x7b, 0x52, + 0x32, 0x05, 0x76, 0x60, 0x00, 0xc8, 0xc5, 0x4c, 0x68, 0x2b, 0xde, 0x4e, + 0xec, 0x89, 0xe3, 0x64, 0xd5, 0xa0, 0xac, 0x8e, 0x70, 0x47, 0xe5, 0x13, + 0x18, 0x18, 0xda, 0x48, 0xc5, 0x3d, 0x3b, 0xd2, 0xcd, 0xfe, 0xbe, 0x4f, + 0xf7, 0x8d, 0x24, 0x7d, 0xeb, 0xc8, 0xab, 0xf1, 0x33, 0xe8, 0x28, 0xeb, + 0x18, 0xfa, 0x13, 0xc3, 0xc4, 0xc8, 0x7f, 0xda, 0x1f, 0xce, 0xbd, 0x37, + 0x57, 0x51, 0x37, 0x86, 0xa5, 0x52, 0x32, 0x0a, 0x81, 0x5e, 0x61, 0x19, + 0xfd, 0xea, 0xfd, 0x45, 0x7a, 0x7c, 0xcc, 0x25, 0xf0, 0xfc, 0x9f, 0xee, + 0x8a, 0xe7, 0xbd, 0xa4, 0x6e, 0xd5, 0xe2, 0xce, 0x7f, 0xc3, 0x50, 0x85, + 0xbb, 0x18, 0xe8, 0xa0, 0x8a, 0xe6, 0xbc, 0x77, 0x3c, 0xb1, 0xea, 0xa2, + 0xdd, 0x5b, 0x11, 0xb8, 0xcb, 0x0f, 0xa5, 0x76, 0xbe, 0x1f, 0x84, 0xfd, + 0xa5, 0xbb, 0xf5, 0x35, 0xc4, 0xf8, 0xfd, 0x7f, 0xe2, 0x7c, 0x83, 0xfd, + 0x93, 0x5d, 0xd4, 0xa7, 0xcc, 0x78, 0x38, 0xda, 0x7c, 0xb5, 0x2d, 0xe4, + 0x71, 0x8f, 0x24, 0x92, 0x44, 0x8c, 0xee, 0x49, 0x0d, 0x8c, 0x93, 0xda, + 0xba, 0xad, 0x17, 0x3f, 0x67, 0x5c, 0x7a, 0xd7, 0x2e, 0x53, 0xf7, 0x09, + 0xfe, 0xfd, 0x75, 0x5a, 0x3a, 0xe2, 0x11, 0x9f, 0x5a, 0xd9, 0xb3, 0x82, + 0xac, 0x7d, 0xd3, 0xa3, 0xb7, 0xc8, 0x9f, 0xa8, 0xfb, 0xa2, 0xba, 0x3b, + 0x17, 0x5d, 0xbc, 0xb7, 0xe4, 0x3f, 0xc6, 0xb9, 0xd8, 0x01, 0x37, 0x07, + 0x1d, 0x36, 0x8e, 0xf5, 0xd2, 0x69, 0xb8, 0x03, 0xaa, 0xe7, 0xe8, 0x6a, + 0x5e, 0xc7, 0x1c, 0x96, 0xa6, 0x87, 0x85, 0xde, 0xda, 0x3d, 0x63, 0x51, + 0x7b, 0x92, 0xaa, 0x8a, 0x88, 0xc4, 0xb7, 0x61, 0x8a, 0x93, 0xc4, 0x13, + 0xde, 0xea, 0xf2, 0x21, 0xf0, 0xf4, 0x4f, 0x75, 0x6e, 0x14, 0x82, 0xf1, + 0xae, 0x14, 0x12, 0x30, 0x79, 0x3e, 0xd4, 0x9e, 0x1f, 0xb4, 0xfe, 0xd0, + 0xd4, 0xf5, 0x2b, 0x33, 0xc4, 0x32, 0x2c, 0x7e, 0x73, 0x63, 0x04, 0x28, + 0x1d, 0x07, 0xd7, 0xa5, 0x77, 0x12, 0xcf, 0x1e, 0x97, 0x6a, 0xb1, 0xc1, + 0x6c, 0x4c, 0x51, 0x80, 0x16, 0x38, 0xd7, 0xa0, 0xae, 0x36, 0xd2, 0x77, + 0x66, 0xe9, 0xa8, 0xd9, 0xee, 0xcf, 0x08, 0xb9, 0x86, 0x6b, 0x5b, 0x96, + 0xb6, 0xb9, 0xf3, 0x62, 0x98, 0x7d, 0xe0, 0x79, 0xad, 0xa5, 0x5d, 0x6a, + 0xea, 0xc6, 0x3f, 0xb2, 0xc9, 0xf6, 0xab, 0x58, 0x46, 0x02, 0x45, 0xf7, + 0x94, 0x7b, 0x8a, 0xf4, 0x9b, 0xb5, 0xd1, 0x75, 0x50, 0x2e, 0x66, 0xb6, + 0x8a, 0x49, 0x59, 0x96, 0x06, 0x49, 0x70, 0xac, 0x32, 0x78, 0xfe, 0x75, + 0xc2, 0x6a, 0xd7, 0xb0, 0x78, 0x73, 0x59, 0xff, 0x00, 0x89, 0x6c, 0x37, + 0x16, 0xc5, 0x64, 0x2b, 0x70, 0xbd, 0x57, 0x6f, 0x6c, 0x1e, 0xfd, 0x73, + 0x52, 0xe5, 0x7d, 0x8e, 0xb8, 0xd5, 0xe7, 0xe9, 0xa9, 0x47, 0x42, 0xbd, + 0x66, 0x76, 0xb7, 0x91, 0x17, 0xca, 0x63, 0xfb, 0xc3, 0x21, 0xc1, 0xce, + 0x78, 0xc5, 0x5b, 0x79, 0x24, 0xfe, 0xd2, 0x36, 0xa9, 0x60, 0x8d, 0x6c, + 0xd2, 0x6d, 0xe4, 0x61, 0x49, 0xfe, 0xb5, 0x34, 0xb1, 0x5b, 0x6a, 0x49, + 0x03, 0xc3, 0x08, 0x12, 0x48, 0x0c, 0xa6, 0x42, 0x48, 0xe8, 0x79, 0xc0, + 0xf7, 0xc8, 0x35, 0xd0, 0x68, 0x37, 0x71, 0x5c, 0x5b, 0x88, 0xd9, 0x5c, + 0xbb, 0xa6, 0xf0, 0xc4, 0x71, 0x19, 0xe9, 0x8c, 0x9e, 0xf5, 0x8c, 0xe5, + 0x6d, 0x6c, 0x6a, 0x9a, 0x7a, 0x98, 0x1e, 0x30, 0x81, 0xa2, 0xd2, 0xd5, + 0x4c, 0x51, 0x15, 0xdc, 0xb8, 0x60, 0x3e, 0x65, 0xf6, 0xae, 0x62, 0xe9, + 0x42, 0xdb, 0x26, 0x47, 0x6f, 0x4a, 0xec, 0xbc, 0x5a, 0xea, 0xfa, 0x13, + 0xc7, 0xf2, 0xb6, 0xc9, 0x17, 0x0c, 0x00, 0xdd, 0xd7, 0xb9, 0xae, 0x4e, + 0xed, 0x09, 0x81, 0x7a, 0xf1, 0xed, 0x55, 0x87, 0x33, 0xac, 0xf4, 0x31, + 0x30, 0xbe, 0x7a, 0x60, 0x0f, 0xbd, 0x4e, 0xd5, 0x00, 0x33, 0x45, 0xce, + 0xd1, 0xea, 0x68, 0x29, 0x8b, 0x84, 0x1c, 0x63, 0x77, 0xad, 0x2e, 0xa0, + 0xa4, 0xcf, 0x10, 0x1d, 0x73, 0x5d, 0x13, 0xdc, 0xce, 0x1f, 0x0b, 0x2c, + 0x34, 0x19, 0xbb, 0x93, 0x6e, 0xd6, 0x2b, 0x10, 0x39, 0x1c, 0x76, 0xad, + 0x7f, 0x09, 0x2b, 0xa7, 0x88, 0x20, 0x05, 0x70, 0x1e, 0x36, 0x27, 0xde, + 0xaa, 0x18, 0x19, 0x6f, 0x25, 0x00, 0x64, 0x79, 0x43, 0x24, 0x76, 0xe2, + 0xb4, 0x7c, 0x2d, 0x10, 0x5f, 0x11, 0x5b, 0x10, 0x73, 0xfb, 0xa6, 0xcf, + 0x15, 0xc3, 0xcd, 0x73, 0xd1, 0x4b, 0x54, 0x5a, 0xf8, 0x96, 0x99, 0xd3, + 0x2d, 0x8f, 0xa3, 0x9f, 0xe5, 0x5c, 0x2e, 0x90, 0x8b, 0x0c, 0x12, 0xa8, + 0x1e, 0x95, 0xe8, 0x3f, 0x12, 0x13, 0xfe, 0x25, 0x76, 0xff, 0x00, 0xef, + 0x9f, 0xe5, 0x5c, 0x1d, 0x98, 0xc2, 0x49, 0xf8, 0x57, 0x4b, 0xff, 0x00, + 0x77, 0x6b, 0xfa, 0xdc, 0xde, 0x92, 0xfd, 0xea, 0x66, 0x55, 0xd8, 0xcd, + 0xcb, 0x1c, 0x77, 0xa6, 0x2f, 0x5a, 0x96, 0xe7, 0xfe, 0x3e, 0x1f, 0xeb, + 0x51, 0x0f, 0xbd, 0x57, 0x1d, 0x91, 0xd7, 0x6b, 0x12, 0x77, 0x15, 0x25, + 0xce, 0x9b, 0xe4, 0xc4, 0xac, 0x83, 0x6e, 0x58, 0x75, 0xe9, 0xcd, 0x46, + 0xbf, 0x78, 0x7d, 0x6b, 0xa0, 0x2a, 0x24, 0x85, 0x54, 0x80, 0x47, 0x07, + 0xf2, 0xae, 0xdc, 0x24, 0x23, 0x24, 0xee, 0x79, 0xf8, 0xea, 0xb2, 0xa6, + 0xe2, 0xe2, 0xce, 0x78, 0xc5, 0x3d, 0xbb, 0x6e, 0x04, 0x8c, 0x77, 0x15, + 0x66, 0x1d, 0x66, 0xf6, 0x0e, 0x3c, 0xc2, 0xe3, 0xd0, 0xf3, 0x5a, 0xef, + 0x1c, 0x72, 0xca, 0xc8, 0x57, 0x04, 0x00, 0x77, 0x0a, 0xa5, 0x71, 0xa5, + 0x86, 0xcb, 0x27, 0x5f, 0x51, 0xc1, 0xad, 0x9e, 0x1e, 0x51, 0xd6, 0x9b, + 0x30, 0x8e, 0x36, 0x13, 0xd2, 0xac, 0x42, 0x1f, 0x13, 0x84, 0x66, 0x17, + 0x2a, 0x0e, 0x4f, 0x04, 0x71, 0x8a, 0xba, 0x3c, 0x45, 0x62, 0xc0, 0x7e, + 0xf3, 0x6e, 0x7b, 0xb7, 0x4a, 0xe7, 0x2e, 0x2d, 0xe7, 0x8c, 0xb0, 0x11, + 0x09, 0x31, 0xd4, 0x74, 0x3f, 0x95, 0x64, 0x4f, 0x35, 0xb6, 0x4a, 0xcd, + 0x6d, 0x22, 0x11, 0xed, 0x8a, 0x71, 0xa9, 0x56, 0x3a, 0x49, 0x0e, 0x74, + 0xf0, 0xf3, 0x57, 0x83, 0xb1, 0xea, 0x7a, 0x3e, 0xa1, 0x6b, 0x2d, 0xce, + 0x52, 0xe6, 0x26, 0xe3, 0xb3, 0x0a, 0xe8, 0xd6, 0x65, 0x3f, 0xc4, 0x3f, + 0x3a, 0xf0, 0x7b, 0x18, 0xad, 0x27, 0xbd, 0x0a, 0xd7, 0x8f, 0x04, 0x67, + 0xa6, 0x17, 0x2c, 0x4d, 0x7a, 0x26, 0x88, 0x74, 0xed, 0x22, 0x3f, 0xbf, + 0x75, 0x34, 0x87, 0xf8, 0xa4, 0xc9, 0xc7, 0xd0, 0x56, 0xf2, 0x5c, 0xda, + 0x9c, 0x6a, 0x5c, 0xaf, 0x96, 0xe7, 0x72, 0xac, 0x29, 0xe1, 0xab, 0x9f, + 0x5f, 0x10, 0x5a, 0x0e, 0xa5, 0xc7, 0xd5, 0x6a, 0x74, 0xf1, 0x16, 0x9e, + 0x7a, 0xca, 0x47, 0xfc, 0x04, 0xd4, 0x38, 0xb2, 0xd4, 0xd1, 0xab, 0x71, + 0x0a, 0x5c, 0x44, 0x55, 0xc7, 0xd0, 0xfa, 0x56, 0x5d, 0xbc, 0x83, 0x4f, + 0x33, 0x97, 0x7c, 0x11, 0x85, 0x52, 0x3d, 0x4f, 0x4a, 0x78, 0xf1, 0x0e, + 0x9b, 0xff, 0x00, 0x3d, 0xff, 0x00, 0xf1, 0xd3, 0x5c, 0xb7, 0x89, 0xb5, + 0x14, 0xb8, 0x91, 0x8d, 0x93, 0x12, 0x48, 0x04, 0x38, 0xe0, 0x64, 0x1a, + 0x6b, 0x99, 0x2b, 0x58, 0x4d, 0xc7, 0x7b, 0x9d, 0x57, 0xc2, 0x9d, 0x76, + 0xe6, 0xff, 0x00, 0xfb, 0x52, 0xdf, 0x50, 0xbd, 0x79, 0xe6, 0xfb, 0x46, + 0xe8, 0x95, 0xce, 0x4e, 0x30, 0x73, 0x8f, 0xca, 0xbd, 0x33, 0x6d, 0x7c, + 0xd3, 0xa3, 0x4b, 0xaa, 0xe9, 0x3a, 0x8c, 0x77, 0x16, 0xd7, 0x46, 0x23, + 0xbf, 0x2c, 0x50, 0xf3, 0x8e, 0xf5, 0xeb, 0x96, 0x5f, 0x12, 0xed, 0x05, + 0xb8, 0x5b, 0xcb, 0x59, 0x7c, 0xd5, 0x5f, 0xbd, 0x1e, 0x30, 0xc7, 0xfa, + 0x57, 0x75, 0x3a, 0x8a, 0xd6, 0x67, 0x1b, 0x56, 0x67, 0x77, 0xb6, 0x97, + 0x6d, 0x70, 0x52, 0xfc, 0x50, 0x80, 0x29, 0xf2, 0x74, 0xd9, 0x09, 0xed, + 0xbe, 0x40, 0x3f, 0x90, 0xac, 0xb7, 0xf8, 0x95, 0xa8, 0x9b, 0xcf, 0x39, + 0x2d, 0x61, 0x58, 0xf6, 0x6d, 0xf2, 0xc9, 0x24, 0x67, 0x3d, 0x7e, 0xb5, + 0x6e, 0xac, 0x42, 0xc7, 0xa9, 0x6d, 0xa3, 0x6d, 0x79, 0x4c, 0xbf, 0x12, + 0x75, 0x97, 0x3f, 0xbb, 0x5b, 0x68, 0xc7, 0xa0, 0x4c, 0xff, 0x00, 0x33, + 0x55, 0xa4, 0xf8, 0x85, 0xaf, 0xb2, 0x90, 0x2e, 0x22, 0x5c, 0xf7, 0x58, + 0x85, 0x2f, 0x6a, 0x82, 0xc7, 0x37, 0xf1, 0x16, 0xf9, 0xe6, 0xf1, 0xc5, + 0xd0, 0x49, 0x9e, 0x53, 0x6f, 0x85, 0x8f, 0x03, 0xee, 0x71, 0xc8, 0xfc, + 0xeb, 0xda, 0xf4, 0x1d, 0x52, 0xda, 0xe3, 0xc3, 0x3a, 0x7d, 0xe4, 0x92, + 0xa4, 0x2a, 0xf0, 0x2e, 0x7c, 0xc7, 0x03, 0x04, 0x0c, 0x1a, 0xf0, 0xf9, + 0xdd, 0xae, 0xa5, 0x96, 0xe2, 0x67, 0x32, 0x4b, 0x23, 0x16, 0x67, 0x3d, + 0x49, 0x35, 0x7e, 0xdd, 0x07, 0xd9, 0xd0, 0x75, 0x03, 0xb1, 0xa8, 0x53, + 0x77, 0xb8, 0x9e, 0xf7, 0x3d, 0x72, 0xef, 0xc6, 0x3a, 0x1d, 0xa0, 0x23, + 0xed, 0x9e, 0x73, 0x03, 0x8d, 0xb0, 0xa9, 0x6f, 0xfe, 0xb5, 0x60, 0xde, + 0x7c, 0x44, 0x63, 0x91, 0x63, 0x61, 0x8f, 0xf6, 0xe7, 0x6f, 0xe8, 0x3f, + 0xc6, 0xb8, 0x70, 0x31, 0x4c, 0x92, 0x41, 0x1e, 0xdc, 0xf7, 0x38, 0xaa, + 0xe6, 0x62, 0x66, 0xcd, 0xf7, 0x89, 0x35, 0x7d, 0x44, 0x15, 0x9e, 0xf1, + 0xd5, 0x0f, 0x54, 0x8b, 0xe4, 0x1f, 0xa5, 0x65, 0x7a, 0x9e, 0xfe, 0xb5, + 0x14, 0x13, 0x09, 0x95, 0x88, 0xec, 0xc4, 0x54, 0xb5, 0x37, 0x11, 0x0d, + 0xcf, 0xfa, 0xbf, 0xc6, 0xa9, 0x29, 0xff, 0x00, 0x49, 0x4a, 0xb9, 0x73, + 0xfe, 0xaa, 0xa8, 0x29, 0xff, 0x00, 0x49, 0x4a, 0x4c, 0x66, 0x9e, 0x68, + 0xcd, 0x37, 0x3c, 0x52, 0x13, 0x49, 0x8c, 0x6c, 0xed, 0x88, 0x5c, 0x9f, + 0x43, 0x5c, 0xc8, 0xdd, 0x33, 0x9c, 0x7c, 0xb1, 0xfa, 0xf7, 0x35, 0xd2, + 0xb9, 0xca, 0x9f, 0xa5, 0x61, 0xb7, 0x0c, 0x71, 0xeb, 0x50, 0xca, 0x16, + 0xd1, 0x15, 0x2e, 0x40, 0x03, 0x03, 0x15, 0x69, 0x40, 0xf3, 0x24, 0xe3, + 0xf8, 0xaa, 0xb5, 0xb7, 0x37, 0x43, 0xe9, 0x56, 0x41, 0xfd, 0xec, 0x9e, + 0x99, 0xa8, 0x65, 0x20, 0x28, 0x33, 0x95, 0x25, 0x4f, 0xa8, 0xae, 0x87, + 0xc0, 0xc8, 0xc3, 0xc5, 0x56, 0xf9, 0x39, 0x04, 0x37, 0xf2, 0x35, 0x82, + 0x0d, 0x74, 0xbe, 0x06, 0x00, 0xf8, 0xa6, 0xdb, 0xe8, 0xdf, 0xfa, 0x09, + 0xa7, 0x4f, 0xe3, 0x41, 0x2d, 0x8f, 0x57, 0x2b, 0x4d, 0x2b, 0x53, 0x95, + 0xa6, 0x95, 0xaf, 0x51, 0x33, 0x9e, 0xc4, 0x05, 0x69, 0x0a, 0xd4, 0xc5, + 0x69, 0xa5, 0x6a, 0x93, 0x26, 0xc4, 0x24, 0x53, 0x4a, 0xd4, 0xa5, 0x69, + 0xa4, 0x55, 0x26, 0x22, 0x22, 0x29, 0xa4, 0x54, 0xa5, 0x69, 0xa5, 0x69, + 0xdc, 0x56, 0x3c, 0xb3, 0xe2, 0x5e, 0x9f, 0x7d, 0xa8, 0xeb, 0x96, 0x31, + 0x58, 0xc1, 0x24, 0xce, 0x2d, 0xd9, 0x99, 0x63, 0x1d, 0x81, 0xaf, 0x3b, + 0x1a, 0x2d, 0xf9, 0x23, 0x74, 0x25, 0x71, 0xc9, 0xdc, 0x6b, 0xd3, 0xbe, + 0x21, 0xea, 0xf7, 0x3a, 0x2e, 0xbb, 0x65, 0x35, 0xb0, 0x52, 0xcf, 0x6e, + 0xca, 0x77, 0x7a, 0x66, 0xbc, 0xde, 0xe3, 0x5b, 0xbf, 0xba, 0x94, 0xb9, + 0x93, 0x6e, 0xee, 0xc8, 0x31, 0x5e, 0x75, 0x67, 0x53, 0xda, 0xbb, 0x25, + 0x63, 0xae, 0x1e, 0xcf, 0x91, 0x5e, 0xf7, 0x10, 0x78, 0x7e, 0x60, 0xc4, + 0x49, 0x22, 0xa9, 0x0b, 0xdb, 0xde, 0xa2, 0x9f, 0x4d, 0x86, 0xda, 0xfa, + 0x28, 0x1e, 0x7d, 0xc8, 0x57, 0x96, 0xe9, 0x8a, 0x85, 0xbe, 0xd7, 0x3b, + 0x12, 0x4c, 0xae, 0x48, 0xc1, 0x3c, 0xf3, 0x56, 0xec, 0xfc, 0x37, 0xac, + 0x6a, 0x33, 0x34, 0x56, 0xd6, 0x52, 0xc9, 0x22, 0x44, 0xce, 0xcb, 0xdc, + 0x28, 0xeb, 0xd6, 0xa3, 0x9a, 0xdf, 0x1b, 0x43, 0xb5, 0xfe, 0x14, 0x56, + 0xbe, 0x82, 0xce, 0xde, 0xe4, 0x24, 0x12, 0x6f, 0x4d, 0x9d, 0x73, 0x9a, + 0xae, 0xdf, 0x66, 0xdb, 0x1e, 0xce, 0x1b, 0x3c, 0xd3, 0x4d, 0xbb, 0x02, + 0x01, 0x23, 0xee, 0x9a, 0x9a, 0x3d, 0x39, 0xda, 0x34, 0x91, 0x9d, 0x55, + 0x4f, 0x4c, 0xf7, 0xaa, 0xd2, 0xdb, 0x93, 0xa9, 0x0a, 0x18, 0x06, 0xcf, + 0xbc, 0x4e, 0xef, 0x4a, 0x7c, 0x17, 0x51, 0xc2, 0xa4, 0xb4, 0x21, 0x81, + 0x3d, 0xc5, 0x6d, 0x69, 0x3e, 0x10, 0xbd, 0xd4, 0xd0, 0x49, 0x02, 0x3b, + 0xa2, 0xb7, 0x2c, 0xa8, 0x48, 0xae, 0xab, 0xc4, 0x3f, 0x0f, 0xb4, 0xdd, + 0x1f, 0xc2, 0x76, 0x57, 0x2d, 0x2d, 0xd2, 0xea, 0x52, 0x49, 0xb5, 0xd1, + 0xd4, 0x6c, 0xc6, 0x0f, 0x4f, 0xd3, 0xbd, 0x73, 0x4b, 0x13, 0x4a, 0x32, + 0xe5, 0xb9, 0xb2, 0xa3, 0x39, 0x46, 0xe7, 0x9f, 0xdc, 0xdf, 0xc3, 0x24, + 0x61, 0x56, 0x00, 0xa5, 0x5b, 0x93, 0xeb, 0x52, 0xc7, 0xaa, 0xc0, 0x83, + 0x0d, 0x6e, 0x1b, 0x6f, 0x5f, 0x7a, 0xa7, 0x73, 0x6e, 0xb0, 0xcb, 0x22, + 0x31, 0x39, 0x0d, 0x51, 0x14, 0x4d, 0xd2, 0x75, 0xae, 0x8e, 0x58, 0xb3, + 0x1b, 0xb5, 0xa1, 0x76, 0x5d, 0x23, 0x51, 0x86, 0x18, 0xe6, 0x92, 0xce, + 0xe1, 0x23, 0x9c, 0x7e, 0xed, 0x8a, 0x10, 0x1f, 0xe9, 0xeb, 0x45, 0xee, + 0x8d, 0xa9, 0xe9, 0xcc, 0x8b, 0x7b, 0x61, 0x75, 0x6c, 0xce, 0x84, 0xa8, + 0x96, 0x26, 0x52, 0x47, 0xb6, 0x45, 0x7a, 0x6e, 0xaf, 0xf1, 0x4b, 0x49, + 0xd4, 0x74, 0xeb, 0x2b, 0x58, 0xb4, 0x99, 0x2d, 0xcd, 0xb3, 0x2b, 0x82, + 0xae, 0x38, 0xc0, 0xc7, 0x15, 0x63, 0x5b, 0xf8, 0xa5, 0xa1, 0x6b, 0x1a, + 0x25, 0xbc, 0x12, 0x58, 0xdc, 0xb5, 0xf4, 0x78, 0xcc, 0xce, 0xab, 0xc7, + 0xae, 0x0e, 0x7b, 0xe3, 0xa6, 0x2b, 0x8f, 0xeb, 0x15, 0xfa, 0xc0, 0xdb, + 0xd9, 0x52, 0xfe, 0x63, 0xc9, 0xad, 0xb4, 0xeb, 0xeb, 0xa0, 0xed, 0x6f, + 0x6b, 0x71, 0x28, 0x8a, 0x32, 0xd2, 0x18, 0xe3, 0x2d, 0xb0, 0x7a, 0x9c, + 0x74, 0x15, 0x17, 0x9b, 0x31, 0x11, 0x2b, 0x3b, 0x10, 0xa7, 0x80, 0x7b, + 0x57, 0xb1, 0x78, 0x77, 0xe2, 0x3f, 0x86, 0x34, 0xed, 0x26, 0x58, 0x9a, + 0x1b, 0x88, 0x2f, 0x25, 0xff, 0x00, 0x58, 0xfe, 0x58, 0x21, 0xc7, 0x38, + 0xfc, 0xab, 0x37, 0xfb, 0x5f, 0xe1, 0xf4, 0xba, 0x55, 0xd7, 0x99, 0x6a, + 0xff, 0x00, 0x6f, 0x6c, 0xf9, 0x32, 0x6d, 0x38, 0xf6, 0xe3, 0xa5, 0x35, + 0x8a, 0x9d, 0xed, 0x2a, 0x6c, 0x3d, 0x8c, 0x2d, 0x75, 0x23, 0xcb, 0xa3, + 0x66, 0xcc, 0x7c, 0xff, 0x00, 0x15, 0x5b, 0xb5, 0xb8, 0x68, 0x1d, 0x4e, + 0xc0, 0xd9, 0x24, 0x60, 0xd7, 0xa0, 0x69, 0xba, 0x7f, 0x80, 0xee, 0x74, + 0x29, 0xa6, 0xb9, 0xd4, 0x8a, 0xea, 0x23, 0x71, 0x8e, 0x2d, 0xbb, 0x54, + 0x9e, 0xdd, 0xbf, 0xad, 0x3f, 0x4d, 0xf0, 0x97, 0x85, 0xa6, 0xd2, 0x1f, + 0x51, 0x9f, 0x58, 0x80, 0xbc, 0x4f, 0xb8, 0x5a, 0xa4, 0xa0, 0x33, 0xaf, + 0x71, 0xcf, 0x39, 0x35, 0x4f, 0x17, 0x0e, 0xa9, 0xa1, 0x7b, 0x09, 0x6e, + 0x99, 0xe7, 0x6b, 0x21, 0xc8, 0xe3, 0xd6, 0x9f, 0x13, 0x21, 0x65, 0xdd, + 0xd3, 0x69, 0xcd, 0x7a, 0x7e, 0x9d, 0xf0, 0xef, 0x45, 0xd6, 0x25, 0xbb, + 0xd4, 0xe3, 0xba, 0x96, 0xd7, 0x48, 0x8c, 0x90, 0x91, 0xac, 0x81, 0xa4, + 0x5e, 0x3d, 0x4e, 0x78, 0xfc, 0xcd, 0x61, 0x4b, 0xf0, 0xe2, 0xf9, 0x74, + 0xfb, 0xad, 0x4a, 0x29, 0x97, 0xec, 0x30, 0x2b, 0x6c, 0x91, 0xd7, 0x05, + 0xf9, 0xc7, 0x41, 0xd2, 0x85, 0x8b, 0xa5, 0x27, 0x6b, 0xd8, 0x4e, 0x8c, + 0xe2, 0xae, 0x63, 0xe9, 0xfa, 0x5e, 0x9f, 0xa8, 0x5c, 0xc7, 0x01, 0xbb, + 0x48, 0xb7, 0x95, 0x52, 0xcc, 0x78, 0x03, 0xd6, 0xbb, 0x7b, 0xbf, 0x83, + 0x17, 0x9e, 0x5f, 0x9d, 0xa7, 0x6a, 0x96, 0xf7, 0x09, 0x8d, 0xe3, 0x78, + 0xdb, 0xbb, 0xe9, 0x8c, 0xd7, 0x25, 0xff, 0x00, 0x08, 0x36, 0xac, 0x3c, + 0x34, 0xda, 0xf2, 0xb4, 0x06, 0xd8, 0x10, 0xbb, 0x04, 0x9f, 0xbc, 0x3c, + 0xe3, 0x20, 0x63, 0xa6, 0x7d, 0xf3, 0x50, 0x58, 0xff, 0x00, 0xc2, 0x4b, + 0x6b, 0x0d, 0xc4, 0xb6, 0x47, 0x50, 0x48, 0x63, 0xe2, 0x56, 0x8b, 0x76, + 0x15, 0x7d, 0xf1, 0xda, 0xa2, 0x6e, 0x4d, 0xde, 0x9c, 0xca, 0x4a, 0xca, + 0xce, 0x26, 0x7d, 0xe6, 0x95, 0x79, 0xa6, 0xdc, 0xb4, 0x32, 0xae, 0x1d, + 0x01, 0xce, 0xd3, 0x49, 0x0c, 0xd3, 0x44, 0xff, 0x00, 0x78, 0xf5, 0x5c, + 0xe7, 0xe9, 0x44, 0xda, 0x85, 0xdd, 0xc4, 0x9e, 0x64, 0xf2, 0x17, 0x72, + 0xb8, 0x24, 0xd3, 0xa2, 0xb8, 0x1b, 0x97, 0xcc, 0x5c, 0x8d, 0xcb, 0x9a, + 0xe8, 0x5c, 0xd6, 0xf7, 0x8c, 0xf4, 0xe8, 0x7a, 0xff, 0x00, 0xc3, 0x86, + 0x33, 0x78, 0x64, 0x33, 0x60, 0x16, 0x9d, 0xbf, 0xa5, 0x76, 0x2b, 0x18, + 0x19, 0xcf, 0x35, 0xe5, 0x7e, 0x18, 0xbe, 0xf2, 0xf4, 0x47, 0x48, 0x52, + 0x60, 0x82, 0x62, 0xc0, 0xa0, 0xc8, 0x1c, 0x7b, 0x57, 0xa8, 0x69, 0xb7, + 0x36, 0xf3, 0xd8, 0x42, 0xeb, 0x2a, 0x3b, 0x6c, 0x1b, 0xb9, 0xc9, 0x07, + 0xde, 0xb6, 0x9e, 0x2d, 0x42, 0x02, 0x8e, 0x1d, 0xce, 0x5a, 0x8a, 0xe1, + 0x63, 0x50, 0x5c, 0x85, 0xc9, 0xef, 0x46, 0x33, 0xd3, 0x07, 0xe9, 0x4d, + 0xd4, 0x5c, 0x3c, 0x51, 0xa2, 0xe3, 0xe6, 0x6e, 0x2b, 0x35, 0x22, 0x26, + 0x43, 0x1f, 0xda, 0x4c, 0x7b, 0x4e, 0x76, 0xab, 0x1c, 0x9f, 0xc0, 0x75, + 0xac, 0xa1, 0x98, 0x3b, 0x7b, 0xe8, 0xd2, 0x78, 0x35, 0xf6, 0x59, 0x6e, + 0xfc, 0x62, 0xc2, 0x6f, 0xf7, 0x4d, 0x70, 0xce, 0x79, 0x35, 0xd7, 0x5d, + 0x3c, 0xe9, 0xa5, 0x5c, 0x06, 0x85, 0xb6, 0x85, 0xe1, 0x9d, 0xb9, 0x23, + 0xe9, 0x5c, 0x68, 0x60, 0x58, 0xe7, 0xaf, 0x24, 0x8a, 0x2b, 0x56, 0x8d, + 0x56, 0xa5, 0x13, 0x25, 0x4d, 0xd3, 0xba, 0x63, 0xf3, 0x8a, 0xa6, 0x64, + 0x1e, 0x45, 0xe8, 0xcf, 0x3f, 0xfd, 0x6a, 0x96, 0x46, 0xc2, 0xe1, 0xb9, + 0x35, 0x4f, 0xe6, 0x2b, 0x7e, 0xcd, 0x8f, 0xba, 0x07, 0xe9, 0x59, 0x21, + 0xb3, 0x11, 0xf2, 0x15, 0x3d, 0x31, 0x53, 0x5a, 0xb8, 0x59, 0x01, 0x27, + 0x15, 0x05, 0xc9, 0xc2, 0xc3, 0x82, 0x72, 0x13, 0xfa, 0xd2, 0x45, 0x27, + 0xcc, 0x01, 0xea, 0x45, 0x68, 0x88, 0x67, 0x41, 0x13, 0x02, 0x32, 0x0d, + 0x5a, 0x46, 0xac, 0x48, 0xa5, 0x68, 0xfa, 0x1f, 0xc2, 0xaf, 0xc3, 0x76, + 0xa7, 0x01, 0xb8, 0x35, 0x57, 0x02, 0xf9, 0x3f, 0x29, 0xaa, 0x48, 0xdc, + 0x1a, 0xb1, 0xe6, 0x02, 0x84, 0x83, 0x9e, 0x2a, 0x9a, 0x1e, 0xb4, 0x98, + 0x1d, 0x04, 0x0d, 0xfb, 0xa4, 0xfa, 0x55, 0x94, 0x7c, 0x55, 0x18, 0x1b, + 0xf7, 0x6b, 0xf4, 0xa2, 0xea, 0x5f, 0x2e, 0x12, 0xd9, 0xc5, 0x21, 0x99, + 0xde, 0x20, 0xd4, 0xbe, 0xcd, 0x7b, 0x02, 0xa9, 0xc3, 0x81, 0x95, 0x3f, + 0x8d, 0x69, 0xf8, 0x72, 0xf4, 0x4f, 0x1c, 0xeb, 0xbb, 0x90, 0xf9, 0xc7, + 0xd6, 0xb8, 0x9d, 0x47, 0x51, 0x32, 0xde, 0xb4, 0x92, 0x63, 0x68, 0x5c, + 0x03, 0xe8, 0x45, 0x4d, 0xa1, 0xeb, 0x0b, 0x1c, 0xe8, 0x04, 0x8c, 0xb9, + 0x71, 0xb8, 0x11, 0x8c, 0x8a, 0x8e, 0x7f, 0x7a, 0xc6, 0xca, 0x9a, 0xe4, + 0xe6, 0xbe, 0xa7, 0xa8, 0x2b, 0xd2, 0x5c, 0x3f, 0xee, 0x1b, 0x9e, 0xd5, + 0x52, 0xda, 0xe5, 0x67, 0x8c, 0x3a, 0xe7, 0x69, 0xe9, 0x9e, 0xf5, 0x25, + 0xc3, 0xfe, 0xe1, 0xaa, 0x8c, 0x48, 0x10, 0x2c, 0xad, 0x1a, 0x38, 0x0c, + 0xa4, 0xf2, 0x0d, 0x5a, 0xb9, 0x8b, 0x4d, 0xb6, 0x5f, 0x9e, 0xdd, 0x0b, + 0x1e, 0x8a, 0xab, 0x92, 0x6a, 0x84, 0x0c, 0x7c, 0xd8, 0xf9, 0xef, 0x5a, + 0xab, 0x12, 0x06, 0x2e, 0x46, 0x58, 0xf5, 0x26, 0x95, 0x81, 0x18, 0x93, + 0xad, 0xc4, 0xa0, 0x9b, 0x6d, 0x36, 0x38, 0xd7, 0xd6, 0x46, 0x39, 0xfc, + 0x85, 0x71, 0xf7, 0x5a, 0x9e, 0xa9, 0x16, 0xaf, 0x1a, 0xf9, 0x6e, 0xa9, + 0xd9, 0x11, 0xce, 0xd6, 0x1e, 0xb5, 0xe9, 0xac, 0x46, 0xc3, 0xf4, 0xae, + 0x02, 0xe2, 0x55, 0xff, 0x00, 0x84, 0xda, 0x34, 0x0e, 0xe1, 0x30, 0x01, + 0x5c, 0x71, 0x9a, 0x89, 0x27, 0xd0, 0xa5, 0x6e, 0xa6, 0xec, 0x13, 0x38, + 0x03, 0xed, 0x31, 0xdc, 0x42, 0x0f, 0xf1, 0xa9, 0xde, 0x2b, 0x4d, 0x2c, + 0xde, 0x58, 0xc3, 0xc3, 0x78, 0x1d, 0x4f, 0x42, 0x57, 0x35, 0x71, 0x11, + 0x1a, 0x15, 0x04, 0x02, 0x31, 0x51, 0x0b, 0x71, 0x03, 0xef, 0x83, 0xe5, + 0xcf, 0x55, 0xec, 0x6a, 0xac, 0xc4, 0x51, 0xdb, 0x24, 0x52, 0xba, 0x48, + 0xca, 0xc4, 0x77, 0x03, 0x15, 0x72, 0xc8, 0x8f, 0x20, 0xfd, 0x6a, 0x9d, + 0xcc, 0x99, 0xb9, 0x7a, 0x9a, 0xcd, 0xbf, 0x70, 0x7e, 0xb4, 0xd0, 0x8b, + 0x2e, 0x45, 0x40, 0xec, 0x39, 0xa7, 0x3b, 0x56, 0x7e, 0xa7, 0x3f, 0xd9, + 0xec, 0x65, 0x93, 0x38, 0xc0, 0xeb, 0x54, 0x22, 0x63, 0x32, 0x9c, 0x00, + 0x47, 0x23, 0x22, 0x98, 0xcf, 0x5c, 0xfd, 0xae, 0xa3, 0xbe, 0xea, 0x05, + 0xcf, 0x00, 0x05, 0x3e, 0xfc, 0x56, 0xcb, 0xbe, 0x05, 0x00, 0x61, 0xeb, + 0x1e, 0x1b, 0xd3, 0xf5, 0x06, 0x96, 0xe0, 0xc6, 0xcb, 0x3b, 0x0c, 0x96, + 0x43, 0x8c, 0x91, 0x59, 0xf6, 0x5a, 0x1c, 0x16, 0xa3, 0x21, 0x00, 0x3e, + 0xbd, 0xeb, 0xa2, 0x96, 0x5e, 0x08, 0xaa, 0x64, 0xd0, 0xe2, 0xaf, 0x71, + 0xa9, 0xc9, 0x2b, 0x22, 0xb9, 0x89, 0x13, 0x68, 0x55, 0x1d, 0x69, 0x99, + 0x09, 0x1f, 0xce, 0xdf, 0x9d, 0x3a, 0x72, 0xdf, 0x2e, 0x0e, 0x0e, 0x7a, + 0xd4, 0x5e, 0x50, 0xce, 0x4e, 0x49, 0xf5, 0x34, 0x08, 0xa1, 0x79, 0xaa, + 0xc1, 0x16, 0x40, 0x05, 0x8a, 0x9e, 0xa7, 0x80, 0x3f, 0x13, 0x58, 0x5a, + 0x86, 0xb9, 0x24, 0x52, 0xa4, 0x4e, 0xfb, 0x0c, 0x9d, 0x15, 0x06, 0x4f, + 0xe7, 0x4f, 0xf1, 0x05, 0x81, 0xbd, 0x78, 0xf1, 0x22, 0xc6, 0x88, 0xe4, + 0xb1, 0x63, 0x8e, 0x2a, 0x8e, 0xa5, 0xfd, 0x9d, 0x1d, 0xed, 0xb9, 0x9d, + 0x9d, 0xa4, 0x00, 0x04, 0x55, 0xe9, 0x52, 0xc6, 0x8b, 0x9c, 0xf7, 0x39, + 0x3e, 0xa6, 0x9c, 0x9d, 0x4d, 0x27, 0x73, 0xf5, 0xa7, 0x2f, 0x5a, 0xf0, + 0x6a, 0x7c, 0x4c, 0xfa, 0xca, 0x5f, 0x0a, 0x1e, 0xbc, 0x30, 0xfa, 0xd7, + 0xa2, 0x5b, 0xcd, 0xe6, 0x68, 0xae, 0xb9, 0xe7, 0x02, 0xbc, 0xed, 0x4f, + 0xcc, 0x3e, 0xb5, 0xdc, 0x59, 0xc9, 0x8b, 0x06, 0x5f, 0x50, 0x2b, 0x8e, + 0xa3, 0xb4, 0xa2, 0x75, 0x53, 0xd9, 0x9a, 0xde, 0x1f, 0x8f, 0x37, 0x84, + 0x63, 0xf8, 0x0d, 0x72, 0xfe, 0x37, 0xd3, 0xe2, 0x69, 0xde, 0xe9, 0x87, + 0xef, 0x15, 0xb6, 0x8f, 0xa5, 0x75, 0xde, 0x1a, 0x1b, 0xaf, 0xd8, 0x7f, + 0xb0, 0x6b, 0x07, 0xc7, 0x09, 0x88, 0xe4, 0x1f, 0xf4, 0xd3, 0xfa, 0x57, + 0x4d, 0x29, 0x59, 0x33, 0xc7, 0xc7, 0xaf, 0xdf, 0x2f, 0x91, 0xc1, 0xcd, + 0x6b, 0x0c, 0x73, 0x40, 0x8b, 0x18, 0xda, 0x54, 0x12, 0x3d, 0xf1, 0x5a, + 0x1a, 0x70, 0xc2, 0xfe, 0x35, 0x05, 0xd2, 0xff, 0x00, 0xa4, 0xc1, 0xfe, + 0xe0, 0xff, 0x00, 0xd0, 0x6a, 0xe6, 0x9a, 0xbf, 0x2f, 0x4e, 0xf5, 0xd1, + 0x17, 0xef, 0x2f, 0x99, 0xe6, 0xd5, 0x5f, 0xbb, 0xfb, 0xbf, 0x53, 0x72, + 0x00, 0xa2, 0x5c, 0x9c, 0x93, 0xb4, 0x57, 0x43, 0xa7, 0xbe, 0x31, 0x85, + 0x15, 0x83, 0x12, 0xfe, 0xfb, 0xa7, 0xf0, 0x8e, 0xf5, 0xd0, 0xd8, 0x03, + 0x81, 0xc0, 0xad, 0x5e, 0xc7, 0x9f, 0x2d, 0xcd, 0xef, 0x07, 0x9c, 0x6a, + 0xfa, 0xa6, 0x30, 0x3e, 0x58, 0xff, 0x00, 0x95, 0x6e, 0xde, 0xea, 0xf6, + 0x91, 0x19, 0x2d, 0xf2, 0x25, 0xb9, 0x08, 0xcc, 0x23, 0x0a, 0x5b, 0x18, + 0xf5, 0xc7, 0x4a, 0xe5, 0x3c, 0x3f, 0x1a, 0xcb, 0xe2, 0x3b, 0xb8, 0x9a, + 0xe6, 0x68, 0xd4, 0xa2, 0x6f, 0x48, 0x47, 0x51, 0x8e, 0xa5, 0xbb, 0x0a, + 0x22, 0xb6, 0xd5, 0xf4, 0xcf, 0x15, 0x9f, 0x2a, 0xc6, 0x64, 0xd3, 0x2e, + 0x25, 0xda, 0x66, 0x1f, 0x32, 0xec, 0x63, 0x80, 0x49, 0xea, 0x3f, 0x1a, + 0xe4, 0xe5, 0xbb, 0x36, 0x51, 0x4f, 0xaf, 0x43, 0x07, 0x56, 0xd5, 0xa5, + 0x1a, 0xfd, 0xed, 0xa3, 0xdb, 0xc9, 0x25, 0xd2, 0xdc, 0x09, 0x17, 0xcb, + 0xe7, 0xe5, 0x00, 0x7f, 0x4c, 0xd6, 0x0e, 0xa1, 0xe2, 0x3b, 0x4b, 0xa9, + 0x66, 0x8a, 0x6b, 0x89, 0xd7, 0xb8, 0x52, 0xa3, 0x83, 0x91, 0xfe, 0x15, + 0xad, 0xe3, 0x47, 0x61, 0xab, 0xdc, 0xcf, 0x04, 0xde, 0x4d, 0xcd, 0xae, + 0xd5, 0x62, 0x88, 0x7f, 0x7a, 0x42, 0xfd, 0xee, 0x9c, 0x71, 0xc1, 0xaf, + 0x33, 0xbb, 0xd4, 0x5a, 0xee, 0xed, 0xa7, 0x75, 0x19, 0x27, 0x27, 0x03, + 0x19, 0xaa, 0x8c, 0x2e, 0x74, 0xc6, 0xd6, 0x4c, 0xf4, 0x5b, 0x1d, 0x52, + 0xc9, 0x1a, 0x15, 0x9a, 0x57, 0x30, 0x24, 0x45, 0x14, 0xe3, 0xd7, 0xe9, + 0xed, 0x8a, 0xda, 0xd2, 0xb5, 0xcd, 0x57, 0x5a, 0x3e, 0x5c, 0x7a, 0x79, + 0x91, 0x02, 0x2c, 0x02, 0x44, 0x3b, 0x46, 0x79, 0x20, 0x9c, 0xfb, 0x57, + 0x0d, 0x67, 0xa8, 0xdc, 0x6a, 0x5a, 0x6e, 0x54, 0xc5, 0x04, 0x70, 0x7c, + 0xa1, 0x52, 0x33, 0xc9, 0x3d, 0xf8, 0x15, 0xe9, 0x1e, 0x04, 0xd1, 0xae, + 0xed, 0x42, 0xdd, 0x5d, 0x5e, 0xc7, 0x25, 0xbb, 0x61, 0x84, 0x28, 0x48, + 0x28, 0xfc, 0x28, 0x24, 0x7d, 0x2b, 0x9e, 0xaa, 0x51, 0x57, 0x66, 0x9a, + 0x19, 0x5a, 0xec, 0x37, 0x3a, 0x64, 0x13, 0xd9, 0x5f, 0x2c, 0x41, 0xe7, + 0x2b, 0x2c, 0x46, 0x23, 0xc7, 0x5e, 0x45, 0x50, 0xbd, 0x8c, 0x88, 0x47, + 0xcd, 0x5d, 0xd7, 0x8e, 0xac, 0xd1, 0xf4, 0x53, 0x70, 0xd6, 0x6b, 0x24, + 0xa8, 0xea, 0x04, 0xdd, 0xd0, 0x67, 0xfc, 0x8a, 0xe4, 0xef, 0xa2, 0xc4, + 0x1d, 0x07, 0xe2, 0x28, 0xa0, 0xee, 0xc8, 0xaa, 0xee, 0x8e, 0x4e, 0x45, + 0x2b, 0x3a, 0x6e, 0xc7, 0xde, 0x1d, 0xaa, 0x3d, 0x44, 0x13, 0x3c, 0x78, + 0x15, 0x7a, 0x78, 0xb3, 0x22, 0xe0, 0x0c, 0xee, 0x15, 0x06, 0xa4, 0x85, + 0x64, 0x8b, 0x3d, 0x45, 0x6f, 0x50, 0x8a, 0x45, 0xab, 0x67, 0x93, 0xed, + 0xf2, 0xa6, 0xe3, 0x8f, 0x2d, 0x72, 0x3f, 0x0a, 0xe8, 0x7c, 0x23, 0x12, + 0xcd, 0xaa, 0xb4, 0xad, 0xf7, 0xa2, 0x8c, 0xed, 0xf6, 0xe4, 0x0a, 0xe7, + 0xad, 0x73, 0xfd, 0xa3, 0x29, 0x3f, 0xf3, 0xcc, 0x7f, 0x2a, 0xe8, 0xfc, + 0x1f, 0xc6, 0xa3, 0x3f, 0xfd, 0x73, 0xfe, 0xa2, 0xbc, 0xc8, 0xfc, 0x4b, + 0xe5, 0xf9, 0x1e, 0xc3, 0xdb, 0xfa, 0xee, 0x4f, 0xf1, 0x0d, 0x41, 0xd3, + 0x6d, 0xf8, 0xff, 0x00, 0x96, 0x9f, 0xd2, 0xbc, 0xfa, 0x01, 0x85, 0x7a, + 0xf4, 0x3f, 0x88, 0x3f, 0xf2, 0x0c, 0x83, 0xfe, 0xba, 0xff, 0x00, 0x4a, + 0xf3, 0xc8, 0xf8, 0x56, 0xae, 0xf9, 0x7f, 0x09, 0x97, 0x4b, 0xe2, 0x46, + 0x4d, 0xd7, 0xfc, 0x7c, 0x3f, 0xd6, 0xa2, 0x5f, 0xbd, 0x52, 0x5d, 0x1f, + 0xf4, 0x87, 0xfa, 0xd4, 0x71, 0xfd, 0xea, 0xb8, 0xfc, 0x27, 0x41, 0x28, + 0x1c, 0x8a, 0x6c, 0x3a, 0xc3, 0xa5, 0xe9, 0xb5, 0x57, 0x6d, 0xe0, 0xf0, + 0xae, 0x38, 0x3f, 0x8d, 0x48, 0xa3, 0x24, 0x55, 0x1d, 0xd6, 0x6f, 0xac, + 0x8d, 0xc1, 0xd6, 0xe1, 0x78, 0xf6, 0x22, 0xbb, 0x30, 0x6f, 0x56, 0x79, + 0xb9, 0x8e, 0xd1, 0x37, 0x20, 0xd5, 0xa2, 0x76, 0xf9, 0xd7, 0x0d, 0xd0, + 0x95, 0x39, 0x15, 0x7f, 0xcc, 0x59, 0x23, 0x3b, 0x1b, 0x9c, 0x57, 0x2b, + 0x63, 0x66, 0x22, 0xd4, 0x26, 0x99, 0x24, 0x47, 0x8d, 0xf3, 0x80, 0x0f, + 0x4e, 0x6b, 0xa6, 0x28, 0xac, 0xa3, 0x23, 0x9f, 0x51, 0x5e, 0x82, 0xb9, + 0xe4, 0x8e, 0x54, 0x0c, 0xc4, 0x38, 0x04, 0xed, 0x19, 0xcd, 0x55, 0xba, + 0xd3, 0x22, 0x9c, 0x7d, 0xd0, 0x7d, 0x8d, 0x4d, 0x09, 0x61, 0x2c, 0x80, + 0xb1, 0x38, 0x03, 0x19, 0xa9, 0xf3, 0x4f, 0x47, 0xb9, 0x49, 0xb8, 0xbb, + 0xa3, 0x26, 0xd3, 0x45, 0xb2, 0xb5, 0x90, 0x4b, 0xe4, 0xfe, 0xf4, 0x1c, + 0xe4, 0xf6, 0xad, 0x50, 0xd5, 0x5d, 0xc9, 0xf3, 0x0d, 0x38, 0x1a, 0xbd, + 0x91, 0x17, 0x6d, 0xdd, 0x93, 0x64, 0x51, 0x9a, 0x8c, 0x1a, 0x5c, 0xd0, + 0x51, 0x20, 0xa8, 0xae, 0x7f, 0xd4, 0x9a, 0x78, 0x35, 0x1d, 0xc1, 0xfd, + 0xc9, 0xa0, 0x0a, 0x84, 0x33, 0x32, 0x84, 0xc6, 0x4f, 0xad, 0x4d, 0xf6, + 0x69, 0x15, 0x73, 0x24, 0xaa, 0xa3, 0xd8, 0x54, 0x51, 0x9f, 0xde, 0xa7, + 0xd6, 0xae, 0x18, 0xbc, 0xd6, 0xcc, 0x9d, 0x07, 0x41, 0x48, 0x12, 0x33, + 0xdd, 0x8f, 0x22, 0x2f, 0x32, 0x4f, 0x7e, 0x82, 0xb1, 0x92, 0x4b, 0xef, + 0xb6, 0xb3, 0xb3, 0x93, 0x1f, 0x64, 0xc9, 0xae, 0xb0, 0xa2, 0x85, 0x20, + 0x0e, 0xd5, 0xc9, 0xbc, 0xe4, 0x78, 0x8d, 0x23, 0x0f, 0xfb, 0xbf, 0x4c, + 0x77, 0xc5, 0x43, 0x52, 0xee, 0x52, 0xe5, 0xec, 0x6d, 0xc4, 0xac, 0x00, + 0x32, 0xda, 0x86, 0x1e, 0xaa, 0xd5, 0x7a, 0x38, 0x6d, 0x65, 0x52, 0x56, + 0x35, 0x07, 0xb8, 0x23, 0x91, 0x53, 0x46, 0x06, 0xc5, 0xfa, 0x50, 0xd1, + 0xae, 0x72, 0x38, 0x23, 0xbd, 0x68, 0x91, 0x0d, 0x94, 0xb0, 0x14, 0x15, + 0x03, 0x00, 0x56, 0x9d, 0xb0, 0xcc, 0x2b, 0xf4, 0xac, 0xc3, 0xd5, 0xbe, + 0xb5, 0xab, 0x69, 0xcc, 0x2b, 0xf4, 0xab, 0x46, 0x4c, 0x90, 0x2f, 0x35, + 0x8d, 0xae, 0x4c, 0x60, 0x91, 0x15, 0x4e, 0x18, 0x2e, 0xe1, 0xf9, 0xd7, + 0x49, 0x1c, 0x25, 0xba, 0x0a, 0xc7, 0x95, 0x20, 0x96, 0xf2, 0x08, 0x6e, + 0x2e, 0x61, 0x8e, 0x42, 0xe1, 0x4f, 0x9b, 0x8e, 0x01, 0xfe, 0x54, 0x4e, + 0x5c, 0xa8, 0x20, 0x94, 0x9e, 0xa5, 0x6f, 0x0e, 0xb9, 0xb9, 0x5b, 0x82, + 0x01, 0xc0, 0x39, 0x27, 0x1c, 0x66, 0xb5, 0x9c, 0x60, 0x56, 0xd5, 0xd6, + 0x90, 0xfa, 0x74, 0xab, 0x10, 0x54, 0x4b, 0x77, 0x8f, 0x74, 0x78, 0xc6, + 0x4a, 0x93, 0x91, 0xd2, 0xb2, 0xae, 0x00, 0x0f, 0xc1, 0xe0, 0x55, 0x27, + 0x74, 0x45, 0xf5, 0x69, 0x14, 0x2e, 0xbf, 0xd5, 0x1a, 0xce, 0x07, 0xfd, + 0x21, 0x2a, 0xfd, 0xd9, 0xfd, 0xd9, 0xac, 0xec, 0xff, 0x00, 0xa4, 0xa5, + 0x49, 0x46, 0x9e, 0x69, 0x09, 0xa6, 0x97, 0x0a, 0x32, 0x4e, 0x2a, 0xbb, + 0xdd, 0x01, 0xc2, 0xf3, 0x45, 0xca, 0x26, 0x91, 0x80, 0x53, 0x93, 0x58, + 0xae, 0x7e, 0x63, 0xf5, 0xab, 0x52, 0x4a, 0xcd, 0x92, 0xc6, 0xa8, 0x3c, + 0x83, 0xe6, 0xc7, 0xe7, 0x50, 0xd8, 0xcb, 0x16, 0xc7, 0xfd, 0x2d, 0x7e, + 0x95, 0x60, 0x73, 0x3c, 0x98, 0x39, 0xe6, 0xa9, 0xda, 0x1f, 0xf4, 0x98, + 0xfa, 0xf4, 0xa9, 0xe0, 0x1f, 0x34, 0x98, 0x3f, 0xc6, 0x6a, 0x59, 0x48, + 0xb1, 0xf5, 0xae, 0x9f, 0xc0, 0x63, 0x3e, 0x2b, 0xb6, 0x1f, 0xec, 0xb7, + 0xfe, 0x82, 0x6b, 0x9a, 0x53, 0xb8, 0x9a, 0xe9, 0xfc, 0x03, 0x83, 0xe2, + 0xcb, 0x5c, 0x7f, 0x75, 0xff, 0x00, 0xf4, 0x13, 0x44, 0x1f, 0xbc, 0x82, + 0x4b, 0x43, 0xd7, 0xca, 0xd3, 0x0a, 0xd5, 0x82, 0xb4, 0xd2, 0xb5, 0xe8, + 0x26, 0x63, 0x62, 0xb9, 0x5a, 0x61, 0x5a, 0xb0, 0x56, 0x9a, 0x56, 0xa9, + 0x48, 0x96, 0x8a, 0xe5, 0x69, 0xa5, 0x6a, 0x72, 0xb4, 0xd2, 0xb5, 0x69, + 0x8a, 0xc5, 0x72, 0x29, 0xa4, 0x55, 0x82, 0xb4, 0xc2, 0xb5, 0x49, 0x8a, + 0xc7, 0x9d, 0xf8, 0xda, 0xfa, 0xc3, 0x4e, 0xf1, 0x15, 0x9c, 0xd7, 0xf6, + 0xe9, 0x32, 0x9b, 0x57, 0x55, 0x0e, 0x33, 0x82, 0x4f, 0x5a, 0xf3, 0x79, + 0x75, 0x8b, 0x25, 0x9b, 0x36, 0xf6, 0x48, 0xa8, 0x0f, 0x4c, 0x75, 0xae, + 0xe7, 0xe2, 0x95, 0x9b, 0xdd, 0x6a, 0xd6, 0x01, 0x0a, 0x8d, 0xb0, 0x31, + 0x39, 0xfa, 0xd7, 0x9e, 0x2e, 0x95, 0xfd, 0xe9, 0x30, 0x40, 0xf4, 0xaf, + 0x36, 0xbd, 0x3a, 0x6e, 0xab, 0x9c, 0x9e, 0xac, 0xeb, 0xa7, 0x52, 0x7c, + 0x8a, 0x28, 0x6b, 0x6b, 0x12, 0xf9, 0x85, 0x95, 0x00, 0xef, 0xcd, 0x3a, + 0xe3, 0x5f, 0xd4, 0x25, 0xb8, 0x79, 0x92, 0x63, 0x0b, 0x3a, 0x90, 0x4c, + 0x64, 0x83, 0x83, 0xd4, 0x56, 0x8c, 0x5a, 0x0d, 0x98, 0x5c, 0xcd, 0x3e, + 0xd3, 0x81, 0xd5, 0x80, 0xe2, 0xbb, 0x0d, 0x31, 0x7c, 0x18, 0x2d, 0x1b, + 0x44, 0xd5, 0xa0, 0xb5, 0x89, 0x11, 0xcb, 0x8d, 0x45, 0x08, 0x32, 0xb0, + 0xce, 0x40, 0xce, 0x0f, 0xd3, 0xd3, 0xdb, 0xbd, 0x73, 0xca, 0xb5, 0x28, + 0xed, 0x1b, 0x9a, 0x28, 0x54, 0x6b, 0x57, 0x63, 0xca, 0x70, 0xc4, 0xf1, + 0x9c, 0xe2, 0x9c, 0xcf, 0x70, 0xec, 0x89, 0xb9, 0xc8, 0x1d, 0x14, 0x57, + 0xa7, 0xe8, 0xfa, 0x8f, 0x83, 0xb4, 0x2f, 0x17, 0xc7, 0x32, 0x5c, 0x2b, + 0xd9, 0xc4, 0xe4, 0xac, 0xc6, 0x32, 0x48, 0x18, 0x38, 0x38, 0xc5, 0x5a, + 0xba, 0xf1, 0xaf, 0x84, 0xcf, 0x8a, 0xef, 0x35, 0x07, 0x89, 0xae, 0x22, + 0x93, 0x01, 0x19, 0x21, 0x00, 0x90, 0x06, 0x09, 0xe7, 0x14, 0x3c, 0x54, + 0x9e, 0xd4, 0xd8, 0x95, 0x18, 0xf5, 0x99, 0xe7, 0x7a, 0x46, 0xbb, 0xe2, + 0x4b, 0x48, 0x57, 0x4e, 0xd2, 0xaf, 0x2f, 0x15, 0x25, 0x93, 0x22, 0x08, + 0x41, 0x25, 0x98, 0x8c, 0x70, 0x31, 0x9a, 0x4d, 0x77, 0x58, 0xf1, 0x2e, + 0xa1, 0xe5, 0xda, 0x6b, 0x57, 0x17, 0x8e, 0xd6, 0xec, 0x40, 0x8a, 0x75, + 0x2a, 0x50, 0xfb, 0x8c, 0x75, 0xfa, 0xd7, 0x79, 0x61, 0xe3, 0xbf, 0x0b, + 0x58, 0x78, 0x81, 0xaf, 0x6d, 0xec, 0xae, 0x23, 0x88, 0x1f, 0x90, 0x6c, + 0x1b, 0x87, 0xaf, 0x7a, 0xcb, 0xf1, 0x6f, 0x8e, 0xf4, 0xbd, 0x6f, 0x57, + 0x6b, 0xab, 0x3b, 0x19, 0xa3, 0x8d, 0x80, 0x04, 0xc9, 0x8d, 0xcc, 0x47, + 0x73, 0xd7, 0xd8, 0x75, 0xed, 0x50, 0xa7, 0x27, 0x3b, 0xaa, 0x40, 0xe1, + 0x04, 0xbe, 0x33, 0x85, 0x6d, 0x27, 0x51, 0x64, 0x49, 0x3e, 0xc7, 0x3e, + 0xd9, 0x9b, 0xf7, 0x6d, 0xb0, 0xe1, 0xbe, 0x94, 0xed, 0x43, 0x42, 0xd4, + 0xf4, 0xc9, 0xcc, 0x57, 0xb6, 0x53, 0x40, 0xec, 0x37, 0x00, 0xeb, 0xd4, + 0x57, 0xa7, 0xdc, 0x7c, 0x4d, 0xd1, 0x3f, 0xb3, 0x6c, 0xa3, 0x8e, 0xc6, + 0x66, 0x92, 0x1d, 0xbb, 0xa3, 0xc0, 0x01, 0x08, 0xf4, 0x35, 0x97, 0xe2, + 0x6f, 0x88, 0xba, 0x7e, 0xbf, 0x77, 0x14, 0xdf, 0xd9, 0x92, 0xc6, 0x22, + 0x40, 0x9b, 0x7c, 0xcc, 0xe7, 0xde, 0x9c, 0x71, 0x18, 0x86, 0xf5, 0xa7, + 0xa0, 0xe5, 0x4a, 0x8f, 0x49, 0x19, 0x1e, 0x24, 0xf0, 0x1d, 0xcf, 0x87, + 0x03, 0xf9, 0xd7, 0x29, 0x21, 0x07, 0x69, 0xda, 0x2b, 0x9d, 0x8b, 0x4d, + 0x32, 0x91, 0xb2, 0x78, 0xf2, 0x46, 0x00, 0x27, 0x9a, 0xb5, 0xa8, 0x78, + 0x87, 0x55, 0xd4, 0xd1, 0x96, 0xee, 0xed, 0xe5, 0x07, 0x93, 0xba, 0xb3, + 0x12, 0x59, 0x23, 0x90, 0x32, 0xb1, 0x04, 0x0e, 0x2b, 0xa6, 0x92, 0xa8, + 0xa3, 0xef, 0xbd, 0x4c, 0x66, 0xe0, 0xdf, 0xba, 0x89, 0x66, 0xb1, 0x92, + 0xde, 0x5f, 0x2d, 0x99, 0x49, 0x0b, 0xda, 0xa4, 0x8b, 0x49, 0xbb, 0x99, + 0x15, 0xd1, 0x01, 0x1f, 0x5a, 0xae, 0xf3, 0xcb, 0x2b, 0xef, 0x76, 0xcb, + 0x63, 0xad, 0x5b, 0x87, 0x56, 0xba, 0x81, 0x63, 0x55, 0x61, 0xb5, 0x7b, + 0x11, 0xd6, 0xae, 0x5c, 0xf6, 0xd0, 0x98, 0xf2, 0xdf, 0x52, 0x68, 0x7c, + 0x39, 0xaa, 0xca, 0xf1, 0xa4, 0x56, 0xac, 0xee, 0x4f, 0x0a, 0x9c, 0x93, + 0xf4, 0x14, 0x5c, 0xe8, 0x5a, 0xbe, 0x9c, 0x40, 0xba, 0xb0, 0xb8, 0x84, + 0xa9, 0xe7, 0x7a, 0x11, 0x8a, 0xd9, 0xd2, 0x3c, 0x7d, 0x7b, 0xa5, 0x5e, + 0x45, 0x72, 0x96, 0xb0, 0x34, 0x88, 0x78, 0x24, 0x1a, 0xd5, 0xd4, 0xfe, + 0x26, 0xbe, 0xb3, 0x0d, 0xc2, 0xde, 0x58, 0x02, 0xf2, 0xa8, 0x08, 0x51, + 0xb8, 0x52, 0x2b, 0x95, 0xcf, 0x10, 0x9f, 0xc3, 0xa1, 0xb2, 0x8d, 0x27, + 0xd4, 0xe2, 0x62, 0x7b, 0x98, 0x48, 0x2a, 0xd2, 0xa1, 0xc1, 0xe8, 0x48, + 0xab, 0xd1, 0xeb, 0xfa, 0xc4, 0x76, 0x66, 0xcc, 0x6a, 0x17, 0x3f, 0x66, + 0x70, 0x4b, 0x44, 0x64, 0x3b, 0x4f, 0xe1, 0x5a, 0xb6, 0x5e, 0x22, 0xd3, + 0xc4, 0x7b, 0x67, 0xb5, 0x7e, 0x48, 0x24, 0x8e, 0x78, 0xae, 0x96, 0xf3, + 0xc4, 0x1e, 0x0f, 0xd4, 0xac, 0x2d, 0xad, 0xa2, 0xd3, 0xe2, 0xb5, 0x7c, + 0xfc, 0xf2, 0xb2, 0x7c, 0xd8, 0xf7, 0xc7, 0x5a, 0x89, 0xd6, 0x92, 0x7e, + 0xf5, 0x32, 0xa3, 0x4e, 0x36, 0xd2, 0x67, 0x2d, 0x17, 0x8c, 0xb5, 0x94, + 0xd3, 0x63, 0xd3, 0x9e, 0xe0, 0x49, 0x69, 0x16, 0x19, 0x23, 0x75, 0x1c, + 0x7e, 0x3d, 0x6b, 0xa7, 0x3f, 0x15, 0x2e, 0xa6, 0xd3, 0xe2, 0xb1, 0x6b, + 0x24, 0x82, 0x34, 0x5f, 0x2e, 0x56, 0x80, 0x8c, 0xc8, 0x08, 0xc7, 0x71, + 0xc5, 0x72, 0x73, 0x45, 0xa5, 0xb5, 0xcc, 0x89, 0x13, 0xa9, 0x50, 0x78, + 0x6e, 0x46, 0x47, 0x6a, 0x86, 0x4b, 0x1b, 0x7e, 0xb1, 0xcb, 0xd4, 0x82, + 0x79, 0xcd, 0x5c, 0xa8, 0x52, 0x9a, 0xbb, 0x44, 0xaa, 0x93, 0x5a, 0x5c, + 0xd3, 0xbb, 0xbc, 0xd0, 0xae, 0xee, 0x5d, 0xa2, 0x8a, 0x48, 0x50, 0x8c, + 0xa8, 0x61, 0x9f, 0xaf, 0x4a, 0xcb, 0x68, 0x6d, 0x8c, 0xac, 0x23, 0x93, + 0x80, 0x46, 0x0f, 0xad, 0x46, 0xf6, 0x05, 0x64, 0x08, 0xae, 0x0f, 0xcb, + 0xc1, 0x3c, 0x54, 0x5e, 0x44, 0x8a, 0xc7, 0x8c, 0xf2, 0x3a, 0x56, 0x91, + 0x82, 0x8e, 0xcc, 0x4e, 0x4d, 0xee, 0x8e, 0xf7, 0xc2, 0x61, 0xe2, 0xd1, + 0xe6, 0x54, 0x23, 0x87, 0xeb, 0xf8, 0x0a, 0xe8, 0x4b, 0x29, 0x90, 0x07, + 0x4e, 0x78, 0xc9, 0xf4, 0xfc, 0x6b, 0x9f, 0xf0, 0x76, 0xf5, 0xd2, 0x24, + 0x1c, 0x67, 0x7f, 0x43, 0xf4, 0x15, 0xbe, 0xce, 0x3c, 0xd2, 0x59, 0x08, + 0xe4, 0x7c, 0xc0, 0xf5, 0xae, 0x69, 0xbf, 0x79, 0x9d, 0x51, 0xf8, 0x51, + 0xa3, 0x65, 0x34, 0x72, 0x4c, 0xb1, 0x4b, 0x2c, 0xaf, 0x1a, 0x9f, 0x94, + 0x16, 0xe9, 0xf8, 0xf5, 0xad, 0xbb, 0x79, 0x63, 0x8e, 0x32, 0x56, 0x25, + 0x5e, 0x4f, 0x20, 0x63, 0x35, 0xcb, 0x58, 0xbc, 0x62, 0xf3, 0x76, 0xfc, + 0xe5, 0xbd, 0x2b, 0x75, 0xa6, 0x74, 0xb6, 0x5f, 0x26, 0x3c, 0x92, 0xc7, + 0xef, 0x0c, 0xd6, 0x12, 0xd1, 0x9a, 0x47, 0x54, 0x4b, 0xad, 0x16, 0xfe, + 0xca, 0xb9, 0x72, 0xc3, 0x1b, 0x3e, 0xe8, 0xfa, 0xd7, 0x07, 0xe6, 0x8f, + 0x29, 0xdb, 0x23, 0x71, 0xc0, 0x02, 0xbb, 0x7d, 0x54, 0xb3, 0x58, 0x4c, + 0x19, 0x86, 0xd2, 0x83, 0xe4, 0xfc, 0x6b, 0x8a, 0x21, 0x57, 0x38, 0x00, + 0x56, 0xf4, 0x9e, 0x87, 0x35, 0x7f, 0x88, 0xae, 0xc4, 0xb8, 0x50, 0x10, + 0xe4, 0x1c, 0x92, 0x7b, 0xd5, 0x65, 0x46, 0x16, 0xd7, 0xce, 0x40, 0x19, + 0xe3, 0xae, 0x7b, 0x56, 0x87, 0x63, 0x55, 0x1f, 0xfe, 0x3c, 0x6f, 0x3e, + 0xa7, 0xf9, 0x56, 0xc8, 0xc1, 0x9c, 0xbd, 0xcd, 0xc1, 0x02, 0x3d, 0xca, + 0x54, 0x05, 0xc6, 0x7a, 0xd3, 0xa0, 0xdd, 0x3b, 0x05, 0x0d, 0x8f, 0x46, + 0x14, 0xb2, 0xe0, 0x85, 0x04, 0x71, 0x8a, 0x4b, 0x28, 0x02, 0x5c, 0x86, + 0x52, 0x40, 0xc7, 0x4e, 0xd5, 0xa2, 0x21, 0x97, 0x54, 0x5c, 0x41, 0xf7, + 0xd3, 0xcc, 0x5f, 0xef, 0x2f, 0x5f, 0xca, 0xa6, 0x8e, 0x64, 0x7f, 0xba, + 0xdc, 0xfa, 0x77, 0xab, 0x31, 0x9a, 0x57, 0xb6, 0x86, 0x5f, 0xbc, 0x83, + 0x3e, 0xa3, 0xad, 0x55, 0x84, 0x31, 0x5d, 0x97, 0xa1, 0xc5, 0x48, 0x8c, + 0x40, 0x3c, 0xd4, 0x2d, 0x69, 0x24, 0x63, 0x31, 0xcb, 0x90, 0x3f, 0x85, + 0xf9, 0xa7, 0x23, 0x1f, 0x2c, 0x96, 0xeb, 0xed, 0x48, 0x0d, 0xa8, 0x2e, + 0xe3, 0xd8, 0xa0, 0x9c, 0x1c, 0x77, 0xa9, 0x2e, 0x47, 0x9f, 0x6e, 0xca, + 0x85, 0x49, 0x23, 0xeb, 0x58, 0xd1, 0xcc, 0x87, 0x03, 0x76, 0x0f, 0xa1, + 0xe2, 0xac, 0xa3, 0xe0, 0x70, 0x68, 0x19, 0xc4, 0x6a, 0xe6, 0x6b, 0x2d, + 0x47, 0x6c, 0xb9, 0x11, 0x13, 0x92, 0x3b, 0x1a, 0x6d, 0xac, 0x8b, 0x35, + 0xf4, 0x2a, 0x8d, 0x9c, 0x1c, 0x96, 0x3f, 0xca, 0xb6, 0x7c, 0x46, 0xf0, + 0x5c, 0x5b, 0x48, 0x1b, 0x22, 0x68, 0xce, 0x46, 0x47, 0x5a, 0x5f, 0x0b, + 0xc1, 0x6a, 0x43, 0x5e, 0xcb, 0xb1, 0xa4, 0x66, 0xc0, 0x5c, 0xf4, 0xf4, + 0x15, 0x9f, 0x2a, 0x72, 0xe6, 0x35, 0xe7, 0x6a, 0x0e, 0x3d, 0xce, 0xfb, + 0x4d, 0x2c, 0xb6, 0x51, 0x86, 0x00, 0x71, 0xd8, 0xe6, 0xac, 0xdc, 0x3f, + 0xee, 0x1a, 0xb3, 0xa3, 0xd4, 0x23, 0x45, 0x00, 0xa1, 0x03, 0xda, 0xa4, + 0x96, 0xf2, 0x39, 0x21, 0x21, 0x4f, 0x3e, 0x95, 0x66, 0x44, 0x90, 0x37, + 0xef, 0x63, 0xfa, 0xd6, 0xbe, 0xfc, 0x56, 0x14, 0x0f, 0xfb, 0xd8, 0xfe, + 0xb5, 0xad, 0xbc, 0x11, 0xd6, 0x98, 0x8a, 0x97, 0x77, 0xaf, 0x06, 0xa5, + 0x02, 0xf2, 0x61, 0x91, 0x59, 0x5b, 0xd0, 0x1e, 0xdf, 0xd6, 0xb1, 0xe4, + 0x36, 0xa3, 0x5f, 0x8a, 0x43, 0x11, 0x2e, 0xca, 0x70, 0xf9, 0xe2, 0xad, + 0xea, 0xfb, 0xd4, 0x2b, 0x85, 0x2c, 0xa3, 0x82, 0x01, 0xc5, 0x62, 0xfd, + 0xa4, 0xf9, 0xcb, 0xfb, 0x99, 0x7e, 0x51, 0xf7, 0xc1, 0xc8, 0x1e, 0xd5, + 0x0c, 0x68, 0xea, 0x64, 0xd4, 0xbc, 0xbb, 0xdb, 0x5b, 0x54, 0xe4, 0xba, + 0x96, 0x6f, 0x60, 0x2b, 0x47, 0x7d, 0x73, 0x3a, 0x4b, 0x99, 0xae, 0x4b, + 0x6d, 0x38, 0x51, 0xd4, 0x8a, 0xdf, 0xdd, 0xc5, 0x30, 0x33, 0xee, 0x9b, + 0xfd, 0x29, 0xea, 0x6b, 0x36, 0xfd, 0xc7, 0xe3, 0x54, 0xee, 0x9b, 0xfd, + 0x25, 0xea, 0x6b, 0x47, 0xfd, 0xc7, 0xe3, 0x4d, 0x01, 0x69, 0xdf, 0x0a, + 0x4f, 0x5c, 0x56, 0x16, 0xaf, 0x34, 0x77, 0x88, 0xb1, 0x12, 0x44, 0x64, + 0x7c, 0xdc, 0x74, 0x39, 0xef, 0x5a, 0xd2, 0x39, 0xda, 0x71, 0xe9, 0x5c, + 0xae, 0xa5, 0xf6, 0x89, 0x04, 0xd1, 0x45, 0x28, 0x0f, 0x28, 0xdb, 0x82, + 0x31, 0x9e, 0x7d, 0xe8, 0x7b, 0x02, 0x76, 0x92, 0x65, 0x78, 0xac, 0xa3, + 0x09, 0xf6, 0x8c, 0x30, 0x28, 0xc3, 0x01, 0x5b, 0x39, 0xe3, 0xbf, 0xa5, + 0x6f, 0x8b, 0x91, 0x37, 0xdd, 0x1c, 0x01, 0xc9, 0xf7, 0xae, 0x6f, 0x4a, + 0xb0, 0xd4, 0x74, 0xe9, 0x66, 0x69, 0x97, 0xec, 0xea, 0xc8, 0x50, 0x89, + 0x07, 0x2d, 0xf4, 0x1e, 0xa3, 0xd6, 0xb5, 0xac, 0xb2, 0xa8, 0x54, 0x36, + 0x40, 0xf6, 0xfe, 0xb5, 0x34, 0xbe, 0x1b, 0x95, 0x59, 0xde, 0x76, 0x27, + 0x94, 0xd4, 0x04, 0xd4, 0x92, 0xb5, 0x40, 0x5a, 0xb4, 0x33, 0x23, 0x94, + 0xf2, 0xbf, 0x5a, 0x6b, 0x1a, 0x49, 0x0f, 0xcc, 0xbf, 0x5a, 0x42, 0x69, + 0x0c, 0xe5, 0x3c, 0x43, 0x63, 0x25, 0xfb, 0xc6, 0x11, 0x95, 0x42, 0xb9, + 0x2c, 0x58, 0xe2, 0xa9, 0x6a, 0x30, 0xd8, 0x8b, 0xdb, 0x76, 0xb8, 0x9c, + 0x89, 0x14, 0x00, 0xa8, 0xa3, 0xad, 0x5b, 0xf1, 0x0d, 0x8d, 0xc5, 0xf3, + 0xc4, 0xb0, 0xf4, 0x57, 0x25, 0xb9, 0xc0, 0xaa, 0xd7, 0xd6, 0x70, 0x35, + 0xec, 0x12, 0xcd, 0x72, 0x88, 0xc8, 0x00, 0x09, 0xdc, 0xd4, 0x8c, 0xb9, + 0xdc, 0xfd, 0x69, 0x53, 0xad, 0x26, 0x39, 0xa5, 0x5e, 0xa6, 0xbc, 0x0a, + 0x9f, 0x13, 0x3e, 0xb2, 0x97, 0xc2, 0x89, 0x07, 0xde, 0x1f, 0x5a, 0xec, + 0x6d, 0x5b, 0xfd, 0x0f, 0x3e, 0xc2, 0xb8, 0xd1, 0xd4, 0x57, 0x55, 0x67, + 0x2f, 0xfa, 0x21, 0x5f, 0x61, 0x5c, 0x75, 0x97, 0xbd, 0x1f, 0x53, 0xaa, + 0x0e, 0xd7, 0x3a, 0xcf, 0x09, 0xfc, 0xda, 0x84, 0x9e, 0xc9, 0x59, 0x3e, + 0x3f, 0x8f, 0x6c, 0x67, 0xdd, 0xf3, 0xfa, 0x56, 0xaf, 0x83, 0x0e, 0x6f, + 0x6e, 0x3d, 0x90, 0x7f, 0x3a, 0xa5, 0xf1, 0x04, 0x0f, 0x2d, 0x3d, 0xc9, + 0xad, 0xf6, 0x3c, 0xac, 0x62, 0xbc, 0xd3, 0xf4, 0x3c, 0xfa, 0xe8, 0x7f, + 0xa4, 0x5b, 0x7f, 0xba, 0x3f, 0xf4, 0x1a, 0xbf, 0xa5, 0xa9, 0x3f, 0x9d, + 0x51, 0xb9, 0x19, 0x92, 0xdc, 0xfb, 0x01, 0xfa, 0x56, 0x8e, 0x9a, 0x30, + 0xc0, 0x73, 0xf7, 0xab, 0xa2, 0x0f, 0xde, 0x5f, 0x33, 0xcb, 0xac, 0xbf, + 0x77, 0xf7, 0x7e, 0xa7, 0x41, 0x14, 0x43, 0xcd, 0xe4, 0x7f, 0x08, 0xae, + 0x83, 0x4e, 0x88, 0x63, 0xee, 0x9a, 0xc6, 0x83, 0x06, 0x51, 0x81, 0xfc, + 0x22, 0xba, 0x4d, 0x35, 0x09, 0xc7, 0x15, 0xb4, 0x9e, 0x87, 0x9b, 0x37, + 0xa9, 0x5b, 0x49, 0x59, 0x21, 0xf1, 0x5d, 0xfb, 0x36, 0x92, 0xf7, 0x76, + 0xaf, 0x0a, 0x23, 0xc8, 0x89, 0xb8, 0xc7, 0xed, 0x8f, 0x7a, 0xee, 0x75, + 0x79, 0xae, 0x2d, 0xf4, 0xdd, 0xf6, 0xf0, 0x23, 0x90, 0x30, 0xcb, 0x27, + 0xdd, 0xdb, 0x83, 0x9c, 0xd6, 0x47, 0x86, 0x00, 0xfe, 0xd7, 0xd5, 0x89, + 0x2d, 0xb8, 0x79, 0x43, 0x19, 0xe3, 0x18, 0x3f, 0xad, 0x5b, 0xd5, 0x20, + 0xbb, 0xfe, 0xd0, 0x33, 0x5d, 0x5f, 0x2c, 0x7a, 0x53, 0x47, 0xb0, 0xc6, + 0x0e, 0xd3, 0xb8, 0xfa, 0xf1, 0xce, 0x6b, 0x91, 0xb3, 0x57, 0xab, 0x47, + 0x9f, 0xeb, 0x64, 0x4f, 0xa4, 0x6a, 0xf7, 0xac, 0x76, 0x5a, 0x4b, 0x12, + 0x85, 0x09, 0x1e, 0xd7, 0x56, 0xc7, 0x19, 0x19, 0x3c, 0x64, 0xe3, 0x35, + 0xe2, 0xa9, 0x9e, 0x45, 0x7b, 0x7f, 0x8d, 0x1b, 0x4a, 0xd2, 0xbc, 0xb9, + 0x56, 0xfe, 0x75, 0x9d, 0x1b, 0x70, 0x82, 0x42, 0xac, 0xae, 0xb9, 0xe8, + 0x17, 0x1d, 0xbd, 0xeb, 0xc6, 0x66, 0xc4, 0x97, 0x0f, 0x22, 0xae, 0x03, + 0x31, 0x38, 0xc5, 0x75, 0x50, 0xd5, 0x33, 0x78, 0x9d, 0x5f, 0x80, 0xac, + 0x6f, 0x2f, 0x05, 0xef, 0xd9, 0xa1, 0x49, 0x02, 0xaa, 0x97, 0xf3, 0x5b, + 0x6a, 0x6d, 0xcf, 0xaf, 0xad, 0x7b, 0x6f, 0x87, 0xef, 0xf4, 0xeb, 0xeb, + 0x14, 0xb7, 0xb2, 0x8e, 0x2b, 0x69, 0x94, 0x1d, 0xd0, 0x32, 0xfd, 0xd2, + 0xbe, 0xbf, 0x8d, 0x78, 0xe7, 0x81, 0xfc, 0x41, 0x1d, 0x95, 0xcc, 0x36, + 0xb7, 0x97, 0x06, 0xde, 0xd9, 0x01, 0xc0, 0x8c, 0x28, 0xde, 0x72, 0x08, + 0xc9, 0x23, 0x9e, 0x47, 0x7a, 0xf7, 0x3d, 0x1f, 0x4f, 0xd3, 0x84, 0x22, + 0xe2, 0xcd, 0x62, 0x32, 0xc8, 0x77, 0x49, 0x2e, 0x14, 0xbc, 0x87, 0xdc, + 0x8e, 0x3f, 0x2a, 0xe4, 0xc4, 0xc5, 0xb9, 0x6a, 0x69, 0x74, 0xb7, 0x39, + 0x7f, 0x1d, 0x5e, 0x4b, 0x73, 0x64, 0x96, 0xd6, 0xf3, 0x26, 0xd8, 0xe4, + 0x56, 0xb9, 0x5d, 0xd8, 0xe3, 0x23, 0x03, 0x9e, 0xbf, 0x85, 0x65, 0xea, + 0x31, 0x13, 0x6f, 0xd3, 0xbf, 0x6a, 0xec, 0xfc, 0x67, 0x64, 0x6e, 0x3c, + 0x35, 0x77, 0xb2, 0x10, 0xd2, 0x7c, 0xa4, 0x9d, 0xbc, 0x85, 0x0c, 0x09, + 0x3f, 0x96, 0x6b, 0x9e, 0xbc, 0xb7, 0xdd, 0x68, 0x0a, 0x72, 0xa7, 0xa1, + 0xc7, 0x15, 0x14, 0x55, 0x99, 0x35, 0x24, 0xb9, 0x51, 0xc3, 0xcd, 0x17, + 0xef, 0x97, 0x2a, 0x7e, 0xf0, 0xfe, 0x75, 0x5b, 0x58, 0x4d, 0xb2, 0x47, + 0x5a, 0xb7, 0x91, 0x98, 0xe6, 0x5c, 0xed, 0xfb, 0xc3, 0xb7, 0xbd, 0x66, + 0x6b, 0x6c, 0x37, 0xa5, 0x6b, 0x53, 0x56, 0x14, 0xb6, 0x0b, 0x56, 0xff, + 0x00, 0x89, 0x84, 0xbf, 0xf5, 0xcc, 0x57, 0x45, 0xe1, 0x03, 0x9d, 0x4e, + 0x5f, 0xfa, 0xe6, 0x7f, 0x98, 0xae, 0x72, 0xcf, 0x1f, 0x6e, 0x99, 0x98, + 0x9c, 0x79, 0x40, 0xfb, 0x9e, 0x2b, 0xa4, 0xf0, 0x8b, 0xf9, 0x9a, 0xa1, + 0x2a, 0xb8, 0x5f, 0x2c, 0xe0, 0x7a, 0x72, 0x2b, 0xcd, 0x5f, 0x12, 0xf9, + 0x7e, 0x47, 0xb3, 0x6d, 0x3e, 0xff, 0x00, 0xcc, 0xb9, 0xf1, 0x00, 0x7f, + 0xc4, 0xaa, 0x03, 0xff, 0x00, 0x4d, 0x7f, 0xa1, 0xaf, 0x3b, 0x5f, 0xba, + 0xd5, 0xe9, 0x3f, 0x10, 0x57, 0x1a, 0x1c, 0x47, 0xd2, 0x51, 0xfc, 0x8d, + 0x79, 0x9a, 0x9c, 0x2b, 0x57, 0xa3, 0x25, 0xfb, 0xb6, 0x55, 0x27, 0xaa, + 0x32, 0xae, 0x7f, 0xd7, 0xbf, 0xd6, 0xa3, 0x8f, 0xef, 0xd3, 0xee, 0x0e, + 0x66, 0x6f, 0xad, 0x36, 0x2f, 0xbf, 0x54, 0xbe, 0x13, 0xa0, 0xb0, 0x9f, + 0x78, 0x56, 0x71, 0x4b, 0x46, 0xd6, 0x4b, 0x79, 0xac, 0x27, 0x07, 0x1b, + 0x4f, 0x43, 0x5a, 0x69, 0xf7, 0x87, 0xd6, 0xb3, 0x5a, 0xd6, 0xdc, 0xeb, + 0x4d, 0x32, 0xdc, 0x01, 0x28, 0x3c, 0xc6, 0x6b, 0xa7, 0x06, 0xfd, 0xe6, + 0x70, 0x66, 0x2b, 0xdc, 0x8f, 0xa8, 0x96, 0x16, 0x4d, 0x06, 0xa1, 0x34, + 0xbb, 0xd1, 0x91, 0xb3, 0xf7, 0x4f, 0x4e, 0x6b, 0xa8, 0x07, 0xe5, 0x15, + 0xcc, 0x59, 0x59, 0x4d, 0x6f, 0xa8, 0x4b, 0x2b, 0x10, 0x63, 0x6c, 0xe3, + 0x07, 0xde, 0xba, 0x51, 0xf7, 0x45, 0x7a, 0x29, 0x9e, 0x3d, 0x84, 0x43, + 0xfb, 0xe7, 0xfa, 0x0a, 0x94, 0x1a, 0x81, 0x4f, 0xef, 0x9f, 0xe8, 0x2a, + 0x4c, 0xd5, 0x01, 0x04, 0x8d, 0x89, 0x5a, 0x95, 0x5a, 0xab, 0xcc, 0x85, + 0xa7, 0x63, 0xbd, 0x87, 0xb5, 0x22, 0x23, 0xf3, 0xf3, 0xb0, 0xfa, 0xd3, + 0xe6, 0x05, 0x12, 0xe0, 0x6a, 0x3c, 0xc0, 0xa4, 0x64, 0xe3, 0x35, 0x5c, + 0x2c, 0x83, 0x9f, 0x37, 0xf4, 0xac, 0xcb, 0xab, 0xf0, 0x2e, 0x11, 0x0c, + 0x99, 0x08, 0xd9, 0xce, 0x29, 0x39, 0xa4, 0x52, 0x89, 0xbe, 0x0d, 0x47, + 0x70, 0x7f, 0x72, 0xd5, 0x0d, 0x9d, 0xc1, 0x9e, 0x3d, 0xc4, 0x63, 0xd2, + 0xa5, 0xb8, 0xff, 0x00, 0x52, 0x6a, 0xb9, 0x85, 0x62, 0xbc, 0x67, 0xf7, + 0xa9, 0xf5, 0xad, 0x2c, 0xd6, 0x5c, 0x7f, 0xeb, 0x53, 0xeb, 0x5a, 0x3d, + 0xa8, 0x4c, 0x2c, 0x54, 0x17, 0xbf, 0xe9, 0xd2, 0xdb, 0xbf, 0x1f, 0x28, + 0x65, 0x3f, 0xce, 0xb2, 0x00, 0x81, 0xb5, 0x5f, 0x33, 0xcb, 0x6f, 0x31, + 0x57, 0x39, 0xed, 0x5a, 0x17, 0xea, 0x44, 0xa1, 0xb9, 0xc1, 0xee, 0x2a, + 0x9e, 0x00, 0x72, 0x76, 0xb6, 0x48, 0xfb, 0xd5, 0x32, 0xa8, 0x93, 0xb0, + 0xd4, 0x1b, 0x34, 0xed, 0xae, 0x24, 0x96, 0xf9, 0xfa, 0x88, 0x91, 0x00, + 0x1e, 0x84, 0xd6, 0x89, 0x39, 0x15, 0x97, 0x60, 0xad, 0x92, 0xc7, 0x38, + 0xe8, 0x33, 0x5a, 0x25, 0x80, 0x1d, 0x6a, 0xe3, 0x2b, 0xea, 0x4b, 0x8d, + 0xb4, 0x29, 0x37, 0xde, 0x6f, 0xad, 0x6b, 0x59, 0xb7, 0xee, 0x12, 0xb1, + 0xdc, 0xfc, 0xcd, 0x8f, 0x5a, 0xbd, 0x05, 0xca, 0x24, 0x2a, 0x33, 0xcd, + 0x5a, 0x66, 0x4d, 0x1b, 0xb1, 0xce, 0x61, 0x40, 0xc8, 0xc8, 0x0e, 0x7f, + 0x88, 0xe0, 0x56, 0x0d, 0xff, 0x00, 0x86, 0xb5, 0x6d, 0x7f, 0x56, 0xba, + 0xbb, 0xb2, 0xb5, 0x56, 0x5c, 0x02, 0xd8, 0x61, 0xc6, 0x07, 0x5f, 0xa5, + 0x4e, 0xba, 0x90, 0x41, 0xf7, 0x72, 0x3d, 0xeb, 0x23, 0x54, 0xf1, 0x85, + 0xce, 0x9d, 0x2b, 0x49, 0xa6, 0xb8, 0x8c, 0xca, 0x86, 0x29, 0x15, 0x4f, + 0x0c, 0x3b, 0x1a, 0x53, 0x51, 0x9a, 0xb3, 0x26, 0x0e, 0x70, 0x97, 0x34, + 0x37, 0x3d, 0x2a, 0x65, 0x89, 0x34, 0x98, 0x71, 0x3f, 0xda, 0x64, 0x86, + 0x15, 0x89, 0xa5, 0x73, 0x91, 0x90, 0x39, 0x00, 0x7b, 0x57, 0x27, 0x75, + 0x3a, 0x86, 0x3f, 0x30, 0xae, 0x6f, 0x4f, 0xd7, 0x2e, 0x65, 0xb3, 0x8a, + 0xcc, 0xcd, 0x23, 0x2a, 0xae, 0x7d, 0x06, 0x6a, 0xc1, 0x93, 0xb9, 0x35, + 0x4e, 0x44, 0xc6, 0x0d, 0x6e, 0x5b, 0xb8, 0x9d, 0x59, 0x0a, 0x83, 0x93, + 0x54, 0x58, 0x91, 0x2a, 0x9c, 0xf3, 0x8a, 0x43, 0x2a, 0x93, 0x80, 0x73, + 0xf4, 0xa8, 0xe4, 0x66, 0xf3, 0x14, 0x28, 0x19, 0x3e, 0xb4, 0xae, 0x69, + 0x62, 0x62, 0xe5, 0x8f, 0x27, 0x35, 0x1b, 0x4c, 0xaa, 0x71, 0x9c, 0x9f, + 0x41, 0xcd, 0x48, 0xb6, 0x85, 0xbf, 0xd6, 0x48, 0x4f, 0xb0, 0xe2, 0xa7, + 0x8e, 0x08, 0xe2, 0x1f, 0x22, 0x81, 0x53, 0xa9, 0x56, 0x45, 0x33, 0x14, + 0xf2, 0xa1, 0x38, 0xf2, 0xd7, 0xf5, 0x35, 0x9a, 0xcc, 0xa0, 0x60, 0x91, + 0x80, 0x79, 0xae, 0x81, 0xc6, 0x50, 0x8f, 0x6a, 0xc1, 0xf2, 0x15, 0x5c, + 0xe7, 0x93, 0xef, 0x52, 0xc6, 0x4d, 0x63, 0x29, 0x96, 0xe9, 0x32, 0xa4, + 0x60, 0x75, 0xab, 0x88, 0x24, 0x12, 0x4a, 0xa5, 0x78, 0xdf, 0x9e, 0x0d, + 0x56, 0xb2, 0x1f, 0xe9, 0x8b, 0xf4, 0xab, 0xeb, 0xfe, 0xbe, 0x5f, 0xaf, + 0xf4, 0xa9, 0x63, 0x42, 0x6f, 0xe3, 0xd0, 0xfb, 0xd7, 0x55, 0xf0, 0xf3, + 0x9f, 0x18, 0x5a, 0xe1, 0xb2, 0x36, 0xbf, 0xfe, 0x82, 0x6b, 0x99, 0xc0, + 0x35, 0xb7, 0xe1, 0x4b, 0x97, 0xd3, 0xb5, 0xf8, 0x2e, 0x61, 0x09, 0xbc, + 0x12, 0xbf, 0x30, 0xe3, 0x91, 0x8a, 0x21, 0x7e, 0x64, 0x39, 0x6c, 0x7b, + 0xb1, 0x5a, 0x69, 0x1e, 0xb5, 0xc7, 0xcb, 0xad, 0xea, 0xd2, 0xcc, 0x40, + 0x93, 0x09, 0x82, 0x7f, 0x73, 0x17, 0xf5, 0x26, 0xac, 0x41, 0xbf, 0x54, + 0x84, 0x12, 0x97, 0x63, 0x76, 0x47, 0xcd, 0x27, 0xeb, 0x81, 0x5e, 0xa2, + 0xa2, 0xfa, 0x9c, 0x92, 0xaa, 0x92, 0xb9, 0xd1, 0x49, 0x34, 0x31, 0xfd, + 0xf9, 0x51, 0x7e, 0xa6, 0xaa, 0xcb, 0xa9, 0xd8, 0xc4, 0x32, 0xf7, 0x08, + 0x07, 0xd6, 0xb3, 0xa3, 0xd0, 0x50, 0x4c, 0x14, 0xc7, 0x34, 0xc4, 0xa8, + 0x3b, 0xb3, 0xc0, 0xf6, 0xa1, 0xf4, 0xb0, 0x64, 0xc7, 0x95, 0xb4, 0xaf, + 0x03, 0x68, 0x3c, 0xe6, 0xb9, 0xab, 0x62, 0x69, 0x52, 0x8b, 0x6a, 0xed, + 0xaf, 0x91, 0xd1, 0x47, 0x0f, 0x56, 0xa3, 0x5c, 0xd6, 0x49, 0xeb, 0xbd, + 0xc9, 0x47, 0x88, 0x74, 0xe7, 0x66, 0x09, 0x29, 0x6d, 0xbd, 0x48, 0x53, + 0x81, 0xf8, 0xd2, 0x5a, 0xeb, 0x76, 0x97, 0xb7, 0x62, 0xde, 0x1d, 0xc5, + 0x8e, 0x79, 0x22, 0xa9, 0xaf, 0x85, 0xe4, 0x45, 0x6f, 0x22, 0xc9, 0x9b, + 0x71, 0xdd, 0xf3, 0x37, 0x7c, 0xfb, 0xd5, 0xcb, 0x1d, 0x12, 0xee, 0xce, + 0xf5, 0x27, 0x9a, 0xd2, 0x34, 0x5c, 0x11, 0xb8, 0x38, 0x24, 0x57, 0x55, + 0x39, 0xd2, 0x9c, 0x5b, 0xdb, 0xc9, 0xee, 0x73, 0x56, 0xe6, 0xa7, 0x25, + 0x15, 0xad, 0xfa, 0xaf, 0x53, 0x48, 0xa5, 0x30, 0xad, 0x5a, 0x29, 0x4c, + 0x29, 0x52, 0xa4, 0x55, 0x8f, 0x20, 0xf8, 0xb0, 0xef, 0x16, 0xa9, 0xa7, + 0x94, 0x62, 0xb9, 0x85, 0x81, 0xc7, 0xd6, 0xbc, 0xd5, 0xcc, 0xad, 0xc9, + 0x66, 0x3c, 0x57, 0xac, 0x7c, 0x4f, 0x68, 0x21, 0xd6, 0x34, 0xf6, 0x9d, + 0x37, 0x2f, 0x90, 0xf8, 0x18, 0xf7, 0xae, 0x73, 0x4f, 0xd7, 0x7c, 0x33, + 0x14, 0x57, 0x09, 0x7b, 0x65, 0x71, 0x20, 0x68, 0x4a, 0xa0, 0x8b, 0x03, + 0x0d, 0xcd, 0x71, 0xd7, 0xa8, 0xe3, 0x2d, 0x23, 0x73, 0xa2, 0x9c, 0x13, + 0x5a, 0xbb, 0x1c, 0x29, 0x49, 0x18, 0x91, 0x86, 0x3f, 0x2d, 0x2c, 0x36, + 0x53, 0xdc, 0x4c, 0x91, 0x45, 0x19, 0x2e, 0xdf, 0x28, 0x1e, 0xf5, 0x69, + 0x6e, 0xcc, 0x53, 0x99, 0x02, 0x64, 0x01, 0xd3, 0x34, 0xfb, 0x2d, 0x56, + 0x5b, 0x0d, 0x4e, 0x1b, 0xe4, 0x8d, 0x1d, 0xa2, 0x70, 0xe1, 0x1b, 0xa1, + 0xf6, 0xa7, 0x27, 0x2b, 0x3b, 0x22, 0x52, 0x8d, 0xf5, 0x35, 0xe1, 0xf8, + 0x6f, 0xe2, 0x59, 0xe2, 0x12, 0xad, 0x90, 0x08, 0x7e, 0x50, 0x4b, 0x8e, + 0xb5, 0x8d, 0xab, 0xf8, 0x76, 0xfb, 0x44, 0xbf, 0xfb, 0x25, 0xf2, 0x08, + 0xe5, 0x00, 0x12, 0x33, 0x9e, 0xb5, 0xda, 0x49, 0xf1, 0x73, 0x57, 0xd8, + 0xc9, 0x0d, 0x9d, 0xbc, 0x4a, 0x4e, 0xe0, 0x01, 0x27, 0x15, 0xc8, 0x6b, + 0xfe, 0x23, 0xbe, 0xf1, 0x0e, 0xa0, 0x6e, 0xef, 0x0a, 0x87, 0xda, 0x06, + 0x14, 0x71, 0x81, 0x58, 0x52, 0x96, 0x21, 0xcb, 0xf7, 0x89, 0x24, 0x69, + 0x3f, 0x65, 0x6f, 0x74, 0xcd, 0x8f, 0x4f, 0x79, 0x64, 0x08, 0x92, 0x21, + 0xe0, 0x9c, 0x8a, 0x8d, 0x2c, 0xda, 0x47, 0x48, 0xc3, 0x0c, 0x96, 0xc5, + 0x2c, 0x77, 0x13, 0x44, 0xdb, 0x91, 0xc8, 0x3d, 0x29, 0x8b, 0x23, 0xa3, + 0x2b, 0xab, 0x10, 0xc0, 0xe4, 0x1a, 0xe9, 0xd4, 0xc7, 0x43, 0xbe, 0xd1, + 0xfe, 0x12, 0xdf, 0xea, 0xf1, 0xc6, 0xeb, 0x7d, 0x0c, 0x62, 0x45, 0xdf, + 0xc8, 0x3c, 0x52, 0xaf, 0xc2, 0x5b, 0xc7, 0xd5, 0x85, 0x80, 0xd4, 0x20, + 0xf3, 0x19, 0x4b, 0x74, 0xe9, 0x83, 0x5c, 0xdd, 0xbf, 0x8c, 0xfc, 0x41, + 0x68, 0x00, 0x83, 0x51, 0x91, 0x36, 0x8d, 0xa3, 0x6f, 0x18, 0x15, 0x18, + 0xf1, 0x6e, 0xb8, 0xb7, 0x86, 0xed, 0x6f, 0xe4, 0x13, 0xe3, 0x1b, 0xf3, + 0xcd, 0x71, 0xf2, 0x62, 0xbf, 0x99, 0x7f, 0x5f, 0x23, 0xa3, 0x9e, 0x8f, + 0xf2, 0x97, 0x62, 0xf0, 0xfd, 0xb7, 0xd8, 0xc5, 0xd9, 0xf3, 0x1a, 0x17, + 0x05, 0x55, 0x88, 0x1d, 0x40, 0xfa, 0xd5, 0x13, 0xa7, 0xe9, 0x98, 0xcf, + 0xda, 0xd8, 0x64, 0x77, 0x5a, 0xca, 0xd1, 0x2e, 0xa5, 0x7b, 0x99, 0x91, + 0xa6, 0x72, 0x8b, 0x6f, 0x21, 0x00, 0xf4, 0x1f, 0x2f, 0x5a, 0xce, 0x33, + 0x9c, 0x9f, 0xf4, 0x81, 0xd3, 0xfb, 0xb5, 0xbc, 0x5b, 0xea, 0xcc, 0x9f, + 0xa1, 0xd1, 0x7f, 0x67, 0xe9, 0xc4, 0x02, 0x2f, 0x78, 0xc7, 0x75, 0xa9, + 0xe2, 0xd1, 0xac, 0xde, 0x07, 0x75, 0xbb, 0x56, 0x00, 0x0f, 0x9b, 0x07, + 0xe5, 0xae, 0x41, 0xee, 0x24, 0xf2, 0xd3, 0x12, 0xe4, 0xed, 0xe4, 0x62, + 0xb7, 0xf4, 0x69, 0x58, 0xf8, 0x63, 0x52, 0x72, 0xc3, 0x2a, 0x17, 0x93, + 0xdb, 0x9a, 0x7c, 0xc2, 0x45, 0xb6, 0xd1, 0x21, 0x07, 0x09, 0x7b, 0x16, + 0x7a, 0x80, 0x4d, 0x34, 0x68, 0x32, 0x91, 0x94, 0xb8, 0x81, 0xb1, 0xe8, + 0xe2, 0xb9, 0xe5, 0xbb, 0x99, 0x99, 0x48, 0x70, 0x47, 0x7e, 0x4d, 0x4d, + 0x1d, 0xd5, 0xda, 0x3e, 0xc0, 0x78, 0x23, 0x90, 0x1a, 0x8e, 0x6f, 0x30, + 0xb1, 0xbd, 0xfd, 0x83, 0x76, 0x8a, 0x98, 0x01, 0x89, 0x07, 0x20, 0x1c, + 0xd3, 0x0e, 0x93, 0x78, 0x98, 0xcc, 0x2d, 0xc0, 0xc5, 0x4b, 0xa8, 0x5e, + 0x34, 0x56, 0xb6, 0x7e, 0x49, 0x2c, 0xfb, 0x3e, 0x72, 0xa7, 0xa1, 0xc0, + 0xac, 0xff, 0x00, 0xed, 0x9b, 0xa8, 0xd9, 0x4e, 0x65, 0x19, 0x1c, 0x8a, + 0x7c, 0xd7, 0x0b, 0x16, 0x3e, 0xc5, 0x71, 0xb8, 0x8f, 0x29, 0xb3, 0x8a, + 0x7b, 0xd8, 0xdd, 0xc2, 0x73, 0x24, 0x12, 0xa8, 0x62, 0x08, 0xca, 0x9e, + 0x45, 0x68, 0xe9, 0x3a, 0x9c, 0xf7, 0x92, 0x4a, 0x24, 0x66, 0x21, 0x54, + 0x1c, 0x30, 0xae, 0x82, 0xd3, 0xe2, 0x16, 0x8d, 0x15, 0x9f, 0xd9, 0x2e, + 0x34, 0xb2, 0x65, 0xc6, 0xcf, 0x34, 0x39, 0xc8, 0x3e, 0xb5, 0x95, 0x49, + 0xca, 0x3b, 0x2b, 0x97, 0x18, 0xa7, 0xb9, 0xc5, 0x6e, 0x90, 0x75, 0x2c, + 0x08, 0x1d, 0xea, 0x44, 0x99, 0xd4, 0xfa, 0xf4, 0xeb, 0x5d, 0xad, 0x9e, + 0xab, 0xe1, 0x7d, 0x46, 0x49, 0x96, 0x43, 0x2a, 0xbb, 0x1d, 0xca, 0x4c, + 0x61, 0xb8, 0xef, 0x9a, 0xb9, 0x72, 0xde, 0x1a, 0xd4, 0x20, 0x86, 0xc2, + 0x3b, 0x5b, 0x1b, 0x79, 0xd4, 0x85, 0x69, 0xf9, 0x56, 0x3f, 0x5a, 0x87, + 0x5a, 0xdb, 0xc4, 0xa5, 0x0e, 0xcc, 0x87, 0xc2, 0xd3, 0x79, 0x9a, 0x6c, + 0xae, 0xc9, 0x8c, 0xbf, 0x38, 0xfa, 0x0a, 0xde, 0x2a, 0xcc, 0xd9, 0x56, + 0x38, 0x18, 0x24, 0x63, 0xb5, 0x62, 0x69, 0x90, 0xae, 0x9e, 0x97, 0x56, + 0xf6, 0xf2, 0xa4, 0xb1, 0xc7, 0x29, 0x50, 0xea, 0x72, 0x3f, 0x0f, 0x5a, + 0xd5, 0x86, 0xf6, 0x15, 0xde, 0x66, 0x66, 0x8f, 0x38, 0xd9, 0xc7, 0x53, + 0x9e, 0xf5, 0x84, 0xd3, 0x6f, 0x99, 0x1d, 0x30, 0x92, 0xb5, 0x99, 0xab, + 0x61, 0x6e, 0xaa, 0xac, 0x24, 0x8f, 0x7b, 0x0e, 0x72, 0x17, 0x18, 0xad, + 0x24, 0x74, 0xf2, 0x17, 0x7c, 0x8c, 0x7e, 0x63, 0xf7, 0x7f, 0x95, 0x56, + 0x8d, 0xf2, 0xec, 0x56, 0xe7, 0x78, 0x2a, 0x39, 0xc7, 0x5f, 0x6a, 0xb3, + 0x0f, 0x99, 0xe4, 0xae, 0xd0, 0xa9, 0xc9, 0xce, 0x6b, 0x19, 0x4a, 0xe9, + 0x33, 0x48, 0xc7, 0x56, 0x90, 0xdd, 0x50, 0x83, 0x69, 0x36, 0x10, 0xfd, + 0xc1, 0xf3, 0x7e, 0x3d, 0x2b, 0x8b, 0x63, 0xf3, 0x1f, 0xad, 0x77, 0xfa, + 0xa5, 0x84, 0xab, 0xa7, 0x4d, 0x2b, 0x4a, 0xa4, 0x05, 0x19, 0x51, 0xd0, + 0x57, 0x9c, 0xea, 0x17, 0x2d, 0x69, 0x6f, 0x24, 0xcb, 0x13, 0x48, 0x17, + 0x92, 0x17, 0xb0, 0xad, 0xe8, 0xe8, 0xac, 0xcc, 0x71, 0x11, 0x69, 0xa6, + 0x4d, 0xd8, 0xd5, 0x49, 0x3f, 0xe3, 0xc2, 0xf0, 0xe7, 0xb9, 0xa8, 0xf4, + 0xdd, 0x46, 0x3d, 0x42, 0xd9, 0x65, 0x5f, 0x94, 0x91, 0x92, 0x84, 0xf2, + 0x29, 0xf2, 0x9f, 0xf8, 0x97, 0x5d, 0xff, 0x00, 0xbc, 0x6b, 0x74, 0x72, + 0xb3, 0x9b, 0x93, 0xf8, 0x7e, 0x95, 0x2d, 0xa9, 0xfd, 0xe8, 0xaa, 0xd3, + 0xc8, 0x11, 0x03, 0x1e, 0x81, 0x69, 0x74, 0xcb, 0xa8, 0xee, 0xbf, 0x79, + 0x19, 0x38, 0xe9, 0xcd, 0x68, 0x88, 0x37, 0x63, 0x35, 0x3a, 0x9a, 0xaa, + 0x8d, 0xc5, 0x4c, 0xad, 0x54, 0x22, 0x76, 0x3f, 0x21, 0xfa, 0x55, 0x35, + 0x6e, 0x0d, 0x4e, 0xcd, 0xf2, 0x1f, 0xa5, 0x54, 0x56, 0xe2, 0x86, 0x06, + 0xca, 0x22, 0x3a, 0x00, 0xca, 0x0f, 0x1d, 0xc5, 0x06, 0xce, 0x1c, 0x65, + 0x72, 0x9f, 0xee, 0x9a, 0x48, 0x9b, 0xe5, 0x5f, 0xa5, 0x2c, 0xd2, 0x94, + 0x85, 0x98, 0x0c, 0x90, 0x3a, 0x52, 0x1a, 0x30, 0xae, 0x22, 0x4b, 0x93, + 0x76, 0x15, 0xbe, 0x68, 0x8e, 0x32, 0xc3, 0x39, 0xe2, 0x93, 0x4f, 0xb4, + 0x09, 0x04, 0x52, 0xb8, 0x88, 0x39, 0x70, 0xa3, 0xb7, 0x3d, 0xa9, 0x6d, + 0x2e, 0x1a, 0x61, 0xe5, 0xb8, 0xd9, 0x3b, 0x21, 0x67, 0x5c, 0xfb, 0xd3, + 0x99, 0xa2, 0x82, 0x24, 0xfb, 0x4b, 0x0f, 0xdd, 0xb2, 0xb8, 0x1d, 0xf3, + 0x9c, 0x66, 0xa6, 0xc8, 0xab, 0xbb, 0x58, 0xdc, 0xf2, 0xe7, 0x51, 0xcc, + 0x27, 0xf0, 0x22, 0x9c, 0x1c, 0xaf, 0xde, 0x46, 0x1f, 0x51, 0x57, 0xa2, + 0x70, 0xd1, 0xa9, 0xf6, 0xa6, 0xdc, 0x9f, 0xdc, 0x9a, 0x62, 0x22, 0xf3, + 0x02, 0x80, 0x49, 0xc5, 0x48, 0xb3, 0x11, 0xd1, 0xbf, 0x5a, 0x86, 0x22, + 0x1a, 0x58, 0xc1, 0x19, 0x19, 0xad, 0x0f, 0xb3, 0x40, 0xdd, 0x62, 0x5f, + 0xca, 0x82, 0x4a, 0xcf, 0x2b, 0x3a, 0xed, 0x2c, 0x48, 0xf4, 0x26, 0xa3, + 0xc0, 0xf2, 0xf6, 0x60, 0x6d, 0xf4, 0xab, 0xbf, 0x64, 0x83, 0xfb, 0x98, + 0xfa, 0x1c, 0x52, 0x7d, 0x8a, 0x1f, 0xf6, 0xbf, 0xef, 0xa3, 0x45, 0x86, + 0x57, 0x86, 0x56, 0x80, 0x6d, 0x8c, 0xe0, 0x7d, 0x2a, 0x5f, 0xb6, 0xcd, + 0xfd, 0xef, 0xd2, 0x97, 0xec, 0x31, 0x7a, 0xbf, 0xfd, 0xf5, 0x4d, 0x36, + 0x49, 0xd9, 0x9b, 0xf3, 0xa4, 0x04, 0x0f, 0x21, 0x77, 0x2c, 0x4f, 0x26, + 0x91, 0x2e, 0x5e, 0x24, 0xda, 0xa4, 0x62, 0xa3, 0x91, 0x7c, 0xb9, 0x59, + 0x77, 0x13, 0x8f, 0x5a, 0x58, 0xad, 0xc4, 0xb1, 0xee, 0x32, 0x30, 0xfa, + 0x50, 0x02, 0xb5, 0xec, 0xbe, 0xa3, 0xf2, 0xac, 0x7d, 0x5e, 0xf9, 0x1a, + 0xdd, 0xe2, 0x95, 0x82, 0xb1, 0x19, 0x56, 0xc7, 0x20, 0xfb, 0x56, 0xb3, + 0x59, 0x2f, 0xfc, 0xf4, 0x7f, 0xd2, 0xb2, 0x6f, 0x2d, 0xd3, 0xed, 0x66, + 0x26, 0x59, 0x08, 0x11, 0x96, 0xdf, 0x8e, 0x3e, 0x94, 0x36, 0x35, 0x1b, + 0x98, 0x1a, 0x66, 0xb3, 0x71, 0x77, 0x76, 0x65, 0xbf, 0xb8, 0x67, 0x11, + 0x0c, 0x22, 0xb2, 0x9e, 0x4f, 0x7a, 0xe9, 0x3e, 0xdd, 0x23, 0x28, 0x2a, + 0x40, 0x04, 0x7a, 0x56, 0x05, 0x9d, 0xb1, 0x48, 0x2e, 0xa4, 0x93, 0x73, + 0xb2, 0xe4, 0xa8, 0x51, 0x57, 0x2e, 0xa4, 0x8e, 0x3b, 0x55, 0x2b, 0x74, + 0xb1, 0xc8, 0xcb, 0x90, 0xb2, 0x36, 0x28, 0x4d, 0xf5, 0x09, 0x45, 0x2d, + 0xb6, 0x2e, 0x9b, 0xa9, 0x1a, 0x55, 0x05, 0xba, 0x9f, 0x4a, 0x9c, 0x9a, + 0xc8, 0xb3, 0x64, 0x70, 0x9b, 0xe7, 0x8d, 0xa5, 0x1c, 0xe1, 0x24, 0xdd, + 0x9a, 0xd3, 0xdd, 0xc5, 0x52, 0xd4, 0x81, 0x1c, 0xfc, 0xcb, 0x48, 0x4d, + 0x23, 0x1f, 0x99, 0x69, 0x0e, 0x28, 0x19, 0xc9, 0xf8, 0x86, 0x1b, 0xab, + 0x89, 0x22, 0x4b, 0x7f, 0x33, 0x1b, 0xce, 0xed, 0xa7, 0x15, 0x15, 0xe6, + 0x95, 0x2d, 0xcd, 0xfc, 0x33, 0x0c, 0x6d, 0x40, 0x33, 0x9e, 0xb5, 0xd5, + 0xf9, 0x51, 0xe4, 0x9d, 0xa3, 0x3e, 0xf4, 0xc7, 0xc0, 0x1c, 0x01, 0x52, + 0xd1, 0x49, 0xd8, 0xc2, 0xf6, 0xa5, 0x5e, 0xa6, 0x87, 0x3f, 0x33, 0x7d, + 0x4d, 0x2a, 0x9a, 0xf9, 0xfa, 0x9f, 0x13, 0x3e, 0xb2, 0x97, 0xc2, 0x87, + 0x0e, 0xa2, 0xba, 0x1b, 0x66, 0xc4, 0x35, 0xce, 0xe7, 0x9a, 0xda, 0x8a, + 0x50, 0x20, 0xe0, 0xd6, 0x12, 0x57, 0x9c, 0x7d, 0x4d, 0x5b, 0xb2, 0x67, + 0x7b, 0xe0, 0x21, 0xe6, 0x5e, 0x5d, 0xf1, 0xd1, 0x17, 0xfa, 0xd5, 0x4f, + 0x88, 0x23, 0x12, 0x42, 0x0f, 0xfb, 0x55, 0x3f, 0xc3, 0x8b, 0x88, 0xc5, + 0xdd, 0xf0, 0x73, 0xce, 0xc5, 0xc7, 0xeb, 0x59, 0xbe, 0x3c, 0xbc, 0xf3, + 0xf5, 0xb8, 0x2d, 0xa3, 0xf9, 0xce, 0xd2, 0x76, 0x8e, 0x4e, 0x6b, 0x7a, + 0xd1, 0xb6, 0x87, 0x97, 0x5a, 0x4d, 0xca, 0xfe, 0x87, 0x13, 0x37, 0x30, + 0xc0, 0xde, 0x8d, 0x8f, 0xd2, 0xad, 0xdb, 0xcb, 0xe5, 0xc9, 0x81, 0xeb, + 0x59, 0x5a, 0x84, 0xad, 0x67, 0x14, 0x71, 0xcc, 0xad, 0x1c, 0xab, 0x27, + 0x2a, 0xeb, 0x82, 0x3f, 0x0a, 0x62, 0x5f, 0x09, 0x27, 0x66, 0x0d, 0xc6, + 0xea, 0xba, 0x31, 0x7c, 0xc9, 0xfa, 0x9c, 0x18, 0x87, 0xee, 0x5b, 0xd0, + 0xf4, 0x0d, 0x3e, 0x50, 0xf2, 0x8d, 0xc7, 0xf8, 0x45, 0x76, 0xda, 0x4c, + 0x71, 0x90, 0x39, 0x15, 0xe4, 0xb6, 0x7a, 0xd4, 0x16, 0xf2, 0x03, 0x24, + 0x8a, 0x06, 0x07, 0x53, 0x59, 0xb7, 0xde, 0x31, 0xd4, 0xc6, 0xa0, 0xff, + 0x00, 0x66, 0xbf, 0x92, 0x38, 0x49, 0x21, 0x42, 0x1c, 0x0c, 0x56, 0xf2, + 0x8d, 0xcf, 0x37, 0xd9, 0x4a, 0x4c, 0xfa, 0x07, 0x41, 0xb7, 0x78, 0xf5, + 0x8d, 0x51, 0xd1, 0x93, 0xcb, 0x7f, 0x2f, 0xe5, 0xef, 0x9c, 0x1e, 0x7e, + 0x95, 0x67, 0xc5, 0x3a, 0x02, 0xf8, 0x8b, 0x40, 0xb8, 0xb1, 0x66, 0x74, + 0x90, 0x8d, 0xd1, 0x3a, 0xb6, 0x30, 0xe3, 0xa7, 0xe1, 0x5e, 0x33, 0xe0, + 0xdf, 0x8a, 0xab, 0xe1, 0xe8, 0xae, 0x2d, 0xf5, 0x25, 0x9a, 0xe8, 0xc8, + 0xe1, 0xd5, 0xf3, 0x92, 0x38, 0xc7, 0x5a, 0xeb, 0x5b, 0xe3, 0x96, 0x8b, + 0xb7, 0x8b, 0x3b, 0x8c, 0xfa, 0x71, 0x5c, 0xfc, 0xb2, 0x8d, 0xd7, 0x2b, + 0x7e, 0x85, 0xb8, 0x3b, 0x9e, 0x37, 0xe2, 0x3d, 0x3b, 0x5a, 0xd1, 0x5f, + 0xfe, 0x26, 0x31, 0x48, 0xb2, 0x6f, 0x28, 0x0c, 0x9c, 0x86, 0xc7, 0x5c, + 0x1e, 0xf5, 0xcc, 0x8d, 0x4e, 0xe8, 0x9e, 0x02, 0xfe, 0x55, 0xdb, 0xf8, + 0xfb, 0xc6, 0x52, 0x78, 0xce, 0xf9, 0x24, 0x2a, 0x20, 0xb6, 0x84, 0x15, + 0x8a, 0x31, 0xd7, 0x9e, 0xa4, 0xfb, 0xd7, 0x2d, 0xf6, 0xcb, 0x4b, 0x4b, + 0x88, 0x5e, 0xd9, 0x5d, 0x7c, 0xa0, 0xa7, 0x61, 0x1b, 0x83, 0x9e, 0xf9, + 0xae, 0xea, 0x4d, 0xf2, 0xab, 0xc7, 0x52, 0xd5, 0xd6, 0xec, 0x66, 0x9e, + 0xf7, 0xda, 0x8d, 0xfc, 0x36, 0x90, 0xae, 0xe9, 0x25, 0x60, 0xa8, 0xa8, + 0x39, 0x24, 0xd7, 0xd0, 0x5f, 0x08, 0x7c, 0x25, 0xa9, 0x69, 0x0d, 0x7f, + 0x7d, 0xab, 0xac, 0xf1, 0xcf, 0x91, 0x0c, 0x31, 0x48, 0x4e, 0x02, 0xf5, + 0x24, 0x0f, 0x7e, 0x07, 0xe0, 0x6b, 0xc4, 0xaf, 0x75, 0x68, 0x2e, 0xb5, + 0x78, 0xb5, 0x3b, 0x38, 0x85, 0xa5, 0xc2, 0x10, 0xff, 0x00, 0x22, 0x80, + 0xbb, 0x87, 0x43, 0x81, 0x5e, 0xb9, 0xa5, 0x7c, 0x72, 0xb7, 0x16, 0x88, + 0xba, 0x95, 0xa1, 0x13, 0x81, 0x86, 0x68, 0x97, 0x86, 0x3e, 0xb8, 0xed, + 0x58, 0x57, 0x94, 0x9a, 0x4f, 0x97, 0x4e, 0xdd, 0x4b, 0x4b, 0xcc, 0xf5, + 0x1d, 0x7a, 0xd4, 0xdc, 0xe8, 0xd7, 0x50, 0x99, 0x8c, 0x4a, 0xf1, 0x90, + 0xc4, 0x0c, 0xf1, 0xfe, 0x78, 0xac, 0x0d, 0x42, 0xca, 0x38, 0x2d, 0x02, + 0xaf, 0x0a, 0xbc, 0x00, 0x2b, 0x8a, 0xd7, 0xbe, 0x35, 0x58, 0x5d, 0xe9, + 0x37, 0x36, 0xb6, 0xb0, 0x4a, 0x25, 0x96, 0x32, 0x81, 0x88, 0xc6, 0x33, + 0xde, 0xbc, 0xdb, 0xfe, 0x12, 0xbd, 0x59, 0xa1, 0x88, 0x1d, 0x4e, 0xe7, + 0x05, 0x86, 0x41, 0x73, 0x5c, 0xf1, 0xa7, 0x29, 0x3b, 0xda, 0xcb, 0xcc, + 0x6e, 0x37, 0x56, 0x4c, 0xee, 0xf5, 0x99, 0x55, 0x1b, 0x86, 0xcf, 0xcc, + 0x2b, 0x99, 0xb9, 0x99, 0xa5, 0xb9, 0x0a, 0xcc, 0x48, 0xcd, 0x31, 0xb5, + 0xa4, 0xb9, 0xb6, 0x8f, 0x7c, 0xd9, 0x97, 0x03, 0x76, 0x4d, 0x67, 0xcd, + 0x75, 0xfb, 0xf5, 0x60, 0xdf, 0xc4, 0x39, 0xad, 0x25, 0x1d, 0x05, 0x0b, + 0xa7, 0xa9, 0xd4, 0xc5, 0x0f, 0xfc, 0x4c, 0x2e, 0x40, 0x1f, 0x76, 0x01, + 0xfc, 0xab, 0xa4, 0xf0, 0x74, 0x65, 0x2f, 0x63, 0x38, 0xfb, 0xd1, 0x13, + 0xfa, 0x8a, 0xc2, 0xb3, 0x9c, 0x7d, 0xb6, 0xe1, 0xf2, 0x3e, 0x7b, 0x71, + 0x9f, 0xca, 0xb6, 0xbc, 0x2f, 0x7c, 0x17, 0x52, 0xb4, 0x40, 0x46, 0x3c, + 0xb3, 0x9f, 0xd2, 0xbc, 0x78, 0xdf, 0x99, 0x5f, 0xc8, 0xf6, 0xf9, 0xaf, + 0xa2, 0xf3, 0x36, 0x7e, 0x22, 0xc5, 0x8f, 0x0d, 0xab, 0xfa, 0x4a, 0xb5, + 0xe4, 0x6d, 0x26, 0xd0, 0x47, 0xad, 0x7a, 0xa7, 0xc4, 0xbd, 0x45, 0x1b, + 0x44, 0x86, 0xdd, 0x18, 0x02, 0xd2, 0x0e, 0x3b, 0x9c, 0x57, 0x91, 0xbb, + 0xf3, 0x5e, 0xc4, 0x92, 0x70, 0x76, 0x22, 0x93, 0x6a, 0x49, 0x32, 0xb4, + 0x87, 0x32, 0x13, 0x44, 0x3f, 0xeb, 0x05, 0x23, 0xfd, 0xe3, 0x4e, 0x83, + 0xfd, 0x65, 0x67, 0xd0, 0xef, 0x4b, 0x62, 0xda, 0x0f, 0x98, 0x55, 0x09, + 0x74, 0xb9, 0x7f, 0xb5, 0xbe, 0xd4, 0x31, 0xb7, 0x39, 0x3e, 0xb5, 0xa0, + 0x9f, 0x78, 0x56, 0xa2, 0x0f, 0x94, 0x71, 0xda, 0xb5, 0xc2, 0x7c, 0x4c, + 0xe2, 0xcc, 0x57, 0xb8, 0xbd, 0x4e, 0x56, 0xd2, 0xda, 0xe2, 0x1d, 0x4e, + 0x76, 0x75, 0x61, 0x13, 0x64, 0x83, 0x9e, 0x2b, 0xa8, 0x03, 0xe5, 0x14, + 0xad, 0x0c, 0x6d, 0xd5, 0x45, 0x2e, 0x30, 0x2b, 0xd1, 0x4c, 0xf2, 0x2c, + 0x40, 0xa3, 0xf7, 0xcf, 0xf4, 0x14, 0xfa, 0x45, 0xff, 0x00, 0x8f, 0x86, + 0xfa, 0x52, 0xb7, 0x14, 0xf9, 0x82, 0xc5, 0x29, 0x4f, 0xef, 0x5a, 0x99, + 0x6c, 0x5f, 0x0c, 0x5d, 0xb3, 0xcf, 0x1c, 0x74, 0xa2, 0x63, 0xfb, 0xe6, + 0xa6, 0xc0, 0xdf, 0x21, 0xfa, 0x9a, 0xa0, 0x45, 0xa2, 0x46, 0x39, 0xe9, + 0x58, 0xfa, 0x84, 0x10, 0xbd, 0xd4, 0x39, 0xc0, 0xcb, 0x63, 0x8a, 0xd5, + 0xdd, 0xc5, 0x60, 0x6a, 0x37, 0x01, 0xaf, 0xd5, 0x54, 0xfd, 0xce, 0x7f, + 0x1a, 0x6d, 0x5d, 0x09, 0xbb, 0x33, 0x69, 0x18, 0xc0, 0xa1, 0x50, 0xe0, + 0x53, 0x8c, 0xce, 0xea, 0x41, 0x3c, 0x54, 0x70, 0x05, 0xb8, 0x89, 0x5f, + 0x27, 0xa5, 0x4b, 0x25, 0xba, 0xa4, 0x45, 0x83, 0x1c, 0x8a, 0x4a, 0x5d, + 0x0a, 0xe5, 0xea, 0x35, 0x4e, 0x08, 0xc7, 0x51, 0x53, 0x89, 0x64, 0x3f, + 0xc5, 0x57, 0xbc, 0x37, 0xa3, 0x8d, 0x73, 0x58, 0x8a, 0xc9, 0x9c, 0xa2, + 0xb0, 0x2c, 0x48, 0xf6, 0xaf, 0x46, 0xd3, 0x7e, 0x1e, 0xe9, 0x12, 0x4c, + 0x60, 0xbb, 0xbd, 0x91, 0x66, 0xc6, 0x42, 0xa6, 0xd5, 0xc8, 0xfc, 0x41, + 0xae, 0x6a, 0xb8, 0xbf, 0x67, 0x3e, 0x44, 0xae, 0x69, 0x1a, 0x37, 0x8f, + 0x31, 0xe5, 0x6d, 0xba, 0x41, 0x86, 0xe4, 0x53, 0x44, 0x5c, 0x63, 0x1c, + 0x57, 0xb8, 0x27, 0xc2, 0xcd, 0x19, 0x4e, 0x4c, 0xb7, 0x0e, 0x3d, 0x09, + 0x1f, 0xd0, 0x54, 0xe3, 0xe1, 0xa6, 0x82, 0x3f, 0xe5, 0xdd, 0x8f, 0xfd, + 0xb4, 0x3f, 0xe3, 0x51, 0xf5, 0x9a, 0x9f, 0xc9, 0xf8, 0xa2, 0x52, 0xa7, + 0xfc, 0xc7, 0x85, 0xaa, 0x11, 0xc0, 0xcd, 0x29, 0x8d, 0xbd, 0x0d, 0x7b, + 0xc4, 0x7f, 0x0e, 0xf4, 0x05, 0xe4, 0xdb, 0x1f, 0xc6, 0x56, 0xff, 0x00, + 0x1a, 0xbd, 0x0f, 0x83, 0x34, 0x08, 0x46, 0x3e, 0xc3, 0x0b, 0x7f, 0xbd, + 0xcf, 0xf3, 0xa3, 0xeb, 0x15, 0xfe, 0xcc, 0x17, 0xdf, 0xff, 0x00, 0x00, + 0x4d, 0x52, 0xef, 0xf8, 0x1f, 0x3a, 0xbf, 0x00, 0xd2, 0xc6, 0xc5, 0x90, + 0x6d, 0x56, 0x3f, 0x85, 0x76, 0x1f, 0x11, 0xf4, 0xbb, 0x2d, 0x2b, 0xc4, + 0x06, 0x3b, 0x28, 0xd2, 0x38, 0xde, 0x20, 0xe5, 0x13, 0xa0, 0x39, 0x23, + 0xfa, 0x57, 0x37, 0x6b, 0x8f, 0xb3, 0xad, 0x76, 0xd1, 0xa8, 0xe7, 0x1b, + 0xbd, 0x0c, 0x65, 0x14, 0x8a, 0xa5, 0x25, 0x20, 0xfc, 0x98, 0xfa, 0x9a, + 0xc2, 0xbb, 0xb7, 0x56, 0x80, 0x4b, 0x10, 0x42, 0x4b, 0x1e, 0xde, 0xf5, + 0xd6, 0x05, 0xde, 0x42, 0xe0, 0x9c, 0xf6, 0x14, 0xed, 0x6b, 0x46, 0xb4, + 0x8e, 0xd5, 0x05, 0xa3, 0xe2, 0x45, 0x00, 0xc8, 0xbf, 0x5a, 0x55, 0x2b, + 0x46, 0x12, 0x51, 0x97, 0x53, 0xb7, 0x0b, 0x82, 0xa9, 0x5a, 0x9c, 0xaa, + 0xc3, 0xa1, 0xcd, 0xda, 0xc3, 0xb2, 0x78, 0xe3, 0xda, 0xc4, 0x15, 0xc9, + 0x61, 0x5a, 0xeb, 0x6d, 0x10, 0xea, 0xb9, 0xfa, 0xf3, 0x5a, 0x1a, 0x2f, + 0xcb, 0x6f, 0x24, 0x51, 0x40, 0xb3, 0xcf, 0xb9, 0x43, 0x86, 0xfe, 0x15, + 0x3d, 0x71, 0x51, 0x5c, 0xc7, 0xe5, 0x4c, 0xc3, 0x18, 0x19, 0xa5, 0x4a, + 0xb4, 0x67, 0x37, 0x0b, 0x6c, 0x69, 0x8a, 0xc0, 0x4a, 0x8d, 0x18, 0xd6, + 0xbe, 0xfb, 0x94, 0xe6, 0x55, 0x58, 0x8e, 0x00, 0x15, 0x4b, 0x3f, 0xbf, + 0x8e, 0xaf, 0x4f, 0xfe, 0xa9, 0xab, 0x3c, 0x9c, 0x4f, 0x1d, 0x74, 0x9e, + 0x5b, 0x46, 0x98, 0xa5, 0xa6, 0x83, 0xc5, 0x19, 0xa4, 0xd8, 0xc1, 0xba, + 0x1a, 0xc4, 0x7f, 0xbe, 0xdf, 0x5a, 0xd9, 0x63, 0xc5, 0x60, 0x4f, 0x72, + 0x91, 0xdc, 0x88, 0xce, 0x72, 0xc4, 0xe2, 0xb3, 0x6f, 0x51, 0xd8, 0xb7, + 0x67, 0xff, 0x00, 0x1f, 0x89, 0x57, 0xc7, 0xfa, 0xf9, 0x7e, 0xa3, 0xf9, + 0x55, 0x0b, 0x33, 0xfe, 0x98, 0x95, 0xa0, 0x0e, 0x27, 0x97, 0xea, 0x3f, + 0x95, 0x26, 0x34, 0x3c, 0x57, 0x53, 0xe0, 0x1d, 0x3d, 0x75, 0x2f, 0x15, + 0x5b, 0xc4, 0xe3, 0x28, 0x80, 0xc8, 0xc3, 0xd8, 0x0f, 0xf1, 0xc5, 0x71, + 0x32, 0x6a, 0x05, 0x2f, 0xd6, 0xd8, 0x42, 0xcd, 0x91, 0x9d, 0xc2, 0xbd, + 0x0f, 0xe1, 0x94, 0x46, 0x4f, 0x15, 0xa9, 0x59, 0x56, 0x3d, 0xb0, 0xb9, + 0x39, 0xfe, 0x2e, 0xd8, 0x1f, 0x9e, 0x7f, 0x0a, 0x9b, 0xf9, 0xd8, 0x25, + 0x7e, 0x5d, 0x11, 0xec, 0x50, 0xe9, 0x76, 0x76, 0xe3, 0xe4, 0xb7, 0x40, + 0x49, 0xce, 0x71, 0xcd, 0x59, 0x44, 0x48, 0xc9, 0x0a, 0x00, 0xc9, 0xce, + 0x05, 0x46, 0xfe, 0x69, 0xe1, 0x66, 0x00, 0x0f, 0xf6, 0x6a, 0x29, 0x2e, + 0x23, 0xb7, 0x50, 0xd7, 0x17, 0x31, 0xaf, 0xbb, 0x90, 0xb5, 0x4e, 0x12, + 0x96, 0xae, 0x57, 0x30, 0xb4, 0xba, 0x44, 0xb4, 0xdf, 0x37, 0x0a, 0xa7, + 0x9e, 0xa7, 0x15, 0x5c, 0xdb, 0x95, 0x90, 0x32, 0x81, 0x91, 0xc8, 0xe6, + 0xb1, 0x6f, 0xbc, 0x6d, 0xa1, 0x58, 0xe1, 0x5e, 0xf6, 0x29, 0x30, 0x70, + 0xc2, 0x23, 0xbc, 0x8f, 0xca, 0xb1, 0xaf, 0x7e, 0x25, 0xe9, 0xf0, 0x21, + 0x78, 0x2c, 0xe7, 0x90, 0x0e, 0x85, 0x80, 0x4c, 0xfe, 0x7c, 0xd1, 0xec, + 0xe2, 0xd5, 0x99, 0xb4, 0x7d, 0xa2, 0x5a, 0x23, 0xb9, 0x57, 0x6c, 0xf2, + 0x17, 0xdc, 0xd4, 0x57, 0x32, 0x88, 0xc7, 0x27, 0x25, 0xfe, 0x50, 0x05, + 0x79, 0xa4, 0xff, 0x00, 0x14, 0xae, 0xcb, 0x22, 0x47, 0xa7, 0xc6, 0x37, + 0x0c, 0x92, 0x5c, 0xf4, 0xab, 0x5a, 0x3f, 0xc4, 0x0b, 0x5b, 0xab, 0xb9, + 0x1b, 0x55, 0x9d, 0xe1, 0x46, 0x73, 0xe4, 0xa9, 0x8f, 0x2a, 0x83, 0x1d, + 0x0b, 0x0e, 0x7f, 0x4a, 0xa8, 0x53, 0x85, 0xd3, 0x33, 0x94, 0x66, 0xb4, + 0xd1, 0x1d, 0xa1, 0xe3, 0x39, 0x1c, 0x0e, 0xf4, 0x9f, 0x29, 0x24, 0x02, + 0x09, 0x1d, 0x47, 0xa5, 0x65, 0xea, 0x1e, 0x2b, 0xd0, 0xec, 0x34, 0xff, + 0x00, 0xb6, 0x1b, 0xe8, 0x66, 0x56, 0xe1, 0x16, 0x27, 0x0c, 0xcc, 0x7d, + 0x31, 0xda, 0xaa, 0xf8, 0x4f, 0xc4, 0x11, 0xf8, 0x96, 0xe2, 0xfe, 0xe2, + 0x3b, 0x66, 0x80, 0x44, 0x23, 0x8f, 0x0c, 0xc0, 0x93, 0xf7, 0x8e, 0x7f, + 0x5a, 0xea, 0xe7, 0x5b, 0x03, 0x8f, 0x53, 0xcd, 0xfe, 0x36, 0xa4, 0x9f, + 0xda, 0x3a, 0x51, 0x46, 0x20, 0x79, 0x4f, 0x9e, 0x7d, 0xc5, 0x79, 0x12, + 0x89, 0x51, 0xd0, 0xac, 0x9c, 0xe7, 0x9e, 0x6b, 0xd7, 0xfe, 0x3b, 0x31, + 0x8a, 0xff, 0x00, 0x48, 0x00, 0x0f, 0x9a, 0x37, 0x07, 0x3f, 0x51, 0x5e, + 0x32, 0x24, 0x60, 0xc9, 0xcf, 0x7a, 0xe6, 0xa9, 0x27, 0xcf, 0xa1, 0xbc, + 0x62, 0xb9, 0x75, 0x34, 0x84, 0x93, 0x48, 0xc1, 0x70, 0xa3, 0x23, 0xd2, + 0xad, 0xdb, 0xd8, 0xcd, 0x74, 0x09, 0x0e, 0x11, 0x42, 0x9c, 0xb1, 0x1c, + 0x71, 0x58, 0x6b, 0x71, 0x26, 0xfd, 0xc1, 0xc8, 0x6c, 0x1e, 0x6b, 0x6b, + 0xc3, 0xd3, 0xc9, 0x23, 0x5e, 0xab, 0x3b, 0x15, 0xfb, 0x24, 0x8d, 0x82, + 0x7b, 0xe2, 0xa5, 0x4a, 0x6d, 0xee, 0x3b, 0x41, 0x2d, 0x89, 0x92, 0xc6, + 0xd3, 0xcd, 0x40, 0xfa, 0xb4, 0x04, 0x1e, 0x0a, 0xaa, 0x93, 0x9f, 0xd2, + 0xac, 0x5c, 0x69, 0xfa, 0x6d, 0xbc, 0x85, 0x65, 0xbe, 0x0a, 0x73, 0x8c, + 0x6d, 0x35, 0x81, 0xa6, 0x40, 0xaf, 0x70, 0x1a, 0x5b, 0x85, 0x88, 0x85, + 0x0c, 0x81, 0xbf, 0x88, 0xe7, 0xa0, 0xab, 0x5a, 0xea, 0x41, 0xfd, 0xbf, + 0x72, 0x27, 0x95, 0x93, 0xe5, 0xf9, 0x08, 0x5c, 0xf3, 0x81, 0x54, 0xa6, + 0xf7, 0x25, 0xc5, 0x1a, 0x6d, 0x69, 0xa5, 0x28, 0x04, 0xde, 0x13, 0xf4, + 0x5a, 0x7c, 0x16, 0x7a, 0x5c, 0x93, 0x22, 0x2c, 0xd2, 0x39, 0x3d, 0x06, + 0xce, 0xbf, 0xad, 0x72, 0xb1, 0xc9, 0x33, 0x5b, 0xc6, 0xde, 0x6f, 0x1b, + 0xb1, 0x8c, 0x56, 0xc6, 0x8a, 0xb2, 0x0d, 0x56, 0x0d, 0xd3, 0x06, 0x19, + 0x3c, 0x63, 0xda, 0xb5, 0xb9, 0x9f, 0x52, 0xec, 0xd6, 0xba, 0x4c, 0x64, + 0x86, 0x9e, 0x5f, 0xfb, 0xe4, 0x7f, 0x8d, 0x55, 0x4f, 0xec, 0x79, 0x59, + 0xa3, 0x49, 0xa7, 0x2c, 0x3f, 0xd8, 0x1f, 0xe3, 0x59, 0x17, 0x31, 0xcd, + 0xe4, 0xca, 0x43, 0xb1, 0x1b, 0x8f, 0x01, 0x7d, 0xeb, 0x2d, 0x96, 0x45, + 0x76, 0x38, 0x61, 0xcf, 0xa5, 0x44, 0xa4, 0xfa, 0x30, 0xf9, 0x1e, 0x9d, + 0xa7, 0xf8, 0x4c, 0xd9, 0x43, 0x72, 0x1a, 0xe1, 0x5d, 0xa5, 0x8c, 0xa2, + 0x9d, 0xbf, 0x77, 0x22, 0xb3, 0xc7, 0xc3, 0xf9, 0x76, 0xff, 0x00, 0xc7, + 0xe2, 0x1f, 0xf8, 0x0d, 0x74, 0x1f, 0xdb, 0xf1, 0xed, 0x03, 0xc8, 0x97, + 0xf4, 0xff, 0x00, 0x1a, 0x90, 0x6b, 0xf1, 0x63, 0xfe, 0x3d, 0xe6, 0xfc, + 0x85, 0x67, 0x74, 0x6d, 0xa1, 0xcd, 0x2f, 0xc3, 0xe9, 0xf2, 0x33, 0x77, + 0x1e, 0x3d, 0x76, 0xd6, 0xe5, 0x97, 0x86, 0xe2, 0xb3, 0xb0, 0x7b, 0x49, + 0x44, 0x6c, 0xb2, 0x60, 0x36, 0x38, 0xce, 0x2a, 0xc7, 0xfc, 0x24, 0x56, + 0xeb, 0xf7, 0xa1, 0x98, 0x7e, 0x15, 0x1c, 0xbe, 0x21, 0xb4, 0x95, 0x76, + 0x85, 0x94, 0x13, 0xfe, 0xcd, 0x4c, 0xb9, 0x6c, 0x09, 0xdb, 0x52, 0x94, + 0xfe, 0x13, 0xb5, 0x24, 0x79, 0x68, 0x8a, 0xbe, 0x80, 0x55, 0x67, 0xf0, + 0xaa, 0xa2, 0xbc, 0x8b, 0xb5, 0x76, 0xf7, 0x6f, 0x4a, 0xba, 0xd7, 0xb7, + 0x2d, 0xca, 0x4b, 0x36, 0xcf, 0x74, 0x14, 0xef, 0xb6, 0xde, 0x48, 0x9b, + 0x1a, 0x57, 0x28, 0xdc, 0x1c, 0xc6, 0x2b, 0x27, 0x52, 0x85, 0xac, 0xbf, + 0x31, 0x7b, 0x55, 0x27, 0x66, 0xd1, 0x19, 0xf0, 0xcc, 0x72, 0x5a, 0xc6, + 0x61, 0x98, 0x0f, 0x94, 0x31, 0x52, 0x3f, 0x95, 0x57, 0xbb, 0xf0, 0x94, + 0x4e, 0x91, 0x1b, 0x69, 0x2e, 0x0c, 0x81, 0x72, 0xe1, 0xd0, 0x00, 0x0e, + 0x7b, 0x73, 0x5a, 0x51, 0x6a, 0xd6, 0xe8, 0x55, 0x65, 0x97, 0x05, 0x46, + 0xdf, 0xbb, 0x57, 0xa3, 0xd6, 0xac, 0x4f, 0x1f, 0x69, 0x5f, 0xc6, 0xb4, + 0x51, 0x4f, 0x58, 0xca, 0xc3, 0xe6, 0x4b, 0x4b, 0x18, 0xf6, 0x3a, 0x1c, + 0xf6, 0x52, 0x49, 0xce, 0xe0, 0xe9, 0xdc, 0x74, 0xae, 0x5a, 0xe7, 0x4d, + 0xbb, 0x57, 0x67, 0x7b, 0x76, 0xc2, 0xb6, 0x7a, 0x75, 0xe6, 0xbd, 0x24, + 0x6a, 0x56, 0xac, 0x38, 0x9d, 0x0f, 0xe3, 0x56, 0x92, 0xee, 0xd1, 0xc0, + 0xfd, 0xf4, 0x5f, 0xf7, 0xd0, 0xad, 0x5c, 0xbc, 0xc8, 0x4a, 0xe7, 0x29, + 0xa0, 0xf8, 0x2f, 0x52, 0xb8, 0xf2, 0xef, 0x23, 0x8a, 0x21, 0x1b, 0xa9, + 0x5c, 0xb3, 0x01, 0x8c, 0x8e, 0xff, 0x00, 0x9d, 0x62, 0x6b, 0x7a, 0x6c, + 0xf1, 0xeb, 0x33, 0xae, 0xc6, 0xc8, 0x73, 0x9d, 0xa7, 0xda, 0xbd, 0x4a, + 0x2b, 0x88, 0x99, 0x36, 0x2c, 0xcb, 0xb7, 0xd0, 0x37, 0x14, 0xe4, 0xb0, + 0xb4, 0xb8, 0x3b, 0xa4, 0x8d, 0x18, 0xfa, 0xd6, 0x3c, 0xd3, 0x4d, 0xdd, + 0x9a, 0xf2, 0xc5, 0xa5, 0x64, 0x79, 0xce, 0x8b, 0x79, 0x2d, 0xa6, 0xcb, + 0x71, 0x13, 0xc9, 0xb9, 0xc6, 0x7e, 0x6e, 0xd5, 0xdb, 0x81, 0x03, 0x38, + 0x1b, 0x36, 0xb6, 0x47, 0x6a, 0xb3, 0x27, 0x87, 0xed, 0x25, 0xd6, 0x2d, + 0x48, 0x8c, 0xc7, 0x10, 0x07, 0x21, 0x7a, 0x37, 0x4a, 0xe8, 0x53, 0x40, + 0xb3, 0x40, 0x86, 0x25, 0x60, 0x01, 0xcf, 0x0d, 0xc0, 0xac, 0x9c, 0xf5, + 0xd4, 0xd2, 0x30, 0x66, 0x46, 0x99, 0x34, 0x01, 0xc2, 0xb4, 0xcd, 0xe5, + 0xb6, 0x40, 0xf9, 0x72, 0x77, 0x76, 0xae, 0x9e, 0xf2, 0xdb, 0x4e, 0x87, + 0x4b, 0xb6, 0x78, 0x2f, 0x19, 0xe4, 0x91, 0x86, 0xff, 0x00, 0x98, 0x7c, + 0xb9, 0xeb, 0xf4, 0xae, 0x30, 0xce, 0x6d, 0x6f, 0x76, 0x49, 0xb0, 0x05, + 0x66, 0x03, 0x1e, 0x99, 0xab, 0x6f, 0xac, 0x46, 0xf6, 0xde, 0x59, 0x01, + 0x81, 0xce, 0x40, 0x1d, 0x45, 0x4c, 0xb5, 0x63, 0x5b, 0x1e, 0x83, 0xae, + 0x59, 0xd8, 0xdb, 0xf8, 0x66, 0xf6, 0x66, 0x50, 0x4c, 0x76, 0xec, 0xc1, + 0x8b, 0x64, 0x82, 0x07, 0x15, 0xe1, 0x96, 0xb7, 0x77, 0x12, 0xdb, 0x3a, + 0x3c, 0x2f, 0x20, 0x62, 0xc0, 0x16, 0xe7, 0xe5, 0xe6, 0xb6, 0x35, 0x9f, + 0x12, 0x83, 0xe1, 0xd9, 0xb3, 0x2c, 0xc6, 0x27, 0xf9, 0x44, 0x6e, 0xe4, + 0x84, 0x01, 0xb1, 0xd3, 0xa5, 0x72, 0xb0, 0x6b, 0x91, 0x25, 0xb8, 0x44, + 0xb8, 0x94, 0xae, 0x30, 0x06, 0xdc, 0x71, 0xf9, 0xfb, 0xd4, 0x41, 0xbd, + 0x55, 0x89, 0x95, 0xf7, 0x6e, 0xe5, 0xab, 0x38, 0x64, 0x85, 0x2e, 0x89, + 0x8c, 0xc5, 0x1c, 0x27, 0x38, 0x50, 0x7d, 0x7b, 0x9f, 0x4a, 0x98, 0xce, + 0x2e, 0x2c, 0x6f, 0x36, 0x31, 0x0a, 0x30, 0x41, 0xcd, 0x65, 0xea, 0x3a, + 0xf4, 0x91, 0x68, 0x17, 0x86, 0xd4, 0xb2, 0x99, 0x1d, 0x15, 0xf7, 0x1c, + 0xee, 0x1f, 0x95, 0x4b, 0xa7, 0x1f, 0xf8, 0x92, 0xce, 0xfd, 0xca, 0xa9, + 0xfd, 0x05, 0x74, 0x51, 0x6f, 0x5b, 0xec, 0x65, 0x52, 0xda, 0x58, 0xcd, + 0xd4, 0x59, 0x20, 0x84, 0x17, 0x63, 0x83, 0x1e, 0x4d, 0x45, 0xa1, 0x5d, + 0x46, 0xea, 0x23, 0x5c, 0x7c, 0xbd, 0x3e, 0x95, 0x0e, 0xbf, 0x63, 0x2d, + 0xc0, 0x4b, 0x80, 0xe3, 0x64, 0x71, 0xaf, 0xca, 0x6b, 0x0e, 0x29, 0xa7, + 0xb4, 0x90, 0x3a, 0x67, 0x1d, 0xc0, 0x35, 0xd2, 0x99, 0x83, 0x3d, 0x19, + 0x0d, 0x4a, 0xa6, 0xbc, 0xd9, 0x75, 0xdd, 0x4b, 0xb5, 0xc3, 0x01, 0xf4, + 0xa9, 0x0e, 0xb3, 0xa8, 0x38, 0xff, 0x00, 0x8f, 0xb6, 0xfc, 0xe9, 0xb9, + 0x58, 0x95, 0xa9, 0xe8, 0xec, 0xc3, 0x61, 0xe7, 0xb5, 0x54, 0x57, 0x18, + 0xeb, 0x5e, 0x7c, 0xda, 0xae, 0xa2, 0x7f, 0xe5, 0xe4, 0x91, 0xf5, 0xaa, + 0xcf, 0xa9, 0xde, 0xa9, 0xf9, 0xa6, 0x34, 0xb9, 0xd3, 0x03, 0xd8, 0x22, + 0x99, 0x0a, 0x80, 0x1d, 0x49, 0x1e, 0x86, 0xa7, 0xe1, 0x97, 0x15, 0xe2, + 0x8b, 0xa8, 0x5d, 0x09, 0x0b, 0xac, 0xae, 0x18, 0xf7, 0x06, 0xb5, 0xad, + 0x3c, 0x5b, 0xab, 0x5a, 0xf1, 0xe6, 0xef, 0x03, 0xb3, 0x0a, 0x77, 0x41, + 0x76, 0x7a, 0x25, 0xcd, 0x97, 0x97, 0xe6, 0x4f, 0x00, 0x02, 0x76, 0x42, + 0xaa, 0x69, 0x21, 0xd3, 0x3e, 0xd3, 0x2c, 0x77, 0x17, 0x3c, 0xb8, 0x40, + 0xac, 0x3b, 0x57, 0x23, 0x1f, 0xc4, 0x0b, 0x9d, 0x85, 0x64, 0xb6, 0x8c, + 0xb7, 0xaf, 0x35, 0xa3, 0xa7, 0x78, 0xfe, 0xd8, 0xa9, 0x17, 0xd1, 0x94, + 0x39, 0xf9, 0x7c, 0xb1, 0xc6, 0x29, 0x0e, 0xe8, 0xef, 0x23, 0xf9, 0x50, + 0x28, 0xe8, 0x29, 0xb7, 0x2d, 0xfb, 0x93, 0x5c, 0xfc, 0x3e, 0x33, 0xd1, + 0x64, 0x03, 0xfd, 0x2b, 0x6e, 0x7f, 0xbc, 0xa4, 0x55, 0x89, 0x3c, 0x45, + 0xa5, 0xcf, 0x0e, 0x23, 0xbd, 0x88, 0x93, 0xdb, 0x76, 0x29, 0x85, 0xd1, + 0xa1, 0x6e, 0xdf, 0xbf, 0x8f, 0xeb, 0x5a, 0xc1, 0xab, 0x9f, 0xb3, 0xbc, + 0x82, 0x69, 0xa3, 0x31, 0x4c, 0x8f, 0xcf, 0x66, 0xcd, 0x6d, 0x06, 0xa6, + 0x22, 0xc6, 0xea, 0x37, 0xf3, 0x55, 0xa4, 0x9d, 0x23, 0x19, 0x66, 0x00, + 0x77, 0xc9, 0xa6, 0x45, 0x77, 0x14, 0xc4, 0xf9, 0x72, 0xa3, 0x63, 0xae, + 0x18, 0x1a, 0x57, 0x1d, 0x8b, 0x9b, 0xb3, 0x48, 0x5a, 0xab, 0xfd, 0xa2, + 0x3d, 0xfb, 0x37, 0xae, 0xef, 0x4c, 0xf3, 0x4e, 0x2f, 0x40, 0x14, 0x2e, + 0x5b, 0xf7, 0xef, 0x53, 0x5a, 0xb7, 0xee, 0x05, 0x54, 0xb8, 0x6f, 0xdf, + 0xbd, 0x4b, 0x6a, 0xdf, 0xb9, 0x14, 0x01, 0x6f, 0x3b, 0x88, 0x15, 0x9b, + 0xaf, 0x5e, 0xbe, 0x9b, 0xa5, 0xc8, 0xb7, 0x0b, 0x9f, 0x35, 0xf1, 0x16, + 0xde, 0xa0, 0x63, 0xfc, 0x6b, 0x46, 0x16, 0x02, 0x40, 0x4d, 0x71, 0x5e, + 0x3d, 0xbd, 0x91, 0xb5, 0x25, 0x80, 0x87, 0x08, 0x88, 0x31, 0xe8, 0x7d, + 0xc5, 0x71, 0xe2, 0x9b, 0x6d, 0x24, 0x7a, 0xd8, 0x37, 0x1a, 0x38, 0x79, + 0xd4, 0x7b, 0xbd, 0x08, 0x2c, 0xaf, 0xfc, 0x8b, 0x55, 0x65, 0x8e, 0x49, + 0x25, 0x72, 0x76, 0xf2, 0x46, 0x7f, 0x2a, 0xc8, 0xbc, 0xbe, 0xb8, 0x92, + 0xca, 0x6f, 0x30, 0x4a, 0x42, 0xc8, 0x39, 0xce, 0x40, 0xf6, 0xe6, 0xb3, + 0x45, 0xd4, 0xb1, 0x85, 0x31, 0xbb, 0x2b, 0x2e, 0x48, 0x20, 0xd5, 0x39, + 0xee, 0x25, 0xd8, 0x59, 0xe4, 0x62, 0x59, 0xb2, 0x72, 0x7a, 0x9a, 0x98, + 0xf3, 0x73, 0xf3, 0x1c, 0x52, 0xab, 0x07, 0x4f, 0x90, 0xe8, 0x74, 0x99, + 0xa5, 0x49, 0x37, 0x08, 0x65, 0x2c, 0x06, 0x54, 0x60, 0x28, 0xc7, 0xaf, + 0x4a, 0xeb, 0x62, 0x90, 0xb4, 0x60, 0x91, 0x82, 0x7a, 0xd7, 0x9b, 0x45, + 0x79, 0x75, 0x2c, 0x81, 0xbe, 0xd1, 0x20, 0x1c, 0x71, 0xbb, 0xad, 0x77, + 0xb6, 0x33, 0x79, 0xb6, 0xc8, 0xdc, 0x8c, 0x8e, 0xf5, 0xd9, 0x07, 0x73, + 0x95, 0x97, 0x98, 0xe5, 0x85, 0x06, 0x9a, 0x0f, 0xcc, 0x29, 0x49, 0xab, + 0x01, 0xb5, 0x14, 0x9d, 0x29, 0xd2, 0xcc, 0x90, 0xae, 0x5d, 0xb0, 0x2a, + 0xb3, 0x5d, 0xc1, 0x21, 0xda, 0xb2, 0x2e, 0x7d, 0x3a, 0x52, 0x6c, 0x68, + 0xca, 0x63, 0xf3, 0x1f, 0xa9, 0xa1, 0x69, 0x09, 0xe4, 0xfd, 0x69, 0x45, + 0x7c, 0xfc, 0xfe, 0x26, 0x7d, 0x85, 0x3f, 0x85, 0x0b, 0x53, 0xc7, 0x39, + 0x52, 0x17, 0xd6, 0xab, 0x9a, 0x8f, 0x7e, 0x24, 0x5f, 0xad, 0x14, 0xa3, + 0x79, 0xa2, 0x71, 0x0e, 0xd0, 0x6c, 0xd1, 0x93, 0xc4, 0x97, 0x9a, 0x12, + 0x99, 0x6c, 0xa5, 0xf2, 0xde, 0x41, 0xb5, 0x8e, 0x33, 0xc5, 0x41, 0xa1, + 0xf8, 0xe6, 0xf3, 0x47, 0xf1, 0x0a, 0xea, 0xf8, 0x8e, 0xe6, 0xe3, 0x69, + 0x1f, 0xbf, 0x5d, 0xc0, 0x83, 0xfc, 0xab, 0x1f, 0x55, 0xcb, 0xc0, 0x73, + 0xeb, 0x58, 0xaa, 0xae, 0x87, 0xae, 0x45, 0x7a, 0x2e, 0x94, 0x6e, 0xdf, + 0x53, 0xc0, 0xab, 0x52, 0x5a, 0x58, 0xed, 0x7c, 0x5b, 0xe2, 0xb9, 0xfc, + 0x5f, 0xa9, 0x2d, 0xfd, 0xc5, 0x9c, 0x31, 0xc8, 0xa8, 0x10, 0x08, 0xc1, + 0x03, 0x00, 0x93, 0xdc, 0xf5, 0xe6, 0xb9, 0xf3, 0xe7, 0x73, 0x87, 0x08, + 0x0f, 0x60, 0x2a, 0xa0, 0xbe, 0x31, 0x9f, 0x2c, 0x46, 0xcc, 0xc3, 0xde, + 0x9b, 0x2d, 0xf4, 0xdb, 0x72, 0xa8, 0x80, 0xfb, 0xd6, 0x6a, 0x9c, 0x96, + 0xc0, 0xa5, 0x16, 0xae, 0xcb, 0x46, 0xdc, 0x9f, 0xbd, 0x21, 0x22, 0xaa, + 0x5d, 0xa3, 0xc7, 0x22, 0xed, 0xc9, 0x1d, 0xa8, 0x57, 0xba, 0x98, 0xff, + 0x00, 0xac, 0x0a, 0x3d, 0x96, 0xa7, 0x82, 0x06, 0x2c, 0x77, 0x48, 0xce, + 0x48, 0xef, 0xda, 0xab, 0xe1, 0xdd, 0x93, 0x28, 0xdd, 0x5d, 0x21, 0x96, + 0xac, 0xb2, 0x4c, 0xbe, 0x62, 0x0c, 0xf4, 0x39, 0xad, 0x45, 0x8e, 0xdf, + 0x1f, 0x71, 0x6a, 0x94, 0xb0, 0x62, 0x26, 0xf6, 0x53, 0xce, 0x6a, 0xd5, + 0xbe, 0x93, 0x6d, 0x24, 0x08, 0xc5, 0x4e, 0x4a, 0x83, 0xf7, 0x8d, 0x29, + 0xd4, 0x8c, 0x52, 0x6c, 0xcd, 0x41, 0xb7, 0x61, 0xe6, 0x1b, 0x72, 0x3e, + 0xe2, 0x54, 0x3f, 0x67, 0x8f, 0x39, 0xd8, 0x95, 0x2c, 0xda, 0x1c, 0x70, + 0xc7, 0xe6, 0x60, 0x95, 0xfa, 0x9e, 0x2a, 0xaf, 0xf6, 0x7d, 0xbf, 0xa3, + 0x7e, 0x66, 0xa1, 0x54, 0x84, 0xb5, 0x4d, 0x95, 0x66, 0xb4, 0x68, 0xb2, + 0xb0, 0x41, 0x8f, 0x99, 0x12, 0x83, 0x15, 0xb8, 0xfe, 0x05, 0xa6, 0xc5, + 0xa3, 0xc1, 0x23, 0xaa, 0x8c, 0xf3, 0xfe, 0xd1, 0xa9, 0x26, 0xd1, 0xad, + 0xe3, 0x6d, 0xb8, 0x6c, 0x8f, 0xf6, 0x8d, 0x2f, 0x6d, 0x05, 0xa5, 0xd8, + 0xfd, 0x9c, 0x9e, 0xb6, 0x33, 0xae, 0xd6, 0x30, 0xa3, 0x62, 0x8c, 0x93, + 0xda, 0xaa, 0x2b, 0xc8, 0xf2, 0xa2, 0x80, 0x7a, 0xd5, 0xa4, 0xb7, 0x58, + 0xef, 0xa4, 0x8d, 0x06, 0x55, 0x58, 0x70, 0x4d, 0x59, 0x9a, 0xdb, 0x11, + 0x1c, 0x16, 0x07, 0xd4, 0x1e, 0x95, 0xb3, 0x92, 0x44, 0x46, 0x2d, 0xb1, + 0x3e, 0xca, 0x3a, 0x87, 0x20, 0xd2, 0x03, 0x34, 0x7c, 0x2c, 0xb9, 0x1e, + 0x86, 0xaa, 0xb8, 0xbb, 0x8b, 0x95, 0x98, 0x95, 0xf7, 0x19, 0xa6, 0x8b, + 0xab, 0xac, 0xf2, 0x91, 0xb6, 0x3f, 0x0a, 0x4d, 0x5f, 0x66, 0x6b, 0x6b, + 0x6e, 0x8d, 0x74, 0xd4, 0xef, 0x23, 0x57, 0x59, 0x32, 0xe8, 0xcb, 0xb4, + 0xe1, 0xb0, 0x71, 0x55, 0xa3, 0xd6, 0x66, 0xb6, 0x45, 0x5b, 0x67, 0x9e, + 0x2c, 0x1e, 0x09, 0x7e, 0x47, 0xe3, 0x55, 0xde, 0xe6, 0x48, 0xed, 0xf7, + 0xcb, 0x0e, 0x14, 0xf1, 0x95, 0x35, 0x15, 0xb5, 0xb7, 0xda, 0x99, 0xce, + 0x1b, 0x00, 0x76, 0xed, 0x59, 0xaa, 0x70, 0x49, 0xb6, 0x89, 0x93, 0x95, + 0xec, 0x8d, 0x98, 0x75, 0xab, 0xcd, 0x46, 0xe0, 0x8b, 0xbb, 0x99, 0x26, + 0xda, 0x30, 0x0b, 0xb6, 0x71, 0x53, 0x17, 0xf9, 0xab, 0x1f, 0x4d, 0x5f, + 0x2e, 0x49, 0x46, 0x49, 0xc1, 0xe0, 0x9a, 0xbc, 0xf2, 0x61, 0x87, 0x34, + 0x4e, 0x2b, 0x95, 0xa4, 0x75, 0x61, 0x64, 0xdc, 0xd5, 0xc9, 0x5b, 0x96, + 0x35, 0x24, 0x1f, 0xeb, 0x45, 0x42, 0xa7, 0x23, 0x35, 0x34, 0x1f, 0xeb, + 0x45, 0x72, 0xcb, 0x63, 0xd8, 0x8f, 0x42, 0xea, 0xfd, 0xe1, 0x5a, 0x89, + 0x9d, 0xa2, 0xb2, 0xd7, 0xef, 0x0a, 0xd2, 0x82, 0x40, 0xe0, 0x8e, 0x32, + 0x0e, 0x2a, 0xb0, 0xb2, 0xb4, 0xda, 0x39, 0x33, 0x1f, 0x81, 0x7a, 0x92, + 0x73, 0x49, 0x52, 0x6c, 0x62, 0x32, 0x01, 0xc5, 0x33, 0xa5, 0x77, 0xdc, + 0xf2, 0x0a, 0xe0, 0x7f, 0xa4, 0x37, 0xd2, 0x95, 0xce, 0x06, 0x69, 0xce, + 0x71, 0x26, 0x7d, 0xaa, 0xa4, 0xf3, 0x70, 0x47, 0x15, 0x4a, 0xec, 0x4f, + 0x42, 0x95, 0xcc, 0x81, 0x67, 0x7a, 0x8a, 0x19, 0x94, 0x0c, 0x16, 0x03, + 0x27, 0x8a, 0x64, 0xf7, 0x13, 0x47, 0x27, 0xfa, 0xa2, 0xca, 0x40, 0x39, + 0xaa, 0x4d, 0x6d, 0x7f, 0xa9, 0x5d, 0xc3, 0x15, 0xb4, 0x0e, 0x5c, 0xb6, + 0x11, 0x55, 0x79, 0x26, 0x9f, 0xb5, 0x8a, 0xdd, 0x82, 0x8b, 0x34, 0x6e, + 0xaf, 0x05, 0xbc, 0x24, 0xf5, 0x63, 0xd0, 0x56, 0x31, 0xb7, 0x7d, 0xea, + 0xec, 0x72, 0x5c, 0x6e, 0x35, 0xaf, 0x67, 0xe1, 0x0d, 0x6f, 0x53, 0x72, + 0x4c, 0x72, 0x71, 0xc1, 0xcf, 0x15, 0x6b, 0x53, 0xd0, 0xee, 0xec, 0x1a, + 0x0b, 0x6b, 0x8b, 0x79, 0x37, 0x85, 0xc7, 0xa6, 0x6b, 0x3f, 0xad, 0xd2, + 0xbd, 0x93, 0x1b, 0xa3, 0x36, 0xae, 0xd1, 0x53, 0x4d, 0x9b, 0xcb, 0xfd, + 0xdb, 0x74, 0xed, 0x5a, 0x93, 0x1c, 0xc0, 0x71, 0x59, 0x70, 0x78, 0x7e, + 0xf2, 0xe2, 0x61, 0x1d, 0xbc, 0x77, 0x2d, 0x2e, 0x32, 0x15, 0x46, 0x4f, + 0x15, 0x1c, 0x6b, 0x3a, 0x06, 0x4f, 0x3e, 0x46, 0xc1, 0xc1, 0x04, 0x54, + 0xfb, 0x78, 0x3d, 0x53, 0x29, 0x46, 0x49, 0x59, 0xa3, 0xab, 0xf0, 0x8d, + 0xf8, 0xd3, 0xbc, 0x43, 0x6d, 0x3b, 0x36, 0xd5, 0xe5, 0x49, 0x3e, 0x84, + 0x57, 0x5f, 0xaf, 0x6a, 0xb6, 0xe9, 0xaf, 0xa4, 0x97, 0x17, 0xd2, 0xda, + 0xb2, 0xdb, 0xee, 0x85, 0xa3, 0x4d, 0xd9, 0x7c, 0xf7, 0xf4, 0x15, 0xe6, + 0x36, 0x72, 0xbb, 0xdd, 0x45, 0xc7, 0x0a, 0xc0, 0xb5, 0x75, 0x3e, 0x22, + 0xbb, 0xd2, 0xb5, 0x7b, 0x68, 0x2e, 0x60, 0xbb, 0x02, 0xec, 0x61, 0x0c, + 0x5b, 0x4e, 0x4d, 0x79, 0xd8, 0xb8, 0xf3, 0xd5, 0x8b, 0xdd, 0x33, 0xaa, + 0x8b, 0xb4, 0x1a, 0xea, 0x75, 0x83, 0xc7, 0xfa, 0x8d, 0xac, 0xcf, 0x14, + 0xd7, 0x51, 0xdc, 0xdb, 0xc6, 0xbb, 0x45, 0xc4, 0x08, 0x70, 0xcd, 0x8e, + 0x39, 0x35, 0x56, 0xcb, 0xc7, 0x1a, 0xc5, 0xed, 0xea, 0xa6, 0x5a, 0x44, + 0x19, 0x77, 0x58, 0x57, 0xe6, 0xda, 0x06, 0x49, 0xae, 0x52, 0xf6, 0xf0, + 0xe9, 0x8f, 0x69, 0x15, 0xb4, 0xc5, 0x80, 0x2a, 0xf2, 0xc5, 0xb4, 0x32, + 0xee, 0x1d, 0x32, 0x0f, 0x07, 0xa9, 0xac, 0x47, 0xbe, 0xd9, 0x78, 0x7c, + 0xb9, 0x1d, 0x72, 0x4e, 0x48, 0xe0, 0x73, 0xd4, 0x57, 0x3c, 0x63, 0x2a, + 0xba, 0xa6, 0xed, 0xea, 0xca, 0x6d, 0x47, 0x4b, 0x23, 0xd0, 0x6c, 0xfc, + 0x5d, 0xad, 0x5d, 0xdf, 0xec, 0x85, 0xe7, 0x9d, 0x79, 0x6f, 0x2a, 0x3c, + 0x67, 0x68, 0xaa, 0xd1, 0x78, 0xcb, 0x59, 0x92, 0xed, 0x11, 0x6e, 0x66, + 0x93, 0x73, 0xe3, 0xcb, 0x18, 0xc9, 0xf6, 0xe9, 0x5c, 0x3d, 0xad, 0xc4, + 0xb3, 0x6b, 0x11, 0xa2, 0x4c, 0xd1, 0xa2, 0x29, 0x77, 0x2a, 0x71, 0x91, + 0xe9, 0x51, 0xdd, 0x3c, 0xf6, 0x90, 0x49, 0x3b, 0x6e, 0x1b, 0x8f, 0xcb, + 0x56, 0xb0, 0xbe, 0xf7, 0x2b, 0x93, 0x1f, 0xb5, 0xd1, 0xbb, 0x1b, 0x5a, + 0xfd, 0xed, 0xc5, 0xee, 0xab, 0x71, 0x25, 0xc9, 0x7f, 0x33, 0x76, 0x36, + 0xb9, 0xc9, 0x5f, 0x6a, 0x8a, 0xd3, 0xfe, 0x3d, 0xd6, 0xb1, 0xe3, 0xbb, + 0x8d, 0xad, 0x95, 0xa5, 0x94, 0x6e, 0x3d, 0x77, 0x1e, 0x6a, 0xd4, 0x3a, + 0xc5, 0x8c, 0x30, 0x28, 0x79, 0xd7, 0x23, 0xa8, 0x15, 0xee, 0xd1, 0xb4, + 0x20, 0xa2, 0x8f, 0x3a, 0xa3, 0xe6, 0x77, 0x3a, 0x2d, 0x32, 0x05, 0x9a, + 0xe9, 0x43, 0x9c, 0x26, 0x79, 0x3e, 0xd5, 0xaf, 0xaf, 0x68, 0xb6, 0xcd, + 0x66, 0xf2, 0xe9, 0xe4, 0xad, 0xcc, 0xb8, 0x5c, 0x93, 0xd8, 0x57, 0x1b, + 0x1f, 0x8b, 0xf4, 0xdb, 0x51, 0xc3, 0xbb, 0x1f, 0x65, 0xa8, 0xae, 0x7e, + 0x22, 0xb2, 0x6c, 0x16, 0xb6, 0xfb, 0xf1, 0xd7, 0xcc, 0xae, 0x6a, 0xd1, + 0x9c, 0xe7, 0x74, 0x8f, 0x7b, 0x05, 0x89, 0xc3, 0xd1, 0xa2, 0xa3, 0x29, + 0xdb, 0xba, 0x3b, 0x9d, 0x2a, 0xcd, 0x34, 0xfb, 0x49, 0x25, 0x60, 0xa2, + 0xec, 0x8e, 0x71, 0x58, 0x7a, 0x93, 0x09, 0x64, 0x32, 0x63, 0x04, 0xf5, + 0xae, 0x46, 0xef, 0xe2, 0x0e, 0xa9, 0x24, 0x85, 0x62, 0xb7, 0x89, 0x58, + 0x8e, 0xd9, 0x35, 0xcf, 0x5d, 0xf8, 0x87, 0x51, 0xb9, 0x63, 0xe6, 0xcc, + 0xd8, 0x3d, 0x97, 0x81, 0x55, 0x42, 0x94, 0xe3, 0x2e, 0x66, 0x67, 0x8e, + 0xcc, 0x68, 0x4e, 0x9b, 0xa7, 0x0d, 0x4e, 0xda, 0x79, 0xa3, 0xd8, 0xcb, + 0xbd, 0x73, 0xe9, 0x9a, 0xcf, 0x2e, 0x3c, 0xf8, 0xf9, 0x1d, 0x6b, 0x87, + 0x92, 0xf6, 0x76, 0x63, 0xf3, 0x91, 0x48, 0x2e, 0x27, 0x38, 0xfd, 0xe1, + 0xae, 0xe4, 0xdf, 0x53, 0xe7, 0x9c, 0x93, 0x3d, 0x30, 0x38, 0xc7, 0x51, + 0x46, 0x6b, 0xcd, 0xc5, 0xe5, 0xd2, 0xff, 0x00, 0xcb, 0xc3, 0x8f, 0xa1, + 0xa7, 0x0d, 0x52, 0xf8, 0x70, 0xb7, 0x72, 0xff, 0x00, 0xdf, 0x46, 0x9d, + 0xee, 0x2e, 0x63, 0xd0, 0xdd, 0xc0, 0x53, 0x93, 0x5c, 0xcd, 0xdd, 0xc2, + 0x8b, 0xb5, 0xdc, 0x33, 0x1e, 0xec, 0xe4, 0x7a, 0xd6, 0x22, 0x6a, 0x77, + 0xbb, 0xf0, 0xf3, 0x3b, 0x03, 0xd8, 0x9a, 0xbb, 0x14, 0xbf, 0x69, 0x65, + 0x88, 0xe1, 0x4b, 0x1c, 0x64, 0xf2, 0x6b, 0x2a, 0x97, 0x46, 0x90, 0x69, + 0x9b, 0xd6, 0xdb, 0x5e, 0xe6, 0xdd, 0x91, 0x9b, 0x0d, 0xdf, 0x35, 0x75, + 0x26, 0x0a, 0x67, 0xdc, 0x09, 0x60, 0xc7, 0x92, 0x7d, 0x2b, 0x32, 0xc6, + 0x16, 0xb7, 0x9e, 0x18, 0xcb, 0x6e, 0x21, 0xcf, 0xf4, 0xad, 0x1d, 0x29, + 0xe1, 0x97, 0xc4, 0x82, 0xd6, 0xe6, 0x5d, 0x88, 0xfb, 0xb1, 0x91, 0x9c, + 0x9a, 0x9a, 0xb3, 0xe4, 0x83, 0x9f, 0x64, 0x3a, 0x71, 0xe6, 0x92, 0x89, + 0x36, 0x9b, 0x6f, 0xf6, 0xd9, 0x7c, 0xf9, 0x00, 0x5f, 0xe1, 0x52, 0x08, + 0xfe, 0xb5, 0xab, 0xa1, 0x6b, 0x37, 0x9a, 0x66, 0xb7, 0xbe, 0xc4, 0xed, + 0x9e, 0x2e, 0x0b, 0x32, 0x82, 0x08, 0x22, 0xa8, 0xfd, 0x8e, 0x2b, 0x12, + 0x52, 0x5f, 0x30, 0x65, 0xcb, 0x06, 0x43, 0x91, 0x8c, 0x8f, 0xf0, 0xa8, + 0xf4, 0x98, 0xd1, 0xbc, 0x40, 0x12, 0x19, 0x88, 0x57, 0x4e, 0xb2, 0x74, + 0xdc, 0x05, 0x72, 0x47, 0x11, 0x6b, 0xc9, 0xec, 0x75, 0xca, 0x8e, 0xd1, + 0xea, 0x77, 0x17, 0x9e, 0x29, 0xd7, 0xee, 0xd9, 0xbc, 0xfd, 0x4e, 0x48, + 0x86, 0x3e, 0xe4, 0x3f, 0x27, 0x1f, 0x85, 0x62, 0xc4, 0xb7, 0x1a, 0x85, + 0xfa, 0x45, 0x24, 0xd2, 0x4a, 0x49, 0xc0, 0x2e, 0xc4, 0xff, 0x00, 0x3a, + 0xd0, 0x8b, 0x40, 0xbf, 0x9f, 0x73, 0x32, 0x80, 0x47, 0x0c, 0x59, 0xb1, + 0x59, 0x53, 0x69, 0xf7, 0xf6, 0x97, 0x65, 0x92, 0xe3, 0x67, 0x96, 0xc3, + 0xee, 0xf1, 0xdf, 0x15, 0xd1, 0x3a, 0x9a, 0x68, 0x6b, 0x0a, 0x56, 0x69, + 0xb4, 0x75, 0xf0, 0xe8, 0x16, 0x7a, 0x7c, 0x66, 0xe6, 0xe0, 0x87, 0xda, + 0x32, 0x01, 0xe9, 0x9a, 0xe3, 0x75, 0x7b, 0xc4, 0x9e, 0xe0, 0x94, 0x1f, + 0x28, 0x35, 0xab, 0xab, 0x6b, 0x13, 0xdd, 0x5b, 0x88, 0x17, 0x20, 0x01, + 0x83, 0xcf, 0x5a, 0xe6, 0x5a, 0x19, 0x0b, 0xf3, 0x54, 0xa6, 0xa0, 0xac, + 0x98, 0xea, 0xa7, 0x37, 0xb1, 0x66, 0x5b, 0xd8, 0xfc, 0xdb, 0x74, 0x53, + 0xb8, 0xb2, 0xf6, 0xed, 0x52, 0x97, 0xd8, 0xa4, 0x90, 0x31, 0xed, 0x4d, + 0x9e, 0x28, 0xd6, 0x68, 0xb8, 0x01, 0xf6, 0x11, 0x55, 0x64, 0x62, 0xb9, + 0x1b, 0x8e, 0x09, 0xad, 0x29, 0xcb, 0x4d, 0x4e, 0x3a, 0x94, 0xdd, 0xdd, + 0x8c, 0xd7, 0x22, 0x69, 0x4c, 0x83, 0xe5, 0x3b, 0x88, 0xe2, 0xba, 0x2f, + 0x0d, 0xf8, 0xcb, 0x50, 0xf0, 0xd1, 0x96, 0x4d, 0x39, 0x12, 0xe1, 0x5c, + 0x0f, 0x3a, 0x27, 0x52, 0x47, 0x19, 0xc1, 0xe3, 0xa7, 0x7a, 0xe5, 0xe6, + 0x90, 0x86, 0xdc, 0x80, 0x84, 0x57, 0x21, 0xab, 0xa0, 0xf0, 0x2a, 0x86, + 0x6b, 0xed, 0xc3, 0x83, 0x8c, 0x6e, 0x1f, 0x5a, 0x73, 0xbc, 0x55, 0xd1, + 0x30, 0x87, 0x3c, 0xb9, 0x4d, 0x5f, 0x19, 0xea, 0x27, 0xe2, 0x05, 0x85, + 0xad, 0xd8, 0xb0, 0x96, 0xda, 0xe6, 0xd5, 0x0a, 0xaa, 0x6e, 0xc8, 0x72, + 0x7f, 0x2e, 0x38, 0xae, 0x2e, 0x3f, 0x05, 0x6a, 0x65, 0x14, 0xfd, 0x95, + 0x73, 0xe8, 0x5b, 0xa5, 0x7a, 0x4e, 0x9f, 0x18, 0x5b, 0x74, 0xf3, 0x08, + 0xdc, 0x49, 0xfe, 0x75, 0x71, 0xda, 0x25, 0xe7, 0x7a, 0x8f, 0xc6, 0xb1, + 0x73, 0x6f, 0x73, 0xa9, 0x50, 0x49, 0x1c, 0x86, 0x8d, 0xe0, 0x8b, 0x25, + 0xb1, 0xb8, 0x6d, 0x46, 0x11, 0xf6, 0x8c, 0x0f, 0x29, 0x41, 0xac, 0x9d, + 0x2f, 0x42, 0x6b, 0x4b, 0xcb, 0xc8, 0xf3, 0x09, 0x3b, 0x5a, 0x3c, 0x02, + 0x72, 0x33, 0xd3, 0x35, 0xdf, 0xbd, 0xcd, 0xb8, 0x04, 0x99, 0xd3, 0xfe, + 0xfa, 0xae, 0x40, 0x5e, 0xc5, 0x6f, 0xac, 0xea, 0x13, 0x9c, 0xbc, 0x45, + 0x97, 0x95, 0xe7, 0xb1, 0xa2, 0x9a, 0x51, 0x6d, 0xdc, 0x9a, 0x8b, 0x65, + 0x63, 0x2f, 0xfe, 0x10, 0xcb, 0xa3, 0x22, 0x38, 0x92, 0xdd, 0x36, 0xb0, + 0x23, 0x04, 0xf1, 0x57, 0x35, 0x8f, 0x09, 0xbe, 0xad, 0x30, 0x31, 0xcb, + 0x1c, 0x4e, 0x3e, 0x62, 0xd8, 0xce, 0x6b, 0x44, 0xf8, 0x92, 0xcf, 0xa0, + 0x49, 0x7f, 0x2a, 0x60, 0xf1, 0x25, 0xaa, 0x39, 0x6f, 0x2e, 0x5e, 0x46, + 0x3a, 0x0a, 0xa8, 0xc9, 0x2d, 0x08, 0x94, 0x0c, 0x31, 0xf0, 0xfa, 0x50, + 0xb8, 0xfb, 0x72, 0xff, 0x00, 0xdf, 0x35, 0x3c, 0x7e, 0x0c, 0x96, 0xcc, + 0xf9, 0xab, 0x76, 0xa4, 0xaf, 0x3d, 0xc7, 0xeb, 0x5a, 0x6d, 0xe2, 0xcb, + 0x3c, 0x91, 0xe5, 0xc9, 0x9f, 0x4e, 0x29, 0x8d, 0xe2, 0x9b, 0x59, 0x06, + 0xd1, 0x14, 0x87, 0x3f, 0x4a, 0xa6, 0xe2, 0xd1, 0x1c, 0xa6, 0xdf, 0x86, + 0xcd, 0x95, 0x85, 0x85, 0xcd, 0xb5, 0xdd, 0x92, 0xdc, 0x12, 0xf9, 0x39, + 0x40, 0x4f, 0x4e, 0x80, 0x9a, 0xc6, 0xf1, 0x37, 0x87, 0x60, 0xd6, 0xae, + 0xe3, 0x9e, 0xc4, 0x2d, 0x94, 0x6a, 0x98, 0x64, 0xd9, 0xd4, 0xfe, 0x15, + 0xa5, 0x67, 0x1d, 0xdc, 0xd1, 0x34, 0xf0, 0x58, 0xca, 0xe9, 0x23, 0x67, + 0x21, 0x87, 0x07, 0x1f, 0x5a, 0xad, 0x3e, 0xac, 0xd0, 0x96, 0x59, 0x2d, + 0x25, 0x53, 0xd3, 0xa8, 0xff, 0x00, 0x1a, 0xc2, 0x18, 0x6a, 0x51, 0x9f, + 0xb4, 0xea, 0x5c, 0xab, 0xb7, 0x1e, 0x43, 0xd7, 0xb5, 0x0f, 0x09, 0xf8, + 0x36, 0xd2, 0x04, 0x7b, 0x8d, 0x16, 0x3c, 0x34, 0x8a, 0x88, 0x23, 0x0d, + 0x92, 0xc7, 0xa0, 0xe0, 0xd4, 0xb7, 0x7e, 0x0d, 0xf0, 0x8c, 0x36, 0xc6, + 0x4b, 0x8d, 0x1e, 0x18, 0xe3, 0x50, 0x01, 0x2b, 0xb8, 0x77, 0xf6, 0x35, + 0x17, 0x89, 0xf5, 0x7b, 0x48, 0xe7, 0xb5, 0xb5, 0x4b, 0x80, 0x66, 0x86, + 0xe2, 0x39, 0x9b, 0x1c, 0xe0, 0x03, 0x9c, 0xd6, 0x9e, 0xa3, 0x78, 0x35, + 0x4d, 0x1e, 0xe6, 0x4d, 0x3a, 0xe2, 0x09, 0x76, 0x8f, 0xe2, 0xe4, 0x70, + 0x72, 0x7f, 0x4a, 0xdd, 0xd9, 0x1e, 0x72, 0x72, 0xb2, 0x6c, 0xa5, 0x6b, + 0xe0, 0x8f, 0x08, 0xdc, 0xda, 0xab, 0x41, 0xa4, 0x40, 0x63, 0x27, 0x39, + 0x6d, 0xd9, 0xfc, 0xc9, 0xcd, 0x71, 0x3e, 0x28, 0xf0, 0x56, 0x9b, 0x16, + 0xa9, 0x6d, 0x6d, 0xa6, 0x40, 0x91, 0x34, 0xb2, 0xb2, 0x9c, 0xf2, 0x07, + 0x00, 0xfe, 0x95, 0xdc, 0x58, 0x78, 0x8a, 0xc5, 0x61, 0x31, 0x8b, 0x88, + 0x96, 0x4e, 0x4a, 0xc6, 0x78, 0x27, 0x8a, 0xe1, 0xf5, 0x0d, 0x73, 0xfb, + 0x6e, 0xf1, 0x51, 0x64, 0x51, 0x3a, 0x4a, 0xd9, 0x55, 0x25, 0x4a, 0x93, + 0xef, 0x59, 0x54, 0xd6, 0x93, 0x7b, 0x33, 0x7a, 0x71, 0x6e, 0xa5, 0xaf, + 0xa1, 0xa9, 0x71, 0xe1, 0x9f, 0x04, 0xac, 0x0b, 0x68, 0xec, 0xab, 0x72, + 0x17, 0x6e, 0x12, 0x43, 0xbb, 0x77, 0xff, 0x00, 0xae, 0xa5, 0x8b, 0xc0, + 0x1e, 0x1d, 0xfb, 0x0c, 0x31, 0xe6, 0x4f, 0xb4, 0x42, 0xbb, 0xe4, 0x74, + 0x72, 0x4b, 0x71, 0xd4, 0x8f, 0x4a, 0xf3, 0xdb, 0x9d, 0xe9, 0xe2, 0x11, + 0x67, 0xf3, 0xf9, 0xa5, 0xc6, 0x18, 0xb7, 0x7f, 0xad, 0x6b, 0xeb, 0x7f, + 0xda, 0x7a, 0x4a, 0xf9, 0x37, 0x17, 0xb3, 0xad, 0xc2, 0x0f, 0x9c, 0xac, + 0x99, 0x24, 0x36, 0x06, 0x09, 0x1d, 0xb1, 0x5e, 0x55, 0x38, 0xce, 0x71, + 0x53, 0x69, 0x5b, 0xe6, 0x44, 0xb2, 0xf8, 0x29, 0x38, 0xf3, 0xbb, 0x9c, + 0x96, 0xbf, 0x61, 0xa6, 0x5a, 0xdc, 0x91, 0x65, 0x3b, 0x4f, 0x68, 0x64, + 0xc0, 0x9a, 0x4e, 0x0f, 0xbf, 0xd6, 0xb3, 0xe4, 0xd1, 0x80, 0x8a, 0x3b, + 0xb4, 0xdc, 0x2d, 0x99, 0xca, 0xac, 0xb8, 0x3b, 0x58, 0x8e, 0xa3, 0x35, + 0xd5, 0x59, 0x88, 0x60, 0xb0, 0x81, 0xe6, 0x84, 0x4b, 0x19, 0x3c, 0x8e, + 0xf8, 0xa8, 0xae, 0xee, 0x7c, 0xdb, 0x68, 0xa0, 0x45, 0x02, 0xdc, 0x31, + 0x65, 0x43, 0xd0, 0x12, 0x2b, 0xbb, 0x97, 0x95, 0x24, 0x99, 0xd5, 0x08, + 0xf2, 0xc5, 0x45, 0xab, 0x9d, 0x9e, 0x95, 0xe1, 0x7f, 0x08, 0xc3, 0x6f, + 0x13, 0x49, 0xa8, 0x89, 0x9c, 0xc6, 0x0b, 0x13, 0x3e, 0x3f, 0x1c, 0x66, + 0x9f, 0xad, 0x68, 0xfe, 0x19, 0x3a, 0x15, 0xd2, 0xdb, 0x5c, 0x59, 0x89, + 0xb6, 0x65, 0x1b, 0xcc, 0x0c, 0x73, 0x5e, 0x77, 0x6f, 0x03, 0xc7, 0x36, + 0x71, 0x1e, 0xc3, 0xc7, 0x07, 0xfa, 0x53, 0x8b, 0xb1, 0x2c, 0x18, 0x20, + 0x19, 0xae, 0x79, 0x45, 0x24, 0xdf, 0x50, 0xc1, 0x52, 0xab, 0x87, 0xba, + 0x8c, 0xdd, 0x9e, 0xe5, 0x31, 0xa2, 0x2b, 0x37, 0x17, 0xea, 0x9f, 0x8d, + 0x6a, 0xe9, 0x3e, 0x12, 0xb8, 0xbf, 0x85, 0x9e, 0x0d, 0x66, 0x14, 0x60, + 0xd8, 0x0a, 0xcc, 0x73, 0x59, 0xea, 0x02, 0xb1, 0x6d, 0xa0, 0xe2, 0xb6, + 0xf4, 0x5d, 0x76, 0xda, 0xc2, 0x66, 0x12, 0x43, 0x28, 0x93, 0x77, 0xca, + 0xd1, 0x38, 0x5f, 0xe9, 0x5d, 0xb8, 0x0a, 0xd1, 0x94, 0x9f, 0xb7, 0x95, + 0x95, 0xbb, 0x75, 0x2b, 0x1b, 0x4d, 0xb8, 0x7e, 0xe9, 0x59, 0xfa, 0x9a, + 0xfe, 0x1f, 0xf0, 0x65, 0xe6, 0xa5, 0x69, 0x31, 0x3e, 0x27, 0xb6, 0x8e, + 0xe2, 0x29, 0x4a, 0xed, 0x1b, 0x98, 0xa8, 0x07, 0x19, 0xfb, 0xc3, 0xad, + 0x74, 0x50, 0xf8, 0x03, 0x5f, 0x8a, 0x39, 0x0a, 0xf8, 0x93, 0xcc, 0x21, + 0x73, 0x18, 0xc1, 0x00, 0x9f, 0x7c, 0xe7, 0x03, 0xf3, 0xaf, 0x3a, 0xd4, + 0x6f, 0xa2, 0x96, 0xf6, 0x66, 0x58, 0xc0, 0x05, 0xb9, 0xdc, 0x41, 0x39, + 0xad, 0x1d, 0x17, 0x5d, 0xb3, 0xb0, 0x6b, 0x91, 0x75, 0x6e, 0x64, 0x0f, + 0x16, 0xd8, 0xca, 0x48, 0x54, 0xa3, 0x7a, 0x8c, 0x52, 0xa9, 0x56, 0x31, + 0x4d, 0xa5, 0x73, 0x2b, 0x49, 0xda, 0xcc, 0x87, 0x52, 0xd2, 0x75, 0x2d, + 0x3b, 0x51, 0x92, 0x3b, 0xa9, 0xc3, 0xdc, 0x47, 0x90, 0xe0, 0x11, 0x82, + 0x7d, 0x8d, 0x2a, 0xcf, 0x30, 0xb5, 0x2d, 0xe5, 0x62, 0x60, 0xbc, 0xa9, + 0x23, 0x93, 0xed, 0x59, 0x53, 0x5d, 0xb4, 0x92, 0xb3, 0xb1, 0x67, 0x66, + 0x39, 0x24, 0xb6, 0x49, 0xa9, 0x61, 0xb9, 0x7f, 0x2d, 0x8f, 0x96, 0x49, + 0x1d, 0x2b, 0x0f, 0x68, 0xe4, 0xfa, 0x1d, 0x4a, 0xc9, 0x75, 0x31, 0xbc, + 0x49, 0x71, 0x77, 0x2d, 0x8c, 0xc9, 0x25, 0xaf, 0x93, 0x0e, 0xd3, 0xb7, + 0xdc, 0xe4, 0x55, 0x2d, 0x2e, 0xd6, 0x30, 0xa9, 0x2c, 0xeb, 0x18, 0x88, + 0x0c, 0x9c, 0x8f, 0x6a, 0xd1, 0xf1, 0x3b, 0x5c, 0x9d, 0x30, 0xb4, 0xe8, + 0xca, 0xa5, 0x78, 0x0c, 0x3d, 0xc5, 0x61, 0x5a, 0x18, 0xa5, 0x8d, 0xcd, + 0xc4, 0xae, 0xb1, 0x85, 0xda, 0x14, 0x72, 0x6b, 0x78, 0x5d, 0x5d, 0x18, + 0xef, 0xa9, 0xa5, 0xe2, 0x47, 0xb3, 0x97, 0xc3, 0x26, 0x4b, 0x58, 0xd1, + 0x33, 0x22, 0x8f, 0x97, 0xbd, 0x4d, 0xa5, 0x6e, 0x3e, 0x1d, 0x94, 0xb1, + 0xc9, 0x20, 0x7f, 0x4a, 0xe7, 0xaf, 0x64, 0xce, 0x89, 0x32, 0x2e, 0xef, + 0x2c, 0x4a, 0x36, 0xee, 0xeb, 0x8e, 0x6b, 0xa2, 0xd3, 0x3f, 0xe4, 0x5c, + 0x6f, 0xa0, 0xfe, 0x95, 0xbd, 0x3e, 0xbe, 0xa6, 0x35, 0x77, 0x28, 0x6b, + 0x1b, 0x86, 0x85, 0x2b, 0xb3, 0x02, 0x48, 0x00, 0x7e, 0x95, 0xc6, 0x45, + 0x23, 0x2b, 0x8c, 0x8e, 0x3d, 0x8d, 0x76, 0xba, 0xcb, 0x05, 0xd0, 0x89, + 0x6e, 0x81, 0x86, 0x7f, 0x4a, 0xe4, 0x67, 0x64, 0x77, 0x56, 0x45, 0xc0, + 0x22, 0xb4, 0x4d, 0xa7, 0x63, 0x3b, 0x26, 0x9b, 0x1e, 0x31, 0xe4, 0x1e, + 0x07, 0x4a, 0xae, 0x8e, 0x09, 0x3f, 0x26, 0x6a, 0x7c, 0xfe, 0xe0, 0xd4, + 0x30, 0xff, 0x00, 0x5a, 0xd2, 0x67, 0x3d, 0x32, 0x42, 0x78, 0xfb, 0x9d, + 0xaa, 0x37, 0x8d, 0x5c, 0x1f, 0x90, 0xfb, 0x55, 0x9c, 0x52, 0x62, 0xb1, + 0xb1, 0xad, 0xca, 0x62, 0x10, 0xa7, 0x80, 0x6b, 0x4b, 0x4f, 0x85, 0x59, + 0x64, 0x38, 0xe9, 0x50, 0x15, 0xab, 0xda, 0x78, 0xfd, 0xdc, 0x95, 0x70, + 0x5a, 0x93, 0x27, 0xa1, 0x95, 0x75, 0xb6, 0x3b, 0xa9, 0x30, 0x40, 0x3f, + 0x4a, 0xaa, 0x57, 0xd0, 0x83, 0x57, 0xae, 0x90, 0x35, 0xd4, 0x99, 0x1d, + 0xea, 0x35, 0x80, 0x1e, 0xd5, 0x76, 0x15, 0xca, 0xbb, 0x4f, 0xa5, 0x7a, + 0x0e, 0x85, 0x61, 0xa7, 0xb6, 0x97, 0x6f, 0x23, 0x5b, 0x46, 0xf2, 0x15, + 0xc9, 0x2c, 0x33, 0x93, 0x5c, 0x44, 0xb6, 0xc1, 0x57, 0x38, 0xaf, 0x55, + 0xf8, 0x7f, 0xe0, 0xd7, 0xd7, 0x7c, 0x37, 0xf6, 0xd6, 0xbe, 0x36, 0xbb, + 0x65, 0xf2, 0x91, 0x5a, 0x36, 0x60, 0xfe, 0xa7, 0x35, 0x70, 0x83, 0x93, + 0xb2, 0x17, 0x3a, 0x5b, 0x8d, 0x86, 0xda, 0xd6, 0x29, 0x15, 0xe3, 0x82, + 0x34, 0x61, 0xc8, 0x2a, 0xa0, 0x55, 0xef, 0xb4, 0x48, 0x06, 0x7c, 0xc3, + 0xf9, 0xd4, 0x7a, 0xf6, 0x9e, 0x9e, 0x1e, 0xd5, 0x4d, 0x9c, 0xd7, 0x89, + 0x2a, 0x2a, 0x06, 0x32, 0x28, 0xc6, 0x33, 0xd8, 0x8f, 0x5a, 0xaf, 0x6d, + 0x24, 0x17, 0x71, 0xef, 0x86, 0x62, 0xcb, 0x9c, 0x76, 0xa9, 0x92, 0xb3, + 0xb3, 0x2a, 0x2d, 0x35, 0x74, 0x66, 0xea, 0x57, 0x33, 0xcf, 0x2b, 0xe6, + 0x46, 0x2a, 0x87, 0xa6, 0x6a, 0xb4, 0x48, 0xcc, 0x7e, 0xf1, 0x19, 0xab, + 0x37, 0xa2, 0x3b, 0x69, 0xa4, 0xdc, 0xdf, 0x7c, 0x77, 0xa8, 0xed, 0xd9, + 0x49, 0xca, 0x91, 0xc0, 0xae, 0x69, 0x2f, 0x78, 0xde, 0x2f, 0x42, 0x9c, + 0xcd, 0x24, 0x2f, 0xb9, 0x1d, 0x83, 0x64, 0x00, 0xd9, 0xae, 0x8b, 0x4f, + 0xd4, 0xee, 0x0d, 0x8a, 0xb4, 0x92, 0xef, 0x6c, 0x67, 0xa5, 0x73, 0xd7, + 0xbf, 0x34, 0xa8, 0x00, 0x3d, 0xcd, 0x58, 0xf3, 0x3e, 0xcd, 0x64, 0xde, + 0x5c, 0xe0, 0x4a, 0xab, 0x90, 0x1a, 0xaa, 0x1a, 0x2b, 0x93, 0x37, 0x72, + 0x47, 0xf1, 0x31, 0x6b, 0xac, 0x3c, 0x44, 0x29, 0xe0, 0x9e, 0xf5, 0x7a, + 0x4d, 0x79, 0x2d, 0xa1, 0xc4, 0x4c, 0x1c, 0xf6, 0x15, 0xc6, 0xcf, 0x2e, + 0xe9, 0x0b, 0x37, 0xde, 0x27, 0xe6, 0x02, 0x96, 0xdc, 0xb4, 0xd3, 0x08, + 0x62, 0xf5, 0xea, 0x7a, 0x0a, 0xc5, 0x56, 0x9b, 0xd1, 0x0a, 0x11, 0xbb, + 0x3b, 0xbb, 0x1d, 0x6d, 0xe6, 0x88, 0x3c, 0x86, 0x35, 0x6f, 0x4c, 0xd7, + 0x3f, 0xe2, 0xdb, 0xa6, 0xbc, 0x64, 0x6c, 0x82, 0x17, 0xa6, 0x0d, 0x5f, + 0x82, 0xe5, 0x22, 0x45, 0x0b, 0x1c, 0x19, 0x51, 0x8c, 0xe2, 0xb3, 0x75, + 0xbb, 0xd5, 0x92, 0xd9, 0xfc, 0xb8, 0x50, 0x32, 0x1f, 0x99, 0x94, 0x71, + 0x83, 0x55, 0x38, 0x73, 0x1d, 0x6a, 0xaf, 0x2d, 0x39, 0x47, 0xa3, 0x39, + 0x69, 0x0f, 0x1e, 0xfd, 0x2a, 0x8c, 0xac, 0x03, 0x1c, 0xf4, 0x15, 0x69, + 0x09, 0x72, 0xf5, 0x5a, 0x78, 0x5d, 0xa5, 0x51, 0x8f, 0x94, 0x9e, 0x4d, + 0x4c, 0x34, 0x76, 0x67, 0x08, 0x96, 0x9b, 0xbe, 0xdd, 0x11, 0x39, 0x07, + 0x70, 0xfa, 0x57, 0xa0, 0xd9, 0x31, 0x11, 0x81, 0x5c, 0x04, 0x31, 0xb4, + 0x37, 0x28, 0xe8, 0x32, 0xc1, 0xb8, 0xcf, 0x4a, 0xee, 0x34, 0xb7, 0x91, + 0xed, 0xd4, 0xca, 0x53, 0x7f, 0x7d, 0xbd, 0x05, 0x75, 0x41, 0x88, 0xd3, + 0x96, 0x66, 0x89, 0x41, 0x0a, 0x1b, 0x3e, 0xf8, 0xaa, 0x0f, 0xa9, 0x5d, + 0x1b, 0x8d, 0x8b, 0x1c, 0x61, 0x01, 0x19, 0x24, 0xd5, 0x9b, 0x86, 0x01, + 0x57, 0x9a, 0xcf, 0x1c, 0xcb, 0x25, 0x53, 0x19, 0xd0, 0x26, 0xa1, 0x01, + 0x5d, 0x8b, 0xb4, 0x9f, 0x4a, 0xc0, 0xd7, 0xad, 0xa3, 0x9e, 0xd8, 0xdd, + 0x46, 0x9e, 0x5c, 0xb1, 0x9e, 0x4a, 0x8c, 0x64, 0x55, 0x78, 0xd6, 0xf1, + 0x2e, 0xfc, 0xa1, 0x2b, 0x6c, 0xcf, 0x5f, 0x41, 0x5b, 0x37, 0x31, 0x23, + 0xd8, 0x3c, 0x40, 0xe7, 0x2b, 0x8e, 0x6b, 0x26, 0xf9, 0xae, 0x6c, 0x95, + 0x8c, 0x44, 0x6f, 0xdd, 0xaf, 0xd2, 0xa4, 0x43, 0x91, 0x50, 0xa8, 0x28, + 0x36, 0x91, 0xc8, 0xe2, 0xa5, 0x4e, 0x95, 0xe2, 0x49, 0x59, 0x9f, 0x55, + 0x49, 0xdd, 0x21, 0xc6, 0xab, 0xb1, 0xf9, 0xd7, 0xeb, 0x53, 0x93, 0x55, + 0x58, 0xfe, 0xf1, 0x7e, 0xb5, 0xa5, 0x05, 0xef, 0xa2, 0x71, 0x3f, 0xc3, + 0x97, 0xa3, 0x19, 0x7c, 0x37, 0x5a, 0x9f, 0xad, 0x65, 0xae, 0x08, 0xe6, + 0xb5, 0x2f, 0x3f, 0xe3, 0xd5, 0xab, 0x21, 0x1b, 0xe6, 0x02, 0xbd, 0x2a, + 0x8b, 0x54, 0x7c, 0xda, 0x77, 0xb8, 0xb0, 0xaa, 0xb5, 0xdb, 0xe4, 0x81, + 0x8c, 0x75, 0xa9, 0x61, 0x45, 0x33, 0x4c, 0x00, 0xce, 0x06, 0x79, 0xa4, + 0xb2, 0x2b, 0xf6, 0xf6, 0x0f, 0xd0, 0xad, 0x4e, 0xc4, 0x0b, 0x99, 0x4a, + 0xf4, 0x22, 0xb9, 0xe6, 0xfd, 0xe6, 0x8e, 0xcc, 0x17, 0xc7, 0x11, 0x2c, + 0xd5, 0x0c, 0x45, 0x89, 0x6d, 0xc7, 0x8c, 0x01, 0x4f, 0x87, 0xe5, 0x9d, + 0x87, 0x61, 0xeb, 0x5a, 0x1e, 0x1f, 0x68, 0xb7, 0xbf, 0x99, 0xb4, 0x70, + 0x48, 0xdd, 0xf4, 0xac, 0xef, 0xbd, 0x76, 0xf8, 0xee, 0x6b, 0x1e, 0x6b, + 0xce, 0x48, 0xa9, 0xc7, 0xdc, 0x4f, 0xb9, 0x3c, 0xdc, 0xc4, 0xfc, 0xff, + 0x00, 0x09, 0xab, 0xf6, 0xa7, 0xf7, 0x31, 0x76, 0x1b, 0x45, 0x67, 0x38, + 0xda, 0x25, 0x07, 0xb0, 0x35, 0xa3, 0x64, 0x4b, 0x41, 0x18, 0xc7, 0x61, + 0x4a, 0xaf, 0xc0, 0x8e, 0x64, 0xad, 0x36, 0x8b, 0x4e, 0x7c, 0xc4, 0x28, + 0x50, 0xe0, 0xf5, 0xac, 0xb0, 0xac, 0xf2, 0xb2, 0xaf, 0x00, 0x67, 0x35, + 0xd4, 0xa7, 0xd9, 0x86, 0x89, 0x30, 0x20, 0x7d, 0xa0, 0xb0, 0xc7, 0xae, + 0x2b, 0x07, 0x60, 0x49, 0x09, 0x1d, 0x0f, 0x26, 0xb9, 0xe9, 0xca, 0xd7, + 0x46, 0xb5, 0x23, 0xb3, 0x1d, 0x62, 0x54, 0x46, 0x59, 0x90, 0x96, 0xce, + 0x0e, 0x29, 0x6e, 0x58, 0x60, 0x30, 0x04, 0x7d, 0x6a, 0xcd, 0x87, 0x97, + 0xbd, 0xcc, 0x83, 0xe5, 0x2a, 0x78, 0xc7, 0x7a, 0xab, 0x32, 0xe2, 0x21, + 0xc5, 0x1b, 0xca, 0xe5, 0x2d, 0x22, 0x63, 0x21, 0xce, 0xa1, 0x21, 0x3e, + 0xa2, 0xae, 0x4f, 0xcc, 0x66, 0xa8, 0xaf, 0xfc, 0x7d, 0xca, 0x7d, 0xc5, + 0x5c, 0x95, 0x76, 0xc6, 0x0e, 0x7a, 0x8a, 0xec, 0x9b, 0xb5, 0x91, 0x8d, + 0x38, 0xde, 0xec, 0x6a, 0xc5, 0x1b, 0xdb, 0xed, 0x76, 0x61, 0x9e, 0xf8, + 0xac, 0xb4, 0x00, 0xdc, 0x15, 0x19, 0xd8, 0x5b, 0x00, 0xd7, 0x44, 0x9e, + 0x5f, 0xf6, 0x36, 0x72, 0xbb, 0xc4, 0x98, 0xc7, 0x7e, 0x95, 0x8c, 0x8b, + 0xb2, 0x70, 0x31, 0xc6, 0xec, 0x8a, 0x8a, 0x53, 0xf8, 0x8d, 0xea, 0x47, + 0x62, 0x4d, 0x45, 0x47, 0xf6, 0x79, 0xc1, 0x07, 0xa7, 0x4a, 0x5d, 0x2c, + 0xed, 0x47, 0xe3, 0xb0, 0xa7, 0xea, 0xf8, 0xfb, 0x21, 0xda, 0x06, 0x07, + 0xa5, 0x41, 0x62, 0xdb, 0x51, 0xb9, 0xed, 0x4d, 0x6b, 0x48, 0xca, 0x6b, + 0xf7, 0xa8, 0x5b, 0x13, 0xf3, 0xc9, 0xf5, 0xa9, 0x65, 0x6f, 0x98, 0x54, + 0x36, 0x07, 0xf7, 0x92, 0x53, 0xe7, 0x3f, 0x30, 0xad, 0xe4, 0xbd, 0xd2, + 0xb0, 0x8f, 0xdf, 0x45, 0xa8, 0x8f, 0xc8, 0x2a, 0xc4, 0x1f, 0xeb, 0x45, + 0x54, 0x84, 0xfe, 0xec, 0x55, 0x9b, 0x73, 0xfb, 0xd1, 0x5c, 0x53, 0x5b, + 0x9e, 0xdc, 0x7a, 0x17, 0xd4, 0xfc, 0xd5, 0x59, 0x67, 0x95, 0x6e, 0xa7, + 0x6d, 0xdd, 0x1b, 0x0a, 0x3d, 0xaa, 0x6d, 0xc0, 0x73, 0xe9, 0x55, 0xb7, + 0x87, 0x91, 0xb0, 0xb8, 0xc9, 0xab, 0xc1, 0xc2, 0xf3, 0x72, 0x38, 0xb3, + 0x39, 0x2e, 0x44, 0xba, 0x9a, 0xd6, 0x9a, 0xcb, 0x42, 0x76, 0xcb, 0x93, + 0x9e, 0x9b, 0x46, 0x69, 0x97, 0xf7, 0xd3, 0x0b, 0x8d, 0xf0, 0x95, 0xf2, + 0xd8, 0x8c, 0x02, 0x2b, 0x32, 0xd6, 0xc1, 0xa6, 0xbc, 0x08, 0x24, 0x2a, + 0xa4, 0xe4, 0x9c, 0xd5, 0xdb, 0xd8, 0xbc, 0xad, 0xa9, 0x9c, 0xed, 0x60, + 0x33, 0x5d, 0x73, 0x95, 0xdd, 0x8f, 0x25, 0x2d, 0x09, 0x3e, 0xd2, 0xe5, + 0xbe, 0x60, 0x0e, 0x3d, 0x2a, 0xac, 0xf3, 0x8c, 0x1f, 0x97, 0xf5, 0xa2, + 0x57, 0xd9, 0x29, 0xfa, 0x55, 0x2b, 0xb9, 0x72, 0xbc, 0x71, 0x4e, 0x32, + 0xb0, 0x99, 0x05, 0xc5, 0xf0, 0x8a, 0x3d, 0xee, 0x4e, 0xdc, 0xed, 0x15, + 0xad, 0xe0, 0xf9, 0xfe, 0xd9, 0xac, 0xc4, 0x7c, 0xc7, 0xda, 0x32, 0xca, + 0x41, 0xc6, 0x31, 0x5c, 0xb5, 0xf4, 0xab, 0x25, 0xb0, 0x8b, 0x9c, 0x86, + 0xcd, 0x6e, 0xf8, 0x19, 0xbc, 0x9d, 0x4e, 0x36, 0xdd, 0xc6, 0x18, 0x01, + 0xf9, 0x54, 0x62, 0x6c, 0xe8, 0xbb, 0x17, 0x46, 0x5f, 0xbc, 0x48, 0xf6, + 0x1b, 0x3f, 0x15, 0xe9, 0x36, 0xd2, 0xcf, 0x68, 0xe8, 0x23, 0x7b, 0x7c, + 0x67, 0x73, 0xa8, 0xcd, 0x5c, 0xf1, 0x32, 0x06, 0x8e, 0x1b, 0xc9, 0x61, + 0x8d, 0xc4, 0x48, 0x64, 0x00, 0x81, 0xe8, 0x0f, 0xf4, 0xaf, 0x2b, 0xd7, + 0xed, 0xe2, 0x8b, 0x5d, 0xf3, 0x83, 0xee, 0x67, 0x73, 0xb9, 0x48, 0x18, + 0x1d, 0x2b, 0xd6, 0xf5, 0x03, 0x1e, 0xa1, 0xa4, 0x42, 0xac, 0x46, 0xc7, + 0xb7, 0xe7, 0xf1, 0x5a, 0xf1, 0x64, 0xb9, 0x60, 0xb5, 0xdc, 0xf5, 0x23, + 0x27, 0x26, 0xf4, 0x38, 0x5f, 0xf8, 0x4e, 0x34, 0xa9, 0x88, 0xff, 0x00, + 0x89, 0x62, 0x79, 0xb2, 0xb6, 0xd3, 0x87, 0x03, 0x1e, 0xfd, 0x2b, 0x3b, + 0xc5, 0x96, 0x96, 0xd6, 0x31, 0xc1, 0x2c, 0x76, 0xea, 0xa2, 0x4e, 0x48, + 0x15, 0x9f, 0xa5, 0xe9, 0x6e, 0xbe, 0x23, 0x31, 0xc2, 0xc8, 0xa1, 0x59, + 0x82, 0xb3, 0x60, 0xa9, 0x18, 0x3c, 0x7e, 0x35, 0xd4, 0xfc, 0x47, 0xb2, + 0x58, 0xec, 0x6d, 0xdc, 0x1d, 0xa3, 0x38, 0xad, 0xa3, 0x18, 0xc6, 0xa4, + 0x54, 0x59, 0x84, 0xa5, 0x39, 0x53, 0x93, 0x92, 0xd8, 0xc3, 0xd2, 0xb5, + 0x9d, 0x3e, 0xcf, 0x52, 0x8e, 0x49, 0x34, 0x7b, 0x79, 0xbc, 0xe8, 0xfc, + 0x96, 0x46, 0xe0, 0x0c, 0x8f, 0xbd, 0xf5, 0xad, 0xed, 0x43, 0x44, 0xb2, + 0xfe, 0xc4, 0x76, 0xb3, 0xb3, 0x44, 0x70, 0x9b, 0xd5, 0xd4, 0x73, 0x9f, + 0xad, 0x71, 0x16, 0x29, 0xbf, 0x5c, 0x80, 0x30, 0xf9, 0x43, 0x2d, 0x77, + 0x65, 0x25, 0x6b, 0x9d, 0xc2, 0x47, 0x10, 0x84, 0xc6, 0xc0, 0x78, 0xae, + 0x4c, 0x6c, 0xe5, 0x4e, 0x71, 0xe5, 0x76, 0xb6, 0xa6, 0x98, 0x5f, 0x79, + 0x4b, 0x99, 0x1c, 0x0d, 0xbc, 0x5e, 0x73, 0x02, 0xf9, 0x2e, 0x0e, 0x09, + 0x34, 0x4f, 0x66, 0x13, 0x79, 0xcf, 0x15, 0x76, 0x34, 0x11, 0x5f, 0xcf, + 0x1e, 0x38, 0x0f, 0x91, 0x49, 0x7f, 0x83, 0x1b, 0x10, 0x31, 0xc7, 0x5a, + 0xf4, 0xe9, 0x37, 0x26, 0x73, 0xc9, 0x24, 0x86, 0x68, 0xfa, 0x6c, 0xf7, + 0x05, 0xcd, 0xb9, 0xc6, 0xd4, 0xcb, 0x92, 0x71, 0xc5, 0x5e, 0xd6, 0x2d, + 0x23, 0x9e, 0xd6, 0x28, 0x56, 0x4c, 0xb2, 0x9c, 0xb6, 0x47, 0x4f, 0x6a, + 0x2c, 0x3c, 0xc8, 0xe0, 0x0b, 0x1b, 0x15, 0xdf, 0x80, 0x71, 0x5a, 0xd1, + 0xe9, 0xd0, 0xbc, 0x7b, 0xa4, 0x94, 0xee, 0x38, 0x15, 0xc7, 0x89, 0xac, + 0xe1, 0x57, 0x7d, 0x8d, 0x69, 0x47, 0x9a, 0x16, 0x39, 0x16, 0xb6, 0x8a, + 0x28, 0xb0, 0x62, 0x52, 0x47, 0x7c, 0x55, 0x0b, 0xbb, 0x7b, 0x76, 0x8b, + 0x02, 0x24, 0x07, 0x23, 0x90, 0x31, 0xde, 0xbd, 0xaf, 0x4f, 0xf0, 0x17, + 0x85, 0x75, 0xad, 0x2a, 0x35, 0x4b, 0xbb, 0xa9, 0x2f, 0xe3, 0x3f, 0xbe, + 0x64, 0x6e, 0x57, 0xdb, 0x6e, 0x31, 0x8f, 0x7a, 0xe2, 0x3e, 0x27, 0x78, + 0x1e, 0xd7, 0xc2, 0xfa, 0x1d, 0xb5, 0xd6, 0x9d, 0x25, 0xd4, 0x82, 0x59, + 0x36, 0x49, 0xe6, 0xaf, 0x03, 0x8c, 0xe4, 0x10, 0x07, 0xa5, 0x7b, 0xf8, + 0x78, 0x4a, 0xad, 0x1e, 0x75, 0xd8, 0xf2, 0xea, 0x55, 0x8c, 0x27, 0xca, + 0xcf, 0x38, 0xb9, 0xb2, 0x09, 0x92, 0x85, 0x31, 0xe8, 0x2a, 0x93, 0x45, + 0x8e, 0xa4, 0xfe, 0x55, 0xbb, 0x6d, 0x12, 0x9b, 0x48, 0xd8, 0xa8, 0xe4, + 0x54, 0x17, 0x10, 0x23, 0x67, 0x03, 0x15, 0x82, 0x93, 0x8e, 0x8c, 0x76, + 0x4f, 0x63, 0x2e, 0x00, 0x45, 0xc2, 0x60, 0x9c, 0xd4, 0x77, 0x6a, 0x3c, + 0xc1, 0xc7, 0x6a, 0xb2, 0x23, 0x29, 0x72, 0x99, 0xe9, 0xcf, 0xf2, 0xa8, + 0x2e, 0xf8, 0x90, 0x7d, 0x2b, 0xa6, 0x3a, 0xab, 0x99, 0xb2, 0xa7, 0x96, + 0xbf, 0xdd, 0xa5, 0xc0, 0xec, 0x29, 0xd9, 0xa4, 0x35, 0x5a, 0x90, 0x30, + 0xf4, 0xe9, 0x51, 0xa9, 0xf9, 0xc7, 0x15, 0x23, 0x74, 0x35, 0x18, 0xe1, + 0x85, 0x5c, 0x49, 0x64, 0xee, 0x70, 0x41, 0x15, 0x25, 0x92, 0xb2, 0xde, + 0x42, 0xc7, 0x18, 0xdc, 0x0d, 0x32, 0x65, 0x64, 0x20, 0x32, 0xe0, 0x91, + 0x91, 0x56, 0x6d, 0x46, 0x5a, 0x23, 0xee, 0x28, 0xa9, 0x2e, 0xc5, 0xd2, + 0x8d, 0xb4, 0x7d, 0x0e, 0x9d, 0x41, 0x1a, 0x8c, 0x78, 0x3f, 0x29, 0x20, + 0xe2, 0xaa, 0x64, 0xa7, 0x8b, 0xed, 0x4e, 0x78, 0xdf, 0xc5, 0x5b, 0x07, + 0xfd, 0x3e, 0x0f, 0xc2, 0xa8, 0x4e, 0x48, 0xf1, 0x55, 0xa9, 0xff, 0x00, + 0x6e, 0xb1, 0xa8, 0xaf, 0x4d, 0xfa, 0x1a, 0x41, 0xfb, 0xc9, 0xf9, 0x9d, + 0x86, 0x91, 0xa0, 0x6b, 0x3a, 0xb8, 0x96, 0x6d, 0x3e, 0xda, 0x59, 0x22, + 0x53, 0x82, 0xe4, 0x7c, 0xa0, 0xe6, 0xab, 0xea, 0x7a, 0x1e, 0xb1, 0xa3, + 0xdf, 0x58, 0xcd, 0x7b, 0x34, 0x5f, 0x67, 0xba, 0x0f, 0xe5, 0xec, 0x90, + 0x31, 0x04, 0x0e, 0xe3, 0xb7, 0x5a, 0xa2, 0x75, 0x4d, 0x55, 0x6d, 0x9e, + 0xda, 0xd6, 0xe2, 0x48, 0xe0, 0x0d, 0x92, 0xaa, 0xfb, 0x47, 0xbd, 0x45, + 0xa5, 0xc8, 0xfa, 0xaf, 0x88, 0xf4, 0xfb, 0x39, 0x66, 0xdb, 0xbe, 0x41, + 0x18, 0x76, 0x39, 0x0b, 0xb8, 0xe0, 0x9a, 0xe3, 0x92, 0x82, 0xa6, 0xdd, + 0xba, 0x1d, 0x2e, 0x52, 0xe6, 0xbb, 0x7a, 0x1e, 0xb7, 0x1c, 0x52, 0xa4, + 0x7b, 0x3f, 0xb4, 0x19, 0x81, 0xc1, 0xe0, 0x77, 0xc5, 0x50, 0xbc, 0xb2, + 0xc9, 0x66, 0x2e, 0xcc, 0x32, 0x0e, 0x4a, 0xf5, 0xae, 0xd1, 0xf4, 0xdb, + 0x1d, 0x3e, 0x39, 0x22, 0x91, 0x4c, 0xf2, 0x63, 0x1b, 0x88, 0xe9, 0xf4, + 0x15, 0x89, 0x0d, 0xad, 0xac, 0xcd, 0x39, 0x95, 0x24, 0x0b, 0xb8, 0x04, + 0x0c, 0xa7, 0xa5, 0x73, 0xf3, 0x36, 0x93, 0xe6, 0x3d, 0x7a, 0x72, 0xa7, + 0x28, 0xdd, 0x26, 0x71, 0xb7, 0x51, 0xc7, 0x65, 0x68, 0x93, 0xdc, 0x47, + 0x29, 0xde, 0xe5, 0x46, 0xcc, 0x0e, 0x95, 0x6b, 0x41, 0xd1, 0xff, 0x00, + 0xe1, 0x20, 0xde, 0x2d, 0xf6, 0x2c, 0xab, 0x26, 0xd1, 0x13, 0xc8, 0x77, + 0x11, 0x82, 0x73, 0xc0, 0xe9, 0xc5, 0x47, 0xe3, 0x7b, 0x18, 0x44, 0x56, + 0xb1, 0xda, 0x4e, 0xd0, 0x33, 0x33, 0x12, 0x18, 0x1d, 0xbf, 0x95, 0x72, + 0x56, 0x73, 0xea, 0xda, 0x25, 0xd2, 0x5f, 0xd8, 0xea, 0x5b, 0x67, 0x88, + 0x9d, 0xbb, 0x57, 0xa8, 0xf4, 0x39, 0x18, 0x20, 0xd7, 0x44, 0x5c, 0x5c, + 0xae, 0xdd, 0xd1, 0x8b, 0x6d, 0x2b, 0x24, 0x75, 0x3a, 0x87, 0x85, 0xef, + 0x52, 0xfe, 0x68, 0xe7, 0xdb, 0x0c, 0x88, 0xe1, 0x40, 0xce, 0x78, 0xc6, + 0x72, 0x3f, 0x3a, 0xc3, 0xd4, 0xf4, 0xaf, 0xec, 0xcb, 0x7f, 0xb4, 0xdc, + 0x4d, 0xbd, 0x04, 0x81, 0x08, 0x1d, 0x79, 0xef, 0x5a, 0xba, 0x46, 0xb1, + 0x2d, 0xc4, 0x92, 0x5c, 0x6a, 0x06, 0x5b, 0x99, 0xdd, 0xf2, 0xed, 0x8c, + 0xe4, 0xe2, 0xab, 0xf8, 0xcf, 0x50, 0xb5, 0xbd, 0xd0, 0x7e, 0xcf, 0x0c, + 0x2d, 0x6d, 0x20, 0x93, 0x99, 0x5d, 0x31, 0x9a, 0x9e, 0x7b, 0xcd, 0xa4, + 0xf4, 0x3b, 0x22, 0xa1, 0xec, 0xb9, 0x9a, 0xd4, 0xe4, 0x75, 0xcd, 0x2a, + 0xe4, 0x2c, 0x72, 0x5b, 0xca, 0xd8, 0x93, 0x95, 0x1b, 0xb8, 0x61, 0x51, + 0x58, 0xad, 0xf5, 0xbb, 0xf9, 0x6d, 0x2b, 0x46, 0x47, 0x5d, 0xad, 0xd6, + 0xb7, 0x7c, 0x37, 0xa4, 0xea, 0x57, 0x70, 0xfd, 0x81, 0xd0, 0x5c, 0x3e, + 0xc3, 0x2c, 0x79, 0xe0, 0xec, 0x1c, 0xf1, 0x9a, 0x85, 0xac, 0xef, 0x1c, + 0xb4, 0xc6, 0x25, 0x44, 0x27, 0x03, 0xe5, 0x3d, 0x2b, 0xaa, 0x15, 0xe9, + 0xbf, 0x76, 0xa3, 0xd8, 0xf2, 0xaa, 0x51, 0x9f, 0x37, 0x35, 0x2e, 0xbd, + 0x3b, 0x14, 0xe4, 0x69, 0xcb, 0x48, 0xcd, 0x34, 0x98, 0x07, 0xe5, 0xe6, + 0xa2, 0x7f, 0x3b, 0xca, 0x1b, 0xa5, 0x93, 0x71, 0xf7, 0xad, 0x68, 0xf4, + 0xfb, 0xeb, 0xa7, 0x48, 0xa1, 0x87, 0x73, 0x48, 0xd8, 0x40, 0x14, 0x92, + 0xd5, 0x56, 0xe9, 0x65, 0xb7, 0x9f, 0xca, 0xba, 0x8c, 0xc4, 0xca, 0x7e, + 0xeb, 0x29, 0x19, 0xaa, 0x55, 0x30, 0xff, 0x00, 0x32, 0x25, 0x0a, 0xf7, + 0xdc, 0xce, 0x99, 0x09, 0xd8, 0xaa, 0xef, 0x9e, 0xa7, 0x9a, 0xdf, 0xf0, + 0x94, 0x31, 0xb4, 0xd7, 0x2b, 0x31, 0x3e, 0x50, 0x03, 0x77, 0x7e, 0x30, + 0x6b, 0x2e, 0x1b, 0x09, 0x6e, 0x5d, 0x9e, 0x31, 0x98, 0xc7, 0x01, 0xb0, + 0x6b, 0xa3, 0xf0, 0xce, 0x9d, 0x2c, 0x30, 0x5e, 0xc8, 0xc3, 0xe5, 0x65, + 0xc2, 0x9c, 0x77, 0x00, 0xd1, 0x3a, 0x94, 0x9c, 0x6d, 0x1d, 0xc5, 0x08, + 0x54, 0x52, 0xe6, 0x96, 0xc6, 0x85, 0x9d, 0xbd, 0xad, 0xeb, 0x98, 0x24, + 0xb6, 0x44, 0x97, 0x18, 0x88, 0xc5, 0xfc, 0x5f, 0x51, 0x5b, 0x96, 0xda, + 0x07, 0x87, 0x9f, 0x4b, 0xbe, 0x1a, 0x95, 0xe4, 0x76, 0x7a, 0x94, 0x43, + 0x64, 0x28, 0x1b, 0x82, 0x08, 0x05, 0x58, 0x8c, 0x12, 0x79, 0xc8, 0x38, + 0xe8, 0x2b, 0x1f, 0xc3, 0x51, 0xf9, 0x5a, 0xed, 0xb3, 0x3f, 0x94, 0x4c, + 0x6f, 0xf3, 0x00, 0x4f, 0x07, 0x06, 0xab, 0x78, 0x93, 0x58, 0x10, 0x78, + 0xa2, 0xf9, 0x9a, 0xd5, 0x24, 0x4c, 0xaa, 0xf2, 0x7d, 0xab, 0x93, 0x92, + 0xdb, 0x1a, 0x4e, 0xaf, 0x32, 0x33, 0x6e, 0x74, 0x28, 0xad, 0xf5, 0xab, + 0x9b, 0x12, 0x52, 0x5d, 0xab, 0xbf, 0xed, 0x11, 0x0c, 0x86, 0xe3, 0x8c, + 0x64, 0xf4, 0x26, 0x92, 0xd6, 0x2b, 0x78, 0x9b, 0xfb, 0x36, 0x5b, 0x18, + 0xde, 0xe6, 0x41, 0xbd, 0x67, 0xdd, 0xca, 0x81, 0xd8, 0x56, 0xce, 0x93, + 0x2a, 0x5c, 0x78, 0x82, 0x24, 0x69, 0x84, 0x53, 0xcf, 0x02, 0xa4, 0x68, + 0x47, 0x18, 0xc6, 0x48, 0xae, 0x8a, 0x7f, 0x0e, 0x5a, 0x5b, 0xde, 0x5b, + 0xdc, 0xc9, 0x77, 0x1b, 0xde, 0xb9, 0x29, 0xe4, 0x8e, 0xaa, 0xbc, 0xf3, + 0x4f, 0xe1, 0x97, 0x2b, 0x23, 0x9d, 0xb8, 0xdd, 0x7e, 0x47, 0x51, 0xe1, + 0xbf, 0x03, 0x68, 0x13, 0x68, 0x76, 0x93, 0x4d, 0x10, 0x9a, 0x57, 0x40, + 0xcd, 0xfb, 0xc6, 0x00, 0x1f, 0x4e, 0x0d, 0x6a, 0xa7, 0x82, 0x7c, 0x32, + 0x85, 0x91, 0xb4, 0x68, 0x18, 0xb7, 0x39, 0x39, 0x3f, 0xd7, 0xde, 0xb5, + 0x34, 0xbd, 0x34, 0x69, 0xfa, 0x64, 0x70, 0x44, 0x54, 0x95, 0x19, 0xeb, + 0xc6, 0x6a, 0xd4, 0x92, 0xdb, 0xc6, 0xcb, 0xe6, 0xdc, 0x47, 0x19, 0x65, + 0x25, 0x49, 0x60, 0x32, 0x38, 0xc9, 0xe7, 0xf0, 0xae, 0xd4, 0xb6, 0x3c, + 0x99, 0x4a, 0x57, 0xba, 0x3c, 0x43, 0x55, 0xd4, 0x6d, 0x66, 0xd6, 0xa6, + 0xba, 0xb3, 0x96, 0x47, 0x85, 0xc0, 0x0b, 0xe6, 0x0e, 0x47, 0x02, 0xac, + 0x68, 0x9a, 0x9d, 0xae, 0x9d, 0x6b, 0xfe, 0x90, 0xcd, 0x34, 0xaa, 0x5d, + 0x97, 0x6a, 0x63, 0x04, 0xf6, 0xce, 0x7a, 0x57, 0x2a, 0xb7, 0x31, 0x80, + 0x3e, 0x43, 0xff, 0x00, 0x7d, 0xd4, 0xe2, 0xec, 0x6d, 0xe0, 0x60, 0x7b, + 0xc9, 0x52, 0xa4, 0xce, 0xd7, 0x08, 0xb5, 0x61, 0x96, 0x97, 0x77, 0x52, + 0xea, 0xfe, 0x7b, 0x29, 0x85, 0x62, 0x6e, 0x14, 0x9c, 0xee, 0x1e, 0x9c, + 0x55, 0x6d, 0x76, 0x58, 0xa0, 0xb7, 0x7d, 0x42, 0x00, 0x23, 0x9e, 0x29, + 0x36, 0x93, 0x9e, 0xa0, 0xf0, 0x6a, 0xc9, 0xb9, 0x44, 0x3f, 0x7d, 0x72, + 0x79, 0x1f, 0x37, 0x4a, 0xe6, 0xf5, 0xab, 0xe8, 0x6e, 0xad, 0x2e, 0xa0, + 0xda, 0xc8, 0xde, 0x6a, 0x9f, 0x6c, 0x7a, 0xd3, 0x5e, 0xf2, 0x77, 0x0d, + 0x23, 0xb1, 0xd1, 0xda, 0x5b, 0xb7, 0xda, 0x63, 0x9d, 0xee, 0x15, 0x9b, + 0x1c, 0x12, 0x49, 0x35, 0x7a, 0xe2, 0xda, 0xe2, 0x4d, 0xd2, 0x4f, 0x76, + 0xae, 0x4a, 0x00, 0x79, 0x24, 0xe7, 0x39, 0xac, 0x26, 0xd4, 0x63, 0xb2, + 0xd3, 0x55, 0xd9, 0xa3, 0x05, 0x10, 0x0c, 0x9e, 0xe7, 0x15, 0x24, 0x1a, + 0xb0, 0xb9, 0x81, 0x24, 0x06, 0x36, 0x04, 0x75, 0xe6, 0xb0, 0xe5, 0xb2, + 0xdb, 0x42, 0xee, 0xaf, 0x73, 0x64, 0x01, 0x25, 0xbc, 0x11, 0x87, 0x03, + 0x61, 0x39, 0xeb, 0xe9, 0x54, 0xef, 0x7f, 0x74, 0x54, 0x19, 0x01, 0x50, + 0x38, 0x0b, 0x93, 0x8a, 0xac, 0x6f, 0xce, 0x30, 0x36, 0x0f, 0xf8, 0x09, + 0xa8, 0xcd, 0xcb, 0xb9, 0xe4, 0x03, 0xf4, 0x53, 0x4e, 0xc9, 0xbd, 0x4b, + 0x52, 0xb6, 0xc2, 0xdb, 0xdc, 0x08, 0xe5, 0xcb, 0xb9, 0x61, 0xe9, 0x8a, + 0x91, 0x26, 0x81, 0xa4, 0x3b, 0x9b, 0x00, 0x9c, 0xd4, 0x05, 0x99, 0xbf, + 0x81, 0xbf, 0x05, 0xaa, 0xd3, 0x06, 0x20, 0xee, 0x85, 0xc8, 0xff, 0x00, + 0x77, 0x14, 0xbd, 0x9c, 0x1e, 0x85, 0x7b, 0x69, 0xf6, 0x45, 0xcb, 0x93, + 0x0e, 0xc2, 0x63, 0x27, 0x3e, 0xbd, 0xaa, 0xae, 0xf5, 0xdc, 0x19, 0x77, + 0x06, 0xce, 0x72, 0x2b, 0x2e, 0x46, 0x91, 0x49, 0xd9, 0x14, 0xe3, 0xdb, + 0x8a, 0x16, 0xea, 0xf3, 0x01, 0x56, 0xd2, 0x43, 0x8e, 0xe7, 0x8a, 0xa8, + 0xd2, 0x84, 0x55, 0x91, 0x12, 0xad, 0x26, 0x6a, 0x34, 0xac, 0xcc, 0xce, + 0xd9, 0x24, 0x9c, 0x92, 0x7a, 0x9a, 0x20, 0xb9, 0x12, 0x9c, 0x79, 0x6c, + 0x0e, 0x6a, 0x90, 0x3a, 0x84, 0xc9, 0xb4, 0x43, 0xb7, 0x3d, 0xcb, 0x55, + 0xbb, 0x6b, 0x2b, 0xb1, 0x8d, 0xce, 0xa0, 0xfb, 0x9c, 0xd6, 0x32, 0xc3, + 0x53, 0x65, 0xc6, 0xbc, 0xfa, 0x97, 0xc4, 0x32, 0x67, 0x22, 0x33, 0x8f, + 0x4c, 0xd6, 0x85, 0xaa, 0x48, 0xb1, 0x80, 0xf1, 0x02, 0xb9, 0xc9, 0xe6, + 0x99, 0x6b, 0x69, 0x24, 0x84, 0x6e, 0x99, 0x7e, 0x81, 0x2b, 0x5d, 0x34, + 0x99, 0x4a, 0x03, 0x89, 0x71, 0xfe, 0xe0, 0x02, 0xb3, 0xfa, 0xbd, 0x38, + 0xf5, 0x65, 0xaa, 0xb3, 0x7d, 0x0c, 0x0f, 0x1d, 0x5d, 0xa5, 0xc7, 0x87, + 0x09, 0x11, 0xed, 0x29, 0xc7, 0x5c, 0xff, 0x00, 0x9e, 0x95, 0xc1, 0xda, + 0xdd, 0xe6, 0xd0, 0x02, 0x99, 0x6f, 0x6a, 0xee, 0xfc, 0x61, 0xa7, 0xc8, + 0x34, 0x4f, 0x21, 0x54, 0xef, 0x95, 0xc0, 0x5d, 0xc7, 0xa9, 0xae, 0x2e, + 0x2d, 0x17, 0x54, 0xb6, 0x00, 0x08, 0x54, 0xe3, 0xe8, 0x6b, 0xaa, 0x9f, + 0x22, 0x8d, 0x9b, 0x31, 0x75, 0x2a, 0x42, 0x6d, 0xa4, 0x45, 0x7d, 0x33, + 0x3e, 0x93, 0x31, 0x65, 0xc0, 0x0e, 0xbf, 0xd6, 0xba, 0x0d, 0x32, 0xf6, + 0xd8, 0xe9, 0x46, 0xcf, 0xe7, 0xf3, 0x76, 0x03, 0xd3, 0x8e, 0x99, 0xac, + 0x1b, 0xfb, 0x7b, 0x88, 0x74, 0xb9, 0x7c, 0xf8, 0x8a, 0xee, 0x91, 0x71, + 0xc7, 0x1d, 0xeb, 0xad, 0xb1, 0xb7, 0x84, 0x78, 0x68, 0x4b, 0xe5, 0x27, + 0x99, 0xe5, 0xfd, 0xec, 0x73, 0x5a, 0xc2, 0xdf, 0x67, 0xb9, 0xcf, 0x52, + 0x4e, 0x4e, 0xf2, 0xdc, 0xc1, 0xd6, 0x67, 0x0f, 0xa2, 0x32, 0x63, 0xbd, + 0x72, 0x9b, 0x81, 0x20, 0x74, 0xc7, 0x6f, 0xc2, 0xba, 0x1d, 0x42, 0x45, + 0x6b, 0x43, 0x1e, 0xee, 0x77, 0x72, 0x2b, 0x0e, 0x58, 0xe3, 0x53, 0xb8, + 0x29, 0xdd, 0x8a, 0xd7, 0xa9, 0x87, 0x33, 0x49, 0xa1, 0x79, 0xf2, 0x4e, + 0x2a, 0x38, 0xb8, 0xeb, 0x5d, 0x86, 0x8b, 0x67, 0x6c, 0x74, 0x80, 0xd2, + 0x80, 0x5c, 0x8c, 0x8e, 0x6b, 0x9c, 0xd5, 0xe3, 0x58, 0x2f, 0xc8, 0x4e, + 0x84, 0x66, 0x85, 0x55, 0x4d, 0xd8, 0x85, 0x0e, 0x54, 0x45, 0x9a, 0x5a, + 0x86, 0x37, 0xc9, 0xc1, 0xa9, 0x68, 0x18, 0xbd, 0xaa, 0xee, 0x9f, 0x9f, + 0x26, 0x4a, 0xa7, 0x8c, 0xf1, 0x5a, 0xd6, 0x16, 0x77, 0x09, 0x6d, 0x26, + 0xe8, 0x58, 0x67, 0xa6, 0x6a, 0xa2, 0xec, 0xc1, 0xab, 0x98, 0xb3, 0x9f, + 0xf4, 0x99, 0x3e, 0xb4, 0xe8, 0xd8, 0x66, 0x9b, 0x75, 0x14, 0x91, 0x5c, + 0x36, 0xf5, 0xc6, 0xe3, 0x91, 0x49, 0x1a, 0x3b, 0x7d, 0xd5, 0x27, 0xf0, + 0xad, 0x13, 0x33, 0x68, 0x9e, 0x76, 0x0c, 0x83, 0x8a, 0xfa, 0x2f, 0xe1, + 0x66, 0xa9, 0x67, 0x0f, 0xc3, 0x6d, 0x3d, 0x5d, 0xc8, 0xf2, 0x25, 0x90, + 0x49, 0xf2, 0x9c, 0x2e, 0x64, 0x63, 0xfc, 0x88, 0xaf, 0x9d, 0x04, 0x0e, + 0xe5, 0x55, 0x88, 0x51, 0x9e, 0xe6, 0xbd, 0x43, 0xc2, 0x37, 0x7a, 0xc5, + 0x97, 0x85, 0xe5, 0xb5, 0xb3, 0x4b, 0x79, 0x2d, 0x0c, 0x9b, 0x81, 0x93, + 0x39, 0xc9, 0xae, 0xac, 0x34, 0x23, 0x52, 0x6d, 0x33, 0x9a, 0xbb, 0x95, + 0x38, 0xf3, 0x20, 0xf8, 0xbf, 0xa8, 0x47, 0x3f, 0x88, 0x4a, 0xc1, 0x90, + 0x0c, 0x0a, 0x32, 0x46, 0x33, 0xc9, 0xff, 0x00, 0x1a, 0xe4, 0x7c, 0x3f, + 0x70, 0x6d, 0x7c, 0xcf, 0x31, 0x7e, 0x63, 0x82, 0x08, 0x6a, 0xd4, 0xf1, + 0x71, 0xba, 0xbd, 0xd6, 0x12, 0x7d, 0x50, 0xc7, 0xbd, 0x63, 0x0a, 0x23, + 0x45, 0xe3, 0x15, 0xce, 0x21, 0x58, 0xa4, 0x90, 0xc7, 0x90, 0xac, 0x38, + 0x15, 0xcd, 0x89, 0x82, 0x8d, 0x5d, 0x0e, 0x9c, 0x3e, 0xb4, 0xd3, 0xea, + 0x6f, 0x6a, 0x53, 0xc7, 0x73, 0x1c, 0x99, 0x4c, 0xe1, 0x09, 0x04, 0x7a, + 0xd5, 0x0b, 0x1b, 0x86, 0x48, 0x95, 0x76, 0x1f, 0x9b, 0x83, 0xed, 0x54, + 0x4d, 0xcb, 0x73, 0xb9, 0x9b, 0xa6, 0x38, 0x15, 0x12, 0xdc, 0x5c, 0x46, + 0x00, 0x8f, 0x76, 0x33, 0x9e, 0x6b, 0x9a, 0x4b, 0xde, 0xb9, 0xd1, 0x15, + 0xa6, 0xa5, 0xe6, 0xba, 0xc5, 0xcb, 0xa9, 0x25, 0xb6, 0x70, 0x33, 0x55, + 0x35, 0x19, 0x5d, 0xa6, 0xdc, 0x99, 0x20, 0x8e, 0xa4, 0xd5, 0x59, 0x0d, + 0xc3, 0x4a, 0x5c, 0xa9, 0xcb, 0x75, 0x34, 0xae, 0x5e, 0x45, 0xc3, 0x29, + 0x26, 0x94, 0x93, 0x6a, 0xc3, 0x49, 0x37, 0xa9, 0x5d, 0xa7, 0x72, 0xc0, + 0xb0, 0x03, 0x3c, 0x67, 0x35, 0x7a, 0xcd, 0xf1, 0xe6, 0x22, 0x0c, 0xc8, + 0xc8, 0x48, 0xc5, 0x57, 0x48, 0x15, 0x58, 0x16, 0x40, 0xdf, 0x51, 0xc5, + 0x69, 0x5a, 0x34, 0x5b, 0xf3, 0xe5, 0x44, 0x87, 0xe9, 0x51, 0xc9, 0xad, + 0xd1, 0xac, 0x52, 0x4e, 0xef, 0x62, 0x2f, 0x22, 0xe9, 0x22, 0x05, 0xa0, + 0x6e, 0x9d, 0x69, 0x92, 0x39, 0x4b, 0x36, 0x8c, 0xe4, 0x6e, 0xe4, 0xfb, + 0xd6, 0xfc, 0x5c, 0x80, 0x41, 0x4c, 0x53, 0x6e, 0x74, 0xe8, 0x6e, 0x9b, + 0x74, 0x99, 0xc8, 0xfe, 0xef, 0x14, 0xe5, 0xed, 0x1e, 0xf6, 0x2a, 0x51, + 0xa5, 0xca, 0xf9, 0x77, 0x39, 0x38, 0xc6, 0xc0, 0x58, 0xf0, 0x0d, 0x32, + 0x46, 0x55, 0xcb, 0x57, 0x49, 0x26, 0x83, 0x6c, 0xdf, 0xf2, 0xd1, 0xc7, + 0xe3, 0x54, 0xee, 0x34, 0x15, 0xc8, 0x09, 0x23, 0x95, 0xc7, 0x7c, 0x54, + 0x28, 0x3b, 0xea, 0x73, 0xfb, 0x33, 0x2b, 0x4e, 0x41, 0x75, 0x74, 0x13, + 0x1b, 0x57, 0xbf, 0xb5, 0x74, 0x71, 0x0f, 0xb1, 0xdc, 0x88, 0xfc, 0xc0, + 0x54, 0x8a, 0xce, 0xb7, 0xd2, 0xda, 0xc9, 0xf7, 0xa3, 0x13, 0xec, 0x4d, + 0x2d, 0xd4, 0x13, 0xdc, 0x10, 0x01, 0x0b, 0xcf, 0x5c, 0xd6, 0x91, 0xbc, + 0x64, 0x27, 0x0e, 0xc6, 0xec, 0xad, 0x95, 0x1c, 0xe6, 0xaa, 0xaf, 0xfa, + 0xd6, 0xc7, 0x5a, 0xaa, 0x60, 0x9f, 0xec, 0x82, 0x25, 0x71, 0xb8, 0x73, + 0x93, 0xde, 0x9d, 0x67, 0x23, 0xac, 0xe1, 0x67, 0x42, 0xa8, 0x07, 0x50, + 0x09, 0x35, 0xaa, 0x95, 0xca, 0xf6, 0x6e, 0xd7, 0x43, 0xfe, 0xd9, 0x25, + 0xb5, 0xe1, 0x8e, 0x48, 0xf7, 0x73, 0xc1, 0x03, 0xad, 0x6c, 0x48, 0x55, + 0x22, 0x5d, 0xc3, 0xe6, 0x6e, 0x71, 0x54, 0xc8, 0xfb, 0x4d, 0xe6, 0xe8, + 0xe2, 0x65, 0x50, 0xa4, 0x6e, 0x7e, 0x09, 0xfc, 0x29, 0x04, 0xcd, 0x1b, + 0xa7, 0x9a, 0xa4, 0xc7, 0xd9, 0x87, 0x38, 0xfa, 0xd4, 0x2d, 0x1d, 0x8b, + 0xb5, 0xc8, 0x6f, 0xe2, 0xda, 0x56, 0x55, 0xe8, 0xfd, 0x45, 0x41, 0x1f, + 0x3d, 0x2a, 0xc6, 0xa7, 0x3c, 0x6f, 0x6e, 0x8b, 0x6e, 0xca, 0xc4, 0x1e, + 0x80, 0xe4, 0xd6, 0x5d, 0x9b, 0xc8, 0xf3, 0x6e, 0x67, 0x38, 0x1c, 0x62, + 0xb8, 0x31, 0x34, 0xd2, 0x93, 0x68, 0xf6, 0xb0, 0x55, 0x65, 0xec, 0xac, + 0xf7, 0x45, 0xd3, 0x55, 0x5c, 0xfc, 0xeb, 0xf5, 0xab, 0x24, 0xf5, 0xaa, + 0x6e, 0x7e, 0x71, 0xf5, 0xac, 0xb0, 0xff, 0x00, 0xc4, 0x47, 0x5e, 0x25, + 0xfe, 0xea, 0x5e, 0x8c, 0x2e, 0xcf, 0xfa, 0x2b, 0x56, 0x3c, 0x67, 0xe7, + 0x15, 0xa9, 0x74, 0x7f, 0xd1, 0x5a, 0xb2, 0xa2, 0xeb, 0x5e, 0x9d, 0x53, + 0xe6, 0xa2, 0xf5, 0x62, 0xee, 0x2b, 0x72, 0xe4, 0x74, 0xc5, 0x59, 0x86, + 0x51, 0xb8, 0x12, 0xbf, 0x5a, 0xa2, 0xc7, 0xfd, 0x21, 0xff, 0x00, 0x0a, + 0xbb, 0x62, 0x03, 0x97, 0xce, 0x38, 0x1d, 0xeb, 0x9e, 0xa2, 0xd2, 0xe7, + 0x4e, 0x11, 0xfb, 0xe8, 0x77, 0x9a, 0x49, 0xf9, 0x78, 0x19, 0xed, 0x52, + 0xdb, 0x1c, 0xcf, 0x93, 0x55, 0x01, 0xa9, 0xed, 0xcb, 0x17, 0x23, 0xdb, + 0x20, 0xd6, 0x72, 0x8e, 0x85, 0x73, 0x16, 0xee, 0x4f, 0xcb, 0x21, 0xf5, + 0x5a, 0xbb, 0x6b, 0xb9, 0x6c, 0xe3, 0xec, 0x76, 0x8e, 0x6b, 0x3a, 0x6d, + 0xde, 0x53, 0x92, 0x7f, 0x84, 0xd5, 0xdb, 0x66, 0x73, 0x6d, 0x1f, 0x70, + 0x14, 0x56, 0x35, 0x17, 0xb8, 0x8c, 0xef, 0x79, 0xb6, 0x58, 0x33, 0x31, + 0xc2, 0x87, 0x20, 0xfa, 0xd4, 0xa8, 0xfb, 0x54, 0x00, 0x54, 0x67, 0xae, + 0x7b, 0xd5, 0x32, 0x41, 0x7e, 0xb4, 0xa4, 0xe4, 0xaf, 0x15, 0x8d, 0x8b, + 0xdc, 0xb1, 0xb8, 0xab, 0xe5, 0x58, 0xed, 0xf6, 0xa6, 0xbb, 0x33, 0x77, + 0x24, 0x7a, 0x54, 0x25, 0xca, 0x75, 0xa5, 0x59, 0xca, 0x90, 0x7b, 0x1a, + 0x39, 0x7a, 0x95, 0x73, 0x34, 0x0d, 0xb7, 0xb2, 0x0f, 0x71, 0x57, 0x67, + 0x1b, 0xa2, 0xc7, 0x7a, 0xa5, 0x23, 0x87, 0xd4, 0x64, 0x2b, 0xc7, 0x2b, + 0x56, 0xa5, 0xdd, 0xe5, 0x9c, 0x9a, 0xe8, 0x9a, 0x6f, 0x95, 0x91, 0x4e, + 0x49, 0x5d, 0x10, 0x6e, 0x2b, 0xc6, 0x4e, 0x69, 0xa5, 0xb2, 0x00, 0x20, + 0x64, 0x77, 0xa6, 0xb7, 0xdf, 0x1e, 0xb4, 0x77, 0xe6, 0x9d, 0x8d, 0x2e, + 0x32, 0xf5, 0xc9, 0xb1, 0x61, 0x93, 0x50, 0xc6, 0xfb, 0x10, 0x7b, 0x8a, + 0x5b, 0xdc, 0xfd, 0x9c, 0xe0, 0xf4, 0x35, 0x1a, 0x91, 0xe5, 0xae, 0x7d, + 0x2b, 0x58, 0xaf, 0x74, 0xc6, 0x6e, 0xd3, 0x4c, 0x9e, 0xc4, 0xfc, 0xee, + 0x69, 0xf2, 0x36, 0x5e, 0xa1, 0xb3, 0xea, 0xd4, 0xe6, 0x6f, 0x9e, 0xb4, + 0x92, 0xf7, 0x4a, 0xc2, 0x3f, 0xde, 0x22, 0xec, 0x27, 0xf7, 0x62, 0xac, + 0xc3, 0x91, 0x20, 0xf7, 0xaa, 0x71, 0xb6, 0x23, 0x14, 0xdb, 0xa9, 0x19, + 0x19, 0x59, 0x18, 0x82, 0x07, 0xad, 0x71, 0xb8, 0xf3, 0x3b, 0x1e, 0xcf, + 0x3f, 0x2b, 0x46, 0x9c, 0xd2, 0x61, 0x48, 0x1e, 0x99, 0xa7, 0x58, 0x18, + 0xa5, 0x9b, 0x64, 0xa2, 0xa8, 0x47, 0x74, 0x84, 0x03, 0x23, 0x1e, 0x47, + 0xf1, 0x71, 0x49, 0x1b, 0xbb, 0xcf, 0x98, 0xfa, 0x77, 0x27, 0x8a, 0xeb, + 0xa3, 0x1e, 0x4a, 0x76, 0x3c, 0xac, 0x5c, 0x9c, 0xeb, 0x37, 0xd0, 0xd6, + 0x95, 0xa4, 0xb2, 0xba, 0x40, 0xab, 0x94, 0x2d, 0x85, 0x6a, 0xb1, 0x7c, + 0x30, 0x17, 0x9e, 0xe3, 0xad, 0x46, 0xd0, 0xca, 0xd6, 0xd0, 0xbc, 0x49, + 0xbf, 0x61, 0x04, 0xa9, 0xa2, 0xf8, 0xcd, 0x74, 0xab, 0xe5, 0x44, 0xca, + 0x4f, 0x50, 0x57, 0xfa, 0xd6, 0x7b, 0xea, 0xcc, 0xb9, 0x5e, 0xc8, 0x82, + 0xe0, 0x6f, 0x7c, 0xaf, 0x23, 0x1c, 0x91, 0x54, 0x67, 0x5f, 0x97, 0x83, + 0x5a, 0x16, 0xda, 0x7d, 0xc4, 0x10, 0xb8, 0x72, 0x09, 0x7e, 0x31, 0x8e, + 0x94, 0xc6, 0xd1, 0x6e, 0x1b, 0xa8, 0x04, 0x7d, 0x71, 0x53, 0xcf, 0xd0, + 0x1d, 0x33, 0x95, 0xb8, 0xcb, 0x4c, 0xd9, 0x38, 0xad, 0xbf, 0x0e, 0x37, + 0x97, 0x79, 0x1b, 0x77, 0xe6, 0xae, 0x0f, 0x0d, 0x92, 0x79, 0x89, 0x7f, + 0x3a, 0xb9, 0x67, 0xa3, 0x1b, 0x56, 0xdc, 0x23, 0x01, 0xbb, 0x10, 0x69, + 0x54, 0xa9, 0x17, 0x1b, 0x04, 0x29, 0x34, 0xee, 0x43, 0x7b, 0x1d, 0xbc, + 0xfa, 0xac, 0xad, 0x31, 0x6c, 0xe7, 0xd6, 0xbd, 0x43, 0x4b, 0xbb, 0x8e, + 0xe3, 0x43, 0x11, 0xe4, 0x95, 0x4b, 0x7d, 0xbc, 0xfa, 0x62, 0xb8, 0xd8, + 0x6d, 0xd0, 0xc9, 0xb9, 0xe0, 0x46, 0x27, 0xa9, 0x2b, 0x5d, 0x36, 0x89, + 0x34, 0x76, 0xb2, 0x37, 0x9b, 0xb5, 0x63, 0x38, 0xf9, 0x71, 0xc6, 0x2b, + 0xcd, 0xac, 0xb9, 0x97, 0xa1, 0xdf, 0x49, 0xd9, 0x99, 0x5a, 0x66, 0x93, + 0xa6, 0x23, 0x89, 0xf6, 0xb6, 0xe4, 0x90, 0x10, 0x09, 0x3c, 0xf3, 0x5a, + 0x3f, 0x12, 0xd8, 0x36, 0x99, 0x68, 0x3f, 0xe9, 0xa0, 0xae, 0x8b, 0xfb, + 0x5b, 0x48, 0x8c, 0x60, 0x2c, 0x63, 0xe9, 0x1f, 0xff, 0x00, 0x5a, 0xb9, + 0xcf, 0x13, 0xdd, 0x41, 0xab, 0x47, 0x1c, 0x70, 0xbf, 0xdd, 0x39, 0xe5, + 0x6b, 0x3a, 0x2d, 0xaa, 0x89, 0xc9, 0x9a, 0x55, 0x8a, 0x70, 0xb4, 0x51, + 0xc4, 0x59, 0x10, 0x35, 0x78, 0xb8, 0xe8, 0xcb, 0x5d, 0xcb, 0x5d, 0xc3, + 0x16, 0x9c, 0xe4, 0x92, 0x5c, 0xa9, 0xc6, 0x01, 0x3c, 0xd7, 0x3a, 0x96, + 0xe2, 0x06, 0x04, 0x60, 0x9f, 0x5d, 0xb5, 0x21, 0x9e, 0x48, 0xe3, 0x22, + 0x22, 0x40, 0xee, 0x36, 0xd6, 0x78, 0xaa, 0x7e, 0xda, 0x69, 0xa3, 0x2a, + 0x4f, 0xd9, 0xa3, 0x11, 0xa6, 0x6f, 0xb7, 0x48, 0xcc, 0x0e, 0xe2, 0x33, + 0xc8, 0xc5, 0x3a, 0x77, 0x56, 0xb7, 0x6c, 0xf5, 0xc5, 0x3e, 0x78, 0xa4, + 0x96, 0xe4, 0xcc, 0xcd, 0xf3, 0x11, 0x8f, 0xbb, 0x42, 0xdb, 0xb4, 0xa9, + 0xb0, 0x9e, 0x0f, 0xa0, 0xaf, 0x52, 0x8d, 0xa2, 0x93, 0x67, 0x3c, 0xf5, + 0xd0, 0xd1, 0xb1, 0x89, 0x9a, 0x28, 0xd8, 0x03, 0x80, 0x3d, 0x2a, 0xeb, + 0xac, 0x87, 0x00, 0x03, 0xd7, 0xd2, 0x9b, 0x64, 0x27, 0x82, 0x20, 0x9e, + 0x5e, 0x47, 0xb8, 0xab, 0xbe, 0x69, 0x04, 0x6e, 0x52, 0xbf, 0x41, 0x5e, + 0x5e, 0x22, 0x32, 0x9d, 0x56, 0xd1, 0xbc, 0x2c, 0xa3, 0x66, 0x6e, 0x7c, + 0x2f, 0xbd, 0x48, 0xb5, 0xed, 0x5d, 0x64, 0x47, 0x62, 0x22, 0x52, 0x71, + 0x8e, 0x39, 0x34, 0x7c, 0x6b, 0xd4, 0x6d, 0xe7, 0xf0, 0x65, 0x92, 0xa4, + 0x72, 0x82, 0xf7, 0x01, 0x83, 0x1c, 0x63, 0x1b, 0x5b, 0xaf, 0xe7, 0x58, + 0xda, 0x55, 0xb9, 0xb4, 0xbf, 0x9e, 0xf2, 0xca, 0xee, 0x58, 0x26, 0x95, + 0x70, 0xfc, 0x02, 0x0f, 0xe0, 0x45, 0x66, 0x78, 0xce, 0x3d, 0x47, 0x58, + 0xd3, 0xa0, 0xb6, 0xbc, 0xbd, 0xdf, 0x0c, 0x67, 0x72, 0x00, 0x98, 0xe7, + 0xa6, 0x6b, 0xec, 0x30, 0x4e, 0x92, 0xc2, 0xc7, 0x99, 0xea, 0x91, 0xf3, + 0xf8, 0x98, 0xd5, 0x78, 0x89, 0x59, 0x68, 0xdf, 0xf9, 0x1c, 0x1d, 0xa5, + 0xca, 0xb5, 0x84, 0x4b, 0xdc, 0x0a, 0x63, 0xbe, 0x69, 0x53, 0x4a, 0x9e, + 0xd8, 0x6d, 0x59, 0x15, 0x80, 0xfc, 0x2a, 0x39, 0x22, 0x95, 0x7a, 0xa1, + 0xfc, 0x2b, 0x86, 0xa6, 0xaf, 0x43, 0xae, 0x31, 0x69, 0x6a, 0x44, 0x7e, + 0x69, 0x90, 0x0f, 0x53, 0xfc, 0xaa, 0x85, 0xe8, 0x22, 0x51, 0x91, 0xda, + 0xb4, 0x62, 0x89, 0xde, 0x45, 0x70, 0x31, 0xb4, 0xf7, 0xe2, 0xab, 0xdf, + 0xda, 0x4e, 0x71, 0x21, 0x5f, 0x95, 0x47, 0x27, 0x35, 0x74, 0xdd, 0xa3, + 0x62, 0x65, 0x17, 0xb9, 0x99, 0x48, 0x4d, 0x2f, 0xe3, 0x4d, 0x7e, 0x9c, + 0x56, 0xc8, 0xc9, 0x8c, 0x27, 0x34, 0xd3, 0x92, 0x78, 0x06, 0x96, 0xb6, + 0x25, 0xb6, 0x09, 0xa4, 0x87, 0x43, 0xf3, 0x85, 0xe4, 0xd1, 0x29, 0x72, + 0xd8, 0x22, 0xae, 0x65, 0x97, 0x57, 0x84, 0xb3, 0x3b, 0x19, 0x01, 0x00, + 0x0f, 0x6a, 0x92, 0xd2, 0x6c, 0x4b, 0x1a, 0x9f, 0x51, 0x8a, 0xaa, 0x3a, + 0xe2, 0xac, 0xdb, 0xc5, 0x96, 0x52, 0x17, 0xa1, 0xeb, 0x44, 0x92, 0xb0, + 0xd4, 0x9d, 0xce, 0xcb, 0x4c, 0x22, 0xef, 0x53, 0x88, 0x48, 0x38, 0x07, + 0x15, 0x53, 0x55, 0x45, 0x87, 0xc6, 0x36, 0xe8, 0xa3, 0xe5, 0x57, 0xa9, + 0x34, 0x37, 0x27, 0x54, 0x8d, 0x87, 0x4c, 0xd2, 0x6b, 0x2b, 0xff, 0x00, + 0x15, 0x7d, 0xb3, 0xf7, 0x73, 0x93, 0x5c, 0xd5, 0x79, 0xae, 0xed, 0xb5, + 0x99, 0xd1, 0x4e, 0xdc, 0xaa, 0xfb, 0xdc, 0x9e, 0x5b, 0xa5, 0xd9, 0x83, + 0xb7, 0x19, 0xe9, 0x55, 0xac, 0x6e, 0x41, 0xd6, 0xa0, 0x28, 0xa1, 0x4a, + 0xb6, 0x41, 0x04, 0xd5, 0x79, 0x17, 0x2c, 0xd9, 0x8d, 0xdb, 0x9e, 0xd4, + 0xcd, 0x35, 0x5d, 0x35, 0xa8, 0xb2, 0x85, 0x7a, 0xe3, 0x35, 0x8a, 0x82, + 0xe5, 0x67, 0x4c, 0xea, 0x27, 0x64, 0x91, 0xf4, 0x6a, 0x6b, 0x29, 0x35, + 0xb4, 0x4f, 0x71, 0x20, 0xdf, 0xb0, 0x64, 0x9a, 0xad, 0xfd, 0xa9, 0x69, + 0xe5, 0x3b, 0x09, 0x13, 0x01, 0xc7, 0x46, 0xcf, 0x7a, 0xe1, 0xf5, 0xf9, + 0xdd, 0x3c, 0x37, 0x70, 0xca, 0xf8, 0x61, 0x0f, 0x18, 0x3d, 0x2b, 0x9a, + 0xf0, 0x1d, 0xd4, 0xb3, 0xd9, 0x5c, 0x99, 0x1c, 0xb1, 0x0c, 0x3a, 0xf3, + 0x52, 0xa8, 0xbb, 0x68, 0xcd, 0xa3, 0x89, 0x8c, 0x5d, 0xac, 0x77, 0x5e, + 0x30, 0x9a, 0x2b, 0xbb, 0x7b, 0x56, 0x46, 0x53, 0xb2, 0x46, 0xe8, 0x73, + 0x5c, 0x8c, 0xca, 0x1a, 0x32, 0x31, 0xc6, 0x2b, 0x71, 0x5b, 0x23, 0x90, + 0x0f, 0x27, 0xb5, 0x31, 0x8c, 0x3d, 0xd4, 0x7f, 0xdf, 0x34, 0xd5, 0x39, + 0x21, 0xca, 0xbc, 0x59, 0x99, 0xa4, 0xc8, 0x96, 0x6b, 0x97, 0x76, 0x5f, + 0x9b, 0xb0, 0xcf, 0x6a, 0x4d, 0x62, 0x3f, 0xed, 0x4b, 0x53, 0x14, 0x72, + 0x16, 0xf9, 0xf7, 0x00, 0x40, 0x15, 0xa2, 0x4c, 0x18, 0xfb, 0x8b, 0xff, + 0x00, 0x7c, 0xd4, 0x65, 0xad, 0xc7, 0xfc, 0xb2, 0x4f, 0xca, 0x85, 0x47, + 0xde, 0xe6, 0x1b, 0xc4, 0x7b, 0xbc, 0xa3, 0xac, 0x7f, 0xb4, 0x2d, 0xed, + 0xd6, 0x68, 0x32, 0x93, 0xa0, 0xda, 0xac, 0x0f, 0xf0, 0xe2, 0xa1, 0x92, + 0xf2, 0xe5, 0xac, 0x12, 0x17, 0x84, 0x17, 0x04, 0x12, 0x71, 0xef, 0x53, + 0x7d, 0xa6, 0x15, 0x18, 0x08, 0x07, 0xe3, 0x49, 0xf6, 0xa8, 0xbd, 0x00, + 0xff, 0x00, 0x81, 0x51, 0xec, 0x10, 0xd6, 0x25, 0x22, 0xba, 0xde, 0x5c, + 0x81, 0x02, 0xc6, 0x9b, 0x0a, 0x67, 0xe6, 0x1d, 0x45, 0x51, 0xb9, 0xb5, + 0xb9, 0xbc, 0xb9, 0x2d, 0x3c, 0x8f, 0x2a, 0xe3, 0x86, 0x6e, 0xa3, 0xad, + 0x6a, 0x19, 0x6d, 0x7a, 0x94, 0x53, 0xff, 0x00, 0x02, 0xa6, 0x79, 0xf6, + 0xeb, 0xd2, 0x31, 0xf8, 0x3d, 0x38, 0xd1, 0x49, 0xdc, 0x89, 0xd7, 0x52, + 0x56, 0x64, 0x5a, 0x71, 0x9a, 0xce, 0x17, 0x86, 0x48, 0x37, 0x26, 0xe2, + 0x54, 0xe7, 0x15, 0x67, 0x4a, 0xd4, 0x67, 0x81, 0x2e, 0x21, 0x9e, 0xdd, + 0xd5, 0x58, 0x92, 0x85, 0x79, 0x1c, 0xe7, 0xfc, 0x69, 0x82, 0xf2, 0x21, + 0xfc, 0x1f, 0xf8, 0xfd, 0x46, 0xf7, 0x31, 0x11, 0xc0, 0x20, 0xff, 0x00, + 0xbf, 0x54, 0xa9, 0x25, 0xd0, 0x97, 0x55, 0x5a, 0xc6, 0xac, 0x5a, 0x84, + 0x50, 0xb2, 0x48, 0x21, 0x70, 0xe1, 0xb7, 0x39, 0xc7, 0x5f, 0x7a, 0xc6, + 0xd5, 0xa5, 0x86, 0xe6, 0xed, 0xef, 0x24, 0x8f, 0x72, 0xb6, 0x38, 0x03, + 0x92, 0x41, 0xa5, 0x57, 0x43, 0xfc, 0x4d, 0xff, 0x00, 0x7d, 0xff, 0x00, + 0xf5, 0xea, 0x4f, 0xf4, 0x72, 0xb8, 0x60, 0xc7, 0xfe, 0x07, 0xff, 0x00, + 0xd7, 0xab, 0xb1, 0x93, 0x6b, 0x64, 0x57, 0x77, 0x9e, 0xf2, 0xf0, 0x35, + 0xa4, 0x0a, 0xa9, 0xe5, 0x11, 0x93, 0x80, 0x57, 0xe5, 0xe3, 0x15, 0x3d, + 0x95, 0xcd, 0xcd, 0x85, 0xed, 0xbc, 0x97, 0x72, 0x33, 0x48, 0x91, 0x61, + 0x89, 0x6c, 0x9c, 0xd3, 0x77, 0x42, 0xbf, 0x74, 0x30, 0xfa, 0x49, 0xff, + 0x00, 0xd7, 0xa6, 0x19, 0x23, 0xdd, 0x93, 0xbb, 0x3f, 0xef, 0xff, 0x00, + 0xf5, 0xe9, 0xbe, 0xe0, 0x9a, 0x47, 0x67, 0xa3, 0x78, 0x8e, 0xea, 0xe4, + 0xdc, 0x34, 0x92, 0xdc, 0xb1, 0xd8, 0x42, 0xed, 0x24, 0xe0, 0x60, 0x0f, + 0x5e, 0x2a, 0x6f, 0x14, 0xeb, 0x36, 0x57, 0xd0, 0x69, 0x68, 0xb2, 0xdc, + 0x2f, 0x93, 0x16, 0xd9, 0x73, 0xc6, 0x3a, 0x67, 0x1e, 0xbf, 0xfe, 0xaa, + 0xe4, 0xad, 0x35, 0x79, 0x6c, 0xb7, 0x9b, 0x79, 0x24, 0x42, 0xe3, 0x0d, + 0x86, 0xeb, 0x50, 0x5c, 0x5f, 0x19, 0x97, 0x2f, 0xbd, 0x80, 0x18, 0x19, + 0x7e, 0x94, 0xe2, 0xda, 0x46, 0x0e, 0x94, 0x5c, 0xae, 0x46, 0x2c, 0xd8, + 0x10, 0x3e, 0xcb, 0xc9, 0xab, 0xcf, 0xa3, 0x5d, 0xa5, 0xbf, 0x9c, 0x6c, + 0x14, 0x27, 0xae, 0x45, 0x6b, 0x0b, 0x3b, 0x70, 0xf1, 0x93, 0x74, 0x39, + 0x23, 0xf0, 0xae, 0x97, 0x55, 0xb1, 0xd3, 0xa0, 0xd2, 0xd5, 0x97, 0x51, + 0x59, 0x49, 0x50, 0x76, 0xff, 0x00, 0x93, 0x5a, 0x28, 0xa6, 0x66, 0xea, + 0xb3, 0x81, 0xfe, 0xc6, 0xbb, 0x92, 0xdb, 0xcf, 0x4b, 0x34, 0x28, 0xbd, + 0x4e, 0x45, 0x71, 0x57, 0x6f, 0x14, 0xf7, 0x97, 0x23, 0xcb, 0x27, 0x04, + 0x01, 0xc1, 0x18, 0x22, 0xbd, 0x76, 0xc6, 0xf2, 0xd6, 0x3b, 0x45, 0x43, + 0x6d, 0x1b, 0x30, 0x62, 0x77, 0x16, 0x3c, 0xd7, 0x9e, 0x6b, 0x6b, 0xe6, + 0x6b, 0xb3, 0xc9, 0x1c, 0x41, 0x15, 0x9b, 0xa2, 0x8e, 0x28, 0xf8, 0x53, + 0x0e, 0x66, 0xde, 0xa5, 0x1f, 0x11, 0xd9, 0x49, 0x36, 0x87, 0x0b, 0x88, + 0xd4, 0x11, 0x8c, 0x7a, 0xf4, 0xab, 0xbe, 0x15, 0xb0, 0xb9, 0x1a, 0x0a, + 0xb9, 0xf2, 0xc8, 0x0c, 0x7b, 0x72, 0x2b, 0xa1, 0xb8, 0xb5, 0xb2, 0xb9, + 0xd2, 0x55, 0x59, 0x9f, 0xcc, 0x0b, 0x91, 0x8f, 0x5a, 0x4d, 0x3a, 0x6b, + 0x7b, 0x1d, 0x2b, 0xc9, 0xdf, 0xb5, 0xc1, 0xcf, 0xcc, 0x05, 0x79, 0x0f, + 0x1d, 0x52, 0x54, 0x6d, 0x15, 0xad, 0xfb, 0x1e, 0x7f, 0xd6, 0xe4, 0xd7, + 0x32, 0x4e, 0xe9, 0xdb, 0x63, 0x2e, 0x49, 0x5d, 0x0e, 0x30, 0x29, 0xa2, + 0xe5, 0xc9, 0xc6, 0xda, 0x4b, 0xa9, 0xbc, 0xd9, 0x4e, 0xdc, 0x7e, 0x03, + 0x15, 0x14, 0x4d, 0xb1, 0x81, 0x65, 0xce, 0x2b, 0xba, 0x0e, 0x4e, 0x37, + 0x67, 0xad, 0x09, 0xde, 0x37, 0x66, 0xdd, 0xa5, 0xa4, 0xd7, 0x00, 0x15, + 0x63, 0xcf, 0xa5, 0x49, 0x77, 0xa5, 0xc9, 0x14, 0x45, 0x89, 0x6c, 0x8f, + 0x5a, 0x96, 0xcf, 0x5b, 0x82, 0x08, 0x91, 0x7e, 0xce, 0xa4, 0x8e, 0xe0, + 0x53, 0x6e, 0xf5, 0xa8, 0xee, 0x15, 0x94, 0x42, 0xc3, 0x3d, 0xf3, 0x5e, + 0x7d, 0xf1, 0x2e, 0x7b, 0x68, 0x74, 0xe5, 0xb3, 0x8c, 0x94, 0xfe, 0xb0, + 0xad, 0xd8, 0xe7, 0x9d, 0x5b, 0x7e, 0x05, 0x3e, 0x38, 0x24, 0x27, 0xe6, + 0x60, 0x3e, 0xb4, 0xf2, 0x8a, 0x5b, 0x21, 0x88, 0xa5, 0xd9, 0xee, 0x4e, + 0x7d, 0xeb, 0xd5, 0x8b, 0x7d, 0x4c, 0x6a, 0x25, 0xd0, 0x16, 0x3c, 0x37, + 0x2c, 0x2b, 0x4e, 0xc6, 0x08, 0x0e, 0x5a, 0x49, 0x14, 0x71, 0x59, 0x82, + 0x2e, 0x7b, 0xd4, 0xaa, 0x8a, 0x07, 0x2c, 0x7e, 0x95, 0x56, 0x32, 0xb3, + 0x36, 0x2d, 0x26, 0x8a, 0x1b, 0xbe, 0x19, 0x71, 0x9a, 0xea, 0x97, 0x55, + 0xb3, 0x36, 0xe1, 0x7c, 0xc4, 0xdd, 0x8a, 0xe0, 0xe2, 0x28, 0xa4, 0x75, + 0xab, 0x61, 0xe3, 0x23, 0x38, 0x24, 0xfb, 0xd6, 0x13, 0x85, 0xce, 0x9a, + 0x72, 0xb1, 0x0f, 0x8b, 0xef, 0x45, 0xd3, 0x88, 0x50, 0xe1, 0x51, 0x77, + 0x29, 0xf7, 0xac, 0xbd, 0x1a, 0x68, 0x66, 0xb2, 0xdb, 0x70, 0xc1, 0x1f, + 0x27, 0x3b, 0x8e, 0x2a, 0xc6, 0xa2, 0xab, 0x20, 0xc6, 0x05, 0x64, 0x08, + 0x80, 0xe3, 0x38, 0xad, 0x29, 0x52, 0x5c, 0xba, 0x98, 0xd6, 0xa9, 0x79, + 0x15, 0xbc, 0x53, 0x7b, 0x6d, 0x69, 0x24, 0x16, 0xc8, 0x16, 0x55, 0x6f, + 0x98, 0x92, 0xd9, 0xc5, 0x5f, 0xb4, 0xd4, 0x62, 0x6f, 0x0f, 0xb4, 0x79, + 0x00, 0xe3, 0x18, 0xac, 0xeb, 0xad, 0x3a, 0xda, 0x77, 0x0f, 0x2a, 0x07, + 0x23, 0xb9, 0xa9, 0x52, 0x18, 0xd2, 0x2d, 0xaa, 0xaa, 0x00, 0xad, 0xe3, + 0x05, 0x1d, 0x8c, 0x24, 0xdb, 0x33, 0xa4, 0xb7, 0x32, 0xfc, 0xc1, 0x49, + 0xf7, 0xaa, 0xaf, 0xa5, 0xbc, 0x87, 0x92, 0x00, 0xad, 0x82, 0x00, 0xea, + 0x69, 0x84, 0xfa, 0x1a, 0xd2, 0xc8, 0x8b, 0x0d, 0xb4, 0x49, 0x6d, 0xed, + 0x84, 0x47, 0x1c, 0x74, 0xe6, 0xb3, 0xae, 0xb4, 0x96, 0xb9, 0x9c, 0xcb, + 0x24, 0xb8, 0x3e, 0x82, 0xb4, 0xf2, 0x7d, 0x69, 0x37, 0x1a, 0x88, 0xc2, + 0x31, 0x77, 0x40, 0xf5, 0x32, 0x97, 0x46, 0x45, 0xfe, 0x36, 0x35, 0x2f, + 0xf6, 0x64, 0x7e, 0xad, 0x5a, 0x23, 0x14, 0xa0, 0x81, 0xda, 0xaa, 0xe0, + 0xa2, 0x8c, 0xe5, 0xd3, 0xe3, 0x56, 0x07, 0xe6, 0x35, 0xac, 0x2e, 0xa5, + 0xf2, 0xb6, 0x76, 0xc6, 0x29, 0x14, 0x82, 0x7a, 0x54, 0xaa, 0xbc, 0xe4, + 0xd0, 0x34, 0x8c, 0xc9, 0x6d, 0xfc, 0xe6, 0xcf, 0x96, 0x0e, 0x3a, 0x13, + 0x51, 0x7f, 0x67, 0x5c, 0x3f, 0x40, 0x00, 0xfa, 0xd6, 0xf2, 0xe0, 0x76, + 0x1f, 0x95, 0x4c, 0xb2, 0x00, 0x3e, 0xe8, 0xfc, 0xa9, 0x39, 0x0f, 0x97, + 0xcc, 0xc1, 0x83, 0x44, 0x9d, 0x9c, 0x13, 0x8a, 0xed, 0xf4, 0x44, 0x36, + 0x96, 0x5e, 0x4b, 0x87, 0x39, 0x20, 0xf0, 0xd8, 0x15, 0x95, 0x1c, 0xdb, + 0x7d, 0x2b, 0x46, 0xde, 0x67, 0x2b, 0xc1, 0xab, 0x85, 0x49, 0x45, 0xe8, + 0x44, 0xe9, 0xc6, 0x4b, 0x51, 0xda, 0xa6, 0x97, 0x15, 0xf4, 0xfb, 0xd4, + 0x14, 0x3d, 0xf2, 0x73, 0x55, 0x62, 0xf0, 0xd4, 0x0b, 0xf7, 0x9f, 0xf4, + 0xab, 0x12, 0x5d, 0xbc, 0x4d, 0x90, 0x73, 0x50, 0x9d, 0x52, 0x53, 0xc7, + 0x00, 0xd6, 0x53, 0x73, 0x93, 0xbd, 0xcd, 0x69, 0xa8, 0x45, 0x58, 0x56, + 0xf0, 0xfd, 0x90, 0x23, 0x74, 0x9f, 0xa5, 0x31, 0xf4, 0x4d, 0x3d, 0x7f, + 0x8c, 0xd3, 0x1f, 0x50, 0x77, 0xeb, 0x49, 0xf6, 0x82, 0x79, 0xcd, 0x67, + 0xcb, 0x2e, 0xa5, 0xf3, 0x47, 0xa0, 0xd7, 0xd2, 0x2c, 0x07, 0x3b, 0x9a, + 0xa1, 0x6d, 0x3a, 0xc5, 0x7a, 0x29, 0x35, 0x3b, 0x49, 0xea, 0x6a, 0x37, + 0x62, 0x47, 0x06, 0x9a, 0x8b, 0x15, 0xd1, 0x54, 0xd8, 0xda, 0x9f, 0xf9, + 0x67, 0x49, 0xf6, 0x68, 0x13, 0xa2, 0xa8, 0xa7, 0x17, 0x60, 0x71, 0xd2, + 0xa3, 0x2c, 0xcd, 0xc5, 0x5a, 0x4c, 0x87, 0x61, 0x4c, 0x68, 0x06, 0x54, + 0xe2, 0xa1, 0x73, 0x22, 0xf4, 0x73, 0x8f, 0xad, 0x3f, 0x0d, 0xea, 0x2a, + 0x37, 0x07, 0x1c, 0x9a, 0xbb, 0x0a, 0xec, 0x61, 0x79, 0x08, 0xc7, 0x99, + 0x51, 0xb1, 0x3d, 0xe5, 0x34, 0xf0, 0x81, 0xbb, 0x81, 0x41, 0x87, 0x34, + 0xf4, 0x05, 0x72, 0xb3, 0x70, 0x3e, 0xfe, 0x69, 0x81, 0xc8, 0xf4, 0xab, + 0x4d, 0x02, 0x77, 0x34, 0xdf, 0x21, 0x7b, 0x0f, 0xce, 0x95, 0xd0, 0xef, + 0x22, 0x23, 0x27, 0x03, 0x06, 0xb4, 0xe0, 0x09, 0xf6, 0x45, 0xdd, 0x20, + 0x56, 0x1c, 0xf2, 0x6b, 0x3d, 0xe0, 0x60, 0xa3, 0x03, 0xf2, 0xa9, 0xd8, + 0x46, 0x53, 0xe6, 0x90, 0x8e, 0x31, 0x9c, 0x54, 0xad, 0x85, 0x6d, 0x6e, + 0x68, 0xc2, 0x03, 0x82, 0xe1, 0xc3, 0x0c, 0x76, 0xaa, 0xaa, 0xeb, 0x1a, + 0xe5, 0xe5, 0x0b, 0x9e, 0xc6, 0xab, 0x45, 0x19, 0x55, 0x3b, 0x24, 0x0d, + 0x9f, 0x4a, 0x64, 0x9b, 0x40, 0x04, 0x90, 0xbe, 0xb5, 0x2f, 0x71, 0xad, + 0x89, 0x8d, 0xcc, 0x2a, 0xc4, 0xe0, 0xb1, 0xf5, 0x02, 0xb1, 0xbe, 0xd2, + 0x96, 0x97, 0x7e, 0x4b, 0x83, 0x97, 0x39, 0x53, 0xed, 0x56, 0x65, 0x99, + 0x31, 0x85, 0x05, 0xaa, 0x95, 0xc5, 0xbf, 0xda, 0x2e, 0x23, 0x97, 0x05, + 0x4a, 0xe0, 0x60, 0x56, 0x53, 0x8a, 0x96, 0xe7, 0x45, 0x2a, 0xb3, 0xa7, + 0xf0, 0x8e, 0x7d, 0x66, 0x05, 0x66, 0x5d, 0x8f, 0x90, 0x71, 0xd2, 0xa9, + 0xb6, 0xb0, 0xaf, 0x28, 0x0b, 0x19, 0xc6, 0x7a, 0x9a, 0x94, 0xe9, 0x7b, + 0xe4, 0x66, 0xc9, 0x00, 0x9c, 0xf5, 0xa9, 0x22, 0xd2, 0x62, 0x43, 0x4a, + 0x30, 0xa7, 0x06, 0x9a, 0xdc, 0xda, 0x78, 0x9a, 0xf3, 0x5c, 0xad, 0xe8, + 0x45, 0x35, 0xd9, 0x96, 0xdd, 0x91, 0x50, 0xee, 0x35, 0x46, 0x23, 0x32, + 0x75, 0x5c, 0xd7, 0x40, 0x96, 0x70, 0x85, 0xc6, 0x4e, 0x69, 0xc6, 0xc2, + 0x3e, 0xcc, 0x7f, 0x2a, 0xd1, 0xcd, 0xb3, 0x97, 0xd9, 0xa3, 0x01, 0x51, + 0x8c, 0xac, 0xcc, 0xa7, 0x9f, 0x4a, 0xb1, 0x1a, 0x15, 0xce, 0xde, 0xf5, + 0xa8, 0x6c, 0x31, 0xce, 0xec, 0x52, 0x18, 0x02, 0x8d, 0xab, 0xf9, 0xe2, + 0xb2, 0x95, 0xd9, 0xad, 0x34, 0xa2, 0xee, 0x67, 0x79, 0x05, 0xb0, 0x55, + 0x81, 0xa9, 0xe0, 0x47, 0x89, 0x89, 0x62, 0x31, 0xda, 0xa7, 0xfb, 0x19, + 0xed, 0x8a, 0x8d, 0xac, 0xd9, 0xb8, 0xdc, 0x6a, 0x79, 0x5b, 0xd1, 0x83, + 0xdb, 0x41, 0x6e, 0x18, 0x79, 0x2d, 0xcf, 0xf0, 0x9a, 0xbb, 0x6d, 0x1c, + 0x8f, 0x69, 0x1e, 0x17, 0x07, 0x68, 0xef, 0x59, 0xed, 0x62, 0x76, 0x9c, + 0xbf, 0x15, 0x24, 0x77, 0xf3, 0x46, 0xbe, 0x5a, 0x1f, 0x95, 0x78, 0xe9, + 0x59, 0xd5, 0xa6, 0xf9, 0x52, 0x42, 0xa7, 0x19, 0x4a, 0x5b, 0x17, 0xc4, + 0x4c, 0x1b, 0x91, 0x4c, 0x91, 0x9d, 0x4e, 0x01, 0xc0, 0x35, 0x57, 0xfb, + 0x42, 0x40, 0x7a, 0x1f, 0xca, 0x98, 0xf7, 0x8e, 0xe7, 0x25, 0x4f, 0xe5, + 0x58, 0xaa, 0x72, 0xbe, 0xa7, 0x47, 0xb2, 0x9f, 0x62, 0xf6, 0xd6, 0x28, + 0x09, 0x19, 0xfc, 0x69, 0xc1, 0x64, 0xc0, 0x21, 0x3e, 0xbc, 0xd5, 0x13, + 0x7e, 0xe5, 0x31, 0xb4, 0xfe, 0x54, 0x0b, 0xc9, 0x80, 0xe0, 0x90, 0x28, + 0xf6, 0x72, 0x0f, 0x65, 0x2e, 0xc4, 0x4e, 0x76, 0xea, 0x4f, 0xb8, 0x05, + 0xe5, 0x78, 0xab, 0x92, 0xb0, 0x28, 0x40, 0x20, 0x9a, 0xa4, 0x20, 0xfb, + 0x5c, 0xbe, 0x69, 0x6c, 0x37, 0x7a, 0xb1, 0xf6, 0x42, 0x0f, 0xdf, 0xae, + 0x87, 0x0d, 0x11, 0xca, 0xae, 0x9b, 0x23, 0x20, 0x8e, 0xc2, 0xa1, 0x7f, + 0x33, 0x24, 0xa8, 0x15, 0x68, 0x5b, 0xe3, 0xab, 0x53, 0xc4, 0x23, 0x1c, + 0x9a, 0x94, 0xac, 0x6b, 0xb9, 0x99, 0x34, 0x33, 0x4b, 0x0b, 0x65, 0x6a, + 0xbe, 0x27, 0x0a, 0x14, 0xc6, 0x78, 0xf6, 0xad, 0xb3, 0x1f, 0x6c, 0xf1, + 0x4a, 0x20, 0xab, 0x53, 0x69, 0x6c, 0x44, 0xa1, 0xcc, 0xef, 0x73, 0x1a, + 0xd9, 0xa4, 0x84, 0x36, 0xe5, 0xc9, 0x35, 0x0c, 0xd7, 0x8f, 0x14, 0x9f, + 0x74, 0x56, 0xf3, 0xda, 0x87, 0x1c, 0xe4, 0x7d, 0x2a, 0xac, 0x9a, 0x50, + 0x90, 0xf2, 0x73, 0xf5, 0xab, 0x8d, 0x44, 0xfe, 0x21, 0x28, 0x38, 0xeb, + 0x07, 0xa9, 0x9a, 0x35, 0x5f, 0x94, 0x0f, 0x28, 0xfe, 0x75, 0x35, 0xcd, + 0xe1, 0x69, 0xd6, 0x20, 0x9c, 0xb0, 0x1c, 0xe6, 0xa5, 0x7d, 0x14, 0x01, + 0xf2, 0xd3, 0x1b, 0x4f, 0x93, 0xcf, 0x12, 0x01, 0x92, 0xb8, 0x1d, 0x6a, + 0xad, 0x4a, 0xf7, 0x45, 0xfb, 0x6a, 0xfd, 0x59, 0x6d, 0x26, 0x50, 0xaa, + 0xac, 0xa7, 0x81, 0x8c, 0x8a, 0x9e, 0x39, 0x63, 0x67, 0x1f, 0xbc, 0xc1, + 0xf4, 0x3c, 0x55, 0x22, 0x92, 0x29, 0xf9, 0xe2, 0x3f, 0x51, 0x4f, 0x8c, + 0xae, 0xe0, 0x09, 0x23, 0xd8, 0x8a, 0xb4, 0xd1, 0x8b, 0xbf, 0x53, 0xb2, + 0x86, 0x45, 0x4d, 0x36, 0x22, 0xc7, 0x69, 0x03, 0xae, 0x45, 0x36, 0x3b, + 0x88, 0x18, 0x16, 0xf3, 0x41, 0x6c, 0x70, 0xab, 0x93, 0xcd, 0x66, 0x95, + 0xcc, 0x49, 0x96, 0xda, 0xb8, 0xfc, 0xe9, 0x62, 0x44, 0x57, 0x0c, 0x0b, + 0xf1, 0xde, 0xb9, 0x92, 0x34, 0xbb, 0x2e, 0x3d, 0xe1, 0xe0, 0x1e, 0xc6, + 0x9e, 0x35, 0x43, 0x9c, 0x64, 0x55, 0x36, 0x40, 0x5c, 0x9d, 0xc3, 0x9a, + 0x63, 0x2a, 0x8f, 0xe3, 0x14, 0x28, 0xa6, 0xc7, 0xcc, 0xcd, 0x54, 0xd4, + 0x41, 0xfe, 0x31, 0x52, 0x2e, 0xa0, 0xb9, 0xe3, 0x9a, 0xc2, 0x32, 0x84, + 0x3d, 0x3f, 0x1a, 0x16, 0x73, 0x9f, 0x5a, 0x6e, 0x9e, 0x83, 0x52, 0x3a, + 0x58, 0xef, 0xbd, 0x48, 0x15, 0x37, 0xf6, 0x86, 0x07, 0x5a, 0xe7, 0x23, + 0x9c, 0x06, 0xe7, 0x35, 0x61, 0xae, 0x11, 0x80, 0x00, 0x91, 0x59, 0x3a, + 0x7d, 0xd1, 0xa2, 0x91, 0xb8, 0x97, 0x9b, 0x9b, 0xfd, 0x66, 0x29, 0xd2, + 0xcc, 0x3b, 0xb8, 0x22, 0xb9, 0xf5, 0x63, 0x9e, 0x09, 0xcd, 0x48, 0xce, + 0xe3, 0x1c, 0xd4, 0x3a, 0x4a, 0xe3, 0xf6, 0x9a, 0x1b, 0xf0, 0x91, 0x20, + 0x19, 0xc6, 0x2b, 0x46, 0xda, 0x08, 0x59, 0x71, 0xe5, 0x82, 0x3d, 0x4d, + 0x73, 0x10, 0x4b, 0x27, 0xa9, 0xad, 0x5b, 0x69, 0xe4, 0x1c, 0x12, 0xc4, + 0x57, 0x25, 0x6a, 0x2f, 0xa3, 0x36, 0x85, 0x44, 0x6d, 0x8b, 0x2b, 0x49, + 0x78, 0xf2, 0xd7, 0x03, 0xad, 0x4e, 0xba, 0x7d, 0x9a, 0x28, 0x0b, 0x10, + 0x15, 0x9f, 0x14, 0xe5, 0x48, 0xc6, 0x7f, 0x2a, 0x9f, 0xed, 0x44, 0x8e, + 0x1b, 0xf1, 0xae, 0x29, 0x53, 0x9f, 0x73, 0x64, 0xe3, 0xd8, 0xb2, 0xd6, + 0xf0, 0x03, 0x85, 0xe0, 0x8a, 0x82, 0x4b, 0x68, 0xba, 0x8a, 0x5f, 0xb4, + 0x29, 0x1c, 0xa9, 0x07, 0xd6, 0xa1, 0x9a, 0xe0, 0x02, 0x00, 0xe9, 0xd4, + 0xd2, 0xa7, 0x19, 0x5c, 0x24, 0xd5, 0x89, 0x14, 0x45, 0x6e, 0xa0, 0xa0, + 0x3b, 0xb1, 0xcf, 0x35, 0x8b, 0xad, 0xc8, 0xd7, 0x0a, 0xaa, 0x09, 0x01, + 0x47, 0x4a, 0xd2, 0x7b, 0x94, 0x65, 0xe0, 0x66, 0xb2, 0xef, 0x65, 0x0e, + 0x33, 0x81, 0x9f, 0xa5, 0x7b, 0xf8, 0x76, 0xd5, 0x3b, 0x1e, 0x75, 0x48, + 0xa7, 0x3b, 0x9c, 0xe3, 0xdb, 0x9c, 0xe3, 0x69, 0xaa, 0xef, 0x6b, 0xd6, + 0xb5, 0xd8, 0xe4, 0xe6, 0xa3, 0x60, 0x0d, 0x68, 0x98, 0x9a, 0x30, 0xda, + 0xdd, 0x86, 0x71, 0x9a, 0xaf, 0x24, 0x7b, 0x94, 0xab, 0x60, 0x83, 0xd4, + 0x56, 0xf3, 0x80, 0x73, 0x54, 0xa5, 0x81, 0x4e, 0x48, 0xad, 0x13, 0x21, + 0xa3, 0x0c, 0xd9, 0x40, 0x4f, 0xfa, 0xa1, 0xf8, 0x53, 0x1b, 0x4e, 0xb6, + 0x23, 0xee, 0x11, 0xf8, 0xd6, 0xb3, 0x40, 0x07, 0x6a, 0x85, 0xd3, 0x68, + 0xfb, 0xa4, 0xd6, 0x8a, 0x4c, 0x87, 0x04, 0xcc, 0xa3, 0xa4, 0xdb, 0x1e, + 0x8c, 0xc2, 0xa6, 0x7b, 0x79, 0x05, 0xa1, 0x81, 0x19, 0x5b, 0x8c, 0x0c, + 0x9a, 0x9c, 0xae, 0x4f, 0xdc, 0x34, 0x14, 0xc8, 0xee, 0x29, 0xb6, 0xa5, + 0xb9, 0x2e, 0x9d, 0x8c, 0x48, 0xf4, 0x9b, 0x93, 0x26, 0x19, 0x06, 0x3d, + 0x73, 0x56, 0xe2, 0xd3, 0xe7, 0x80, 0xfc, 0xc9, 0x91, 0xea, 0x2b, 0x4d, + 0x62, 0x93, 0xf8, 0x49, 0x22, 0x9e, 0x16, 0x6f, 0x7a, 0xbb, 0xab, 0x6a, + 0x47, 0x21, 0x2e, 0x8e, 0x02, 0xdf, 0x45, 0xdb, 0x9a, 0x96, 0xf6, 0x15, + 0xbb, 0xf1, 0x34, 0x6c, 0x1b, 0x98, 0x46, 0x4d, 0x40, 0x9b, 0xd5, 0xc3, + 0x74, 0x23, 0xbd, 0x3a, 0x3d, 0xcb, 0x70, 0xd2, 0x64, 0xee, 0x6e, 0xa6, + 0xb1, 0xab, 0x16, 0xe2, 0xd4, 0x4d, 0x69, 0xab, 0x35, 0x73, 0x7e, 0x3b, + 0x68, 0x18, 0x02, 0x6d, 0xd4, 0xa9, 0x1d, 0xc9, 0x35, 0x98, 0xd7, 0x6a, + 0xda, 0x8f, 0xd9, 0x92, 0x18, 0x91, 0x62, 0x39, 0x2c, 0xaa, 0x33, 0x51, + 0x89, 0x27, 0xe8, 0x25, 0x70, 0x3e, 0xb4, 0xb6, 0xd6, 0x2a, 0xd3, 0x97, + 0x7e, 0xad, 0xd7, 0xde, 0xb9, 0x96, 0x17, 0x4f, 0x33, 0x67, 0x57, 0x5f, + 0x23, 0xd3, 0xa4, 0x8a, 0xd7, 0x55, 0xd0, 0x40, 0xca, 0x9f, 0x32, 0x20, + 0xb8, 0xc7, 0xb5, 0x61, 0x68, 0xfe, 0x1e, 0x83, 0x4a, 0x8a, 0x54, 0x45, + 0xf9, 0x58, 0xe6, 0xa5, 0xb1, 0x99, 0x20, 0xb4, 0x44, 0x8d, 0xc0, 0x00, + 0x74, 0xab, 0x69, 0x74, 0x08, 0x3b, 0xb6, 0xe7, 0xd6, 0xb6, 0x54, 0xec, + 0xac, 0x42, 0x9a, 0x6d, 0x0c, 0x7b, 0x08, 0xc4, 0x7c, 0x12, 0x39, 0x3d, + 0x2a, 0xa9, 0xb3, 0x5e, 0x8a, 0xee, 0x3f, 0x1a, 0xb8, 0xd2, 0x06, 0x1c, + 0x36, 0xef, 0x61, 0x51, 0x36, 0x40, 0xce, 0x71, 0x4d, 0x2b, 0x17, 0xa3, + 0x2a, 0x9b, 0x09, 0x5b, 0xee, 0x49, 0x25, 0x57, 0x96, 0xda, 0x58, 0xff, + 0x00, 0xe5, 0xa7, 0xe6, 0xb5, 0x7b, 0xcd, 0x68, 0xdf, 0x39, 0xcd, 0x45, + 0x3c, 0x86, 0x55, 0xc1, 0x20, 0x7e, 0x18, 0xa3, 0x5b, 0x95, 0xee, 0x72, + 0xf9, 0x99, 0x8c, 0x25, 0x07, 0xef, 0x2f, 0xfd, 0xf3, 0x51, 0x93, 0x37, + 0xaa, 0x1a, 0xb0, 0xec, 0x50, 0xf0, 0xc3, 0x35, 0x1f, 0x9e, 0x5b, 0x87, + 0x05, 0xbd, 0xab, 0x4b, 0x18, 0x95, 0xd9, 0xa6, 0xfe, 0xea, 0x54, 0x4d, + 0x24, 0x83, 0xaa, 0x2d, 0x4b, 0x2b, 0x1e, 0xca, 0x45, 0x55, 0x69, 0x0a, + 0x36, 0x76, 0x03, 0xf5, 0xa2, 0xc1, 0xa0, 0xa6, 0x76, 0xff, 0x00, 0x9e, + 0x6b, 0x4d, 0x12, 0xb1, 0xe9, 0x16, 0x7f, 0x1a, 0x43, 0x38, 0x73, 0x86, + 0x8c, 0x28, 0xf5, 0x51, 0x52, 0x20, 0x8b, 0x69, 0xc4, 0x8e, 0x49, 0xed, + 0xb6, 0xa5, 0x94, 0x95, 0xc4, 0x0e, 0xc4, 0xff, 0x00, 0xaa, 0xfd, 0x6a, + 0xdc, 0x36, 0x77, 0x53, 0x44, 0xd2, 0x25, 0xa3, 0x15, 0x5e, 0xa7, 0x3d, + 0x2a, 0x08, 0x0f, 0xef, 0x05, 0x76, 0x1a, 0x51, 0xb6, 0x6d, 0x22, 0xe4, + 0xb4, 0x6d, 0xb8, 0x2f, 0x50, 0xf8, 0xac, 0xe5, 0x36, 0x87, 0xca, 0x71, + 0x6e, 0x59, 0x18, 0xa9, 0x84, 0x83, 0xf5, 0xa8, 0xfc, 0xc2, 0x4e, 0x04, + 0x47, 0x35, 0x6e, 0xf5, 0xc7, 0xda, 0x5b, 0x68, 0xc0, 0xa8, 0x61, 0x6c, + 0xca, 0x2a, 0x93, 0x16, 0x85, 0xa8, 0x34, 0xeb, 0xc9, 0xa2, 0xdf, 0x1d, + 0x94, 0x8c, 0xbe, 0xa0, 0xd3, 0xd2, 0xc6, 0x74, 0xdd, 0xe7, 0x5a, 0xb0, + 0xcf, 0x4c, 0x9a, 0xee, 0xfc, 0x3d, 0xf6, 0x61, 0xa6, 0x66, 0x5e, 0x4f, + 0xb1, 0xc5, 0x52, 0xd4, 0x3e, 0xce, 0xef, 0x84, 0x52, 0x3a, 0xff, 0x00, + 0x16, 0x68, 0x30, 0xf6, 0x9a, 0x9c, 0xa6, 0xe3, 0xc1, 0xdc, 0x73, 0xf5, + 0xa7, 0x34, 0xee, 0xc3, 0x0c, 0xec, 0x71, 0xea, 0x69, 0x9b, 0x55, 0x69, + 0xa5, 0x97, 0xb5, 0x59, 0x76, 0x2f, 0x41, 0x3f, 0x99, 0x19, 0x88, 0xbb, + 0x29, 0xc7, 0x0c, 0x0d, 0x66, 0xcf, 0x04, 0xe2, 0x63, 0x96, 0x66, 0xf7, + 0xf5, 0xa5, 0x12, 0x64, 0xfc, 0xa3, 0x3f, 0x4a, 0xb0, 0x92, 0xbb, 0x9c, + 0x37, 0x1f, 0x85, 0x44, 0xd5, 0x91, 0x49, 0xd8, 0x80, 0x5b, 0xdc, 0x95, + 0xc6, 0xd6, 0x3f, 0x8d, 0x06, 0xca, 0xe0, 0xa9, 0x6d, 0x87, 0x03, 0xb9, + 0x35, 0xa0, 0xb2, 0x30, 0x18, 0xcd, 0x0f, 0x2b, 0x15, 0x20, 0x36, 0x0f, + 0xd2, 0xb8, 0xb9, 0xa7, 0x7d, 0x11, 0x1c, 0xd2, 0xb9, 0x9b, 0xf6, 0x59, + 0xc7, 0x65, 0xfc, 0xe9, 0xf1, 0xda, 0xcb, 0xfc, 0x45, 0x68, 0x92, 0x69, + 0x91, 0x89, 0x76, 0x1b, 0x7b, 0x60, 0x54, 0x69, 0x3c, 0x99, 0xc6, 0xf2, + 0x7d, 0xeb, 0xa1, 0x5e, 0xc6, 0x89, 0xa2, 0xcf, 0x94, 0xd1, 0xe3, 0x23, + 0x8a, 0x42, 0xfc, 0x67, 0xf4, 0xa8, 0x84, 0xaf, 0xb8, 0xf3, 0x91, 0x4c, + 0x79, 0x40, 0x38, 0xdc, 0x3f, 0x3a, 0x9e, 0x56, 0xd9, 0xb4, 0x27, 0x64, + 0x3d, 0x9f, 0x3d, 0x8d, 0x37, 0x7b, 0x7a, 0xd5, 0x66, 0xb9, 0x01, 0x8f, + 0x3c, 0x53, 0x7e, 0xd1, 0xc6, 0x71, 0x9a, 0xe8, 0x8c, 0x4c, 0xe5, 0x32, + 0xe8, 0x91, 0x87, 0x56, 0xe6, 0x94, 0x39, 0xcd, 0x56, 0x49, 0x95, 0xba, + 0xe7, 0x35, 0x3a, 0x32, 0x67, 0xb5, 0x51, 0x9d, 0xee, 0x4f, 0x1b, 0x12, + 0x70, 0x39, 0xab, 0xf1, 0x5b, 0x4d, 0x22, 0x82, 0x08, 0x51, 0xea, 0x6a, + 0xb5, 0xbb, 0x2e, 0xe1, 0xc5, 0x6c, 0xc3, 0x20, 0x48, 0xfe, 0xe8, 0x27, + 0xde, 0xb2, 0x9b, 0xb1, 0xac, 0x11, 0x91, 0x79, 0x6b, 0xb1, 0x49, 0x2f, + 0xb8, 0xd6, 0x44, 0xa8, 0x32, 0x71, 0x5d, 0x0d, 0xfc, 0xa5, 0xe2, 0x20, + 0xa8, 0x03, 0xe9, 0x5c, 0xf4, 0x87, 0x93, 0x57, 0x4a, 0x4d, 0xad, 0x49, + 0xad, 0x14, 0x9e, 0x85, 0x77, 0x5f, 0x7a, 0x66, 0xd1, 0x8e, 0x94, 0xf9, + 0x1c, 0x2f, 0x53, 0x55, 0xda, 0x7f, 0xee, 0x8f, 0xce, 0xb7, 0x47, 0x3b, + 0x15, 0x94, 0x77, 0xa8, 0x1b, 0x04, 0xf0, 0x69, 0x19, 0xf7, 0x1e, 0x4e, + 0x69, 0x9d, 0x4d, 0x3b, 0x0a, 0xc4, 0x8b, 0xcd, 0x3b, 0x19, 0xa6, 0xac, + 0x7b, 0xba, 0xf1, 0x52, 0x85, 0x0a, 0x38, 0xa4, 0xec, 0x16, 0x19, 0xb6, + 0x9e, 0x91, 0x97, 0x3c, 0x74, 0xa2, 0x9e, 0xa7, 0xdf, 0x14, 0x05, 0x89, + 0xd2, 0x25, 0x51, 0xeb, 0x4f, 0x00, 0x76, 0x15, 0x06, 0xf3, 0xd8, 0xd2, + 0x87, 0x3e, 0xa6, 0x97, 0x29, 0x57, 0x45, 0x8e, 0x3d, 0x2a, 0xac, 0xb3, + 0x90, 0xf8, 0x43, 0xc0, 0xa5, 0xf3, 0x0f, 0xad, 0x1f, 0x2f, 0xa0, 0xa6, + 0x91, 0x32, 0x77, 0x5a, 0x0d, 0x13, 0xc8, 0x3a, 0x9a, 0xb1, 0x15, 0xec, + 0xa8, 0x30, 0x1b, 0xf4, 0xa8, 0x32, 0xbe, 0x82, 0xa5, 0x4d, 0xa4, 0x8f, + 0x94, 0x74, 0xaa, 0xb1, 0x1a, 0x96, 0xc4, 0xc6, 0x44, 0x0c, 0xc7, 0x39, + 0xa6, 0xff, 0x00, 0x17, 0xb5, 0x43, 0xbb, 0x1c, 0x76, 0xa4, 0x0c, 0x71, + 0x49, 0xa2, 0x91, 0x31, 0x3c, 0xf1, 0x49, 0x9c, 0x8e, 0x0f, 0x35, 0x06, + 0xe3, 0xd3, 0x35, 0x24, 0x6f, 0xb7, 0x82, 0x78, 0xa4, 0x3b, 0x88, 0xdb, + 0xff, 0x00, 0xda, 0x34, 0x6d, 0x73, 0xd4, 0x62, 0xa6, 0xdd, 0xc7, 0x14, + 0x84, 0xf4, 0xc9, 0x14, 0x01, 0x17, 0x94, 0x7b, 0x9e, 0x69, 0x1a, 0x33, + 0x8c, 0x82, 0x33, 0x52, 0xe4, 0x77, 0x22, 0x9a, 0x4a, 0xfa, 0xd2, 0xb8, + 0xec, 0x8a, 0x32, 0xcf, 0x2c, 0x7c, 0x32, 0x63, 0xde, 0xab, 0xb5, 0xcb, + 0xb7, 0x70, 0x2b, 0x49, 0xb6, 0xb0, 0xc6, 0x32, 0x3d, 0x2a, 0x9c, 0xb6, + 0xaa, 0x5b, 0x29, 0xc7, 0xb5, 0x52, 0x64, 0xb4, 0xfa, 0x15, 0x1a, 0x57, + 0x3d, 0x58, 0xd2, 0x2c, 0xb2, 0x2f, 0xdd, 0x63, 0x53, 0x18, 0x82, 0x9e, + 0x47, 0x34, 0xde, 0x07, 0x4c, 0x55, 0x8a, 0xcc, 0x72, 0x5c, 0x49, 0xfc, + 0x4b, 0x9a, 0xb0, 0x24, 0x42, 0x3e, 0x61, 0x83, 0x55, 0x3e, 0x6e, 0xd4, + 0xd2, 0x07, 0x5e, 0x73, 0x53, 0xca, 0x8a, 0x4d, 0x9a, 0x2a, 0x54, 0xa8, + 0xd8, 0xe0, 0x7b, 0x13, 0x51, 0xc8, 0x59, 0x4e, 0x09, 0x07, 0xe9, 0x55, + 0x56, 0x29, 0x1b, 0x18, 0x07, 0x1e, 0xa6, 0xa5, 0x58, 0xa4, 0x5c, 0x65, + 0xaa, 0x5c, 0x50, 0xd3, 0x64, 0xaa, 0xe8, 0x06, 0x4a, 0x73, 0xeb, 0xde, + 0xa3, 0x90, 0x2b, 0x1e, 0x17, 0xf1, 0xa9, 0x0f, 0x4a, 0x63, 0x72, 0x31, + 0x50, 0xd1, 0x68, 0x8b, 0xc9, 0x1e, 0xd4, 0x9e, 0x58, 0x1d, 0xb3, 0x4f, + 0xce, 0x06, 0x05, 0x1b, 0xbd, 0xab, 0x36, 0x8d, 0x10, 0xd2, 0x3d, 0xa8, + 0x18, 0xcd, 0x2e, 0x45, 0x21, 0x20, 0x0c, 0xe2, 0xa7, 0x62, 0x87, 0x8d, + 0xa6, 0x97, 0x78, 0x5e, 0xd5, 0x1a, 0x36, 0x57, 0x85, 0x23, 0xeb, 0x4a, + 0x73, 0x49, 0xb0, 0xb0, 0xe6, 0x99, 0x5b, 0xad, 0x34, 0x48, 0x83, 0x80, + 0x29, 0xa4, 0x73, 0xd2, 0x93, 0x6d, 0x17, 0x0b, 0x12, 0x07, 0x06, 0x90, + 0xed, 0x3d, 0xf1, 0x4c, 0xc6, 0x29, 0x18, 0xe3, 0xbf, 0x14, 0x5c, 0x2c, + 0x57, 0xbc, 0x90, 0x22, 0x60, 0x1e, 0x4f, 0x02, 0xa9, 0xaa, 0xed, 0x5c, + 0x0c, 0x66, 0x96, 0x49, 0x3c, 0xe9, 0x8b, 0x7f, 0x08, 0xe1, 0x69, 0xc2, + 0xa6, 0x4c, 0xed, 0xc3, 0xd3, 0xb2, 0xe6, 0x21, 0x90, 0x38, 0x39, 0x24, + 0xa8, 0xf5, 0xcd, 0x56, 0xf3, 0x95, 0x58, 0xe5, 0xa4, 0x63, 0xf5, 0xab, + 0x37, 0x44, 0x6c, 0x00, 0x8c, 0xf3, 0x51, 0xa4, 0x59, 0x5e, 0x8c, 0x3d, + 0xc3, 0x53, 0x56, 0xb6, 0xa3, 0x9a, 0x93, 0x95, 0x91, 0x0f, 0x9b, 0x39, + 0x6c, 0xc7, 0xb8, 0x28, 0x19, 0x3b, 0xaa, 0xd2, 0x4f, 0x9d, 0xbf, 0x31, + 0x21, 0xb8, 0xe9, 0x4f, 0x8a, 0x36, 0x55, 0xc3, 0x10, 0x4f, 0xaf, 0xb5, + 0x3c, 0xc5, 0x97, 0x07, 0x23, 0x8a, 0x4d, 0xa6, 0x38, 0x53, 0x9a, 0xd6, + 0xe3, 0xa1, 0x3e, 0x5c, 0xd8, 0x3f, 0x75, 0xbf, 0x9d, 0x68, 0xaa, 0x8c, + 0x56, 0x73, 0xae, 0x57, 0xad, 0x5b, 0xb4, 0x98, 0xc8, 0x9b, 0x4f, 0xde, + 0x5e, 0xb4, 0x96, 0xa6, 0x18, 0x8a, 0x7c, 0xb2, 0xba, 0xd9, 0x93, 0xec, + 0xa0, 0xad, 0x3b, 0x9a, 0x51, 0x55, 0x63, 0x9e, 0xe3, 0x36, 0x1a, 0x72, + 0x83, 0x4f, 0xc8, 0xf6, 0xa5, 0x1c, 0xf6, 0xa2, 0xc1, 0x71, 0x3a, 0xf5, + 0xa3, 0x68, 0xa7, 0x63, 0x3d, 0x78, 0xa8, 0xd9, 0x9d, 0x5f, 0x01, 0x32, + 0xbe, 0xb9, 0xa2, 0xc3, 0xb8, 0xfd, 0xb4, 0x9e, 0x5a, 0x9e, 0xa0, 0x52, + 0x82, 0x08, 0xa5, 0x14, 0x58, 0x63, 0x7c, 0xa4, 0x1d, 0x28, 0x0b, 0x19, + 0x6d, 0xa4, 0x29, 0x3e, 0x94, 0xfc, 0xfb, 0x51, 0xc7, 0xe3, 0x45, 0x84, + 0x48, 0x1c, 0x28, 0xc6, 0xd1, 0x4d, 0xdd, 0xcf, 0x04, 0x8a, 0x6e, 0x69, + 0x36, 0x83, 0xeb, 0x47, 0x2a, 0x0b, 0x8f, 0x24, 0x77, 0x6a, 0x8c, 0xb2, + 0x8e, 0x87, 0x34, 0x14, 0xcd, 0x34, 0xa3, 0x03, 0x54, 0xa2, 0x88, 0x72, + 0x62, 0x87, 0x04, 0xf2, 0x29, 0xd9, 0x5f, 0x41, 0x51, 0xe3, 0xd4, 0xd2, + 0xe3, 0xd3, 0x9a, 0xa6, 0x84, 0xa4, 0xc9, 0xd0, 0x63, 0x90, 0x2a, 0x40, + 0xc3, 0x3c, 0x64, 0x9f, 0xa5, 0x45, 0x16, 0xdc, 0xe5, 0xce, 0x07, 0xa0, + 0xeb, 0x52, 0x49, 0x3a, 0x81, 0xb6, 0x21, 0xb4, 0x7e, 0xb5, 0x94, 0x9e, + 0xa6, 0x8b, 0x61, 0xde, 0x62, 0x83, 0xcf, 0x5a, 0x51, 0x2f, 0xcd, 0xc7, + 0xe5, 0x55, 0x55, 0xff, 0x00, 0x1f, 0xad, 0x3c, 0x37, 0x23, 0x35, 0x0c, + 0x57, 0x36, 0x6d, 0x1f, 0x76, 0x32, 0xb9, 0x6f, 0x6e, 0xd5, 0xb7, 0x6c, + 0x89, 0x8c, 0x1e, 0x4f, 0xa0, 0xac, 0x2b, 0x29, 0x23, 0x58, 0xb0, 0x43, + 0x6e, 0xcf, 0x63, 0x5d, 0x26, 0x8d, 0x67, 0x6f, 0x77, 0x70, 0x91, 0x09, + 0xe6, 0xf3, 0x18, 0x70, 0xa1, 0x05, 0x79, 0xd8, 0x86, 0xd5, 0xdb, 0x3a, + 0xa9, 0x6a, 0x58, 0x30, 0xe2, 0x00, 0xf8, 0x11, 0xa9, 0xee, 0xdd, 0x6a, + 0xb2, 0x45, 0x1b, 0x0c, 0x85, 0xda, 0x33, 0x57, 0xf5, 0x5b, 0x79, 0x2d, + 0xee, 0x56, 0xd4, 0x48, 0xb2, 0xc6, 0x80, 0x1c, 0x27, 0x18, 0x3e, 0xf5, + 0x41, 0x9f, 0xcb, 0x91, 0x43, 0x0c, 0x1e, 0xf5, 0xc9, 0x1e, 0x6b, 0x1d, + 0x0e, 0xc4, 0xa2, 0xd8, 0x38, 0x1b, 0x5d, 0xf9, 0xf7, 0xa8, 0xa5, 0xb4, + 0x71, 0xdd, 0xaa, 0xe4, 0x57, 0xd1, 0x86, 0xda, 0x8a, 0x06, 0x38, 0xe9, + 0x4e, 0xba, 0xd4, 0x57, 0x61, 0x40, 0x54, 0x71, 0x53, 0x19, 0xd5, 0xe6, + 0xb5, 0x81, 0xc6, 0x16, 0xdc, 0xc7, 0x92, 0x37, 0x8f, 0x38, 0x90, 0xfd, + 0x05, 0x66, 0xcc, 0xcc, 0x32, 0x19, 0x8e, 0x47, 0x4a, 0xbb, 0x77, 0x70, + 0xad, 0xca, 0x9e, 0x6b, 0x26, 0x77, 0x2d, 0xd4, 0xd7, 0xb9, 0x46, 0xfc, + 0xba, 0x9c, 0x33, 0x4a, 0xfa, 0x0c, 0x92, 0x50, 0x31, 0xf5, 0xe6, 0x98, + 0x24, 0xdd, 0x9c, 0x76, 0xf4, 0xaa, 0xae, 0xc4, 0xb5, 0x2c, 0x6f, 0x86, + 0xc6, 0x7a, 0xd6, 0xd6, 0x15, 0xb4, 0x26, 0x93, 0xd4, 0x1a, 0xae, 0xc4, + 0xfa, 0x54, 0xc4, 0x9c, 0xe3, 0x34, 0xd3, 0xf8, 0x55, 0x99, 0xd8, 0x80, + 0x8c, 0x8a, 0x8c, 0xc6, 0x09, 0xe6, 0xac, 0x15, 0xc8, 0xe0, 0x53, 0x0a, + 0xb0, 0xa6, 0x26, 0x8a, 0xed, 0x00, 0x1d, 0x05, 0x34, 0xc3, 0x9f, 0xe1, + 0xab, 0x24, 0x35, 0x19, 0xf5, 0xaa, 0x44, 0xd8, 0xab, 0xe5, 0x95, 0xe8, + 0x31, 0x4e, 0x50, 0xd9, 0xc1, 0x15, 0x31, 0x64, 0xe9, 0xb9, 0x68, 0x05, + 0x7d, 0x45, 0x3d, 0x43, 0x41, 0xc9, 0x1e, 0x45, 0x38, 0x5b, 0xae, 0x68, + 0x46, 0x51, 0xd1, 0xa9, 0xfe, 0x60, 0xcd, 0x30, 0xe8, 0x20, 0x81, 0x81, + 0xe3, 0x04, 0x55, 0xcb, 0x78, 0xb9, 0x19, 0xc0, 0x35, 0x1c, 0x4c, 0xa7, + 0xbd, 0x5c, 0x85, 0x41, 0xc5, 0x32, 0x19, 0x7a, 0x18, 0x14, 0xa7, 0xde, + 0xa9, 0x82, 0xa2, 0x0e, 0xb9, 0x15, 0x02, 0x02, 0x3a, 0x1a, 0x94, 0x33, + 0x8f, 0x53, 0x48, 0x11, 0x37, 0x96, 0x00, 0xdc, 0x09, 0x14, 0xd2, 0xf3, + 0x03, 0xc4, 0x83, 0x1e, 0xe2, 0x93, 0xce, 0x61, 0x80, 0x58, 0x0f, 0xad, + 0x34, 0x66, 0x46, 0xc2, 0x82, 0xc7, 0xf2, 0xa0, 0xa1, 0xac, 0x66, 0x3d, + 0x70, 0x6a, 0x27, 0xdc, 0x06, 0x48, 0x34, 0xe6, 0x2c, 0x32, 0x07, 0xca, + 0x69, 0x14, 0x8c, 0x7c, 0xdc, 0x9f, 0x7a, 0x56, 0x1d, 0xc8, 0x55, 0x3c, + 0xd3, 0xf2, 0xe3, 0xf3, 0xa7, 0x7d, 0x91, 0xb1, 0x9d, 0xe0, 0x1a, 0x94, + 0x9e, 0xdb, 0x78, 0xa6, 0x93, 0xed, 0x8a, 0x07, 0x72, 0xbc, 0x96, 0xd2, + 0x11, 0xf7, 0x81, 0xaa, 0xe6, 0xd2, 0x42, 0x7b, 0x7e, 0x75, 0xa0, 0x30, + 0x07, 0x39, 0xfc, 0xe9, 0x8c, 0xc0, 0x7a, 0xd2, 0x63, 0x45, 0x78, 0xed, + 0x11, 0x79, 0x7f, 0x98, 0xd5, 0x80, 0xab, 0xd0, 0x28, 0xa8, 0xcb, 0x1a, + 0x03, 0x1f, 0x5a, 0x86, 0x8b, 0x44, 0xe8, 0x8a, 0x0f, 0xdd, 0x14, 0xf3, + 0x36, 0xd4, 0x21, 0x49, 0x03, 0xa6, 0x07, 0x7a, 0xa8, 0x5d, 0xf1, 0x80, + 0x79, 0xa6, 0x73, 0xdf, 0x34, 0x94, 0x6e, 0x29, 0x48, 0x73, 0xa2, 0xb9, + 0xc9, 0x00, 0x9a, 0x8f, 0xc8, 0x1b, 0xb2, 0x00, 0xa7, 0x73, 0x47, 0x5a, + 0xd2, 0xc8, 0xcc, 0x9d, 0x25, 0x96, 0x35, 0xda, 0xb2, 0xb0, 0x5f, 0x40, + 0x69, 0xaf, 0x23, 0xbf, 0xcc, 0x5c, 0x93, 0xf5, 0xa8, 0xb9, 0xc7, 0x7a, + 0x55, 0x5c, 0xa6, 0x0f, 0xa5, 0x16, 0x42, 0xb1, 0x36, 0xf0, 0x47, 0x38, + 0xc6, 0x29, 0x8e, 0x57, 0x07, 0x02, 0x99, 0xb8, 0x91, 0x81, 0xf9, 0xd2, + 0xf6, 0xeb, 0x51, 0xb1, 0xa0, 0xe5, 0x65, 0x03, 0x80, 0x07, 0xd0, 0x52, + 0x17, 0x1d, 0x73, 0xfa, 0x54, 0x5b, 0xb1, 0x91, 0x91, 0x46, 0xec, 0xf7, + 0xa9, 0x62, 0x64, 0x86, 0x6e, 0x71, 0x9a, 0x04, 0x80, 0x9c, 0x0a, 0x88, + 0x0c, 0xb0, 0xc1, 0x1b, 0xbb, 0x7a, 0xd2, 0xe0, 0xd6, 0x76, 0x4c, 0x9b, + 0x0e, 0x72, 0x0f, 0x04, 0x7e, 0x75, 0x52, 0x58, 0x0f, 0x26, 0x36, 0x27, + 0xd8, 0x9a, 0xb1, 0xb3, 0x34, 0x82, 0x30, 0x3b, 0xd5, 0x2d, 0x36, 0x2a, + 0xd7, 0x33, 0x09, 0x91, 0x5c, 0xe4, 0x9c, 0x7a, 0x1a, 0x42, 0x46, 0x73, + 0x5a, 0x72, 0x5b, 0x24, 0xab, 0x82, 0x48, 0x3e, 0xa2, 0xb3, 0xa6, 0xb4, + 0x78, 0x8e, 0x79, 0x65, 0xf5, 0xad, 0xa3, 0x24, 0xc5, 0xca, 0xd0, 0xc2, + 0xc3, 0xb9, 0x14, 0x82, 0x45, 0x1e, 0xb5, 0x1e, 0x30, 0x78, 0xa5, 0xc8, + 0xef, 0x5a, 0x0a, 0xc4, 0x9e, 0x6e, 0x07, 0x4e, 0x29, 0x7c, 0xe6, 0x3d, + 0x2a, 0x2c, 0xfa, 0x51, 0x93, 0x40, 0x58, 0xb3, 0x15, 0xc4, 0xd1, 0xf2, + 0x1c, 0xfe, 0x75, 0xa1, 0x16, 0xb7, 0x3c, 0x68, 0x57, 0x83, 0x59, 0x01, + 0x49, 0xa9, 0x56, 0x30, 0x39, 0x63, 0xf8, 0x52, 0x71, 0x4f, 0x71, 0xa9, + 0x58, 0xd3, 0x9b, 0x57, 0xf3, 0x23, 0xe4, 0x12, 0x7d, 0x2b, 0x32, 0x59, + 0x99, 0xce, 0x73, 0x81, 0xed, 0x4e, 0x23, 0xfb, 0xaa, 0x2a, 0x26, 0xeb, + 0xcd, 0x11, 0x8a, 0x5b, 0x11, 0x39, 0xb6, 0x42, 0xc6, 0xa2, 0x27, 0x9c, + 0x75, 0xa9, 0x59, 0x81, 0xe8, 0x29, 0x99, 0x00, 0xfb, 0xd6, 0x96, 0x33, + 0xb8, 0xd0, 0x8c, 0xde, 0xc2, 0xa4, 0x48, 0x82, 0xfd, 0x68, 0xf3, 0x31, + 0x48, 0x65, 0x00, 0x77, 0xa2, 0xcc, 0x2e, 0x89, 0x3a, 0x52, 0x66, 0x99, + 0xe6, 0x0c, 0x50, 0x18, 0x31, 0xc6, 0x71, 0x4a, 0xc3, 0x1e, 0xb9, 0x76, + 0xc0, 0xa9, 0x82, 0x80, 0x29, 0x17, 0x6a, 0x8c, 0x02, 0x0d, 0x3b, 0x8f, + 0x5a, 0x40, 0x37, 0x03, 0xde, 0x8c, 0x01, 0x47, 0x53, 0x4a, 0x57, 0x1d, + 0xa9, 0x88, 0x4c, 0x51, 0xb0, 0x9a, 0x7e, 0x29, 0x73, 0x81, 0x45, 0xc4, + 0x35, 0x62, 0x34, 0xa5, 0x59, 0x18, 0x53, 0x81, 0xa1, 0xf9, 0x2b, 0xf5, + 0xc5, 0x52, 0x62, 0x1b, 0x93, 0xd0, 0xe6, 0x90, 0x1e, 0x70, 0x4d, 0x05, + 0xb1, 0xc5, 0x37, 0x07, 0x39, 0xa0, 0x07, 0x93, 0xef, 0x4d, 0xcf, 0x71, + 0x47, 0x39, 0xe2, 0x97, 0x69, 0xa4, 0x31, 0xc1, 0xc0, 0xeb, 0xd2, 0xa4, + 0x0d, 0x8e, 0x9d, 0x2a, 0x10, 0x8d, 0x8c, 0x10, 0x4d, 0x48, 0x03, 0x8e, + 0x36, 0x93, 0xef, 0x45, 0x80, 0x76, 0xed, 0xdc, 0x62, 0x9b, 0x8e, 0x7a, + 0x9a, 0x78, 0x46, 0xeb, 0x80, 0x28, 0x2a, 0x70, 0x70, 0x68, 0xb0, 0x0c, + 0x38, 0xce, 0x7a, 0x53, 0x18, 0xfa, 0xd4, 0xa1, 0x01, 0x19, 0xeb, 0x48, + 0xcb, 0x81, 0xf2, 0x81, 0x9a, 0x43, 0x20, 0x2b, 0x9f, 0x71, 0x51, 0xb5, + 0xbe, 0xee, 0x9c, 0x54, 0xac, 0xcf, 0x9c, 0x1e, 0x3e, 0x94, 0xdd, 0xad, + 0x9c, 0xee, 0x39, 0xa3, 0x9a, 0xc5, 0x72, 0xdc, 0x8d, 0x6d, 0xc2, 0xfd, + 0xe2, 0x7f, 0xa5, 0x4a, 0x23, 0x41, 0xf7, 0x40, 0xa0, 0x31, 0xce, 0x08, + 0xcf, 0xb8, 0xa7, 0x71, 0xf4, 0xa7, 0xab, 0x10, 0x1e, 0x94, 0xd3, 0x4d, + 0x2f, 0x83, 0xfd, 0xef, 0xa5, 0x1e, 0x62, 0x9f, 0x6f, 0xad, 0x16, 0x00, + 0x26, 0xa3, 0x6c, 0x1a, 0x90, 0xd4, 0x4e, 0xea, 0x3b, 0xe4, 0xfb, 0x54, + 0xb1, 0xa1, 0x84, 0x7a, 0x66, 0x98, 0x4e, 0xde, 0xf9, 0x3e, 0x94, 0x8c, + 0xf9, 0xee, 0x07, 0xb5, 0x42, 0xcf, 0x86, 0xc6, 0x2a, 0x5c, 0x4b, 0x53, + 0xec, 0x4b, 0xbc, 0x8f, 0xf0, 0xa3, 0xce, 0xf6, 0xa8, 0x37, 0xf3, 0x46, + 0x7d, 0x4d, 0x43, 0x8a, 0x1a, 0x9b, 0x2c, 0x79, 0xc0, 0x7a, 0xd3, 0xbc, + 0xd5, 0x3d, 0xea, 0xae, 0xe6, 0xf4, 0xa4, 0x2d, 0xea, 0x2a, 0x5c, 0x47, + 0xce, 0xcb, 0x7b, 0xc7, 0xad, 0x1b, 0xaa, 0xa7, 0xbe, 0x4d, 0x07, 0x7f, + 0x63, 0xc5, 0x1c, 0x83, 0xe7, 0x2c, 0x90, 0x18, 0xf5, 0x35, 0x0d, 0xd2, + 0xca, 0xf0, 0xec, 0x88, 0x0c, 0x9e, 0xa4, 0x9e, 0xd4, 0xc0, 0xee, 0x0f, + 0x53, 0x56, 0x13, 0x25, 0x06, 0xe3, 0xcd, 0x26, 0xac, 0x35, 0x2b, 0x94, + 0x16, 0x09, 0x95, 0x71, 0xe5, 0x8e, 0x3d, 0xe9, 0x76, 0x4a, 0x06, 0x7c, + 0xa3, 0xf9, 0x8a, 0xbe, 0x47, 0x18, 0xf5, 0xa5, 0x20, 0x54, 0x34, 0x8d, + 0x95, 0x7a, 0x8b, 0xa9, 0x9c, 0x55, 0xcf, 0x58, 0x9a, 0x90, 0x06, 0x03, + 0x02, 0x26, 0xad, 0x1d, 0xbe, 0xd4, 0x9b, 0x4e, 0x69, 0x68, 0x57, 0xd6, + 0x26, 0x51, 0x1b, 0xff, 0x00, 0xe7, 0x93, 0x53, 0xbf, 0x79, 0x8f, 0xf5, + 0x4d, 0x57, 0x30, 0x69, 0x40, 0xa5, 0xa0, 0xfe, 0xb1, 0x50, 0xa6, 0x16, + 0x53, 0xd2, 0x23, 0xf9, 0x8a, 0x12, 0x19, 0xd6, 0x65, 0x75, 0x50, 0x3d, + 0x79, 0xeb, 0x57, 0xb1, 0xc5, 0x2d, 0x17, 0xb1, 0x12, 0xab, 0x39, 0xab, + 0x31, 0x41, 0xe7, 0x9a, 0x29, 0x38, 0x3c, 0x66, 0x90, 0x64, 0x70, 0x4d, + 0x5a, 0x66, 0x56, 0x24, 0x50, 0x3d, 0x2a, 0x40, 0x40, 0xa8, 0xc5, 0x2d, + 0x3b, 0x85, 0x89, 0x09, 0xcd, 0x34, 0x9a, 0x4c, 0xd2, 0x13, 0x4a, 0xe3, + 0xb0, 0xa7, 0x9a, 0x32, 0x47, 0xbd, 0x27, 0x14, 0x50, 0x3b, 0x0e, 0xdd, + 0x9e, 0x94, 0xd2, 0x4d, 0x29, 0xc5, 0x26, 0x48, 0xf7, 0x14, 0xc1, 0x8e, + 0x14, 0xb4, 0xdc, 0x83, 0xde, 0x90, 0xc8, 0x00, 0xcf, 0x27, 0xe9, 0x4d, + 0x12, 0xc9, 0x45, 0x04, 0x81, 0xde, 0xab, 0x19, 0xd9, 0xbe, 0xe8, 0xa6, + 0x33, 0x1e, 0xac, 0xdf, 0x85, 0x55, 0x89, 0xb9, 0x64, 0xcc, 0xa3, 0x8c, + 0x66, 0xa3, 0x0a, 0x49, 0xc8, 0x24, 0x03, 0xeb, 0x51, 0xf6, 0xe0, 0x63, + 0xeb, 0x4f, 0x5e, 0x08, 0x1d, 0x68, 0xb0, 0x12, 0x05, 0xc1, 0x18, 0xe6, + 0x95, 0x94, 0xe6, 0x8c, 0x92, 0x71, 0x9e, 0x29, 0xe3, 0x0b, 0xc7, 0x5a, + 0x96, 0x87, 0xa1, 0x1e, 0xc6, 0xed, 0x4f, 0x54, 0x6e, 0x45, 0x3c, 0x7c, + 0xcd, 0x9c, 0x91, 0x8e, 0xd5, 0x3a, 0x00, 0x78, 0x20, 0x1a, 0x96, 0x82, + 0xc4, 0xf6, 0x51, 0x96, 0x91, 0x01, 0x05, 0x89, 0xfe, 0x1a, 0xea, 0xec, + 0xf5, 0x25, 0xd3, 0xad, 0x9e, 0x1b, 0x45, 0x1f, 0x68, 0x7f, 0xbf, 0x2e, + 0x73, 0xb4, 0x7a, 0x0a, 0xe6, 0x21, 0x21, 0x08, 0xc6, 0xe1, 0xf4, 0x6c, + 0x54, 0xaa, 0x1d, 0x5c, 0x88, 0xdc, 0x6d, 0xf7, 0xff, 0x00, 0x1a, 0xe2, + 0xad, 0x4b, 0x9e, 0x5a, 0xec, 0x74, 0x53, 0x97, 0x22, 0xd0, 0xd9, 0x96, + 0xe9, 0x9f, 0x39, 0x24, 0xf7, 0x27, 0x3d, 0x6a, 0xbb, 0x5c, 0x0f, 0xbd, + 0xce, 0x71, 0xc7, 0x35, 0x94, 0xd3, 0xb0, 0x93, 0x66, 0x46, 0x07, 0x52, + 0x29, 0xe6, 0x75, 0x2b, 0x86, 0xce, 0x3d, 0xb8, 0xa2, 0x34, 0xa3, 0x11, + 0xb9, 0x36, 0x69, 0xc1, 0x74, 0x14, 0x6e, 0x07, 0x34, 0xb2, 0xcc, 0xac, + 0x49, 0xcf, 0x45, 0xac, 0x92, 0xc8, 0xea, 0xa3, 0x3f, 0x28, 0xe7, 0x1c, + 0x73, 0x4e, 0x6b, 0x85, 0x5d, 0xc0, 0x03, 0x82, 0x30, 0x39, 0xa1, 0xd2, + 0x5b, 0xa1, 0x73, 0x3b, 0x0b, 0x34, 0xc7, 0x93, 0xd7, 0x9a, 0xa7, 0x33, + 0x1c, 0x66, 0x96, 0x59, 0x72, 0xb8, 0xc1, 0xaa, 0xf2, 0x3e, 0xe1, 0xcd, + 0x75, 0xd3, 0x8e, 0x87, 0x34, 0xaf, 0x72, 0x36, 0x6e, 0x9c, 0x0e, 0x69, + 0x99, 0xc6, 0x39, 0xe9, 0x48, 0x58, 0x2f, 0x53, 0xcd, 0x47, 0xe5, 0x97, + 0x3b, 0x86, 0x30, 0x6b, 0x64, 0x89, 0x77, 0x45, 0xed, 0xdb, 0xd0, 0x30, + 0xfc, 0x69, 0xa4, 0x92, 0x2a, 0x18, 0x9c, 0xc6, 0x19, 0x5b, 0xa1, 0xe9, + 0x48, 0x65, 0x55, 0x3c, 0x92, 0x3e, 0xb5, 0x5c, 0xa5, 0x73, 0x5d, 0x12, + 0x6f, 0x2b, 0x4b, 0xe6, 0x13, 0xd6, 0xa2, 0x2e, 0xa7, 0xd4, 0xd2, 0x6e, + 0x1e, 0xf4, 0xf9, 0x45, 0xcc, 0x4c, 0x71, 0xb7, 0x83, 0x51, 0x91, 0x4c, + 0x69, 0x42, 0xf5, 0xe2, 0x90, 0xca, 0x08, 0xea, 0x29, 0xf2, 0xb1, 0x73, + 0x20, 0x92, 0x20, 0xff, 0x00, 0x5a, 0x8f, 0x05, 0x2a, 0x4c, 0x90, 0x38, + 0x34, 0xd3, 0x96, 0xfb, 0xdd, 0x29, 0xa8, 0xb2, 0x5b, 0x43, 0xd1, 0xb0, + 0x2a, 0x40, 0xcb, 0x9e, 0x4d, 0x42, 0x08, 0x3c, 0x53, 0x81, 0x0b, 0xd6, + 0x9d, 0x85, 0x72, 0xca, 0xc8, 0xa3, 0xa9, 0xfc, 0xaa, 0x74, 0xb9, 0x03, + 0x18, 0x06, 0xb3, 0xf8, 0x27, 0xb8, 0xa7, 0x0c, 0x8e, 0xf9, 0x14, 0x58, + 0x46, 0xaa, 0xea, 0x12, 0xaf, 0xdd, 0x03, 0xf1, 0xa4, 0x5d, 0x4a, 0xe3, + 0x27, 0x24, 0x11, 0xe9, 0xd2, 0xa8, 0x0c, 0x90, 0x30, 0x71, 0x57, 0xad, + 0xe6, 0xb6, 0x50, 0x04, 0x91, 0x1f, 0xaf, 0x5a, 0x2c, 0x05, 0xc8, 0x2f, + 0x91, 0xce, 0x1a, 0x36, 0x07, 0xfd, 0x91, 0x9a, 0xb7, 0xbb, 0xba, 0xd4, + 0x31, 0x4f, 0x04, 0x83, 0xf7, 0x6c, 0x98, 0xf4, 0x1c, 0x53, 0xf3, 0xcf, + 0x5a, 0x92, 0x90, 0xa7, 0xde, 0xa3, 0x26, 0x9e, 0x4f, 0xbd, 0x46, 0xdf, + 0x5a, 0x60, 0x20, 0x3c, 0xe6, 0x9c, 0x65, 0x50, 0xb9, 0x20, 0x93, 0xf5, + 0xa6, 0x00, 0x4f, 0xb0, 0xf7, 0xa6, 0xb4, 0x63, 0xd4, 0xe6, 0x80, 0x42, + 0x99, 0x32, 0x7a, 0xd3, 0x58, 0xe6, 0xa1, 0x74, 0xc7, 0x43, 0x4d, 0xc9, + 0x1d, 0xea, 0x59, 0x49, 0x92, 0xee, 0x03, 0x8c, 0xe0, 0x9a, 0x70, 0xe9, + 0xd6, 0xab, 0x64, 0x93, 0x9e, 0xf4, 0xee, 0xbf, 0x7a, 0xa1, 0x96, 0x8b, + 0x03, 0x8f, 0xad, 0x2e, 0x4d, 0x40, 0x1d, 0x87, 0x6a, 0x78, 0x97, 0xd4, + 0xd4, 0xd8, 0x63, 0xd8, 0x9c, 0x63, 0xb9, 0xa9, 0x10, 0x81, 0x50, 0x09, + 0x01, 0x39, 0x27, 0xad, 0x3c, 0x48, 0x29, 0x0c, 0xb4, 0x18, 0x62, 0x91, + 0xdd, 0x42, 0x9f, 0xf0, 0xa8, 0x44, 0xbe, 0x9f, 0x8d, 0x23, 0x39, 0x6c, + 0x93, 0x8a, 0x16, 0xa4, 0xb4, 0x40, 0xb2, 0x10, 0xa3, 0x8a, 0x52, 0xc4, + 0xd4, 0x4a, 0xfc, 0x73, 0x4e, 0x0c, 0x0f, 0x43, 0x4e, 0xc0, 0x3b, 0x34, + 0x66, 0x9b, 0x9a, 0x33, 0x48, 0x07, 0x82, 0x29, 0x73, 0x8a, 0x8f, 0x75, + 0x2e, 0x73, 0x53, 0x61, 0x0e, 0x26, 0x8c, 0xf3, 0x4d, 0xce, 0x28, 0xce, + 0x29, 0xd8, 0x64, 0x99, 0xa6, 0x9e, 0x94, 0xd0, 0x68, 0xdd, 0xcd, 0x3b, + 0x14, 0x99, 0x5e, 0x5b, 0x58, 0xe4, 0xc9, 0x5f, 0x95, 0xaa, 0x84, 0xb6, + 0xef, 0x11, 0xe5, 0x72, 0x3d, 0x6b, 0x5b, 0x34, 0x87, 0x91, 0x5a, 0x45, + 0xb4, 0x4b, 0x46, 0x3e, 0x78, 0xcf, 0xf2, 0xa7, 0x2b, 0x67, 0x1b, 0x40, + 0xfc, 0x6a, 0xfc, 0x96, 0xb1, 0xbf, 0x20, 0x6d, 0x3e, 0xd5, 0x55, 0xed, + 0x64, 0x4e, 0x76, 0xee, 0x1e, 0xa2, 0xb5, 0x4d, 0x33, 0x19, 0x29, 0x02, + 0xc9, 0xed, 0x8a, 0x71, 0x90, 0x0e, 0x76, 0xd4, 0x20, 0xd2, 0xee, 0xa1, + 0xa2, 0x6e, 0x3d, 0xa6, 0x38, 0xe0, 0x54, 0x2c, 0xc5, 0xbb, 0xd2, 0x97, + 0x15, 0x19, 0x60, 0x29, 0xa4, 0x26, 0xee, 0x23, 0x67, 0x15, 0x1f, 0x4f, + 0x7a, 0x71, 0x24, 0xf5, 0xe0, 0x53, 0x77, 0x0a, 0xbb, 0x0a, 0xc2, 0x12, + 0x3b, 0xf5, 0xa4, 0xe4, 0xf2, 0x69, 0xdd, 0x69, 0xa4, 0x63, 0x9a, 0x63, + 0x0c, 0xe2, 0x93, 0x38, 0x3c, 0x52, 0x0e, 0x7d, 0xe9, 0xf4, 0x08, 0x01, + 0x3e, 0xb4, 0xbb, 0x8f, 0xad, 0x34, 0x67, 0x26, 0x9d, 0x1a, 0xb3, 0xb8, + 0x5f, 0x5a, 0x00, 0xb3, 0x6a, 0x85, 0xc9, 0x62, 0x4e, 0xd1, 0x56, 0xb6, + 0x0a, 0x11, 0x02, 0x28, 0x51, 0xd0, 0x52, 0xb1, 0x00, 0x73, 0x52, 0xc0, + 0x6e, 0x00, 0x19, 0xe7, 0xf3, 0xa5, 0x0a, 0x08, 0xef, 0x48, 0x08, 0x6e, + 0x03, 0x73, 0x52, 0x8a, 0x2c, 0x04, 0x61, 0x39, 0xc0, 0xa7, 0x80, 0x55, + 0x83, 0x2e, 0x41, 0x1d, 0x0e, 0x69, 0x07, 0x2c, 0x69, 0xd8, 0x34, 0xc4, + 0x35, 0xd0, 0x67, 0x71, 0xe4, 0x93, 0xc9, 0xcd, 0x49, 0xe5, 0xa6, 0x33, + 0xb6, 0x91, 0xc7, 0xc8, 0x47, 0xb5, 0x3d, 0x18, 0x14, 0x1f, 0x4a, 0x06, + 0x33, 0xe5, 0xec, 0xa0, 0x1a, 0x78, 0x03, 0x1c, 0x0a, 0x6e, 0xd4, 0xc9, + 0xa7, 0x06, 0x00, 0xed, 0xc5, 0x20, 0x0c, 0x8a, 0x69, 0xe0, 0xd0, 0xc3, + 0x07, 0x34, 0x84, 0x82, 0x28, 0x00, 0xe4, 0x73, 0x91, 0x8a, 0x43, 0x90, + 0x78, 0xe9, 0x49, 0xf8, 0xe4, 0x51, 0xce, 0x7d, 0xa8, 0x01, 0xae, 0x48, + 0xe5, 0x7f, 0x11, 0x49, 0xd4, 0x67, 0x34, 0xbc, 0x83, 0xed, 0x51, 0xca, + 0x8c, 0x57, 0x31, 0x9f, 0xa8, 0x1d, 0xe8, 0xb0, 0xc5, 0x6c, 0x11, 0xcd, + 0x45, 0xb9, 0x07, 0x4e, 0x69, 0x9c, 0x37, 0x52, 0x4f, 0xd6, 0x97, 0x02, + 0x9d, 0x85, 0x70, 0x32, 0x1e, 0xc3, 0x14, 0xd3, 0x96, 0xea, 0x73, 0x4a, + 0x4d, 0x19, 0x14, 0xec, 0x2b, 0x8d, 0x04, 0x8a, 0x0f, 0x22, 0x91, 0xb0, + 0x6a, 0x2e, 0x01, 0xce, 0xe3, 0xf4, 0xa4, 0xc6, 0x87, 0xb0, 0xe3, 0x82, + 0x7e, 0x95, 0x09, 0x60, 0x38, 0xef, 0xed, 0x4e, 0x24, 0x9e, 0xb4, 0xd2, + 0xbf, 0x85, 0x2b, 0x00, 0xcc, 0x00, 0x38, 0xe4, 0xfb, 0xd4, 0x7b, 0x70, + 0x72, 0x72, 0x69, 0xec, 0xbe, 0x95, 0x1e, 0x08, 0xe9, 0x52, 0xd1, 0x48, + 0x63, 0x97, 0x19, 0xe9, 0x8a, 0x4d, 0xc0, 0xb0, 0x00, 0x13, 0xee, 0x29, + 0xe4, 0xb7, 0x39, 0x02, 0x80, 0x40, 0xe8, 0xbf, 0x95, 0x45, 0x8a, 0xd4, + 0x36, 0xf1, 0xd6, 0x9b, 0x86, 0x1d, 0xe9, 0xdc, 0x1e, 0xf8, 0xa4, 0x20, + 0x8e, 0x33, 0xc5, 0x26, 0x02, 0x6e, 0x39, 0xa0, 0xbf, 0x3d, 0x28, 0x21, + 0x87, 0x3c, 0x1a, 0x01, 0x23, 0x24, 0x80, 0x28, 0x01, 0x4f, 0x4a, 0x6f, + 0x27, 0xb9, 0x14, 0x67, 0xb9, 0xa5, 0x0c, 0x3d, 0x28, 0xb1, 0x6b, 0x41, + 0x72, 0x57, 0x9c, 0x9a, 0x37, 0x9c, 0x67, 0x79, 0xa5, 0x26, 0x9a, 0x18, + 0xe7, 0x24, 0x0c, 0x52, 0xb0, 0xee, 0x1e, 0x6b, 0x63, 0xef, 0x1a, 0x41, + 0x23, 0xe7, 0xef, 0xd2, 0x39, 0xc9, 0xca, 0xf4, 0xa5, 0xdc, 0x38, 0xc8, + 0x14, 0xb9, 0x47, 0x71, 0x44, 0x8d, 0xfd, 0xe3, 0x4a, 0x19, 0xba, 0xee, + 0x26, 0x9a, 0x06, 0x4f, 0x02, 0xa5, 0x55, 0x00, 0x72, 0x45, 0x1c, 0xa8, + 0x2e, 0x2c, 0x27, 0x7b, 0x60, 0x92, 0x7f, 0x1a, 0xb8, 0xf0, 0xc6, 0x13, + 0x85, 0xe6, 0xa9, 0xa6, 0xd1, 0x30, 0xe4, 0x00, 0x78, 0xfa, 0x55, 0xc3, + 0x2a, 0x2e, 0x01, 0x90, 0x57, 0x1d, 0x75, 0x35, 0x2f, 0x74, 0xa4, 0xca, + 0xad, 0x1b, 0xc6, 0xdb, 0xc2, 0xe0, 0x0a, 0xb0, 0x18, 0x48, 0xa0, 0x8a, + 0x98, 0xdc, 0x5a, 0x14, 0x01, 0xdd, 0x8e, 0x7a, 0xed, 0x15, 0x9e, 0xb2, + 0xac, 0x72, 0xb6, 0xdc, 0xf9, 0x64, 0xf1, 0x9a, 0xba, 0x4e, 0x52, 0x56, + 0x92, 0x1d, 0xcb, 0x60, 0xf6, 0xef, 0x4e, 0x04, 0xe6, 0x99, 0x82, 0xe0, + 0x15, 0x1f, 0x4c, 0x54, 0xe9, 0x6b, 0x3b, 0xae, 0x7c, 0xb2, 0xa3, 0xd5, + 0xb8, 0x15, 0x4e, 0x49, 0x6e, 0x16, 0x7d, 0x08, 0xc9, 0xa4, 0xcd, 0x3a, + 0x48, 0xfc, 0xb3, 0xf3, 0xba, 0x67, 0xd0, 0x1c, 0xd4, 0x2d, 0x2a, 0x8e, + 0x94, 0xd6, 0xbb, 0x0f, 0x62, 0x4a, 0x33, 0x9a, 0x81, 0xa7, 0x1d, 0x85, + 0x31, 0xa6, 0x60, 0x3a, 0xe0, 0x55, 0x72, 0xb1, 0x5d, 0x16, 0xb7, 0x63, + 0xa9, 0x14, 0x9e, 0x72, 0xf6, 0xe6, 0xaa, 0x02, 0x0f, 0x39, 0xa6, 0xef, + 0x39, 0xc2, 0xaf, 0xe9, 0x54, 0xa2, 0x27, 0x22, 0xdf, 0x98, 0xa5, 0xbe, + 0x70, 0x08, 0xed, 0x52, 0xab, 0x2b, 0x7d, 0xd3, 0xf8, 0x55, 0x2f, 0x2c, + 0xb1, 0x1b, 0x8f, 0xe5, 0x52, 0x2a, 0x85, 0x3c, 0x66, 0xaa, 0xc4, 0xdc, + 0x7c, 0x91, 0x82, 0x7e, 0x4c, 0x83, 0xe9, 0x4c, 0x00, 0x7d, 0x0f, 0xbd, + 0x48, 0x24, 0x6e, 0xfc, 0xd2, 0x93, 0x1b, 0x8e, 0x72, 0xa7, 0xd6, 0x85, + 0x7e, 0xa2, 0x76, 0xe8, 0x47, 0xc8, 0x1c, 0xd3, 0x83, 0x60, 0x74, 0xa6, + 0xb2, 0xb0, 0xe3, 0xa8, 0xf5, 0x14, 0x0e, 0xb8, 0xa6, 0x22, 0x55, 0x92, + 0x9f, 0xbf, 0x26, 0xa3, 0xc8, 0x1d, 0xa8, 0xeb, 0x45, 0x87, 0x72, 0x5f, + 0x33, 0x06, 0xa6, 0x47, 0xe7, 0x1d, 0xea, 0xb2, 0x71, 0xf4, 0xa9, 0x90, + 0xfa, 0x54, 0xb8, 0x8d, 0x32, 0xfc, 0x6d, 0xf2, 0xd3, 0x27, 0x9e, 0x44, + 0x5d, 0x80, 0x8e, 0x6a, 0xbb, 0xcc, 0x62, 0x8f, 0x70, 0x00, 0xfa, 0x54, + 0x2a, 0xec, 0xc4, 0xb3, 0x1f, 0x98, 0xd6, 0x5c, 0x96, 0xd4, 0xd1, 0x3b, + 0x96, 0x50, 0xed, 0xf5, 0xa7, 0x99, 0x71, 0x55, 0x84, 0x99, 0x1c, 0x52, + 0x33, 0x90, 0xa4, 0xe3, 0xa5, 0x2e, 0x52, 0xee, 0x4c, 0xf2, 0x1e, 0x36, + 0x9c, 0x52, 0x6f, 0x60, 0x39, 0xe6, 0xab, 0xa4, 0x9c, 0x64, 0x13, 0x8f, + 0x43, 0x4e, 0x69, 0x3d, 0xe9, 0xa8, 0x89, 0xb1, 0xd2, 0xcc, 0x46, 0x32, + 0x39, 0x35, 0x5e, 0x49, 0x7b, 0x1c, 0x7e, 0x07, 0x14, 0xd7, 0x6c, 0xb8, + 0x0c, 0x73, 0xdf, 0xa5, 0x32, 0x6d, 0xd8, 0xca, 0xb2, 0x8f, 0x73, 0x5a, + 0xa4, 0x4b, 0x63, 0xa5, 0x6c, 0x2a, 0xe1, 0xb6, 0xfe, 0xb5, 0x2c, 0x2f, + 0xf2, 0x95, 0xaa, 0x61, 0xce, 0xfc, 0x17, 0x18, 0x1e, 0xd5, 0x3c, 0x6d, + 0xfb, 0xc1, 0xee, 0x2b, 0x48, 0xa2, 0x27, 0xaa, 0x26, 0xcf, 0xb5, 0x23, + 0x60, 0x8e, 0x45, 0x23, 0x36, 0x0f, 0x3d, 0x0d, 0x15, 0x66, 0x02, 0x64, + 0x29, 0xc7, 0x22, 0xa3, 0xf3, 0x1b, 0x77, 0xa8, 0xa7, 0xb1, 0x6c, 0xe3, + 0xb5, 0x26, 0xde, 0xc0, 0x62, 0x98, 0x0a, 0xdf, 0x30, 0xe6, 0x93, 0x62, + 0x95, 0xc6, 0x4d, 0x0c, 0x18, 0x0c, 0x29, 0xe6, 0x98, 0xac, 0x7a, 0x10, + 0x73, 0x4c, 0x44, 0xc3, 0x0a, 0xb8, 0xc9, 0x34, 0x67, 0x26, 0x93, 0x6d, + 0x33, 0xe7, 0x27, 0xd2, 0x80, 0x24, 0xd8, 0x31, 0xd7, 0xf0, 0xa1, 0x49, + 0x1c, 0x1e, 0x95, 0x18, 0x90, 0xa9, 0xc3, 0x0e, 0x73, 0x52, 0x23, 0x6e, + 0x19, 0xa2, 0xc0, 0x3d, 0x71, 0xd8, 0xd3, 0xc1, 0xdb, 0xc6, 0x71, 0xfc, + 0xaa, 0x31, 0xeb, 0xd6, 0x9c, 0x0e, 0x4f, 0x3c, 0x0f, 0x4a, 0x56, 0x02, + 0x70, 0xe0, 0xa8, 0xce, 0x09, 0xf6, 0xa6, 0x87, 0x01, 0x8a, 0x8c, 0xe2, + 0xa1, 0x3b, 0x47, 0x23, 0xb7, 0xa5, 0x58, 0x86, 0xde, 0x79, 0x70, 0x40, + 0xda, 0xa7, 0xfb, 0xd4, 0x80, 0x74, 0x65, 0x0f, 0x7a, 0xb5, 0x0c, 0x93, + 0xe7, 0x11, 0x33, 0x11, 0xe9, 0xd4, 0x54, 0xf6, 0xf6, 0x31, 0x21, 0x0c, + 0xff, 0x00, 0x39, 0xfd, 0x2a, 0xf6, 0x51, 0x17, 0x0a, 0x80, 0x0f, 0x41, + 0x4a, 0xe3, 0x48, 0xae, 0x91, 0xce, 0xcb, 0x99, 0x5d, 0x57, 0xd9, 0x45, + 0x4a, 0xab, 0xb3, 0xaf, 0x3e, 0xe6, 0x9c, 0x5c, 0x7a, 0x54, 0x6c, 0xc2, + 0x80, 0x14, 0xb7, 0xb5, 0x46, 0xc7, 0x8f, 0x4a, 0x42, 0x6a, 0x36, 0x27, + 0xd6, 0x81, 0x8a, 0xd5, 0x11, 0x5f, 0x7a, 0x6b, 0x31, 0xf5, 0x34, 0xc2, + 0x73, 0xdc, 0xd2, 0x63, 0x43, 0xf6, 0x73, 0xd6, 0x93, 0xcb, 0x19, 0xce, + 0x79, 0xa6, 0x67, 0xeb, 0x46, 0x45, 0x43, 0xb1, 0x6a, 0xe4, 0xe0, 0xe0, + 0x75, 0xcd, 0x1b, 0xd7, 0x35, 0x06, 0x69, 0x0b, 0x54, 0xe8, 0x3d, 0x4b, + 0x3b, 0xd7, 0x34, 0x99, 0x5c, 0xf4, 0xaa, 0xc3, 0x39, 0xa7, 0xee, 0x22, + 0x81, 0x93, 0x3b, 0xe0, 0x70, 0x07, 0x5a, 0x18, 0xe3, 0xe9, 0x50, 0x3b, + 0x7d, 0xd1, 0xee, 0x29, 0xec, 0xf8, 0x14, 0x80, 0x8c, 0x1e, 0x05, 0x38, + 0x70, 0x69, 0xaa, 0x78, 0xa5, 0xcd, 0x02, 0x1d, 0x9c, 0x52, 0xe6, 0x99, + 0x9a, 0x37, 0x50, 0x04, 0x9b, 0xa9, 0x77, 0x54, 0x60, 0xd2, 0xd1, 0x60, + 0x1d, 0xba, 0x86, 0xc9, 0x5c, 0x02, 0x41, 0xf5, 0x14, 0xcc, 0xd0, 0x4e, + 0x38, 0xa0, 0x09, 0x01, 0x18, 0xeb, 0x46, 0xea, 0x8c, 0x1a, 0x5a, 0x2c, + 0x31, 0xfb, 0x85, 0x05, 0xaa, 0x32, 0x45, 0x1b, 0xa9, 0xa4, 0x2b, 0x8f, + 0xdf, 0x4e, 0x0c, 0x2a, 0xbb, 0x38, 0x5e, 0xa4, 0x01, 0xef, 0x51, 0x9b, + 0x9e, 0xc8, 0xb9, 0xf7, 0x3c, 0x0a, 0xb4, 0x85, 0x72, 0xc4, 0x90, 0xc7, + 0x27, 0x54, 0xfc, 0x45, 0x67, 0xdc, 0x46, 0xb1, 0x9f, 0xdd, 0xb6, 0xf3, + 0x9e, 0x83, 0xa8, 0xa9, 0x8b, 0x48, 0xff, 0x00, 0x79, 0xff, 0x00, 0x01, + 0xc5, 0x20, 0x50, 0xbc, 0x01, 0x56, 0x93, 0x46, 0x72, 0x69, 0x94, 0x72, + 0x5b, 0xaf, 0xcb, 0xed, 0xde, 0x97, 0x81, 0xd0, 0x55, 0xc7, 0x45, 0x71, + 0xc8, 0x06, 0xa1, 0x68, 0x07, 0xf0, 0x92, 0x3f, 0x5a, 0xb4, 0xc8, 0x2b, + 0x30, 0x39, 0xc8, 0x3f, 0x85, 0x26, 0x73, 0xd4, 0x54, 0x8d, 0x1c, 0x83, + 0xa8, 0xcf, 0xd2, 0x98, 0x7d, 0xf8, 0xfa, 0xd5, 0x08, 0x06, 0x3b, 0x52, + 0x13, 0x91, 0x8a, 0x29, 0x29, 0x80, 0x70, 0x07, 0x14, 0xd0, 0xa7, 0xd7, + 0x34, 0xec, 0x66, 0x90, 0xd0, 0x02, 0x8e, 0x3f, 0xfa, 0xd5, 0xa1, 0x6f, + 0x0f, 0x96, 0x99, 0x3f, 0x78, 0xfe, 0x95, 0x0d, 0xa4, 0x39, 0xfd, 0xe3, + 0x0f, 0xa6, 0x6a, 0xe1, 0x23, 0xa6, 0x6a, 0x5b, 0x01, 0xad, 0xd7, 0x02, + 0x81, 0x9f, 0xfe, 0xbd, 0x18, 0x38, 0xa5, 0xc9, 0x14, 0x80, 0x70, 0x00, + 0x76, 0xa1, 0xba, 0x53, 0x77, 0xd0, 0xd9, 0xc1, 0xa6, 0x00, 0x99, 0x3e, + 0xd5, 0x37, 0x41, 0x51, 0x42, 0x09, 0x53, 0x9a, 0x93, 0x6f, 0xbf, 0x14, + 0x00, 0x1e, 0x69, 0x13, 0xee, 0xe3, 0xd3, 0x8a, 0x76, 0x38, 0xa8, 0xd3, + 0x22, 0x47, 0x1f, 0x8d, 0x00, 0x3f, 0x07, 0x22, 0x8d, 0xbb, 0x7a, 0x1a, + 0x18, 0x60, 0x86, 0xc1, 0x24, 0x7a, 0x52, 0xb8, 0xc0, 0xdc, 0xa9, 0x96, + 0x34, 0x00, 0xa0, 0x6e, 0x5e, 0x6a, 0x33, 0xf2, 0xf1, 0x52, 0x00, 0x7b, + 0x8c, 0x52, 0x32, 0xf1, 0x40, 0x11, 0x95, 0xc8, 0xeb, 0x4a, 0x3b, 0x03, + 0x4e, 0x03, 0x14, 0x85, 0x7b, 0x8e, 0xb4, 0x00, 0x9d, 0xa9, 0xa0, 0x1c, + 0xe0, 0x53, 0xc7, 0x23, 0xa5, 0x04, 0xaa, 0xf5, 0x20, 0x50, 0x04, 0x32, + 0xc1, 0x9f, 0x99, 0x31, 0xbb, 0xb8, 0xf5, 0xaa, 0xd9, 0xf6, 0x3c, 0x75, + 0x15, 0x70, 0xb6, 0x7e, 0xe8, 0x27, 0xeb, 0xc5, 0x53, 0x9e, 0x29, 0xe4, + 0x6d, 0xca, 0x51, 0x71, 0xe9, 0xde, 0x8b, 0x85, 0x84, 0x24, 0x0a, 0x69, + 0x7e, 0x38, 0x1f, 0x9d, 0x20, 0x23, 0x76, 0x08, 0xda, 0xc3, 0xa8, 0x34, + 0xfe, 0x00, 0xa6, 0x22, 0x22, 0x0b, 0x75, 0x34, 0x9b, 0x71, 0x4e, 0x24, + 0xfe, 0x1e, 0xd4, 0x8c, 0xd8, 0xc6, 0x45, 0x00, 0x34, 0xf0, 0x38, 0xa6, + 0xee, 0x26, 0x9e, 0x41, 0x61, 0x90, 0x38, 0xa6, 0x11, 0xea, 0x28, 0x01, + 0x84, 0x66, 0x93, 0x06, 0xa4, 0xda, 0x0d, 0x34, 0x8e, 0x30, 0x29, 0x0e, + 0xe4, 0x64, 0x7b, 0x53, 0x71, 0xed, 0x52, 0x7e, 0x14, 0x11, 0x52, 0xd1, + 0x49, 0x90, 0xe0, 0xd2, 0xf3, 0x52, 0x85, 0xa6, 0x91, 0xcf, 0x5a, 0x87, + 0x12, 0xae, 0x33, 0x93, 0x4c, 0x76, 0x00, 0xf3, 0xc8, 0x15, 0x29, 0x5e, + 0xd9, 0xe4, 0xd2, 0xac, 0x1b, 0xdd, 0x63, 0x4c, 0x92, 0x78, 0xa4, 0xf4, + 0x57, 0x65, 0x22, 0x0d, 0xca, 0xd4, 0xb9, 0x18, 0xce, 0x6b, 0xa1, 0x4d, + 0x0a, 0x06, 0x51, 0xb9, 0x9b, 0x24, 0x76, 0xa9, 0x57, 0xc2, 0xc9, 0x2f, + 0x0b, 0x31, 0x1f, 0x55, 0xae, 0x4f, 0xae, 0xd1, 0xea, 0xc6, 0x73, 0x39, + 0x07, 0xa5, 0x04, 0x1c, 0x75, 0xc5, 0x6a, 0xea, 0xba, 0x37, 0xf6, 0x58, + 0x42, 0x64, 0x0e, 0x58, 0xf4, 0x02, 0xb3, 0x1b, 0x20, 0x0e, 0x3a, 0x9c, + 0x57, 0x45, 0x39, 0xc6, 0xa4, 0x79, 0xa3, 0xb0, 0x11, 0x91, 0x93, 0xcf, + 0x5a, 0x46, 0xf9, 0x48, 0xc5, 0x4a, 0x13, 0x3d, 0x7a, 0xd3, 0x76, 0x1c, + 0xf3, 0xd2, 0xa8, 0x06, 0x16, 0x24, 0x7d, 0xdc, 0xd0, 0x19, 0x89, 0x03, + 0x6f, 0x14, 0xfc, 0x62, 0x97, 0xf1, 0xa5, 0x61, 0xdc, 0x4d, 0xc4, 0x36, + 0x00, 0xfa, 0xd2, 0xb2, 0x9e, 0xa0, 0xd0, 0x07, 0x34, 0x1c, 0x7a, 0x9a, + 0x56, 0x18, 0xdd, 0x87, 0x1c, 0x9a, 0x70, 0x45, 0x23, 0xaf, 0x4a, 0x07, + 0x4e, 0xfc, 0x53, 0x80, 0x18, 0xe2, 0x9d, 0x80, 0xbd, 0xa7, 0x4a, 0xab, + 0x98, 0x19, 0xca, 0xab, 0xf4, 0x71, 0xfc, 0x26, 0xa3, 0xbb, 0x49, 0xe2, + 0x9d, 0x92, 0x56, 0x6c, 0xaf, 0x5e, 0x7a, 0xd5, 0x60, 0x76, 0xfd, 0x2b, + 0x4e, 0x19, 0xe3, 0xd4, 0x2d, 0x84, 0x0e, 0x47, 0xda, 0x23, 0x1f, 0xbb, + 0x7f, 0xef, 0x0f, 0x43, 0x58, 0x49, 0x72, 0x4b, 0x9b, 0xa7, 0x5f, 0xf3, + 0x2d, 0x7b, 0xca, 0xdd, 0x4c, 0xdc, 0x9c, 0x71, 0x9c, 0x1a, 0x31, 0x8e, + 0x4d, 0x48, 0xea, 0x43, 0x6d, 0x3c, 0x11, 0x4c, 0x60, 0x0f, 0x53, 0x5a, + 0x90, 0x21, 0x20, 0xe7, 0xd4, 0x52, 0x6d, 0x27, 0xe9, 0x4e, 0x00, 0x0e, + 0x94, 0x1e, 0x05, 0x3b, 0x05, 0xc4, 0x11, 0x80, 0x30, 0x72, 0x6a, 0x41, + 0x81, 0xe9, 0x51, 0xee, 0xc1, 0xe6, 0x9f, 0xc7, 0x6e, 0x94, 0xec, 0x2b, + 0x8e, 0xcf, 0xe7, 0x4b, 0x9c, 0x54, 0x65, 0x43, 0x52, 0xb1, 0x70, 0x38, + 0x03, 0x02, 0x98, 0x89, 0x06, 0x08, 0xcd, 0x15, 0x16, 0xdf, 0x98, 0x30, + 0x73, 0xf4, 0xab, 0x11, 0xc1, 0x24, 0xbc, 0xe3, 0x6a, 0x0e, 0xa4, 0xf4, + 0xa0, 0x06, 0x02, 0x73, 0xf2, 0x02, 0x5b, 0xda, 0xae, 0x2c, 0x58, 0x4c, + 0xdc, 0x01, 0x92, 0x38, 0x03, 0xad, 0x11, 0x3c, 0x70, 0xaf, 0xee, 0x86, + 0x5f, 0xfb, 0xe7, 0xfa, 0x54, 0x41, 0xa5, 0x67, 0x39, 0x19, 0xc9, 0xea, + 0x68, 0xb5, 0xc6, 0x45, 0xb2, 0x40, 0x70, 0x57, 0x23, 0xd4, 0x52, 0x9c, + 0x83, 0xd0, 0xe7, 0xeb, 0x56, 0x45, 0x2e, 0xd0, 0x7a, 0x8a, 0x64, 0x95, + 0x90, 0x13, 0xd8, 0x8a, 0x90, 0xba, 0xa8, 0xeb, 0x52, 0xf9, 0x6b, 0xd4, + 0x71, 0xf4, 0xaa, 0xaf, 0x18, 0x91, 0xf0, 0xae, 0x4e, 0x3b, 0x11, 0xde, + 0x81, 0xa1, 0x37, 0x97, 0x6d, 0xcf, 0xd0, 0x74, 0xa7, 0x09, 0x7e, 0x43, + 0x80, 0x79, 0xa7, 0xad, 0xb4, 0xa0, 0x74, 0x07, 0xdb, 0x34, 0x9e, 0x54, + 0x8a, 0xdc, 0xa3, 0x7d, 0x31, 0x50, 0xd1, 0xaa, 0x68, 0x40, 0xf9, 0xc6, + 0x3b, 0x52, 0xe4, 0x95, 0x3c, 0x8e, 0x4d, 0x23, 0x01, 0xdf, 0x22, 0x98, + 0x10, 0x06, 0xdd, 0x9f, 0xce, 0xa6, 0xc5, 0x5c, 0x78, 0xe1, 0x71, 0x91, + 0x48, 0xdc, 0xf4, 0xeb, 0xeb, 0x4b, 0xc1, 0xef, 0x46, 0x29, 0xa1, 0x11, + 0x15, 0xf9, 0x83, 0x64, 0x82, 0x29, 0xac, 0xb9, 0x07, 0x20, 0x1f, 0x6a, + 0x94, 0x8f, 0x5a, 0x6e, 0xdc, 0xd5, 0xa1, 0x6a, 0x41, 0x1a, 0xaf, 0x39, + 0x1f, 0xad, 0x49, 0xf7, 0x70, 0xc3, 0xb5, 0x06, 0x20, 0x18, 0xb2, 0xb1, + 0x24, 0x9a, 0x0a, 0xe0, 0x72, 0x6a, 0x90, 0x9a, 0x27, 0x20, 0xb0, 0x05, + 0x4d, 0x37, 0x90, 0x33, 0xd0, 0xfb, 0xd1, 0x17, 0xfa, 0xb1, 0xed, 0xc6, + 0x29, 0x48, 0x39, 0xe3, 0xa7, 0xa1, 0xad, 0x0e, 0x70, 0x6d, 0xb8, 0xcb, + 0x1c, 0x1a, 0x41, 0xb8, 0x77, 0xdd, 0x4c, 0xdd, 0xb8, 0x92, 0x06, 0x31, + 0xd8, 0x8e, 0xb4, 0xa0, 0x6e, 0x19, 0x5c, 0xa9, 0xa0, 0x43, 0xb0, 0xad, + 0xd0, 0xe0, 0x8a, 0x52, 0x87, 0x69, 0xc1, 0xe6, 0x91, 0x57, 0x9c, 0x9e, + 0xbe, 0xd5, 0x26, 0x0f, 0xa5, 0x00, 0x34, 0x64, 0x75, 0xa5, 0xc6, 0x68, + 0x28, 0x69, 0x42, 0x1f, 0x5a, 0x00, 0x69, 0x40, 0x4f, 0x22, 0x80, 0x30, + 0x78, 0x15, 0x26, 0xc1, 0x4e, 0x00, 0x0e, 0xd4, 0x5c, 0x2c, 0x35, 0x51, + 0x8f, 0xa5, 0x4a, 0x21, 0xc8, 0xf9, 0x9b, 0x3f, 0x4a, 0x51, 0x4f, 0x1f, + 0x5a, 0x00, 0x6c, 0x4c, 0xd6, 0xe3, 0x0a, 0x03, 0x2f, 0xd3, 0x9a, 0xb9, + 0x15, 0xca, 0x39, 0xc6, 0x70, 0x7d, 0x0d, 0x55, 0xeb, 0xc6, 0x68, 0xda, + 0x31, 0xcf, 0x34, 0xac, 0x06, 0xb2, 0x37, 0x14, 0xfd, 0xd5, 0x94, 0x93, + 0x49, 0x17, 0x08, 0xd9, 0x1e, 0x86, 0xa6, 0x4b, 0xc5, 0xcf, 0xce, 0x0a, + 0x9f, 0x5e, 0xa2, 0x95, 0x87, 0x72, 0xf6, 0xef, 0x5a, 0x6b, 0x1c, 0xd4, + 0x6b, 0x2a, 0xb0, 0xc8, 0x20, 0xfb, 0x83, 0x48, 0x4d, 0x00, 0x29, 0x27, + 0xd6, 0x9a, 0xc6, 0x93, 0x26, 0x9a, 0x4d, 0x26, 0x31, 0xad, 0x4d, 0x27, + 0x9a, 0x71, 0x6a, 0x68, 0xc5, 0x4b, 0x29, 0x09, 0x49, 0x8c, 0x52, 0xe4, + 0x51, 0x52, 0xca, 0x01, 0x45, 0x19, 0xa3, 0x35, 0x23, 0x10, 0x1c, 0x53, + 0x81, 0xa6, 0x75, 0x39, 0x22, 0x9d, 0x91, 0x8a, 0x06, 0x23, 0x9f, 0x99, + 0x3e, 0xb4, 0x31, 0xc8, 0xe9, 0x51, 0x96, 0xcc, 0xaa, 0x3e, 0xa6, 0xa4, + 0x6e, 0x94, 0x08, 0x4e, 0xc2, 0x8c, 0x9a, 0x6a, 0x9f, 0x94, 0x66, 0x8c, + 0x8a, 0x00, 0x7d, 0x1e, 0xf4, 0xd2, 0xdc, 0xd1, 0xb8, 0x01, 0xc9, 0xa0, + 0x09, 0x05, 0x1d, 0xea, 0x2f, 0x3a, 0x30, 0x3e, 0xf8, 0xfc, 0xe9, 0xbf, + 0x6b, 0x8f, 0x38, 0x04, 0x93, 0xf4, 0xa2, 0xcc, 0x34, 0x2c, 0x52, 0x67, + 0x8a, 0xac, 0x6e, 0x89, 0x1c, 0x21, 0xfc, 0x4d, 0x30, 0xcf, 0x23, 0x74, + 0xc0, 0xa6, 0xa2, 0xc5, 0xcc, 0x8b, 0x79, 0x34, 0xd6, 0x95, 0x53, 0xab, + 0x01, 0x55, 0x0e, 0xf3, 0xd5, 0xd8, 0xfe, 0x38, 0xa0, 0x2f, 0xb5, 0x5a, + 0x81, 0x2e, 0x64, 0xc6, 0xe0, 0x1f, 0xba, 0xa5, 0xbf, 0x4a, 0x61, 0x92, + 0x56, 0xee, 0x14, 0x7b, 0x52, 0x74, 0x14, 0x55, 0x28, 0xa2, 0x1c, 0x98, + 0x04, 0xc1, 0xc9, 0x24, 0x9f, 0x53, 0x4e, 0x18, 0x14, 0x9d, 0x68, 0xaa, + 0x10, 0xec, 0xd2, 0xf3, 0x4d, 0x14, 0xec, 0xf1, 0x40, 0x84, 0xef, 0x8a, + 0x28, 0xcd, 0x19, 0xa6, 0x01, 0x81, 0x4c, 0x28, 0xa7, 0xa8, 0xcd, 0x3c, + 0xe2, 0x90, 0xd3, 0x11, 0x09, 0x81, 0x33, 0xc0, 0xc7, 0xd2, 0x98, 0x6d, + 0xb3, 0xd1, 0x8f, 0xe3, 0x56, 0x31, 0x4b, 0x8a, 0x00, 0xa8, 0x6d, 0x9c, + 0x74, 0xc1, 0xa6, 0xc7, 0x03, 0x34, 0x98, 0x61, 0x80, 0x3d, 0x7b, 0xd5, + 0xc3, 0xe9, 0x47, 0x4e, 0x05, 0x3b, 0x81, 0x2a, 0x7d, 0xd0, 0x32, 0x3f, + 0x0a, 0x71, 0x50, 0x6a, 0x0c, 0x67, 0xa8, 0x06, 0x97, 0x69, 0xec, 0x4f, + 0xe7, 0x53, 0x61, 0xdc, 0x94, 0x64, 0x1f, 0x6a, 0x5c, 0x66, 0xa1, 0xf9, + 0x80, 0xe1, 0x8d, 0x20, 0x69, 0x07, 0x7f, 0xd2, 0x81, 0x5c, 0x9c, 0x28, + 0xec, 0x39, 0xa4, 0x90, 0xec, 0x46, 0x24, 0x67, 0x1c, 0xe3, 0x15, 0x1e, + 0xf7, 0xff, 0x00, 0x67, 0xf2, 0xa3, 0xcc, 0x73, 0xd4, 0xad, 0x3b, 0x05, + 0xca, 0xdf, 0xda, 0x0c, 0xaf, 0xb4, 0x42, 0x40, 0xab, 0xd1, 0xb1, 0x74, + 0x0f, 0xcf, 0x3d, 0xaa, 0xbf, 0x43, 0x9c, 0x2f, 0xe5, 0x4e, 0xf3, 0x24, + 0x03, 0x8c, 0x7e, 0x54, 0x58, 0x2e, 0x59, 0x07, 0x8a, 0x61, 0x6c, 0x4a, + 0xa7, 0xd4, 0x62, 0xa0, 0x2f, 0x27, 0xfb, 0x39, 0xfa, 0x54, 0x52, 0x4b, + 0x22, 0x85, 0x62, 0x46, 0x01, 0xec, 0x29, 0xd8, 0x46, 0x8e, 0x69, 0x6a, + 0xb3, 0x31, 0x55, 0xdc, 0x5c, 0x81, 0x4b, 0xb7, 0x76, 0x0e, 0xe3, 0xf9, + 0xd2, 0x19, 0x3e, 0x47, 0xad, 0x34, 0xc8, 0x9f, 0xde, 0x06, 0xa2, 0xda, + 0xa0, 0x64, 0x8a, 0x4f, 0x31, 0x31, 0x9c, 0xfe, 0x94, 0x01, 0x29, 0x90, + 0x63, 0x85, 0x26, 0x9a, 0x5d, 0xfd, 0x00, 0xfd, 0x68, 0x04, 0x10, 0x0d, + 0x14, 0x00, 0xd2, 0x09, 0xea, 0xc7, 0xf0, 0xe2, 0x8e, 0x00, 0xc8, 0x14, + 0xe3, 0x49, 0x40, 0x0c, 0x2f, 0xec, 0x69, 0x99, 0x3d, 0x49, 0x20, 0x77, + 0xc8, 0xa9, 0x69, 0x08, 0xc8, 0xe6, 0x80, 0x22, 0x64, 0x49, 0x57, 0xf9, + 0x1e, 0xe2, 0xab, 0x3e, 0xe8, 0xce, 0x1f, 0xa7, 0x66, 0xab, 0x45, 0x0c, + 0x67, 0x39, 0xc8, 0xf7, 0xa3, 0x97, 0x52, 0x08, 0x19, 0x34, 0x01, 0x53, + 0x8a, 0x43, 0xef, 0x4a, 0xf1, 0x34, 0x79, 0xc0, 0xe3, 0xd2, 0x90, 0x10, + 0x47, 0x1f, 0x95, 0x31, 0x08, 0xc3, 0x20, 0x73, 0xc5, 0x1e, 0xc2, 0x97, + 0x03, 0xa5, 0x2e, 0x0e, 0x31, 0x8f, 0xc6, 0x80, 0x13, 0x62, 0x8c, 0x12, + 0x72, 0x69, 0x84, 0x65, 0x89, 0x1d, 0x29, 0xf8, 0x51, 0xdb, 0x9a, 0x52, + 0xb4, 0x80, 0x8f, 0x61, 0x1c, 0xe2, 0x8d, 0xa0, 0x8a, 0x94, 0x82, 0x79, + 0xa4, 0x23, 0xda, 0x81, 0x91, 0xe0, 0x01, 0xc0, 0xeb, 0x51, 0x9c, 0x28, + 0xc9, 0xea, 0x7a, 0x0a, 0x91, 0x88, 0x00, 0x93, 0xd2, 0x96, 0x38, 0x8f, + 0xdf, 0x6f, 0xbc, 0x7b, 0x7a, 0x54, 0xc9, 0xd8, 0xa8, 0xab, 0x95, 0xfa, + 0x64, 0x9e, 0xb5, 0x77, 0x4b, 0x31, 0x23, 0x97, 0x91, 0xc0, 0x6e, 0xd9, + 0x34, 0x9b, 0x38, 0xe9, 0x51, 0x98, 0x50, 0x9f, 0xbb, 0x58, 0x54, 0x8f, + 0x3c, 0x5c, 0x4d, 0x16, 0x87, 0x4b, 0x14, 0xd1, 0xb1, 0x18, 0x75, 0x3f, + 0x43, 0x5a, 0x96, 0xac, 0xbf, 0xde, 0xae, 0x18, 0x44, 0x07, 0x4c, 0x8f, + 0xc6, 0x9e, 0xad, 0x32, 0x7d, 0xc9, 0xe4, 0x5f, 0xa1, 0xaf, 0x3a, 0x79, + 0x7d, 0xf6, 0x90, 0xee, 0x5b, 0xf1, 0x35, 0xdf, 0xda, 0x35, 0x2f, 0x2d, + 0x4f, 0xcb, 0x18, 0xdb, 0xf8, 0xd6, 0x33, 0xb6, 0x36, 0xfe, 0x75, 0x61, + 0xa0, 0x2c, 0xe5, 0x9a, 0x42, 0x49, 0xe4, 0x93, 0x51, 0xb5, 0xa3, 0x33, + 0x67, 0x78, 0xe9, 0xe9, 0x5d, 0xf4, 0xa1, 0x1a, 0x70, 0x51, 0x5d, 0x00, + 0x85, 0x64, 0x5f, 0x7e, 0x3a, 0xd0, 0x65, 0x53, 0xc7, 0x7a, 0x97, 0xec, + 0x64, 0x67, 0x91, 0xcf, 0x5a, 0x43, 0x68, 0xc3, 0xd2, 0xb4, 0xb8, 0x11, + 0x17, 0x01, 0xb1, 0x8a, 0x69, 0x93, 0x9e, 0x07, 0xe3, 0x53, 0x8b, 0x76, + 0x3d, 0x48, 0xa7, 0x0b, 0x3c, 0x73, 0xb8, 0x0a, 0x2e, 0x32, 0x05, 0x7e, + 0x7a, 0x71, 0x48, 0xcd, 0x92, 0x0e, 0x2a, 0xd0, 0xb5, 0x19, 0xc9, 0x6f, + 0xd2, 0x9c, 0x6d, 0xd0, 0x0c, 0x9d, 0xc7, 0xe9, 0x53, 0x71, 0xe8, 0x54, + 0x04, 0xe6, 0x90, 0x82, 0x4f, 0x5e, 0x2a, 0xf7, 0xd9, 0xa3, 0xfe, 0xe9, + 0xfc, 0xe9, 0xe2, 0x28, 0xc7, 0xf0, 0xa8, 0xa3, 0x98, 0x46, 0x6f, 0x96, + 0xcf, 0xeb, 0xf8, 0x54, 0x91, 0xc1, 0x22, 0xb0, 0x65, 0x04, 0x11, 0xce, + 0x7a, 0x56, 0x80, 0x2b, 0x9c, 0x0a, 0x46, 0x7c, 0x10, 0x36, 0x93, 0x9e, + 0xe3, 0xb5, 0x0d, 0x8c, 0x76, 0xdf, 0xb5, 0x27, 0xcd, 0x85, 0xb8, 0x1f, + 0x93, 0x0f, 0xf1, 0xaa, 0x4c, 0x87, 0x71, 0x0d, 0xd4, 0x76, 0xab, 0x67, + 0xd4, 0x70, 0x47, 0x7a, 0x63, 0x7e, 0xf8, 0xed, 0x7e, 0x25, 0xec, 0xdd, + 0x9b, 0xff, 0x00, 0xaf, 0x59, 0xaf, 0x73, 0xd3, 0xf2, 0x29, 0xfb, 0xde, + 0xa5, 0x6e, 0x87, 0x81, 0x41, 0xc1, 0x18, 0x63, 0x48, 0x50, 0x86, 0x21, + 0xb3, 0xf4, 0xa3, 0x00, 0x76, 0xad, 0x8c, 0xc4, 0xc6, 0x4f, 0x4f, 0xc7, + 0x34, 0xf0, 0xa3, 0x18, 0x3f, 0x95, 0x22, 0x8c, 0x9c, 0x01, 0xcd, 0x5d, + 0x8b, 0x4e, 0x9e, 0x41, 0xbd, 0xc0, 0x8d, 0x3f, 0xbc, 0xe7, 0x14, 0x01, + 0x53, 0x3b, 0x78, 0x0b, 0x9a, 0x92, 0x28, 0x26, 0x98, 0xf0, 0x08, 0x1e, + 0xbd, 0x85, 0x5d, 0x02, 0xca, 0xdb, 0xd6, 0xe1, 0xfd, 0x4f, 0x0b, 0x55, + 0xe6, 0xbf, 0x79, 0x88, 0x55, 0xc1, 0x4e, 0x9b, 0x53, 0x80, 0x29, 0xea, + 0x03, 0xc4, 0x69, 0x17, 0x53, 0xbc, 0xfe, 0x94, 0x8f, 0x3b, 0x33, 0x05, + 0xea, 0x33, 0x8c, 0x0e, 0xd5, 0x1a, 0xa1, 0x23, 0xbe, 0x3d, 0x0d, 0x48, + 0xa8, 0x17, 0xa5, 0x16, 0x13, 0x60, 0x15, 0x73, 0xb8, 0xaf, 0x23, 0xa0, + 0xa8, 0x44, 0xd7, 0x0c, 0x7e, 0xe0, 0x41, 0xee, 0x33, 0x56, 0x31, 0xde, + 0x90, 0xa0, 0x76, 0x0c, 0x4b, 0x71, 0xe8, 0x69, 0x88, 0x45, 0xb8, 0x0a, + 0x40, 0x70, 0x41, 0x3d, 0xc5, 0x58, 0xcf, 0xe5, 0x50, 0x18, 0xd7, 0x04, + 0xa0, 0x01, 0xbd, 0x4d, 0x2b, 0x23, 0x94, 0xc2, 0xb6, 0x73, 0xd7, 0x34, + 0x58, 0x2e, 0x36, 0x59, 0x1b, 0x7f, 0x96, 0x1b, 0xaf, 0x43, 0x53, 0x5b, + 0xc3, 0xe5, 0x8d, 0xcc, 0x3e, 0x63, 0x51, 0xc2, 0x0e, 0xf2, 0x1b, 0xaa, + 0xf0, 0x3d, 0xea, 0xc0, 0xe7, 0x3e, 0xbe, 0x94, 0x05, 0xc9, 0x3a, 0xd3, + 0xb2, 0x6a, 0xa9, 0x9a, 0x55, 0xeb, 0x10, 0x1f, 0x8d, 0x39, 0x2e, 0x18, + 0xb6, 0x0c, 0x44, 0x7b, 0x8e, 0x69, 0x58, 0x77, 0x2c, 0x67, 0xe8, 0x69, + 0xbb, 0x10, 0xf5, 0x45, 0x3f, 0x85, 0x35, 0xa5, 0x8d, 0x5b, 0x6b, 0x38, + 0x07, 0x1d, 0xe9, 0xb2, 0xb1, 0x55, 0x0c, 0xad, 0xf2, 0xf7, 0xc0, 0xcd, + 0x16, 0x1d, 0xc7, 0x79, 0x31, 0x1f, 0xe0, 0x03, 0xe9, 0x55, 0x23, 0xb7, + 0x52, 0x64, 0xcb, 0xb1, 0x01, 0xf0, 0x2a, 0xd6, 0xed, 0xb1, 0x96, 0x27, + 0xb6, 0x7a, 0xd4, 0x56, 0xf9, 0xf2, 0x14, 0x9e, 0xad, 0xc9, 0xa6, 0x90, + 0x9c, 0x9d, 0x86, 0xfd, 0x95, 0x7f, 0xbe, 0xd4, 0x7d, 0x99, 0x47, 0xf1, + 0xb6, 0x2a, 0xc7, 0x34, 0x86, 0xa8, 0x5c, 0xcc, 0x80, 0xda, 0xaf, 0xfc, + 0xf4, 0x6a, 0x43, 0x6a, 0x9d, 0xd9, 0xaa, 0xc7, 0xa5, 0x27, 0x5a, 0x61, + 0xcc, 0xfb, 0x90, 0xa5, 0xba, 0xa6, 0x70, 0x4f, 0x34, 0xbe, 0x5a, 0xf7, + 0x14, 0xfe, 0x68, 0xa0, 0x91, 0x9e, 0x5a, 0x8e, 0x82, 0x8d, 0xab, 0xda, + 0x9e, 0x69, 0xa0, 0x01, 0x93, 0x8a, 0x00, 0x69, 0x1d, 0xa8, 0xe8, 0x71, + 0x4e, 0xfa, 0x53, 0x71, 0x91, 0x40, 0x01, 0xa5, 0x02, 0x93, 0x24, 0x70, + 0x7a, 0xd2, 0xe6, 0x80, 0x16, 0x8e, 0x86, 0x93, 0xad, 0x14, 0xc4, 0x3f, + 0x22, 0x9d, 0x9e, 0x29, 0x82, 0x9d, 0x40, 0x0e, 0x14, 0xbd, 0x29, 0xb9, + 0xa3, 0x3d, 0xa8, 0x01, 0xd9, 0xa0, 0xd2, 0x6e, 0xa4, 0xcd, 0x00, 0x1b, + 0x46, 0x72, 0x32, 0x0f, 0xb5, 0x48, 0x27, 0x91, 0x3b, 0x86, 0x1e, 0xf5, + 0x1e, 0x69, 0xa3, 0x39, 0x39, 0x23, 0x1e, 0xd4, 0x01, 0x68, 0x5e, 0x29, + 0xe1, 0xd0, 0xad, 0x38, 0x4d, 0x1b, 0x0f, 0x95, 0x85, 0x53, 0x27, 0x8a, + 0x8c, 0x80, 0x7b, 0x66, 0x95, 0x87, 0x73, 0x40, 0x9c, 0x8a, 0x6e, 0x2a, + 0x90, 0xdc, 0x83, 0xef, 0xb0, 0xfc, 0x69, 0x44, 0xf2, 0xaf, 0x1c, 0x11, + 0xef, 0x52, 0xe2, 0x34, 0xd1, 0x72, 0x93, 0x15, 0x5c, 0x5c, 0xe4, 0xf2, + 0x9c, 0xfb, 0x1a, 0x70, 0xb8, 0x8c, 0x9e, 0x49, 0x07, 0xe9, 0x52, 0xd3, + 0x2d, 0x34, 0x4e, 0x07, 0xbd, 0x2d, 0x45, 0xe7, 0x21, 0xfe, 0x35, 0xa7, + 0x87, 0x07, 0xa1, 0x15, 0x05, 0x06, 0x79, 0xa4, 0x63, 0xc7, 0x26, 0x9d, + 0x90, 0x7a, 0x52, 0x1c, 0x50, 0x04, 0x60, 0x7e, 0xf7, 0xe8, 0x29, 0xfd, + 0xb9, 0x35, 0x12, 0x9c, 0xcc, 0xff, 0x00, 0x80, 0xa9, 0x0f, 0x4a, 0x40, + 0x52, 0xdc, 0xdb, 0x7e, 0xf3, 0x7e, 0x74, 0xdd, 0xcf, 0x8f, 0xbc, 0xdf, + 0x9d, 0x04, 0xf1, 0x46, 0x78, 0xe2, 0xb6, 0x31, 0xbb, 0x17, 0xe6, 0x6e, + 0xb9, 0x3f, 0x53, 0x4a, 0x14, 0x67, 0xa5, 0x20, 0x38, 0x1c, 0x53, 0xb3, + 0x91, 0x48, 0x62, 0xd3, 0x48, 0x0a, 0x77, 0x73, 0xef, 0x4e, 0x14, 0x98, + 0xeb, 0x8a, 0x04, 0x39, 0x76, 0x91, 0x9e, 0xb4, 0xf0, 0x00, 0xa8, 0x11, + 0xb6, 0xb6, 0xd3, 0xd0, 0xf4, 0xa9, 0xf1, 0x9a, 0x68, 0x4c, 0x06, 0x29, + 0xd9, 0xa4, 0xe0, 0x52, 0xee, 0x14, 0xc4, 0x34, 0x9f, 0x7a, 0x5a, 0x5e, + 0x0d, 0x1e, 0xb4, 0xc0, 0x4e, 0x0d, 0x28, 0xa4, 0xc6, 0x28, 0xc5, 0x30, + 0x16, 0x97, 0x9a, 0x6e, 0x69, 0x77, 0x60, 0xd0, 0x21, 0x4d, 0x1d, 0x29, + 0x3f, 0x1a, 0x28, 0x01, 0x68, 0xcd, 0x25, 0x21, 0x1e, 0xa6, 0x98, 0x0e, + 0xce, 0x68, 0x27, 0xb0, 0xa8, 0xf3, 0x92, 0x42, 0x9f, 0xc6, 0x9c, 0x06, + 0xda, 0x00, 0x70, 0x18, 0xa5, 0xa4, 0xa3, 0x38, 0xa0, 0x05, 0xc6, 0x68, + 0x00, 0xe2, 0x93, 0x71, 0xa3, 0x34, 0x00, 0xa3, 0x93, 0x4b, 0x4d, 0x07, + 0x14, 0x8c, 0xfb, 0x46, 0x68, 0x01, 0xd8, 0xcd, 0x25, 0x34, 0x48, 0x18, + 0x64, 0x1a, 0x29, 0x88, 0x56, 0xa4, 0xce, 0x29, 0x1b, 0xa5, 0x27, 0xd6, + 0x80, 0x17, 0x77, 0x35, 0x1c, 0x9f, 0x3c, 0x6c, 0xbe, 0xd4, 0xfc, 0x03, + 0xda, 0x8c, 0xfa, 0x8a, 0x62, 0x08, 0x9c, 0xcd, 0x6e, 0x17, 0x6b, 0x13, + 0xb7, 0x93, 0xef, 0x53, 0xa8, 0x2d, 0x0e, 0xc7, 0xcf, 0x4c, 0x12, 0x38, + 0xaa, 0x76, 0xf2, 0x98, 0xcb, 0xa0, 0x19, 0x01, 0xb8, 0xf6, 0xab, 0x08, + 0xdb, 0x66, 0x3c, 0x1c, 0x1f, 0x6a, 0x43, 0x1c, 0x8f, 0x1c, 0x6e, 0x20, + 0x04, 0xe4, 0x0e, 0xe0, 0x9f, 0xd6, 0x9c, 0xf8, 0x8d, 0x72, 0xa8, 0x09, + 0x34, 0xa1, 0x87, 0x5a, 0x19, 0x88, 0x53, 0x40, 0xc4, 0x52, 0xc4, 0x82, + 0x54, 0x0c, 0xd3, 0xf3, 0x55, 0xa3, 0x93, 0x74, 0xff, 0x00, 0x33, 0x02, + 0x31, 0xc6, 0x4f, 0x7a, 0x9f, 0x39, 0xed, 0x40, 0x0d, 0x92, 0x51, 0x10, + 0x19, 0x04, 0x93, 0x51, 0x24, 0x92, 0x3e, 0x76, 0x93, 0x93, 0x52, 0x97, + 0x5c, 0xed, 0x62, 0x31, 0xef, 0x4a, 0x51, 0x0f, 0xf0, 0x81, 0xf4, 0xa4, + 0x03, 0x53, 0x78, 0x18, 0x7c, 0x7d, 0x69, 0xd9, 0xa3, 0x80, 0x30, 0x39, + 0xc5, 0x18, 0xcd, 0x00, 0x35, 0xd9, 0x40, 0xc3, 0x77, 0xa8, 0x99, 0xba, + 0x34, 0x79, 0x3c, 0xd4, 0xa7, 0x9f, 0x4a, 0x01, 0xc5, 0x00, 0x31, 0x5c, + 0xb6, 0x33, 0x80, 0xde, 0x9d, 0x69, 0xaf, 0x12, 0xbf, 0x38, 0xc1, 0xf5, + 0x14, 0xfd, 0xa3, 0x92, 0xa3, 0x9f, 0x5a, 0x8d, 0x3e, 0x66, 0x3f, 0x33, + 0x1c, 0x7a, 0xd0, 0x05, 0x79, 0x16, 0x48, 0xcf, 0x2b, 0x91, 0xfd, 0xe1, + 0x4a, 0x1b, 0x23, 0x82, 0x31, 0x56, 0x98, 0x8c, 0x72, 0x71, 0x50, 0xbc, + 0x08, 0xf9, 0x65, 0x3b, 0x5b, 0xd4, 0x51, 0x70, 0xb1, 0x10, 0x19, 0x34, + 0xec, 0x93, 0xde, 0xa2, 0x61, 0x2c, 0x63, 0xe7, 0x1b, 0x87, 0xf7, 0x97, + 0xfc, 0x29, 0x03, 0x82, 0x38, 0x34, 0xc4, 0x4d, 0x9c, 0x0e, 0x0d, 0x35, + 0x8e, 0xc5, 0xde, 0xc7, 0x14, 0xcf, 0x30, 0x20, 0xdc, 0xdd, 0x2a, 0x48, + 0xa2, 0x69, 0x98, 0x49, 0x20, 0xc0, 0x1f, 0x75, 0x69, 0x3d, 0x01, 0x2b, + 0x89, 0x14, 0x65, 0xcf, 0x98, 0xe3, 0x1e, 0x83, 0xd2, 0xa7, 0xc5, 0x3f, + 0x14, 0x98, 0xe7, 0xa5, 0x66, 0xf5, 0x34, 0x43, 0x08, 0xa6, 0x9e, 0x29, + 0xec, 0xb9, 0x19, 0xcd, 0x44, 0x8f, 0xbc, 0x1e, 0x0a, 0x91, 0xea, 0x2a, + 0x6c, 0x3b, 0x8a, 0x7d, 0xa9, 0x29, 0xac, 0xae, 0xbc, 0xaf, 0x34, 0x98, + 0x90, 0x91, 0xce, 0x29, 0x58, 0x77, 0x1e, 0x05, 0x18, 0x14, 0xbd, 0xe8, + 0xe9, 0x4a, 0xc3, 0xb8, 0x62, 0x9b, 0x8a, 0x5a, 0x43, 0xd2, 0x90, 0x00, + 0xa0, 0x0c, 0xd2, 0x75, 0xf5, 0xa7, 0x00, 0x68, 0x18, 0x50, 0x3e, 0xb4, + 0x1a, 0x6f, 0x73, 0xc6, 0x69, 0x0c, 0x7e, 0x69, 0xac, 0x40, 0x3d, 0x29, + 0x46, 0x29, 0x48, 0xcd, 0x08, 0x08, 0xc1, 0x39, 0xfb, 0xbf, 0x8d, 0x2b, + 0x26, 0xe6, 0x53, 0xb8, 0x8c, 0x7a, 0x77, 0xa5, 0x3c, 0x0a, 0x4d, 0xe0, + 0x30, 0x04, 0xf2, 0x7a, 0x53, 0x01, 0xd9, 0xa6, 0xb2, 0x86, 0x18, 0x22, + 0x9a, 0x65, 0x50, 0xc5, 0x40, 0x39, 0x14, 0xac, 0xe4, 0xa0, 0x64, 0xe9, + 0xdc, 0x77, 0xa2, 0xc1, 0x71, 0x1f, 0x6b, 0x2e, 0x25, 0x38, 0x23, 0xa3, + 0xff, 0x00, 0x8d, 0x2c, 0x50, 0xdb, 0x81, 0xba, 0x59, 0x0b, 0x7b, 0x28, + 0xa8, 0xd6, 0x4d, 0xd9, 0x04, 0x64, 0x13, 0xfa, 0x52, 0xf9, 0x65, 0x39, + 0x5e, 0x47, 0xa5, 0x34, 0xac, 0x36, 0xee, 0x5a, 0x17, 0x91, 0xc2, 0x31, + 0x6d, 0x02, 0x21, 0xfe, 0xf3, 0x72, 0x6a, 0xbc, 0xd2, 0xcb, 0x39, 0xcc, + 0x8e, 0x58, 0xfb, 0x9a, 0x6f, 0xde, 0x1c, 0x51, 0x9f, 0x6a, 0xa2, 0x06, + 0x3a, 0x6e, 0x18, 0x03, 0x9f, 0x6a, 0x91, 0x54, 0x22, 0xfc, 0xa3, 0x9c, + 0x7a, 0x52, 0x83, 0x4e, 0x07, 0x14, 0xc4, 0x54, 0x5c, 0xca, 0xdf, 0x39, + 0x70, 0x3d, 0x30, 0x45, 0x58, 0x8e, 0x52, 0xa0, 0xe7, 0x90, 0x3a, 0x7a, + 0xd4, 0x80, 0xf3, 0xed, 0x41, 0x8d, 0x18, 0xe4, 0xa8, 0xcd, 0x01, 0x71, + 0x96, 0xc5, 0x9b, 0x7b, 0x31, 0x38, 0x27, 0x8c, 0xd4, 0xae, 0xe5, 0x40, + 0xc2, 0xee, 0xf5, 0xa5, 0xca, 0xa8, 0xf4, 0x15, 0x13, 0x4e, 0xb8, 0xc0, + 0xce, 0x0f, 0x19, 0x14, 0xec, 0x21, 0xcd, 0x2f, 0xc9, 0x95, 0x5c, 0xfa, + 0x8e, 0xe2, 0x9d, 0x6e, 0x84, 0x0d, 0xcd, 0x91, 0xdb, 0x15, 0x12, 0x42, + 0xc3, 0xe6, 0xcf, 0xcc, 0x3a, 0x67, 0xb8, 0xa9, 0xd0, 0xbe, 0x09, 0x6e, + 0x9d, 0xb3, 0x4c, 0x07, 0xd3, 0xb3, 0x4d, 0x07, 0x3d, 0x31, 0x4e, 0xe2, + 0x90, 0x0e, 0x0c, 0x7a, 0x52, 0x86, 0xf4, 0xa6, 0x83, 0x46, 0x7d, 0x68, + 0x01, 0xac, 0xaa, 0x19, 0xa4, 0xe3, 0x27, 0xa9, 0x27, 0x8a, 0x62, 0x06, + 0x2a, 0x00, 0xd8, 0x57, 0xaf, 0x06, 0x89, 0x26, 0x55, 0x60, 0x8c, 0x0e, + 0x08, 0xf4, 0xe2, 0x99, 0x16, 0x1d, 0xc3, 0x2f, 0x4e, 0xc3, 0x34, 0x58, + 0x64, 0x97, 0x2d, 0x88, 0x0a, 0x8e, 0xac, 0x76, 0x8a, 0x91, 0x00, 0x50, + 0x17, 0xd2, 0xa0, 0x90, 0x99, 0x2e, 0xa3, 0x4e, 0xc9, 0xf3, 0x1a, 0x9c, + 0x30, 0xcd, 0x52, 0x42, 0x63, 0xf3, 0x47, 0x5c, 0x52, 0x53, 0x73, 0x40, + 0x87, 0x13, 0x4d, 0xe9, 0x4b, 0x4d, 0xcf, 0x3c, 0x53, 0x01, 0x7a, 0xd2, + 0x1a, 0x53, 0xde, 0x90, 0x8e, 0x28, 0x01, 0x33, 0x46, 0x7b, 0x52, 0x73, + 0xe9, 0x4b, 0x40, 0x09, 0x8a, 0x0f, 0xd2, 0x83, 0x49, 0xce, 0x33, 0x40, + 0x0d, 0x23, 0x26, 0x94, 0x63, 0x38, 0x3c, 0x1a, 0x5c, 0xd2, 0x1e, 0x45, + 0x02, 0x17, 0x91, 0x40, 0x14, 0x8a, 0xc7, 0xa1, 0xa5, 0xdd, 0x9a, 0x00, + 0x50, 0x69, 0x7b, 0xd3, 0x79, 0x14, 0x67, 0x3d, 0xe8, 0x01, 0xf4, 0x66, + 0x9b, 0x9a, 0x29, 0x80, 0xec, 0xd3, 0x4e, 0x4e, 0x39, 0x23, 0xe9, 0x4a, + 0x28, 0xce, 0x28, 0x10, 0x51, 0xf4, 0xa6, 0x93, 0x4d, 0x19, 0x6e, 0x9d, + 0x3d, 0x69, 0x0c, 0x52, 0x7b, 0x0e, 0xb4, 0x01, 0x8e, 0xbc, 0x9a, 0x5d, + 0xa3, 0x83, 0xe9, 0x47, 0x43, 0x4c, 0x41, 0x8a, 0x6d, 0x2e, 0x69, 0x33, + 0x49, 0x8c, 0x6b, 0x2e, 0x48, 0x3c, 0xf1, 0x46, 0x07, 0x5a, 0x7d, 0x25, + 0x48, 0xc6, 0x8f, 0xa7, 0x34, 0xbf, 0x29, 0xea, 0xa2, 0x96, 0x8a, 0x00, + 0x6e, 0x38, 0xf9, 0x78, 0xa4, 0xcb, 0x7f, 0x7d, 0xbf, 0x3a, 0x7d, 0x36, + 0x90, 0x5c, 0x68, 0xc8, 0x24, 0x86, 0x6e, 0x7a, 0xf3, 0x4e, 0xcb, 0x73, + 0x97, 0x6f, 0xce, 0x8c, 0x66, 0x82, 0x30, 0x28, 0x1d, 0xc4, 0xe9, 0x43, + 0x74, 0xc0, 0xa6, 0x8f, 0x7a, 0x53, 0xf7, 0x85, 0x3b, 0x08, 0x5a, 0x51, + 0x48, 0x4e, 0x3a, 0xd3, 0x86, 0x0f, 0x4a, 0x40, 0x3b, 0x07, 0x1c, 0x51, + 0x96, 0xcf, 0x23, 0x8f, 0x5a, 0x4c, 0x9a, 0x09, 0xcd, 0x3b, 0x00, 0xd6, + 0x50, 0xdd, 0x69, 0x51, 0xc8, 0xe1, 0xa9, 0x40, 0x1f, 0x8d, 0x23, 0x0e, + 0xfd, 0xe8, 0x11, 0x28, 0xfa, 0xd1, 0xc6, 0x6a, 0x25, 0x39, 0xf6, 0xa7, + 0xf1, 0xdb, 0x9a, 0xa1, 0x0f, 0xc8, 0xa5, 0xa6, 0x62, 0x9c, 0x3a, 0x50, + 0x02, 0xe2, 0x8e, 0x7a, 0x13, 0x4a, 0x28, 0x63, 0x40, 0x84, 0xc5, 0x18, + 0xa5, 0x3d, 0x29, 0x3b, 0xfa, 0x53, 0x01, 0x33, 0x81, 0x46, 0xe0, 0x4e, + 0x01, 0xe6, 0x96, 0x9b, 0xf2, 0x86, 0xe0, 0x0d, 0xd4, 0x00, 0xfc, 0x80, + 0x29, 0xac, 0xa1, 0xc7, 0x23, 0x81, 0x49, 0x8e, 0x72, 0x79, 0xa7, 0x50, + 0x20, 0x50, 0x07, 0x6a, 0x70, 0xa6, 0xe3, 0x8a, 0x51, 0x9a, 0x00, 0x3b, + 0xf4, 0xa3, 0x34, 0x66, 0x93, 0x1e, 0xf4, 0x0c, 0x52, 0x68, 0xce, 0x29, + 0xa4, 0xd1, 0x9e, 0x94, 0x08, 0x5c, 0xd0, 0x79, 0xa4, 0xa4, 0x27, 0x14, + 0xc0, 0x40, 0x00, 0xcf, 0x1d, 0x69, 0xd9, 0xa6, 0x97, 0xc9, 0xa0, 0x9a, + 0x00, 0x0e, 0x48, 0xa3, 0x18, 0xef, 0xc5, 0x04, 0x8a, 0x4c, 0xfa, 0x74, + 0xa6, 0x21, 0x73, 0x48, 0xd9, 0xc7, 0x03, 0x9a, 0x19, 0xb0, 0x33, 0x49, + 0x92, 0x4d, 0x00, 0x35, 0x5b, 0x65, 0xca, 0x7a, 0x30, 0xc1, 0xfa, 0xd5, + 0x8b, 0x82, 0x42, 0x02, 0x06, 0x6a, 0xb4, 0xe0, 0x98, 0xb7, 0x0f, 0xbc, + 0xa7, 0x70, 0xab, 0x68, 0xde, 0x64, 0x6a, 0xeb, 0xdc, 0x52, 0x1a, 0x08, + 0xca, 0x95, 0xc0, 0xea, 0x07, 0x34, 0x82, 0x55, 0x25, 0x81, 0x38, 0xc7, + 0x50, 0x6a, 0x33, 0x2b, 0x89, 0x76, 0x92, 0xb8, 0xfa, 0x1e, 0x95, 0x31, + 0x19, 0xe4, 0x8c, 0xd0, 0x05, 0x57, 0x0b, 0xe6, 0x02, 0x99, 0x20, 0x7a, + 0x0c, 0xd5, 0x95, 0x20, 0x28, 0x38, 0xa0, 0xee, 0x0a, 0x76, 0xfe, 0x95, + 0x0e, 0x43, 0x70, 0x5b, 0xe6, 0xcf, 0x42, 0x68, 0x02, 0x56, 0x5d, 0xe4, + 0x60, 0xf4, 0xa1, 0x43, 0x70, 0x0f, 0xdd, 0x1e, 0xbd, 0x69, 0x8b, 0x1b, + 0x09, 0x32, 0x36, 0xa8, 0x23, 0x9c, 0x77, 0xa9, 0x31, 0x81, 0xc9, 0xcd, + 0x00, 0x36, 0x69, 0x3c, 0xa8, 0xf2, 0x07, 0x26, 0xab, 0x09, 0x9f, 0x1c, + 0x75, 0x6e, 0xa6, 0xae, 0x71, 0x8c, 0x1e, 0x68, 0xe0, 0x2f, 0x00, 0x0a, + 0x06, 0x54, 0x54, 0x61, 0x26, 0x46, 0x72, 0x7a, 0x9a, 0xb2, 0x69, 0x0e, + 0x7b, 0x53, 0x4b, 0x73, 0x48, 0x07, 0x52, 0x0e, 0x38, 0xcd, 0x19, 0xf6, + 0xa3, 0xad, 0x00, 0x42, 0xca, 0xcd, 0x28, 0x2e, 0xbb, 0x80, 0x18, 0xe0, + 0x75, 0xa5, 0x01, 0x63, 0x27, 0x07, 0x00, 0xf6, 0xa9, 0x3a, 0x7a, 0x9a, + 0x61, 0x8d, 0x4b, 0x03, 0x83, 0xeb, 0x8a, 0x00, 0x33, 0xb8, 0x75, 0xa8, + 0xa7, 0x89, 0x0a, 0x12, 0x40, 0xdd, 0xd8, 0x8e, 0xb5, 0x23, 0x36, 0x09, + 0x0b, 0xf3, 0x1f, 0x4a, 0x45, 0x52, 0x0e, 0x5b, 0x96, 0xfe, 0x54, 0x0e, + 0xc4, 0x30, 0x5a, 0x9e, 0x1e, 0x63, 0xb9, 0x87, 0x41, 0xe9, 0x56, 0xc6, + 0x29, 0x88, 0xfb, 0x86, 0x70, 0x4d, 0x48, 0xb8, 0x3c, 0x9e, 0x2a, 0x58, + 0x01, 0x19, 0xa5, 0x0a, 0x40, 0xc5, 0x38, 0x0a, 0x42, 0x39, 0xa0, 0x08, + 0x63, 0x59, 0x06, 0x43, 0xb0, 0x6f, 0x4c, 0x0a, 0x47, 0x2b, 0xce, 0x39, + 0x23, 0xb0, 0xa9, 0x88, 0xc0, 0xa6, 0x95, 0x52, 0x7e, 0xed, 0x2b, 0x0c, + 0x84, 0x15, 0xe3, 0x92, 0x0f, 0xbd, 0x29, 0x5e, 0x7a, 0xd3, 0x9a, 0x35, + 0x23, 0xb9, 0xf6, 0xa5, 0xc0, 0xe2, 0x93, 0x43, 0x4c, 0x66, 0x30, 0x69, + 0x3b, 0xd3, 0xc8, 0xa6, 0x91, 0x4a, 0xc3, 0xb8, 0x99, 0xf6, 0xa8, 0xa4, + 0x94, 0x27, 0x04, 0x12, 0x71, 0x9a, 0x79, 0x50, 0xc0, 0xa9, 0xe9, 0x50, + 0x4a, 0x0c, 0x64, 0x29, 0x39, 0x18, 0xe0, 0x9a, 0x56, 0x0b, 0x92, 0x2c, + 0x8a, 0x58, 0x2e, 0x0e, 0x48, 0xcd, 0x3f, 0x26, 0xab, 0xc4, 0xc1, 0x5c, + 0x92, 0x4b, 0x9c, 0x63, 0x8a, 0x94, 0x17, 0xdd, 0xce, 0x00, 0xf4, 0xa4, + 0xd0, 0xee, 0x3e, 0x99, 0xbd, 0x4e, 0xe0, 0x0f, 0x2b, 0xda, 0x95, 0x89, + 0x1c, 0x85, 0x27, 0xe9, 0x51, 0x3e, 0x0e, 0x1b, 0x6b, 0x2b, 0x8e, 0xf8, + 0xa2, 0xc3, 0xb8, 0xe4, 0x93, 0x73, 0x01, 0x8e, 0xa3, 0x35, 0x2a, 0xb0, + 0x61, 0xf2, 0x9e, 0x95, 0x54, 0xf0, 0xbf, 0x29, 0x25, 0xbe, 0x95, 0x65, + 0x40, 0x54, 0x00, 0x50, 0xd0, 0x26, 0x23, 0xa8, 0x65, 0x2a, 0x7b, 0x8a, + 0x8d, 0x61, 0x1f, 0x26, 0x78, 0xc0, 0xe4, 0x54, 0xd8, 0xcd, 0x21, 0x14, + 0x00, 0xc3, 0x1f, 0x39, 0x3c, 0xd3, 0xb0, 0x17, 0x27, 0x3f, 0x51, 0x4e, + 0x04, 0x74, 0xa4, 0x64, 0x0d, 0x8e, 0xc4, 0x74, 0x34, 0x0c, 0x8f, 0xcc, + 0x5c, 0x02, 0xa3, 0x82, 0x7a, 0xd2, 0x12, 0x55, 0x94, 0xee, 0xca, 0x9e, + 0x0f, 0xb5, 0x49, 0xb0, 0x03, 0x9f, 0x5a, 0x5c, 0x7e, 0x54, 0xc4, 0x35, + 0x93, 0x3c, 0xa9, 0xc3, 0x53, 0x03, 0x73, 0xb5, 0x86, 0x1a, 0xa4, 0x26, + 0x86, 0xc3, 0x0c, 0x30, 0xc8, 0xa0, 0x06, 0x74, 0xa5, 0x5f, 0x5a, 0x43, + 0x1b, 0x27, 0x2b, 0xf3, 0x2f, 0xa1, 0xeb, 0x4a, 0xac, 0xa7, 0xeb, 0xe9, + 0x54, 0x48, 0xfe, 0xc7, 0xd7, 0x15, 0x0c, 0x4e, 0x48, 0xc3, 0x33, 0x6e, + 0x15, 0x38, 0x14, 0x32, 0x64, 0x72, 0x28, 0x02, 0x19, 0x62, 0x67, 0x50, + 0xc4, 0xf0, 0x39, 0xe3, 0x8a, 0x96, 0x25, 0x21, 0x73, 0xbb, 0x70, 0x3d, + 0x29, 0x36, 0x0e, 0x84, 0x12, 0x3e, 0xb4, 0xe1, 0x4c, 0x07, 0x66, 0x82, + 0x04, 0x8b, 0xb5, 0x89, 0x14, 0x94, 0xa2, 0x81, 0x0c, 0x36, 0x80, 0x2f, + 0xca, 0x31, 0xfe, 0xe9, 0xa8, 0x61, 0xf3, 0x63, 0x73, 0x87, 0x66, 0x1d, + 0xc3, 0x55, 0xa0, 0x58, 0x74, 0xa5, 0xdc, 0x69, 0xea, 0x31, 0xb2, 0x4c, + 0x12, 0x2d, 0xe5, 0x49, 0x39, 0xc6, 0xda, 0x6a, 0xdd, 0xa9, 0xc6, 0xe4, + 0x64, 0xcf, 0xad, 0x3d, 0x8a, 0xb6, 0x37, 0x28, 0x38, 0xe9, 0x43, 0x04, + 0x28, 0x7a, 0x0f, 0x7a, 0x40, 0x32, 0x79, 0x43, 0x0d, 0x83, 0x97, 0xea, + 0x3b, 0x54, 0x96, 0xe8, 0xe1, 0x33, 0x2b, 0x64, 0x81, 0x50, 0x23, 0x97, + 0x93, 0x00, 0xa3, 0x28, 0xef, 0x8e, 0x6a, 0x5b, 0x99, 0x7c, 0xab, 0x56, + 0x23, 0xa9, 0xe0, 0x53, 0x01, 0x90, 0x1d, 0xf2, 0xcb, 0x2f, 0xa9, 0xc0, + 0xab, 0x00, 0x77, 0x35, 0x0c, 0x09, 0xe5, 0xc2, 0xab, 0x9e, 0xdc, 0xd4, + 0xa0, 0xd5, 0x12, 0xf7, 0x1e, 0x78, 0xed, 0x49, 0x4d, 0xcf, 0x34, 0x02, + 0x69, 0x00, 0xee, 0x4d, 0x18, 0xc5, 0x33, 0x71, 0x07, 0xa5, 0x29, 0x63, + 0xd7, 0x14, 0x00, 0xfa, 0x33, 0x51, 0xee, 0x34, 0x03, 0xd7, 0x34, 0x00, + 0xfe, 0xf4, 0x9d, 0xe9, 0xb9, 0xa3, 0x9a, 0x00, 0x53, 0x9a, 0x43, 0x9f, + 0x5a, 0x4e, 0x68, 0xa0, 0x04, 0xa0, 0xe3, 0x34, 0xd0, 0x4e, 0xe2, 0x0a, + 0xf4, 0xef, 0xeb, 0x4f, 0xea, 0x33, 0x40, 0x07, 0x6e, 0x69, 0x3a, 0x1a, + 0x5c, 0xd1, 0x92, 0x69, 0x80, 0xa4, 0x71, 0x49, 0x4c, 0x78, 0x8b, 0x9c, + 0xe4, 0x8f, 0x60, 0x7a, 0xd4, 0x80, 0xf6, 0xe9, 0xf5, 0xa0, 0x42, 0x8e, + 0xb4, 0xa7, 0x8a, 0x31, 0xc5, 0x35, 0x98, 0x0e, 0xbf, 0x95, 0x00, 0x29, + 0x38, 0xa8, 0xcb, 0x9c, 0xe3, 0xbf, 0xb5, 0x28, 0x0c, 0xfd, 0x78, 0x14, + 0xf0, 0xa1, 0x47, 0x02, 0x80, 0x1b, 0xb4, 0xf5, 0x3f, 0x95, 0x3b, 0x82, + 0x29, 0x39, 0xa3, 0xbd, 0x30, 0x02, 0x31, 0xde, 0x93, 0x9c, 0xd3, 0xa9, + 0x3a, 0x0e, 0xb4, 0x80, 0x4c, 0x52, 0x74, 0xa5, 0xa0, 0xd0, 0x02, 0x66, + 0x8a, 0x43, 0xd2, 0x8c, 0xd2, 0x18, 0xb8, 0x14, 0x52, 0x50, 0x29, 0x00, + 0x63, 0xde, 0x8a, 0x5c, 0xd2, 0x66, 0x90, 0x05, 0x34, 0xf4, 0x34, 0xfa, + 0x63, 0x77, 0xa0, 0x06, 0x8e, 0x94, 0x03, 0x93, 0xd2, 0x90, 0xf4, 0x03, + 0xb9, 0xa5, 0x1d, 0x2a, 0x80, 0x77, 0x14, 0xa0, 0x71, 0x40, 0x1c, 0x52, + 0x81, 0x83, 0x45, 0x80, 0x3b, 0xd2, 0xf4, 0xa4, 0x34, 0x1f, 0x6a, 0x2c, + 0x02, 0x8a, 0x0d, 0x20, 0xc9, 0xf4, 0xa5, 0xef, 0x40, 0x0c, 0x2b, 0x9e, + 0x47, 0x06, 0x9c, 0x8f, 0x9e, 0x0f, 0x04, 0x75, 0xa5, 0xa1, 0x97, 0x70, + 0xe3, 0x82, 0x3b, 0xd0, 0x21, 0xe3, 0xb5, 0x2e, 0x47, 0x4c, 0xd4, 0x42, + 0x4e, 0xcd, 0xd7, 0xf9, 0xd3, 0xc1, 0x06, 0x98, 0x87, 0xe4, 0xd2, 0x51, + 0xc7, 0xad, 0x26, 0x7f, 0x1a, 0x00, 0x76, 0x7b, 0x50, 0xce, 0x07, 0xd6, + 0x9b, 0xcf, 0x73, 0xf9, 0x51, 0x8c, 0x7e, 0x34, 0x00, 0xa0, 0x93, 0xcd, + 0x2e, 0x71, 0x4d, 0x3e, 0x9d, 0xbd, 0x68, 0x1f, 0x7b, 0xad, 0x00, 0x3f, + 0x9a, 0x38, 0xcd, 0x34, 0x1a, 0x50, 0x71, 0x40, 0x85, 0x19, 0xc7, 0x14, + 0x67, 0xd6, 0x8c, 0xfb, 0xd3, 0x49, 0xa0, 0x05, 0xc8, 0x14, 0x9b, 0x86, + 0x69, 0xa7, 0x34, 0x81, 0x7a, 0xd3, 0x01, 0xd9, 0xc5, 0x34, 0x92, 0x4f, + 0xa6, 0x28, 0xc7, 0x14, 0xdc, 0xf6, 0x34, 0x00, 0xfd, 0xd9, 0xa4, 0xdd, + 0x91, 0x83, 0x4d, 0x27, 0xd2, 0xae, 0x69, 0xba, 0x65, 0xc6, 0xab, 0x39, + 0x8e, 0x1d, 0xa0, 0x28, 0xcb, 0x33, 0x1c, 0x05, 0x14, 0x36, 0x92, 0xbb, + 0x04, 0x9b, 0x76, 0x45, 0x50, 0xc0, 0x52, 0x67, 0x9a, 0xe9, 0x93, 0xc3, + 0x36, 0xe8, 0x08, 0x7b, 0x89, 0x25, 0x23, 0xaf, 0x94, 0x9c, 0x0a, 0x63, + 0x68, 0x16, 0x12, 0x1d, 0x91, 0x5c, 0xc8, 0x92, 0x76, 0x0e, 0xbd, 0x68, + 0xbe, 0x97, 0x0e, 0x57, 0x7b, 0x1c, 0xe6, 0x79, 0xa3, 0xa8, 0xab, 0x57, + 0xda, 0x7c, 0x96, 0x32, 0x6c, 0x72, 0x08, 0x3d, 0x18, 0x77, 0xaa, 0xbd, + 0x05, 0x3b, 0x88, 0x33, 0xc6, 0x0d, 0x1d, 0xb3, 0x49, 0xd6, 0x83, 0x81, + 0xde, 0x80, 0x17, 0x1b, 0xb8, 0xf5, 0xa5, 0xb3, 0x72, 0xa1, 0xe0, 0x3d, + 0x50, 0xf1, 0xf4, 0xa4, 0x06, 0xa1, 0x91, 0xcc, 0x17, 0x09, 0x2f, 0x63, + 0xf2, 0xb5, 0x00, 0x8b, 0x52, 0x8d, 0xac, 0xae, 0xa0, 0x13, 0x9a, 0x78, + 0x97, 0x0e, 0xa3, 0x07, 0x0d, 0xed, 0xd2, 0x9c, 0x54, 0x32, 0x8c, 0x12, + 0x3b, 0xf1, 0x51, 0x95, 0x44, 0x60, 0x4b, 0x61, 0xb1, 0xeb, 0xd6, 0x90, + 0xc9, 0x1f, 0x0a, 0x32, 0x4e, 0x2a, 0x22, 0xc8, 0x57, 0xe5, 0x61, 0x9a, + 0x7b, 0x04, 0x95, 0x06, 0x79, 0x53, 0xd0, 0xd2, 0x79, 0x4b, 0x90, 0x4e, + 0x7f, 0x3a, 0x00, 0x88, 0x7c, 0xa4, 0x90, 0xc4, 0xb1, 0xa9, 0x54, 0xb1, + 0x03, 0x2b, 0xc7, 0xb9, 0xa8, 0xe5, 0x88, 0x0d, 0xcc, 0x37, 0x73, 0xc7, + 0x14, 0xc8, 0xa4, 0xd9, 0xf2, 0x92, 0x36, 0x0e, 0x87, 0xde, 0x80, 0x2c, + 0x1e, 0x68, 0xce, 0x05, 0x34, 0xb2, 0xf7, 0x61, 0x40, 0x3b, 0xba, 0x73, + 0x40, 0x0e, 0xcf, 0x34, 0xd6, 0x03, 0x14, 0x7e, 0x14, 0x50, 0x01, 0xb4, + 0x81, 0xed, 0x46, 0x7d, 0xa9, 0xac, 0xea, 0x83, 0x2c, 0xd8, 0xa8, 0xbc, + 0xe6, 0x90, 0xe1, 0x06, 0x07, 0xa9, 0xa4, 0x32, 0x62, 0xdb, 0x46, 0x49, + 0xa6, 0x65, 0x9f, 0xfd, 0x95, 0xfd, 0x69, 0xaa, 0xa3, 0x3c, 0xf2, 0x7d, + 0x4d, 0x49, 0x4a, 0xe3, 0xb0, 0xd5, 0x00, 0x70, 0x06, 0x29, 0x59, 0x5d, + 0x58, 0x15, 0xf9, 0x97, 0xb8, 0xa7, 0x63, 0xd2, 0x9d, 0x9c, 0x63, 0x26, + 0x90, 0xc8, 0x58, 0xf2, 0x3c, 0xb5, 0x21, 0xb3, 0xe9, 0xc5, 0x38, 0xcc, + 0x01, 0xef, 0xc1, 0xc7, 0x15, 0x26, 0x69, 0x0a, 0xab, 0xe3, 0x7f, 0x6f, + 0x7a, 0x04, 0x39, 0x24, 0x0e, 0x09, 0x07, 0xd8, 0xd0, 0xee, 0x23, 0x52, + 0xcc, 0x78, 0x14, 0xd4, 0x54, 0x50, 0x42, 0xf1, 0xcd, 0x12, 0x45, 0xe6, + 0x15, 0xc3, 0x63, 0x07, 0x38, 0x3d, 0x0d, 0x00, 0x27, 0x98, 0x31, 0x92, + 0x08, 0xcf, 0xad, 0x3c, 0x73, 0x4c, 0x74, 0x77, 0x52, 0xa4, 0xae, 0x0f, + 0x1c, 0x0a, 0x8e, 0x28, 0x98, 0x12, 0x5c, 0xb0, 0xf4, 0x19, 0xa0, 0x09, + 0xf1, 0x8e, 0x69, 0x31, 0x8a, 0x82, 0x63, 0x3e, 0xdc, 0xaa, 0xe0, 0x0f, + 0xce, 0x9d, 0x21, 0x90, 0x84, 0x09, 0x9c, 0x93, 0xc9, 0x3d, 0xa8, 0x01, + 0xe7, 0xf2, 0xa4, 0xdb, 0x9e, 0x3b, 0x53, 0x54, 0xbf, 0x98, 0x55, 0xdc, + 0x74, 0xfb, 0xb4, 0xe2, 0x42, 0x8e, 0x4d, 0x2b, 0x0c, 0x6e, 0x30, 0x7d, + 0xa9, 0x0a, 0x83, 0xd6, 0x9e, 0x08, 0x20, 0x1a, 0x6c, 0x92, 0x6d, 0x21, + 0x55, 0x77, 0x31, 0xfd, 0x29, 0x58, 0x2e, 0x37, 0x6a, 0xf6, 0x02, 0x9b, + 0xb0, 0x1a, 0x1a, 0x60, 0x13, 0xa6, 0x1b, 0xfb, 0xbd, 0xe8, 0x8e, 0x42, + 0xe4, 0x82, 0x36, 0xb8, 0xea, 0x28, 0xb0, 0xee, 0x3b, 0x1c, 0x71, 0x48, + 0x78, 0x3d, 0x69, 0x86, 0x57, 0x46, 0xd8, 0x53, 0x25, 0x8f, 0xcb, 0x8e, + 0x86, 0xa5, 0xc1, 0x03, 0x9e, 0xb4, 0xac, 0x17, 0x18, 0x3e, 0xb4, 0xb8, + 0xeb, 0x4a, 0x39, 0x3d, 0x29, 0xb2, 0x2b, 0x0c, 0xb4, 0x7c, 0x92, 0x3e, + 0xe9, 0xa6, 0x3b, 0x87, 0xca, 0x13, 0x71, 0x23, 0x03, 0xbd, 0x04, 0xa8, + 0x65, 0xc9, 0xfb, 0xdd, 0x2a, 0x1f, 0xb2, 0xb0, 0x87, 0x6a, 0xb6, 0x09, + 0x18, 0x60, 0x7a, 0x55, 0x86, 0x88, 0x3c, 0x6a, 0xbd, 0x36, 0xe0, 0x83, + 0xe9, 0x4a, 0xc1, 0x72, 0x2d, 0xff, 0x00, 0x39, 0xdc, 0xb8, 0x03, 0xd8, + 0x9a, 0x49, 0x1c, 0xf9, 0x7b, 0xe3, 0x39, 0xc7, 0x6f, 0x5a, 0x9d, 0xa2, + 0x0f, 0x8c, 0x8f, 0xd6, 0x93, 0x66, 0xde, 0x00, 0x02, 0x81, 0xdc, 0x81, + 0x84, 0x9b, 0xd2, 0x41, 0xd3, 0xa1, 0x03, 0xd2, 0xa5, 0xc7, 0xbd, 0x2e, + 0xe1, 0x9d, 0xb9, 0x19, 0xf4, 0xa8, 0xd9, 0xf0, 0xe5, 0x00, 0x2c, 0x7b, + 0xe3, 0xb5, 0x3b, 0x08, 0x7e, 0x07, 0x4a, 0x09, 0x0a, 0xb9, 0x63, 0x81, + 0x50, 0xca, 0x65, 0x5d, 0xac, 0xac, 0x4a, 0x8f, 0xbc, 0x07, 0x5a, 0x5d, + 0xf1, 0xce, 0x81, 0x8f, 0x03, 0x3c, 0x73, 0xcd, 0x16, 0x01, 0xed, 0x21, + 0xdc, 0xa0, 0x03, 0x82, 0x33, 0xbb, 0x14, 0x8f, 0xe5, 0x31, 0xc3, 0x70, + 0x7b, 0x67, 0x8a, 0x6b, 0xa1, 0xd9, 0x98, 0xd9, 0x89, 0xed, 0xcd, 0x28, + 0x40, 0xfb, 0x7c, 0xc6, 0xdc, 0xc3, 0x9c, 0x50, 0x03, 0xc0, 0x74, 0xe9, + 0xf3, 0x0f, 0xd6, 0x94, 0x48, 0x0f, 0x04, 0xe0, 0xfa, 0x1a, 0x70, 0x53, + 0x8a, 0x66, 0xf4, 0x6c, 0x86, 0x03, 0x00, 0xe3, 0x9a, 0x2c, 0x17, 0x1d, + 0xd7, 0xa5, 0x1c, 0xf7, 0xa3, 0xca, 0x03, 0xee, 0xb1, 0x14, 0x7c, 0xe0, + 0xe3, 0x1b, 0xbe, 0x94, 0xc4, 0x25, 0x28, 0x27, 0xeb, 0x4d, 0x2c, 0xa3, + 0xa9, 0xdb, 0xf5, 0xa7, 0x67, 0x3d, 0xf2, 0x29, 0x80, 0xbf, 0x5a, 0x38, + 0x3d, 0xe9, 0x09, 0xa2, 0x98, 0x0a, 0x70, 0x06, 0x4e, 0x78, 0xa8, 0xa4, + 0x93, 0x23, 0x08, 0xe0, 0x13, 0xd9, 0x81, 0xa9, 0x38, 0x23, 0x93, 0x9a, + 0x60, 0x89, 0x43, 0x6e, 0x03, 0x9f, 0x5c, 0xd0, 0x03, 0xa0, 0x4d, 0x89, + 0xf3, 0xe0, 0x1e, 0xf8, 0xa8, 0x64, 0x75, 0xb9, 0xbb, 0x8e, 0x35, 0x39, + 0x54, 0xf9, 0x9a, 0xac, 0x33, 0x08, 0xe3, 0x2e, 0xc7, 0x80, 0x33, 0x55, + 0x6c, 0x86, 0xed, 0xf3, 0x10, 0x32, 0xe7, 0xf4, 0xa1, 0x0f, 0x64, 0x5b, + 0xcf, 0x71, 0x4b, 0xc1, 0x14, 0xd1, 0x4b, 0xbb, 0x14, 0xc8, 0x17, 0x18, + 0xeb, 0x49, 0x4b, 0x9e, 0x29, 0x3b, 0x7b, 0xd0, 0x07, 0x4f, 0xe1, 0xed, + 0x1e, 0xd2, 0x7b, 0x3f, 0xb5, 0xdc, 0x0f, 0x35, 0xb3, 0xc2, 0x9e, 0x82, + 0xb4, 0xed, 0xec, 0xee, 0x6f, 0x53, 0xcc, 0xb7, 0xd3, 0x2d, 0x56, 0x02, + 0x48, 0x1b, 0xf0, 0x0f, 0x15, 0xc7, 0xd9, 0xea, 0x17, 0x36, 0x24, 0x98, + 0x1c, 0x80, 0x7a, 0xa9, 0xe4, 0x1a, 0xd1, 0x1e, 0x25, 0x9f, 0x04, 0x34, + 0x11, 0x31, 0x3f, 0x5a, 0x95, 0x1d, 0x6e, 0xf5, 0x36, 0x52, 0x8d, 0xb4, + 0xd0, 0xd5, 0xba, 0xd1, 0x6d, 0xee, 0xa2, 0x94, 0xac, 0x42, 0x19, 0x50, + 0x1c, 0x94, 0x39, 0x5c, 0x8a, 0xe3, 0xd8, 0x10, 0x4a, 0xe7, 0xa5, 0x69, + 0xde, 0x6b, 0x97, 0x77, 0x49, 0xe5, 0xe5, 0x63, 0x43, 0xd4, 0x27, 0x15, + 0x94, 0xeb, 0xb8, 0x60, 0xe7, 0xf0, 0xa2, 0x29, 0xa2, 0x26, 0xd3, 0xd8, + 0x78, 0xe9, 0xcd, 0x2e, 0x78, 0xa8, 0xa3, 0x8f, 0xca, 0x42, 0xa0, 0x9f, + 0x5e, 0x69, 0xd9, 0xc0, 0xeb, 0x9a, 0xa2, 0x47, 0x1a, 0x3a, 0x8a, 0x41, + 0xcd, 0x1c, 0xf6, 0xa0, 0x05, 0xed, 0xd2, 0x93, 0x9a, 0x51, 0x47, 0x18, + 0xeb, 0x40, 0x06, 0x31, 0xda, 0x94, 0x75, 0xa6, 0x17, 0x03, 0xbd, 0x2a, + 0x12, 0xe0, 0x95, 0x2b, 0x8f, 0x6e, 0x68, 0x13, 0x1e, 0x71, 0x49, 0xf2, + 0xb1, 0xe3, 0x9a, 0x36, 0x0e, 0xfc, 0xfd, 0x69, 0xe2, 0x9d, 0x89, 0xb8, + 0xc2, 0xaf, 0x8c, 0x75, 0xfa, 0x52, 0x05, 0x03, 0x18, 0xeb, 0x53, 0x64, + 0x67, 0xad, 0x21, 0x50, 0xdd, 0x7f, 0x3a, 0x02, 0xe3, 0x7b, 0x7a, 0x53, + 0x4f, 0x27, 0x8a, 0x76, 0xc6, 0x1f, 0xed, 0x0a, 0x43, 0x81, 0xd3, 0x8f, + 0xad, 0x03, 0x0c, 0x71, 0xc5, 0x26, 0x29, 0x69, 0x0d, 0x00, 0x1c, 0xf5, + 0xa4, 0x24, 0x74, 0xa7, 0x71, 0x8a, 0x6e, 0x79, 0xa4, 0x31, 0x69, 0xad, + 0x9c, 0x71, 0x4a, 0x49, 0xcd, 0x21, 0x6e, 0x28, 0x01, 0xb8, 0x38, 0xe7, + 0xad, 0x28, 0xe9, 0x49, 0x9e, 0x7a, 0xd2, 0xd0, 0x01, 0xd6, 0x8c, 0xe2, + 0x83, 0x9a, 0x43, 0xc7, 0x14, 0x86, 0x19, 0xed, 0x47, 0xbd, 0x36, 0x8a, + 0x00, 0x71, 0x38, 0xa6, 0xb1, 0xe3, 0x83, 0x41, 0xe0, 0x52, 0x1a, 0x00, + 0x46, 0xe3, 0x6f, 0x19, 0xe6, 0x97, 0x20, 0x73, 0x48, 0xfc, 0x01, 0x48, + 0xd9, 0xc7, 0x4a, 0x00, 0x78, 0x6c, 0x8e, 0xb4, 0xbb, 0xce, 0x69, 0x83, + 0xf2, 0xa7, 0x29, 0x5c, 0xe3, 0x22, 0x98, 0x85, 0xeb, 0x4b, 0x83, 0xeb, + 0x46, 0xe1, 0x9f, 0x5f, 0xa5, 0x19, 0x24, 0x70, 0xad, 0xf9, 0x50, 0x00, + 0x38, 0xa5, 0x07, 0x02, 0x80, 0xaf, 0xe9, 0xf9, 0x9a, 0x70, 0x46, 0xee, + 0x45, 0x01, 0x71, 0x33, 0x9a, 0x0b, 0x60, 0x73, 0xc5, 0x3b, 0xca, 0x5e, + 0xec, 0x4f, 0xe3, 0x4a, 0x23, 0x41, 0xd0, 0x50, 0x2b, 0x90, 0x92, 0x1b, + 0xb6, 0x45, 0x00, 0xb2, 0x03, 0x9e, 0x47, 0xeb, 0x53, 0x11, 0xe9, 0x4d, + 0xc0, 0x39, 0x34, 0x00, 0xc5, 0x3c, 0x67, 0x39, 0xa7, 0xe4, 0xd3, 0x0a, + 0x0e, 0xab, 0xc1, 0xa4, 0x32, 0x6c, 0xe2, 0x41, 0x8f, 0x7e, 0xd4, 0xc0, + 0x90, 0x1a, 0x5c, 0x91, 0x48, 0x39, 0xc1, 0xa0, 0x8c, 0x7d, 0x28, 0x01, + 0x73, 0x41, 0xe0, 0x64, 0xf0, 0x2a, 0x16, 0x9d, 0x54, 0x60, 0x7c, 0xc6, + 0x9c, 0xb1, 0x79, 0x84, 0x19, 0x9c, 0x11, 0xfd, 0xd1, 0x40, 0xae, 0x3d, + 0x1d, 0x4f, 0x46, 0x07, 0xe9, 0x4f, 0x06, 0x97, 0xec, 0xf6, 0xc5, 0x70, + 0x06, 0x0f, 0xaa, 0xf1, 0x48, 0x60, 0xc0, 0xcc, 0x73, 0x64, 0x7a, 0x3d, + 0x01, 0x71, 0x0d, 0x18, 0xa6, 0x93, 0x2a, 0xf5, 0x8f, 0x77, 0xba, 0x1c, + 0xd2, 0x79, 0xca, 0x06, 0x0e, 0x54, 0xff, 0x00, 0xb4, 0x31, 0x40, 0xc7, + 0xe2, 0x94, 0x0e, 0x39, 0xeb, 0x48, 0xac, 0x18, 0x75, 0x14, 0xec, 0xf1, + 0x40, 0x86, 0x95, 0xef, 0x49, 0xb4, 0x53, 0xb9, 0xa4, 0x20, 0x63, 0x07, + 0xf4, 0xa0, 0x06, 0x91, 0x5a, 0x3a, 0x46, 0xa8, 0xba, 0x6c, 0x8e, 0x19, + 0x49, 0x8e, 0x41, 0xf3, 0x63, 0xa8, 0xac, 0xfc, 0x74, 0xe2, 0x90, 0xa0, + 0xce, 0x7b, 0xd0, 0x34, 0xec, 0xee, 0x75, 0xb6, 0x7a, 0xed, 0xb4, 0x1b, + 0xc4, 0x17, 0x51, 0x94, 0x91, 0xb2, 0x52, 0x41, 0x82, 0x0d, 0x2d, 0xce, + 0xab, 0x64, 0xf2, 0xa4, 0xd2, 0x4d, 0x1e, 0xe4, 0xfb, 0xa1, 0x06, 0x6b, + 0x90, 0xf2, 0xc2, 0x8c, 0xe2, 0x93, 0x6f, 0xa1, 0xe2, 0xa9, 0xca, 0x4e, + 0x3c, 0xb7, 0xd0, 0x3d, 0xdb, 0xf3, 0x5b, 0x53, 0x47, 0x55, 0xd5, 0x05, + 0xeb, 0x80, 0x88, 0x55, 0x14, 0xe4, 0x67, 0xa9, 0xac, 0xdd, 0xd9, 0xa0, + 0xf5, 0xa4, 0xc0, 0x39, 0xed, 0x52, 0xac, 0x84, 0xdb, 0x7a, 0x80, 0x34, + 0xbe, 0xd4, 0x9d, 0x29, 0x33, 0x4c, 0x91, 0xe3, 0xa5, 0x36, 0x55, 0xf3, + 0x23, 0x64, 0x3d, 0xc5, 0x00, 0xf2, 0x0d, 0x29, 0x39, 0xa0, 0x03, 0x4f, + 0x9c, 0xbc, 0x3e, 0x5b, 0x82, 0x1d, 0x0e, 0x39, 0xab, 0x12, 0xc6, 0x1f, + 0xbe, 0x3d, 0xc0, 0xac, 0xf9, 0x77, 0x42, 0xe2, 0x78, 0xff, 0x00, 0xe0, + 0x42, 0xa7, 0x17, 0x4f, 0xb4, 0x37, 0x50, 0x7b, 0x77, 0xa0, 0x77, 0x2c, + 0xc7, 0x1e, 0xd0, 0xa3, 0x79, 0x20, 0x76, 0xc5, 0x47, 0x2c, 0x8e, 0x5c, + 0xa4, 0x64, 0x1c, 0x75, 0xf6, 0xa6, 0x89, 0xc4, 0xa0, 0x26, 0xe3, 0x19, + 0x35, 0x22, 0x84, 0x8d, 0x70, 0x08, 0x03, 0xb9, 0xcd, 0x21, 0x8a, 0xa1, + 0x8c, 0x60, 0xe4, 0x83, 0xdc, 0x1a, 0x6a, 0xc0, 0x30, 0x72, 0x77, 0x67, + 0xb7, 0x6a, 0x53, 0x3c, 0x4a, 0x3e, 0xf8, 0x3f, 0x4e, 0x6a, 0x16, 0xbc, + 0xc7, 0x09, 0x1b, 0x1f, 0x73, 0xc5, 0x00, 0x58, 0x0a, 0xab, 0xd1, 0x40, + 0xfc, 0x28, 0x24, 0x01, 0x93, 0xc5, 0x55, 0x32, 0xcc, 0xe3, 0x24, 0x84, + 0xfa, 0x0a, 0x8b, 0x62, 0x92, 0x4c, 0xa5, 0xa4, 0x1e, 0x84, 0xd3, 0xb0, + 0x5d, 0x16, 0x1a, 0xf2, 0x2d, 0xdb, 0x54, 0xef, 0x3e, 0x82, 0x9a, 0xd2, + 0x48, 0xc3, 0x8f, 0x97, 0xe9, 0xc9, 0xaa, 0x51, 0x44, 0x8f, 0x70, 0x44, + 0x58, 0x55, 0x1d, 0x41, 0xea, 0x6a, 0xfe, 0x39, 0xe2, 0xa5, 0xe8, 0x52, + 0x23, 0x54, 0x5c, 0xee, 0x39, 0xdd, 0xea, 0x6a, 0x4e, 0x9d, 0x05, 0x2e, + 0x31, 0x8e, 0x29, 0x47, 0x5e, 0xb5, 0x23, 0x01, 0xcd, 0x3f, 0x19, 0xe9, + 0x4d, 0x03, 0x1d, 0x0d, 0x3c, 0x1c, 0x2f, 0x5a, 0x00, 0x36, 0x9d, 0xa7, + 0x15, 0x1e, 0xc2, 0x87, 0x71, 0x06, 0x42, 0x7b, 0xe7, 0xa5, 0x49, 0x96, + 0xa6, 0xee, 0x2a, 0xb9, 0x62, 0x05, 0x00, 0x24, 0x71, 0xb2, 0xe4, 0xb6, + 0x7d, 0xb3, 0xd6, 0x9e, 0x79, 0xfa, 0x53, 0x51, 0xc3, 0x8c, 0x86, 0xa7, + 0x32, 0x86, 0x5c, 0x37, 0xdd, 0xf4, 0xa0, 0x44, 0x0f, 0x72, 0x15, 0x82, + 0xa0, 0xdd, 0xea, 0x4f, 0x41, 0xf8, 0xd4, 0xc2, 0x5d, 0xab, 0x97, 0x1b, + 0x47, 0xd6, 0x80, 0x15, 0x78, 0x0b, 0xc7, 0xa5, 0x31, 0xa3, 0xdd, 0x2e, + 0xff, 0x00, 0x6c, 0x60, 0xf6, 0xa6, 0x03, 0xd2, 0x55, 0x90, 0x9d, 0xa7, + 0xa7, 0xb5, 0x01, 0xb2, 0xd8, 0x04, 0x1a, 0x88, 0xc4, 0x57, 0x2c, 0xa7, + 0xe6, 0x6e, 0x33, 0xe8, 0x2a, 0x37, 0x8c, 0xc6, 0x14, 0x1e, 0x50, 0xf5, + 0x60, 0x39, 0x14, 0x01, 0x70, 0x64, 0x0a, 0x3d, 0xa9, 0x03, 0x82, 0xa3, + 0x07, 0x8f, 0x5a, 0x37, 0x8d, 0xbc, 0x52, 0x01, 0xad, 0xf7, 0x81, 0xea, + 0x45, 0x04, 0xf3, 0xd2, 0x9c, 0x30, 0x4d, 0x57, 0xf3, 0x64, 0xf3, 0xe4, + 0x88, 0x0d, 0xc4, 0x72, 0x0f, 0x61, 0x48, 0x09, 0xc1, 0x19, 0xe9, 0x4c, + 0xf9, 0x03, 0x93, 0x8e, 0x4f, 0x5a, 0x4f, 0x35, 0x95, 0xbc, 0xbe, 0x19, + 0xc0, 0xc9, 0xed, 0x4d, 0x49, 0xb7, 0x4a, 0x63, 0x65, 0xc3, 0x63, 0x3e, + 0xa2, 0x98, 0x0e, 0x3b, 0x0b, 0x82, 0x40, 0x24, 0x74, 0xe2, 0x93, 0x0b, + 0x90, 0xd8, 0xe6, 0x91, 0x67, 0x06, 0x77, 0x8f, 0x18, 0xdb, 0x8e, 0x7d, + 0x68, 0x59, 0x84, 0x8e, 0xe8, 0x57, 0x0c, 0xa6, 0x90, 0x0a, 0x50, 0x33, + 0x2b, 0x37, 0xf0, 0xf4, 0xa7, 0x8c, 0x62, 0xab, 0x89, 0x1d, 0x9e, 0x45, + 0x24, 0x92, 0xbd, 0x00, 0x03, 0xa5, 0x4b, 0x04, 0xbe, 0x64, 0x43, 0x24, + 0x6f, 0x1d, 0x45, 0x16, 0x1d, 0xc7, 0x90, 0x07, 0x6a, 0x40, 0xa2, 0x9d, + 0xb8, 0x74, 0x22, 0x93, 0x20, 0x7d, 0x68, 0x00, 0xdb, 0xd7, 0xd3, 0xbd, + 0x44, 0x27, 0x56, 0xc1, 0x18, 0x03, 0xdc, 0xe2, 0xa6, 0xcf, 0x1d, 0x29, + 0x9b, 0x1b, 0x3d, 0x54, 0x7f, 0xc0, 0x68, 0x01, 0x1e, 0x52, 0x30, 0xd1, + 0xe1, 0x80, 0x3f, 0x36, 0x3a, 0xd3, 0x24, 0x97, 0x0c, 0xae, 0xac, 0x19, + 0x1b, 0x82, 0x3b, 0x8a, 0x96, 0x38, 0x55, 0x5c, 0xb9, 0x39, 0x63, 0xd6, + 0x9f, 0xb5, 0x57, 0xa2, 0x8f, 0xca, 0x80, 0xb9, 0x59, 0x23, 0x78, 0xf7, + 0x65, 0x77, 0x12, 0x73, 0xba, 0x86, 0x8d, 0x8c, 0x81, 0xc1, 0x08, 0x71, + 0x82, 0x47, 0x7a, 0x9c, 0x86, 0x27, 0xa5, 0x04, 0x1a, 0x06, 0x40, 0x63, + 0x62, 0x41, 0x2d, 0xf8, 0x01, 0x48, 0x11, 0x41, 0xc8, 0x51, 0x9f, 0xa5, + 0x4c, 0xe0, 0x2a, 0x96, 0x6e, 0x00, 0xa8, 0x9a, 0x42, 0x88, 0xae, 0x53, + 0xe5, 0x3e, 0xfc, 0x8a, 0x02, 0xe2, 0x48, 0x59, 0x62, 0x2c, 0x3a, 0x8e, + 0xc6, 0x96, 0x26, 0x57, 0x8b, 0xcc, 0x1e, 0x99, 0xc5, 0x20, 0x0c, 0xd7, + 0x04, 0x85, 0x0c, 0x84, 0x70, 0x4f, 0x6a, 0x12, 0x1d, 0xbb, 0x86, 0xe3, + 0x82, 0x73, 0x81, 0xd2, 0x9d, 0x82, 0xe4, 0x4d, 0x33, 0x2a, 0x09, 0x95, + 0xf2, 0x73, 0xcc, 0x63, 0xd2, 0xa5, 0xd9, 0xe6, 0x6c, 0x9a, 0x32, 0xb8, + 0xf4, 0x35, 0x32, 0x8c, 0x0e, 0x14, 0x62, 0xa3, 0x16, 0xf1, 0xab, 0xe5, + 0x58, 0xa8, 0x3c, 0xe0, 0x1c, 0x53, 0x15, 0xc0, 0x83, 0x8c, 0xbc, 0x98, + 0x1e, 0x82, 0x9c, 0x25, 0x85, 0x13, 0x86, 0x03, 0xdb, 0x3c, 0xd4, 0x6d, + 0x86, 0x3b, 0x11, 0x32, 0x7f, 0xbd, 0xd6, 0x95, 0xad, 0x10, 0xfc, 0xee, + 0x4e, 0xe1, 0xdf, 0xa5, 0x3b, 0x13, 0xcc, 0x41, 0x2c, 0x9e, 0x6f, 0xdf, + 0x52, 0x57, 0x3c, 0x0a, 0x6a, 0xec, 0x04, 0xed, 0x2e, 0x9f, 0x43, 0x48, + 0xdc, 0xc8, 0x42, 0x92, 0xca, 0x3b, 0xd3, 0x41, 0xe7, 0x90, 0x47, 0xe1, + 0x54, 0x89, 0xbb, 0x25, 0x0f, 0x20, 0xfe, 0x25, 0x6f, 0xa8, 0xa7, 0x89, + 0xce, 0x39, 0x4f, 0xc8, 0xd4, 0x5c, 0x63, 0x82, 0x29, 0x32, 0x68, 0xb2, + 0x63, 0xe7, 0x64, 0xff, 0x00, 0x68, 0x4e, 0x98, 0x6f, 0xca, 0x84, 0xb8, + 0xde, 0xd8, 0x58, 0x98, 0x91, 0xf8, 0x55, 0x7c, 0x11, 0x8c, 0xd2, 0x8d, + 0xc3, 0xa1, 0xa3, 0x94, 0x39, 0xc6, 0x5d, 0xcf, 0x2b, 0xb0, 0x84, 0xa1, + 0x50, 0x4e, 0x4f, 0xd2, 0xae, 0x46, 0x53, 0x60, 0x55, 0x20, 0x00, 0x2a, + 0x9c, 0x98, 0x27, 0x73, 0x11, 0x91, 0xde, 0x9b, 0xb9, 0xf1, 0xf2, 0x93, + 0xf9, 0xd2, 0xb0, 0xf9, 0xef, 0xb9, 0xa4, 0x3d, 0xcd, 0x20, 0x22, 0xb3, + 0xc3, 0xbf, 0x7a, 0x51, 0x26, 0xde, 0xe6, 0x8b, 0x05, 0xd1, 0xa3, 0xc5, + 0x27, 0x4c, 0x55, 0x2f, 0x38, 0xf4, 0x07, 0xf5, 0xa4, 0x33, 0x3f, 0xad, + 0x16, 0x0b, 0xa3, 0x43, 0x34, 0x71, 0x59, 0xe6, 0x76, 0x03, 0x39, 0xa8, + 0x9a, 0xec, 0x83, 0xc8, 0x34, 0x58, 0x77, 0x46, 0xa1, 0x3c, 0xf5, 0x19, + 0x34, 0x6e, 0x5e, 0xe7, 0x9a, 0xce, 0x59, 0x72, 0xb9, 0x1c, 0x7d, 0x45, + 0x28, 0x91, 0x88, 0xe3, 0x34, 0x58, 0x5c, 0xc8, 0xbc, 0x64, 0x51, 0xd3, + 0x9a, 0x37, 0x2e, 0x33, 0x54, 0x72, 0xf9, 0x03, 0x27, 0xf1, 0x34, 0xbf, + 0x37, 0xe3, 0x45, 0x83, 0x99, 0x16, 0xcc, 0xca, 0xbf, 0xfe, 0xba, 0x67, + 0xda, 0x07, 0x63, 0x50, 0x6d, 0x63, 0xd7, 0x34, 0xa2, 0x20, 0x3a, 0xd1, + 0x61, 0x73, 0x12, 0x9b, 0x81, 0x8e, 0xb8, 0xa6, 0x79, 0xcb, 0xc9, 0xdc, + 0x7f, 0x0a, 0x5f, 0x29, 0x00, 0xee, 0x7e, 0x82, 0x90, 0x41, 0xe8, 0x00, + 0x06, 0x9e, 0x82, 0x72, 0x63, 0x77, 0xa1, 0xfe, 0x1c, 0xfb, 0xb7, 0x34, + 0xa1, 0xc2, 0x36, 0xe8, 0xb0, 0xad, 0xdc, 0x76, 0x35, 0x27, 0xd9, 0x47, + 0xf1, 0x1c, 0xd3, 0x96, 0x04, 0x07, 0x85, 0xa0, 0x97, 0x24, 0x3e, 0x3b, + 0xa5, 0x7e, 0x1c, 0x6d, 0x6f, 0x4a, 0x9b, 0x35, 0x4e, 0x48, 0xc8, 0xe8, + 0x9c, 0x7a, 0xd2, 0x2c, 0xd2, 0x44, 0x31, 0x82, 0x47, 0xa1, 0xa0, 0x14, + 0x93, 0x2f, 0x00, 0x69, 0xc3, 0xad, 0x41, 0x1c, 0xe2, 0x41, 0xc8, 0xc1, + 0xa9, 0x41, 0xc9, 0xa0, 0xa1, 0xf9, 0xa6, 0xb0, 0xdc, 0x31, 0xc5, 0x1d, + 0xa9, 0x33, 0xcd, 0x20, 0x1b, 0xb3, 0x1d, 0x18, 0xa9, 0xa0, 0x89, 0x00, + 0xe4, 0x03, 0xf4, 0xa7, 0xf7, 0xa4, 0x27, 0xe6, 0xfb, 0xdf, 0x85, 0x03, + 0xb9, 0x11, 0x71, 0x9e, 0x72, 0x3e, 0xa2, 0x97, 0xaf, 0x7a, 0x97, 0x83, + 0xd6, 0x9a, 0x63, 0x43, 0xd0, 0x7e, 0x34, 0x05, 0xc6, 0x12, 0x06, 0x33, + 0x49, 0x8a, 0x53, 0x11, 0x07, 0xe5, 0x73, 0xf4, 0x3c, 0xd1, 0xb2, 0x40, + 0x3b, 0x1f, 0xd2, 0x81, 0xdd, 0x0d, 0xc7, 0x34, 0x74, 0x3e, 0xd4, 0xa7, + 0x70, 0x1c, 0xa9, 0xfc, 0x29, 0xa5, 0x86, 0x30, 0x41, 0xcf, 0xd2, 0x90, + 0xc7, 0x73, 0x8a, 0x31, 0x9a, 0x8d, 0x25, 0x0c, 0x48, 0x61, 0xb7, 0x1e, + 0xa6, 0x9c, 0x19, 0x73, 0xf7, 0x87, 0xe7, 0x40, 0x0b, 0x8e, 0x68, 0x34, + 0x66, 0x93, 0x18, 0xc5, 0x00, 0x14, 0x98, 0xa5, 0x3e, 0xd4, 0x83, 0x81, + 0x48, 0x00, 0xc4, 0xa5, 0x7a, 0x7e, 0xb4, 0xb8, 0x07, 0x1b, 0x56, 0x9f, + 0xce, 0x31, 0xed, 0x4c, 0xc8, 0x4f, 0x94, 0xf7, 0xaa, 0x24, 0x77, 0x96, + 0xa3, 0xaa, 0x8f, 0xca, 0x94, 0x28, 0x1d, 0x00, 0x14, 0x87, 0x3d, 0x8d, + 0x28, 0x27, 0xbd, 0x00, 0x28, 0x3d, 0xa9, 0xc6, 0x9b, 0x9a, 0x51, 0x9c, + 0xf1, 0x40, 0x0a, 0x5a, 0x96, 0x9a, 0x7f, 0x5a, 0x39, 0xe2, 0x81, 0x0a, + 0x68, 0x14, 0x1c, 0x67, 0xad, 0x37, 0x7a, 0x8e, 0xa6, 0x81, 0x8b, 0x8e, + 0x68, 0x39, 0xc5, 0x21, 0x90, 0x6d, 0xe3, 0x9a, 0x61, 0x77, 0x3d, 0x06, + 0x28, 0x15, 0xec, 0x49, 0x80, 0x07, 0x26, 0x98, 0xd2, 0x46, 0xa7, 0x69, + 0x39, 0xa6, 0x79, 0x4c, 0xdf, 0x79, 0x8f, 0xd0, 0x53, 0x96, 0x1d, 0xbd, + 0x16, 0x82, 0x5c, 0xd1, 0x18, 0x2d, 0xbf, 0xe4, 0x5c, 0x2f, 0xbd, 0x4c, + 0x20, 0x67, 0x19, 0x77, 0xfc, 0x29, 0xc1, 0x48, 0xe8, 0xb5, 0x2a, 0xa9, + 0xee, 0x0d, 0x3b, 0x12, 0xe6, 0xc8, 0x1a, 0xd4, 0x1e, 0x86, 0xa1, 0x68, + 0xa5, 0x4e, 0x36, 0x92, 0x3d, 0xaa, 0xf8, 0xda, 0x06, 0x71, 0x51, 0xee, + 0x91, 0x98, 0x83, 0x85, 0x1d, 0xb1, 0x48, 0x39, 0x99, 0x53, 0x71, 0xc6, + 0xdf, 0xba, 0x7d, 0xc5, 0x3f, 0x96, 0xc6, 0x4f, 0x1e, 0xd5, 0x3e, 0xdc, + 0xb8, 0x04, 0x6e, 0x14, 0xd6, 0xb7, 0x52, 0x78, 0x04, 0x7d, 0x29, 0x8f, + 0x99, 0x0d, 0x0c, 0x47, 0x47, 0xc5, 0x29, 0x94, 0x95, 0xc1, 0x6a, 0x3c, + 0xa2, 0x3b, 0xe7, 0xeb, 0x51, 0x32, 0xb2, 0x9f, 0xbb, 0x91, 0xec, 0x68, + 0xb8, 0xee, 0x89, 0x4b, 0xc5, 0xc6, 0xf8, 0x54, 0x93, 0xdc, 0x71, 0x48, + 0x15, 0x33, 0xf2, 0xef, 0x53, 0xfe, 0xf6, 0x6a, 0x37, 0xe4, 0x75, 0x23, + 0xf0, 0xa6, 0x8c, 0x29, 0xc8, 0x3c, 0xd1, 0x74, 0x3d, 0x49, 0x36, 0x39, + 0x60, 0x7c, 0xe2, 0x3f, 0xde, 0x15, 0x21, 0x59, 0xb3, 0xc7, 0x96, 0xc3, + 0xeb, 0x8a, 0x83, 0x2c, 0x4e, 0x79, 0x3f, 0x8d, 0x20, 0x0e, 0x17, 0x3c, + 0x9a, 0x34, 0x1d, 0xd9, 0x3f, 0xef, 0x87, 0xfc, 0xb2, 0xcf, 0xd1, 0xa9, + 0x3c, 0xcd, 0xa7, 0xe6, 0x46, 0x1f, 0x5a, 0x8b, 0x2e, 0x31, 0xc9, 0x1e, + 0xb4, 0x85, 0x8f, 0x71, 0x9f, 0x7c, 0x51, 0x60, 0xb8, 0xf3, 0x70, 0xa7, + 0x8c, 0x30, 0xfc, 0x29, 0x3c, 0xe4, 0xcf, 0x53, 0xff, 0x00, 0x7c, 0x9a, + 0x8b, 0xe7, 0xc9, 0xc0, 0x02, 0x94, 0x46, 0xc7, 0x92, 0xd8, 0xa2, 0xc1, + 0x72, 0x4f, 0x31, 0x0f, 0x73, 0xf9, 0x1a, 0x69, 0x91, 0x39, 0xf9, 0x8f, + 0xe5, 0x4f, 0x11, 0x90, 0x32, 0xc7, 0xe9, 0x51, 0x94, 0x6e, 0xc7, 0x8f, + 0x5a, 0x76, 0x0b, 0x8a, 0x64, 0x1c, 0x60, 0x33, 0x7d, 0x01, 0xa6, 0xf9, + 0x83, 0x3c, 0x2b, 0x7b, 0xfc, 0xb4, 0xa0, 0xba, 0x7f, 0x11, 0x15, 0x1e, + 0xf9, 0x77, 0x12, 0x09, 0xc5, 0x02, 0xb9, 0x21, 0x67, 0x03, 0x3e, 0x53, + 0x62, 0x90, 0x3b, 0xb6, 0x30, 0x98, 0xcf, 0x4c, 0x9a, 0x66, 0xe7, 0x3c, + 0x6e, 0x3f, 0x8d, 0x34, 0xa3, 0xe3, 0xbf, 0x14, 0x05, 0xc9, 0xca, 0x39, + 0x04, 0x31, 0x8c, 0x7e, 0x34, 0x91, 0xc4, 0x00, 0x00, 0xc8, 0x01, 0x1d, + 0xfa, 0xd4, 0x5e, 0x53, 0x0f, 0x99, 0xb8, 0xfa, 0xd2, 0x87, 0x28, 0x7e, + 0xf0, 0x20, 0xfa, 0x50, 0x04, 0xec, 0x91, 0xe7, 0xe6, 0xdc, 0xdf, 0xa5, + 0x21, 0x11, 0xed, 0xf9, 0x63, 0xc1, 0xf5, 0x34, 0xc1, 0x20, 0x61, 0x8c, + 0x13, 0x4a, 0x3e, 0x6f, 0xe1, 0x22, 0x8b, 0x88, 0x91, 0x0a, 0x92, 0x43, + 0x61, 0x47, 0xd2, 0x97, 0x62, 0x0f, 0x7a, 0x8f, 0xca, 0x27, 0xa2, 0x91, + 0x52, 0x79, 0x52, 0x15, 0xc0, 0x38, 0x27, 0xbd, 0x01, 0x74, 0x35, 0xdd, + 0xb1, 0x80, 0x01, 0xf7, 0xa8, 0x88, 0x5e, 0x01, 0x39, 0x3e, 0x82, 0xa5, + 0x16, 0xcc, 0x0e, 0x5c, 0xee, 0xa7, 0x0b, 0x74, 0x1c, 0xe3, 0x06, 0x90, + 0x73, 0x22, 0xaa, 0xdb, 0xf9, 0xcf, 0xd0, 0xa7, 0xd3, 0xad, 0x59, 0x0b, + 0x34, 0x63, 0x83, 0xbc, 0x7b, 0xf5, 0xa9, 0xa3, 0x91, 0xa2, 0x04, 0x2f, + 0x00, 0xf1, 0xeb, 0x55, 0x43, 0x4d, 0x11, 0xc8, 0x6d, 0xc3, 0xd0, 0xd2, + 0x7e, 0x65, 0x29, 0x2e, 0x84, 0xa2, 0x55, 0x6e, 0x1b, 0x83, 0xe8, 0x69, + 0xe1, 0x78, 0xa8, 0x9a, 0xe2, 0x27, 0x1f, 0xbc, 0x5c, 0x52, 0xaa, 0xe4, + 0x66, 0x37, 0x38, 0xf4, 0x3c, 0xd2, 0xb7, 0x62, 0xae, 0x4b, 0xc7, 0x34, + 0x12, 0x42, 0xfc, 0xa0, 0x66, 0x9a, 0x19, 0x87, 0xde, 0x5c, 0xfb, 0x8a, + 0x7a, 0xba, 0x39, 0xc0, 0x23, 0xe8, 0x69, 0x58, 0x77, 0x18, 0x3c, 0xd3, + 0xd5, 0xf6, 0x8f, 0xf6, 0x45, 0x21, 0xd8, 0x8f, 0xb4, 0x02, 0xef, 0x56, + 0x02, 0xd5, 0x65, 0x02, 0x17, 0x6d, 0xe3, 0xef, 0x1c, 0x86, 0xa0, 0x09, + 0x04, 0x4c, 0xdc, 0xbb, 0x00, 0x3d, 0x14, 0x53, 0xd1, 0x15, 0x46, 0x14, + 0x8c, 0x7d, 0x69, 0xb2, 0x29, 0x74, 0x00, 0x12, 0x3e, 0x9d, 0xe9, 0x9e, + 0x5e, 0x59, 0x49, 0xed, 0xd0, 0x0e, 0x28, 0x02, 0x42, 0xb8, 0xfe, 0x2f, + 0xc2, 0x8c, 0x7b, 0xe2, 0xa2, 0xf2, 0xc9, 0x97, 0x76, 0x3a, 0x74, 0xed, + 0x4f, 0x60, 0xc4, 0xe7, 0x20, 0x50, 0x03, 0xb3, 0xc7, 0x3d, 0x29, 0x32, + 0x0f, 0x4a, 0x8e, 0x43, 0x28, 0x28, 0x23, 0xe7, 0xb9, 0x27, 0xa5, 0x36, + 0x59, 0x24, 0x40, 0x30, 0x80, 0x93, 0xc6, 0x05, 0x00, 0x4d, 0xc6, 0xee, + 0xf8, 0xa4, 0x2d, 0x83, 0xc0, 0xe2, 0xa3, 0x92, 0x47, 0x8e, 0x22, 0xdb, + 0x73, 0x8e, 0xd9, 0xa7, 0x6e, 0x05, 0x01, 0x24, 0x63, 0x1e, 0xb4, 0x80, + 0x78, 0x63, 0xd7, 0x1c, 0x53, 0x51, 0x11, 0x64, 0x77, 0x04, 0xee, 0x6e, + 0xb5, 0x17, 0x9e, 0xac, 0xdb, 0x50, 0x12, 0x45, 0x09, 0x32, 0xb4, 0xc2, + 0x2e, 0x09, 0x3c, 0xe4, 0x76, 0xa6, 0x04, 0x92, 0x46, 0x8e, 0xfb, 0xba, + 0x36, 0x3e, 0xf0, 0x38, 0x34, 0xd5, 0x54, 0x52, 0x4a, 0x8e, 0x4f, 0x53, + 0x4a, 0xf8, 0x07, 0x39, 0xe2, 0x91, 0x48, 0x23, 0x2a, 0x72, 0x28, 0x01, + 0x1a, 0x30, 0xcc, 0x09, 0x00, 0x9a, 0x55, 0x78, 0xe3, 0xf9, 0x54, 0x0c, + 0x9e, 0xa1, 0x45, 0x29, 0x19, 0xcd, 0x2a, 0xae, 0xc1, 0xc0, 0x00, 0x50, + 0x03, 0x7c, 0xc0, 0x92, 0x72, 0x87, 0x27, 0xa7, 0xad, 0x19, 0x41, 0x29, + 0x70, 0xac, 0x1b, 0xd7, 0x15, 0x18, 0x3b, 0xaf, 0x49, 0x4e, 0x54, 0x2e, + 0x09, 0xa9, 0x1d, 0xc4, 0x63, 0x2c, 0x7a, 0xf1, 0x8a, 0x00, 0x78, 0x95, + 0x31, 0x9d, 0xdf, 0x98, 0xa5, 0x12, 0x21, 0xee, 0x4f, 0xd0, 0x54, 0x46, + 0x4d, 0x85, 0x4b, 0x2e, 0xd5, 0x6e, 0x39, 0xa9, 0xc7, 0x1d, 0x28, 0x01, + 0x03, 0x7c, 0xa4, 0x84, 0x6c, 0x01, 0x9a, 0x81, 0x24, 0x92, 0x49, 0x62, + 0xda, 0xd9, 0xcf, 0x2c, 0x31, 0xc0, 0x15, 0x33, 0x4a, 0x47, 0xca, 0x83, + 0x2d, 0xdf, 0xda, 0x9b, 0x14, 0x26, 0x16, 0x2d, 0x1b, 0x02, 0x1b, 0xa8, + 0x34, 0x01, 0x39, 0x3b, 0x46, 0x78, 0xc0, 0xf5, 0xa8, 0xcc, 0xe8, 0x17, + 0x76, 0x1b, 0x6f, 0xae, 0x29, 0x92, 0x23, 0x4a, 0x40, 0x7c, 0x2a, 0x03, + 0x92, 0x07, 0x7a, 0x94, 0xa8, 0x20, 0x28, 0x1f, 0x2d, 0x20, 0x22, 0x12, + 0xbc, 0x8e, 0xc1, 0x08, 0x08, 0x3f, 0x8b, 0x1d, 0x69, 0x91, 0x19, 0x24, + 0xb8, 0x64, 0x97, 0x20, 0x01, 0xc6, 0x38, 0xab, 0x02, 0x35, 0x1c, 0x01, + 0x81, 0x4b, 0x8c, 0x1e, 0xbd, 0x68, 0x02, 0x03, 0x0b, 0x98, 0xda, 0x32, + 0xc1, 0x97, 0x3c, 0x12, 0x79, 0xa9, 0x7c, 0x84, 0xc0, 0xe0, 0x92, 0x3d, + 0x79, 0xa7, 0x9d, 0xa8, 0x73, 0xda, 0xa3, 0x92, 0x6c, 0x01, 0xe5, 0x82, + 0xe7, 0xda, 0x98, 0x5c, 0x7f, 0x97, 0xeb, 0x8a, 0x69, 0x0a, 0xa3, 0x93, + 0x8a, 0x68, 0x69, 0x65, 0xea, 0x02, 0x0f, 0xcc, 0xd2, 0x32, 0x46, 0x83, + 0xf7, 0x8d, 0x93, 0xea, 0xc6, 0x9d, 0x85, 0x71, 0x04, 0xa4, 0x9c, 0x46, + 0xa5, 0xbd, 0xfb, 0x53, 0x84, 0x25, 0x8e, 0xe9, 0x1b, 0x9f, 0x4e, 0xd4, + 0xcf, 0xb4, 0xaa, 0xf1, 0x12, 0xe7, 0xde, 0x98, 0xc2, 0x49, 0xdb, 0x2c, + 0x48, 0x1e, 0x94, 0x5d, 0x74, 0x25, 0xbe, 0xe4, 0x8d, 0x2a, 0x40, 0xdb, + 0x11, 0x77, 0x1a, 0x8c, 0x2b, 0xcc, 0x7e, 0x73, 0xc7, 0xa5, 0x4b, 0x15, + 0xbf, 0x3d, 0x2b, 0x42, 0x28, 0x51, 0x07, 0x4e, 0x69, 0x90, 0xe7, 0xd8, + 0xab, 0x15, 0xa0, 0x23, 0x1b, 0x7f, 0x4a, 0x79, 0xd3, 0xfd, 0x39, 0xf6, + 0xab, 0xc3, 0xa7, 0xcb, 0x4a, 0x33, 0x4c, 0xcf, 0x98, 0xcf, 0xfb, 0x07, + 0xb0, 0xfc, 0xaa, 0x3f, 0xb0, 0xed, 0x27, 0x0b, 0x82, 0x7d, 0x2b, 0x4f, + 0xaf, 0x4a, 0x36, 0x30, 0x19, 0x06, 0x8b, 0x07, 0x33, 0x31, 0x9a, 0xc7, + 0xd0, 0xb0, 0x1f, 0x4c, 0xd4, 0x2d, 0x64, 0x73, 0xf7, 0xc0, 0xfc, 0x2b, + 0x69, 0xa4, 0x1d, 0x0a, 0xd3, 0x70, 0x8d, 0xce, 0xda, 0x07, 0xce, 0xcc, + 0x56, 0xb2, 0x63, 0xd5, 0xc1, 0xa6, 0x35, 0x94, 0xb9, 0xc0, 0x20, 0xd6, + 0xef, 0x96, 0xb8, 0xe4, 0x51, 0xe5, 0x44, 0x47, 0x03, 0x9a, 0x7a, 0x87, + 0x39, 0x81, 0xf6, 0x59, 0xf2, 0x06, 0xcf, 0xd6, 0x8f, 0xb3, 0x4f, 0xd3, + 0x65, 0x6e, 0x34, 0x0b, 0xda, 0x98, 0x60, 0xf7, 0xa2, 0xec, 0x39, 0x8c, + 0x7f, 0xb2, 0x4e, 0x79, 0xc0, 0x14, 0x82, 0xd2, 0x63, 0xd6, 0xb6, 0x45, + 0xb1, 0xf5, 0xa5, 0xfb, 0x37, 0x1d, 0x68, 0xbb, 0x1f, 0x39, 0x8d, 0xf6, + 0x39, 0x0f, 0x53, 0xfa, 0x52, 0xfd, 0x81, 0xc0, 0xc9, 0x39, 0xad, 0x53, + 0x6e, 0x47, 0x7a, 0x4f, 0xb3, 0x31, 0x1d, 0x68, 0xbb, 0x0e, 0x73, 0x38, + 0x59, 0x8d, 0xbc, 0xb9, 0x15, 0x2a, 0x5a, 0x20, 0xfe, 0x22, 0xd5, 0x73, + 0xec, 0xbd, 0x0b, 0x1a, 0x72, 0xc2, 0xaa, 0x29, 0x6a, 0x1c, 0xe5, 0x41, + 0x02, 0x8f, 0xe0, 0xa4, 0x65, 0x44, 0xe0, 0x95, 0x19, 0xab, 0x0c, 0xeb, + 0x9d, 0xaa, 0xdb, 0x8f, 0xb5, 0x46, 0xf1, 0xa8, 0xdb, 0x91, 0xb8, 0xf5, + 0x38, 0xa0, 0x39, 0xd9, 0x1b, 0x44, 0xb8, 0xc3, 0x1f, 0xca, 0xa3, 0x56, + 0x84, 0x38, 0x4c, 0x82, 0xdf, 0x4a, 0xb7, 0xe5, 0xab, 0x00, 0x4e, 0x49, + 0x3f, 0xc2, 0x28, 0x31, 0xc7, 0x09, 0x27, 0x00, 0x37, 0xa0, 0xa0, 0x57, + 0x6c, 0x8f, 0x11, 0xe7, 0x69, 0x23, 0x3e, 0x95, 0x20, 0x8b, 0x03, 0x81, + 0x4c, 0xca, 0x6e, 0xde, 0xab, 0xb9, 0x87, 0xb5, 0x34, 0x49, 0x74, 0x64, + 0x04, 0x2a, 0x84, 0xef, 0x40, 0x89, 0x0a, 0x73, 0x40, 0x51, 0x4a, 0xe4, + 0x75, 0xa8, 0xcb, 0x60, 0x71, 0x40, 0x12, 0x11, 0x91, 0x50, 0xba, 0x66, + 0x80, 0xe6, 0x9e, 0x0d, 0x03, 0x2b, 0xf9, 0x25, 0x4d, 0x39, 0x54, 0xaf, + 0x4e, 0x3e, 0xb5, 0x63, 0xad, 0x3b, 0x60, 0x61, 0x8c, 0x50, 0x34, 0xc8, + 0x44, 0x84, 0x0c, 0x30, 0xfc, 0xa9, 0xe1, 0xd4, 0x8c, 0x8c, 0x1a, 0x78, + 0x84, 0xe7, 0x15, 0x1c, 0x96, 0xd9, 0x39, 0xc6, 0x0f, 0xa8, 0xa4, 0x5a, + 0x90, 0xbd, 0x72, 0x41, 0xe2, 0x81, 0xc8, 0xa8, 0xc4, 0x32, 0xa7, 0xdd, + 0x7f, 0xcf, 0x9a, 0x3e, 0x71, 0xd5, 0x43, 0x7b, 0x83, 0x40, 0xee, 0x87, + 0x8f, 0xad, 0x2f, 0x39, 0xf6, 0xa8, 0x7c, 0xd0, 0x31, 0xbb, 0x20, 0xfb, + 0x8a, 0x55, 0x90, 0x13, 0xc1, 0xa0, 0x64, 0xa4, 0x92, 0x78, 0x34, 0xbf, + 0x8d, 0x30, 0x31, 0xcd, 0x2e, 0x68, 0x01, 0x73, 0x4b, 0xde, 0x99, 0xc7, + 0xe3, 0x4a, 0x0e, 0x28, 0x18, 0xa7, 0x0c, 0x39, 0x15, 0x1e, 0xc4, 0x1d, + 0x54, 0x53, 0xf7, 0x6e, 0x34, 0x85, 0xbb, 0x62, 0x80, 0x1a, 0xc8, 0x98, + 0xce, 0xd1, 0x49, 0xb1, 0x3d, 0x29, 0xe7, 0x07, 0xb5, 0x26, 0x09, 0xe3, + 0x14, 0x00, 0xd2, 0x8a, 0x07, 0x1c, 0x1a, 0x4d, 0xab, 0x8e, 0xf4, 0xe2, + 0x79, 0x14, 0x9e, 0xbc, 0x50, 0x02, 0x79, 0x8b, 0xde, 0x98, 0xd2, 0x29, + 0x90, 0x13, 0xd0, 0x55, 0xc1, 0x10, 0xc0, 0xa3, 0xc9, 0xfa, 0x50, 0x67, + 0xce, 0x54, 0x12, 0xab, 0x0c, 0xe0, 0x9f, 0xc2, 0x9e, 0x0e, 0xe1, 0x9c, + 0x1f, 0xc6, 0xa7, 0x30, 0xfb, 0xd1, 0xe5, 0xe2, 0x80, 0xe7, 0x2b, 0xee, + 0x6e, 0xc8, 0x69, 0x77, 0x49, 0xe9, 0x53, 0x15, 0x38, 0xa6, 0x33, 0x05, + 0x1c, 0xd1, 0x61, 0x73, 0x91, 0xfe, 0xf3, 0xda, 0x9c, 0x03, 0x93, 0xcb, + 0x7e, 0x94, 0x82, 0x74, 0x3d, 0x01, 0x34, 0x0b, 0x85, 0xdd, 0x82, 0xb8, + 0xa2, 0xc2, 0xe7, 0x62, 0xec, 0xf5, 0x26, 0x9c, 0x23, 0xe2, 0xa6, 0x5d, + 0x8c, 0x32, 0x33, 0x4e, 0xe3, 0xa6, 0xe5, 0x1f, 0x8d, 0x3b, 0x0b, 0x99, + 0x90, 0xec, 0xf6, 0xa5, 0x09, 0xed, 0x52, 0x94, 0x60, 0x29, 0x9b, 0x4f, + 0xa1, 0xa0, 0x9b, 0x8a, 0x06, 0x3d, 0x29, 0xca, 0xc3, 0xb8, 0xcd, 0x20, + 0x5a, 0x42, 0xa7, 0xb0, 0xa6, 0x04, 0xa3, 0x6f, 0xb0, 0xa5, 0xdc, 0x83, + 0xb8, 0xaa, 0xe5, 0x4f, 0xf9, 0x34, 0xd2, 0x31, 0xd4, 0x81, 0x40, 0x16, + 0x4b, 0xaf, 0xad, 0x20, 0x5f, 0x35, 0x48, 0xdf, 0xb3, 0xde, 0xa0, 0x55, + 0xdd, 0xc8, 0x34, 0x67, 0x07, 0x19, 0xa0, 0x07, 0x84, 0x08, 0x71, 0xb8, + 0x37, 0xbe, 0x28, 0xd8, 0x59, 0x81, 0x56, 0x00, 0x0e, 0xc2, 0x9b, 0xc5, + 0x34, 0x97, 0xcf, 0xca, 0x07, 0xe7, 0x40, 0x13, 0xb0, 0x55, 0x1c, 0xf5, + 0xa6, 0x60, 0x1e, 0xdf, 0xa5, 0x30, 0x89, 0x18, 0x72, 0x14, 0x1f, 0x5c, + 0xd2, 0xec, 0x7e, 0xee, 0x3f, 0x01, 0x40, 0xee, 0x26, 0xc5, 0xce, 0x05, + 0x21, 0x8b, 0x3d, 0x85, 0x38, 0x00, 0x1b, 0x27, 0x71, 0x3e, 0xa6, 0x9c, + 0x58, 0x77, 0x61, 0x45, 0x82, 0xe4, 0x3e, 0x4e, 0x3b, 0x53, 0x4c, 0x5c, + 0x75, 0x35, 0x38, 0x6c, 0xf7, 0xe2, 0x9c, 0x00, 0x3f, 0xfe, 0xaa, 0x56, + 0x1f, 0x33, 0x2b, 0x08, 0x9f, 0xfb, 0xe7, 0x14, 0xe1, 0x17, 0xab, 0x1a, + 0xb1, 0x8d, 0xbd, 0x29, 0x32, 0x4f, 0x5a, 0x69, 0x07, 0x33, 0x2b, 0x18, + 0x19, 0x8f, 0xde, 0xc5, 0x37, 0xec, 0x6f, 0x9c, 0x86, 0xab, 0xab, 0xcf, + 0xa5, 0x3f, 0x81, 0xdc, 0x50, 0x2e, 0x66, 0x51, 0x10, 0x4b, 0xfd, 0xff, + 0x00, 0xd2, 0x97, 0xc8, 0x7f, 0xef, 0x9a, 0xbb, 0xe6, 0x2f, 0x71, 0x4c, + 0x32, 0xae, 0x7a, 0x50, 0x1c, 0xcc, 0xa9, 0xf6, 0x57, 0x3c, 0xee, 0xa7, + 0x7d, 0x95, 0xbd, 0x6a, 0xd7, 0x9c, 0x3d, 0x28, 0x12, 0x03, 0x40, 0x73, + 0x32, 0xb0, 0xb6, 0x61, 0xde, 0x9d, 0xf6, 0x73, 0xd3, 0x26, 0xac, 0xef, + 0x14, 0xe0, 0xc0, 0xf7, 0xa0, 0x5c, 0xcc, 0xad, 0xf6, 0x44, 0x3f, 0x78, + 0x53, 0xd6, 0xd6, 0x2c, 0x7d, 0xda, 0x9f, 0x2b, 0x41, 0x61, 0x8a, 0x05, + 0x76, 0x44, 0x21, 0x50, 0x78, 0x51, 0x4e, 0xd8, 0x07, 0xf0, 0x8a, 0x76, + 0xea, 0x37, 0x50, 0x03, 0x4a, 0xfb, 0x0a, 0x40, 0x47, 0x43, 0x8f, 0xca, + 0xa4, 0x24, 0x62, 0x98, 0x40, 0xa4, 0x01, 0x85, 0xf6, 0xa6, 0x32, 0x2d, + 0x31, 0x89, 0xcf, 0x00, 0xd1, 0x86, 0x22, 0x81, 0xdc, 0x63, 0xa5, 0x30, + 0xa6, 0x56, 0xa4, 0x20, 0x8a, 0x4c, 0x50, 0x3b, 0x90, 0x34, 0x41, 0x89, + 0x18, 0xce, 0x2a, 0x3f, 0x2c, 0xa1, 0xca, 0x12, 0x0d, 0x59, 0x23, 0x06, + 0x9b, 0x4a, 0xc5, 0x29, 0x34, 0x44, 0x25, 0x95, 0x78, 0x23, 0x70, 0xa0, + 0xcd, 0x13, 0x1c, 0x48, 0xa5, 0x6a, 0x5e, 0x07, 0x6a, 0x42, 0x8a, 0xdd, + 0x45, 0x2d, 0x4b, 0xe7, 0xee, 0x2a, 0x2c, 0x67, 0xfd, 0x54, 0xc4, 0x7b, + 0x66, 0x94, 0xa4, 0xd8, 0xea, 0xac, 0x3d, 0x08, 0xa8, 0x5a, 0xde, 0x33, + 0xd8, 0x8f, 0xa5, 0x20, 0x49, 0x13, 0xee, 0x4a, 0x71, 0x40, 0xd4, 0x91, + 0x31, 0x95, 0x94, 0x73, 0x11, 0xc7, 0xb7, 0x34, 0x2d, 0xd4, 0x4d, 0xdf, + 0x07, 0xdc, 0x54, 0x6b, 0x25, 0xc2, 0xfa, 0x35, 0x2f, 0xda, 0x0e, 0x7e, + 0x68, 0x47, 0xe1, 0x4b, 0x42, 0xae, 0x4e, 0x19, 0x0f, 0x46, 0x07, 0xf1, + 0xa5, 0x38, 0x35, 0x5f, 0xed, 0x10, 0x9f, 0xbc, 0x84, 0x7e, 0x14, 0xbb, + 0xed, 0xd8, 0x70, 0xdb, 0x4f, 0xe2, 0x28, 0xb0, 0xee, 0x48, 0xcb, 0xc8, + 0xc1, 0xa0, 0x29, 0xa8, 0x80, 0x42, 0x78, 0x9b, 0x1f, 0xf0, 0x2a, 0x78, + 0x0e, 0x0f, 0x12, 0xe7, 0xeb, 0x8a, 0x76, 0x0b, 0x8e, 0x61, 0xeb, 0x48, + 0x23, 0x1d, 0x40, 0x18, 0xa0, 0x89, 0x7a, 0xe5, 0x7f, 0x2a, 0x40, 0x24, + 0x1d, 0x85, 0x16, 0x0b, 0x8a, 0x10, 0x13, 0xf7, 0x68, 0x31, 0x21, 0xc1, + 0x2b, 0xc8, 0xee, 0x3a, 0xd1, 0x99, 0x07, 0xf0, 0x2f, 0xe7, 0x41, 0x69, + 0x33, 0xf7, 0x07, 0xe7, 0x45, 0x82, 0xe3, 0x44, 0x6a, 0x3b, 0x1f, 0xa9, + 0xa7, 0xaf, 0x3c, 0x63, 0x8a, 0x61, 0x69, 0x31, 0xf7, 0x07, 0xe7, 0x40, + 0x32, 0x01, 0xf7, 0x07, 0xe7, 0x4a, 0xcc, 0x2e, 0x81, 0xe3, 0x52, 0x72, + 0x4b, 0x0f, 0xa1, 0xa4, 0x11, 0x27, 0x70, 0x58, 0x7b, 0x9a, 0x53, 0xe6, + 0x1e, 0x7c, 0xb5, 0xfc, 0xe9, 0x01, 0x93, 0x9f, 0x95, 0x47, 0xe3, 0x4e, + 0xc1, 0x74, 0x38, 0x0d, 0xa3, 0xe4, 0x5c, 0x0a, 0x47, 0x88, 0x4b, 0x8d, + 0xdd, 0xbd, 0xe8, 0xdb, 0x2e, 0x33, 0xf2, 0x8a, 0x42, 0x93, 0x0e, 0x77, + 0x2f, 0xe5, 0x45, 0x82, 0xe1, 0xe4, 0x02, 0x06, 0xef, 0x9b, 0xea, 0x69, + 0xe2, 0x30, 0x0e, 0x33, 0xf8, 0x51, 0xe5, 0xca, 0x47, 0x2d, 0x8f, 0xc2, + 0x93, 0x61, 0xcf, 0x32, 0xf1, 0xf5, 0x14, 0x58, 0x2e, 0x87, 0x80, 0x01, + 0xe9, 0xc5, 0x3b, 0xe5, 0x5f, 0x4a, 0x83, 0xf7, 0x0a, 0x3e, 0x69, 0x33, + 0xff, 0x00, 0x02, 0xa6, 0x34, 0xb6, 0xc8, 0x32, 0x81, 0x98, 0xe7, 0x91, + 0x8a, 0x2c, 0x2b, 0x96, 0x0c, 0xb1, 0x8e, 0x32, 0x0d, 0x21, 0x95, 0x71, + 0xf2, 0xab, 0x7d, 0x31, 0x8a, 0x67, 0xdb, 0x62, 0xe3, 0x64, 0x2d, 0xf4, + 0x34, 0xc7, 0xb9, 0x91, 0x8f, 0xc9, 0x0e, 0x3e, 0xb4, 0x68, 0x17, 0x27, + 0x0c, 0xed, 0xd8, 0x63, 0xdc, 0xd0, 0x41, 0x39, 0xdd, 0x26, 0x3e, 0x9c, + 0x55, 0x6d, 0xd7, 0x0d, 0xc6, 0xe5, 0x5f, 0xa0, 0xa3, 0xc9, 0x77, 0xfb, + 0xee, 0x4d, 0x04, 0xb9, 0x2e, 0xe4, 0xd9, 0x82, 0x33, 0x92, 0xf9, 0x3e, + 0xe7, 0x34, 0xd3, 0x75, 0xda, 0x34, 0x27, 0xf4, 0xa6, 0xad, 0xb0, 0x1d, + 0xaa, 0xc2, 0x42, 0x71, 0xd2, 0x9e, 0xa4, 0xb9, 0xa2, 0x0d, 0xd3, 0xbf, + 0x7d, 0xbf, 0x4a, 0x72, 0xdb, 0x16, 0x39, 0x63, 0x93, 0xef, 0x57, 0x12, + 0x21, 0xdc, 0xd4, 0x81, 0x3d, 0xa8, 0xb1, 0x2e, 0x6c, 0xac, 0xb6, 0xe1, + 0x7b, 0x54, 0xab, 0x08, 0xec, 0x2a, 0x60, 0x31, 0xd6, 0x97, 0x2a, 0x3f, + 0x8c, 0x50, 0x45, 0xc6, 0x84, 0xc7, 0x5a, 0x76, 0x7e, 0x5c, 0xd3, 0x37, + 0xae, 0x7f, 0x88, 0xfe, 0x14, 0x17, 0x6e, 0xc8, 0x7f, 0x13, 0x4c, 0x05, + 0x12, 0xe3, 0xf8, 0x87, 0xe7, 0x4e, 0x12, 0x93, 0xc6, 0x69, 0x80, 0xbb, + 0x76, 0x51, 0xfa, 0xd2, 0x3b, 0x05, 0x70, 0xae, 0xd8, 0xc8, 0xf4, 0xc0, + 0xa0, 0x09, 0xc4, 0xa0, 0x52, 0xf9, 0xc4, 0x73, 0x55, 0x97, 0x66, 0x78, + 0x55, 0x3f, 0x5e, 0x69, 0x48, 0x42, 0xb8, 0x70, 0xa0, 0x7e, 0x54, 0x01, + 0x29, 0x65, 0x27, 0x25, 0x80, 0xcf, 0xbd, 0x37, 0x28, 0x07, 0xdf, 0x14, + 0x8b, 0x1c, 0x69, 0xd3, 0x8f, 0xc6, 0x9e, 0x40, 0xc7, 0x07, 0xf4, 0xa0, + 0x08, 0xcb, 0x81, 0xc0, 0x66, 0x3f, 0x81, 0xa6, 0x79, 0x8e, 0x0e, 0x02, + 0x31, 0xfd, 0x2a, 0x7d, 0xbe, 0xe2, 0x90, 0xe0, 0x7a, 0x1f, 0xc6, 0x80, + 0x22, 0xde, 0x59, 0x7e, 0x6f, 0x94, 0xfa, 0x52, 0x79, 0x98, 0x35, 0x26, + 0x31, 0xd0, 0x2f, 0xe7, 0x4d, 0x2b, 0xec, 0xbf, 0x9d, 0x00, 0x34, 0xc9, + 0xef, 0x40, 0x97, 0xde, 0x94, 0xa0, 0xff, 0x00, 0x64, 0x53, 0x76, 0x01, + 0xff, 0x00, 0xd6, 0xa0, 0x05, 0xf3, 0x09, 0xa7, 0x07, 0x24, 0x53, 0x70, + 0x3b, 0x52, 0x00, 0x28, 0x00, 0x95, 0xe4, 0x54, 0xca, 0x80, 0x4f, 0xf2, + 0xaa, 0x6c, 0x1d, 0x9b, 0xf7, 0x8c, 0xc7, 0x3d, 0x87, 0x4a, 0xbe, 0x1b, + 0xb6, 0x69, 0x8c, 0xa8, 0x5b, 0xa7, 0x3e, 0xa2, 0x80, 0x29, 0x32, 0xed, + 0x18, 0x5e, 0x29, 0xb9, 0x7e, 0x3a, 0xe2, 0xaf, 0xb2, 0x46, 0xdc, 0x12, + 0xdf, 0x9d, 0x33, 0x64, 0x6a, 0x38, 0x26, 0x95, 0x86, 0x42, 0x8c, 0xc0, + 0x6e, 0xc7, 0x4e, 0xd4, 0xab, 0x77, 0xbb, 0x39, 0x5c, 0x7d, 0x05, 0x4b, + 0xb5, 0x7b, 0x13, 0x4d, 0x2a, 0x4f, 0x45, 0x3f, 0x9d, 0x00, 0x46, 0xd7, + 0x31, 0xe3, 0xee, 0xb9, 0x3f, 0x4a, 0x85, 0xae, 0xc0, 0xea, 0x18, 0x0f, + 0xa5, 0x58, 0xf2, 0xc6, 0x79, 0x14, 0x79, 0x6b, 0xfd, 0xd1, 0x4c, 0x06, + 0x03, 0xb8, 0x66, 0x97, 0x6e, 0x6a, 0x5c, 0x00, 0x29, 0x9e, 0x53, 0x83, + 0x90, 0x4e, 0x3d, 0xa8, 0x18, 0xcd, 0x9c, 0xf3, 0x52, 0x2a, 0x00, 0x38, + 0xa8, 0x9b, 0xcf, 0x8f, 0x9c, 0x07, 0x5f, 0xc8, 0xd3, 0xd6, 0x65, 0x23, + 0xa1, 0x5f, 0x63, 0x40, 0x08, 0xed, 0x20, 0x46, 0x70, 0x30, 0x14, 0xf4, + 0xc5, 0x2f, 0x98, 0x36, 0xe4, 0x7a, 0x53, 0xe2, 0x9f, 0x6b, 0x10, 0x63, + 0x2c, 0x8d, 0xd6, 0xa2, 0xdb, 0x18, 0x93, 0x2b, 0xb8, 0x00, 0x73, 0x8a, + 0x43, 0x14, 0x06, 0x8a, 0x5c, 0x99, 0x5b, 0xa6, 0x48, 0x34, 0xab, 0x34, + 0xab, 0x22, 0x6e, 0x20, 0xa3, 0x76, 0xa4, 0x95, 0x92, 0x49, 0xd6, 0x43, + 0x9f, 0x71, 0x4b, 0xe5, 0xf9, 0xf3, 0x92, 0x1f, 0x03, 0x1d, 0x28, 0x01, + 0xd2, 0x5f, 0xc7, 0xe6, 0x79, 0x7b, 0x0f, 0x5c, 0x67, 0x15, 0x23, 0x20, + 0xc7, 0x4a, 0xaf, 0xb5, 0x3e, 0xd4, 0xb1, 0x00, 0x30, 0x39, 0xfa, 0x9a, + 0x9d, 0xd8, 0xa9, 0xc5, 0x02, 0x23, 0x2a, 0x0d, 0x30, 0xc2, 0xa7, 0xf8, + 0x47, 0xe1, 0x4f, 0x2c, 0x68, 0xcd, 0x16, 0x1d, 0xc8, 0x7c, 0x9c, 0x8c, + 0x06, 0x23, 0xf1, 0xa0, 0x42, 0xc3, 0xf8, 0xf3, 0xf5, 0xa9, 0xb8, 0x14, + 0xa4, 0x8c, 0x51, 0x61, 0xf3, 0x32, 0xb9, 0x59, 0x07, 0x42, 0x0d, 0x19, + 0x93, 0x1f, 0x77, 0x35, 0x23, 0x1e, 0x7a, 0xd2, 0x7d, 0x28, 0x0e, 0x76, + 0x47, 0xb9, 0x86, 0x7e, 0x53, 0x4b, 0xbd, 0x8f, 0xf0, 0xb7, 0xe5, 0x4f, + 0x04, 0xd2, 0xf1, 0x9e, 0x68, 0x0e, 0x71, 0xa1, 0xb1, 0xce, 0x29, 0x77, + 0x8e, 0xa6, 0x9e, 0xa1, 0x0d, 0x48, 0x11, 0x7b, 0x1a, 0x07, 0xce, 0x57, + 0xde, 0x08, 0xc8, 0xc5, 0x21, 0x75, 0x03, 0xad, 0x5a, 0xf2, 0xc7, 0xad, + 0x23, 0x45, 0xc7, 0x5a, 0x35, 0x1f, 0x38, 0x79, 0xa3, 0x03, 0x9a, 0x41, + 0x28, 0x3d, 0xea, 0x13, 0xbc, 0x74, 0x01, 0x85, 0x1e, 0x7a, 0x27, 0xde, + 0xc8, 0xfa, 0x8a, 0x66, 0x45, 0x9c, 0xa9, 0x1d, 0x6a, 0x39, 0x27, 0x8e, + 0x31, 0xcb, 0x54, 0x2d, 0x39, 0x97, 0xe5, 0x89, 0x71, 0xef, 0x8a, 0x68, + 0xb5, 0x5c, 0xee, 0x73, 0xb9, 0xa8, 0x10, 0xf1, 0x2a, 0xcc, 0x70, 0x37, + 0x01, 0xeb, 0x8a, 0x9b, 0xca, 0x40, 0x39, 0x62, 0x69, 0x89, 0xc7, 0x00, + 0x01, 0x52, 0x8f, 0x7c, 0x50, 0x04, 0x3f, 0x67, 0x8f, 0x39, 0xc1, 0x34, + 0xd2, 0x52, 0x23, 0xc4, 0x7f, 0x8d, 0x3a, 0x59, 0x99, 0x0e, 0x02, 0x8c, + 0x7a, 0xe6, 0x93, 0xce, 0x04, 0x7d, 0xe5, 0xa6, 0x04, 0x81, 0xcb, 0x2f, + 0x19, 0x1f, 0x43, 0x51, 0xf9, 0x63, 0x7e, 0xe2, 0x72, 0x7f, 0xda, 0xa4, + 0xeb, 0xd3, 0x6f, 0xe5, 0x47, 0xcc, 0x3a, 0xaa, 0x9f, 0xc6, 0x80, 0x1e, + 0x58, 0x03, 0xca, 0x71, 0xed, 0x4e, 0x56, 0x56, 0x19, 0x5e, 0x7f, 0x13, + 0x51, 0x73, 0x9f, 0xbb, 0xfa, 0xd3, 0xc1, 0x3e, 0x94, 0x00, 0xbf, 0x2f, + 0xa1, 0xfc, 0xcd, 0x2f, 0xca, 0x3b, 0x7e, 0xb4, 0x98, 0x3e, 0x94, 0x62, + 0x80, 0x1d, 0x95, 0x3f, 0xc0, 0x28, 0xdd, 0x8e, 0x80, 0x0f, 0xc2, 0x93, + 0x24, 0x7f, 0x0f, 0xeb, 0x46, 0xe6, 0x1f, 0xc2, 0xbf, 0x9d, 0x00, 0x04, + 0x33, 0x75, 0x26, 0x9b, 0xb3, 0x1d, 0xa9, 0xfb, 0xfd, 0x71, 0x48, 0x5c, + 0x7a, 0xd0, 0x00, 0x38, 0xa7, 0x03, 0xed, 0x4c, 0xdc, 0x28, 0xdf, 0x40, + 0x87, 0x30, 0x2f, 0xfc, 0x45, 0x7e, 0x94, 0x98, 0x60, 0x3b, 0x37, 0xd4, + 0xd1, 0xba, 0x8d, 0xd4, 0x01, 0x1b, 0x44, 0x5c, 0xe4, 0x00, 0x0f, 0xd6, + 0xa5, 0x40, 0x51, 0x7e, 0x62, 0x09, 0xfa, 0x52, 0x64, 0xd1, 0x82, 0x7b, + 0x50, 0x31, 0x77, 0x0a, 0x5c, 0xfb, 0x9a, 0x40, 0xa7, 0xd2, 0x9e, 0x22, + 0x26, 0x98, 0x86, 0xe7, 0xd0, 0xd1, 0xf8, 0xd3, 0x8c, 0x54, 0x79, 0x78, + 0xa2, 0xe0, 0x34, 0xe6, 0x9a, 0x33, 0x52, 0x16, 0x8e, 0x31, 0xf3, 0x3a, + 0x8f, 0xc6, 0xa2, 0x37, 0x50, 0xff, 0x00, 0x09, 0x66, 0xff, 0x00, 0x74, + 0x52, 0xb8, 0x0f, 0xc1, 0xa3, 0x66, 0x6a, 0x2f, 0xb5, 0x67, 0xee, 0xc4, + 0xc7, 0xeb, 0xc5, 0x31, 0xa6, 0x9c, 0xfd, 0xd8, 0xd4, 0x7d, 0x4d, 0x17, + 0x19, 0x67, 0x67, 0xbd, 0x2f, 0x97, 0x9a, 0xaa, 0x1e, 0x73, 0xfc, 0x40, + 0x7d, 0x05, 0x38, 0x20, 0x6f, 0xbf, 0x23, 0x9f, 0xc6, 0x90, 0x12, 0x49, + 0x2c, 0x30, 0xfd, 0xf9, 0x54, 0x7b, 0x55, 0x53, 0xa8, 0x2b, 0x36, 0x21, + 0x46, 0x73, 0x53, 0x35, 0xa5, 0xbb, 0x0f, 0xba, 0x09, 0xa6, 0x0b, 0x20, + 0x3e, 0xe2, 0x91, 0xf4, 0xa0, 0x34, 0x1a, 0x26, 0xbc, 0x7e, 0x8a, 0xaa, + 0x3d, 0xe9, 0xd9, 0xb9, 0xef, 0x28, 0xfc, 0x05, 0x3f, 0xec, 0xb2, 0x44, + 0xb9, 0x32, 0x01, 0xf5, 0xa8, 0x8c, 0x97, 0x04, 0xe2, 0x25, 0x56, 0xf7, + 0xa6, 0x02, 0xb4, 0xb7, 0x28, 0x3e, 0xf0, 0x3f, 0x51, 0x4f, 0xb6, 0xbd, + 0x69, 0x5b, 0x63, 0x2e, 0x0d, 0x30, 0x5a, 0xdc, 0x4a, 0x7f, 0x7b, 0x28, + 0x03, 0xd0, 0x55, 0xa8, 0xa0, 0x8a, 0x11, 0xc0, 0xe7, 0xd6, 0x90, 0x13, + 0x63, 0x8c, 0x9a, 0x6e, 0x33, 0x4b, 0xe6, 0x0a, 0x03, 0x50, 0x21, 0x9b, + 0x0f, 0xad, 0x38, 0x29, 0x02, 0x9d, 0x9f, 0x7a, 0x39, 0xa0, 0x06, 0x11, + 0x49, 0xb4, 0x54, 0x9b, 0x68, 0xc7, 0xa5, 0x00, 0x42, 0x53, 0x34, 0xc3, + 0x1d, 0x59, 0xc1, 0x1d, 0xa9, 0xa4, 0x35, 0x00, 0x57, 0xd8, 0x7d, 0x29, + 0xae, 0xf1, 0xc7, 0xf7, 0x99, 0x47, 0xe3, 0x56, 0x4c, 0x7b, 0xab, 0x3a, + 0xe2, 0xc1, 0xc3, 0xf9, 0x89, 0xcf, 0xb5, 0x22, 0x90, 0xe3, 0x75, 0x0e, + 0x38, 0x6c, 0xfe, 0x14, 0x9f, 0x6a, 0x87, 0x1c, 0xb1, 0x1f, 0x85, 0x40, + 0xae, 0xaa, 0x71, 0x20, 0xc1, 0xf7, 0xa9, 0x43, 0xc0, 0x7f, 0xbb, 0x4e, + 0xc0, 0x3c, 0x4f, 0x13, 0x7d, 0xd9, 0x05, 0x49, 0xb7, 0x70, 0xc8, 0x61, + 0x50, 0x3a, 0xc0, 0xe3, 0x02, 0x32, 0xc7, 0xd8, 0x55, 0x67, 0x82, 0xe1, + 0x4e, 0x61, 0xdc, 0x07, 0xa5, 0x16, 0x02, 0xf9, 0x89, 0xbe, 0xb4, 0xd3, + 0x17, 0xfb, 0x35, 0x56, 0x16, 0xd4, 0x10, 0xfc, 0xc8, 0x08, 0xad, 0x08, + 0xe6, 0x04, 0x62, 0x58, 0xd9, 0x4f, 0xd3, 0x34, 0xac, 0x3b, 0xb4, 0x41, + 0xe4, 0x8f, 0x4a, 0x3c, 0x80, 0x7b, 0x1f, 0xce, 0xad, 0x07, 0x84, 0x9c, + 0x07, 0xfc, 0xe9, 0xfb, 0x14, 0xf4, 0x22, 0x95, 0x83, 0x9d, 0x94, 0xbc, + 0x81, 0xd8, 0xb0, 0xfc, 0x68, 0xf2, 0x1b, 0xb4, 0x8f, 0xf9, 0xd5, 0xdf, + 0x29, 0x8f, 0x6a, 0x04, 0x44, 0x1e, 0x68, 0xb0, 0xfd, 0xa3, 0x2a, 0x08, + 0xdc, 0x0c, 0x6e, 0x6a, 0x68, 0x49, 0x41, 0xff, 0x00, 0x58, 0x71, 0x57, + 0x8a, 0x7b, 0x53, 0x0a, 0xff, 0x00, 0xb2, 0x68, 0xb0, 0x7b, 0x46, 0x55, + 0xdb, 0x37, 0xfc, 0xf5, 0x3f, 0x95, 0x1b, 0x26, 0x3d, 0x5f, 0x3f, 0x85, + 0x5b, 0xd8, 0x1b, 0xbe, 0x29, 0xe9, 0x11, 0xcf, 0x5a, 0x76, 0x0e, 0x76, + 0x52, 0xd9, 0x3e, 0x3f, 0xd6, 0x1f, 0xca, 0x90, 0xc5, 0x29, 0xeb, 0x29, + 0xad, 0x03, 0x11, 0xf4, 0xa6, 0x18, 0xb3, 0xda, 0x8b, 0x07, 0x3b, 0x28, + 0xf9, 0x72, 0x7f, 0xcf, 0x57, 0xfc, 0xe8, 0xf2, 0x18, 0xf5, 0x76, 0x3f, + 0x8d, 0x5c, 0xf2, 0xc8, 0xed, 0x49, 0xb7, 0x06, 0x8b, 0x07, 0x3b, 0x2a, + 0x7d, 0x9b, 0x3d, 0x4b, 0x7e, 0x74, 0xa2, 0xd5, 0x3d, 0x3f, 0x5a, 0xb8, + 0x00, 0xa7, 0x6c, 0xa2, 0xc1, 0xcf, 0x22, 0x91, 0xb7, 0x51, 0xfc, 0x22, + 0x81, 0x08, 0xfe, 0xe8, 0xab, 0x8c, 0x98, 0xa6, 0xec, 0xa2, 0xc2, 0xe6, + 0x64, 0x21, 0x3b, 0x01, 0x4a, 0x23, 0x26, 0xa6, 0x0b, 0x8a, 0x70, 0xe2, + 0x8b, 0x0a, 0xe4, 0x42, 0x1a, 0x91, 0x62, 0x15, 0x22, 0x91, 0x52, 0x02, + 0x0f, 0x6a, 0x04, 0x31, 0x63, 0x03, 0xb5, 0x3f, 0x6d, 0x2e, 0x7f, 0x1a, + 0x37, 0x0f, 0x4a, 0x60, 0x27, 0x4e, 0xa2, 0x9d, 0xb4, 0x1e, 0x79, 0xfa, + 0x66, 0x9b, 0xb8, 0x9f, 0xe1, 0xc5, 0x28, 0xcf, 0x5c, 0xe2, 0x80, 0x0d, + 0xa3, 0xfb, 0xb4, 0x9f, 0x28, 0xeb, 0x4e, 0xeb, 0xdc, 0x52, 0x11, 0x40, + 0x83, 0x0a, 0xdd, 0x05, 0x2e, 0xcc, 0x54, 0x7b, 0xb0, 0x78, 0x14, 0xf0, + 0xcc, 0x45, 0x03, 0x1f, 0x80, 0x2a, 0xbb, 0x2f, 0xef, 0x0b, 0x75, 0xcf, + 0x66, 0xa9, 0x72, 0x29, 0x30, 0x28, 0x02, 0x35, 0x45, 0x1f, 0xc3, 0xf9, + 0x53, 0xc9, 0x5c, 0x61, 0x90, 0x91, 0xee, 0x6a, 0x27, 0x8e, 0x42, 0xf9, + 0x12, 0xe1, 0x7f, 0xbb, 0x8a, 0x5d, 0x99, 0x18, 0x20, 0x1f, 0xc6, 0x80, + 0x1c, 0xf2, 0x28, 0x1e, 0x82, 0x8d, 0xc4, 0x8c, 0x8e, 0x94, 0xd2, 0x30, + 0x3e, 0xea, 0x8a, 0x67, 0x9c, 0x57, 0x87, 0x51, 0xf8, 0x1a, 0x00, 0x7e, + 0xe3, 0xeb, 0x49, 0xce, 0x6a, 0x31, 0x71, 0x09, 0x38, 0xdd, 0x83, 0xee, + 0x2a, 0x50, 0xc1, 0x87, 0xca, 0x41, 0xa0, 0x04, 0xc9, 0xc7, 0x5a, 0x32, + 0x7d, 0x68, 0xc6, 0x29, 0x7b, 0x50, 0x01, 0xd4, 0x50, 0x38, 0xa4, 0xe4, + 0xf7, 0xa7, 0x62, 0x80, 0x13, 0x83, 0x41, 0x14, 0x8c, 0xc2, 0x31, 0xdc, + 0x9f, 0x61, 0x4d, 0x0e, 0x5c, 0x67, 0x04, 0x7d, 0x68, 0x01, 0xd8, 0xcd, + 0x29, 0x5c, 0x53, 0x72, 0x69, 0x32, 0x49, 0xeb, 0x40, 0x01, 0x38, 0xa0, + 0x52, 0x1f, 0x7a, 0x4e, 0xb4, 0x00, 0xff, 0x00, 0x94, 0x52, 0x16, 0x06, + 0x9b, 0x81, 0xeb, 0x4b, 0x8a, 0x00, 0x42, 0x0e, 0x69, 0x47, 0xbd, 0x1c, + 0xf4, 0xa4, 0xc1, 0xa0, 0x77, 0x0c, 0x03, 0x4f, 0x5f, 0x94, 0x53, 0x32, + 0x28, 0xcf, 0xbd, 0x01, 0x71, 0xe7, 0x69, 0xa1, 0x4b, 0x28, 0x2a, 0x40, + 0x71, 0xdb, 0xd6, 0xa3, 0xdd, 0x8a, 0x4d, 0xfc, 0xf5, 0xa4, 0x3b, 0x8f, + 0x70, 0x8e, 0x3e, 0x62, 0xc2, 0xa1, 0x29, 0x18, 0xff, 0x00, 0x96, 0x84, + 0x7e, 0x14, 0xe2, 0xe4, 0xf7, 0xa3, 0x3c, 0x76, 0xa0, 0x08, 0x92, 0x15, + 0x2d, 0x93, 0x27, 0x14, 0xf6, 0xc4, 0x40, 0xec, 0x24, 0x9a, 0x71, 0x27, + 0xd6, 0x93, 0xe6, 0xc7, 0x5a, 0x02, 0xe4, 0x28, 0x92, 0x35, 0xc0, 0x94, + 0x8c, 0x01, 0xeb, 0x56, 0x5d, 0xb7, 0x1c, 0x9a, 0x8f, 0x3e, 0xa4, 0xd2, + 0x66, 0x98, 0x36, 0x38, 0xf4, 0xa4, 0x1c, 0x52, 0x64, 0xd2, 0x1a, 0x05, + 0x71, 0xc5, 0x87, 0x4a, 0x69, 0x61, 0x4d, 0x20, 0xd2, 0x05, 0x6f, 0x4a, + 0x02, 0xe0, 0x5a, 0x90, 0x1f, 0x7a, 0x7e, 0xcf, 0x51, 0x48, 0x57, 0xda, + 0x81, 0x09, 0xbc, 0x8a, 0x5d, 0xfc, 0x74, 0xa4, 0xda, 0x29, 0x0d, 0x00, + 0x28, 0x93, 0x9e, 0x94, 0xf0, 0xde, 0xc6, 0xa3, 0xc5, 0x00, 0x91, 0xef, + 0x40, 0x16, 0x52, 0x45, 0xce, 0x33, 0xcd, 0x39, 0xa4, 0x03, 0x3c, 0xd4, + 0x1b, 0x43, 0xe0, 0x9e, 0x0f, 0xad, 0x37, 0xf7, 0x8b, 0xf7, 0x80, 0x61, + 0xea, 0x28, 0x28, 0x71, 0xf3, 0x00, 0x01, 0x57, 0x26, 0x99, 0xe4, 0xbb, + 0x9c, 0xc8, 0x47, 0xd2, 0xad, 0xbb, 0x05, 0x03, 0x71, 0x15, 0x01, 0x9a, + 0x22, 0x68, 0x10, 0x08, 0x10, 0x0e, 0x38, 0x3e, 0xc6, 0x8f, 0x2b, 0x1d, + 0x24, 0x3f, 0x8d, 0x28, 0x31, 0x9a, 0x36, 0x44, 0x7f, 0x8b, 0x14, 0x00, + 0x05, 0x90, 0x74, 0x65, 0x34, 0x13, 0x26, 0x30, 0xd1, 0xa9, 0xfa, 0x35, + 0x1b, 0x71, 0xf7, 0x64, 0x1f, 0x88, 0xa3, 0xe6, 0xee, 0x11, 0xa8, 0x02, + 0x22, 0xb8, 0x39, 0x11, 0xb8, 0xfc, 0x73, 0x4b, 0x9e, 0x39, 0x8f, 0x3f, + 0x51, 0x4f, 0xdc, 0xa3, 0xac, 0x67, 0xf0, 0xa5, 0x06, 0x36, 0xee, 0xc3, + 0xf1, 0x34, 0xc0, 0x8b, 0x74, 0x5d, 0xd7, 0x06, 0xa4, 0x56, 0x5e, 0xd9, + 0xfc, 0xe9, 0xfe, 0x58, 0x3d, 0x18, 0xd3, 0x1a, 0x0f, 0x4c, 0x1f, 0xa8, + 0xa0, 0x07, 0x53, 0x4e, 0x6a, 0x26, 0xcc, 0x7d, 0x63, 0xff, 0x00, 0xbe, + 0x4d, 0x49, 0x1b, 0xab, 0xf6, 0x61, 0xf5, 0xa0, 0x42, 0xee, 0x22, 0x82, + 0xf5, 0x26, 0xc3, 0xd8, 0x9f, 0xca, 0x93, 0x69, 0xff, 0x00, 0x22, 0x80, + 0x22, 0x24, 0x9a, 0x4c, 0x9f, 0x5a, 0x97, 0x1e, 0xdf, 0xa5, 0x1b, 0x41, + 0xed, 0x40, 0x11, 0xfe, 0x34, 0xa0, 0x54, 0xa2, 0x3a, 0x70, 0x40, 0x3a, + 0xd0, 0x04, 0x3b, 0x69, 0x76, 0x9a, 0xb0, 0x15, 0x69, 0xc0, 0x62, 0x90, + 0x15, 0xc4, 0x64, 0xd4, 0x8b, 0x11, 0xa9, 0x72, 0x3d, 0x29, 0xa4, 0x13, + 0xd1, 0xf1, 0x4c, 0x41, 0xb3, 0x1e, 0x94, 0xd2, 0xe8, 0x3a, 0xba, 0x8a, + 0x6f, 0x96, 0xc3, 0xae, 0x1f, 0xeb, 0x4a, 0x00, 0xff, 0x00, 0x9e, 0x40, + 0x7d, 0x28, 0x00, 0xf3, 0xa3, 0x1d, 0x0b, 0x1f, 0xa2, 0xd2, 0x19, 0xd8, + 0xfd, 0xd8, 0x9b, 0xfe, 0x04, 0x71, 0x4e, 0xc7, 0xd6, 0x98, 0x73, 0xe8, + 0x7f, 0x2a, 0x00, 0x6b, 0x3c, 0xe7, 0xba, 0xaf, 0xd3, 0x9a, 0x89, 0x94, + 0xb7, 0xdf, 0x91, 0xdb, 0xf1, 0xc5, 0x4d, 0xf3, 0x7a, 0x7e, 0x94, 0x9b, + 0x7d, 0x8f, 0xe5, 0x48, 0x08, 0x04, 0x71, 0x8e, 0x89, 0xf9, 0xd3, 0xc0, + 0x1f, 0x4a, 0x7e, 0xdc, 0xff, 0x00, 0x09, 0xa3, 0x6b, 0x76, 0x46, 0xa0, + 0x63, 0x70, 0x05, 0x14, 0xff, 0x00, 0x2d, 0xcf, 0xf0, 0xfe, 0xb4, 0x79, + 0x52, 0x76, 0x45, 0xfc, 0x4d, 0x16, 0x01, 0x01, 0x1d, 0xcd, 0x2e, 0x56, + 0x8f, 0x22, 0x73, 0xfd, 0xc1, 0x49, 0xf6, 0x39, 0x0f, 0xde, 0x98, 0x0f, + 0xa0, 0xa0, 0x05, 0xca, 0x28, 0xcb, 0x36, 0x2a, 0x33, 0x78, 0x59, 0xb6, + 0x43, 0xf9, 0xd4, 0x82, 0xc2, 0x2c, 0xe5, 0xdd, 0x9f, 0xea, 0x6a, 0x64, + 0x81, 0x23, 0xfb, 0x8a, 0x05, 0x00, 0x36, 0x3b, 0x50, 0xdf, 0x34, 0xac, + 0x58, 0xfb, 0xd5, 0x8c, 0x05, 0x18, 0x50, 0x00, 0xa6, 0x61, 0xbd, 0x68, + 0xe4, 0x75, 0xe6, 0x81, 0x08, 0x7e, 0x94, 0x84, 0x53, 0xf8, 0xa4, 0x23, + 0x34, 0x00, 0xc0, 0xa3, 0xd0, 0xd2, 0xed, 0xa7, 0x6d, 0xa5, 0xc7, 0xbd, + 0x03, 0x1a, 0x14, 0xd3, 0xb9, 0x14, 0x52, 0xe7, 0xde, 0x81, 0x0d, 0x34, + 0x72, 0x29, 0x49, 0x14, 0xdc, 0x8a, 0x00, 0x5c, 0xb5, 0x26, 0x4f, 0xa5, + 0x19, 0xa5, 0x03, 0x3d, 0xe8, 0x01, 0xa3, 0x34, 0xe0, 0x1a, 0x9d, 0x8c, + 0x50, 0x4d, 0x03, 0x2b, 0x5c, 0x5a, 0xac, 0xfd, 0x40, 0xcf, 0xd2, 0xa0, + 0x16, 0x82, 0xdc, 0x65, 0x40, 0x3f, 0x51, 0x57, 0xa8, 0x64, 0x0c, 0x30, + 0x4d, 0x01, 0x72, 0xa4, 0x33, 0xc6, 0x58, 0xae, 0x36, 0xb5, 0x4a, 0x64, + 0xc3, 0x63, 0xad, 0x41, 0x25, 0x81, 0x0f, 0xbe, 0x36, 0xe7, 0xd2, 0x9c, + 0x1a, 0x40, 0x31, 0x24, 0x47, 0xea, 0x29, 0x0c, 0x9c, 0xbf, 0x1f, 0x76, + 0x9b, 0x9f, 0x7a, 0x68, 0x74, 0x1d, 0xc8, 0xfa, 0x8a, 0x5d, 0xea, 0x7a, + 0x30, 0xa6, 0x21, 0xd9, 0x07, 0x86, 0x0a, 0x7f, 0x0a, 0x6b, 0x5b, 0xc6, + 0xdd, 0x3e, 0x5f, 0xa7, 0x14, 0x98, 0xe6, 0x9e, 0x31, 0xde, 0x80, 0x22, + 0x31, 0x48, 0xbf, 0x72, 0x56, 0x1f, 0xad, 0x37, 0x75, 0xda, 0x74, 0x64, + 0x61, 0xee, 0x2a, 0xc6, 0x32, 0x38, 0xa4, 0x20, 0x8f, 0x5a, 0x00, 0x8d, + 0x6e, 0xe5, 0x5f, 0xbf, 0x0f, 0xfd, 0xf3, 0x52, 0x1b, 0xe8, 0xfb, 0xa9, + 0x1f, 0x51, 0x4d, 0x3f, 0x4a, 0x6f, 0xe1, 0x40, 0x0f, 0x17, 0x51, 0x37, + 0x46, 0x51, 0xf8, 0xd4, 0xc8, 0xf9, 0xe4, 0x10, 0x47, 0xb1, 0xaa, 0x86, + 0x34, 0x6e, 0xa8, 0x29, 0xbf, 0x66, 0x40, 0x7e, 0x52, 0x57, 0xe8, 0x71, + 0x40, 0x8b, 0xfb, 0xa9, 0x0b, 0x67, 0xb5, 0x54, 0x11, 0x3a, 0xfd, 0xd9, + 0xdb, 0xf1, 0xe6, 0x97, 0xfd, 0x21, 0x7f, 0xe5, 0xa2, 0x9f, 0xa8, 0xa2, + 0xc0, 0x59, 0x3d, 0x29, 0xb9, 0x5a, 0x88, 0x5c, 0x4a, 0xbd, 0x51, 0x1b, + 0xf1, 0xa7, 0x1b, 0x86, 0x6f, 0xf9, 0x77, 0xfc, 0x8d, 0x16, 0x19, 0x28, + 0x65, 0xa5, 0xe2, 0xaa, 0xb5, 0xc2, 0x27, 0xdf, 0x56, 0x4f, 0xc2, 0x9d, + 0x1c, 0xb1, 0x49, 0xca, 0x4a, 0x28, 0x02, 0xc6, 0x69, 0x30, 0x0d, 0x33, + 0xf1, 0xa3, 0xe9, 0x40, 0x0f, 0xda, 0x29, 0x76, 0x8c, 0x54, 0x79, 0x34, + 0x64, 0xd0, 0x03, 0xb8, 0x07, 0x8a, 0x70, 0xfa, 0xd4, 0x47, 0x75, 0x30, + 0xee, 0xf5, 0x22, 0x80, 0x2d, 0x0f, 0xad, 0x3b, 0x70, 0xaa, 0x98, 0x6f, + 0xef, 0x9a, 0x50, 0x48, 0xfe, 0x2c, 0xd0, 0x05, 0xb0, 0x69, 0xa4, 0x9c, + 0xd4, 0x1b, 0xfd, 0xe9, 0x7c, 0xd3, 0x40, 0x12, 0x93, 0x8a, 0x5d, 0xe3, + 0x15, 0x0e, 0xfc, 0xd1, 0xbf, 0xda, 0x81, 0x12, 0xee, 0x14, 0xbb, 0xbd, + 0xea, 0x1d, 0xc0, 0xd1, 0xc5, 0x03, 0x25, 0xdd, 0x48, 0x4d, 0x33, 0x8a, + 0x4c, 0xe2, 0x80, 0x1f, 0x50, 0x4b, 0x13, 0x48, 0x78, 0x90, 0x81, 0xe9, + 0x52, 0xee, 0x26, 0x93, 0x9e, 0xf4, 0x08, 0x84, 0x46, 0x54, 0x7f, 0xab, + 0x56, 0xf7, 0xcd, 0x48, 0xb9, 0xfe, 0xe0, 0xfc, 0x29, 0xfd, 0x28, 0xdc, + 0x47, 0x43, 0x40, 0xc6, 0x92, 0xdf, 0xf3, 0xce, 0x80, 0xc7, 0xfb, 0x98, + 0xfc, 0x69, 0xc5, 0xb2, 0x39, 0x00, 0xfe, 0x14, 0xd2, 0x91, 0x9e, 0xa8, + 0xbf, 0x95, 0x02, 0x1a, 0xd2, 0x15, 0xec, 0xbf, 0x8b, 0x54, 0x46, 0xf1, + 0x03, 0x6d, 0xda, 0x49, 0xf6, 0xe6, 0xa7, 0x0a, 0x83, 0xa2, 0xaf, 0xe5, + 0x46, 0x57, 0xb8, 0x5a, 0x06, 0x0a, 0xc1, 0x80, 0x39, 0x03, 0x3e, 0xf4, + 0xa4, 0x8f, 0xef, 0x0f, 0xce, 0x98, 0x5a, 0x21, 0xd7, 0x6d, 0x1b, 0xe0, + 0xff, 0x00, 0x67, 0xf2, 0xa0, 0x07, 0xe0, 0x50, 0x57, 0x8a, 0x88, 0xb4, + 0x7d, 0x81, 0x3f, 0x85, 0x1b, 0xc0, 0xe9, 0x11, 0x34, 0x00, 0xfd, 0x87, + 0xd6, 0x8d, 0x86, 0xa1, 0x7f, 0x35, 0xfe, 0xe0, 0x09, 0xff, 0x00, 0x02, + 0xa9, 0x21, 0x0e, 0x9f, 0x7d, 0xf7, 0x50, 0x04, 0x9b, 0x78, 0xef, 0x49, + 0xb4, 0x53, 0x8c, 0xa3, 0xd2, 0x98, 0x5b, 0x3d, 0x8d, 0x00, 0x21, 0x18, + 0xe9, 0x49, 0xcd, 0x27, 0xe7, 0x48, 0x41, 0x3e, 0xb4, 0x00, 0xfd, 0xe3, + 0xb9, 0xa4, 0x2f, 0x4d, 0xda, 0x7d, 0xe8, 0xdb, 0xea, 0x68, 0x01, 0x18, + 0x9c, 0x7c, 0xb8, 0xcd, 0x45, 0xba, 0x6c, 0xf2, 0xab, 0x8f, 0xad, 0x4a, + 0xcf, 0x12, 0x7d, 0xe7, 0x03, 0xeb, 0x55, 0x25, 0xd4, 0x60, 0x56, 0xc2, + 0xe5, 0xcf, 0xfb, 0x22, 0x80, 0x2c, 0x75, 0xeb, 0x4b, 0x8f, 0xad, 0x54, + 0x17, 0x57, 0x32, 0x7f, 0xaa, 0xb6, 0xc0, 0xf5, 0x63, 0x52, 0x2c, 0x57, + 0x52, 0x7f, 0xac, 0x98, 0x28, 0xf4, 0x51, 0x40, 0x13, 0x95, 0xee, 0x48, + 0xa6, 0x19, 0x62, 0x5e, 0xae, 0x28, 0x5b, 0x24, 0xea, 0xec, 0x5b, 0xea, + 0x6a, 0x55, 0xb7, 0x8d, 0x7a, 0x28, 0x14, 0x01, 0x07, 0x9c, 0xa7, 0xee, + 0x2b, 0x37, 0xd0, 0x53, 0x83, 0xca, 0x7a, 0x44, 0x47, 0xd4, 0xd5, 0x90, + 0x80, 0x53, 0xa8, 0x02, 0xae, 0xc9, 0x9b, 0xa6, 0xd1, 0x47, 0x91, 0x29, + 0x3c, 0xc9, 0x8f, 0xa5, 0x5a, 0xc0, 0xf5, 0xa5, 0x0b, 0x8a, 0x06, 0x56, + 0x16, 0xc7, 0xbb, 0xb1, 0xfc, 0x69, 0x45, 0xb8, 0x5f, 0x5f, 0xce, 0xac, + 0x10, 0x69, 0x36, 0x93, 0x40, 0x88, 0x7c, 0x90, 0x3a, 0x7f, 0x3a, 0x3c, + 0xa5, 0xee, 0x3f, 0x5a, 0x9f, 0x68, 0x14, 0xd2, 0x06, 0x7a, 0x50, 0x04, + 0x1e, 0x42, 0xf6, 0x66, 0x1f, 0x8d, 0x34, 0xc5, 0x28, 0x3c, 0x49, 0x91, + 0xee, 0x2a, 0xce, 0x05, 0x26, 0xdc, 0xd0, 0x05, 0x52, 0xb2, 0x0e, 0xa8, + 0x0f, 0xd2, 0x80, 0x01, 0xfb, 0xc8, 0xc2, 0xad, 0x04, 0x03, 0x9c, 0xd2, + 0x10, 0x33, 0xd6, 0x80, 0x22, 0x11, 0x8e, 0xc6, 0x97, 0xca, 0x23, 0xa0, + 0xa9, 0x47, 0xd7, 0x34, 0xe0, 0x07, 0xa5, 0x00, 0x43, 0xe5, 0xb0, 0xed, + 0x4c, 0x74, 0x97, 0x1c, 0x70, 0x2a, 0xde, 0x0f, 0xbd, 0x23, 0x29, 0xda, + 0x68, 0x0b, 0x91, 0x49, 0x6e, 0xd2, 0x0e, 0xb5, 0x5c, 0xd9, 0xca, 0x0f, + 0xcb, 0xb6, 0xae, 0x86, 0x38, 0x1f, 0x2b, 0x7e, 0x46, 0x8c, 0x9f, 0x46, + 0xfc, 0x8d, 0x1a, 0x85, 0xca, 0x8b, 0x1d, 0xca, 0x7f, 0x02, 0x9f, 0xc6, + 0x9e, 0x1a, 0x51, 0xf7, 0xa1, 0x3f, 0x85, 0x4f, 0x96, 0xf4, 0x6f, 0xc8, + 0xd1, 0xf3, 0x7a, 0x37, 0xe5, 0x40, 0x11, 0x07, 0x3d, 0xe3, 0x6a, 0x5d, + 0xdf, 0xec, 0x1f, 0xca, 0x9f, 0xcf, 0xa3, 0x7e, 0x54, 0x60, 0xfa, 0x37, + 0xe5, 0x45, 0x80, 0x8c, 0x90, 0x7f, 0x83, 0xf4, 0xa6, 0x18, 0x83, 0x7f, + 0x0b, 0x0f, 0xa5, 0x58, 0xc1, 0xf4, 0x6f, 0xca, 0x8c, 0x1f, 0x46, 0xfc, + 0xa8, 0x02, 0xb7, 0x90, 0xdf, 0xc2, 0xce, 0x28, 0xd9, 0x70, 0x3a, 0x12, + 0x7e, 0xb5, 0x67, 0x07, 0xd1, 0xbf, 0x2a, 0x3e, 0x6f, 0x46, 0xfc, 0xa9, + 0x85, 0xca, 0xca, 0x6e, 0x3b, 0xa0, 0xa9, 0x94, 0xb6, 0x39, 0x00, 0x53, + 0xbe, 0x6f, 0x46, 0xfc, 0xa8, 0xf9, 0xbf, 0xba, 0xdf, 0x95, 0x00, 0x38, + 0x1e, 0x3a, 0xd1, 0xd7, 0xbd, 0x33, 0x2f, 0xfd, 0xc6, 0xfc, 0xa8, 0xcb, + 0x7f, 0xcf, 0x36, 0xfc, 0xa9, 0x08, 0x52, 0x3e, 0xb4, 0x84, 0x81, 0xd4, + 0x1f, 0xca, 0x93, 0x73, 0xff, 0x00, 0xcf, 0x37, 0xfc, 0xa8, 0xdd, 0x2f, + 0xfc, 0xf2, 0x6f, 0xca, 0x9d, 0x86, 0x34, 0xce, 0x8b, 0xd5, 0x88, 0xfc, + 0x29, 0x45, 0xc4, 0x5f, 0xf3, 0xd2, 0x90, 0xf9, 0xa7, 0xfe, 0x58, 0xb7, + 0xe5, 0x51, 0x18, 0xa4, 0x3f, 0xf2, 0xc0, 0xfe, 0x54, 0x58, 0x0b, 0x02, + 0x58, 0xcf, 0x46, 0x15, 0x20, 0x61, 0xd8, 0xd5, 0x03, 0x6f, 0x21, 0xe9, + 0x01, 0x14, 0x0b, 0x79, 0xc7, 0x44, 0x61, 0xf8, 0xd1, 0x60, 0x34, 0x77, + 0x7b, 0x51, 0xb8, 0x7a, 0x55, 0x25, 0x8e, 0xe0, 0x76, 0x6a, 0x95, 0x44, + 0xc3, 0xaa, 0x9a, 0x02, 0xc5, 0x8d, 0xc2, 0x8d, 0xc3, 0xda, 0xa3, 0x1b, + 0xfb, 0xa1, 0xfc, 0xa9, 0xe0, 0x1e, 0xea, 0x7f, 0x2a, 0x05, 0x60, 0xc8, + 0x34, 0x85, 0x57, 0xd2, 0x9d, 0xff, 0x00, 0x01, 0x6f, 0xca, 0x8c, 0x7f, + 0xb2, 0xdf, 0x95, 0x00, 0x33, 0x18, 0xe9, 0x45, 0x3f, 0x1f, 0xec, 0x9f, + 0xca, 0x8d, 0xbf, 0xec, 0x9f, 0xca, 0x80, 0x1b, 0x4b, 0xc5, 0x2e, 0xdf, + 0xf6, 0x4f, 0xe5, 0x46, 0xd3, 0xfd, 0xd3, 0xf9, 0x50, 0x03, 0x69, 0x69, + 0x76, 0x9f, 0xee, 0x9f, 0xca, 0x8d, 0xa7, 0xd0, 0xfe, 0x54, 0x00, 0x99, + 0xa2, 0x97, 0x6b, 0x7a, 0x1f, 0xca, 0x8c, 0x37, 0xf7, 0x4f, 0xe5, 0x40, + 0x0d, 0xe2, 0x8e, 0x29, 0xd8, 0x6f, 0x43, 0xf9, 0x51, 0xb5, 0xbd, 0x0f, + 0xe5, 0x40, 0x0d, 0xca, 0xd1, 0x91, 0x4b, 0xb5, 0xbd, 0x0f, 0xe5, 0x46, + 0xd6, 0xf4, 0x3f, 0x95, 0x00, 0x26, 0x69, 0x73, 0xef, 0x46, 0xd3, 0xe8, + 0x7f, 0x2a, 0x5d, 0xa7, 0xd0, 0xfe, 0x54, 0x58, 0x04, 0xdc, 0x7d, 0x68, + 0xdd, 0x4b, 0xb5, 0xbd, 0x0f, 0xe5, 0x46, 0xd6, 0xf4, 0x3f, 0x95, 0x16, + 0x01, 0x37, 0x51, 0x9a, 0x5d, 0xad, 0xe8, 0x7f, 0x2a, 0x36, 0x37, 0xa1, + 0xfc, 0xa9, 0x58, 0x06, 0xd1, 0x9f, 0x6a, 0x7e, 0xc6, 0xf4, 0x3f, 0x95, + 0x1b, 0x1b, 0xd0, 0xd1, 0x60, 0x23, 0xcf, 0xb1, 0xa3, 0x9f, 0x43, 0x52, + 0x6d, 0x6f, 0x43, 0x46, 0xc6, 0xf4, 0x34, 0xc0, 0x8f, 0x26, 0x90, 0x92, + 0x7d, 0x2a, 0x4d, 0x8d, 0xe9, 0x47, 0x96, 0xde, 0x87, 0xf2, 0xa2, 0xc0, + 0x46, 0x37, 0x51, 0x96, 0xa7, 0xf9, 0x6d, 0xe8, 0x69, 0x3c, 0xa7, 0xf4, + 0x34, 0xac, 0x03, 0x37, 0xb7, 0xb5, 0x1b, 0x9b, 0xd2, 0x9f, 0xe5, 0x3f, + 0xa1, 0xa5, 0xf2, 0xe4, 0xf4, 0xfd, 0x28, 0x02, 0x3f, 0x98, 0xd2, 0x18, + 0xc1, 0xea, 0xa2, 0xa5, 0xf2, 0xe4, 0xf4, 0xa3, 0xcb, 0x7f, 0x4a, 0x2c, + 0x04, 0x06, 0x05, 0xfe, 0xee, 0x3e, 0x94, 0xdf, 0x23, 0xd1, 0x98, 0x7e, + 0x35, 0x67, 0xca, 0x7f, 0x4a, 0x5f, 0x29, 0xbf, 0xbb, 0x40, 0x5c, 0xab, + 0xe5, 0x37, 0xfc, 0xf4, 0x6a, 0x36, 0x38, 0xff, 0x00, 0x96, 0x8d, 0xf9, + 0x55, 0xaf, 0x28, 0xff, 0x00, 0x76, 0x8f, 0x28, 0xff, 0x00, 0x74, 0xd0, + 0x17, 0x2a, 0xed, 0x93, 0xfb, 0xff, 0x00, 0x98, 0xa5, 0x09, 0x2f, 0x66, + 0x5f, 0xca, 0xac, 0xf9, 0x4d, 0xe8, 0x68, 0xf2, 0x9b, 0xd0, 0xfe, 0x54, + 0x05, 0xca, 0xfb, 0x25, 0xf5, 0x5a, 0x3c, 0xb7, 0xf5, 0x5a, 0xb2, 0x22, + 0x6f, 0x7f, 0xca, 0x97, 0xca, 0x3e, 0xff, 0x00, 0x95, 0x00, 0x57, 0xf2, + 0x9b, 0xda, 0x83, 0x1b, 0x7a, 0x55, 0x9f, 0x2c, 0xfb, 0xfe, 0x54, 0x79, + 0x6d, 0xef, 0xf9, 0x51, 0xa8, 0x15, 0x76, 0x3f, 0x60, 0xbf, 0x88, 0xa4, + 0xd9, 0x37, 0x67, 0x51, 0xf4, 0x15, 0x6f, 0xcb, 0x3e, 0x87, 0xf2, 0xa4, + 0xf2, 0xcf, 0xa1, 0xfc, 0xa8, 0xd4, 0x0a, 0x4d, 0x6a, 0x64, 0xfb, 0xf2, + 0x31, 0xa7, 0x25, 0xa2, 0x47, 0xd1, 0x6a, 0xdf, 0x96, 0x7d, 0x0f, 0xe5, + 0x47, 0x97, 0xec, 0xdf, 0x95, 0x1a, 0x85, 0xc8, 0x42, 0x7b, 0x9a, 0x5c, + 0x7b, 0xd4, 0xbe, 0x5f, 0xb3, 0x7e, 0x54, 0x79, 0x5e, 0xcd, 0xf9, 0x50, + 0x04, 0x45, 0x7d, 0xe9, 0x38, 0x1d, 0xea, 0x5f, 0x27, 0xd9, 0xbf, 0x2a, + 0x4f, 0x23, 0xd9, 0xbf, 0x2a, 0x00, 0x67, 0xcb, 0xeb, 0x47, 0xc9, 0xfd, + 0xea, 0x7f, 0x91, 0xec, 0xdf, 0x95, 0x27, 0x91, 0xfe, 0xc9, 0xfc, 0xa8, + 0x01, 0x98, 0x5f, 0xef, 0x0a, 0x4d, 0xab, 0xfd, 0xe1, 0x52, 0xf9, 0x1f, + 0xec, 0x9f, 0xca, 0x8f, 0x24, 0xff, 0x00, 0x74, 0xfe, 0x54, 0x0e, 0xe4, + 0x5b, 0x47, 0xa8, 0xa3, 0x81, 0x52, 0xf9, 0x27, 0xfb, 0xa7, 0xf2, 0xa3, + 0xc9, 0x6f, 0xee, 0x9f, 0xca, 0x80, 0xb9, 0x1e, 0xe5, 0x14, 0x9b, 0x97, + 0xd6, 0xa4, 0xf2, 0x4f, 0xf7, 0x0f, 0xe5, 0x47, 0x91, 0xfe, 0xc1, 0xfc, + 0xa8, 0x11, 0x1e, 0x57, 0xd6, 0x94, 0x15, 0xf5, 0xa7, 0xf9, 0x07, 0xfb, + 0x87, 0xf2, 0xa3, 0xc9, 0x3f, 0xdc, 0x3f, 0x95, 0x00, 0x33, 0x72, 0xd3, + 0x83, 0x0f, 0x4a, 0x5f, 0x29, 0xbf, 0xba, 0x7f, 0x2a, 0x3c, 0xa6, 0xfe, + 0xe9, 0xfc, 0xa8, 0x01, 0x32, 0x3d, 0x29, 0x72, 0x29, 0x3c, 0x96, 0xfe, + 0xe9, 0xfc, 0xa8, 0xf2, 0x5b, 0xfb, 0xa7, 0xf2, 0xa0, 0x03, 0xe5, 0xf5, + 0xa3, 0x03, 0xfb, 0xd4, 0x9e, 0x43, 0x7f, 0x74, 0xfe, 0x54, 0xbe, 0x4b, + 0x7f, 0x74, 0xfe, 0x54, 0x00, 0x85, 0x73, 0xfc, 0x66, 0xa3, 0x30, 0xa9, + 0xeb, 0x23, 0xfe, 0x75, 0x2f, 0x92, 0xff, 0x00, 0xdd, 0x3f, 0x95, 0x1e, + 0x53, 0x7f, 0x70, 0xfe, 0x54, 0x01, 0x17, 0x91, 0x1f, 0x7d, 0xc7, 0xea, + 0xc6, 0x97, 0xc9, 0x88, 0x7f, 0x00, 0xa9, 0x3c, 0x96, 0xfe, 0xe1, 0xfc, + 0xa8, 0xf2, 0x5b, 0xfb, 0x8d, 0xf9, 0x50, 0x31, 0x9b, 0x10, 0x74, 0x41, + 0x4b, 0xb4, 0x7a, 0x0a, 0x77, 0x92, 0xdf, 0xdd, 0x6a, 0x5f, 0x25, 0xbf, + 0xba, 0x7f, 0x2a, 0x04, 0x33, 0x60, 0xa3, 0x60, 0xf5, 0xa9, 0x3c, 0x93, + 0xfd, 0xd3, 0xf9, 0x51, 0xe5, 0x1f, 0xee, 0x9f, 0xca, 0x80, 0x22, 0xd8, + 0xbe, 0xb4, 0xbb, 0x54, 0x77, 0xa9, 0x36, 0x1f, 0xee, 0x1f, 0xca, 0x97, + 0x63, 0x7f, 0x70, 0xfe, 0x54, 0x01, 0x1e, 0x05, 0x1f, 0x85, 0x49, 0xb1, + 0xbf, 0xba, 0xdf, 0x95, 0x31, 0xe3, 0x90, 0x8e, 0x03, 0x0f, 0xc2, 0x81, + 0x89, 0x90, 0x07, 0x38, 0xfc, 0xea, 0x17, 0xba, 0x82, 0x3f, 0xbc, 0xe3, + 0xf0, 0xa8, 0xe5, 0xb2, 0x9d, 0xfb, 0xb5, 0x56, 0x6d, 0x2e, 0xe3, 0x39, + 0xc7, 0xe9, 0x45, 0x82, 0xc8, 0x96, 0x4d, 0x4a, 0x33, 0xc4, 0x48, 0xcc, + 0x6a, 0x03, 0x25, 0xd4, 0xdd, 0x0e, 0xc1, 0xec, 0x29, 0xcb, 0x61, 0x74, + 0x9d, 0x13, 0xf4, 0xa9, 0x96, 0x1b, 0xc5, 0xff, 0x00, 0x96, 0x46, 0x98, + 0xf4, 0x22, 0x4d, 0x34, 0x3f, 0xcd, 0x2b, 0x96, 0xab, 0x71, 0xdb, 0x43, + 0x0f, 0xdc, 0x89, 0x69, 0x14, 0x5d, 0x0e, 0xb0, 0x9a, 0x78, 0x33, 0xf7, + 0xb7, 0x6a, 0x5a, 0x88, 0x77, 0x3d, 0x94, 0x52, 0x61, 0xbd, 0x05, 0x28, + 0x32, 0x77, 0xb7, 0x7a, 0x5f, 0x9b, 0xfe, 0x78, 0x49, 0xf9, 0x50, 0x03, + 0x70, 0xc3, 0xb5, 0x18, 0x34, 0xec, 0x13, 0xff, 0x00, 0x2c, 0xa4, 0xfc, + 0xa8, 0xd8, 0x7f, 0xb9, 0x27, 0xe5, 0x40, 0x0d, 0xa3, 0x38, 0xed, 0x4e, + 0xf2, 0xcf, 0xf7, 0x64, 0xfc, 0xa8, 0xf2, 0x8f, 0xf7, 0x5f, 0xfe, 0xf9, + 0xa0, 0x06, 0xef, 0x3e, 0x94, 0x6e, 0x34, 0xef, 0x2d, 0xbd, 0x1f, 0xfe, + 0xf9, 0xa3, 0xcb, 0x6f, 0x46, 0xff, 0x00, 0xbe, 0x68, 0xb0, 0x09, 0xbc, + 0xfa, 0x51, 0xbd, 0xa9, 0x7c, 0xb3, 0xe8, 0xff, 0x00, 0xf7, 0xc9, 0xa5, + 0xf2, 0xbd, 0x9f, 0xfe, 0xf9, 0x34, 0x58, 0x06, 0xee, 0x34, 0x6e, 0xa7, + 0x79, 0x7e, 0xcf, 0xf9, 0x52, 0xec, 0xff, 0x00, 0x65, 0xbf, 0x23, 0x40, + 0x11, 0x92, 0x4d, 0x00, 0x11, 0x52, 0x6c, 0xff, 0x00, 0x65, 0xbf, 0xef, + 0x93, 0x46, 0xdf, 0x66, 0xff, 0x00, 0xbe, 0x4d, 0x1a, 0x80, 0xcc, 0x31, + 0xa3, 0x6f, 0xbd, 0x49, 0x8c, 0x7f, 0x0b, 0x7f, 0xdf, 0x34, 0xb9, 0xff, + 0x00, 0x65, 0xbf, 0xef, 0x9a, 0x2c, 0x03, 0x02, 0xd3, 0x82, 0x9f, 0x5a, + 0x5d, 0xdf, 0xec, 0xb7, 0xfd, 0xf2, 0x69, 0x37, 0x7f, 0xb2, 0xff, 0x00, + 0xf7, 0xc9, 0xa2, 0xc2, 0x1c, 0x32, 0x29, 0x1b, 0x24, 0x1a, 0x4d, 0xdf, + 0xec, 0xbf, 0xfd, 0xf2, 0x69, 0x0b, 0x70, 0x7e, 0x56, 0xff, 0x00, 0xbe, + 0x68, 0x03, 0xff, 0xd9 +}; +unsigned int footprint_court_jpg_len = 56260; diff --git a/assets/hdr/06_helipad.h b/assets/hdr/06_helipad.h new file mode 100644 index 0000000..6f02f63 --- /dev/null +++ b/assets/hdr/06_helipad.h @@ -0,0 +1,3317 @@ +unsigned char helipad_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x4b, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x31, 0x30, + 0x3a, 0x32, 0x39, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x34, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, + 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, + 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, + 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, + 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, + 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, + 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xe3, 0x07, 0x4a, 0x28, 0xed, 0x45, 0x7a, 0xe7, 0x98, 0x14, + 0x51, 0x45, 0x16, 0x00, 0xa2, 0x8a, 0x28, 0xb0, 0x05, 0x14, 0x51, 0x40, + 0x05, 0x14, 0x51, 0x48, 0x02, 0x8a, 0x28, 0xa6, 0x01, 0x45, 0x14, 0x51, + 0x60, 0x0a, 0x28, 0xa2, 0x80, 0x0a, 0x28, 0xa2, 0x8b, 0x00, 0x51, 0x45, + 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0x51, 0x45, 0x14, 0x08, 0x28, 0xcd, + 0x14, 0x94, 0x0c, 0x5a, 0x29, 0x28, 0xa0, 0x05, 0xa3, 0x34, 0x94, 0x50, + 0x02, 0xe6, 0x97, 0x34, 0xda, 0x5a, 0x00, 0x28, 0xcd, 0x14, 0x50, 0x01, + 0x9a, 0x29, 0x29, 0x68, 0x00, 0xa2, 0x92, 0x8a, 0x2c, 0x02, 0xd1, 0x45, + 0x14, 0x58, 0x2e, 0x14, 0x52, 0x51, 0x45, 0x82, 0xe2, 0xd1, 0x49, 0x45, + 0x16, 0x01, 0x68, 0xa4, 0xa2, 0x95, 0x80, 0x5a, 0x29, 0x28, 0xa7, 0x60, + 0x16, 0x8a, 0x4a, 0x28, 0xb0, 0x0b, 0x45, 0x14, 0x94, 0xac, 0x02, 0xd1, + 0x45, 0x14, 0xec, 0x01, 0x45, 0x14, 0x51, 0x60, 0x0a, 0x28, 0xa2, 0x8b, + 0x05, 0xc2, 0x8a, 0x28, 0xa2, 0xc1, 0x70, 0xa2, 0x8a, 0x28, 0xb0, 0x05, + 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, + 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x40, 0x05, 0x14, 0x51, 0x4a, 0xc0, + 0x14, 0x51, 0x45, 0x3b, 0x00, 0x51, 0x4b, 0x46, 0x28, 0xb0, 0x09, 0x45, + 0x2d, 0x14, 0x80, 0x4a, 0x29, 0x71, 0x45, 0x16, 0x01, 0x28, 0xa5, 0xa2, + 0x8b, 0x00, 0x94, 0x52, 0xd1, 0x45, 0x80, 0x4a, 0x29, 0x68, 0xa0, 0x04, + 0xa2, 0x96, 0x8c, 0x50, 0x02, 0x51, 0x4b, 0x45, 0x00, 0x25, 0x14, 0xb8, + 0xa3, 0x14, 0xec, 0x02, 0x52, 0xe2, 0x8a, 0x29, 0x58, 0x02, 0x92, 0x9d, + 0x45, 0x16, 0x01, 0xb4, 0x53, 0xb1, 0x45, 0x16, 0x01, 0xb4, 0x53, 0xa8, + 0xa2, 0xc0, 0x36, 0x8a, 0x5a, 0x31, 0x40, 0x09, 0x45, 0x2e, 0x28, 0xc5, + 0x00, 0x25, 0x14, 0xb4, 0x62, 0x80, 0x12, 0x8a, 0x5c, 0x51, 0x8a, 0x00, + 0x4a, 0x29, 0x71, 0x46, 0x28, 0x01, 0x28, 0xa5, 0xc5, 0x18, 0xa0, 0x04, + 0xa2, 0x96, 0x8a, 0x76, 0x01, 0x28, 0xa5, 0xc5, 0x18, 0xa2, 0xc0, 0x25, + 0x14, 0xb8, 0xa3, 0x14, 0x58, 0x02, 0x92, 0x96, 0x8a, 0x00, 0x4a, 0x29, + 0x68, 0xc5, 0x00, 0x25, 0x14, 0xb4, 0x94, 0x00, 0x50, 0x7a, 0x51, 0x41, + 0xe9, 0x40, 0x0b, 0xda, 0x8a, 0x5c, 0x71, 0x45, 0x00, 0x25, 0x14, 0x52, + 0xd0, 0x03, 0x68, 0xa5, 0xa2, 0x81, 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, + 0x52, 0xd2, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, + 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, + 0x45, 0x14, 0x50, 0x01, 0x49, 0x4b, 0x45, 0x00, 0x14, 0x94, 0xb4, 0x50, + 0x02, 0x51, 0x4b, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x50, 0x02, 0x52, 0xd1, + 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x50, 0x02, 0x52, + 0xd1, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x50, 0x01, 0x49, 0x4b, 0x45, 0x00, + 0x14, 0x51, 0x45, 0x00, 0x14, 0x51, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x50, + 0x01, 0x49, 0x4b, 0x45, 0x00, 0x25, 0x2d, 0x14, 0x50, 0x01, 0x45, 0x14, + 0x50, 0x01, 0x45, 0x14, 0x50, 0x01, 0x49, 0x4b, 0x45, 0x00, 0x25, 0x2d, + 0x14, 0x50, 0x02, 0x52, 0xd1, 0x45, 0x00, 0x14, 0x62, 0x8a, 0x28, 0x01, + 0x31, 0x4b, 0x4b, 0x45, 0x00, 0x25, 0x14, 0xb4, 0x50, 0x02, 0x51, 0x4b, + 0x46, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, + 0x96, 0x8a, 0x00, 0x4a, 0x29, 0x68, 0xa0, 0x04, 0xa2, 0x96, 0x8a, 0x00, + 0x4a, 0x5c, 0x52, 0xe2, 0x8a, 0x06, 0x26, 0x28, 0xc5, 0x2d, 0x14, 0x00, + 0x98, 0xa2, 0x96, 0x8c, 0x50, 0x02, 0x51, 0x8a, 0x76, 0x28, 0xa0, 0x06, + 0xd2, 0xd2, 0xd1, 0x8a, 0x00, 0x4c, 0x51, 0x8a, 0x5c, 0x52, 0xe2, 0x80, + 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x18, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xb1, + 0x46, 0x28, 0x01, 0xb8, 0xa3, 0x14, 0xec, 0x51, 0x8a, 0x00, 0x6e, 0x28, + 0xc5, 0x3b, 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x18, 0xa0, + 0x06, 0xe2, 0x8c, 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb8, 0xa2, 0x9d, 0x8a, + 0x31, 0x40, 0x0d, 0xc5, 0x18, 0xa7, 0x62, 0x8c, 0x50, 0x03, 0x71, 0x46, + 0x29, 0xd8, 0xa3, 0x14, 0x00, 0xdc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x00, + 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x4c, 0x50, 0x02, 0x62, 0x8a, 0x5c, 0x51, + 0x40, 0x0d, 0xc5, 0x18, 0xa7, 0x62, 0x8a, 0x00, 0x6e, 0x28, 0xa7, 0x62, + 0x8c, 0x50, 0x03, 0x68, 0xa5, 0xa3, 0x14, 0x00, 0x94, 0x52, 0xd1, 0x40, + 0x09, 0x49, 0x8a, 0x75, 0x18, 0xa0, 0x06, 0xe2, 0x83, 0xd0, 0xd2, 0xe2, + 0x82, 0x38, 0xa0, 0x05, 0x1d, 0x28, 0xa5, 0x03, 0x81, 0x45, 0x00, 0x37, + 0x14, 0x62, 0x9d, 0x49, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x08, 0x4a, 0x4c, + 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x52, 0xd1, 0x40, + 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x51, 0x45, 0x00, 0x14, 0x51, 0x46, + 0x28, 0x00, 0xa2, 0x8c, 0x51, 0x8a, 0x00, 0x29, 0x29, 0x71, 0x46, 0x29, + 0x80, 0x94, 0xb4, 0x51, 0x40, 0x05, 0x14, 0x51, 0x48, 0x04, 0xa2, 0x9d, + 0x49, 0x8a, 0x60, 0x14, 0x94, 0xec, 0x51, 0x40, 0x0d, 0xa5, 0xa5, 0xa3, + 0x14, 0x00, 0x94, 0x62, 0x96, 0x8c, 0x50, 0x02, 0x51, 0x4b, 0x8a, 0x31, + 0x40, 0x0d, 0xa5, 0xa5, 0xc5, 0x18, 0xa0, 0x04, 0xa2, 0x96, 0x8c, 0x50, + 0x02, 0x51, 0x4b, 0x45, 0x00, 0x25, 0x18, 0xa5, 0xc5, 0x14, 0x00, 0x94, + 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2e, 0x28, 0xa0, 0x04, 0xa4, 0xa7, 0x62, + 0x8c, 0x50, 0x02, 0x51, 0x45, 0x2d, 0x00, 0x26, 0x28, 0xc5, 0x2e, 0x28, + 0xc5, 0x00, 0x25, 0x14, 0xb4, 0x94, 0x00, 0x51, 0x45, 0x2d, 0x00, 0x25, + 0x14, 0x51, 0x40, 0x05, 0x14, 0xb4, 0x52, 0x01, 0x31, 0x45, 0x2d, 0x14, + 0x00, 0x94, 0x52, 0xd1, 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, 0xb4, + 0x52, 0xd0, 0x02, 0x51, 0x4b, 0x46, 0x28, 0x01, 0x28, 0xc5, 0x2d, 0x14, + 0x00, 0x51, 0x8a, 0x29, 0x71, 0x40, 0xc4, 0xc5, 0x14, 0xb4, 0x62, 0x80, + 0x13, 0x14, 0xb4, 0xb4, 0x50, 0x02, 0x51, 0x8a, 0x5c, 0x52, 0xe2, 0x80, + 0x13, 0x14, 0x62, 0x97, 0x14, 0xb4, 0x00, 0xdc, 0x51, 0x8a, 0x76, 0x28, + 0xc5, 0x00, 0x25, 0x18, 0xa5, 0xc5, 0x2e, 0x28, 0x01, 0xb8, 0xa3, 0x14, + 0xec, 0x51, 0x8a, 0x00, 0x6e, 0x29, 0x71, 0x4e, 0xc5, 0x18, 0xa0, 0x06, + 0xe2, 0x8c, 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb8, 0xa3, 0x14, 0xfc, 0x51, + 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x49, 0x8a, 0x31, 0x40, 0x11, 0xe2, 0x97, + 0x14, 0xfc, 0x51, 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x90, + 0x0c, 0xc5, 0x18, 0xa7, 0xe2, 0x8c, 0x53, 0x02, 0x3d, 0xb4, 0xb8, 0xa7, + 0xe2, 0x8c, 0x50, 0x04, 0x78, 0xa3, 0x15, 0x26, 0x29, 0x31, 0x40, 0x0d, + 0xc5, 0x26, 0x29, 0xf8, 0xa3, 0x14, 0x00, 0xcc, 0x51, 0x8a, 0x7e, 0x28, + 0xc5, 0x00, 0x33, 0x14, 0x98, 0xa7, 0xe2, 0x8c, 0x50, 0x03, 0x31, 0x46, + 0x29, 0xf8, 0xa4, 0xc5, 0x00, 0x37, 0x14, 0x98, 0xa7, 0xe2, 0x8c, 0x50, + 0x03, 0x31, 0x46, 0x29, 0xf8, 0xa4, 0xc5, 0x00, 0x37, 0x14, 0x53, 0xb1, + 0x46, 0x28, 0x01, 0x94, 0x62, 0x9d, 0x8a, 0x4c, 0x50, 0x02, 0x62, 0x92, + 0x9d, 0x8a, 0x28, 0x01, 0xb4, 0x11, 0xc5, 0x3a, 0x90, 0xf4, 0x34, 0x00, + 0xb8, 0xe2, 0x8a, 0x70, 0x1c, 0x0a, 0x31, 0x40, 0x0c, 0xc5, 0x14, 0xec, + 0x51, 0x8a, 0x04, 0x37, 0x14, 0x53, 0xb1, 0x49, 0x8a, 0x00, 0x4a, 0x4c, + 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb4, 0x53, 0xb1, 0x45, 0x30, 0x1b, 0x45, + 0x2e, 0x28, 0xc5, 0x00, 0x25, 0x14, 0xb8, 0xa4, 0xc5, 0x00, 0x25, 0x14, + 0xec, 0x51, 0x8a, 0x00, 0x6d, 0x14, 0xb8, 0xa3, 0x14, 0x00, 0x94, 0xb4, + 0xb8, 0xa4, 0xc5, 0x02, 0x0c, 0x52, 0x53, 0xb1, 0x46, 0x28, 0x18, 0x94, + 0x62, 0x97, 0x14, 0x62, 0x81, 0x09, 0x45, 0x2e, 0x28, 0xc5, 0x00, 0x25, + 0x14, 0xb8, 0xa3, 0x14, 0x00, 0x94, 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb4, + 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb4, 0x62, 0x9d, 0x8a, 0x31, 0x40, 0x0d, + 0xa2, 0x9d, 0x8a, 0x31, 0x40, 0x0d, 0xc5, 0x18, 0xa7, 0x62, 0x8c, 0x50, + 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0x00, 0xdc, 0x51, 0x8a, 0x76, + 0x28, 0xc5, 0x00, 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x31, 0x40, 0x0d, 0xa2, + 0x9d, 0x8a, 0x31, 0x40, 0x0d, 0xc5, 0x18, 0xa7, 0x62, 0x8c, 0x50, 0x03, + 0x71, 0x45, 0x3b, 0x14, 0x62, 0x80, 0x1b, 0x45, 0x3b, 0x14, 0x98, 0xa0, + 0x04, 0xa2, 0x9d, 0x8a, 0x4c, 0x50, 0x02, 0x62, 0x8a, 0x5c, 0x51, 0x8a, + 0x00, 0x4a, 0x31, 0x4b, 0x8a, 0x31, 0x40, 0xc4, 0xa2, 0x97, 0x14, 0x62, + 0x80, 0x12, 0x8c, 0x52, 0xe2, 0x8c, 0x50, 0x02, 0x62, 0x8c, 0x52, 0xe2, + 0x8a, 0x00, 0x4a, 0x29, 0x71, 0x46, 0x28, 0x01, 0x28, 0xa5, 0xa2, 0x90, + 0x06, 0x28, 0xa2, 0x96, 0x80, 0x12, 0x8a, 0x5c, 0x51, 0x8a, 0x00, 0x4a, + 0x5a, 0x5c, 0x51, 0x8a, 0x00, 0x4c, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x00, + 0x37, 0x14, 0xb8, 0xa5, 0xc5, 0x2e, 0x28, 0x01, 0xb8, 0xa3, 0x14, 0xec, + 0x52, 0xe2, 0x80, 0x1b, 0x8a, 0x5c, 0x52, 0xe2, 0x97, 0x14, 0x0c, 0x6e, + 0x29, 0x71, 0x4b, 0x8a, 0x5c, 0x50, 0x03, 0x71, 0x4b, 0x8a, 0x76, 0x28, + 0xc5, 0x00, 0x37, 0x14, 0xb8, 0xa7, 0x62, 0x97, 0x14, 0x00, 0xcc, 0x51, + 0x8a, 0x7e, 0x29, 0x71, 0x40, 0x0c, 0xc5, 0x18, 0xa7, 0x81, 0x4b, 0xb6, + 0x80, 0x23, 0xc5, 0x2e, 0x29, 0xf8, 0xa5, 0xc5, 0x00, 0x47, 0x8a, 0x5c, + 0x53, 0xf6, 0xd2, 0xed, 0xa0, 0x08, 0xf1, 0x46, 0x2a, 0x4d, 0xb4, 0x6d, + 0xa0, 0x08, 0xf1, 0x46, 0x2a, 0x5d, 0xb4, 0x6d, 0xa0, 0x08, 0xf1, 0x49, + 0x8a, 0x97, 0x6d, 0x1b, 0x68, 0x02, 0x2c, 0x51, 0xb6, 0xa4, 0xdb, 0x4b, + 0xb6, 0x80, 0x22, 0xc5, 0x18, 0xa9, 0x76, 0xd2, 0x6d, 0xa0, 0x08, 0xf6, + 0xd1, 0x8a, 0x93, 0x6d, 0x1b, 0x68, 0x02, 0x3d, 0xb4, 0x98, 0xa9, 0x76, + 0xd2, 0x62, 0x80, 0x23, 0xc5, 0x18, 0xa9, 0x36, 0xd1, 0x8a, 0x00, 0x8b, + 0x14, 0x62, 0xa4, 0xc5, 0x18, 0xa0, 0x08, 0xb1, 0x46, 0x2a, 0x4d, 0xb4, + 0x9b, 0x68, 0x01, 0x98, 0xa4, 0xc5, 0x49, 0xb6, 0x93, 0x14, 0x00, 0xcc, + 0x51, 0x8a, 0x7e, 0x29, 0x31, 0x40, 0x0c, 0xc5, 0x26, 0x29, 0xf8, 0xa3, + 0x14, 0x00, 0xcc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x02, 0x19, 0x8a, 0x31, + 0x4e, 0xc5, 0x26, 0x28, 0x18, 0xdc, 0x52, 0x11, 0xc1, 0xa7, 0xe2, 0x90, + 0x8e, 0x0d, 0x00, 0x38, 0x0e, 0x28, 0xc5, 0x38, 0x0e, 0x28, 0xc5, 0x31, + 0x0d, 0xc5, 0x26, 0x29, 0xd8, 0xa3, 0x14, 0x00, 0xdc, 0x52, 0x62, 0x9f, + 0x8a, 0x4c, 0x50, 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0x00, 0xcc, + 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x37, 0x14, 0x98, 0xa7, 0x62, 0x8c, + 0x50, 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0x08, 0x6e, 0x28, 0xc5, + 0x3b, 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x18, 0xa0, 0x06, + 0xe2, 0x8c, 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb8, 0xa5, 0xc5, 0x2e, 0x29, + 0x71, 0x40, 0x0d, 0xc5, 0x18, 0xa7, 0x62, 0x8c, 0x50, 0x03, 0x71, 0x46, + 0x29, 0xd8, 0xa5, 0xc5, 0x00, 0x33, 0x14, 0x62, 0x9f, 0x8a, 0x31, 0x4c, + 0x06, 0xe2, 0x8c, 0x53, 0xb1, 0x4b, 0x8a, 0x40, 0x33, 0x14, 0x62, 0x9f, + 0x8a, 0x31, 0x40, 0x0c, 0xc5, 0x18, 0xa7, 0xe2, 0x97, 0x14, 0xc0, 0x66, + 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x80, 0x19, 0x8a, 0x31, 0x4f, 0xdb, 0x46, + 0x29, 0x00, 0xcc, 0x51, 0x8a, 0x7e, 0x28, 0xc5, 0x30, 0x19, 0x8a, 0x4c, + 0x54, 0x98, 0xa3, 0x14, 0x00, 0xcc, 0x51, 0x8a, 0x7e, 0x28, 0xc5, 0x00, + 0x47, 0x8a, 0x31, 0x52, 0x62, 0x8c, 0x52, 0x02, 0x3c, 0x51, 0x8a, 0x7e, + 0x28, 0xc5, 0x00, 0x33, 0x14, 0x62, 0x9f, 0x8a, 0x31, 0x40, 0x0c, 0xc5, + 0x18, 0xa7, 0x62, 0x8c, 0x50, 0x03, 0x31, 0x46, 0x29, 0xf8, 0xa4, 0xc5, + 0x00, 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x31, 0x40, 0x0d, 0xc5, 0x18, 0xa7, + 0x62, 0x93, 0x14, 0x00, 0xda, 0x29, 0xd8, 0xa3, 0x14, 0x00, 0xdc, 0x51, + 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x36, 0x8c, 0x53, 0xb1, 0x46, 0x28, 0x01, + 0x31, 0x49, 0x4e, 0xc5, 0x18, 0xa0, 0x04, 0xa3, 0x14, 0xec, 0x51, 0x8a, + 0x06, 0x37, 0x14, 0x53, 0xb1, 0x46, 0x28, 0x01, 0x31, 0x46, 0x29, 0xd8, + 0xa3, 0x14, 0x00, 0x98, 0xa3, 0x14, 0xb8, 0xa5, 0xc5, 0x00, 0x37, 0x14, + 0xb8, 0xa5, 0xc5, 0x2e, 0x29, 0x00, 0xdc, 0x52, 0xe2, 0x97, 0x14, 0xb8, + 0xa0, 0x06, 0xe2, 0x97, 0x14, 0xec, 0x52, 0xe2, 0x80, 0x1b, 0x8a, 0x31, + 0x4e, 0xc5, 0x2e, 0x28, 0x01, 0xb8, 0xa5, 0xc5, 0x3b, 0x14, 0xb8, 0xa0, + 0x06, 0xe2, 0x8c, 0x53, 0xf1, 0x4a, 0x05, 0x00, 0x33, 0x14, 0xb8, 0xa7, + 0xe2, 0x8d, 0xb4, 0x00, 0xdc, 0x51, 0x8a, 0x7e, 0x29, 0x76, 0xd0, 0x03, + 0x31, 0x4b, 0x8a, 0x7e, 0x29, 0x76, 0xd0, 0x04, 0x7b, 0x69, 0x76, 0xd4, + 0x9b, 0x68, 0xdb, 0x40, 0x11, 0xed, 0xa5, 0xdb, 0x52, 0x6d, 0xa3, 0x6d, + 0x00, 0x47, 0xb6, 0x97, 0x6d, 0x49, 0xb6, 0x8d, 0xb4, 0x0c, 0x8f, 0x6d, + 0x1b, 0x6a, 0x5d, 0xb4, 0x6d, 0xa0, 0x08, 0xb6, 0xd1, 0xb6, 0xa5, 0xdb, + 0x46, 0xda, 0x00, 0x8b, 0x6d, 0x1b, 0x6a, 0x5d, 0xb4, 0x6d, 0xa0, 0x44, + 0x5b, 0x68, 0xdb, 0x52, 0xec, 0xa3, 0x6d, 0x03, 0x22, 0xdb, 0x46, 0xda, + 0x97, 0x6d, 0x26, 0xda, 0x00, 0x8b, 0x6d, 0x1b, 0x6a, 0x5d, 0xb4, 0x6d, + 0xa0, 0x08, 0xb6, 0xd2, 0x6d, 0xa9, 0x76, 0xd2, 0x6d, 0xa0, 0x08, 0xb6, + 0xd1, 0xb6, 0xa5, 0xdb, 0x49, 0xb6, 0x80, 0x22, 0xdb, 0x49, 0xb6, 0xa5, + 0xdb, 0x46, 0xda, 0x00, 0x8b, 0x14, 0x98, 0xa9, 0x76, 0xd2, 0x62, 0x98, + 0x88, 0xb1, 0x46, 0x2a, 0x4c, 0x52, 0x6d, 0xa0, 0x08, 0xf1, 0x49, 0x8a, + 0x90, 0xad, 0x26, 0x28, 0x02, 0x3c, 0x51, 0x8a, 0x7e, 0x29, 0x31, 0x40, + 0x0c, 0xc5, 0x26, 0x2a, 0x4c, 0x52, 0x62, 0x80, 0x19, 0x8a, 0x42, 0x38, + 0x34, 0xfc, 0x52, 0x11, 0xc1, 0xa0, 0x07, 0x01, 0xc0, 0xa3, 0x14, 0xe0, + 0x38, 0x14, 0x62, 0x80, 0x19, 0x8a, 0x4c, 0x53, 0xf1, 0x49, 0x8a, 0x04, + 0x37, 0x14, 0x98, 0xa7, 0xe2, 0x93, 0x14, 0x00, 0xdc, 0x52, 0x62, 0x9f, + 0x8a, 0x4c, 0x50, 0x03, 0x71, 0x49, 0x8a, 0x7e, 0x28, 0xc5, 0x00, 0x33, + 0x14, 0x62, 0x9d, 0x8a, 0x31, 0x40, 0x0d, 0xc5, 0x18, 0xa7, 0x62, 0x8c, + 0x50, 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0xc0, 0x6e, 0x28, 0xc5, + 0x3b, 0x14, 0x62, 0x80, 0x13, 0x14, 0x62, 0x97, 0x14, 0xb8, 0xa0, 0x06, + 0xe2, 0x8c, 0x53, 0xb1, 0x4b, 0x8a, 0x04, 0x33, 0x14, 0xb8, 0xa7, 0x62, + 0x8c, 0x50, 0x03, 0x71, 0x46, 0x29, 0xf8, 0xa3, 0x14, 0x00, 0xcc, 0x52, + 0xe2, 0x9d, 0x8a, 0x5c, 0x50, 0x03, 0x31, 0x46, 0x29, 0xf8, 0xa3, 0x14, + 0x00, 0xdc, 0x51, 0x8a, 0x7e, 0x28, 0xc5, 0x30, 0x19, 0x8a, 0x31, 0x4f, + 0xc5, 0x18, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xf1, 0x46, 0x28, 0x01, 0x98, + 0xa3, 0x14, 0xfc, 0x51, 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3f, 0x14, 0x62, + 0x80, 0x19, 0x8a, 0x31, 0x4f, 0xc5, 0x18, 0xa0, 0x06, 0x62, 0x8c, 0x53, + 0xf1, 0x46, 0x28, 0x01, 0x98, 0xa3, 0x14, 0xfc, 0x51, 0x8a, 0x40, 0x47, + 0x8a, 0x31, 0x4f, 0xc5, 0x18, 0xa0, 0x06, 0x62, 0x8c, 0x53, 0xf1, 0x49, + 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x80, 0x23, 0xc5, 0x18, + 0xa7, 0xe2, 0x8c, 0x50, 0x03, 0x31, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0x00, + 0xcc, 0x51, 0x8a, 0x7e, 0x29, 0x31, 0x40, 0x0d, 0xc5, 0x26, 0x29, 0xf8, + 0xa3, 0x14, 0x00, 0xcc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x03, 0x1b, 0x8a, + 0x31, 0x4e, 0xc5, 0x18, 0xa4, 0x03, 0x68, 0xc5, 0x3b, 0x14, 0x62, 0x80, + 0x1b, 0x4b, 0x8a, 0x5c, 0x51, 0x8a, 0x00, 0x4c, 0x51, 0x8a, 0x76, 0x28, + 0xc5, 0x00, 0x26, 0x28, 0xc5, 0x2e, 0x29, 0x40, 0xa0, 0x06, 0xe2, 0x97, + 0x14, 0xb8, 0xa5, 0xc5, 0x03, 0x1b, 0x8a, 0x5c, 0x53, 0xb1, 0x46, 0x28, + 0x01, 0x31, 0x46, 0x29, 0xd8, 0xa5, 0xc5, 0x00, 0x37, 0x14, 0xb8, 0xa7, + 0x01, 0x4b, 0x8a, 0x00, 0x6e, 0x29, 0x71, 0x4e, 0xdb, 0x4e, 0xc5, 0x00, + 0x33, 0x14, 0xb8, 0xa7, 0x81, 0x4a, 0x05, 0x00, 0x33, 0x6d, 0x2e, 0xda, + 0x78, 0x14, 0xb8, 0xa0, 0x06, 0x6d, 0xa7, 0x62, 0x9d, 0x8a, 0x5c, 0x50, + 0x03, 0x31, 0x4b, 0x8a, 0x93, 0x6d, 0x2e, 0xda, 0x00, 0x8f, 0x14, 0xbb, + 0x69, 0xfb, 0x69, 0xdb, 0x68, 0x02, 0x3d, 0xb4, 0xbb, 0x69, 0xfb, 0x69, + 0x76, 0xd0, 0x04, 0x7b, 0x69, 0x76, 0xd4, 0x9b, 0x69, 0x42, 0xd0, 0x04, + 0x7b, 0x68, 0xdb, 0x52, 0xed, 0xa5, 0xdb, 0x40, 0x11, 0x6d, 0xa3, 0x6d, + 0x4b, 0xb6, 0x97, 0x6d, 0x00, 0x43, 0xb6, 0x97, 0x6d, 0x4b, 0xb6, 0x8d, + 0xb4, 0x01, 0x16, 0xda, 0x36, 0xd4, 0xdb, 0x68, 0xdb, 0x40, 0x10, 0xed, + 0xa4, 0xdb, 0x53, 0xed, 0xa4, 0xdb, 0x40, 0x10, 0xed, 0xa3, 0x6d, 0x4d, + 0xb6, 0x8d, 0xb4, 0x01, 0x06, 0xda, 0x4d, 0xb5, 0x3e, 0xca, 0x4d, 0xb4, + 0x01, 0x0e, 0xda, 0x4d, 0xb5, 0x3e, 0xda, 0x4d, 0xb4, 0x01, 0x06, 0xda, + 0x36, 0xd4, 0xdb, 0x69, 0xbb, 0x68, 0x02, 0x2d, 0xb4, 0x98, 0xa9, 0x76, + 0xd2, 0x15, 0xa0, 0x08, 0x88, 0xa4, 0xdb, 0x52, 0xed, 0xa4, 0x22, 0x80, + 0x22, 0xc5, 0x26, 0x2a, 0x5d, 0xb4, 0x98, 0xa0, 0x08, 0xb1, 0x49, 0xb6, + 0xa5, 0x2b, 0x4d, 0xc5, 0x00, 0x47, 0x8a, 0x4c, 0x54, 0x9b, 0x69, 0x31, + 0x40, 0x11, 0xe2, 0x93, 0x15, 0x21, 0x14, 0x84, 0x50, 0x04, 0x78, 0xa6, + 0xb0, 0xe0, 0xd4, 0xb8, 0xa6, 0x91, 0xc1, 0xa0, 0x07, 0x01, 0xc0, 0xa4, + 0xc5, 0x48, 0x07, 0x02, 0x93, 0x14, 0xc4, 0x47, 0x8a, 0x08, 0xa7, 0xe2, + 0x93, 0x14, 0x00, 0xcc, 0x52, 0x62, 0xa4, 0xc5, 0x26, 0x28, 0x01, 0x98, + 0xa3, 0x14, 0xec, 0x51, 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3b, 0x14, 0x62, + 0x80, 0x1b, 0x8a, 0x4a, 0x76, 0x28, 0xc5, 0x00, 0x37, 0x14, 0x53, 0xb1, + 0x46, 0x28, 0x01, 0xb8, 0xa3, 0x14, 0xec, 0x51, 0x8a, 0x04, 0x37, 0x14, + 0xb8, 0xa7, 0x62, 0x8c, 0x50, 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa5, 0xc5, + 0x30, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x2e, 0x28, 0x01, 0x98, 0xa5, 0xc5, + 0x3f, 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x31, 0x4f, 0xc5, 0x18, 0xa0, 0x43, + 0x31, 0x4b, 0x8a, 0x7e, 0x28, 0xc5, 0x00, 0x33, 0x14, 0xb8, 0xa7, 0xed, + 0xa3, 0x6d, 0x00, 0x33, 0x14, 0x62, 0xa4, 0xdb, 0x4b, 0xb6, 0x80, 0x23, + 0xc5, 0x1b, 0x6a, 0x4d, 0xb4, 0x6d, 0xa6, 0x04, 0x78, 0xa3, 0x6d, 0x4b, + 0xb6, 0x8d, 0xb4, 0x01, 0x16, 0x29, 0x71, 0x52, 0x6d, 0xa3, 0x6d, 0x00, + 0x47, 0x8a, 0x36, 0xd4, 0x9b, 0x68, 0xdb, 0x40, 0x11, 0xed, 0xa3, 0x15, + 0x26, 0x28, 0xc5, 0x00, 0x47, 0xb6, 0x8d, 0xb5, 0x26, 0xda, 0x31, 0x40, + 0x11, 0x62, 0x8c, 0x54, 0x98, 0xa3, 0x6d, 0x00, 0x47, 0x8a, 0x31, 0x52, + 0x62, 0x93, 0x6d, 0x20, 0x23, 0xc5, 0x18, 0xa9, 0x36, 0xd2, 0x6d, 0xa0, + 0x08, 0xf1, 0x46, 0x29, 0xfb, 0x68, 0xc5, 0x00, 0x47, 0x8a, 0x31, 0x52, + 0x62, 0x93, 0x6d, 0x03, 0x23, 0xc5, 0x18, 0xa7, 0xed, 0xa3, 0x14, 0x01, + 0x1e, 0x28, 0xc5, 0x49, 0x8a, 0x4c, 0x52, 0x01, 0x98, 0xa4, 0xc5, 0x3f, + 0x14, 0x62, 0x80, 0x19, 0x8a, 0x4c, 0x53, 0xf1, 0x46, 0x28, 0x01, 0x98, + 0xa3, 0x14, 0xfc, 0x51, 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3b, 0x14, 0xb8, + 0xa0, 0x63, 0x31, 0x46, 0x29, 0xf8, 0xa3, 0x14, 0x00, 0xdc, 0x51, 0x8a, + 0x76, 0x29, 0x71, 0x40, 0x0c, 0xc5, 0x2e, 0x29, 0xd8, 0xa5, 0xc5, 0x00, + 0x33, 0x14, 0xb8, 0xa7, 0x62, 0x97, 0x14, 0x00, 0xdc, 0x52, 0xe2, 0x9d, + 0x8a, 0x31, 0x48, 0x04, 0xc5, 0x2e, 0x29, 0xc0, 0x52, 0xe2, 0x80, 0x1b, + 0x8a, 0x50, 0x29, 0xd8, 0xa5, 0xc5, 0x00, 0x37, 0x14, 0xec, 0x52, 0x81, + 0x4e, 0x02, 0x80, 0x1b, 0x8a, 0x5c, 0x53, 0x80, 0xa7, 0x01, 0x40, 0xc6, + 0x81, 0x4b, 0x8a, 0x76, 0xda, 0x70, 0x5a, 0x60, 0x30, 0x2d, 0x38, 0x2d, + 0x3c, 0x2d, 0x38, 0x2d, 0x00, 0x46, 0x16, 0x94, 0x2d, 0x48, 0x16, 0x9c, + 0x16, 0x80, 0x23, 0xdb, 0x4b, 0xb6, 0xa5, 0x0b, 0x4a, 0x16, 0x80, 0x22, + 0xd9, 0x4b, 0xb2, 0xa5, 0xdb, 0x4e, 0x0b, 0x40, 0x10, 0xec, 0xa5, 0xd9, + 0x53, 0x6c, 0xa7, 0x04, 0xa0, 0x08, 0x36, 0x52, 0xec, 0xa9, 0xf6, 0x52, + 0xec, 0xa0, 0x44, 0x1b, 0x28, 0xd9, 0x56, 0x36, 0x51, 0xb2, 0x81, 0x90, + 0x6c, 0xa3, 0x65, 0x58, 0xd9, 0x46, 0xca, 0x04, 0x57, 0xd9, 0x4b, 0xb2, + 0xac, 0x6c, 0xa3, 0x65, 0x00, 0x56, 0xd9, 0x46, 0xca, 0xb1, 0xb2, 0x8d, + 0x94, 0x01, 0x5f, 0x65, 0x26, 0xca, 0xb3, 0xb2, 0x93, 0x65, 0x03, 0x2b, + 0xec, 0xa4, 0xd9, 0x56, 0x36, 0x52, 0x6c, 0xa0, 0x45, 0x7d, 0x94, 0x9b, + 0x6a, 0xc1, 0x4a, 0x4d, 0x94, 0x0c, 0xac, 0x52, 0x93, 0x65, 0x58, 0x2b, + 0x48, 0x52, 0x80, 0x2b, 0xed, 0xa4, 0x29, 0x53, 0x95, 0xa4, 0x2b, 0x40, + 0x8a, 0xfb, 0x69, 0x0a, 0xd4, 0xe5, 0x69, 0xa5, 0x68, 0x19, 0x06, 0xda, + 0x42, 0xb5, 0x39, 0x5a, 0x69, 0x5a, 0x00, 0x84, 0xad, 0x37, 0x15, 0x31, + 0x5a, 0x69, 0x5a, 0x00, 0x8b, 0x14, 0x84, 0x54, 0xa4, 0x53, 0x48, 0xa0, + 0x08, 0x88, 0xa4, 0x22, 0xa5, 0xc5, 0x34, 0x8a, 0x04, 0x46, 0x45, 0x35, + 0x87, 0x07, 0xe9, 0x52, 0x91, 0x4d, 0x61, 0xf2, 0x9a, 0x06, 0x38, 0x0f, + 0x94, 0x7d, 0x29, 0x08, 0xa9, 0x00, 0xe0, 0x52, 0x62, 0x81, 0x11, 0xe2, + 0x93, 0x14, 0xf2, 0x29, 0x31, 0x40, 0x0c, 0xc5, 0x26, 0x2a, 0x4c, 0x52, + 0x62, 0x80, 0x23, 0xc5, 0x18, 0xa7, 0xe2, 0x8c, 0x50, 0x03, 0x31, 0x49, + 0x8a, 0x7e, 0x28, 0xc5, 0x02, 0x19, 0x8a, 0x31, 0x4f, 0xc5, 0x26, 0x29, + 0x80, 0xdc, 0x51, 0x8a, 0x76, 0x28, 0xc5, 0x00, 0x37, 0x14, 0x62, 0x9d, + 0x8a, 0x5c, 0x50, 0x03, 0x31, 0x4b, 0x8a, 0x76, 0x29, 0x71, 0x40, 0x0c, + 0xc5, 0x2e, 0x29, 0xd8, 0xa5, 0xc5, 0x00, 0x33, 0x14, 0xb8, 0xa7, 0xed, + 0xa5, 0xc5, 0x02, 0x19, 0x8a, 0x5c, 0x53, 0xb6, 0xd3, 0x82, 0xd0, 0x04, + 0x78, 0xa5, 0xdb, 0x52, 0x6d, 0xa3, 0x6d, 0x00, 0x33, 0x6d, 0x2e, 0xda, + 0x7e, 0x29, 0x71, 0x4c, 0x08, 0xf6, 0xd2, 0xed, 0xa7, 0xed, 0xa5, 0xdb, + 0x40, 0x11, 0xe2, 0x97, 0x6d, 0x3f, 0x6d, 0x2e, 0xda, 0x00, 0x8f, 0x6d, + 0x1b, 0x6a, 0x4d, 0xb4, 0xbb, 0x68, 0x02, 0x3d, 0xb4, 0x62, 0xa4, 0xdb, + 0x46, 0xda, 0x62, 0x23, 0xc5, 0x1b, 0x6a, 0x5d, 0xb4, 0x6d, 0xa4, 0x04, + 0x5b, 0x68, 0xdb, 0x52, 0xed, 0xa3, 0x6d, 0x30, 0x22, 0xdb, 0x46, 0xda, + 0x97, 0x6d, 0x1b, 0x68, 0x02, 0x2d, 0xb4, 0x6d, 0xa9, 0x76, 0xd1, 0xb6, + 0x90, 0x11, 0x62, 0x93, 0x15, 0x2e, 0xda, 0x42, 0xb4, 0x01, 0x1e, 0x28, + 0xdb, 0x52, 0x6d, 0xa3, 0x6d, 0x00, 0x45, 0x8a, 0x31, 0x52, 0x6d, 0xa3, + 0x14, 0x0c, 0x8b, 0x6d, 0x26, 0xda, 0x97, 0x14, 0x9b, 0x69, 0x01, 0x1e, + 0xda, 0x4d, 0xb5, 0x26, 0x28, 0xdb, 0x40, 0x11, 0x6d, 0xa4, 0xc5, 0x4b, + 0x8a, 0x4d, 0xb4, 0x0c, 0x8f, 0x14, 0x98, 0xa9, 0x36, 0xd2, 0x6d, 0xa0, + 0x06, 0x62, 0x93, 0x15, 0x26, 0xda, 0x4c, 0x52, 0x01, 0x98, 0xa4, 0xc5, + 0x49, 0x8a, 0x4c, 0x50, 0x04, 0x78, 0xa3, 0x15, 0x26, 0x28, 0xc5, 0x00, + 0x47, 0x8a, 0x31, 0x52, 0x62, 0x93, 0x6d, 0x00, 0x37, 0x14, 0x62, 0x9d, + 0x8a, 0x5c, 0x50, 0x03, 0x31, 0x4b, 0x8a, 0x76, 0x28, 0xc5, 0x03, 0x1b, + 0x8a, 0x5c, 0x53, 0xb1, 0x46, 0x28, 0x01, 0xb8, 0xa5, 0xc5, 0x3b, 0x14, + 0xb8, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xb1, 0x4a, 0x05, 0x00, 0x26, 0x29, + 0x71, 0x4e, 0x02, 0x94, 0x0a, 0x00, 0x68, 0x14, 0xa0, 0x53, 0x80, 0xa7, + 0x05, 0xa0, 0x06, 0x81, 0x4a, 0x05, 0x3c, 0x2d, 0x38, 0x2d, 0x03, 0x18, + 0x16, 0x9c, 0x16, 0x9e, 0x16, 0x9c, 0x16, 0x81, 0x0c, 0x0b, 0x4e, 0x0b, + 0x4f, 0x0b, 0x4e, 0x0b, 0x40, 0xc6, 0x05, 0xa7, 0x05, 0xa7, 0x85, 0xa7, + 0x05, 0xa0, 0x43, 0x02, 0xd2, 0x85, 0xa9, 0x42, 0x53, 0x82, 0x50, 0x32, + 0x20, 0xb4, 0xe0, 0x95, 0x28, 0x5a, 0x70, 0x4a, 0x04, 0x44, 0x12, 0x9c, + 0x12, 0xa5, 0x09, 0x4e, 0xd9, 0x40, 0x10, 0xec, 0xa7, 0x04, 0xa9, 0x82, + 0x52, 0x84, 0xa0, 0x08, 0x76, 0x53, 0x82, 0x54, 0xc1, 0x29, 0xc1, 0x28, + 0x02, 0x00, 0x94, 0x6c, 0xab, 0x1b, 0x29, 0x44, 0x74, 0x01, 0x5f, 0x65, + 0x2e, 0xca, 0xb1, 0xb2, 0x97, 0xcb, 0xa0, 0x0a, 0xdb, 0x28, 0xd9, 0x56, + 0x7c, 0xba, 0x3c, 0xba, 0x00, 0xad, 0xb2, 0x93, 0x65, 0x5a, 0xf2, 0xe8, + 0xf2, 0xe8, 0x02, 0xae, 0xca, 0x4d, 0x95, 0x6b, 0x65, 0x27, 0x97, 0x40, + 0x15, 0x76, 0x52, 0x14, 0xab, 0x5e, 0x5d, 0x37, 0xcb, 0xa0, 0x0a, 0xdb, + 0x29, 0xa5, 0x2a, 0xd1, 0x4a, 0x69, 0x4a, 0x00, 0xac, 0x52, 0x9a, 0x52, + 0xac, 0x94, 0xa6, 0x94, 0xa0, 0x0a, 0xc5, 0x29, 0xa5, 0x2a, 0xc9, 0x4a, + 0x69, 0x5a, 0x00, 0xac, 0x56, 0x9a, 0x56, 0xac, 0x15, 0xa6, 0x94, 0xa0, + 0x0a, 0xe5, 0x69, 0xa5, 0x6a, 0xc1, 0x5a, 0x61, 0x5a, 0x06, 0x40, 0x56, + 0x9a, 0x56, 0xa7, 0x2b, 0x4d, 0x2b, 0x40, 0x88, 0x0a, 0xd3, 0x4a, 0xd4, + 0xe5, 0x69, 0xa5, 0x68, 0x02, 0x02, 0x29, 0x08, 0xa9, 0x8a, 0xd3, 0x0a, + 0xd0, 0x04, 0x44, 0x53, 0x58, 0x70, 0x6a, 0x62, 0x29, 0x8c, 0x38, 0x3f, + 0x4a, 0x00, 0x78, 0x1f, 0x28, 0xa4, 0xc5, 0x48, 0x17, 0xe5, 0x14, 0x9b, + 0x69, 0x81, 0x11, 0x14, 0x98, 0xa9, 0x48, 0xa6, 0xe2, 0x81, 0x11, 0xe2, + 0x93, 0x15, 0x26, 0x29, 0x31, 0x40, 0x11, 0x91, 0x46, 0x2a, 0x4c, 0x52, + 0x62, 0x80, 0x23, 0xc5, 0x26, 0x2a, 0x4c, 0x51, 0x8a, 0x00, 0x8f, 0x14, + 0x62, 0xa4, 0xc5, 0x26, 0x28, 0x01, 0x98, 0xa3, 0x14, 0xfc, 0x51, 0x8a, + 0x00, 0x6e, 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x31, 0x4f, + 0xc5, 0x2e, 0x28, 0x01, 0x98, 0xa5, 0xc5, 0x3b, 0x14, 0xb8, 0xa0, 0x43, + 0x71, 0x46, 0x29, 0xf8, 0xa5, 0xdb, 0x4c, 0x06, 0xe2, 0x8c, 0x53, 0xf6, + 0xd3, 0xb6, 0xd0, 0x04, 0x78, 0xa5, 0xc5, 0x49, 0xb6, 0x97, 0x6d, 0x00, + 0x47, 0xb6, 0x97, 0x6d, 0x48, 0x16, 0x8d, 0xb4, 0x00, 0xcd, 0xb4, 0x62, + 0xa4, 0xdb, 0x4b, 0xb6, 0x98, 0x88, 0xf1, 0x4b, 0xb6, 0xa4, 0x0b, 0x4b, + 0xb6, 0x80, 0x22, 0xdb, 0x4b, 0xb6, 0xa4, 0xdb, 0x4b, 0xb6, 0x80, 0x22, + 0xdb, 0x4b, 0xb6, 0xa4, 0xdb, 0x4b, 0xb6, 0x80, 0x22, 0xdb, 0x46, 0xda, + 0x97, 0x6d, 0x1b, 0x68, 0x02, 0x2d, 0xb4, 0x6d, 0xa9, 0xb6, 0xd1, 0xb6, + 0x80, 0x21, 0xdb, 0x46, 0xda, 0xb0, 0x22, 0x66, 0x19, 0x55, 0x24, 0x7b, + 0x0a, 0x69, 0x4c, 0x75, 0x14, 0xae, 0x9e, 0x83, 0xe5, 0x69, 0x5c, 0x87, + 0x6d, 0x1b, 0x6a, 0x5d, 0xb4, 0x6d, 0xa6, 0x22, 0x1d, 0xb4, 0x6d, 0xa9, + 0xb6, 0xd2, 0x6d, 0xa0, 0x08, 0x76, 0xd2, 0x6d, 0xa9, 0xb6, 0xd1, 0xb6, + 0x90, 0x10, 0xed, 0xa4, 0xdb, 0x53, 0x6d, 0xa4, 0xdb, 0x40, 0xc8, 0x76, + 0xd0, 0x56, 0xa5, 0xdb, 0x49, 0xb6, 0x80, 0x22, 0xdb, 0x49, 0xb6, 0xa5, + 0xdb, 0x49, 0xb6, 0x90, 0x11, 0x62, 0x93, 0x15, 0x2e, 0xda, 0x4d, 0xb4, + 0x01, 0x16, 0xda, 0x4c, 0x54, 0xbb, 0x69, 0x31, 0x40, 0x11, 0x62, 0x8c, + 0x54, 0x9b, 0x69, 0x31, 0x40, 0xc8, 0xf1, 0x49, 0x8a, 0x97, 0x14, 0x98, + 0xa0, 0x08, 0xf1, 0x46, 0x29, 0xf8, 0xa3, 0x14, 0x01, 0x1e, 0x28, 0xc5, + 0x49, 0x8a, 0x4c, 0x52, 0x01, 0x98, 0xa5, 0xc5, 0x3f, 0x14, 0x62, 0x80, + 0x19, 0x8a, 0x31, 0x4f, 0xc5, 0x18, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xf1, + 0x46, 0x28, 0x18, 0xdc, 0x52, 0xe2, 0x9d, 0x8a, 0x5c, 0x50, 0x03, 0x71, + 0x4b, 0x8a, 0x76, 0x29, 0x76, 0xd0, 0x03, 0x40, 0xa5, 0x02, 0x9c, 0x16, + 0x9c, 0x16, 0x80, 0x1a, 0x16, 0x9c, 0x05, 0x38, 0x2d, 0x38, 0x2d, 0x00, + 0x34, 0x2d, 0x38, 0x2d, 0x38, 0x2d, 0x38, 0x2d, 0x00, 0x34, 0x2d, 0x38, + 0x2d, 0x3c, 0x2d, 0x38, 0x2d, 0x03, 0x1a, 0x16, 0x9c, 0x16, 0x9e, 0x16, + 0x9e, 0x16, 0x81, 0x0c, 0x0b, 0x4e, 0x09, 0x52, 0x05, 0xa7, 0x84, 0xa0, + 0x08, 0xc2, 0x53, 0x82, 0xd4, 0xa1, 0x29, 0xc1, 0x28, 0x02, 0x30, 0xb4, + 0xe0, 0x95, 0x28, 0x4a, 0x78, 0x4a, 0x00, 0x84, 0x25, 0x38, 0x25, 0x4c, + 0x12, 0x9e, 0x12, 0x80, 0x21, 0x09, 0x4e, 0x09, 0x53, 0x04, 0xa7, 0x88, + 0xe8, 0x02, 0x00, 0x94, 0xe0, 0x95, 0x38, 0x4f, 0x6a, 0x70, 0x8e, 0x80, + 0x2b, 0x84, 0xa5, 0x09, 0x56, 0x44, 0x74, 0xbe, 0x5d, 0x00, 0x57, 0xd9, + 0x47, 0x97, 0x56, 0xbc, 0xbf, 0x6a, 0x3c, 0xba, 0x00, 0xad, 0xb2, 0x8f, + 0x2e, 0xad, 0x79, 0x7e, 0xd4, 0x79, 0x7e, 0xd4, 0x0c, 0xab, 0xe5, 0xd2, + 0x6c, 0xab, 0x7e, 0x5d, 0x27, 0x97, 0x40, 0x15, 0x3c, 0xba, 0x42, 0x95, + 0x6c, 0xc7, 0x49, 0xe5, 0xd0, 0x22, 0xa1, 0x8e, 0x9a, 0x52, 0xad, 0x98, + 0xe9, 0xa6, 0x3a, 0x00, 0xa8, 0x63, 0xa6, 0xec, 0xab, 0x65, 0x29, 0xa5, + 0x28, 0x02, 0xa1, 0x4a, 0x61, 0x4a, 0xb6, 0x52, 0x9a, 0x52, 0x80, 0x2a, + 0x14, 0xa6, 0x94, 0xab, 0x45, 0x29, 0x85, 0x28, 0x02, 0xa9, 0x4a, 0x61, + 0x5a, 0xb4, 0x52, 0x98, 0x52, 0x80, 0x2b, 0x15, 0xa6, 0x15, 0xab, 0x25, + 0x69, 0x85, 0x68, 0x02, 0xb1, 0x5a, 0x69, 0x5a, 0xb0, 0x56, 0x98, 0x56, + 0x80, 0x2b, 0x95, 0xa6, 0x95, 0xab, 0x05, 0x69, 0x85, 0x68, 0x02, 0x02, + 0xb4, 0xd2, 0x2a, 0x72, 0xb4, 0xc2, 0xb4, 0x01, 0x09, 0x14, 0xc6, 0x5f, + 0x94, 0xd4, 0xe5, 0x69, 0x8c, 0xbf, 0x29, 0xfa, 0x50, 0x03, 0xf6, 0xfc, + 0xa3, 0xe9, 0x4d, 0x22, 0xa6, 0xdb, 0xc0, 0xa4, 0x2b, 0x4c, 0x08, 0x76, + 0xd2, 0x6d, 0xa9, 0x4a, 0xd2, 0x11, 0x40, 0x88, 0x76, 0xd2, 0x6d, 0xa9, + 0xb1, 0x4d, 0xdb, 0x40, 0x11, 0x6d, 0xa3, 0x6d, 0x4b, 0x8a, 0x4d, 0xb4, + 0x01, 0x16, 0x28, 0xdb, 0x52, 0x6d, 0xa3, 0x6d, 0x00, 0x45, 0xb6, 0x8c, + 0x54, 0x98, 0xa3, 0x6d, 0x00, 0x47, 0x8a, 0x31, 0x52, 0x6d, 0xa3, 0x6d, + 0x30, 0x23, 0xc5, 0x2e, 0x2a, 0x4d, 0xb4, 0x6d, 0xa0, 0x06, 0x62, 0x8d, + 0xb5, 0x26, 0xda, 0x5d, 0xb4, 0x01, 0x1e, 0xda, 0x5d, 0xb5, 0x26, 0xda, + 0x5d, 0xb4, 0x01, 0x18, 0x5a, 0x70, 0x5a, 0x78, 0x5a, 0x76, 0xda, 0x04, + 0x46, 0x16, 0x94, 0x2d, 0x49, 0xb6, 0x97, 0x6d, 0x00, 0x33, 0x6d, 0x2e, + 0xda, 0x7e, 0xda, 0x5d, 0xb4, 0x01, 0x1e, 0xda, 0x50, 0xb5, 0x28, 0x5a, + 0x5d, 0xb4, 0x01, 0x16, 0xda, 0x5d, 0xb5, 0x2e, 0xda, 0x5d, 0xb4, 0x08, + 0x8b, 0x6d, 0x2e, 0xda, 0x93, 0x6d, 0x2e, 0xda, 0x00, 0x8b, 0x6d, 0x2e, + 0xda, 0x97, 0x6d, 0x1b, 0x68, 0x02, 0x3d, 0xb4, 0x6d, 0xa9, 0x76, 0xd2, + 0xed, 0xa6, 0x04, 0x3b, 0x69, 0x76, 0xd4, 0xbb, 0x69, 0x76, 0xd0, 0x04, + 0x3b, 0x6a, 0xb5, 0xe4, 0xb2, 0x44, 0x15, 0x62, 0x5c, 0xbb, 0x7e, 0x40, + 0x55, 0xe2, 0x00, 0x19, 0x3d, 0x2a, 0xb3, 0x7e, 0xf9, 0xff, 0x00, 0xd9, + 0x15, 0xc1, 0x98, 0x63, 0x16, 0x1a, 0x95, 0xef, 0xab, 0x3b, 0xf2, 0xfc, + 0x23, 0xc4, 0x54, 0xd5, 0x68, 0x8d, 0x0d, 0x2a, 0xe1, 0x52, 0xdd, 0x9e, + 0x66, 0x0a, 0x07, 0x5c, 0xf6, 0xad, 0x32, 0xb6, 0xf3, 0x8e, 0x55, 0x18, + 0x57, 0x35, 0xaa, 0x00, 0x34, 0x2b, 0xcc, 0x71, 0x85, 0x18, 0xac, 0xff, + 0x00, 0xb4, 0xcd, 0x0b, 0xce, 0x52, 0x56, 0x5f, 0xf5, 0x3d, 0x0f, 0xd2, + 0xbe, 0x31, 0x54, 0xab, 0x39, 0x3a, 0xb1, 0x93, 0x4d, 0x9f, 0x5c, 0xd4, + 0x23, 0x15, 0x4d, 0xc6, 0xe8, 0xeb, 0xa4, 0xd2, 0xe1, 0x6e, 0x50, 0x95, + 0xaa, 0x92, 0xe9, 0x53, 0x2f, 0x29, 0x87, 0x1e, 0xd5, 0x99, 0x06, 0xb9, + 0x75, 0x1c, 0x8a, 0xac, 0x43, 0x06, 0xb9, 0x31, 0xf3, 0xd8, 0x63, 0x35, + 0xa3, 0x6f, 0xe2, 0x28, 0x9d, 0x14, 0xca, 0xa5, 0x32, 0x85, 0xcf, 0x7c, + 0x00, 0x71, 0x5d, 0xd4, 0xb3, 0x6c, 0x65, 0x1d, 0xdf, 0x32, 0xf3, 0x38, + 0xea, 0xe5, 0xb8, 0x3a, 0xbd, 0x39, 0x5f, 0x91, 0x55, 0xe1, 0x78, 0xce, + 0x19, 0x48, 0x3e, 0xf4, 0xcd, 0xb5, 0xad, 0x75, 0x73, 0x0d, 0xd5, 0xb9, + 0xf2, 0x98, 0x31, 0x52, 0x33, 0x8e, 0xd5, 0x43, 0x6d, 0x7d, 0x46, 0x07, + 0x14, 0xf1, 0x54, 0x55, 0x56, 0xac, 0x7c, 0xce, 0x3b, 0x0c, 0xb0, 0xd5, + 0xbd, 0x9a, 0x77, 0x2b, 0xed, 0xa0, 0xad, 0x4d, 0xb6, 0x93, 0x6d, 0x76, + 0x1c, 0x84, 0x3b, 0x69, 0x36, 0xd4, 0xdb, 0x69, 0x0a, 0xd2, 0x19, 0x09, + 0x5a, 0x4d, 0xb5, 0x36, 0xda, 0x4d, 0xb4, 0x80, 0x87, 0x6d, 0x26, 0xda, + 0x97, 0x6d, 0x26, 0xda, 0x00, 0x8b, 0x6d, 0x26, 0xda, 0x97, 0x6d, 0x26, + 0xda, 0x00, 0x8b, 0x6d, 0x21, 0x5a, 0x94, 0xad, 0x26, 0xda, 0x00, 0x87, + 0x6d, 0x1b, 0x6a, 0x52, 0x31, 0xcd, 0x20, 0x5d, 0xc0, 0x15, 0xe4, 0x13, + 0x81, 0x8f, 0x5a, 0x99, 0x4a, 0x31, 0xdd, 0x95, 0x18, 0xca, 0x5b, 0x2b, + 0x91, 0x6d, 0xa4, 0xdb, 0x53, 0x14, 0x20, 0xe0, 0x8a, 0x6e, 0xda, 0xa1, + 0x5a, 0xc4, 0x5b, 0x68, 0xdb, 0x52, 0xed, 0xa4, 0xdb, 0x40, 0x11, 0x6d, + 0xa3, 0x15, 0x2e, 0xda, 0x4d, 0xb4, 0x01, 0x1e, 0x28, 0xdb, 0x52, 0x6d, + 0xa3, 0x6d, 0x00, 0x47, 0x8a, 0x5d, 0xb5, 0x26, 0xda, 0x36, 0xd0, 0x04, + 0x7b, 0x69, 0x71, 0x52, 0x6d, 0xa3, 0x6d, 0x03, 0x19, 0x8a, 0x5d, 0xb4, + 0xfc, 0x52, 0x85, 0xa4, 0x03, 0x02, 0xd2, 0x85, 0xa7, 0xed, 0xa7, 0x05, + 0xa0, 0x06, 0x05, 0xa7, 0x05, 0xa7, 0x05, 0xa7, 0x05, 0xa0, 0x06, 0x85, + 0xa7, 0x05, 0xa7, 0x05, 0xa7, 0x85, 0xa0, 0x06, 0x05, 0xa7, 0x05, 0xa9, + 0x02, 0xd3, 0xc2, 0xd0, 0x04, 0x61, 0x6a, 0x40, 0x94, 0xf0, 0xb4, 0xf0, + 0xb4, 0x00, 0xc0, 0x94, 0xf0, 0x94, 0xf0, 0x95, 0x20, 0x4a, 0x00, 0x8c, + 0x25, 0x3c, 0x25, 0x48, 0x12, 0xa4, 0x09, 0x40, 0x11, 0x04, 0xa7, 0x84, + 0xa9, 0x42, 0x53, 0xc2, 0x50, 0x04, 0x41, 0x29, 0xc1, 0x2a, 0x60, 0x94, + 0xf0, 0x94, 0x01, 0x08, 0x4a, 0x78, 0x4a, 0x98, 0x25, 0x3c, 0x47, 0x40, + 0xc8, 0x44, 0x74, 0xf1, 0x1d, 0x4e, 0x23, 0xa7, 0x88, 0xe8, 0x02, 0x01, + 0x1d, 0x38, 0x47, 0x56, 0x44, 0x74, 0xe1, 0x1d, 0x00, 0x57, 0x11, 0xd2, + 0xf9, 0x75, 0x68, 0x47, 0xed, 0x4a, 0x12, 0x8b, 0x81, 0x58, 0x47, 0x4b, + 0xe5, 0xd5, 0x9d, 0x94, 0xbb, 0x3d, 0xa9, 0x5c, 0x0a, 0xbe, 0x5d, 0x2f, + 0x97, 0x56, 0x76, 0x51, 0xb2, 0x8b, 0x81, 0x57, 0xcb, 0xf6, 0xa4, 0x31, + 0xd5, 0xbd, 0x94, 0x9b, 0x28, 0xb8, 0x15, 0x0c, 0x74, 0xd3, 0x1d, 0x5c, + 0x29, 0x4d, 0xf2, 0xe9, 0xdc, 0x0a, 0x66, 0x3a, 0x69, 0x8e, 0xae, 0x18, + 0xe9, 0xa6, 0x3a, 0x00, 0xa4, 0x63, 0xa6, 0x98, 0xea, 0xe1, 0x8e, 0x98, + 0x63, 0xa0, 0x45, 0x32, 0x94, 0xc2, 0x95, 0x74, 0xc7, 0x51, 0x98, 0xe8, + 0x02, 0x99, 0x4a, 0x61, 0x4a, 0xb8, 0x52, 0x98, 0x52, 0x80, 0x29, 0x94, + 0xa6, 0x14, 0xab, 0x65, 0x29, 0x8c, 0x94, 0x01, 0x4c, 0xa5, 0x30, 0xad, + 0x5b, 0x29, 0x51, 0x94, 0xa0, 0x0a, 0xa5, 0x69, 0x85, 0x6a, 0xc9, 0x4a, + 0x61, 0x4a, 0x00, 0xac, 0x56, 0x98, 0x56, 0xac, 0x95, 0xa8, 0xca, 0xd0, + 0x05, 0x72, 0xb4, 0xc2, 0xb5, 0x64, 0xad, 0x30, 0xad, 0x00, 0x57, 0x2b, + 0x4c, 0x65, 0xf9, 0x4f, 0xd2, 0xac, 0x15, 0xa6, 0x32, 0xfc, 0xa7, 0xe9, + 0x40, 0x0f, 0x0b, 0xf2, 0x8a, 0x69, 0x5a, 0x9c, 0x2f, 0xca, 0x3e, 0x94, + 0x85, 0x68, 0x02, 0xb9, 0x5a, 0x69, 0x5a, 0x9c, 0xad, 0x34, 0xad, 0x31, + 0x10, 0xed, 0xa4, 0xdb, 0x53, 0x15, 0xa4, 0x2b, 0x40, 0x10, 0xed, 0xa4, + 0xdb, 0x52, 0xed, 0xa4, 0xdb, 0x40, 0x11, 0x6d, 0xa3, 0x6d, 0x4b, 0xb6, + 0x93, 0x6d, 0x00, 0x45, 0xb6, 0x8d, 0xb5, 0x2e, 0xda, 0x36, 0xd0, 0x04, + 0x5b, 0x69, 0x76, 0xd4, 0x9b, 0x68, 0xdb, 0x40, 0x11, 0xed, 0xa5, 0xdb, + 0x52, 0x6d, 0xa5, 0xdb, 0x40, 0x11, 0xed, 0xa5, 0xdb, 0x52, 0x6d, 0xa5, + 0xdb, 0x40, 0x88, 0xc2, 0xd2, 0x85, 0xa9, 0x36, 0xd2, 0x85, 0xa0, 0x08, + 0xf6, 0xd2, 0xed, 0xa9, 0x42, 0xd2, 0x85, 0xa0, 0x08, 0xc2, 0xd3, 0xb6, + 0xd4, 0x81, 0x69, 0x42, 0xd3, 0x02, 0x3d, 0xb4, 0xbb, 0x6a, 0x50, 0xb4, + 0xa1, 0x68, 0x02, 0x20, 0xb4, 0xa1, 0x6a, 0x50, 0xb4, 0xed, 0xb4, 0x08, + 0x87, 0x6d, 0x2e, 0xda, 0x9b, 0x6d, 0x2e, 0xda, 0x00, 0x87, 0x65, 0x28, + 0x5a, 0x9b, 0x6d, 0x2e, 0xca, 0x00, 0x87, 0x6d, 0x2e, 0xda, 0x97, 0x65, + 0x2e, 0xca, 0x04, 0x43, 0xb6, 0x97, 0x6d, 0x4b, 0xb2, 0x97, 0x6d, 0x03, + 0x21, 0xdb, 0x4b, 0xb6, 0xa5, 0xd9, 0x4b, 0xb6, 0x9d, 0xc4, 0x57, 0x92, + 0x2d, 0xf1, 0xb2, 0xfb, 0x55, 0x72, 0x02, 0x2e, 0x07, 0x6a, 0xbe, 0xcb, + 0x84, 0x63, 0xed, 0x54, 0x5c, 0xf5, 0xaf, 0x91, 0xe2, 0x26, 0xfd, 0xb4, + 0x17, 0x91, 0xf5, 0x79, 0x12, 0x5e, 0xc2, 0x4f, 0xcc, 0x83, 0x51, 0x1b, + 0xb4, 0x6b, 0xa1, 0x9e, 0xa0, 0x56, 0x44, 0xc0, 0xab, 0x4f, 0x8f, 0x58, + 0x7f, 0xa5, 0x6a, 0xea, 0x38, 0x3a, 0x1d, 0xd6, 0x7d, 0x05, 0x65, 0xc9, + 0x9d, 0xd3, 0xe0, 0xf7, 0x87, 0xfa, 0x57, 0x93, 0x47, 0xe1, 0xfe, 0xbc, + 0x8f, 0x4a, 0xaf, 0xc5, 0xfd, 0x79, 0x8e, 0xc1, 0xf3, 0xa3, 0x1c, 0x7f, + 0xc7, 0xe9, 0xff, 0x00, 0xd0, 0x6a, 0x2c, 0x1f, 0x24, 0x0e, 0xff, 0x00, + 0x67, 0x7f, 0xfd, 0x0a, 0xa5, 0xff, 0x00, 0x96, 0xd1, 0xf1, 0xcf, 0xdb, + 0x5b, 0xff, 0x00, 0x41, 0xa6, 0x1c, 0x18, 0x32, 0x78, 0xff, 0x00, 0x47, + 0x7f, 0xe7, 0x5a, 0x19, 0x9a, 0xfa, 0x48, 0xc9, 0xbd, 0xff, 0x00, 0x7d, + 0x7f, 0x95, 0x5e, 0x2b, 0x55, 0x34, 0x65, 0x1b, 0xaf, 0x7f, 0xdf, 0x5f, + 0xe5, 0x5a, 0x25, 0x2b, 0xeb, 0x72, 0x8f, 0xf7, 0x55, 0xea, 0x7c, 0xc6, + 0x6d, 0xfe, 0xf1, 0xf2, 0x20, 0xdb, 0x48, 0x56, 0xa7, 0xdb, 0x4d, 0x2b, + 0x5e, 0x91, 0xe7, 0x10, 0x95, 0xa4, 0xdb, 0x53, 0x6d, 0xa3, 0x6d, 0x21, + 0x90, 0x15, 0xa6, 0xed, 0xa9, 0xf6, 0xd2, 0x15, 0xa4, 0x32, 0x02, 0xb4, + 0x9b, 0x6a, 0x72, 0xb4, 0x9b, 0x68, 0x02, 0xb9, 0x5a, 0x4d, 0xb5, 0x39, + 0x5a, 0x42, 0xb4, 0xc0, 0x83, 0x6d, 0x26, 0xda, 0x9f, 0x6d, 0x26, 0xda, + 0x00, 0xc6, 0xd7, 0x19, 0xe3, 0xb0, 0x25, 0x1b, 0x69, 0xc8, 0xa4, 0xd0, + 0xe5, 0x66, 0x8d, 0x15, 0xe5, 0x05, 0x94, 0xee, 0x00, 0xfa, 0xd2, 0x78, + 0x8e, 0x40, 0x96, 0xab, 0x16, 0x3e, 0xf1, 0xce, 0x6a, 0x9f, 0x86, 0x41, + 0x6b, 0xfe, 0x46, 0x79, 0x15, 0xe4, 0x66, 0x71, 0x52, 0x4d, 0xf6, 0x3d, + 0x4c, 0xba, 0x56, 0x95, 0xbb, 0x9d, 0x4d, 0xe2, 0x7d, 0xc2, 0x00, 0xc6, + 0x3a, 0x8a, 0xa7, 0xb6, 0xb5, 0xa6, 0x8d, 0x7e, 0xc9, 0x9c, 0x73, 0x81, + 0x59, 0xc5, 0x6b, 0x7c, 0xb2, 0xa7, 0x3e, 0x1d, 0x79, 0x68, 0x65, 0x99, + 0x53, 0xe4, 0xae, 0xdf, 0x7d, 0x48, 0x76, 0xd1, 0xb6, 0xa5, 0xdb, 0x49, + 0xb6, 0xbd, 0x03, 0x80, 0x8b, 0x6d, 0x1b, 0x6a, 0x5d, 0xb4, 0x6d, 0xa0, + 0x08, 0xb6, 0xd1, 0xb6, 0xa4, 0xdb, 0x46, 0xda, 0x00, 0x8f, 0x6d, 0x2e, + 0xda, 0x93, 0x6d, 0x01, 0x68, 0x02, 0x3d, 0xb4, 0xbb, 0x6a, 0x4d, 0xb4, + 0xbb, 0x68, 0x02, 0x2d, 0xb4, 0xbb, 0x6a, 0x5d, 0xb4, 0xbb, 0x68, 0x02, + 0x3d, 0xb4, 0xa1, 0x6a, 0x4d, 0xb4, 0xbb, 0x69, 0x0c, 0x60, 0x5a, 0x70, + 0x5a, 0x70, 0x5a, 0x70, 0x14, 0x00, 0x81, 0x69, 0xc1, 0x69, 0xc0, 0x53, + 0xd5, 0x68, 0xb8, 0x0d, 0x0b, 0x5c, 0x7d, 0xff, 0x00, 0x8b, 0xee, 0x2c, + 0xef, 0xee, 0x60, 0x58, 0x15, 0x92, 0x2e, 0x87, 0xd6, 0xbb, 0x37, 0x1b, + 0x62, 0x66, 0xf4, 0x04, 0xd7, 0x94, 0xde, 0x32, 0xcb, 0x77, 0x71, 0x31, + 0x9f, 0x05, 0xb9, 0xdb, 0x9e, 0x95, 0xcb, 0x89, 0xa8, 0xe0, 0x95, 0x8d, + 0xe8, 0x41, 0x49, 0xbb, 0x9b, 0xe9, 0xe3, 0xb9, 0x54, 0x9d, 0xf6, 0xa0, + 0xe1, 0x73, 0xc5, 0x59, 0x8f, 0xc7, 0xb1, 0x0f, 0xbf, 0x68, 0xdf, 0x73, + 0x7f, 0x06, 0xb8, 0xdc, 0x6e, 0x2e, 0x7c, 0xd2, 0x30, 0xa3, 0x03, 0x23, + 0x9a, 0x57, 0x1b, 0x4f, 0xde, 0xdc, 0x36, 0x7f, 0x74, 0x1a, 0xe6, 0xf6, + 0xf3, 0xee, 0x6f, 0xec, 0x61, 0xd8, 0xf4, 0xcd, 0x23, 0xc4, 0xb6, 0xda, + 0xb5, 0xd2, 0xdb, 0xc7, 0x1b, 0x2b, 0x94, 0x0f, 0xcf, 0xbd, 0x74, 0x41, + 0x2b, 0xcd, 0x7c, 0x12, 0x49, 0xf1, 0x02, 0x2f, 0x63, 0x1f, 0xf7, 0x71, + 0x5e, 0xa4, 0x12, 0xbb, 0x28, 0x4d, 0xca, 0x37, 0x67, 0x35, 0x58, 0xa8, + 0xca, 0xc8, 0x8c, 0x25, 0x48, 0x12, 0x9e, 0x12, 0xa4, 0x0b, 0x5b, 0x19, + 0x11, 0x84, 0xa9, 0x02, 0x53, 0xc2, 0x54, 0x81, 0x28, 0x19, 0x18, 0x4a, + 0x78, 0x4a, 0x94, 0x25, 0x48, 0xb1, 0xd0, 0x04, 0x22, 0x3a, 0x91, 0x63, + 0xa9, 0xc4, 0x74, 0xf0, 0x94, 0xae, 0x04, 0x2b, 0x1d, 0x3c, 0x25, 0x4c, + 0x12, 0x9e, 0x12, 0x95, 0xc7, 0x62, 0x10, 0x94, 0xe0, 0x95, 0x38, 0x8e, + 0x9c, 0x23, 0xa2, 0xe1, 0x62, 0x00, 0x94, 0xe1, 0x1d, 0x4e, 0x12, 0x9d, + 0xb2, 0x95, 0xc7, 0x62, 0xbf, 0x97, 0x4b, 0xe5, 0xd5, 0x8d, 0x94, 0xbb, + 0x29, 0x5c, 0x76, 0x2b, 0x79, 0x74, 0x79, 0x75, 0x67, 0x65, 0x1b, 0x28, + 0xb8, 0x58, 0xad, 0xb2, 0x90, 0xc7, 0x56, 0x76, 0x51, 0xb2, 0x8b, 0x85, + 0x8a, 0x9b, 0x29, 0x0a, 0x55, 0xa2, 0x94, 0xd2, 0x94, 0xee, 0x2b, 0x15, + 0x4a, 0x53, 0x4a, 0x55, 0xa3, 0x1d, 0x34, 0xa5, 0x3b, 0x8a, 0xc5, 0x52, + 0x94, 0xc2, 0x9e, 0xd5, 0x68, 0xa5, 0x34, 0xa5, 0x3b, 0x85, 0x8a, 0x86, + 0x3a, 0x61, 0x8e, 0xae, 0x14, 0xa6, 0x14, 0xa7, 0x71, 0x14, 0x8a, 0x54, + 0x6d, 0x1d, 0x5e, 0x68, 0xea, 0x36, 0x8e, 0x8b, 0x81, 0x44, 0xa5, 0x46, + 0x52, 0xae, 0xb2, 0x54, 0x6c, 0x94, 0xc0, 0xa6, 0x52, 0xa3, 0x29, 0x56, + 0xd9, 0x2a, 0x32, 0x94, 0x01, 0x51, 0x92, 0xa3, 0x64, 0xab, 0x6c, 0x95, + 0x19, 0x4a, 0x04, 0x54, 0x29, 0x51, 0x95, 0xab, 0x8c, 0x95, 0x1b, 0x25, + 0x00, 0x54, 0x2b, 0x4c, 0x2b, 0x56, 0x8a, 0x54, 0x65, 0x28, 0x02, 0xb9, + 0x5a, 0x8d, 0xd7, 0xe5, 0x3f, 0x4a, 0xb2, 0x52, 0x98, 0xeb, 0xf2, 0x9f, + 0xa5, 0x00, 0x3f, 0x67, 0xca, 0x3e, 0x94, 0x85, 0x6a, 0xc6, 0xcf, 0x94, + 0x7d, 0x29, 0xa5, 0x28, 0x11, 0x58, 0xad, 0x21, 0x5a, 0xb0, 0x52, 0x9a, + 0x52, 0x80, 0x2b, 0xec, 0xa6, 0xec, 0xab, 0x1b, 0x29, 0x36, 0x50, 0x05, + 0x7d, 0xb4, 0x9b, 0x6a, 0x7d, 0x94, 0x6d, 0xa0, 0x0a, 0xfb, 0x68, 0xdb, + 0x53, 0xec, 0xa4, 0xdb, 0x4c, 0x08, 0x36, 0xd1, 0xb6, 0xa7, 0xd9, 0x46, + 0xca, 0x00, 0x83, 0x6d, 0x2e, 0xda, 0x9b, 0x65, 0x1b, 0x68, 0x02, 0x1d, + 0xb4, 0xbb, 0x6a, 0x6d, 0xb4, 0x6c, 0xa4, 0x04, 0x5b, 0x69, 0x76, 0xd4, + 0xbb, 0x29, 0xc1, 0x28, 0x11, 0x0e, 0xda, 0x76, 0xda, 0x97, 0x65, 0x2e, + 0xca, 0x60, 0x44, 0x16, 0x9c, 0x16, 0xa5, 0x09, 0x4a, 0x12, 0x80, 0x23, + 0x0b, 0x4a, 0x16, 0xa6, 0x09, 0x4e, 0x09, 0x40, 0x10, 0x85, 0xa5, 0x09, + 0x53, 0x04, 0xa7, 0x04, 0xa0, 0x44, 0x21, 0x29, 0x42, 0x54, 0xc1, 0x29, + 0xc1, 0x28, 0x02, 0x10, 0x94, 0xbb, 0x2a, 0x60, 0x94, 0xbb, 0x29, 0x88, + 0x87, 0x65, 0x2e, 0xca, 0x9b, 0x65, 0x2e, 0xca, 0x00, 0x87, 0x65, 0x1b, + 0x2a, 0x7d, 0x94, 0xbb, 0x28, 0x02, 0x0d, 0x94, 0x6c, 0xa9, 0xf6, 0x52, + 0xec, 0xa0, 0x0a, 0xfb, 0x28, 0xd8, 0x6a, 0xc6, 0xca, 0x36, 0x52, 0x19, + 0x52, 0x55, 0xc4, 0x4d, 0xf4, 0xac, 0xb7, 0xc8, 0x24, 0xf6, 0xad, 0xbb, + 0x85, 0xc4, 0x0e, 0x7d, 0xab, 0x15, 0xc7, 0x15, 0xf2, 0x3c, 0x43, 0xfc, + 0x78, 0x7a, 0x7e, 0xa7, 0xd5, 0xe4, 0x4b, 0xfd, 0x9e, 0x5e, 0xa5, 0x7d, + 0x44, 0xed, 0xd1, 0x2e, 0x49, 0x19, 0xe0, 0x71, 0x59, 0x92, 0xb2, 0xee, + 0x98, 0x6d, 0x3f, 0x7a, 0x1e, 0x9f, 0x85, 0x6a, 0x6a, 0x27, 0x1a, 0x2d, + 0xc7, 0xe1, 0x59, 0x72, 0x38, 0xcc, 0xd8, 0xeb, 0xbe, 0x2c, 0xfe, 0x95, + 0xe5, 0x51, 0x7e, 0xef, 0xf5, 0xe4, 0x7a, 0x55, 0x57, 0xbd, 0xfd, 0x79, + 0x80, 0xe6, 0x74, 0xe7, 0x1f, 0xe9, 0xad, 0xff, 0x00, 0xa0, 0xd4, 0x67, + 0xfd, 0x50, 0xff, 0x00, 0xaf, 0x67, 0xff, 0x00, 0xd0, 0xaa, 0x41, 0x93, + 0x2a, 0xf0, 0x3f, 0xe3, 0xf1, 0xbf, 0xf4, 0x1a, 0x8c, 0x01, 0xe4, 0x0c, + 0x9f, 0xf9, 0x76, 0x6f, 0xe7, 0x5a, 0x99, 0xd8, 0xdc, 0xd1, 0xdd, 0x11, + 0xef, 0x37, 0x30, 0x5c, 0xba, 0x81, 0x9f, 0xa5, 0x6b, 0x63, 0x70, 0xc8, + 0x20, 0x8f, 0x6a, 0xe5, 0x24, 0x2f, 0x1c, 0x17, 0x24, 0x1c, 0x7e, 0xf9, + 0x71, 0xf9, 0x56, 0xb7, 0x87, 0x64, 0x79, 0x96, 0x6d, 0xe7, 0x38, 0xc5, + 0x7b, 0xd9, 0x4e, 0x2e, 0x56, 0x54, 0x6d, 0xa7, 0x73, 0xc6, 0xcd, 0x30, + 0x91, 0x69, 0xd7, 0xbe, 0xab, 0xa1, 0xa9, 0xb0, 0xd2, 0x6c, 0xab, 0x5b, + 0x29, 0xa5, 0x70, 0x09, 0xec, 0x2b, 0xe8, 0x0f, 0x9f, 0xb9, 0x5f, 0x65, + 0x21, 0x4c, 0x0e, 0x6b, 0x0a, 0xff, 0x00, 0xc5, 0x70, 0x42, 0x59, 0x2d, + 0x90, 0xbb, 0x0e, 0x32, 0xdc, 0x0a, 0xe7, 0xae, 0x3c, 0x4b, 0x77, 0x39, + 0x6d, 0xef, 0x95, 0xec, 0xa3, 0x80, 0x2b, 0x8a, 0xae, 0x36, 0x9c, 0x34, + 0x5a, 0xb3, 0xba, 0x96, 0x02, 0xac, 0xf5, 0x96, 0x8b, 0xcc, 0xee, 0x95, + 0xa3, 0x76, 0x28, 0xae, 0xa5, 0x87, 0x50, 0x0f, 0x4a, 0x52, 0x95, 0xcc, + 0xf8, 0x3e, 0x56, 0xb8, 0xba, 0xbb, 0x76, 0xeb, 0x85, 0xae, 0xb8, 0xa5, + 0x6d, 0x46, 0xaf, 0xb4, 0x82, 0x93, 0x56, 0x31, 0xc4, 0x52, 0xf6, 0x55, + 0x1c, 0x13, 0xb9, 0x5b, 0x6d, 0x21, 0x4a, 0xb3, 0xb2, 0x9a, 0x52, 0xb5, + 0x30, 0x2b, 0x6c, 0xa4, 0x2b, 0x56, 0x76, 0x53, 0x4a, 0x53, 0x19, 0x5c, + 0xad, 0x26, 0xda, 0xb0, 0x52, 0x9a, 0x56, 0x80, 0x39, 0x9d, 0x61, 0x92, + 0x7d, 0x5a, 0xd2, 0xd5, 0x86, 0x57, 0x70, 0xdd, 0x4b, 0x63, 0x08, 0xb6, + 0xf1, 0x24, 0xb1, 0xc5, 0x19, 0x58, 0xc3, 0x0d, 0xb5, 0x99, 0xae, 0xdc, + 0x87, 0xd5, 0x4b, 0xc2, 0x4a, 0xb4, 0x7c, 0x67, 0xdc, 0x57, 0x63, 0x60, + 0x43, 0xe8, 0x96, 0x32, 0x30, 0x06, 0x42, 0x46, 0x5b, 0xbd, 0x7c, 0xfe, + 0x65, 0x37, 0x19, 0x5f, 0xa3, 0xd0, 0xf7, 0x72, 0xd8, 0xa9, 0x46, 0xdd, + 0x56, 0xa5, 0xc7, 0x46, 0x6b, 0x32, 0x3d, 0x14, 0x13, 0x59, 0xfb, 0x2a, + 0xd4, 0xda, 0x84, 0x50, 0x41, 0xb3, 0x3b, 0x98, 0xae, 0x08, 0x15, 0x9f, + 0xa1, 0xde, 0x1b, 0x9d, 0x5a, 0x64, 0xba, 0x55, 0x10, 0x85, 0xf9, 0x40, + 0xe7, 0xf1, 0x35, 0xd1, 0x96, 0x4a, 0x54, 0xe8, 0x3e, 0x75, 0xd4, 0xc7, + 0x33, 0x51, 0x9d, 0x65, 0xca, 0xfa, 0x12, 0xed, 0xa4, 0xdb, 0x5b, 0xed, + 0xa5, 0xdb, 0xce, 0x37, 0x41, 0x20, 0x1f, 0x8e, 0x6a, 0x85, 0xd5, 0x84, + 0x96, 0xb8, 0x2d, 0x82, 0x0f, 0x42, 0x2b, 0xd3, 0x85, 0x68, 0xcb, 0x44, + 0x79, 0x92, 0xa5, 0x28, 0xea, 0x67, 0xec, 0xa4, 0xd9, 0x56, 0x36, 0x52, + 0x6c, 0xad, 0x4c, 0xc8, 0x36, 0x51, 0xb2, 0xa7, 0xdb, 0xeb, 0x46, 0xda, + 0x00, 0x83, 0x65, 0x1b, 0x4d, 0x58, 0xd9, 0x46, 0xca, 0x06, 0x52, 0xb8, + 0xb8, 0x82, 0xd1, 0x03, 0xcf, 0x22, 0xa2, 0x9e, 0x84, 0xd6, 0x7c, 0xbe, + 0x23, 0xd3, 0xe3, 0xfb, 0xac, 0xef, 0xf4, 0x53, 0x54, 0x3c, 0x7a, 0xcf, + 0x16, 0x99, 0x6e, 0xd1, 0x9c, 0x1f, 0x33, 0xaf, 0xe1, 0x5e, 0x74, 0xd2, + 0x4c, 0xff, 0x00, 0x7a, 0x46, 0xfc, 0xeb, 0x9e, 0xa5, 0x59, 0x45, 0xd9, + 0x1a, 0xc2, 0x9a, 0x92, 0xbb, 0x3d, 0x02, 0xe7, 0xc7, 0x16, 0xd0, 0xb1, + 0x44, 0xb5, 0x72, 0x47, 0xa9, 0x15, 0x9d, 0x37, 0x8f, 0x6e, 0x09, 0x22, + 0x3b, 0x78, 0x94, 0x7b, 0x93, 0x5c, 0x6e, 0xc2, 0x7a, 0x92, 0x69, 0x36, + 0x0a, 0xcb, 0xda, 0xcd, 0xf5, 0x34, 0xf6, 0x50, 0x3b, 0xbd, 0x0b, 0xc5, + 0x77, 0x7a, 0x86, 0xae, 0x90, 0x4e, 0xc8, 0x23, 0x20, 0xf0, 0x05, 0x76, + 0xc0, 0x64, 0x64, 0x74, 0xaf, 0x22, 0xd0, 0x23, 0xdd, 0xaa, 0x28, 0x53, + 0x82, 0x14, 0x90, 0x7d, 0xeb, 0xd6, 0x74, 0xb6, 0x69, 0xac, 0x23, 0x67, + 0x1f, 0x36, 0x30, 0x6a, 0xe8, 0xd4, 0x93, 0x6d, 0x31, 0x55, 0x84, 0x54, + 0x53, 0x44, 0xea, 0x08, 0x39, 0x1d, 0x69, 0x42, 0x54, 0xc1, 0x29, 0xe1, + 0x2b, 0xa0, 0xe7, 0x21, 0x09, 0x4f, 0x0a, 0x6a, 0x60, 0x94, 0xf0, 0x94, + 0x01, 0x46, 0xfd, 0x8c, 0x3a, 0x6d, 0xc3, 0xfa, 0x21, 0xaf, 0x23, 0x9d, + 0x93, 0x32, 0x92, 0x32, 0x70, 0x3d, 0x33, 0x5e, 0xbb, 0xae, 0xa6, 0x34, + 0x2b, 0xcf, 0xfa, 0xe6, 0x6b, 0xc7, 0x66, 0x5c, 0xc9, 0x27, 0xfb, 0xa3, + 0xf8, 0x73, 0x5c, 0x78, 0x9d, 0xd1, 0xd5, 0x87, 0xd9, 0x8e, 0x25, 0x4e, + 0x4e, 0x0f, 0xdd, 0x1d, 0x85, 0x1f, 0x27, 0x75, 0x3f, 0x73, 0xfb, 0xb5, + 0x13, 0x60, 0x16, 0xe0, 0x7d, 0xd1, 0xfc, 0x26, 0x8d, 0xdd, 0x47, 0xcb, + 0xf7, 0x3d, 0x0d, 0x73, 0x1b, 0x9d, 0x6f, 0x81, 0x82, 0x9f, 0x11, 0xc7, + 0x8e, 0xbe, 0x5f, 0xa1, 0xaf, 0x56, 0x08, 0x6b, 0xca, 0xbe, 0x1f, 0xfc, + 0xde, 0x24, 0x41, 0xc7, 0x11, 0x76, 0x35, 0xeb, 0xeb, 0x1e, 0x6b, 0xb7, + 0x0f, 0xf0, 0x1c, 0xb5, 0xfe, 0x22, 0x15, 0x43, 0x52, 0xac, 0x75, 0x3a, + 0xc7, 0x53, 0x2c, 0x75, 0xb9, 0x91, 0x5d, 0x62, 0xa9, 0x56, 0x2a, 0x9c, + 0x25, 0x3c, 0x25, 0x17, 0x02, 0x11, 0x1d, 0x3c, 0x25, 0x4a, 0x12, 0x9e, + 0x12, 0xa6, 0xe3, 0xb1, 0x10, 0x4a, 0x78, 0x4a, 0x95, 0x52, 0x9e, 0xa9, + 0x4a, 0xe3, 0xb1, 0x10, 0x4a, 0x90, 0x25, 0x4a, 0xa9, 0x4f, 0x09, 0x4b, + 0x98, 0x69, 0x10, 0x84, 0xa7, 0x04, 0xa9, 0x82, 0x53, 0x82, 0x54, 0xf3, + 0x15, 0x62, 0x10, 0x94, 0xed, 0x95, 0x30, 0x5a, 0x5d, 0x94, 0xb9, 0x82, + 0xc4, 0x3b, 0x29, 0x76, 0x54, 0xc1, 0x29, 0x76, 0x52, 0xe6, 0x1d, 0x88, + 0x36, 0x52, 0x6c, 0xab, 0x1b, 0x28, 0xd9, 0x47, 0x30, 0x58, 0xaf, 0xb2, + 0x90, 0xa5, 0x59, 0xd9, 0x4d, 0x29, 0x4f, 0x98, 0x2c, 0x57, 0x29, 0x4d, + 0x29, 0x56, 0x76, 0xd3, 0x4a, 0x51, 0x71, 0x58, 0xac, 0x52, 0x9a, 0x52, + 0xad, 0x14, 0xa6, 0x94, 0xaa, 0x52, 0x15, 0x8a, 0x85, 0x29, 0xa5, 0x2a, + 0xd1, 0x5a, 0x69, 0x4a, 0x6a, 0x42, 0xb1, 0x50, 0xa5, 0x34, 0xa5, 0x5a, + 0x29, 0x4d, 0x29, 0x55, 0x72, 0x6c, 0x54, 0x29, 0x4c, 0x29, 0x56, 0xca, + 0x53, 0x0a, 0x53, 0xb8, 0xac, 0x53, 0x68, 0xea, 0x26, 0x8e, 0xae, 0x94, + 0xa6, 0x14, 0xa7, 0x70, 0x28, 0x32, 0x54, 0x6c, 0x95, 0x79, 0xa3, 0xa8, + 0x9a, 0x3a, 0xab, 0x88, 0xa2, 0xc9, 0x51, 0x94, 0xab, 0xac, 0x95, 0x13, + 0x25, 0x00, 0x53, 0x29, 0x51, 0xb2, 0x55, 0xc6, 0x4a, 0x8d, 0x92, 0x80, + 0x29, 0x94, 0xa6, 0x14, 0xab, 0x65, 0x2a, 0x36, 0x4a, 0x04, 0x54, 0x2b, + 0x51, 0xba, 0x7c, 0xa7, 0xe9, 0x57, 0x0a, 0x54, 0x4e, 0x9f, 0x29, 0xfa, + 0x53, 0x02, 0x5d, 0x9f, 0x28, 0xfa, 0x53, 0x4a, 0x55, 0xb0, 0x9f, 0x28, + 0xfa, 0x53, 0x4a, 0x54, 0xdc, 0x2c, 0x53, 0x29, 0x4d, 0x29, 0x56, 0xca, + 0x53, 0x4a, 0x51, 0x70, 0x2a, 0x14, 0xa4, 0xd9, 0x56, 0x8a, 0x53, 0x4a, + 0x51, 0x71, 0x15, 0x76, 0x52, 0x6c, 0xab, 0x45, 0x29, 0xbb, 0x29, 0xdc, + 0x0a, 0xfb, 0x29, 0x36, 0x55, 0x8d, 0x94, 0x6c, 0xa2, 0xe0, 0x56, 0xd9, + 0x46, 0xca, 0xb1, 0xb2, 0x8d, 0x94, 0x5c, 0x0a, 0xfb, 0x29, 0x76, 0x54, + 0xfb, 0x28, 0xd9, 0x45, 0xc0, 0x83, 0x65, 0x2e, 0xca, 0x9f, 0x65, 0x2e, + 0xca, 0x2e, 0x04, 0x1b, 0x29, 0xc1, 0x2a, 0x60, 0x94, 0xe0, 0x94, 0x5c, + 0x44, 0x01, 0x29, 0xc1, 0x2a, 0x6d, 0x94, 0xe0, 0x94, 0x5c, 0x08, 0x02, + 0x53, 0x82, 0x54, 0xc1, 0x29, 0xc1, 0x28, 0xb8, 0x10, 0x84, 0xa7, 0x04, + 0xa9, 0x82, 0x53, 0x82, 0x51, 0x70, 0x21, 0x09, 0x4b, 0xb2, 0xa7, 0x09, + 0x4e, 0x09, 0x45, 0xc0, 0x80, 0x25, 0x38, 0x25, 0x4c, 0x12, 0x9d, 0xb2, + 0x9d, 0xc0, 0x80, 0x25, 0x2e, 0xca, 0x9f, 0x65, 0x2e, 0xca, 0x2e, 0x22, + 0x0d, 0x94, 0xbb, 0x2a, 0x7d, 0x94, 0xa1, 0x28, 0xb8, 0x10, 0x6c, 0xa5, + 0xd9, 0x53, 0xec, 0xa5, 0xd9, 0x45, 0xc0, 0xaf, 0xb2, 0x97, 0x65, 0x4f, + 0xb2, 0x97, 0x65, 0x17, 0x02, 0xbe, 0xca, 0x36, 0x55, 0x8d, 0x94, 0x6c, + 0xa2, 0xe0, 0x51, 0xbb, 0x5c, 0x5a, 0xb9, 0xf6, 0xae, 0x79, 0xeb, 0xa7, + 0xbe, 0x5c, 0x59, 0xc8, 0x7d, 0xab, 0x98, 0x7c, 0x9a, 0xf9, 0x1e, 0x20, + 0xfe, 0x3c, 0x3d, 0x0f, 0xab, 0xc8, 0xbf, 0xdd, 0xe5, 0xea, 0x57, 0xd4, + 0xbf, 0xe4, 0x09, 0x73, 0xf8, 0x56, 0x4c, 0xdf, 0x7e, 0x6f, 0xfa, 0xe9, + 0x0f, 0xf4, 0xad, 0x5d, 0x48, 0xff, 0x00, 0xc4, 0x92, 0xe3, 0x3e, 0xd5, + 0x99, 0x22, 0x82, 0xd2, 0x73, 0xff, 0x00, 0x2d, 0x22, 0xfe, 0x95, 0xe5, + 0xd1, 0x7e, 0xef, 0xf5, 0xe4, 0x7a, 0x75, 0x7e, 0x2f, 0xeb, 0xcc, 0x41, + 0xfe, 0xb5, 0x33, 0xff, 0x00, 0x3f, 0x8d, 0xff, 0x00, 0xa0, 0xd4, 0x79, + 0xcc, 0x23, 0xfe, 0xbd, 0x5b, 0xff, 0x00, 0x42, 0xa9, 0x82, 0x9f, 0x39, + 0x73, 0xff, 0x00, 0x3f, 0x6f, 0xff, 0x00, 0xa0, 0xd4, 0x58, 0xfd, 0xd0, + 0xc8, 0xff, 0x00, 0x97, 0x53, 0xff, 0x00, 0xa1, 0x56, 0xb7, 0x32, 0x27, + 0x94, 0x96, 0x82, 0xe4, 0x1e, 0xd3, 0x2f, 0xf2, 0xad, 0x9f, 0x0a, 0x8c, + 0xac, 0xff, 0x00, 0x51, 0x58, 0x73, 0xb1, 0x10, 0x5d, 0x63, 0xfe, 0x7b, + 0x0f, 0xe5, 0x57, 0x7c, 0x3d, 0xa9, 0x8b, 0x18, 0xe6, 0x77, 0x4d, 0xcb, + 0xb8, 0x03, 0xed, 0x5e, 0x86, 0x57, 0x52, 0x31, 0xac, 0x93, 0xfe, 0xb4, + 0x39, 0x33, 0x18, 0xb9, 0x61, 0xe5, 0x6f, 0xeb, 0x53, 0xb3, 0x29, 0x55, + 0x35, 0x16, 0x68, 0x74, 0xf9, 0xe4, 0x4f, 0xbc, 0xa8, 0x48, 0xad, 0x15, + 0x01, 0xd1, 0x5c, 0x74, 0x61, 0x91, 0x54, 0xb5, 0x85, 0xc6, 0x93, 0x74, + 0x7f, 0xe9, 0x99, 0xaf, 0xac, 0x93, 0xd0, 0xf9, 0x38, 0xfc, 0x48, 0xf1, + 0xe9, 0x49, 0x79, 0x19, 0x89, 0xc9, 0x24, 0xd3, 0x31, 0xd6, 0xa4, 0x71, + 0xf3, 0x1f, 0xad, 0x30, 0xf4, 0xaf, 0x9e, 0x67, 0xd3, 0x23, 0xae, 0xf0, + 0x28, 0xcc, 0xf7, 0x7f, 0xee, 0xad, 0x76, 0xa5, 0x2b, 0x8d, 0xf0, 0x0a, + 0xe6, 0xe6, 0xec, 0x7f, 0xb2, 0xb5, 0xdd, 0xf9, 0x75, 0xeb, 0xe1, 0x1f, + 0xee, 0x91, 0xe2, 0x63, 0x7f, 0x8c, 0xca, 0xa5, 0x29, 0x0a, 0x55, 0xa2, + 0x94, 0xd3, 0x1d, 0x74, 0xdc, 0xe4, 0x2a, 0x94, 0xa4, 0x29, 0x56, 0x8c, + 0x74, 0xd2, 0x94, 0x5c, 0x2c, 0x55, 0x29, 0xed, 0x4d, 0x29, 0x50, 0x6a, + 0x9a, 0x8f, 0xd8, 0x76, 0x47, 0x1c, 0x46, 0x59, 0xa4, 0xfb, 0xaa, 0x2b, + 0x16, 0xcf, 0x5d, 0xbc, 0x97, 0x50, 0x54, 0xbc, 0x45, 0x82, 0x16, 0xc8, + 0x1c, 0x77, 0x1d, 0xaa, 0x25, 0x56, 0x11, 0x76, 0x6c, 0xb8, 0xd2, 0x9c, + 0x95, 0xd2, 0xd0, 0xe5, 0xf5, 0x82, 0x06, 0xa7, 0x38, 0xe7, 0xef, 0x9e, + 0x95, 0xad, 0x6b, 0x77, 0x32, 0xe9, 0xd6, 0xea, 0xb2, 0x32, 0x8c, 0x8e, + 0x33, 0x58, 0x1a, 0x8c, 0x99, 0xbe, 0x9c, 0xe7, 0x39, 0x76, 0xe7, 0xf1, + 0xab, 0x51, 0x4e, 0x45, 0xa4, 0x3c, 0xff, 0x00, 0x10, 0xaf, 0x3e, 0xa2, + 0x52, 0x67, 0x6d, 0x39, 0x38, 0xa3, 0x55, 0xa4, 0x9a, 0x51, 0x86, 0x63, + 0x8f, 0xe7, 0x5a, 0xde, 0x1b, 0x84, 0x7f, 0x68, 0x36, 0x48, 0x1f, 0x2f, + 0xf9, 0xc5, 0x60, 0x41, 0x76, 0x86, 0x35, 0xe0, 0xff, 0x00, 0x85, 0x6d, + 0x68, 0x77, 0x5e, 0x5d, 0xeb, 0x15, 0x2a, 0x0e, 0xde, 0xff, 0x00, 0xd2, + 0xb5, 0x94, 0x97, 0x29, 0x94, 0x60, 0xdc, 0xee, 0x75, 0xcd, 0x00, 0x07, + 0x70, 0x6c, 0x1e, 0xc4, 0xf2, 0x6a, 0xbd, 0xd3, 0xbb, 0x28, 0x46, 0x93, + 0x76, 0x3b, 0x67, 0x26, 0xb3, 0xae, 0x2f, 0x26, 0x39, 0x3b, 0x8a, 0x8f, + 0xef, 0x1e, 0xbf, 0x80, 0xa6, 0x59, 0xcd, 0xc4, 0xaf, 0x21, 0xda, 0x8a, + 0x32, 0x59, 0xba, 0xd6, 0x74, 0x65, 0xfb, 0xc4, 0x6d, 0x56, 0x16, 0x83, + 0x23, 0x9b, 0x54, 0xb2, 0x82, 0x7f, 0x26, 0x49, 0x94, 0x49, 0x9c, 0x62, + 0xa5, 0x9a, 0xee, 0xda, 0x00, 0x0c, 0xb3, 0x22, 0xe7, 0xd4, 0xd7, 0x99, + 0xf8, 0xa7, 0x59, 0x64, 0xd7, 0x6e, 0x0d, 0xb0, 0x47, 0x40, 0x41, 0x0e, + 0x0f, 0x7a, 0xc7, 0xb6, 0xd6, 0x2e, 0x0c, 0xbe, 0x6c, 0xc5, 0xa6, 0x94, + 0xb7, 0x56, 0x35, 0xb4, 0xb1, 0x4e, 0x2e, 0xd6, 0x31, 0x8e, 0x1b, 0x99, + 0x5e, 0xe7, 0x79, 0xe2, 0x2d, 0x72, 0xd8, 0x3c, 0x29, 0x15, 0xce, 0x33, + 0x91, 0xc7, 0x19, 0x35, 0x5f, 0x48, 0xd5, 0x64, 0x7b, 0xe8, 0xc1, 0xb9, + 0x7f, 0x28, 0x37, 0xcd, 0xcf, 0x15, 0xcb, 0x38, 0xbb, 0xd4, 0xdd, 0x7f, + 0x71, 0x81, 0x1b, 0x67, 0x3e, 0x95, 0xb5, 0xa5, 0xc9, 0x75, 0x6b, 0x0c, + 0xc8, 0x22, 0x46, 0x69, 0x14, 0xa8, 0xcd, 0x65, 0x2a, 0x8d, 0xcf, 0x99, + 0x17, 0x18, 0xa5, 0x1e, 0x56, 0x7a, 0x22, 0xbc, 0x6f, 0x18, 0x91, 0x5d, + 0x4a, 0x11, 0x90, 0x73, 0x48, 0xd2, 0xc2, 0xa9, 0xbc, 0xc8, 0xa1, 0x7d, + 0x73, 0x5c, 0x36, 0xae, 0x9a, 0xa2, 0xe9, 0x36, 0xd2, 0x47, 0x13, 0x2c, + 0x36, 0xf1, 0x05, 0x9b, 0x6b, 0x70, 0x71, 0x8a, 0xe6, 0x6e, 0x75, 0x3b, + 0xc7, 0x8d, 0x42, 0xcb, 0x34, 0x71, 0x95, 0xfb, 0xb9, 0xc5, 0x6e, 0xb1, + 0x37, 0xd1, 0x23, 0x2f, 0xab, 0xf5, 0xb9, 0xdb, 0x78, 0xf5, 0x3c, 0xdf, + 0x0f, 0xda, 0xdd, 0x47, 0xf3, 0x42, 0xd2, 0xe0, 0x38, 0xe8, 0x78, 0xaf, + 0x36, 0xc5, 0x6c, 0xde, 0x5e, 0xdd, 0x3e, 0x83, 0x69, 0x6c, 0xd3, 0xbb, + 0x43, 0x92, 0xdb, 0x09, 0xe3, 0x3e, 0xb5, 0x8f, 0x58, 0xaa, 0x92, 0x9d, + 0xdc, 0x8d, 0xa5, 0x4e, 0x30, 0xd2, 0x23, 0x69, 0x29, 0xd4, 0x9f, 0x95, + 0x3b, 0x8a, 0xc6, 0xaf, 0x86, 0xc6, 0x75, 0x84, 0xff, 0x00, 0x74, 0xff, + 0x00, 0x2a, 0xec, 0xe4, 0xf1, 0x5a, 0x69, 0x4c, 0xb6, 0xa6, 0x34, 0x24, + 0x7f, 0xb5, 0xcd, 0x71, 0xbe, 0x1a, 0xc7, 0xf6, 0xca, 0x72, 0x3e, 0xeb, + 0x53, 0x7c, 0x50, 0xdb, 0x75, 0xe5, 0x5c, 0x0e, 0x42, 0xd4, 0xa9, 0xb8, + 0xbb, 0xa2, 0xdc, 0x39, 0x95, 0x99, 0xed, 0x10, 0x30, 0x9a, 0x25, 0x91, + 0x7a, 0x30, 0xcd, 0x4c, 0x12, 0xa8, 0x78, 0x79, 0x5b, 0xfb, 0x29, 0x03, + 0x1c, 0xe0, 0x90, 0x3e, 0x95, 0xae, 0x12, 0xbb, 0xa3, 0x2b, 0xc5, 0x33, + 0x8a, 0x51, 0xb4, 0x9a, 0x44, 0x41, 0x2a, 0x40, 0x95, 0x28, 0x8e, 0xb0, + 0x7c, 0x4d, 0xe2, 0x45, 0xf0, 0xfa, 0x46, 0x16, 0x21, 0x2c, 0xaf, 0xfc, + 0x24, 0xe3, 0x02, 0x87, 0x24, 0xb5, 0x62, 0x4a, 0xe5, 0xad, 0x7d, 0x3f, + 0xe2, 0x41, 0x7b, 0xff, 0x00, 0x5c, 0x8d, 0x78, 0xb4, 0xa1, 0x7c, 0xc9, + 0x32, 0x40, 0xf9, 0x47, 0x73, 0x5d, 0xd4, 0xbe, 0x3a, 0x6d, 0x53, 0x4d, + 0xbb, 0xb6, 0x96, 0xd1, 0x63, 0x0d, 0x19, 0x00, 0x86, 0xcd, 0x70, 0xf2, + 0x91, 0xb9, 0xf8, 0x6f, 0xbb, 0xd8, 0x0a, 0xe3, 0xaf, 0x35, 0x27, 0xa1, + 0xd5, 0x46, 0x2d, 0x2d, 0x48, 0xfe, 0x41, 0x92, 0x18, 0x67, 0x03, 0xf8, + 0xa9, 0xd9, 0xe0, 0xe0, 0xff, 0x00, 0x0f, 0x66, 0xa4, 0x3c, 0x03, 0xf2, + 0xb7, 0x4f, 0xee, 0x8a, 0x33, 0xd7, 0x8f, 0xe1, 0xfe, 0xe5, 0x62, 0x6c, + 0x76, 0x3f, 0x0e, 0x95, 0x9b, 0xc4, 0xab, 0x9c, 0xff, 0x00, 0xaa, 0xee, + 0x6b, 0xd9, 0x12, 0x3a, 0xf2, 0x0f, 0x86, 0x6a, 0x1b, 0xc4, 0xc3, 0x8e, + 0x7c, 0xaf, 0xee, 0xe2, 0xbd, 0xa9, 0x63, 0xae, 0xba, 0x0f, 0xdd, 0x39, + 0x6b, 0x7c, 0x44, 0x4b, 0x1d, 0x4a, 0x12, 0xa5, 0x11, 0xd3, 0xc4, 0x75, + 0xaf, 0x31, 0x95, 0x88, 0x82, 0x53, 0xc2, 0x54, 0xc2, 0x3a, 0x78, 0x8e, + 0xa5, 0xc8, 0xa4, 0x88, 0x42, 0x53, 0xc2, 0x54, 0xc2, 0x3a, 0x78, 0x8e, + 0x97, 0x30, 0xd2, 0x20, 0x09, 0x4f, 0x09, 0x53, 0x08, 0xe9, 0xe2, 0x3a, + 0x9e, 0x62, 0xac, 0x42, 0x12, 0x9e, 0x12, 0xa6, 0x58, 0xfd, 0xa9, 0xe2, + 0x3a, 0x97, 0x21, 0xa4, 0x42, 0x12, 0x9c, 0x12, 0xac, 0x08, 0xe9, 0xc2, + 0x3a, 0x5c, 0xc5, 0x72, 0x95, 0xfc, 0xba, 0x51, 0x1d, 0x59, 0x11, 0xd2, + 0x88, 0xea, 0x79, 0xc7, 0xca, 0x57, 0x11, 0xd2, 0xec, 0xab, 0x1e, 0x5d, + 0x2f, 0x97, 0x4b, 0x98, 0x7c, 0xa5, 0x6d, 0x94, 0x79, 0x75, 0x67, 0xcb, + 0xa4, 0xd9, 0x47, 0x30, 0x72, 0x95, 0xb6, 0x7b, 0x52, 0x14, 0xab, 0x5b, + 0x29, 0x3c, 0xbf, 0x6a, 0x7c, 0xc2, 0xe5, 0x2a, 0x18, 0xe9, 0xa5, 0x2a, + 0xd9, 0x8e, 0x90, 0xc7, 0x4d, 0x48, 0x56, 0x29, 0x94, 0xa6, 0x14, 0xab, + 0x66, 0x3a, 0x69, 0x8e, 0xa9, 0x48, 0x56, 0x2a, 0x15, 0xa6, 0x14, 0xab, + 0x66, 0x3a, 0x61, 0x8e, 0xab, 0x98, 0x56, 0x2a, 0x94, 0xa6, 0x95, 0xab, + 0x45, 0x29, 0xa5, 0x29, 0xf3, 0x13, 0x62, 0xa9, 0x4a, 0x61, 0x8e, 0xad, + 0x94, 0xa6, 0x14, 0xaa, 0xe6, 0x15, 0x8a, 0x85, 0x2a, 0x32, 0x95, 0x70, + 0xa5, 0x46, 0xc9, 0x54, 0xa4, 0x4b, 0x45, 0x32, 0x95, 0x1b, 0x25, 0x5c, + 0x29, 0x4c, 0x64, 0xa7, 0xcc, 0x2b, 0x14, 0x5a, 0x3a, 0x85, 0xa3, 0xad, + 0x02, 0x95, 0x1b, 0x47, 0x54, 0x98, 0x8c, 0xf6, 0x4a, 0x89, 0x92, 0xaf, + 0xb4, 0x75, 0x13, 0x47, 0x4e, 0xe2, 0x28, 0x98, 0xea, 0x32, 0x95, 0x79, + 0xa3, 0xa8, 0x9a, 0x3a, 0x2e, 0x05, 0x36, 0x4a, 0x89, 0xd3, 0xe5, 0x3f, + 0x4a, 0xba, 0x52, 0xa3, 0x78, 0xfe, 0x53, 0xf4, 0xa7, 0x71, 0x13, 0x88, + 0xfe, 0x51, 0xf4, 0xa6, 0x98, 0xea, 0xe8, 0x8f, 0xe5, 0x1f, 0x4a, 0x61, + 0x8f, 0xda, 0xb3, 0xe6, 0x2a, 0xc5, 0x23, 0x1d, 0x30, 0xc7, 0x57, 0x4c, + 0x74, 0xd3, 0x1d, 0x1c, 0xc1, 0x62, 0x91, 0x8e, 0x9b, 0xe5, 0xd5, 0xd3, + 0x1d, 0x30, 0xc7, 0x4f, 0x98, 0x2c, 0x53, 0x31, 0xfb, 0x52, 0x79, 0x75, + 0x70, 0xc7, 0x4d, 0x31, 0xd1, 0xcc, 0x2b, 0x15, 0x0c, 0x74, 0x9e, 0x5d, + 0x5b, 0x31, 0xd2, 0x79, 0x74, 0x73, 0x05, 0x8a, 0xbe, 0x5d, 0x26, 0xca, + 0xb7, 0xe5, 0xd2, 0x79, 0x74, 0x73, 0x05, 0x8a, 0xde, 0x5d, 0x1e, 0x5d, + 0x59, 0xf2, 0xe8, 0xf2, 0xe8, 0xe6, 0x0b, 0x15, 0xb6, 0x52, 0xec, 0xab, + 0x3e, 0x5d, 0x2f, 0x97, 0x47, 0x30, 0x58, 0xad, 0xb2, 0x9c, 0x12, 0xac, + 0x79, 0x74, 0xef, 0x2e, 0x8e, 0x61, 0x58, 0xac, 0x23, 0xa7, 0x08, 0xea, + 0xc0, 0x8e, 0x9c, 0x12, 0x8e, 0x60, 0xb1, 0x5c, 0x47, 0x4e, 0x09, 0x56, + 0x04, 0x74, 0xe1, 0x1d, 0x1c, 0xc1, 0x62, 0xb8, 0x8e, 0x9c, 0x23, 0xab, + 0x02, 0x3a, 0x70, 0x8e, 0x8e, 0x60, 0xb1, 0x5c, 0x47, 0x4e, 0xd9, 0x53, + 0x88, 0xe9, 0xc2, 0x3a, 0x5c, 0xc1, 0x62, 0xb8, 0x4a, 0x50, 0x95, 0x64, + 0x47, 0xed, 0x4a, 0x23, 0xa3, 0x98, 0x2c, 0x57, 0x09, 0x4a, 0x23, 0xab, + 0x3e, 0x5d, 0x28, 0x8e, 0x9f, 0x30, 0x58, 0xad, 0xe5, 0xd2, 0x88, 0xea, + 0xcf, 0x97, 0x4b, 0xe5, 0xd1, 0xcc, 0x16, 0x2b, 0x79, 0x74, 0xbe, 0x5d, + 0x59, 0xf2, 0xe9, 0x7c, 0xba, 0x5c, 0xe1, 0x62, 0xae, 0xca, 0x5d, 0x95, + 0x67, 0xcb, 0xf6, 0xa5, 0xf2, 0xfd, 0xa8, 0xe6, 0x0b, 0x15, 0x7c, 0xba, + 0x3c, 0xba, 0xb5, 0xe5, 0xd1, 0xe5, 0xd1, 0xce, 0x16, 0x32, 0xf5, 0x04, + 0xc5, 0x8c, 0xa7, 0xda, 0xb9, 0x19, 0x0d, 0x76, 0xda, 0xa2, 0x63, 0x4e, + 0x98, 0xff, 0x00, 0xb3, 0x5c, 0x43, 0x9a, 0xf9, 0x5c, 0xf9, 0xde, 0xb4, + 0x3d, 0x0f, 0xa9, 0xc8, 0xff, 0x00, 0x81, 0x2f, 0x52, 0xb6, 0xa7, 0xce, + 0x89, 0x3f, 0xd4, 0x7f, 0x3a, 0xca, 0x97, 0xef, 0xcb, 0xff, 0x00, 0x5d, + 0x62, 0xfe, 0x95, 0xa9, 0xa9, 0x7f, 0xc8, 0x12, 0x6f, 0xa8, 0xfe, 0x75, + 0x93, 0x21, 0xfd, 0xec, 0xbf, 0xf5, 0xde, 0x2f, 0xe9, 0x5e, 0x65, 0x27, + 0x68, 0xff, 0x00, 0x5e, 0x47, 0xa5, 0x57, 0xe2, 0xfe, 0xbc, 0xc9, 0x11, + 0xff, 0x00, 0x7a, 0xb8, 0x3f, 0xf2, 0xf6, 0xff, 0x00, 0xca, 0x99, 0xbd, + 0x8c, 0x43, 0xfe, 0xbd, 0x49, 0xff, 0x00, 0xc7, 0xa9, 0x10, 0x8f, 0x31, + 0x71, 0xff, 0x00, 0x3f, 0x72, 0x7f, 0x2a, 0x66, 0xef, 0xdd, 0x2f, 0xfd, + 0x7a, 0x1f, 0xfd, 0x0a, 0xb4, 0xb9, 0x91, 0x3d, 0xd1, 0x3f, 0x67, 0xb9, + 0x00, 0x73, 0xe7, 0x0f, 0xe5, 0x54, 0xed, 0xc9, 0x11, 0x4c, 0x33, 0xc1, + 0x1c, 0x8a, 0xb3, 0x78, 0x48, 0xb7, 0xb9, 0xc7, 0xfc, 0xf7, 0x1f, 0xca, + 0xb3, 0x61, 0xb8, 0xd8, 0xf2, 0xc7, 0xc7, 0xdd, 0x1f, 0xcc, 0x57, 0x4e, + 0x05, 0x7e, 0xf9, 0x5b, 0xfa, 0xd0, 0xcb, 0x16, 0xd7, 0xb1, 0x77, 0xfe, + 0xb5, 0x3d, 0x7e, 0xd1, 0x3f, 0xd0, 0xa0, 0xff, 0x00, 0xae, 0x6b, 0xfc, + 0xaa, 0xae, 0xb6, 0x98, 0xd1, 0x6e, 0xcf, 0xfd, 0x32, 0x6f, 0xe5, 0x5a, + 0x76, 0x71, 0xff, 0x00, 0xa0, 0xc1, 0xff, 0x00, 0x5c, 0xd7, 0xf9, 0x55, + 0x5d, 0x76, 0x3c, 0x68, 0x77, 0x9f, 0xf5, 0xc9, 0xbf, 0x95, 0x7d, 0x87, + 0x36, 0x87, 0xc7, 0xa5, 0xa9, 0xe1, 0x92, 0x4c, 0x32, 0x70, 0x2a, 0x06, + 0x95, 0x8f, 0x7a, 0x7b, 0xaf, 0x27, 0xeb, 0x4c, 0x23, 0x8c, 0x57, 0x95, + 0xca, 0x93, 0x3d, 0x9e, 0x79, 0x33, 0xb6, 0xf8, 0x6f, 0x96, 0xbd, 0xbc, + 0xff, 0x00, 0x71, 0x7f, 0xad, 0x7a, 0x39, 0x4a, 0xf3, 0xdf, 0x86, 0x4b, + 0x9b, 0xfb, 0xcf, 0xf7, 0x17, 0xf9, 0x9a, 0xf4, 0xc3, 0x1d, 0x77, 0x51, + 0x95, 0xa0, 0x8f, 0x37, 0x10, 0xaf, 0x36, 0x53, 0xd9, 0x48, 0x63, 0xa3, + 0x51, 0xbd, 0xb7, 0xd2, 0xec, 0xda, 0xea, 0xe8, 0x95, 0x89, 0x7a, 0x90, + 0x33, 0x5c, 0xbc, 0xff, 0x00, 0x11, 0x74, 0x48, 0xf3, 0xb3, 0xcd, 0x7f, + 0xf8, 0x0e, 0x2b, 0x47, 0x56, 0x31, 0xdd, 0x99, 0xc6, 0x94, 0xa5, 0xb2, + 0x3a, 0x62, 0x95, 0x56, 0xfd, 0xda, 0xda, 0xc6, 0x69, 0x90, 0x02, 0xc8, + 0xa4, 0x8c, 0xd7, 0x1d, 0x3f, 0xc5, 0x3b, 0x41, 0x9f, 0x26, 0xc6, 0x46, + 0xf7, 0x2c, 0x2b, 0x26, 0xeb, 0xe2, 0x5d, 0xce, 0xa5, 0x1c, 0xb6, 0x96, + 0xd6, 0x2b, 0x99, 0x14, 0x8e, 0xe7, 0x15, 0x3e, 0xde, 0x1d, 0xcb, 0xfa, + 0xbd, 0x4e, 0xa8, 0xbb, 0xa6, 0xdf, 0xdc, 0xea, 0x3a, 0xcc, 0x6f, 0x70, + 0xfb, 0x8a, 0xca, 0x54, 0x71, 0xd0, 0x53, 0x75, 0x74, 0x98, 0xdd, 0xda, + 0x18, 0xc1, 0x21, 0x6e, 0x1f, 0x38, 0xed, 0xc9, 0xac, 0x2f, 0x0a, 0x6a, + 0x33, 0x4d, 0xe2, 0x4b, 0x78, 0x5f, 0x68, 0xdd, 0x21, 0x25, 0x71, 0xed, + 0x5d, 0xa5, 0xcc, 0x1b, 0xdb, 0x76, 0x7e, 0xec, 0xd2, 0x1f, 0xd4, 0xd7, + 0x05, 0x49, 0xa9, 0x55, 0x5e, 0x87, 0x75, 0x38, 0xb8, 0xd2, 0x7e, 0xa7, + 0x9d, 0xea, 0x2c, 0x45, 0xd4, 0x9e, 0xec, 0xdf, 0xce, 0xa6, 0x82, 0xeb, + 0x70, 0x8a, 0x0c, 0x1e, 0xa3, 0x9a, 0xaf, 0xaa, 0x1d, 0xb7, 0xd2, 0x82, + 0x79, 0xde, 0xdf, 0xce, 0x92, 0xd4, 0xff, 0x00, 0xa6, 0xc5, 0xdf, 0xda, + 0xac, 0xc8, 0xd4, 0xb7, 0xcf, 0x96, 0x87, 0xf5, 0x15, 0x7e, 0xdb, 0x52, + 0xfe, 0xcc, 0xba, 0xf3, 0x36, 0x06, 0x2c, 0xb8, 0x00, 0xd6, 0x7d, 0xb3, + 0xaf, 0x97, 0x1f, 0x38, 0x3e, 0xa2, 0xab, 0xde, 0x33, 0x49, 0xa9, 0x22, + 0xe7, 0x01, 0x79, 0xa5, 0x39, 0x25, 0x1b, 0xb3, 0x48, 0x46, 0xf2, 0x47, + 0x77, 0x71, 0x7d, 0x6a, 0x9e, 0x58, 0x92, 0x52, 0xae, 0xea, 0x0e, 0x58, + 0x6e, 0xc7, 0xe0, 0x2a, 0x11, 0x7b, 0xa7, 0xc7, 0x1c, 0xf0, 0xdc, 0xce, + 0xca, 0x93, 0x2e, 0xd0, 0xf8, 0x3c, 0xfd, 0x2b, 0x22, 0xd1, 0x77, 0x5c, + 0xae, 0xec, 0x9f, 0xc2, 0xb1, 0x3c, 0x5b, 0xe2, 0x23, 0x77, 0x74, 0x9a, + 0x7c, 0x2a, 0xa2, 0x2b, 0x5c, 0xb6, 0xf0, 0x30, 0x49, 0xc5, 0x4c, 0x57, + 0x24, 0xae, 0x29, 0x4f, 0x9d, 0x35, 0x63, 0x0b, 0x5f, 0x86, 0xd6, 0x3d, + 0x4a, 0xe5, 0x6c, 0xe5, 0x69, 0x21, 0x1b, 0x70, 0xcd, 0xd6, 0xa0, 0xd3, + 0x91, 0x17, 0x64, 0xa4, 0x72, 0x24, 0xc0, 0xcf, 0xd6, 0xab, 0xbb, 0x97, + 0x8d, 0xd9, 0x89, 0x25, 0x82, 0x93, 0x53, 0xe9, 0xee, 0x05, 0xa4, 0xdc, + 0xf2, 0x1b, 0x8a, 0x2a, 0x74, 0x65, 0x53, 0x7b, 0xa3, 0xab, 0xb5, 0x01, + 0xa5, 0x9d, 0x97, 0x24, 0x1f, 0x4e, 0x3b, 0x55, 0xab, 0x64, 0xfd, 0xf0, + 0xe3, 0xf5, 0xaa, 0x5a, 0x28, 0x67, 0x85, 0xcb, 0xf2, 0x71, 0xdc, 0xd6, + 0xad, 0xb2, 0x0f, 0x3c, 0x70, 0xb4, 0x53, 0x95, 0xe2, 0x67, 0x55, 0x5a, + 0x7f, 0x71, 0xb9, 0x7b, 0x11, 0xff, 0x00, 0x84, 0x5a, 0xfc, 0xe0, 0xf1, + 0x19, 0xef, 0x9a, 0xf3, 0x6d, 0x47, 0x7e, 0xc8, 0x90, 0x26, 0x54, 0xc4, + 0x87, 0x20, 0x7b, 0x57, 0xa9, 0x6a, 0x30, 0x07, 0xf0, 0x86, 0xa0, 0x3e, + 0x50, 0x4c, 0x67, 0x07, 0x35, 0xe6, 0xd3, 0xcc, 0x16, 0xee, 0xde, 0xdd, + 0xba, 0x35, 0xb0, 0x6f, 0xc4, 0x0a, 0x14, 0xac, 0xee, 0x55, 0xb6, 0x29, + 0x5e, 0xab, 0x1d, 0x2a, 0xd1, 0x57, 0xef, 0x0c, 0xe4, 0x7a, 0x56, 0x4b, + 0x2b, 0xf7, 0x6c, 0x57, 0x61, 0xa4, 0x88, 0xae, 0xa0, 0x4d, 0xd1, 0xa9, + 0x20, 0xe0, 0xfb, 0xd6, 0xec, 0xfe, 0x1e, 0xd3, 0x6e, 0x7e, 0xc8, 0xad, + 0x6c, 0x83, 0x7e, 0xfd, 0xc5, 0x78, 0x27, 0x8a, 0xa4, 0xec, 0x89, 0x6f, + 0x99, 0x9e, 0x60, 0xa8, 0xd2, 0x13, 0x82, 0x4d, 0x29, 0x84, 0xa8, 0xf9, + 0x81, 0x14, 0x8d, 0x98, 0x67, 0x96, 0x35, 0x27, 0x0a, 0xe4, 0x0f, 0xce, + 0x95, 0xa5, 0x62, 0x30, 0x4f, 0x15, 0x1e, 0xd2, 0x57, 0x37, 0x54, 0xe2, + 0xe2, 0x6a, 0xf8, 0x72, 0x00, 0xfa, 0xba, 0x00, 0x70, 0x76, 0x9c, 0x11, + 0x4d, 0xf1, 0x37, 0x98, 0x3c, 0x41, 0x1f, 0x99, 0x8d, 0xc1, 0x57, 0xf1, + 0xe6, 0xac, 0xf8, 0x5f, 0xfe, 0x43, 0x51, 0x7f, 0xba, 0x69, 0xbe, 0x31, + 0xca, 0xf8, 0x82, 0x3c, 0x7f, 0x75, 0x7f, 0x9d, 0x5c, 0x8c, 0xe3, 0xb1, + 0xec, 0xde, 0x1e, 0x4c, 0xe9, 0x69, 0xf5, 0xad, 0x81, 0x1d, 0x65, 0x78, + 0x4f, 0x74, 0xba, 0x2c, 0x6c, 0xeb, 0xb5, 0xb3, 0x82, 0x2b, 0xa0, 0x11, + 0xd7, 0x6c, 0x25, 0xee, 0xa3, 0x86, 0x6b, 0xde, 0x64, 0x02, 0x3a, 0xf1, + 0xff, 0x00, 0x1f, 0x5c, 0x6f, 0xf1, 0x3c, 0xb1, 0x09, 0x0b, 0x04, 0x40, + 0x36, 0xe7, 0xa5, 0x7b, 0x50, 0x8e, 0xbc, 0x0f, 0xc5, 0xf2, 0xac, 0xbe, + 0x32, 0xbf, 0x65, 0x18, 0x1b, 0xb1, 0xf9, 0x01, 0x51, 0x56, 0x5a, 0x17, + 0x4a, 0x3a, 0x94, 0xed, 0x11, 0x8c, 0x33, 0xb7, 0x60, 0xb5, 0x59, 0xf6, + 0xef, 0x7c, 0xed, 0xe8, 0x3b, 0xd5, 0xfb, 0x14, 0xce, 0x9f, 0x72, 0xd9, + 0xaa, 0x2e, 0x46, 0xe6, 0x04, 0x9e, 0x83, 0xf8, 0x6b, 0x96, 0xf7, 0x6c, + 0xeb, 0x6a, 0xc9, 0x08, 0x76, 0xf3, 0x8c, 0x7d, 0xdf, 0xef, 0x52, 0x80, + 0x30, 0x46, 0xe1, 0x9c, 0x7f, 0x7e, 0x9a, 0x48, 0xcb, 0x72, 0x7a, 0x7f, + 0x72, 0x8c, 0xae, 0x4f, 0x3f, 0xc3, 0xfd, 0xda, 0x09, 0x3b, 0xbf, 0x85, + 0xcb, 0x9f, 0x14, 0x01, 0x9c, 0xfe, 0xe7, 0xfb, 0xd9, 0xaf, 0x6f, 0x58, + 0xeb, 0xc5, 0xbe, 0x13, 0x28, 0x7f, 0x14, 0x9c, 0x7f, 0xcf, 0x1f, 0x4a, + 0xf7, 0x65, 0x8a, 0xb7, 0xa7, 0x2b, 0x44, 0xc2, 0xa2, 0xbc, 0x8a, 0xeb, + 0x15, 0x48, 0xb1, 0x7b, 0x55, 0x95, 0x8b, 0xda, 0xa4, 0x58, 0xa9, 0xb9, + 0x92, 0xa2, 0x56, 0x11, 0x54, 0x82, 0x3a, 0xb2, 0x22, 0xa7, 0x88, 0xaa, + 0x79, 0xca, 0x50, 0x2a, 0x88, 0xe9, 0xc2, 0x3a, 0xb2, 0x23, 0xa7, 0x88, + 0xe9, 0x73, 0x95, 0xc8, 0x55, 0x11, 0xd4, 0x82, 0x3f, 0x6a, 0x9c, 0x47, + 0x4f, 0x09, 0x53, 0xce, 0x35, 0x02, 0x01, 0x1d, 0x3c, 0x47, 0x52, 0x85, + 0xa7, 0x01, 0x4b, 0x98, 0xa5, 0x12, 0x20, 0x94, 0xe0, 0x95, 0x26, 0x29, + 0x71, 0x4b, 0x98, 0x7c, 0xa4, 0x61, 0x29, 0x76, 0x54, 0x94, 0x52, 0xe6, + 0x1f, 0x28, 0xcd, 0xb4, 0xbb, 0x69, 0xd4, 0xb4, 0xb9, 0x87, 0xca, 0x33, + 0x6d, 0x1b, 0x69, 0xf4, 0x51, 0xcc, 0x1c, 0xa4, 0x65, 0x69, 0x36, 0x54, + 0x94, 0x51, 0xcc, 0x1c, 0xa4, 0x45, 0x29, 0xa5, 0x2a, 0x6c, 0x51, 0x8a, + 0x7c, 0xc2, 0xe5, 0x2b, 0x94, 0xa6, 0x14, 0xab, 0x58, 0xa6, 0x95, 0x15, + 0x5c, 0xc4, 0xf2, 0x95, 0x4c, 0x74, 0xc3, 0x1d, 0x5c, 0x2b, 0x4d, 0xd9, + 0x4f, 0x98, 0x5c, 0xa5, 0x33, 0x1d, 0x34, 0xc7, 0x57, 0x3c, 0xb1, 0x48, + 0x63, 0x15, 0x5c, 0xe4, 0xf2, 0x9c, 0xcf, 0x8a, 0xb5, 0x47, 0xd0, 0x3c, + 0x39, 0x77, 0xa9, 0x47, 0x18, 0x77, 0x84, 0x02, 0x01, 0xe9, 0xc9, 0xaf, + 0x25, 0x1f, 0x18, 0x75, 0x45, 0x54, 0x77, 0xb7, 0x88, 0x87, 0x3c, 0x0c, + 0x74, 0xaf, 0x50, 0xf8, 0x9e, 0x98, 0xf0, 0x06, 0xa4, 0x7f, 0xd9, 0x5f, + 0xe6, 0x2b, 0xe6, 0x36, 0x3f, 0xb8, 0x83, 0xf1, 0xfe, 0x75, 0x2e, 0x6e, + 0xfa, 0x17, 0x18, 0x2b, 0x6a, 0x7a, 0xba, 0x7c, 0x61, 0xb9, 0x13, 0xb4, + 0x4f, 0x61, 0x11, 0x2b, 0xd4, 0xe4, 0xd4, 0xe9, 0xf1, 0x8a, 0x26, 0x80, + 0xc8, 0xf6, 0x01, 0x79, 0xc7, 0x04, 0xf5, 0xaf, 0x27, 0xff, 0x00, 0x97, + 0xf9, 0xbe, 0x86, 0xa0, 0xcf, 0xfa, 0x11, 0xff, 0x00, 0xae, 0x9f, 0xd2, + 0x85, 0x39, 0x77, 0x07, 0x08, 0xf6, 0x3d, 0x81, 0x3e, 0x2b, 0xab, 0x48, + 0xa8, 0xd6, 0xd1, 0x64, 0xf3, 0x8e, 0x7a, 0x56, 0x86, 0x9f, 0xf1, 0x2f, + 0x4e, 0x9e, 0x46, 0xfb, 0x56, 0xc8, 0xd3, 0xb3, 0x29, 0xcd, 0x78, 0xa1, + 0x3f, 0xe9, 0x89, 0xfe, 0xe0, 0xfe, 0x55, 0x10, 0xff, 0x00, 0x8f, 0x59, + 0x3f, 0xdf, 0x14, 0xd4, 0xe5, 0xdc, 0x4e, 0x11, 0xec, 0x7d, 0x04, 0xbe, + 0x39, 0xd1, 0x64, 0x94, 0x22, 0xca, 0xd8, 0x3d, 0x1b, 0x1c, 0x56, 0xdd, + 0xb5, 0xed, 0xa5, 0xe8, 0xff, 0x00, 0x47, 0xb8, 0x8e, 0x43, 0xe8, 0xad, + 0xcd, 0x7c, 0xd1, 0xbd, 0x85, 0xc0, 0xc3, 0x1f, 0xf5, 0x7e, 0xbe, 0xd5, + 0xde, 0xfc, 0x27, 0x79, 0x24, 0xf1, 0x00, 0x52, 0xec, 0x47, 0x94, 0xdc, + 0x13, 0x5a, 0x46, 0xac, 0xaf, 0xa9, 0x9c, 0xa9, 0x45, 0x2b, 0xa3, 0xd7, + 0xda, 0x3a, 0x89, 0xa3, 0xad, 0x13, 0x17, 0xb5, 0x46, 0xd1, 0x56, 0xfc, + 0xe6, 0x16, 0x33, 0x5a, 0x3a, 0x8d, 0xa3, 0xad, 0x06, 0x8a, 0xa3, 0x68, + 0xa9, 0xf3, 0x0a, 0xc6, 0x7b, 0x47, 0x51, 0x49, 0x1f, 0xca, 0x7e, 0x95, + 0xa0, 0x62, 0xa8, 0xa4, 0x8b, 0xe5, 0x6f, 0xa5, 0x3e, 0x60, 0xb1, 0x64, + 0x45, 0xf2, 0x8f, 0xa5, 0x34, 0xc5, 0x57, 0x82, 0x0d, 0xa3, 0xe9, 0x4d, + 0x28, 0x2b, 0x8f, 0xda, 0x9b, 0xfb, 0x32, 0x81, 0x8a, 0x98, 0x62, 0xab, + 0xe5, 0x2a, 0x32, 0x94, 0xfd, 0xa8, 0x7b, 0x36, 0x51, 0x31, 0x53, 0x4c, + 0x55, 0x78, 0xa0, 0xa6, 0x18, 0xe9, 0xfb, 0x51, 0x7b, 0x32, 0x89, 0x8a, + 0x90, 0xc7, 0x57, 0x4a, 0x0a, 0x61, 0x8c, 0x51, 0xed, 0x43, 0xd9, 0x94, + 0xfc, 0xba, 0x4f, 0x2e, 0xae, 0x14, 0xa6, 0xec, 0x14, 0x7b, 0x50, 0xf6, + 0x65, 0x5f, 0x2e, 0x93, 0xcb, 0xab, 0x7b, 0x05, 0x26, 0xc1, 0x47, 0xb5, + 0x0f, 0x66, 0x55, 0xf2, 0xe8, 0xf2, 0xea, 0xd6, 0xc1, 0x4b, 0xb2, 0x9f, + 0xb5, 0x17, 0xb3, 0x65, 0x5f, 0x2e, 0x97, 0xcb, 0xab, 0x21, 0x05, 0x28, + 0x8e, 0x8f, 0x6a, 0x1e, 0xcc, 0xad, 0xe5, 0xd3, 0xbc, 0xba, 0xb2, 0x23, + 0xa5, 0x09, 0x47, 0xb5, 0x0f, 0x66, 0x57, 0xf2, 0xbd, 0xa9, 0x44, 0x75, + 0x64, 0x25, 0x38, 0x25, 0x2f, 0x6a, 0x1e, 0xcc, 0xac, 0x23, 0xa7, 0x08, + 0xea, 0xc8, 0x41, 0x4b, 0xb0, 0x51, 0xed, 0x43, 0xd9, 0x95, 0xc4, 0x75, + 0x1d, 0xc4, 0xf1, 0x5a, 0xae, 0x64, 0x38, 0xf4, 0x15, 0x78, 0x25, 0x61, + 0x78, 0x87, 0xe5, 0x31, 0xfd, 0x0d, 0x73, 0x62, 0xf1, 0x32, 0xa7, 0x49, + 0xca, 0x3b, 0x9d, 0x58, 0x3c, 0x34, 0x6a, 0xd6, 0x51, 0x9e, 0xc5, 0x56, + 0xf1, 0x45, 0xba, 0xb9, 0x5f, 0x28, 0xf0, 0x4e, 0x4e, 0x6b, 0x47, 0x4f, + 0xd5, 0xad, 0x75, 0x17, 0x11, 0xc4, 0x4f, 0x99, 0x8c, 0x95, 0x35, 0xe7, + 0xb2, 0x9f, 0xdf, 0x37, 0x6e, 0x6b, 0xa0, 0xf0, 0x78, 0xce, 0xac, 0x7f, + 0xdc, 0x35, 0xc7, 0x43, 0x1b, 0x55, 0xcd, 0x46, 0x4e, 0xe7, 0x76, 0x23, + 0x05, 0x45, 0x53, 0x72, 0x8a, 0xb3, 0x47, 0x6c, 0x23, 0xa5, 0x11, 0xd5, + 0x80, 0x94, 0xed, 0xa2, 0xbd, 0x3f, 0x6a, 0x79, 0x1e, 0xcc, 0xad, 0xe5, + 0xd3, 0xbc, 0xba, 0xb1, 0xb0, 0x52, 0x85, 0xa7, 0xed, 0x43, 0xd9, 0x15, + 0xfc, 0xba, 0x5f, 0x2e, 0xac, 0x6d, 0xa5, 0xdb, 0x4b, 0xda, 0x87, 0xb2, + 0x2b, 0xf9, 0x74, 0x79, 0x75, 0x67, 0x68, 0xa5, 0xda, 0x28, 0xf6, 0xa3, + 0xf6, 0x45, 0x6f, 0x2e, 0x8f, 0x2e, 0xac, 0xed, 0xa3, 0x6d, 0x2f, 0x6a, + 0x1e, 0xc8, 0xad, 0xe5, 0xd1, 0xe5, 0xd5, 0x9d, 0xb5, 0x9b, 0xad, 0xea, + 0x47, 0x4a, 0xb1, 0xf3, 0xd5, 0x37, 0x12, 0xdb, 0x45, 0x4c, 0xab, 0xa8, + 0xc5, 0xc9, 0xf4, 0x2e, 0x18, 0x79, 0x4e, 0x4a, 0x31, 0xdd, 0x91, 0x6b, + 0x09, 0x8d, 0x2a, 0x73, 0xfe, 0xcd, 0x79, 0xf3, 0xb6, 0x09, 0x15, 0xb3, + 0x7b, 0xe2, 0xf9, 0x2e, 0x63, 0xfb, 0x0b, 0xdb, 0x28, 0x32, 0x2f, 0x2f, + 0x9a, 0xc5, 0x93, 0xb9, 0xaf, 0x9b, 0xcc, 0xf1, 0x10, 0xaf, 0x52, 0x32, + 0x8f, 0x63, 0xe9, 0x72, 0xdc, 0x3c, 0xe8, 0x53, 0x94, 0x67, 0xdc, 0xaf, + 0xa9, 0x0d, 0xda, 0x24, 0xd8, 0xf5, 0x1f, 0xce, 0xb2, 0xa5, 0x53, 0xe6, + 0x4a, 0x71, 0xff, 0x00, 0x2d, 0xe2, 0xfe, 0x95, 0xab, 0xa8, 0x9c, 0x68, + 0xb2, 0xe3, 0xfb, 0xc3, 0xf9, 0xd6, 0x54, 0x8d, 0xfb, 0xc9, 0x3f, 0xeb, + 0xbc, 0x75, 0xc9, 0x4b, 0x6f, 0xeb, 0xc8, 0xe9, 0xa9, 0xbf, 0xf5, 0xe6, + 0x36, 0x20, 0x4b, 0xa9, 0x3f, 0xf3, 0xf5, 0x27, 0xf2, 0xa6, 0x90, 0x44, + 0x6b, 0xff, 0x00, 0x5e, 0xbf, 0xfb, 0x31, 0xa7, 0x44, 0xc7, 0x7a, 0xff, + 0x00, 0xd7, 0xd4, 0x9f, 0xca, 0x9a, 0x5c, 0x88, 0xd7, 0x8f, 0xf9, 0x76, + 0xff, 0x00, 0xd9, 0xab, 0x5e, 0xa6, 0x7d, 0x09, 0x2f, 0x0e, 0x60, 0xb8, + 0xff, 0x00, 0xae, 0xe3, 0xf9, 0x56, 0x0b, 0x71, 0x78, 0xff, 0x00, 0xee, + 0x8f, 0xe6, 0x2b, 0x72, 0xec, 0x8f, 0x22, 0xe0, 0x13, 0xff, 0x00, 0x2d, + 0xc7, 0xf2, 0xac, 0x09, 0x58, 0x2d, 0xf7, 0x1d, 0x08, 0x00, 0xfe, 0x62, + 0xbb, 0x30, 0x0f, 0xf7, 0xa8, 0xe6, 0xc7, 0x6b, 0x45, 0x9f, 0x41, 0x58, + 0xa7, 0xfa, 0x05, 0xbf, 0xfd, 0x73, 0x5f, 0xe5, 0x55, 0x35, 0xe8, 0xff, + 0x00, 0xe2, 0x45, 0x7b, 0xff, 0x00, 0x5c, 0x9b, 0xf9, 0x56, 0x95, 0x88, + 0xff, 0x00, 0x89, 0x7d, 0xb7, 0xfd, 0x73, 0x5f, 0xe5, 0x55, 0x75, 0xe1, + 0xff, 0x00, 0x12, 0x1b, 0xdf, 0xfa, 0xe2, 0xdf, 0xca, 0xbe, 0x87, 0xda, + 0x9f, 0x36, 0xa9, 0x6a, 0x7c, 0xf4, 0xc3, 0x96, 0xed, 0xcd, 0x34, 0xaf, + 0xf9, 0x15, 0x33, 0x75, 0x38, 0x3d, 0xe9, 0xa4, 0x1f, 0x4f, 0xca, 0xb9, + 0x5c, 0x8e, 0xf4, 0xb4, 0x3b, 0x9f, 0x85, 0xeb, 0x9d, 0x46, 0xf0, 0x7f, + 0xd3, 0x31, 0xfc, 0xcd, 0x7a, 0x89, 0x8e, 0xbc, 0xcb, 0xe1, 0x68, 0xff, + 0x00, 0x89, 0xa5, 0xe6, 0x7f, 0xe7, 0x98, 0xfe, 0x66, 0xbd, 0x57, 0x6d, + 0x6d, 0x0a, 0x96, 0x47, 0x2d, 0x58, 0x5e, 0x47, 0x31, 0xe3, 0x0b, 0x75, + 0x93, 0xc3, 0xd3, 0xab, 0x8c, 0x8a, 0xf0, 0x11, 0x81, 0x90, 0x38, 0xaf, + 0xa2, 0x3c, 0x5a, 0xbf, 0xf1, 0x4f, 0xdc, 0x7d, 0x2b, 0xe7, 0x82, 0x79, + 0x23, 0x3f, 0x9d, 0x73, 0x62, 0xa5, 0x7b, 0x1d, 0x98, 0x18, 0xd9, 0x31, + 0x18, 0x7e, 0xef, 0xb1, 0xe6, 0x9d, 0xe1, 0xb6, 0x11, 0xeb, 0x85, 0xcf, + 0x00, 0x23, 0x66, 0x91, 0x87, 0xee, 0x86, 0x40, 0x3c, 0xd2, 0xf8, 0x75, + 0x73, 0xab, 0xb8, 0xc0, 0x1f, 0xbb, 0x6a, 0xca, 0x2e, 0xc9, 0xb3, 0xa6, + 0xaa, 0xba, 0x35, 0xbc, 0x39, 0x28, 0xff, 0x00, 0x84, 0xc6, 0xda, 0x50, + 0x38, 0x32, 0x92, 0x3f, 0x23, 0x5b, 0xda, 0xd7, 0x8b, 0x0d, 0x95, 0xe4, + 0xf6, 0xb1, 0x5b, 0xe5, 0xd2, 0x57, 0xcb, 0x13, 0xc7, 0x27, 0x35, 0xce, + 0xf8, 0x67, 0x07, 0xc5, 0x56, 0x60, 0x7f, 0xcf, 0x43, 0xfd, 0x68, 0xf1, + 0x7a, 0x18, 0xbc, 0x47, 0x75, 0x91, 0x80, 0x5c, 0xe2, 0xb6, 0x8f, 0x2b, + 0x92, 0xee, 0x72, 0x4a, 0xfc, 0xb6, 0xe8, 0x52, 0xb9, 0x94, 0xcd, 0x72, + 0xd2, 0x3a, 0xe5, 0x9c, 0x96, 0xe3, 0xde, 0xa7, 0xb5, 0xff, 0x00, 0x90, + 0x8c, 0x7f, 0x2f, 0x1e, 0xd5, 0x4a, 0x52, 0x0b, 0x26, 0x5b, 0x6e, 0x16, + 0xad, 0xd9, 0x1c, 0xea, 0xb1, 0x60, 0xe3, 0xeb, 0x5b, 0x5c, 0xc0, 0x9a, + 0xd2, 0x42, 0x1d, 0x41, 0x04, 0x0c, 0xf6, 0xa7, 0xcc, 0xdf, 0xf1, 0x35, + 0x51, 0xd8, 0x8f, 0xeb, 0x4d, 0xb3, 0x1f, 0xbc, 0x1c, 0x30, 0xf9, 0xba, + 0x8e, 0x94, 0xe9, 0xd7, 0x3a, 0xcc, 0x63, 0xb5, 0x63, 0x39, 0x5e, 0x2d, + 0x1b, 0x42, 0x36, 0x69, 0x9d, 0x3d, 0x92, 0x0f, 0xb4, 0xae, 0x40, 0x35, + 0xe7, 0x7a, 0xa0, 0xc6, 0xbb, 0x7b, 0xdb, 0x96, 0xaf, 0x4b, 0xb1, 0x5f, + 0xf4, 0x95, 0xe4, 0x7e, 0x75, 0xe6, 0xfa, 0xb0, 0xc7, 0x88, 0x2f, 0x7f, + 0xe0, 0x55, 0x6e, 0x5a, 0x98, 0xa5, 0xa1, 0x43, 0x3f, 0xba, 0x3f, 0x45, + 0xa9, 0x2c, 0x46, 0x63, 0xb9, 0xff, 0x00, 0x3d, 0xea, 0x0c, 0xfe, 0xec, + 0xfd, 0x16, 0xac, 0xe9, 0xff, 0x00, 0xea, 0x2e, 0x07, 0xaf, 0xf8, 0xd3, + 0xaa, 0xfd, 0xd2, 0xa9, 0xaf, 0x78, 0xec, 0xb4, 0x65, 0x4d, 0xb2, 0x6c, + 0x2b, 0x80, 0xa3, 0xf9, 0x56, 0xad, 0xaa, 0xfe, 0xf8, 0x73, 0xfa, 0x56, + 0x57, 0x87, 0x63, 0x45, 0x8e, 0x50, 0x84, 0xe3, 0x68, 0xed, 0x5b, 0x71, + 0x0c, 0x31, 0x23, 0x76, 0x40, 0x3d, 0xab, 0x3a, 0x72, 0xf7, 0x47, 0x52, + 0x3e, 0xf9, 0xd3, 0xdc, 0xc6, 0x3f, 0xe1, 0x12, 0xd4, 0x7e, 0x61, 0x91, + 0x11, 0x3d, 0x39, 0xaf, 0x24, 0xbc, 0x4f, 0xf8, 0x9c, 0xd9, 0xff, 0x00, + 0xd7, 0xa7, 0xfe, 0xcb, 0x5e, 0xbf, 0x18, 0x79, 0xfc, 0x0d, 0x74, 0xc7, + 0x76, 0xe6, 0x83, 0x27, 0x70, 0xe3, 0xa5, 0x79, 0x14, 0xf3, 0x47, 0x2e, + 0xb3, 0x68, 0xd1, 0xb0, 0x60, 0xb6, 0xa5, 0x4e, 0x3d, 0x42, 0xd6, 0x51, + 0xa9, 0x7e, 0x62, 0xdc, 0x2c, 0x91, 0x7f, 0xc3, 0xa3, 0xf7, 0x0b, 0xf5, + 0xae, 0xe5, 0x50, 0x13, 0x61, 0xf5, 0x7e, 0xff, 0x00, 0xec, 0xd7, 0x11, + 0xe1, 0xd7, 0x0b, 0x66, 0x1b, 0x3d, 0x32, 0x71, 0x5d, 0xd5, 0xbb, 0x89, + 0x61, 0xd3, 0xa5, 0xec, 0x4b, 0x9f, 0xfc, 0x76, 0xb5, 0xe7, 0xb4, 0x4c, + 0xd4, 0x7d, 0xe3, 0xc5, 0x6e, 0x17, 0x17, 0xd7, 0x5f, 0xf5, 0xd5, 0xbf, + 0x9d, 0x30, 0x8f, 0x6a, 0x9e, 0xe7, 0x6b, 0x5f, 0x5d, 0x1c, 0xf1, 0xe6, + 0xb7, 0xf3, 0xa0, 0x47, 0x94, 0x04, 0x73, 0x53, 0x29, 0x6a, 0x74, 0x45, + 0x68, 0x68, 0xf8, 0x6e, 0x64, 0x87, 0x59, 0x89, 0xe4, 0x60, 0xab, 0x82, + 0x09, 0xa6, 0xf8, 0xc2, 0x78, 0xa6, 0xd7, 0x16, 0x48, 0xa4, 0xdc, 0xa2, + 0x31, 0xca, 0xfa, 0xe4, 0xd6, 0x75, 0x9c, 0xaa, 0x97, 0xa7, 0x23, 0xa0, + 0x35, 0x1e, 0xa8, 0xe5, 0xae, 0x54, 0x83, 0xc1, 0x5a, 0xd3, 0x9d, 0xb9, + 0x58, 0x8e, 0x44, 0xa3, 0x73, 0xdf, 0x7e, 0x1d, 0x49, 0x25, 0xd7, 0x86, + 0x23, 0x92, 0x46, 0x2c, 0xdb, 0x88, 0xc9, 0xae, 0xc4, 0x45, 0x5c, 0x87, + 0xc2, 0xb1, 0xbf, 0xc2, 0x49, 0xfe, 0xfb, 0x7f, 0x3a, 0xee, 0xc4, 0x75, + 0xd0, 0xaa, 0x59, 0x1c, 0x92, 0x85, 0xd9, 0x5b, 0xca, 0xf9, 0x49, 0xf6, + 0xaf, 0x9a, 0xb5, 0xb9, 0xda, 0xe7, 0xc4, 0xf7, 0xd2, 0xb0, 0x00, 0x99, + 0x5c, 0x60, 0x7b, 0x1c, 0x57, 0xd1, 0xda, 0xe6, 0xad, 0x06, 0x87, 0xa7, + 0x35, 0xcc, 0xea, 0xcc, 0x3a, 0x00, 0xbd, 0xcd, 0x7c, 0xfb, 0x75, 0xa6, + 0xa5, 0xc6, 0xa3, 0x3d, 0xd8, 0x72, 0x3c, 0xd9, 0x19, 0xf1, 0xe9, 0x93, + 0x9a, 0x4e, 0x57, 0x08, 0xda, 0x1b, 0x8e, 0xb2, 0x55, 0x1a, 0x34, 0xe7, + 0xb9, 0xcd, 0x65, 0xb2, 0x12, 0x58, 0xe1, 0xba, 0x0e, 0xf5, 0x75, 0xa7, + 0xfb, 0x04, 0x0f, 0x67, 0x8d, 0xe1, 0xf9, 0xdc, 0x6a, 0x89, 0x93, 0x05, + 0x80, 0x60, 0x38, 0x15, 0x94, 0x5b, 0xbb, 0x37, 0x93, 0x4d, 0x26, 0x84, + 0x2a, 0xd9, 0x3f, 0x2b, 0x74, 0xfe, 0xf5, 0x3b, 0x6b, 0x73, 0xf7, 0xba, + 0x7a, 0xd2, 0x02, 0xa4, 0x9c, 0xb0, 0x3c, 0x50, 0x58, 0x73, 0xf7, 0x7a, + 0x55, 0x13, 0x63, 0xd1, 0xbe, 0x10, 0x46, 0x4f, 0x8a, 0x98, 0x92, 0x7f, + 0xd4, 0x9e, 0xa6, 0xbd, 0xf0, 0x20, 0xaf, 0x08, 0xf8, 0x37, 0xf3, 0x78, + 0xaa, 0x4e, 0x9f, 0xea, 0x0d, 0x7b, 0xe0, 0x14, 0xb9, 0xec, 0x0e, 0x37, + 0x1a, 0x12, 0x9e, 0x16, 0xb9, 0xff, 0x00, 0x16, 0xf8, 0xae, 0x1f, 0x0a, + 0x58, 0xc5, 0x73, 0x2d, 0xbb, 0x4c, 0x24, 0x62, 0xa0, 0x29, 0xc6, 0x38, + 0xcd, 0x71, 0x51, 0xfc, 0x6f, 0xb2, 0x94, 0xe1, 0x34, 0xa9, 0x4e, 0x3d, + 0x64, 0x1f, 0xe1, 0x4b, 0x9c, 0x14, 0x0f, 0x57, 0x02, 0x9c, 0x05, 0x51, + 0xd2, 0x75, 0x25, 0xd5, 0x34, 0xab, 0x6b, 0xe5, 0x43, 0x18, 0x9d, 0x03, + 0x85, 0x27, 0x38, 0xab, 0x9e, 0x60, 0xa8, 0x75, 0x51, 0x4a, 0x03, 0xf1, + 0x55, 0x27, 0xd5, 0x74, 0xdb, 0x53, 0x89, 0xef, 0xad, 0xe3, 0x39, 0xc6, + 0x1e, 0x40, 0x2a, 0x69, 0x25, 0x1e, 0x5b, 0x7d, 0x0d, 0x7c, 0xd9, 0x73, + 0x72, 0x92, 0x6a, 0xd7, 0x11, 0x89, 0x32, 0xc2, 0x56, 0xc8, 0xcf, 0xbd, + 0x54, 0x26, 0xa4, 0x12, 0x8b, 0x47, 0xd2, 0xb0, 0xdc, 0xdb, 0xdc, 0x0c, + 0xc3, 0x34, 0x72, 0x0f, 0x54, 0x60, 0x6a, 0x6a, 0xf1, 0x4f, 0x00, 0xbb, + 0x2f, 0x8a, 0xed, 0x7e, 0x63, 0x8c, 0x3f, 0x7f, 0xf6, 0x4d, 0x7b, 0x27, + 0x9d, 0xef, 0x53, 0x52, 0xa2, 0x83, 0xb0, 0xe3, 0x17, 0x25, 0x72, 0xc5, + 0x2d, 0x56, 0xf3, 0xa8, 0xf3, 0x6b, 0x3f, 0x6c, 0x8a, 0xf6, 0x6c, 0xb3, + 0x91, 0x46, 0xe1, 0x55, 0xbc, 0xda, 0x3c, 0xda, 0x5e, 0xd8, 0x7e, 0xcc, + 0xb3, 0xb8, 0x52, 0x6f, 0xaa, 0xde, 0x6d, 0x27, 0x99, 0x47, 0xb5, 0x2b, + 0xd9, 0x96, 0x7c, 0xca, 0x4f, 0x32, 0xab, 0x6f, 0xa3, 0x75, 0x2f, 0x68, + 0xc7, 0xec, 0xcb, 0x3e, 0x65, 0x1e, 0x65, 0x56, 0xdd, 0x46, 0xea, 0x39, + 0xd8, 0x72, 0x16, 0xf7, 0xd2, 0xee, 0x15, 0x4f, 0xcc, 0xa5, 0xf3, 0x29, + 0xfb, 0x51, 0x7b, 0x32, 0xde, 0xe1, 0x46, 0x45, 0x55, 0xf3, 0x7d, 0xe9, + 0x7c, 0xda, 0x3d, 0xb1, 0x3e, 0xcd, 0x96, 0x69, 0x2a, 0x0f, 0x3a, 0x8f, + 0x38, 0x7a, 0xd3, 0xf6, 0xc8, 0x5e, 0xcd, 0x93, 0xd2, 0x62, 0xa1, 0xf3, + 0x87, 0xad, 0x2f, 0x9c, 0x2a, 0xbd, 0xb2, 0x17, 0xb3, 0x64, 0x98, 0xa3, + 0x15, 0x1f, 0x9a, 0x29, 0x7c, 0xd1, 0x47, 0xb6, 0x42, 0xe4, 0x67, 0x23, + 0xf1, 0x40, 0x7f, 0xc5, 0xbe, 0xd4, 0xff, 0x00, 0xdd, 0x5f, 0xfd, 0x08, + 0x57, 0xcb, 0xf2, 0x00, 0x21, 0x83, 0x15, 0xf5, 0x0f, 0xc4, 0xd6, 0x0d, + 0xf0, 0xff, 0x00, 0x54, 0x1f, 0xec, 0x0f, 0xfd, 0x08, 0x57, 0xcb, 0xf2, + 0x73, 0x14, 0x38, 0xff, 0x00, 0x3c, 0xd5, 0xc2, 0x7c, 0xc0, 0xe3, 0x61, + 0xff, 0x00, 0xf2, 0xfd, 0x37, 0xd0, 0xd4, 0x3f, 0xf2, 0xe6, 0x7f, 0xeb, + 0xa7, 0xf4, 0xa9, 0x8f, 0xfc, 0x7e, 0x4a, 0x7d, 0x8d, 0x41, 0xff, 0x00, + 0x2e, 0x67, 0xfe, 0xba, 0x7f, 0x4a, 0xd2, 0xe4, 0xd8, 0x98, 0xff, 0x00, + 0xc7, 0xda, 0x7f, 0xba, 0x3f, 0x95, 0x44, 0x3f, 0xe3, 0xda, 0x4f, 0xf7, + 0x85, 0x3c, 0x9f, 0xf4, 0xb5, 0xff, 0x00, 0x74, 0x7f, 0x2a, 0x88, 0x1f, + 0xf4, 0x69, 0x3f, 0xde, 0x14, 0xee, 0x2b, 0x13, 0x1f, 0xf5, 0xe3, 0xfe, + 0xb9, 0xff, 0x00, 0x4a, 0xf4, 0x1f, 0x83, 0xcb, 0xbb, 0xc4, 0xa0, 0x7f, + 0xd3, 0x26, 0xaf, 0x3e, 0xcf, 0xef, 0xc7, 0xfd, 0x73, 0xfe, 0x95, 0xe8, + 0xbf, 0x06, 0x06, 0x7c, 0x4d, 0xff, 0x00, 0x6c, 0x5a, 0x9f, 0x35, 0x84, + 0xd5, 0xcf, 0x73, 0x31, 0x54, 0x6d, 0x15, 0x5e, 0x2b, 0x4c, 0x2a, 0x29, + 0xfb, 0x43, 0x27, 0x4c, 0xce, 0x68, 0xaa, 0x26, 0x87, 0xda, 0xb4, 0x06, + 0xd7, 0x19, 0x5e, 0x47, 0x4a, 0x63, 0x25, 0x3f, 0x6a, 0x2f, 0x66, 0x67, + 0x34, 0x5e, 0xd5, 0x0c, 0x91, 0x7c, 0x8d, 0xf4, 0xad, 0x26, 0x4a, 0x86, + 0x44, 0x1b, 0x1b, 0x8e, 0xd5, 0x5e, 0xd4, 0x5e, 0xcc, 0x8c, 0x4a, 0xbb, + 0x07, 0x23, 0xa5, 0x31, 0xa5, 0x5f, 0x51, 0x5e, 0x2a, 0x3c, 0x53, 0x72, + 0xa3, 0x78, 0xbd, 0x94, 0x60, 0x72, 0x4d, 0x43, 0x2f, 0x8c, 0xee, 0x4b, + 0x05, 0x37, 0xd2, 0x9c, 0xfa, 0x57, 0x0f, 0x24, 0xfb, 0x9d, 0xde, 0xef, + 0x63, 0xd9, 0x2e, 0x75, 0x4b, 0x3b, 0x56, 0x0b, 0x3d, 0xc4, 0x71, 0x93, + 0xd0, 0x33, 0x01, 0x9a, 0xae, 0xfa, 0xee, 0x9a, 0x80, 0x16, 0xbd, 0x80, + 0x67, 0xfe, 0x9a, 0x0a, 0xf1, 0x7f, 0x13, 0xdd, 0xbd, 0xcd, 0xb5, 0xb4, + 0x8f, 0x23, 0x31, 0x3c, 0xe4, 0x9f, 0x6a, 0xe6, 0x4c, 0x9e, 0xac, 0x6a, + 0x28, 0xcd, 0xce, 0x37, 0xb9, 0x55, 0xa9, 0xaa, 0x72, 0xb1, 0xf4, 0x60, + 0xd6, 0xb4, 0xf7, 0xc9, 0x5b, 0xc8, 0x08, 0x1d, 0xf7, 0x8a, 0x91, 0x6f, + 0xed, 0xa5, 0xe2, 0x39, 0xe3, 0x63, 0xec, 0xc0, 0xd7, 0xce, 0x02, 0x52, + 0x0e, 0x03, 0x9f, 0xce, 0xb4, 0x34, 0xfd, 0x50, 0xd8, 0xc8, 0xec, 0xd2, + 0x3f, 0x2b, 0x81, 0x83, 0x5a, 0xd9, 0xde, 0xd7, 0x33, 0xb2, 0xb1, 0xf4, + 0x01, 0xb9, 0x8c, 0x9c, 0x6f, 0x19, 0xfa, 0xd2, 0x19, 0x47, 0xa8, 0xaf, + 0x12, 0x5f, 0x11, 0xca, 0x41, 0x70, 0xed, 0xf2, 0xf4, 0xfd, 0xe7, 0x34, + 0xa3, 0xc6, 0x57, 0x88, 0xfc, 0x34, 0xd9, 0x3f, 0xed, 0x53, 0xe5, 0x7d, + 0x18, 0xac, 0xbb, 0x1e, 0xd4, 0x65, 0x1e, 0xb4, 0xc6, 0xb9, 0x89, 0x5b, + 0x69, 0x91, 0x41, 0xf4, 0xcd, 0x78, 0xcf, 0xfc, 0x26, 0x37, 0x40, 0x1c, + 0xbc, 0xa3, 0x3e, 0xa6, 0xa2, 0x93, 0xc4, 0x97, 0x20, 0xee, 0x75, 0x66, + 0xcf, 0x46, 0xdd, 0x4d, 0x45, 0xf5, 0x61, 0x65, 0xd8, 0xf6, 0xcf, 0x39, + 0x71, 0x9d, 0xc3, 0x1f, 0x5a, 0x89, 0xaf, 0xad, 0xd0, 0x80, 0xd3, 0x20, + 0x27, 0xd5, 0xab, 0xcb, 0x45, 0xe6, 0xa8, 0xd0, 0x29, 0x41, 0x23, 0x29, + 0x19, 0xc6, 0xec, 0x54, 0x2f, 0x2e, 0xa5, 0x90, 0x1e, 0xd9, 0xdb, 0x3d, + 0xc3, 0x67, 0x15, 0x2a, 0x4b, 0xf9, 0x8a, 0xf6, 0x52, 0xec, 0x7a, 0xc3, + 0x5f, 0x5b, 0xa8, 0xcb, 0x4c, 0x80, 0x7a, 0x96, 0xa8, 0x86, 0xaf, 0x65, + 0xb8, 0xaf, 0xda, 0x13, 0x23, 0xde, 0xbc, 0x9d, 0xef, 0xee, 0x50, 0xec, + 0x96, 0x17, 0x0c, 0x4f, 0x0b, 0x9c, 0x9a, 0x7c, 0x57, 0x8d, 0x26, 0x70, + 0x8e, 0x30, 0x3b, 0xd5, 0x5d, 0x7f, 0x30, 0xb9, 0x25, 0xd8, 0xf5, 0x33, + 0xae, 0x58, 0x02, 0x01, 0xb8, 0x5e, 0x6a, 0x75, 0xd4, 0xed, 0x0a, 0xee, + 0xfb, 0x44, 0x78, 0xff, 0x00, 0x78, 0x57, 0x98, 0x59, 0xf9, 0xf7, 0x25, + 0xfc, 0xb0, 0xc8, 0x17, 0x93, 0xb8, 0x56, 0x05, 0xd5, 0xa5, 0xc9, 0x9d, + 0xbc, 0x89, 0x9d, 0x81, 0x6e, 0x84, 0x91, 0xcd, 0x65, 0xed, 0x97, 0x33, + 0x4b, 0x64, 0x6c, 0xf0, 0xd6, 0x82, 0x7d, 0x59, 0xee, 0x23, 0x52, 0xb5, + 0x23, 0xfd, 0x7c, 0x7f, 0xf7, 0xd0, 0xa5, 0x1a, 0x95, 0xae, 0x71, 0xe7, + 0xc7, 0x9f, 0xf7, 0x85, 0x78, 0x52, 0x47, 0xaa, 0x40, 0x37, 0x19, 0x19, + 0x54, 0x1e, 0x7e, 0x6a, 0xea, 0xf4, 0x44, 0x8f, 0x55, 0x89, 0xa4, 0x17, + 0x20, 0x6c, 0x38, 0x3f, 0x5a, 0x6e, 0xac, 0x14, 0x5c, 0xdc, 0xb4, 0x44, + 0xac, 0x3c, 0xdc, 0x94, 0x12, 0xd5, 0x9e, 0x9c, 0xb7, 0xd6, 0xed, 0xd2, + 0x54, 0x3f, 0x43, 0x4f, 0x17, 0x91, 0x1f, 0xe3, 0x15, 0xe4, 0xd3, 0xdf, + 0xfd, 0x92, 0xea, 0x48, 0x7c, 0xf0, 0x0a, 0x36, 0x33, 0xbb, 0xad, 0x2a, + 0xf8, 0x85, 0xd0, 0xe3, 0xed, 0x40, 0x9f, 0xad, 0x68, 0x93, 0x6a, 0xe9, + 0x99, 0xb8, 0xa4, 0xec, 0xd1, 0xea, 0xd3, 0x6a, 0x56, 0xd6, 0xf1, 0x34, + 0x8f, 0x20, 0xda, 0xa3, 0x27, 0x15, 0xce, 0xde, 0x78, 0xf2, 0xda, 0xd9, + 0xbf, 0x75, 0x6e, 0xd2, 0x27, 0xad, 0x72, 0xb6, 0xba, 0xab, 0x6a, 0x97, + 0x0b, 0x64, 0x67, 0x18, 0x97, 0xe5, 0x24, 0x73, 0x57, 0xf5, 0x4d, 0x26, + 0xda, 0xcf, 0x4e, 0x30, 0x1d, 0xd2, 0x79, 0x87, 0xef, 0x9e, 0x08, 0xfa, + 0x57, 0x25, 0x6a, 0xb2, 0x85, 0x48, 0xd3, 0xbe, 0xac, 0xeb, 0xa3, 0x42, + 0x12, 0xa7, 0x2a, 0x8d, 0x68, 0x8d, 0xed, 0x37, 0xc7, 0xb6, 0x97, 0xf7, + 0x71, 0xdb, 0x7d, 0x9e, 0x45, 0x91, 0xdb, 0x03, 0x91, 0x8a, 0xb7, 0xe2, + 0x09, 0x44, 0x8d, 0x1e, 0xdf, 0xee, 0x9a, 0xf3, 0x38, 0x52, 0x3d, 0x3e, + 0xf9, 0x24, 0x85, 0x48, 0x29, 0xf3, 0x02, 0x5b, 0x35, 0xb6, 0x75, 0xe9, + 0x6e, 0x2d, 0xbc, 0xc9, 0x14, 0x7a, 0x75, 0xa2, 0xbd, 0x2a, 0x95, 0x29, + 0xb8, 0xdc, 0x54, 0x27, 0x4a, 0x9d, 0x45, 0x32, 0xb4, 0xbf, 0xeb, 0x5b, + 0x3e, 0xb5, 0xd0, 0x78, 0x3e, 0x45, 0x4d, 0x54, 0xe4, 0x81, 0xf2, 0x1e, + 0xb5, 0xcd, 0xda, 0x5c, 0x47, 0x73, 0x72, 0x55, 0xb9, 0xe7, 0xb1, 0xad, + 0x81, 0x6d, 0x0a, 0x0f, 0x94, 0x3a, 0xe7, 0xa9, 0x0f, 0x8a, 0xe2, 0x72, + 0xf6, 0x13, 0x5c, 0xc7, 0x77, 0x27, 0xb7, 0xa6, 0xf9, 0x4f, 0x4b, 0x17, + 0x11, 0xff, 0x00, 0x7d, 0x7f, 0x3a, 0x78, 0x91, 0x4f, 0x42, 0x2b, 0xce, + 0xe4, 0xbc, 0x69, 0x6e, 0x2d, 0xa0, 0x0c, 0xca, 0x8c, 0x70, 0x4a, 0xb7, + 0x3c, 0x56, 0xc3, 0x6a, 0xaf, 0x65, 0xb6, 0x25, 0x1b, 0x80, 0x1d, 0xcd, + 0x68, 0xb1, 0xed, 0x5b, 0x9b, 0x4b, 0x98, 0xcb, 0x2e, 0xd3, 0xdd, 0x77, + 0x3a, 0xe0, 0xe3, 0xd6, 0x97, 0x78, 0xae, 0x4c, 0x6b, 0xd2, 0x6e, 0xc1, + 0x41, 0xf9, 0xd5, 0x4b, 0xbf, 0x1a, 0x43, 0xa7, 0xe0, 0xdc, 0xc6, 0xe1, + 0x4f, 0xf1, 0x2f, 0x22, 0xb4, 0x86, 0x31, 0x54, 0x76, 0x8b, 0x31, 0x9e, + 0x06, 0x50, 0x57, 0x67, 0x71, 0xbc, 0x52, 0xef, 0x15, 0xc0, 0x27, 0xc4, + 0x8d, 0x14, 0xfd, 0xe9, 0xe5, 0x53, 0xff, 0x00, 0x5c, 0xc9, 0xab, 0x76, + 0xbe, 0x38, 0xd3, 0x2e, 0xe3, 0x69, 0x23, 0xb9, 0xda, 0xaa, 0x71, 0xf3, + 0x8d, 0xb9, 0xfc, 0xeb, 0x67, 0x56, 0xa7, 0x63, 0x25, 0x42, 0x3d, 0xce, + 0xd3, 0xcc, 0x1e, 0xb4, 0x79, 0x83, 0xd6, 0xb8, 0xd6, 0xf1, 0x64, 0x6b, + 0xd1, 0x77, 0x0e, 0xc4, 0x1a, 0xca, 0xbb, 0xf8, 0x84, 0xb6, 0xb3, 0xf9, + 0x66, 0xd9, 0x9b, 0xbe, 0x77, 0x56, 0x34, 0xf1, 0x4e, 0xa3, 0xb4, 0x4d, + 0x6a, 0x60, 0xfd, 0x9a, 0xbc, 0x8f, 0x47, 0xf3, 0x07, 0xad, 0x31, 0xee, + 0x11, 0x08, 0x0c, 0xc0, 0x6e, 0x38, 0x15, 0xcd, 0x5b, 0xf8, 0x82, 0x29, + 0xed, 0xd2, 0x5d, 0xc1, 0x77, 0x0c, 0xe0, 0x9e, 0x95, 0x1d, 0xd6, 0xb9, + 0x6d, 0xb9, 0x43, 0xc9, 0xc8, 0x19, 0x18, 0xa2, 0x55, 0xea, 0x74, 0x41, + 0x0c, 0x34, 0x1b, 0xf7, 0x9d, 0x91, 0xd6, 0x79, 0x83, 0xd6, 0xb9, 0xcf, + 0x19, 0x38, 0x3a, 0x42, 0xff, 0x00, 0xd7, 0x41, 0x59, 0xeb, 0xe2, 0x87, + 0x70, 0xce, 0xb1, 0x2f, 0x96, 0x3a, 0x12, 0xfc, 0x9a, 0xcf, 0xd6, 0xf5, + 0xc1, 0x7d, 0x64, 0x90, 0xf9, 0x64, 0x12, 0xd9, 0xeb, 0x9a, 0xe7, 0xad, + 0x8b, 0x5c, 0xae, 0x0d, 0xea, 0x75, 0x61, 0xf0, 0x33, 0x53, 0x53, 0xb6, + 0x88, 0xe7, 0xe5, 0xf9, 0xb5, 0x08, 0x88, 0xeb, 0xb2, 0xac, 0x9e, 0x07, + 0x27, 0x9a, 0xab, 0x73, 0x2a, 0xc0, 0xed, 0x29, 0x23, 0x72, 0x46, 0x0e, + 0x0f, 0xd6, 0xb9, 0xfb, 0xad, 0x6e, 0x79, 0x18, 0xec, 0x3b, 0x45, 0x70, + 0xd1, 0xc3, 0xce, 0xba, 0x5c, 0xbb, 0x23, 0xba, 0xbd, 0x78, 0x51, 0x6f, + 0x98, 0xe9, 0x35, 0x02, 0x0e, 0x8d, 0x28, 0xcf, 0xf1, 0x0f, 0xe7, 0x59, + 0x72, 0x15, 0xdf, 0x2f, 0x23, 0xfd, 0x7c, 0x75, 0x89, 0x3d, 0xfc, 0xef, + 0xa7, 0x31, 0x77, 0x66, 0x05, 0xb9, 0x00, 0xe2, 0xb2, 0xde, 0xfa, 0x7f, + 0x31, 0xff, 0x00, 0x78, 0x7f, 0xd6, 0xa5, 0x76, 0xc3, 0x2f, 0x92, 0xd2, + 0xe7, 0x14, 0xf1, 0xd1, 0x7a, 0xd8, 0xeb, 0x22, 0x20, 0xb0, 0xc6, 0x3f, + 0xe3, 0xe6, 0x4f, 0xe5, 0x4c, 0x27, 0x11, 0x8f, 0xfa, 0xf6, 0xff, 0x00, + 0xd9, 0xab, 0x9b, 0xb5, 0xd4, 0xe6, 0x8a, 0x60, 0x59, 0xc9, 0x1e, 0x73, + 0xff, 0x00, 0x2a, 0x43, 0x7f, 0x77, 0x39, 0x02, 0x1d, 0xcc, 0x4c, 0x27, + 0x00, 0x0f, 0x7a, 0xaf, 0xa9, 0x4e, 0xfb, 0x8b, 0xeb, 0x70, 0xb1, 0xd3, + 0x5e, 0xe0, 0x45, 0x39, 0x3f, 0xf3, 0xd8, 0x7f, 0x2a, 0xe7, 0xa5, 0x95, + 0x7f, 0xb4, 0x08, 0x23, 0x18, 0x03, 0x1f, 0x9d, 0x5d, 0xb6, 0x7b, 0xe9, + 0x84, 0xcb, 0x34, 0x4f, 0xf7, 0xc1, 0x19, 0x5f, 0x6a, 0xcf, 0xbb, 0xb3, + 0xbb, 0x6d, 0x43, 0x7a, 0xc1, 0x26, 0x01, 0x07, 0x21, 0x4d, 0x69, 0x87, + 0xa5, 0x2a, 0x75, 0x6c, 0xc9, 0xc4, 0x54, 0x8d, 0x4a, 0x37, 0x47, 0xd1, + 0xf6, 0x0e, 0x3f, 0xb3, 0xad, 0xbf, 0xeb, 0x92, 0xff, 0x00, 0x2a, 0xab, + 0xaf, 0xb8, 0xfe, 0xc1, 0xbe, 0xe7, 0xfe, 0x58, 0xb7, 0xf2, 0xac, 0x98, + 0x75, 0xc8, 0x2d, 0xb4, 0xc8, 0x5a, 0x47, 0xfb, 0xb1, 0xae, 0x40, 0xeb, + 0xd2, 0xa9, 0x6a, 0x3a, 0xf4, 0x3a, 0x87, 0x87, 0xaf, 0x8c, 0x5b, 0x83, + 0x18, 0x99, 0x42, 0xb0, 0xc1, 0x27, 0x15, 0xd0, 0xaa, 0xce, 0xfb, 0x1c, + 0x5e, 0xc6, 0x3d, 0xcf, 0x0c, 0xf3, 0xe4, 0xde, 0xc0, 0xb1, 0xfb, 0xd5, + 0xa0, 0xb3, 0xa0, 0x51, 0x93, 0xce, 0x3d, 0x69, 0x6c, 0x3c, 0x35, 0xa8, + 0x5f, 0xef, 0x65, 0x55, 0x8b, 0x0d, 0xff, 0x00, 0x2d, 0x4e, 0x33, 0x4d, + 0xbd, 0xd0, 0x35, 0x1b, 0x39, 0xfc, 0xb3, 0x11, 0x93, 0x23, 0x3b, 0xa3, + 0xe4, 0x56, 0xbc, 0xaf, 0x72, 0xb9, 0xa3, 0xb1, 0xe8, 0x1f, 0x0b, 0x25, + 0x56, 0xd5, 0xae, 0xf0, 0x73, 0xfb, 0xb1, 0xfc, 0xeb, 0xd6, 0x37, 0x8a, + 0xf1, 0x5f, 0x87, 0x1e, 0x7e, 0x99, 0xa9, 0x5d, 0x3d, 0xc4, 0x6d, 0x10, + 0x68, 0xc0, 0x05, 0xc6, 0x32, 0x6b, 0xb4, 0x8f, 0xc4, 0xd7, 0x6c, 0x09, + 0x2b, 0x10, 0xe4, 0x8c, 0x54, 0xde, 0x77, 0xb2, 0x22, 0x51, 0x8e, 0xec, + 0xda, 0xf1, 0x63, 0x03, 0xe1, 0xfb, 0x8f, 0xa5, 0x7c, 0xf0, 0xdc, 0x31, + 0xe9, 0xd6, 0xbd, 0x97, 0x51, 0xd5, 0xa6, 0xd4, 0x6c, 0xe4, 0xb6, 0x97, + 0x60, 0x47, 0xeb, 0xb7, 0xad, 0x79, 0x66, 0xa9, 0xa3, 0x4f, 0x05, 0xec, + 0x89, 0x6f, 0x6f, 0x24, 0x91, 0xf5, 0x52, 0x39, 0xa9, 0x92, 0x93, 0x5a, + 0x9a, 0x51, 0x71, 0x8b, 0x66, 0x5b, 0x1c, 0xa6, 0x36, 0xf7, 0xed, 0x53, + 0xf8, 0x5d, 0x43, 0x6b, 0x72, 0x0e, 0x9f, 0xbb, 0x6e, 0xb4, 0x0d, 0x2e, + 0xfb, 0x6f, 0xfc, 0x79, 0xcd, 0xff, 0x00, 0x7c, 0xd6, 0x97, 0x85, 0xb4, + 0x8d, 0x42, 0xd7, 0x53, 0x92, 0xe6, 0x4b, 0x29, 0x44, 0x7e, 0x5b, 0x0d, + 0xc4, 0x71, 0x59, 0x55, 0x6e, 0x14, 0xa4, 0xce, 0x84, 0x94, 0xe7, 0x14, + 0x8c, 0xfd, 0x16, 0xf8, 0x69, 0xfe, 0x23, 0x86, 0xe0, 0xa1, 0x61, 0x1c, + 0x84, 0xe0, 0x77, 0xeb, 0x4f, 0xf1, 0x0e, 0xa8, 0x35, 0x9d, 0x52, 0x6b, + 0xb4, 0x8d, 0x91, 0x19, 0x89, 0x0a, 0x7b, 0x56, 0x72, 0xc8, 0xb1, 0xea, + 0x4c, 0xd2, 0x0d, 0xa3, 0x79, 0xae, 0xd7, 0xc5, 0x0d, 0xa2, 0xd9, 0xf8, + 0x17, 0x43, 0xfe, 0xce, 0x6b, 0x67, 0xbc, 0x94, 0x37, 0xda, 0x0a, 0x01, + 0xbb, 0x3d, 0xf3, 0xf8, 0xfa, 0xd6, 0x9c, 0xfc, 0xb3, 0x8d, 0x96, 0xac, + 0xe7, 0x70, 0xbc, 0x5e, 0xba, 0x23, 0x86, 0x79, 0x77, 0x48, 0x0e, 0x7a, + 0x55, 0x93, 0x21, 0x49, 0x77, 0x29, 0x20, 0x85, 0xe0, 0xd6, 0x7a, 0xb1, + 0x27, 0xa5, 0x4a, 0xd2, 0x1c, 0x64, 0xff, 0x00, 0x77, 0x15, 0xde, 0x70, + 0x9d, 0x06, 0x95, 0x1b, 0xca, 0x8a, 0xc0, 0x3f, 0x1d, 0x48, 0xe9, 0x53, + 0x4c, 0x85, 0x35, 0x81, 0xb8, 0x11, 0x81, 0x9a, 0xe8, 0x3c, 0x03, 0x73, + 0xa3, 0x2e, 0x94, 0xc3, 0x50, 0x5f, 0xde, 0x07, 0xe3, 0xe6, 0xc5, 0x65, + 0xf8, 0xd7, 0x50, 0xb1, 0x7f, 0x12, 0x06, 0xd3, 0x94, 0x84, 0xf2, 0x42, + 0x9e, 0x73, 0x96, 0xff, 0x00, 0x38, 0xaf, 0x1f, 0xdb, 0x4a, 0x55, 0x65, + 0x03, 0xd7, 0x78, 0x78, 0xc6, 0x8c, 0x6a, 0x5c, 0xd8, 0xd2, 0xef, 0x21, + 0x9e, 0xe4, 0x6c, 0x6c, 0x9f, 0xad, 0x79, 0xfe, 0xb1, 0xb5, 0x75, 0xfb, + 0xc2, 0x78, 0xce, 0xea, 0xbf, 0x65, 0xa9, 0xc9, 0xa4, 0xde, 0xab, 0xe0, + 0x95, 0x61, 0x9c, 0x1e, 0xf5, 0xcf, 0x6a, 0x77, 0x4d, 0x75, 0xa8, 0xcb, + 0x36, 0x30, 0x58, 0x93, 0x8a, 0xed, 0x8a, 0x6e, 0x7e, 0x47, 0x9e, 0xe2, + 0x92, 0xf3, 0x20, 0xce, 0x51, 0xbd, 0x80, 0xab, 0xfa, 0x6e, 0x05, 0xbd, + 0xc7, 0xd3, 0xfa, 0xd6, 0x72, 0x11, 0xb1, 0x89, 0xf6, 0xa9, 0xed, 0xae, + 0x02, 0xbc, 0xe1, 0x46, 0x03, 0x74, 0x1f, 0x8d, 0x6f, 0x59, 0x37, 0x12, + 0x29, 0x5a, 0xf7, 0x3b, 0x7d, 0x0e, 0x65, 0x86, 0x09, 0x99, 0xcb, 0x00, + 0x14, 0x56, 0xc5, 0x9d, 0xe4, 0x33, 0x82, 0xd1, 0xb9, 0x3d, 0x6b, 0x8e, + 0xb6, 0xb8, 0x96, 0x6b, 0x66, 0x58, 0xc3, 0x15, 0x6e, 0x18, 0x8e, 0xd4, + 0x96, 0xd7, 0x12, 0xd9, 0xdd, 0xfc, 0xa4, 0x93, 0xdb, 0x15, 0xc8, 0x9f, + 0xba, 0xd5, 0xf5, 0x37, 0x94, 0x2f, 0x2b, 0x9e, 0xd1, 0xa5, 0x46, 0x2e, + 0xfc, 0x21, 0x24, 0x19, 0x70, 0xd2, 0x5b, 0x90, 0x3b, 0xf6, 0xf4, 0xaf, + 0x11, 0xb6, 0x52, 0x9a, 0xa8, 0x56, 0x1c, 0xa2, 0x38, 0xfd, 0x0d, 0x7b, + 0x0f, 0x80, 0xfc, 0x4f, 0xa3, 0xc4, 0xb1, 0xc5, 0x7f, 0x37, 0x94, 0x56, + 0x22, 0x32, 0x7a, 0x1a, 0xf2, 0x7f, 0x13, 0x5c, 0x5a, 0x3e, 0xb1, 0x73, + 0x2d, 0x81, 0x22, 0x26, 0x91, 0x8a, 0x1e, 0xf8, 0x26, 0xb8, 0xb0, 0xce, + 0x6e, 0x52, 0x4f, 0xaf, 0xf5, 0xf8, 0x9d, 0x55, 0xa1, 0x15, 0x4d, 0x35, + 0xd0, 0xb5, 0xe1, 0xe9, 0x56, 0x3b, 0x67, 0x0c, 0x40, 0xcf, 0x4e, 0x6b, + 0xbd, 0xb1, 0x9d, 0x0d, 0x96, 0x96, 0x85, 0xc6, 0xef, 0x98, 0xe3, 0x23, + 0xfb, 0xb5, 0xe4, 0xa9, 0x3b, 0x25, 0xa0, 0x68, 0xcf, 0xdd, 0x6e, 0x4d, + 0x69, 0x5f, 0xeb, 0xd2, 0x35, 0x9d, 0x89, 0x82, 0x52, 0x93, 0x44, 0x85, + 0x4e, 0x3b, 0x0a, 0xee, 0xa9, 0x19, 0x49, 0x24, 0x8e, 0x48, 0xa4, 0x9b, + 0x6c, 0xc5, 0x99, 0x41, 0xbc, 0xb9, 0xff, 0x00, 0xae, 0x8d, 0xfc, 0xe9, + 0xf0, 0xa9, 0x64, 0xef, 0x8c, 0x1a, 0xa2, 0xb7, 0x3c, 0xb1, 0x7c, 0x92, + 0x4e, 0x6a, 0xcc, 0x57, 0x0a, 0x90, 0xab, 0x31, 0x3b, 0x4e, 0x78, 0xad, + 0x65, 0x19, 0x58, 0x22, 0xd1, 0x56, 0x13, 0xb6, 0x7c, 0xe7, 0xd6, 0xa7, + 0xba, 0xc3, 0x3c, 0x7f, 0xee, 0x8a, 0xa6, 0xad, 0xfb, 0xdc, 0xd3, 0x9a, + 0x42, 0xaf, 0xd6, 0xb6, 0x71, 0x66, 0x4a, 0x48, 0xf5, 0xdd, 0x0b, 0xc5, + 0xd3, 0x78, 0x57, 0xc1, 0x16, 0xe6, 0xda, 0xdd, 0x65, 0x96, 0x49, 0x98, + 0x7c, 0xc7, 0x00, 0x01, 0x57, 0x74, 0x8f, 0x8b, 0x3a, 0xa5, 0xee, 0xa7, + 0x6f, 0x6d, 0x36, 0x9f, 0x02, 0xa4, 0x8e, 0x14, 0x90, 0xc7, 0x35, 0xe5, + 0x8d, 0xae, 0xce, 0xfa, 0x7c, 0x16, 0x0c, 0x17, 0xcb, 0x46, 0x2c, 0x08, + 0xeb, 0xcd, 0x69, 0x69, 0x32, 0x88, 0x35, 0x1b, 0x49, 0x47, 0x50, 0xe0, + 0xd2, 0x69, 0xa8, 0x36, 0xc2, 0x29, 0x39, 0xa4, 0x7b, 0x6f, 0xc4, 0xa9, + 0x95, 0x7c, 0x2a, 0xb2, 0x13, 0x81, 0xbd, 0x4d, 0x78, 0xd9, 0xbf, 0x87, + 0x1f, 0x7c, 0x56, 0xaf, 0x89, 0x7c, 0x6d, 0x7f, 0xe2, 0x2b, 0x59, 0x34, + 0xd7, 0x48, 0xa3, 0x85, 0x1f, 0x03, 0x1d, 0x4e, 0x2b, 0x82, 0x79, 0x24, + 0x12, 0x32, 0x0e, 0xd5, 0x14, 0x5b, 0x71, 0xf7, 0xb7, 0x26, 0xb5, 0x3b, + 0x4b, 0x43, 0x5a, 0xf2, 0x64, 0x9a, 0xe9, 0x59, 0x4e, 0x40, 0x14, 0xd6, + 0x24, 0x6e, 0xeb, 0xf7, 0x47, 0xf0, 0xd5, 0x18, 0x33, 0x90, 0x49, 0xc9, + 0x35, 0x66, 0x4f, 0xbc, 0xc7, 0x0d, 0xf7, 0x47, 0x47, 0xc5, 0x69, 0x0d, + 0xd8, 0xa4, 0xac, 0x92, 0x25, 0xdc, 0x70, 0x78, 0x3d, 0x3f, 0xbb, 0x48, + 0x64, 0x3c, 0xfd, 0xee, 0x9f, 0xdd, 0xa8, 0xd8, 0x70, 0xdf, 0x2b, 0x67, + 0x03, 0x8d, 0xf4, 0x76, 0x20, 0xab, 0x01, 0x8f, 0xef, 0xd5, 0x92, 0x7a, + 0x87, 0xc1, 0xb7, 0x2b, 0xe2, 0x69, 0xc9, 0x24, 0xe2, 0x0f, 0x4c, 0x57, + 0xb9, 0xfd, 0xa3, 0xde, 0xbe, 0x7d, 0xf8, 0x4f, 0x72, 0x90, 0x78, 0x86, + 0x6d, 0xec, 0x17, 0x30, 0xe0, 0x65, 0xab, 0xd9, 0x0e, 0xa3, 0x08, 0xeb, + 0x32, 0x7f, 0xdf, 0x42, 0xbc, 0xbc, 0x55, 0x49, 0x46, 0xa5, 0x8f, 0x42, + 0x85, 0x15, 0x28, 0x5c, 0xe6, 0x3e, 0x2e, 0xcb, 0xbf, 0x42, 0xb4, 0xff, + 0x00, 0xae, 0xa7, 0xff, 0x00, 0x41, 0x35, 0xe2, 0x16, 0x20, 0x96, 0x63, + 0x91, 0x83, 0xef, 0x5e, 0xaf, 0xf1, 0x5b, 0x53, 0x88, 0xe8, 0x96, 0xaa, + 0x92, 0x2b, 0xb1, 0x94, 0xf0, 0x0e, 0x7b, 0x1a, 0xf2, 0x3b, 0x12, 0xae, + 0x72, 0x73, 0xd7, 0xb5, 0x6f, 0x86, 0x6e, 0x71, 0xd4, 0xce, 0xbc, 0x7d, + 0x9b, 0x3e, 0x93, 0xf0, 0xae, 0xbb, 0xa7, 0x27, 0x86, 0x34, 0xf8, 0xcd, + 0xf5, 0xba, 0xba, 0x42, 0xaa, 0xca, 0xd2, 0x00, 0x41, 0xae, 0x89, 0x2e, + 0xd2, 0x54, 0x0e, 0x8e, 0x19, 0x4f, 0x42, 0xa7, 0x20, 0xd7, 0xcb, 0x0e, + 0xca, 0xa3, 0x09, 0xbb, 0x3f, 0x5a, 0xf5, 0xff, 0x00, 0x04, 0x78, 0x97, + 0x4e, 0xb6, 0xf0, 0xb5, 0xb4, 0x17, 0x37, 0xd1, 0x24, 0xb1, 0x6e, 0x0c, + 0x1d, 0xf9, 0xeb, 0x9a, 0xcb, 0x11, 0x49, 0xd3, 0x57, 0x4e, 0xe3, 0xa1, + 0x25, 0x37, 0x66, 0xac, 0x7a, 0x3c, 0x93, 0xfe, 0xed, 0xb9, 0xed, 0x5f, + 0x31, 0xcc, 0xdb, 0x7c, 0x4f, 0x3b, 0x13, 0x80, 0x26, 0x7e, 0x7f, 0x13, + 0x5e, 0xeb, 0xff, 0x00, 0x09, 0x3e, 0x97, 0x71, 0x63, 0x24, 0xb0, 0xdf, + 0xc2, 0x46, 0xd3, 0x8c, 0xb8, 0x07, 0xa7, 0xa1, 0xe6, 0xbe, 0x77, 0xb8, + 0x79, 0xa7, 0xbb, 0x9a, 0x45, 0xdc, 0x72, 0xe4, 0x93, 0xf8, 0xd2, 0xc3, + 0x39, 0x39, 0x3b, 0x9a, 0xd6, 0x82, 0x8c, 0x51, 0xea, 0x9e, 0x04, 0xb8, + 0x43, 0xe2, 0x8b, 0x6d, 0xac, 0x09, 0xda, 0xfd, 0x0f, 0xfb, 0x26, 0xbd, + 0x73, 0xce, 0xaf, 0x98, 0xbc, 0x37, 0xa9, 0x4d, 0x63, 0xaf, 0xd9, 0x4b, + 0x14, 0xa5, 0x1b, 0xcd, 0x55, 0x24, 0x7a, 0x13, 0x83, 0xfa, 0x57, 0xbd, + 0x6a, 0x7e, 0x21, 0xb6, 0xd2, 0xec, 0x1a, 0xe2, 0x47, 0x57, 0x61, 0xd2, + 0x30, 0xc3, 0x2c, 0x69, 0x62, 0x24, 0xfd, 0xa2, 0x41, 0x42, 0x9a, 0xe4, + 0x6f, 0xb1, 0xd2, 0x79, 0xd4, 0xa2, 0x6f, 0x7a, 0xf3, 0x75, 0xf8, 0x8e, + 0xa6, 0x6f, 0xf8, 0xf2, 0x3e, 0x5e, 0x3f, 0xbf, 0xce, 0x6b, 0xa8, 0x8f, + 0x5f, 0xb5, 0x1a, 0x54, 0x77, 0xf3, 0xbf, 0x95, 0x13, 0x80, 0x79, 0xe7, + 0x19, 0xac, 0xe4, 0xa7, 0x0f, 0x89, 0x58, 0xd2, 0x11, 0x8c, 0xfe, 0x13, + 0xa1, 0x12, 0xfb, 0xd2, 0xf9, 0xb5, 0xc9, 0x37, 0x8d, 0xb4, 0x55, 0x07, + 0x17, 0x59, 0x3e, 0x9b, 0x0f, 0xf8, 0x55, 0xad, 0x2b, 0xc4, 0xf6, 0x3a, + 0xb2, 0xb7, 0x93, 0x26, 0xd7, 0x51, 0x96, 0x56, 0xe0, 0x8a, 0x39, 0xfb, + 0x8f, 0xd9, 0x5d, 0xd9, 0x19, 0x1e, 0x23, 0xf8, 0x90, 0x34, 0x6d, 0x4e, + 0x4b, 0x08, 0x6c, 0x8c, 0xb2, 0x47, 0x8d, 0xcc, 0xcd, 0x81, 0xd3, 0x3c, + 0x56, 0x75, 0xbf, 0xc5, 0xd5, 0x01, 0x85, 0xce, 0x9a, 0xfb, 0xbf, 0x84, + 0xc6, 0xfc, 0x7e, 0x39, 0xae, 0x23, 0xc6, 0x37, 0x51, 0x4d, 0xe2, 0xcb, + 0xe6, 0x56, 0xc8, 0xdc, 0x06, 0x41, 0xf4, 0x15, 0x91, 0x1c, 0x91, 0x86, + 0x07, 0x69, 0x3f, 0x8d, 0x4a, 0x93, 0xe5, 0x4c, 0x1c, 0x15, 0xec, 0x7a, + 0xa5, 0xb7, 0xc5, 0x29, 0x2e, 0x1b, 0x6f, 0xf6, 0x70, 0x4c, 0xf4, 0x26, + 0x4c, 0xff, 0x00, 0x4a, 0xea, 0x34, 0xcd, 0x7e, 0xee, 0xfc, 0x2b, 0x79, + 0x71, 0x85, 0x3d, 0x81, 0xcd, 0x79, 0x2e, 0x8f, 0x2c, 0x46, 0x51, 0x98, + 0x81, 0xfa, 0x9a, 0xf4, 0xed, 0x0e, 0xe2, 0x18, 0xc2, 0x1d, 0x8b, 0xf8, + 0x57, 0x1c, 0x6b, 0xce, 0x58, 0x85, 0x0b, 0xd9, 0x1d, 0x50, 0xa3, 0x1f, + 0x66, 0xdd, 0xae, 0xce, 0xce, 0x14, 0x77, 0x84, 0x33, 0xae, 0x09, 0xec, + 0x29, 0x19, 0x71, 0x52, 0xa5, 0xe4, 0x46, 0xdc, 0x36, 0x40, 0x15, 0x56, + 0x6b, 0xd8, 0x81, 0xc6, 0xe5, 0xcf, 0xd6, 0xbd, 0xc7, 0xca, 0x96, 0xe7, + 0x97, 0x15, 0x26, 0xf6, 0x14, 0x9c, 0x53, 0x0b, 0xd5, 0x49, 0x75, 0x18, + 0x50, 0x12, 0x58, 0x01, 0xf5, 0xaa, 0x0f, 0xaf, 0xd9, 0x29, 0xc3, 0x4c, + 0x83, 0xea, 0xc2, 0xb9, 0x67, 0x52, 0x09, 0xda, 0xe7, 0x4c, 0x68, 0xcd, + 0xab, 0xd8, 0xd8, 0x32, 0x52, 0x79, 0xbe, 0xf5, 0x8f, 0xfd, 0xb1, 0x03, + 0x8c, 0xc6, 0xc1, 0xc7, 0xb1, 0xaa, 0xb3, 0xeb, 0xd0, 0xdb, 0x8c, 0xcd, + 0x24, 0x71, 0x8f, 0xf6, 0x9b, 0x15, 0x93, 0xab, 0x1d, 0x93, 0x34, 0x58, + 0x79, 0x5a, 0xec, 0xe8, 0x7c, 0xef, 0x7a, 0x4f, 0x3e, 0xb9, 0x7f, 0xf8, + 0x4a, 0x6c, 0x4a, 0x92, 0x2e, 0x22, 0x20, 0x75, 0xc3, 0x83, 0x4d, 0x7f, + 0x15, 0xe9, 0xf1, 0xc6, 0xce, 0xd7, 0x11, 0xe1, 0x7a, 0x90, 0xc2, 0xa1, + 0xd4, 0x0f, 0x60, 0x75, 0x3e, 0x7f, 0xbd, 0x2f, 0xda, 0x3d, 0xeb, 0x89, + 0x87, 0xc7, 0x3a, 0x5c, 0xf9, 0xf2, 0xe6, 0x19, 0xce, 0x39, 0x20, 0x55, + 0xa5, 0xf1, 0x2c, 0x12, 0x02, 0x50, 0x83, 0x8e, 0xbf, 0x30, 0xa1, 0xce, + 0x48, 0x4a, 0x94, 0x5e, 0xc7, 0x59, 0xf6, 0x8f, 0x7a, 0x5f, 0xb4, 0x7b, + 0xd7, 0x17, 0xff, 0x00, 0x09, 0x8d, 0xa3, 0x3c, 0xa8, 0x80, 0xbb, 0xc6, + 0xbb, 0x98, 0x02, 0x3a, 0x55, 0x78, 0xbe, 0x20, 0x69, 0x72, 0x29, 0xde, + 0x64, 0x8c, 0x8e, 0xc4, 0x0a, 0xa8, 0xf3, 0xbd, 0x93, 0x22, 0x50, 0x82, + 0xdd, 0x9a, 0x7f, 0x11, 0x26, 0xdd, 0xe0, 0x5d, 0x4d, 0x73, 0xd5, 0x07, + 0xfe, 0x84, 0x2b, 0xe6, 0xb9, 0x0e, 0xd8, 0x62, 0xfa, 0x7f, 0x5a, 0xf6, + 0xef, 0x18, 0xf8, 0x96, 0xd3, 0x50, 0xf0, 0x6e, 0xa2, 0xb0, 0x31, 0x24, + 0xa0, 0x1c, 0xf1, 0xdc, 0x57, 0x85, 0x4d, 0x20, 0xf2, 0xa1, 0x1e, 0xdf, + 0xd6, 0xba, 0x70, 0xb2, 0x7e, 0xf2, 0x7d, 0x0c, 0x31, 0x10, 0x4a, 0xd6, + 0xea, 0x59, 0x0d, 0x9b, 0xa9, 0x7f, 0x1a, 0x66, 0x3f, 0xd1, 0x48, 0xff, + 0x00, 0x6f, 0xfa, 0x51, 0x33, 0x22, 0xdc, 0x3e, 0xcf, 0xee, 0x9c, 0xe4, + 0xf7, 0xa8, 0x63, 0x97, 0x36, 0xb9, 0xcf, 0xf1, 0xff, 0x00, 0x4a, 0xeb, + 0x4d, 0xda, 0xe7, 0x33, 0x8e, 0xb6, 0x2e, 0x6d, 0xcc, 0xa4, 0xf7, 0x0a, + 0x3f, 0x95, 0x2e, 0xd0, 0x06, 0x30, 0x31, 0x42, 0x37, 0xce, 0x4f, 0xb0, + 0xfe, 0x54, 0xf1, 0xf3, 0x1e, 0x05, 0x34, 0xee, 0x2e, 0x56, 0x37, 0x19, + 0x39, 0xab, 0x56, 0x37, 0xf7, 0x7a, 0x64, 0xc2, 0x6b, 0x2b, 0x89, 0x20, + 0x93, 0x18, 0xdd, 0x1b, 0x60, 0xd4, 0x11, 0xe1, 0xa4, 0x03, 0x03, 0x1d, + 0xf3, 0xc5, 0x4d, 0x76, 0xb1, 0xc5, 0x30, 0x11, 0xf2, 0x08, 0xcd, 0x31, + 0xf2, 0xbb, 0x5c, 0xd3, 0x3e, 0x2c, 0xf1, 0x03, 0x75, 0xd6, 0x2f, 0x3f, + 0xef, 0xf1, 0xad, 0x0d, 0x23, 0xc7, 0x9a, 0xf6, 0x97, 0x2b, 0x4f, 0xf6, + 0xe9, 0x6e, 0x07, 0x74, 0x99, 0x8b, 0x03, 0xf9, 0xd7, 0x2c, 0x39, 0x1d, + 0x29, 0x77, 0x81, 0x03, 0xd2, 0x62, 0xb5, 0xb7, 0x3e, 0x92, 0xf0, 0x86, + 0xbb, 0x26, 0xb7, 0xe1, 0xd8, 0x6f, 0xae, 0x11, 0x52, 0x49, 0x19, 0x81, + 0x55, 0xe9, 0xc1, 0xc5, 0x6d, 0x99, 0x94, 0xf7, 0xaf, 0x11, 0xf0, 0xd7, + 0x8e, 0x0e, 0x8f, 0xa3, 0x45, 0x67, 0xe4, 0x6e, 0x54, 0x62, 0x73, 0x9f, + 0x5a, 0xd2, 0x1f, 0x10, 0xee, 0xae, 0x2e, 0x42, 0x47, 0xb5, 0x03, 0x1c, + 0x0c, 0xaf, 0x4a, 0xe6, 0x71, 0xad, 0x77, 0x6d, 0x8d, 0x52, 0xa7, 0x6d, + 0xf5, 0x3d, 0x61, 0xa5, 0x5f, 0x5a, 0x86, 0x49, 0x57, 0x63, 0x72, 0x3a, + 0x57, 0x93, 0x5f, 0xf8, 0xbf, 0x52, 0x8e, 0x66, 0x41, 0x72, 0x48, 0x1f, + 0xf3, 0xcc, 0x71, 0x59, 0x32, 0xf8, 0xc6, 0xe5, 0xc1, 0xdd, 0x7d, 0x2e, + 0x7d, 0x2b, 0x48, 0xc2, 0xab, 0x57, 0xb9, 0x12, 0xe4, 0x4e, 0xc7, 0x18, + 0xb7, 0xb2, 0xc5, 0xbe, 0x20, 0xa0, 0x07, 0x18, 0x6c, 0x9a, 0x96, 0xd5, + 0x23, 0x2f, 0xfb, 0xe8, 0x90, 0xc6, 0x7a, 0x6d, 0x27, 0x22, 0xaa, 0x34, + 0x0c, 0xac, 0x0c, 0x8d, 0xfa, 0xd5, 0x88, 0xae, 0x40, 0x6d, 0x80, 0x57, + 0x6b, 0x82, 0xb5, 0x8e, 0x78, 0xcf, 0x5b, 0x9a, 0x97, 0x86, 0x1d, 0x4e, + 0x38, 0xe1, 0xb7, 0x99, 0x57, 0x6e, 0x71, 0xbf, 0x8e, 0x00, 0xaa, 0x12, + 0xe8, 0x37, 0xe8, 0x9b, 0xd6, 0x1f, 0x31, 0x0f, 0xf1, 0x21, 0xcd, 0x39, + 0x64, 0x0e, 0x32, 0x06, 0x6a, 0xc4, 0x57, 0xb3, 0x45, 0xb4, 0x45, 0x23, + 0xa0, 0x53, 0x90, 0x3b, 0x57, 0x27, 0xd5, 0xaa, 0x41, 0x5a, 0x9b, 0xfb, + 0xce, 0xaf, 0xac, 0x53, 0x9b, 0xbd, 0x45, 0xf7, 0x18, 0xaf, 0x14, 0x90, + 0xb6, 0x24, 0x46, 0x53, 0xfe, 0xd0, 0xc5, 0x5b, 0xb2, 0xb6, 0x4b, 0xc9, + 0x18, 0x35, 0xc2, 0x43, 0xb5, 0x73, 0x96, 0xef, 0x56, 0xb5, 0x0b, 0xb9, + 0xef, 0x25, 0x8d, 0xa6, 0x01, 0x80, 0xe0, 0x9c, 0x54, 0x71, 0xc1, 0x0f, + 0xde, 0x53, 0xb4, 0xfa, 0x8a, 0xae, 0x59, 0xa5, 0x79, 0x2b, 0x32, 0x2f, + 0x0b, 0xda, 0x3a, 0xa1, 0x8d, 0x6b, 0x14, 0x23, 0x7f, 0xda, 0x46, 0x57, + 0x9c, 0x81, 0xd6, 0x92, 0x16, 0xb7, 0xbc, 0x50, 0xef, 0x3c, 0x99, 0x4e, + 0x9c, 0x63, 0x15, 0xa1, 0x65, 0xa1, 0x43, 0xab, 0x5a, 0xb6, 0x2f, 0x4a, + 0xc8, 0x09, 0x18, 0x6e, 0xf4, 0xc9, 0xfc, 0x19, 0xab, 0x5a, 0xc2, 0x52, + 0x06, 0x8e, 0x58, 0xc9, 0xce, 0x47, 0x06, 0xb0, 0x58, 0xba, 0x6a, 0x4e, + 0x33, 0x95, 0x9f, 0x99, 0xab, 0xc2, 0xd5, 0x71, 0xe6, 0x8c, 0x6e, 0x8a, + 0xf2, 0x25, 0xbc, 0xb0, 0xaf, 0x93, 0x73, 0x33, 0xcd, 0x8c, 0x6c, 0xc0, + 0xe9, 0x55, 0x5a, 0x2b, 0xc0, 0xe3, 0x28, 0xcd, 0xe8, 0x01, 0x14, 0x26, + 0x9d, 0xa9, 0x69, 0x93, 0xf9, 0x8f, 0x6b, 0x26, 0x46, 0x46, 0x40, 0xcd, + 0x67, 0xb4, 0x77, 0xbe, 0x69, 0x63, 0x21, 0x53, 0xef, 0x5d, 0x71, 0xe4, + 0x92, 0xd1, 0xdc, 0xe6, 0x9f, 0x3c, 0x5e, 0xaa, 0xc7, 0x5d, 0x6f, 0xad, + 0xc9, 0x05, 0xaa, 0x25, 0xcd, 0xa9, 0xde, 0x07, 0xb7, 0x35, 0x52, 0xef, + 0xc4, 0xf2, 0x21, 0x2c, 0x90, 0x2a, 0xa0, 0xe3, 0x38, 0xcd, 0x60, 0x1b, + 0x89, 0x23, 0x84, 0x99, 0x64, 0x2e, 0x73, 0xc0, 0xaa, 0xd1, 0x47, 0x2d, + 0xcb, 0x1f, 0x97, 0x19, 0xee, 0x4d, 0x43, 0xc3, 0xd3, 0x6c, 0xb5, 0x8a, + 0xa9, 0x6d, 0x4d, 0xdd, 0x3f, 0x5e, 0x5b, 0x8d, 0x76, 0x29, 0xa5, 0x18, + 0x01, 0x48, 0xc2, 0x8e, 0x3a, 0x56, 0x80, 0xd5, 0xa0, 0x36, 0xeb, 0xc9, + 0x04, 0xbf, 0xa7, 0xb5, 0x73, 0xd6, 0xd6, 0xab, 0x05, 0xc8, 0x76, 0x94, + 0x83, 0x8e, 0x46, 0x38, 0xab, 0x4d, 0x02, 0xa4, 0x5c, 0x67, 0x66, 0x73, + 0x93, 0x53, 0x2c, 0x24, 0x5b, 0xb9, 0xa4, 0x31, 0x72, 0x4a, 0xc6, 0xf7, + 0xf6, 0xac, 0x02, 0x69, 0x08, 0x72, 0x3e, 0x4c, 0x7f, 0xe3, 0xb5, 0x80, + 0xfa, 0x8b, 0x8b, 0xa6, 0x28, 0xed, 0xb4, 0x1d, 0xdd, 0x6a, 0x36, 0x78, + 0xfc, 0xb6, 0x91, 0x37, 0x6e, 0x23, 0x18, 0x22, 0xb3, 0x96, 0x75, 0xf3, + 0x5b, 0x07, 0x39, 0x14, 0x43, 0x0f, 0x1a, 0x61, 0x53, 0x13, 0x29, 0x9d, + 0x5a, 0xea, 0x96, 0xe6, 0xdb, 0x12, 0x6e, 0x6f, 0x51, 0x9e, 0xb5, 0x3e, + 0x91, 0xaf, 0x58, 0xd8, 0x34, 0xf1, 0x85, 0xf2, 0x95, 0xdb, 0x21, 0x41, + 0xae, 0x5d, 0x64, 0x18, 0x6c, 0x77, 0xed, 0x54, 0x66, 0x2b, 0xf6, 0x87, + 0x63, 0x90, 0x7d, 0x45, 0x4b, 0xc3, 0x42, 0x4b, 0x95, 0xf5, 0x1f, 0xd6, + 0xe7, 0x16, 0xa4, 0x8e, 0xa1, 0xf5, 0x5b, 0x3b, 0x8d, 0x5a, 0x60, 0xd1, + 0x09, 0x0b, 0x91, 0xb1, 0x89, 0xe9, 0x55, 0x6f, 0xe1, 0x55, 0x97, 0x01, + 0x90, 0x1e, 0xe6, 0xb9, 0xe8, 0xa5, 0x10, 0xcb, 0xbf, 0x69, 0xdc, 0x3a, + 0x12, 0x6a, 0x78, 0xef, 0x9c, 0xc8, 0x7c, 0xd6, 0x63, 0x93, 0x9c, 0xd3, + 0xf6, 0x56, 0x95, 0xd3, 0xd0, 0xcd, 0xe2, 0x2e, 0xac, 0xd6, 0xa7, 0x61, + 0xe1, 0xa6, 0xb2, 0xb7, 0xd6, 0x2d, 0xe4, 0x69, 0x18, 0x30, 0x60, 0x06, + 0x7a, 0x74, 0xae, 0xdf, 0x5e, 0xb8, 0x8e, 0x45, 0x45, 0x59, 0x32, 0x41, + 0xc9, 0xc1, 0xaf, 0x2e, 0xd3, 0xef, 0x83, 0x5f, 0x42, 0xa6, 0x45, 0x3f, + 0x37, 0x18, 0x15, 0xd6, 0x79, 0xa5, 0x9b, 0x93, 0x9a, 0xce, 0x78, 0x6e, + 0x6a, 0xca, 0xab, 0x7b, 0x1b, 0x53, 0xc5, 0x5a, 0x8b, 0xa4, 0x96, 0xe5, + 0x6b, 0x86, 0x02, 0xec, 0xb6, 0xe2, 0x7e, 0x5e, 0x99, 0xab, 0x16, 0xee, + 0x0d, 0x80, 0x23, 0xa6, 0x6b, 0x36, 0xe2, 0x46, 0xfb, 0x69, 0x18, 0xc0, + 0xc1, 0xab, 0x96, 0xae, 0x46, 0x9e, 0x33, 0x8e, 0xb5, 0xd3, 0x6d, 0x0e, + 0x7b, 0x96, 0x34, 0xa9, 0x01, 0xbb, 0x35, 0xd1, 0x96, 0x27, 0x18, 0x35, + 0xc7, 0xda, 0x6a, 0x16, 0xf6, 0x97, 0x47, 0xcd, 0x20, 0x12, 0x78, 0x00, + 0x57, 0x46, 0xda, 0x85, 0xbe, 0x17, 0x12, 0xaf, 0x3e, 0xf5, 0xe3, 0xe3, + 0xa1, 0x29, 0x54, 0xd1, 0x1e, 0xbe, 0x0a, 0x69, 0x53, 0xd5, 0x96, 0x97, + 0x8d, 0x4a, 0xd3, 0x9f, 0xe2, 0x35, 0xa3, 0x7e, 0xe7, 0xed, 0x3d, 0x38, + 0xc5, 0x61, 0x47, 0x7d, 0x0b, 0x6a, 0x16, 0xa4, 0x48, 0x08, 0x04, 0xe6, + 0xb4, 0x75, 0x3b, 0xd8, 0x12, 0x50, 0xcc, 0xe3, 0x18, 0xf5, 0xae, 0x1a, + 0x94, 0xe5, 0x78, 0xab, 0x74, 0xfd, 0x4e, 0xd8, 0x4e, 0x36, 0x93, 0xbf, + 0x52, 0x47, 0xb8, 0x54, 0x93, 0xe6, 0x60, 0xbc, 0x77, 0xae, 0x47, 0xc5, + 0x97, 0x37, 0x17, 0x08, 0x96, 0xd6, 0xc2, 0x37, 0x56, 0xf9, 0x98, 0x93, + 0xc8, 0x22, 0xa6, 0xd6, 0x35, 0x08, 0x6e, 0x5d, 0x7c, 0xa6, 0x3c, 0x75, + 0xae, 0x43, 0x53, 0xbf, 0x7b, 0x6b, 0x88, 0xca, 0x72, 0x0a, 0xf4, 0x35, + 0xe9, 0xe0, 0x70, 0x7c, 0xb6, 0xab, 0x27, 0xaf, 0x63, 0xcc, 0xc6, 0xe2, + 0xee, 0x9d, 0x35, 0xb7, 0x73, 0x6f, 0x4e, 0x91, 0xe3, 0x8c, 0xbd, 0xd4, + 0x31, 0x79, 0x8b, 0xc6, 0x36, 0xf0, 0x45, 0x51, 0x91, 0x61, 0x7b, 0x8f, + 0x34, 0xb3, 0x28, 0x2e, 0x5f, 0x00, 0x60, 0x56, 0x0c, 0xfa, 0xbd, 0xe3, + 0xab, 0x2f, 0x9b, 0xf2, 0x1e, 0x40, 0x1d, 0xa9, 0x96, 0xf7, 0xf3, 0x9d, + 0xc1, 0xdc, 0xb2, 0x60, 0xd7, 0xa9, 0x7e, 0x87, 0x97, 0xcc, 0x76, 0xa3, + 0x50, 0x54, 0x83, 0x7e, 0xe3, 0x83, 0xce, 0x37, 0x56, 0x35, 0xd6, 0xa2, + 0x93, 0x4d, 0xba, 0x22, 0xd2, 0x13, 0xdb, 0xd3, 0xda, 0xb3, 0x86, 0x1e, + 0xd7, 0x7e, 0x58, 0xe0, 0x64, 0x02, 0x6b, 0x25, 0x67, 0x31, 0x82, 0x07, + 0x5c, 0xe7, 0x34, 0xb9, 0x63, 0x17, 0xa2, 0x2b, 0xda, 0x4a, 0x5b, 0xb3, + 0xb7, 0xb3, 0xd5, 0x64, 0x79, 0x92, 0x37, 0xdd, 0x1a, 0x80, 0x33, 0xb9, + 0xb1, 0x8a, 0xd5, 0x93, 0x55, 0xb5, 0xb7, 0x89, 0x89, 0xb8, 0x12, 0xe4, + 0x63, 0x01, 0xb9, 0xaf, 0x35, 0x37, 0xaf, 0xe6, 0x97, 0xde, 0x49, 0x23, + 0x9a, 0xb3, 0x0d, 0xc9, 0x93, 0x8f, 0x38, 0x03, 0xee, 0x3b, 0x56, 0x52, + 0x83, 0xe6, 0xbc, 0x74, 0x35, 0x55, 0x97, 0x2f, 0x2c, 0x95, 0xcf, 0x41, + 0xfe, 0xdf, 0xb5, 0x82, 0xcf, 0x6a, 0xba, 0x8f, 0x62, 0x79, 0xa7, 0x45, + 0xe2, 0x2b, 0x2b, 0xa4, 0x8f, 0x2f, 0xb0, 0xa9, 0xc1, 0x0d, 0x5c, 0x14, + 0xb2, 0x15, 0x03, 0x33, 0x29, 0xcf, 0x23, 0x8e, 0xb5, 0x0f, 0x9e, 0x54, + 0xe4, 0xb7, 0xe5, 0x5c, 0x35, 0x32, 0xea, 0x72, 0x6d, 0xeb, 0x76, 0x77, + 0x43, 0x35, 0xab, 0x15, 0x6e, 0x87, 0x6f, 0xac, 0x6a, 0x36, 0xb3, 0x36, + 0xd8, 0xa7, 0x56, 0x6d, 0xb8, 0xc0, 0x3e, 0xf5, 0x82, 0x5a, 0xb1, 0x96, + 0xea, 0x35, 0x75, 0x70, 0x0e, 0x47, 0x5e, 0x6a, 0x71, 0xa8, 0x65, 0x80, + 0x2b, 0xc1, 0xae, 0x9c, 0x35, 0x08, 0xd1, 0x8f, 0x2a, 0x39, 0x71, 0x18, + 0x97, 0x5a, 0x5c, 0xcc, 0xd0, 0xba, 0x7c, 0x69, 0x0e, 0x47, 0xf7, 0xab, + 0x35, 0xe4, 0xf9, 0xdf, 0xfe, 0xba, 0x25, 0x5a, 0xba, 0x93, 0x76, 0x8e, + 0xf8, 0xfe, 0xf0, 0xac, 0xf9, 0x32, 0x37, 0x31, 0x3f, 0x79, 0xd2, 0xba, + 0xac, 0x61, 0x72, 0x5f, 0x33, 0xf7, 0x8b, 0xff, 0x00, 0x5d, 0x9b, 0xf9, + 0x53, 0xf4, 0xbd, 0x46, 0x7b, 0x69, 0xa4, 0x78, 0x80, 0xca, 0x5b, 0xb1, + 0x53, 0x8f, 0x7a, 0xa9, 0xb8, 0x99, 0x14, 0x7f, 0xd3, 0x76, 0xfe, 0x55, + 0x77, 0x47, 0x01, 0xe5, 0x91, 0x4f, 0x6b, 0x57, 0x3f, 0x8e, 0x69, 0xda, + 0xc4, 0xdc, 0x78, 0xf1, 0xae, 0xb0, 0x06, 0x3e, 0x4f, 0xfb, 0xe2, 0x9d, + 0xff, 0x00, 0x09, 0xb6, 0xb1, 0xe9, 0x1f, 0xfd, 0xf1, 0x5c, 0xe9, 0x9a, + 0x6c, 0x9f, 0xde, 0x37, 0xe7, 0x49, 0xe7, 0x4d, 0xfd, 0xf6, 0xfc, 0xe8, + 0xb2, 0x0b, 0x9d, 0x11, 0xf1, 0xb6, 0xb2, 0x7b, 0xa7, 0xfd, 0xf1, 0x49, + 0xff, 0x00, 0x09, 0xae, 0xb3, 0xd3, 0x29, 0xff, 0x00, 0x7c, 0x57, 0x3d, + 0xe7, 0x4d, 0xfd, 0xf6, 0xfc, 0xe8, 0xf3, 0xa6, 0xfe, 0xfb, 0x7e, 0x74, + 0x59, 0x05, 0xce, 0x83, 0xfe, 0x13, 0x3d, 0x67, 0xb3, 0x28, 0xff, 0x00, + 0x80, 0x51, 0xff, 0x00, 0x09, 0x96, 0xb5, 0x8f, 0xbc, 0xbf, 0xf7, 0xc5, + 0x60, 0x79, 0xf3, 0xff, 0x00, 0x7d, 0xbf, 0x3a, 0x5f, 0x3a, 0x7f, 0xef, + 0xb7, 0xe7, 0x45, 0x87, 0x73, 0x79, 0x7c, 0x61, 0xad, 0x16, 0x03, 0xcc, + 0x03, 0x27, 0xfb, 0x95, 0x22, 0xf8, 0xaf, 0x58, 0x32, 0xed, 0x33, 0x71, + 0xeb, 0xb6, 0xb9, 0xf4, 0x96, 0x62, 0xdc, 0xb9, 0xfc, 0xe9, 0x0c, 0xb3, + 0xee, 0x3f, 0xbc, 0x3f, 0x9d, 0x4b, 0x45, 0x74, 0x37, 0x5f, 0xc5, 0x7a, + 0xd0, 0x24, 0x09, 0x4f, 0x5f, 0xee, 0xd3, 0x7f, 0xe1, 0x2a, 0xd6, 0xcf, + 0xfc, 0xb5, 0x3f, 0xf7, 0xcd, 0x61, 0xf9, 0x93, 0x1f, 0xe3, 0x3f, 0x9d, + 0x05, 0xa5, 0xfe, 0xff, 0x00, 0xeb, 0x4e, 0xc2, 0x36, 0xbf, 0xe1, 0x26, + 0xd7, 0x0f, 0xfc, 0xb6, 0x61, 0xf8, 0x56, 0xc7, 0x87, 0xb5, 0xfd, 0x6e, + 0xe7, 0x51, 0x48, 0x64, 0x99, 0xda, 0x23, 0x9d, 0xc3, 0x1c, 0x62, 0xb8, + 0xe0, 0xb3, 0x37, 0xf1, 0x13, 0x5d, 0x9f, 0x81, 0x48, 0x8a, 0xfa, 0x5f, + 0x35, 0x82, 0xfe, 0xe9, 0xb9, 0x6e, 0x3b, 0x57, 0x36, 0x31, 0xda, 0x8c, + 0xb4, 0xb9, 0xd1, 0x85, 0x57, 0xaa, 0xb5, 0xb1, 0x83, 0xae, 0xff, 0x00, + 0xc8, 0x42, 0x46, 0x20, 0x0f, 0x50, 0x3a, 0x56, 0x70, 0x39, 0x4e, 0x95, + 0x62, 0xf2, 0x0b, 0x89, 0x2e, 0x25, 0xda, 0x8c, 0xc0, 0xb9, 0xe8, 0x0f, + 0xad, 0x39, 0x2c, 0xee, 0x3c, 0xb5, 0x1e, 0x43, 0x7e, 0x55, 0xb5, 0x14, + 0xa3, 0x04, 0x9b, 0x30, 0xaf, 0x26, 0xe5, 0x78, 0xa1, 0x90, 0xe3, 0x8c, + 0xd3, 0x9b, 0x18, 0xeb, 0xda, 0xa4, 0x1a, 0x7d, 0xdb, 0x1e, 0x20, 0x6f, + 0xc6, 0x9e, 0x34, 0x9b, 0xd2, 0x7f, 0xd5, 0x0f, 0xc5, 0xab, 0x67, 0x38, + 0xf7, 0x39, 0x92, 0x9f, 0x61, 0x6c, 0x2e, 0x0d, 0xba, 0xb9, 0x0c, 0x71, + 0x9f, 0x5a, 0xa9, 0x7b, 0x76, 0x66, 0xba, 0xde, 0x0f, 0xeb, 0x57, 0x1b, + 0x41, 0xbc, 0x63, 0xf3, 0x6d, 0x4f, 0xc6, 0x85, 0xf0, 0xec, 0xe7, 0xe6, + 0x32, 0xad, 0x60, 0xa1, 0x0e, 0x67, 0x23, 0xaf, 0xda, 0x49, 0xc1, 0x45, + 0x94, 0x3e, 0xd0, 0x54, 0x92, 0x49, 0x27, 0x1d, 0xce, 0x6a, 0x9b, 0xb6, + 0x5c, 0x9c, 0xd7, 0x41, 0xff, 0x00, 0x08, 0xf3, 0x9f, 0xbd, 0x30, 0x18, + 0xa3, 0xfe, 0x11, 0xb8, 0xff, 0x00, 0x8a, 0x66, 0xfc, 0xa9, 0xa9, 0x45, + 0x12, 0xd3, 0x66, 0x22, 0x63, 0xca, 0x6f, 0xa0, 0xa8, 0xe3, 0x20, 0x4b, + 0xc9, 0xe3, 0x35, 0xd3, 0x27, 0x87, 0xad, 0xd7, 0x83, 0x2b, 0x9c, 0xf6, + 0xa7, 0x8d, 0x0e, 0xc9, 0x1b, 0x95, 0x73, 0xf8, 0xd5, 0xba, 0x89, 0xab, + 0x22, 0x14, 0x1a, 0x77, 0x33, 0x74, 0xe9, 0x42, 0xdc, 0x38, 0x0d, 0xf2, + 0x6d, 0x27, 0xad, 0x4a, 0x2e, 0x63, 0xfb, 0x5e, 0xec, 0xe4, 0x0e, 0x38, + 0xab, 0x51, 0x41, 0x6b, 0x1d, 0xd3, 0x22, 0x41, 0xc0, 0x1d, 0x73, 0x4f, + 0x61, 0x02, 0x03, 0xb2, 0xdd, 0x73, 0xee, 0x2b, 0x1f, 0x62, 0xe4, 0xef, + 0x63, 0x5f, 0x6a, 0x92, 0xb5, 0xc4, 0xb5, 0xbc, 0x78, 0xa5, 0xdc, 0x9c, + 0x7c, 0xa4, 0x74, 0xae, 0x7e, 0xe6, 0x66, 0x69, 0x4e, 0x4d, 0x69, 0x4e, + 0xd7, 0x45, 0xf7, 0xa0, 0xd8, 0x17, 0xa0, 0x5a, 0x85, 0xe3, 0x8e, 0x45, + 0x25, 0xe3, 0xf9, 0xaa, 0xa1, 0x87, 0x70, 0x77, 0xb0, 0xa5, 0x5d, 0x49, + 0x58, 0xa2, 0x2e, 0x19, 0x51, 0x93, 0x3c, 0x50, 0x1c, 0xba, 0x9c, 0xf6, + 0x15, 0x60, 0x58, 0xc7, 0x20, 0xca, 0x92, 0xb9, 0xa4, 0x3a, 0x74, 0xaa, + 0x0e, 0xc2, 0x0f, 0x15, 0xa5, 0x92, 0x23, 0x9a, 0xe5, 0x2c, 0xae, 0x31, + 0xfd, 0x2a, 0x50, 0xe0, 0x5a, 0x80, 0x7b, 0x1f, 0xce, 0x91, 0xad, 0x65, + 0x4e, 0xb1, 0x9a, 0x8d, 0x83, 0x05, 0xda, 0x54, 0x8f, 0xc2, 0x9b, 0x57, + 0x1a, 0x95, 0x86, 0x0e, 0xb9, 0xa1, 0x89, 0x26, 0x8e, 0x3b, 0x52, 0xe0, + 0x9e, 0x00, 0xcd, 0x51, 0x17, 0x1e, 0x3f, 0xd6, 0x2d, 0x6c, 0x24, 0x8c, + 0x24, 0x84, 0x8c, 0xf0, 0xc2, 0xb1, 0x87, 0x0e, 0xb5, 0x79, 0xa7, 0xc2, + 0x6d, 0x5e, 0x4f, 0xb5, 0x5d, 0xaf, 0x16, 0x88, 0x4e, 0xd2, 0x4c, 0x6d, + 0xdd, 0xcb, 0x8b, 0xa9, 0x76, 0x9c, 0x1d, 0xe7, 0x9a, 0xa6, 0x58, 0xb1, + 0x24, 0x9e, 0x4d, 0x3a, 0x4e, 0x41, 0x2c, 0x7e, 0x6c, 0xf3, 0x50, 0xf3, + 0x59, 0xa8, 0xd9, 0x17, 0x27, 0x76, 0x5d, 0xb4, 0x94, 0x2b, 0x05, 0x39, + 0xe4, 0xf1, 0x5a, 0x12, 0x6d, 0xde, 0xd9, 0x31, 0x7d, 0xd1, 0xd7, 0xad, + 0x64, 0xdb, 0xff, 0x00, 0xae, 0x4c, 0xfa, 0xd6, 0xb4, 0x8d, 0xfb, 0xc6, + 0xf9, 0xbf, 0x84, 0x7f, 0x06, 0x68, 0xb5, 0x85, 0x7b, 0xe8, 0x2b, 0x0c, + 0x92, 0x4f, 0x95, 0x8c, 0x0e, 0xb9, 0xa4, 0x24, 0x7c, 0xc3, 0x74, 0x3d, + 0x3d, 0xe9, 0x0b, 0x1e, 0x4e, 0xe3, 0x8c, 0x7f, 0x72, 0x97, 0x92, 0x4e, + 0x18, 0xfd, 0xdf, 0xee, 0x50, 0x17, 0x34, 0xb4, 0x9b, 0xa3, 0x6b, 0x70, + 0x5e, 0x12, 0x03, 0x95, 0xc0, 0xd9, 0xd6, 0xb7, 0xa4, 0xd5, 0x6f, 0xe2, + 0xb7, 0x12, 0x99, 0x4f, 0xb8, 0xcd, 0x72, 0x5e, 0x63, 0x45, 0x11, 0x70, + 0x5b, 0x20, 0x0f, 0xe1, 0xc5, 0x28, 0xbd, 0x3e, 0x50, 0xdf, 0x24, 0x99, + 0x27, 0x38, 0xcf, 0x15, 0x0e, 0x29, 0xbd, 0x4d, 0x23, 0x36, 0x95, 0x8b, + 0x3a, 0xc6, 0xb8, 0xfa, 0x82, 0x2c, 0x72, 0x3b, 0x31, 0x4e, 0xc6, 0xa8, + 0xda, 0xcf, 0xb1, 0x49, 0x3d, 0x05, 0x56, 0x95, 0x4c, 0xb3, 0xe6, 0x30, + 0x4e, 0x79, 0xe9, 0x9a, 0xb0, 0xf0, 0x6f, 0x65, 0x12, 0x61, 0x38, 0xcd, + 0x54, 0x63, 0x6d, 0x82, 0x52, 0xba, 0xd4, 0xb2, 0x97, 0x78, 0x53, 0x90, + 0x4a, 0x94, 0xe0, 0xfb, 0xd4, 0x28, 0xcd, 0x23, 0xf1, 0x26, 0xda, 0x46, + 0xb9, 0x48, 0x9d, 0x50, 0x49, 0xb9, 0x55, 0x70, 0x00, 0xaa, 0xe5, 0xd1, + 0x72, 0x55, 0x4f, 0x35, 0x9c, 0xa1, 0xd8, 0x71, 0x9f, 0x73, 0x61, 0x25, + 0x94, 0xa0, 0x4f, 0x30, 0x05, 0x1d, 0xfd, 0x6a, 0x38, 0xee, 0x0a, 0xca, + 0x51, 0xa4, 0x01, 0x73, 0x59, 0xad, 0x70, 0x76, 0xae, 0x09, 0xce, 0x39, + 0xa6, 0x19, 0x4b, 0x9e, 0x17, 0x9a, 0xc6, 0x30, 0x7b, 0xb6, 0x5b, 0xa8, + 0x8d, 0x49, 0x24, 0xdb, 0x74, 0xad, 0x1b, 0x82, 0x49, 0xc8, 0xdb, 0xda, + 0xae, 0xb5, 0xe5, 0xcc, 0xaf, 0xf3, 0xce, 0xc7, 0x9e, 0xec, 0x6b, 0x0d, + 0x25, 0x20, 0x8e, 0x6a, 0xca, 0xdc, 0x13, 0x8d, 0xc7, 0xa7, 0xa5, 0x13, + 0xbc, 0x9e, 0x9a, 0x0a, 0x32, 0xb2, 0xd4, 0xd2, 0x96, 0xfa, 0x74, 0x71, + 0x89, 0x3e, 0xef, 0x4a, 0xb7, 0x36, 0xad, 0xa8, 0x4d, 0x67, 0x15, 0xbb, + 0xde, 0x39, 0x88, 0x1f, 0x95, 0x49, 0xf9, 0x45, 0x73, 0xc6, 0x5c, 0xc9, + 0x9c, 0xf0, 0x2a, 0x56, 0xbb, 0x2e, 0xa1, 0x07, 0xe7, 0x51, 0x38, 0xcb, + 0x45, 0x2d, 0x4b, 0x53, 0x4a, 0xf6, 0x34, 0xe2, 0xba, 0x91, 0x65, 0xdf, + 0x2c, 0xc1, 0x80, 0xf4, 0x3d, 0x6a, 0x54, 0xd4, 0xe5, 0x8d, 0x9d, 0xa3, + 0x76, 0x42, 0x4f, 0x50, 0x7b, 0x56, 0x10, 0x9c, 0xe7, 0x93, 0x53, 0xc5, + 0x22, 0x97, 0x1b, 0xcf, 0xcb, 0x54, 0xf5, 0xd2, 0xda, 0x02, 0x93, 0x5a, + 0xdc, 0xbd, 0xe7, 0x34, 0x92, 0xb3, 0x96, 0x24, 0x93, 0xc9, 0x35, 0x66, + 0x39, 0x48, 0xc7, 0xa5, 0x50, 0x69, 0x23, 0x56, 0x1b, 0x7a, 0x54, 0x89, + 0x2e, 0x7d, 0xeb, 0x0a, 0x8b, 0x5b, 0x1a, 0xc6, 0x6c, 0xe8, 0xac, 0x2e, + 0xca, 0x38, 0x0b, 0xd6, 0xbb, 0xad, 0x23, 0x54, 0x16, 0xf0, 0xaf, 0x98, + 0xf9, 0x73, 0xd2, 0xbc, 0xda, 0xd1, 0xfc, 0xaf, 0x98, 0xfe, 0x35, 0xa5, + 0x16, 0xa2, 0x4b, 0x83, 0x9c, 0x62, 0xbc, 0x8c, 0x45, 0x29, 0x4a, 0x5c, + 0xd0, 0xe8, 0x77, 0x51, 0xaa, 0xe1, 0xab, 0x3d, 0x61, 0x75, 0xbc, 0xae, + 0xc1, 0x27, 0x6f, 0x5a, 0xc6, 0xbe, 0xd7, 0x09, 0x47, 0x08, 0xc4, 0x38, + 0xe3, 0x39, 0xae, 0x39, 0x35, 0x57, 0x12, 0x67, 0x77, 0x6c, 0x75, 0xaa, + 0xb7, 0x9a, 0x81, 0xdc, 0x48, 0x6e, 0xb5, 0x8d, 0xab, 0xd4, 0x6a, 0x33, + 0x66, 0xf2, 0xaf, 0x15, 0x1b, 0xc5, 0x1a, 0x17, 0x7a, 0xc5, 0xd4, 0xce, + 0x50, 0xca, 0xfc, 0xf6, 0xdd, 0xc5, 0x56, 0x8a, 0x49, 0xcc, 0x73, 0x3b, + 0x2b, 0x11, 0x18, 0xc9, 0x39, 0xe0, 0x0a, 0xc3, 0x9a, 0x76, 0x63, 0xb8, + 0x37, 0xcd, 0x55, 0x65, 0xbb, 0x90, 0xb9, 0x66, 0x61, 0xee, 0x2b, 0xd7, + 0xa1, 0x45, 0x53, 0x57, 0x47, 0x05, 0x4a, 0xce, 0x5a, 0x33, 0x5e, 0xe7, + 0x53, 0xb8, 0x5c, 0x08, 0xe5, 0x75, 0x03, 0x9f, 0x94, 0xf5, 0xaa, 0x37, + 0x5a, 0x95, 0xdc, 0xc0, 0x29, 0x9a, 0x42, 0xde, 0xfd, 0xeb, 0x3f, 0xcf, + 0xdc, 0x7e, 0x53, 0x83, 0x4d, 0x7b, 0x97, 0x62, 0x0b, 0x92, 0x48, 0x18, + 0x07, 0x3d, 0xab, 0x55, 0x2f, 0x7b, 0x98, 0xc9, 0xb7, 0x6b, 0x12, 0x7d, + 0xae, 0xf5, 0x64, 0xd9, 0xe6, 0x36, 0x7d, 0x09, 0xab, 0x17, 0xbf, 0x69, + 0x6d, 0x35, 0x67, 0xce, 0xd0, 0x5f, 0x6b, 0x73, 0xd4, 0xe3, 0x3d, 0x2b, + 0x31, 0x8e, 0xf6, 0xdd, 0xe6, 0x10, 0x6a, 0x39, 0x1c, 0x33, 0xa0, 0x77, + 0x6c, 0x67, 0x93, 0x5d, 0x91, 0xe5, 0x9e, 0xe7, 0x3c, 0x9c, 0x90, 0xe1, + 0xa8, 0x4f, 0x12, 0x6c, 0x56, 0x20, 0xe6, 0x9c, 0xba, 0xbd, 0xf0, 0xe0, + 0x4c, 0xff, 0x00, 0x9d, 0x40, 0xeb, 0x6e, 0x5f, 0xfd, 0x6f, 0x1d, 0xc9, + 0xaa, 0xc6, 0x65, 0x47, 0x21, 0x0e, 0x40, 0xe8, 0x71, 0x54, 0xe9, 0x5b, + 0xa9, 0x0a, 0x77, 0x37, 0xac, 0xb5, 0x2b, 0xd5, 0x9f, 0x07, 0x2f, 0x91, + 0x96, 0x1d, 0x38, 0xa9, 0xa6, 0xb8, 0x55, 0x3c, 0x72, 0xc7, 0x90, 0xb9, + 0xac, 0x24, 0xbe, 0x95, 0x3e, 0x65, 0x6e, 0x71, 0x8a, 0xad, 0x24, 0xef, + 0x21, 0x2d, 0x9c, 0x7d, 0x38, 0xa6, 0xa7, 0xa5, 0x90, 0x9a, 0xd7, 0x53, + 0x62, 0xeb, 0x51, 0x9c, 0xdb, 0x5d, 0xac, 0x9f, 0x76, 0x55, 0x0a, 0x00, + 0x3d, 0x31, 0x58, 0x92, 0x8f, 0x96, 0x0e, 0x7f, 0x87, 0xfa, 0xd3, 0xff, + 0x00, 0x79, 0x2f, 0xca, 0x4a, 0xf4, 0xea, 0xc7, 0x14, 0x4b, 0x6e, 0xc4, + 0x45, 0xfb, 0xc8, 0xfe, 0x51, 0xcf, 0xce, 0x3d, 0x69, 0xc2, 0x16, 0xbb, + 0xee, 0x12, 0x9b, 0xd1, 0x76, 0x11, 0x89, 0xfb, 0x54, 0xfc, 0xf6, 0x35, + 0x08, 0xca, 0x5a, 0x1e, 0x79, 0xdf, 0xfd, 0x2a, 0x49, 0x62, 0x71, 0x2c, + 0x92, 0x2b, 0xa1, 0x07, 0xd1, 0xbb, 0x54, 0x1e, 0x4b, 0x11, 0x8d, 0xc9, + 0xcf, 0xbd, 0x5d, 0x89, 0xe6, 0x66, 0x94, 0x2e, 0x4c, 0x8c, 0x09, 0xe8, + 0x07, 0xf2, 0xa9, 0x9b, 0x00, 0xa9, 0x0d, 0x82, 0x6a, 0xbc, 0x28, 0xc9, + 0x23, 0x12, 0xca, 0x72, 0x00, 0xe3, 0xe9, 0x53, 0x05, 0x2c, 0x71, 0x8a, + 0x99, 0x47, 0xa1, 0xad, 0x3a, 0xae, 0x0e, 0xe8, 0x7b, 0x3e, 0x7b, 0xaf, + 0xbe, 0x29, 0xa1, 0xce, 0x79, 0x6e, 0x29, 0xfe, 0x49, 0xf5, 0xc5, 0x44, + 0xf8, 0x8d, 0x80, 0x3c, 0xe4, 0xd4, 0xf2, 0x5c, 0xd3, 0xeb, 0x32, 0x5d, + 0x09, 0x7c, 0xcc, 0x02, 0x43, 0x72, 0x45, 0x36, 0x46, 0x02, 0xd5, 0x98, + 0x9e, 0x94, 0xc9, 0x0e, 0x0e, 0xd4, 0x4c, 0x9a, 0x8d, 0x6d, 0xa6, 0x68, + 0x4a, 0x33, 0xf5, 0x39, 0xc5, 0x69, 0x1a, 0x6c, 0xc2, 0xa5, 0x6e, 0x67, + 0x76, 0x6f, 0xdb, 0xde, 0x69, 0xf0, 0x69, 0x90, 0xff, 0x00, 0xa4, 0x48, + 0xd7, 0x04, 0x9d, 0xd1, 0xaf, 0x6a, 0x81, 0xf5, 0x62, 0x7f, 0xd5, 0x47, + 0x26, 0x07, 0xf1, 0x33, 0x56, 0x4c, 0x16, 0x4f, 0x1b, 0x33, 0x01, 0x92, + 0x6a, 0xe0, 0x12, 0x01, 0xf3, 0x01, 0x5a, 0xc6, 0x0d, 0x2b, 0x36, 0x63, + 0x29, 0xa6, 0xee, 0x91, 0x7f, 0xfb, 0x4c, 0x35, 0xb7, 0xdf, 0xfd, 0xef, + 0x7e, 0x6a, 0xba, 0xea, 0x93, 0x36, 0x53, 0xcb, 0x8c, 0xe4, 0x63, 0x91, + 0x55, 0x59, 0xd4, 0xf0, 0x7f, 0x4a, 0x58, 0x50, 0x12, 0x4c, 0x67, 0xe6, + 0x15, 0x5c, 0xa4, 0xf3, 0x16, 0x25, 0x5f, 0xdd, 0x9f, 0xa7, 0xa5, 0x66, + 0x95, 0x75, 0xc9, 0x01, 0x89, 0x35, 0xad, 0xb8, 0x9f, 0xe1, 0xa6, 0x9c, + 0x00, 0x49, 0x50, 0x6a, 0x89, 0x29, 0x5a, 0xbb, 0x46, 0x08, 0x3b, 0xb3, + 0x57, 0xd0, 0xf9, 0x88, 0x0b, 0x1c, 0x1a, 0xa5, 0x15, 0xc9, 0x69, 0x24, + 0xdd, 0x18, 0x50, 0xa7, 0x1c, 0x54, 0xfe, 0x63, 0x00, 0x1b, 0x8d, 0xa6, + 0x92, 0x91, 0x4e, 0x24, 0xdb, 0x70, 0x7e, 0xfd, 0x38, 0x84, 0xfc, 0x7d, + 0xaa, 0xaa, 0x4a, 0xd2, 0xdc, 0x3c, 0x6a, 0xea, 0xb8, 0xe8, 0x08, 0xce, + 0x6a, 0x41, 0x2f, 0xcb, 0x86, 0x2b, 0xb8, 0x77, 0x14, 0x5c, 0x2d, 0x62, + 0x58, 0x03, 0x5b, 0x13, 0xe5, 0x72, 0x3a, 0xf5, 0xa9, 0x0e, 0xb1, 0xa8, + 0x47, 0x71, 0xfb, 0xb9, 0x25, 0x55, 0xdb, 0x8e, 0x4e, 0x45, 0x56, 0xde, + 0x4f, 0x20, 0xd3, 0xd6, 0x55, 0xe8, 0xdf, 0xad, 0x63, 0x3a, 0x30, 0x9f, + 0xc4, 0x8d, 0x61, 0x5a, 0x70, 0xf8, 0x59, 0xd0, 0x1f, 0x11, 0x4f, 0x1d, + 0x9b, 0x34, 0xa1, 0x64, 0x00, 0x75, 0xe3, 0x22, 0xa6, 0xb3, 0xd4, 0x34, + 0xbd, 0x49, 0x18, 0x5d, 0x40, 0x99, 0xec, 0x76, 0xd7, 0x36, 0x70, 0xc8, + 0xc8, 0x0f, 0x0d, 0xd4, 0x53, 0xad, 0xd9, 0xad, 0x41, 0x0a, 0x01, 0x07, + 0xd6, 0xb8, 0xaa, 0x65, 0xb4, 0x9e, 0xb1, 0xd3, 0xd0, 0xec, 0xa7, 0x8f, + 0xa8, 0xb4, 0x96, 0xbe, 0xa7, 0x49, 0x37, 0x85, 0xf4, 0x4b, 0xe3, 0x98, + 0xdb, 0x69, 0x3f, 0xdd, 0x6a, 0x85, 0xfc, 0x0c, 0xeb, 0x10, 0x16, 0xd7, + 0x2b, 0x81, 0xd0, 0x32, 0xd6, 0x5c, 0x7a, 0x84, 0x5d, 0xcb, 0x21, 0xff, + 0x00, 0x64, 0xd6, 0x9d, 0xb6, 0xa7, 0x7b, 0x1a, 0x06, 0x8a, 0x52, 0xeb, + 0x5c, 0xd2, 0xc3, 0x62, 0xa9, 0x6b, 0x4e, 0xa7, 0xde, 0x6e, 0xb1, 0x18, + 0x6a, 0x9f, 0xc4, 0xa7, 0xf7, 0x19, 0xf7, 0x1e, 0x15, 0xd5, 0xa1, 0xcf, + 0xee, 0x92, 0x41, 0xdb, 0x6d, 0x67, 0x4f, 0xa7, 0xea, 0x10, 0x2e, 0x24, + 0x81, 0xc0, 0xff, 0x00, 0x70, 0xd7, 0x61, 0x17, 0x89, 0x2e, 0x14, 0x81, + 0x22, 0x2b, 0x9e, 0xe0, 0x1e, 0x6a, 0xc2, 0x78, 0x92, 0x33, 0xc4, 0xf6, + 0xf8, 0xe7, 0xae, 0x29, 0x2c, 0x56, 0x3a, 0x1f, 0x14, 0x13, 0x1b, 0xc3, + 0x60, 0xe7, 0xf0, 0xc9, 0xa3, 0xcd, 0x6e, 0x9e, 0x54, 0xb7, 0x75, 0x0a, + 0xd9, 0xc6, 0x38, 0x42, 0x2b, 0x2e, 0xce, 0x17, 0x9a, 0x7d, 0xa1, 0x0f, + 0x03, 0x71, 0xcf, 0x15, 0xec, 0xc9, 0x75, 0xa4, 0xdf, 0x82, 0x1d, 0x23, + 0xcf, 0xa3, 0x00, 0x2b, 0x9b, 0xf1, 0x2c, 0x5a, 0x65, 0xb1, 0x09, 0x6f, + 0xe5, 0xa3, 0x30, 0x3b, 0xf6, 0xfa, 0x53, 0x8e, 0x65, 0x29, 0xcb, 0x92, + 0x50, 0x69, 0x93, 0x3c, 0xb6, 0x2a, 0x3c, 0xf1, 0x9d, 0xd1, 0xc8, 0x42, + 0xb0, 0x6e, 0x28, 0xc5, 0x77, 0xe7, 0x18, 0x22, 0x9d, 0x71, 0x63, 0x1c, + 0x91, 0xee, 0x5c, 0x6e, 0x1c, 0xf4, 0xeb, 0x5b, 0x96, 0x7a, 0x0e, 0x9f, + 0x7f, 0xaa, 0x4b, 0x1c, 0x77, 0x00, 0x46, 0xaa, 0x0a, 0xb6, 0x7b, 0xd6, + 0xa3, 0xf8, 0x26, 0x60, 0x85, 0x61, 0xb9, 0x0c, 0x3d, 0xeb, 0xa1, 0xe6, + 0x14, 0x22, 0xed, 0x37, 0x63, 0x99, 0x65, 0xf5, 0xa4, 0xaf, 0x15, 0x73, + 0xcf, 0xda, 0x18, 0xd8, 0x2b, 0x07, 0xe4, 0xf5, 0x04, 0x74, 0xa6, 0x91, + 0x1c, 0x43, 0xe6, 0x19, 0xf7, 0xae, 0xaa, 0x6f, 0x01, 0xdf, 0xc7, 0x9d, + 0xb9, 0x7c, 0x7a, 0x1a, 0xcf, 0x9f, 0xc3, 0x3a, 0x8c, 0x44, 0x96, 0xb3, + 0x62, 0x2b, 0x48, 0x62, 0xa8, 0xd4, 0x8d, 0xb9, 0xd7, 0xde, 0x65, 0x2c, + 0x1d, 0x78, 0xbd, 0x62, 0x66, 0xe9, 0x92, 0x47, 0x1d, 0xec, 0x72, 0x90, + 0x06, 0x0f, 0x53, 0xda, 0xbb, 0x28, 0xa7, 0x57, 0x62, 0x55, 0xb3, 0xc5, + 0x72, 0x12, 0xe9, 0xb7, 0xb1, 0x70, 0x2d, 0x18, 0x63, 0xda, 0xa5, 0xb6, + 0x37, 0x50, 0xe5, 0x97, 0x74, 0x72, 0x77, 0x0c, 0x3a, 0xd6, 0xca, 0x69, + 0x99, 0xa8, 0x4a, 0x3b, 0xa3, 0x76, 0xe5, 0xb1, 0x78, 0x48, 0xcf, 0xdd, + 0xab, 0x96, 0xaf, 0x9d, 0x3c, 0x67, 0xd4, 0xd7, 0x2e, 0x6f, 0x6e, 0x1e, + 0x42, 0x65, 0x60, 0x8f, 0xd0, 0x67, 0xa1, 0xad, 0xcb, 0x09, 0x49, 0xd3, + 0x17, 0x71, 0xe7, 0x9a, 0xb0, 0x2a, 0xdc, 0xec, 0x13, 0x20, 0xe8, 0x4b, + 0x7e, 0x35, 0x39, 0x66, 0x0a, 0x06, 0xe3, 0xc5, 0x51, 0x91, 0x8b, 0x5e, + 0x64, 0x91, 0xb4, 0x03, 0xd7, 0xd6, 0x9f, 0xbd, 0x40, 0x1e, 0xbf, 0x5a, + 0x49, 0x6a, 0x36, 0xee, 0x8d, 0x0b, 0x69, 0x19, 0x64, 0xe4, 0xf3, 0xda, + 0x9d, 0x75, 0x33, 0x39, 0xc3, 0x31, 0x27, 0x1e, 0xb5, 0x4a, 0x29, 0x80, + 0x94, 0x65, 0xb1, 0x8f, 0x5a, 0x65, 0xc5, 0xca, 0xf9, 0xb9, 0xf3, 0x13, + 0x1f, 0x5a, 0x76, 0x42, 0xe6, 0x64, 0xb3, 0x5c, 0x79, 0x11, 0x33, 0x9e, + 0xc2, 0xb9, 0xbb, 0xeb, 0xbf, 0xb6, 0xc9, 0x19, 0x23, 0x18, 0x18, 0x6a, + 0xbf, 0xa8, 0xdd, 0x23, 0x44, 0x14, 0x30, 0x39, 0xf4, 0x35, 0x91, 0xb8, + 0x74, 0x02, 0x93, 0x76, 0x64, 0xb7, 0xa0, 0x22, 0x96, 0x98, 0x46, 0x3a, + 0x1e, 0xf5, 0xa0, 0x02, 0x42, 0x8a, 0x15, 0x72, 0x4f, 0x73, 0x55, 0x62, + 0x56, 0xfb, 0xe0, 0x10, 0x01, 0xc6, 0x45, 0x5c, 0xdc, 0x1c, 0xed, 0x18, + 0x18, 0xa7, 0x64, 0xd3, 0xb1, 0x2e, 0xe9, 0x11, 0x4b, 0x26, 0x38, 0xdd, + 0xf9, 0x56, 0x6c, 0xa0, 0x87, 0x27, 0xb1, 0x35, 0x7a, 0x4b, 0x73, 0x9f, + 0x9b, 0x3f, 0x85, 0x44, 0x6d, 0xd8, 0x8e, 0xa3, 0x6e, 0x7f, 0x8a, 0xb3, + 0x49, 0xc7, 0x70, 0x49, 0x94, 0xc9, 0xab, 0x36, 0x2f, 0x10, 0x91, 0x8c, + 0xa3, 0x20, 0x0a, 0x7b, 0x40, 0x9e, 0x5e, 0xcd, 0x9f, 0x3f, 0xa8, 0xa6, + 0xc7, 0x61, 0x70, 0xcb, 0x95, 0x8a, 0x42, 0x3b, 0xe1, 0x6b, 0x45, 0xdc, + 0x77, 0xb6, 0xe6, 0xa0, 0x82, 0x59, 0x62, 0x49, 0x60, 0x8b, 0x08, 0x47, + 0x1c, 0xe6, 0xab, 0x38, 0xb8, 0x79, 0x0e, 0xfb, 0x6c, 0x8f, 0x33, 0x19, + 0x2b, 0xda, 0xaf, 0x41, 0x73, 0x25, 0xbd, 0xb2, 0xc6, 0x03, 0x29, 0x51, + 0x82, 0x36, 0xd3, 0x0e, 0xa7, 0x73, 0x82, 0x3e, 0x53, 0xe9, 0xc5, 0x3b, + 0x77, 0x29, 0x6b, 0xb1, 0x92, 0x60, 0x91, 0xa4, 0x6f, 0x97, 0x68, 0x0c, + 0x40, 0xed, 0x47, 0x96, 0xff, 0x00, 0x95, 0x68, 0x0b, 0xeb, 0xb5, 0x53, + 0xbb, 0x61, 0xfa, 0x8a, 0x41, 0xa9, 0xc8, 0x4e, 0x3c, 0xa8, 0xd8, 0xfb, + 0x2d, 0x2e, 0x54, 0xc2, 0xd6, 0x12, 0x57, 0xce, 0x94, 0xeb, 0x9c, 0xb7, + 0x1c, 0x55, 0x26, 0x24, 0x97, 0xc7, 0x3c, 0xa9, 0xab, 0xf7, 0x12, 0xc8, + 0x21, 0x06, 0x4b, 0x75, 0x42, 0xc7, 0x8c, 0x2d, 0x34, 0x5c, 0xc2, 0x54, + 0x83, 0x69, 0x96, 0xce, 0x38, 0x14, 0x75, 0xb0, 0x5d, 0x94, 0x87, 0xfa, + 0xc0, 0x7b, 0x09, 0x0b, 0x56, 0x86, 0x8b, 0xff, 0x00, 0x1f, 0x12, 0xff, + 0x00, 0xd7, 0xb3, 0x8a, 0x68, 0x11, 0x39, 0xe2, 0xc9, 0xbf, 0x0a, 0xb9, + 0x64, 0x89, 0x04, 0xb2, 0xe6, 0x06, 0x8c, 0xb4, 0x6c, 0xbc, 0xfb, 0xd3, + 0x76, 0x5a, 0x02, 0xe6, 0x7a, 0xd8, 0xe5, 0x88, 0xe4, 0xf3, 0x49, 0x8f, + 0x7a, 0xd3, 0x5d, 0x16, 0xe5, 0xcf, 0x40, 0x3e, 0x9c, 0xd4, 0xe9, 0xe1, + 0xf9, 0x0f, 0xde, 0x6f, 0xd3, 0x14, 0xb9, 0x90, 0xec, 0xcc, 0x5c, 0x7b, + 0xd1, 0x8f, 0x7a, 0xe8, 0x93, 0xc3, 0xd1, 0x81, 0x97, 0x7c, 0x7e, 0x35, + 0x62, 0x3d, 0x12, 0xcd, 0x47, 0x23, 0x77, 0xd0, 0x52, 0xe6, 0x43, 0xb3, + 0x39, 0x5c, 0x7b, 0xd4, 0x8b, 0x0c, 0x8d, 0xf7, 0x55, 0x8f, 0xd0, 0x57, + 0x67, 0x06, 0x93, 0x1e, 0xdf, 0xdd, 0xd9, 0xb9, 0xcf, 0xa8, 0xad, 0x08, + 0x74, 0x79, 0xbb, 0x43, 0x14, 0x63, 0xde, 0x9f, 0xbc, 0xf6, 0x41, 0xa2, + 0xea, 0x70, 0x91, 0xe9, 0x97, 0x72, 0x7d, 0xd4, 0x35, 0x72, 0x2f, 0x0f, + 0x5d, 0xbf, 0x53, 0x8f, 0xad, 0x77, 0x69, 0xa3, 0xb7, 0xf1, 0xcd, 0xf8, + 0x28, 0xc5, 0x59, 0x8f, 0x4b, 0x85, 0x3a, 0x8d, 0xdf, 0xef, 0x1a, 0x7c, + 0x93, 0x64, 0xf3, 0xc5, 0x1c, 0x54, 0x1e, 0x17, 0x52, 0xc0, 0x49, 0x35, + 0x6a, 0x43, 0xe1, 0xeb, 0x08, 0x46, 0x58, 0x6f, 0x3e, 0xe6, 0xba, 0x95, + 0x8a, 0x34, 0x18, 0x0a, 0xa3, 0xe8, 0x29, 0x19, 0x63, 0xee, 0x82, 0x87, + 0x45, 0xbe, 0xa1, 0xed, 0x57, 0x63, 0x04, 0x59, 0xc0, 0xa9, 0xb6, 0x18, + 0x14, 0x7e, 0x14, 0xd3, 0x6d, 0x22, 0x7f, 0xcb, 0x35, 0x03, 0xd7, 0x8a, + 0xdc, 0x31, 0xc0, 0x78, 0xd8, 0x29, 0x86, 0xde, 0xd0, 0xff, 0x00, 0xac, + 0xda, 0x73, 0xd8, 0x9a, 0xcd, 0xe1, 0xbc, 0xcb, 0x55, 0xfc, 0x8c, 0x23, + 0x85, 0xea, 0xf1, 0x8f, 0xa9, 0x14, 0xdd, 0xc1, 0xc1, 0xd9, 0x34, 0x64, + 0x8f, 0xee, 0x9c, 0xd6, 0xa4, 0xba, 0x76, 0x97, 0xcb, 0x62, 0x3f, 0xa6, + 0x69, 0xb1, 0xdb, 0x69, 0x49, 0xd0, 0x46, 0xa0, 0xf5, 0xda, 0x69, 0xac, + 0x32, 0xea, 0xc1, 0xd6, 0x7d, 0x11, 0xcd, 0x5c, 0xea, 0x3e, 0x53, 0x95, + 0xf3, 0x4e, 0xe1, 0xd8, 0x0a, 0xbd, 0x65, 0x79, 0x1c, 0x7a, 0x7f, 0xda, + 0x49, 0xdd, 0x21, 0x38, 0xe6, 0xb5, 0x9e, 0xcf, 0x45, 0x6c, 0xe5, 0x41, + 0x27, 0xd2, 0x85, 0xb5, 0xd2, 0x95, 0x70, 0xaa, 0xf8, 0xf4, 0x00, 0xd6, + 0x8a, 0x8a, 0x44, 0x39, 0xbb, 0xec, 0x73, 0x4d, 0xa8, 0xbd, 0xc5, 0xfa, + 0x07, 0x62, 0x10, 0xb7, 0x35, 0x7a, 0xe3, 0x51, 0xf2, 0x23, 0xfd, 0xd6, + 0xc6, 0xc7, 0x1d, 0x2b, 0x58, 0xd9, 0x69, 0xad, 0x9f, 0x92, 0x6e, 0x7d, + 0x16, 0xa3, 0xfe, 0xcc, 0xd3, 0x80, 0x21, 0x56, 0xe3, 0x07, 0xa8, 0xc5, + 0x0e, 0x9f, 0x61, 0xc2, 0x69, 0x3f, 0x79, 0x19, 0x70, 0xea, 0xa5, 0xe2, + 0x97, 0x2a, 0x99, 0x00, 0x11, 0xc5, 0x44, 0x35, 0x19, 0x98, 0x92, 0x30, + 0x07, 0xb2, 0x8a, 0xd4, 0x5d, 0x1b, 0x4f, 0x5c, 0xe0, 0x5c, 0x8c, 0xfb, + 0x53, 0x8e, 0x97, 0x62, 0x14, 0x2a, 0xad, 0xce, 0x07, 0xfb, 0x34, 0x46, + 0x9b, 0x4b, 0x53, 0x4a, 0xb5, 0x20, 0xe4, 0xf9, 0x56, 0x86, 0x4c, 0x77, + 0x92, 0xcb, 0x36, 0xed, 0xa5, 0xb6, 0x8f, 0xa5, 0x39, 0x27, 0x99, 0x4b, + 0xb3, 0x23, 0x0c, 0x9e, 0x32, 0x6b, 0x4d, 0x34, 0xeb, 0x38, 0xce, 0x55, + 0x6e, 0x87, 0xfc, 0x06, 0x9c, 0xf6, 0x36, 0x6e, 0x30, 0xcb, 0x74, 0x7f, + 0xe0, 0x35, 0xa5, 0x8e, 0x6d, 0x4c, 0x2f, 0x3d, 0x46, 0x77, 0xae, 0x18, + 0x9c, 0x74, 0xa5, 0xf3, 0x54, 0xf6, 0xad, 0xe4, 0xb2, 0xb0, 0x55, 0xda, + 0x63, 0xb8, 0xc1, 0xff, 0x00, 0x66, 0x94, 0x58, 0x69, 0xa3, 0xfe, 0x59, + 0x4d, 0xf8, 0xa9, 0xa7, 0xa8, 0xac, 0x73, 0xe6, 0x41, 0xe9, 0x4c, 0xc2, + 0xc9, 0x9f, 0x94, 0x0e, 0xd5, 0xd3, 0x2d, 0xa6, 0x98, 0x3f, 0xe5, 0x8b, + 0x7e, 0x2a, 0x68, 0x30, 0xe9, 0x60, 0xf3, 0x10, 0xfc, 0x54, 0xd2, 0xbb, + 0xb9, 0x5c, 0x89, 0x23, 0x94, 0x30, 0x94, 0x39, 0x1c, 0xad, 0x39, 0x59, + 0x18, 0x1f, 0x99, 0x87, 0xb1, 0x15, 0xd5, 0x05, 0xd2, 0xbb, 0x24, 0x7f, + 0x88, 0xa7, 0x81, 0xa6, 0x81, 0xf2, 0xf9, 0x34, 0x4a, 0x29, 0x8a, 0x2d, + 0xa3, 0x93, 0x31, 0xb1, 0xe9, 0x82, 0x29, 0xbf, 0x66, 0x66, 0xfb, 0xd0, + 0x13, 0xf4, 0x15, 0xd9, 0x2b, 0x59, 0xaf, 0xdd, 0x31, 0xfe, 0x95, 0x32, + 0xc9, 0x19, 0x18, 0x52, 0x9f, 0x85, 0x4f, 0xb2, 0x5d, 0xca, 0xf6, 0x8f, + 0xb1, 0xc1, 0xcd, 0xa5, 0x4a, 0xeb, 0xfb, 0xab, 0x47, 0x27, 0xfd, 0xda, + 0xae, 0xda, 0x45, 0xc2, 0x2a, 0x97, 0x85, 0xd0, 0xe3, 0x9e, 0x2b, 0xd1, + 0x80, 0x53, 0xe9, 0x41, 0x40, 0x7d, 0x0d, 0x3f, 0x67, 0xe6, 0x2f, 0x69, + 0xd2, 0xc7, 0x99, 0xb6, 0x9c, 0xcb, 0xeb, 0x48, 0x2d, 0x59, 0x06, 0x32, + 0x73, 0xdb, 0x8a, 0xf4, 0x79, 0x2c, 0xa0, 0x93, 0xef, 0xc4, 0xa7, 0xf0, + 0xaa, 0x92, 0xe8, 0x96, 0x8f, 0xd1, 0x4a, 0x9f, 0x63, 0x4b, 0x92, 0x48, + 0x39, 0xa2, 0xce, 0x06, 0x68, 0x98, 0xc2, 0x17, 0x68, 0xdd, 0x9c, 0xe7, + 0x35, 0x04, 0x96, 0x77, 0x10, 0x85, 0x32, 0x44, 0xcb, 0xb8, 0x6e, 0x19, + 0x1d, 0x45, 0x77, 0x12, 0xf8, 0x71, 0x4f, 0x31, 0xcb, 0xf8, 0x11, 0x55, + 0xef, 0x34, 0x7b, 0xe9, 0x82, 0x79, 0x98, 0x93, 0xcb, 0x5d, 0xab, 0xcf, + 0x41, 0x53, 0x25, 0x3b, 0xad, 0x34, 0x34, 0x8f, 0x27, 0x2b, 0xd7, 0x53, + 0x90, 0x80, 0x15, 0x91, 0x09, 0xea, 0x4f, 0x4a, 0xd4, 0x72, 0x72, 0x70, + 0x24, 0x3f, 0x28, 0xfb, 0xbd, 0x2a, 0xc4, 0xba, 0x55, 0xc4, 0x5f, 0x7a, + 0x27, 0x18, 0xaa, 0xef, 0x6f, 0x27, 0x3b, 0xb3, 0xe9, 0xc8, 0xa4, 0xd8, + 0x94, 0x58, 0xc2, 0x58, 0x93, 0xf2, 0xcd, 0xf7, 0x7d, 0x69, 0x79, 0xf4, + 0x97, 0xee, 0xff, 0x00, 0x7a, 0x81, 0x0e, 0xd3, 0x92, 0xa1, 0xb8, 0xc7, + 0x5c, 0x50, 0x55, 0x79, 0xfd, 0xdf, 0x6c, 0x75, 0xcd, 0x17, 0x41, 0x66, + 0x36, 0x62, 0x56, 0xdd, 0x89, 0x0d, 0xf7, 0x47, 0x56, 0xcd, 0x54, 0x13, + 0x0f, 0xe1, 0x4d, 0xc7, 0x1d, 0xeb, 0x46, 0x0b, 0x33, 0x7f, 0x27, 0xd9, + 0x95, 0x92, 0x2d, 0xcb, 0x8d, 0xcd, 0xc7, 0x4a, 0xcc, 0x16, 0x92, 0xc7, + 0x26, 0x37, 0x27, 0x07, 0xd6, 0xa1, 0xb4, 0xdd, 0x96, 0xe5, 0x3a, 0x73, + 0x50, 0x53, 0x7b, 0x32, 0x65, 0x9e, 0x60, 0x77, 0x14, 0xd8, 0x7a, 0x0c, + 0x0c, 0x52, 0x8d, 0xf2, 0x65, 0x8e, 0x47, 0xb9, 0xe6, 0xa6, 0xc3, 0x94, + 0xc6, 0xdc, 0xd1, 0x1e, 0xe5, 0x8f, 0x05, 0x4f, 0xe5, 0x59, 0x39, 0x4b, + 0xb1, 0x28, 0xa8, 0xa1, 0x37, 0x67, 0x7e, 0x18, 0x7a, 0x8a, 0xb7, 0x04, + 0x89, 0x1a, 0x31, 0x77, 0xdd, 0xc7, 0x18, 0x15, 0x5e, 0x48, 0xa2, 0xe5, + 0x98, 0x32, 0xe6, 0x98, 0xb1, 0xc7, 0x9f, 0x96, 0x53, 0xf8, 0xd5, 0xab, + 0xee, 0x36, 0xdd, 0xac, 0x5a, 0x17, 0x31, 0xb9, 0xe6, 0x20, 0xd9, 0xe9, + 0xc7, 0x34, 0xb9, 0xb6, 0x27, 0x8d, 0xc8, 0x69, 0xb0, 0xa8, 0x50, 0x5f, + 0x6f, 0x0b, 0xde, 0xa5, 0x3b, 0x64, 0x19, 0x3d, 0xea, 0xed, 0xdc, 0x2e, + 0x33, 0xc8, 0xdc, 0x72, 0x92, 0xab, 0x7e, 0x94, 0xc3, 0x14, 0xa8, 0x33, + 0xb4, 0xfe, 0x1c, 0xd3, 0x9a, 0x35, 0x08, 0x78, 0xfa, 0x10, 0x7a, 0x53, + 0x56, 0x42, 0x06, 0x01, 0x3f, 0x9d, 0x29, 0x28, 0xad, 0x2c, 0x08, 0x8b, + 0x12, 0x13, 0x9a, 0x50, 0x5d, 0x4f, 0x22, 0xac, 0xac, 0xac, 0x57, 0x21, + 0x55, 0xff, 0x00, 0xd9, 0x34, 0xa5, 0xd7, 0x8d, 0xd1, 0x6d, 0x1e, 0xc6, + 0xa7, 0x95, 0x3d, 0x8a, 0xbb, 0x1a, 0x83, 0x3c, 0xd4, 0x83, 0x03, 0x14, + 0xd0, 0xb1, 0x37, 0xdd, 0x91, 0x81, 0xf4, 0x22, 0xa4, 0x58, 0xf0, 0x38, + 0x65, 0x3f, 0xa5, 0x67, 0x2a, 0x72, 0x29, 0x48, 0x7a, 0x90, 0x6a, 0xcc, + 0x5c, 0x11, 0xeb, 0x55, 0xd3, 0xd8, 0x64, 0xfb, 0x54, 0x83, 0xe5, 0x5e, + 0xbf, 0x31, 0xae, 0x79, 0xc5, 0xf6, 0x36, 0x8b, 0x45, 0xe1, 0x3e, 0x06, + 0xd5, 0x3c, 0x0f, 0xe7, 0x4e, 0x8e, 0x5c, 0x11, 0xf9, 0xd5, 0x15, 0x35, + 0x20, 0x62, 0x01, 0xac, 0x39, 0x2c, 0x6a, 0xa7, 0xa9, 0x7d, 0x6e, 0x8e, + 0xf1, 0xcd, 0x39, 0xe5, 0xca, 0xf5, 0xac, 0xf5, 0x63, 0x91, 0xc5, 0x4e, + 0x37, 0xc8, 0xc5, 0x55, 0x58, 0x92, 0x3a, 0x01, 0x52, 0xe9, 0xf6, 0x34, + 0x53, 0x6d, 0x58, 0x1a, 0x5c, 0x1c, 0x66, 0xa0, 0x91, 0xc1, 0x1e, 0xf4, + 0x92, 0x06, 0xeb, 0xb4, 0xf1, 0x4d, 0x0d, 0x1c, 0x51, 0xb4, 0xb2, 0x9c, + 0xb2, 0xf4, 0x4f, 0x5a, 0xd6, 0x34, 0xe5, 0xd8, 0xc5, 0xbd, 0x6c, 0x46, + 0xe7, 0x6f, 0x38, 0xc1, 0xa8, 0xfc, 0xfc, 0xf0, 0x79, 0xa9, 0x64, 0xbb, + 0x37, 0xff, 0x00, 0x34, 0x8d, 0xf3, 0x8e, 0x00, 0xc7, 0x18, 0xa8, 0x44, + 0x04, 0xf7, 0x3f, 0x80, 0xad, 0xa3, 0x4d, 0xf5, 0x44, 0x4a, 0x49, 0x6c, + 0x35, 0xdc, 0x1e, 0x94, 0x07, 0xdc, 0x42, 0x80, 0x32, 0x7d, 0x6a, 0x51, + 0x6e, 0x07, 0xf0, 0xb1, 0x3e, 0xfc, 0x53, 0xd6, 0x22, 0x3a, 0x22, 0x8f, + 0xa9, 0xad, 0xa3, 0x08, 0xad, 0xd9, 0x9b, 0x93, 0x7b, 0x22, 0x16, 0xb6, + 0x53, 0xd7, 0x83, 0x51, 0x8b, 0x7e, 0x48, 0xeb, 0x57, 0x0c, 0x6c, 0x7a, + 0xb2, 0xfe, 0x02, 0x9a, 0xc1, 0x22, 0x1b, 0xe4, 0x76, 0x2a, 0x3a, 0x81, + 0x5a, 0xf3, 0x41, 0x6c, 0x45, 0xa4, 0xca, 0x2d, 0x6e, 0xea, 0x48, 0xe7, + 0x07, 0xda, 0xa3, 0x4b, 0x57, 0x07, 0x8e, 0x7e, 0xa6, 0xb5, 0xa7, 0xbf, + 0xb3, 0xb8, 0x95, 0x23, 0x8d, 0x7f, 0xdd, 0x38, 0xed, 0x4a, 0x19, 0x14, + 0x70, 0x05, 0x2f, 0x69, 0xd9, 0x0d, 0xc3, 0xbb, 0x29, 0x3d, 0xaa, 0xcb, + 0x0e, 0xc2, 0x98, 0x6c, 0xe7, 0x34, 0xc5, 0xd2, 0xd0, 0x81, 0xb8, 0x1c, + 0x8f, 0x7a, 0xd2, 0x0c, 0xc4, 0x70, 0xa6, 0x93, 0x6b, 0xb7, 0x03, 0xf4, + 0xe6, 0x8e, 0x69, 0x31, 0x59, 0x22, 0x90, 0xd3, 0x61, 0x56, 0x24, 0x81, + 0xcd, 0x38, 0xdb, 0xc2, 0x9d, 0x14, 0x55, 0x96, 0x0a, 0x87, 0x12, 0x38, + 0x0c, 0x7b, 0x13, 0x50, 0xb5, 0xcc, 0x4a, 0x70, 0x10, 0xb9, 0xf4, 0xc6, + 0x29, 0xa8, 0xc9, 0x89, 0xb4, 0x88, 0x27, 0x6d, 0xb1, 0xfc, 0x83, 0x07, + 0xb7, 0x15, 0x3c, 0x04, 0xf9, 0x2a, 0xcc, 0xdc, 0x91, 0x4e, 0x58, 0xa4, + 0xb9, 0x01, 0x9d, 0x42, 0xe3, 0xa0, 0xc5, 0x59, 0xf2, 0x96, 0x28, 0xf9, + 0xea, 0x07, 0x15, 0xbc, 0x69, 0x2b, 0x6a, 0x63, 0x2a, 0x8e, 0xfa, 0x10, + 0x6d, 0x72, 0x46, 0x4e, 0x33, 0xea, 0x69, 0xff, 0x00, 0x66, 0x19, 0x0c, + 0xe7, 0x26, 0xb3, 0xa6, 0x33, 0x3d, 0xc6, 0x5b, 0xa2, 0xf4, 0x35, 0xa1, + 0x04, 0xe5, 0x90, 0x07, 0xc6, 0xe1, 0x57, 0x14, 0x91, 0x0d, 0xb6, 0x4f, + 0xe5, 0x60, 0x71, 0x81, 0x51, 0xfd, 0x98, 0xb3, 0x70, 0xe6, 0xa4, 0x12, + 0x2e, 0x29, 0x44, 0xaa, 0x3a, 0x1a, 0xa6, 0x24, 0x42, 0xf0, 0xb4, 0x43, + 0x3e, 0x61, 0xfa, 0x54, 0x0e, 0x5d, 0x93, 0xab, 0x60, 0xf6, 0xab, 0x72, + 0x49, 0xbb, 0x05, 0x5c, 0x63, 0x15, 0x14, 0x52, 0x6f, 0x8d, 0xc9, 0x23, + 0x20, 0xe0, 0x1a, 0x92, 0x8a, 0x3b, 0x5b, 0x6e, 0xdf, 0x98, 0x0a, 0xbb, + 0x68, 0x80, 0x27, 0x39, 0x06, 0x97, 0x3b, 0x65, 0x50, 0x70, 0xc0, 0xfa, + 0x55, 0x90, 0x54, 0x70, 0x05, 0x02, 0x1e, 0x0e, 0x47, 0x1d, 0x29, 0x1d, + 0xb6, 0xaf, 0x4a, 0xad, 0xe7, 0x15, 0x20, 0x03, 0x8a, 0x90, 0x4d, 0x91, + 0xc9, 0x06, 0xaf, 0x42, 0x75, 0x28, 0x3b, 0x48, 0x65, 0x91, 0x42, 0x8c, + 0x39, 0xc0, 0x3e, 0x94, 0xe7, 0x73, 0x6e, 0xa9, 0x09, 0x52, 0xcc, 0xa3, + 0x93, 0x56, 0x1d, 0x55, 0xd8, 0x11, 0xc7, 0xbd, 0x32, 0x51, 0xb9, 0xf7, + 0x30, 0x07, 0x3d, 0xf1, 0x51, 0x62, 0xee, 0x51, 0x21, 0x96, 0xe3, 0xcd, + 0xc9, 0x2c, 0x7a, 0x81, 0x52, 0xf9, 0xcc, 0x4e, 0x4a, 0x10, 0x00, 0xe8, + 0x6a, 0x63, 0x18, 0xdd, 0xb8, 0x63, 0x3f, 0x4a, 0x70, 0x4c, 0xae, 0x18, + 0xf0, 0x69, 0xd8, 0x2e, 0x45, 0x1d, 0xf4, 0x78, 0xff, 0x00, 0x56, 0x6a, + 0x74, 0xb9, 0x88, 0xf2, 0x14, 0xd2, 0xac, 0x11, 0xa8, 0xe0, 0x0a, 0x78, + 0x09, 0x8c, 0x6c, 0x1f, 0x95, 0x16, 0x15, 0xc7, 0xac, 0x99, 0xc1, 0x5a, + 0x94, 0x49, 0x91, 0xf3, 0x2e, 0x3f, 0x5a, 0x83, 0x00, 0x1c, 0x81, 0x4b, + 0xbd, 0xbd, 0x68, 0x1d, 0xc9, 0x92, 0x20, 0x24, 0x12, 0x22, 0x80, 0xc2, + 0xa2, 0x64, 0x9d, 0x6e, 0x1a, 0x64, 0x90, 0xa1, 0x3d, 0x76, 0x9c, 0x53, + 0x77, 0x37, 0x5a, 0x95, 0x67, 0x6e, 0x8c, 0x29, 0x38, 0xa7, 0xb8, 0xd4, + 0x9a, 0x2d, 0x41, 0x7b, 0x39, 0x60, 0x93, 0x14, 0x65, 0xf5, 0x71, 0x4f, + 0x9b, 0x52, 0xb6, 0x8a, 0x53, 0x0c, 0xbb, 0x90, 0x91, 0xc3, 0x46, 0x72, + 0x2a, 0xb6, 0xe5, 0x7f, 0x73, 0xe9, 0x51, 0x49, 0x6a, 0xb2, 0x73, 0xb7, + 0x07, 0xd6, 0xb2, 0x95, 0x18, 0xbd, 0x8b, 0x55, 0x9a, 0xdc, 0x96, 0x29, + 0x26, 0x9a, 0xf7, 0x31, 0x5c, 0x46, 0xd1, 0x0e, 0x80, 0xf0, 0x4d, 0x54, + 0xbe, 0x8e, 0x4b, 0x9b, 0xa3, 0x6e, 0x62, 0x25, 0xc7, 0x24, 0xaf, 0x3c, + 0x52, 0x35, 0xa3, 0x2f, 0x47, 0xcd, 0x59, 0xb4, 0x68, 0xe1, 0xcf, 0x98, + 0xd3, 0x24, 0x9d, 0xa4, 0x1c, 0x8a, 0xc1, 0xe1, 0xac, 0xee, 0x74, 0x2c, + 0x46, 0x96, 0x33, 0xad, 0xe1, 0xb9, 0x82, 0xf3, 0x6a, 0x82, 0x98, 0xe8, + 0x5b, 0x23, 0x35, 0xdd, 0x69, 0xba, 0xf4, 0xf6, 0xd0, 0x2a, 0x4d, 0x11, + 0x70, 0x3f, 0x88, 0x1c, 0xd7, 0x2e, 0x9a, 0xec, 0xc1, 0xcc, 0x72, 0xc2, + 0x93, 0xa0, 0x38, 0x04, 0x8c, 0x1a, 0xb9, 0x1e, 0xa3, 0x60, 0xfc, 0xb2, + 0x49, 0x03, 0x1e, 0xbb, 0x4f, 0x15, 0x85, 0x6c, 0x34, 0x6a, 0x2b, 0x4e, + 0x26, 0xd4, 0xb1, 0x12, 0xa6, 0xef, 0x06, 0x76, 0x31, 0x78, 0x8e, 0xd1, + 0xfe, 0xf6, 0x54, 0xd5, 0xc8, 0xf5, 0x6b, 0x29, 0x47, 0xfa, 0xd5, 0xfc, + 0x6b, 0x8b, 0x47, 0xb6, 0x9b, 0xfd, 0x55, 0xda, 0x37, 0xb3, 0x8a, 0x7f, + 0xd9, 0x9c, 0x72, 0x11, 0x18, 0x7f, 0xb0, 0xd8, 0xae, 0x09, 0x65, 0x74, + 0x9e, 0xcd, 0xa3, 0xb2, 0x39, 0x95, 0x55, 0xba, 0xb9, 0xdb, 0x6f, 0xb4, + 0x9b, 0xbc, 0x6d, 0x4c, 0x7d, 0x36, 0xc2, 0x51, 0xf3, 0x5b, 0xc4, 0x7d, + 0xf1, 0x5c, 0x50, 0x32, 0x27, 0x25, 0x66, 0x8c, 0x8f, 0xc6, 0xa4, 0x8f, + 0x50, 0x9c, 0x60, 0xa5, 0xd1, 0x1e, 0xcd, 0x91, 0x58, 0x3c, 0xae, 0x6b, + 0xe0, 0x91, 0xb2, 0xcc, 0xa2, 0xfe, 0x28, 0x9d, 0x44, 0x9e, 0x1b, 0xd2, + 0xe5, 0xfb, 0xd6, 0xeb, 0xf8, 0x55, 0x69, 0x7c, 0x29, 0xa7, 0xa4, 0x47, + 0x61, 0x74, 0x51, 0xce, 0x01, 0xac, 0x94, 0xd6, 0x2f, 0x90, 0x67, 0xcd, + 0x56, 0x03, 0xde, 0x99, 0x27, 0x8b, 0x2e, 0x42, 0x14, 0x01, 0x4b, 0x7b, + 0xd2, 0x58, 0x4c, 0x64, 0x5f, 0xbb, 0x3f, 0xc4, 0xbf, 0xac, 0xe1, 0x67, + 0xbc, 0x7f, 0x02, 0x76, 0xf0, 0x74, 0x46, 0xe4, 0x28, 0x98, 0x85, 0x2b, + 0x93, 0xeb, 0x51, 0xcd, 0xe0, 0x95, 0x0e, 0x36, 0xdc, 0xb6, 0x0f, 0x15, + 0x4a, 0x19, 0xb5, 0x3b, 0xfb, 0x93, 0x3b, 0xdc, 0x3a, 0x03, 0xdd, 0x4e, + 0x3f, 0x2a, 0xd1, 0xd9, 0x77, 0xb7, 0x0b, 0x77, 0x3e, 0x7d, 0xdb, 0x35, + 0xda, 0xb0, 0xb8, 0xeb, 0x5f, 0xda, 0x1c, 0xb3, 0xc4, 0x60, 0xef, 0x67, + 0x03, 0x9c, 0xd5, 0x3c, 0x2d, 0x1d, 0x9d, 0xcf, 0x94, 0xf3, 0x33, 0x64, + 0x67, 0x21, 0xab, 0x38, 0xf8, 0x7e, 0x0e, 0xf2, 0x49, 0xf9, 0xd7, 0x5b, + 0x3e, 0x9f, 0x25, 0xdb, 0x09, 0x26, 0xb8, 0x91, 0x9b, 0xd4, 0x8a, 0x80, + 0xe8, 0x87, 0xfe, 0x7b, 0xb7, 0xe5, 0x5d, 0xd4, 0xe9, 0x55, 0x51, 0x4a, + 0x72, 0xd4, 0xe0, 0xa9, 0x3a, 0x4e, 0x4d, 0xc1, 0x68, 0x72, 0x47, 0xc3, + 0xea, 0x64, 0xc0, 0x77, 0xdb, 0xeb, 0x9a, 0x53, 0xe1, 0xe4, 0xcf, 0xfa, + 0xd6, 0x15, 0xd4, 0xff, 0x00, 0x62, 0x49, 0x9e, 0x2e, 0x3f, 0x4a, 0x46, + 0xd0, 0xa6, 0x3f, 0xf2, 0xf0, 0xbf, 0x91, 0xad, 0x39, 0x27, 0xdc, 0xce, + 0xf0, 0xec, 0x63, 0xa6, 0x9d, 0x0a, 0x58, 0x2c, 0x5e, 0x6f, 0x2b, 0xcf, + 0xd4, 0xd5, 0x14, 0xb5, 0xf3, 0x94, 0xf1, 0x82, 0x0f, 0xe7, 0x5b, 0x6f, + 0xe1, 0x49, 0x65, 0x90, 0xb9, 0xb8, 0xc7, 0xd3, 0x35, 0x3a, 0x78, 0x6a, + 0x68, 0xc7, 0x13, 0xad, 0x4c, 0x29, 0xd4, 0x8d, 0xd3, 0x77, 0xb9, 0x75, + 0x27, 0x4e, 0x56, 0xb2, 0xd8, 0xc1, 0xfe, 0xcc, 0x62, 0xd9, 0x0e, 0x57, + 0xd8, 0x54, 0x91, 0xe9, 0x91, 0xc7, 0x82, 0xca, 0xce, 0x47, 0xa9, 0xe2, + 0xb6, 0x7f, 0xe1, 0x1a, 0x9b, 0x7e, 0xe3, 0x71, 0xcf, 0xd4, 0xd4, 0xdf, + 0xd8, 0x72, 0xf7, 0xb8, 0x5f, 0xca, 0xaf, 0x92, 0x7d, 0xcc, 0xef, 0x0e, + 0xc5, 0x4b, 0x62, 0x9b, 0xd2, 0x14, 0xb5, 0x8d, 0x77, 0x10, 0x32, 0x45, + 0x17, 0x33, 0x5c, 0x24, 0xec, 0x82, 0x28, 0xfe, 0x53, 0x8e, 0xb8, 0xcd, + 0x5c, 0x5d, 0x16, 0x48, 0xdc, 0x30, 0x9f, 0xa1, 0xcf, 0x4a, 0x53, 0xa2, + 0x99, 0x1c, 0xb3, 0x4e, 0x72, 0x4f, 0x61, 0x4d, 0x46, 0xaf, 0x36, 0xfa, + 0x03, 0x95, 0x2e, 0x5b, 0x5b, 0x53, 0x3d, 0x2e, 0xae, 0x54, 0x15, 0x2b, + 0x08, 0x5f, 0x4c, 0x66, 0xa3, 0x97, 0x32, 0x02, 0x1a, 0x38, 0x33, 0xea, + 0x56, 0xb6, 0x97, 0xc3, 0xf1, 0x7f, 0x14, 0xce, 0x69, 0xe7, 0x43, 0xb6, + 0x5e, 0xa5, 0xcf, 0xe3, 0x55, 0xcb, 0x37, 0xd4, 0x9b, 0xc5, 0x23, 0x97, + 0xfb, 0x0c, 0x4c, 0xc4, 0xc8, 0x50, 0xe7, 0xb0, 0x15, 0x24, 0x76, 0xd0, + 0x42, 0x72, 0x9b, 0x14, 0xfa, 0x85, 0xae, 0x99, 0x34, 0x6b, 0x31, 0xcf, + 0x96, 0x4f, 0xd4, 0xd4, 0xeb, 0xa7, 0x5a, 0x2f, 0xfc, 0xbb, 0xaf, 0xf3, + 0xa4, 0xe9, 0xbb, 0xee, 0x35, 0x34, 0x96, 0x87, 0x2c, 0x7c, 0xb6, 0x3c, + 0x96, 0x63, 0x40, 0x8d, 0x4f, 0xdd, 0x85, 0xcf, 0xe1, 0x5d, 0x6a, 0xda, + 0x42, 0x9f, 0x72, 0x24, 0x1f, 0xf0, 0x1a, 0x53, 0x3d, 0xbc, 0x03, 0xe6, + 0x91, 0x16, 0x97, 0xb2, 0x5d, 0x47, 0xed, 0x3b, 0x1c, 0xc4, 0x76, 0x73, + 0xb1, 0x05, 0x2c, 0xd8, 0xfd, 0x45, 0x5c, 0x93, 0x4f, 0xbd, 0x9e, 0x62, + 0xe2, 0x15, 0x8c, 0x1f, 0x5a, 0xd0, 0x97, 0x5b, 0xb3, 0x8f, 0xee, 0xb9, + 0x73, 0xe8, 0xa2, 0xa9, 0xc9, 0xe2, 0x12, 0xc7, 0x6c, 0x30, 0x13, 0xf5, + 0xa3, 0xd9, 0xc2, 0xf7, 0x2d, 0x39, 0xda, 0xd6, 0xd0, 0x44, 0xd1, 0x6e, + 0x1b, 0xfd, 0x64, 0xca, 0xbf, 0x4a, 0x9d, 0x74, 0x28, 0xc7, 0xfa, 0xc9, + 0x9d, 0xbf, 0x4a, 0xaa, 0x2e, 0xf5, 0x5b, 0x93, 0xfb, 0xb8, 0xb6, 0x8f, + 0xa6, 0x2a, 0x45, 0xd3, 0xb5, 0x29, 0x87, 0xef, 0x6e, 0x8a, 0x8f, 0x4c, + 0xd5, 0xa8, 0xae, 0xc6, 0x6e, 0xfd, 0x59, 0x6c, 0x69, 0xf6, 0x30, 0x8f, + 0x98, 0x29, 0xff, 0x00, 0x78, 0xd0, 0x6e, 0x74, 0xe8, 0x38, 0x0f, 0x1a, + 0xfd, 0x05, 0x42, 0x9a, 0x14, 0x7d, 0x65, 0x99, 0xdc, 0xd5, 0x98, 0xf4, + 0xab, 0x58, 0xb9, 0x10, 0x83, 0xfe, 0xf7, 0x35, 0xa2, 0x4f, 0xb1, 0x9b, + 0x71, 0xee, 0x42, 0x75, 0x6b, 0x45, 0xfb, 0xa2, 0x47, 0xff, 0x00, 0x75, + 0x68, 0xfe, 0xd5, 0x67, 0xff, 0x00, 0x55, 0x67, 0x2b, 0x7d, 0x78, 0xab, + 0xc2, 0x15, 0x41, 0x85, 0x8d, 0x54, 0x7b, 0x0a, 0x70, 0xc8, 0xaa, 0xd4, + 0x8b, 0xae, 0xc6, 0x78, 0xb8, 0xd4, 0xa5, 0xfb, 0xb6, 0xcb, 0x18, 0xff, + 0x00, 0x68, 0xd3, 0xbc, 0x8d, 0x49, 0xfe, 0xf4, 0xb1, 0x28, 0xf6, 0x19, + 0xab, 0xe0, 0x13, 0x4e, 0x18, 0x1e, 0xe6, 0x9d, 0x85, 0xcd, 0xe4, 0x50, + 0x16, 0x37, 0x27, 0xef, 0x5e, 0x30, 0xff, 0x00, 0x74, 0x62, 0x97, 0xfb, + 0x31, 0x0f, 0xdf, 0x9e, 0x66, 0xff, 0x00, 0x81, 0x62, 0xaf, 0x7d, 0x69, + 0x33, 0x4f, 0x94, 0x5c, 0xec, 0xa6, 0x34, 0xcb, 0x60, 0x73, 0xb5, 0x8f, + 0xd5, 0xa9, 0xe2, 0xc6, 0xd4, 0x7f, 0xcb, 0x14, 0x3f, 0x85, 0x59, 0x27, + 0x03, 0x9a, 0xc8, 0xbe, 0xd6, 0x61, 0xb6, 0x25, 0x23, 0xfd, 0xe3, 0xfd, + 0x78, 0x14, 0x3b, 0x22, 0xa3, 0xcd, 0x27, 0x64, 0x68, 0x0b, 0x58, 0x07, + 0x48, 0x90, 0x7e, 0x14, 0xef, 0x2e, 0x21, 0xfc, 0x0a, 0x2b, 0x95, 0x93, + 0x58, 0xbc, 0x99, 0xb0, 0xaf, 0xb7, 0x3d, 0x02, 0x8a, 0xd0, 0xb6, 0xd3, + 0x2e, 0xee, 0x10, 0x3d, 0xc5, 0xcc, 0x8b, 0x9e, 0xd9, 0xe6, 0xa5, 0x4a, + 0xfb, 0x22, 0xe5, 0x4d, 0xc5, 0x7b, 0xcc, 0xdc, 0x1e, 0x50, 0xee, 0x82, + 0x8d, 0xd1, 0xf6, 0x65, 0xfc, 0xeb, 0x2f, 0xfb, 0x0e, 0x0f, 0xe2, 0x77, + 0x6f, 0xa9, 0xa3, 0xfb, 0x0a, 0xdf, 0xb1, 0x71, 0xff, 0x00, 0x02, 0xaa, + 0xd4, 0xce, 0xd1, 0xee, 0x6a, 0x8d, 0xa7, 0xa6, 0x0f, 0xd2, 0x90, 0xe0, + 0x75, 0xe2, 0xa0, 0xb6, 0xb7, 0x16, 0x91, 0x79, 0x71, 0x9e, 0x33, 0x9e, + 0x69, 0xb7, 0x76, 0xad, 0x77, 0x18, 0x42, 0xe4, 0x0c, 0xe7, 0xe5, 0xa6, + 0x2d, 0x2e, 0x58, 0x0c, 0x9f, 0xde, 0x1f, 0x9d, 0x26, 0xf5, 0xcf, 0x51, + 0x59, 0x83, 0x44, 0x5f, 0xf9, 0xed, 0x2f, 0xfd, 0xf5, 0x51, 0xbe, 0x89, + 0x28, 0xe6, 0x3b, 0xb9, 0x01, 0xf7, 0x34, 0xb5, 0xec, 0x55, 0xa3, 0xdc, + 0xd7, 0xce, 0x7b, 0x51, 0x8a, 0xe4, 0xae, 0x2e, 0x6f, 0xf4, 0xeb, 0x83, + 0x13, 0xce, 0xc4, 0x8e, 0x47, 0x39, 0x06, 0xa6, 0xb7, 0xf1, 0x1c, 0xe8, + 0x40, 0x99, 0x55, 0xd7, 0xd4, 0x70, 0x6a, 0x79, 0xd6, 0xcc, 0xbf, 0x61, + 0x26, 0xae, 0xb5, 0x3a, 0x8d, 0xbf, 0x4a, 0x5c, 0x7a, 0xd4, 0x16, 0xf3, + 0xad, 0xcc, 0x2b, 0x2c, 0x47, 0x2a, 0xc2, 0xa5, 0xda, 0xff, 0x00, 0xde, + 0xab, 0x31, 0xb5, 0x86, 0xcf, 0x3c, 0x56, 0xeb, 0xba, 0x4e, 0x07, 0xae, + 0x2a, 0x8b, 0xeb, 0x36, 0x28, 0x79, 0x6c, 0xfd, 0x05, 0x5e, 0x64, 0xde, + 0x0a, 0xbe, 0x08, 0x3d, 0x8d, 0x60, 0xea, 0x9a, 0x3b, 0x00, 0x65, 0xb7, + 0x1b, 0x80, 0xea, 0xb5, 0x9c, 0xb9, 0x96, 0xa8, 0xda, 0x9a, 0x83, 0xd2, + 0x46, 0xcc, 0x72, 0x5b, 0xdc, 0xa0, 0x78, 0xca, 0x32, 0x9a, 0x53, 0x6f, + 0x0b, 0x75, 0x8d, 0x0f, 0xe1, 0x5c, 0x54, 0x37, 0x33, 0xda, 0xc9, 0x94, + 0x62, 0xa4, 0x75, 0x15, 0xd0, 0x58, 0x6b, 0x70, 0xcc, 0x02, 0x4f, 0xfb, + 0xb7, 0xf5, 0xec, 0x69, 0xc6, 0x69, 0xee, 0x39, 0xd0, 0x94, 0x75, 0x46, + 0x99, 0xb1, 0xb6, 0x6e, 0xb0, 0xa7, 0xe5, 0x51, 0xb6, 0x9b, 0x6a, 0x7f, + 0xe5, 0x8a, 0x8f, 0xa7, 0x15, 0x64, 0x38, 0x2a, 0x08, 0x39, 0x1e, 0xb4, + 0xed, 0xc3, 0x15, 0x56, 0x46, 0x17, 0x68, 0xa0, 0x74, 0x9b, 0x6e, 0xa3, + 0x7a, 0xfd, 0x18, 0xd2, 0x1d, 0x2c, 0x8f, 0xb9, 0x73, 0x2a, 0xfe, 0x35, + 0x78, 0x93, 0x49, 0x93, 0x45, 0x90, 0xf9, 0x99, 0x44, 0xd9, 0x5d, 0xa7, + 0xdd, 0xbc, 0x63, 0xfe, 0xf0, 0xa6, 0x98, 0xb5, 0x24, 0xe8, 0xf1, 0x38, + 0xf7, 0x15, 0xa1, 0x93, 0x49, 0x9f, 0x4a, 0x2c, 0x3e, 0x76, 0x67, 0x1b, + 0x8b, 0xf8, 0xfe, 0xf5, 0xb0, 0x6f, 0x70, 0x69, 0x9f, 0xda, 0xac, 0x87, + 0x12, 0xdb, 0xba, 0xd6, 0xaf, 0x34, 0x9b, 0x73, 0xd4, 0x64, 0x52, 0xb3, + 0xee, 0x3e, 0x65, 0xd5, 0x19, 0xcb, 0xaa, 0xda, 0xbf, 0x0d, 0x95, 0x3e, + 0xe2, 0x9e, 0x1e, 0xc2, 0xe3, 0xab, 0x46, 0xdf, 0x5a, 0xb2, 0xf6, 0x56, + 0xd2, 0xfd, 0xe8, 0x97, 0xeb, 0x8a, 0xab, 0x26, 0x87, 0x6c, 0xe0, 0xec, + 0x2c, 0xa7, 0xd8, 0xd1, 0xa8, 0xef, 0x0f, 0x41, 0xaf, 0xa5, 0x59, 0xca, + 0x38, 0x41, 0xf8, 0x1a, 0xad, 0x27, 0x87, 0xad, 0xdb, 0xee, 0xb1, 0x5a, + 0x56, 0xd1, 0xee, 0xa1, 0xe6, 0x19, 0x8f, 0xd3, 0x38, 0xa6, 0x19, 0x35, + 0x2b, 0x6f, 0xbe, 0x18, 0x8f, 0x71, 0x9a, 0x86, 0x97, 0x54, 0x5a, 0x4d, + 0xfc, 0x32, 0x23, 0xfe, 0xc0, 0x28, 0xd9, 0x8e, 0x4e, 0x7d, 0xea, 0xbb, + 0xf8, 0x7e, 0x6e, 0x70, 0xc0, 0xfe, 0x15, 0x7a, 0x3d, 0x5d, 0xd7, 0x89, + 0x23, 0xfc, 0xaa, 0xf4, 0x5a, 0x8d, 0xbb, 0x8e, 0x49, 0x53, 0xef, 0x53, + 0xc9, 0x06, 0x36, 0xea, 0x2d, 0xd1, 0xce, 0x36, 0x85, 0x70, 0x3f, 0xe5, + 0x9a, 0x9a, 0x85, 0xb4, 0x99, 0xd3, 0xfe, 0x59, 0x7e, 0x55, 0xd9, 0xac, + 0xb1, 0xbf, 0xdc, 0x60, 0x69, 0x4a, 0xe7, 0x93, 0x4f, 0xd9, 0x2e, 0x8c, + 0x8f, 0x69, 0xdd, 0x1c, 0x41, 0xd3, 0xe7, 0x51, 0xca, 0x48, 0x3f, 0x1a, + 0x61, 0xb3, 0x90, 0x75, 0x57, 0xfc, 0x45, 0x77, 0x7e, 0x5a, 0x77, 0x50, + 0x7f, 0x0a, 0x8f, 0xec, 0xf1, 0x93, 0xca, 0x0f, 0xca, 0x97, 0xb2, 0x7d, + 0xc7, 0xed, 0x23, 0xd8, 0xe1, 0xbc, 0x97, 0x51, 0x80, 0x4e, 0x3d, 0xd2, + 0x9a, 0x21, 0x20, 0xf4, 0x5c, 0xff, 0x00, 0xb9, 0x5d, 0xd1, 0xb4, 0x88, + 0xff, 0x00, 0x00, 0xa6, 0x9b, 0x08, 0x1b, 0xaa, 0x0a, 0x5e, 0xce, 0x5d, + 0xc7, 0xcf, 0x13, 0x88, 0x31, 0x16, 0xeb, 0xb3, 0xf2, 0xad, 0x4d, 0x51, + 0xf4, 0xdb, 0x8b, 0x1b, 0x24, 0xb2, 0xb3, 0x10, 0xcd, 0x1a, 0x91, 0x33, + 0x13, 0x9d, 0xe6, 0xba, 0x1f, 0xec, 0xcb, 0x7f, 0xee, 0x0f, 0xca, 0x85, + 0xd2, 0xad, 0xf9, 0xfd, 0xda, 0xf3, 0xec, 0x2b, 0x39, 0x51, 0x93, 0x92, + 0x95, 0xf6, 0x35, 0x85, 0x68, 0xc6, 0x2e, 0x2b, 0xa9, 0xc5, 0x88, 0x47, + 0xf7, 0x13, 0xf3, 0xa3, 0xc9, 0xcf, 0xf0, 0x27, 0x1e, 0xf5, 0xdd, 0xae, + 0x95, 0x6a, 0x40, 0xcc, 0x29, 0xff, 0x00, 0x7c, 0x8a, 0x71, 0xd2, 0xad, + 0x81, 0x18, 0x82, 0x3f, 0xfb, 0xe6, 0x9f, 0x2c, 0xd1, 0x37, 0x81, 0xc3, + 0x08, 0x86, 0x7e, 0xec, 0x79, 0xa9, 0x36, 0x13, 0xd5, 0x52, 0xbb, 0xa4, + 0xd3, 0xad, 0x40, 0xcf, 0xd9, 0x62, 0x24, 0xff, 0x00, 0xb2, 0x2a, 0x51, + 0x61, 0x6b, 0xda, 0xd6, 0x2f, 0xfb, 0xe6, 0xa6, 0x51, 0x9f, 0x42, 0x97, + 0x21, 0xc1, 0x88, 0x8f, 0x5d, 0xab, 0xf8, 0x0a, 0x74, 0x70, 0x48, 0x32, + 0x42, 0x02, 0x4f, 0xfb, 0x15, 0xde, 0x8b, 0x38, 0x41, 0x18, 0x82, 0x3f, + 0xca, 0xa6, 0x8e, 0x21, 0x11, 0xf9, 0x63, 0x40, 0x3d, 0x31, 0x59, 0xb8, + 0xd4, 0x34, 0x5e, 0xcc, 0xe0, 0x56, 0xd6, 0xe1, 0xc8, 0xc4, 0x4c, 0x7e, + 0x91, 0xd5, 0xab, 0x7d, 0x1b, 0x51, 0xb8, 0x3b, 0x62, 0xb5, 0x9d, 0x8f, + 0xb4, 0x78, 0xaf, 0x40, 0x8a, 0x57, 0x42, 0x36, 0xaa, 0x8f, 0xc2, 0xb4, + 0x60, 0xd4, 0x25, 0x1f, 0xc4, 0x01, 0xac, 0x2a, 0x7b, 0x65, 0xb5, 0x8e, + 0x8a, 0x70, 0xa2, 0xf7, 0x67, 0x00, 0x9e, 0x0e, 0xf1, 0x03, 0x2e, 0x45, + 0x94, 0xdb, 0x7d, 0xd8, 0x0a, 0x69, 0xf0, 0xde, 0xb1, 0x69, 0x99, 0x1a, + 0xd6, 0x45, 0xda, 0x39, 0x25, 0x81, 0xaf, 0x49, 0x7d, 0x5a, 0xe7, 0x6e, + 0x3c, 0xe3, 0x8f, 0x41, 0x54, 0x27, 0xba, 0x96, 0x45, 0x75, 0x67, 0x2c, + 0x1b, 0xaf, 0x35, 0x85, 0xeb, 0xcb, 0x47, 0x63, 0xa5, 0x42, 0x8c, 0x35, + 0x8b, 0x77, 0x3c, 0xae, 0xf2, 0xd5, 0xed, 0x65, 0x64, 0x9e, 0x22, 0x8d, + 0xee, 0x2b, 0x1a, 0xee, 0x70, 0xa0, 0xa2, 0xf1, 0x9e, 0xb5, 0xeb, 0x97, + 0xb6, 0x96, 0xda, 0x9d, 0xb7, 0x95, 0x2c, 0x4a, 0x48, 0x1d, 0x4f, 0x51, + 0x5c, 0x06, 0xb3, 0xe1, 0x0b, 0x88, 0x24, 0x2f, 0x6c, 0xfe, 0x6a, 0x13, + 0xca, 0xf7, 0x15, 0xbd, 0x27, 0xef, 0x5a, 0x67, 0x2d, 0x5a, 0x6e, 0xd7, + 0x86, 0xa7, 0x3f, 0x69, 0x37, 0x96, 0xf9, 0xc6, 0x6b, 0x49, 0x6e, 0x10, + 0x8c, 0xe4, 0x0a, 0xae, 0xda, 0x45, 0xe4, 0x5c, 0x3c, 0x25, 0x3e, 0xa6, + 0xa2, 0x92, 0xc9, 0xe2, 0x5c, 0xb3, 0xaf, 0xd2, 0xba, 0x1c, 0x53, 0x77, + 0x39, 0xaf, 0x6d, 0x0b, 0xed, 0x2a, 0xe3, 0xad, 0x37, 0x7b, 0x1e, 0x8a, + 0x4d, 0x11, 0xb2, 0x08, 0xd4, 0x97, 0xc7, 0x1e, 0x94, 0x1b, 0x88, 0x80, + 0xe1, 0x59, 0x8d, 0x52, 0xa6, 0x43, 0x98, 0x9b, 0x9b, 0xbe, 0x07, 0xd4, + 0xd3, 0x25, 0x00, 0xc1, 0x21, 0x70, 0x58, 0x01, 0xe9, 0x4e, 0x69, 0x5c, + 0xa6, 0xe4, 0x8d, 0x54, 0xe7, 0x19, 0xc5, 0x56, 0x2f, 0x35, 0xde, 0x62, + 0xf3, 0x09, 0x43, 0xc1, 0xc0, 0xc5, 0x5f, 0xb2, 0xd0, 0x4a, 0x7a, 0x95, + 0x2d, 0x1e, 0x11, 0x72, 0xa3, 0x67, 0x5e, 0xe4, 0xf4, 0xad, 0x73, 0x24, + 0x49, 0xfc, 0x7c, 0x7a, 0x28, 0xaa, 0x50, 0xe9, 0xc8, 0x2e, 0x08, 0x46, + 0x25, 0x93, 0xd6, 0xb4, 0x16, 0xc4, 0xf5, 0x72, 0x7f, 0x0a, 0xa8, 0xd2, + 0xb9, 0x33, 0xa9, 0xa9, 0x14, 0x77, 0x3b, 0xe5, 0x08, 0x88, 0x00, 0xfe, + 0xf3, 0x73, 0x44, 0xa6, 0xe6, 0x57, 0xda, 0x8c, 0x4a, 0xfa, 0x8e, 0x05, + 0x5a, 0x4b, 0x64, 0x8f, 0xee, 0x8f, 0xce, 0xa4, 0xdc, 0x01, 0xc6, 0x01, + 0xfa, 0x56, 0xaa, 0x9a, 0x46, 0x4e, 0x6d, 0x94, 0x61, 0xb1, 0x2a, 0xfb, + 0xdd, 0xb9, 0xab, 0x2b, 0x14, 0x48, 0x77, 0x60, 0x67, 0xd6, 0xa4, 0xdd, + 0x9a, 0x61, 0x00, 0xf3, 0x57, 0x64, 0x88, 0xbb, 0x63, 0xb7, 0x82, 0x3a, + 0x81, 0x41, 0x45, 0x6e, 0xf5, 0x17, 0x0a, 0x39, 0xa6, 0x19, 0x71, 0xf7, + 0x45, 0x17, 0x0b, 0x12, 0x35, 0xb2, 0x75, 0xdc, 0x28, 0x5b, 0x75, 0x5e, + 0x72, 0xa6, 0xa2, 0x0b, 0x9e, 0x5c, 0xe2, 0x9c, 0x1c, 0xf6, 0x1c, 0x52, + 0x19, 0x26, 0x14, 0x1e, 0x56, 0x98, 0xec, 0xa4, 0x11, 0x8a, 0x63, 0x39, + 0x3d, 0xa9, 0x7e, 0x62, 0xbc, 0x60, 0xd0, 0x05, 0x36, 0x67, 0x8d, 0x7c, + 0xb0, 0x85, 0xb8, 0xc6, 0x45, 0x47, 0x01, 0x92, 0x15, 0x60, 0x4e, 0x79, + 0xc9, 0x15, 0xa0, 0xa1, 0xf1, 0x83, 0x49, 0xe4, 0xf3, 0x9c, 0x0a, 0x2c, + 0x17, 0x29, 0xf9, 0xce, 0xce, 0x19, 0x23, 0x3c, 0x75, 0x06, 0xb4, 0xa3, + 0x90, 0x32, 0x64, 0x8e, 0x71, 0x55, 0x4a, 0x30, 0x6e, 0x31, 0xf8, 0x0a, + 0x92, 0x3f, 0x95, 0x79, 0xa6, 0xac, 0x27, 0x76, 0x23, 0x23, 0x52, 0x88, + 0xc8, 0x1c, 0x53, 0x89, 0x5e, 0xe6, 0x9c, 0xa4, 0x1e, 0x86, 0xa2, 0xc5, + 0x5c, 0x88, 0xe4, 0x64, 0x13, 0x46, 0xe3, 0xdc, 0x82, 0x29, 0xef, 0x11, + 0x3c, 0xe7, 0x8a, 0x04, 0x5f, 0x2f, 0x2c, 0x28, 0xd4, 0x08, 0xc2, 0x86, + 0x18, 0xcd, 0x48, 0x83, 0x68, 0xc1, 0xc1, 0x15, 0x35, 0xb5, 0x84, 0xb7, + 0x2c, 0x7c, 0xae, 0x42, 0xf5, 0x34, 0xb3, 0x5a, 0xcb, 0x17, 0x5a, 0x68, + 0x19, 0x16, 0x3d, 0x3a, 0x50, 0x4e, 0xde, 0xd4, 0xcd, 0xcd, 0x9c, 0x55, + 0xed, 0x2a, 0xce, 0x3b, 0xcb, 0xa2, 0xb3, 0x1c, 0x22, 0x8c, 0xe0, 0xf7, + 0xa6, 0xdd, 0x95, 0xc1, 0x2b, 0xbb, 0x15, 0x83, 0x64, 0x63, 0x14, 0xc2, + 0x79, 0xe0, 0x56, 0xe5, 0xfe, 0x93, 0x14, 0x11, 0x99, 0x43, 0x08, 0xd3, + 0xb7, 0x35, 0x84, 0xcc, 0xbb, 0xb0, 0xa4, 0x91, 0xeb, 0x8a, 0x51, 0x92, + 0x96, 0xc3, 0x94, 0x5c, 0x77, 0x1d, 0xbb, 0x14, 0x81, 0xf3, 0x40, 0xc1, + 0xa3, 0x61, 0xcf, 0x4a, 0x76, 0x26, 0xe2, 0x86, 0x22, 0x9e, 0xb2, 0x9e, + 0xe4, 0xd3, 0x42, 0x13, 0x4e, 0x09, 0x8a, 0x2c, 0x17, 0x24, 0x13, 0x20, + 0x1c, 0xaf, 0xe3, 0x4e, 0x07, 0x78, 0xe3, 0x02, 0xa1, 0xc6, 0x3b, 0x52, + 0x95, 0xa6, 0x22, 0x43, 0x6e, 0x84, 0xe4, 0x81, 0x51, 0x34, 0x0a, 0xc7, + 0xe5, 0x39, 0x34, 0xa4, 0xb6, 0x7d, 0x47, 0xa1, 0xad, 0x3d, 0x0e, 0xe2, + 0x18, 0xf5, 0x7b, 0x73, 0x73, 0x0a, 0xbc, 0x41, 0xb9, 0x53, 0xd0, 0xd6, + 0x75, 0x24, 0xa3, 0x07, 0x2b, 0x6c, 0x6d, 0x46, 0x3c, 0xf5, 0x14, 0x2f, + 0x6b, 0x98, 0xeb, 0x68, 0x56, 0x45, 0x66, 0x00, 0x80, 0x72, 0x45, 0x69, + 0xbc, 0x96, 0x8d, 0x11, 0xdb, 0xe6, 0x42, 0xf8, 0xe3, 0x07, 0x8c, 0xd3, + 0xf5, 0x8b, 0xab, 0x79, 0xf5, 0x7b, 0x96, 0xb5, 0x88, 0x45, 0x16, 0xf3, + 0x85, 0xe9, 0x8a, 0xcd, 0x79, 0x50, 0x1e, 0xbb, 0x9a, 0xa2, 0x2e, 0x32, + 0x82, 0x93, 0xd2, 0xe6, 0xb3, 0xa7, 0x38, 0xd4, 0x70, 0x8e, 0xb6, 0xea, + 0x2c, 0x1a, 0xa6, 0xa5, 0x1f, 0x06, 0x50, 0xcb, 0xfe, 0xd0, 0xab, 0x8b, + 0xad, 0x3b, 0x0c, 0x4d, 0x6f, 0x13, 0x1f, 0x6a, 0xcd, 0xf9, 0xa5, 0x6c, + 0x28, 0x24, 0x9e, 0x80, 0x56, 0xbd, 0x8e, 0x85, 0x2c, 0xbb, 0x5e, 0x71, + 0xb1, 0x7d, 0x3b, 0x9a, 0xcd, 0xc2, 0x2f, 0x64, 0x6e, 0x97, 0x22, 0xf7, + 0xd9, 0x49, 0x45, 0xc5, 0xf4, 0xc4, 0x44, 0x98, 0x07, 0xb0, 0xe8, 0x2b, + 0x76, 0xc3, 0x44, 0x8e, 0x2c, 0x3c, 0xff, 0x00, 0xbc, 0x7f, 0x4e, 0xc2, + 0xb4, 0x20, 0xb5, 0x86, 0xdd, 0x42, 0x46, 0xbb, 0x45, 0x58, 0xe0, 0x0c, + 0x55, 0xc5, 0x24, 0x63, 0x3a, 0x8e, 0x5a, 0x2d, 0x84, 0x08, 0x8a, 0x30, + 0xa9, 0x8a, 0x70, 0x50, 0x68, 0xe2, 0x9c, 0x42, 0xe3, 0x86, 0xc5, 0x51, + 0x90, 0x85, 0x78, 0xa6, 0x91, 0xee, 0x29, 0x77, 0x36, 0x31, 0xd7, 0xde, + 0x9a, 0x47, 0xa8, 0xcd, 0x01, 0x70, 0xc6, 0x7a, 0x11, 0x4b, 0xb5, 0x40, + 0x24, 0xb0, 0xcd, 0x33, 0x2b, 0x9e, 0x29, 0x4a, 0x83, 0x40, 0x07, 0x4e, + 0x84, 0x62, 0x97, 0x70, 0x3d, 0xea, 0x32, 0xbb, 0x79, 0xc5, 0x20, 0xc9, + 0xe8, 0xbc, 0x53, 0xb0, 0xae, 0x49, 0xc1, 0xef, 0x4d, 0x6f, 0x4c, 0xd3, + 0x59, 0xc8, 0x38, 0x02, 0x90, 0xe4, 0x0a, 0xa4, 0x88, 0x6c, 0x38, 0x1c, + 0x64, 0xd4, 0x88, 0x80, 0xf2, 0x0d, 0x42, 0x5c, 0x28, 0xcb, 0x10, 0x07, + 0xa9, 0xaa, 0xb3, 0xeb, 0x76, 0xd6, 0xe3, 0x6a, 0x9f, 0x31, 0x87, 0xf7, + 0x7a, 0x53, 0x6e, 0xc3, 0x84, 0x5c, 0x9e, 0x86, 0xa8, 0x50, 0x3d, 0x4d, + 0x45, 0x34, 0xb1, 0xc6, 0x32, 0xee, 0x14, 0x7b, 0x9a, 0xe7, 0x27, 0xd7, + 0xae, 0x65, 0x04, 0x46, 0x44, 0x6b, 0xed, 0xd6, 0xb2, 0xe5, 0x9a, 0x59, + 0x9b, 0x2e, 0xec, 0xc4, 0xfb, 0xd4, 0x29, 0x1b, 0x7b, 0x07, 0xd4, 0xea, + 0x25, 0xd6, 0xec, 0xe1, 0x24, 0x02, 0x64, 0x3f, 0xec, 0xd6, 0x7c, 0xfe, + 0x23, 0x94, 0x9c, 0x43, 0x12, 0xa0, 0xf5, 0x3c, 0x9a, 0xa7, 0x65, 0xa4, + 0x5c, 0xdd, 0x60, 0xed, 0xd8, 0xbf, 0xde, 0x6a, 0xdc, 0xb7, 0xf0, 0xfd, + 0xb4, 0x20, 0x34, 0x9f, 0xbc, 0x6f, 0x7e, 0x95, 0x2d, 0xc9, 0xb2, 0x92, + 0xa7, 0x05, 0xdc, 0xc3, 0xfb, 0x5e, 0xa5, 0x7a, 0xd8, 0x53, 0x23, 0x7f, + 0xbb, 0xc0, 0xa9, 0xe2, 0xd0, 0xee, 0xe7, 0x3b, 0xa5, 0x21, 0x3e, 0xa7, + 0x26, 0xba, 0x78, 0xe3, 0x48, 0x97, 0x08, 0xa1, 0x47, 0xb0, 0xa7, 0xee, + 0x6e, 0xd4, 0xd4, 0x3b, 0x93, 0x2a, 0xef, 0xec, 0xe8, 0x63, 0xc1, 0xe1, + 0xeb, 0x64, 0xc1, 0x90, 0xb3, 0x9f, 0x43, 0xd2, 0xb4, 0x23, 0xb3, 0x82, + 0x11, 0x84, 0x89, 0x47, 0xe1, 0x53, 0xe4, 0x91, 0x47, 0x00, 0x72, 0x6a, + 0xec, 0x91, 0x93, 0x93, 0x96, 0xec, 0x4d, 0xa3, 0xb5, 0x01, 0x29, 0x37, + 0x01, 0xd3, 0x14, 0x85, 0xcf, 0xad, 0x56, 0xa4, 0x3b, 0x0e, 0x20, 0x0a, + 0x69, 0x22, 0x9a, 0x58, 0xfa, 0x51, 0x82, 0x69, 0xd8, 0x57, 0x17, 0x22, + 0x90, 0x9a, 0x31, 0x49, 0x40, 0x83, 0x34, 0x66, 0x90, 0xfb, 0xd2, 0x33, + 0x22, 0x29, 0x66, 0x20, 0x01, 0xdc, 0xd3, 0x10, 0xb9, 0xf5, 0xa8, 0x6e, + 0x2e, 0xe1, 0xb5, 0x4d, 0xf2, 0xb8, 0x51, 0xe9, 0xdc, 0xd6, 0x55, 0xfe, + 0xbf, 0x1c, 0x79, 0x4b, 0x6f, 0x99, 0xbf, 0xbc, 0x7a, 0x57, 0x3d, 0x3d, + 0xcc, 0xb7, 0x0f, 0xbe, 0x47, 0x2c, 0x7d, 0xea, 0x1c, 0xd2, 0xd8, 0xe8, + 0xa7, 0x87, 0x72, 0xd5, 0x9a, 0x7a, 0x86, 0xb5, 0x2d, 0xc9, 0x29, 0x0e, + 0x52, 0x3f, 0xd4, 0xd6, 0x5a, 0xa3, 0xc8, 0xe1, 0x54, 0x16, 0x63, 0xd0, + 0x0a, 0x5b, 0x78, 0x25, 0xb9, 0x94, 0x47, 0x12, 0x92, 0xc6, 0xba, 0xbd, + 0x37, 0x4a, 0x8e, 0xc9, 0x77, 0x36, 0x1a, 0x52, 0x39, 0x3e, 0x95, 0x29, + 0x39, 0x6e, 0x6f, 0x29, 0x46, 0x92, 0xb2, 0x2b, 0xe9, 0x7a, 0x42, 0xdb, + 0x81, 0x2c, 0xe3, 0x74, 0x9d, 0x87, 0xa5, 0x6b, 0xd2, 0xfe, 0x14, 0x83, + 0x8a, 0xd5, 0x59, 0x1c, 0x52, 0x93, 0x93, 0xbb, 0x17, 0x1d, 0xe9, 0x37, + 0x52, 0xe4, 0x77, 0x34, 0xdc, 0xad, 0x32, 0x43, 0x39, 0xeb, 0x4a, 0x08, + 0x3d, 0x29, 0x30, 0x0f, 0x7a, 0x5d, 0xa0, 0x50, 0x02, 0x93, 0x8a, 0x03, + 0x64, 0x51, 0x4c, 0xc1, 0xa4, 0x07, 0x3f, 0xe2, 0x78, 0x79, 0x86, 0x60, + 0x3f, 0xd9, 0x35, 0xce, 0x57, 0x67, 0xad, 0xc3, 0xe7, 0x69, 0x92, 0x71, + 0x92, 0xbf, 0x30, 0xae, 0x2b, 0x35, 0x85, 0x45, 0xa9, 0xe8, 0xe1, 0x65, + 0x78, 0x5b, 0xb1, 0xbb, 0xe1, 0xfd, 0x47, 0xc8, 0x9b, 0xec, 0xf2, 0x9f, + 0x91, 0xfe, 0xef, 0xb1, 0xae, 0xa7, 0x70, 0xaf, 0x3a, 0x57, 0x2a, 0x41, + 0x07, 0x04, 0x57, 0x61, 0xa4, 0x6a, 0x02, 0xf6, 0xd8, 0x06, 0x23, 0xcd, + 0x4e, 0x1b, 0xdf, 0xde, 0xae, 0x9c, 0xba, 0x19, 0x62, 0xa9, 0x59, 0xf3, + 0xa3, 0x50, 0xb0, 0xed, 0x4d, 0xde, 0x3d, 0x29, 0xc0, 0x0a, 0x69, 0x51, + 0x5a, 0x1c, 0x86, 0x6e, 0xa1, 0xa4, 0x43, 0x78, 0x0b, 0xc7, 0x84, 0x97, + 0xf4, 0x35, 0xcc, 0x5c, 0x5b, 0x49, 0x6d, 0x21, 0x8e, 0x55, 0x20, 0x8a, + 0xee, 0x00, 0x1e, 0x95, 0x0d, 0xd5, 0x9c, 0x37, 0x91, 0x94, 0x95, 0x7e, + 0x87, 0xb8, 0xa8, 0x94, 0x13, 0xd8, 0xda, 0x95, 0x77, 0x0d, 0x1e, 0xc7, + 0x29, 0x67, 0xa9, 0xdc, 0x59, 0x9c, 0x2b, 0x6e, 0x4f, 0xee, 0x9a, 0xe8, + 0xac, 0xf5, 0x6b, 0x6b, 0xb0, 0x06, 0x76, 0x49, 0xfd, 0xd6, 0xac, 0x0d, + 0x43, 0x4a, 0x9a, 0xc9, 0x89, 0xc1, 0x68, 0xbb, 0x30, 0xfe, 0xb5, 0x9a, + 0x5b, 0x69, 0xc8, 0x3c, 0xd6, 0x6a, 0x4e, 0x3a, 0x33, 0xa9, 0xd2, 0x85, + 0x55, 0x78, 0x9d, 0xf8, 0x34, 0xed, 0xab, 0x8a, 0xe4, 0x2c, 0xf5, 0xab, + 0x8b, 0x7c, 0x2b, 0x9f, 0x31, 0x3d, 0x0f, 0x5a, 0xe8, 0x2d, 0x35, 0x4b, + 0x7b, 0xb5, 0x01, 0x5f, 0x6b, 0xff, 0x00, 0x74, 0xf5, 0xad, 0x54, 0x93, + 0x39, 0x2a, 0x50, 0x94, 0x37, 0x2f, 0x15, 0xa6, 0xe6, 0x95, 0x5e, 0x9c, + 0x40, 0x3d, 0x6a, 0x8c, 0x44, 0xa4, 0xcd, 0x2e, 0xdc, 0x52, 0x60, 0xd0, + 0x31, 0x69, 0x73, 0x8e, 0x94, 0xdc, 0x1a, 0x30, 0x68, 0x01, 0xdb, 0xb1, + 0x4e, 0xc8, 0x61, 0x82, 0x29, 0x9d, 0x29, 0x41, 0xe6, 0x80, 0x23, 0x92, + 0xd2, 0x09, 0x47, 0xcd, 0x1a, 0xfe, 0x55, 0x4a, 0x5d, 0x21, 0x73, 0x98, + 0xd8, 0x83, 0xe8, 0x6b, 0x4b, 0x34, 0xf0, 0x45, 0x4b, 0x49, 0x95, 0x19, + 0x49, 0x6c, 0xce, 0x7d, 0xed, 0x2e, 0x61, 0x39, 0x00, 0xe3, 0xd4, 0x52, + 0xa5, 0xe4, 0xd1, 0x1c, 0x6e, 0x3f, 0x8d, 0x6f, 0xe3, 0x3d, 0xaa, 0x19, + 0xac, 0xa1, 0x9c, 0x7c, 0xcb, 0xcf, 0xa8, 0xa8, 0x70, 0xec, 0x6a, 0xaa, + 0xa7, 0xf1, 0x23, 0x3d, 0x35, 0x13, 0xfc, 0x6b, 0x9f, 0xa5, 0x59, 0x8e, + 0xee, 0x29, 0x07, 0x0e, 0x33, 0xe8, 0x6a, 0xb4, 0xba, 0x4b, 0xa1, 0xcc, + 0x67, 0x70, 0xf4, 0xaa, 0x4f, 0x1b, 0xc4, 0xd8, 0x65, 0x20, 0xd4, 0xf3, + 0x49, 0x6e, 0x5a, 0xa7, 0x09, 0xec, 0x6e, 0x87, 0xcf, 0xff, 0x00, 0x5a, + 0x9e, 0x08, 0x3d, 0x2b, 0x09, 0x26, 0x95, 0x3a, 0x39, 0x15, 0x6a, 0x3d, + 0x45, 0x87, 0x12, 0x0c, 0xfb, 0x8a, 0x6a, 0xa2, 0x25, 0xd1, 0x92, 0xd8, + 0xd4, 0x06, 0x97, 0xad, 0x56, 0x8a, 0xea, 0x29, 0x08, 0x01, 0xb0, 0x7d, + 0xea, 0xe0, 0x03, 0xae, 0x78, 0xab, 0xbd, 0xcc, 0xec, 0xd6, 0xe3, 0xe3, + 0x1c, 0x75, 0xa5, 0xce, 0x4f, 0x26, 0x98, 0xcf, 0xb4, 0x71, 0xcd, 0x0a, + 0xf9, 0xeb, 0xd2, 0xa5, 0x94, 0x89, 0x94, 0x7e, 0x55, 0x22, 0xe0, 0x77, + 0xa8, 0x54, 0xa8, 0xa9, 0x54, 0xa9, 0x1d, 0xe9, 0x0d, 0x12, 0xa8, 0x1d, + 0x72, 0x29, 0x77, 0x80, 0x7a, 0x53, 0x38, 0xe9, 0x47, 0x1f, 0x85, 0x4b, + 0x2d, 0x13, 0xa4, 0xaa, 0x3a, 0xad, 0x4e, 0x36, 0x11, 0x91, 0xf9, 0x55, + 0x40, 0x80, 0xf7, 0x14, 0xa1, 0x3e, 0x6f, 0x94, 0x9a, 0xc2, 0x71, 0xbe, + 0xc7, 0x44, 0x25, 0x6d, 0xd1, 0x67, 0x9c, 0x91, 0x9c, 0x0a, 0x6c, 0xaa, + 0x71, 0xd3, 0x8a, 0x69, 0xdf, 0x8c, 0xd2, 0xef, 0x69, 0x07, 0x20, 0x8a, + 0xcd, 0x27, 0x73, 0x67, 0x25, 0x62, 0xa0, 0xc2, 0xb9, 0x04, 0x63, 0xbe, + 0x69, 0x5d, 0x55, 0x97, 0xa7, 0xe3, 0x52, 0xba, 0x1d, 0xc0, 0xd3, 0x8c, + 0x79, 0x1c, 0x9f, 0xc2, 0xb6, 0xe4, 0x52, 0xdc, 0xe6, 0xe7, 0x94, 0x5e, + 0x86, 0x54, 0xf0, 0xc3, 0x3a, 0x94, 0x74, 0x1f, 0x5a, 0xe7, 0xf5, 0x4d, + 0x12, 0x22, 0x37, 0x06, 0x04, 0x7d, 0x6b, 0xad, 0x96, 0xdf, 0x20, 0xe1, + 0x71, 0x59, 0xd7, 0x36, 0xb2, 0x67, 0xb6, 0xda, 0x5c, 0xb2, 0x8e, 0xdb, + 0x0e, 0xf1, 0xa9, 0xbe, 0x8c, 0xe2, 0xd6, 0xd1, 0x62, 0x2c, 0xa2, 0x4f, + 0x94, 0xf4, 0x04, 0x74, 0xa6, 0x8b, 0x44, 0x1d, 0xd8, 0xfd, 0x3a, 0x56, + 0xf5, 0xcd, 0xa2, 0xef, 0xe4, 0xfe, 0x35, 0x9d, 0x2d, 0xa9, 0x4e, 0x54, + 0xfe, 0x55, 0xac, 0x66, 0x61, 0x3a, 0x6d, 0x10, 0xc2, 0x3c, 0x90, 0x40, + 0x8f, 0x72, 0xfa, 0x56, 0x7b, 0x5b, 0xcc, 0x2f, 0x1a, 0x50, 0xfb, 0x63, + 0x27, 0x84, 0xec, 0x2b, 0xa4, 0xd3, 0x6f, 0xec, 0x2d, 0xb4, 0xfb, 0xc8, + 0xae, 0x60, 0x32, 0xce, 0xe3, 0x11, 0x30, 0xe8, 0x0d, 0x62, 0xb3, 0xa9, + 0xfb, 0xe4, 0xfe, 0x34, 0xe9, 0xcd, 0x4e, 0x4d, 0x35, 0x6b, 0x0e, 0xad, + 0x3e, 0x48, 0x46, 0x51, 0x95, 0xef, 0xbf, 0x91, 0x14, 0x0d, 0xb2, 0xe6, + 0x57, 0x63, 0x8c, 0xe0, 0x0c, 0x55, 0xa3, 0x74, 0x7a, 0x20, 0x04, 0xd6, + 0x1c, 0xf7, 0x2e, 0xf7, 0xc6, 0x28, 0x19, 0x76, 0x82, 0x0e, 0x73, 0x5a, + 0xe9, 0x1b, 0x00, 0x19, 0x06, 0x5b, 0x1c, 0xfa, 0x56, 0xcb, 0xc8, 0xe6, + 0x7e, 0x64, 0xa7, 0x73, 0x72, 0xe7, 0x26, 0x8e, 0x9d, 0x05, 0x39, 0x44, + 0x84, 0x7c, 0xe0, 0x67, 0xda, 0x82, 0x0d, 0x31, 0x5c, 0x41, 0x9c, 0x53, + 0x7a, 0xf5, 0x14, 0xf5, 0xe0, 0xf3, 0x41, 0x6e, 0xc2, 0x80, 0x13, 0xe5, + 0x03, 0xda, 0x9a, 0xef, 0x1a, 0x8c, 0xe0, 0x66, 0x98, 0xc0, 0x9e, 0x5a, + 0xa2, 0x2f, 0xce, 0x00, 0x34, 0x0c, 0x52, 0xdb, 0xdb, 0x34, 0xbb, 0x97, + 0x1c, 0xf4, 0xab, 0x31, 0x59, 0x12, 0xaa, 0xf2, 0x30, 0x55, 0x3d, 0xb3, + 0xcd, 0x17, 0x16, 0xf1, 0x08, 0xc9, 0x8c, 0x90, 0x07, 0xaf, 0x7a, 0x40, + 0x55, 0x18, 0x7e, 0x4f, 0x4f, 0x4a, 0x70, 0x0a, 0x06, 0x17, 0x8a, 0x88, + 0x0c, 0x76, 0xa9, 0x62, 0x85, 0xa6, 0x70, 0x88, 0x32, 0x4d, 0x00, 0x37, + 0x71, 0x1d, 0x0d, 0x38, 0x4b, 0xc6, 0x39, 0xcd, 0x49, 0x25, 0x93, 0xc4, + 0x4e, 0xec, 0x10, 0x3a, 0xe0, 0xd5, 0x76, 0xc0, 0xee, 0x69, 0x6a, 0x32, + 0x55, 0x24, 0xfd, 0x29, 0xcc, 0x99, 0x04, 0xe6, 0xa1, 0x53, 0x91, 0xc1, + 0xa9, 0x13, 0x27, 0x39, 0xed, 0x40, 0x11, 0x17, 0x5c, 0x73, 0x4a, 0x1f, + 0xb0, 0xa4, 0x60, 0x23, 0x14, 0xd1, 0x72, 0x17, 0xf8, 0x33, 0x48, 0x0b, + 0x6b, 0xb8, 0xae, 0x31, 0x51, 0xbc, 0x6d, 0x9c, 0x9e, 0x95, 0x2c, 0x72, + 0x7c, 0xa0, 0xfa, 0xf6, 0xa9, 0x76, 0x0b, 0x88, 0x64, 0x40, 0x70, 0x4a, + 0x9c, 0x55, 0x35, 0xa1, 0x29, 0xea, 0x5b, 0xd1, 0xe7, 0x36, 0x66, 0x41, + 0x27, 0x08, 0xd5, 0x06, 0xa1, 0xa9, 0x35, 0xc0, 0xcc, 0x63, 0x64, 0x7d, + 0xb8, 0xe4, 0xd7, 0x36, 0xf7, 0x33, 0x04, 0x28, 0xd2, 0x37, 0x1c, 0x63, + 0x35, 0xab, 0x24, 0xe8, 0x74, 0xdb, 0x77, 0x61, 0xf3, 0x01, 0xb4, 0xe3, + 0xbd, 0x46, 0xcc, 0xd5, 0x6c, 0x31, 0x66, 0xdc, 0xd8, 0x39, 0xcf, 0xae, + 0x31, 0x57, 0x6d, 0x24, 0x64, 0xde, 0x63, 0xf9, 0x9c, 0x0c, 0x80, 0x2b, + 0x24, 0xdd, 0x85, 0x07, 0x0b, 0x49, 0xfd, 0xa3, 0x24, 0x64, 0x18, 0xc8, + 0x43, 0xeb, 0x4e, 0x4d, 0xb5, 0xa0, 0xa2, 0x95, 0xf5, 0x2f, 0x4d, 0xa9, + 0x3e, 0xa7, 0xa9, 0x47, 0x14, 0xb2, 0x98, 0xd1, 0x78, 0x1c, 0xf4, 0xa4, + 0xbd, 0xb5, 0x6b, 0x79, 0xb6, 0x96, 0xdc, 0x3f, 0x85, 0x83, 0x70, 0x6b, + 0x02, 0x79, 0xa4, 0x7b, 0xd3, 0x2b, 0x1c, 0xb3, 0x36, 0x49, 0x1c, 0x55, + 0xa9, 0x6e, 0x99, 0x90, 0x0c, 0x93, 0x49, 0x27, 0xb8, 0xdb, 0x8d, 0xac, + 0x68, 0x6e, 0x20, 0x02, 0xef, 0x8c, 0x54, 0xd1, 0x5d, 0xc7, 0x29, 0x11, + 0xa8, 0xf9, 0xc7, 0x7f, 0x5a, 0xc2, 0x67, 0x72, 0xdc, 0x93, 0x56, 0x6c, + 0x58, 0x89, 0xf2, 0xc6, 0xab, 0x76, 0x4e, 0xc9, 0x9b, 0x62, 0x36, 0x3d, + 0xe9, 0xc2, 0x36, 0x1d, 0xc6, 0x2a, 0x24, 0x98, 0x0f, 0xe2, 0xaa, 0x57, + 0xb3, 0xca, 0x6f, 0x2d, 0xcc, 0x45, 0xb6, 0x8f, 0xbc, 0x07, 0x4a, 0xd2, + 0x56, 0x4a, 0xe4, 0x46, 0x32, 0x93, 0xb2, 0x34, 0xf6, 0x62, 0x9a, 0x48, + 0x1d, 0x6a, 0xb1, 0xb9, 0x61, 0xde, 0x98, 0xd7, 0x2c, 0xdd, 0x38, 0xac, + 0xe5, 0x56, 0x28, 0xe8, 0x86, 0x12, 0xa4, 0xb7, 0xd0, 0x9d, 0xa5, 0x51, + 0xda, 0x9a, 0x2e, 0x42, 0x3a, 0xb0, 0xec, 0x73, 0x50, 0x20, 0x79, 0x58, + 0x2a, 0x82, 0xc4, 0xf6, 0x15, 0xa9, 0x69, 0xa1, 0x4f, 0x29, 0x0d, 0x2f, + 0xee, 0xd7, 0xf5, 0xac, 0x65, 0x39, 0x4b, 0x44, 0x75, 0x46, 0x85, 0x3a, + 0x5a, 0xc9, 0xea, 0x67, 0x3b, 0xb4, 0xd2, 0xb1, 0x19, 0xf9, 0x8e, 0x71, + 0x5a, 0x56, 0x7a, 0x1d, 0xc5, 0xc6, 0x1a, 0x41, 0xe5, 0xa7, 0xa9, 0xeb, + 0x5b, 0x96, 0xba, 0x65, 0xb5, 0xa8, 0x05, 0x13, 0x2f, 0xfd, 0xe6, 0xab, + 0x80, 0xbf, 0x71, 0x44, 0x69, 0xf7, 0x22, 0xa6, 0x23, 0xf9, 0x51, 0x5e, + 0xd3, 0x4d, 0x82, 0xd0, 0x0d, 0x8b, 0x96, 0xfe, 0xf1, 0xab, 0xe3, 0x8a, + 0x8c, 0x31, 0xc5, 0x28, 0x73, 0xe9, 0x57, 0x63, 0x9d, 0xca, 0xee, 0xec, + 0x9b, 0x70, 0xef, 0x4a, 0x4a, 0x9e, 0xb5, 0x0e, 0xec, 0xf6, 0xc5, 0x2e, + 0x32, 0x38, 0x34, 0x58, 0x57, 0x24, 0x38, 0x3c, 0x0a, 0x36, 0x28, 0xeb, + 0xcd, 0x46, 0x0b, 0x0e, 0xb4, 0xbb, 0x81, 0xa6, 0x17, 0x1f, 0xb4, 0x76, + 0x34, 0xa1, 0x0e, 0x7a, 0xd3, 0x33, 0xef, 0x4a, 0x18, 0xe7, 0xad, 0x21, + 0x86, 0x06, 0xec, 0x63, 0x06, 0x86, 0xc0, 0x15, 0x1b, 0xcb, 0xf3, 0x63, + 0xbd, 0x01, 0xb2, 0x72, 0xc6, 0x9f, 0x2f, 0x52, 0x79, 0xba, 0x0e, 0x0a, + 0x5b, 0xad, 0x0c, 0x31, 0xc5, 0x51, 0xbc, 0xd6, 0xad, 0x6d, 0x01, 0x5d, + 0xfb, 0x9f, 0xd1, 0x6b, 0x9f, 0xbb, 0xd7, 0xee, 0x6e, 0x09, 0x11, 0x9f, + 0x2d, 0x7d, 0xba, 0xd1, 0x74, 0xb7, 0x2a, 0x34, 0xa5, 0x2d, 0x8e, 0x8a, + 0xe2, 0xf6, 0xde, 0xd4, 0x66, 0x59, 0x06, 0x7d, 0x33, 0xcd, 0x63, 0xdc, + 0xf8, 0x80, 0x9c, 0x8b, 0x74, 0xc7, 0xbb, 0x56, 0x0b, 0x3b, 0x3b, 0x12, + 0xcc, 0x49, 0x3d, 0x49, 0xa4, 0xce, 0x4f, 0x14, 0x9c, 0xd9, 0xd1, 0x0c, + 0x34, 0x56, 0xe5, 0xa9, 0x6f, 0x27, 0xb8, 0x39, 0x92, 0x46, 0x3e, 0xd9, + 0xa8, 0x7e, 0x66, 0x38, 0x50, 0x49, 0xab, 0x96, 0x3a, 0x5d, 0xc5, 0xeb, + 0x7c, 0xab, 0xb5, 0x3f, 0xbc, 0x6b, 0xa6, 0xb2, 0xd2, 0x6d, 0xec, 0xc0, + 0x21, 0x77, 0xc9, 0xfd, 0xe6, 0xa8, 0xb3, 0x65, 0xca, 0xa4, 0x29, 0xe8, + 0x8c, 0x1b, 0x3d, 0x16, 0xea, 0xe7, 0x0c, 0xe3, 0xcb, 0x4f, 0x53, 0xd6, + 0xb7, 0x2d, 0xb4, 0xbb, 0x6b, 0x5e, 0x42, 0xee, 0x6f, 0xef, 0x1a, 0xd0, + 0x39, 0x15, 0x19, 0x35, 0xb4, 0x62, 0x91, 0xc7, 0x56, 0xac, 0xa5, 0xb8, + 0xf8, 0xc6, 0x3a, 0x54, 0xa0, 0xe2, 0xa1, 0x53, 0x8a, 0x76, 0xfa, 0x1a, + 0x22, 0x2f, 0x42, 0x4c, 0x8f, 0x4a, 0x29, 0x82, 0x41, 0x9e, 0x45, 0x38, + 0xba, 0xfa, 0xd2, 0x2a, 0xe3, 0xb7, 0x0f, 0x4a, 0x6b, 0x0d, 0xd4, 0x99, + 0x53, 0xfc, 0x46, 0x90, 0xb6, 0x3a, 0x50, 0x90, 0x36, 0x34, 0xc7, 0x48, + 0x17, 0x8e, 0x45, 0x2f, 0x99, 0x4b, 0xf7, 0xba, 0x66, 0xab, 0x52, 0x34, + 0x13, 0xa5, 0x1d, 0x68, 0x6c, 0x0e, 0xb9, 0xa6, 0xb3, 0x05, 0x19, 0x62, + 0x00, 0xf7, 0xa7, 0xa2, 0x0b, 0x36, 0x3b, 0xe9, 0x4d, 0x39, 0xfa, 0x0a, + 0xca, 0xbc, 0xd7, 0x2d, 0xad, 0xb2, 0xb1, 0x93, 0x23, 0xfb, 0x74, 0xac, + 0x1b, 0xbd, 0x66, 0xee, 0xeb, 0x23, 0x7e, 0xc4, 0xfe, 0xea, 0xd4, 0xba, + 0x89, 0x1b, 0x43, 0x0d, 0x39, 0x9b, 0xf7, 0xda, 0xcd, 0xbd, 0xa6, 0x54, + 0x1f, 0x32, 0x4f, 0x41, 0xda, 0xb9, 0xab, 0xcd, 0x4e, 0xe2, 0xf1, 0x8e, + 0xf7, 0xc2, 0x76, 0x51, 0xd2, 0xaa, 0x12, 0x4f, 0x53, 0x4d, 0xc7, 0x38, + 0xac, 0x9c, 0xdb, 0x3b, 0x61, 0x42, 0x10, 0xf5, 0x1d, 0x9f, 0x5a, 0xb5, + 0x63, 0xa7, 0xcd, 0x7f, 0x20, 0x11, 0xa9, 0x0a, 0x3a, 0xb1, 0xe8, 0x2a, + 0xf6, 0x99, 0xa1, 0x49, 0x73, 0x89, 0x67, 0xf9, 0x22, 0xf4, 0xee, 0x6b, + 0xa8, 0x86, 0x08, 0xed, 0xe3, 0x11, 0xc4, 0xa1, 0x54, 0x76, 0x14, 0xe3, + 0x1e, 0xe6, 0x55, 0x6b, 0xa5, 0xa4, 0x4a, 0xf6, 0x36, 0x10, 0x58, 0xc4, + 0x15, 0x17, 0x2d, 0xdd, 0x8f, 0x53, 0x56, 0xf8, 0xa0, 0xd3, 0x76, 0x93, + 0xce, 0x78, 0xad, 0x4e, 0x17, 0x76, 0x29, 0x34, 0x84, 0x83, 0x49, 0xb7, + 0xde, 0x97, 0x8a, 0x62, 0xb0, 0xcc, 0x0c, 0xd2, 0xe0, 0x7a, 0x52, 0xf7, + 0xa5, 0xc5, 0x02, 0x01, 0x81, 0x4b, 0x91, 0x4d, 0x38, 0x5e, 0x69, 0x9e, + 0x67, 0x34, 0xc0, 0x93, 0x34, 0x66, 0x90, 0x30, 0xa5, 0x38, 0xed, 0x40, + 0x58, 0x8a, 0x74, 0xf3, 0x21, 0x74, 0xfe, 0xf0, 0x22, 0xbc, 0xf6, 0x58, + 0xda, 0x29, 0x9d, 0x0f, 0x55, 0x24, 0x1a, 0xf4, 0x6c, 0xd7, 0x15, 0xae, + 0xdb, 0xf9, 0x1a, 0x93, 0x91, 0xc2, 0xbf, 0xcc, 0x2b, 0x2a, 0x9b, 0x5c, + 0xec, 0xc1, 0xca, 0xd2, 0x68, 0xca, 0xef, 0x56, 0xf4, 0xfb, 0xc6, 0xb3, + 0xba, 0x49, 0x47, 0xdd, 0xe8, 0xc3, 0xd4, 0x55, 0x5c, 0x0a, 0x51, 0x8a, + 0xc5, 0x3b, 0x1e, 0x84, 0xa2, 0xa4, 0xac, 0xcf, 0x43, 0x86, 0x44, 0x9a, + 0x25, 0x91, 0x0e, 0x55, 0x86, 0x45, 0x48, 0x71, 0x5c, 0xb7, 0x87, 0xf5, + 0x31, 0x1b, 0xfd, 0x96, 0x53, 0xf2, 0xb7, 0xdc, 0x27, 0xb1, 0xf4, 0xae, + 0x9f, 0x24, 0xfd, 0x2b, 0xa6, 0x32, 0x4d, 0x5c, 0xf1, 0xea, 0xd3, 0x70, + 0x95, 0x98, 0x67, 0xda, 0x8e, 0x3a, 0x52, 0x01, 0x45, 0x51, 0x9d, 0x84, + 0x65, 0x0c, 0xa5, 0x58, 0x02, 0x0f, 0x63, 0x58, 0x3a, 0x8f, 0x87, 0xc3, + 0xe6, 0x5b, 0x5e, 0x0f, 0x5d, 0x9f, 0xe1, 0x5b, 0xe0, 0xf6, 0xa5, 0xa9, + 0x69, 0x3d, 0xcb, 0x84, 0xe5, 0x07, 0x78, 0x9e, 0x7c, 0xf1, 0x49, 0x13, + 0x94, 0x75, 0x2a, 0xc3, 0xb1, 0xa4, 0x56, 0x20, 0xf1, 0x90, 0x6b, 0xb6, + 0xbb, 0xd3, 0xe0, 0xbc, 0x5c, 0x48, 0xbf, 0x37, 0x66, 0x1d, 0x45, 0x73, + 0x77, 0xda, 0x2d, 0xc5, 0xab, 0x16, 0x50, 0x5e, 0x3f, 0x51, 0xda, 0xb2, + 0x70, 0x68, 0xef, 0xa7, 0x88, 0x8c, 0xf4, 0x96, 0x8c, 0x5b, 0x4d, 0x66, + 0xe6, 0xdf, 0x0a, 0xe7, 0xcc, 0x4f, 0x43, 0xd6, 0xb7, 0x6d, 0x35, 0x8b, + 0x5b, 0x80, 0x01, 0x6d, 0x8f, 0xe8, 0xd5, 0xc8, 0x63, 0x07, 0x93, 0x41, + 0x38, 0xe8, 0x68, 0x53, 0x68, 0x73, 0xc3, 0xc2, 0x5b, 0x1e, 0x80, 0xa7, + 0x23, 0x83, 0x91, 0x4f, 0x0b, 0x91, 0xd2, 0xb8, 0x9b, 0x5d, 0x52, 0xe6, + 0xd7, 0x1b, 0x24, 0x25, 0x7f, 0xba, 0x79, 0x15, 0xbb, 0x69, 0xe2, 0x38, + 0x5c, 0x6d, 0xb8, 0x52, 0x87, 0xfb, 0xc3, 0x91, 0x5a, 0x2a, 0x89, 0x9c, + 0x93, 0xc3, 0x4e, 0x3e, 0x66, 0xc6, 0xdc, 0x50, 0x01, 0xcd, 0x56, 0x93, + 0x55, 0xb4, 0x8e, 0x1f, 0x37, 0xce, 0x52, 0xa7, 0xa0, 0x07, 0x93, 0x58, + 0xb7, 0x9e, 0x22, 0x92, 0x4c, 0xa5, 0xb2, 0xec, 0x1e, 0xbd, 0xe9, 0xb9, + 0x24, 0x44, 0x29, 0x4a, 0x4f, 0x44, 0x74, 0x7b, 0x73, 0x48, 0x40, 0x15, + 0x81, 0xa7, 0x6b, 0xa4, 0x62, 0x2b, 0xa3, 0x91, 0xd9, 0xeb, 0x70, 0x15, + 0x70, 0x18, 0x30, 0x2a, 0x7a, 0x11, 0x49, 0x49, 0x30, 0x9d, 0x29, 0x41, + 0xd9, 0x8e, 0xe7, 0xda, 0x8c, 0xf3, 0xe9, 0x49, 0xc7, 0xad, 0x2a, 0xe0, + 0xf6, 0xa7, 0x72, 0x79, 0x47, 0xab, 0xd3, 0x83, 0x83, 0x51, 0xe3, 0xda, + 0x81, 0xc7, 0x5a, 0x57, 0x0b, 0x12, 0xf3, 0x51, 0xcb, 0x02, 0xcc, 0xb8, + 0x65, 0xcd, 0x38, 0x1f, 0x7a, 0x76, 0xe3, 0x8c, 0x50, 0x08, 0xc9, 0x9f, + 0x4c, 0x70, 0x37, 0x44, 0x4f, 0xd0, 0xd5, 0x06, 0x8d, 0xe3, 0x6c, 0x30, + 0xc1, 0xf7, 0xae, 0x9b, 0x6b, 0x7a, 0xd4, 0x33, 0x5b, 0x2c, 0xcb, 0x89, + 0x10, 0x1f, 0x7a, 0xcd, 0xc1, 0x74, 0x37, 0x8d, 0x56, 0xb7, 0x39, 0xfd, + 0xcd, 0xeb, 0x56, 0xa1, 0xbe, 0x92, 0x21, 0x82, 0xd9, 0x1e, 0x86, 0x96, + 0xeb, 0x4d, 0x96, 0x21, 0xba, 0x2f, 0x99, 0x7d, 0x3b, 0xd5, 0x25, 0x7d, + 0xa7, 0x05, 0x79, 0xac, 0xdd, 0xe2, 0x74, 0x2e, 0x49, 0xa3, 0x7e, 0xdf, + 0x51, 0x81, 0xc0, 0x0d, 0xf2, 0x9f, 0x7a, 0xba, 0xa2, 0x29, 0x06, 0x41, + 0x04, 0x7b, 0x57, 0x2e, 0x1c, 0x7a, 0x62, 0xa6, 0x8a, 0xe5, 0xe3, 0x3f, + 0x29, 0x22, 0x9a, 0xa8, 0xfa, 0x91, 0x2a, 0x0b, 0xec, 0x9d, 0x2a, 0xa2, + 0x54, 0x87, 0x68, 0xac, 0x8b, 0x5d, 0x49, 0x18, 0x6d, 0x93, 0x39, 0xf5, + 0xad, 0x04, 0x91, 0x1c, 0x65, 0x5c, 0x1a, 0xb5, 0x24, 0xf6, 0x31, 0x70, + 0x71, 0xdc, 0x9b, 0x70, 0xa5, 0x0e, 0xb8, 0xc1, 0x38, 0xa8, 0xb3, 0xc6, + 0x0d, 0x0c, 0xb8, 0x50, 0x4f, 0x22, 0x81, 0x16, 0xa3, 0x64, 0xc7, 0x5c, + 0xd4, 0xab, 0x2a, 0xaf, 0x04, 0xd5, 0x20, 0xca, 0x31, 0x8f, 0xd2, 0x9d, + 0xb8, 0x81, 0x9c, 0xf1, 0x50, 0xcd, 0x13, 0xb1, 0x77, 0xcd, 0x43, 0xc6, + 0xd2, 0x45, 0x30, 0xcc, 0x01, 0xc0, 0x18, 0x15, 0x53, 0xcd, 0x38, 0xe3, + 0x34, 0xc7, 0x62, 0x47, 0x20, 0xd2, 0x51, 0x07, 0x3b, 0x96, 0x9e, 0x6d, + 0xc0, 0x80, 0x3f, 0x1a, 0x60, 0x94, 0xe3, 0xaf, 0x35, 0x5b, 0x79, 0xc6, + 0x00, 0xc5, 0x44, 0xae, 0xc1, 0xc8, 0xce, 0x33, 0x56, 0x91, 0x0d, 0x96, + 0xde, 0x53, 0xdc, 0xd5, 0x77, 0x60, 0x7a, 0xe6, 0x9a, 0xc7, 0xea, 0x69, + 0x99, 0xca, 0xf3, 0x4c, 0x57, 0x2b, 0xcf, 0x6e, 0x8e, 0x0e, 0x32, 0x2b, + 0x2e, 0x78, 0x64, 0x87, 0x39, 0x19, 0x1e, 0xb5, 0xb2, 0x5b, 0x1d, 0xaa, + 0x37, 0x2a, 0xc3, 0x91, 0x9a, 0x5c, 0xa8, 0x6a, 0x6d, 0x1c, 0xc4, 0xeb, + 0xba, 0x55, 0x25, 0x40, 0xf5, 0xc5, 0x56, 0x9e, 0x16, 0xc1, 0x2a, 0x37, + 0x7b, 0x57, 0x47, 0x3d, 0x8c, 0x52, 0xf2, 0x3e, 0x46, 0xf6, 0xac, 0xf9, + 0xac, 0xa6, 0x8f, 0x9c, 0x6e, 0x5f, 0x51, 0x43, 0x83, 0x45, 0xa9, 0x42, + 0x7e, 0xa7, 0x3b, 0x06, 0xc8, 0xee, 0x77, 0xc9, 0x0e, 0xd2, 0x38, 0xc1, + 0x15, 0xb3, 0x0c, 0xa9, 0x22, 0xfc, 0xa4, 0x0f, 0x6a, 0x6b, 0x2a, 0xf4, + 0x65, 0x07, 0xeb, 0x51, 0x98, 0xa3, 0x27, 0xe5, 0x1b, 0x4d, 0x54, 0x6a, + 0x72, 0xe8, 0xc9, 0x9e, 0x1d, 0xcb, 0x54, 0xc9, 0xa5, 0x92, 0x38, 0xbe, + 0xf3, 0x73, 0xe8, 0x2a, 0xab, 0x4d, 0xe6, 0x1e, 0x0e, 0x07, 0xeb, 0x4e, + 0x68, 0xb1, 0xdb, 0x9f, 0x5a, 0x8b, 0x01, 0x4e, 0x31, 0xcd, 0x68, 0xa4, + 0x9e, 0xc7, 0x3c, 0xa9, 0xca, 0x3b, 0xa1, 0x72, 0x40, 0xe1, 0x8d, 0x30, + 0xca, 0x77, 0x72, 0x33, 0x52, 0x6d, 0x40, 0x9b, 0x98, 0xe3, 0x15, 0x97, + 0x36, 0xad, 0x12, 0x48, 0x55, 0x10, 0x91, 0xea, 0x69, 0x49, 0xd8, 0x22, + 0xae, 0x5f, 0x2e, 0x5c, 0xe0, 0x11, 0x81, 0xef, 0x52, 0xf9, 0xc5, 0x51, + 0x42, 0xc4, 0xa0, 0x8e, 0xfd, 0x6b, 0x14, 0x4c, 0x70, 0x5b, 0xf1, 0xa9, + 0x56, 0xe9, 0x82, 0xe4, 0x39, 0x14, 0x0e, 0xc5, 0xf9, 0x2e, 0x65, 0x4c, + 0xb7, 0x94, 0x08, 0xf5, 0xe9, 0x4c, 0x8e, 0xf8, 0xdc, 0x22, 0xab, 0x75, + 0x07, 0x93, 0x55, 0x26, 0xba, 0x76, 0x84, 0x86, 0x39, 0xaa, 0xf6, 0x8e, + 0x71, 0x82, 0x38, 0xa2, 0xe2, 0x68, 0xd7, 0x2c, 0x06, 0x4f, 0x5c, 0x75, + 0xab, 0x4b, 0x7b, 0x1c, 0x30, 0xa8, 0x87, 0xcb, 0x5c, 0xf5, 0x24, 0x72, + 0x6a, 0x82, 0xdc, 0x47, 0xb7, 0x07, 0x34, 0x17, 0x80, 0x80, 0x37, 0x71, + 0x45, 0xc2, 0xc5, 0xe3, 0x78, 0x19, 0x36, 0x96, 0x5d, 0xcd, 0xe8, 0x6a, + 0x27, 0x5c, 0x0c, 0x91, 0xc5, 0x53, 0x95, 0xa1, 0x58, 0x8b, 0x46, 0x46, + 0xe1, 0x51, 0x47, 0x74, 0xf2, 0xb2, 0xab, 0xc8, 0x42, 0x8a, 0x77, 0x0b, + 0x1a, 0x2a, 0x50, 0x01, 0x51, 0xf9, 0xa0, 0x33, 0x0e, 0x6a, 0x08, 0xdf, + 0xcc, 0x5c, 0x83, 0xc5, 0x48, 0xb1, 0xee, 0x38, 0x26, 0x93, 0xb8, 0x68, + 0x5e, 0x9a, 0xc3, 0x1a, 0x74, 0x77, 0x4d, 0x2a, 0x9d, 0xc7, 0x1b, 0x7b, + 0xd5, 0x01, 0x0e, 0x58, 0x03, 0xd2, 0xa7, 0xb9, 0xbc, 0x12, 0xd9, 0x5b, + 0xc9, 0xe5, 0xb2, 0x03, 0xf2, 0xed, 0xfa, 0x77, 0xa8, 0x56, 0x40, 0x00, + 0xeb, 0x58, 0x61, 0xe5, 0x29, 0x26, 0xe6, 0xfa, 0x9d, 0xf8, 0xe5, 0x4a, + 0xf0, 0xf6, 0x11, 0xb6, 0x9a, 0xfa, 0x96, 0x82, 0x81, 0x8f, 0x6a, 0x7a, + 0x4b, 0xe5, 0x30, 0x65, 0xec, 0x6a, 0x05, 0x94, 0x62, 0x83, 0x20, 0xc7, + 0x50, 0x2b, 0xa9, 0xb8, 0xf7, 0x38, 0x15, 0x39, 0xf6, 0x23, 0xd5, 0xed, + 0x62, 0x74, 0x13, 0xc4, 0x00, 0xdd, 0xf7, 0xb1, 0x55, 0xa5, 0x07, 0xfb, + 0x36, 0x15, 0x07, 0xa1, 0xab, 0x4c, 0xe3, 0xcb, 0xc1, 0x20, 0x9a, 0xaf, + 0x21, 0xdf, 0x08, 0x42, 0x71, 0x83, 0x58, 0xb9, 0x45, 0x75, 0x37, 0x8d, + 0x1a, 0xaf, 0xa1, 0x44, 0x8d, 0xd8, 0xcd, 0x26, 0xc0, 0x7a, 0xf6, 0xab, + 0x02, 0xdd, 0x7b, 0xb1, 0xa7, 0x88, 0x23, 0x1e, 0xf4, 0x9d, 0x58, 0x9a, + 0x47, 0x09, 0x51, 0x95, 0x5a, 0x30, 0x57, 0x71, 0x34, 0x88, 0x19, 0x97, + 0xe5, 0x19, 0xab, 0x81, 0x10, 0x74, 0x51, 0x4b, 0x9c, 0x74, 0x15, 0x2e, + 0xb2, 0xe8, 0x8d, 0x21, 0x81, 0x7f, 0x69, 0x95, 0x96, 0xdd, 0xdb, 0xae, + 0x05, 0x4d, 0x1c, 0x3e, 0x59, 0xce, 0xec, 0xd3, 0xc6, 0x49, 0xab, 0x30, + 0xd8, 0xdc, 0xcf, 0xcc, 0x71, 0x31, 0x1e, 0xb8, 0xe2, 0xa7, 0x9e, 0x4f, + 0x63, 0x6f, 0xab, 0xd2, 0x87, 0xc4, 0x42, 0x08, 0xf7, 0xa5, 0xde, 0x73, + 0x5a, 0xd6, 0xfa, 0x03, 0xb9, 0x1e, 0x7c, 0xa1, 0x07, 0xa0, 0xe6, 0xb6, + 0x6d, 0xb4, 0x7b, 0x2b, 0x60, 0x0f, 0x96, 0x1d, 0xbd, 0x5b, 0x9a, 0x7c, + 0xb2, 0x96, 0xe4, 0xba, 0xf4, 0xa1, 0xa4, 0x11, 0xcc, 0x41, 0x69, 0x71, + 0x73, 0x8f, 0x2e, 0x26, 0x23, 0xd7, 0x1c, 0x56, 0xa5, 0xa6, 0x82, 0x8c, + 0x73, 0x73, 0x2e, 0x0f, 0xf7, 0x45, 0x74, 0x22, 0x35, 0x09, 0x80, 0x30, + 0xbe, 0xd4, 0xd3, 0x0e, 0xe1, 0xc7, 0x35, 0x4a, 0x09, 0x18, 0x4f, 0x13, + 0x39, 0x6d, 0xa0, 0x5a, 0xd9, 0xdb, 0xda, 0xa0, 0x11, 0xc4, 0xa3, 0xdf, + 0xbd, 0x58, 0x00, 0x13, 0x91, 0x51, 0x22, 0x94, 0x1d, 0x71, 0xed, 0x4f, + 0x43, 0xcf, 0x35, 0x68, 0xe7, 0x77, 0x1e, 0x07, 0x1c, 0x50, 0x01, 0xee, + 0x29, 0xc0, 0xfa, 0x52, 0x83, 0xcd, 0x02, 0x18, 0x46, 0x3a, 0xe6, 0x9d, + 0xf2, 0x91, 0xdc, 0x53, 0xf2, 0xa5, 0x7a, 0x53, 0x42, 0xed, 0xef, 0xc5, + 0x17, 0x1d, 0x80, 0x01, 0xd9, 0xa9, 0x79, 0x1d, 0x39, 0xa4, 0xd9, 0x93, + 0x91, 0x40, 0x46, 0x51, 0xd6, 0x80, 0xb0, 0xbb, 0xc8, 0xed, 0x4d, 0xce, + 0x4f, 0x4a, 0x46, 0x6d, 0xbc, 0x11, 0x51, 0xcb, 0x32, 0xc4, 0xa5, 0x9d, + 0x82, 0x8f, 0x52, 0x69, 0xa1, 0x32, 0x6c, 0x81, 0xd6, 0xa3, 0x92, 0x65, + 0x45, 0x27, 0x70, 0x51, 0xea, 0x6b, 0x0e, 0xf3, 0xc4, 0x31, 0x47, 0x95, + 0x83, 0xf7, 0x8d, 0xeb, 0xda, 0xb0, 0x6e, 0x75, 0x0b, 0x8b, 0xa6, 0x26, + 0x49, 0x0e, 0x3f, 0xba, 0x3a, 0x50, 0xda, 0x46, 0x90, 0xa1, 0x39, 0xf9, + 0x23, 0xa5, 0xba, 0xd6, 0xed, 0x61, 0xc8, 0x53, 0xe6, 0x3f, 0xb7, 0x4a, + 0xc4, 0xbb, 0xd6, 0x6e, 0x6e, 0xb2, 0x03, 0x79, 0x69, 0xe8, 0xb5, 0x99, + 0x9a, 0x5a, 0x87, 0x26, 0xce, 0xb8, 0x61, 0xe3, 0x11, 0xd9, 0x24, 0xe4, + 0x9a, 0x33, 0x4d, 0xcd, 0x68, 0x69, 0xfa, 0x4c, 0xf7, 0xac, 0x1b, 0x1b, + 0x23, 0xfe, 0xf1, 0xa4, 0x93, 0x65, 0xca, 0x51, 0x82, 0xbb, 0x2a, 0x45, + 0x1b, 0xcd, 0x20, 0x48, 0xd4, 0xb3, 0x1e, 0xc2, 0xba, 0x6d, 0x33, 0xc3, + 0xe9, 0x18, 0x12, 0xdd, 0x7c, 0xcd, 0xfd, 0xce, 0xc2, 0xb4, 0x2c, 0x74, + 0xe8, 0x2c, 0xd3, 0x11, 0xa8, 0xcf, 0x76, 0x3d, 0x4d, 0x5d, 0xfc, 0x2a, + 0xf9, 0x6c, 0x71, 0xce, 0xbb, 0x96, 0xdb, 0x00, 0x54, 0x45, 0x0a, 0x83, + 0x00, 0x76, 0x14, 0xb8, 0x34, 0x99, 0x20, 0xd3, 0xb7, 0x53, 0x31, 0x1b, + 0xd8, 0xd3, 0x40, 0xe7, 0x91, 0x4f, 0x38, 0xa3, 0x02, 0x9a, 0x64, 0xb4, + 0x28, 0x55, 0xc7, 0x34, 0x86, 0x3f, 0xf6, 0x85, 0x3b, 0xdb, 0x14, 0xb9, + 0x03, 0xa5, 0x17, 0x63, 0xb2, 0x23, 0xda, 0x07, 0x53, 0x9a, 0x36, 0x77, + 0xa7, 0xb6, 0x29, 0x30, 0x7b, 0x1a, 0x2e, 0xc2, 0xc8, 0x8c, 0x83, 0xdf, + 0x34, 0x6d, 0x34, 0xfd, 0xa7, 0xb9, 0xa4, 0x23, 0xd0, 0xd1, 0x70, 0xe5, + 0x1b, 0xb4, 0xd3, 0x81, 0x23, 0x8c, 0xd0, 0x49, 0x1d, 0xe8, 0xdf, 0xdd, + 0xa9, 0x36, 0xc6, 0x92, 0x19, 0x71, 0x3c, 0x56, 0xf0, 0x34, 0xb3, 0x30, + 0x0a, 0xb5, 0xc7, 0x6a, 0x3a, 0xbc, 0xb7, 0x8e, 0x55, 0x49, 0x48, 0xbb, + 0x28, 0xef, 0x56, 0xfc, 0x4f, 0x7a, 0x64, 0x9d, 0x2d, 0xd4, 0x9d, 0x8a, + 0x32, 0x7e, 0xb5, 0xcf, 0xee, 0xac, 0xe5, 0x2e, 0x87, 0x6e, 0x1e, 0x8a, + 0xb7, 0x33, 0x1e, 0x4f, 0x14, 0xdc, 0xd2, 0x6e, 0xa4, 0xcd, 0x41, 0xd5, + 0x72, 0x58, 0x22, 0x92, 0xe2, 0x55, 0x8a, 0x25, 0x2c, 0xcd, 0xd0, 0x57, + 0x51, 0xa7, 0xe8, 0x31, 0xdb, 0x62, 0x49, 0xf0, 0xf2, 0x7a, 0x76, 0x15, + 0x53, 0xc2, 0xe9, 0x19, 0x79, 0x9c, 0xe0, 0xb8, 0x03, 0x1f, 0x4a, 0xe9, + 0x89, 0x00, 0x74, 0xad, 0x61, 0x1e, 0xa7, 0x06, 0x22, 0xab, 0xbf, 0x2a, + 0x1b, 0x82, 0x06, 0x07, 0x14, 0xd3, 0xb8, 0x53, 0xf7, 0x66, 0x97, 0x39, + 0xef, 0x5a, 0x1c, 0x83, 0x41, 0x24, 0x73, 0x47, 0x51, 0x4a, 0x57, 0x9a, + 0x42, 0xbf, 0x4a, 0x2e, 0x16, 0x13, 0x6d, 0x18, 0xcd, 0x28, 0x14, 0xe0, + 0x31, 0x40, 0x08, 0xaa, 0x3a, 0xd2, 0xd1, 0xd6, 0x8e, 0x07, 0x5a, 0x60, + 0x45, 0x26, 0x0d, 0x35, 0x47, 0x35, 0x23, 0x95, 0x1d, 0xa9, 0x00, 0xcf, + 0xd2, 0x90, 0x06, 0x00, 0xa6, 0xe0, 0x53, 0x8e, 0x05, 0x47, 0x9e, 0x69, + 0x80, 0xa5, 0x7d, 0x0d, 0x73, 0xfe, 0x26, 0x83, 0x74, 0x31, 0x4c, 0x06, + 0x4a, 0x9c, 0x1a, 0xe8, 0x06, 0x48, 0xaa, 0x1a, 0xcc, 0x5e, 0x66, 0x97, + 0x30, 0xc7, 0x41, 0x91, 0x53, 0x2d, 0x51, 0xa5, 0x27, 0xcb, 0x34, 0xce, + 0x1f, 0x34, 0x66, 0x97, 0x14, 0xdc, 0x73, 0x5c, 0xc7, 0xb5, 0x61, 0xc1, + 0x8a, 0xb0, 0x61, 0xc1, 0x1d, 0x2b, 0xb1, 0xd1, 0x75, 0x1f, 0xb7, 0x5b, + 0x88, 0xdc, 0xfe, 0xf5, 0x3a, 0xfb, 0x8f, 0x5a, 0xe3, 0x2a, 0xc5, 0x9d, + 0xcb, 0xda, 0x5c, 0xa4, 0xc8, 0x70, 0x54, 0xf2, 0x3d, 0x45, 0x54, 0x25, + 0xca, 0xcc, 0x2b, 0xd1, 0xf6, 0x91, 0xf3, 0x3d, 0x07, 0x07, 0xd2, 0x90, + 0x8c, 0xf6, 0xa2, 0xda, 0x75, 0xb9, 0xb7, 0x49, 0x97, 0xee, 0xb0, 0xcd, + 0x3c, 0x8c, 0x77, 0xae, 0x93, 0xc7, 0x6a, 0xda, 0x11, 0x60, 0xd3, 0xb0, + 0x69, 0xdd, 0xa9, 0x03, 0x0c, 0xe3, 0x14, 0x05, 0x83, 0x69, 0xa4, 0x28, + 0x58, 0x63, 0xb5, 0x3b, 0x70, 0x1d, 0x4d, 0x27, 0x99, 0xe9, 0x40, 0xec, + 0x66, 0x5e, 0xe8, 0x30, 0x5c, 0xe5, 0x93, 0xf7, 0x72, 0x7a, 0x8e, 0x86, + 0xb9, 0xdb, 0xcd, 0x2e, 0xe6, 0xc9, 0xbe, 0x78, 0xf2, 0xbf, 0xde, 0x1d, + 0x2b, 0xb6, 0x0d, 0x91, 0xcd, 0x21, 0x01, 0x86, 0xd2, 0x32, 0x3d, 0x0d, + 0x43, 0x82, 0x66, 0xf4, 0xeb, 0x4a, 0x1a, 0x74, 0x3c, 0xf0, 0x1f, 0x9b, + 0x15, 0x26, 0x71, 0xd2, 0xba, 0x7b, 0xed, 0x0e, 0xde, 0x66, 0xdf, 0x17, + 0xee, 0x9b, 0xdb, 0xa5, 0x61, 0x5d, 0xe9, 0x77, 0x56, 0xa4, 0x96, 0x4d, + 0xcb, 0xfd, 0xe5, 0xe6, 0xb2, 0x94, 0x5a, 0x3b, 0x69, 0xd7, 0x84, 0xf4, + 0x2a, 0x0c, 0xd2, 0xe3, 0x9a, 0x40, 0x48, 0xeb, 0x41, 0x22, 0xa0, 0xda, + 0xc2, 0xf4, 0xad, 0x0b, 0x0d, 0x56, 0x5b, 0x26, 0x03, 0x3b, 0xe3, 0xee, + 0xa6, 0xb3, 0x81, 0xc7, 0xbd, 0x28, 0xc1, 0xef, 0x4d, 0x3b, 0x6c, 0x44, + 0xa0, 0xa4, 0xac, 0xce, 0xda, 0xd6, 0xee, 0xde, 0xf5, 0x37, 0x46, 0xdc, + 0xf7, 0x5e, 0xe2, 0xac, 0x15, 0xc7, 0x43, 0x5c, 0x76, 0x9f, 0x0d, 0xcc, + 0xb3, 0x8f, 0xb3, 0x92, 0xb8, 0xea, 0xde, 0x95, 0xd7, 0x46, 0xcc, 0x11, + 0x43, 0x9c, 0xb6, 0x39, 0x35, 0xb4, 0x5d, 0xd1, 0xe7, 0x56, 0x82, 0x84, + 0xac, 0x98, 0xfe, 0x4f, 0x4a, 0x43, 0xb8, 0x1e, 0x69, 0xe0, 0xfa, 0x53, + 0x81, 0xe3, 0x07, 0x9a, 0xab, 0x19, 0xdc, 0x66, 0x71, 0x48, 0x1b, 0x27, + 0x83, 0x52, 0x15, 0x04, 0x74, 0xa4, 0x0a, 0x3d, 0x29, 0x00, 0xe5, 0x6f, + 0x53, 0x4e, 0xe7, 0x3c, 0x1a, 0x8c, 0x8a, 0x45, 0x0d, 0x9a, 0x06, 0x58, + 0xd9, 0xb8, 0x66, 0xb3, 0xae, 0xf4, 0xe4, 0x9d, 0x89, 0x03, 0x6b, 0xfa, + 0x8a, 0xd2, 0x56, 0xc2, 0xf3, 0x4c, 0x66, 0x06, 0x93, 0x43, 0x4d, 0xad, + 0x51, 0xcd, 0x4f, 0x6b, 0x3d, 0xbb, 0x61, 0x97, 0x8e, 0xc7, 0xb5, 0x44, + 0x19, 0x87, 0x5c, 0x57, 0x49, 0x28, 0x0e, 0xa5, 0x4a, 0x06, 0x06, 0xb1, + 0x6e, 0x74, 0xf2, 0xb9, 0x78, 0xb3, 0x8f, 0xee, 0xd6, 0x32, 0x85, 0xb6, + 0x3a, 0xe9, 0xd6, 0x4f, 0x49, 0x10, 0x09, 0x39, 0xc8, 0x1c, 0xd4, 0xb1, + 0xdd, 0x4b, 0x1b, 0x65, 0x4d, 0x54, 0x19, 0x53, 0xdf, 0x35, 0x20, 0x90, + 0x77, 0x3c, 0xd6, 0x47, 0x4d, 0x93, 0x36, 0x6d, 0xf5, 0x71, 0xf7, 0x66, + 0x4c, 0x7b, 0x8a, 0xd0, 0x49, 0xa3, 0x99, 0x7e, 0x43, 0x91, 0x5c, 0xc8, + 0x6f, 0x4a, 0x91, 0x2e, 0x5e, 0x23, 0x95, 0x24, 0x1a, 0xa5, 0x51, 0xad, + 0xcc, 0xa5, 0x87, 0x4f, 0x63, 0xa1, 0x61, 0xe9, 0x91, 0x51, 0x82, 0xca, + 0x79, 0xc9, 0x1f, 0x5a, 0xa1, 0x16, 0xb1, 0x9c, 0x2c, 0xaa, 0x7e, 0xa0, + 0x55, 0xd4, 0x99, 0x65, 0x5c, 0xa3, 0x83, 0x5a, 0x29, 0x5c, 0xe7, 0x95, + 0x37, 0x1d, 0xcb, 0x08, 0xe0, 0xf0, 0x01, 0xa7, 0x36, 0x0a, 0xf7, 0xa8, + 0x95, 0x86, 0x39, 0x34, 0xf0, 0x47, 0xad, 0x55, 0x8c, 0xc8, 0xce, 0xec, + 0xf5, 0x22, 0xa3, 0x65, 0x39, 0xdc, 0x3b, 0x54, 0xe7, 0x03, 0xa0, 0xcd, + 0x30, 0x8c, 0x83, 0xda, 0x9a, 0x13, 0xd8, 0x32, 0x08, 0xe6, 0x90, 0x30, + 0xe8, 0x29, 0x14, 0x0e, 0x86, 0x94, 0x95, 0x4e, 0xd5, 0x56, 0x26, 0xe2, + 0x1a, 0x8c, 0x8c, 0x9e, 0x47, 0x15, 0x2e, 0xe5, 0x34, 0x9c, 0x13, 0xd2, + 0x8b, 0x0a, 0xe3, 0x3c, 0xb5, 0xf4, 0xa6, 0x32, 0x60, 0xd4, 0xfc, 0xfb, + 0x50, 0xcb, 0xc5, 0x52, 0x76, 0x25, 0xab, 0x94, 0x26, 0xb2, 0x86, 0x71, + 0xf3, 0xa6, 0x0f, 0xa8, 0xac, 0xc9, 0xf4, 0x87, 0x04, 0x98, 0x5f, 0x77, + 0xb1, 0xe2, 0xb7, 0x5b, 0x8e, 0xf4, 0xcc, 0xad, 0x53, 0x8a, 0x61, 0x1a, + 0x93, 0x86, 0xc7, 0x29, 0x24, 0x73, 0xc0, 0x48, 0x91, 0x18, 0x7e, 0x14, + 0xcd, 0xd9, 0xae, 0xc3, 0x6a, 0x30, 0xf9, 0x94, 0x11, 0xef, 0x59, 0xd7, + 0x1a, 0x65, 0xa4, 0xc7, 0x20, 0x79, 0x67, 0xfd, 0x9a, 0xc6, 0x54, 0x7b, + 0x1d, 0x50, 0xc5, 0xf4, 0x92, 0x39, 0xa9, 0x61, 0x8e, 0x41, 0xf3, 0x31, + 0x1f, 0x4a, 0xa2, 0x9a, 0x74, 0x42, 0x52, 0x5c, 0x96, 0x5e, 0xdc, 0x57, + 0x43, 0x3e, 0x8f, 0x22, 0x1c, 0xc6, 0xe1, 0xc7, 0xe5, 0x54, 0x25, 0xb6, + 0x96, 0x23, 0xf3, 0xc6, 0xc0, 0x7d, 0x2b, 0x3b, 0x4e, 0x2f, 0x53, 0x65, + 0xec, 0x6a, 0x2d, 0x0c, 0x87, 0xb6, 0x75, 0x27, 0x09, 0x91, 0xdb, 0x14, + 0xc6, 0x5e, 0xc5, 0x71, 0x5a, 0xbd, 0x3a, 0x8a, 0x61, 0xda, 0x7b, 0x0a, + 0x6a, 0xab, 0xea, 0x84, 0xf0, 0x91, 0xe8, 0xcc, 0x97, 0xf9, 0xb0, 0x05, + 0x39, 0x51, 0x92, 0x32, 0x02, 0xfe, 0x39, 0xad, 0x07, 0x82, 0x17, 0xea, + 0x83, 0x3e, 0xd4, 0xc6, 0xb7, 0x4d, 0xb8, 0x0c, 0xc3, 0xf1, 0xab, 0x55, + 0x63, 0xd4, 0xca, 0x58, 0x49, 0xf4, 0x28, 0x7c, 0xe1, 0x78, 0x3c, 0xd2, + 0x6f, 0x70, 0xbc, 0xf5, 0xab, 0x66, 0xc8, 0xf6, 0x7f, 0xcc, 0x54, 0x6d, + 0x67, 0x28, 0x3c, 0x10, 0x69, 0xfb, 0x48, 0x90, 0xf0, 0xf5, 0x17, 0x42, + 0x30, 0x77, 0x23, 0x7a, 0xe2, 0xa4, 0x81, 0xbc, 0xa4, 0x63, 0xb3, 0x71, + 0x22, 0x96, 0x28, 0x24, 0x52, 0x77, 0x2f, 0x15, 0x6b, 0x60, 0x54, 0xc6, + 0xda, 0xb8, 0xb4, 0xf5, 0xb9, 0x94, 0xe9, 0xcd, 0x74, 0x22, 0xb7, 0x66, + 0x2b, 0x82, 0x30, 0x33, 0x9a, 0x9f, 0xcd, 0x51, 0xf5, 0xa8, 0x77, 0x30, + 0xc8, 0x0a, 0x7f, 0x2a, 0x62, 0xde, 0xf9, 0x64, 0xab, 0x5b, 0x17, 0xf7, + 0xaa, 0x72, 0x48, 0x85, 0x4e, 0x6f, 0xa1, 0x61, 0xe5, 0x79, 0x23, 0x54, + 0x27, 0xe5, 0x4c, 0xe3, 0xf1, 0xa8, 0xd7, 0x39, 0xeb, 0x5d, 0x42, 0xe8, + 0x36, 0xd8, 0xcf, 0xcd, 0xf9, 0xd3, 0x93, 0x42, 0xb3, 0x03, 0xee, 0xb6, + 0x7e, 0xb5, 0xc6, 0xa9, 0x34, 0x7a, 0xbf, 0x5b, 0x87, 0x63, 0x96, 0xdc, + 0x68, 0xf9, 0xbb, 0xd7, 0x57, 0xfd, 0x85, 0x64, 0x0e, 0x76, 0x1f, 0xcc, + 0xd3, 0xd7, 0x48, 0xb4, 0x5f, 0xf9, 0x63, 0x9f, 0xa9, 0xaa, 0xf6, 0x4c, + 0x5f, 0x5c, 0x8f, 0x63, 0x90, 0xc9, 0xa5, 0x09, 0x23, 0x74, 0x42, 0x7e, + 0x82, 0xbb, 0x48, 0xf4, 0xfb, 0x55, 0x3f, 0xea, 0x23, 0xfc, 0xaa, 0xec, + 0x30, 0x44, 0x83, 0x0b, 0x1a, 0x8f, 0xa0, 0xa6, 0xa9, 0x12, 0xf1, 0xbd, + 0x91, 0xc1, 0xa5, 0x95, 0xdb, 0xfd, 0xd8, 0x24, 0xfc, 0xaa, 0xcc, 0x7a, + 0x35, 0xf3, 0x8f, 0xf5, 0x25, 0x7d, 0xc9, 0xae, 0xe8, 0x00, 0x46, 0x31, + 0x4c, 0x28, 0x05, 0x52, 0xa4, 0x8c, 0xde, 0x32, 0x7d, 0x11, 0xc8, 0xc7, + 0xe1, 0xe9, 0xcf, 0xfa, 0xc9, 0x11, 0x7e, 0x9c, 0xd5, 0xa8, 0xf4, 0x18, + 0x50, 0x02, 0xc5, 0x9c, 0xfe, 0x55, 0xbc, 0xe9, 0x9e, 0x73, 0x48, 0x3a, + 0x73, 0x4f, 0x91, 0x23, 0x27, 0x88, 0xa9, 0x2d, 0xd9, 0x9f, 0x1d, 0x94, + 0x11, 0xe0, 0x08, 0x94, 0x7e, 0x15, 0x6e, 0x34, 0x00, 0x60, 0x74, 0xf6, + 0xa0, 0xf2, 0xdc, 0x8a, 0x13, 0x2a, 0x78, 0xe9, 0x4f, 0xa1, 0x9b, 0xd5, + 0xdd, 0x8f, 0x64, 0x18, 0xc8, 0x14, 0xe8, 0x88, 0xc7, 0xcc, 0xb4, 0xa0, + 0xf1, 0x91, 0xf9, 0x52, 0xa9, 0xcd, 0x32, 0x7a, 0x8b, 0xe7, 0x76, 0xed, + 0x40, 0x22, 0x9b, 0xb0, 0x06, 0xcd, 0x4e, 0x8a, 0xa0, 0x51, 0xb0, 0xd6, + 0xa2, 0x00, 0x31, 0xcd, 0x34, 0xa6, 0x0e, 0x41, 0xc5, 0x38, 0xfb, 0x50, + 0x33, 0xd3, 0x14, 0x08, 0x60, 0x62, 0x87, 0x91, 0x4b, 0xe6, 0xe2, 0x94, + 0x8e, 0xd4, 0x9b, 0x03, 0x50, 0x31, 0xfe, 0x70, 0x18, 0xed, 0x52, 0x6e, + 0x0e, 0xb5, 0x59, 0x90, 0x8a, 0xab, 0x71, 0xa9, 0x5b, 0xda, 0x0c, 0xc9, + 0x20, 0x07, 0xd3, 0xbd, 0x21, 0xad, 0x74, 0x34, 0x95, 0xc0, 0x38, 0x34, + 0xd9, 0xef, 0x21, 0xb7, 0x42, 0xd2, 0x48, 0xaa, 0x07, 0xa9, 0xae, 0x52, + 0xf3, 0xc4, 0xd2, 0xbe, 0x56, 0xdd, 0x76, 0x8f, 0xef, 0x35, 0x62, 0x4d, + 0x73, 0x35, 0xc3, 0xee, 0x96, 0x46, 0x63, 0xee, 0x68, 0x6d, 0x1b, 0x43, + 0x0f, 0x27, 0xbe, 0x87, 0x49, 0x7d, 0xe2, 0x65, 0xc9, 0x5b, 0x64, 0xdc, + 0x7f, 0xbc, 0x7a, 0x56, 0x0d, 0xc5, 0xed, 0xc5, 0xd3, 0x66, 0x59, 0x0b, + 0x7b, 0x76, 0xaa, 0xc2, 0x94, 0x54, 0xb9, 0x33, 0xaa, 0x14, 0x63, 0x11, + 0xc2, 0x81, 0x40, 0xa5, 0xe9, 0x51, 0x73, 0x7b, 0x24, 0x14, 0xe4, 0x56, + 0x91, 0xc2, 0xa0, 0x25, 0x8f, 0x40, 0x2a, 0x7b, 0x4b, 0x19, 0xef, 0x65, + 0x09, 0x1a, 0xf1, 0xdd, 0xbb, 0x0a, 0xeb, 0x34, 0xfd, 0x2a, 0x0b, 0x05, + 0x04, 0x00, 0xd2, 0x77, 0x63, 0x5a, 0x46, 0x2d, 0x9c, 0xd5, 0xab, 0xc6, + 0x1a, 0x75, 0x33, 0x74, 0xef, 0x0f, 0x91, 0xb6, 0x5b, 0xaf, 0xa8, 0x4f, + 0xf1, 0xae, 0x8a, 0x28, 0x82, 0x00, 0xa0, 0x00, 0x07, 0x61, 0x40, 0xe6, + 0xa5, 0x5c, 0x62, 0xb5, 0xb2, 0x47, 0x9d, 0x29, 0xca, 0xa3, 0xbb, 0x14, + 0x63, 0xd2, 0x9d, 0xd0, 0xf4, 0xa4, 0x04, 0x76, 0xa0, 0xb6, 0x06, 0x29, + 0x00, 0xd2, 0xdc, 0xe2, 0x9d, 0xc5, 0x22, 0xe2, 0x97, 0x23, 0x34, 0x30, + 0x43, 0x4d, 0x02, 0x9d, 0x45, 0x17, 0x0b, 0x05, 0x3b, 0x02, 0x9b, 0x9c, + 0x1a, 0x77, 0x07, 0xeb, 0x48, 0x63, 0x4f, 0xd6, 0x93, 0x34, 0xec, 0x53, + 0x49, 0x02, 0x8b, 0x85, 0x83, 0x39, 0xa4, 0x27, 0xd2, 0x8d, 0xe2, 0x98, + 0x49, 0x34, 0x83, 0x60, 0xdc, 0x68, 0x20, 0x9a, 0x3a, 0x75, 0xa4, 0xdf, + 0x45, 0x82, 0xe7, 0x27, 0xe2, 0x48, 0x59, 0x2f, 0x95, 0xf1, 0xc3, 0x2d, + 0x62, 0xf7, 0xae, 0xdf, 0x54, 0xb1, 0x1a, 0x85, 0xb1, 0x4e, 0x8e, 0x39, + 0x53, 0xef, 0x5c, 0x54, 0xd1, 0x49, 0x04, 0xa6, 0x39, 0x14, 0xab, 0x2f, + 0x04, 0x1a, 0xce, 0x6b, 0x53, 0xd1, 0xc3, 0x4d, 0x38, 0xf2, 0xf6, 0x13, + 0x14, 0x94, 0x9d, 0x69, 0x0d, 0x41, 0xd1, 0x62, 0xcd, 0xa5, 0xec, 0x96, + 0x53, 0x89, 0x63, 0x3c, 0x8e, 0xa3, 0xd6, 0xba, 0xfb, 0x0d, 0x5e, 0xd6, + 0xf5, 0x40, 0xde, 0x12, 0x4e, 0xea, 0xd5, 0xc3, 0xf1, 0x4a, 0x0e, 0x3a, + 0x71, 0x5a, 0x46, 0x6d, 0x18, 0x55, 0xc3, 0xc6, 0xa7, 0xa9, 0xe9, 0x23, + 0x18, 0xe2, 0x93, 0x6d, 0x70, 0x96, 0xfa, 0xbd, 0xf5, 0xb7, 0xdc, 0x9d, + 0x88, 0x1d, 0x9b, 0x91, 0x5a, 0x50, 0xf8, 0xaa, 0x61, 0x81, 0x3c, 0x2a, + 0xde, 0xe0, 0xe2, 0xb5, 0x53, 0x47, 0x1c, 0xb0, 0xb5, 0x16, 0xda, 0x9d, + 0x49, 0xe0, 0x75, 0xa6, 0x82, 0x49, 0xaa, 0x9a, 0x76, 0xa2, 0xba, 0x94, + 0x65, 0x92, 0x17, 0x50, 0x3b, 0xb7, 0x4a, 0xbd, 0xb4, 0x81, 0x4d, 0x33, + 0x07, 0x16, 0x9d, 0x98, 0x98, 0x02, 0x94, 0x11, 0x49, 0x83, 0xde, 0x97, + 0x02, 0x98, 0x83, 0x39, 0xe9, 0x49, 0xf5, 0xa4, 0x2c, 0x07, 0x4a, 0x6e, + 0xec, 0xd2, 0x1d, 0x84, 0x6e, 0x4f, 0x6c, 0x51, 0xf7, 0x4d, 0x21, 0x61, + 0xf8, 0xd2, 0xaa, 0xee, 0xe4, 0x9a, 0x2c, 0x20, 0xc6, 0x46, 0x4d, 0x00, + 0x0f, 0x4a, 0x79, 0x19, 0x18, 0xa8, 0xf6, 0x7b, 0xd0, 0x16, 0x24, 0x58, + 0xf3, 0xde, 0xab, 0xea, 0x01, 0x52, 0xc2, 0x62, 0xfd, 0x36, 0x1a, 0x95, + 0x99, 0x61, 0x42, 0xcc, 0xe1, 0x40, 0xee, 0x4d, 0x72, 0xda, 0xe6, 0xb6, + 0x2e, 0x94, 0xdb, 0x40, 0x73, 0x1e, 0x7e, 0x66, 0xf5, 0xa5, 0x26, 0x92, + 0x35, 0xa5, 0x4d, 0xce, 0x56, 0x46, 0x09, 0xeb, 0x49, 0x8a, 0x4c, 0xd1, + 0x9a, 0xe5, 0x3d, 0xab, 0x06, 0x29, 0x73, 0x4d, 0x27, 0x34, 0x66, 0x95, + 0xc7, 0x63, 0xae, 0xf0, 0xc5, 0xc9, 0x6b, 0x39, 0x22, 0x27, 0x3b, 0x1b, + 0x8f, 0xa5, 0x6d, 0x96, 0xdd, 0x5c, 0xe7, 0x85, 0xd0, 0x88, 0xe7, 0x7c, + 0x70, 0x70, 0x2b, 0xa3, 0x53, 0x9e, 0xb5, 0xd5, 0x4d, 0xfb, 0xa7, 0x89, + 0x5d, 0x2f, 0x68, 0xec, 0x37, 0xbf, 0x6a, 0x4c, 0x64, 0x9e, 0x69, 0xe4, + 0x60, 0x74, 0xa4, 0x00, 0x9a, 0xbb, 0x99, 0x0d, 0xa5, 0xa3, 0x69, 0xa7, + 0x29, 0x19, 0xe9, 0x40, 0x08, 0x07, 0xe3, 0x4e, 0xc7, 0x1e, 0x94, 0xed, + 0xc2, 0x98, 0xcd, 0xe9, 0x40, 0x0d, 0x70, 0xbb, 0x79, 0xe6, 0x91, 0x48, + 0x23, 0x00, 0x0f, 0xc6, 0x8f, 0xbd, 0xd6, 0x93, 0x1b, 0x4e, 0x29, 0x01, + 0x4a, 0xe7, 0x4a, 0xb5, 0xb9, 0x24, 0xb2, 0x6c, 0x6f, 0xef, 0x2f, 0x15, + 0x8f, 0x73, 0xa0, 0x4f, 0x16, 0x5a, 0x16, 0x12, 0x2f, 0xa7, 0x43, 0x5d, + 0x2b, 0x30, 0xc0, 0xa7, 0x28, 0x52, 0x38, 0x35, 0x0e, 0x29, 0xad, 0x4d, + 0x61, 0x56, 0x70, 0x7a, 0x33, 0x84, 0x92, 0x19, 0x62, 0x6d, 0xb2, 0x23, + 0x29, 0xf7, 0x15, 0x7a, 0xc3, 0x49, 0x92, 0xe1, 0x83, 0xc9, 0xf2, 0xc5, + 0xfc, 0xeb, 0xab, 0x92, 0x18, 0xa4, 0x18, 0x74, 0x07, 0xea, 0x29, 0xbb, + 0x40, 0x1c, 0x74, 0xa9, 0x50, 0x46, 0xd2, 0xc4, 0xc9, 0xab, 0x2d, 0x18, + 0xc8, 0x20, 0x8a, 0x18, 0x82, 0x44, 0xa1, 0x40, 0xa9, 0x3e, 0xb4, 0xc5, + 0x5e, 0x79, 0xe9, 0x52, 0x01, 0xda, 0xb4, 0x47, 0x2b, 0xd7, 0x71, 0x33, + 0x8e, 0x94, 0xf4, 0x7c, 0x70, 0x69, 0x31, 0xf4, 0xa3, 0x02, 0x9d, 0xc5, + 0x62, 0x75, 0x71, 0x8e, 0x29, 0x46, 0x0d, 0x40, 0x06, 0x45, 0x28, 0x62, + 0xbd, 0xf3, 0x40, 0x13, 0x8c, 0x52, 0x81, 0xcd, 0x31, 0x1b, 0x23, 0x9a, + 0x79, 0x91, 0x40, 0xa0, 0x00, 0xf4, 0xc6, 0x69, 0x98, 0x1d, 0xe8, 0xdc, + 0x0f, 0x7a, 0x33, 0x91, 0xd6, 0x95, 0x87, 0x71, 0xca, 0x28, 0x29, 0x9e, + 0xd4, 0xd1, 0x9e, 0x99, 0xa9, 0x40, 0xf5, 0x34, 0xac, 0x3b, 0x99, 0xb7, + 0x9a, 0x7c, 0x73, 0x02, 0xca, 0x36, 0xbf, 0xa8, 0xac, 0x39, 0xa3, 0x7b, + 0x79, 0x36, 0xc8, 0x98, 0xf7, 0xae, 0xbf, 0x60, 0xc6, 0x73, 0x55, 0xee, + 0x6d, 0xa3, 0x9e, 0x32, 0x92, 0x2e, 0x41, 0xef, 0xe9, 0x51, 0x2a, 0x69, + 0xec, 0x6f, 0x4e, 0xbb, 0x86, 0x8f, 0x63, 0x97, 0x59, 0x30, 0x7a, 0xd4, + 0xab, 0x26, 0x45, 0x3a, 0xef, 0x4f, 0x92, 0xd4, 0x96, 0x4f, 0x9a, 0x3f, + 0x5f, 0x4a, 0xa3, 0xe7, 0x32, 0xf7, 0x15, 0xcb, 0x28, 0x35, 0xa3, 0x3d, + 0x08, 0x4d, 0x49, 0x5d, 0x17, 0xbe, 0x52, 0x2a, 0x44, 0x91, 0x62, 0xf9, + 0x94, 0x90, 0xde, 0x95, 0x9c, 0x2e, 0x88, 0xe0, 0x8a, 0x91, 0x26, 0x59, + 0x3a, 0x90, 0x2b, 0x37, 0x16, 0x69, 0x74, 0x6a, 0x47, 0xab, 0x30, 0x6c, + 0x48, 0x01, 0x1e, 0xa2, 0xb4, 0xe0, 0xb8, 0x8e, 0xe1, 0x72, 0x8e, 0xa4, + 0xfa, 0x57, 0x32, 0x48, 0xf5, 0xcd, 0x35, 0x49, 0x46, 0xdd, 0xb8, 0x8f, + 0xa5, 0x6b, 0x0a, 0x96, 0xdc, 0xe7, 0xa9, 0x87, 0x52, 0xd5, 0x1d, 0x80, + 0x04, 0xf5, 0xa4, 0x2a, 0x33, 0xf7, 0xab, 0x9d, 0xb7, 0xd5, 0xa5, 0x89, + 0x80, 0x76, 0x2e, 0xbe, 0xfd, 0x6b, 0x5e, 0xdf, 0x51, 0xb6, 0x9f, 0x80, + 0xe0, 0x1f, 0x43, 0xd6, 0xba, 0x23, 0x34, 0xce, 0x29, 0xd1, 0x9c, 0x77, + 0x27, 0x3b, 0x51, 0xa9, 0x72, 0xbe, 0x82, 0x92, 0x54, 0xdc, 0xb9, 0x07, + 0x34, 0xc5, 0x52, 0x7a, 0x8a, 0xd7, 0x75, 0x73, 0x0d, 0x9d, 0x87, 0x96, + 0x1d, 0x85, 0x37, 0x7d, 0x26, 0xce, 0x72, 0x4d, 0x2e, 0x31, 0xcd, 0x21, + 0x8a, 0x09, 0x3d, 0x29, 0x7e, 0xb5, 0x1e, 0xe3, 0x9c, 0x51, 0xcb, 0x1c, + 0xe7, 0x14, 0xc4, 0x3d, 0x8a, 0x0e, 0x6a, 0xbb, 0x9e, 0x72, 0x07, 0x15, + 0x21, 0xc6, 0x79, 0x39, 0xa4, 0x20, 0x7b, 0xd1, 0x7b, 0x09, 0xab, 0x91, + 0xef, 0x1e, 0x94, 0x9c, 0x33, 0x74, 0xa9, 0x4c, 0x6b, 0x8c, 0xd4, 0x6d, + 0xf2, 0xf1, 0x55, 0x7b, 0x90, 0xd5, 0x84, 0x65, 0x51, 0x51, 0xec, 0x2d, + 0xd4, 0x0c, 0x53, 0x82, 0x6e, 0xa7, 0x81, 0x8e, 0x29, 0x85, 0xec, 0x42, + 0xd6, 0x16, 0xb2, 0x8c, 0x34, 0x4b, 0x9f, 0x5c, 0x55, 0x49, 0x7c, 0x3f, + 0x6e, 0xdf, 0x71, 0xd9, 0x3f, 0x5a, 0xd3, 0x1c, 0x51, 0xba, 0xa1, 0xc1, + 0x33, 0x48, 0xd5, 0x94, 0x7a, 0x98, 0x12, 0xf8, 0x7a, 0x55, 0xe6, 0x39, + 0x15, 0xbe, 0xbc, 0x55, 0x39, 0x34, 0x9b, 0xc4, 0x6f, 0xf5, 0x24, 0x8f, + 0x6a, 0xeb, 0x43, 0x8c, 0x62, 0x90, 0x9c, 0x56, 0x6e, 0x92, 0x3a, 0x23, + 0x8a, 0x9a, 0x38, 0xb9, 0x2d, 0x67, 0x4f, 0xbd, 0x13, 0x8f, 0xc2, 0xa2, + 0x65, 0x65, 0xea, 0x08, 0xae, 0xe4, 0x02, 0x7a, 0xd3, 0x1e, 0xd6, 0x36, + 0x1c, 0xa2, 0x9f, 0xa8, 0xa8, 0xf6, 0x2b, 0xb9, 0xb2, 0xc6, 0x3e, 0xa8, + 0xe1, 0x72, 0x73, 0x4b, 0xcd, 0x76, 0xa7, 0x4e, 0xb5, 0x6f, 0xf9, 0x60, + 0x9f, 0x95, 0x1f, 0xd8, 0x96, 0x2c, 0x32, 0xd0, 0xfe, 0x46, 0x87, 0x45, + 0x94, 0xb1, 0x91, 0xea, 0x8e, 0x24, 0xe6, 0x9a, 0x38, 0x3d, 0x2b, 0xb2, + 0x93, 0x43, 0xd3, 0xd4, 0x67, 0xca, 0x6f, 0xfb, 0xe8, 0xd5, 0x46, 0xd1, + 0x6d, 0x1b, 0x38, 0x56, 0x18, 0xf7, 0xa9, 0xf6, 0x4c, 0xbf, 0xad, 0xc3, + 0xb1, 0xaa, 0x84, 0xe3, 0x14, 0xa4, 0x60, 0x9c, 0x1a, 0x4c, 0x81, 0xf5, + 0xc5, 0x26, 0x0f, 0x52, 0x6b, 0xa1, 0x5c, 0xf3, 0x5b, 0x1d, 0xbb, 0x1c, + 0x53, 0xb0, 0x7a, 0xe6, 0x9b, 0xb7, 0x23, 0x9a, 0x58, 0xdb, 0x19, 0x06, + 0x9d, 0x85, 0x70, 0x1c, 0x1c, 0xd3, 0xf7, 0x9e, 0x31, 0x4c, 0x6e, 0x7a, + 0x50, 0xbc, 0x75, 0xa4, 0x32, 0xca, 0xb0, 0xc6, 0x73, 0x41, 0xe6, 0xa3, + 0x4e, 0x3b, 0x71, 0x52, 0x21, 0x14, 0x00, 0xc7, 0x00, 0x2f, 0x4e, 0x6a, + 0x30, 0xa0, 0x9f, 0x4a, 0xb3, 0xb4, 0x37, 0x35, 0x13, 0x0f, 0x4a, 0x37, + 0x16, 0xc4, 0x2d, 0x11, 0xce, 0x47, 0x34, 0xc0, 0x1b, 0x35, 0x65, 0x7e, + 0x55, 0xe7, 0xf3, 0xa6, 0x1c, 0x12, 0x69, 0x14, 0x35, 0x3a, 0x73, 0x4b, + 0x8e, 0x28, 0x6c, 0x0e, 0x45, 0x33, 0x76, 0x07, 0x5a, 0x00, 0x76, 0xec, + 0x52, 0x89, 0x71, 0xda, 0xa2, 0x24, 0x35, 0x21, 0x75, 0x40, 0x49, 0x22, + 0xaa, 0xc4, 0xdc, 0xb0, 0x1f, 0x70, 0xc8, 0xeb, 0x4f, 0x56, 0x2a, 0x32, + 0x6b, 0x26, 0x7d, 0x66, 0xd2, 0xdb, 0xac, 0x80, 0x9f, 0x45, 0xe6, 0xb2, + 0x6e, 0xbc, 0x4d, 0x2b, 0x65, 0x6d, 0xe3, 0xda, 0x3d, 0x5a, 0xa5, 0xd9, + 0x6e, 0x6b, 0x0a, 0x53, 0x96, 0xc8, 0xea, 0x1e, 0xe2, 0x35, 0xc9, 0x62, + 0x14, 0x7b, 0xd6, 0x65, 0xe7, 0x88, 0x2d, 0x2d, 0xf2, 0x14, 0xf9, 0x8d, + 0xe8, 0xb5, 0xc9, 0x4f, 0x7b, 0x71, 0x72, 0xd9, 0x96, 0x56, 0x6f, 0x6a, + 0x82, 0xa5, 0xcb, 0xb1, 0xd3, 0x0c, 0x2f, 0xf3, 0x33, 0x5e, 0xef, 0xc4, + 0x37, 0x77, 0x19, 0x54, 0x22, 0x34, 0x3e, 0x9d, 0x6b, 0x2d, 0x9d, 0x9d, + 0xb7, 0x33, 0x12, 0x4f, 0x73, 0x4c, 0xa5, 0x02, 0xa5, 0xc8, 0xe9, 0x8d, + 0x38, 0xc7, 0x64, 0x2d, 0x14, 0xa0, 0x52, 0xd2, 0xb9, 0x76, 0x01, 0x4b, + 0x46, 0x6a, 0xd5, 0xa5, 0x8c, 0xf7, 0x6f, 0xb6, 0x24, 0x24, 0x77, 0x3d, + 0x85, 0x16, 0xb9, 0x32, 0x92, 0x8a, 0xbb, 0x2b, 0xa8, 0x2c, 0x40, 0x51, + 0x92, 0x7d, 0x2b, 0x73, 0x4f, 0xd0, 0x5e, 0x5d, 0xb2, 0x5c, 0xfc, 0xab, + 0xd7, 0x6f, 0x73, 0x5a, 0x3a, 0x7e, 0x91, 0x15, 0x9e, 0x19, 0x86, 0xf9, + 0x7f, 0xbc, 0x47, 0x4a, 0xd5, 0x03, 0x03, 0x9a, 0xd2, 0x30, 0xee, 0x70, + 0xd5, 0xc4, 0xdf, 0x48, 0x8c, 0x8a, 0x18, 0xed, 0xa2, 0x09, 0x12, 0x05, + 0x03, 0xd2, 0xa4, 0x5c, 0x93, 0x93, 0xd2, 0x97, 0x68, 0xa7, 0x0e, 0x2b, + 0x5d, 0x8e, 0x2d, 0xd8, 0xfd, 0x99, 0x5c, 0x8a, 0x06, 0x7a, 0x11, 0x49, + 0xbb, 0x8a, 0x37, 0x13, 0x51, 0xa9, 0x76, 0x43, 0xf1, 0x48, 0x79, 0x35, + 0x1e, 0xe6, 0x5a, 0x72, 0x92, 0x69, 0xf9, 0x8a, 0xfd, 0x09, 0x76, 0xf1, + 0x4d, 0xa3, 0x34, 0x71, 0xeb, 0x48, 0xa0, 0xe9, 0x46, 0x69, 0x29, 0x72, + 0x28, 0x00, 0xc9, 0xa4, 0xdc, 0x69, 0x73, 0x49, 0xc0, 0xa6, 0x21, 0x09, + 0x24, 0xf7, 0xa3, 0x14, 0x64, 0x1a, 0x77, 0x02, 0x90, 0xc6, 0xed, 0x14, + 0x67, 0x6d, 0x3b, 0x3d, 0xa9, 0x31, 0x40, 0x09, 0xd6, 0x93, 0x6d, 0x2f, + 0x14, 0x13, 0x40, 0x09, 0xc0, 0xe0, 0x0a, 0xce, 0xd4, 0xf4, 0x98, 0x75, + 0x05, 0xc9, 0xf9, 0x65, 0x1d, 0x18, 0x56, 0x86, 0x69, 0x73, 0x45, 0x81, + 0x49, 0xc5, 0xdd, 0x1c, 0x1d, 0xe6, 0x95, 0x75, 0x64, 0xc7, 0x7a, 0x16, + 0x4f, 0xef, 0x2f, 0x4a, 0xa5, 0x9a, 0xf4, 0x92, 0xa1, 0x86, 0x08, 0x04, + 0x7b, 0xd6, 0x65, 0xde, 0x85, 0x65, 0x75, 0x93, 0xb3, 0xcb, 0x7f, 0x55, + 0xe2, 0xa1, 0xd3, 0xec, 0x75, 0xc3, 0x16, 0xf6, 0x92, 0x38, 0x82, 0x68, + 0xc9, 0x35, 0xb3, 0x79, 0xe1, 0xcb, 0x98, 0x72, 0x62, 0x61, 0x2a, 0xfa, + 0x74, 0x35, 0x93, 0x25, 0xbc, 0xd0, 0x36, 0x25, 0x89, 0xd4, 0xfb, 0x8a, + 0x8b, 0x34, 0x75, 0x42, 0xac, 0x25, 0xb3, 0x19, 0xcd, 0x69, 0xe9, 0x1a, + 0x44, 0x9a, 0x8c, 0xa1, 0x98, 0x15, 0x84, 0x1e, 0x5b, 0xd6, 0x9f, 0xa5, + 0xe8, 0xd2, 0xde, 0x32, 0xcb, 0x2a, 0x95, 0x87, 0xff, 0x00, 0x42, 0xae, + 0xc2, 0x08, 0xd6, 0x18, 0x96, 0x38, 0xd0, 0x2a, 0x8e, 0x00, 0x15, 0x71, + 0x8b, 0x7a, 0xb3, 0x0a, 0xf8, 0x85, 0x1f, 0x76, 0x3b, 0x92, 0xdb, 0xc1, + 0x15, 0xb4, 0x4b, 0x14, 0x6a, 0x15, 0x54, 0x70, 0x05, 0x48, 0x71, 0x48, + 0x0f, 0xb5, 0x18, 0x3d, 0xc5, 0x69, 0x73, 0x83, 0x70, 0x22, 0xb3, 0xf5, + 0x5d, 0x41, 0x74, 0xfb, 0x56, 0x90, 0xe3, 0x79, 0xe1, 0x47, 0xa9, 0xab, + 0x57, 0x13, 0x88, 0x22, 0x69, 0x1f, 0x0a, 0xaa, 0x32, 0x49, 0xae, 0x0b, + 0x55, 0xd4, 0x1f, 0x50, 0xb9, 0x2e, 0x78, 0x41, 0xc2, 0x8a, 0x52, 0x9d, + 0x91, 0xb5, 0x0a, 0x3e, 0xd2, 0x5e, 0x46, 0x8a, 0x78, 0xae, 0xe0, 0x70, + 0xf0, 0xc6, 0xc3, 0xdb, 0x8a, 0x9a, 0x3f, 0x14, 0x26, 0x7e, 0x78, 0x18, + 0x0f, 0x63, 0x5c, 0xd0, 0xe2, 0x8c, 0xf1, 0x59, 0x7b, 0x46, 0x7a, 0x1f, + 0x55, 0xa6, 0xfa, 0x1d, 0x70, 0xf1, 0x15, 0x93, 0x0e, 0x77, 0xaf, 0xd4, + 0x54, 0xf1, 0xf8, 0x83, 0x4f, 0x1d, 0x65, 0x3f, 0xf7, 0xc9, 0xae, 0x28, + 0x51, 0x47, 0xb5, 0x64, 0xbc, 0x15, 0x33, 0xb4, 0x93, 0xc4, 0xd6, 0x00, + 0x7c, 0xa5, 0xdb, 0xe8, 0x2b, 0x3a, 0xe7, 0xc5, 0x24, 0x82, 0x2d, 0xe0, + 0xc7, 0xbb, 0x1a, 0xe7, 0x29, 0x29, 0x7b, 0x56, 0x38, 0xe1, 0x29, 0xa2, + 0xdd, 0xd6, 0xa5, 0x75, 0x78, 0x7f, 0x7b, 0x2b, 0x11, 0xe8, 0x38, 0x15, + 0x54, 0xf4, 0xa0, 0x9a, 0x4e, 0x6a, 0x1b, 0xbe, 0xe7, 0x44, 0x62, 0xa3, + 0xa2, 0x12, 0x90, 0xd2, 0xd0, 0x45, 0x49, 0x69, 0x8d, 0xa7, 0xc7, 0x1b, + 0xc9, 0x22, 0xa2, 0x82, 0x59, 0x8e, 0x00, 0xa5, 0x8e, 0x37, 0x96, 0x40, + 0x88, 0xa5, 0x98, 0xf4, 0x02, 0xba, 0xfd, 0x17, 0x43, 0x16, 0xaa, 0x2e, + 0x2e, 0x00, 0x32, 0x9e, 0x83, 0xfb, 0xb5, 0x50, 0x85, 0xd9, 0x8d, 0x7c, + 0x42, 0xa6, 0xbc, 0xcb, 0xba, 0x5d, 0x8f, 0xd8, 0xec, 0x52, 0x33, 0xf7, + 0xba, 0xb7, 0xd6, 0xaf, 0x6c, 0x03, 0xad, 0x18, 0xa3, 0x1e, 0xf5, 0xd4, + 0xb4, 0x47, 0x8a, 0xdb, 0x6e, 0xec, 0x5e, 0x3d, 0x69, 0x33, 0x83, 0xc5, + 0x37, 0x6e, 0x29, 0x33, 0xce, 0x28, 0xb8, 0x0f, 0x27, 0x35, 0x1b, 0x21, + 0xcd, 0x38, 0x1a, 0x75, 0x00, 0x47, 0x83, 0xd0, 0xd1, 0xd2, 0xa4, 0xa4, + 0x34, 0x5c, 0x56, 0x19, 0x8a, 0x63, 0x83, 0x9a, 0x90, 0xd3, 0x71, 0x9a, + 0x60, 0x34, 0x64, 0xae, 0x3a, 0xd0, 0x9f, 0x8e, 0x69, 0x49, 0x20, 0xe2, + 0x9c, 0xbc, 0xf6, 0xa0, 0x07, 0x1e, 0x57, 0xa5, 0x33, 0xda, 0xa4, 0xdb, + 0x83, 0xd6, 0x9e, 0x61, 0x3d, 0x7a, 0xd4, 0xec, 0x3d, 0xc8, 0x46, 0x0d, + 0x21, 0x03, 0x39, 0x15, 0x21, 0x4c, 0x54, 0x6c, 0x31, 0xd2, 0x98, 0x08, + 0x72, 0x78, 0xa5, 0x1c, 0x53, 0x73, 0x9a, 0x17, 0x20, 0xf0, 0x68, 0x01, + 0xd8, 0xa5, 0x55, 0x24, 0xe6, 0x9d, 0x19, 0xdc, 0x70, 0x6a, 0x70, 0xa3, + 0xa0, 0xa4, 0x1b, 0x91, 0x81, 0x81, 0x4d, 0x6e, 0xbe, 0xd5, 0x36, 0x3b, + 0x50, 0x54, 0x1a, 0x77, 0x0b, 0x10, 0x71, 0xda, 0x94, 0x03, 0xea, 0x2a, + 0x4f, 0x2c, 0x1a, 0x64, 0x80, 0xaf, 0x4a, 0x7c, 0xc2, 0xe5, 0x13, 0x9c, + 0xf5, 0xc5, 0x18, 0x39, 0xfb, 0xd5, 0x18, 0x27, 0x1c, 0x8a, 0x5c, 0xfe, + 0x74, 0xb9, 0x87, 0xca, 0x4c, 0x09, 0x5e, 0xf4, 0xbb, 0xf7, 0x71, 0x91, + 0x4c, 0x07, 0x8e, 0x69, 0xa4, 0x73, 0xc0, 0xa5, 0x70, 0x1c, 0xf1, 0x07, + 0x04, 0x1c, 0x7d, 0x2b, 0x07, 0x50, 0xd1, 0x48, 0x63, 0x2d, 0xbf, 0xd4, + 0xad, 0x74, 0x00, 0xf1, 0xc8, 0xa4, 0x3c, 0xff, 0x00, 0x0d, 0x26, 0xaf, + 0xb9, 0xa4, 0x26, 0xe0, 0xee, 0x8e, 0x20, 0xe7, 0x27, 0x72, 0xe0, 0x8e, + 0xd4, 0x06, 0xf4, 0xe2, 0xba, 0x5b, 0xfd, 0x32, 0x2b, 0xa1, 0xb8, 0x0d, + 0xb2, 0x7f, 0x78, 0x57, 0x3d, 0x73, 0x6d, 0x2d, 0xa3, 0xed, 0x91, 0x48, + 0xf4, 0x38, 0xe0, 0xd7, 0x3c, 0xa1, 0x63, 0xd0, 0xa7, 0x5a, 0x33, 0xf5, + 0x05, 0x90, 0x8e, 0xb8, 0xa5, 0x69, 0x01, 0xf5, 0xa8, 0x03, 0x0e, 0xf4, + 0xed, 0xc0, 0xd6, 0x4e, 0x26, 0xd7, 0x1f, 0x90, 0x4d, 0x21, 0xce, 0x72, + 0x0d, 0x46, 0x58, 0x0e, 0x94, 0x81, 0xa9, 0xa1, 0xd9, 0x17, 0xe0, 0xd5, + 0x6e, 0xad, 0xbe, 0x50, 0xfb, 0xd7, 0xd1, 0xab, 0x4a, 0xdf, 0x5d, 0x89, + 0x98, 0x09, 0x46, 0xc3, 0xfa, 0x57, 0x3d, 0xbc, 0x53, 0x64, 0x00, 0xf2, + 0x2b, 0x58, 0x54, 0x6b, 0x43, 0x9e, 0xa6, 0x1e, 0x13, 0xd4, 0xed, 0x92, + 0xe1, 0x26, 0x1b, 0x91, 0x81, 0x07, 0xb8, 0x34, 0xfd, 0xde, 0xb5, 0xc3, + 0xc1, 0x73, 0x2c, 0x0d, 0x98, 0xe4, 0x2b, 0x5a, 0xb6, 0xfa, 0xdc, 0x8b, + 0xc4, 0xcb, 0xb8, 0x7a, 0x8e, 0x0d, 0x69, 0xed, 0x15, 0xf5, 0x39, 0xa5, + 0x85, 0x97, 0xd9, 0xd4, 0xe8, 0x1b, 0x8e, 0x45, 0x30, 0xe7, 0xdc, 0x55, + 0x68, 0x35, 0x3b, 0x59, 0xf0, 0x04, 0x81, 0x4f, 0xa3, 0x71, 0x56, 0x8e, + 0x5b, 0xee, 0x9c, 0x8f, 0x6a, 0xd1, 0x34, 0xf6, 0x39, 0xe5, 0x17, 0x1d, + 0xd0, 0xa3, 0xae, 0x3b, 0xd4, 0x81, 0x72, 0x32, 0x48, 0xa8, 0xc7, 0x1d, + 0x4f, 0x34, 0xe0, 0x47, 0x6a, 0x05, 0x61, 0x0f, 0x3d, 0xe9, 0xb8, 0x52, + 0x79, 0x19, 0xa7, 0x95, 0x34, 0x05, 0xa6, 0x98, 0x9a, 0x1b, 0xe5, 0x9e, + 0xd4, 0xd2, 0x0a, 0xf5, 0xa9, 0xb2, 0x05, 0x35, 0xf2, 0xe3, 0x81, 0x4d, + 0x32, 0x5c, 0x7b, 0x10, 0x9c, 0x9a, 0x4c, 0x1a, 0x91, 0x81, 0x51, 0xd2, + 0x98, 0x3a, 0x73, 0x54, 0x4d, 0x86, 0x95, 0xa5, 0x03, 0x14, 0x67, 0x9c, + 0x52, 0x91, 0x40, 0x87, 0x2c, 0x84, 0xf1, 0x52, 0x6e, 0x06, 0xa2, 0x0b, + 0xe9, 0x4b, 0xd2, 0x95, 0x8a, 0xe6, 0x64, 0xc8, 0x32, 0x6a, 0x56, 0x3b, + 0x57, 0xad, 0x40, 0x87, 0x14, 0xb2, 0xc9, 0xf2, 0x1a, 0x39, 0x47, 0xce, + 0x45, 0x23, 0xee, 0xa8, 0xbb, 0x1a, 0x88, 0xcd, 0x93, 0xd2, 0xa4, 0x8c, + 0x96, 0x07, 0x8e, 0x2a, 0x1a, 0x29, 0x31, 0xa4, 0x91, 0x8c, 0xd3, 0xc1, + 0xc8, 0xa6, 0xe3, 0x38, 0xfa, 0x53, 0x80, 0xc5, 0x6a, 0x64, 0x3f, 0xb7, + 0x14, 0x8a, 0x30, 0x49, 0x34, 0x0e, 0x69, 0x18, 0x60, 0xd1, 0x60, 0xb8, + 0xed, 0xfc, 0xf3, 0x46, 0xea, 0x6f, 0x18, 0xeb, 0xcd, 0x1d, 0xa9, 0x59, + 0x0e, 0xec, 0x99, 0x65, 0xc0, 0xc5, 0x38, 0x49, 0x55, 0xf2, 0x47, 0x14, + 0x86, 0x74, 0x5f, 0xbc, 0xea, 0x3e, 0xa6, 0x8b, 0x21, 0xdd, 0xb2, 0xdf, + 0x99, 0xc5, 0x37, 0x79, 0xce, 0x6a, 0x84, 0x9a, 0xb5, 0x9c, 0x59, 0xdf, + 0x3a, 0xe7, 0xdb, 0x9a, 0xa5, 0x2f, 0x89, 0x2d, 0x13, 0x21, 0x15, 0xdc, + 0xfb, 0x52, 0x7c, 0xa8, 0xb8, 0xc2, 0xa4, 0xb6, 0x46, 0xd9, 0x93, 0x3d, + 0xa9, 0xac, 0x78, 0xe2, 0xb9, 0x69, 0xbc, 0x4f, 0x33, 0x64, 0x45, 0x0a, + 0xaf, 0xb9, 0x39, 0xaa, 0x13, 0x6b, 0x37, 0xd3, 0x75, 0x98, 0x81, 0xfe, + 0xcf, 0x15, 0x0e, 0x51, 0x46, 0xf1, 0xc2, 0xd5, 0x7b, 0xe8, 0x75, 0xd3, + 0x5d, 0x24, 0x43, 0x2f, 0x22, 0x81, 0xee, 0x6b, 0x3a, 0x7d, 0x76, 0xd6, + 0x3e, 0x03, 0x17, 0x3f, 0xec, 0x8a, 0xe5, 0x5e, 0x47, 0x90, 0xe5, 0x98, + 0xb1, 0xf7, 0x34, 0xdc, 0x54, 0xba, 0x9d, 0x8d, 0xe3, 0x83, 0x5f, 0x69, + 0x9b, 0x33, 0x6b, 0xf2, 0xb6, 0x44, 0x28, 0x14, 0x7a, 0x9e, 0x6b, 0x3a, + 0x6b, 0xeb, 0x9b, 0x8f, 0xf5, 0x92, 0xb1, 0x1e, 0x99, 0xaa, 0xf4, 0xb5, + 0x0e, 0x4d, 0x9d, 0x11, 0xa3, 0x08, 0xec, 0x85, 0xcd, 0x14, 0x82, 0x96, + 0xa6, 0xe6, 0xb6, 0x0a, 0x5c, 0x51, 0x45, 0x17, 0x1f, 0x28, 0x52, 0xf6, + 0xa4, 0xc5, 0x29, 0x1e, 0x82, 0x93, 0x63, 0xb5, 0x83, 0x34, 0xf4, 0x56, + 0x76, 0x0a, 0xa0, 0x92, 0x7b, 0x0a, 0xbd, 0x63, 0xa2, 0xdd, 0x5e, 0x10, + 0xc5, 0x4c, 0x71, 0xff, 0x00, 0x79, 0xab, 0xa8, 0xb0, 0xd2, 0x6d, 0xec, + 0xc0, 0x2a, 0xbb, 0x9f, 0xbb, 0x1e, 0xb5, 0x6a, 0x0d, 0x9c, 0xb5, 0x71, + 0x31, 0x8e, 0x8b, 0x56, 0x62, 0x58, 0x68, 0x2e, 0xe4, 0x3d, 0xc8, 0x2a, + 0xbd, 0x76, 0xf7, 0xae, 0x96, 0xde, 0x38, 0xe0, 0x8c, 0x47, 0x1a, 0x05, + 0x51, 0xe9, 0x52, 0x14, 0x02, 0x97, 0x8e, 0x95, 0xac, 0x63, 0x63, 0xce, + 0xa9, 0x55, 0xcb, 0x56, 0x29, 0xc0, 0xe8, 0x33, 0x4e, 0x1c, 0x8c, 0xe2, + 0x8c, 0xf6, 0xa0, 0x1e, 0x2a, 0xf6, 0x32, 0xdc, 0x50, 0x33, 0x45, 0x1b, + 0x8d, 0x19, 0x3e, 0x95, 0x25, 0x2b, 0x0b, 0x8a, 0x43, 0xc5, 0x28, 0x26, + 0x9a, 0xc6, 0x84, 0x0d, 0xd8, 0x0f, 0x26, 0x80, 0x48, 0xe2, 0x84, 0xcd, + 0x3c, 0xe3, 0xf1, 0xa6, 0xdf, 0x40, 0x4b, 0xa8, 0x06, 0xe6, 0x9d, 0xd7, + 0xb5, 0x37, 0x77, 0xb5, 0x1b, 0xa9, 0x0c, 0x52, 0x07, 0xd2, 0x93, 0x07, + 0xd6, 0x83, 0x40, 0x26, 0x81, 0x06, 0xd3, 0xeb, 0x4e, 0xd9, 0x8a, 0x4c, + 0x9a, 0x0b, 0x13, 0x4c, 0x34, 0x17, 0x00, 0x52, 0x1c, 0x53, 0x49, 0xa6, + 0xe6, 0x8b, 0x05, 0xc7, 0xe4, 0x51, 0x9c, 0xd3, 0x29, 0x57, 0xaf, 0x34, + 0x58, 0x2e, 0x2f, 0x34, 0x53, 0xa9, 0xa4, 0x8a, 0x48, 0x6c, 0x42, 0x29, + 0x39, 0xa5, 0x5e, 0x5b, 0xa5, 0x38, 0x8c, 0xd0, 0xc4, 0x84, 0xc8, 0xc7, + 0x5a, 0x0e, 0x7b, 0x0a, 0x56, 0x75, 0x1d, 0x85, 0x35, 0x5b, 0x77, 0x39, + 0xa1, 0x0c, 0x55, 0x8c, 0xe7, 0x24, 0x51, 0x24, 0x31, 0xb8, 0xc4, 0x88, + 0xac, 0x3d, 0x08, 0xa5, 0xc9, 0xed, 0x4b, 0xcf, 0x7a, 0x05, 0xb0, 0x05, + 0x50, 0xa0, 0x01, 0x80, 0x3b, 0x53, 0xb2, 0x31, 0x4d, 0xce, 0x78, 0xa5, + 0x3c, 0x50, 0x3f, 0x31, 0x41, 0x14, 0x8c, 0xe3, 0x19, 0xa6, 0xe7, 0x34, + 0xd9, 0x54, 0x48, 0x85, 0x5b, 0xee, 0x91, 0x83, 0x40, 0x26, 0x72, 0x5e, + 0x20, 0xd5, 0xcd, 0xcc, 0xa6, 0xda, 0x26, 0xfd, 0xda, 0x9e, 0x48, 0xee, + 0x6b, 0x06, 0xbb, 0x29, 0xfc, 0x35, 0x65, 0x21, 0x25, 0x37, 0xc6, 0x7d, + 0x8e, 0x6b, 0x3e, 0x6f, 0x0a, 0x48, 0x3f, 0xd4, 0xdc, 0x29, 0xf6, 0x61, + 0x58, 0xc9, 0x36, 0x7a, 0x34, 0x6b, 0x52, 0x8a, 0xb1, 0xce, 0x77, 0xa3, + 0x35, 0xa9, 0x2f, 0x87, 0xaf, 0xd0, 0x9d, 0xa8, 0x1f, 0xe8, 0x6a, 0xb3, + 0xe9, 0x57, 0xb1, 0xfd, 0xeb, 0x77, 0xfc, 0x06, 0x6a, 0x1a, 0x67, 0x52, + 0xad, 0x4d, 0xec, 0xca, 0x7d, 0xe9, 0x7b, 0x54, 0xa6, 0xce, 0xe5, 0x7a, + 0xc1, 0x27, 0xfd, 0xf2, 0x68, 0xfb, 0x35, 0xc7, 0xfc, 0xf0, 0x93, 0xfe, + 0xf9, 0x34, 0xac, 0x57, 0xb4, 0x8f, 0x72, 0x13, 0x4a, 0x0d, 0x4e, 0xb6, + 0x37, 0x2d, 0xff, 0x00, 0x2c, 0x24, 0xff, 0x00, 0xbe, 0x4d, 0x4b, 0x1e, + 0x93, 0x7a, 0xff, 0x00, 0x76, 0x06, 0xfc, 0x78, 0xa1, 0x26, 0x4b, 0xab, + 0x05, 0xbb, 0x29, 0xd1, 0x8a, 0xd8, 0x8b, 0xc3, 0x77, 0xb2, 0x63, 0x76, + 0xd4, 0xfa, 0x9a, 0xbf, 0x07, 0x86, 0x23, 0x52, 0x0c, 0xf3, 0x31, 0xf6, + 0x5e, 0x2a, 0x94, 0x59, 0x9c, 0xb1, 0x34, 0xd7, 0x53, 0x97, 0xda, 0x49, + 0xc0, 0x19, 0x3e, 0xd5, 0xa9, 0x63, 0xa0, 0xdd, 0xdd, 0x90, 0xce, 0xbe, + 0x5c, 0x67, 0xbb, 0x57, 0x53, 0x6d, 0xa6, 0x5a, 0x5a, 0xf3, 0x14, 0x43, + 0x3e, 0xa7, 0x93, 0x57, 0x46, 0x05, 0x5a, 0xa7, 0xdc, 0xe5, 0x9e, 0x32, + 0x4f, 0x48, 0xab, 0x14, 0x74, 0xed, 0x26, 0xde, 0xc3, 0xee, 0x2e, 0xe9, + 0x3b, 0xb9, 0xeb, 0x5a, 0x4c, 0x08, 0x14, 0xc0, 0x40, 0x34, 0xf2, 0x72, + 0x2b, 0x5b, 0x23, 0x89, 0xc9, 0xb7, 0x76, 0x47, 0x93, 0x46, 0x4d, 0x21, + 0xeb, 0x41, 0xce, 0x28, 0x10, 0x84, 0x93, 0x46, 0x31, 0x46, 0x73, 0xc5, + 0x2f, 0xe1, 0x40, 0xc3, 0x9a, 0x33, 0xeb, 0x48, 0x4d, 0x36, 0x90, 0xc9, + 0x07, 0x1c, 0xe6, 0x82, 0x45, 0x30, 0x01, 0x4b, 0x8c, 0x53, 0x10, 0x8c, + 0x79, 0xe2, 0x90, 0xd3, 0x8d, 0x34, 0xe6, 0x81, 0x00, 0xe4, 0xe2, 0x9d, + 0x4c, 0xfe, 0x74, 0xf0, 0x46, 0x0e, 0x68, 0x6c, 0x69, 0x08, 0xcd, 0x8a, + 0x9e, 0x37, 0xca, 0xf5, 0xa8, 0x38, 0x6a, 0x06, 0x57, 0x8a, 0x1e, 0xa8, + 0x4b, 0x46, 0x5b, 0xe0, 0xf5, 0xa8, 0xca, 0x0c, 0xd3, 0x04, 0x86, 0x97, + 0xcc, 0xcd, 0x22, 0x86, 0xb2, 0x00, 0x78, 0xa4, 0x09, 0x4f, 0xce, 0x68, + 0x14, 0x00, 0x04, 0xc7, 0x4e, 0x29, 0x49, 0x29, 0xcd, 0x2e, 0xee, 0x29, + 0x09, 0xcd, 0x00, 0x39, 0x65, 0x0d, 0xd6, 0x9d, 0xb8, 0x1a, 0xae, 0xcb, + 0x8e, 0x45, 0x11, 0xc8, 0x48, 0xc5, 0x16, 0xec, 0x17, 0xee, 0x58, 0xde, + 0xa0, 0x74, 0xa8, 0xd9, 0xf2, 0x68, 0xcf, 0x1d, 0x29, 0x99, 0xc1, 0xa2, + 0xe0, 0x38, 0xa8, 0x34, 0x05, 0x03, 0xad, 0x27, 0x5a, 0x33, 0x8a, 0x00, + 0x78, 0xc5, 0x38, 0x11, 0x4c, 0x07, 0x26, 0x82, 0x79, 0xa4, 0x04, 0x9c, + 0x51, 0x91, 0x51, 0x06, 0xc7, 0x51, 0x4a, 0x4d, 0x01, 0x71, 0xcd, 0x82, + 0x2a, 0xa4, 0xf1, 0x47, 0x32, 0x14, 0x91, 0x43, 0x03, 0xeb, 0x56, 0x0d, + 0x46, 0xc0, 0x51, 0x61, 0xa7, 0x63, 0x9a, 0xbf, 0xd2, 0x5a, 0x2c, 0xbc, + 0x39, 0x74, 0xf4, 0xee, 0x2b, 0x28, 0xee, 0x53, 0x8a, 0xed, 0x4a, 0x0f, + 0x5a, 0xa3, 0x77, 0xa5, 0xc1, 0x74, 0xa5, 0x82, 0xec, 0x7f, 0xef, 0x0a, + 0xce, 0x54, 0xfb, 0x1d, 0x54, 0xf1, 0x3d, 0x24, 0x72, 0xfb, 0x81, 0xeb, + 0x4b, 0xc5, 0x4f, 0x77, 0xa7, 0xdc, 0x5a, 0x93, 0xbd, 0x72, 0xbd, 0x98, + 0x55, 0x4e, 0x6b, 0x26, 0xac, 0x76, 0xc5, 0xa9, 0x2b, 0xa1, 0xf4, 0xa5, + 0x87, 0x4a, 0x66, 0x4d, 0x14, 0x87, 0x60, 0x3c, 0x1a, 0x70, 0x60, 0x45, + 0x46, 0xdc, 0x53, 0x43, 0x11, 0x54, 0xd5, 0xd0, 0xb6, 0x64, 0xa4, 0x91, + 0x53, 0xc1, 0x7d, 0x71, 0x6e, 0x7f, 0x77, 0x2b, 0x01, 0xe9, 0x9a, 0xab, + 0xbb, 0x34, 0xb5, 0x3a, 0xa2, 0xac, 0x9e, 0xe6, 0xdc, 0x1a, 0xfb, 0x8e, + 0x25, 0x8c, 0x37, 0xb8, 0xe2, 0xb4, 0xed, 0xb5, 0xab, 0x37, 0x1f, 0x33, + 0xec, 0x3f, 0xed, 0x57, 0x23, 0xcd, 0x37, 0x26, 0xad, 0x54, 0x7d, 0x4c, + 0x65, 0x86, 0x83, 0xd8, 0xef, 0x16, 0xe2, 0x39, 0xb0, 0x63, 0x91, 0x58, + 0x7b, 0x1a, 0x90, 0x57, 0x04, 0x92, 0x34, 0x67, 0x2a, 0xc5, 0x4f, 0xb1, + 0xab, 0x71, 0x6b, 0x37, 0x90, 0xf0, 0x25, 0x24, 0x7f, 0xb5, 0xcd, 0x68, + 0xaa, 0xa3, 0x9e, 0x58, 0x37, 0xd1, 0x9d, 0x8f, 0x7e, 0x94, 0xfe, 0x02, + 0xe2, 0xb9, 0x78, 0xbc, 0x49, 0x30, 0x23, 0xcc, 0x89, 0x48, 0xf6, 0xe2, + 0xae, 0xc7, 0xe2, 0x3b, 0x62, 0x46, 0xf4, 0x75, 0xaa, 0xe7, 0x8b, 0x32, + 0x78, 0x7a, 0x91, 0xe8, 0x6d, 0x10, 0x00, 0xe6, 0xa2, 0x20, 0x1e, 0x2a, + 0xa2, 0xea, 0xf6, 0x52, 0xf4, 0x9c, 0x03, 0xef, 0xc5, 0x4e, 0x93, 0xc3, + 0x20, 0xca, 0x4a, 0x87, 0xe8, 0x6a, 0x93, 0x32, 0x94, 0x24, 0xb7, 0x43, + 0x8a, 0x15, 0x19, 0x03, 0x34, 0xdd, 0xc4, 0x9c, 0x62, 0xa5, 0x00, 0xb2, + 0xf0, 0x69, 0x70, 0xd8, 0xe8, 0x2a, 0xb9, 0x8c, 0xdc, 0x48, 0x81, 0xa7, + 0x7d, 0xea, 0x52, 0x87, 0x14, 0xf8, 0xe2, 0xf7, 0xaa, 0xba, 0x21, 0xc5, + 0x88, 0x06, 0xd1, 0x51, 0x4d, 0xca, 0xe2, 0xac, 0x95, 0xc0, 0xc5, 0x57, + 0x72, 0x00, 0xf5, 0xa6, 0x22, 0x96, 0xd2, 0x0d, 0x4a, 0x80, 0xe0, 0xf6, + 0xa7, 0x6f, 0xcf, 0x6a, 0x41, 0xc0, 0x34, 0x86, 0x62, 0x8f, 0x11, 0xa8, + 0xff, 0x00, 0x96, 0x07, 0xf3, 0xa6, 0xb7, 0x89, 0x4e, 0x78, 0xb7, 0xfc, + 0xcd, 0x60, 0xd0, 0x6b, 0x97, 0xdb, 0x48, 0xf6, 0x7e, 0xa7, 0x4b, 0xb1, + 0xb4, 0x7c, 0x4b, 0x30, 0xfb, 0xb0, 0x27, 0xe2, 0x6a, 0x36, 0xf1, 0x25, + 0xcb, 0x7f, 0xcb, 0x34, 0x15, 0x91, 0x49, 0x8a, 0x3d, 0xac, 0x81, 0x61, + 0x29, 0x76, 0x35, 0x7f, 0xe1, 0x21, 0xba, 0xec, 0xa9, 0xf9, 0x54, 0x6f, + 0xae, 0xdf, 0x37, 0x49, 0x02, 0xfd, 0x05, 0x67, 0x6d, 0xa0, 0xad, 0x2f, + 0x6a, 0xcb, 0x58, 0x6a, 0x7d, 0x8b, 0x2f, 0xa9, 0x5e, 0x4b, 0xf7, 0xa7, + 0x7f, 0xc0, 0xe2, 0xa0, 0x69, 0x5d, 0xfe, 0xf3, 0xb1, 0xfa, 0x9a, 0x6e, + 0x29, 0x31, 0x47, 0x3b, 0x2d, 0x53, 0x8a, 0xd9, 0x01, 0x34, 0x94, 0xec, + 0x0a, 0x5e, 0x05, 0x4f, 0x31, 0x5c, 0xa3, 0x68, 0xa7, 0x66, 0x93, 0x14, + 0x73, 0x0f, 0x94, 0x4a, 0x29, 0x69, 0xa6, 0x9a, 0x60, 0xe3, 0x61, 0xe0, + 0x52, 0x62, 0x90, 0x1f, 0x5a, 0x76, 0x69, 0x3b, 0x82, 0xb0, 0x51, 0x49, + 0x4e, 0x48, 0xde, 0x46, 0xda, 0x8a, 0x49, 0x3d, 0x85, 0x03, 0x6d, 0x21, + 0x29, 0x71, 0x9a, 0xd5, 0xb4, 0xf0, 0xfd, 0xdd, 0xc6, 0x0b, 0x81, 0x12, + 0xfb, 0xf5, 0xad, 0xeb, 0x4d, 0x16, 0xda, 0xd0, 0x67, 0x66, 0xf7, 0x1f, + 0xc4, 0xd5, 0x6a, 0x12, 0x67, 0x2d, 0x4c, 0x55, 0x38, 0xed, 0xa9, 0xcd, + 0xd9, 0xe9, 0x17, 0x57, 0x64, 0x10, 0x85, 0x13, 0xfb, 0xcd, 0x5d, 0x1d, + 0x86, 0x89, 0x6f, 0x68, 0x43, 0xba, 0xf9, 0x8f, 0xea, 0xdd, 0x2b, 0x42, + 0x32, 0x01, 0xe9, 0xc5, 0x58, 0xe0, 0x8a, 0xd1, 0x41, 0x23, 0x86, 0x78, + 0x89, 0xd4, 0xf4, 0x00, 0x46, 0xde, 0x80, 0x51, 0x8a, 0x30, 0x33, 0x80, + 0x69, 0xc1, 0x6a, 0x8c, 0x44, 0xda, 0x31, 0x9a, 0x4d, 0xb9, 0xa7, 0xe0, + 0x01, 0xd6, 0x81, 0xf5, 0xa7, 0x71, 0x72, 0x86, 0xcc, 0x76, 0xa4, 0xa7, + 0xee, 0x14, 0x87, 0x06, 0xa6, 0xe5, 0x59, 0x0c, 0xa5, 0x14, 0xbc, 0x53, + 0x19, 0xe9, 0xad, 0x49, 0x7a, 0x0a, 0x5a, 0x91, 0x46, 0x4d, 0x34, 0x64, + 0x9a, 0x95, 0x78, 0xaa, 0xd8, 0x95, 0xab, 0x0d, 0xa7, 0x14, 0x98, 0xe6, + 0xa6, 0x04, 0x11, 0xed, 0x4c, 0x38, 0xec, 0x2a, 0x2e, 0x5d, 0x86, 0x1d, + 0xc3, 0xa5, 0x01, 0x8f, 0xf7, 0x69, 0xdb, 0x49, 0xa6, 0x95, 0x39, 0xaa, + 0xb8, 0xac, 0x38, 0x37, 0xb5, 0x05, 0xc0, 0x23, 0x83, 0x4c, 0xc1, 0x1d, + 0xe9, 0xc1, 0xb1, 0xd6, 0x80, 0x02, 0xeb, 0x9e, 0xb4, 0xa0, 0x8a, 0x42, + 0x63, 0x6e, 0xb4, 0x6c, 0x4e, 0xcd, 0x8a, 0x2e, 0x82, 0xcc, 0x53, 0x4c, + 0xe0, 0x1a, 0x7e, 0x10, 0x75, 0x24, 0xd1, 0x95, 0xc7, 0xca, 0x28, 0xb8, + 0x58, 0x4e, 0x9d, 0x00, 0xfc, 0x69, 0xa4, 0x9f, 0x4a, 0x78, 0x38, 0xf7, + 0xa5, 0x27, 0xda, 0x8b, 0x85, 0x88, 0xfe, 0x63, 0xc7, 0x4a, 0x90, 0x2a, + 0x81, 0xcf, 0x34, 0xcd, 0xc4, 0x1a, 0x69, 0x63, 0x9a, 0x35, 0x62, 0xd1, + 0x13, 0x6f, 0x03, 0xa5, 0x34, 0x9d, 0xdd, 0x29, 0x83, 0xf3, 0xa7, 0x13, + 0xeb, 0x4a, 0xc3, 0xb9, 0x1b, 0x2b, 0x6e, 0x02, 0xa4, 0x44, 0xc5, 0x19, + 0x1d, 0xaa, 0x45, 0xe6, 0xa9, 0xec, 0x25, 0xb8, 0xcc, 0x61, 0xa9, 0xdc, + 0xd2, 0xb0, 0x1c, 0x52, 0x33, 0x6d, 0x38, 0xa4, 0x31, 0x7a, 0x53, 0x59, + 0xa9, 0xbb, 0x89, 0xa6, 0xb1, 0xc5, 0x21, 0x8b, 0xbb, 0xda, 0x82, 0xd5, + 0x1e, 0xea, 0x4c, 0xd1, 0x61, 0x5c, 0x7e, 0xfe, 0x39, 0x34, 0x66, 0xa3, + 0xc5, 0x2e, 0x45, 0x16, 0x0b, 0x8e, 0x3d, 0x68, 0x38, 0x34, 0xdc, 0xd3, + 0xa8, 0x18, 0xdc, 0x0f, 0x4a, 0x4e, 0x01, 0xfb, 0xb4, 0xf0, 0x33, 0x43, + 0x0c, 0x9a, 0x06, 0x46, 0xdf, 0x95, 0x2a, 0xa8, 0x14, 0xa5, 0x7d, 0x68, + 0xe9, 0x40, 0x87, 0x67, 0x14, 0xd2, 0x72, 0x69, 0x84, 0x9a, 0x03, 0x50, + 0x90, 0x36, 0x3f, 0x34, 0x66, 0x81, 0xcd, 0x04, 0x50, 0x02, 0x1c, 0xe7, + 0x22, 0x9e, 0xa7, 0x34, 0x8a, 0x70, 0x79, 0xa7, 0x63, 0xb8, 0xa7, 0x72, + 0x5a, 0x14, 0x8a, 0x4a, 0x39, 0xa4, 0xc9, 0xcd, 0x03, 0x1a, 0x40, 0x14, + 0x1e, 0x69, 0x49, 0x06, 0x90, 0x50, 0x21, 0x00, 0xe6, 0x9f, 0xda, 0x80, + 0x28, 0x3e, 0xd4, 0x0d, 0x08, 0x69, 0x31, 0x4b, 0x8a, 0x5c, 0x1c, 0x75, + 0xa0, 0x06, 0xd2, 0x11, 0x4e, 0x2b, 0x4a, 0x56, 0x8b, 0x80, 0xcc, 0x62, + 0x97, 0x9a, 0x78, 0x4a, 0x42, 0xa0, 0x74, 0xa0, 0x06, 0xe0, 0x11, 0xe9, + 0x49, 0x92, 0x3a, 0x8c, 0xd3, 0xa8, 0xa2, 0xc2, 0xb8, 0xd0, 0xc2, 0x97, + 0x23, 0xd6, 0x8c, 0x03, 0x4b, 0xe5, 0x83, 0xd4, 0x0a, 0x06, 0x28, 0x5c, + 0xff, 0x00, 0x15, 0x39, 0xbe, 0x5f, 0x7a, 0x4d, 0x8a, 0x05, 0x46, 0x54, + 0xf6, 0x6a, 0x34, 0x16, 0xa3, 0xf3, 0x4e, 0x53, 0x50, 0x86, 0x64, 0xea, + 0x32, 0x2a, 0x41, 0x22, 0x1e, 0x3a, 0x1a, 0x2c, 0x3b, 0x8f, 0x6e, 0x95, + 0x5d, 0x89, 0x43, 0x91, 0x52, 0x9f, 0x63, 0x9a, 0x6b, 0x73, 0xda, 0x92, + 0x06, 0xae, 0x31, 0x65, 0xcf, 0x53, 0x8a, 0x93, 0x35, 0x09, 0x50, 0x7b, + 0x53, 0xd0, 0x71, 0x8a, 0x6e, 0xc2, 0x57, 0x1e, 0x1c, 0x63, 0x9a, 0x5f, + 0x97, 0xae, 0x69, 0xa5, 0x45, 0x0b, 0x8c, 0x51, 0x60, 0xb8, 0xe0, 0xd8, + 0xe4, 0x53, 0x4c, 0xcd, 0x9c, 0x01, 0x4b, 0xc7, 0xa5, 0x38, 0x28, 0x3d, + 0xa8, 0xb2, 0x0b, 0xb1, 0x9e, 0x69, 0xef, 0x8a, 0x72, 0xca, 0x29, 0xde, + 0x5a, 0x9e, 0xd4, 0x04, 0x51, 0xda, 0x8d, 0x03, 0x51, 0x0f, 0xcd, 0xd0, + 0xd2, 0x71, 0x8e, 0x69, 0xe4, 0x01, 0xd0, 0x51, 0xc7, 0xa5, 0x03, 0x19, + 0xf2, 0x7a, 0x0a, 0x86, 0x46, 0xe7, 0x8e, 0x2a, 0x72, 0x80, 0xf4, 0x14, + 0xd3, 0x1e, 0x47, 0x34, 0x68, 0x1a, 0x95, 0x1d, 0xa3, 0x20, 0xab, 0x8c, + 0xfd, 0x45, 0x65, 0x5d, 0x69, 0x11, 0x4c, 0x4b, 0x5b, 0x9d, 0xad, 0xe9, + 0xd8, 0xd6, 0xdb, 0x5b, 0x06, 0xa1, 0x21, 0xf2, 0xfa, 0x62, 0xa5, 0xc6, + 0x2c, 0xb8, 0x54, 0x9c, 0x5d, 0xd3, 0x38, 0xcb, 0x8b, 0x69, 0xed, 0x5b, + 0x12, 0xc6, 0x47, 0xbf, 0x6a, 0x83, 0xcc, 0xf6, 0xae, 0xe6, 0x44, 0x49, + 0x14, 0xab, 0x80, 0xc0, 0xfa, 0x8a, 0xc6, 0xba, 0xf0, 0xfc, 0x72, 0xe5, + 0xa0, 0x6f, 0x2d, 0xbd, 0x3b, 0x56, 0x4e, 0x92, 0xe8, 0x76, 0xd3, 0xc5, + 0xdf, 0x49, 0x1c, 0xf6, 0x72, 0x29, 0x84, 0x55, 0xbb, 0x9d, 0x36, 0xea, + 0xd0, 0x9f, 0x32, 0x33, 0xb7, 0xfb, 0xc3, 0x91, 0x55, 0x08, 0x35, 0x29, + 0x58, 0xe9, 0x4d, 0x49, 0x5d, 0x00, 0x38, 0xa7, 0xee, 0xa8, 0x73, 0x4e, + 0x0d, 0xc5, 0x0d, 0x14, 0x89, 0x0b, 0x53, 0x73, 0x48, 0x48, 0xa4, 0xa9, + 0x2a, 0xc3, 0xa9, 0x08, 0x14, 0x94, 0x66, 0x8b, 0x85, 0x85, 0xe8, 0x29, + 0xa4, 0x9a, 0x5a, 0x38, 0xa4, 0x31, 0x32, 0x69, 0x44, 0x8c, 0xa7, 0x20, + 0x91, 0x48, 0x69, 0x31, 0x9a, 0x02, 0xc4, 0xcb, 0x7d, 0x70, 0x9f, 0x76, + 0x69, 0x07, 0xfc, 0x08, 0xd4, 0xe9, 0xac, 0x5f, 0x20, 0xe2, 0x76, 0xfc, + 0x79, 0xaa, 0x41, 0x69, 0x6a, 0xb9, 0xac, 0x4b, 0xa7, 0x17, 0xba, 0x34, + 0xd7, 0x5f, 0xbf, 0x5e, 0xae, 0x0f, 0xd4, 0x54, 0xe9, 0xe2, 0x6b, 0xb5, + 0x18, 0x29, 0x19, 0xac, 0x53, 0x40, 0x34, 0xf9, 0xe4, 0x4b, 0xa1, 0x4d, + 0xf4, 0x3a, 0x01, 0xe2, 0x99, 0x88, 0xf9, 0xa0, 0x5f, 0xc0, 0xd4, 0x67, + 0xc4, 0x79, 0x3c, 0xc1, 0xfa, 0xd6, 0x11, 0x34, 0xde, 0x69, 0xfb, 0x49, + 0x10, 0xf0, 0xb4, 0x7b, 0x1d, 0x00, 0xf1, 0x02, 0x75, 0xf2, 0x0f, 0xe7, + 0x41, 0xf1, 0x0a, 0x73, 0x88, 0x5b, 0xf3, 0xae, 0x7f, 0x06, 0x96, 0x8f, + 0x6d, 0x21, 0x3c, 0x1d, 0x2e, 0xc2, 0x1a, 0x4a, 0x09, 0xe6, 0x93, 0x35, + 0x16, 0x3a, 0x42, 0x94, 0x53, 0x73, 0x46, 0x68, 0xb0, 0x0e, 0xcd, 0x19, + 0xcd, 0x37, 0x34, 0x66, 0x8b, 0x0e, 0xe2, 0xd2, 0x52, 0x51, 0x9a, 0x2c, + 0x2b, 0x8e, 0x06, 0x8a, 0x6e, 0x68, 0xcd, 0x16, 0x0b, 0x8e, 0xa4, 0xcd, + 0x26, 0x69, 0x55, 0x59, 0xce, 0x15, 0x49, 0x3e, 0xc2, 0x9a, 0x42, 0x72, + 0x13, 0x34, 0x67, 0x9a, 0xb9, 0x0e, 0x97, 0x79, 0x37, 0xdd, 0x85, 0x80, + 0xf5, 0x3c, 0x56, 0x9d, 0xbf, 0x86, 0xc9, 0xe6, 0x79, 0x40, 0xf6, 0x5a, + 0xb5, 0x06, 0xcc, 0x27, 0x89, 0xa7, 0x1d, 0xd9, 0x83, 0x8c, 0xf4, 0xab, + 0xf6, 0x9a, 0x3d, 0xed, 0xde, 0x0a, 0x44, 0x42, 0xff, 0x00, 0x79, 0xb8, + 0x15, 0xd3, 0xda, 0x69, 0x36, 0x56, 0xd8, 0x2b, 0x18, 0x66, 0xf5, 0x6e, + 0x6b, 0x51, 0x1d, 0x54, 0x00, 0x00, 0x02, 0xad, 0x52, 0xee, 0x72, 0x54, + 0xc7, 0x74, 0x82, 0x39, 0xcb, 0x7f, 0x0b, 0xa2, 0x60, 0xcf, 0x21, 0x63, + 0xe8, 0xbd, 0x2b, 0x5e, 0xde, 0xce, 0x0b, 0x51, 0x88, 0xe2, 0x55, 0xf7, + 0xc7, 0x35, 0x7b, 0xcc, 0x5a, 0x61, 0x21, 0xf8, 0x15, 0xaa, 0x8a, 0x47, + 0x14, 0xea, 0xce, 0x7b, 0xb1, 0xcb, 0xb4, 0xf4, 0xa7, 0x6c, 0xc9, 0xa8, + 0xb0, 0x57, 0x18, 0xa9, 0x15, 0xb3, 0x43, 0x42, 0x4e, 0xe2, 0x08, 0x80, + 0x34, 0xa5, 0x3d, 0xe9, 0xf9, 0xcd, 0x34, 0xd2, 0xb8, 0xec, 0x34, 0x27, + 0x7a, 0x50, 0x48, 0x3d, 0x69, 0x77, 0x00, 0x29, 0xb9, 0xa0, 0x76, 0x1f, + 0xbb, 0x22, 0x80, 0x70, 0x69, 0xb9, 0xcd, 0x04, 0xd2, 0x18, 0xe2, 0x45, + 0x37, 0x70, 0x02, 0x93, 0x3e, 0xb4, 0x85, 0xa8, 0x48, 0x1b, 0x14, 0xc9, + 0xe9, 0x4d, 0xce, 0x4d, 0x26, 0x32, 0x69, 0xca, 0xb8, 0xaa, 0xd8, 0x8d, + 0xd8, 0xf5, 0x06, 0x9d, 0x8c, 0xfd, 0x69, 0x01, 0xc5, 0x2e, 0xe3, 0x51, + 0xa9, 0xa2, 0x49, 0x0e, 0x19, 0x1d, 0xe9, 0x46, 0x33, 0x4c, 0xdd, 0x46, + 0x49, 0xe9, 0x40, 0x6c, 0x3c, 0xb6, 0x29, 0x37, 0x66, 0x93, 0x1e, 0xa4, + 0xd0, 0x41, 0xea, 0x29, 0x0c, 0x52, 0xa7, 0xd6, 0xa3, 0x6f, 0xa5, 0x3d, + 0x73, 0xde, 0x9f, 0xb4, 0x7a, 0xd3, 0x44, 0x90, 0x8e, 0x94, 0x9c, 0xd4, + 0xa4, 0x01, 0x48, 0x17, 0x35, 0x64, 0xd8, 0x8f, 0xe6, 0xee, 0x29, 0xc0, + 0xd3, 0xf0, 0x05, 0x36, 0x80, 0x10, 0xb5, 0x19, 0x34, 0xb4, 0xc2, 0x0e, + 0x78, 0xa0, 0x05, 0xa5, 0x34, 0xa0, 0x7a, 0xd2, 0xe2, 0x8b, 0x8a, 0xc2, + 0x0e, 0x69, 0x76, 0x93, 0xd6, 0x80, 0xc0, 0x76, 0xa5, 0xdd, 0xef, 0x45, + 0xc7, 0xca, 0x1b, 0x6a, 0x45, 0x18, 0xe8, 0x2a, 0x3d, 0xe3, 0xaf, 0x14, + 0xef, 0x33, 0x83, 0xcd, 0x4b, 0x6c, 0xa4, 0x92, 0x06, 0x63, 0xf8, 0xd4, + 0x5d, 0x7a, 0x9a, 0x46, 0x60, 0x0d, 0x19, 0xcd, 0x34, 0x26, 0x29, 0xe3, + 0xbd, 0x26, 0x68, 0x34, 0x83, 0x14, 0x00, 0x6d, 0x07, 0xad, 0x26, 0xdc, + 0x53, 0x89, 0xa6, 0xe6, 0x98, 0x84, 0xe2, 0x80, 0x05, 0x2e, 0x05, 0x18, + 0x14, 0x86, 0x28, 0x02, 0x97, 0x22, 0x98, 0x68, 0x5a, 0x56, 0x1d, 0xc7, + 0x67, 0x34, 0x84, 0xe2, 0x9c, 0x31, 0xd2, 0x97, 0x8a, 0x04, 0x30, 0xfa, + 0xd3, 0x79, 0xa9, 0x70, 0x0d, 0x34, 0xaf, 0xbd, 0x03, 0x22, 0x20, 0xd0, + 0x14, 0xd4, 0x87, 0xde, 0x8e, 0xde, 0xd4, 0x5c, 0x56, 0x10, 0x52, 0xe6, + 0x93, 0xbd, 0x2e, 0x32, 0x38, 0xa0, 0x03, 0x8a, 0x7a, 0x9a, 0x8b, 0x9a, + 0x78, 0x34, 0xc0, 0x97, 0x8a, 0x8d, 0x85, 0x05, 0xb9, 0xe2, 0x97, 0x39, + 0xa0, 0x08, 0xf6, 0xd2, 0xe3, 0x14, 0xe2, 0x70, 0x29, 0x83, 0xe6, 0x3c, + 0xd0, 0x98, 0x9a, 0x14, 0x7b, 0x53, 0xba, 0x52, 0xa8, 0x1d, 0x29, 0xae, + 0xa4, 0x9e, 0x0d, 0x2e, 0xa3, 0xb6, 0x82, 0xe6, 0x93, 0x3c, 0x53, 0x42, + 0x9a, 0x70, 0x20, 0x75, 0xa6, 0xd0, 0x26, 0x26, 0xef, 0x4a, 0x32, 0x69, + 0x08, 0x19, 0xc8, 0xa2, 0x90, 0xc7, 0x86, 0x38, 0xa7, 0x7c, 0xa4, 0x7b, + 0xd3, 0x01, 0xe2, 0x8c, 0xf6, 0xa0, 0x07, 0x14, 0xa6, 0x11, 0xcd, 0x2e, + 0x4f, 0xad, 0x2e, 0xec, 0xf5, 0x14, 0xd3, 0x13, 0x43, 0x45, 0x3c, 0x52, + 0x63, 0x3d, 0x29, 0x40, 0xc0, 0xa6, 0x4a, 0x1a, 0x4f, 0x34, 0x86, 0x9f, + 0x81, 0x48, 0x56, 0x91, 0x44, 0x79, 0xa4, 0xc2, 0x9a, 0x71, 0x1e, 0xb4, + 0x9b, 0x05, 0x00, 0x00, 0xed, 0xe9, 0x4a, 0x0e, 0xea, 0x6f, 0x96, 0x0d, + 0x34, 0xee, 0x43, 0xed, 0x45, 0x93, 0x0d, 0x89, 0x0a, 0x73, 0xcd, 0x00, + 0x62, 0x91, 0x24, 0x27, 0xad, 0x2e, 0xff, 0x00, 0x6a, 0x43, 0xb0, 0xa4, + 0x71, 0x40, 0x51, 0x46, 0xea, 0x50, 0xd4, 0x5c, 0x56, 0x00, 0x39, 0xa7, + 0x8e, 0x05, 0x47, 0xb8, 0x7a, 0xd1, 0xba, 0x80, 0x24, 0xcd, 0x21, 0x61, + 0x4c, 0x07, 0x34, 0xbc, 0x50, 0x3b, 0x0b, 0x9c, 0xd0, 0x29, 0x33, 0xe8, + 0x28, 0xdf, 0x8a, 0x40, 0x38, 0x67, 0xd2, 0x8c, 0xf6, 0xa6, 0xf9, 0x94, + 0x99, 0x26, 0x80, 0x14, 0xe4, 0x74, 0xa6, 0x12, 0x69, 0xc4, 0xd3, 0x3a, + 0x9a, 0x60, 0x34, 0x02, 0x0f, 0x34, 0xec, 0x8a, 0x0f, 0x1d, 0x69, 0xbb, + 0xc5, 0x00, 0x38, 0xaa, 0xb0, 0xc1, 0x00, 0xfd, 0x6a, 0x85, 0xd6, 0x8b, + 0x69, 0x70, 0x09, 0xd9, 0xb1, 0xbd, 0x56, 0xaf, 0xab, 0xad, 0x0d, 0x45, + 0x87, 0x19, 0xb5, 0xaa, 0x67, 0x27, 0x77, 0xa0, 0x5c, 0x44, 0x4b, 0x44, + 0x44, 0x8b, 0xf9, 0x1a, 0xcb, 0x92, 0x19, 0x21, 0x38, 0x91, 0x19, 0x4f, + 0xb8, 0xae, 0xf8, 0x8a, 0x86, 0x58, 0x63, 0x91, 0x70, 0xe8, 0xac, 0x3d, + 0x08, 0xa9, 0xe4, 0x4c, 0xe8, 0x8e, 0x2a, 0x4b, 0x7d, 0x4e, 0x10, 0x1a, + 0x5c, 0xfa, 0x57, 0x53, 0x3e, 0x87, 0x69, 0x2e, 0x4a, 0xa9, 0x8d, 0xbd, + 0x56, 0xb3, 0xa5, 0xd0, 0x26, 0x5c, 0x98, 0xa4, 0x56, 0x1e, 0x87, 0x83, + 0x51, 0x2a, 0x6c, 0xe9, 0x86, 0x2e, 0x9b, 0xdf, 0x43, 0x22, 0x93, 0x22, + 0xad, 0x4b, 0xa7, 0x5d, 0xc5, 0xf7, 0xa1, 0x6c, 0x7b, 0x73, 0x55, 0x59, + 0x59, 0x0e, 0x18, 0x10, 0x7d, 0xc5, 0x64, 0xd3, 0x3a, 0xa3, 0x38, 0xcb, + 0x66, 0x21, 0x34, 0x9c, 0xd2, 0x6e, 0xa3, 0x75, 0x08, 0x6c, 0x70, 0xa0, + 0x9a, 0x6e, 0x69, 0x29, 0xd8, 0x43, 0xb7, 0x51, 0x9a, 0x6d, 0x19, 0xa2, + 0xc3, 0x1e, 0x0d, 0x3b, 0x02, 0xa2, 0x06, 0x9c, 0x1a, 0x90, 0xc7, 0x1e, + 0x29, 0x33, 0x45, 0x25, 0x20, 0x14, 0x9a, 0x6d, 0x14, 0x66, 0x80, 0x18, + 0x4d, 0x19, 0xae, 0xc0, 0x68, 0x96, 0x25, 0x73, 0xe5, 0x1f, 0xce, 0x81, + 0xa2, 0x58, 0xf6, 0x8b, 0xf5, 0xad, 0xb9, 0x0e, 0x3f, 0xae, 0x47, 0xb1, + 0xc7, 0x51, 0x5d, 0x88, 0xd1, 0xec, 0xc1, 0x3f, 0xb8, 0x5e, 0x2a, 0x45, + 0xd3, 0x2d, 0x57, 0xa4, 0x09, 0xf9, 0x53, 0x54, 0xc9, 0x78, 0xd5, 0xd8, + 0xe2, 0xb0, 0x69, 0xcb, 0x1b, 0xb7, 0xdd, 0x46, 0x3f, 0x41, 0x5d, 0xb0, + 0xb4, 0x85, 0x3a, 0x46, 0x83, 0xf0, 0xa7, 0x88, 0x97, 0xb2, 0x81, 0xf8, + 0x53, 0xf6, 0x7e, 0x64, 0xbc, 0x6b, 0xe9, 0x13, 0x8b, 0x5b, 0x2b, 0x97, + 0xfb, 0xb0, 0x48, 0x7f, 0xe0, 0x35, 0x3a, 0x69, 0x17, 0x8f, 0xd2, 0x12, + 0x3e, 0xa7, 0x15, 0xd7, 0xaa, 0x80, 0x7a, 0xd3, 0xf6, 0x53, 0xf6, 0x68, + 0xcd, 0xe3, 0x2a, 0x74, 0x47, 0x2a, 0x9e, 0x1f, 0xb9, 0x6f, 0xbe, 0xe8, + 0x9f, 0xad, 0x5a, 0x8f, 0xc3, 0x88, 0x3f, 0xd6, 0x4c, 0x4f, 0xfb, 0xa2, + 0xba, 0x1f, 0x2b, 0x34, 0xbe, 0x5e, 0x3a, 0xd5, 0x28, 0xc4, 0xca, 0x58, + 0x9a, 0xaf, 0xa9, 0x95, 0x0e, 0x8b, 0x65, 0x1f, 0x58, 0xcb, 0x1f, 0x56, + 0x35, 0x7a, 0x3b, 0x78, 0x62, 0x18, 0x48, 0x94, 0x7d, 0x05, 0x4d, 0xb3, + 0x14, 0x84, 0x55, 0x24, 0x8c, 0x65, 0x29, 0x4b, 0x76, 0x00, 0x0e, 0xd4, + 0xbb, 0x4d, 0x0a, 0xa6, 0xa5, 0x55, 0x1d, 0xe8, 0x6c, 0x95, 0x1b, 0x91, + 0x00, 0x47, 0x41, 0x4b, 0xf3, 0x9e, 0xd8, 0xa9, 0xd7, 0x03, 0xb5, 0x48, + 0x14, 0x37, 0x6e, 0x2a, 0x5c, 0x8b, 0x50, 0x2a, 0xac, 0x67, 0x3c, 0xe6, + 0xa5, 0x00, 0x0a, 0x90, 0xe0, 0x53, 0x4b, 0x03, 0x42, 0x6c, 0x39, 0x52, + 0x14, 0x10, 0x4e, 0x33, 0x48, 0x4f, 0xcd, 0xc5, 0x37, 0x1c, 0xe6, 0x96, + 0x9d, 0xc5, 0x61, 0xe0, 0xd0, 0x49, 0xa6, 0xfb, 0x50, 0x4e, 0x28, 0x18, + 0x66, 0x8c, 0xd1, 0xb8, 0x77, 0xa3, 0x70, 0xa0, 0x18, 0x99, 0xe6, 0x97, + 0x75, 0x34, 0x91, 0xe9, 0x49, 0x8a, 0x76, 0x26, 0xe3, 0x8b, 0x7a, 0x52, + 0x60, 0xd2, 0x85, 0xcd, 0x38, 0x0a, 0x02, 0xcd, 0xee, 0x20, 0x14, 0xec, + 0x91, 0x45, 0x28, 0x19, 0xa9, 0x28, 0x33, 0xc5, 0x28, 0xa3, 0x81, 0x4b, + 0x8a, 0x00, 0x31, 0x83, 0x4e, 0xa4, 0x34, 0x64, 0x53, 0x01, 0x72, 0x68, + 0xe4, 0xd2, 0x67, 0x8a, 0x33, 0x48, 0x05, 0x19, 0xa5, 0xea, 0x29, 0x29, + 0x3f, 0x1a, 0x77, 0x15, 0x85, 0x22, 0x8c, 0xe3, 0xa5, 0x31, 0x9f, 0x14, + 0x9b, 0xf3, 0x45, 0xc2, 0xc3, 0xf9, 0xf5, 0xa5, 0xa8, 0xc9, 0xa6, 0xee, + 0x34, 0x5c, 0x2c, 0x4a, 0x4d, 0x26, 0x7d, 0x6a, 0x22, 0xc6, 0x8c, 0x9a, + 0x00, 0x97, 0x22, 0x8d, 0xd5, 0x18, 0x34, 0x16, 0xa5, 0x61, 0x83, 0x31, + 0xcf, 0x06, 0x8d, 0xd4, 0x75, 0xa0, 0xe7, 0x14, 0xec, 0x2b, 0x8b, 0xb8, + 0x77, 0xa3, 0x3e, 0x82, 0x9a, 0x3a, 0xe6, 0x9d, 0xbb, 0x3d, 0x17, 0x8a, + 0x43, 0x18, 0xc3, 0x9a, 0x05, 0x29, 0xe7, 0x92, 0x29, 0x01, 0xa7, 0x71, + 0x58, 0x75, 0x18, 0xf4, 0xa3, 0x6e, 0x68, 0x00, 0xd1, 0x70, 0xb0, 0x1c, + 0xd2, 0x66, 0x86, 0x6c, 0x53, 0x41, 0xcd, 0x31, 0x0e, 0xcd, 0x03, 0x34, + 0x63, 0x8a, 0x51, 0x4a, 0xe3, 0xb0, 0xa0, 0x66, 0x8c, 0x11, 0x48, 0x3a, + 0xd2, 0x93, 0x48, 0x62, 0x1c, 0xd2, 0xf5, 0xa7, 0x72, 0x45, 0x20, 0xeb, + 0x40, 0x09, 0xcd, 0x38, 0x74, 0xa3, 0xad, 0x38, 0x1a, 0x00, 0x6b, 0x29, + 0xcd, 0x21, 0x1c, 0x54, 0xb9, 0xcd, 0x35, 0x86, 0x69, 0x0c, 0x8b, 0x06, + 0x95, 0x78, 0xa5, 0xdb, 0x46, 0x31, 0x4c, 0x41, 0xef, 0x4d, 0x39, 0xa5, + 0xa5, 0x1c, 0xd0, 0x02, 0x28, 0xa7, 0x52, 0x13, 0xf3, 0x60, 0x74, 0xa5, + 0x1e, 0xf4, 0x5c, 0x2c, 0x04, 0x53, 0x79, 0x1d, 0xaa, 0x4c, 0xd3, 0x09, + 0xa0, 0x03, 0x39, 0xa6, 0xf2, 0x0d, 0x39, 0x79, 0x04, 0x77, 0xa3, 0x06, + 0x98, 0x83, 0x77, 0xad, 0x21, 0xc3, 0x52, 0x11, 0x4a, 0x28, 0x01, 0xbb, + 0x18, 0x1a, 0x37, 0x73, 0xcf, 0x15, 0x20, 0xc9, 0xeb, 0x46, 0xd0, 0x68, + 0xbf, 0x70, 0xb7, 0x61, 0xa3, 0x1d, 0x8d, 0x2e, 0x29, 0x0c, 0x78, 0xe5, + 0x4d, 0x20, 0xc8, 0x38, 0xcd, 0x16, 0xec, 0x17, 0xb6, 0xe1, 0x82, 0x3a, + 0x53, 0x87, 0x4a, 0x5c, 0x9a, 0x32, 0x31, 0x48, 0x63, 0x79, 0xa3, 0x26, + 0x82, 0x4d, 0x26, 0x69, 0xdc, 0x4d, 0x0e, 0xdd, 0x46, 0xf1, 0x51, 0x93, + 0x4d, 0xa6, 0x2d, 0x49, 0x37, 0x8c, 0xd2, 0xee, 0x06, 0xa2, 0xe0, 0x51, + 0x9e, 0x69, 0x58, 0x69, 0x92, 0x8f, 0x5a, 0x46, 0x39, 0x18, 0xc5, 0x33, + 0x78, 0x1c, 0x1a, 0x01, 0x52, 0x7a, 0xd2, 0x28, 0x72, 0xf1, 0xda, 0x95, + 0xb1, 0x4e, 0x4e, 0x94, 0x3e, 0x47, 0x6a, 0x57, 0xd4, 0x2d, 0xa1, 0x16, + 0x69, 0x41, 0x39, 0xa5, 0xc9, 0xcf, 0x4a, 0x5c, 0xfb, 0x53, 0x10, 0x98, + 0x14, 0xbb, 0x01, 0xe6, 0x93, 0x77, 0x3d, 0x05, 0x2e, 0xf3, 0x40, 0xc4, + 0xdb, 0xb6, 0x93, 0x75, 0x29, 0x62, 0x69, 0x31, 0x9a, 0x00, 0x50, 0xf8, + 0xed, 0x4d, 0xdd, 0x93, 0x46, 0x31, 0x46, 0x0d, 0x1a, 0x0b, 0x50, 0xe9, + 0x4a, 0x29, 0x31, 0x8f, 0x6a, 0x03, 0x28, 0x1d, 0x33, 0x4a, 0xe3, 0xb0, + 0xfc, 0x52, 0x1f, 0xad, 0x34, 0xca, 0xa3, 0x8a, 0x43, 0x20, 0x3c, 0x51, + 0x76, 0x3b, 0x21, 0x18, 0x37, 0x4a, 0x6e, 0xd2, 0x4d, 0x3c, 0x37, 0xad, + 0x3b, 0x72, 0x8e, 0xb4, 0xae, 0x16, 0x44, 0x61, 0x69, 0xc0, 0xd2, 0xee, + 0x14, 0x99, 0x14, 0xee, 0xc5, 0x64, 0x29, 0xe6, 0x94, 0x28, 0xeb, 0x48, + 0x0e, 0x3b, 0x52, 0xee, 0xc9, 0xc0, 0xa2, 0xe1, 0x60, 0x29, 0x9e, 0xd5, + 0x19, 0x8f, 0x07, 0x35, 0x30, 0xcf, 0xad, 0x21, 0xfa, 0xd5, 0x26, 0x4b, + 0x89, 0x17, 0x4a, 0x89, 0xed, 0xa1, 0x98, 0x61, 0xe2, 0x56, 0xfa, 0x8a, + 0xb1, 0xb4, 0x9a, 0x4c, 0x62, 0x9e, 0xe2, 0x57, 0x46, 0x6c, 0x9e, 0x1f, + 0xb2, 0x97, 0x24, 0x47, 0xb0, 0x9f, 0xee, 0x9a, 0xa9, 0x27, 0x85, 0xd3, + 0x3f, 0xbb, 0x98, 0x8f, 0xf7, 0x85, 0x6f, 0x2b, 0x62, 0x9c, 0x39, 0xef, + 0x50, 0xe2, 0x6d, 0x1a, 0xf3, 0x5b, 0x33, 0x94, 0x7f, 0x0d, 0x5c, 0xaf, + 0xdd, 0x91, 0x1b, 0xf4, 0xaa, 0xd2, 0x68, 0x77, 0xc9, 0xff, 0x00, 0x2c, + 0x81, 0xfa, 0x1a, 0xed, 0x4a, 0xe6, 0x8f, 0x2b, 0x81, 0xeb, 0x50, 0xe0, + 0x8d, 0xa3, 0x8b, 0xa8, 0x8e, 0x05, 0xf4, 0xeb, 0xa4, 0xeb, 0x04, 0x9f, + 0xf7, 0xcd, 0x42, 0xd0, 0x4a, 0xbf, 0x7a, 0x36, 0x1f, 0x51, 0x5e, 0x8c, + 0x23, 0x1f, 0x85, 0x23, 0x46, 0x87, 0xaa, 0x8f, 0xca, 0x97, 0xb3, 0x46, + 0x8b, 0x1b, 0x2e, 0xa8, 0xf3, 0x72, 0x87, 0xd2, 0x90, 0x02, 0x2b, 0xd0, + 0x9e, 0x18, 0x1b, 0x86, 0x8d, 0x0f, 0xe1, 0x55, 0xe4, 0xb0, 0xb3, 0x7e, + 0xb6, 0xf1, 0xfe, 0x54, 0xb9, 0x0b, 0x58, 0xd5, 0xd5, 0x1c, 0x3d, 0x19, + 0xae, 0xc0, 0xe9, 0x76, 0x59, 0xff, 0x00, 0x8f, 0x74, 0xa6, 0x36, 0x91, + 0x62, 0x7f, 0xe5, 0x88, 0x1f, 0x8d, 0x2e, 0x46, 0x57, 0xd7, 0x23, 0xd8, + 0xe4, 0x09, 0xa6, 0xe6, 0xba, 0xb3, 0xa3, 0xd9, 0x16, 0xff, 0x00, 0x56, + 0x7f, 0x3a, 0x55, 0xd1, 0x6c, 0xb0, 0x72, 0x87, 0xf3, 0xa7, 0xc8, 0xc3, + 0xeb, 0x70, 0xec, 0x6b, 0x2e, 0x36, 0xf5, 0xa5, 0x18, 0xe8, 0x0d, 0x34, + 0x0c, 0x81, 0x4f, 0x11, 0x8e, 0xb9, 0xad, 0x76, 0x3c, 0xe1, 0x02, 0xfb, + 0xd0, 0x23, 0xc7, 0x53, 0x4f, 0x0b, 0xeb, 0x4a, 0x57, 0x14, 0x5c, 0x2c, + 0x33, 0xcb, 0x06, 0x82, 0x98, 0x38, 0xc5, 0x3e, 0x90, 0x9a, 0x00, 0x66, + 0xdc, 0x1f, 0xbb, 0x4a, 0x08, 0xe3, 0x8a, 0x37, 0x51, 0x9a, 0x04, 0x3f, + 0x70, 0xc5, 0x37, 0x34, 0xb9, 0xa6, 0x8a, 0x68, 0x18, 0x30, 0xc8, 0xa6, + 0x85, 0xa7, 0x16, 0xe3, 0x18, 0xa4, 0xc8, 0xf5, 0xa6, 0x89, 0x62, 0x8a, + 0x76, 0x07, 0xa5, 0x33, 0x8e, 0xb9, 0xa7, 0x03, 0x49, 0xb1, 0xa1, 0xd9, + 0xa9, 0x15, 0xf6, 0x8a, 0x88, 0x91, 0x4d, 0xdd, 0x4a, 0xd7, 0x29, 0x3b, + 0x0b, 0x26, 0x58, 0xf0, 0xd5, 0x10, 0x27, 0x38, 0x27, 0x9a, 0x7e, 0x7d, + 0xa9, 0x84, 0x67, 0xb5, 0x54, 0x51, 0x12, 0x64, 0xc0, 0xed, 0x14, 0x16, + 0xc5, 0x42, 0x37, 0x66, 0x9c, 0x01, 0x26, 0x8e, 0x50, 0xe6, 0x1e, 0x24, + 0xc5, 0x05, 0xc1, 0xa4, 0xf2, 0xc9, 0xa4, 0x29, 0x91, 0xd3, 0xa5, 0x16, + 0x41, 0x76, 0x21, 0x24, 0xd2, 0x60, 0xf6, 0xa7, 0x84, 0x34, 0xed, 0xb4, + 0xef, 0x61, 0x59, 0xbd, 0xc8, 0xc6, 0xef, 0x5a, 0x76, 0xe2, 0x29, 0xc7, + 0x14, 0x11, 0x4a, 0xe3, 0xb0, 0x2b, 0x9a, 0x76, 0xfc, 0x1e, 0x94, 0xca, + 0x00, 0xcd, 0x03, 0x24, 0xdc, 0x31, 0x9a, 0x03, 0x8e, 0xd4, 0xdc, 0x52, + 0x63, 0x14, 0x86, 0x49, 0xbd, 0x71, 0x8a, 0x5d, 0xe0, 0x77, 0xa8, 0xb6, + 0x1e, 0xb4, 0xb8, 0xa0, 0x09, 0x43, 0x83, 0xde, 0x82, 0xc3, 0x15, 0x10, + 0x1c, 0xd3, 0xa8, 0x01, 0xfd, 0xb8, 0xa2, 0x98, 0x33, 0x4b, 0x92, 0x3b, + 0xd0, 0x03, 0xf7, 0x52, 0xe6, 0xa2, 0x2d, 0x9e, 0xf4, 0x9c, 0xd2, 0xb0, + 0x0a, 0xcd, 0xcd, 0x20, 0x23, 0xd6, 0x82, 0xa7, 0xb8, 0xa4, 0xc7, 0x38, + 0xc5, 0x3b, 0x8a, 0xc3, 0x89, 0x14, 0x99, 0xe2, 0x94, 0x0a, 0x36, 0xe6, + 0x9d, 0xc2, 0xc3, 0x77, 0x1f, 0x4a, 0x5d, 0xc4, 0xd2, 0xec, 0xa4, 0xdb, + 0x8f, 0x4a, 0x57, 0x0b, 0x06, 0x33, 0xd0, 0xd2, 0x85, 0xf5, 0xa6, 0x92, + 0x47, 0x63, 0x40, 0x3f, 0x5a, 0x2e, 0x16, 0x24, 0x00, 0x7a, 0xd2, 0x1f, + 0xd2, 0x93, 0xf0, 0xa3, 0x8a, 0x2e, 0x16, 0x17, 0xaf, 0x4a, 0x38, 0x03, + 0x14, 0x81, 0xb0, 0x69, 0xc0, 0x83, 0xd6, 0x80, 0x13, 0x3d, 0xb9, 0xa4, + 0xeb, 0xd2, 0x94, 0x81, 0xda, 0x9b, 0x8c, 0x1e, 0x28, 0x40, 0xc7, 0x01, + 0x8a, 0x09, 0x34, 0x85, 0x8d, 0x1d, 0x69, 0xd8, 0x57, 0x13, 0x8e, 0xf4, + 0xf0, 0x14, 0x53, 0x68, 0x34, 0x00, 0xa4, 0x8a, 0x4d, 0xd4, 0xda, 0x00, + 0xc9, 0xa5, 0x61, 0x8f, 0x07, 0x22, 0x9c, 0x14, 0x75, 0xef, 0x4d, 0x18, + 0x1d, 0x29, 0x46, 0x68, 0x01, 0x49, 0xa0, 0x63, 0x34, 0x98, 0xc9, 0xa7, + 0xe0, 0x0e, 0xf4, 0x86, 0x34, 0x9a, 0x05, 0x07, 0x1d, 0x8d, 0x02, 0x98, + 0x87, 0x8c, 0xd2, 0xe3, 0x9e, 0x69, 0xab, 0x4e, 0x27, 0x34, 0x00, 0x87, + 0xdb, 0xa5, 0x37, 0x1d, 0xf3, 0x4e, 0x1d, 0x29, 0x09, 0x00, 0x52, 0x01, + 0x0e, 0x29, 0xac, 0xc0, 0x51, 0xba, 0x98, 0x4f, 0x3e, 0xd4, 0xd2, 0x06, + 0xc5, 0x0d, 0x9e, 0x2a, 0x4c, 0x76, 0xa8, 0xd4, 0x0a, 0x78, 0x34, 0x00, + 0x62, 0x8c, 0x66, 0x97, 0x3e, 0xd4, 0xb8, 0xcd, 0x02, 0x1a, 0x16, 0x94, + 0x67, 0xbd, 0x2f, 0x34, 0x06, 0xc7, 0x14, 0xc2, 0xc3, 0x76, 0xf3, 0xd6, + 0x8d, 0xb8, 0xa7, 0x1c, 0x1a, 0x69, 0x07, 0xaf, 0x34, 0x86, 0x2e, 0x45, + 0x07, 0xda, 0x9b, 0xcd, 0x30, 0xb1, 0xa2, 0xc1, 0x71, 0xdb, 0x9a, 0x8c, + 0x82, 0x39, 0xa6, 0xee, 0x3e, 0xd4, 0x67, 0xda, 0x80, 0xd0, 0x52, 0x4a, + 0xd2, 0x17, 0xcd, 0x2e, 0x73, 0xda, 0x90, 0xe3, 0xd2, 0x8b, 0x85, 0x80, + 0x30, 0xa7, 0x6e, 0x04, 0x53, 0x36, 0x0f, 0x5a, 0x4d, 0xad, 0x8e, 0x0d, + 0x1a, 0x06, 0xa3, 0x86, 0x18, 0xe0, 0x50, 0x56, 0x98, 0x03, 0x0e, 0xd4, + 0xe0, 0x4f, 0xbd, 0x16, 0x0b, 0x8d, 0x2b, 0x51, 0xb3, 0x6d, 0xa9, 0x8f, + 0xb5, 0x30, 0xae, 0x69, 0xa6, 0x26, 0x88, 0x77, 0x64, 0xe7, 0x35, 0x20, + 0x34, 0xa1, 0x3d, 0x05, 0x1b, 0x0d, 0x32, 0x75, 0x05, 0x72, 0x0d, 0x4d, + 0xbc, 0xe3, 0x39, 0xa8, 0x76, 0x91, 0x4b, 0x9c, 0x71, 0x49, 0xa2, 0x93, + 0x25, 0xdf, 0xeb, 0x4b, 0x9f, 0x7a, 0x87, 0x1e, 0x86, 0x9e, 0x01, 0xa4, + 0x31, 0x4f, 0xd6, 0x9a, 0x69, 0xfd, 0xa9, 0x31, 0x45, 0xc2, 0xc3, 0x41, + 0xa5, 0xdf, 0x8e, 0xd4, 0x11, 0x46, 0x31, 0x4f, 0x41, 0x6a, 0x2e, 0xe1, + 0x40, 0xc1, 0x3d, 0x69, 0xbb, 0x69, 0x42, 0x9a, 0x56, 0x43, 0xd4, 0x52, + 0x05, 0x30, 0x81, 0x4f, 0xda, 0xc6, 0x9a, 0x63, 0x27, 0xbd, 0x3d, 0x03, + 0x51, 0x9c, 0x53, 0x49, 0xe3, 0x8a, 0x77, 0x96, 0x7d, 0x69, 0x44, 0x67, + 0xbd, 0x1a, 0x0b, 0x52, 0x1c, 0xb6, 0x32, 0x0d, 0x33, 0xe6, 0xcf, 0x24, + 0x9a, 0xb5, 0xe5, 0x7b, 0x52, 0xec, 0x03, 0xb5, 0x2b, 0x8e, 0xc4, 0x0a, + 0x0e, 0x2a, 0x4e, 0x71, 0x4f, 0xda, 0x69, 0x42, 0xf1, 0x45, 0xc6, 0x90, + 0xce, 0x68, 0x00, 0xd3, 0xf0, 0x00, 0xa4, 0x2a, 0x7e, 0x95, 0x23, 0x1c, + 0x1b, 0xf2, 0xa7, 0xee, 0x15, 0x16, 0x1a, 0x94, 0x0c, 0x75, 0xa0, 0x09, + 0x09, 0x14, 0xc3, 0x45, 0x38, 0x0a, 0x77, 0x0b, 0x11, 0x9c, 0xf6, 0xa6, + 0xe5, 0x81, 0xe9, 0x53, 0xe0, 0x77, 0xa6, 0xb0, 0x14, 0xd3, 0x25, 0xc5, + 0x0d, 0x57, 0xc5, 0x3c, 0x49, 0xef, 0x51, 0x91, 0x4c, 0x3c, 0x53, 0xd0, + 0x56, 0x68, 0xb0, 0x66, 0x51, 0x4c, 0x69, 0x37, 0x54, 0x27, 0x34, 0xcc, + 0x9f, 0x7a, 0x2c, 0x82, 0xec, 0x91, 0xb0, 0x69, 0xac, 0x47, 0x7a, 0x8f, + 0x79, 0xcd, 0x35, 0x9b, 0x9a, 0x56, 0x1f, 0x31, 0x30, 0x2b, 0xe9, 0x41, + 0x55, 0xe7, 0x35, 0x1a, 0x9c, 0x1c, 0x9a, 0x7e, 0xe1, 0x4a, 0xc3, 0xb8, + 0xdf, 0x2c, 0x53, 0xf6, 0x28, 0x53, 0x46, 0x47, 0xad, 0x29, 0x23, 0x07, + 0xe9, 0x48, 0x77, 0x10, 0x1e, 0x05, 0x28, 0x63, 0x4d, 0xc9, 0x00, 0x52, + 0x86, 0xab, 0x20, 0x76, 0xe6, 0xf5, 0xa5, 0xc9, 0xa6, 0x6e, 0xa3, 0x76, + 0x78, 0xa3, 0x40, 0xd4, 0x76, 0x4d, 0x1b, 0xe9, 0x30, 0x69, 0x71, 0x45, + 0xd0, 0x59, 0x86, 0x69, 0x37, 0x53, 0xb1, 0x40, 0x00, 0xd2, 0xba, 0x0b, + 0x31, 0x37, 0x52, 0x64, 0xf6, 0xa7, 0xec, 0x02, 0x8d, 0xaa, 0x28, 0xb8, + 0xec, 0xc8, 0xba, 0x9e, 0x68, 0xc7, 0xa5, 0x48, 0xaa, 0x29, 0xf8, 0x5c, + 0xd1, 0x70, 0xb1, 0x0e, 0xda, 0x5c, 0x11, 0xef, 0x52, 0xf1, 0xd7, 0xd2, + 0x9a, 0x48, 0xed, 0xd6, 0x9a, 0x62, 0xb1, 0x1f, 0x39, 0xe6, 0x9c, 0x01, + 0xa4, 0x39, 0xa4, 0xe7, 0x34, 0xc9, 0x1c, 0x7a, 0x73, 0x4d, 0xfc, 0x29, + 0x40, 0xc9, 0xe6, 0x9c, 0x05, 0x2b, 0x95, 0x60, 0x0b, 0xc7, 0x3d, 0x69, + 0xc3, 0x03, 0x14, 0xdc, 0xe2, 0x82, 0x7e, 0x94, 0xae, 0x3b, 0x58, 0x79, + 0x61, 0x81, 0x83, 0xcd, 0x37, 0x71, 0xf4, 0x34, 0xde, 0x29, 0x41, 0xed, + 0x9a, 0x00, 0x76, 0xee, 0x29, 0x46, 0x31, 0x49, 0x8a, 0x00, 0xa0, 0x61, + 0xc5, 0x02, 0x83, 0x40, 0xa0, 0x03, 0x14, 0x9c, 0x8e, 0x94, 0xa7, 0xeb, + 0x47, 0xe3, 0x4c, 0x41, 0x9a, 0x5c, 0xe6, 0x99, 0x4b, 0xde, 0x90, 0x0e, + 0xfc, 0x69, 0x7e, 0x6e, 0xd4, 0xcc, 0x1a, 0x72, 0xe6, 0x8b, 0x0c, 0x78, + 0x1c, 0x73, 0xd6, 0x8c, 0x62, 0x9a, 0x5b, 0x03, 0xb9, 0xa6, 0x89, 0x4f, + 0x70, 0x45, 0x20, 0x1e, 0x0f, 0x3c, 0xd2, 0x1f, 0x6a, 0x50, 0xf9, 0xeb, + 0x49, 0xc7, 0xad, 0x00, 0x37, 0x70, 0xf4, 0xc5, 0x01, 0x8d, 0x3f, 0x00, + 0xf6, 0xa4, 0xdb, 0x8a, 0x60, 0x3b, 0x76, 0x45, 0x19, 0x3d, 0xe9, 0x31, + 0x8a, 0x31, 0x45, 0x85, 0x70, 0xa5, 0x14, 0x98, 0x34, 0xa3, 0x34, 0x58, + 0x2e, 0x2f, 0x6a, 0x4c, 0x7a, 0x52, 0xe0, 0xd1, 0x48, 0x62, 0x73, 0x45, + 0x2d, 0x26, 0x69, 0x80, 0x98, 0x39, 0xe6, 0x8c, 0x52, 0xf1, 0x9a, 0x43, + 0x8a, 0x04, 0x18, 0xe7, 0xad, 0x28, 0xc6, 0x69, 0xb9, 0x06, 0x8c, 0xe0, + 0xd3, 0x10, 0xfe, 0x0f, 0x7a, 0x42, 0x3d, 0xe8, 0x07, 0x22, 0x8a, 0x57, + 0x28, 0x6d, 0x2e, 0x45, 0x29, 0xc5, 0x34, 0xe2, 0x8b, 0x8a, 0xc2, 0x9c, + 0x1e, 0xf4, 0x71, 0xeb, 0x49, 0xc1, 0xa4, 0x23, 0xbd, 0x03, 0x1c, 0x40, + 0x34, 0x62, 0x90, 0x67, 0x14, 0xb8, 0x34, 0x08, 0x32, 0x29, 0x77, 0x01, + 0x49, 0xc0, 0xa3, 0x02, 0x80, 0x1c, 0x1c, 0x1e, 0xf4, 0xb9, 0xcd, 0x34, + 0x63, 0xd2, 0x97, 0x20, 0x76, 0x34, 0x00, 0x63, 0x9a, 0x70, 0xa4, 0xa0, + 0x00, 0x68, 0x01, 0xd9, 0xa3, 0x3e, 0xf4, 0xdd, 0x94, 0x6d, 0x39, 0xeb, + 0x40, 0x01, 0xa6, 0x1e, 0x6a, 0x4d, 0xbe, 0xf4, 0x85, 0x69, 0xa1, 0x0d, + 0x18, 0xe8, 0x69, 0x0a, 0xf3, 0xc5, 0x3b, 0x1c, 0xd0, 0x70, 0x28, 0x00, + 0x55, 0x24, 0x8a, 0x79, 0x14, 0xd0, 0xc7, 0xd2, 0x97, 0x27, 0xd6, 0xa6, + 0xc5, 0x05, 0x1b, 0x88, 0xed, 0x46, 0x47, 0xad, 0x04, 0x8a, 0x00, 0x0b, + 0x66, 0x8c, 0x13, 0x46, 0x41, 0xa5, 0xa2, 0xe1, 0x60, 0xc7, 0x14, 0x63, + 0xde, 0x92, 0x96, 0x80, 0x10, 0x8a, 0x61, 0x5c, 0xf6, 0xa7, 0xe4, 0x52, + 0x8e, 0x05, 0x02, 0x22, 0xd8, 0x69, 0x0a, 0x9a, 0x9e, 0x83, 0xb6, 0x9d, + 0xc2, 0xc4, 0x18, 0x34, 0x1a, 0x94, 0xd2, 0x50, 0x04, 0x60, 0xd1, 0x9e, + 0x6a, 0x4d, 0xa0, 0x8e, 0x94, 0xc2, 0x9c, 0xf1, 0x40, 0xc3, 0x34, 0x6e, + 0xe6, 0x9b, 0x83, 0x4b, 0x8a, 0x40, 0x29, 0xe4, 0x54, 0x7b, 0xb0, 0x79, + 0x15, 0x25, 0x35, 0x86, 0x7a, 0x50, 0x84, 0xd0, 0x9b, 0x85, 0x29, 0x18, + 0xe9, 0xd2, 0x98, 0x14, 0x53, 0xb1, 0x8a, 0xa1, 0x0b, 0x82, 0x3b, 0x52, + 0x66, 0x94, 0x1f, 0x7a, 0x30, 0x0f, 0x7c, 0xd2, 0x18, 0x02, 0x29, 0xdf, + 0x4a, 0x36, 0x8a, 0x50, 0xbe, 0x86, 0x8b, 0x80, 0x99, 0x34, 0x6e, 0xa5, + 0xc7, 0xb5, 0x21, 0x02, 0x80, 0xb0, 0x6e, 0xf6, 0xa3, 0x70, 0xa4, 0xdb, + 0x48, 0x54, 0xfa, 0x51, 0xa0, 0x6a, 0x3f, 0x22, 0x82, 0x07, 0xad, 0x33, + 0x69, 0xec, 0x28, 0xf9, 0xa8, 0x0b, 0xb1, 0xfc, 0xd2, 0x73, 0x4c, 0xcb, + 0x52, 0x87, 0x34, 0x58, 0x77, 0x1d, 0xb6, 0x94, 0x0c, 0x77, 0xa6, 0xf9, + 0x84, 0x52, 0x79, 0xb4, 0xac, 0xc2, 0xe8, 0x71, 0xcf, 0xbd, 0x00, 0xd3, + 0x7c, 0xc1, 0xe9, 0x46, 0xec, 0xfa, 0x51, 0x66, 0x17, 0x43, 0xe8, 0xdd, + 0x4d, 0xe6, 0x8c, 0x51, 0x61, 0xdc, 0x0b, 0x51, 0xbb, 0x3d, 0xe9, 0x31, + 0x4b, 0x81, 0xd4, 0x9a, 0x76, 0x15, 0xc4, 0x07, 0x9e, 0xb4, 0xb4, 0xb9, + 0x5a, 0x6e, 0xe1, 0x45, 0x82, 0xe3, 0x81, 0xc5, 0x1b, 0x80, 0xa8, 0xfc, + 0xcc, 0xd3, 0x4b, 0x1e, 0xc2, 0x80, 0xb9, 0x21, 0x90, 0x53, 0x4c, 0x94, + 0xcc, 0xfb, 0x52, 0x6e, 0xa6, 0x4d, 0xc7, 0xef, 0xcd, 0x35, 0x8e, 0x31, + 0x46, 0x73, 0x45, 0x21, 0x82, 0x9c, 0x0e, 0xb9, 0xa0, 0x90, 0x7b, 0x50, + 0x14, 0x67, 0x91, 0x4b, 0x81, 0x48, 0x63, 0x4a, 0x1c, 0xf0, 0x28, 0xf2, + 0xe9, 0xe0, 0xf3, 0xd6, 0x90, 0xe4, 0xf7, 0xa3, 0x50, 0xd0, 0x6f, 0x97, + 0xed, 0x49, 0xb3, 0x14, 0xe1, 0xbb, 0xbd, 0x18, 0x39, 0xa7, 0x76, 0x2b, + 0x21, 0xb8, 0xa0, 0xfd, 0xd3, 0x4f, 0x2b, 0xc7, 0x26, 0x98, 0x72, 0x01, + 0xa7, 0x71, 0x58, 0x94, 0xa8, 0xc0, 0xe6, 0x9b, 0xb0, 0x67, 0x9a, 0x70, + 0x07, 0x03, 0x9a, 0x5c, 0x50, 0x16, 0x19, 0xb0, 0x53, 0xd6, 0x30, 0x79, + 0xa5, 0xa3, 0x34, 0x0c, 0x5d, 0x87, 0xb1, 0xa4, 0xd8, 0x7d, 0x45, 0x28, + 0x34, 0x67, 0x9a, 0x43, 0x13, 0x61, 0xf5, 0xa5, 0x11, 0x67, 0x9a, 0x70, + 0xe0, 0x51, 0xbb, 0x14, 0x00, 0x34, 0x7f, 0xdd, 0xa6, 0xf9, 0x4d, 0xdf, + 0x15, 0x26, 0xfc, 0x9e, 0x94, 0x6e, 0x34, 0x08, 0x8f, 0xca, 0xc7, 0xa5, + 0x2e, 0xd0, 0x29, 0x4b, 0x1a, 0x4c, 0xd0, 0x02, 0x10, 0x00, 0xa6, 0x1a, + 0x71, 0xe6, 0x90, 0x0a, 0x76, 0x15, 0xc4, 0xc5, 0x26, 0x3d, 0xa9, 0xc0, + 0x52, 0xd0, 0x02, 0x0c, 0x53, 0xb0, 0x29, 0x05, 0x28, 0xfd, 0x69, 0x0c, + 0x5d, 0xa2, 0x8f, 0x2c, 0x77, 0xa2, 0x96, 0x90, 0xc6, 0x18, 0xd4, 0x51, + 0xb1, 0x7d, 0x29, 0xe7, 0xa6, 0x69, 0x37, 0x0a, 0x35, 0x0d, 0x04, 0xd8, + 0x28, 0xd9, 0xef, 0x4f, 0xdc, 0x31, 0x49, 0x91, 0x40, 0x68, 0x30, 0xa9, + 0xa6, 0x9c, 0x8a, 0x93, 0x70, 0xa4, 0xca, 0x9a, 0x77, 0x13, 0x44, 0x60, + 0x1f, 0x5a, 0x5e, 0x69, 0xc5, 0x78, 0xe0, 0xd2, 0x63, 0x14, 0xf4, 0x16, + 0xa1, 0xf5, 0xa2, 0x93, 0x8a, 0x30, 0x33, 0xde, 0x95, 0x87, 0x71, 0xd4, + 0xa3, 0xad, 0x37, 0x81, 0xd0, 0xd1, 0xbb, 0x06, 0x8b, 0x05, 0xc5, 0x60, + 0x4d, 0x27, 0x6f, 0xf1, 0xa5, 0xde, 0x3b, 0x8a, 0x50, 0x54, 0xd0, 0x03, + 0x71, 0x9e, 0xd4, 0x00, 0x07, 0x7a, 0x90, 0x6d, 0xa0, 0xa8, 0x34, 0x5c, + 0x2c, 0x37, 0x38, 0xef, 0x4b, 0x91, 0xde, 0x8d, 0x83, 0xd6, 0x8f, 0x2f, + 0xde, 0x80, 0x0c, 0x8f, 0x5a, 0x41, 0x93, 0x4e, 0x11, 0xe3, 0xbd, 0x2e, + 0xdf, 0x7a, 0x00, 0x4c, 0x62, 0x97, 0x14, 0x6d, 0xf7, 0xa5, 0xc6, 0x3b, + 0xd0, 0x02, 0x64, 0xd1, 0x93, 0x41, 0x14, 0x50, 0x03, 0x79, 0xf4, 0xa3, + 0x07, 0xb8, 0xa7, 0x0f, 0xa8, 0xa5, 0xeb, 0x40, 0x0d, 0xdb, 0x46, 0xcf, + 0x4a, 0x76, 0x38, 0xe0, 0xd1, 0x8a, 0x00, 0x6f, 0x96, 0x69, 0x3c, 0xaa, + 0x7e, 0xd1, 0x46, 0xd3, 0xd8, 0xd0, 0x03, 0x76, 0x10, 0x38, 0xa3, 0x6b, + 0x53, 0xc2, 0xfa, 0xd2, 0xe2, 0x80, 0x23, 0xc6, 0x3b, 0x52, 0x85, 0xf5, + 0xa7, 0xd1, 0x80, 0x69, 0x0e, 0xe4, 0x4d, 0x81, 0xc8, 0xa4, 0x0d, 0xcd, + 0x4c, 0x56, 0x80, 0xaa, 0x3e, 0xb4, 0x01, 0x16, 0xe3, 0xe9, 0x46, 0x4f, + 0xa5, 0x4d, 0xc5, 0x26, 0x05, 0x31, 0x5c, 0x8a, 0x93, 0x27, 0xd2, 0xa5, + 0x3d, 0x29, 0xbc, 0xd0, 0x03, 0x01, 0x3e, 0x94, 0xbc, 0xd3, 0x8e, 0x45, + 0x37, 0x77, 0xb5, 0x30, 0x14, 0x13, 0x4b, 0x93, 0xd4, 0x53, 0x41, 0xa7, + 0x8c, 0x52, 0x00, 0xdc, 0xd4, 0x6e, 0x34, 0x1a, 0x4a, 0x00, 0x77, 0x5e, + 0xf4, 0x98, 0xa3, 0x3e, 0xd4, 0x06, 0xa2, 0xc2, 0x0d, 0xa4, 0xf7, 0xa5, + 0x54, 0x2a, 0x7d, 0xe9, 0x3c, 0xcc, 0x76, 0xa3, 0xcd, 0x3e, 0x94, 0xf5, + 0x0b, 0xa1, 0xf8, 0xe2, 0x93, 0x6f, 0x14, 0xdd, 0xe6, 0x97, 0x71, 0x34, + 0xac, 0xc7, 0x74, 0x1b, 0x79, 0xcd, 0x18, 0x1d, 0xe8, 0xcf, 0x14, 0x75, + 0xa2, 0xc1, 0x71, 0x31, 0xcf, 0xb5, 0x14, 0xbb, 0x68, 0xda, 0x0d, 0x16, + 0x0b, 0x89, 0x9a, 0x5c, 0xd1, 0x8a, 0x4c, 0x50, 0x17, 0x1d, 0x81, 0x41, + 0x14, 0xc2, 0x0d, 0x26, 0x48, 0xa2, 0xc1, 0x71, 0xfc, 0x51, 0x80, 0x69, + 0x9b, 0x9b, 0xd2, 0x93, 0x79, 0xcd, 0x1c, 0xa1, 0xcc, 0x49, 0x8a, 0x31, + 0x8a, 0x8c, 0xc9, 0x49, 0xbc, 0x53, 0xe5, 0x17, 0x32, 0x26, 0xa4, 0xa8, + 0x83, 0xe4, 0xd2, 0xe7, 0x34, 0xac, 0xc7, 0x74, 0x3c, 0xe3, 0x14, 0xd2, + 0x29, 0x33, 0xef, 0x46, 0x73, 0xde, 0x8b, 0x05, 0xd0, 0x6d, 0x38, 0xeb, + 0x46, 0xda, 0x50, 0x47, 0xad, 0x07, 0x3d, 0x8e, 0x28, 0xb0, 0x5c, 0x69, + 0x8c, 0x11, 0x4d, 0x11, 0xb0, 0xe9, 0x53, 0x0c, 0xe3, 0xad, 0x1d, 0xba, + 0xd0, 0x1a, 0x11, 0x6c, 0xa3, 0x69, 0xa9, 0x38, 0xf5, 0xa2, 0x9d, 0xc5, + 0x64, 0x30, 0x06, 0x1d, 0xe9, 0xc0, 0xf3, 0xcd, 0x3a, 0x8c, 0x52, 0x18, + 0xdc, 0x82, 0x68, 0xa7, 0x60, 0x52, 0x1c, 0x50, 0x31, 0x07, 0xb5, 0x2f, + 0x27, 0xbd, 0x21, 0x02, 0x94, 0x01, 0xde, 0x8b, 0x21, 0x5c, 0x5c, 0x0c, + 0x52, 0x6d, 0x19, 0xa5, 0x1b, 0x7d, 0x68, 0xc8, 0xa5, 0x61, 0xdc, 0x4d, + 0xa2, 0x8d, 0x8b, 0x4e, 0xc8, 0xa3, 0x3e, 0xd4, 0xec, 0x2b, 0x8d, 0xf2, + 0xc7, 0xad, 0x21, 0x88, 0x53, 0xf2, 0x28, 0xe3, 0xd2, 0x8d, 0x40, 0x8f, + 0xcb, 0x5a, 0x4d, 0x80, 0x0a, 0x93, 0x03, 0xd2, 0x93, 0x02, 0x8d, 0x43, + 0x41, 0xb8, 0xf7, 0xa5, 0xc8, 0x14, 0xa5, 0x7d, 0xa8, 0xdb, 0x8a, 0x02, + 0xe8, 0x4c, 0xfb, 0x53, 0x71, 0xed, 0x4e, 0xc1, 0xf6, 0xa3, 0x9a, 0x2c, + 0x17, 0x18, 0x63, 0xcd, 0x21, 0x87, 0x35, 0x26, 0x4d, 0x1b, 0x88, 0xeb, + 0x46, 0xa1, 0x74, 0x44, 0x22, 0x27, 0xa5, 0x05, 0x19, 0x7a, 0x8a, 0x93, + 0x75, 0x23, 0x3e, 0x68, 0xb3, 0x0b, 0xa1, 0x98, 0xf5, 0x14, 0x60, 0x63, + 0xa5, 0x01, 0xa8, 0xdd, 0x8e, 0x94, 0xec, 0x2b, 0x89, 0x80, 0x29, 0x7e, + 0x53, 0xda, 0x8e, 0x7d, 0x28, 0xc1, 0x26, 0x95, 0x82, 0xec, 0x30, 0xb4, + 0x00, 0xa6, 0x8d, 0x9e, 0xf4, 0xe5, 0x41, 0x46, 0x83, 0xbb, 0x1a, 0x12, + 0x9e, 0x14, 0x53, 0xb6, 0xd2, 0x15, 0x6a, 0x43, 0x0d, 0xab, 0xf5, 0xa4, + 0x20, 0x53, 0x4d, 0x18, 0xcf, 0x7a, 0xa1, 0x5c, 0x53, 0x8a, 0x6b, 0x28, + 0xc1, 0xc1, 0xa3, 0x68, 0x14, 0x11, 0x90, 0x68, 0x10, 0xec, 0x36, 0x06, + 0x31, 0x47, 0xcf, 0xe9, 0x4f, 0x04, 0x60, 0x72, 0x29, 0x72, 0x3f, 0xbc, + 0x3f, 0x3a, 0x43, 0x23, 0xe7, 0xd2, 0x97, 0x07, 0xd0, 0xd3, 0xb8, 0xf5, + 0x1f, 0x9d, 0x28, 0x20, 0x74, 0x6f, 0xd6, 0x80, 0x19, 0x82, 0x07, 0x43, + 0xf9, 0x52, 0x54, 0xdb, 0xf3, 0xfc, 0x54, 0x06, 0x03, 0xb8, 0xa0, 0x08, + 0xb3, 0xeb, 0x4b, 0xc5, 0x3c, 0x95, 0x3d, 0x48, 0xa4, 0xca, 0xfb, 0x50, + 0x02, 0x64, 0x0a, 0x37, 0x0a, 0x5f, 0x97, 0xda, 0x8f, 0xdd, 0x9f, 0x4a, + 0x00, 0x6e, 0x69, 0x33, 0xeb, 0x4f, 0xc4, 0x7e, 0xa3, 0xf3, 0xa0, 0x88, + 0xfd, 0xbf, 0x3a, 0x02, 0xc3, 0x38, 0xa3, 0x8f, 0x5a, 0x76, 0x13, 0xdb, + 0xf3, 0xa3, 0x6a, 0x7a, 0x8f, 0xce, 0x8b, 0x85, 0x86, 0x80, 0x3d, 0x69, + 0x71, 0x8a, 0x5d, 0xa9, 0xea, 0x3f, 0x3a, 0x30, 0xbe, 0xa3, 0xf3, 0xa0, + 0x04, 0x18, 0xa5, 0xc8, 0x1d, 0xa9, 0xc0, 0x47, 0xed, 0xf9, 0xd1, 0x84, + 0xec, 0x7f, 0x5a, 0x00, 0x8c, 0x9a, 0x32, 0x4d, 0x49, 0x84, 0xf5, 0xfd, + 0x69, 0x30, 0xbd, 0x88, 0xfc, 0xe8, 0x02, 0x23, 0xf8, 0xd2, 0xd4, 0x9f, + 0x2f, 0xaf, 0xeb, 0x4b, 0x94, 0xf5, 0xfd, 0x69, 0x88, 0x86, 0x8a, 0x97, + 0xe5, 0xa3, 0xe4, 0xf5, 0xa0, 0x08, 0x71, 0x8a, 0x71, 0x24, 0xd4, 0x9b, + 0x53, 0xd6, 0x93, 0x6a, 0x7a, 0x8f, 0xce, 0x90, 0xc6, 0x06, 0xc7, 0x6c, + 0xd0, 0x1b, 0xd5, 0x69, 0xfb, 0x53, 0xd7, 0xf5, 0xa3, 0x6a, 0x7a, 0xfe, + 0xb4, 0x00, 0xcc, 0x83, 0xd8, 0xd2, 0x0e, 0x3b, 0x64, 0x54, 0x98, 0x4f, + 0x5a, 0x4f, 0x93, 0xd6, 0x80, 0x1b, 0xf2, 0x93, 0xdc, 0x50, 0x11, 0x49, + 0xe0, 0x9a, 0x77, 0xc9, 0xeb, 0x4e, 0x1b, 0x3d, 0x69, 0x81, 0x11, 0x4f, + 0x7a, 0x68, 0x42, 0x3b, 0xd4, 0xff, 0x00, 0xbb, 0xf5, 0xa4, 0xc2, 0x7a, + 0xd0, 0x2b, 0x11, 0x6d, 0x34, 0x00, 0xde, 0xb5, 0x2e, 0x13, 0xfc, 0x9a, + 0x4c, 0x27, 0xf9, 0x34, 0x05, 0x86, 0x7c, 0xdf, 0xde, 0xa5, 0xf9, 0xbd, + 0x69, 0xf8, 0x4f, 0xf2, 0x69, 0x70, 0xbe, 0xbf, 0xad, 0x00, 0x33, 0x73, + 0x7a, 0x8a, 0x50, 0xcd, 0xe8, 0x29, 0x7e, 0x5f, 0x51, 0xf9, 0xd1, 0xf2, + 0xfb, 0x7e, 0x74, 0x86, 0x26, 0xe3, 0xe9, 0x46, 0xff, 0x00, 0x6a, 0x5c, + 0xaf, 0xa7, 0xeb, 0x46, 0x57, 0xd3, 0xf5, 0xa0, 0x03, 0x76, 0x68, 0xde, + 0x29, 0x32, 0xb4, 0xb9, 0x4f, 0x4a, 0x00, 0x37, 0x2d, 0x1b, 0x85, 0x26, + 0x57, 0xb0, 0x14, 0x64, 0x7b, 0x7e, 0x74, 0x08, 0x5d, 0xd4, 0xb9, 0xa4, + 0xc8, 0xf6, 0xfc, 0xe8, 0xdc, 0x3d, 0xbf, 0x3a, 0x60, 0x3b, 0x34, 0x99, + 0xc7, 0x7a, 0x37, 0x8f, 0x6a, 0x37, 0x8f, 0x6a, 0x00, 0x37, 0x7e, 0x34, + 0xbc, 0x9e, 0xd4, 0xdf, 0x33, 0xe9, 0x4a, 0x24, 0xf7, 0x14, 0x00, 0x7c, + 0xdd, 0x81, 0xa5, 0xc3, 0xe3, 0xa1, 0xa4, 0xf3, 0x3d, 0xc5, 0x1e, 0x6f, + 0xb8, 0xa0, 0x03, 0x0f, 0xe9, 0x4a, 0x03, 0x52, 0x79, 0x83, 0xd6, 0x8f, + 0x30, 0x7a, 0x8a, 0x00, 0x5c, 0x37, 0x72, 0x28, 0xda, 0x7f, 0xbd, 0x49, + 0xbc, 0x7f, 0x78, 0x51, 0xb8, 0x7f, 0x78, 0x7e, 0x74, 0x00, 0xb8, 0xe7, + 0x92, 0x69, 0x78, 0xf5, 0xa6, 0xef, 0x5f, 0xef, 0x0a, 0x43, 0x20, 0xf5, + 0x14, 0x80, 0x71, 0xc5, 0x26, 0x07, 0xa5, 0x26, 0xf1, 0xea, 0x29, 0x77, + 0x8f, 0x51, 0x40, 0xc3, 0x1f, 0x4a, 0x33, 0xf4, 0xa3, 0x70, 0xf5, 0x1f, + 0x9d, 0x26, 0xe5, 0xf5, 0x1f, 0x9d, 0x02, 0x17, 0x34, 0xb9, 0xc5, 0x26, + 0xe1, 0xea, 0x3f, 0x3a, 0x4d, 0xc3, 0xd4, 0x50, 0x02, 0xe6, 0x8c, 0x0a, + 0x4d, 0xc3, 0xd4, 0x52, 0x6e, 0x5c, 0xf5, 0x14, 0xc0, 0x76, 0x05, 0x27, + 0x14, 0xa5, 0xc1, 0xee, 0x29, 0xbb, 0x87, 0xf7, 0xa8, 0x0b, 0x0b, 0x81, + 0xd8, 0xd2, 0x67, 0x14, 0x6e, 0x1e, 0xa2, 0x9a, 0x48, 0x3f, 0xc5, 0x40, + 0x0e, 0xdc, 0x29, 0x77, 0x53, 0x32, 0xbe, 0xb4, 0x64, 0x0e, 0xff, 0x00, + 0xad, 0x00, 0x3f, 0x75, 0x1b, 0x8d, 0x37, 0x70, 0xf5, 0x14, 0x6e, 0x1e, + 0xb4, 0x00, 0xed, 0xc6, 0x8c, 0xfb, 0xd2, 0x6e, 0x1e, 0xa2, 0x8d, 0xeb, + 0xeb, 0x40, 0x6a, 0x3b, 0x34, 0x66, 0x93, 0x70, 0xf5, 0x14, 0x6e, 0x1e, + 0xa2, 0x80, 0xd4, 0x5c, 0x9f, 0x6a, 0x5e, 0xdd, 0x05, 0x26, 0xe1, 0xea, + 0x3f, 0x3a, 0x4c, 0x8f, 0x51, 0xf9, 0xd0, 0x03, 0xb0, 0xbe, 0x94, 0x6d, + 0x43, 0x4d, 0xc8, 0xf5, 0xfd, 0x68, 0xc8, 0xfe, 0xf0, 0xa0, 0x07, 0x61, + 0x45, 0x18, 0x53, 0x4d, 0xca, 0xfa, 0x8a, 0x5d, 0xcb, 0xed, 0xf9, 0xd2, + 0x18, 0x6d, 0x5a, 0x0a, 0x0f, 0x41, 0x49, 0xb9, 0x7d, 0x47, 0xe7, 0x46, + 0xe5, 0xf5, 0x14, 0x00, 0xbb, 0x01, 0xf4, 0xa4, 0xd8, 0x28, 0xdc, 0x3d, + 0x45, 0x1b, 0x97, 0xd4, 0x51, 0x76, 0x2b, 0x20, 0xd8, 0x33, 0xd4, 0xfe, + 0x74, 0xbe, 0x58, 0xf5, 0x34, 0x6e, 0x1e, 0xa2, 0x97, 0x72, 0xfa, 0x8a, + 0x2e, 0xc2, 0xc8, 0x4f, 0x2c, 0x7b, 0xd1, 0xe5, 0x8f, 0x53, 0x4b, 0xbc, + 0x7a, 0x8a, 0x37, 0x8f, 0x51, 0xf9, 0xd1, 0x76, 0x16, 0x42, 0x79, 0x63, + 0xd4, 0xd0, 0x23, 0xe7, 0x39, 0x38, 0xa5, 0xde, 0x3d, 0x69, 0x77, 0x8f, + 0x51, 0x45, 0xd8, 0xec, 0x83, 0xcb, 0x03, 0xb9, 0xa0, 0x47, 0xef, 0x46, + 0xe1, 0xfd, 0xe1, 0x46, 0xe1, 0xfd, 0xe1, 0xf9, 0xd1, 0x76, 0x16, 0x42, + 0x18, 0xf3, 0xc1, 0x26, 0x90, 0x44, 0x07, 0xad, 0x3f, 0x72, 0xff, 0x00, + 0x78, 0x7e, 0x74, 0x9b, 0x87, 0xf7, 0x85, 0x17, 0x61, 0x64, 0x20, 0x8f, + 0xde, 0x97, 0xcb, 0xf7, 0xa4, 0xdc, 0x3d, 0x47, 0xe7, 0x4b, 0xbd, 0x7d, + 0x47, 0xe7, 0x45, 0xd8, 0x59, 0x09, 0xe5, 0xf3, 0x41, 0x4f, 0x7a, 0x37, + 0x0f, 0x51, 0xf9, 0xd1, 0xb8, 0x7a, 0x8f, 0xce, 0x8b, 0xb0, 0xb2, 0x0d, + 0x8d, 0x9e, 0xb4, 0xbb, 0x4f, 0x76, 0xa4, 0xdc, 0x3d, 0x47, 0xe7, 0x46, + 0x57, 0xd7, 0xf5, 0xa2, 0xec, 0x56, 0x41, 0xb7, 0xfd, 0xaa, 0x31, 0xef, + 0x4b, 0x95, 0xfe, 0xf0, 0xfc, 0xe8, 0xdc, 0xbe, 0xa3, 0xf3, 0xa2, 0xec, + 0x76, 0x43, 0x48, 0xf7, 0x34, 0x9f, 0x8d, 0x3b, 0x70, 0xf5, 0x14, 0x65, + 0x7d, 0x47, 0xe7, 0x45, 0xd8, 0x59, 0x0d, 0xe0, 0x77, 0xa3, 0x8f, 0x7a, + 0x7f, 0xcb, 0xea, 0x28, 0xca, 0x7a, 0x8a, 0x2e, 0x16, 0x19, 0xc7, 0xbd, + 0x34, 0x91, 0x52, 0xe5, 0x7d, 0xa9, 0x32, 0xbe, 0xd4, 0x5c, 0x2c, 0x30, + 0x11, 0xe9, 0x49, 0xc7, 0xa5, 0x49, 0x94, 0xf6, 0xa4, 0xf9, 0x3d, 0xbf, + 0x3a, 0x02, 0xc3, 0x31, 0xcf, 0x4a, 0x31, 0xed, 0x52, 0x65, 0x7d, 0xbf, + 0x3a, 0x37, 0x2f, 0xb7, 0xe7, 0x40, 0x0c, 0xe6, 0x93, 0x9a, 0x97, 0x72, + 0xfb, 0x51, 0x95, 0xf5, 0x14, 0x0c, 0x8f, 0x06, 0x8e, 0x4d, 0x3f, 0x23, + 0xd4, 0x52, 0xee, 0x1e, 0xa2, 0x80, 0x19, 0x83, 0x4e, 0x04, 0x8e, 0x31, + 0x4b, 0xb9, 0x7d, 0x45, 0x26, 0xe5, 0xf5, 0x1f, 0x9d, 0x2b, 0x05, 0xc3, + 0x1e, 0xd4, 0xc2, 0x80, 0x9c, 0xd3, 0xf7, 0x8f, 0x51, 0x49, 0xb9, 0x7d, + 0x45, 0x00, 0x33, 0x67, 0xb9, 0xa4, 0x2a, 0x70, 0x70, 0x45, 0x49, 0x95, + 0xfe, 0xf0, 0xa4, 0x25, 0x76, 0x9f, 0x98, 0x53, 0xd4, 0x56, 0x3f, 0xff, + 0xd9 +}; +unsigned int helipad_jpg_len = 39757; diff --git a/assets/hdr/07_neutral.h b/assets/hdr/07_neutral.h new file mode 100644 index 0000000..9d213d4 --- /dev/null +++ b/assets/hdr/07_neutral.h @@ -0,0 +1,4026 @@ +unsigned char neutral_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x5a, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x31, 0x32, + 0x3a, 0x30, 0x32, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x34, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x03, 0x02, 0x02, 0x03, 0x03, + 0x03, 0x03, 0x04, 0x03, 0x03, 0x04, 0x05, 0x08, 0x05, 0x05, 0x04, 0x04, + 0x05, 0x0a, 0x07, 0x07, 0x06, 0x08, 0x0c, 0x0a, 0x0c, 0x0c, 0x0b, 0x0a, + 0x0b, 0x0b, 0x0d, 0x0e, 0x12, 0x10, 0x0d, 0x0e, 0x11, 0x0e, 0x0b, 0x0b, + 0x10, 0x16, 0x10, 0x11, 0x13, 0x14, 0x15, 0x15, 0x15, 0x0c, 0x0f, 0x17, + 0x18, 0x16, 0x14, 0x18, 0x12, 0x14, 0x15, 0x14, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x03, 0x04, 0x04, 0x05, 0x04, 0x05, 0x09, 0x05, 0x05, 0x09, 0x14, + 0x0d, 0x0b, 0x0d, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, + 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, + 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, + 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, 0x14, + 0x14, 0x14, 0x14, 0x14, 0x14, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xfb, 0x2e, 0x0d, 0x32, 0xd8, 0xc1, 0x1f, 0xfa, 0x34, 0x5f, + 0x74, 0x7f, 0xcb, 0x31, 0xe9, 0x4a, 0x74, 0xdb, 0x61, 0xc7, 0xd9, 0xe2, + 0xff, 0x00, 0xbf, 0x62, 0xb6, 0x60, 0xb5, 0xcd, 0xba, 0x11, 0xfd, 0xd1, + 0xdb, 0xda, 0x95, 0x6d, 0x73, 0xdb, 0x9a, 0x00, 0xc5, 0x3a, 0x65, 0xb0, + 0x1f, 0xf1, 0xef, 0x09, 0xff, 0x00, 0xb6, 0x62, 0x97, 0xfb, 0x2a, 0x0f, + 0xf9, 0xf6, 0x87, 0xfe, 0xfd, 0x8a, 0xda, 0x36, 0xb8, 0x3f, 0x30, 0xa1, + 0xac, 0xc8, 0xe9, 0x8c, 0x50, 0x06, 0x30, 0xd3, 0x2d, 0xcf, 0xfc, 0xba, + 0x43, 0xff, 0x00, 0x7e, 0xc5, 0x1f, 0xd9, 0x56, 0xdf, 0xf3, 0xeb, 0x0f, + 0xfd, 0xfb, 0x15, 0xb2, 0xb6, 0xad, 0x8e, 0x70, 0x29, 0x9f, 0x67, 0x62, + 0x70, 0x68, 0x03, 0x2b, 0xfb, 0x22, 0xdb, 0xfe, 0x7d, 0x61, 0xff, 0x00, + 0xbf, 0x62, 0x9a, 0x74, 0xab, 0x6f, 0xf9, 0xf5, 0x8b, 0xfe, 0xfd, 0x8a, + 0xd6, 0x36, 0x9c, 0xe3, 0x3c, 0xd3, 0x96, 0xd8, 0xed, 0xff, 0x00, 0x1a, + 0x00, 0xc6, 0x3a, 0x55, 0xae, 0x3f, 0xe3, 0xda, 0x2f, 0xfb, 0xe0, 0x53, + 0x46, 0x95, 0x6b, 0xff, 0x00, 0x3e, 0xd0, 0xff, 0x00, 0xdf, 0x02, 0xb5, + 0xda, 0xdf, 0x79, 0xc1, 0xeb, 0xec, 0x29, 0x4d, 0xb8, 0x5e, 0x31, 0x9a, + 0x00, 0xc7, 0xfe, 0xcc, 0xb5, 0xff, 0x00, 0x9f, 0x58, 0xbf, 0xef, 0x81, + 0x4b, 0xfd, 0x95, 0x69, 0xda, 0xda, 0x1f, 0xfb, 0xf6, 0x2b, 0x5b, 0xc8, + 0x0b, 0xd4, 0x01, 0x9a, 0x43, 0x6e, 0x0f, 0x39, 0xfc, 0xa8, 0x03, 0x24, + 0xe9, 0x56, 0xc3, 0xfe, 0x5d, 0xa1, 0xff, 0x00, 0xbf, 0x62, 0x9b, 0xfd, + 0x99, 0x6c, 0x7f, 0xe5, 0xda, 0x1f, 0xfb, 0xe0, 0x56, 0xa3, 0xc3, 0xcf, + 0x42, 0x7e, 0xb4, 0xd1, 0x17, 0x1d, 0x28, 0x03, 0x37, 0xfb, 0x2e, 0xd7, + 0xfe, 0x7d, 0xa1, 0xff, 0x00, 0xbe, 0x07, 0xf8, 0x52, 0x8d, 0x32, 0xd4, + 0xff, 0x00, 0xcb, 0xac, 0x5f, 0xf7, 0xc0, 0xad, 0x1f, 0x27, 0x8c, 0xd3, + 0x1a, 0x3f, 0x7c, 0x50, 0x05, 0x31, 0xa5, 0xda, 0x11, 0xff, 0x00, 0x1e, + 0xd1, 0x7f, 0xdf, 0x02, 0x8f, 0xec, 0xab, 0x51, 0xff, 0x00, 0x2e, 0xf1, + 0x0f, 0xf8, 0x00, 0xab, 0x61, 0x4f, 0xe1, 0x4e, 0x23, 0xd0, 0x66, 0x80, + 0x28, 0xff, 0x00, 0x65, 0xdb, 0x76, 0xb6, 0x87, 0xfe, 0xf8, 0x14, 0x7f, + 0x65, 0xdb, 0x8f, 0xf9, 0x77, 0x87, 0xfe, 0xfd, 0x8a, 0xb8, 0xd9, 0x14, + 0x83, 0x0d, 0xd7, 0x34, 0x01, 0x53, 0xfb, 0x36, 0xdc, 0x7f, 0xcb, 0xb4, + 0x3f, 0xf7, 0xc0, 0xa3, 0xfb, 0x3a, 0xdf, 0xfe, 0x7d, 0x62, 0xff, 0x00, + 0xbe, 0x05, 0x5a, 0x60, 0x3b, 0x64, 0xd2, 0x67, 0xdf, 0xf3, 0xa0, 0x0a, + 0xa6, 0xc2, 0xd4, 0x7f, 0xcb, 0xb4, 0x5f, 0xf7, 0xc0, 0xa4, 0xfb, 0x0d, + 0xaf, 0xfc, 0xfb, 0x45, 0xff, 0x00, 0x7c, 0x0a, 0xb4, 0x40, 0xeb, 0x9a, + 0x6b, 0x11, 0x8a, 0x00, 0xaf, 0xf6, 0x0b, 0x5f, 0xf9, 0xf6, 0x8b, 0xfe, + 0xfd, 0x8a, 0x3e, 0xc1, 0x6b, 0xff, 0x00, 0x3e, 0xd1, 0x7f, 0xdf, 0xb1, + 0x53, 0x1c, 0x7f, 0x7a, 0x80, 0x4e, 0x7a, 0xd0, 0x04, 0x1f, 0xd9, 0xd6, + 0xdf, 0xf3, 0xef, 0x0f, 0xfd, 0xfb, 0x14, 0x7f, 0x67, 0x5a, 0xf7, 0xb7, + 0x8b, 0xfe, 0xfd, 0x8a, 0xb2, 0x4e, 0x45, 0x37, 0x14, 0x01, 0x01, 0xd3, + 0x6d, 0x7f, 0xe7, 0xde, 0x1f, 0xfb, 0xf6, 0x29, 0xbf, 0xd9, 0xf6, 0xe7, + 0xfe, 0x5d, 0xe1, 0xff, 0x00, 0xbf, 0x62, 0xac, 0xf4, 0xea, 0x31, 0xf8, + 0xd2, 0x1c, 0x7a, 0x50, 0x05, 0x6f, 0xec, 0xfb, 0x71, 0xff, 0x00, 0x2e, + 0xf0, 0xff, 0x00, 0xdf, 0xb1, 0x47, 0xd8, 0x2d, 0xbf, 0xe7, 0xde, 0x13, + 0xff, 0x00, 0x6c, 0xc5, 0x4d, 0xbc, 0x0e, 0xd4, 0x9e, 0x61, 0xec, 0x28, + 0x02, 0x3f, 0xb0, 0xdb, 0x7f, 0xcf, 0xb4, 0x27, 0xfe, 0x00, 0x28, 0xfb, + 0x15, 0xb1, 0xff, 0x00, 0x97, 0x58, 0x7f, 0xef, 0x81, 0x4f, 0x32, 0x9e, + 0x87, 0x83, 0xed, 0x4d, 0x77, 0x3d, 0xa8, 0x01, 0x3e, 0xc3, 0x6f, 0xff, + 0x00, 0x3e, 0xb0, 0xff, 0x00, 0xdf, 0x02, 0x93, 0xec, 0x36, 0xdf, 0xf3, + 0xed, 0x0f, 0xfd, 0xfb, 0x14, 0x79, 0x9c, 0xff, 0x00, 0xf5, 0xe8, 0xf3, + 0x18, 0xf5, 0xe2, 0x80, 0x0f, 0xb0, 0xda, 0xff, 0x00, 0xcf, 0xbc, 0x3f, + 0xf7, 0xec, 0x51, 0xf6, 0x2b, 0x4f, 0xf9, 0xf7, 0x8b, 0xfe, 0xfd, 0x8a, + 0x51, 0x21, 0x3d, 0xe8, 0xf3, 0x3d, 0xb3, 0x40, 0x0c, 0x36, 0x76, 0x9f, + 0xf3, 0xed, 0x17, 0xfd, 0xf0, 0x29, 0x3e, 0xc5, 0x6b, 0xda, 0xda, 0x2f, + 0xfb, 0xf6, 0x2a, 0x43, 0x20, 0x3d, 0x28, 0xdf, 0x8e, 0xb4, 0x00, 0xcf, + 0xb0, 0x5b, 0x63, 0xfe, 0x3d, 0xa3, 0xff, 0x00, 0xbf, 0x62, 0x93, 0xec, + 0x36, 0xbf, 0xf3, 0xed, 0x17, 0xfd, 0xf0, 0x29, 0xfb, 0xc1, 0xef, 0x40, + 0x7a, 0x00, 0x67, 0xd8, 0xad, 0x7f, 0xe7, 0xde, 0x1f, 0xfb, 0xe0, 0x52, + 0xfd, 0x8a, 0xd4, 0xf4, 0xb7, 0x8b, 0xfe, 0xf8, 0x14, 0xf3, 0x20, 0xec, + 0x28, 0xdc, 0x0f, 0x51, 0x8f, 0x7a, 0x00, 0x6f, 0xf6, 0x7d, 0xb7, 0xfc, + 0xfb, 0xc5, 0xff, 0x00, 0x7c, 0x0a, 0x43, 0x61, 0x6a, 0x07, 0xfc, 0x7b, + 0xc5, 0xff, 0x00, 0x7e, 0xc5, 0x3f, 0x24, 0x77, 0xa4, 0xdd, 0x83, 0xc6, + 0x68, 0x01, 0x9f, 0x60, 0xb6, 0x3f, 0xf2, 0xc2, 0x2f, 0xfb, 0xe0, 0x52, + 0xff, 0x00, 0x67, 0x5b, 0xff, 0x00, 0xcf, 0xbc, 0x5f, 0xf7, 0xec, 0x53, + 0xc1, 0x06, 0x86, 0x7d, 0xbf, 0xc7, 0x81, 0x40, 0x11, 0xb6, 0x9d, 0x6e, + 0x3f, 0xe5, 0x84, 0x47, 0xfe, 0xd9, 0x8a, 0x05, 0x8d, 0xb7, 0xfc, 0xfb, + 0xc4, 0x7f, 0xed, 0x98, 0xa9, 0x41, 0xc8, 0xe3, 0x9f, 0x7a, 0x51, 0x91, + 0xd0, 0x9a, 0x00, 0x67, 0xd8, 0x2d, 0x7f, 0xe7, 0xde, 0x21, 0xff, 0x00, + 0x6c, 0xc5, 0x21, 0xd3, 0xed, 0x47, 0xfc, 0xbb, 0xc4, 0x7f, 0xe0, 0x02, + 0x9f, 0x9f, 0x5a, 0x42, 0x07, 0x63, 0xc5, 0x00, 0x33, 0xec, 0x16, 0xb9, + 0xff, 0x00, 0x8f, 0x68, 0x7f, 0xef, 0x81, 0x4b, 0xf6, 0x0b, 0x5f, 0xf9, + 0xf7, 0x87, 0xfe, 0xf8, 0x14, 0xe0, 0x0b, 0x0e, 0x0d, 0x2e, 0xd2, 0x3a, + 0x9a, 0x00, 0x8f, 0xec, 0x36, 0x9f, 0xf3, 0xef, 0x17, 0xfd, 0xfb, 0x14, + 0xbf, 0xd9, 0xf6, 0xff, 0x00, 0xf3, 0xeb, 0x17, 0xfd, 0xf0, 0x29, 0xea, + 0x49, 0x38, 0x07, 0xf1, 0x14, 0xa4, 0x12, 0x39, 0x26, 0x80, 0x23, 0x16, + 0x36, 0xb9, 0xc1, 0xb6, 0x88, 0x7f, 0xdb, 0x31, 0x4a, 0x74, 0xeb, 0x62, + 0x78, 0x82, 0x2f, 0xfb, 0xe0, 0x53, 0xd5, 0x4e, 0x38, 0x62, 0x69, 0x48, + 0x2b, 0xc6, 0x68, 0x02, 0x16, 0xb0, 0xb6, 0x5e, 0xb6, 0xd1, 0x7f, 0xdf, + 0x02, 0x99, 0xf6, 0x3b, 0x6f, 0xf9, 0xf5, 0x8b, 0xfe, 0xf8, 0x15, 0x30, + 0x24, 0xe7, 0x9e, 0x94, 0xaa, 0x32, 0x79, 0x39, 0xf6, 0xa0, 0x08, 0xc5, + 0x95, 0xb7, 0x7b, 0x78, 0x47, 0xfc, 0x00, 0x53, 0xbe, 0xc3, 0x6d, 0x8c, + 0x88, 0x21, 0x3f, 0xf0, 0x01, 0x4f, 0xc6, 0x7a, 0x91, 0x46, 0x31, 0xd4, + 0xfe, 0x54, 0x00, 0xc1, 0x6b, 0x6c, 0x4e, 0x3e, 0xcd, 0x0f, 0xfd, 0xf0, + 0x29, 0x7e, 0xc7, 0x6c, 0x0f, 0xfc, 0x7b, 0x46, 0x3d, 0xf6, 0x0a, 0x90, + 0x47, 0x19, 0xef, 0xcf, 0xa5, 0x34, 0x0e, 0xb4, 0x00, 0xd1, 0x63, 0x6c, + 0xdf, 0xf2, 0xca, 0x21, 0xff, 0x00, 0x00, 0x14, 0xd6, 0xb4, 0xb7, 0x43, + 0xfe, 0xa2, 0x26, 0xff, 0x00, 0x80, 0x0a, 0x91, 0x41, 0x70, 0x7a, 0x8c, + 0x52, 0x61, 0xcf, 0x5a, 0x00, 0x8f, 0xc8, 0xb7, 0xcf, 0xfc, 0x7b, 0xc5, + 0xff, 0x00, 0x7c, 0x0a, 0x7f, 0xd9, 0xed, 0xb1, 0xc4, 0x10, 0xff, 0x00, + 0xdf, 0xb1, 0x4e, 0x0b, 0xcf, 0x5e, 0x68, 0x2b, 0x83, 0xd3, 0x34, 0x01, + 0x18, 0xb7, 0x80, 0xff, 0x00, 0xcb, 0x08, 0x40, 0xff, 0x00, 0xae, 0x62, + 0x97, 0xec, 0xd6, 0xe7, 0xfe, 0x58, 0xc3, 0x9f, 0xfa, 0xe6, 0x29, 0x78, + 0x39, 0xc7, 0x04, 0x50, 0x54, 0x81, 0xc6, 0x73, 0xec, 0x68, 0x02, 0x33, + 0x69, 0x6f, 0x9f, 0xf5, 0x30, 0xff, 0x00, 0xdf, 0x02, 0x9b, 0xf6, 0x28, + 0x7b, 0x41, 0x0f, 0xfd, 0xf0, 0x2a, 0x65, 0x04, 0xff, 0x00, 0xf5, 0xe9, + 0xae, 0x99, 0x3d, 0x4e, 0x7d, 0x85, 0x00, 0x30, 0x59, 0xdb, 0xff, 0x00, + 0xcf, 0xbc, 0x3f, 0xf7, 0xc0, 0xa5, 0xfb, 0x25, 0xb0, 0xeb, 0x6d, 0x17, + 0xfd, 0xfb, 0x15, 0x22, 0xa7, 0x1e, 0xb4, 0xaa, 0x76, 0xf7, 0xcd, 0x00, + 0x30, 0x59, 0xda, 0x9f, 0xf9, 0x77, 0x8b, 0xfe, 0xfd, 0x8a, 0x43, 0x65, + 0x6a, 0x3a, 0x5b, 0x44, 0x7f, 0xe0, 0x02, 0x87, 0x04, 0xb6, 0x7a, 0x7d, + 0x29, 0x40, 0x3e, 0xa4, 0xd0, 0x02, 0x7d, 0x86, 0xdf, 0xfe, 0x7d, 0x62, + 0xff, 0x00, 0xbe, 0x05, 0x28, 0xb0, 0xb7, 0x3f, 0xf2, 0xed, 0x0f, 0xfd, + 0xf0, 0x29, 0x4e, 0x09, 0xe3, 0x39, 0xfa, 0xd2, 0xe5, 0x96, 0x80, 0x23, + 0x36, 0x56, 0xe3, 0xfe, 0x5d, 0x62, 0xff, 0x00, 0xbe, 0x05, 0x02, 0xce, + 0xdf, 0xfe, 0x7d, 0xe2, 0x1f, 0xf6, 0xcc, 0x53, 0xc4, 0xd9, 0x3d, 0x33, + 0x4e, 0x69, 0x4e, 0x3e, 0xed, 0x00, 0x30, 0x58, 0xdb, 0xff, 0x00, 0xcf, + 0xbc, 0x3f, 0xf7, 0xc0, 0xa3, 0xec, 0x76, 0xe3, 0xfe, 0x5d, 0xa2, 0xff, + 0x00, 0xbe, 0x05, 0x3c, 0x4a, 0x31, 0xdb, 0x34, 0xd3, 0x2e, 0x4f, 0x04, + 0xe2, 0x80, 0x1b, 0xf6, 0x5b, 0x6e, 0xf6, 0xf0, 0xff, 0x00, 0xdf, 0x02, + 0x94, 0x5a, 0xdb, 0x7f, 0xcf, 0xb4, 0x47, 0xfe, 0x00, 0x28, 0x32, 0x62, + 0x90, 0xc9, 0xf4, 0xa0, 0x07, 0x7d, 0x92, 0xdb, 0xfe, 0x7d, 0x61, 0xff, + 0x00, 0xbe, 0x05, 0x1f, 0x62, 0xb6, 0x3f, 0xf2, 0xed, 0x17, 0xfd, 0xf0, + 0x29, 0xcb, 0x28, 0x03, 0x9e, 0x7e, 0x94, 0x79, 0x9b, 0xbb, 0xe2, 0x80, + 0x1b, 0xf6, 0x1b, 0x4f, 0xf9, 0xf6, 0x8b, 0xfe, 0xf8, 0x14, 0x9f, 0x62, + 0xb4, 0x1f, 0xf2, 0xeb, 0x0f, 0xfd, 0xf0, 0x29, 0x77, 0x0f, 0x5a, 0x4d, + 0xe7, 0x3c, 0x50, 0x01, 0xf6, 0x2b, 0x4f, 0xf9, 0xf5, 0x87, 0xfe, 0xf8, + 0x14, 0x0b, 0x1b, 0x53, 0xff, 0x00, 0x2e, 0xb0, 0xff, 0x00, 0xdf, 0x02, + 0x9c, 0x26, 0xc0, 0xeb, 0x9a, 0x3c, 0xd3, 0xea, 0x28, 0x01, 0x3f, 0xb3, + 0xed, 0x4f, 0xfc, 0xba, 0xc3, 0xff, 0x00, 0x7e, 0xc5, 0x07, 0x4e, 0xb5, + 0x1f, 0xf2, 0xeb, 0x17, 0xfd, 0xfb, 0x14, 0xe5, 0x99, 0xb3, 0xf7, 0xa9, + 0x44, 0xcc, 0x7b, 0x8a, 0x00, 0x8f, 0xec, 0x16, 0xbf, 0xf3, 0xed, 0x17, + 0xfd, 0xfb, 0x14, 0xa3, 0x4e, 0xb5, 0xff, 0x00, 0x9f, 0x68, 0x7f, 0xef, + 0xd8, 0xa7, 0x97, 0x34, 0x07, 0x39, 0xe2, 0x80, 0x19, 0xfd, 0x9d, 0x6b, + 0xff, 0x00, 0x3e, 0xd0, 0xff, 0x00, 0xdf, 0xb1, 0x47, 0xf6, 0x75, 0xaf, + 0xfc, 0xfb, 0x43, 0xff, 0x00, 0x7e, 0xc5, 0x3c, 0xb5, 0x20, 0x6c, 0xf4, + 0xcd, 0x00, 0x37, 0xfb, 0x3e, 0xd3, 0xfe, 0x7d, 0xa1, 0xff, 0x00, 0xbf, + 0x62, 0x8f, 0xb0, 0x5a, 0x7f, 0xcf, 0xb4, 0x3f, 0xf7, 0xc0, 0xa9, 0x17, + 0xfc, 0xe6, 0x9d, 0xbb, 0xe9, 0x40, 0x10, 0xff, 0x00, 0x67, 0xda, 0x76, + 0xb7, 0x87, 0xfe, 0xf8, 0x14, 0x1d, 0x3a, 0xd4, 0x7f, 0xcb, 0xb4, 0x3f, + 0xf7, 0xc0, 0xa9, 0xb7, 0x52, 0xe7, 0x23, 0xad, 0x00, 0x41, 0xfd, 0x9f, + 0x6d, 0x9f, 0xf8, 0xf6, 0x87, 0xfe, 0xf8, 0x14, 0xbf, 0xd9, 0xf6, 0xbf, + 0xf3, 0xed, 0x17, 0xfd, 0xfb, 0x15, 0x3a, 0xb2, 0xfa, 0x53, 0xb7, 0x29, + 0x14, 0x01, 0x5f, 0xfb, 0x3a, 0xd8, 0xff, 0x00, 0xcb, 0xb4, 0x5f, 0xf7, + 0xc0, 0xa7, 0x7f, 0x66, 0x5b, 0x1f, 0xf9, 0x77, 0x8b, 0xfe, 0xfd, 0x8a, + 0x9b, 0x03, 0xde, 0x9c, 0x17, 0x3d, 0x33, 0x40, 0x15, 0x86, 0x99, 0x6f, + 0xff, 0x00, 0x3e, 0xf1, 0x7f, 0xdf, 0xb1, 0x4e, 0x1a, 0x75, 0xb0, 0xff, + 0x00, 0x97, 0x78, 0x7f, 0xef, 0xd8, 0xab, 0x58, 0x38, 0xed, 0x48, 0x32, + 0x3b, 0xd0, 0x05, 0x71, 0xa6, 0xdb, 0x1f, 0xf9, 0x77, 0x87, 0xfe, 0xfd, + 0x8a, 0x0e, 0x9d, 0x6f, 0xff, 0x00, 0x3e, 0xf0, 0xff, 0x00, 0xdf, 0xb1, + 0x56, 0x47, 0x3f, 0x5a, 0x78, 0x5c, 0x50, 0x05, 0x2f, 0xec, 0xf8, 0x01, + 0xff, 0x00, 0x8f, 0x68, 0x4f, 0xfd, 0xb3, 0x14, 0x7d, 0x8a, 0xdf, 0xfe, + 0x7d, 0x62, 0xff, 0x00, 0xbe, 0x05, 0x5e, 0x00, 0x7b, 0x51, 0xb4, 0xb1, + 0xe8, 0x28, 0x02, 0x91, 0xb1, 0xb6, 0xff, 0x00, 0x9f, 0x58, 0xbf, 0xef, + 0xd8, 0xa5, 0x16, 0x16, 0xa7, 0xfe, 0x5d, 0x62, 0xff, 0x00, 0xbe, 0x05, + 0x5d, 0x11, 0x37, 0xa8, 0x14, 0xe4, 0x8c, 0x9f, 0x7f, 0x71, 0x40, 0x14, + 0xc6, 0x99, 0x6a, 0x7f, 0xe5, 0xda, 0x11, 0xff, 0x00, 0x00, 0x14, 0x9f, + 0xd9, 0xb6, 0x83, 0x8f, 0x22, 0x1f, 0xfb, 0xe0, 0x55, 0xf5, 0x8d, 0x81, + 0xe0, 0x50, 0xd0, 0xf2, 0x3d, 0x68, 0x02, 0x87, 0xf6, 0x6d, 0xa7, 0xfc, + 0xf0, 0x84, 0x7f, 0xdb, 0x31, 0x47, 0xf6, 0x65, 0xaf, 0xfc, 0xf0, 0x87, + 0xf0, 0x8c, 0x7f, 0x85, 0x68, 0x08, 0xc6, 0x31, 0x8a, 0x16, 0x22, 0x4f, + 0x1c, 0x7e, 0x14, 0x01, 0x9d, 0xfd, 0x99, 0x6b, 0xff, 0x00, 0x3e, 0xf1, + 0x7f, 0xdf, 0x02, 0x97, 0xfb, 0x32, 0xdb, 0xfe, 0x7d, 0xa1, 0xc7, 0xfb, + 0x82, 0xb4, 0x1a, 0x16, 0x07, 0x24, 0x66, 0xa4, 0x10, 0x12, 0xbc, 0x01, + 0x40, 0x19, 0x83, 0x4c, 0xb4, 0xff, 0x00, 0x9e, 0x10, 0x9f, 0xf8, 0x00, + 0xa4, 0xfe, 0xcd, 0xb6, 0xff, 0x00, 0x9f, 0x68, 0x7f, 0xef, 0x81, 0x5a, + 0x7f, 0x62, 0xc1, 0xce, 0xdc, 0xd0, 0x2d, 0xf1, 0xd0, 0x50, 0x06, 0x59, + 0xd3, 0xed, 0x41, 0xff, 0x00, 0x8f, 0x68, 0xbf, 0xef, 0x81, 0x4b, 0xfd, + 0x9b, 0x6c, 0x7a, 0x5b, 0x45, 0xf8, 0xa0, 0xad, 0x61, 0x69, 0xb8, 0x72, + 0x29, 0x7e, 0xc9, 0x8c, 0x61, 0x73, 0x40, 0x19, 0x03, 0x4b, 0x83, 0xbd, + 0xbc, 0x3f, 0xf7, 0xc0, 0xa7, 0x0d, 0x2e, 0xd4, 0xff, 0x00, 0xcb, 0xb4, + 0x39, 0xff, 0x00, 0x70, 0x56, 0xbf, 0xd9, 0x0e, 0x79, 0x18, 0xcf, 0xb5, + 0x0b, 0x69, 0x83, 0xc8, 0xa0, 0x0c, 0x66, 0xd2, 0x2d, 0xff, 0x00, 0xe7, + 0xd6, 0x2c, 0x7b, 0x20, 0xa6, 0x9d, 0x2a, 0xd3, 0x19, 0xf2, 0x23, 0xff, + 0x00, 0xbe, 0x07, 0xf8, 0x56, 0xe3, 0x5a, 0x64, 0x63, 0xbd, 0x34, 0x59, + 0x10, 0x3a, 0x03, 0x40, 0x18, 0xa3, 0x4b, 0xb6, 0xcf, 0xfc, 0x7b, 0x45, + 0xf8, 0xa0, 0xa4, 0xb8, 0xd2, 0xad, 0xbc, 0x89, 0x7f, 0xd1, 0x62, 0x3f, + 0x29, 0xfe, 0x01, 0xe9, 0x5b, 0x82, 0xcb, 0x7f, 0x01, 0x47, 0xe3, 0x4d, + 0x9a, 0xc4, 0xa5, 0xbc, 0x9c, 0x7f, 0x09, 0xfe, 0x54, 0x01, 0xbf, 0x06, + 0x94, 0x44, 0x09, 0xc7, 0xf0, 0x8f, 0xe5, 0x53, 0x7f, 0x67, 0xf9, 0x63, + 0x03, 0x1c, 0xf7, 0xc5, 0x6d, 0xa5, 0xb6, 0x23, 0x5e, 0x3a, 0x0a, 0x0d, + 0xbd, 0x00, 0x61, 0x36, 0x9d, 0x96, 0xe9, 0xc8, 0xa0, 0x69, 0xca, 0x49, + 0xf9, 0x6b, 0x77, 0xec, 0xd4, 0x9e, 0x46, 0x28, 0x03, 0x00, 0xe9, 0xe3, + 0x80, 0x05, 0x37, 0xfb, 0x3f, 0x27, 0x81, 0x9f, 0x6a, 0xe8, 0x0d, 0xbf, + 0xb5, 0x21, 0x83, 0x9e, 0x9d, 0x28, 0x03, 0x9e, 0x3a, 0x7e, 0x39, 0xf2, + 0xe9, 0x05, 0xa1, 0xc1, 0xc2, 0xf1, 0x5b, 0xed, 0x00, 0x3d, 0x45, 0x34, + 0xdb, 0x81, 0xda, 0x80, 0x39, 0xe6, 0xb4, 0x39, 0xfb, 0xb5, 0x1b, 0x59, + 0xfd, 0x6b, 0xa1, 0x6b, 0x40, 0x4e, 0x7a, 0x0f, 0x6a, 0x89, 0xad, 0x30, + 0x78, 0x14, 0x01, 0x80, 0x6c, 0xf2, 0x3a, 0x71, 0x51, 0xb4, 0x00, 0x71, + 0x5b, 0xed, 0x6d, 0xfe, 0x71, 0x50, 0x9b, 0x41, 0xfd, 0xda, 0x00, 0xc0, + 0x92, 0xd8, 0xd4, 0x6d, 0x6c, 0x7a, 0x8a, 0xde, 0x7b, 0x5e, 0xbf, 0x2d, + 0x40, 0xd6, 0xc0, 0x13, 0x9a, 0x00, 0xc7, 0xf2, 0x4e, 0x30, 0x79, 0xf6, + 0xa6, 0x18, 0x58, 0x56, 0xb3, 0xdb, 0x05, 0x3c, 0x8e, 0x0d, 0x57, 0x68, + 0x37, 0x13, 0xdb, 0xe9, 0x40, 0x19, 0xec, 0xbb, 0x47, 0xbd, 0x46, 0x57, + 0x15, 0x75, 0xe1, 0xf6, 0xe6, 0xa2, 0x78, 0xfa, 0x71, 0x40, 0x14, 0xd9, + 0x09, 0xf7, 0xa6, 0xfd, 0xdf, 0x7a, 0xb0, 0x63, 0xc9, 0x3c, 0xf1, 0xed, + 0x51, 0x30, 0x23, 0xb0, 0xc5, 0x00, 0x42, 0x4f, 0x72, 0x78, 0xa6, 0x99, + 0x00, 0x3d, 0x8d, 0x39, 0xf3, 0x9e, 0x3a, 0x7a, 0x54, 0x0c, 0x0f, 0x3c, + 0x1a, 0x00, 0x90, 0x90, 0xdd, 0xea, 0x22, 0xc4, 0x53, 0x59, 0x8f, 0x6a, + 0x63, 0x39, 0x1d, 0x79, 0xcd, 0x00, 0x48, 0x64, 0x23, 0xde, 0x93, 0xcc, + 0xc0, 0xe9, 0x50, 0x99, 0x46, 0x3d, 0xe9, 0xa5, 0xf3, 0x8e, 0x28, 0x02, + 0xc1, 0x90, 0x7a, 0xd2, 0x79, 0xa0, 0x0c, 0x64, 0xe6, 0xab, 0xf9, 0x9e, + 0xbc, 0x7d, 0x69, 0xa5, 0xfd, 0x33, 0x40, 0x13, 0xb4, 0xbe, 0xf4, 0xdf, + 0x34, 0x54, 0x06, 0x4c, 0x77, 0x34, 0xd6, 0x90, 0x83, 0x9e, 0xd4, 0x01, + 0x68, 0x49, 0xeb, 0xc0, 0xa1, 0x9c, 0x7a, 0xd5, 0x5f, 0x3f, 0x27, 0x9a, + 0x43, 0x29, 0x27, 0xa6, 0x68, 0x02, 0x72, 0xf9, 0xcf, 0x14, 0xd2, 0xc4, + 0x54, 0x05, 0xf1, 0x9a, 0x4f, 0x33, 0x8c, 0xe0, 0x91, 0x40, 0x16, 0x37, + 0x2f, 0xad, 0x19, 0xc7, 0xbd, 0x57, 0x12, 0x0f, 0xa5, 0x28, 0x90, 0x1e, + 0x68, 0x02, 0x6e, 0x4f, 0xff, 0x00, 0x5a, 0x8d, 0xc7, 0xbf, 0xe9, 0x50, + 0x34, 0xc4, 0x71, 0xd4, 0x52, 0x97, 0x24, 0x71, 0xc5, 0x00, 0x4f, 0x91, + 0xda, 0x91, 0x5f, 0xae, 0x2a, 0x00, 0xfc, 0xf2, 0x73, 0x4a, 0xb2, 0x0c, + 0x9e, 0x28, 0x02, 0x61, 0x26, 0x0d, 0x1b, 0x8f, 0x5c, 0xf1, 0x50, 0x09, + 0x7a, 0xd3, 0xbc, 0xcc, 0xf5, 0xa0, 0x09, 0xf7, 0x0c, 0x75, 0xa7, 0x6f, + 0xcf, 0x4a, 0x80, 0x3e, 0x47, 0xb5, 0x2e, 0x4e, 0x09, 0xc8, 0xfc, 0x68, + 0x02, 0x66, 0x34, 0xbb, 0xf0, 0x3a, 0x67, 0xeb, 0x51, 0x29, 0xc8, 0xce, + 0x73, 0x4e, 0xc9, 0x23, 0xb0, 0xa0, 0x07, 0x89, 0x3a, 0xf1, 0x8a, 0x5d, + 0xc0, 0xf6, 0xcd, 0x34, 0x16, 0x6a, 0x50, 0x40, 0xa0, 0x07, 0x6e, 0x18, + 0xe3, 0x8a, 0x50, 0xde, 0xfc, 0x53, 0x36, 0xf7, 0xcf, 0x14, 0xec, 0x93, + 0xf4, 0xa0, 0x05, 0xc9, 0xa5, 0xc1, 0x23, 0x91, 0x46, 0x7d, 0x3a, 0xd3, + 0xb1, 0xd3, 0x93, 0x40, 0x09, 0x8f, 0xc2, 0x8d, 0xa7, 0xaf, 0xf3, 0xa7, + 0x85, 0x03, 0xeb, 0x4a, 0x06, 0x71, 0xfe, 0x45, 0x00, 0x33, 0x07, 0x1f, + 0x77, 0x14, 0xe2, 0xbc, 0x60, 0xd3, 0xf6, 0x83, 0xde, 0x94, 0x26, 0x3b, + 0x50, 0x04, 0x58, 0x60, 0x70, 0x0d, 0x27, 0xde, 0x6c, 0x13, 0x53, 0x95, + 0x24, 0xfb, 0x51, 0xe5, 0x01, 0xda, 0x80, 0x22, 0x2b, 0xb4, 0xe4, 0x70, + 0x0d, 0x01, 0x30, 0xfc, 0xf4, 0xa9, 0x8c, 0x7c, 0xd2, 0xf9, 0x7d, 0x00, + 0xa0, 0x08, 0x0a, 0xed, 0x3c, 0x01, 0x9f, 0x5a, 0x40, 0xbe, 0xdc, 0xd5, + 0x8f, 0x2f, 0xd6, 0x94, 0xa7, 0xb1, 0xa0, 0x0a, 0xe1, 0x3e, 0xb9, 0xa5, + 0xdb, 0xcf, 0xad, 0x58, 0xd9, 0xb8, 0x51, 0xb4, 0x63, 0xde, 0x80, 0x20, + 0x0b, 0x8a, 0x0a, 0x67, 0x1e, 0x95, 0x31, 0x4f, 0x6a, 0x51, 0x18, 0x23, + 0xa8, 0xcd, 0x00, 0x56, 0x31, 0xf2, 0x7a, 0xfe, 0x34, 0x05, 0xfc, 0xbd, + 0x2a, 0xc7, 0x97, 0x93, 0xc8, 0xe0, 0x52, 0x18, 0xb9, 0x38, 0xa0, 0x0a, + 0xec, 0xbc, 0xd1, 0xb4, 0x91, 0xcf, 0x6a, 0x9c, 0x45, 0xce, 0x4e, 0x33, + 0x48, 0xca, 0x73, 0x40, 0x15, 0xd9, 0x41, 0xc6, 0x7f, 0x3a, 0x5e, 0x9d, + 0x05, 0x3f, 0x67, 0x18, 0xc7, 0x19, 0xa0, 0xae, 0xd1, 0x80, 0x79, 0xf4, + 0xa0, 0x08, 0x8f, 0x24, 0xf6, 0xa4, 0xdb, 0x81, 0xc7, 0x02, 0xa5, 0x28, + 0x38, 0xa0, 0xc7, 0x91, 0x8a, 0x00, 0x84, 0x64, 0xf7, 0xa0, 0x80, 0x78, + 0x07, 0x9f, 0x5a, 0x71, 0x43, 0x8e, 0x05, 0x01, 0x36, 0x9c, 0x8a, 0x00, + 0x60, 0x53, 0xdd, 0xb1, 0x4d, 0x2c, 0x7d, 0x33, 0x52, 0x11, 0xf8, 0xd3, + 0x7a, 0x1f, 0x41, 0x40, 0x0c, 0x56, 0xe7, 0x91, 0x4e, 0x2d, 0x4c, 0xc8, + 0xce, 0x71, 0x49, 0xc8, 0xf4, 0xc5, 0x00, 0x3c, 0x3e, 0x78, 0xe2, 0x9a, + 0xc3, 0x0b, 0xf7, 0xa9, 0xa7, 0x3d, 0xba, 0x52, 0x16, 0xeb, 0x40, 0x0e, + 0xea, 0x39, 0x34, 0x6e, 0x19, 0xc7, 0x5a, 0x88, 0x1e, 0x69, 0x37, 0x0c, + 0x9c, 0x1c, 0x50, 0x04, 0xc5, 0xb8, 0xe0, 0xfe, 0x06, 0x9a, 0x4f, 0x1c, + 0xe7, 0xf0, 0xa8, 0xb7, 0x11, 0xc9, 0xc9, 0xcd, 0x20, 0x6e, 0xf9, 0x3f, + 0x4a, 0x00, 0x93, 0x7e, 0x3a, 0x9a, 0x77, 0x9b, 0x9e, 0xe6, 0xa2, 0x0d, + 0xd8, 0xf1, 0x4d, 0x77, 0xc7, 0x03, 0x91, 0x40, 0x12, 0x3c, 0x9f, 0x8f, + 0xd6, 0x91, 0x5f, 0x3d, 0x0d, 0x33, 0x23, 0x1c, 0xd2, 0x6e, 0xc5, 0x00, + 0x4e, 0x25, 0xe7, 0x07, 0xad, 0x1e, 0x67, 0xd4, 0x55, 0x70, 0x40, 0xe9, + 0x4a, 0x1f, 0x22, 0x80, 0x27, 0x0e, 0xc3, 0xbf, 0x14, 0xe1, 0x29, 0x15, + 0x58, 0x38, 0xcf, 0x53, 0x8a, 0x72, 0xb8, 0xce, 0x72, 0x71, 0x40, 0x16, + 0x44, 0xb9, 0x1f, 0xe1, 0x49, 0xbf, 0x3d, 0x7f, 0x4a, 0x85, 0x9f, 0x24, + 0x05, 0xcd, 0x3b, 0xcc, 0xec, 0x68, 0x02, 0x65, 0x6e, 0x7f, 0xc6, 0xa4, + 0x12, 0x0a, 0xa8, 0x1c, 0x83, 0xeb, 0x4e, 0x0e, 0x7e, 0x94, 0x01, 0x68, + 0xb1, 0xed, 0x4a, 0x1c, 0x7a, 0xd5, 0x75, 0x6c, 0xf3, 0x4b, 0xbb, 0x3d, + 0xe8, 0x02, 0xd8, 0x61, 0xdb, 0x34, 0xbb, 0x86, 0x0e, 0x2a, 0xb2, 0x92, + 0x3d, 0xa9, 0xe1, 0xf1, 0xdf, 0xf3, 0xa0, 0x09, 0xd5, 0xcf, 0x4c, 0xe6, + 0x9c, 0xac, 0x6a, 0x15, 0x62, 0x47, 0x14, 0xf5, 0x3c, 0xd0, 0x04, 0x81, + 0x89, 0xe0, 0xe0, 0x53, 0x82, 0xe3, 0x9c, 0xe6, 0x9b, 0x95, 0x6a, 0x95, + 0x06, 0x47, 0xbd, 0x00, 0x00, 0x54, 0x88, 0x9e, 0xd9, 0x14, 0x2e, 0x4f, + 0x06, 0xa4, 0x52, 0x07, 0x06, 0x80, 0x13, 0x0b, 0xc9, 0xdb, 0x4a, 0xa3, + 0x77, 0x5a, 0x94, 0x47, 0x9e, 0x45, 0x4b, 0x1a, 0x00, 0x7d, 0x68, 0x02, + 0x25, 0x50, 0x78, 0xef, 0x52, 0x2c, 0x55, 0x32, 0xc5, 0x92, 0x0e, 0x2a, + 0x71, 0x01, 0xa0, 0x0a, 0xab, 0x08, 0x07, 0x9c, 0xd4, 0x9e, 0x47, 0x3e, + 0xd5, 0x69, 0x61, 0xec, 0x57, 0x3e, 0xf5, 0x61, 0x2d, 0xb8, 0x14, 0x01, + 0x9f, 0xf6, 0x7c, 0x75, 0x14, 0xa2, 0xdb, 0x38, 0x0b, 0x5a, 0xab, 0x6b, + 0xcf, 0x4c, 0xe6, 0xa6, 0x5b, 0x4c, 0x73, 0x8e, 0x68, 0x03, 0x23, 0xec, + 0x99, 0xeb, 0x4f, 0x16, 0x63, 0xb7, 0x06, 0xb6, 0x52, 0xcf, 0x23, 0x35, + 0x28, 0xb5, 0x18, 0xe9, 0xcd, 0x00, 0x62, 0xfd, 0x91, 0x94, 0xfa, 0xd3, + 0xfe, 0xc4, 0x5b, 0x9c, 0x72, 0x2b, 0x6d, 0x6d, 0x40, 0xea, 0x29, 0xeb, + 0x6a, 0x07, 0x4a, 0x00, 0xc4, 0xfb, 0x09, 0x6e, 0x79, 0x14, 0x2d, 0x86, + 0x4d, 0x6f, 0x7d, 0x9c, 0x7a, 0x53, 0x84, 0x1e, 0xc2, 0x80, 0x30, 0x8d, + 0x8b, 0x67, 0xa6, 0x7d, 0xcd, 0x3f, 0xec, 0x59, 0x07, 0x81, 0x9f, 0xa5, + 0x6d, 0xf9, 0x1c, 0xe3, 0x14, 0xa2, 0xdf, 0x9e, 0x94, 0x01, 0x86, 0x2c, + 0x38, 0x1f, 0xe1, 0x4f, 0xfe, 0xce, 0x27, 0x1f, 0x2e, 0x2b, 0x6f, 0xec, + 0xfe, 0xd4, 0xa2, 0x0f, 0x6a, 0x00, 0xc4, 0x5d, 0x3f, 0x66, 0x7f, 0xa5, + 0x45, 0x73, 0xa7, 0x16, 0x82, 0x5c, 0x0f, 0xe1, 0x3f, 0xca, 0xba, 0x0f, + 0xb3, 0xfb, 0x52, 0x49, 0x6f, 0x98, 0xd8, 0x63, 0x82, 0xa6, 0x80, 0x35, + 0x16, 0xd8, 0xe0, 0x71, 0x47, 0xd9, 0x8f, 0xa5, 0x69, 0x60, 0x51, 0x80, + 0x28, 0x03, 0x30, 0xda, 0x9f, 0x4a, 0x43, 0x6b, 0xed, 0x5a, 0x9c, 0x53, + 0x78, 0xa0, 0x0c, 0xb3, 0x6a, 0x7d, 0x29, 0xa6, 0xda, 0xb5, 0x4e, 0xd3, + 0x48, 0x42, 0xd0, 0x06, 0x49, 0xb6, 0xa8, 0xda, 0xdf, 0x8e, 0x95, 0xae, + 0x51, 0x7d, 0x29, 0x86, 0x35, 0xf4, 0xa0, 0x0c, 0x76, 0x80, 0xf4, 0xa6, + 0x34, 0x38, 0xed, 0x5b, 0x0d, 0x12, 0xd4, 0x6d, 0x02, 0xd0, 0x06, 0x39, + 0x87, 0x8e, 0x95, 0x19, 0x8b, 0xda, 0xb5, 0xda, 0xd8, 0x1a, 0x86, 0x4b, + 0x5a, 0x00, 0xc8, 0x96, 0x0e, 0x7a, 0x55, 0x79, 0x20, 0x19, 0xe4, 0x56, + 0xbb, 0xdb, 0x11, 0x55, 0xde, 0x1e, 0xd8, 0xa0, 0x0c, 0x89, 0x20, 0xe7, + 0xa7, 0x15, 0x5d, 0xe2, 0x18, 0x38, 0xad, 0x39, 0xa0, 0x2b, 0xd0, 0x62, + 0xa9, 0x4c, 0x9b, 0x7e, 0xb4, 0x01, 0x9c, 0xe8, 0x41, 0xeb, 0xf8, 0x55, + 0x79, 0x57, 0xaf, 0x19, 0x15, 0x72, 0x7c, 0x1e, 0xbc, 0x55, 0x59, 0x0e, + 0x06, 0x28, 0x02, 0xac, 0x80, 0x0f, 0x6a, 0xae, 0xed, 0xc1, 0xcf, 0x6a, + 0xb1, 0x21, 0xc8, 0xe3, 0x15, 0x55, 0xc8, 0xe7, 0x3d, 0x68, 0x02, 0x27, + 0xe9, 0xff, 0x00, 0xd6, 0xaa, 0xf2, 0x03, 0xcf, 0xa5, 0x4f, 0x23, 0x71, + 0xd6, 0xab, 0x48, 0xc6, 0x80, 0x23, 0x62, 0x0f, 0x06, 0xa2, 0x7e, 0x3b, + 0xe4, 0xd2, 0xb1, 0xcf, 0xd6, 0xa1, 0x91, 0xb1, 0xdf, 0x39, 0xeb, 0x40, + 0x08, 0xcd, 0xb7, 0xbf, 0x14, 0xcf, 0x3b, 0x3d, 0x33, 0x51, 0x99, 0x32, + 0x4f, 0x73, 0x51, 0x19, 0x42, 0x62, 0x80, 0x26, 0x77, 0x27, 0xeb, 0xf5, + 0xa4, 0x12, 0x9c, 0x70, 0x71, 0x55, 0xcc, 0xa4, 0x9f, 0x51, 0x4d, 0xf3, + 0x30, 0xdc, 0x9c, 0x50, 0x05, 0x83, 0x29, 0xc6, 0x7b, 0x7b, 0xd2, 0x79, + 0xd9, 0x3d, 0x05, 0x55, 0x2f, 0xcf, 0x4a, 0x4f, 0x38, 0xe7, 0xad, 0x00, + 0x59, 0x32, 0xf3, 0x48, 0x67, 0x23, 0x8c, 0x55, 0x6f, 0x37, 0x27, 0xda, + 0x83, 0x29, 0x00, 0xd0, 0x04, 0xed, 0x2e, 0x7a, 0xe7, 0x14, 0x19, 0x31, + 0xd3, 0xa5, 0x55, 0x0f, 0x8e, 0x49, 0xcf, 0xb5, 0x05, 0xe8, 0x02, 0xd0, + 0x90, 0x9e, 0xf8, 0xa5, 0xf3, 0x71, 0xdc, 0x1a, 0xaa, 0xaf, 0x49, 0xbf, + 0x07, 0x91, 0x40, 0x16, 0x8c, 0x87, 0x3d, 0x78, 0xa5, 0x12, 0xe7, 0x81, + 0xcd, 0x55, 0xdf, 0x81, 0xfd, 0x69, 0x7c, 0xe1, 0xe9, 0x40, 0x16, 0x8b, + 0xe0, 0xf3, 0xc0, 0xf5, 0xa5, 0x0f, 0xef, 0x9a, 0xae, 0x24, 0xe2, 0x94, + 0x39, 0x6c, 0x73, 0x40, 0x16, 0x81, 0xf7, 0xc5, 0x28, 0x6e, 0xdf, 0xad, + 0x57, 0x0c, 0x3a, 0x77, 0xa7, 0xa1, 0xe7, 0x9e, 0xb4, 0x01, 0x30, 0xcf, + 0xae, 0x45, 0x3c, 0xf3, 0xd0, 0xe0, 0x54, 0x5b, 0xb0, 0x78, 0xa7, 0x29, + 0xc9, 0xa0, 0x09, 0x77, 0x76, 0xed, 0x4e, 0x5e, 0xb8, 0xc7, 0x14, 0xd4, + 0xf4, 0xce, 0x05, 0x3c, 0x01, 0xb6, 0x80, 0x1c, 0x38, 0x3d, 0x69, 0xe3, + 0x9f, 0x6a, 0x45, 0x18, 0x51, 0x4f, 0x03, 0x34, 0x00, 0xa8, 0xa7, 0x18, + 0xa7, 0x01, 0xd2, 0x95, 0x47, 0x18, 0xa9, 0x15, 0x70, 0xb4, 0x00, 0xd0, + 0xb9, 0xf6, 0xa7, 0x84, 0xe3, 0xa5, 0x39, 0x57, 0x1d, 0xa9, 0xe1, 0x76, + 0xd0, 0x04, 0x62, 0x2a, 0x78, 0x43, 0x8a, 0x95, 0x57, 0xd6, 0x9e, 0xb1, + 0xfa, 0x8f, 0xca, 0x80, 0x21, 0x48, 0x81, 0x1d, 0x33, 0x4e, 0x03, 0x00, + 0x0c, 0x55, 0x85, 0x84, 0x9e, 0x9d, 0x29, 0x04, 0x47, 0xa1, 0xe6, 0x80, + 0x23, 0x54, 0xff, 0x00, 0xf5, 0x53, 0x84, 0x79, 0xc7, 0x1c, 0x54, 0xbe, + 0x46, 0x06, 0x7f, 0x4a, 0x91, 0x61, 0xe6, 0x80, 0x2b, 0x98, 0x89, 0xeb, + 0x49, 0xe4, 0x90, 0x2a, 0xe7, 0x95, 0x9c, 0xd1, 0xe5, 0x67, 0xb6, 0x0d, + 0x00, 0x55, 0x10, 0x80, 0x41, 0xc5, 0x29, 0x8f, 0x3d, 0xb3, 0x57, 0x04, + 0x34, 0xa6, 0x20, 0x7d, 0xa8, 0x02, 0x8f, 0x90, 0x41, 0xcf, 0x6e, 0xf4, + 0x79, 0x5e, 0xa3, 0x15, 0x78, 0xc5, 0x9a, 0x4f, 0x2b, 0x9e, 0x47, 0x14, + 0x01, 0x48, 0xa6, 0x48, 0x14, 0x86, 0x20, 0x31, 0x57, 0xbc, 0xa1, 0x9e, + 0x9d, 0x29, 0x1a, 0x1e, 0x71, 0x8a, 0x00, 0xa2, 0x62, 0xdd, 0x9e, 0x31, + 0x49, 0xe5, 0x6d, 0xfa, 0x55, 0xe6, 0x8b, 0xd2, 0x9a, 0x6d, 0xf3, 0x40, + 0x14, 0x4c, 0x44, 0x73, 0x48, 0x53, 0xd6, 0xae, 0xb4, 0x44, 0xf4, 0x38, + 0xa8, 0xda, 0x1e, 0x00, 0xed, 0xeb, 0x40, 0x15, 0x0a, 0x1c, 0x8f, 0x5a, + 0x69, 0x5c, 0x9c, 0x77, 0x15, 0x6d, 0xa1, 0xe3, 0x14, 0xdf, 0x2b, 0xda, + 0x80, 0x2a, 0xe3, 0x8f, 0x7f, 0x5a, 0x8d, 0x94, 0xd5, 0xb6, 0x8f, 0x83, + 0x8a, 0x61, 0x4a, 0x00, 0xac, 0x53, 0x8c, 0xe2, 0x90, 0xa6, 0x45, 0x58, + 0x68, 0xfb, 0x67, 0xa5, 0x46, 0x53, 0x3d, 0xa8, 0x02, 0xb9, 0x52, 0x7b, + 0xd3, 0x7a, 0x83, 0xc5, 0x4e, 0x54, 0xe2, 0x99, 0xb7, 0x9a, 0x00, 0x81, + 0x97, 0xdb, 0x14, 0xd6, 0xe4, 0xd4, 0xcc, 0xb8, 0xcf, 0x38, 0xa8, 0xf6, + 0xe3, 0x03, 0x1c, 0xd0, 0x04, 0x47, 0xaf, 0x4a, 0x42, 0x38, 0xa7, 0x9c, + 0x8c, 0x83, 0xd7, 0xda, 0x98, 0x46, 0x33, 0x40, 0x0d, 0xe0, 0x53, 0x09, + 0x07, 0xa8, 0xc5, 0x29, 0x39, 0xc9, 0xa8, 0xd9, 0xa8, 0x01, 0xc4, 0xfd, + 0x71, 0x4c, 0x0d, 0xcf, 0x14, 0x99, 0x34, 0xc2, 0xc7, 0x38, 0xcd, 0x00, + 0x38, 0xb1, 0x0c, 0x78, 0xa4, 0xdd, 0xcf, 0x14, 0xd6, 0x3c, 0xf0, 0x69, + 0x81, 0xb9, 0x38, 0x3c, 0x50, 0x03, 0xcb, 0x9e, 0x69, 0x3c, 0xd2, 0x3e, + 0xb5, 0x19, 0xf5, 0xcd, 0x31, 0x89, 0x27, 0x34, 0x01, 0x37, 0x9b, 0x9f, + 0x7a, 0x0b, 0x7a, 0xf1, 0x55, 0xfb, 0x60, 0x52, 0x86, 0x2a, 0x7a, 0xd0, + 0x04, 0xca, 0xfc, 0x75, 0xe2, 0x9c, 0x1c, 0x0e, 0xe4, 0x8a, 0xae, 0x65, + 0xc5, 0x0b, 0x36, 0x47, 0x22, 0x80, 0x2c, 0xf9, 0xb9, 0x23, 0x9a, 0x77, + 0x98, 0x0f, 0x53, 0x55, 0x0b, 0xfb, 0xd2, 0x89, 0x3f, 0x1a, 0x00, 0xb7, + 0xe7, 0x62, 0x9c, 0x25, 0xc8, 0xc1, 0xaa, 0x62, 0x53, 0x8e, 0xbc, 0xd3, + 0x83, 0x7b, 0xfe, 0x54, 0x01, 0x6d, 0x24, 0xfa, 0xd4, 0x9b, 0xf2, 0x07, + 0x39, 0xaa, 0x88, 0xe3, 0x1d, 0x73, 0xf5, 0xa5, 0x0e, 0x3a, 0x93, 0x8c, + 0x50, 0x05, 0xe5, 0x6e, 0x3a, 0xd3, 0x83, 0x9e, 0xb9, 0xcd, 0x54, 0x49, + 0x78, 0xc6, 0x7f, 0x11, 0x4f, 0x59, 0x01, 0x38, 0xa0, 0x0b, 0xa9, 0x2d, + 0x48, 0xaf, 0x9e, 0x71, 0xc5, 0x53, 0x46, 0x1d, 0x89, 0xa9, 0x56, 0x42, + 0x7b, 0xd0, 0x05, 0xa5, 0x3b, 0xba, 0x55, 0x85, 0x27, 0x1d, 0x2a, 0xa2, + 0x3f, 0x00, 0x75, 0x35, 0x62, 0x36, 0x24, 0xf5, 0xc5, 0x00, 0x58, 0x8c, + 0xe4, 0xf3, 0xc7, 0xe1, 0x53, 0xa2, 0x72, 0x3a, 0x54, 0x31, 0x13, 0x8e, + 0xd9, 0xab, 0x10, 0xe2, 0x80, 0x27, 0x89, 0x43, 0x11, 0x91, 0xc5, 0x58, + 0x48, 0xfd, 0x00, 0xa8, 0xe2, 0x00, 0x1e, 0xbc, 0x7b, 0x55, 0xb8, 0xd4, + 0x64, 0x50, 0x02, 0xa4, 0x24, 0xe0, 0xe2, 0xac, 0xc7, 0x17, 0x03, 0x8a, + 0x58, 0x94, 0x77, 0xab, 0x71, 0x46, 0x09, 0x14, 0x00, 0xd5, 0x83, 0x2b, + 0xd3, 0x9a, 0xb1, 0x14, 0x23, 0x8e, 0x2a, 0x54, 0x8f, 0x81, 0x53, 0xa2, + 0x72, 0x28, 0x02, 0x15, 0xb7, 0x15, 0x32, 0xc2, 0x2a, 0x65, 0x8a, 0xa7, + 0x48, 0x79, 0xa0, 0x0a, 0xab, 0x16, 0x0f, 0x4e, 0x29, 0xeb, 0x0f, 0x3d, + 0x2a, 0xea, 0xc1, 0xc7, 0x4a, 0x91, 0x60, 0x3e, 0x94, 0x01, 0x48, 0x43, + 0x9e, 0xd4, 0xe5, 0x83, 0xdb, 0x8a, 0xbe, 0x2d, 0xea, 0x45, 0xb7, 0xa0, + 0x0a, 0x02, 0x03, 0x4e, 0x16, 0xf9, 0xed, 0x5a, 0x02, 0x01, 0xe9, 0x4e, + 0x10, 0x0f, 0x4a, 0x00, 0xcf, 0x10, 0x7b, 0x53, 0x85, 0xbf, 0xb5, 0x68, + 0x88, 0x96, 0x97, 0xcb, 0x5f, 0x4a, 0x00, 0xcf, 0x10, 0x67, 0xb5, 0x28, + 0xb7, 0xf6, 0xad, 0x1d, 0x8b, 0xe9, 0x4b, 0xb0, 0x7b, 0x50, 0x06, 0x77, + 0xd9, 0xcf, 0xa5, 0x21, 0xb6, 0x25, 0x48, 0xc7, 0x6a, 0xd3, 0xda, 0x28, + 0xda, 0x28, 0x02, 0x10, 0xfc, 0x52, 0x79, 0x95, 0x00, 0x7c, 0x01, 0x41, + 0x7f, 0x7a, 0x00, 0x9b, 0xcc, 0xa4, 0xf3, 0x3d, 0xea, 0x02, 0xfc, 0x75, + 0xa6, 0x97, 0xe2, 0x80, 0x27, 0x32, 0x7b, 0xf3, 0x4d, 0x32, 0xd5, 0x73, + 0x28, 0x03, 0xad, 0x46, 0xd3, 0xd0, 0x05, 0xa3, 0x35, 0x34, 0xcd, 0x54, + 0xda, 0xe3, 0xbe, 0x6a, 0x17, 0xb9, 0xeb, 0xcd, 0x00, 0x68, 0x1b, 0x9f, + 0x53, 0x4d, 0x37, 0x23, 0xd6, 0xb2, 0x9e, 0xe4, 0x0e, 0xfc, 0x55, 0x79, + 0x35, 0x04, 0x07, 0x19, 0xa0, 0x0d, 0xa3, 0x74, 0xbe, 0xb4, 0xd3, 0x74, + 0xb8, 0xae, 0x7d, 0xf5, 0x30, 0x3b, 0x8a, 0x81, 0xf5, 0x61, 0xd9, 0xa8, + 0x03, 0xa3, 0x6b, 0x85, 0x35, 0x13, 0x4a, 0xa6, 0xb9, 0xb6, 0xd6, 0x30, + 0x33, 0x9c, 0xd4, 0x47, 0x5b, 0x39, 0xa0, 0x0e, 0x89, 0xca, 0x9c, 0xd5, + 0x3b, 0x88, 0x14, 0xe6, 0xb1, 0x8e, 0xb5, 0xc7, 0x2d, 0x4c, 0x6d, 0x60, + 0x37, 0x7c, 0x0e, 0xf4, 0x01, 0x66, 0xe2, 0x0c, 0x0f, 0x5a, 0xcb, 0xb8, + 0x46, 0x04, 0xd5, 0x83, 0xa9, 0x86, 0x3c, 0x10, 0x2a, 0x09, 0x6f, 0x55, + 0xc9, 0xc7, 0x5a, 0x00, 0xce, 0x9f, 0x23, 0xda, 0xaa, 0xca, 0xd9, 0xe7, + 0x35, 0x7a, 0x66, 0x59, 0x0e, 0x7a, 0x55, 0x29, 0x93, 0x3d, 0x28, 0x02, + 0xac, 0xb2, 0x9c, 0x54, 0x0f, 0x29, 0x22, 0x9f, 0x32, 0x9a, 0xa6, 0xcc, + 0x72, 0x4d, 0x00, 0x2c, 0x92, 0xfc, 0xdd, 0x6a, 0x27, 0x94, 0x54, 0x52, + 0xb8, 0x5e, 0xbc, 0xd4, 0x2d, 0x20, 0x1d, 0x3a, 0xd0, 0x03, 0xda, 0x4c, + 0x74, 0xa8, 0x1d, 0xf3, 0xdf, 0x8a, 0x6b, 0x4d, 0x8e, 0x2a, 0x16, 0x7c, + 0xf7, 0xa0, 0x07, 0xb4, 0x9e, 0x86, 0x98, 0x65, 0x39, 0xf4, 0xa8, 0x9a, + 0x4e, 0xf5, 0x13, 0x49, 0xba, 0x80, 0x2d, 0xf9, 0x9c, 0xf2, 0x69, 0x37, + 0x83, 0xd8, 0xd5, 0x41, 0x21, 0xeb, 0x41, 0x93, 0x8e, 0x0d, 0x00, 0x5a, + 0x12, 0xf2, 0x00, 0xa0, 0xbf, 0xe3, 0x55, 0x77, 0xd0, 0x1f, 0x14, 0x01, + 0x63, 0x7f, 0x6a, 0x37, 0x73, 0xed, 0x55, 0xb7, 0x9c, 0xf1, 0x40, 0x7c, + 0x0c, 0x9a, 0x00, 0xb6, 0x5c, 0x0e, 0x86, 0x93, 0xcc, 0xf5, 0x35, 0x5f, + 0x78, 0x27, 0x34, 0xec, 0x8f, 0xad, 0x00, 0x58, 0xdd, 0x4b, 0xbf, 0xa8, + 0xcf, 0x35, 0x5c, 0x39, 0xf5, 0xfc, 0x29, 0xc2, 0x42, 0x0e, 0x28, 0x02, + 0x70, 0xde, 0xbd, 0x69, 0xea, 0xd8, 0x1d, 0x6a, 0x05, 0x6c, 0xd3, 0xc7, + 0x43, 0x40, 0x16, 0x54, 0xe7, 0xa7, 0x26, 0x9e, 0x0e, 0x4f, 0x5a, 0x82, + 0x33, 0x83, 0x52, 0xa8, 0xe3, 0x93, 0xd6, 0x80, 0x27, 0x04, 0x00, 0x05, + 0x4a, 0x3a, 0x64, 0x54, 0x00, 0x0c, 0xd4, 0xca, 0x38, 0xcf, 0x6a, 0x00, + 0x93, 0x00, 0xfd, 0x6a, 0x44, 0x26, 0x9a, 0x83, 0xa5, 0x4a, 0xa2, 0x80, + 0x1c, 0xb5, 0x20, 0x5e, 0x94, 0x2f, 0xb0, 0xcd, 0x4a, 0x89, 0xef, 0x40, + 0x08, 0x14, 0xfe, 0x15, 0x2a, 0x83, 0x8c, 0x62, 0x95, 0x54, 0xf1, 0x52, + 0xaa, 0x73, 0x40, 0x0d, 0x09, 0x8e, 0xf5, 0x2a, 0xa9, 0x23, 0xa5, 0x3d, + 0x63, 0xe9, 0x53, 0x2c, 0x78, 0x1d, 0x28, 0x02, 0x34, 0x5f, 0x5e, 0xb5, + 0x22, 0xa6, 0xe1, 0xcd, 0x4a, 0x91, 0x74, 0x35, 0x2a, 0xc3, 0x9e, 0x71, + 0x40, 0x11, 0x2c, 0x58, 0xc5, 0x3d, 0x62, 0xa9, 0xd6, 0x1e, 0xf8, 0xa9, + 0xd6, 0x00, 0x46, 0x71, 0x40, 0x15, 0x7c, 0xa3, 0x4e, 0x10, 0x9a, 0xb8, + 0x96, 0xd9, 0xa9, 0x85, 0xb9, 0x3c, 0xd0, 0x05, 0x11, 0x07, 0x1d, 0x68, + 0x58, 0x08, 0xad, 0x11, 0x6c, 0x7b, 0x0a, 0x91, 0x6d, 0x73, 0xdb, 0x34, + 0x01, 0x9c, 0xb0, 0x1c, 0x1e, 0x39, 0xa7, 0x2d, 0xb7, 0x5e, 0xd5, 0xa6, + 0xb6, 0x84, 0x0a, 0x70, 0xb4, 0x39, 0xa0, 0x0c, 0x9f, 0xb3, 0xe3, 0x1c, + 0x52, 0xfd, 0x9c, 0x9e, 0x71, 0x5a, 0xff, 0x00, 0x64, 0xcd, 0x2f, 0xd9, + 0x00, 0xe9, 0x40, 0x18, 0xc6, 0x02, 0x7b, 0x52, 0x7d, 0x9f, 0x15, 0xb3, + 0xf6, 0x51, 0x51, 0xfd, 0x90, 0x13, 0x9a, 0x00, 0xc7, 0x68, 0x38, 0xfd, + 0x69, 0x9e, 0x41, 0x23, 0xd4, 0xd6, 0xcb, 0x5a, 0xf0, 0x6a, 0x33, 0x66, + 0x40, 0xa0, 0x0c, 0x73, 0x01, 0x06, 0x9a, 0xd1, 0x76, 0x22, 0xb5, 0x5e, + 0xd4, 0xe2, 0x98, 0xd6, 0xdc, 0x70, 0x28, 0x03, 0x29, 0xa2, 0xa8, 0xda, + 0x3c, 0x7f, 0xf5, 0xeb, 0x51, 0xad, 0x8f, 0xa7, 0x35, 0x03, 0xdb, 0xfe, + 0x74, 0x01, 0x9c, 0xd1, 0x10, 0x0e, 0x45, 0x46, 0x53, 0x1d, 0x6b, 0x45, + 0xe1, 0xa8, 0x4c, 0x3d, 0x68, 0x02, 0x89, 0x8b, 0x9a, 0x63, 0x47, 0x83, + 0xd2, 0xae, 0xbc, 0x59, 0xa8, 0x4a, 0x73, 0x40, 0x15, 0x19, 0x33, 0x51, + 0x3a, 0xf6, 0xab, 0x8c, 0x9f, 0x85, 0x42, 0xc8, 0x0f, 0x6a, 0x00, 0xaa, + 0xcb, 0x8e, 0xbc, 0xd4, 0x6c, 0xbc, 0x67, 0x15, 0x65, 0xa3, 0xe2, 0xa2, + 0x2b, 0xf5, 0xa0, 0x0a, 0xcc, 0x3f, 0x0a, 0x89, 0xd4, 0xfa, 0xe3, 0xda, + 0xac, 0xb2, 0x67, 0xe9, 0x51, 0xb2, 0x8e, 0xbf, 0xce, 0x80, 0x20, 0x3d, + 0x3d, 0x3d, 0xaa, 0x16, 0xc1, 0x3d, 0x2a, 0xc3, 0x0c, 0xf4, 0x15, 0x13, + 0x9c, 0xf1, 0x40, 0x10, 0x93, 0xeb, 0x51, 0x93, 0x82, 0x72, 0x2a, 0x46, + 0x5c, 0xf2, 0x38, 0x22, 0xa3, 0x6c, 0xe3, 0xde, 0x80, 0x1a, 0x4e, 0x73, + 0x51, 0xc8, 0xdb, 0x7b, 0x50, 0x4f, 0x3c, 0xd4, 0x72, 0x1c, 0x74, 0x34, + 0x00, 0xa5, 0xb3, 0x4c, 0x66, 0xa4, 0x2e, 0x29, 0x8c, 0xe3, 0x3c, 0x50, + 0x03, 0xcb, 0xe0, 0xd2, 0x6f, 0xc8, 0xf7, 0xa8, 0x7c, 0xce, 0x71, 0x4c, + 0x32, 0x90, 0x4d, 0x00, 0x4e, 0x5c, 0xe6, 0x83, 0x26, 0x3e, 0x9e, 0xd5, + 0x5c, 0xc9, 0xd3, 0x34, 0x9e, 0x7f, 0x34, 0x01, 0x64, 0xbf, 0x34, 0xe0, + 0xe3, 0x8c, 0x55, 0x31, 0x37, 0xbd, 0x1e, 0x6f, 0x23, 0x07, 0x34, 0x01, + 0x74, 0x49, 0x81, 0xd2, 0x93, 0xcd, 0xc5, 0x54, 0x13, 0x67, 0xff, 0x00, + 0xaf, 0x4e, 0xf3, 0x7f, 0x0a, 0x00, 0xb6, 0x24, 0xa7, 0x89, 0x38, 0xaa, + 0x62, 0x5e, 0x47, 0x34, 0xf1, 0x2f, 0x19, 0x14, 0x01, 0x7d, 0x64, 0x00, + 0x0c, 0x1a, 0x7a, 0x31, 0xf5, 0xac, 0xf1, 0x30, 0xe3, 0x9a, 0x99, 0x65, + 0xfc, 0xe8, 0x02, 0xfa, 0x49, 0xcd, 0x4f, 0x1c, 0x98, 0xe2, 0xb3, 0xd2, + 0x4c, 0xf5, 0x38, 0x15, 0x62, 0x37, 0xef, 0x9c, 0xd0, 0x06, 0x94, 0x72, + 0x7b, 0xd5, 0x88, 0xdc, 0x1c, 0x63, 0xad, 0x66, 0xc6, 0xf9, 0xef, 0x56, + 0xa3, 0x93, 0x07, 0x1c, 0x50, 0x05, 0xf8, 0xd8, 0x83, 0xc5, 0x5d, 0x8d, + 0xf3, 0x8a, 0xcc, 0x8d, 0xf9, 0xab, 0x71, 0x48, 0x09, 0xa0, 0x0d, 0x48, + 0x88, 0xfa, 0xd5, 0xc8, 0x58, 0xd6, 0x75, 0xb9, 0xe3, 0xd2, 0xb4, 0x6d, + 0x86, 0xec, 0x50, 0x05, 0xe8, 0x93, 0x91, 0x91, 0x5a, 0x10, 0xc5, 0x91, + 0xc8, 0xa8, 0x2d, 0x62, 0xce, 0x2b, 0x4a, 0x24, 0x00, 0x0a, 0x00, 0x58, + 0xe2, 0xf6, 0xab, 0x51, 0xc1, 0x9e, 0xd4, 0xd8, 0xc8, 0x5a, 0x99, 0x66, + 0x51, 0xde, 0x80, 0x25, 0x48, 0x00, 0xa9, 0x56, 0x31, 0x50, 0x7d, 0xa5, + 0x78, 0xa5, 0xfb, 0x50, 0xf5, 0xa0, 0x0b, 0x6a, 0xaa, 0x29, 0xe3, 0x02, + 0xa8, 0xfd, 0xa8, 0x7a, 0xd3, 0x85, 0xc0, 0x34, 0x01, 0x77, 0x70, 0xa3, + 0xcc, 0xaa, 0x62, 0x6c, 0xf7, 0xa7, 0x09, 0x7d, 0xe8, 0x02, 0xde, 0xfa, + 0x3c, 0xca, 0xab, 0xe6, 0x53, 0xb7, 0xd0, 0x05, 0x8f, 0x33, 0x34, 0x79, + 0x95, 0x06, 0xfa, 0x37, 0xd0, 0x05, 0x8f, 0x30, 0xd1, 0xbe, 0xa0, 0xdf, + 0x46, 0xea, 0x00, 0x9f, 0x7d, 0x05, 0xf8, 0xa8, 0x77, 0xfb, 0xd2, 0x17, + 0xe0, 0xd0, 0x05, 0x61, 0x2f, 0xc8, 0x0e, 0x7b, 0x53, 0x5a, 0x70, 0x05, + 0x56, 0x58, 0xe4, 0x28, 0x38, 0xed, 0x47, 0xd9, 0xe4, 0x34, 0x00, 0xf7, + 0xba, 0xc5, 0x42, 0xf7, 0x67, 0x9e, 0x69, 0x1a, 0xd9, 0xfb, 0xd3, 0x1a, + 0xd5, 0xa8, 0x02, 0x39, 0x2f, 0xb1, 0xd4, 0xd5, 0x67, 0xd4, 0xb6, 0xd4, + 0x93, 0x59, 0x13, 0xde, 0xa9, 0x4f, 0x66, 0xc3, 0x9a, 0x00, 0x49, 0x75, + 0x9d, 0xa7, 0x18, 0xfa, 0xd5, 0x19, 0xb5, 0xa3, 0xdc, 0xd4, 0x77, 0x10, + 0xb0, 0xc8, 0xc7, 0x35, 0x99, 0x71, 0x1b, 0x9e, 0xc7, 0x8a, 0x00, 0xbb, + 0x2e, 0xb2, 0x71, 0xf7, 0xb9, 0xaa, 0x8f, 0xaa, 0x6f, 0xef, 0x59, 0xf3, + 0x23, 0x00, 0x73, 0x9a, 0xa5, 0x21, 0x60, 0x68, 0x03, 0x59, 0xf5, 0x12, + 0x7a, 0x1a, 0x89, 0xb5, 0x0c, 0x8c, 0x67, 0xa5, 0x63, 0x3c, 0xee, 0xb5, + 0x0b, 0x5c, 0x1e, 0x46, 0x4d, 0x00, 0x6c, 0xb5, 0xf9, 0x3d, 0xea, 0x26, + 0xbe, 0x38, 0xeb, 0xcd, 0x63, 0x7d, 0xa8, 0x9e, 0xfd, 0x29, 0x8d, 0x75, + 0xc9, 0xa0, 0x0d, 0x96, 0xbd, 0xe3, 0x39, 0xfc, 0x29, 0xa6, 0xf4, 0xe3, + 0x20, 0xe3, 0xda, 0xb1, 0x5a, 0xf3, 0x8a, 0x6f, 0xda, 0xf8, 0xeb, 0xc5, + 0x00, 0x6d, 0x1b, 0xec, 0x7f, 0x15, 0x20, 0xbe, 0x27, 0x23, 0x3f, 0x95, + 0x62, 0x7d, 0xa8, 0x1f, 0xfe, 0xbd, 0x21, 0xbc, 0x0a, 0x28, 0x03, 0x75, + 0x75, 0x0c, 0x03, 0xce, 0x69, 0x0d, 0xe7, 0x3c, 0x1a, 0xc1, 0xfb, 0x57, + 0x7c, 0xd0, 0x6f, 0x32, 0x7a, 0x9c, 0x7b, 0x50, 0x06, 0xcc, 0x93, 0x06, + 0xe7, 0x39, 0xaa, 0x92, 0x9e, 0xe2, 0xa8, 0x8b, 0xb2, 0x3b, 0xf1, 0x43, + 0x5d, 0x67, 0xbd, 0x00, 0x2c, 0xad, 0x83, 0xd6, 0xaa, 0xbb, 0xe7, 0x27, + 0x38, 0xa9, 0x24, 0x94, 0x1c, 0xe0, 0xd5, 0x67, 0x6c, 0xd0, 0x02, 0x33, + 0xe3, 0x93, 0x51, 0x3c, 0xbe, 0xfc, 0xd3, 0x1d, 0xcd, 0x44, 0xef, 0x9e, + 0xbc, 0x50, 0x03, 0x99, 0xf3, 0x51, 0x19, 0x33, 0xd6, 0x98, 0xcf, 0xc7, + 0xb5, 0x44, 0xf2, 0x01, 0x40, 0x13, 0x79, 0xa3, 0xa7, 0x6a, 0x3c, 0xdf, + 0x4e, 0xb5, 0x50, 0xc9, 0x4d, 0xf3, 0x79, 0xe2, 0x80, 0x2e, 0x09, 0xbd, + 0x38, 0xa7, 0x79, 0xc4, 0xd5, 0x11, 0x36, 0x09, 0xfe, 0xb4, 0xff, 0x00, + 0x3b, 0xde, 0x80, 0x2d, 0x89, 0x78, 0xa0, 0x48, 0x73, 0x54, 0xfc, 0xe2, + 0x7b, 0x53, 0xbc, 0xdc, 0xf4, 0xa0, 0x0b, 0x7e, 0x6f, 0xe7, 0x4a, 0x1c, + 0x9a, 0xa9, 0xe6, 0x53, 0xc4, 0xd9, 0x14, 0x01, 0x70, 0x31, 0xa7, 0xee, + 0x35, 0x51, 0x65, 0xf7, 0xa9, 0x51, 0xf3, 0xde, 0x80, 0x2d, 0xa3, 0x9e, + 0x2a, 0x55, 0x72, 0x3a, 0x8f, 0xca, 0xaa, 0xab, 0x64, 0x70, 0x6a, 0x65, + 0x7e, 0x05, 0x00, 0x58, 0x46, 0xc8, 0xa9, 0x90, 0xe7, 0xaf, 0xe5, 0x55, + 0xd1, 0xf3, 0xd6, 0xa5, 0x56, 0xce, 0x28, 0x02, 0xca, 0xf3, 0x80, 0x6a, + 0xc2, 0x75, 0xe2, 0xab, 0x46, 0x73, 0x81, 0x56, 0x53, 0xd7, 0x34, 0x01, + 0x32, 0x8c, 0x54, 0xca, 0x0e, 0x38, 0xa8, 0xa3, 0x38, 0xf7, 0xab, 0x11, + 0x81, 0x9a, 0x00, 0x91, 0x3a, 0x54, 0xd1, 0xa5, 0x35, 0x00, 0xf4, 0xa9, + 0xd5, 0x31, 0x40, 0x0f, 0x41, 0x53, 0x2a, 0x70, 0x29, 0xb1, 0xaf, 0xff, + 0x00, 0xae, 0xac, 0xc6, 0x94, 0x00, 0x47, 0x17, 0xff, 0x00, 0xae, 0xac, + 0x24, 0x5c, 0x73, 0x4e, 0x48, 0xf2, 0x6a, 0xcc, 0x70, 0xe7, 0x14, 0x01, + 0x12, 0x45, 0x8e, 0xa2, 0xac, 0x47, 0x06, 0x71, 0xc7, 0xe1, 0x53, 0xc7, + 0x6f, 0x9e, 0xd5, 0x62, 0x38, 0x3a, 0x71, 0x40, 0x15, 0xd2, 0xdf, 0xda, + 0xac, 0x25, 0xb7, 0x4a, 0xb3, 0x1c, 0x15, 0x32, 0x43, 0x40, 0x15, 0xd2, + 0xdc, 0x67, 0xa5, 0x4c, 0xb0, 0x81, 0xda, 0xac, 0x08, 0xe9, 0xeb, 0x1e, + 0x68, 0x02, 0xba, 0xc4, 0x3d, 0x29, 0xfe, 0x5e, 0x7b, 0x55, 0x91, 0x1e, + 0x29, 0xe2, 0x2a, 0x00, 0xa9, 0xe5, 0xd3, 0x84, 0x24, 0xf4, 0x15, 0x6c, + 0x45, 0x4e, 0x11, 0x9a, 0x00, 0xaa, 0x2d, 0x9b, 0x1d, 0x29, 0x3c, 0x92, + 0x2a, 0xef, 0x92, 0x68, 0xf2, 0x68, 0x02, 0x89, 0x82, 0x9a, 0x6d, 0xfb, + 0x55, 0xff, 0x00, 0x24, 0xfa, 0x52, 0x18, 0x79, 0xa0, 0x0c, 0xf3, 0x6e, + 0x29, 0x86, 0xdf, 0x8a, 0xd1, 0x31, 0x54, 0x66, 0x2a, 0x00, 0xce, 0x6b, + 0x63, 0xf8, 0x54, 0x66, 0xdd, 0xbf, 0x0a, 0xd3, 0x68, 0xf8, 0xa6, 0x18, + 0xe8, 0x03, 0x26, 0x4b, 0x72, 0x2a, 0x16, 0xb7, 0xce, 0x7d, 0x6b, 0x61, + 0xa3, 0xcf, 0x6a, 0x85, 0xad, 0xc1, 0xed, 0x40, 0x18, 0xaf, 0x00, 0xa8, + 0x9a, 0x1c, 0x03, 0x5b, 0x12, 0x5b, 0x1f, 0x4a, 0xad, 0x24, 0x1e, 0xd4, + 0x01, 0x90, 0xf0, 0xf3, 0xed, 0x51, 0x34, 0x38, 0x15, 0xa8, 0xf6, 0xc6, + 0xab, 0x3c, 0x04, 0x0a, 0x00, 0xcb, 0x92, 0x2e, 0x6a, 0x07, 0x8f, 0x1c, + 0xd6, 0xa3, 0xc2, 0x73, 0x55, 0xe4, 0x84, 0x0e, 0x00, 0xe6, 0x80, 0x33, + 0x1d, 0x47, 0x3d, 0xbd, 0xaa, 0x12, 0x32, 0x33, 0x5a, 0x12, 0x45, 0xe9, + 0x55, 0x9e, 0x2e, 0xa2, 0x80, 0x29, 0x91, 0xce, 0x2a, 0x26, 0x5a, 0xb2, + 0xe8, 0x41, 0xf5, 0x15, 0x04, 0x94, 0x01, 0x03, 0x73, 0x50, 0x3a, 0xf3, + 0xd6, 0xac, 0x35, 0x44, 0xe3, 0xdf, 0x9a, 0x00, 0xae, 0xdc, 0x70, 0x05, + 0x41, 0x21, 0xc7, 0x07, 0xad, 0x58, 0x73, 0x83, 0x55, 0xa4, 0xe0, 0xf3, + 0x40, 0x10, 0x31, 0x19, 0x39, 0xe9, 0x51, 0x33, 0xf1, 0x4f, 0x90, 0xf5, + 0xed, 0x50, 0xb9, 0xc0, 0xcd, 0x00, 0x34, 0xb7, 0x5f, 0x5a, 0x89, 0x9f, + 0x1d, 0xe8, 0x76, 0xe2, 0xa0, 0x76, 0xcd, 0x00, 0x38, 0xc8, 0x29, 0xa6, + 0x4f, 0x53, 0x51, 0x33, 0x8a, 0x61, 0x71, 0x8a, 0x00, 0x97, 0xce, 0x1c, + 0xe4, 0xe6, 0x9a, 0x64, 0xc8, 0xe0, 0xd5, 0x72, 0xf8, 0xfa, 0xd3, 0x4c, + 0x98, 0xf6, 0xa0, 0x0b, 0x22, 0x4c, 0x0f, 0x4a, 0x41, 0x26, 0x3e, 0xb5, + 0x54, 0xcc, 0x33, 0xc1, 0xeb, 0x49, 0xe6, 0xf3, 0xd6, 0x80, 0x2e, 0x89, + 0x33, 0x4e, 0x12, 0x60, 0x9a, 0xa5, 0xe7, 0x67, 0x92, 0x28, 0x13, 0x73, + 0x40, 0x17, 0xbc, 0xcc, 0x53, 0xd6, 0x51, 0x54, 0x04, 0xdc, 0x62, 0x9e, + 0x26, 0x1f, 0x5a, 0x00, 0xd0, 0x57, 0x19, 0xe6, 0xa4, 0x59, 0x79, 0xf6, + 0xaa, 0x02, 0x5c, 0xfd, 0x2a, 0x78, 0xe4, 0x03, 0xde, 0x80, 0x2f, 0xac, + 0xb9, 0xc7, 0x3f, 0x85, 0x58, 0x8e, 0x4d, 0xbd, 0xff, 0x00, 0x0a, 0xce, + 0x59, 0x07, 0x6a, 0x95, 0x24, 0xcd, 0x00, 0x6a, 0x47, 0x2e, 0x3b, 0xd5, + 0x94, 0x98, 0x67, 0x8e, 0x6b, 0x29, 0x24, 0x39, 0xc5, 0x58, 0x8a, 0x6c, + 0x1c, 0xd0, 0x06, 0xc4, 0x33, 0x67, 0xda, 0xae, 0xc2, 0xf5, 0x8d, 0x14, + 0xc3, 0x8a, 0xbb, 0x0d, 0xc8, 0x00, 0x73, 0x40, 0x1b, 0xd6, 0xcc, 0x0f, + 0x53, 0x5a, 0x96, 0xf3, 0x88, 0xc7, 0x5e, 0xb5, 0xcb, 0x2d, 0xee, 0xde, + 0xf5, 0x21, 0xd5, 0x30, 0x3e, 0xf5, 0x00, 0x76, 0x71, 0x6a, 0x48, 0xa3, + 0x39, 0xc1, 0xa9, 0x86, 0xb4, 0xaa, 0x39, 0x35, 0xc1, 0xff, 0x00, 0x6c, + 0x67, 0xbd, 0x34, 0x6a, 0x8c, 0x47, 0xde, 0xa0, 0x0e, 0xfc, 0xeb, 0xc8, + 0x07, 0x06, 0x9a, 0x35, 0xd0, 0xdc, 0x03, 0x5c, 0x20, 0xd4, 0xce, 0x7a, + 0xf3, 0x52, 0x8d, 0x50, 0xf4, 0xcf, 0xe5, 0x40, 0x1d, 0xca, 0xea, 0xf9, + 0x3d, 0x6a, 0x64, 0xd4, 0xc1, 0xee, 0x2b, 0x86, 0x5d, 0x4f, 0xa6, 0x0d, + 0x48, 0x9a, 0xb1, 0x07, 0x3b, 0xa8, 0x03, 0xbc, 0x5d, 0x41, 0x4f, 0xf1, + 0x7e, 0xb5, 0x32, 0x5e, 0x29, 0xc6, 0x0d, 0x70, 0x89, 0xac, 0x63, 0xf8, + 0xaa, 0xc2, 0x6b, 0x64, 0x77, 0xc5, 0x00, 0x77, 0x0b, 0x74, 0x3d, 0x6a, + 0x51, 0x73, 0xef, 0x5c, 0x5a, 0x6b, 0xc0, 0x63, 0x2d, 0x53, 0x27, 0x88, + 0x01, 0xfe, 0x2e, 0x68, 0x03, 0xb2, 0x5b, 0x91, 0xeb, 0x4e, 0x17, 0x23, + 0x35, 0xc9, 0xa6, 0xbd, 0xbb, 0xbd, 0x5a, 0x8f, 0x56, 0xdd, 0x8e, 0x68, + 0x03, 0xa5, 0xfb, 0x40, 0xa5, 0x13, 0x8a, 0xc2, 0x8f, 0x52, 0x0d, 0x53, + 0xc7, 0x7a, 0x0f, 0x7a, 0x00, 0xd7, 0x12, 0x83, 0x4e, 0x12, 0x56, 0x6a, + 0xdc, 0xe4, 0x0a, 0x78, 0xb9, 0x3d, 0x00, 0xa0, 0x0d, 0x02, 0xf4, 0x8d, + 0x26, 0x14, 0x9c, 0xf6, 0xaa, 0x6b, 0x3b, 0x9e, 0xd4, 0x3b, 0x48, 0xc8, + 0xd8, 0x1d, 0xa8, 0x03, 0x60, 0x5b, 0x00, 0x3a, 0x52, 0xfd, 0x9c, 0x54, + 0xbb, 0xb2, 0x29, 0x33, 0x40, 0x10, 0x9b, 0x61, 0x4c, 0x6b, 0x51, 0x56, + 0x73, 0x49, 0x40, 0x14, 0x24, 0xb2, 0xdd, 0x55, 0xa4, 0xd3, 0x4b, 0x0f, + 0x5a, 0xd8, 0xa4, 0xc6, 0x68, 0x03, 0x9d, 0x97, 0x49, 0xdc, 0x0f, 0xcb, + 0x54, 0x27, 0xd1, 0x41, 0xcf, 0xcb, 0x8a, 0xec, 0x0a, 0x83, 0xda, 0xa3, + 0x78, 0x15, 0xbb, 0x50, 0x07, 0x01, 0x73, 0xa1, 0x9c, 0x1c, 0x0a, 0xc8, + 0xb9, 0xd1, 0x4e, 0x4f, 0xcb, 0x5e, 0x9b, 0x35, 0x82, 0xb0, 0x38, 0x15, + 0x9f, 0x73, 0xa4, 0x86, 0x07, 0x8c, 0xd0, 0x07, 0x96, 0x5c, 0xe9, 0x7b, + 0x73, 0xc5, 0x65, 0xdc, 0x5a, 0x30, 0x04, 0x57, 0xa6, 0x5f, 0x68, 0xbd, + 0x70, 0xbf, 0xa5, 0x73, 0x97, 0xda, 0x51, 0x5c, 0xfc, 0xb4, 0x01, 0xc3, + 0x4b, 0x0b, 0x20, 0x3d, 0xfd, 0xea, 0x9c, 0x84, 0x8c, 0xf7, 0xae, 0x9a, + 0xf6, 0xc0, 0xae, 0x78, 0xac, 0x4b, 0xab, 0x4c, 0x13, 0xe9, 0x40, 0x19, + 0xc6, 0x5c, 0x0c, 0x13, 0xcd, 0x47, 0xf6, 0x8c, 0x52, 0xcf, 0x11, 0x19, + 0xaa, 0x52, 0x92, 0xa4, 0x50, 0x05, 0xb3, 0x73, 0xef, 0x4d, 0x37, 0x38, + 0xc1, 0xcd, 0x67, 0x34, 0xe4, 0xb5, 0x46, 0xd7, 0x3c, 0xe2, 0x80, 0x35, + 0x0d, 0xd6, 0x3a, 0x52, 0x1b, 0x9e, 0x07, 0x35, 0x94, 0x6e, 0x88, 0xcf, + 0x34, 0xdf, 0xb5, 0x1c, 0x75, 0xa0, 0x0d, 0x5f, 0xb4, 0xe3, 0xbd, 0x2f, + 0xda, 0xb0, 0x3a, 0xd6, 0x4f, 0xda, 0xb3, 0x8e, 0x70, 0x28, 0x17, 0x3c, + 0xe0, 0x50, 0x06, 0xbf, 0xda, 0xb3, 0xd4, 0xd2, 0x19, 0xb3, 0xdf, 0x35, + 0x96, 0x6e, 0x38, 0xc6, 0x69, 0xcb, 0x73, 0x9e, 0xf8, 0xa0, 0x0b, 0x8f, + 0x21, 0xa8, 0x64, 0x97, 0x22, 0xa1, 0x6b, 0x80, 0x47, 0x5c, 0x9a, 0x85, + 0xa6, 0xc5, 0x00, 0x49, 0x24, 0x84, 0x54, 0x2c, 0xf5, 0x13, 0xcb, 0x93, + 0xc1, 0xa8, 0x9e, 0x5e, 0x39, 0x34, 0x01, 0x2b, 0x49, 0x51, 0xf9, 0xb5, + 0x5c, 0xcb, 0xef, 0x4c, 0x32, 0xf3, 0xd6, 0x80, 0x2e, 0x19, 0x7d, 0x68, + 0xf3, 0x78, 0xeb, 0x54, 0xfc, 0xdc, 0x77, 0xa5, 0x59, 0x8f, 0x4f, 0xd6, + 0x80, 0x2e, 0x89, 0x48, 0xe8, 0x69, 0xc2, 0x53, 0x54, 0x84, 0xd9, 0xa7, + 0xac, 0xbc, 0x50, 0x05, 0xc5, 0x97, 0x9c, 0x66, 0xa4, 0x57, 0xe6, 0xa9, + 0x09, 0x39, 0xf7, 0xa7, 0xa4, 0x99, 0x3c, 0xd0, 0x05, 0xf4, 0x7e, 0xd9, + 0xcd, 0x4e, 0xaf, 0xda, 0xa8, 0xa3, 0xfb, 0xd5, 0x98, 0xdf, 0xd4, 0xd0, + 0x05, 0xb4, 0x6a, 0xb1, 0x19, 0xf7, 0xc0, 0xaa, 0x71, 0x9a, 0xb1, 0x19, + 0xe9, 0x40, 0x16, 0xd0, 0xe4, 0xd5, 0x84, 0x35, 0x55, 0x09, 0xc5, 0x59, + 0x8c, 0xd0, 0x05, 0x98, 0xaa, 0xcc, 0x43, 0x19, 0xee, 0x6a, 0xac, 0x40, + 0xe7, 0x35, 0x69, 0x1a, 0x80, 0x2d, 0x27, 0x6a, 0xb3, 0x18, 0xe3, 0x8a, + 0xab, 0x11, 0xc8, 0xab, 0x51, 0x50, 0x05, 0x88, 0xfa, 0xe2, 0xad, 0x46, + 0xb9, 0xed, 0x55, 0xe3, 0x07, 0xad, 0x5b, 0x8d, 0x7a, 0x50, 0x04, 0xd1, + 0xa6, 0x71, 0x56, 0xe1, 0x8e, 0x99, 0x0a, 0x82, 0x00, 0xab, 0xd0, 0xc4, + 0x3f, 0x0a, 0x00, 0x23, 0x8b, 0xa5, 0x5b, 0x86, 0x1f, 0x6a, 0x22, 0x8b, + 0xb8, 0xab, 0xf1, 0x43, 0xf8, 0x50, 0x03, 0x22, 0x87, 0xd2, 0xac, 0x47, + 0x0e, 0x3d, 0xea, 0x44, 0x8c, 0x0e, 0xd5, 0x2a, 0xa6, 0x28, 0x01, 0x8a, + 0x95, 0x2a, 0xc7, 0x4f, 0x54, 0x15, 0x22, 0xad, 0x00, 0x34, 0x47, 0xf8, + 0xd4, 0x8b, 0x1e, 0x69, 0xea, 0x38, 0xa9, 0x14, 0x0a, 0x00, 0x8d, 0x63, + 0xf6, 0xa7, 0x88, 0xa9, 0xe0, 0x62, 0x9c, 0x28, 0x01, 0xa2, 0x3f, 0x6a, + 0x78, 0x8e, 0x9c, 0x29, 0xc2, 0x80, 0x19, 0xe5, 0xd2, 0xf9, 0x74, 0xfa, + 0x50, 0xc2, 0x80, 0x22, 0xf2, 0xe9, 0x0c, 0x7c, 0xd4, 0xa5, 0xa9, 0xa4, + 0xd0, 0x04, 0x25, 0x29, 0x86, 0x21, 0x53, 0x1a, 0x69, 0xa0, 0x0a, 0xef, + 0x1f, 0x35, 0x1b, 0x47, 0x56, 0x18, 0xe6, 0xa3, 0x63, 0x40, 0x15, 0xda, + 0x3a, 0x8d, 0x92, 0xac, 0x9a, 0x61, 0x1c, 0xd0, 0x05, 0x56, 0x4c, 0xd4, + 0x4f, 0x08, 0x23, 0xa5, 0x5c, 0x20, 0x54, 0x65, 0x68, 0x03, 0x3a, 0x48, + 0x3f, 0x0a, 0xad, 0x2c, 0x27, 0xb5, 0x6b, 0x34, 0x60, 0xd5, 0x77, 0x87, + 0x26, 0x80, 0x32, 0x24, 0x84, 0x8e, 0xd5, 0x52, 0x48, 0x49, 0xed, 0x8a, + 0xd8, 0x96, 0x1a, 0xa9, 0x2a, 0x71, 0xc5, 0x00, 0x63, 0xcb, 0x18, 0x1c, + 0xf7, 0x15, 0x56, 0x45, 0xe4, 0xd6, 0xa4, 0xd1, 0x8c, 0xd5, 0x09, 0x53, + 0xad, 0x00, 0x67, 0xc8, 0xb5, 0x56, 0x54, 0xe3, 0x8a, 0xbf, 0x2a, 0x55, + 0x47, 0x5a, 0x00, 0xa2, 0xe0, 0x80, 0x6a, 0x07, 0x93, 0x8e, 0x6a, 0xd4, + 0xa0, 0xf3, 0x54, 0xe4, 0x00, 0x7b, 0xd0, 0x04, 0x4c, 0xd9, 0xa8, 0x24, + 0x6c, 0xf4, 0xa7, 0xc8, 0xf8, 0xeb, 0x50, 0x3c, 0x82, 0x80, 0x22, 0x90, + 0x1c, 0x55, 0x77, 0x23, 0xa5, 0x4c, 0xee, 0x6a, 0xb4, 0xac, 0x73, 0x40, + 0x11, 0x48, 0xdc, 0x62, 0xa0, 0x76, 0x3c, 0xd4, 0x92, 0x38, 0x1c, 0x76, + 0xaa, 0xb2, 0x49, 0x8a, 0x00, 0x47, 0x7c, 0xf3, 0xd0, 0x54, 0x0c, 0xd9, + 0x14, 0x8f, 0x2f, 0x39, 0xa8, 0x1a, 0x5c, 0xf6, 0xa0, 0x09, 0x1a, 0x4f, + 0x5a, 0x8c, 0xc9, 0xc9, 0xeb, 0x8a, 0x8d, 0x9f, 0x39, 0xc7, 0x4a, 0x8c, + 0xbe, 0x7a, 0x9a, 0x00, 0x98, 0xcb, 0xc5, 0x27, 0x9b, 0xc7, 0x35, 0x5c, + 0xb1, 0x34, 0x9b, 0x80, 0x1c, 0xd0, 0x05, 0x91, 0x31, 0xf5, 0xa5, 0xf3, + 0xb1, 0xde, 0xaa, 0x6f, 0xc5, 0x21, 0x93, 0xd0, 0xf3, 0x40, 0x17, 0x44, + 0xdc, 0xe7, 0xad, 0x48, 0xb3, 0x1c, 0xe6, 0xb3, 0xfc, 0xde, 0x69, 0xeb, + 0x2d, 0x00, 0x69, 0xa4, 0xa3, 0x8a, 0x99, 0x26, 0xe6, 0xb3, 0x16, 0x6e, + 0x6a, 0x64, 0x9b, 0x9a, 0x00, 0xd3, 0x59, 0xaa, 0x55, 0x9b, 0x8e, 0xb5, + 0x9a, 0x92, 0x9e, 0x2a, 0x54, 0x9b, 0x34, 0x01, 0xa8, 0x93, 0x7b, 0xd5, + 0x84, 0x9f, 0x1d, 0xf3, 0x59, 0x2b, 0x36, 0x2a, 0x41, 0x3e, 0x3b, 0xd0, + 0x06, 0xba, 0xdc, 0xed, 0xa7, 0x8b, 0xdc, 0x77, 0xac, 0x63, 0x75, 0x4d, + 0x37, 0x5d, 0x79, 0xa0, 0x0d, 0xa6, 0xd4, 0x08, 0xef, 0xf9, 0x52, 0x1d, + 0x41, 0x9b, 0xa9, 0xac, 0x3f, 0xb4, 0xfb, 0xd2, 0x8b, 0xaf, 0x43, 0x40, + 0x1b, 0x6b, 0x78, 0x3d, 0x69, 0xe2, 0xfb, 0x8e, 0xb5, 0x84, 0x2e, 0xb0, + 0x7a, 0xd3, 0x85, 0xdd, 0x00, 0x6e, 0x2d, 0xee, 0x0f, 0x5a, 0x90, 0x5f, + 0x73, 0xd6, 0xb0, 0x3e, 0xd5, 0xcf, 0x5a, 0x51, 0x77, 0xef, 0xcd, 0x00, + 0x74, 0x02, 0xff, 0x00, 0x03, 0xae, 0x29, 0xeb, 0xa8, 0x90, 0x3a, 0xf5, + 0xae, 0x78, 0x5d, 0xfa, 0x9a, 0x72, 0xdc, 0x16, 0x3d, 0x68, 0x03, 0xa1, + 0x1a, 0x91, 0xcf, 0x5e, 0x2a, 0x41, 0xa8, 0x39, 0x3f, 0x29, 0x35, 0x85, + 0x13, 0x92, 0x79, 0xab, 0xf6, 0xe8, 0x4f, 0xe3, 0x40, 0x1a, 0xd1, 0xde, + 0x39, 0xea, 0x6a, 0xec, 0x13, 0xbe, 0x78, 0xaa, 0x76, 0x96, 0xc4, 0x91, + 0xc5, 0x6e, 0x59, 0x69, 0xdb, 0xb1, 0xf2, 0xd0, 0x02, 0xda, 0x97, 0x6a, + 0xda, 0xb2, 0x80, 0xc8, 0x06, 0x73, 0x52, 0xd8, 0xe9, 0x19, 0xc7, 0x15, + 0xbd, 0x69, 0xa5, 0x85, 0xc7, 0xcb, 0x40, 0x15, 0xed, 0x74, 0xd1, 0xc1, + 0x35, 0xa7, 0x06, 0x9c, 0x00, 0xe0, 0x60, 0x55, 0xa8, 0x2c, 0x48, 0xeb, + 0x57, 0x62, 0x87, 0x6d, 0x00, 0x53, 0x8e, 0xc4, 0x71, 0x56, 0x12, 0xc8, + 0x7f, 0x76, 0xad, 0xa8, 0x03, 0xb5, 0x3c, 0x30, 0xf4, 0xa0, 0x0a, 0xeb, + 0x68, 0x07, 0x6a, 0x7f, 0xd9, 0x46, 0xd3, 0xc5, 0x4c, 0x1a, 0x94, 0xb5, + 0x00, 0x20, 0xa2, 0x90, 0x1e, 0x28, 0x34, 0x00, 0x51, 0x46, 0x71, 0x49, + 0x9c, 0x50, 0x02, 0xd2, 0x51, 0x9a, 0x33, 0x40, 0x05, 0x25, 0x2e, 0x69, + 0x28, 0x01, 0x0d, 0x35, 0x80, 0x34, 0xe3, 0x48, 0x68, 0x02, 0xb4, 0xd6, + 0xab, 0x20, 0xe9, 0x58, 0xd7, 0xfa, 0x50, 0x70, 0x78, 0xfc, 0xab, 0xa0, + 0x35, 0x13, 0xa8, 0x23, 0x91, 0x40, 0x1e, 0x73, 0xaa, 0xe9, 0x25, 0x09, + 0xf9, 0x6b, 0x96, 0xd4, 0x2c, 0x8a, 0x93, 0xc5, 0x7a, 0xdd, 0xfe, 0x9e, + 0xb3, 0x29, 0xe2, 0xb8, 0xbd, 0x6b, 0x4b, 0xf2, 0x8b, 0x71, 0x40, 0x1e, + 0x6f, 0x7b, 0x06, 0x3b, 0x56, 0x3d, 0xcc, 0x78, 0xcd, 0x75, 0xda, 0x95, + 0xae, 0xdc, 0x8c, 0x62, 0xb9, 0xdb, 0xd8, 0x36, 0xe7, 0x02, 0x80, 0x30, + 0x2e, 0x32, 0x2a, 0x8c, 0xb2, 0x6d, 0xad, 0x2b, 0x94, 0xc1, 0x39, 0xe9, + 0x59, 0x53, 0x0c, 0x50, 0x03, 0x4c, 0xd8, 0x34, 0xcf, 0x3f, 0x8e, 0xb5, + 0x03, 0xb1, 0x15, 0x03, 0xcb, 0x8e, 0x9d, 0xe8, 0x02, 0xef, 0xda, 0x29, + 0x45, 0xcf, 0x7a, 0xcd, 0x33, 0x62, 0x93, 0xed, 0x14, 0x01, 0xab, 0xf6, + 0x8f, 0x7c, 0xd2, 0xfd, 0xa7, 0x3d, 0xeb, 0x28, 0x5c, 0xf1, 0x93, 0x4e, + 0x17, 0x34, 0x01, 0xa8, 0x2e, 0x3a, 0x50, 0x66, 0xc9, 0x3c, 0xd6, 0x6a, + 0xdc, 0x73, 0xd6, 0x94, 0x5c, 0xfb, 0xd0, 0x05, 0xc7, 0x93, 0xde, 0xa2, + 0x69, 0xb8, 0xaa, 0xe6, 0x7c, 0xe7, 0x35, 0x14, 0x93, 0xf1, 0x40, 0x16, + 0x5a, 0x6c, 0xd4, 0x2d, 0x36, 0x2a, 0xb1, 0x9b, 0x27, 0x8e, 0x29, 0x8d, + 0x2f, 0xbf, 0x14, 0x01, 0x6f, 0xcd, 0xe6, 0xa4, 0x59, 0xab, 0x3d, 0x66, + 0xe6, 0x9e, 0x25, 0x34, 0x01, 0xa0, 0xb2, 0x53, 0xc4, 0x98, 0xc7, 0x35, + 0x41, 0x25, 0xc5, 0x4a, 0xb2, 0xf1, 0x40, 0x17, 0x95, 0xf8, 0xeb, 0x52, + 0xab, 0x55, 0x24, 0x92, 0xa6, 0x47, 0xee, 0x4d, 0x00, 0x5e, 0x46, 0xee, + 0x6a, 0xd2, 0x30, 0xaa, 0x09, 0x20, 0xf5, 0xab, 0x28, 0xdd, 0xfa, 0xd0, + 0x05, 0xe8, 0xdf, 0x35, 0x6a, 0x36, 0xed, 0x9a, 0xa3, 0x1b, 0x0c, 0x71, + 0x56, 0x62, 0x39, 0x3e, 0xf4, 0x01, 0x7a, 0x36, 0xcf, 0xbd, 0x5a, 0x8c, + 0xf4, 0xaa, 0x31, 0x1c, 0x62, 0xac, 0xa3, 0xf3, 0x8c, 0xd0, 0x05, 0xe8, + 0xd8, 0x74, 0xab, 0x51, 0xf6, 0xaa, 0x11, 0x1e, 0x7d, 0x6a, 0xf4, 0x5d, + 0x3d, 0x28, 0x02, 0xe4, 0x40, 0x9e, 0xb5, 0x6e, 0x2e, 0xdc, 0x55, 0x58, + 0x8e, 0x71, 0xeb, 0x57, 0x21, 0x5a, 0x00, 0xb3, 0x17, 0x20, 0x55, 0xc8, + 0x93, 0x35, 0x5e, 0x15, 0xc1, 0x18, 0xab, 0xd0, 0x2e, 0x4d, 0x00, 0x58, + 0x81, 0x71, 0x5a, 0x30, 0x2e, 0x31, 0x55, 0x62, 0x51, 0x57, 0xa1, 0x18, + 0x03, 0xf9, 0xd0, 0x05, 0xe8, 0x63, 0x04, 0x55, 0xb4, 0x4c, 0x76, 0xaa, + 0xb0, 0xb7, 0x15, 0x6d, 0x5a, 0x80, 0x24, 0x51, 0x52, 0x0a, 0x8c, 0x1c, + 0x53, 0xc1, 0xa0, 0x09, 0x01, 0xa7, 0x83, 0x50, 0xee, 0xa0, 0x3d, 0x00, + 0x58, 0x53, 0x4e, 0x56, 0xaa, 0xfb, 0xe9, 0xdb, 0xe8, 0x02, 0xd0, 0x6a, + 0x78, 0x3c, 0x55, 0x31, 0x2e, 0x2a, 0x41, 0x35, 0x00, 0x5a, 0x06, 0x9d, + 0xc5, 0x56, 0x59, 0x7d, 0xe9, 0x25, 0xb8, 0xda, 0x38, 0x34, 0x01, 0x6b, + 0x19, 0x34, 0x61, 0x47, 0xf1, 0x0a, 0xcd, 0x6b, 0xa6, 0x3d, 0xe9, 0x86, + 0x73, 0xeb, 0x40, 0x1a, 0x98, 0x1e, 0xb9, 0xa6, 0x9e, 0x2b, 0x33, 0xed, + 0x04, 0x77, 0x35, 0x34, 0x77, 0xbd, 0x9a, 0x80, 0x2d, 0x16, 0xc7, 0x7a, + 0x63, 0x38, 0xc7, 0x5a, 0xac, 0xf7, 0x19, 0x3d, 0x69, 0xa6, 0x50, 0x07, + 0x07, 0x34, 0x01, 0x33, 0x3f, 0x34, 0xc6, 0x7a, 0x80, 0xcb, 0x93, 0x4d, + 0x32, 0x50, 0x04, 0xc5, 0xa9, 0x0b, 0x54, 0x1e, 0x67, 0x14, 0xa1, 0xfd, + 0xe8, 0x02, 0x42, 0x69, 0xa4, 0xd3, 0x37, 0xf1, 0x48, 0x5e, 0x80, 0x14, + 0x9a, 0x63, 0x0e, 0xf4, 0xe2, 0x6a, 0x37, 0x71, 0xeb, 0x40, 0x10, 0xca, + 0x2a, 0x94, 0xc0, 0x73, 0xde, 0xac, 0xcd, 0x30, 0xaa, 0x72, 0x36, 0x68, + 0x02, 0x9c, 0xc2, 0xa8, 0xcc, 0xbc, 0x1c, 0xd5, 0xe9, 0x8d, 0x53, 0x90, + 0x6e, 0x3c, 0xd0, 0x05, 0x09, 0x87, 0x15, 0x4a, 0x45, 0xce, 0x6b, 0x4a, + 0x55, 0xce, 0x6a, 0x84, 0xe0, 0x0c, 0xd0, 0x05, 0x09, 0x86, 0x2a, 0x94, + 0xbd, 0x0e, 0x2a, 0xf4, 0xc3, 0xd6, 0xa8, 0xcd, 0x40, 0x14, 0xa6, 0xaa, + 0x72, 0x36, 0x3d, 0xaa, 0xdc, 0xc4, 0x73, 0x54, 0xe4, 0xe7, 0xe9, 0x40, + 0x11, 0x19, 0x01, 0xa8, 0x9d, 0xbd, 0xa9, 0xb2, 0xb7, 0x3c, 0x55, 0x76, + 0x94, 0xd0, 0x02, 0xca, 0x73, 0x54, 0xe4, 0x6c, 0x1a, 0x99, 0xdb, 0xde, + 0xaa, 0xc8, 0xd4, 0x01, 0x14, 0xad, 0xf4, 0xa8, 0x0b, 0x60, 0x1c, 0xd3, + 0xe4, 0x63, 0xce, 0x2a, 0x06, 0x6f, 0x5a, 0x00, 0x6b, 0x37, 0xe3, 0x4c, + 0x66, 0xc7, 0x3d, 0xa9, 0x24, 0x97, 0x1c, 0x0a, 0xae, 0xec, 0x31, 0xc9, + 0xa0, 0x09, 0x4c, 0x83, 0x3d, 0x79, 0xa6, 0xb4, 0xb5, 0x01, 0x97, 0x1c, + 0xd3, 0x0c, 0xd9, 0xe9, 0x40, 0x16, 0x3c, 0xda, 0x61, 0x9a, 0xab, 0x34, + 0xc7, 0xd6, 0x98, 0x66, 0x06, 0x80, 0x2f, 0x09, 0xb3, 0xd2, 0xa4, 0x12, + 0xf4, 0x15, 0x9c, 0x25, 0xef, 0x52, 0x24, 0xbd, 0x0e, 0x7a, 0x50, 0x06, + 0x92, 0xc9, 0xc7, 0x5a, 0x95, 0x65, 0xc7, 0x7a, 0xcd, 0x59, 0xbd, 0xea, + 0x55, 0x98, 0x1f, 0x7a, 0x00, 0xd1, 0x59, 0xb9, 0xeb, 0x52, 0xac, 0xfe, + 0xf5, 0x9c, 0x92, 0xd3, 0xc4, 0xd4, 0x01, 0xa7, 0xf6, 0x8c, 0x77, 0xa0, + 0xdd, 0x75, 0xe6, 0xb3, 0x3e, 0xd1, 0x8e, 0xf4, 0xc6, 0xb9, 0xa0, 0x0d, + 0x33, 0x75, 0xcf, 0x5c, 0xd3, 0x4d, 0xcf, 0xbd, 0x66, 0x9b, 0x8f, 0x7a, + 0x4f, 0xb4, 0xfb, 0xd0, 0x06, 0x9f, 0xda, 0x29, 0x3e, 0xd3, 0xef, 0x59, + 0xbf, 0x69, 0x02, 0x9b, 0xf6, 0x9c, 0xf7, 0xa0, 0x0d, 0x51, 0x73, 0xce, + 0x49, 0xa5, 0xfb, 0x57, 0x35, 0x95, 0xf6, 0x9e, 0x29, 0x45, 0xc6, 0x68, + 0x03, 0x57, 0xed, 0x39, 0x34, 0xe1, 0x73, 0xbb, 0xbd, 0x65, 0x09, 0xf3, + 0xde, 0xad, 0x44, 0xc0, 0x91, 0x40, 0x1a, 0x31, 0x48, 0x58, 0x8f, 0x5a, + 0xbd, 0x6e, 0x99, 0x3d, 0x6a, 0x85, 0xb2, 0xe4, 0xe6, 0xb5, 0xed, 0x62, + 0xa0, 0x0b, 0xb6, 0xb0, 0xee, 0x23, 0x8a, 0xdd, 0xb1, 0xb4, 0x24, 0x0e, + 0x2a, 0x96, 0x9f, 0x6f, 0xb8, 0x8e, 0x2b, 0xac, 0xd2, 0x34, 0xe3, 0x29, + 0x5c, 0x2d, 0x00, 0x3f, 0x4e, 0xd3, 0x8c, 0x98, 0xe2, 0xba, 0xcd, 0x37, + 0x46, 0xe1, 0x49, 0x1c, 0x55, 0x9d, 0x2b, 0x46, 0x10, 0xaa, 0x92, 0x39, + 0xad, 0xf8, 0x61, 0x11, 0x80, 0x00, 0xa0, 0x08, 0x2d, 0x74, 0xf5, 0x40, + 0x38, 0xc5, 0x5e, 0x8e, 0x20, 0xbd, 0xa9, 0x56, 0x9e, 0x28, 0x01, 0x57, + 0x81, 0x4e, 0x14, 0x94, 0xe1, 0x40, 0x00, 0xa5, 0xc5, 0x19, 0xa5, 0x06, + 0x80, 0x14, 0x0a, 0x08, 0xe0, 0xd1, 0x9a, 0x42, 0x78, 0xa0, 0x05, 0x1d, + 0x28, 0xa5, 0x03, 0x8a, 0x5c, 0x50, 0x03, 0x69, 0x3a, 0x53, 0xb1, 0x46, + 0x28, 0x01, 0x94, 0x94, 0xfc, 0x53, 0x48, 0xa0, 0x04, 0x26, 0x93, 0x34, + 0xa4, 0x53, 0x0d, 0x00, 0x2e, 0x68, 0xcd, 0x46, 0x4d, 0x34, 0xbd, 0x00, + 0x48, 0x5a, 0xa3, 0x63, 0x4d, 0x2f, 0xc5, 0x46, 0x64, 0x00, 0x75, 0xa0, + 0x01, 0xf0, 0x47, 0x35, 0x91, 0xa9, 0xd9, 0xad, 0xc4, 0x4c, 0x31, 0xcd, + 0x69, 0x49, 0x26, 0x6a, 0xb4, 0xa4, 0x1a, 0x00, 0xf3, 0x4d, 0x72, 0xc4, + 0xc4, 0xed, 0xc6, 0x2b, 0x90, 0xbf, 0x8f, 0x93, 0x91, 0x5e, 0xa9, 0xe2, + 0x0b, 0x21, 0x2a, 0x33, 0x0e, 0xb5, 0xe6, 0xba, 0xc4, 0x26, 0x27, 0x61, + 0x8a, 0x00, 0xe5, 0xaf, 0x23, 0x1d, 0xeb, 0x1e, 0xea, 0x3c, 0x64, 0xd6, + 0xdd, 0xd9, 0xce, 0x7d, 0x6b, 0x1a, 0xe9, 0xba, 0xd0, 0x06, 0x3d, 0xc1, + 0x23, 0x35, 0x46, 0x49, 0x0e, 0x6b, 0x46, 0xe3, 0x07, 0x35, 0x99, 0x70, + 0x76, 0x93, 0x40, 0x11, 0x97, 0x3d, 0x69, 0xbe, 0x66, 0x2a, 0x09, 0x27, + 0xa8, 0x1e, 0xe3, 0x1d, 0xe8, 0x02, 0xe1, 0x9f, 0xf2, 0xa6, 0x8b, 0xaa, + 0xce, 0x7b, 0x90, 0x06, 0x33, 0x50, 0xb5, 0xde, 0x3b, 0xd0, 0x06, 0xb8, + 0xbb, 0xc1, 0xa3, 0xed, 0x9e, 0xf5, 0x88, 0x6f, 0x09, 0xef, 0x40, 0xb9, + 0xf7, 0xa0, 0x0d, 0xbf, 0xb6, 0x7b, 0xd3, 0x5a, 0xe8, 0x7a, 0xd6, 0x47, + 0xda, 0x3d, 0xe9, 0xc2, 0xe2, 0x80, 0x34, 0x7e, 0xd1, 0xcf, 0x5e, 0x94, + 0xa6, 0x6c, 0x8a, 0xcd, 0xf3, 0xf9, 0xcd, 0x39, 0x27, 0x07, 0xbd, 0x00, + 0x5e, 0x33, 0x60, 0xd3, 0xd6, 0x7c, 0x7d, 0x2b, 0x3d, 0xe5, 0x0a, 0x69, + 0x52, 0x6c, 0xd0, 0x06, 0xa2, 0xcc, 0x3d, 0x6a, 0x54, 0x98, 0x1e, 0xf5, + 0x96, 0xb2, 0x7a, 0xf4, 0xa9, 0x92, 0x4c, 0xe3, 0x14, 0x01, 0xaa, 0x93, + 0x1a, 0x9e, 0x39, 0x79, 0xe4, 0xd6, 0x6a, 0x49, 0xeb, 0x56, 0x62, 0x39, + 0xe9, 0x40, 0x1a, 0x91, 0xca, 0x3b, 0x1c, 0x55, 0xa8, 0x9f, 0x35, 0x97, + 0x13, 0x1e, 0x2a, 0xec, 0x4d, 0xc7, 0xbd, 0x00, 0x69, 0x46, 0xdc, 0x63, + 0x35, 0x76, 0x23, 0xe9, 0x59, 0xb0, 0x37, 0xe5, 0x56, 0xe3, 0x97, 0x68, + 0xc0, 0xa0, 0x0b, 0xea, 0xf5, 0x66, 0x23, 0xf9, 0xd5, 0x18, 0x8f, 0x4c, + 0xf5, 0x35, 0x72, 0x23, 0xd3, 0x14, 0x01, 0x7a, 0x12, 0x06, 0x3b, 0xd5, + 0xf8, 0x4f, 0x15, 0x9f, 0x19, 0xab, 0xf0, 0x1e, 0x28, 0x02, 0xfc, 0x3c, + 0xe2, 0xaf, 0x44, 0x31, 0x54, 0x60, 0xed, 0x57, 0xe2, 0x3c, 0x50, 0x05, + 0xc8, 0x46, 0x2a, 0xfc, 0x3c, 0x77, 0xaa, 0x10, 0x9a, 0xb7, 0x13, 0x85, + 0xf6, 0xa0, 0x0d, 0x18, 0x9b, 0xa5, 0x5c, 0x89, 0x86, 0x05, 0x66, 0x24, + 0xbc, 0x0c, 0x55, 0x98, 0xe5, 0x26, 0x80, 0x35, 0x23, 0x93, 0x15, 0x61, + 0x27, 0xac, 0xc4, 0x93, 0xa6, 0x79, 0xa9, 0xd2, 0x5c, 0x50, 0x06, 0xa2, + 0x49, 0x91, 0x4e, 0x0d, 0x54, 0x23, 0x9f, 0xde, 0xa5, 0x59, 0xc7, 0xad, + 0x00, 0x5c, 0x0d, 0x46, 0xfe, 0x3d, 0x2a, 0x04, 0x98, 0x1e, 0xf4, 0xa2, + 0x40, 0x7b, 0xd0, 0x04, 0xdb, 0xf1, 0xde, 0x81, 0x27, 0xbd, 0x56, 0x69, + 0x76, 0x9e, 0x4e, 0x3e, 0xb5, 0x13, 0x5c, 0xaa, 0x7d, 0xe7, 0x18, 0xa0, + 0x0b, 0xe6, 0x4a, 0x41, 0x36, 0x2a, 0x8f, 0xdb, 0x53, 0x3c, 0x6e, 0x6f, + 0xa0, 0xa8, 0xda, 0xf4, 0x93, 0x80, 0x8c, 0x7e, 0xbc, 0x50, 0x06, 0x9f, + 0xda, 0x3d, 0x28, 0x69, 0x4b, 0xa8, 0xe3, 0xa5, 0x65, 0x0d, 0x41, 0xd5, + 0x88, 0xf2, 0xc0, 0xfa, 0xb5, 0x23, 0x6a, 0x92, 0x8e, 0x81, 0x07, 0xd6, + 0x80, 0x2f, 0x49, 0x39, 0x53, 0xc8, 0xc5, 0x46, 0x6e, 0xb1, 0x8c, 0xd6, + 0x6c, 0xda, 0xac, 0xcc, 0x30, 0x44, 0x7f, 0x5a, 0xa0, 0xd7, 0xd2, 0x93, + 0xcc, 0x8a, 0x3e, 0x82, 0x80, 0x3a, 0x03, 0x75, 0x4a, 0x2e, 0x46, 0x33, + 0x5c, 0xf8, 0xbc, 0x93, 0x3f, 0xeb, 0x41, 0xfc, 0x29, 0xeb, 0x79, 0x2b, + 0x1c, 0x07, 0x53, 0xf8, 0x50, 0x06, 0xf7, 0xda, 0xf1, 0xda, 0x98, 0xd7, + 0x9f, 0x9d, 0x63, 0xfd, 0xb6, 0x41, 0x9e, 0x50, 0xfa, 0x71, 0x52, 0x0b, + 0x89, 0x14, 0x65, 0xb6, 0x16, 0x3d, 0xb9, 0xa0, 0x0d, 0x2f, 0xb6, 0x73, + 0xef, 0x47, 0xda, 0x0f, 0xad, 0x66, 0x79, 0xee, 0x3e, 0x62, 0x80, 0xfd, + 0x0d, 0x06, 0xed, 0x88, 0xe6, 0x26, 0x03, 0xd8, 0xe6, 0x80, 0x34, 0x84, + 0xe0, 0xd3, 0x84, 0xbe, 0xa6, 0xb3, 0x92, 0xe9, 0x46, 0x32, 0x19, 0x7d, + 0xc8, 0xa9, 0x16, 0xe9, 0x09, 0x38, 0x6a, 0x00, 0xbf, 0xe7, 0x62, 0x8f, + 0x36, 0xaa, 0x24, 0x9b, 0xf3, 0x8e, 0x94, 0xe6, 0x94, 0x20, 0xa0, 0x09, + 0xde, 0x70, 0x2a, 0xbc, 0x93, 0x73, 0xc1, 0xaa, 0xd2, 0x5c, 0xe5, 0xbd, + 0x6a, 0x16, 0x9b, 0x34, 0x01, 0x3b, 0xca, 0x73, 0xeb, 0x55, 0x9e, 0x6c, + 0xd3, 0x5a, 0x5c, 0xf7, 0xa8, 0x64, 0x93, 0x93, 0x9a, 0x00, 0x57, 0x71, + 0x83, 0xeb, 0x55, 0x64, 0x90, 0x50, 0xed, 0x9e, 0xf5, 0x5a, 0x49, 0x3a, + 0xd0, 0x03, 0x64, 0x93, 0x3d, 0xea, 0xa4, 0xa7, 0x23, 0xd2, 0xa5, 0x77, + 0xcd, 0x55, 0x95, 0xbf, 0x2a, 0x00, 0xaf, 0x35, 0x50, 0x9b, 0xeb, 0x57, + 0x25, 0x61, 0x82, 0x3f, 0x4a, 0xa7, 0x37, 0x39, 0xa0, 0x0a, 0x33, 0x60, + 0x7d, 0x6a, 0x94, 0xbd, 0xcd, 0x5e, 0x94, 0x77, 0x26, 0xa8, 0x4e, 0xc0, + 0x75, 0xa0, 0x0a, 0x72, 0x9e, 0x2a, 0x8c, 0xcd, 0x8c, 0x9c, 0xd5, 0xb9, + 0xe4, 0xac, 0xf9, 0x9f, 0x34, 0x00, 0xcf, 0x3f, 0x9c, 0x54, 0x52, 0x48, + 0x2a, 0x19, 0x5b, 0x9c, 0xd4, 0x5e, 0x7e, 0x72, 0x28, 0x01, 0x64, 0x93, + 0x06, 0xaa, 0xcb, 0x3f, 0x14, 0x4c, 0xfe, 0xf5, 0x52, 0x47, 0x19, 0xeb, + 0x40, 0x0a, 0xf3, 0xe7, 0x38, 0xe6, 0xab, 0xb4, 0xcd, 0x4c, 0x77, 0x19, + 0xaa, 0xef, 0x25, 0x00, 0x4a, 0xd3, 0x1f, 0x5a, 0x8c, 0xcf, 0x83, 0xd6, + 0xa0, 0x79, 0x30, 0x6a, 0x26, 0x92, 0x80, 0x2c, 0x19, 0xfd, 0xe9, 0x3c, + 0xea, 0xa4, 0xd2, 0xe3, 0xbd, 0x27, 0x9d, 0xef, 0x40, 0x1a, 0x02, 0x6e, + 0x3a, 0xd4, 0xab, 0x37, 0x6e, 0xd5, 0x9a, 0xb3, 0x60, 0x53, 0x84, 0xd8, + 0xa0, 0x0d, 0x45, 0x9f, 0x14, 0xf5, 0x9f, 0xde, 0xb2, 0x85, 0xc7, 0xbd, + 0x38, 0x5c, 0xd0, 0x06, 0xb8, 0xb8, 0xf5, 0x34, 0xef, 0xb4, 0x63, 0xbd, + 0x63, 0xfd, 0xa7, 0x03, 0xad, 0x06, 0xec, 0xfa, 0xd0, 0x06, 0xb9, 0xb8, + 0xf7, 0xa6, 0x1b, 0x9f, 0x53, 0x59, 0x26, 0xf3, 0xde, 0x9b, 0xf6, 0xba, + 0x00, 0xd5, 0x37, 0x1e, 0xf4, 0x9f, 0x69, 0xcf, 0x7a, 0xca, 0x37, 0x59, + 0x1d, 0x69, 0x3e, 0xd5, 0xef, 0x40, 0x1a, 0xa6, 0xe7, 0x14, 0xdf, 0xb5, + 0x1f, 0x5a, 0xcc, 0x37, 0x3e, 0xf4, 0x09, 0xcb, 0x75, 0xa0, 0x0d, 0x51, + 0x73, 0xef, 0x52, 0xac, 0xd9, 0x3d, 0x6b, 0x29, 0x25, 0xe7, 0xda, 0xad, + 0x45, 0x26, 0x68, 0x03, 0x56, 0x17, 0xe6, 0xb4, 0x2d, 0xdb, 0x26, 0xb2, + 0x6d, 0xdb, 0x35, 0xa7, 0x6c, 0xd9, 0xc5, 0x00, 0x6c, 0xda, 0xf6, 0xad, + 0x9b, 0x24, 0xc9, 0x1c, 0x75, 0xac, 0x7b, 0x21, 0x9c, 0x57, 0x47, 0xa5, + 0xc3, 0xbd, 0x94, 0x63, 0x34, 0x01, 0xd0, 0xe8, 0xd6, 0x86, 0x46, 0x5c, + 0x0e, 0xb5, 0xe9, 0x3a, 0x0e, 0x9a, 0xb0, 0xc6, 0xac, 0xc3, 0x9a, 0xe7, + 0x3c, 0x33, 0xa6, 0xe3, 0x6b, 0x30, 0xe9, 0x5d, 0xbc, 0x0a, 0x14, 0x00, + 0x3b, 0x50, 0x06, 0x84, 0x20, 0x28, 0xe2, 0xa6, 0x06, 0xaa, 0x44, 0xf8, + 0xef, 0x56, 0x04, 0x80, 0x77, 0xa0, 0x09, 0xc5, 0x38, 0x1a, 0x80, 0x3e, + 0x69, 0xc1, 0xa8, 0x02, 0x6d, 0xd9, 0xa7, 0x66, 0xa2, 0x0c, 0x29, 0xc1, + 0xa8, 0x02, 0x41, 0xc5, 0x38, 0x1a, 0x60, 0x34, 0xe1, 0x40, 0x0a, 0x0d, + 0x07, 0xa5, 0x28, 0x14, 0xb8, 0xe2, 0x80, 0x1e, 0x07, 0x14, 0xb8, 0xa7, + 0x05, 0xe2, 0x97, 0x6d, 0x00, 0x47, 0x48, 0x6a, 0x4c, 0x52, 0x11, 0x40, + 0x0c, 0xa6, 0x9a, 0x90, 0x8a, 0x69, 0x14, 0x01, 0x19, 0xa8, 0xd8, 0xd4, + 0x8c, 0x2a, 0x36, 0x14, 0x01, 0x13, 0x1a, 0x89, 0x9b, 0x14, 0xf7, 0xe3, + 0x35, 0x5a, 0x49, 0x71, 0x90, 0x28, 0x01, 0x24, 0x96, 0xa0, 0x69, 0x7d, + 0xea, 0x39, 0x27, 0xc5, 0x52, 0x9a, 0xf9, 0x13, 0x39, 0x34, 0x01, 0x75, + 0xa6, 0xa8, 0x5e, 0x61, 0xdc, 0xd6, 0x5c, 0xda, 0x98, 0x1d, 0x0d, 0x53, + 0x93, 0x54, 0x07, 0xab, 0x50, 0x05, 0xeb, 0xf7, 0x12, 0x23, 0x0c, 0xd7, + 0x9f, 0x78, 0x8e, 0xd7, 0x1b, 0x88, 0x15, 0xd3, 0x4d, 0xa9, 0x8c, 0x75, + 0xac, 0x0d, 0x62, 0x75, 0x9a, 0x36, 0xe7, 0xb5, 0x00, 0x79, 0xee, 0xa1, + 0xf2, 0x12, 0x2b, 0x0a, 0xee, 0x4e, 0xa2, 0xb7, 0x35, 0xa6, 0x58, 0xd9, + 0xb3, 0x5c, 0x85, 0xfd, 0xf0, 0x52, 0x70, 0x68, 0x02, 0x3b, 0x99, 0x00, + 0xcf, 0x35, 0x97, 0x3c, 0xc0, 0x93, 0x51, 0xdc, 0xde, 0x96, 0x27, 0x9a, + 0xcf, 0x96, 0xe7, 0x9e, 0xb4, 0x01, 0x34, 0xae, 0x0e, 0x71, 0xd6, 0xa8, + 0xcd, 0x21, 0x04, 0xd3, 0x64, 0xb9, 0x3e, 0xb5, 0x5a, 0x4b, 0x80, 0xdd, + 0x4d, 0x00, 0x12, 0x4d, 0x8c, 0xd4, 0x2d, 0x71, 0xc5, 0x41, 0x34, 0xd8, + 0xce, 0x0d, 0x54, 0x6b, 0x8f, 0x7a, 0x00, 0xbc, 0x67, 0xa4, 0xfb, 0x46, + 0x07, 0x5a, 0xcf, 0x6b, 0x90, 0x07, 0x26, 0x98, 0x6e, 0x47, 0xad, 0x00, + 0x6a, 0x7d, 0xa7, 0x8e, 0xb4, 0xa2, 0xef, 0xde, 0xb2, 0x0d, 0xd0, 0x03, + 0xad, 0x34, 0xde, 0x81, 0xd6, 0x80, 0x36, 0xcd, 0xde, 0x7b, 0xd3, 0x56, + 0xf4, 0x03, 0xd6, 0xb0, 0xde, 0xff, 0x00, 0xdc, 0x0f, 0xc6, 0xb0, 0xbc, + 0x49, 0xad, 0x5d, 0xda, 0x59, 0x16, 0xb3, 0x74, 0xf3, 0x7b, 0x64, 0xd0, + 0x07, 0x77, 0x7b, 0xaa, 0x43, 0x67, 0x6b, 0xe6, 0xcd, 0x28, 0x8d, 0x7d, + 0xea, 0x8c, 0x3e, 0x2b, 0xb4, 0x75, 0xdc, 0x92, 0x6e, 0x15, 0xe4, 0x50, + 0x6a, 0xfe, 0x24, 0xd5, 0x15, 0x1a, 0xea, 0xea, 0xc9, 0x20, 0xcf, 0xdd, + 0xdc, 0x59, 0xff, 0x00, 0x2e, 0x31, 0x5d, 0x75, 0x8e, 0x94, 0x34, 0xf5, + 0x12, 0x99, 0x1a, 0x59, 0x24, 0x51, 0xbb, 0x3c, 0x8f, 0xca, 0x80, 0x3b, + 0xeb, 0x6f, 0x11, 0x5b, 0xcf, 0xc6, 0xff, 0x00, 0xcf, 0x8a, 0xbf, 0x1e, + 0xb5, 0x6e, 0x07, 0xfa, 0xd5, 0x1f, 0x8d, 0x70, 0x6a, 0x04, 0x91, 0xfe, + 0xf5, 0x3e, 0x51, 0xd0, 0x0a, 0x7c, 0x78, 0x07, 0x11, 0x43, 0x9f, 0xad, + 0x00, 0x77, 0xf1, 0xf8, 0x86, 0xcd, 0x3e, 0xf4, 0xeb, 0xf9, 0xd5, 0xa8, + 0xfc, 0x47, 0x64, 0x47, 0x13, 0x0c, 0x57, 0x9f, 0x2a, 0x12, 0x3e, 0x70, + 0x83, 0xdb, 0x15, 0x62, 0x15, 0x27, 0x84, 0xfe, 0x54, 0x01, 0xe8, 0xb0, + 0xf8, 0x82, 0xcc, 0x8e, 0x26, 0x15, 0x6e, 0x1f, 0x10, 0x59, 0xff, 0x00, + 0xcf, 0x71, 0x5e, 0x73, 0x14, 0x3b, 0x47, 0xcc, 0xe4, 0x9f, 0x41, 0x56, + 0x21, 0x40, 0x58, 0x96, 0x6e, 0x14, 0x74, 0x14, 0x01, 0xe9, 0x31, 0xf8, + 0x8e, 0xc5, 0x46, 0x4d, 0xc2, 0xd4, 0xb6, 0x5e, 0x2a, 0xd3, 0xae, 0x2e, + 0x3c, 0xa5, 0xb9, 0x4f, 0x33, 0xfb, 0xa4, 0xf3, 0x5e, 0x66, 0xb6, 0xae, + 0xe3, 0x8c, 0xa2, 0xfa, 0x9e, 0xb5, 0x62, 0x3d, 0x2c, 0x6e, 0x0c, 0x9c, + 0x38, 0xfe, 0x33, 0xd6, 0x80, 0x3d, 0x92, 0xda, 0xee, 0x29, 0x30, 0x56, + 0x54, 0x3f, 0x8d, 0x68, 0xc0, 0xc0, 0xf4, 0x60, 0x7e, 0x86, 0xbc, 0x62, + 0x05, 0x9e, 0x13, 0x9f, 0xb4, 0xb6, 0x7d, 0x05, 0x68, 0xc1, 0xa9, 0x5f, + 0x46, 0x41, 0x59, 0x5f, 0x3f, 0x5a, 0x00, 0xf6, 0x48, 0xbb, 0x55, 0xf8, + 0x58, 0xf5, 0xaf, 0x21, 0xb5, 0xf1, 0x4e, 0xad, 0x01, 0x1f, 0xbc, 0xdc, + 0x3d, 0xcd, 0x6b, 0xdb, 0x78, 0xfb, 0x50, 0x88, 0x8d, 0xf1, 0x07, 0xfc, + 0x28, 0x03, 0xd5, 0xa0, 0x7e, 0x05, 0x5e, 0x89, 0xc0, 0xe9, 0x5e, 0x6f, + 0x65, 0xf1, 0x0d, 0x8e, 0x3c, 0xcb, 0x52, 0x2b, 0x6a, 0x0f, 0x88, 0x1a, + 0x78, 0x03, 0xcd, 0xcc, 0x5f, 0x53, 0x40, 0x1d, 0xbc, 0x72, 0x62, 0xac, + 0xc6, 0xf5, 0xcb, 0xe8, 0x3e, 0x26, 0xb0, 0xd5, 0x5b, 0x64, 0x57, 0x48, + 0xf2, 0xb9, 0xce, 0xcd, 0xc3, 0x81, 0x5d, 0x28, 0x8d, 0xd4, 0x64, 0x8e, + 0x28, 0x02, 0xe4, 0x4e, 0x3a, 0x66, 0xac, 0xc6, 0xe4, 0x56, 0x60, 0x9b, + 0x67, 0x5a, 0x53, 0x7c, 0xab, 0xc9, 0x6f, 0xc2, 0x80, 0x36, 0x56, 0x7d, + 0xbc, 0x67, 0x06, 0x9c, 0x2f, 0x30, 0x6b, 0x09, 0xb5, 0x03, 0x20, 0xc2, + 0xa9, 0x27, 0xb1, 0xe9, 0x4d, 0x17, 0x12, 0x48, 0xf8, 0x66, 0xdb, 0xf4, + 0xeb, 0x40, 0x1b, 0xff, 0x00, 0x6f, 0x0a, 0x79, 0x60, 0x3e, 0xb4, 0x83, + 0x53, 0x0c, 0x3e, 0x5c, 0xb7, 0xd2, 0xb0, 0x77, 0xf9, 0x52, 0x2b, 0x7d, + 0xe1, 0x9e, 0xf5, 0x69, 0x64, 0xc3, 0x16, 0x43, 0xc3, 0x75, 0x5a, 0x00, + 0xd7, 0x4b, 0xb9, 0x98, 0xf1, 0xb5, 0x07, 0xbf, 0x35, 0x7a, 0x3d, 0xd2, + 0x2e, 0x4c, 0xa4, 0xfb, 0x0a, 0xc1, 0x88, 0xca, 0xdc, 0x01, 0x8c, 0x56, + 0x85, 0xa2, 0x4a, 0x1b, 0x24, 0xf1, 0x40, 0x1a, 0x0c, 0x8b, 0xfc, 0x59, + 0x23, 0xd0, 0x9a, 0x8d, 0x99, 0x63, 0x4c, 0x85, 0x03, 0x07, 0xd2, 0xac, + 0x7d, 0x91, 0x9d, 0x73, 0x9a, 0x8a, 0x5b, 0x17, 0x23, 0xda, 0x80, 0x23, + 0x6b, 0x91, 0xeb, 0x55, 0xe4, 0xbb, 0x19, 0xce, 0x69, 0xd2, 0x59, 0x30, + 0xaa, 0x72, 0xda, 0x13, 0x9c, 0xd0, 0x02, 0xcf, 0x7e, 0x07, 0x39, 0xe6, + 0xa8, 0xcd, 0xaa, 0x05, 0xef, 0x49, 0x71, 0x6a, 0xc0, 0x1e, 0x6b, 0x26, + 0xea, 0x16, 0xe4, 0xf3, 0x40, 0x16, 0x66, 0xd6, 0x00, 0x07, 0x9a, 0xcf, + 0x97, 0x5a, 0x23, 0xa1, 0xaa, 0x53, 0x42, 0x47, 0x7f, 0xc2, 0xab, 0x34, + 0x6d, 0xd8, 0x50, 0x06, 0xc4, 0x3a, 0xb3, 0x31, 0xeb, 0x57, 0xa0, 0xbf, + 0x27, 0x07, 0x35, 0xcb, 0xac, 0x9e, 0x53, 0x61, 0x98, 0x03, 0xf5, 0xad, + 0x1b, 0x49, 0x77, 0x01, 0x83, 0x9f, 0xa5, 0x00, 0x74, 0x70, 0x5d, 0x6e, + 0x62, 0xc4, 0xf0, 0x2a, 0xec, 0x73, 0x16, 0x1b, 0x8f, 0x27, 0xb5, 0x63, + 0xdb, 0x36, 0x71, 0x5a, 0x31, 0xf0, 0x39, 0x34, 0x01, 0x6e, 0x32, 0xd2, + 0x1c, 0x9e, 0x95, 0x61, 0x09, 0x3e, 0xd5, 0x5e, 0x2a, 0xb7, 0x12, 0x76, + 0xa0, 0x07, 0x28, 0xc9, 0x19, 0x1d, 0x3b, 0x54, 0xc2, 0x20, 0x01, 0xca, + 0x86, 0x63, 0xeb, 0x4f, 0x8a, 0x21, 0x8f, 0x53, 0x53, 0xa4, 0x40, 0x72, + 0x68, 0x02, 0xbf, 0xd9, 0x23, 0x54, 0xcb, 0x70, 0x7d, 0x8e, 0x2a, 0x84, + 0xea, 0xdb, 0xb6, 0xa4, 0x8d, 0xf8, 0xf2, 0x2a, 0xe5, 0xe4, 0xf8, 0x38, + 0x06, 0xb3, 0x24, 0x66, 0x3c, 0x67, 0x1e, 0xf4, 0x00, 0xd6, 0x95, 0x95, + 0x82, 0x9c, 0x39, 0xef, 0x8e, 0xb4, 0x86, 0xe1, 0x49, 0x23, 0x05, 0x31, + 0xeb, 0x4d, 0x00, 0x20, 0xc0, 0xeb, 0xeb, 0x4d, 0x0a, 0xcf, 0xc2, 0xe1, + 0x47, 0xa9, 0xa0, 0x07, 0x97, 0x18, 0xc8, 0x39, 0x15, 0x0b, 0xb1, 0xef, + 0x4d, 0x95, 0x15, 0x38, 0x5e, 0x07, 0x76, 0x3d, 0x4d, 0x54, 0x9a, 0x66, + 0x4f, 0xe2, 0xce, 0x7a, 0x03, 0x40, 0x12, 0x48, 0xf8, 0xce, 0x31, 0x50, + 0x3c, 0x98, 0xa8, 0xde, 0xe5, 0x73, 0x86, 0xc8, 0x35, 0x0b, 0xc9, 0xbf, + 0xee, 0x9c, 0x8f, 0x6a, 0x00, 0x24, 0x7e, 0x4d, 0x56, 0x79, 0x0d, 0x3e, + 0x42, 0x71, 0xc9, 0xaa, 0x72, 0x39, 0x19, 0xe6, 0x80, 0x12, 0x47, 0x18, + 0xaa, 0x73, 0x4b, 0x8c, 0x8a, 0x4b, 0xab, 0x81, 0x1f, 0x2e, 0x42, 0x8f, + 0x7a, 0xca, 0xbf, 0xd6, 0xac, 0xec, 0xc1, 0x33, 0x5c, 0xc6, 0xbf, 0xf0, + 0x2a, 0x00, 0x9e, 0x79, 0x89, 0xaa, 0x33, 0x3e, 0x7b, 0xd7, 0x3d, 0xaa, + 0x7c, 0x43, 0xd3, 0x6d, 0x49, 0x54, 0x66, 0x99, 0xbd, 0xba, 0x57, 0x2f, + 0x73, 0xf1, 0x4a, 0x49, 0x24, 0x2b, 0x0d, 0xa7, 0x4f, 0x53, 0x40, 0x1d, + 0xdc, 0xc7, 0x26, 0xa8, 0x4e, 0xd8, 0xae, 0x16, 0x7f, 0x88, 0x3a, 0x8c, + 0xcb, 0xfb, 0xb8, 0x55, 0x7d, 0xf1, 0x58, 0xd7, 0x5e, 0x26, 0xd6, 0xe7, + 0x27, 0x32, 0x14, 0x1e, 0xd8, 0xa0, 0x0f, 0x44, 0x99, 0xf0, 0x48, 0xcd, + 0x67, 0xcf, 0x71, 0xb0, 0x93, 0x9f, 0xd6, 0xbc, 0xf2, 0x6b, 0xed, 0x5a, + 0x50, 0x77, 0x5c, 0xbe, 0x7e, 0xb5, 0x53, 0x7d, 0xf4, 0xab, 0x26, 0xeb, + 0x87, 0xc8, 0x1e, 0xa6, 0x80, 0x3d, 0x1c, 0xde, 0xa4, 0x83, 0x01, 0x81, + 0x3d, 0xea, 0x09, 0x25, 0x07, 0x3c, 0x8a, 0xf2, 0xcf, 0x22, 0xee, 0xde, + 0xec, 0xc8, 0x2e, 0xa5, 0xfd, 0xe7, 0xde, 0xf9, 0xcf, 0x14, 0xb7, 0x4f, + 0xa9, 0xdb, 0x7c, 0xc2, 0xe9, 0x9d, 0x3e, 0xa6, 0x80, 0x3d, 0x29, 0xdd, + 0x7a, 0x92, 0x2a, 0x09, 0x25, 0x1d, 0x8d, 0x79, 0xc7, 0xda, 0x6f, 0x65, + 0x8f, 0x70, 0x9d, 0xb3, 0xe9, 0xb8, 0xd5, 0x79, 0x2e, 0xf5, 0x04, 0x19, + 0x13, 0xb6, 0xd3, 0xfe, 0xd5, 0x00, 0x7a, 0x33, 0xca, 0x07, 0x7a, 0x89, + 0xa5, 0xaf, 0x36, 0x3a, 0x9e, 0xa7, 0x18, 0x25, 0x6e, 0x59, 0xbd, 0xaa, + 0xa4, 0xde, 0x29, 0xd5, 0x62, 0xe0, 0x4a, 0x4e, 0x7d, 0x68, 0x03, 0xd3, + 0x1a, 0x60, 0x39, 0xcd, 0x46, 0x6e, 0xc0, 0x6e, 0xb5, 0xe5, 0xe7, 0xc6, + 0xda, 0x82, 0xb6, 0x1c, 0x06, 0xfa, 0x8c, 0x57, 0x31, 0xad, 0x7c, 0x6e, + 0x6f, 0x09, 0x5e, 0x2c, 0xda, 0xa4, 0x44, 0x69, 0xec, 0xdb, 0x0b, 0xa8, + 0xe5, 0x4f, 0xf8, 0x50, 0x07, 0xbc, 0x1b, 0xb0, 0x3b, 0xd2, 0x8b, 0xa1, + 0x5e, 0x51, 0xe1, 0xcf, 0x8e, 0x1e, 0x17, 0xf1, 0x44, 0xa9, 0x15, 0xa6, + 0xa9, 0x1f, 0x9c, 0xfd, 0x23, 0x7f, 0x94, 0xd7, 0x6b, 0x06, 0xb1, 0x04, + 0xb8, 0xdb, 0x3a, 0x37, 0xd1, 0x85, 0x00, 0x74, 0xa2, 0xe7, 0x3d, 0xe9, + 0xc2, 0xe3, 0xde, 0xb1, 0x63, 0xbb, 0xdd, 0xd1, 0x81, 0x1e, 0xc6, 0xa5, + 0x17, 0x54, 0x01, 0xaa, 0x6e, 0x7d, 0xe9, 0x86, 0xe2, 0xb3, 0x0d, 0xd8, + 0xc9, 0xe7, 0x34, 0x86, 0xe8, 0x62, 0x80, 0x34, 0x8d, 0xc7, 0xbd, 0x33, + 0xcf, 0xac, 0xd3, 0x77, 0xef, 0x4c, 0x37, 0x7e, 0xf4, 0x01, 0xa9, 0xf6, + 0x9c, 0xf7, 0xa5, 0xfb, 0x4d, 0x64, 0x8b, 0x82, 0x7b, 0xd3, 0xc5, 0xcf, + 0x14, 0x01, 0xac, 0x26, 0xf7, 0xa9, 0x04, 0xde, 0xf5, 0x92, 0xb7, 0x06, + 0xa5, 0x5b, 0x8c, 0x9e, 0xb4, 0x01, 0xb3, 0x1c, 0xa0, 0xf7, 0xab, 0x70, + 0xbe, 0x6b, 0x0a, 0x2b, 0x8e, 0x7a, 0xd6, 0x85, 0xbd, 0xd7, 0x4a, 0x00, + 0xdf, 0xb6, 0x7e, 0x95, 0xad, 0x68, 0xfc, 0x8a, 0xe7, 0xad, 0x27, 0x07, + 0x1c, 0xd6, 0xcd, 0xa4, 0xbc, 0x8a, 0x00, 0xe9, 0xf4, 0xf1, 0x9c, 0x57, + 0x73, 0xe1, 0xcb, 0x3d, 0xec, 0xa4, 0xd7, 0x0f, 0xa3, 0x8f, 0x31, 0x97, + 0xd2, 0xbd, 0x1f, 0x42, 0x92, 0x38, 0x63, 0x5f, 0x5c, 0x50, 0x07, 0x77, + 0xa5, 0x20, 0x89, 0x17, 0x1c, 0x56, 0xe4, 0x6e, 0x00, 0xcd, 0x72, 0x16, + 0xda, 0xaa, 0xc6, 0x07, 0x35, 0x6c, 0x6b, 0x81, 0x8f, 0x5a, 0x00, 0xea, + 0x04, 0xbd, 0x81, 0xa9, 0x16, 0x4c, 0x77, 0xae, 0x7a, 0x1d, 0x5b, 0x27, + 0x39, 0xc8, 0xab, 0x89, 0xa8, 0x86, 0x14, 0x01, 0xb2, 0x27, 0xc5, 0x3d, + 0x66, 0xcd, 0x66, 0xc5, 0x70, 0x24, 0xef, 0x56, 0xe3, 0xe6, 0x80, 0x2e, + 0xab, 0x67, 0xbd, 0x4a, 0xad, 0x55, 0xe3, 0x15, 0x61, 0x05, 0x00, 0x48, + 0xa6, 0x9e, 0xbc, 0xd3, 0x54, 0x54, 0x80, 0x50, 0x02, 0x8a, 0x76, 0x38, + 0xa5, 0x51, 0x4e, 0x0b, 0xc5, 0x00, 0x4c, 0x07, 0x14, 0x62, 0xaa, 0xb9, + 0xbf, 0x1a, 0x8a, 0xaa, 0xc5, 0x6e, 0x6c, 0x71, 0xf3, 0x48, 0x64, 0x22, + 0x40, 0x7d, 0x97, 0x6e, 0x0f, 0x6e, 0xf5, 0x73, 0x14, 0x00, 0xcc, 0x51, + 0x8a, 0x79, 0x5a, 0x42, 0x28, 0x02, 0x32, 0x29, 0xa5, 0x6a, 0x43, 0x9a, + 0x61, 0x38, 0xed, 0x40, 0x11, 0x15, 0xcd, 0x43, 0x27, 0x15, 0x33, 0x4a, + 0x31, 0xd0, 0xfe, 0x55, 0x5d, 0xe5, 0x4f, 0xef, 0x8a, 0x00, 0xad, 0x29, + 0xe0, 0xd5, 0x09, 0x4f, 0x26, 0xb4, 0x24, 0x20, 0x83, 0x82, 0x0d, 0x67, + 0xcc, 0x3a, 0xd0, 0x06, 0x7d, 0xd3, 0xe0, 0x62, 0xb0, 0xef, 0x25, 0x23, + 0x20, 0xd6, 0xbd, 0xfb, 0x05, 0x07, 0x26, 0xb9, 0x8d, 0x42, 0xe8, 0x02, + 0x70, 0x78, 0xa0, 0x0a, 0xd7, 0x77, 0x44, 0x13, 0xcd, 0x64, 0xdc, 0xea, + 0x0c, 0xa4, 0xf3, 0x9a, 0x8b, 0x53, 0xd5, 0x22, 0x81, 0x49, 0x77, 0x1c, + 0x76, 0xae, 0x4b, 0x51, 0xf1, 0x3a, 0x92, 0x55, 0x38, 0x1e, 0xb4, 0x01, + 0xd0, 0xcd, 0xaa, 0xb0, 0xe3, 0x3c, 0x55, 0x0b, 0x8d, 0x49, 0x98, 0x11, + 0x9a, 0xe4, 0x6e, 0x35, 0xf7, 0x62, 0x7e, 0x6a, 0xa5, 0x26, 0xba, 0xc3, + 0x3f, 0x35, 0x00, 0x68, 0x6b, 0x6e, 0x64, 0x04, 0xd7, 0x13, 0xa8, 0xb1, + 0x56, 0x35, 0xad, 0x7b, 0xae, 0x6e, 0x5f, 0x98, 0xe4, 0x57, 0x35, 0x7f, + 0xa9, 0xa3, 0x93, 0xcf, 0xe7, 0x40, 0x14, 0xee, 0x26, 0xc1, 0xaa, 0x12, + 0xdc, 0x01, 0x9e, 0x6a, 0x1b, 0xdb, 0xf5, 0xc9, 0xc1, 0xac, 0xbb, 0x8d, + 0x41, 0x11, 0x49, 0x67, 0x0a, 0x07, 0x72, 0x68, 0x02, 0xf3, 0xdc, 0xe6, + 0xab, 0xbd, 0xc1, 0xce, 0x73, 0x58, 0xef, 0xaf, 0x45, 0x21, 0x2b, 0x6e, + 0xb2, 0x5d, 0x3f, 0xf7, 0x61, 0x5c, 0xfe, 0xb5, 0xcf, 0xeb, 0xbe, 0x37, + 0x8b, 0x45, 0x52, 0x6f, 0xae, 0xec, 0xf4, 0xb1, 0xe9, 0x3c, 0x80, 0xc9, + 0xff, 0x00, 0x7c, 0x8e, 0x68, 0x03, 0xb1, 0x92, 0xe3, 0x1c, 0x9e, 0xde, + 0xb5, 0x9b, 0x7b, 0xa8, 0xdb, 0xc0, 0x32, 0xf3, 0x22, 0x9f, 0x42, 0x6b, + 0xc6, 0x7c, 0x43, 0xf1, 0xe3, 0x42, 0xb6, 0x07, 0xca, 0x9e, 0xf3, 0x56, + 0x7f, 0x44, 0x1e, 0x54, 0x7f, 0xe3, 0x5c, 0xb6, 0xa3, 0xf1, 0x7f, 0x52, + 0xb8, 0x85, 0x64, 0xb0, 0xb7, 0xb5, 0xb5, 0x8d, 0xba, 0x3e, 0x37, 0xb8, + 0xfc, 0x4d, 0x00, 0x7b, 0xbf, 0xfc, 0x24, 0x70, 0x39, 0xfd, 0xda, 0xcb, + 0x3e, 0x0e, 0x3e, 0x45, 0x35, 0x56, 0xeb, 0xc5, 0x42, 0xd8, 0x93, 0x27, + 0xd9, 0xed, 0x87, 0xad, 0xc4, 0xea, 0xb8, 0xfc, 0x33, 0x5f, 0x39, 0xc9, + 0xe2, 0xfd, 0x4f, 0x52, 0x39, 0xb9, 0xd4, 0x26, 0x7c, 0xf6, 0x0f, 0x81, + 0xfa, 0x56, 0x76, 0xa4, 0xc5, 0x19, 0x64, 0xde, 0xce, 0x0f, 0x24, 0x3b, + 0x13, 0xfc, 0xe8, 0x03, 0xdf, 0x75, 0x0f, 0x8a, 0x1a, 0x4d, 0xbc, 0xdb, + 0x67, 0xd7, 0xed, 0x11, 0xf1, 0xc4, 0x70, 0x23, 0x39, 0xfd, 0x05, 0x64, + 0x37, 0xc6, 0x0d, 0x01, 0xe4, 0xf2, 0xc5, 0xf5, 0xfd, 0xe4, 0x84, 0x12, + 0x04, 0x51, 0x84, 0x07, 0xf3, 0x35, 0xf3, 0xd6, 0xb9, 0x11, 0x91, 0x56, + 0xee, 0x0e, 0x24, 0x8f, 0xa8, 0x1e, 0x95, 0x5d, 0x0b, 0x4a, 0x6d, 0xee, + 0xe1, 0x39, 0x0b, 0x8d, 0xd8, 0xec, 0x7d, 0x28, 0x03, 0xdf, 0xaf, 0x7e, + 0x2e, 0xe9, 0x46, 0xde, 0x45, 0xb7, 0xd3, 0x2f, 0x25, 0x98, 0x82, 0x15, + 0xa6, 0xb8, 0xda, 0x33, 0xef, 0x8c, 0xd6, 0x17, 0x86, 0x7c, 0x55, 0x7b, + 0x79, 0xad, 0x24, 0x37, 0x33, 0x83, 0xf6, 0xac, 0x84, 0x81, 0x83, 0x7c, + 0x9f, 0x43, 0xde, 0xbc, 0xde, 0x4b, 0x92, 0xae, 0xae, 0xa7, 0xe5, 0x61, + 0x9a, 0xea, 0x3c, 0x01, 0x6d, 0x2d, 0xe7, 0x8b, 0x6c, 0xee, 0x84, 0x85, + 0xe2, 0x40, 0xd9, 0x56, 0x1f, 0x77, 0x8e, 0xd4, 0x01, 0xe8, 0xbf, 0x0b, + 0x35, 0x79, 0x6f, 0xbc, 0x65, 0xa8, 0xe8, 0xb3, 0xc3, 0x6e, 0xe1, 0x1b, + 0x78, 0x95, 0x80, 0x27, 0x03, 0xea, 0x6b, 0xd7, 0x2e, 0x9d, 0x62, 0x90, + 0x00, 0x72, 0x00, 0xe8, 0x2b, 0xe7, 0x2f, 0x82, 0x30, 0xde, 0xea, 0x1f, + 0x15, 0xf5, 0x1b, 0xc6, 0x8d, 0xcd, 0xa8, 0x79, 0x54, 0x3f, 0x63, 0x86, + 0xe9, 0x5f, 0x47, 0x5c, 0x10, 0x2e, 0x09, 0xdb, 0xd3, 0xb9, 0xa0, 0x05, + 0x82, 0x5e, 0x32, 0xe3, 0x03, 0xb0, 0xa9, 0x43, 0x3c, 0x87, 0x08, 0xbb, + 0x45, 0x36, 0xde, 0x58, 0xe4, 0xf9, 0x88, 0xce, 0x3f, 0x2a, 0x24, 0xd4, + 0x0f, 0xdd, 0x89, 0x7f, 0x2a, 0x00, 0xb4, 0xb0, 0xa4, 0x63, 0x32, 0x37, + 0xe1, 0x4e, 0xfb, 0x68, 0x1f, 0x2c, 0x63, 0xf2, 0xaa, 0x71, 0x5a, 0x4d, + 0x39, 0xdd, 0x23, 0x6d, 0x1e, 0x95, 0xa1, 0x6f, 0x14, 0x71, 0x60, 0x2a, + 0x6e, 0x3e, 0xb4, 0x00, 0xf8, 0x62, 0x9a, 0x73, 0x96, 0xf9, 0x45, 0x6a, + 0xc5, 0x1a, 0x5b, 0x42, 0xa3, 0x1b, 0x99, 0xb9, 0xaa, 0xb1, 0xc6, 0xee, + 0xca, 0x0e, 0x17, 0x3d, 0xaa, 0xd3, 0xcc, 0xa2, 0x52, 0x17, 0x92, 0x38, + 0xa0, 0x0b, 0x11, 0xf3, 0xcb, 0x7e, 0x55, 0x62, 0x31, 0x9a, 0xa9, 0x1b, + 0xf7, 0x6e, 0x6a, 0xc2, 0xdd, 0x05, 0xef, 0xf9, 0x50, 0x05, 0xd8, 0xa1, + 0xcf, 0x35, 0x65, 0x04, 0x68, 0x3e, 0x63, 0x59, 0x46, 0xed, 0x8f, 0x43, + 0xcd, 0x0b, 0xe6, 0x49, 0x40, 0x1a, 0xc6, 0xf2, 0x14, 0xa4, 0xfe, 0xd7, + 0xc7, 0x11, 0x46, 0x09, 0xf5, 0xaa, 0x90, 0x58, 0x17, 0x3f, 0x37, 0x35, + 0xa5, 0x0d, 0xb4, 0x36, 0xe0, 0x16, 0xc6, 0x68, 0x02, 0x35, 0x92, 0xf6, + 0xf4, 0xfd, 0xe2, 0x8a, 0x7d, 0x38, 0xab, 0x30, 0xe8, 0x48, 0xfc, 0xdc, + 0x39, 0x7f, 0x6c, 0xd4, 0x8b, 0x76, 0x3a, 0x46, 0xbf, 0x8d, 0x59, 0x89, + 0xc9, 0xe4, 0x9a, 0x00, 0x92, 0x0d, 0x3a, 0x28, 0x00, 0x30, 0x8f, 0x2c, + 0x8e, 0x85, 0x4e, 0x0d, 0x6e, 0x58, 0x78, 0xaf, 0x55, 0xd2, 0x40, 0x11, + 0x6a, 0x0e, 0xca, 0x3f, 0x81, 0xfe, 0x61, 0x58, 0xeb, 0x22, 0x7f, 0x11, + 0xfc, 0xaa, 0x45, 0x9a, 0x31, 0xf7, 0x53, 0x26, 0x80, 0x3a, 0xb8, 0xbe, + 0x25, 0xdd, 0xca, 0xe0, 0x5c, 0xda, 0x89, 0x13, 0xbb, 0x47, 0xf2, 0x9a, + 0xdb, 0xb0, 0xf1, 0x6e, 0x99, 0x7b, 0x80, 0x25, 0x6b, 0x79, 0x3f, 0xbb, + 0x30, 0xfe, 0xbd, 0x2b, 0xcf, 0xd1, 0xe4, 0x93, 0x85, 0x50, 0x3f, 0x0a, + 0x9d, 0x74, 0xd9, 0x2e, 0x3e, 0xfb, 0x60, 0x7b, 0x50, 0x07, 0xac, 0xdb, + 0x4a, 0x2e, 0x14, 0x18, 0xd9, 0x5d, 0x7b, 0x15, 0x39, 0xad, 0x08, 0x60, + 0x77, 0xc6, 0xee, 0xbf, 0xde, 0xaf, 0x24, 0xb2, 0xb5, 0x9b, 0x4b, 0x61, + 0x25, 0xb5, 0xe4, 0x90, 0x30, 0xf4, 0x6e, 0x3f, 0x2a, 0xe8, 0x6c, 0x7e, + 0x26, 0xc9, 0xa6, 0xb2, 0xc7, 0x7e, 0xab, 0x3a, 0x0e, 0x0b, 0xc7, 0xc3, + 0x7e, 0x54, 0x01, 0xe8, 0xd1, 0xe9, 0xfb, 0xc6, 0x0f, 0x5a, 0xb9, 0x0d, + 0x88, 0x50, 0x38, 0xac, 0x7f, 0x0f, 0xf8, 0xc7, 0x4c, 0xd7, 0xd7, 0x36, + 0xb3, 0x8d, 0xfd, 0xe3, 0x7f, 0x95, 0xab, 0x5e, 0x4f, 0x12, 0x69, 0xd6, + 0xa9, 0x99, 0xae, 0x63, 0x47, 0x1d, 0x89, 0xeb, 0x40, 0x17, 0xa3, 0x80, + 0x28, 0x07, 0x1c, 0x55, 0xe8, 0xa0, 0xc2, 0xee, 0x15, 0xc4, 0x6a, 0x7f, + 0x14, 0xf4, 0x7d, 0x2a, 0x32, 0x49, 0x2c, 0x07, 0x5d, 0xdf, 0x28, 0xfd, + 0x6b, 0xcf, 0x75, 0x9f, 0xda, 0x9b, 0x49, 0xb2, 0x96, 0x4b, 0x6b, 0x6b, + 0xab, 0x63, 0x27, 0x38, 0x8d, 0x58, 0x3b, 0x7e, 0x54, 0x01, 0xf4, 0x3c, + 0x27, 0x68, 0x00, 0xf5, 0xf4, 0xa7, 0x4d, 0x2c, 0x51, 0x8c, 0xbb, 0xaa, + 0x0f, 0x56, 0x38, 0xaf, 0x8f, 0xf5, 0x7f, 0xda, 0x5e, 0xf2, 0xf3, 0x22, + 0x1b, 0x89, 0x71, 0x8e, 0x30, 0x76, 0xd7, 0x11, 0xab, 0x7c, 0x65, 0xd4, + 0x6e, 0x2e, 0x3c, 0xf7, 0xba, 0x98, 0x9c, 0x63, 0x6f, 0x9a, 0x71, 0xf9, + 0x50, 0x07, 0xdc, 0x37, 0x9a, 0xf6, 0x97, 0x6c, 0xc5, 0x65, 0xbc, 0x85, + 0x4e, 0x3f, 0xbe, 0x2b, 0x9f, 0xbd, 0xf1, 0xce, 0x87, 0x68, 0xd9, 0x7b, + 0xd4, 0x3f, 0x4e, 0x6b, 0xe1, 0x7b, 0xff, 0x00, 0x8b, 0x9a, 0xe5, 0xd4, + 0x84, 0x42, 0xaf, 0xb7, 0xfb, 0xc4, 0xf0, 0x6b, 0x06, 0xf7, 0xc7, 0x5a, + 0xef, 0xcf, 0x34, 0xb7, 0x6a, 0x36, 0x0d, 0xde, 0x59, 0x90, 0x74, 0xf4, + 0xa0, 0x0f, 0xb9, 0xb5, 0x1f, 0x8a, 0x7a, 0x0c, 0x5c, 0x2c, 0x8c, 0xff, + 0x00, 0x4a, 0xe6, 0xb5, 0x0f, 0x8b, 0xda, 0x40, 0x24, 0x26, 0x33, 0xfe, + 0xd3, 0xa8, 0xfe, 0xb5, 0xf1, 0xf3, 0xf8, 0xf0, 0xfd, 0x92, 0x3b, 0x98, + 0xae, 0x77, 0xf9, 0x83, 0x72, 0xee, 0x7c, 0x8e, 0x6b, 0x8d, 0xd7, 0xbc, + 0x6d, 0x77, 0x65, 0xae, 0xe9, 0xd7, 0x65, 0x83, 0xc7, 0x2e, 0x60, 0x71, + 0xbb, 0x8e, 0x7a, 0x1f, 0xce, 0x80, 0x3e, 0xd5, 0xbb, 0xf8, 0xbf, 0xa6, + 0xe4, 0xe0, 0xc5, 0xff, 0x00, 0x7f, 0x2b, 0x1b, 0x50, 0xf8, 0xd7, 0x63, + 0x65, 0x6f, 0x2c, 0xc4, 0xc6, 0x55, 0x06, 0x70, 0xa4, 0x93, 0xfc, 0xab, + 0xe5, 0x03, 0xe3, 0x8b, 0x8b, 0x9b, 0x97, 0x81, 0x14, 0x86, 0x55, 0xc9, + 0xda, 0x33, 0x4c, 0xb5, 0xf1, 0x2b, 0x5d, 0xac, 0x81, 0x7c, 0xf2, 0xca, + 0xd8, 0x65, 0x65, 0xe9, 0x40, 0x1e, 0xb7, 0xab, 0x7e, 0xd2, 0xf6, 0xd3, + 0x6a, 0xcd, 0x27, 0x97, 0x2c, 0x36, 0xdb, 0x70, 0xae, 0x11, 0x8e, 0x6b, + 0xb9, 0xf0, 0x1f, 0xed, 0x01, 0xa6, 0x5d, 0x42, 0x91, 0x09, 0x95, 0xa5, + 0x72, 0x48, 0x33, 0x65, 0x6b, 0xe5, 0x8f, 0x11, 0xc9, 0x3c, 0x76, 0x6a, + 0xca, 0x8f, 0xe5, 0x33, 0xab, 0x74, 0xe3, 0xef, 0x0a, 0x8c, 0x78, 0xa2, + 0x4b, 0x63, 0x14, 0x1e, 0x5c, 0xc1, 0x98, 0x12, 0x36, 0x28, 0xe9, 0x40, + 0x1f, 0x77, 0x59, 0xfc, 0x6a, 0xd3, 0xd0, 0xfc, 0xcf, 0x6c, 0x7e, 0x93, + 0x0a, 0xd7, 0xb3, 0xf8, 0xd1, 0xa4, 0x39, 0xf9, 0xc2, 0x93, 0xfe, 0xcc, + 0x80, 0xff, 0x00, 0x5a, 0xfc, 0xff, 0x00, 0x83, 0xc4, 0x33, 0xc7, 0x21, + 0x56, 0x79, 0x1a, 0x4e, 0xde, 0x62, 0xf4, 0x15, 0x07, 0x89, 0x3c, 0x6d, + 0xa8, 0xe9, 0xba, 0x44, 0xf2, 0x46, 0xcc, 0x87, 0x1f, 0x7d, 0x4e, 0x0a, + 0xd0, 0x07, 0xe9, 0x2d, 0x97, 0xc5, 0xad, 0x0e, 0x5c, 0x6e, 0x76, 0x5f, + 0x7e, 0x0d, 0x6f, 0x58, 0xfc, 0x42, 0xd0, 0xae, 0x4e, 0x7e, 0xd7, 0xb7, + 0x3d, 0x88, 0x35, 0xf9, 0x23, 0xa0, 0x7c, 0x5d, 0xf1, 0x04, 0x16, 0x8d, + 0x3c, 0x9a, 0x9c, 0xcc, 0x19, 0xf6, 0xc6, 0xad, 0xcd, 0x7a, 0x3f, 0x83, + 0x7e, 0x38, 0x6a, 0x6f, 0x7c, 0x90, 0x5e, 0x5c, 0x31, 0x8c, 0x1c, 0x31, + 0xc6, 0x0d, 0x00, 0x7e, 0xa1, 0x5a, 0xf8, 0x9f, 0x49, 0xb9, 0x6f, 0x92, + 0xf6, 0x13, 0xed, 0xbb, 0x15, 0x7a, 0x4b, 0xf8, 0xa4, 0x8f, 0x72, 0x48, + 0x8d, 0xf4, 0x6c, 0xd7, 0xe7, 0x82, 0x7c, 0x61, 0xbd, 0xb5, 0x66, 0x51, + 0x23, 0xc8, 0xa7, 0xee, 0x95, 0x6e, 0xa2, 0xb7, 0x7c, 0x3b, 0xf1, 0xb5, + 0xf4, 0x94, 0xd8, 0x67, 0x9e, 0x2c, 0xfc, 0xdf, 0x3b, 0x13, 0xcd, 0x00, + 0x7d, 0xc5, 0x30, 0x27, 0xe6, 0x3f, 0x5a, 0x84, 0x02, 0x47, 0x23, 0xaf, + 0x6a, 0xf9, 0x7b, 0x49, 0xfd, 0xa3, 0x64, 0x5d, 0x99, 0xd4, 0x51, 0xf3, + 0xfc, 0x2f, 0x27, 0x3f, 0xad, 0x77, 0x5a, 0x4f, 0xed, 0x0d, 0x0c, 0x8a, + 0x3c, 0xf8, 0xd4, 0xa7, 0xf7, 0x97, 0xff, 0x00, 0xad, 0x40, 0x1e, 0xcf, + 0xe5, 0x8c, 0x67, 0x18, 0xf6, 0xa8, 0xe4, 0x6d, 0x8b, 0x5c, 0x5e, 0x9b, + 0xf1, 0x93, 0x44, 0xd5, 0x14, 0x00, 0xfe, 0x5b, 0x1f, 0x7c, 0xd6, 0xcc, + 0x5e, 0x27, 0xd3, 0xaf, 0x46, 0x62, 0xba, 0x8d, 0x89, 0xec, 0x5b, 0x9a, + 0x00, 0xbb, 0x3b, 0x16, 0xe0, 0x55, 0x37, 0x43, 0xdb, 0xa9, 0xee, 0x69, + 0x26, 0xd4, 0xa0, 0x86, 0x2f, 0x32, 0x49, 0x91, 0x23, 0xfe, 0xf3, 0x36, + 0x05, 0x61, 0xde, 0xf8, 0xfb, 0x4b, 0xb5, 0x46, 0x10, 0x96, 0xbd, 0x90, + 0x76, 0x8c, 0x71, 0xf9, 0xd0, 0x06, 0xb8, 0xb4, 0xdc, 0x4e, 0x73, 0xcf, + 0x53, 0x55, 0x6f, 0x4d, 0xad, 0x82, 0x16, 0x92, 0x64, 0x84, 0x7a, 0xb3, + 0x62, 0xb8, 0x9d, 0x57, 0xc7, 0x1a, 0xbe, 0xa0, 0xa5, 0x6d, 0x95, 0x6c, + 0xa1, 0x3d, 0xd7, 0x96, 0xfc, 0xeb, 0x99, 0xb9, 0x59, 0x6f, 0x00, 0x92, + 0xe6, 0x66, 0x95, 0xfd, 0x59, 0xa8, 0x03, 0xae, 0xd4, 0xfe, 0x21, 0x69, + 0xd6, 0x6e, 0x52, 0x39, 0x5a, 0xf1, 0x81, 0xc6, 0x23, 0x5e, 0x3f, 0x3a, + 0xe7, 0x35, 0x4f, 0x89, 0x37, 0xf3, 0x02, 0xb6, 0x56, 0x89, 0x0f, 0xbb, + 0xf2, 0x6b, 0x1a, 0x4b, 0x68, 0xe0, 0x62, 0x42, 0x81, 0x9a, 0x8a, 0x50, + 0x02, 0x1e, 0x00, 0xa0, 0x0a, 0x3a, 0xc6, 0xa5, 0xab, 0x6b, 0x4b, 0xfe, + 0x91, 0x78, 0xfb, 0x3a, 0xec, 0x43, 0x81, 0x58, 0xc3, 0x4d, 0x32, 0x02, + 0xd2, 0xc8, 0xee, 0xc3, 0xbb, 0x31, 0xad, 0xb9, 0x5b, 0x29, 0x8a, 0xa5, + 0x21, 0x08, 0x30, 0x0d, 0x00, 0x51, 0xfb, 0x14, 0x4e, 0x30, 0xca, 0x32, + 0x3b, 0xd3, 0x64, 0xb5, 0x45, 0x2a, 0xc0, 0x00, 0x47, 0xa5, 0x4a, 0xd2, + 0x72, 0x7d, 0xa9, 0x1d, 0xf7, 0x0a, 0x00, 0xa9, 0x2c, 0x61, 0x1f, 0x8e, + 0x87, 0x9a, 0x65, 0xd0, 0x1b, 0x05, 0x3a, 0xe2, 0x4d, 0xbb, 0x4e, 0x7a, + 0x71, 0x51, 0x79, 0x9e, 0x72, 0x0c, 0x0c, 0xd0, 0x00, 0x40, 0xf2, 0xf2, + 0x6a, 0xb0, 0x41, 0x1b, 0x92, 0x0f, 0x53, 0xc8, 0xab, 0x0d, 0x1c, 0x9b, + 0x0e, 0xec, 0x28, 0xf7, 0xaa, 0xac, 0xc9, 0x9c, 0x6f, 0xcf, 0xd2, 0x80, + 0x33, 0xee, 0x88, 0x32, 0x3a, 0xf1, 0x95, 0x38, 0xa8, 0xc4, 0xa2, 0x78, + 0x76, 0x1e, 0xdc, 0x53, 0xaf, 0xa4, 0x48, 0xef, 0x43, 0x63, 0x89, 0x17, + 0xa9, 0xee, 0x6b, 0x3e, 0x4b, 0x86, 0x8a, 0x56, 0xec, 0x28, 0x02, 0x29, + 0xc4, 0x96, 0x73, 0x74, 0xf9, 0x0f, 0x15, 0x13, 0x48, 0x4e, 0xe1, 0x91, + 0x83, 0x56, 0xe4, 0x71, 0x77, 0x09, 0x52, 0x72, 0x47, 0x43, 0x59, 0x33, + 0x06, 0x85, 0xb0, 0x7b, 0x1a, 0x00, 0x61, 0x7f, 0x2a, 0x5c, 0x31, 0x1b, + 0x4f, 0x15, 0x52, 0xee, 0xdc, 0x6e, 0xdc, 0x0f, 0x1d, 0x45, 0x58, 0xb9, + 0x4f, 0x3a, 0x3c, 0xaf, 0x51, 0x55, 0x45, 0xd6, 0x06, 0xd7, 0x1e, 0xd4, + 0x01, 0x9f, 0x7d, 0x10, 0x74, 0xf3, 0x33, 0xc8, 0xeb, 0x5e, 0x69, 0xf1, + 0x36, 0xc6, 0xda, 0xe6, 0x0b, 0x55, 0xba, 0x49, 0x4d, 0xbb, 0x3f, 0x58, + 0xf1, 0x8f, 0xa1, 0xcd, 0x7a, 0xa4, 0xc8, 0x0e, 0x70, 0x32, 0x87, 0x83, + 0xed, 0x5c, 0x87, 0x8f, 0x34, 0x41, 0xaa, 0xf8, 0x56, 0xee, 0x30, 0x3f, + 0x79, 0x0f, 0xef, 0x51, 0x87, 0x62, 0x39, 0xa0, 0x0f, 0x9c, 0x1e, 0xda, + 0xcb, 0x48, 0xf1, 0xd5, 0xa9, 0xb1, 0x79, 0xa0, 0x80, 0xc8, 0x03, 0x74, + 0xdc, 0xbe, 0xb5, 0xf4, 0x1f, 0x83, 0xfc, 0x43, 0xe0, 0x16, 0xbd, 0x6b, + 0x5d, 0x67, 0xc7, 0x1a, 0x96, 0x8e, 0xcb, 0xc3, 0x33, 0x5b, 0x86, 0x00, + 0xfd, 0x6b, 0xe6, 0xcd, 0x50, 0xc9, 0x67, 0xac, 0xdb, 0xdd, 0xf9, 0x68, + 0x44, 0x80, 0xb2, 0x93, 0xdf, 0x15, 0x9d, 0x75, 0x23, 0x5d, 0x4c, 0xee, + 0xc7, 0x05, 0x8e, 0x4d, 0x00, 0x7d, 0x73, 0x75, 0xe2, 0x7f, 0x0b, 0x41, + 0x76, 0xf1, 0xe9, 0x1f, 0x11, 0xed, 0x6f, 0x22, 0x07, 0xe5, 0x37, 0x11, + 0x32, 0x13, 0xf9, 0x0a, 0xb3, 0x07, 0x8b, 0xae, 0x9b, 0x8b, 0x3f, 0x11, + 0xe9, 0x57, 0x83, 0xb7, 0xfa, 0x50, 0x52, 0x7f, 0x03, 0x5f, 0x1a, 0xca, + 0xa2, 0xd5, 0x19, 0xf7, 0xe5, 0xb1, 0xc0, 0xaa, 0xcf, 0x24, 0x96, 0xf1, + 0x29, 0xdc, 0x4c, 0x8d, 0xc2, 0xe2, 0x80, 0x3e, 0xe5, 0xb6, 0xf1, 0x7e, + 0xbc, 0xa7, 0xfe, 0x3d, 0x52, 0xed, 0x47, 0x78, 0x24, 0x57, 0xfe, 0x46, + 0xa7, 0x1f, 0x12, 0x9a, 0xdf, 0x8b, 0xcb, 0x09, 0xe0, 0xf5, 0x2c, 0x84, + 0x0f, 0xd4, 0x57, 0xc4, 0x16, 0x5a, 0xa6, 0xa7, 0xa7, 0x22, 0xf9, 0x17, + 0xd7, 0x11, 0x3f, 0x5f, 0x92, 0x56, 0x1f, 0xd6, 0xba, 0x4d, 0x17, 0xe2, + 0x7f, 0x8a, 0xf4, 0xa6, 0x0c, 0x9a, 0xbd, 0xc9, 0x51, 0xfc, 0x12, 0x1d, + 0xe0, 0xfe, 0x74, 0x01, 0xf6, 0x4c, 0x3f, 0x10, 0xb4, 0xb9, 0x40, 0x2d, + 0x37, 0x95, 0x93, 0x8f, 0x9a, 0xb6, 0x2d, 0xb5, 0x8b, 0x5b, 0x90, 0x0c, + 0x77, 0x08, 0xf9, 0xe9, 0x86, 0xaf, 0x92, 0x23, 0xfd, 0xa0, 0x75, 0x57, + 0x8f, 0x66, 0xab, 0x61, 0x63, 0xa9, 0xc5, 0xdc, 0x49, 0x16, 0xd2, 0x7f, + 0x1a, 0xdc, 0xd1, 0xfe, 0x33, 0xf8, 0x59, 0x96, 0x3f, 0xb5, 0xd8, 0xdf, + 0xe9, 0x12, 0x1f, 0xe2, 0xb5, 0x97, 0xcc, 0x41, 0xef, 0x83, 0xfe, 0x14, + 0x01, 0xf5, 0x42, 0xcf, 0x90, 0x39, 0xcd, 0x48, 0x93, 0x1f, 0x7c, 0x57, + 0x8a, 0x78, 0x77, 0xe2, 0x0d, 0x86, 0xa4, 0x7f, 0xe2, 0x55, 0xe2, 0x9b, + 0x59, 0x8f, 0xf0, 0xc1, 0x7a, 0x4c, 0x2d, 0xf4, 0xe7, 0x02, 0xbb, 0x38, + 0x3c, 0x53, 0xab, 0xd9, 0xaa, 0xfd, 0xaf, 0x4c, 0x79, 0xa3, 0x3d, 0x26, + 0xb6, 0xf9, 0xd0, 0xfe, 0x22, 0x80, 0x3b, 0xc5, 0x9b, 0xd4, 0xd4, 0xab, + 0x3d, 0x71, 0xf6, 0x1e, 0x39, 0xd3, 0x6e, 0x9b, 0x63, 0xcb, 0xe4, 0x4a, + 0x38, 0x29, 0x27, 0x04, 0x56, 0xd4, 0x7a, 0x9c, 0x52, 0x80, 0xc9, 0x20, + 0x61, 0xec, 0x68, 0x03, 0x76, 0x29, 0x71, 0x57, 0x61, 0x9b, 0xd0, 0xd7, + 0x3f, 0x15, 0xe6, 0x4f, 0x15, 0x76, 0x2b, 0x9c, 0x63, 0xd6, 0x80, 0x3a, + 0x6b, 0x59, 0xb1, 0x8e, 0x6b, 0x76, 0xc6, 0x70, 0x48, 0xe7, 0x9a, 0xe2, + 0xed, 0xef, 0xb1, 0x8a, 0xd6, 0xb2, 0xbe, 0x39, 0x1c, 0xd0, 0x07, 0xa6, + 0xe8, 0x92, 0xf4, 0x39, 0xae, 0xc2, 0xca, 0xf5, 0x94, 0x01, 0x9a, 0xf3, + 0x0d, 0x23, 0x53, 0x68, 0x82, 0x9c, 0xd7, 0x5b, 0xa7, 0xeb, 0xb1, 0xcb, + 0x80, 0xe7, 0x6b, 0x50, 0x07, 0x6f, 0x15, 0xf9, 0xe9, 0xbb, 0x35, 0x7e, + 0xda, 0xef, 0x27, 0xad, 0x72, 0xb0, 0xde, 0x6e, 0xc6, 0x0e, 0x47, 0xb5, + 0x68, 0x41, 0x76, 0x01, 0x1c, 0xd0, 0x07, 0x59, 0x6f, 0x78, 0x7a, 0x66, + 0xb4, 0x6d, 0xae, 0x8f, 0x1c, 0xf4, 0xae, 0x5a, 0x0b, 0xbc, 0xe3, 0x9a, + 0xd7, 0xb3, 0x9b, 0x38, 0xc9, 0xc5, 0x00, 0x75, 0x36, 0x77, 0x07, 0x8e, + 0x6b, 0x76, 0xd2, 0x4d, 0xe0, 0x57, 0x25, 0x6b, 0x75, 0x04, 0x23, 0x32, + 0x4e, 0x88, 0x07, 0x52, 0xcc, 0x05, 0x69, 0xda, 0xf8, 0x87, 0x4f, 0x46, + 0x01, 0x2e, 0x92, 0x43, 0xe8, 0x9f, 0x31, 0xa0, 0x0e, 0xaa, 0x31, 0xc5, + 0x58, 0x8d, 0x6b, 0x33, 0x4f, 0xd4, 0xe3, 0xbe, 0x4d, 0xd1, 0xa3, 0xe0, + 0x71, 0xf3, 0xae, 0xdf, 0xe7, 0x5a, 0x90, 0xb1, 0x3d, 0x80, 0xfc, 0x68, + 0x02, 0x65, 0x15, 0x20, 0x5a, 0x11, 0x49, 0xf4, 0xa9, 0x55, 0x28, 0x01, + 0x02, 0xd3, 0xb6, 0xf1, 0x4e, 0x0b, 0xef, 0x4e, 0xdb, 0x40, 0x15, 0xff, + 0x00, 0xb4, 0xed, 0x7c, 0xf1, 0x09, 0x9d, 0x04, 0xe7, 0xa4, 0x64, 0xfc, + 0xdf, 0x95, 0x58, 0x0c, 0x0d, 0x79, 0xa5, 0xb4, 0x72, 0x4b, 0x71, 0x15, + 0xe3, 0xc8, 0xe6, 0xe7, 0x00, 0xf9, 0x84, 0xf3, 0xd2, 0xb7, 0x93, 0x5a, + 0xbc, 0x50, 0x33, 0x36, 0x7e, 0xaa, 0x28, 0x03, 0xad, 0xdc, 0x28, 0xdc, + 0x3d, 0x6b, 0x93, 0x6f, 0x11, 0xdd, 0xc6, 0x38, 0x28, 0xdf, 0x55, 0xaa, + 0xf2, 0x78, 0xd6, 0xe6, 0x10, 0x73, 0x04, 0x6f, 0x8f, 0x72, 0x28, 0x03, + 0xb3, 0xdc, 0x29, 0x0e, 0x0f, 0x5c, 0x57, 0x01, 0x2f, 0xc4, 0xe7, 0x83, + 0x3b, 0xf4, 0xe0, 0xdf, 0x49, 0x7f, 0xfa, 0xd5, 0x91, 0x7f, 0xf1, 0xa9, + 0xad, 0xb2, 0x17, 0x48, 0x0d, 0xf5, 0x9b, 0xff, 0x00, 0xb1, 0xa0, 0x0f, + 0x51, 0x64, 0x43, 0xd8, 0x55, 0x69, 0xec, 0xa3, 0x95, 0x48, 0xdc, 0xcb, + 0x9f, 0x43, 0x5e, 0x2f, 0x3f, 0xed, 0x0a, 0xf6, 0xdb, 0x84, 0xba, 0x10, + 0x75, 0xff, 0x00, 0x62, 0x7c, 0x7f, 0x4a, 0xa8, 0x7f, 0x69, 0x6d, 0x1f, + 0xa5, 0xce, 0x91, 0x7f, 0x01, 0xee, 0x62, 0x9b, 0x3f, 0xd4, 0x50, 0x07, + 0xa9, 0x6a, 0x9e, 0x19, 0x9e, 0x60, 0x4d, 0xb5, 0xd2, 0x21, 0xff, 0x00, + 0x6e, 0x3e, 0x4f, 0xe2, 0xa4, 0x57, 0x1d, 0xaa, 0x69, 0xfe, 0x29, 0xd3, + 0x01, 0x68, 0x96, 0x49, 0xd0, 0x77, 0xb6, 0x9f, 0x71, 0xc7, 0xd1, 0xeb, + 0x9c, 0x97, 0xf6, 0x8b, 0xf0, 0xbc, 0x9f, 0x77, 0x51, 0xd5, 0xec, 0x8f, + 0xa3, 0x42, 0x8e, 0x07, 0xe6, 0x0d, 0x42, 0x7e, 0x3e, 0x69, 0x12, 0x7f, + 0xc7, 0xbf, 0x89, 0xed, 0x5c, 0x7f, 0x76, 0xf2, 0xd4, 0xa1, 0xfc, 0xc1, + 0x14, 0x01, 0x5f, 0x55, 0xf1, 0xa6, 0xaf, 0x60, 0xee, 0x2e, 0x81, 0x56, + 0x40, 0x4e, 0xcb, 0xb8, 0x5a, 0x3f, 0xfc, 0x78, 0x71, 0x5e, 0x61, 0x79, + 0xfb, 0x4a, 0xe8, 0xaf, 0x24, 0x90, 0xdd, 0x6f, 0xb1, 0x95, 0x58, 0xa9, + 0xdc, 0x32, 0x3e, 0xb5, 0xe9, 0xf7, 0xdf, 0x1a, 0xad, 0xee, 0x6d, 0xf9, + 0xbc, 0xd0, 0x6e, 0x07, 0xab, 0x4c, 0xd8, 0x23, 0xe8, 0x41, 0xaf, 0xcd, + 0x1f, 0x8f, 0x7e, 0x23, 0xb9, 0xd2, 0xbe, 0x29, 0xeb, 0xc6, 0xca, 0xf1, + 0x56, 0xde, 0x69, 0x8c, 0xc9, 0x1c, 0x2d, 0x98, 0x80, 0x6e, 0x70, 0x01, + 0xed, 0x40, 0x1f, 0x68, 0x9f, 0x89, 0x9a, 0x16, 0xb3, 0xf3, 0x45, 0xab, + 0xc0, 0xec, 0xdd, 0x8b, 0xe0, 0xd1, 0x26, 0xa3, 0x0c, 0xe3, 0x29, 0x32, + 0x3e, 0x7f, 0xba, 0xd9, 0xaf, 0xce, 0x73, 0xe3, 0xf9, 0xb3, 0xfe, 0x91, + 0x02, 0xb9, 0xff, 0x00, 0x9e, 0x90, 0xb1, 0x8d, 0xff, 0x00, 0x4e, 0x2b, + 0x43, 0x4e, 0xf8, 0xa3, 0xa8, 0xda, 0x38, 0xfe, 0xce, 0xf1, 0x05, 0xc5, + 0x9b, 0x8e, 0x91, 0x5d, 0x1f, 0x97, 0xfe, 0xfa, 0x14, 0x01, 0xf7, 0xd4, + 0xf7, 0x5d, 0x79, 0xaa, 0x4f, 0x3e, 0x4e, 0x37, 0x57, 0xc7, 0xda, 0x57, + 0xed, 0x11, 0xe3, 0x6d, 0x3a, 0x68, 0xe3, 0x9e, 0x18, 0xb5, 0x18, 0x98, + 0xe0, 0x3a, 0xb0, 0xc1, 0xfc, 0x6b, 0xa3, 0x9f, 0xf6, 0x95, 0xd6, 0x6f, + 0xf4, 0xab, 0x86, 0xd3, 0xb4, 0xc8, 0x4d, 0xec, 0x44, 0x06, 0x47, 0x94, + 0x64, 0xe7, 0x8c, 0xa8, 0xef, 0xd2, 0x80, 0x3e, 0x94, 0xba, 0x74, 0x48, + 0xcb, 0x49, 0x22, 0xa8, 0xf5, 0x63, 0x8a, 0xe0, 0x3c, 0x49, 0xf1, 0x07, + 0xc3, 0xfa, 0x4c, 0xa6, 0x17, 0xbd, 0x59, 0xee, 0x0f, 0x48, 0x60, 0xf9, + 0x98, 0xfe, 0x02, 0xbe, 0x60, 0xd7, 0x3e, 0x2a, 0xeb, 0xba, 0xc1, 0x73, + 0xaf, 0xeb, 0x4f, 0x1f, 0x3f, 0xf1, 0xe3, 0x60, 0x79, 0xfa, 0x13, 0xda, + 0xb9, 0xfb, 0xaf, 0x89, 0x77, 0x76, 0xf0, 0x18, 0xf4, 0x8b, 0x68, 0xb4, + 0xd0, 0xc3, 0x0d, 0x38, 0xf9, 0xe6, 0x6f, 0xab, 0x1e, 0x9f, 0x85, 0x00, + 0x7d, 0x11, 0xaf, 0x7c, 0x46, 0x5b, 0x58, 0xbc, 0xeb, 0x86, 0x87, 0x46, + 0xb5, 0x23, 0x22, 0x4b, 0xb7, 0xcc, 0x8c, 0x3d, 0x93, 0xbd, 0x79, 0xbe, + 0xb5, 0xf1, 0xdb, 0x4a, 0xb5, 0x79, 0x0e, 0x9f, 0x6d, 0x3e, 0xb3, 0x24, + 0x7c, 0xf9, 0xb7, 0x84, 0xa4, 0x59, 0xf6, 0x51, 0xfd, 0x6b, 0xc2, 0x75, + 0x1d, 0x46, 0xe2, 0xfe, 0x76, 0x9a, 0xe6, 0x79, 0x2e, 0x25, 0x6e, 0xaf, + 0x23, 0x16, 0x27, 0xf3, 0xaa, 0xff, 0x00, 0x6a, 0x54, 0xb4, 0x74, 0x1f, + 0x7d, 0xdb, 0x9f, 0xa5, 0x00, 0x7a, 0x3e, 0xbf, 0xf1, 0xc7, 0xc5, 0x3a, + 0xed, 0xab, 0x45, 0x15, 0xe8, 0xb1, 0xb5, 0xc7, 0x36, 0xd6, 0x6a, 0x22, + 0x03, 0xf2, 0xeb, 0x5e, 0x67, 0x73, 0x73, 0x2d, 0xcd, 0xc3, 0xcd, 0x2c, + 0xd2, 0x48, 0xee, 0x72, 0x4b, 0xb1, 0x39, 0xfc, 0xea, 0x21, 0x72, 0xd1, + 0xb6, 0x54, 0xe0, 0xd4, 0x2d, 0x2e, 0xe3, 0x9a, 0x00, 0x99, 0xa7, 0x38, + 0xa5, 0x4b, 0xe9, 0xa2, 0x42, 0x8b, 0x2b, 0x2a, 0x9e, 0xc2, 0xaa, 0x97, + 0xe2, 0x98, 0x5e, 0x80, 0x35, 0x34, 0xbd, 0x4a, 0x58, 0x6e, 0x40, 0x2e, + 0x59, 0x3b, 0x82, 0x6b, 0xa3, 0x6d, 0x6f, 0xed, 0x2c, 0x32, 0xb8, 0x18, + 0xc6, 0x0d, 0x71, 0x11, 0xca, 0x51, 0x8b, 0x0e, 0x08, 0x15, 0x39, 0x91, + 0xfc, 0x94, 0x94, 0xbe, 0x51, 0xbb, 0x83, 0x40, 0x1d, 0x1c, 0xb7, 0xc9, + 0x13, 0xb2, 0xb1, 0xca, 0x9f, 0x4e, 0x45, 0x66, 0x41, 0x73, 0x15, 0xac, + 0x92, 0xc5, 0xbc, 0xac, 0x6d, 0xf3, 0x2e, 0x4f, 0x19, 0xf4, 0xaa, 0x02, + 0x58, 0xbc, 0xb6, 0x63, 0x27, 0x3e, 0x99, 0xaa, 0xd3, 0x4f, 0x19, 0x51, + 0x93, 0x9c, 0xf0, 0x0d, 0x00, 0x74, 0xfa, 0x76, 0xa1, 0x0b, 0xda, 0xc8, + 0x93, 0x36, 0x1c, 0x1f, 0x93, 0xbe, 0x6b, 0xbf, 0xf8, 0x42, 0xdf, 0x6b, + 0xf1, 0x01, 0xc3, 0x10, 0xb1, 0xc6, 0xcd, 0xb7, 0x3c, 0x1e, 0x0d, 0x78, + 0xc9, 0xd4, 0x46, 0x97, 0x34, 0x24, 0x91, 0x24, 0x6c, 0x3e, 0x65, 0x1d, + 0x45, 0x7a, 0xcf, 0xc0, 0x7b, 0xb4, 0xb9, 0xf1, 0x4c, 0xbc, 0x06, 0x1f, + 0x66, 0x91, 0x81, 0x19, 0xf4, 0xa0, 0x0f, 0x5a, 0xfd, 0x9f, 0x02, 0x5e, + 0x0d, 0x4d, 0xd6, 0x2d, 0x8b, 0x0c, 0x8d, 0xf3, 0x7a, 0x92, 0x49, 0xaf, + 0x4f, 0x9a, 0x16, 0xb8, 0x98, 0xee, 0x6d, 0xaa, 0x0f, 0x41, 0x5c, 0xdf, + 0xc2, 0x0b, 0x28, 0xad, 0xfc, 0x2d, 0x3d, 0xdc, 0x28, 0xb1, 0xac, 0xf2, + 0x12, 0x36, 0x0c, 0x64, 0x57, 0x51, 0x80, 0x9f, 0x34, 0xac, 0x11, 0x7f, + 0xbb, 0xdc, 0xd0, 0x01, 0x1d, 0x90, 0x63, 0x85, 0x7c, 0x46, 0x3a, 0xd5, + 0xe8, 0x2d, 0xd1, 0x30, 0x23, 0x5d, 0xcd, 0xeb, 0x55, 0xe3, 0xb8, 0xb7, + 0x60, 0x19, 0x8e, 0xd4, 0x1d, 0x17, 0xb9, 0xa7, 0x9b, 0xf9, 0x66, 0x1b, + 0x2d, 0xe3, 0xd8, 0xbe, 0xb8, 0xa0, 0x0b, 0xc4, 0x24, 0x23, 0x33, 0x3f, + 0xfc, 0x04, 0x54, 0x7f, 0x6f, 0xfe, 0x18, 0x57, 0x1e, 0xf5, 0x0c, 0x3a, + 0x64, 0xb2, 0xb6, 0xe9, 0x58, 0x9f, 0xad, 0x68, 0x43, 0x66, 0x96, 0xe3, + 0xb0, 0xfa, 0xd0, 0x04, 0x9a, 0x7a, 0x3b, 0x16, 0x91, 0x81, 0x38, 0x1d, + 0x4d, 0x4b, 0x1e, 0xd4, 0x3c, 0x7c, 0xcd, 0xdc, 0xd3, 0xc3, 0x46, 0x96, + 0x99, 0x2c, 0x4e, 0xe3, 0x4c, 0x8c, 0x34, 0xa7, 0x08, 0xbb, 0x56, 0x80, + 0x1c, 0x65, 0xc7, 0x1d, 0xfd, 0xaa, 0x58, 0xd1, 0xe4, 0xe1, 0x54, 0xfe, + 0x35, 0x2c, 0x36, 0xf1, 0xc7, 0xcb, 0x1c, 0x9a, 0xb2, 0xb7, 0x29, 0x18, + 0xf9, 0x47, 0x34, 0x00, 0xb0, 0x58, 0x6d, 0x00, 0xb5, 0x59, 0x12, 0x45, + 0x06, 0x33, 0xc9, 0xf4, 0xaa, 0x4d, 0x76, 0xf2, 0x70, 0x38, 0xa4, 0x10, + 0x33, 0xf2, 0x4f, 0x34, 0x01, 0x7c, 0xea, 0x2c, 0xd8, 0x08, 0x31, 0x52, + 0xc4, 0x1a, 0x53, 0x92, 0x4d, 0x53, 0x89, 0x55, 0x2a, 0xe4, 0x6e, 0x40, + 0xe3, 0x8a, 0x00, 0xbd, 0x16, 0x10, 0x55, 0x84, 0x90, 0xf1, 0x54, 0x11, + 0xf1, 0x53, 0x2c, 0xe2, 0x31, 0xd6, 0x80, 0x34, 0xe2, 0x8c, 0xb7, 0x50, + 0x2a, 0xda, 0x08, 0xe3, 0xe5, 0x98, 0x0a, 0xe7, 0x9b, 0x52, 0x6e, 0x8b, + 0x93, 0x42, 0x79, 0xf7, 0x07, 0xa9, 0xc7, 0xd6, 0x80, 0x3a, 0x53, 0xab, + 0xdb, 0xdb, 0x8f, 0x97, 0xe6, 0x35, 0x13, 0x6b, 0xf2, 0xc8, 0x71, 0x12, + 0x1f, 0xae, 0x2a, 0x85, 0xb6, 0x95, 0xb8, 0x82, 0xe7, 0x35, 0xaf, 0x6f, + 0x1c, 0x16, 0xc3, 0xa0, 0x26, 0x80, 0x0b, 0x7b, 0x6b, 0xcb, 0xee, 0x64, + 0x7d, 0x8b, 0x56, 0x7c, 0x8b, 0x5b, 0x36, 0x50, 0xdf, 0xbc, 0x6e, 0xf4, + 0xc9, 0x75, 0x13, 0xb4, 0xaa, 0x70, 0x2b, 0x38, 0xcc, 0x5a, 0xe4, 0x64, + 0xe4, 0xe6, 0x80, 0x3a, 0x56, 0x65, 0x96, 0x35, 0x28, 0x3c, 0x80, 0x3a, + 0x18, 0xf8, 0x3f, 0x9d, 0x62, 0x5f, 0x69, 0x77, 0xda, 0x85, 0xbc, 0xd1, + 0xda, 0x6a, 0xb3, 0x5a, 0xcf, 0xff, 0x00, 0x2c, 0xa4, 0x6c, 0x36, 0xdf, + 0x5e, 0x0f, 0x5a, 0xd1, 0x12, 0x7e, 0xe8, 0x0a, 0xe8, 0xfc, 0x2e, 0xd6, + 0x30, 0xca, 0xad, 0x73, 0x16, 0xe1, 0xf4, 0xa0, 0x0f, 0x91, 0xbe, 0x33, + 0xfc, 0x1b, 0xf8, 0xab, 0x64, 0xb2, 0x5f, 0xcf, 0xaa, 0x5d, 0xf8, 0x8b, + 0x4a, 0x71, 0xf2, 0x98, 0x49, 0x57, 0x41, 0xfe, 0xe5, 0x7c, 0xcb, 0x71, + 0x7b, 0xa9, 0x68, 0x1a, 0x9a, 0xc8, 0x5e, 0x58, 0xee, 0x61, 0x6c, 0x82, + 0xf9, 0x07, 0x23, 0xb1, 0xcd, 0x7e, 0xce, 0xc3, 0xe2, 0x5f, 0x0f, 0xc7, + 0x6f, 0xb5, 0xac, 0x9a, 0x4c, 0x8e, 0x84, 0x67, 0x35, 0xe2, 0x7f, 0x18, + 0x7f, 0x67, 0xbf, 0x04, 0x7c, 0x67, 0x8a, 0x69, 0x21, 0xd2, 0x5f, 0x4b, + 0xd4, 0x88, 0x21, 0x26, 0xb4, 0x8f, 0x04, 0x9f, 0x56, 0xec, 0x68, 0x03, + 0xe1, 0x7d, 0x0b, 0xe2, 0x34, 0x7e, 0x21, 0x48, 0x98, 0xc4, 0x23, 0xb8, + 0x5e, 0x27, 0x50, 0xd8, 0x3f, 0xef, 0x0f, 0x6a, 0xe8, 0x7f, 0xe1, 0x21, + 0x83, 0xcc, 0x2c, 0xa3, 0x72, 0xe7, 0x86, 0x27, 0x35, 0xcc, 0x7c, 0x58, + 0xfd, 0x96, 0x7c, 0x7f, 0xf0, 0x62, 0xed, 0xb5, 0x68, 0x2d, 0x26, 0xd4, + 0x34, 0x98, 0xd8, 0xe6, 0xea, 0xdd, 0x09, 0x21, 0x7f, 0xda, 0x5a, 0xe6, + 0xb4, 0xe6, 0xb4, 0xbc, 0xb4, 0x8e, 0xf2, 0x23, 0x2f, 0xcd, 0xfe, 0xb2, + 0x17, 0x62, 0x30, 0x7b, 0xd0, 0x07, 0xa2, 0x6a, 0x5a, 0xdd, 0x98, 0xb7, + 0x79, 0xe6, 0xb9, 0x23, 0x60, 0xce, 0x03, 0x57, 0x39, 0xa6, 0x78, 0x8e, + 0xd1, 0xe0, 0x9a, 0x42, 0x7c, 0xd9, 0x64, 0x3f, 0x36, 0x79, 0xe3, 0xd2, + 0xb2, 0x1a, 0xf3, 0x4d, 0x49, 0xe3, 0x26, 0x23, 0x22, 0x0e, 0x48, 0x27, + 0x39, 0x35, 0x62, 0x3d, 0x72, 0x14, 0xdc, 0xb6, 0xb6, 0x7c, 0x67, 0xa0, + 0x5a, 0x00, 0x5b, 0x4f, 0x12, 0xf9, 0x37, 0xd2, 0xdb, 0x1b, 0x66, 0x30, + 0x75, 0x8b, 0x6a, 0x60, 0x0f, 0x6a, 0x83, 0xc5, 0x37, 0xf7, 0x57, 0x1a, + 0x3c, 0xac, 0x60, 0x91, 0x36, 0xfc, 0xe8, 0x48, 0xe4, 0x11, 0xc8, 0xa8, + 0xee, 0xf5, 0x89, 0x5e, 0xea, 0x2f, 0x3a, 0x35, 0xb4, 0x41, 0xc1, 0x91, + 0xce, 0x06, 0x29, 0xf7, 0x17, 0xf7, 0x17, 0x71, 0x2f, 0x98, 0x4c, 0xd1, + 0xe3, 0x0a, 0xc0, 0x80, 0x18, 0x7a, 0xd0, 0x05, 0x9f, 0x0c, 0x6b, 0xb3, + 0xb5, 0x92, 0x5c, 0xac, 0x06, 0x49, 0x25, 0x01, 0x8b, 0x55, 0x8b, 0xcd, + 0x5b, 0x51, 0xb6, 0xbf, 0xfb, 0x50, 0xb5, 0xd8, 0x8e, 0x30, 0xe3, 0x3c, + 0x1a, 0xe7, 0x3c, 0x3f, 0xa9, 0xa5, 0xb4, 0x72, 0xda, 0xc3, 0x1c, 0xb2, + 0x18, 0x18, 0xa9, 0x1b, 0xb9, 0x1d, 0xc7, 0x6a, 0xd2, 0xb8, 0xd6, 0x0c, + 0xa7, 0xcb, 0x76, 0x00, 0x8e, 0x76, 0x19, 0x39, 0xfe, 0x54, 0x01, 0x6f, + 0x5f, 0xf1, 0x4c, 0xf2, 0xe9, 0xe1, 0x9b, 0x90, 0x0a, 0x80, 0x07, 0xd6, + 0xaa, 0x69, 0x9a, 0x8d, 0xeb, 0xcc, 0xf3, 0xa4, 0x26, 0x66, 0x23, 0x00, + 0xfa, 0x7b, 0x56, 0x36, 0xad, 0x74, 0x56, 0x05, 0x61, 0x02, 0x95, 0xde, + 0x08, 0x06, 0x4e, 0xf9, 0xab, 0x11, 0x6b, 0x92, 0xc4, 0xbe, 0x5a, 0xac, + 0x71, 0xe0, 0x64, 0xe1, 0xfa, 0x50, 0x06, 0xdd, 0xe6, 0xa1, 0x7c, 0x4a, + 0xc8, 0xd0, 0xe2, 0x45, 0xf4, 0x3f, 0xa5, 0x73, 0x5e, 0x36, 0xf1, 0x0c, + 0x93, 0x69, 0x9f, 0x67, 0xda, 0x57, 0xcf, 0x3b, 0x7a, 0xd4, 0xff, 0x00, + 0xda, 0x17, 0x73, 0x36, 0xf5, 0x54, 0x98, 0x76, 0xdb, 0x25, 0x72, 0x9a, + 0xb5, 0xf4, 0x57, 0xfa, 0x8b, 0x43, 0x34, 0x2c, 0xb2, 0x5b, 0xfc, 0xc4, + 0x89, 0x38, 0x14, 0x00, 0xeb, 0x29, 0x27, 0x8d, 0x60, 0x8d, 0x61, 0xca, + 0x46, 0x30, 0xbc, 0xf7, 0xf5, 0xae, 0xcf, 0x4a, 0x63, 0x6c, 0x15, 0xe4, + 0x8b, 0x71, 0x1f, 0x78, 0x0e, 0xe2, 0xb9, 0x5b, 0x0d, 0x42, 0x01, 0x3a, + 0x2f, 0x96, 0xce, 0x71, 0xb8, 0x05, 0x35, 0xd1, 0x59, 0xea, 0x0d, 0x07, + 0xcd, 0xe5, 0xc8, 0x43, 0x73, 0x8c, 0x67, 0x8a, 0x00, 0xea, 0xac, 0xb5, + 0xdb, 0x29, 0x19, 0x23, 0x6d, 0xc9, 0x83, 0x85, 0xce, 0x6a, 0x5b, 0xfd, + 0x6e, 0x2b, 0xbd, 0x40, 0x43, 0x15, 0xca, 0xf9, 0x31, 0x37, 0xcc, 0x0b, + 0x63, 0x3e, 0xd5, 0xcb, 0x5c, 0x78, 0x92, 0x08, 0x81, 0x50, 0x15, 0x58, + 0xff, 0x00, 0x79, 0x71, 0xb6, 0xaa, 0xc9, 0x75, 0xa4, 0xbc, 0x5b, 0xe5, + 0x8d, 0x58, 0x2f, 0x24, 0x83, 0x82, 0x68, 0x03, 0xac, 0xb8, 0xd6, 0x62, + 0xd3, 0x2e, 0x1a, 0x59, 0xe5, 0x84, 0xdb, 0xb7, 0x4e, 0x72, 0x41, 0xf4, + 0xab, 0x5a, 0x3e, 0xa5, 0xa8, 0x9b, 0x8f, 0xed, 0x1f, 0xb4, 0xc9, 0x6c, + 0xa4, 0x7e, 0xea, 0x04, 0x7c, 0x05, 0x1e, 0xa4, 0x7a, 0xd6, 0x0f, 0x81, + 0x7e, 0x15, 0x6a, 0xdf, 0x15, 0x35, 0x41, 0xfd, 0x93, 0xa4, 0xdd, 0x98, + 0x49, 0xdb, 0x16, 0xcc, 0x84, 0xcf, 0xf7, 0x98, 0x9e, 0x2b, 0xee, 0x1f, + 0x81, 0xbf, 0xb1, 0x56, 0x9b, 0xe1, 0x5b, 0x78, 0xb5, 0x2f, 0x17, 0xdd, + 0xb6, 0xaf, 0x7b, 0x80, 0x56, 0xd3, 0x77, 0xee, 0xa3, 0x3e, 0xfe, 0xb4, + 0x01, 0xe0, 0xff, 0x00, 0x0f, 0xdb, 0xc6, 0xde, 0x36, 0xbf, 0x30, 0xe9, + 0x56, 0x2f, 0x79, 0x0c, 0x67, 0x0d, 0x34, 0xb1, 0x95, 0x51, 0xff, 0x00, + 0x02, 0xaf, 0x71, 0xd0, 0xfc, 0x01, 0xe2, 0x1d, 0x31, 0x27, 0x6d, 0x4b, + 0x51, 0xf2, 0xdd, 0x14, 0x62, 0xde, 0x26, 0xdc, 0x01, 0xef, 0xc9, 0xaf, + 0xa0, 0xe1, 0xd1, 0x6c, 0xf4, 0x3b, 0x26, 0x5b, 0x5b, 0x48, 0x6d, 0x2d, + 0xd0, 0xe2, 0x38, 0xe2, 0x50, 0xa3, 0xeb, 0xc5, 0x71, 0x77, 0xf1, 0x96, + 0x79, 0x9c, 0x9f, 0xbc, 0x79, 0x26, 0x80, 0x38, 0xf8, 0x2d, 0xd8, 0xc2, + 0x89, 0x34, 0xd2, 0x4d, 0xb4, 0x64, 0x07, 0x62, 0x40, 0xab, 0x71, 0x18, + 0xe3, 0x91, 0xc2, 0xa8, 0xc1, 0x14, 0xeb, 0x84, 0x11, 0xb1, 0xc7, 0x7a, + 0xa2, 0xc4, 0xc7, 0xce, 0x73, 0x40, 0x17, 0x8c, 0xc0, 0x8c, 0x71, 0x59, + 0xaf, 0x26, 0x09, 0x5a, 0x63, 0x4f, 0x8c, 0xf6, 0xf7, 0xaa, 0x73, 0x5c, + 0x1c, 0xe7, 0x3d, 0x68, 0x02, 0x4b, 0xc6, 0xf9, 0x2a, 0x9b, 0x49, 0xbe, + 0x2e, 0x7a, 0x8a, 0x59, 0x2e, 0x83, 0x46, 0x41, 0xeb, 0x54, 0x9a, 0xe4, + 0x05, 0x3c, 0xd0, 0x04, 0x53, 0xca, 0x41, 0xc5, 0x55, 0x95, 0xfd, 0xe9, + 0x27, 0xb8, 0xc9, 0x38, 0xe6, 0xaa, 0x4d, 0x3e, 0x7b, 0xe2, 0x80, 0x1a, + 0xf3, 0x6c, 0x72, 0x0f, 0x7a, 0x8f, 0xce, 0xc9, 0xeb, 0x81, 0x55, 0x6e, + 0x26, 0xf4, 0xea, 0x2a, 0x8b, 0xdc, 0x10, 0x73, 0xcd, 0x00, 0x6b, 0xc8, + 0xd1, 0xe0, 0xe4, 0x6f, 0xa8, 0x0c, 0xf2, 0x27, 0xfa, 0xbc, 0x22, 0xfb, + 0x56, 0x61, 0xbf, 0x60, 0x30, 0x0d, 0x37, 0xed, 0xef, 0x8e, 0x94, 0x01, + 0x72, 0x46, 0x91, 0xc9, 0xdc, 0x49, 0x15, 0x01, 0x46, 0xc9, 0xc6, 0x2a, + 0x31, 0x77, 0x23, 0x74, 0xa4, 0x32, 0x3f, 0xd6, 0x80, 0x22, 0xd5, 0xa1, + 0x26, 0xd1, 0x64, 0x38, 0xca, 0x36, 0x6a, 0x85, 0xc4, 0x7b, 0xc0, 0x6e, + 0xa1, 0xab, 0x52, 0x62, 0xd7, 0x16, 0xb2, 0x47, 0xb7, 0x39, 0x53, 0x59, + 0xf6, 0xdf, 0xbe, 0xb5, 0x5e, 0x31, 0xdb, 0xf1, 0xa0, 0x0a, 0x27, 0x74, + 0x2f, 0x91, 0xd2, 0x92, 0x60, 0xb7, 0x31, 0xe7, 0xbd, 0x5b, 0x96, 0x1c, + 0xf0, 0x6a, 0x94, 0x91, 0x98, 0xc7, 0x1d, 0xa8, 0x02, 0x9c, 0x81, 0xa2, + 0x3f, 0xce, 0xaa, 0x4f, 0x12, 0xcb, 0xea, 0xa7, 0xd4, 0x56, 0x84, 0xec, + 0x0f, 0x5a, 0xa5, 0x21, 0x0a, 0xdc, 0x1f, 0xc2, 0x80, 0x28, 0x47, 0x23, + 0xc0, 0xc5, 0x1c, 0x65, 0x69, 0x67, 0xb6, 0x4b, 0xab, 0x7b, 0x88, 0xc0, + 0x0c, 0xb2, 0x21, 0x52, 0x3f, 0x0a, 0xb1, 0x21, 0x8e, 0x51, 0xf3, 0x75, + 0xf5, 0x14, 0x41, 0x09, 0x81, 0xf8, 0x60, 0xe0, 0xd0, 0x07, 0xc6, 0x9e, + 0x33, 0xb0, 0x7d, 0x1f, 0x59, 0x81, 0x26, 0x6f, 0x35, 0x52, 0x59, 0x07, + 0x95, 0xdc, 0x00, 0x7a, 0x57, 0x31, 0xa9, 0x5e, 0x89, 0xef, 0x65, 0x30, + 0xa1, 0x89, 0x09, 0xe1, 0x4f, 0x6a, 0xf6, 0x4f, 0x8c, 0x1a, 0x25, 0xa4, + 0x3e, 0x3d, 0x82, 0x37, 0xb9, 0x4b, 0x21, 0x36, 0xe9, 0x0c, 0xae, 0x38, + 0x04, 0xf4, 0xae, 0x2e, 0xe7, 0xc1, 0x1a, 0x44, 0x93, 0x3c, 0x87, 0xc4, + 0x56, 0xef, 0x26, 0x72, 0x4e, 0x7b, 0xd0, 0x07, 0x22, 0x23, 0x2a, 0xab, + 0xbc, 0xef, 0x38, 0xa4, 0x20, 0x12, 0x09, 0x00, 0xe3, 0xa5, 0x5c, 0xd5, + 0x6c, 0x53, 0x4c, 0xb9, 0x36, 0xf1, 0xdc, 0x2d, 0xca, 0xaf, 0x49, 0x17, + 0xa1, 0xaa, 0x3b, 0xa8, 0x02, 0x4f, 0x30, 0x8f, 0xad, 0x38, 0x5d, 0x30, + 0x1d, 0xaa, 0x0d, 0xd4, 0xdd, 0xfc, 0xd0, 0x04, 0xac, 0xe1, 0x8e, 0x48, + 0x06, 0xab, 0x88, 0x77, 0xc8, 0x5e, 0x43, 0x93, 0x9e, 0x31, 0x4f, 0x2d, + 0x4d, 0x2d, 0x8a, 0x00, 0x6c, 0x92, 0x49, 0xe6, 0x88, 0xe0, 0xe5, 0xbf, + 0x95, 0x74, 0x9e, 0x18, 0xf1, 0xef, 0x89, 0xbc, 0x19, 0x28, 0x97, 0x4e, + 0xd6, 0xae, 0x6d, 0x99, 0x4e, 0x76, 0x89, 0x09, 0x5f, 0xc8, 0xf1, 0x5c, + 0xe6, 0xf2, 0x39, 0x06, 0x9a, 0x5c, 0x31, 0x1b, 0xbe, 0x60, 0x3b, 0x50, + 0x07, 0xbb, 0x69, 0x7f, 0xb5, 0x4b, 0x5f, 0xa4, 0x76, 0xfe, 0x2d, 0xf0, + 0xe5, 0x8e, 0xb4, 0xa3, 0xe5, 0x37, 0x70, 0x2f, 0x93, 0x38, 0x1e, 0xb9, + 0x1d, 0x4f, 0xe3, 0x5d, 0xde, 0x89, 0xe3, 0xdf, 0x05, 0xf8, 0x91, 0xa2, + 0x93, 0xc3, 0xfe, 0x25, 0x97, 0x40, 0xbb, 0x1f, 0xf2, 0xe3, 0xab, 0x0f, + 0xdd, 0x9f, 0x6d, 0xff, 0x00, 0xfd, 0x73, 0x5f, 0x25, 0x32, 0xab, 0x71, + 0x8c, 0x0f, 0x6a, 0x92, 0x18, 0xd5, 0x07, 0x00, 0xd0, 0x07, 0xdd, 0x96, + 0x7e, 0x24, 0xd4, 0xb4, 0xc5, 0x51, 0xa8, 0xda, 0x09, 0xe0, 0x3d, 0x2e, + 0xad, 0x1b, 0xcc, 0x8d, 0x87, 0xae, 0x45, 0x75, 0x3a, 0x5e, 0xb9, 0x69, + 0xa9, 0x28, 0x30, 0x4c, 0xad, 0xed, 0x9e, 0x6b, 0xe1, 0x5f, 0x0b, 0xf8, + 0xff, 0x00, 0x5e, 0xf0, 0x9c, 0x80, 0xe9, 0x9a, 0x94, 0xd0, 0x20, 0xeb, + 0x11, 0x6d, 0xd1, 0x9f, 0xaa, 0x9e, 0x2b, 0xd5, 0xfc, 0x35, 0xf1, 0xf2, + 0xd2, 0xe9, 0x95, 0x75, 0xdd, 0x3b, 0xec, 0xf3, 0x9f, 0xf9, 0x7e, 0xd3, + 0xfe, 0x53, 0xf5, 0x2b, 0xd3, 0xf2, 0xa0, 0x0f, 0xab, 0x22, 0x97, 0xa5, + 0x6a, 0x58, 0x4a, 0x4b, 0x0a, 0xf1, 0x7d, 0x13, 0xe2, 0x8d, 0xa3, 0xdb, + 0x89, 0xad, 0xf5, 0x18, 0x75, 0x3b, 0x35, 0x19, 0x66, 0x53, 0xb6, 0x58, + 0xc7, 0xfb, 0x4b, 0x5b, 0x69, 0xf1, 0xcb, 0xc3, 0xf6, 0xac, 0xaa, 0x97, + 0x2b, 0x3c, 0x84, 0x64, 0x22, 0x9e, 0x68, 0x03, 0xdc, 0xec, 0x2e, 0x4a, + 0x81, 0xcd, 0x6c, 0x43, 0x3f, 0x19, 0xdc, 0x07, 0xbe, 0x6b, 0xe6, 0x8d, + 0x47, 0xf6, 0x87, 0x92, 0x35, 0xc5, 0xbc, 0x31, 0x5a, 0x2f, 0x63, 0x2b, + 0x65, 0xbf, 0x21, 0x5c, 0xb5, 0xf7, 0xc7, 0x3d, 0x4e, 0xf9, 0x8e, 0xd9, + 0xe6, 0x93, 0x3e, 0xfb, 0x17, 0xf2, 0xa0, 0x0f, 0xb4, 0xed, 0xbc, 0x5d, + 0x6f, 0xa6, 0x8f, 0xf4, 0x8b, 0x94, 0x28, 0x3d, 0x1b, 0x26, 0xa4, 0x1f, + 0x14, 0xac, 0x88, 0x3f, 0x66, 0x86, 0x4b, 0x8c, 0x1c, 0x74, 0xc5, 0x72, + 0x9f, 0x05, 0x3c, 0x15, 0xa3, 0xeb, 0xde, 0x00, 0xd3, 0xf5, 0xad, 0x6a, + 0xe0, 0xbd, 0xd5, 0xd2, 0xf9, 0x86, 0x1f, 0x3b, 0x6a, 0x81, 0xfc, 0xeb, + 0xd0, 0x2c, 0xf5, 0x0f, 0x0a, 0xf8, 0x71, 0xf6, 0x5b, 0x45, 0x6e, 0x1d, + 0x7b, 0x46, 0x9e, 0x63, 0x7e, 0x74, 0x01, 0x15, 0x87, 0x89, 0x7c, 0x4b, + 0xad, 0x32, 0x8d, 0x3b, 0x4c, 0x70, 0xa7, 0xf8, 0x8a, 0x1f, 0xe6, 0x6b, + 0xaf, 0xd2, 0x7c, 0x0d, 0xe3, 0x0d, 0x5f, 0x0d, 0x77, 0x7a, 0x96, 0x88, + 0x7a, 0x8f, 0x33, 0xfa, 0x0c, 0x55, 0x0b, 0x7f, 0x89, 0x61, 0x18, 0x0b, + 0x7b, 0x09, 0x4a, 0x0f, 0xe3, 0x95, 0x96, 0x25, 0xfd, 0x69, 0xf3, 0xfc, + 0x67, 0x36, 0x40, 0xf9, 0x97, 0xfa, 0x65, 0x88, 0xf4, 0x32, 0x19, 0x5b, + 0xf4, 0xc5, 0x00, 0x7a, 0x16, 0x8f, 0xf0, 0x8a, 0x34, 0x50, 0x6f, 0x75, + 0x27, 0x99, 0xbb, 0xf9, 0x68, 0x3f, 0x99, 0xcd, 0x76, 0xba, 0x67, 0x81, + 0xf4, 0x9b, 0x24, 0x51, 0xb2, 0x59, 0x71, 0xdd, 0xe5, 0x3f, 0xc8, 0x1c, + 0x57, 0xcf, 0x17, 0x3f, 0xb4, 0x3d, 0xa4, 0x23, 0xfe, 0x43, 0xb7, 0x37, + 0x0d, 0xfd, 0xdb, 0x4b, 0x65, 0x51, 0xf9, 0x9c, 0xd6, 0x64, 0xdf, 0xb4, + 0x51, 0x91, 0xff, 0x00, 0x71, 0x0e, 0xa5, 0x71, 0xef, 0x35, 0xd1, 0x50, + 0x7f, 0x05, 0xc5, 0x00, 0x7d, 0x77, 0x6b, 0x67, 0x65, 0x6c, 0x31, 0x1c, + 0x31, 0x2e, 0x3d, 0x86, 0x6a, 0xf2, 0x4b, 0x12, 0x70, 0x19, 0x40, 0xfa, + 0xd7, 0xc6, 0xba, 0x57, 0xc7, 0x4d, 0x46, 0xda, 0x56, 0x91, 0x34, 0x7b, + 0x49, 0x1d, 0xce, 0x4b, 0xce, 0xce, 0xec, 0x7f, 0x33, 0x5d, 0x4e, 0x9d, + 0xf1, 0xfb, 0xc4, 0x2b, 0xc4, 0x76, 0x3a, 0x7c, 0x40, 0xf2, 0x02, 0xc4, + 0x78, 0xfd, 0x68, 0x03, 0xea, 0x75, 0xb8, 0x43, 0xfc, 0x40, 0xd3, 0xc4, + 0xab, 0xeb, 0x5f, 0x3a, 0x5a, 0x7c, 0x6c, 0xf1, 0x35, 0xc0, 0x19, 0xfb, + 0x2a, 0x7b, 0x2c, 0x5f, 0xfd, 0x7a, 0xd8, 0xb3, 0xf8, 0xa3, 0xe2, 0x2b, + 0x8f, 0xbd, 0x3c, 0x23, 0xe9, 0x10, 0xa0, 0x0f, 0x76, 0x0e, 0x28, 0xde, + 0x00, 0xef, 0x5e, 0x49, 0x6b, 0xe3, 0x8d, 0x6a, 0x7c, 0x6e, 0xba, 0x1f, + 0x84, 0x62, 0xb4, 0x4f, 0x88, 0xf5, 0x47, 0x81, 0xcf, 0xda, 0xd8, 0x10, + 0xa4, 0xf0, 0x07, 0xa7, 0xd2, 0x80, 0x25, 0xb2, 0x91, 0x7e, 0xcf, 0x1f, + 0x3f, 0xc2, 0x2a, 0xc9, 0x99, 0x71, 0xd6, 0xb9, 0xdb, 0x3b, 0xec, 0x43, + 0x1f, 0x3f, 0xc2, 0x3f, 0x95, 0x58, 0x37, 0xdc, 0x75, 0xa0, 0x0d, 0x29, + 0xa4, 0x07, 0xa1, 0xe2, 0xb3, 0x6e, 0x8f, 0x06, 0xa2, 0x7b, 0xfc, 0x03, + 0xce, 0x2a, 0x8d, 0xc5, 0xf0, 0x23, 0xad, 0x00, 0x52, 0xbf, 0x1d, 0x6b, + 0x9a, 0xd4, 0x90, 0x10, 0x6b, 0x6a, 0xee, 0xec, 0x1c, 0xf3, 0x5c, 0xfd, + 0xfd, 0xc6, 0x72, 0x33, 0x40, 0x1c, 0xce, 0xa5, 0x00, 0x6c, 0xf1, 0x5c, + 0x9e, 0xa9, 0x64, 0x09, 0x27, 0x02, 0xba, 0xfb, 0xe9, 0x07, 0x35, 0xce, + 0xdf, 0xb6, 0x73, 0x40, 0x1c, 0x4e, 0xa1, 0x66, 0x40, 0x61, 0x8e, 0x6b, + 0x9a, 0xbf, 0xb5, 0x23, 0x3c, 0x57, 0x6f, 0xa8, 0x46, 0x18, 0xb5, 0x73, + 0x77, 0xd1, 0x83, 0x9e, 0x28, 0x03, 0x99, 0x4b, 0x7c, 0x49, 0xd3, 0x15, + 0xf3, 0x4f, 0xed, 0x67, 0xa7, 0x2e, 0x8f, 0xaf, 0x69, 0x5a, 0x91, 0x49, + 0x02, 0xdc, 0xc4, 0x63, 0x2c, 0x8d, 0x8f, 0x99, 0x4f, 0xff, 0x00, 0x5e, + 0xbe, 0xa6, 0x31, 0xe1, 0xeb, 0xc6, 0x3f, 0x6b, 0xbf, 0x0f, 0x8d, 0x4b, + 0xe1, 0xa4, 0x37, 0xea, 0xbb, 0x9e, 0xca, 0x75, 0x6c, 0x81, 0xd0, 0x1e, + 0x0d, 0x00, 0x7c, 0x83, 0xfd, 0xba, 0xbd, 0xae, 0x26, 0x4f, 0xf7, 0xb0, + 0x68, 0x3a, 0xd3, 0xf6, 0xb8, 0x46, 0xff, 0x00, 0x79, 0x71, 0x58, 0x0f, + 0x51, 0x35, 0x00, 0x74, 0x32, 0xf8, 0x86, 0xe5, 0x20, 0x92, 0x38, 0xe5, + 0x64, 0x57, 0x18, 0x3e, 0x5c, 0x98, 0x07, 0xf0, 0xac, 0xeb, 0x1d, 0x4a, + 0x48, 0x26, 0x59, 0x3c, 0xf9, 0x96, 0x55, 0xe8, 0x43, 0xe2, 0xb3, 0x1b, + 0xad, 0x37, 0x38, 0x34, 0x01, 0xdc, 0x69, 0x57, 0x05, 0xa3, 0x72, 0x49, + 0x39, 0x39, 0xe6, 0xae, 0x49, 0x3f, 0x15, 0xc5, 0xda, 0xea, 0xd3, 0x5a, + 0xc7, 0xb5, 0x08, 0xe7, 0xd6, 0xa7, 0x1a, 0xc5, 0xcc, 0x9d, 0x64, 0xc7, + 0xd0, 0x50, 0x07, 0x45, 0x34, 0x84, 0xe7, 0x9a, 0xae, 0xd2, 0x0e, 0x79, + 0xac, 0x53, 0x77, 0x2c, 0x83, 0x97, 0x35, 0x13, 0x48, 0xfd, 0xd8, 0xd0, + 0x06, 0xc3, 0x4c, 0x3d, 0x69, 0x86, 0x61, 0xeb, 0x59, 0x1b, 0x89, 0xee, + 0x69, 0x77, 0x1f, 0x53, 0x40, 0x1a, 0x8d, 0x28, 0xf5, 0xa6, 0xf9, 0xa3, + 0xd6, 0xb3, 0x83, 0x11, 0xde, 0x82, 0xe7, 0xd6, 0x80, 0x2e, 0xdc, 0x5c, + 0x2c, 0x70, 0x39, 0x66, 0x20, 0x63, 0xb5, 0x43, 0x6b, 0x7f, 0x69, 0x94, + 0x56, 0x7c, 0xa3, 0x1e, 0x8e, 0xc7, 0x02, 0xa8, 0x5f, 0x39, 0xfb, 0x33, + 0x0c, 0xd6, 0x45, 0x00, 0x74, 0xd2, 0xea, 0x56, 0x36, 0xd2, 0x32, 0x8d, + 0xb2, 0xe0, 0xe3, 0x2b, 0xc8, 0xa7, 0x8f, 0x13, 0xda, 0x85, 0x03, 0xc8, + 0xce, 0x3a, 0x7c, 0xa2, 0xb9, 0x6a, 0x75, 0x00, 0x74, 0xd2, 0xf8, 0xae, + 0x17, 0x52, 0xa2, 0xd1, 0x49, 0xc7, 0x04, 0xd7, 0xaf, 0x7e, 0xcd, 0x9a, + 0xe2, 0x5e, 0xf8, 0x87, 0x51, 0xf3, 0xa1, 0x31, 0xa4, 0x56, 0x4e, 0x43, + 0x0e, 0x46, 0x7d, 0x2b, 0xe7, 0xb1, 0x5f, 0x53, 0xfe, 0xc8, 0x3a, 0x62, + 0xc9, 0xa5, 0xf8, 0x8a, 0x62, 0x81, 0xb3, 0x6a, 0xe4, 0x92, 0x3a, 0x62, + 0x80, 0x3e, 0x8b, 0xf0, 0x6c, 0x56, 0xd6, 0x9e, 0x0f, 0xb1, 0x82, 0xd9, + 0xd0, 0x10, 0x83, 0x70, 0x07, 0x25, 0x49, 0xe7, 0x9a, 0xbe, 0x96, 0x91, + 0x6e, 0xdc, 0xc1, 0xa5, 0x6f, 0x53, 0x4b, 0xa3, 0xe9, 0xd0, 0x41, 0xe1, + 0xfb, 0x26, 0xb7, 0x02, 0x32, 0xf1, 0xa9, 0x62, 0xa3, 0xa9, 0xc5, 0x4e, + 0x20, 0x94, 0x74, 0x7c, 0xd0, 0x02, 0x2d, 0xa4, 0x05, 0x83, 0x32, 0xf3, + 0xe9, 0x56, 0xd1, 0xd6, 0x31, 0x84, 0x4f, 0xd2, 0xa2, 0x46, 0x74, 0x3c, + 0xae, 0x7d, 0xea, 0x75, 0x97, 0xda, 0x80, 0x0f, 0x36, 0x46, 0xf5, 0x14, + 0xa9, 0x19, 0x6f, 0xbc, 0x33, 0xf5, 0xa9, 0x63, 0x60, 0x7b, 0xe2, 0xa6, + 0x45, 0xe9, 0xc8, 0xeb, 0x40, 0x12, 0xca, 0xbb, 0x0a, 0x26, 0xd1, 0xf2, + 0xad, 0x39, 0x4b, 0x91, 0xe9, 0xf4, 0xa9, 0xae, 0x23, 0x3e, 0x71, 0x24, + 0xfa, 0x52, 0x05, 0xc7, 0x7a, 0x00, 0x62, 0xa1, 0x3d, 0x4d, 0x4a, 0x91, + 0x0f, 0x5a, 0x51, 0x8a, 0x90, 0x01, 0xe9, 0x40, 0x0e, 0x8d, 0x14, 0x76, + 0xa9, 0x4b, 0x61, 0x69, 0x8a, 0x38, 0xa5, 0x7f, 0xbb, 0x40, 0x08, 0xad, + 0x9a, 0xb6, 0x87, 0x02, 0xa9, 0xa7, 0xde, 0xab, 0x4a, 0x71, 0x40, 0x12, + 0xee, 0x3d, 0xa9, 0xc2, 0x33, 0x21, 0xf9, 0x8d, 0x46, 0x1b, 0x9a, 0x91, + 0x5e, 0x80, 0x2d, 0x43, 0x02, 0x2f, 0x5c, 0x55, 0xf8, 0xa4, 0x44, 0x1c, + 0x56, 0x52, 0xcb, 0x53, 0x23, 0xfb, 0xd0, 0x06, 0xaf, 0xdb, 0x3b, 0x03, + 0x4a, 0x93, 0x16, 0x3c, 0xf4, 0xaa, 0x11, 0xbf, 0xbd, 0x59, 0x8d, 0xf3, + 0x40, 0x16, 0x24, 0x98, 0xa4, 0x75, 0x42, 0xda, 0xf3, 0x7d, 0xd8, 0xab, + 0x13, 0xbf, 0xee, 0xce, 0x6b, 0x3a, 0xcc, 0x6e, 0xbd, 0x1f, 0x5a, 0x00, + 0xeb, 0xe1, 0x6d, 0xdb, 0x45, 0x75, 0xbe, 0x1c, 0x48, 0x5a, 0x45, 0x13, + 0x21, 0x65, 0xf5, 0x06, 0xb8, 0xeb, 0x5f, 0xbc, 0x2b, 0xa5, 0xd2, 0x9d, + 0x93, 0x1b, 0x7f, 0x5a, 0x00, 0xf6, 0x2d, 0x07, 0x4e, 0xd0, 0xde, 0x35, + 0x27, 0xcb, 0x2d, 0xdc, 0x31, 0xad, 0xe9, 0x35, 0xad, 0x1b, 0x48, 0x87, + 0x83, 0x1a, 0x81, 0xd9, 0x45, 0x79, 0x55, 0x83, 0x4d, 0x38, 0x08, 0xaa, + 0x17, 0xde, 0xba, 0x5d, 0x2f, 0xc3, 0x42, 0x66, 0x0f, 0x75, 0x2e, 0x50, + 0x72, 0x41, 0xa0, 0x0d, 0x6b, 0xbd, 0x63, 0xfe, 0x12, 0xd8, 0xa5, 0xb4, + 0x5d, 0x3a, 0x36, 0xb2, 0x60, 0x55, 0xe4, 0xb8, 0x5c, 0xae, 0x3e, 0x9d, + 0xeb, 0xe6, 0x8f, 0x8c, 0x3f, 0xb0, 0xee, 0x8f, 0xe2, 0x38, 0x26, 0xd4, + 0xfc, 0x33, 0xb7, 0x4d, 0xd4, 0x02, 0xb3, 0x98, 0xd7, 0xfd, 0x5c, 0x87, + 0xdd, 0x6b, 0xea, 0x64, 0x31, 0xc5, 0x07, 0x95, 0x02, 0x88, 0xe2, 0x5f, + 0xcc, 0xd4, 0xd1, 0x49, 0x98, 0xf1, 0x40, 0x1f, 0x8d, 0x1e, 0x3c, 0xf0, + 0x86, 0xbd, 0xf0, 0xb7, 0x5c, 0x5b, 0x0d, 0x7f, 0x49, 0xf2, 0x98, 0x39, + 0x54, 0x9f, 0x61, 0xd9, 0x20, 0xf6, 0x35, 0x8b, 0x3f, 0x8a, 0x60, 0x48, + 0xd5, 0xb7, 0xec, 0x00, 0x67, 0x6a, 0x0c, 0x57, 0xeb, 0xff, 0x00, 0xc4, + 0xaf, 0x85, 0xbe, 0x1a, 0xf8, 0xa3, 0xa3, 0xcb, 0xa6, 0x6b, 0x76, 0x10, + 0xcc, 0xb2, 0x0c, 0x09, 0x0a, 0x8d, 0xca, 0x7d, 0x41, 0xaf, 0xce, 0x0f, + 0xda, 0x2b, 0xf6, 0x23, 0xf1, 0x07, 0xc3, 0x59, 0x2e, 0x35, 0x4d, 0x09, + 0xe5, 0xd5, 0xb4, 0x11, 0x97, 0xc2, 0x73, 0x24, 0x43, 0xd3, 0x1d, 0xe8, + 0x03, 0xc1, 0x93, 0x5d, 0x6d, 0x46, 0x2b, 0x87, 0x99, 0x77, 0x09, 0x0e, + 0x30, 0xfd, 0x87, 0x6a, 0xcf, 0xb7, 0xf1, 0x13, 0xc6, 0x5e, 0xd8, 0xc8, + 0x01, 0x8f, 0x85, 0x19, 0xe3, 0x1d, 0xab, 0x9c, 0xbe, 0x41, 0x6c, 0xac, + 0x59, 0xe4, 0x3b, 0x4e, 0x0a, 0x9e, 0x3e, 0xb5, 0x4e, 0xe1, 0xad, 0x03, + 0x24, 0x89, 0xbf, 0x24, 0x75, 0xa0, 0x0e, 0xdf, 0xc1, 0xbe, 0x27, 0x6d, + 0x37, 0xc6, 0xe4, 0x47, 0x32, 0x66, 0xe2, 0x3e, 0x98, 0xc8, 0x2d, 0x53, + 0x78, 0xc7, 0xc4, 0x0f, 0x69, 0xac, 0x39, 0x5d, 0xbb, 0x81, 0xdc, 0x0f, + 0xae, 0x7a, 0xd7, 0x0d, 0x6f, 0x79, 0x06, 0x9b, 0xa9, 0xd8, 0xdd, 0xaa, + 0x9d, 0xc9, 0x20, 0x1b, 0xb3, 0xeb, 0x5d, 0x0f, 0x8c, 0x6e, 0x21, 0x37, + 0xd1, 0x4d, 0x2a, 0x06, 0x0e, 0x80, 0x67, 0x34, 0x01, 0x9f, 0xa9, 0xf8, + 0x89, 0xee, 0xa3, 0x52, 0x25, 0x01, 0x73, 0x9d, 0xb9, 0xe9, 0x4e, 0xb5, + 0xf1, 0x0c, 0x90, 0x21, 0x3e, 0x7a, 0x92, 0xdf, 0x7b, 0x35, 0x92, 0x2e, + 0x6c, 0x52, 0x4c, 0xf9, 0x65, 0xcf, 0xf0, 0xaa, 0x1e, 0xf5, 0x20, 0xbb, + 0xb7, 0xf2, 0xcb, 0x34, 0x48, 0x5c, 0x7f, 0x09, 0x3c, 0xd0, 0x06, 0x9d, + 0xb6, 0xbc, 0x61, 0xf3, 0x33, 0x38, 0x0a, 0x72, 0x47, 0xb5, 0x62, 0xa5, + 0xf6, 0x56, 0x69, 0xe4, 0x7f, 0x9a, 0x57, 0xc9, 0xcf, 0x71, 0x51, 0x5d, + 0xea, 0x50, 0x79, 0x44, 0xb4, 0x2a, 0x3b, 0x00, 0x0d, 0x50, 0x96, 0xe6, + 0x3c, 0x05, 0x2a, 0xc1, 0x3b, 0x00, 0x68, 0x03, 0xa4, 0xd3, 0xb5, 0x65, + 0x49, 0x44, 0x8a, 0xc0, 0x32, 0xf3, 0xcf, 0xa5, 0x75, 0x51, 0x78, 0xc7, + 0x6c, 0x7f, 0x2a, 0xaf, 0x4e, 0xb5, 0xe7, 0xb0, 0x05, 0x95, 0x57, 0xcb, + 0x46, 0x2c, 0xcb, 0x9f, 0xc2, 0xbd, 0x33, 0xe1, 0x3f, 0xc0, 0x9f, 0x12, + 0x7c, 0x5e, 0xd5, 0xa2, 0xb2, 0xd3, 0x6c, 0xa6, 0xb7, 0xb5, 0x27, 0xf7, + 0x97, 0x92, 0x2f, 0xca, 0x07, 0x7c, 0x7a, 0xd0, 0x06, 0x65, 0x8e, 0xa5, + 0x75, 0xe2, 0x1b, 0xd6, 0xb5, 0xb6, 0xb7, 0x9a, 0xf2, 0xea, 0xe0, 0xed, + 0x48, 0xe1, 0x4c, 0x9a, 0xfa, 0xb7, 0xe0, 0x7f, 0xec, 0x57, 0xab, 0xf8, + 0xd2, 0x1b, 0x3d, 0x4f, 0xc6, 0xbf, 0xf1, 0x2f, 0xd3, 0xa3, 0x21, 0xfe, + 0xc2, 0xa3, 0xf7, 0x92, 0xff, 0x00, 0xbc, 0x7d, 0x3d, 0xab, 0xe8, 0xbf, + 0x80, 0xff, 0x00, 0xb2, 0xb7, 0x85, 0xbe, 0x0e, 0xe9, 0x71, 0xbf, 0xd9, + 0x16, 0xff, 0x00, 0x59, 0xc0, 0x32, 0x5d, 0xcc, 0x37, 0x36, 0x6b, 0xdc, + 0x63, 0x01, 0x70, 0x00, 0xc2, 0x91, 0xc0, 0x1d, 0xa8, 0x03, 0x2f, 0xc0, + 0x7e, 0x12, 0xd1, 0xfc, 0x0f, 0x6f, 0x16, 0x9b, 0xa5, 0xd8, 0xc5, 0x6d, + 0x6a, 0x17, 0x6a, 0xaa, 0xa8, 0x06, 0xbb, 0x19, 0x34, 0x73, 0xe6, 0x06, + 0x8a, 0x5d, 0x99, 0xeb, 0xbc, 0xd6, 0x06, 0xcc, 0x96, 0xc7, 0xca, 0xca, + 0x78, 0x6f, 0x4a, 0xd7, 0xb4, 0xbc, 0x9e, 0x78, 0x44, 0x2f, 0x22, 0xa2, + 0x0e, 0xac, 0xdd, 0x4d, 0x00, 0x60, 0x6a, 0xb0, 0xcc, 0xae, 0xe1, 0xdc, + 0xba, 0xa9, 0xc0, 0x1d, 0x8d, 0x72, 0x3a, 0xb2, 0xfd, 0x9a, 0x22, 0x19, + 0x71, 0x9e, 0x70, 0x6b, 0xd0, 0x7f, 0xd1, 0x90, 0x49, 0xe6, 0x33, 0x4b, + 0xb5, 0x8e, 0x31, 0xd2, 0xbc, 0xf3, 0xc4, 0x33, 0x0b, 0xdb, 0xe6, 0xdb, + 0x9d, 0x8b, 0xd0, 0x50, 0x07, 0x31, 0x76, 0xa5, 0xb0, 0x7a, 0x73, 0x59, + 0xd3, 0xae, 0xdc, 0xf7, 0xad, 0x8b, 0xb8, 0x1d, 0x54, 0x96, 0x18, 0xf6, + 0xac, 0x9b, 0x81, 0x9c, 0xd0, 0x06, 0x7c, 0xaf, 0x8e, 0xf5, 0x9d, 0x34, + 0xf8, 0x6f, 0x5a, 0xbd, 0x72, 0xb8, 0x1e, 0xf5, 0x95, 0x30, 0xe7, 0x34, + 0x00, 0xc9, 0x66, 0xc5, 0x53, 0x92, 0x43, 0xcd, 0x49, 0x37, 0x53, 0x55, + 0x64, 0x6c, 0x0e, 0xb4, 0x01, 0x0c, 0xd2, 0x63, 0xda, 0xa9, 0xc8, 0xfe, + 0xf5, 0x2c, 0xce, 0x0e, 0x6a, 0x9c, 0xd2, 0x01, 0x40, 0x0c, 0x90, 0xe4, + 0xf5, 0xaa, 0xd2, 0x47, 0x9e, 0x4d, 0x12, 0x49, 0x50, 0x34, 0xa4, 0x8a, + 0x00, 0x7f, 0x96, 0x8a, 0x3a, 0xd1, 0x98, 0xc0, 0xe9, 0x55, 0x9a, 0x4a, + 0x69, 0x93, 0x3d, 0xe8, 0x02, 0xd7, 0x9a, 0xbd, 0x80, 0xa4, 0x69, 0xb3, + 0x55, 0x4b, 0xf7, 0xcd, 0x37, 0xcd, 0xc5, 0x00, 0x5f, 0xb5, 0x98, 0xf9, + 0xa0, 0x1e, 0x87, 0x8a, 0xcc, 0xb4, 0x7d, 0x86, 0x74, 0xec, 0xb2, 0x1c, + 0x54, 0xf1, 0x4c, 0xdb, 0xc6, 0x0e, 0x2a, 0x8c, 0x27, 0x6c, 0xf7, 0x3c, + 0xff, 0x00, 0x1e, 0x68, 0x02, 0x79, 0x1b, 0x35, 0x52, 0x66, 0xce, 0x6a, + 0x67, 0x7e, 0x95, 0x04, 0xa7, 0xe5, 0xa0, 0x0a, 0x13, 0xe7, 0x3d, 0x2a, + 0xb3, 0x67, 0x82, 0x41, 0xc5, 0x5b, 0x90, 0x96, 0xfa, 0xd2, 0x14, 0xe3, + 0x9a, 0x00, 0xcf, 0x91, 0x95, 0x7b, 0x52, 0x47, 0x3c, 0x7c, 0x74, 0x18, + 0xf4, 0x35, 0x6a, 0x44, 0x52, 0x70, 0x70, 0x6a, 0x15, 0xb5, 0x47, 0x90, + 0x64, 0x62, 0x80, 0x3e, 0x79, 0xfd, 0xa7, 0xb4, 0x79, 0x35, 0x99, 0xac, + 0x6f, 0xb4, 0xe5, 0x37, 0x0b, 0x1a, 0x30, 0x94, 0xa1, 0xe5, 0x70, 0x45, + 0x7c, 0xd8, 0xcc, 0xe0, 0x90, 0x4b, 0x03, 0xdf, 0x9a, 0xfa, 0x7f, 0xf6, + 0xaf, 0x2f, 0xa3, 0xa6, 0x8e, 0x2c, 0xdd, 0xa0, 0x0e, 0xae, 0x5b, 0x61, + 0xc6, 0xee, 0x47, 0x5a, 0xf9, 0x8a, 0x79, 0x9a, 0x79, 0x5a, 0x47, 0x39, + 0x66, 0xe4, 0xd0, 0x06, 0xcd, 0x94, 0x87, 0xec, 0xa9, 0x92, 0x49, 0xa7, + 0x99, 0x47, 0xad, 0x56, 0xb6, 0x90, 0x0b, 0x68, 0xc6, 0x3b, 0x53, 0xd9, + 0xd0, 0xfd, 0x68, 0x02, 0x43, 0x25, 0x30, 0xc9, 0x51, 0x16, 0x14, 0xdd, + 0xd4, 0x01, 0x38, 0x93, 0xde, 0x83, 0x26, 0x6a, 0x0d, 0xde, 0xf4, 0x9b, + 0x88, 0xa0, 0x09, 0xcb, 0xd2, 0x17, 0xe6, 0xa0, 0xf3, 0x29, 0xa6, 0x4c, + 0xd0, 0x05, 0x85, 0x6c, 0xd4, 0xc8, 0xd5, 0x52, 0x16, 0xce, 0x6a, 0x75, + 0x7c, 0x7b, 0xd0, 0x05, 0xc4, 0x3c, 0xd4, 0xeb, 0x38, 0x4e, 0xa7, 0x15, + 0x9f, 0xe6, 0xe3, 0xa9, 0xc7, 0xb0, 0xa6, 0xb5, 0xc7, 0x1c, 0x71, 0xfc, + 0xe8, 0x03, 0x63, 0xfb, 0x5b, 0xc9, 0xb7, 0x74, 0x89, 0x98, 0x4d, 0x27, + 0xcb, 0xc1, 0xc6, 0x05, 0x66, 0x23, 0xa7, 0xda, 0xf7, 0x7d, 0xbe, 0x58, + 0xf6, 0xb6, 0x54, 0xf3, 0xc5, 0x52, 0x79, 0x0b, 0x77, 0xfc, 0x6a, 0x0e, + 0xf4, 0x01, 0xdf, 0xd9, 0xeb, 0xf2, 0xf1, 0x8d, 0x46, 0x16, 0x6f, 0x57, + 0x53, 0x93, 0x5b, 0x9a, 0x76, 0xb5, 0x7b, 0x34, 0xf1, 0x47, 0x1c, 0x96, + 0x93, 0x33, 0xb0, 0x50, 0x03, 0xe0, 0x9c, 0x9a, 0xf2, 0x94, 0xae, 0xbf, + 0xe1, 0x5e, 0x96, 0x75, 0xaf, 0x1f, 0xe8, 0xd6, 0xbc, 0x95, 0x33, 0x87, + 0x23, 0xd9, 0x79, 0xfe, 0x94, 0x01, 0xf7, 0x9e, 0x95, 0xf1, 0x0a, 0xfb, + 0x4a, 0xf0, 0xed, 0x8d, 0x8a, 0xd9, 0x5a, 0xfe, 0xe6, 0x15, 0x5c, 0xed, + 0x39, 0xe9, 0xf5, 0xaa, 0x83, 0xc7, 0xba, 0xdb, 0xe4, 0x47, 0x72, 0x2d, + 0xd4, 0xf6, 0x89, 0x00, 0xfd, 0x6b, 0x2e, 0xea, 0x10, 0x38, 0x1d, 0xa9, + 0x6d, 0x6d, 0x81, 0x61, 0x40, 0x1a, 0x63, 0x53, 0xd4, 0x2f, 0xce, 0x6e, + 0x2f, 0x27, 0x9b, 0xfd, 0xf7, 0x26, 0xae, 0x5a, 0xda, 0x96, 0x3c, 0x8c, + 0xfd, 0x69, 0xb6, 0x76, 0xe0, 0x62, 0xb6, 0x2d, 0x61, 0x03, 0x14, 0x01, + 0x25, 0x9d, 0x99, 0x38, 0xe2, 0xb7, 0xec, 0x6c, 0xb0, 0x01, 0xc5, 0x57, + 0xb2, 0x8b, 0x18, 0xe2, 0xb7, 0x2d, 0x23, 0xe9, 0x40, 0x17, 0x6c, 0x2c, + 0x81, 0x22, 0xba, 0x7d, 0x3e, 0xd4, 0x0c, 0x71, 0x59, 0x16, 0x2b, 0xb4, + 0x8e, 0x2b, 0x7e, 0xcd, 0x80, 0x22, 0x80, 0x37, 0xac, 0x22, 0x0a, 0x05, + 0x74, 0xfa, 0x62, 0x8c, 0x0e, 0x95, 0xcd, 0x59, 0xc8, 0x38, 0xad, 0xdb, + 0x19, 0xb6, 0xe3, 0xd2, 0x80, 0x3a, 0xcb, 0x12, 0x17, 0x15, 0xb6, 0xac, + 0xbe, 0x44, 0x9f, 0xee, 0x1f, 0xe5, 0x5c, 0xb5, 0x9d, 0xd8, 0xc7, 0x5a, + 0xd4, 0x5b, 0xbd, 0xb0, 0x49, 0xcf, 0xf0, 0x9f, 0xe5, 0x40, 0x19, 0xb6, + 0x97, 0xe7, 0xc8, 0x8f, 0x9f, 0xe1, 0x1f, 0xca, 0xa7, 0x37, 0xfe, 0xf5, + 0xca, 0x5b, 0xdf, 0x91, 0x04, 0x7c, 0xff, 0x00, 0x08, 0xa9, 0xbe, 0xdf, + 0xea, 0x68, 0x03, 0xa0, 0x93, 0x50, 0xf7, 0xaa, 0x53, 0xdf, 0xe3, 0x3c, + 0xd6, 0x4b, 0xdf, 0xfb, 0xd5, 0x59, 0x6f, 0x49, 0x07, 0x9a, 0x00, 0xbd, + 0x73, 0x78, 0x4e, 0x70, 0x6b, 0x1e, 0xee, 0xe4, 0x92, 0x4e, 0x6a, 0x39, + 0xee, 0xf8, 0x3c, 0xfe, 0x15, 0x9d, 0x71, 0x75, 0x9e, 0xa6, 0x80, 0x21, + 0xbb, 0xb8, 0xc6, 0x6b, 0x0e, 0xf2, 0x62, 0x73, 0x56, 0xee, 0xae, 0x37, + 0x66, 0xb2, 0x6e, 0xa6, 0xeb, 0x40, 0x19, 0x97, 0xb2, 0x01, 0x9e, 0x6b, + 0x02, 0xf0, 0x83, 0x9a, 0xd8, 0xbb, 0x70, 0xc6, 0xb1, 0x6e, 0xc8, 0xc9, + 0xa0, 0x0c, 0x99, 0x0e, 0x1e, 0xb9, 0xaf, 0x8b, 0x1a, 0x28, 0xf1, 0x27, + 0xc3, 0x2d, 0x7a, 0xc7, 0x19, 0x77, 0xb6, 0x66, 0x5e, 0x3a, 0x10, 0x33, + 0x5d, 0x1d, 0xc3, 0xe1, 0xa9, 0x1d, 0x56, 0xee, 0xc6, 0xe2, 0x06, 0xe4, + 0x49, 0x1b, 0x21, 0xfc, 0x45, 0x00, 0x7e, 0x5d, 0xca, 0x30, 0xc4, 0x7a, + 0x54, 0x44, 0xe6, 0xb7, 0x3c, 0x6b, 0xa6, 0x1d, 0x17, 0xc5, 0x9a, 0xbd, + 0x89, 0x5d, 0xa2, 0x0b, 0xa9, 0x10, 0x03, 0xe8, 0x18, 0xe3, 0xf4, 0xac, + 0x2c, 0xd0, 0x02, 0x1a, 0x8d, 0x8d, 0x48, 0x6a, 0x37, 0x34, 0x00, 0xaa, + 0x4e, 0xda, 0xb3, 0x09, 0xc8, 0xaa, 0xd1, 0xf2, 0x0d, 0x4f, 0x11, 0xc1, + 0xa0, 0x0b, 0x48, 0x78, 0xa7, 0x11, 0x9c, 0x9a, 0x62, 0x1c, 0x9a, 0x92, + 0x80, 0x19, 0x8a, 0x31, 0x4f, 0xc5, 0x34, 0x8a, 0x00, 0x6f, 0x4a, 0x42, + 0x69, 0x4d, 0x30, 0xd0, 0x04, 0x57, 0x67, 0x30, 0x35, 0x65, 0xd6, 0x95, + 0xd7, 0xfa, 0x86, 0xf4, 0xac, 0xda, 0x00, 0x29, 0x45, 0x20, 0xa5, 0xa0, + 0x05, 0x1d, 0x6b, 0xec, 0xdf, 0xd8, 0xeb, 0x4b, 0x45, 0xf8, 0x77, 0xe3, + 0x2b, 0xb7, 0x9d, 0x04, 0xb1, 0x58, 0xbb, 0x08, 0xc1, 0xc9, 0xc3, 0x74, + 0xfc, 0x78, 0xaf, 0x8e, 0xac, 0x2c, 0x27, 0xd4, 0xae, 0xe3, 0xb6, 0xb6, + 0x8c, 0xcb, 0x34, 0x87, 0x6a, 0xa2, 0xf5, 0x26, 0xbe, 0x8b, 0xfd, 0x9e, + 0x34, 0xbd, 0x43, 0x44, 0xf0, 0xa7, 0x8a, 0xef, 0x64, 0xba, 0xb8, 0xd3, + 0x0c, 0x5e, 0x5a, 0x01, 0xb0, 0xed, 0x72, 0x37, 0x70, 0x78, 0xe4, 0x50, + 0x07, 0xd6, 0x1e, 0x18, 0x93, 0xce, 0xf0, 0x66, 0x9a, 0xe1, 0xb0, 0xde, + 0x50, 0xc8, 0xc5, 0x48, 0x1e, 0x54, 0x39, 0xce, 0xe1, 0x59, 0x1f, 0x0d, + 0xef, 0xaf, 0x35, 0x0f, 0x01, 0xe9, 0xb7, 0x13, 0x85, 0x63, 0x24, 0x61, + 0x8b, 0x01, 0x81, 0xd6, 0xba, 0x45, 0xda, 0x46, 0x30, 0x01, 0xa0, 0x08, + 0xa1, 0xbc, 0x53, 0xc3, 0x8c, 0x1a, 0xb6, 0xaf, 0x0b, 0x0e, 0xb5, 0x03, + 0x59, 0x23, 0x9f, 0x4a, 0x6f, 0xd8, 0x80, 0xe9, 0x9a, 0x00, 0xb8, 0xb1, + 0x46, 0xdd, 0x1f, 0x15, 0x22, 0x5b, 0x1d, 0xc0, 0x89, 0x38, 0xcd, 0x52, + 0x4b, 0x5f, 0x73, 0x56, 0xa1, 0x80, 0xa3, 0x29, 0xc3, 0x67, 0x23, 0xbd, + 0x00, 0x5b, 0xba, 0x59, 0xda, 0x73, 0x83, 0xc5, 0x24, 0x71, 0x48, 0x3e, + 0xf1, 0xa9, 0x67, 0x94, 0xf9, 0xcd, 0xc1, 0xfc, 0xe9, 0x14, 0x17, 0x1c, + 0x9c, 0x0a, 0x00, 0x72, 0x64, 0x9f, 0xd2, 0xa6, 0x5a, 0x66, 0x55, 0x46, + 0x07, 0x6a, 0x50, 0x41, 0xa0, 0x09, 0x54, 0xf6, 0xa6, 0xc8, 0x7e, 0x5a, + 0x72, 0xf1, 0x51, 0xca, 0x73, 0x40, 0x0b, 0x11, 0xcb, 0x62, 0xad, 0x83, + 0x54, 0xe0, 0xfb, 0xd5, 0x6a, 0x80, 0x24, 0xdd, 0x8a, 0x70, 0x35, 0x16, + 0x69, 0x72, 0x07, 0x7a, 0x00, 0x99, 0x5b, 0x9a, 0x95, 0x1f, 0x15, 0x5c, + 0x1a, 0x91, 0x4e, 0x28, 0x02, 0xe2, 0x3d, 0x58, 0x8d, 0xea, 0x8a, 0x35, + 0x58, 0x47, 0xa0, 0x09, 0xae, 0x64, 0xfd, 0xd9, 0xaa, 0xba, 0x5b, 0x66, + 0xef, 0xf1, 0xa5, 0xbb, 0x7f, 0x92, 0xa3, 0xd1, 0xfe, 0x6b, 0x8a, 0x00, + 0xeb, 0xed, 0x4e, 0x58, 0x57, 0x49, 0xa7, 0x37, 0x43, 0x5c, 0xc5, 0xa1, + 0xf9, 0x85, 0x74, 0x7a, 0x7b, 0x74, 0xa0, 0x0e, 0xd3, 0x49, 0x62, 0x71, + 0x83, 0x8a, 0xeb, 0xec, 0x06, 0x55, 0x72, 0x49, 0xae, 0x27, 0x47, 0xea, + 0xa3, 0xad, 0x76, 0xda, 0x70, 0xf9, 0x45, 0x00, 0x69, 0x03, 0xc0, 0x18, + 0xe0, 0x54, 0x91, 0xb3, 0x28, 0x38, 0x3f, 0x81, 0xa8, 0x87, 0x14, 0xf4, + 0x3c, 0x75, 0xa0, 0x01, 0xce, 0x5b, 0xee, 0x90, 0x7a, 0xf3, 0x54, 0x6f, + 0xec, 0x3f, 0xb5, 0x61, 0x78, 0x24, 0x50, 0xf1, 0x38, 0xc3, 0xab, 0x0c, + 0x8c, 0x55, 0xd2, 0x4e, 0x7d, 0x29, 0x36, 0xe4, 0xe4, 0x31, 0x5f, 0x51, + 0xeb, 0x40, 0x1f, 0x16, 0xfe, 0xd1, 0x7f, 0xb0, 0x06, 0x99, 0xe3, 0x13, + 0x75, 0xaa, 0xf8, 0x46, 0x61, 0xa6, 0xdf, 0xb9, 0x2e, 0xd6, 0xc4, 0x7e, + 0xed, 0xdb, 0xfa, 0x57, 0xe7, 0x77, 0xc4, 0x5f, 0x84, 0xbe, 0x30, 0xf8, + 0x61, 0xaa, 0xcb, 0xa6, 0x6b, 0x9a, 0x3d, 0xcc, 0x0e, 0xa4, 0x85, 0x91, + 0x50, 0xb2, 0x38, 0xf5, 0x06, 0xbf, 0x77, 0xa6, 0xbb, 0x8e, 0x12, 0x77, + 0x1e, 0x3d, 0xeb, 0xc8, 0x7e, 0x37, 0xf8, 0x53, 0x44, 0xf8, 0x93, 0xe1, + 0xcb, 0xdd, 0x21, 0x60, 0xff, 0x00, 0x4e, 0x96, 0x26, 0x58, 0xe7, 0x55, + 0x04, 0xc6, 0xd8, 0xe0, 0xe7, 0xb5, 0x00, 0x7e, 0x28, 0xcf, 0xa3, 0x6b, + 0x37, 0x70, 0x2f, 0x93, 0x63, 0x70, 0xe5, 0x79, 0xc0, 0x43, 0xda, 0xba, + 0x5b, 0x8f, 0x0f, 0xf8, 0x8f, 0x5c, 0xb4, 0xb7, 0x10, 0x68, 0xd7, 0x52, + 0x3a, 0xae, 0x1b, 0xe4, 0xaa, 0xff, 0x00, 0x14, 0xdb, 0xc5, 0xff, 0x00, + 0x0a, 0xfc, 0x69, 0xab, 0xf8, 0x7a, 0xef, 0x54, 0x98, 0xbd, 0xb4, 0xad, + 0x10, 0x99, 0x49, 0xc3, 0xae, 0x7a, 0x8a, 0xe3, 0xa3, 0xf8, 0x91, 0xe2, + 0x78, 0x54, 0xaa, 0x6b, 0x77, 0x80, 0x11, 0x83, 0x89, 0x0d, 0x00, 0x76, + 0x71, 0x7c, 0x2f, 0xf1, 0x78, 0xfd, 0xe4, 0x9a, 0x1d, 0xc1, 0x41, 0xd3, + 0x80, 0x29, 0xff, 0x00, 0xf0, 0x80, 0x78, 0xa9, 0x1b, 0x7b, 0x68, 0xf3, + 0x2f, 0xaf, 0xca, 0x31, 0x5c, 0x3f, 0xfc, 0x2c, 0x7f, 0x13, 0x94, 0x65, + 0x3a, 0xe5, 0xe9, 0x56, 0xe0, 0x83, 0x29, 0xa8, 0x93, 0xc7, 0xde, 0x22, + 0x40, 0x54, 0x6a, 0xf7, 0x78, 0x6e, 0xa0, 0xc8, 0x4d, 0x00, 0x74, 0xf7, + 0xfe, 0x0d, 0xd7, 0xa4, 0x3e, 0x59, 0xd3, 0xa5, 0x40, 0x1b, 0x71, 0xe3, + 0x9a, 0x93, 0x49, 0xf8, 0x79, 0xe2, 0x1d, 0x52, 0xf9, 0x61, 0x8f, 0x4d, + 0xb8, 0x67, 0x23, 0xe5, 0xca, 0xf5, 0xf6, 0xae, 0x35, 0x7c, 0x59, 0xac, + 0x36, 0x41, 0xd4, 0x67, 0x39, 0x39, 0xe5, 0xcf, 0x5a, 0xfd, 0x4e, 0xfd, + 0x91, 0xfe, 0x13, 0x69, 0x9a, 0x1f, 0xc2, 0xfd, 0x0f, 0x56, 0xb9, 0xc6, + 0xa7, 0xa9, 0xde, 0xc6, 0x2e, 0xa4, 0xb9, 0x98, 0x6e, 0x2b, 0x9e, 0x80, + 0x67, 0xa0, 0xa0, 0x0f, 0x16, 0xfd, 0x9b, 0xff, 0x00, 0x62, 0x5d, 0x47, + 0x5d, 0x31, 0xeb, 0x9e, 0x30, 0x46, 0xb1, 0xb3, 0xc8, 0x31, 0xd8, 0x9f, + 0xbc, 0xc3, 0xfd, 0xaf, 0xf0, 0xaf, 0xd0, 0x2f, 0x05, 0xf8, 0x17, 0x4a, + 0xf0, 0x5e, 0x9d, 0x6d, 0x69, 0xa6, 0xda, 0xa4, 0x11, 0xaa, 0xe3, 0x2a, + 0xb8, 0x34, 0xeb, 0x58, 0x08, 0x48, 0x22, 0x51, 0x82, 0xc4, 0x1c, 0x57, + 0x50, 0xb0, 0xfd, 0xcc, 0x0c, 0x01, 0xde, 0x80, 0x12, 0x3c, 0xef, 0xf9, + 0x87, 0x51, 0x8a, 0x76, 0xce, 0x31, 0x83, 0xc5, 0x58, 0xfb, 0x33, 0x95, + 0x0e, 0xb8, 0xc6, 0x79, 0xcd, 0x29, 0x8f, 0x9e, 0x7f, 0x1a, 0x00, 0x81, + 0x40, 0x2d, 0x82, 0xca, 0x80, 0x8e, 0xa6, 0xb6, 0x2c, 0xee, 0x34, 0xf8, + 0x91, 0x51, 0x3f, 0xd2, 0xa7, 0x3f, 0xc3, 0xd7, 0x15, 0x90, 0xf6, 0xc9, + 0x29, 0xdb, 0x21, 0x21, 0x3b, 0xe2, 0xb7, 0xb4, 0x74, 0xb4, 0xb7, 0x8f, + 0xcb, 0xb1, 0xb7, 0x0a, 0xc7, 0xef, 0x4a, 0xf4, 0x01, 0x98, 0xf6, 0x4b, + 0x7b, 0x35, 0xc1, 0x9b, 0x31, 0x7c, 0xd9, 0xf2, 0xd4, 0x57, 0x29, 0xe2, + 0x08, 0x2d, 0xac, 0x55, 0xbc, 0xb4, 0x08, 0x73, 0xc1, 0x3d, 0x4d, 0x7a, + 0x01, 0xb5, 0x77, 0xd4, 0x26, 0x52, 0xd9, 0xca, 0x83, 0x92, 0x3e, 0xb5, + 0xc5, 0xf8, 0xbb, 0x4d, 0x51, 0x23, 0x31, 0xe4, 0xfb, 0xd0, 0x07, 0x9d, + 0xde, 0x03, 0x21, 0x63, 0xc9, 0x06, 0xb2, 0x6e, 0x20, 0x2c, 0x78, 0xad, + 0xeb, 0x94, 0x00, 0x9e, 0x33, 0x59, 0xd3, 0xa6, 0x73, 0x8e, 0x28, 0x03, + 0x02, 0xe6, 0x00, 0x32, 0x4d, 0x62, 0xdf, 0x60, 0x31, 0xc0, 0xae, 0x92, + 0xf2, 0x33, 0xcd, 0x73, 0x9a, 0x82, 0x61, 0xcd, 0x00, 0x65, 0xca, 0xd8, + 0xaa, 0x33, 0x31, 0xab, 0xb3, 0x0e, 0xbd, 0xea, 0x9c, 0x9d, 0x4d, 0x00, + 0x52, 0x94, 0x9e, 0xa4, 0x55, 0x19, 0x49, 0x24, 0xe6, 0xaf, 0xdc, 0x74, + 0xc6, 0x6a, 0x83, 0xae, 0x0d, 0x00, 0x56, 0x6f, 0x7a, 0x85, 0xda, 0xac, + 0x3d, 0x57, 0x7e, 0x7d, 0xa8, 0x02, 0xbb, 0xbe, 0x3b, 0x54, 0x65, 0xcf, + 0x34, 0xf9, 0x7b, 0x0a, 0x85, 0x8d, 0x00, 0x1b, 0xbb, 0x93, 0x4d, 0x32, + 0x75, 0xed, 0x4d, 0x63, 0x8f, 0x7a, 0x81, 0xe4, 0x23, 0xa7, 0x14, 0x01, + 0x69, 0x25, 0x00, 0x8e, 0x6a, 0xaf, 0x9a, 0x05, 0xcc, 0xe3, 0x24, 0x73, + 0x4d, 0x8c, 0xe5, 0xd4, 0xe6, 0xab, 0xc8, 0x58, 0x5c, 0xce, 0xc1, 0x8e, + 0x33, 0x8c, 0x66, 0x80, 0x2d, 0xf9, 0x99, 0xfa, 0x7b, 0xd3, 0x1d, 0x83, + 0x02, 0x2a, 0x8c, 0x93, 0x38, 0x3f, 0x7a, 0x81, 0x2b, 0xe3, 0xad, 0x00, + 0x4a, 0xfc, 0x74, 0x34, 0x0e, 0x46, 0x73, 0x50, 0xbb, 0x3f, 0x1e, 0x94, + 0xdd, 0xcc, 0x07, 0xb5, 0x00, 0x48, 0x54, 0x31, 0x14, 0xe8, 0x95, 0x52, + 0xe1, 0x47, 0x53, 0x51, 0xc6, 0xd8, 0x3e, 0xa6, 0xac, 0x5b, 0x20, 0xf3, + 0x41, 0x27, 0xe6, 0x3d, 0x28, 0x03, 0xe7, 0xbf, 0xdb, 0x12, 0x2c, 0xc5, + 0xa4, 0x38, 0xce, 0x02, 0x30, 0xfd, 0x45, 0x7c, 0xb0, 0x6b, 0xeb, 0x0f, + 0xdb, 0x06, 0xfa, 0xd9, 0x74, 0xfd, 0x36, 0xd4, 0xe7, 0xed, 0x7c, 0xb6, + 0x31, 0xfc, 0x3c, 0x57, 0xc9, 0xc6, 0x80, 0x3a, 0x3b, 0x1d, 0x03, 0x50, + 0xb8, 0xd1, 0x8d, 0xfc, 0x56, 0xb2, 0x49, 0x67, 0x1f, 0xdf, 0x95, 0x46, + 0x55, 0x7e, 0xb5, 0x40, 0xd6, 0xb7, 0x87, 0xbc, 0x49, 0x3f, 0x87, 0xb4, + 0xbb, 0xa8, 0xac, 0xa6, 0x99, 0x4d, 0xe4, 0x66, 0x39, 0xe3, 0x62, 0x0c, + 0x6c, 0x3e, 0x9e, 0xb5, 0x8e, 0x5b, 0x34, 0x00, 0x12, 0x68, 0xcd, 0x34, + 0xd1, 0x40, 0x0a, 0x4f, 0x14, 0x9b, 0xb1, 0x45, 0x25, 0x00, 0x1b, 0xb3, + 0xd6, 0x9a, 0x5a, 0x94, 0xd3, 0x68, 0x02, 0x48, 0x5b, 0x04, 0xd4, 0xbe, + 0x61, 0x3d, 0x38, 0x15, 0x02, 0x71, 0x9a, 0x71, 0x6a, 0x00, 0x91, 0x9f, + 0x1e, 0xf4, 0xc2, 0x4b, 0x53, 0x73, 0x9a, 0x28, 0x01, 0xd4, 0xd1, 0xd6, + 0x96, 0x80, 0x39, 0xa0, 0x07, 0x2d, 0x7b, 0x2f, 0xec, 0xbf, 0xa4, 0x7d, + 0xbb, 0xc7, 0x73, 0x5d, 0x32, 0xe5, 0x2d, 0x6d, 0xd8, 0x83, 0xe8, 0xc4, + 0x80, 0x3f, 0xad, 0x78, 0xd8, 0xaf, 0xa5, 0xff, 0x00, 0x65, 0x0d, 0x2c, + 0x43, 0xa4, 0x6b, 0x3a, 0x89, 0x1f, 0xeb, 0x24, 0x58, 0x94, 0xfd, 0x07, + 0x3f, 0xce, 0x80, 0x3d, 0xca, 0xe3, 0x97, 0xa9, 0xed, 0x23, 0xe4, 0x55, + 0x52, 0x77, 0xc8, 0x6b, 0x46, 0xd1, 0x3a, 0x50, 0x06, 0xad, 0xaa, 0x63, + 0x1c, 0x56, 0xb5, 0xaa, 0xe3, 0x15, 0x9b, 0x6a, 0x33, 0x8a, 0xd4, 0xb6, + 0x5c, 0x62, 0x80, 0x36, 0x2d, 0x46, 0x31, 0x5a, 0xf6, 0x98, 0xcd, 0x64, + 0x5b, 0x1e, 0x95, 0xa9, 0x6c, 0xf8, 0xc5, 0x00, 0x6e, 0xda, 0x1e, 0x9d, + 0xeb, 0x62, 0xd9, 0xf9, 0x15, 0x83, 0x69, 0x27, 0x22, 0xb5, 0xad, 0xe5, + 0xe4, 0x50, 0x07, 0x45, 0x67, 0x29, 0x18, 0xad, 0x8b, 0x5b, 0x9c, 0x62, + 0xb9, 0x8b, 0x69, 0xb0, 0x3a, 0xf3, 0x5a, 0x76, 0xf7, 0x58, 0xc7, 0x34, + 0x01, 0xd4, 0xdb, 0xdc, 0xe3, 0x1c, 0xe2, 0xaf, 0xfd, 0xbb, 0xfd, 0x1e, + 0x4e, 0x7f, 0x84, 0xff, 0x00, 0x2a, 0xe6, 0x21, 0xba, 0xf7, 0xab, 0x2f, + 0x7b, 0xfb, 0x87, 0xe7, 0xf8, 0x4f, 0xf2, 0xa0, 0x0c, 0xcb, 0x7b, 0xcf, + 0xdc, 0xc7, 0xfe, 0xe8, 0xfe, 0x55, 0x27, 0xdb, 0x01, 0xef, 0x58, 0x50, + 0xdc, 0x9f, 0x29, 0x39, 0xe7, 0x68, 0xa9, 0x0d, 0xd1, 0xf5, 0xa0, 0x0d, + 0x76, 0xba, 0xcf, 0x7a, 0xaf, 0x25, 0xce, 0x01, 0xe6, 0xb3, 0x5e, 0xe8, + 0x8e, 0xf5, 0x04, 0x97, 0x64, 0xf5, 0xa0, 0x0b, 0xd2, 0xdc, 0x8f, 0x5a, + 0xa3, 0x3c, 0xa0, 0xe7, 0xe6, 0xaa, 0xf2, 0x5c, 0x93, 0xd6, 0xaa, 0x4d, + 0x70, 0x68, 0x00, 0xb8, 0x94, 0x73, 0xcd, 0x65, 0x5c, 0xcd, 0x82, 0x79, + 0x35, 0x2d, 0xc5, 0xc1, 0x1c, 0x75, 0xac, 0xdb, 0x89, 0x33, 0x9a, 0x00, + 0xad, 0x73, 0x21, 0x39, 0xe6, 0xb2, 0x2e, 0xdf, 0x83, 0xeb, 0x57, 0xee, + 0x1f, 0x83, 0x59, 0x57, 0x47, 0x20, 0xd0, 0x06, 0x74, 0xed, 0xcd, 0x32, + 0xda, 0x7c, 0x31, 0x19, 0xa4, 0xb8, 0x6e, 0xb5, 0x43, 0xcf, 0xf2, 0xe4, + 0xa0, 0x0f, 0x88, 0x3f, 0x69, 0x4d, 0x1f, 0xfb, 0x23, 0xe2, 0xce, 0xad, + 0x85, 0xc2, 0x5c, 0x6d, 0x99, 0x7f, 0x11, 0x8f, 0xe6, 0x0d, 0x79, 0x5f, + 0x7a, 0xfa, 0x1f, 0xf6, 0xc4, 0xd2, 0xc2, 0x78, 0x9b, 0x49, 0xd4, 0x94, + 0x7f, 0xaf, 0x80, 0xc4, 0x4f, 0xfb, 0xa7, 0x3f, 0xd6, 0xbe, 0x78, 0x1d, + 0x68, 0x01, 0x4f, 0xa5, 0x44, 0xf5, 0x31, 0xa8, 0x5e, 0x80, 0x16, 0x2c, + 0x73, 0x52, 0xa1, 0xc1, 0xa8, 0x93, 0xa9, 0xa7, 0x8a, 0x00, 0xb8, 0x86, + 0xa5, 0x07, 0x8a, 0xad, 0x1b, 0x71, 0x53, 0x06, 0xa0, 0x07, 0xd2, 0x1a, + 0x33, 0x48, 0x4d, 0x00, 0x21, 0xa6, 0x1a, 0x71, 0xa4, 0xa0, 0x08, 0x6e, + 0x47, 0xfa, 0x3b, 0xfd, 0x2b, 0x2b, 0xb5, 0x6a, 0xdd, 0xff, 0x00, 0xa8, + 0x7f, 0x5c, 0x56, 0x50, 0xa0, 0x05, 0x1d, 0x69, 0x45, 0x20, 0xeb, 0x4a, + 0x28, 0x02, 0xfe, 0x8b, 0xaa, 0xc9, 0xa2, 0xea, 0x11, 0x5d, 0xc3, 0xfe, + 0xb6, 0x3e, 0x54, 0xfa, 0x1a, 0xfa, 0xef, 0xe0, 0xd7, 0xc4, 0xeb, 0x7d, + 0x7f, 0xe0, 0xf6, 0xaf, 0xa5, 0xdc, 0xc7, 0x24, 0x9a, 0x84, 0x60, 0xb4, + 0xd2, 0xec, 0x18, 0x23, 0x92, 0x30, 0x45, 0x7c, 0x6e, 0xb5, 0xf6, 0x47, + 0xec, 0x29, 0xf0, 0xed, 0xfe, 0x21, 0xd9, 0xf8, 0xaa, 0xce, 0x31, 0xbf, + 0xca, 0xb3, 0x92, 0x76, 0x53, 0xd8, 0x2a, 0x8f, 0xf1, 0xa0, 0x0f, 0x6e, + 0xf8, 0x5d, 0x6e, 0x7f, 0xe1, 0x56, 0xe8, 0xc4, 0x9c, 0x7e, 0xe4, 0x75, + 0xfa, 0xd6, 0xb1, 0x82, 0x45, 0xe4, 0x36, 0x71, 0x55, 0x7c, 0x13, 0x63, + 0xf6, 0x1f, 0x00, 0x69, 0x51, 0xf4, 0x74, 0x8f, 0x6e, 0x33, 0xef, 0x57, + 0x92, 0x6e, 0x70, 0x46, 0x0d, 0x00, 0x3e, 0x0b, 0x82, 0x0e, 0xd7, 0x1c, + 0xd5, 0xc5, 0x70, 0xc3, 0x81, 0x54, 0x1d, 0x77, 0x74, 0x34, 0x89, 0x24, + 0x91, 0x63, 0x9a, 0x00, 0xd1, 0x28, 0x48, 0xe0, 0x53, 0xa2, 0x86, 0x66, + 0x91, 0x3a, 0x63, 0x70, 0xaa, 0xd1, 0xdd, 0xc9, 0xea, 0x2a, 0xcc, 0x32, + 0xc9, 0x24, 0xd1, 0x82, 0x57, 0x1b, 0x85, 0x00, 0x4f, 0x71, 0x2b, 0x47, + 0x33, 0x03, 0x18, 0x3c, 0xf6, 0xa6, 0x7d, 0xa7, 0x71, 0x19, 0x5c, 0x63, + 0xb5, 0x49, 0x30, 0x06, 0x56, 0x3e, 0x61, 0xeb, 0xd0, 0xd3, 0x42, 0x8f, + 0x51, 0x40, 0x0e, 0x56, 0x04, 0xf4, 0xa9, 0x93, 0x00, 0xd4, 0x40, 0x7e, + 0x34, 0xf5, 0xfa, 0x50, 0x04, 0xdb, 0xb8, 0xa8, 0x64, 0x3c, 0x8c, 0xd4, + 0x9c, 0xff, 0x00, 0xfa, 0xaa, 0xbc, 0xad, 0x97, 0xa0, 0x09, 0xad, 0xfa, + 0xf5, 0xab, 0x55, 0x56, 0xd7, 0xa5, 0x59, 0xc9, 0xcd, 0x00, 0x3b, 0x38, + 0xa1, 0x4e, 0x69, 0x09, 0xeb, 0xc5, 0x0a, 0x70, 0x33, 0x40, 0x12, 0x03, + 0x52, 0x25, 0x40, 0x0f, 0x35, 0x2c, 0x67, 0x2b, 0x40, 0x16, 0x23, 0x6c, + 0xd4, 0xe8, 0xc2, 0xaa, 0x2b, 0x63, 0xa5, 0x23, 0xcf, 0xb2, 0x80, 0x26, + 0xbb, 0x6f, 0x96, 0x9f, 0xa1, 0xe7, 0xce, 0xac, 0x8b, 0x9b, 0xfc, 0xf1, + 0x5a, 0xbe, 0x1e, 0x7d, 0xf2, 0x0a, 0x00, 0xeb, 0x6d, 0x39, 0x61, 0x5d, + 0x0e, 0x9f, 0xf7, 0x85, 0x60, 0x59, 0x26, 0x4f, 0xe3, 0x5d, 0x16, 0x9d, + 0x19, 0x2d, 0x40, 0x1d, 0x66, 0x88, 0x9b, 0x8a, 0xd7, 0x79, 0x61, 0x19, + 0x58, 0xc7, 0x15, 0xcd, 0x78, 0x43, 0x4d, 0xfb, 0x54, 0xa8, 0x08, 0xe2, + 0xbd, 0x15, 0x74, 0xd4, 0x86, 0x1c, 0x0e, 0xb8, 0xa0, 0x0c, 0x77, 0x7c, + 0x0c, 0x66, 0x91, 0x25, 0x27, 0xa5, 0x36, 0xfc, 0x88, 0x59, 0x86, 0x6a, + 0x18, 0x9c, 0x16, 0xc6, 0x71, 0xdc, 0x50, 0x05, 0xe5, 0x97, 0x7f, 0x07, + 0x8a, 0x93, 0x6e, 0x47, 0x5a, 0x8a, 0x2c, 0x30, 0x00, 0xe3, 0x35, 0x38, + 0x50, 0x28, 0x02, 0x85, 0xd6, 0x80, 0xd7, 0xfc, 0x79, 0x85, 0x41, 0xac, + 0x1d, 0x6f, 0x4d, 0xb3, 0xd0, 0xed, 0xde, 0x28, 0x40, 0x7b, 0x97, 0x52, + 0x5d, 0xfb, 0x81, 0x8e, 0x6b, 0xa2, 0xbc, 0xd6, 0x5a, 0xda, 0x36, 0x55, + 0x4f, 0x9b, 0xa0, 0xae, 0x2f, 0xc4, 0x0e, 0xf6, 0xfa, 0x56, 0xa1, 0x7b, + 0x39, 0x26, 0x43, 0x13, 0x90, 0x0f, 0x61, 0x8a, 0x00, 0xfc, 0x42, 0xfd, + 0xa4, 0xb5, 0xdb, 0x8d, 0x6f, 0xe3, 0x27, 0x8b, 0x1a, 0x59, 0x9a, 0x58, + 0x93, 0x50, 0x94, 0x46, 0x09, 0xc8, 0x51, 0x9c, 0x71, 0x5e, 0x58, 0x45, + 0x74, 0xdf, 0x10, 0xef, 0x8e, 0xa9, 0xe3, 0x6d, 0x76, 0xe8, 0xf5, 0x96, + 0xf6, 0x56, 0xff, 0x00, 0xc7, 0xcd, 0x73, 0x66, 0x80, 0x19, 0x8a, 0x36, + 0x92, 0x78, 0xa5, 0x34, 0xf8, 0x7e, 0xf9, 0xff, 0x00, 0x74, 0xff, 0x00, + 0x2a, 0x00, 0x6a, 0x75, 0xaf, 0xd8, 0x3f, 0xd8, 0xab, 0x51, 0x6d, 0x7b, + 0xe0, 0x07, 0x86, 0x1d, 0x98, 0x33, 0xa4, 0x3e, 0x53, 0x7e, 0x0c, 0x47, + 0xf4, 0xaf, 0xc7, 0xc4, 0xea, 0x2b, 0xf5, 0x4f, 0xfe, 0x09, 0xb1, 0xad, + 0x8b, 0xef, 0x82, 0xd3, 0x41, 0x23, 0x02, 0xd6, 0x77, 0x72, 0x44, 0xab, + 0xf5, 0xc1, 0x1f, 0xce, 0x80, 0x3e, 0xba, 0xb1, 0x5d, 0xf7, 0xb9, 0x51, + 0xf2, 0xa0, 0xc0, 0xae, 0x92, 0x38, 0xc9, 0x0a, 0x3d, 0x2b, 0x23, 0x45, + 0xb2, 0x31, 0x12, 0xf2, 0x90, 0x09, 0x39, 0xc5, 0x74, 0x50, 0xc0, 0xd2, + 0x01, 0xb5, 0x78, 0xa0, 0x0a, 0xfe, 0x5b, 0xe7, 0xae, 0x57, 0xd2, 0x9f, + 0xe5, 0xd6, 0x94, 0x7a, 0x5b, 0x3f, 0x27, 0x81, 0x56, 0x06, 0x94, 0xa0, + 0x75, 0xa0, 0x0c, 0x17, 0x40, 0x0f, 0x35, 0x7f, 0x4b, 0x9d, 0xe3, 0x7d, + 0xb1, 0x46, 0x06, 0x7a, 0xb3, 0x55, 0xc7, 0xd2, 0xd7, 0xbd, 0x41, 0x24, + 0x1e, 0x49, 0xc2, 0x2b, 0x39, 0xf4, 0x1c, 0x0a, 0x00, 0xb6, 0x1d, 0x9f, + 0x56, 0xe0, 0x83, 0xfb, 0xbe, 0x71, 0xf5, 0xac, 0x2f, 0x18, 0x69, 0x46, + 0x54, 0x32, 0x75, 0xf6, 0xad, 0xdd, 0x1f, 0x4d, 0x9a, 0xe3, 0x53, 0x0e, + 0xc7, 0x00, 0x47, 0xf7, 0x57, 0xa0, 0xe6, 0xba, 0x6b, 0xaf, 0x0e, 0xc3, + 0x77, 0x01, 0x49, 0x17, 0x39, 0x14, 0x01, 0xf3, 0x5d, 0xec, 0x3b, 0x64, + 0x65, 0xac, 0xe6, 0x87, 0x70, 0xe9, 0x5e, 0x85, 0xe2, 0xef, 0x09, 0x9b, + 0x1d, 0x4a, 0x55, 0x4f, 0xb9, 0xd4, 0x57, 0x3b, 0x1e, 0x88, 0xdd, 0xe8, + 0x03, 0x90, 0xbc, 0xb7, 0xf9, 0x7a, 0x57, 0x2b, 0xa9, 0xc0, 0xdb, 0xcf, + 0x15, 0xea, 0x1a, 0x86, 0x92, 0xb1, 0x67, 0x8c, 0x9a, 0xe3, 0x75, 0x7b, + 0x34, 0x59, 0x3a, 0x50, 0x07, 0x13, 0x3c, 0x0c, 0x39, 0xc5, 0x50, 0x96, + 0x13, 0xce, 0x79, 0xae, 0x9a, 0xea, 0x15, 0x19, 0x18, 0xc0, 0xac, 0xbb, + 0x94, 0x50, 0x68, 0x03, 0x06, 0x68, 0xcd, 0x52, 0x99, 0x4e, 0x6b, 0x62, + 0xe4, 0x01, 0xdb, 0xad, 0x50, 0x90, 0x29, 0x27, 0x1d, 0xba, 0xd0, 0x06, + 0x64, 0x91, 0x9a, 0xaf, 0x22, 0x56, 0x84, 0xcc, 0x33, 0x54, 0x27, 0x6c, + 0x8a, 0x00, 0xa8, 0xeb, 0xd6, 0xa1, 0x28, 0x01, 0x04, 0xd5, 0x86, 0x27, + 0x1c, 0x54, 0x32, 0x3e, 0x07, 0x34, 0x01, 0x14, 0xb8, 0x5a, 0xa8, 0x73, + 0x27, 0x3d, 0x2a, 0x69, 0x49, 0x66, 0xed, 0x8a, 0x63, 0x1d, 0xb4, 0x00, + 0xd4, 0xf9, 0x58, 0x63, 0x1d, 0x6a, 0x99, 0xe6, 0x69, 0xc6, 0xe1, 0x9d, + 0xd5, 0x6a, 0x33, 0xbe, 0x55, 0xfa, 0xd6, 0x79, 0x8c, 0x9b, 0xcb, 0x90, + 0x1d, 0x73, 0xbb, 0xa5, 0x00, 0x3d, 0x93, 0x8c, 0x9e, 0x69, 0x0e, 0x00, + 0xa6, 0xb4, 0x6d, 0x8e, 0x5a, 0x9a, 0x49, 0x02, 0x80, 0x11, 0xdb, 0xd0, + 0xd2, 0x07, 0x25, 0x6a, 0x26, 0x60, 0x33, 0xcf, 0x34, 0x44, 0xfb, 0xb1, + 0x40, 0x16, 0x23, 0x3b, 0x4e, 0xea, 0x96, 0xdd, 0xb7, 0x5c, 0x2b, 0x76, + 0x06, 0xab, 0x3b, 0x67, 0xe5, 0xed, 0x52, 0x44, 0xfb, 0x71, 0x83, 0x40, + 0x1f, 0x37, 0xfe, 0xd8, 0x32, 0x6e, 0xf1, 0x26, 0x9e, 0xa1, 0xb3, 0xfe, + 0x8d, 0xd3, 0xf1, 0xaf, 0x9b, 0x8f, 0x5a, 0xfa, 0x1b, 0xf6, 0xaf, 0xb5, + 0x67, 0xd7, 0x2d, 0xae, 0x4b, 0x7d, 0xd8, 0x84, 0x7b, 0x7e, 0xb9, 0x35, + 0xf3, 0xcd, 0x00, 0x68, 0x43, 0xfe, 0xa1, 0x3e, 0x94, 0xb4, 0xa9, 0xc4, + 0x29, 0xf4, 0xa4, 0xcd, 0x00, 0x25, 0x14, 0x51, 0x9a, 0x00, 0x29, 0x29, + 0x4d, 0x25, 0x00, 0x21, 0xa6, 0x53, 0xa9, 0xa7, 0x8a, 0x00, 0x50, 0x71, + 0x4b, 0x9a, 0x6a, 0xf5, 0xa5, 0xcd, 0x00, 0x3a, 0x94, 0x53, 0x45, 0x3a, + 0x80, 0x14, 0x0e, 0x69, 0x7a, 0x1a, 0x05, 0x26, 0x68, 0x01, 0xc2, 0xbe, + 0xc0, 0xf8, 0x01, 0x60, 0x34, 0xbf, 0x86, 0x76, 0x6d, 0x8d, 0xad, 0x72, + 0xed, 0x29, 0xfc, 0xf1, 0xfd, 0x2b, 0xe4, 0x08, 0x50, 0xcb, 0x22, 0xa2, + 0x8c, 0xb3, 0x1c, 0x00, 0x3b, 0x9a, 0xfb, 0x77, 0xc0, 0xb6, 0x2d, 0xa6, + 0x78, 0x4b, 0x49, 0xb4, 0x65, 0xd8, 0x63, 0x81, 0x72, 0x0f, 0x63, 0x8c, + 0xd0, 0x07, 0x51, 0x00, 0xdc, 0x6b, 0x56, 0xd1, 0x71, 0x8a, 0xcc, 0xb7, + 0x4c, 0x62, 0xb5, 0xad, 0x70, 0x08, 0xa0, 0x0d, 0x3b, 0x7c, 0x8a, 0xd5, + 0xb7, 0x38, 0xc5, 0x66, 0x41, 0xc6, 0x2b, 0x42, 0x16, 0xc5, 0x00, 0x6b, + 0x5a, 0xb5, 0x69, 0xc0, 0xf5, 0x91, 0x6e, 0xe0, 0x81, 0x5a, 0x30, 0xbf, + 0x4a, 0x00, 0xd8, 0xb5, 0x7e, 0x95, 0xa9, 0x6e, 0xfd, 0x39, 0xc5, 0x61, + 0x43, 0x26, 0x31, 0xda, 0xaf, 0xc1, 0x39, 0xa0, 0x0d, 0xe8, 0x66, 0xe9, + 0xcd, 0x68, 0x41, 0x37, 0x4e, 0x6b, 0x9f, 0x8a, 0x63, 0x57, 0x22, 0xb8, + 0x38, 0xe6, 0x80, 0x3a, 0x08, 0xae, 0xbd, 0xea, 0x69, 0x2e, 0xb1, 0x04, + 0x9f, 0xee, 0x9f, 0xe5, 0x58, 0x51, 0xdc, 0x11, 0xde, 0xa5, 0x7b, 0x92, + 0x60, 0x93, 0x9f, 0xe1, 0x3f, 0xca, 0x80, 0x29, 0x43, 0x73, 0x88, 0xd3, + 0xfd, 0xd1, 0x52, 0x1b, 0xaf, 0x7a, 0xc9, 0x86, 0x52, 0x61, 0x8f, 0xfd, + 0xd1, 0x52, 0x09, 0x71, 0xde, 0x80, 0x34, 0x1a, 0xe7, 0x22, 0xa1, 0x7b, + 0x8a, 0xa8, 0x67, 0x35, 0x1b, 0xcb, 0x9e, 0xb4, 0x01, 0x62, 0x5b, 0x8f, + 0x4a, 0xa9, 0x2c, 0xfd, 0x79, 0xa8, 0xa4, 0x90, 0x93, 0x50, 0x49, 0x21, + 0xe7, 0xbd, 0x00, 0x47, 0x3c, 0xfb, 0x8f, 0x15, 0x52, 0x47, 0x18, 0xe6, + 0xa4, 0x90, 0xe3, 0x35, 0x4e, 0x56, 0xa0, 0x08, 0xee, 0x1c, 0x60, 0xd6, + 0x65, 0xcb, 0x67, 0x35, 0x66, 0xe2, 0x4f, 0x7a, 0xa1, 0x2b, 0x75, 0xa0, + 0x0a, 0x37, 0x02, 0xb2, 0x6e, 0x49, 0x04, 0x9a, 0xd5, 0x98, 0xf5, 0xef, + 0x59, 0xd7, 0x0b, 0x9c, 0xf1, 0x40, 0x1f, 0x3f, 0x7e, 0xd6, 0x96, 0x42, + 0xeb, 0xc2, 0x1a, 0x6d, 0xde, 0x32, 0xf6, 0xf7, 0x1b, 0x73, 0xe8, 0x18, + 0x1f, 0xf0, 0x15, 0xf2, 0x80, 0xeb, 0x5f, 0x77, 0xfc, 0x5d, 0xf0, 0x79, + 0xf1, 0x97, 0x81, 0xf5, 0x3b, 0x28, 0xc7, 0xef, 0xd6, 0x33, 0x2c, 0x5f, + 0xef, 0x2f, 0x35, 0xf0, 0x8c, 0x91, 0xb4, 0x12, 0xbc, 0x6e, 0x36, 0xba, + 0x12, 0xa4, 0x1e, 0xc4, 0x50, 0x02, 0xb1, 0xa8, 0x9a, 0x9e, 0x4f, 0x15, + 0x1b, 0x50, 0x02, 0xad, 0x3c, 0x1a, 0x8d, 0x4d, 0x3b, 0xb8, 0xa0, 0x09, + 0xd0, 0xe2, 0xa6, 0x06, 0xaa, 0xa9, 0xc5, 0x4c, 0xad, 0x91, 0x40, 0x13, + 0x86, 0xa0, 0x9a, 0x8c, 0x35, 0x2e, 0x73, 0x40, 0x0e, 0x26, 0x93, 0x34, + 0xdc, 0xd1, 0x9e, 0x28, 0x02, 0x3b, 0xbc, 0x98, 0x5a, 0xb2, 0xfb, 0xd6, + 0x9d, 0xc1, 0xfd, 0xcb, 0x7d, 0x2b, 0x30, 0x75, 0xa0, 0x0b, 0xb0, 0x2c, + 0x76, 0xf6, 0xbe, 0x73, 0xc6, 0x24, 0x77, 0x25, 0x50, 0x1e, 0x83, 0x1d, + 0xea, 0xae, 0xf3, 0xf4, 0xab, 0x77, 0x30, 0xcb, 0x1e, 0x9b, 0x6a, 0xcc, + 0xb8, 0x8d, 0xcb, 0x15, 0x3f, 0x95, 0x52, 0xcd, 0x00, 0x68, 0x58, 0x4b, + 0x14, 0xb8, 0xb7, 0x96, 0x35, 0x21, 0xce, 0x04, 0x83, 0xef, 0x29, 0xaf, + 0xbd, 0x7f, 0xe0, 0x96, 0xfa, 0xb4, 0x7a, 0x57, 0x89, 0xfc, 0x49, 0x6b, + 0x34, 0x82, 0x25, 0xbe, 0xb4, 0x7b, 0x3d, 0xc7, 0xb1, 0x25, 0x7f, 0xc2, + 0xbe, 0x01, 0xb4, 0x0c, 0x6e, 0x22, 0x0b, 0xf7, 0x8b, 0x0c, 0x57, 0xd6, + 0x5f, 0xb2, 0x5e, 0xa1, 0x7d, 0xe0, 0xf1, 0xa9, 0x5f, 0x94, 0x68, 0x9b, + 0xed, 0x07, 0x6b, 0x76, 0x38, 0xc7, 0x4a, 0x00, 0xfa, 0xdb, 0xc4, 0x7a, + 0x5c, 0x3a, 0x0d, 0xfd, 0xee, 0x99, 0x6d, 0x87, 0x8a, 0xda, 0xea, 0x58, + 0xd1, 0x87, 0x42, 0x03, 0x9c, 0x56, 0x2b, 0xc5, 0xbf, 0x92, 0x30, 0xd4, + 0xeb, 0xcf, 0x11, 0xdb, 0xeb, 0x08, 0x2e, 0xe3, 0x97, 0xcf, 0x79, 0x18, + 0xb3, 0x95, 0xec, 0xc7, 0x92, 0x2a, 0x04, 0xd4, 0x97, 0xba, 0xf3, 0x40, + 0x09, 0xf3, 0x03, 0x8e, 0xd4, 0x6d, 0x93, 0xff, 0x00, 0xd7, 0x56, 0x63, + 0x9e, 0x19, 0x39, 0xe3, 0x35, 0x30, 0xb8, 0x81, 0x38, 0x3f, 0x9d, 0x00, + 0x52, 0x48, 0x1c, 0xf5, 0x62, 0xb5, 0x7e, 0xca, 0x04, 0x17, 0x09, 0xfb, + 0xc2, 0xd8, 0xc9, 0xc0, 0x1e, 0xd4, 0xe5, 0x9a, 0xdc, 0x8c, 0xe7, 0x15, + 0x35, 0xac, 0x90, 0xab, 0xbb, 0x06, 0x3f, 0x2a, 0x93, 0x40, 0x10, 0xbe, + 0xd2, 0xe7, 0xef, 0x1c, 0x9a, 0x95, 0x19, 0x7d, 0x0f, 0xe3, 0x48, 0x97, + 0x30, 0x93, 0xcb, 0x1c, 0x9f, 0x5a, 0x97, 0xcd, 0x88, 0x9e, 0x0d, 0x00, + 0x39, 0x7e, 0x98, 0xa9, 0x14, 0x10, 0x31, 0x51, 0x79, 0xa8, 0x3b, 0xd3, + 0xd5, 0xf2, 0x3b, 0xd0, 0x04, 0xd5, 0x55, 0xce, 0x5a, 0xa7, 0x79, 0x42, + 0xaf, 0x4a, 0xa8, 0x64, 0x1b, 0xa8, 0x02, 0xe5, 0xb8, 0x38, 0x03, 0xbd, + 0x58, 0xc7, 0x35, 0x5a, 0xd9, 0xc6, 0x2a, 0x7d, 0xde, 0xf4, 0x00, 0xe3, + 0x91, 0x42, 0x83, 0x4d, 0xdc, 0x09, 0xeb, 0x46, 0xe1, 0xeb, 0x40, 0x12, + 0x03, 0xcd, 0x4b, 0x1f, 0xdc, 0xcf, 0xbd, 0x57, 0x0f, 0x8e, 0xf5, 0x32, + 0x3e, 0x10, 0x50, 0x04, 0xf1, 0x8c, 0xd3, 0x8c, 0x01, 0xc6, 0x6a, 0x34, + 0x6e, 0x2a, 0x50, 0xf8, 0x5e, 0xb4, 0x01, 0x9b, 0x79, 0x6a, 0x07, 0x4a, + 0xd8, 0xf0, 0xdc, 0x78, 0x6c, 0xd6, 0x5d, 0xe3, 0xd6, 0xae, 0x80, 0xd8, + 0x14, 0x01, 0xd8, 0x58, 0x11, 0xbc, 0x8a, 0xe8, 0xb4, 0xd2, 0x37, 0xd7, + 0x29, 0x65, 0x26, 0x26, 0x03, 0xd4, 0x57, 0x47, 0xa7, 0x3f, 0x20, 0xd0, + 0x07, 0xa8, 0xf8, 0x3e, 0xed, 0x6d, 0xd8, 0x13, 0xe9, 0x5d, 0xa5, 0xce, + 0xaf, 0x1a, 0xc1, 0x90, 0xd9, 0x38, 0xe9, 0x5e, 0x55, 0xa4, 0xde, 0x18, + 0xc0, 0xe6, 0xb5, 0xee, 0x35, 0x36, 0x31, 0xe3, 0x75, 0x00, 0x69, 0x6a, + 0x9a, 0x8e, 0xf2, 0x4e, 0x7a, 0x8a, 0xab, 0x6d, 0x7f, 0xf2, 0x45, 0x26, + 0x7a, 0x70, 0x6b, 0x1a, 0xe6, 0xef, 0x72, 0x75, 0xed, 0x51, 0xd8, 0x5d, + 0x6f, 0x42, 0xa4, 0xf5, 0xa0, 0x0e, 0xce, 0x1b, 0xc1, 0xeb, 0x9a, 0xba, + 0x97, 0x80, 0xae, 0x2b, 0x93, 0xb4, 0xbc, 0x25, 0x36, 0x93, 0xc8, 0xe2, + 0xae, 0xad, 0xe6, 0x07, 0x5a, 0x00, 0xd8, 0xb8, 0x9a, 0x33, 0xd4, 0x0a, + 0xf3, 0xff, 0x00, 0x8a, 0xb7, 0xed, 0x6d, 0xe0, 0xad, 0x76, 0x74, 0xe7, + 0xcb, 0xb4, 0x93, 0x1f, 0x91, 0xae, 0x96, 0x5b, 0xdd, 0xca, 0x79, 0xae, + 0x57, 0xc6, 0x56, 0xff, 0x00, 0xda, 0xfe, 0x1e, 0xbe, 0xb2, 0xe0, 0x99, + 0xe3, 0x64, 0xc1, 0x38, 0x1d, 0x0d, 0x00, 0x7e, 0x12, 0xf8, 0xb9, 0x2d, + 0x93, 0xc4, 0x17, 0xbf, 0x64, 0x9d, 0xae, 0x61, 0x69, 0x59, 0xb7, 0xb2, + 0xed, 0x39, 0x27, 0x9f, 0xd6, 0xb1, 0x48, 0xad, 0x6f, 0x14, 0xc3, 0xf6, + 0x5f, 0x11, 0x6a, 0x90, 0xe0, 0x0f, 0x2e, 0xe6, 0x45, 0xc0, 0x39, 0xe8, + 0xc6, 0xb2, 0x09, 0xa0, 0x04, 0x22, 0x96, 0x23, 0x86, 0x3f, 0xee, 0x9f, + 0xe5, 0x4a, 0x87, 0x0e, 0x3e, 0x5d, 0xdd, 0xb1, 0x4e, 0x78, 0x4c, 0x32, + 0x6d, 0x27, 0x92, 0xb9, 0xc7, 0xe1, 0x40, 0x11, 0xa5, 0x7e, 0x92, 0xff, + 0x00, 0xc1, 0x2b, 0x6f, 0x16, 0x5d, 0x17, 0xc4, 0x76, 0x84, 0xee, 0x09, + 0x38, 0x7d, 0x8d, 0xd0, 0x12, 0x07, 0x23, 0xf2, 0xaf, 0xcd, 0x94, 0x3d, + 0x2b, 0xf4, 0x53, 0xfe, 0x09, 0x5d, 0x7a, 0x91, 0x5e, 0x78, 0x86, 0xdb, + 0x6e, 0x1d, 0xf6, 0x3f, 0xb1, 0x1c, 0xd0, 0x07, 0xe8, 0xed, 0xb4, 0x48, + 0x97, 0x44, 0xbf, 0x39, 0xf5, 0xad, 0xdb, 0x69, 0x95, 0x40, 0x0a, 0x38, + 0xae, 0x6b, 0xcd, 0xc5, 0xdb, 0x6e, 0x38, 0xad, 0x78, 0x2f, 0xa3, 0x8d, + 0x7a, 0x82, 0x68, 0x03, 0x65, 0x67, 0x62, 0x7a, 0x62, 0xa4, 0x13, 0x7a, + 0x9c, 0x56, 0x1c, 0x9a, 0xb2, 0x8c, 0xf3, 0x55, 0xa5, 0xd5, 0xf2, 0x38, + 0x34, 0x01, 0xd1, 0x35, 0xda, 0x28, 0xe7, 0x9a, 0xab, 0x73, 0xa9, 0xc2, + 0x8a, 0x78, 0xe4, 0xf4, 0x02, 0xb9, 0x89, 0xb5, 0x66, 0x00, 0xf3, 0xd6, + 0xa8, 0xcd, 0xa8, 0x31, 0xe7, 0x34, 0x01, 0xe8, 0x7e, 0x1d, 0xd5, 0x22, + 0x37, 0xe5, 0x4e, 0x14, 0x95, 0xe9, 0x9a, 0xec, 0xbc, 0xd5, 0x2b, 0x9c, + 0xf1, 0x5e, 0x05, 0x65, 0xab, 0x4b, 0x6f, 0x7a, 0xac, 0x18, 0xef, 0x23, + 0x38, 0xaf, 0x40, 0xd3, 0x3c, 0x50, 0x66, 0xb6, 0xc3, 0xb7, 0xce, 0x06, + 0x28, 0x02, 0x87, 0x8f, 0xaf, 0xed, 0xe0, 0xbc, 0x2a, 0x70, 0xcc, 0xc3, + 0x26, 0xb8, 0x85, 0xbd, 0x8d, 0xff, 0x00, 0x3a, 0xbb, 0xe3, 0x42, 0x67, + 0x91, 0xa7, 0x2f, 0xb9, 0x89, 0xc0, 0xae, 0x26, 0x2b, 0x86, 0x42, 0xc4, + 0x9e, 0xf4, 0x01, 0xb1, 0xac, 0xcc, 0x1b, 0x05, 0x71, 0x83, 0xd6, 0xb8, + 0x4d, 0x73, 0xe6, 0x60, 0x6b, 0x5f, 0x51, 0xd4, 0x48, 0x5e, 0xb5, 0xc9, + 0xea, 0xda, 0x89, 0x26, 0x80, 0x33, 0xae, 0xd1, 0xfe, 0x6a, 0xc6, 0xba, + 0x56, 0x07, 0x3d, 0x4d, 0x5d, 0xb8, 0xd4, 0x89, 0xcf, 0x20, 0xd6, 0x6c, + 0xf7, 0xa0, 0xd0, 0x05, 0x3b, 0x95, 0x6c, 0xe6, 0xb3, 0x67, 0x56, 0x52, + 0x71, 0xde, 0xaf, 0x5c, 0x5e, 0x63, 0xa0, 0xac, 0xfb, 0x8b, 0xbc, 0xf3, + 0x8e, 0x68, 0x02, 0x9c, 0xc1, 0xb3, 0xcd, 0x55, 0x93, 0xa5, 0x58, 0x96, + 0x72, 0x73, 0x9f, 0xca, 0xaa, 0xbc, 0xc3, 0x1d, 0x71, 0x40, 0x10, 0xb6, + 0xe1, 0x91, 0x55, 0xdd, 0x5b, 0x1c, 0x9a, 0x92, 0x49, 0x81, 0x38, 0xce, + 0x6a, 0xbb, 0xb9, 0x6e, 0xfc, 0x50, 0x01, 0x21, 0xda, 0x3a, 0x66, 0xa9, + 0xcb, 0x21, 0x66, 0xc6, 0x78, 0xab, 0x6e, 0xd8, 0x5c, 0x66, 0xa8, 0x48, + 0x18, 0x9a, 0x00, 0x55, 0x98, 0x07, 0x0a, 0x0f, 0x39, 0xaa, 0x7a, 0x84, + 0x12, 0xc1, 0x7f, 0x33, 0xc6, 0xb9, 0x56, 0xc1, 0xfd, 0x2a, 0x62, 0x04, + 0x6c, 0x18, 0xd4, 0xda, 0x83, 0x2b, 0xba, 0xb8, 0x1b, 0x49, 0x51, 0x9a, + 0x00, 0xc8, 0x37, 0xb2, 0xee, 0x2a, 0xcb, 0x4a, 0xb3, 0xf2, 0x33, 0xd2, + 0x9d, 0x3c, 0x7b, 0xf9, 0x1f, 0x9d, 0x57, 0x08, 0xc0, 0x8c, 0x8e, 0x05, + 0x00, 0x49, 0x20, 0xcf, 0x22, 0x96, 0x39, 0x02, 0x9c, 0x53, 0x1b, 0x27, + 0x22, 0x91, 0x41, 0x1d, 0x48, 0xa0, 0x0b, 0x0d, 0x20, 0xc6, 0x3b, 0xd3, + 0xed, 0x57, 0xf7, 0x8a, 0x4f, 0x4c, 0xf4, 0xcd, 0x40, 0xaa, 0x0f, 0x39, + 0xab, 0x16, 0xc1, 0x4c, 0xa8, 0xa7, 0xe5, 0xcf, 0x1b, 0xa8, 0x03, 0xe7, + 0xdf, 0xda, 0xaa, 0xca, 0x39, 0x08, 0x98, 0x33, 0x19, 0xc3, 0x26, 0x10, + 0x2f, 0xf0, 0xe1, 0xb2, 0x7f, 0x95, 0x7c, 0xc9, 0x5f, 0x50, 0x7e, 0xd2, + 0xf7, 0xef, 0xa0, 0x4b, 0x05, 0x8c, 0x72, 0x9b, 0x85, 0xb8, 0x8c, 0x97, + 0x69, 0x4f, 0x38, 0xec, 0x2b, 0xe5, 0xf2, 0x7e, 0x6c, 0xd0, 0x07, 0xa1, + 0xeb, 0x5e, 0x18, 0xb2, 0xb7, 0xf0, 0x06, 0x85, 0xab, 0xdb, 0xdc, 0x47, + 0xf6, 0x99, 0x55, 0x92, 0x68, 0x77, 0x8d, 0xdd, 0x4e, 0x0e, 0x2b, 0x8d, + 0xa1, 0x2e, 0x1d, 0xed, 0xa3, 0x8f, 0x71, 0x2a, 0x07, 0x42, 0x69, 0xb4, + 0x00, 0xb9, 0xa4, 0xa2, 0x8c, 0xd0, 0x01, 0x9a, 0x42, 0x68, 0xcd, 0x21, + 0x34, 0x00, 0x99, 0xa6, 0x31, 0xa7, 0x13, 0x51, 0x93, 0x93, 0x40, 0x0f, + 0x43, 0x4e, 0xa6, 0x27, 0x7a, 0x70, 0xa0, 0x07, 0x0a, 0x70, 0xa6, 0x0a, + 0x78, 0xa0, 0x05, 0x14, 0x9d, 0xe9, 0x69, 0x33, 0xcd, 0x00, 0x76, 0xdf, + 0x07, 0x7c, 0x32, 0x7c, 0x55, 0xe3, 0xdd, 0x36, 0xd4, 0xa6, 0xe8, 0x63, + 0x7f, 0x3a, 0x4f, 0xf7, 0x57, 0x9f, 0xe7, 0x8a, 0xfb, 0x3a, 0x48, 0x84, + 0x72, 0x05, 0x51, 0x80, 0x06, 0x00, 0xaf, 0x0b, 0xfd, 0x94, 0x7c, 0x34, + 0x23, 0xb7, 0xd5, 0x35, 0xd9, 0x53, 0xa9, 0x10, 0x44, 0x4f, 0xe6, 0x7f, + 0x9d, 0x7b, 0xb1, 0x3b, 0xa5, 0x34, 0x01, 0x66, 0xdc, 0x72, 0x31, 0x5a, + 0x96, 0xfd, 0xbd, 0x6b, 0x36, 0x01, 0xf3, 0x0a, 0xd1, 0x80, 0xf4, 0xe7, + 0x9a, 0x00, 0xd3, 0x83, 0x9a, 0xbf, 0x09, 0xac, 0xd8, 0x98, 0xf1, 0x57, + 0xa1, 0x7e, 0x05, 0x00, 0x69, 0xdb, 0xf6, 0xc5, 0x5f, 0x89, 0xeb, 0x2a, + 0x17, 0xe4, 0x55, 0xe8, 0xde, 0x80, 0x35, 0x22, 0x7c, 0x0e, 0xb5, 0x72, + 0x29, 0x00, 0xac, 0xb8, 0xa5, 0xfc, 0x45, 0x59, 0x49, 0x7a, 0x50, 0x06, + 0xc4, 0x57, 0x24, 0x62, 0xad, 0xc7, 0x70, 0x31, 0xcd, 0x62, 0xc7, 0x21, + 0xe2, 0xac, 0xc7, 0x29, 0xcd, 0x00, 0x6d, 0x2d, 0xc0, 0xa7, 0x49, 0x71, + 0xfb, 0x99, 0x3f, 0xdd, 0x35, 0x96, 0xb3, 0x1e, 0x29, 0xf2, 0xca, 0x7c, + 0x99, 0x3f, 0xdd, 0x3f, 0xca, 0x80, 0x21, 0x82, 0x60, 0x61, 0x4e, 0x7f, + 0x84, 0x53, 0xcc, 0xa2, 0xb3, 0xa1, 0x97, 0x11, 0x27, 0xfb, 0xa2, 0x9e, + 0x5c, 0xf0, 0x41, 0xa0, 0x0b, 0xad, 0x2e, 0x3a, 0x54, 0x66, 0x5a, 0xab, + 0xe6, 0x11, 0x9e, 0x69, 0xac, 0xe4, 0xf7, 0xa0, 0x09, 0x9a, 0x5e, 0x2a, + 0x07, 0x93, 0xde, 0x98, 0xcf, 0xf8, 0xd4, 0x0c, 0xe6, 0x80, 0x16, 0x59, + 0x3d, 0xea, 0xac, 0x8f, 0xcf, 0xad, 0x3d, 0xdb, 0x8e, 0x95, 0x5a, 0x46, + 0x27, 0xbd, 0x00, 0x43, 0x31, 0x07, 0x35, 0x46, 0x6e, 0xbc, 0x55, 0xb9, + 0x0d, 0x52, 0x98, 0xe4, 0x9a, 0x00, 0xa9, 0x28, 0xef, 0x54, 0x26, 0xe9, + 0x57, 0xa6, 0x27, 0x15, 0x42, 0x63, 0x91, 0x40, 0x15, 0x30, 0x37, 0x60, + 0xf2, 0x0f, 0x06, 0xbe, 0x1d, 0xf8, 0xf9, 0xe0, 0xef, 0xf8, 0x43, 0xfe, + 0x22, 0x5f, 0x24, 0x69, 0xb2, 0xd6, 0xec, 0xfd, 0xa2, 0x2c, 0x0e, 0x39, + 0xea, 0x3f, 0x3f, 0xe7, 0x5f, 0x6f, 0xcc, 0x70, 0x73, 0x5e, 0x17, 0xfb, + 0x54, 0xf8, 0x54, 0x6a, 0xfe, 0x13, 0xb5, 0xd6, 0x62, 0x4c, 0xcf, 0x60, + 0xfb, 0x5c, 0x8e, 0xbb, 0x1b, 0x8f, 0xe7, 0x8a, 0x00, 0xf9, 0x34, 0xd3, + 0x1a, 0x94, 0x9a, 0x6b, 0x50, 0x02, 0x83, 0x9a, 0x5c, 0xd3, 0x01, 0xa7, + 0x03, 0x40, 0x0f, 0x06, 0xa5, 0x53, 0x50, 0x03, 0xcd, 0x3d, 0x5a, 0x80, + 0x27, 0x06, 0x9d, 0xba, 0xa2, 0x06, 0x97, 0x3c, 0xd0, 0x04, 0x99, 0xa3, + 0x34, 0xd0, 0x69, 0x09, 0xa0, 0x06, 0xdc, 0x1f, 0xdc, 0xb7, 0xd2, 0xb3, + 0xbb, 0xd5, 0xf9, 0xcf, 0xee, 0x9b, 0xe9, 0x54, 0x14, 0x73, 0x40, 0x1d, + 0x3f, 0x8a, 0x6d, 0x45, 0x9e, 0x8b, 0xa0, 0xa6, 0x30, 0xcd, 0x6e, 0x5d, + 0xbf, 0x13, 0x5c, 0xc5, 0x77, 0xba, 0xee, 0x8b, 0x3e, 0xbe, 0x2d, 0xb1, + 0x34, 0x50, 0x2d, 0xbc, 0x4b, 0x18, 0x13, 0x36, 0x32, 0x30, 0x0f, 0x15, + 0x8e, 0xde, 0x09, 0x95, 0x4e, 0x0d, 0xfd, 0xa6, 0x7d, 0x3c, 0xca, 0x00, + 0xc3, 0xb0, 0x04, 0xde, 0xc0, 0x07, 0x52, 0xe3, 0xf9, 0xd7, 0xd4, 0xbf, + 0x0e, 0x9e, 0x5d, 0x37, 0xc3, 0x77, 0xeb, 0x2b, 0x9f, 0x96, 0x66, 0xc7, + 0x3d, 0x39, 0x35, 0xf3, 0xcc, 0x3e, 0x10, 0xb8, 0xb6, 0x9a, 0x39, 0x85, + 0xcd, 0xbc, 0xa5, 0x1c, 0x36, 0xd4, 0x7e, 0x4f, 0x35, 0xf4, 0x05, 0x84, + 0xaa, 0xba, 0x36, 0xa6, 0x3e, 0xe2, 0x99, 0x63, 0xe0, 0x1e, 0x99, 0x40, + 0x4f, 0xea, 0x68, 0x03, 0xe9, 0x0f, 0x02, 0xdd, 0xdb, 0x5e, 0xf8, 0x3b, + 0x4e, 0xbf, 0xb6, 0x8c, 0x08, 0x65, 0x8c, 0x6f, 0x23, 0xa6, 0xee, 0x84, + 0xfd, 0x78, 0xad, 0x79, 0x95, 0x47, 0x2a, 0xa3, 0x1d, 0xab, 0xca, 0x7f, + 0x64, 0xbf, 0x12, 0x43, 0xae, 0xfc, 0x3d, 0xbe, 0xd2, 0xe7, 0x72, 0xf2, + 0xd8, 0xdc, 0x3a, 0x05, 0xcf, 0x45, 0x3c, 0x8a, 0xf4, 0xdb, 0x79, 0x9a, + 0x39, 0x1e, 0xde, 0x4e, 0xaa, 0x4e, 0xd2, 0x7b, 0x8a, 0x00, 0x72, 0x79, + 0x64, 0xf2, 0x48, 0xa9, 0xd5, 0x23, 0x23, 0xef, 0xd3, 0x0c, 0x21, 0x8f, + 0x0b, 0xcd, 0x2f, 0xd9, 0x8e, 0x3a, 0x62, 0x80, 0x27, 0x58, 0x49, 0xfb, + 0xa7, 0x35, 0xa1, 0x65, 0x13, 0x2c, 0x13, 0x67, 0x23, 0x80, 0x2b, 0x36, + 0x34, 0x65, 0xee, 0x45, 0x5f, 0xb5, 0x21, 0xad, 0xa6, 0x06, 0x62, 0x0e, + 0x47, 0x38, 0xa0, 0x00, 0xc1, 0x8e, 0x68, 0x55, 0xc0, 0xe9, 0x42, 0xee, + 0x5f, 0xf9, 0x68, 0x18, 0x7b, 0xd2, 0xb4, 0xdd, 0xb1, 0x93, 0x40, 0x11, + 0x39, 0x2a, 0xdc, 0x55, 0x88, 0xe4, 0x72, 0xb5, 0x5c, 0x29, 0x66, 0xce, + 0x2a, 0xda, 0x7c, 0xab, 0x8a, 0x00, 0x85, 0x89, 0xcf, 0x24, 0xd0, 0x0f, + 0xbd, 0x13, 0x7a, 0xd4, 0x6a, 0x73, 0x40, 0x17, 0x6d, 0x9f, 0x8c, 0x55, + 0xa0, 0xd5, 0x52, 0x05, 0xc2, 0xf5, 0xa9, 0x83, 0x62, 0x80, 0x24, 0x2d, + 0x9a, 0x37, 0x73, 0xd6, 0xa3, 0xdc, 0x0d, 0x01, 0x85, 0x00, 0x4a, 0x1b, + 0x3c, 0x54, 0xa0, 0xe0, 0x0a, 0xac, 0x1f, 0x8a, 0x78, 0x7e, 0x9c, 0xd0, + 0x05, 0xb4, 0x6a, 0x94, 0x36, 0x05, 0x55, 0x47, 0xa9, 0x4b, 0xf1, 0x40, + 0x15, 0xae, 0x9b, 0x9a, 0xda, 0xd1, 0x0e, 0x14, 0x57, 0x3f, 0x3b, 0xe6, + 0x4c, 0x56, 0xf6, 0x8e, 0x70, 0xa2, 0x80, 0x3a, 0x4b, 0x37, 0xc5, 0xc2, + 0xfd, 0x2b, 0xa1, 0xb0, 0x93, 0x15, 0xca, 0xdb, 0x49, 0x8b, 0x81, 0xf4, + 0xad, 0xeb, 0x39, 0xb0, 0x06, 0x28, 0x03, 0xae, 0xb1, 0xb8, 0xd9, 0xd0, + 0xd5, 0xd9, 0x2e, 0xfe, 0x41, 0xcf, 0x5a, 0xe7, 0xed, 0x6e, 0x38, 0xeb, + 0x56, 0x5a, 0xe3, 0x22, 0x80, 0x34, 0x64, 0xb8, 0xca, 0x75, 0xea, 0x2a, + 0x0b, 0x2b, 0x9d, 0xaf, 0xd6, 0xab, 0x79, 0xf9, 0x02, 0xaa, 0xc1, 0x39, + 0x12, 0x1e, 0x7b, 0xd0, 0x07, 0x4f, 0x1d, 0xd1, 0x57, 0xce, 0x7a, 0xd5, + 0xb1, 0x75, 0xc5, 0x73, 0xf1, 0xdc, 0x67, 0x9a, 0xb1, 0xf6, 0xae, 0x28, + 0x03, 0x52, 0xe2, 0xf3, 0x6c, 0x67, 0x9e, 0x4d, 0x71, 0x1f, 0x13, 0x75, + 0x99, 0xb4, 0xcf, 0x08, 0x6a, 0xb7, 0x30, 0x9c, 0x3c, 0x16, 0xec, 0xc0, + 0xfb, 0xe2, 0xb6, 0xe7, 0xbb, 0x1d, 0x49, 0xe0, 0x76, 0xaf, 0x3e, 0xf8, + 0xad, 0x78, 0xd3, 0x78, 0x17, 0x57, 0x8f, 0xa1, 0x9a, 0x26, 0x50, 0x4f, + 0x4e, 0x94, 0x01, 0xf8, 0xcf, 0xad, 0x5c, 0x35, 0xd6, 0xab, 0x79, 0x33, + 0x7d, 0xe9, 0x26, 0x77, 0x3f, 0x52, 0x4d, 0x50, 0x26, 0xae, 0xea, 0xf1, + 0x1b, 0x7d, 0x4e, 0xea, 0x26, 0x21, 0x99, 0x65, 0x60, 0x48, 0x3c, 0x1e, + 0x6a, 0x89, 0x34, 0x01, 0x3d, 0xac, 0x8b, 0x1c, 0xbb, 0xd8, 0x67, 0x03, + 0x80, 0x47, 0x14, 0xa1, 0x92, 0x69, 0x09, 0xc9, 0xe8, 0x7a, 0xd4, 0x0a, + 0x7e, 0x57, 0x1e, 0xa2, 0x99, 0x13, 0x15, 0x63, 0x83, 0xda, 0x80, 0x17, + 0x80, 0x70, 0x0f, 0x15, 0xf7, 0xaf, 0xfc, 0x12, 0xca, 0xf0, 0x47, 0xe2, + 0x7f, 0x13, 0x21, 0x6e, 0x44, 0x71, 0x90, 0x0f, 0xfc, 0x0b, 0x35, 0xf0, + 0x42, 0x9a, 0xfb, 0x53, 0xfe, 0x09, 0x97, 0x76, 0xd1, 0x7c, 0x43, 0xd7, + 0x61, 0x0d, 0xb4, 0x3d, 0xba, 0xb1, 0xcf, 0xb1, 0x34, 0x01, 0xfa, 0x71, + 0x3e, 0xaa, 0x1e, 0xed, 0x8a, 0x9e, 0x07, 0xad, 0x59, 0x4d, 0x47, 0x2b, + 0xd6, 0xb9, 0x8b, 0xab, 0x80, 0x2e, 0xd8, 0x2b, 0x67, 0x1d, 0xea, 0xdd, + 0xbc, 0xac, 0xc9, 0x9a, 0x00, 0xdd, 0x37, 0xc5, 0x8f, 0x5a, 0x6b, 0xdd, + 0x1c, 0x75, 0xac, 0xad, 0xec, 0x0d, 0x39, 0xa4, 0x38, 0xeb, 0x40, 0x17, + 0x5e, 0xe8, 0x2a, 0xf3, 0xcd, 0x54, 0x92, 0xe9, 0x9f, 0x24, 0x9d, 0x8b, + 0x55, 0xa4, 0x9f, 0x19, 0xe6, 0xaa, 0xc9, 0x76, 0xa0, 0xfa, 0xfd, 0x68, + 0x01, 0xe9, 0x7c, 0xd6, 0xfa, 0xaa, 0x15, 0x6d, 0xd9, 0x43, 0xc1, 0x15, + 0xd4, 0x58, 0xea, 0x9e, 0x60, 0x1b, 0x86, 0xda, 0xe0, 0x6e, 0x6e, 0xd8, + 0xea, 0x76, 0xa5, 0x78, 0x39, 0x23, 0x81, 0xed, 0x5b, 0x96, 0xf7, 0xee, + 0x89, 0xf3, 0xd0, 0x07, 0x45, 0xad, 0x49, 0x1d, 0xcc, 0x1e, 0xfd, 0x6b, + 0xcf, 0xf5, 0x29, 0x3c, 0x89, 0x98, 0x76, 0x35, 0xd3, 0xfd, 0xb4, 0x4b, + 0x10, 0xdd, 0xd4, 0xd7, 0x27, 0xe2, 0x37, 0xc4, 0xad, 0x40, 0x18, 0xf7, + 0xf7, 0x59, 0x07, 0x9a, 0xe6, 0x35, 0x49, 0x73, 0xce, 0x73, 0x5a, 0x97, + 0x53, 0x65, 0x4d, 0x60, 0xea, 0x32, 0x64, 0x75, 0xa0, 0x0c, 0xe9, 0xa4, + 0xaa, 0x13, 0x49, 0x9c, 0xf3, 0x53, 0x4e, 0xfe, 0x95, 0x42, 0x57, 0xe4, + 0xf6, 0xa0, 0x08, 0xa6, 0x39, 0xef, 0x8a, 0xa9, 0x21, 0x19, 0x3c, 0xd4, + 0xb2, 0x37, 0x06, 0xab, 0x48, 0x7a, 0xd0, 0x04, 0x52, 0x30, 0x35, 0x51, + 0xc8, 0xc1, 0xa9, 0xe4, 0xe3, 0x9a, 0xa7, 0x23, 0x72, 0x79, 0xa0, 0x06, + 0x79, 0x65, 0x89, 0x23, 0xf9, 0xd3, 0x5d, 0x40, 0x07, 0x38, 0xcd, 0x30, + 0x9f, 0x7f, 0xc2, 0x90, 0xf4, 0x34, 0x00, 0x39, 0xe3, 0xb5, 0x42, 0x57, + 0x83, 0x53, 0x7f, 0x0e, 0x6a, 0x30, 0x32, 0x33, 0xe9, 0x40, 0x14, 0xa6, + 0x5c, 0x38, 0x5e, 0xe6, 0xac, 0x6a, 0x61, 0x96, 0x38, 0x5a, 0x35, 0xdc, + 0x02, 0x0c, 0x8a, 0x4b, 0x54, 0xf3, 0xa5, 0x2e, 0x7d, 0x70, 0x2a, 0xee, + 0xab, 0x98, 0xd6, 0x12, 0x9d, 0x97, 0x04, 0x62, 0x80, 0x39, 0xf1, 0x36, + 0x72, 0x36, 0xe3, 0x3d, 0x8d, 0x2b, 0x00, 0x17, 0xd0, 0xd5, 0x89, 0x14, + 0x48, 0xdd, 0x06, 0x6a, 0xac, 0xd1, 0x30, 0x39, 0x19, 0xc5, 0x00, 0x43, + 0x23, 0x9f, 0xc6, 0x9a, 0x58, 0x31, 0x1c, 0xe6, 0x92, 0x45, 0x20, 0x52, + 0x46, 0xb9, 0xc7, 0xad, 0x00, 0x4a, 0xa0, 0x75, 0x3d, 0x07, 0x6a, 0x7d, + 0xbb, 0x17, 0xbb, 0x8c, 0x7f, 0x00, 0x3c, 0x9a, 0x89, 0x5f, 0xb7, 0xe5, + 0x53, 0xc6, 0x85, 0x42, 0x91, 0xc7, 0x7c, 0x9a, 0x00, 0xf9, 0xa7, 0xf6, + 0xb0, 0x97, 0xcc, 0xf1, 0x05, 0xb6, 0x0e, 0x40, 0x8f, 0x15, 0xf3, 0xd9, + 0xaf, 0x76, 0xfd, 0xa6, 0x27, 0x17, 0x5a, 0x95, 0xac, 0xca, 0x41, 0x0c, + 0x0d, 0x78, 0x4e, 0x28, 0x02, 0xec, 0x2d, 0x98, 0x97, 0xda, 0x9d, 0x51, + 0x42, 0x4f, 0x96, 0x29, 0xf9, 0xa0, 0x05, 0xa2, 0x93, 0x34, 0x99, 0xa0, + 0x05, 0x26, 0x90, 0x9a, 0x42, 0x69, 0x09, 0xa0, 0x04, 0x26, 0x9a, 0x68, + 0x26, 0x9a, 0x4f, 0x14, 0x00, 0xf4, 0x34, 0xf0, 0x6a, 0x28, 0xfb, 0xd4, + 0x80, 0xd0, 0x03, 0xc5, 0x3f, 0x35, 0x18, 0xa7, 0x8a, 0x00, 0x51, 0x42, + 0x82, 0xee, 0x00, 0x19, 0x24, 0xe0, 0x0a, 0x4c, 0xd7, 0x45, 0xf0, 0xef, + 0x42, 0x6f, 0x12, 0x78, 0xd3, 0x4a, 0xb0, 0x00, 0x94, 0x79, 0x94, 0xbf, + 0xfb, 0xa0, 0xe4, 0xd0, 0x07, 0xd7, 0xff, 0x00, 0x0a, 0xb4, 0x21, 0xe1, + 0x6f, 0x87, 0x5a, 0x55, 0xa1, 0x1b, 0x65, 0x78, 0xbc, 0xd9, 0x3d, 0x72, + 0xdc, 0xff, 0x00, 0x5a, 0xe8, 0xe2, 0x39, 0x63, 0x49, 0x39, 0x11, 0x47, + 0x1c, 0x49, 0xc2, 0xa2, 0x85, 0x00, 0x51, 0x09, 0xcd, 0x00, 0x5f, 0xb7, + 0xf5, 0xad, 0x08, 0x3b, 0x56, 0x7d, 0xbf, 0x4a, 0xbd, 0x17, 0x34, 0x01, + 0xa5, 0x0f, 0x6a, 0xbb, 0x15, 0x67, 0x44, 0xc6, 0xae, 0x42, 0xf8, 0xef, + 0x40, 0x1a, 0x11, 0x9e, 0xf9, 0xab, 0x91, 0x1c, 0xe2, 0xb3, 0xe2, 0x6a, + 0xb5, 0x13, 0xf4, 0xa0, 0x0d, 0x28, 0xcf, 0x15, 0x6a, 0x36, 0xc5, 0x67, + 0x47, 0x26, 0x2a, 0xca, 0x49, 0x9c, 0x50, 0x06, 0x82, 0x37, 0xa5, 0x59, + 0x47, 0xc0, 0xf6, 0xac, 0xd4, 0x90, 0x83, 0x53, 0xa4, 0xa4, 0xe2, 0x80, + 0x34, 0x56, 0x4f, 0x7a, 0x24, 0x9c, 0x79, 0x32, 0x67, 0xfb, 0xa6, 0xa9, + 0xa4, 0xc7, 0x34, 0x4a, 0xff, 0x00, 0xbb, 0x7f, 0xf7, 0x4d, 0x00, 0x32, + 0x23, 0x98, 0x93, 0x9f, 0xe1, 0x15, 0x26, 0xec, 0x74, 0xaa, 0xb1, 0x3f, + 0xee, 0x93, 0xe8, 0x2a, 0x4f, 0x32, 0x80, 0x25, 0xdf, 0x4d, 0x2f, 0x51, + 0x96, 0xa6, 0x97, 0xe2, 0x80, 0x1c, 0xcf, 0x51, 0x33, 0x62, 0x82, 0xf5, + 0x13, 0xc9, 0xcf, 0xa5, 0x00, 0x23, 0xb7, 0xb5, 0x41, 0x2b, 0x54, 0x8c, + 0xf8, 0xaa, 0xd2, 0x36, 0x68, 0x02, 0x19, 0x08, 0xaa, 0xb2, 0x60, 0x54, + 0xf2, 0x9a, 0xad, 0x23, 0x1a, 0x00, 0xad, 0x29, 0xeb, 0x8a, 0xa5, 0x2f, + 0x7e, 0x2a, 0xe4, 0xad, 0x55, 0x25, 0xe7, 0x34, 0x01, 0x9d, 0x38, 0xae, + 0x73, 0xc5, 0xba, 0x3a, 0x6b, 0xfe, 0x1f, 0xd4, 0x34, 0xe9, 0x46, 0x52, + 0xe2, 0x16, 0x4f, 0xc7, 0x1c, 0x1a, 0xea, 0x25, 0x5a, 0xa7, 0x22, 0x73, + 0x40, 0x1f, 0x9d, 0x1a, 0xc6, 0x9b, 0x36, 0x91, 0xa9, 0xdd, 0x59, 0xce, + 0x85, 0x25, 0x82, 0x46, 0x46, 0x53, 0xec, 0x6a, 0x8b, 0x57, 0xd1, 0x9f, + 0xb5, 0x1f, 0xc3, 0x81, 0x6d, 0x34, 0x5e, 0x28, 0xb1, 0x8b, 0x11, 0xc8, + 0x44, 0x77, 0x41, 0x47, 0x43, 0xd9, 0xab, 0xe7, 0x26, 0xa0, 0x00, 0x1a, + 0x50, 0x69, 0x82, 0x9d, 0x9a, 0x00, 0x70, 0x38, 0xa7, 0xa9, 0xa8, 0xcd, + 0x2a, 0x9a, 0x00, 0x98, 0x70, 0x01, 0xc5, 0x38, 0x1a, 0x66, 0xf2, 0x40, + 0x04, 0xf0, 0x3a, 0x52, 0xd0, 0x03, 0xf3, 0x46, 0x69, 0xa0, 0xd2, 0xe6, + 0x80, 0x19, 0x31, 0xfd, 0xd3, 0x54, 0x16, 0x51, 0xf9, 0xd7, 0x90, 0x47, + 0xfd, 0xe9, 0x14, 0x7e, 0x66, 0xa6, 0x9f, 0xfd, 0x5b, 0x7d, 0x29, 0xda, + 0x0c, 0x7e, 0x66, 0xb1, 0x68, 0x3d, 0x24, 0x07, 0xf2, 0xe6, 0x80, 0x2e, + 0x78, 0x9a, 0xe5, 0xdf, 0x50, 0x98, 0x09, 0x18, 0xaa, 0xb9, 0x50, 0x33, + 0xd3, 0x00, 0x0a, 0xc6, 0xde, 0xc4, 0xe4, 0xb1, 0x27, 0xd6, 0xb5, 0xa6, + 0x6b, 0x5b, 0xab, 0xeb, 0xa6, 0xba, 0x91, 0xe3, 0x43, 0x2b, 0x95, 0x28, + 0x33, 0xde, 0x91, 0xad, 0xb4, 0x9e, 0xd7, 0x52, 0xfe, 0x29, 0x40, 0x14, + 0xac, 0xee, 0xe4, 0xb7, 0xba, 0x8a, 0x40, 0xc4, 0x94, 0x60, 0x70, 0x4f, + 0x5c, 0x1a, 0xfa, 0x13, 0x46, 0xbd, 0x7b, 0xcf, 0x0b, 0xea, 0x57, 0x4f, + 0xc1, 0x96, 0xe1, 0x5f, 0x68, 0xe8, 0x3e, 0x4a, 0xf0, 0xa4, 0xb4, 0xd2, + 0xb7, 0x0f, 0xf4, 0xc7, 0x1f, 0xf0, 0x0a, 0xf7, 0x5f, 0x0e, 0x46, 0x07, + 0x82, 0x26, 0xf2, 0xfe, 0x65, 0x2e, 0xb8, 0x3e, 0xa3, 0x65, 0x00, 0x5b, + 0xfd, 0x8c, 0x7c, 0x54, 0x34, 0xdf, 0x88, 0x5a, 0x9e, 0x97, 0x23, 0x62, + 0x3b, 0xd8, 0xcb, 0x2a, 0xfa, 0xb2, 0x9f, 0xf0, 0x35, 0xf5, 0x96, 0xb5, + 0x18, 0x7b, 0x87, 0x68, 0xc6, 0xd9, 0x10, 0xee, 0x1e, 0xe2, 0xbf, 0x3e, + 0x7e, 0x0b, 0x6a, 0xed, 0xa3, 0x7c, 0x5c, 0xd1, 0xee, 0x54, 0x95, 0x02, + 0xe4, 0xab, 0x63, 0xd0, 0xe4, 0x1a, 0xfd, 0x09, 0xd7, 0x19, 0x31, 0x05, + 0xcc, 0x20, 0xec, 0x75, 0x00, 0x9f, 0x5c, 0xd0, 0x04, 0x30, 0x4c, 0x48, + 0x04, 0x1a, 0xb0, 0xb7, 0x6e, 0x87, 0x90, 0x0d, 0x64, 0x5a, 0x3b, 0x41, + 0x3b, 0x5b, 0xb9, 0xff, 0x00, 0x69, 0x4f, 0xa8, 0xad, 0x48, 0x5d, 0x4f, + 0x0c, 0x33, 0x40, 0x13, 0x8d, 0x48, 0x1e, 0x19, 0x2a, 0xdd, 0xb4, 0x82, + 0x6b, 0x59, 0xb0, 0xa3, 0x19, 0x1d, 0xaa, 0xaa, 0x2a, 0x21, 0xc9, 0x51, + 0xb6, 0xae, 0xd9, 0x32, 0x2c, 0x73, 0x14, 0x20, 0x8e, 0x38, 0x34, 0x01, + 0x5b, 0xca, 0x23, 0x91, 0xc5, 0x3d, 0x11, 0xbb, 0xe4, 0x55, 0x8d, 0xc8, + 0xfd, 0x17, 0x9a, 0x31, 0xdc, 0x9c, 0x7b, 0x50, 0x02, 0x21, 0xda, 0xbd, + 0x39, 0xa7, 0x06, 0xc0, 0xf7, 0x34, 0xc6, 0x90, 0x28, 0xe0, 0xd2, 0x07, + 0xe7, 0x14, 0x00, 0xe9, 0xdf, 0x08, 0x2a, 0x05, 0x3d, 0x3e, 0xb4, 0xe9, + 0x5f, 0x38, 0xa6, 0x29, 0xe4, 0x50, 0x05, 0xd4, 0x60, 0x16, 0x9f, 0xbb, + 0x02, 0xab, 0x2b, 0xe7, 0x8a, 0x91, 0x9f, 0x03, 0x34, 0x01, 0x36, 0x72, + 0x71, 0x4a, 0x0e, 0x05, 0x57, 0x57, 0x2c, 0x7a, 0x9a, 0x79, 0x24, 0x63, + 0xb5, 0x00, 0x4a, 0xcd, 0x81, 0x4f, 0x56, 0xe9, 0xef, 0x55, 0x5d, 0xbe, + 0x51, 0xef, 0x52, 0xc6, 0x7e, 0xef, 0xd2, 0x80, 0x2d, 0xa9, 0xa7, 0x96, + 0xc2, 0xd4, 0x31, 0x9d, 0xc7, 0x14, 0xf7, 0x6c, 0x03, 0x40, 0x15, 0x24, + 0x6c, 0xcb, 0x5d, 0x06, 0x98, 0x70, 0xab, 0x5c, 0xe7, 0xde, 0x94, 0x0e, + 0xb5, 0xbf, 0x60, 0x70, 0x14, 0x50, 0x06, 0xbc, 0x12, 0x66, 0x4c, 0xfb, + 0x56, 0xcd, 0x9c, 0xe7, 0x68, 0x35, 0xce, 0x5b, 0x49, 0xf3, 0xb5, 0x6b, + 0xda, 0xc9, 0xf2, 0x50, 0x07, 0x4b, 0x6b, 0x71, 0xd3, 0x9f, 0xc6, 0xad, + 0x1b, 0x8e, 0x2b, 0x16, 0xd2, 0x63, 0x9f, 0xa5, 0x4e, 0x66, 0xe3, 0xaf, + 0x7a, 0x00, 0xd6, 0x49, 0xb3, 0xde, 0xaa, 0x2c, 0xfb, 0x66, 0x61, 0x9c, + 0x54, 0x51, 0x4b, 0x8e, 0xf5, 0x5a, 0x69, 0x0a, 0xdc, 0x9f, 0x7a, 0x00, + 0xde, 0x86, 0xe7, 0xe5, 0xeb, 0x52, 0xfd, 0xa7, 0x8e, 0xb5, 0x8b, 0x05, + 0xc1, 0xc7, 0x5a, 0x98, 0xcd, 0xef, 0x8a, 0x00, 0xb9, 0x71, 0x71, 0x91, + 0x8c, 0xd7, 0x9e, 0xfc, 0x74, 0xd6, 0x0e, 0x93, 0xf0, 0xab, 0x58, 0x74, + 0xc0, 0x25, 0x42, 0x67, 0xdc, 0xd7, 0x61, 0x35, 0xca, 0xa0, 0x27, 0x39, + 0x35, 0xe3, 0xdf, 0xb5, 0x06, 0xa8, 0x6d, 0x7e, 0x1c, 0xc5, 0x6c, 0x48, + 0x06, 0xe6, 0x43, 0x9f, 0xc0, 0x13, 0xfd, 0x28, 0x03, 0xf2, 0x9e, 0xf5, + 0xcb, 0xdd, 0xcc, 0xc4, 0xe4, 0x97, 0x27, 0x3f, 0x8d, 0x56, 0xcd, 0x49, + 0x72, 0x7f, 0xd2, 0x24, 0xff, 0x00, 0x78, 0xff, 0x00, 0x3a, 0x84, 0x9a, + 0x00, 0x7a, 0x9e, 0x49, 0x1e, 0x95, 0x10, 0xe1, 0xaa, 0x48, 0xcf, 0x0f, + 0xee, 0x2a, 0x3c, 0xfc, 0xd4, 0x00, 0x8a, 0x6b, 0xeb, 0xaf, 0xf8, 0x27, + 0x1e, 0xa7, 0x1c, 0x5f, 0x17, 0x6e, 0xec, 0xe4, 0x24, 0x09, 0x6d, 0x0b, + 0x82, 0xbd, 0x49, 0x04, 0x71, 0xfa, 0xd7, 0xc8, 0x8a, 0x71, 0x5e, 0xfb, + 0xfb, 0x13, 0x6b, 0xbf, 0xd8, 0xbf, 0x1f, 0x74, 0x10, 0x5b, 0x6a, 0x5c, + 0x96, 0x80, 0x9f, 0xa8, 0xcf, 0xf4, 0xa0, 0x0f, 0xd7, 0x1b, 0xe7, 0x8e, + 0x1b, 0x9f, 0x90, 0x0c, 0x11, 0x4f, 0x82, 0xf3, 0x03, 0xf0, 0xac, 0x8d, + 0x46, 0x62, 0x2e, 0x07, 0x3d, 0xa9, 0xd6, 0xd3, 0xe4, 0x9e, 0x7b, 0x50, + 0x06, 0xc3, 0x5e, 0x67, 0xaf, 0x34, 0x86, 0xec, 0x9e, 0x87, 0x06, 0xb2, + 0xcc, 0xfd, 0x69, 0x1a, 0xe3, 0x18, 0xe6, 0x80, 0x2e, 0xc9, 0x73, 0x9e, + 0xa6, 0xaa, 0xcb, 0x36, 0xd0, 0x4e, 0x6a, 0xb3, 0xdc, 0x66, 0xaa, 0x4d, + 0x39, 0xdc, 0x39, 0x38, 0xa0, 0x07, 0xdd, 0x5c, 0xec, 0xb8, 0xb7, 0x7c, + 0x13, 0x86, 0xe4, 0x8a, 0xd6, 0x8e, 0xf9, 0x65, 0x5c, 0x03, 0xc1, 0xf5, + 0xae, 0x66, 0x6b, 0x82, 0x66, 0x8c, 0x9f, 0xbb, 0xb8, 0x55, 0xf9, 0xa4, + 0x48, 0xc1, 0x2b, 0xc5, 0x00, 0x6c, 0x9b, 0xbd, 0xab, 0x80, 0xd5, 0x8d, + 0xad, 0xca, 0x24, 0x5c, 0xe7, 0x35, 0x0f, 0xda, 0xc9, 0x53, 0xcd, 0x56, + 0xbe, 0x98, 0x32, 0xb0, 0xeb, 0xc5, 0x00, 0x61, 0xdd, 0xbe, 0x18, 0xd6, + 0x25, 0xf3, 0x9c, 0x1a, 0xd4, 0xbd, 0x7e, 0x4d, 0x62, 0x5e, 0xbf, 0x06, + 0x80, 0x33, 0x67, 0x63, 0xcd, 0x51, 0x99, 0xf9, 0xab, 0x33, 0x37, 0x5e, + 0x73, 0x54, 0xe5, 0x71, 0xcd, 0x00, 0x57, 0x76, 0x26, 0xa0, 0x91, 0x8e, + 0x3a, 0xd4, 0x92, 0x11, 0x55, 0x9d, 0xa8, 0x02, 0x39, 0x58, 0xe0, 0xd5, + 0x27, 0x38, 0x35, 0x6e, 0x46, 0xc0, 0xe4, 0xd5, 0x19, 0x5b, 0xad, 0x00, + 0x31, 0x88, 0xc8, 0xa6, 0xef, 0x23, 0x20, 0x1a, 0x69, 0x7e, 0x94, 0x99, + 0xc9, 0xcf, 0xad, 0x00, 0x4c, 0x87, 0x20, 0x67, 0x35, 0x13, 0xc8, 0x23, + 0x81, 0xb3, 0xc1, 0xe9, 0x4e, 0x47, 0xc7, 0x15, 0x5a, 0x43, 0xe7, 0x4f, + 0xe5, 0x8e, 0x86, 0x80, 0x2d, 0x69, 0xc8, 0x23, 0xb7, 0x69, 0x1b, 0xa2, + 0xf3, 0x57, 0x2e, 0x79, 0xb4, 0x81, 0xd9, 0x77, 0x6f, 0x19, 0x35, 0x5a, + 0xed, 0xc4, 0x70, 0xa4, 0x0b, 0xd5, 0x8f, 0x6a, 0xbd, 0xa9, 0xc4, 0x56, + 0xca, 0xd9, 0x53, 0x87, 0x0b, 0xf9, 0xd0, 0x06, 0x44, 0xd0, 0x0c, 0x82, + 0xa0, 0xd5, 0x56, 0x88, 0x32, 0x8c, 0xf6, 0xa9, 0x1e, 0xea, 0x44, 0xca, + 0xbf, 0x6a, 0x32, 0x18, 0x7d, 0x68, 0x02, 0x9c, 0x91, 0x0e, 0x95, 0x03, + 0x28, 0x89, 0x7d, 0xeb, 0x42, 0x54, 0x08, 0x3a, 0xf6, 0xac, 0x99, 0x5d, + 0xa5, 0x98, 0x81, 0xd3, 0xd6, 0x80, 0x27, 0xb5, 0x81, 0x9d, 0xf9, 0xa8, + 0xf5, 0x8b, 0xb1, 0x6f, 0x65, 0x7b, 0x28, 0xe1, 0x20, 0x85, 0x9b, 0x3f, + 0x85, 0x59, 0x89, 0xbc, 0xa8, 0x80, 0xfe, 0x36, 0xe2, 0xb9, 0x1f, 0x8a, + 0x1a, 0xc8, 0xd0, 0x7c, 0x0b, 0xac, 0xdc, 0x93, 0x82, 0xd0, 0x94, 0x19, + 0xf7, 0xe3, 0xfa, 0xd0, 0x07, 0xce, 0x5f, 0x1a, 0xe7, 0x37, 0x7a, 0x56, + 0x8d, 0x39, 0xff, 0x00, 0x96, 0x91, 0x96, 0xcf, 0xd6, 0xbc, 0x74, 0xd7, + 0xab, 0x7c, 0x56, 0x7d, 0xfe, 0x17, 0xf0, 0xd9, 0xff, 0x00, 0xa7, 0x71, + 0xfc, 0xab, 0xca, 0x4d, 0x00, 0x5b, 0x88, 0xfe, 0xed, 0x69, 0x73, 0x4c, + 0x8f, 0xee, 0x0a, 0x5c, 0xd0, 0x03, 0x89, 0xcd, 0x19, 0xa6, 0x93, 0x48, + 0x4d, 0x00, 0x3b, 0x34, 0xd2, 0x45, 0x14, 0xd2, 0x68, 0x01, 0x09, 0xa4, + 0x26, 0x82, 0x69, 0xa4, 0xf1, 0x40, 0x0e, 0x43, 0xc9, 0xa9, 0x01, 0xa8, + 0x93, 0xad, 0x48, 0x0d, 0x00, 0x48, 0x0d, 0x38, 0x1a, 0x8c, 0x1a, 0x70, + 0x34, 0x00, 0xec, 0xd7, 0xb5, 0x7e, 0xcc, 0x3a, 0x18, 0xb9, 0xf1, 0x1d, + 0xee, 0xab, 0x22, 0xfc, 0x96, 0xb1, 0x6c, 0x43, 0xfe, 0xd1, 0xeb, 0xfa, + 0x57, 0x8a, 0x03, 0x5f, 0x55, 0x7c, 0x00, 0xd1, 0x7f, 0xb2, 0x3c, 0x0d, + 0x1c, 0xcc, 0xbb, 0x65, 0xbc, 0x73, 0x29, 0xfa, 0x74, 0x1f, 0xa5, 0x00, + 0x7a, 0x9b, 0x39, 0x92, 0x4c, 0xd5, 0x98, 0x47, 0x4a, 0xab, 0x08, 0xcd, + 0x5e, 0x80, 0x77, 0xa0, 0x0b, 0x90, 0x0a, 0xbb, 0x10, 0xaa, 0x91, 0x81, + 0x81, 0x56, 0xe1, 0x18, 0xa0, 0x0b, 0xb0, 0x8a, 0xb9, 0x10, 0xc5, 0x53, + 0x88, 0x64, 0x66, 0xad, 0x47, 0xda, 0x80, 0x2e, 0x46, 0x6a, 0xc2, 0x37, + 0x4a, 0xaa, 0x87, 0x18, 0xab, 0x08, 0x7a, 0x50, 0x05, 0xd8, 0xc8, 0x35, + 0x65, 0x08, 0xaa, 0x31, 0xb6, 0x2a, 0xca, 0x35, 0x00, 0x5b, 0x53, 0x53, + 0xa3, 0x66, 0xaa, 0x23, 0x8a, 0x99, 0x58, 0x76, 0xa0, 0x0b, 0x21, 0xb1, + 0x4e, 0x76, 0xfd, 0xcb, 0xff, 0x00, 0xba, 0x6a, 0x05, 0x7a, 0x59, 0x64, + 0xfd, 0xd3, 0x8c, 0x7f, 0x09, 0xa0, 0x04, 0x84, 0x01, 0x12, 0x73, 0xfc, + 0x22, 0x9e, 0x47, 0xbd, 0x43, 0x13, 0xfe, 0xe9, 0x3f, 0xdd, 0x15, 0x26, + 0xec, 0x0a, 0x00, 0x53, 0xc5, 0x34, 0xd2, 0x97, 0x18, 0xa6, 0x19, 0x28, + 0x01, 0x08, 0xa6, 0x30, 0xa5, 0x2f, 0x51, 0xb3, 0xe6, 0x80, 0x18, 0xd5, + 0x0b, 0x54, 0x8c, 0x6a, 0x17, 0x6a, 0x00, 0x82, 0x5a, 0xae, 0xe0, 0x55, + 0x99, 0x2a, 0xbb, 0xd0, 0x05, 0x69, 0x14, 0x66, 0xaa, 0xc8, 0x07, 0x35, + 0x71, 0xc5, 0x56, 0x7a, 0x00, 0xa5, 0x2a, 0xe2, 0xa9, 0xca, 0x31, 0x57, + 0xe5, 0x53, 0x54, 0xe5, 0x8e, 0x80, 0x30, 0xbc, 0x47, 0xa2, 0xdb, 0x78, + 0x97, 0x44, 0xbc, 0xd2, 0xee, 0xd0, 0x3c, 0x17, 0x11, 0x94, 0x20, 0xf6, + 0xe3, 0xad, 0x7c, 0x0f, 0xe3, 0x1f, 0x0d, 0x5c, 0x78, 0x4b, 0xc4, 0x57, + 0xba, 0x5d, 0xca, 0x90, 0xf0, 0x48, 0x54, 0x12, 0x3e, 0xf2, 0xf6, 0x3f, + 0x95, 0x7e, 0x85, 0x4b, 0x19, 0xaf, 0x9e, 0xff, 0x00, 0x69, 0xbf, 0x87, + 0x13, 0x6a, 0xb6, 0x91, 0x78, 0x86, 0xc6, 0x03, 0x24, 0xf6, 0xe3, 0x65, + 0xc2, 0xa0, 0xe4, 0xa7, 0x63, 0xf8, 0x50, 0x07, 0xcb, 0xd4, 0xe1, 0x4d, + 0x23, 0x9a, 0x5a, 0x00, 0x75, 0x02, 0x92, 0x96, 0x80, 0x1c, 0x0d, 0x38, + 0x1a, 0x6a, 0xd2, 0xf6, 0xa0, 0x07, 0x83, 0x4b, 0x9c, 0x53, 0x33, 0x46, + 0x68, 0x01, 0x5c, 0x16, 0x42, 0x07, 0x5a, 0xb7, 0xe1, 0xcb, 0x77, 0x1a, + 0x9a, 0x39, 0x1c, 0x22, 0xb3, 0x7e, 0x86, 0xab, 0x46, 0x7e, 0x6e, 0x6b, + 0x67, 0x44, 0x02, 0x35, 0xbb, 0x93, 0xfb, 0xb0, 0x9a, 0x00, 0xc0, 0x78, + 0x25, 0x91, 0x3e, 0xe9, 0x27, 0x71, 0x38, 0x1c, 0xd3, 0x3e, 0xcb, 0x30, + 0xff, 0x00, 0x96, 0x6d, 0xf9, 0x56, 0xee, 0x9b, 0xa8, 0xc9, 0xa6, 0x4c, + 0x65, 0x89, 0x51, 0x8f, 0x4c, 0x3a, 0x86, 0x15, 0xb6, 0xbe, 0x35, 0xba, + 0x20, 0x06, 0xb5, 0xb4, 0x6c, 0x7a, 0xc2, 0x28, 0x03, 0x87, 0x16, 0xd2, + 0xe7, 0xfd, 0x5b, 0x7e, 0x55, 0xf4, 0x97, 0x83, 0x22, 0x2f, 0xf0, 0xe6, + 0x36, 0xc6, 0x32, 0x39, 0xfc, 0x16, 0xbc, 0xa7, 0xfe, 0x12, 0xf9, 0x5c, + 0x10, 0x6c, 0x2c, 0xcf, 0xbf, 0x94, 0x2b, 0xd7, 0xbc, 0x2b, 0x75, 0x8f, + 0x87, 0x2b, 0x2b, 0xa8, 0x52, 0xde, 0x61, 0xda, 0x07, 0x1d, 0x28, 0x03, + 0xc4, 0x7c, 0x1b, 0x3a, 0x59, 0xf8, 0x81, 0x9d, 0x55, 0x9a, 0xe8, 0x48, + 0x7c, 0xbc, 0x0e, 0x73, 0x9e, 0xd5, 0xfa, 0x11, 0xe0, 0x2d, 0x6c, 0x78, + 0xb3, 0xe1, 0xbe, 0x9f, 0x74, 0xc8, 0x3c, 0xd5, 0x8f, 0x6c, 0x80, 0xf5, + 0x0c, 0x38, 0x22, 0xbf, 0x3d, 0x6d, 0xef, 0x24, 0xd2, 0xee, 0x96, 0xf5, + 0x57, 0xcb, 0x91, 0x5c, 0xb2, 0xe4, 0x57, 0xd6, 0xbf, 0xb2, 0x9f, 0x8b, + 0xce, 0xbf, 0xe1, 0xdd, 0x57, 0x4d, 0x33, 0x83, 0x2c, 0x2f, 0xe7, 0x63, + 0xd8, 0xf5, 0xfd, 0x68, 0x03, 0xd5, 0x1e, 0x36, 0xb9, 0x83, 0x2b, 0xc5, + 0xc4, 0x07, 0x23, 0xdc, 0x55, 0xab, 0x69, 0x45, 0xc4, 0x2b, 0x22, 0xf1, + 0xea, 0x3d, 0x0d, 0x40, 0x1c, 0x89, 0x7c, 0xe4, 0xe4, 0xa9, 0xc3, 0x0f, + 0x5a, 0x73, 0x62, 0xca, 0x71, 0x3a, 0xff, 0x00, 0xc7, 0xb4, 0xdf, 0x78, + 0x7f, 0x74, 0xd0, 0x05, 0xe8, 0xe6, 0xf9, 0x76, 0x93, 0x91, 0x57, 0x6d, + 0x44, 0x6d, 0x0c, 0xc1, 0x32, 0x0e, 0x05, 0x67, 0x15, 0x21, 0x81, 0x1f, + 0x74, 0xd5, 0xcb, 0x16, 0x25, 0x65, 0x07, 0x00, 0xed, 0xa0, 0x07, 0x06, + 0x28, 0x69, 0x4c, 0x84, 0xf5, 0xa5, 0x24, 0x30, 0xf7, 0xa8, 0xcf, 0x5a, + 0x00, 0x90, 0x36, 0x48, 0xa9, 0x03, 0x91, 0x93, 0x50, 0x64, 0x64, 0x53, + 0xd5, 0xb9, 0xa0, 0x07, 0xbe, 0x71, 0x4d, 0x1c, 0x62, 0x89, 0x09, 0x22, + 0x9a, 0xc7, 0x81, 0x40, 0x13, 0x44, 0xc3, 0x93, 0x9a, 0x7b, 0x3e, 0x56, + 0xa0, 0x88, 0xfc, 0xa6, 0x9d, 0xbb, 0xe4, 0xcd, 0x00, 0x58, 0xb7, 0xc1, + 0xcd, 0x39, 0x9f, 0x2c, 0x47, 0xa5, 0x32, 0xdf, 0x88, 0xc9, 0xc5, 0x22, + 0x82, 0x72, 0x4d, 0x00, 0x3a, 0x43, 0xf2, 0x0e, 0x6a, 0x68, 0x8e, 0x71, + 0x55, 0xe6, 0xe8, 0x07, 0xa5, 0x4d, 0x17, 0xdd, 0x1f, 0x4a, 0x00, 0xb7, + 0x09, 0xea, 0x69, 0xb2, 0x37, 0xc8, 0x69, 0x61, 0xfb, 0x86, 0xa2, 0x99, + 0x86, 0xcc, 0x50, 0x04, 0x11, 0x64, 0xcc, 0x2b, 0xa1, 0xb4, 0x38, 0xd9, + 0x5c, 0xf5, 0xb9, 0xcc, 0xa2, 0xba, 0x0b, 0x6e, 0xa9, 0x40, 0x16, 0x77, + 0x6d, 0x9d, 0x87, 0xa8, 0xad, 0x4b, 0x57, 0xf9, 0x05, 0x64, 0x4c, 0x71, + 0x72, 0x87, 0xd4, 0x56, 0x85, 0xb3, 0x61, 0x28, 0x03, 0x6a, 0xd6, 0x5f, + 0x96, 0xa5, 0xf3, 0x7e, 0x62, 0x2a, 0x95, 0xab, 0x61, 0x05, 0x48, 0x8f, + 0x99, 0x0d, 0x00, 0x68, 0xac, 0xb8, 0x4f, 0xc6, 0xa2, 0xbb, 0x7f, 0x9d, + 0x5b, 0xd6, 0x98, 0x5b, 0x11, 0x52, 0x4c, 0x77, 0x45, 0xf4, 0xa0, 0x09, + 0x63, 0x97, 0x06, 0x9e, 0x65, 0xce, 0x6a, 0xa2, 0x37, 0x02, 0xa4, 0xea, + 0x3a, 0xd0, 0x02, 0x97, 0x33, 0x4a, 0xab, 0xdb, 0x35, 0xe1, 0x9f, 0xb5, + 0xf4, 0x84, 0xf8, 0x6b, 0x4b, 0xd9, 0x92, 0x44, 0xd2, 0x00, 0x07, 0xb4, + 0x4d, 0x5e, 0xe7, 0x09, 0x11, 0xee, 0x90, 0xf6, 0x15, 0xe1, 0x9f, 0xb5, + 0x27, 0x95, 0x26, 0x91, 0xa3, 0xc7, 0x2b, 0x95, 0x62, 0x64, 0x61, 0xe9, + 0x92, 0xa4, 0x50, 0x07, 0xe6, 0x3d, 0xc4, 0x32, 0xf9, 0xcf, 0x98, 0xd8, + 0x1c, 0x9e, 0xd5, 0x09, 0x8e, 0x4f, 0xee, 0x37, 0xe5, 0x5f, 0x55, 0x78, + 0x2b, 0xe1, 0xa7, 0x87, 0xb5, 0xdd, 0x1d, 0x2f, 0x9d, 0x1e, 0xee, 0x46, + 0x25, 0x5b, 0x0e, 0x36, 0x86, 0x07, 0x07, 0xa5, 0x2e, 0xa1, 0xf0, 0x1e, + 0xce, 0x59, 0xa4, 0x30, 0xdc, 0x18, 0x63, 0x6e, 0x55, 0x4a, 0xe7, 0x14, + 0x01, 0xf2, 0xaa, 0xa3, 0x82, 0x7e, 0x53, 0xd2, 0x96, 0xd6, 0xdf, 0xed, + 0x12, 0x95, 0x2e, 0x23, 0x01, 0x49, 0xcb, 0x7d, 0x2b, 0xe8, 0xd6, 0xfd, + 0x9a, 0xe3, 0x6c, 0xe3, 0x56, 0x93, 0x9e, 0xa0, 0x25, 0x54, 0xd4, 0x7f, + 0x67, 0x0b, 0x6d, 0x3e, 0xca, 0x5b, 0x87, 0xd4, 0xa5, 0x21, 0x14, 0x9c, + 0x04, 0x1c, 0x9f, 0x4a, 0x00, 0xf9, 0xdb, 0x63, 0x7a, 0x1a, 0xed, 0xbe, + 0x0d, 0x6b, 0x52, 0x78, 0x73, 0xe2, 0x57, 0x87, 0x35, 0x04, 0xca, 0x98, + 0xaf, 0xa1, 0xc9, 0xf6, 0x2c, 0x01, 0xfd, 0x0d, 0x45, 0x7d, 0xa6, 0xc1, + 0xe1, 0x6f, 0x10, 0xb5, 0xbd, 0xcc, 0x29, 0x7a, 0x2d, 0x9c, 0x09, 0x21, + 0x72, 0x40, 0x6f, 0x50, 0x71, 0x5a, 0xfe, 0x08, 0xb0, 0xb7, 0xf1, 0x17, + 0x8a, 0x61, 0xfb, 0x14, 0x51, 0xd8, 0x16, 0x93, 0x72, 0x2b, 0xb6, 0x42, + 0x60, 0xe7, 0x8c, 0xd0, 0x07, 0xeb, 0xf0, 0xbd, 0x17, 0xf6, 0xf0, 0xdc, + 0x03, 0xf2, 0xb2, 0x2b, 0x0f, 0xc4, 0x54, 0xf6, 0x72, 0x6e, 0x66, 0xf4, + 0xc5, 0x72, 0xbf, 0x0f, 0x75, 0x1f, 0xed, 0x6f, 0x07, 0xe9, 0xb2, 0x96, + 0x0c, 0xde, 0x42, 0xa9, 0x20, 0xe7, 0x90, 0x31, 0xfd, 0x2b, 0xa4, 0xb4, + 0x05, 0x5d, 0xc5, 0x00, 0x5a, 0x92, 0x5c, 0x64, 0x53, 0x5a, 0x7f, 0x94, + 0x55, 0x79, 0xd8, 0xee, 0x22, 0xa1, 0x32, 0x90, 0x07, 0x34, 0x01, 0x61, + 0xe6, 0x07, 0xbd, 0x55, 0x9e, 0x6d, 0xa3, 0x83, 0x51, 0xbc, 0xbc, 0x55, + 0x59, 0xe5, 0xf7, 0xa0, 0x09, 0x9d, 0xc9, 0xf2, 0xf0, 0xb9, 0xc1, 0x04, + 0xd5, 0x9b, 0x9b, 0xa4, 0x2a, 0x36, 0x9f, 0xfe, 0xb5, 0x50, 0x86, 0xef, + 0x0e, 0xa3, 0x8a, 0x75, 0xe4, 0x7f, 0x31, 0x91, 0x0e, 0x01, 0xed, 0x40, + 0x0a, 0xf7, 0x04, 0x21, 0xe6, 0xab, 0xcb, 0x70, 0x18, 0x90, 0x4f, 0x38, + 0xaa, 0x72, 0xdc, 0x1e, 0x41, 0x35, 0x07, 0x9d, 0x99, 0x87, 0xd2, 0x80, + 0x22, 0xbd, 0x7e, 0x4e, 0x2b, 0x1e, 0xe9, 0xfe, 0x53, 0x5a, 0x37, 0x8f, + 0xf3, 0x1a, 0xca, 0xb9, 0x61, 0x83, 0x40, 0x19, 0xd3, 0x11, 0xcd, 0x52, + 0x91, 0x86, 0x08, 0xab, 0x53, 0x1a, 0xa3, 0x21, 0xe4, 0xd0, 0x04, 0x12, + 0xbd, 0x56, 0x95, 0x88, 0xef, 0x53, 0x48, 0x47, 0xe3, 0x55, 0xa5, 0xe9, + 0x40, 0x11, 0xca, 0xd5, 0x4e, 0x4e, 0x58, 0x8a, 0xb1, 0x2b, 0x71, 0x55, + 0x1d, 0xc1, 0x26, 0x80, 0x22, 0x7e, 0x0f, 0xbd, 0x28, 0x6a, 0x63, 0x37, + 0x4e, 0xd4, 0x84, 0xf3, 0x40, 0x0e, 0x92, 0x4c, 0x02, 0x3d, 0x69, 0xf6, + 0x48, 0x3c, 0xd6, 0x90, 0xf4, 0x02, 0xaa, 0xca, 0xc7, 0x70, 0x1d, 0xaa, + 0x66, 0x7f, 0x2e, 0x11, 0x18, 0xea, 0x7a, 0xd0, 0x04, 0xd0, 0x13, 0x75, + 0xa8, 0x29, 0xec, 0x0d, 0x6b, 0xeb, 0x83, 0x0b, 0x03, 0xa9, 0x03, 0x03, + 0x00, 0x56, 0x76, 0x91, 0x0f, 0xcd, 0xbf, 0xf2, 0x35, 0x6b, 0x51, 0x95, + 0x66, 0x31, 0xaf, 0x6c, 0x70, 0x68, 0x03, 0x32, 0xf1, 0x37, 0xc4, 0x1c, + 0x8c, 0x13, 0x51, 0xa8, 0xc6, 0x3d, 0x2a, 0xc4, 0xa4, 0xb2, 0xec, 0x6e, + 0x83, 0x80, 0x6a, 0xb4, 0x8c, 0x17, 0x8f, 0x4a, 0x00, 0xab, 0x7f, 0x36, + 0x01, 0x55, 0xe4, 0x9a, 0xa1, 0xfe, 0xa8, 0x0f, 0xef, 0x1a, 0xb7, 0x3e, + 0x14, 0x96, 0x35, 0x04, 0x51, 0xee, 0x2d, 0x23, 0x7e, 0x14, 0x00, 0xfb, + 0x62, 0x67, 0x9b, 0xd3, 0x1c, 0x0a, 0xf1, 0xbf, 0xda, 0xa7, 0x57, 0x36, + 0x1e, 0x14, 0xb5, 0xb1, 0x47, 0xc1, 0xb9, 0x94, 0x0c, 0x7a, 0xa8, 0xeb, + 0xfd, 0x2b, 0xdc, 0x74, 0xfb, 0x7c, 0x23, 0x39, 0x1c, 0xf6, 0xaf, 0x96, + 0x7f, 0x6b, 0x2d, 0x59, 0x6e, 0x7c, 0x55, 0xa7, 0xe9, 0xea, 0xf9, 0x36, + 0xb1, 0x6e, 0x71, 0x9e, 0x84, 0x9f, 0xfe, 0xb5, 0x00, 0x72, 0x7f, 0x14, + 0x14, 0x8f, 0x09, 0xf8, 0x63, 0x3d, 0xed, 0xbf, 0xa0, 0xaf, 0x2c, 0x35, + 0xeb, 0x9f, 0x16, 0x11, 0x4f, 0x86, 0x3c, 0x2c, 0x07, 0x43, 0x6d, 0x8f, + 0xd0, 0x57, 0x99, 0x1d, 0x34, 0x63, 0xa9, 0xa0, 0x0a, 0xe8, 0x7e, 0x41, + 0x4b, 0x9a, 0x74, 0x91, 0xf9, 0x2d, 0xb4, 0x76, 0xa6, 0x66, 0x80, 0x17, + 0x34, 0x66, 0x90, 0x52, 0x66, 0x80, 0x17, 0x34, 0xd2, 0x68, 0x34, 0x94, + 0x00, 0x86, 0x92, 0x94, 0xd2, 0x50, 0x02, 0xa7, 0x06, 0xa4, 0xcd, 0x46, + 0xbd, 0x69, 0xf9, 0xa0, 0x07, 0x03, 0x4e, 0x06, 0x99, 0x9a, 0x70, 0xa0, + 0x0e, 0x9b, 0xe1, 0xe7, 0x84, 0xa6, 0xf1, 0xa7, 0x8a, 0x2c, 0xf4, 0xe8, + 0xc1, 0xf2, 0xd9, 0xb7, 0x4a, 0xc3, 0xf8, 0x50, 0x75, 0xaf, 0xb3, 0xec, + 0x34, 0xd8, 0x34, 0xbb, 0x48, 0x6d, 0x2d, 0xd0, 0x24, 0x50, 0xa0, 0x45, + 0x03, 0xa0, 0x02, 0xbc, 0xbb, 0xf6, 0x74, 0xf0, 0x50, 0xd0, 0xbc, 0x36, + 0xfa, 0xcd, 0xc4, 0x78, 0xbb, 0xbd, 0xfb, 0x99, 0x1c, 0xac, 0x7d, 0xbf, + 0x3a, 0xf5, 0xc8, 0xc6, 0x4e, 0x68, 0x02, 0x68, 0x63, 0xe9, 0x57, 0x22, + 0x4e, 0x45, 0x43, 0x12, 0x8a, 0xb9, 0x10, 0xcf, 0x5a, 0x00, 0x9a, 0x34, + 0xe9, 0x56, 0xe2, 0x4a, 0x82, 0x30, 0x41, 0xab, 0x71, 0x0a, 0x00, 0x9e, + 0x21, 0x8a, 0xb7, 0x11, 0xf7, 0xaa, 0xf1, 0x55, 0x84, 0x14, 0x01, 0x61, + 0x6a, 0x74, 0x19, 0xaa, 0xf1, 0xf1, 0x8a, 0xb0, 0xad, 0x40, 0x16, 0x23, + 0xcd, 0x59, 0x8c, 0xd5, 0x58, 0xde, 0xac, 0x23, 0xd0, 0x04, 0xeb, 0xcd, + 0x4e, 0xa3, 0xa6, 0x0d, 0x57, 0x57, 0x06, 0xa5, 0x56, 0x02, 0x80, 0x26, + 0x0a, 0x69, 0x64, 0x5f, 0xdc, 0xbf, 0xd0, 0xd2, 0x2c, 0xa3, 0x1d, 0x69, + 0x25, 0x7c, 0xc2, 0xff, 0x00, 0xee, 0x9a, 0x00, 0x6c, 0x47, 0xf7, 0x69, + 0x8f, 0x41, 0x4f, 0xc1, 0xa6, 0xc5, 0xc4, 0x49, 0xf4, 0x14, 0xfc, 0xd0, + 0x02, 0x62, 0x90, 0x8e, 0x39, 0xa7, 0x66, 0x9a, 0x68, 0x01, 0x98, 0xa8, + 0xd8, 0x73, 0x52, 0xb6, 0x3b, 0x53, 0x0d, 0x00, 0x42, 0x6a, 0x36, 0xc8, + 0xa9, 0x5c, 0xfa, 0x54, 0x4d, 0x40, 0x10, 0xb0, 0xa8, 0x5d, 0x6a, 0xc3, + 0x66, 0xa1, 0x61, 0x40, 0x10, 0x3a, 0xe6, 0xab, 0xb8, 0xe6, 0xad, 0x37, + 0x35, 0x03, 0x81, 0x40, 0x15, 0x24, 0x50, 0x6a, 0xb3, 0xa5, 0x5d, 0x90, + 0x73, 0x55, 0xdd, 0x3d, 0xa8, 0x02, 0x84, 0xa9, 0x54, 0xe7, 0xb7, 0x8e, + 0x78, 0xde, 0x39, 0x10, 0x3c, 0x6c, 0x36, 0xb2, 0xb0, 0xc8, 0x22, 0xb4, + 0xe4, 0x4a, 0xab, 0x22, 0x50, 0x07, 0xc9, 0x7f, 0x1b, 0x3e, 0x05, 0x2f, + 0x87, 0xb5, 0x09, 0x35, 0x6d, 0x2d, 0x48, 0xd3, 0x27, 0x6c, 0xb4, 0x6a, + 0x33, 0xe4, 0xb1, 0xfe, 0x95, 0xe4, 0x87, 0xc2, 0xd2, 0xe7, 0xe5, 0x91, + 0x7f, 0x11, 0x5f, 0x7f, 0xea, 0x56, 0x30, 0xea, 0x56, 0x92, 0xda, 0xdc, + 0xc6, 0x25, 0x82, 0x45, 0x2a, 0xca, 0xc2, 0xbe, 0x65, 0xf8, 0x81, 0xf0, + 0xfa, 0x4f, 0x0a, 0x6a, 0xcc, 0x11, 0x0b, 0x59, 0x48, 0x49, 0x89, 0xf1, + 0xd3, 0xd8, 0xd0, 0x07, 0x8b, 0xb7, 0x85, 0xaf, 0x07, 0xdd, 0x0a, 0xdf, + 0x43, 0x50, 0xbf, 0x87, 0xef, 0x93, 0xac, 0x04, 0xfd, 0x2b, 0xd3, 0x22, + 0xd3, 0xd4, 0xf4, 0xcd, 0x4c, 0x6c, 0x06, 0x28, 0x03, 0xca, 0x1b, 0x48, + 0xbc, 0x53, 0xfe, 0xa1, 0xff, 0x00, 0x2a, 0x61, 0xb0, 0xb9, 0x51, 0xcc, + 0x2f, 0xf9, 0x57, 0xac, 0x1b, 0x10, 0x07, 0x2b, 0x9a, 0x85, 0xec, 0x63, + 0x6f, 0xe1, 0x34, 0x01, 0xe5, 0x5f, 0x67, 0x97, 0xfe, 0x79, 0xb7, 0xe5, + 0x4d, 0xf2, 0xdc, 0x1e, 0x54, 0xfe, 0x55, 0xea, 0xb1, 0x68, 0x62, 0xe9, + 0x88, 0x8a, 0x03, 0x23, 0x1f, 0xee, 0xae, 0x6b, 0x4e, 0xd3, 0xe1, 0xb5, + 0xf5, 0xdf, 0xcd, 0xf6, 0x78, 0xe0, 0x4f, 0xef, 0xcc, 0x42, 0x8a, 0x00, + 0xf1, 0xb8, 0x62, 0x72, 0xff, 0x00, 0x71, 0xbf, 0x2a, 0xe8, 0xf4, 0x5d, + 0x2d, 0xe6, 0xb1, 0xbb, 0x04, 0x34, 0x7b, 0x80, 0x5c, 0x95, 0x35, 0xe9, + 0x3a, 0x2f, 0x81, 0x6c, 0x6e, 0xaf, 0xee, 0xa1, 0xb9, 0xb9, 0x03, 0xc8, + 0x19, 0x26, 0x25, 0xe0, 0xfa, 0xf3, 0x5b, 0xf7, 0xdf, 0x12, 0xee, 0x34, + 0xdd, 0x32, 0x1d, 0x33, 0x40, 0xd0, 0xd2, 0x75, 0xb7, 0x52, 0x01, 0x8e, + 0x31, 0x96, 0x03, 0xab, 0x37, 0x07, 0x34, 0x01, 0xe3, 0xd6, 0x3e, 0x06, + 0xb8, 0xd4, 0x27, 0xd9, 0x03, 0xf9, 0x8f, 0xe9, 0x82, 0x3f, 0x9d, 0x6b, + 0x5d, 0x7c, 0x39, 0x7d, 0x0a, 0xd0, 0x5c, 0xea, 0x72, 0xf9, 0x6a, 0x7e, + 0xec, 0x51, 0x10, 0xce, 0x6b, 0x49, 0x3e, 0x38, 0x78, 0xa1, 0x99, 0xcc, + 0x56, 0x70, 0xe3, 0x3d, 0x04, 0x0b, 0xc7, 0xe9, 0x4e, 0x6f, 0x8e, 0x1e, + 0x2b, 0x3f, 0x7f, 0x4f, 0xb6, 0x7f, 0xf7, 0xad, 0xc7, 0xf8, 0x50, 0x06, + 0x54, 0x3a, 0x6e, 0x99, 0x6d, 0x34, 0x32, 0x45, 0x03, 0x5d, 0x0c, 0x02, + 0x63, 0x91, 0xfb, 0xfa, 0x71, 0x5e, 0x85, 0xa8, 0xdc, 0x4b, 0x0f, 0xc3, + 0xcb, 0x59, 0x20, 0x8c, 0x5b, 0x39, 0x91, 0xdb, 0xc9, 0x4e, 0x80, 0x76, + 0x15, 0xc5, 0xcd, 0xf1, 0xa3, 0xc4, 0xd3, 0x44, 0x63, 0x3a, 0x65, 0x9a, + 0x83, 0xdc, 0x5b, 0x80, 0x6b, 0xa7, 0x9f, 0x5c, 0xb9, 0xd6, 0x3c, 0x23, + 0x15, 0xc4, 0x97, 0x36, 0xf0, 0xde, 0x11, 0x93, 0x14, 0x83, 0x6a, 0xfe, + 0x14, 0x01, 0xe2, 0xba, 0xd6, 0xa3, 0x2d, 0xf4, 0xe0, 0xb0, 0x68, 0xca, + 0x8c, 0x14, 0x27, 0x8c, 0xfb, 0x0e, 0xd5, 0xea, 0x5f, 0xb3, 0x1f, 0x8a, + 0x65, 0xf0, 0xf7, 0xc4, 0x18, 0xa1, 0xdc, 0x7c, 0xab, 0xd8, 0xcc, 0x2c, + 0x07, 0xaf, 0x6a, 0xf3, 0x6d, 0x7a, 0xce, 0xf9, 0xaf, 0xe4, 0x96, 0x78, + 0x83, 0x67, 0xf8, 0xa2, 0xe5, 0x7f, 0x4a, 0xdb, 0xf8, 0x65, 0x70, 0x96, + 0x7e, 0x30, 0xd3, 0x24, 0x69, 0xfe, 0xcd, 0xfb, 0xe5, 0x5f, 0x37, 0xfb, + 0xb9, 0x38, 0xcd, 0x00, 0x7d, 0xeb, 0x69, 0x39, 0x8a, 0x52, 0x5b, 0xa1, + 0xe1, 0x81, 0xf4, 0xad, 0x25, 0x8d, 0x54, 0x18, 0xd8, 0x6e, 0x82, 0x41, + 0xc7, 0xb5, 0x63, 0xc3, 0x6e, 0x6c, 0xa1, 0xb7, 0x8e, 0x59, 0xc5, 0xc4, + 0xc6, 0x30, 0xc6, 0x5f, 0xef, 0xfb, 0xd6, 0xa5, 0x84, 0xaa, 0x47, 0x94, + 0xe7, 0x28, 0x7a, 0x13, 0xda, 0x80, 0x1d, 0x06, 0xeb, 0x39, 0x05, 0xbc, + 0xa7, 0x28, 0x7f, 0xd5, 0xbf, 0xaf, 0xb5, 0x68, 0x5b, 0x80, 0x24, 0x71, + 0x8c, 0x1d, 0xb5, 0x1c, 0xb6, 0xeb, 0x22, 0x18, 0x65, 0xe5, 0x7f, 0x85, + 0xbd, 0x2a, 0x0b, 0x79, 0xde, 0xca, 0xe4, 0x43, 0x72, 0x78, 0x3c, 0x2c, + 0x9d, 0x8d, 0x00, 0x5a, 0xc9, 0x06, 0x97, 0x39, 0xeb, 0x49, 0x22, 0x9c, + 0xf5, 0xcd, 0x30, 0x86, 0x07, 0xa5, 0x00, 0x3f, 0x77, 0xe5, 0x4f, 0x5e, + 0x95, 0x10, 0x27, 0x23, 0x8a, 0x91, 0x4f, 0x34, 0x01, 0x23, 0x74, 0xa8, + 0xe4, 0x3f, 0x28, 0x38, 0xa7, 0xe4, 0xb5, 0x24, 0x83, 0x01, 0x68, 0x01, + 0x00, 0xc2, 0x0e, 0xd5, 0x26, 0x3e, 0x50, 0x2a, 0x3e, 0xa0, 0x0e, 0x6a, + 0x60, 0x07, 0xa1, 0xa0, 0x09, 0x62, 0x3f, 0x2e, 0x29, 0xca, 0x39, 0xe6, + 0x92, 0x1c, 0x31, 0xe8, 0x69, 0x58, 0x85, 0x07, 0xd6, 0x80, 0x21, 0x91, + 0x89, 0x7c, 0x55, 0x98, 0xdb, 0x2a, 0x38, 0xed, 0x55, 0x46, 0x49, 0xf5, + 0xcd, 0x5b, 0x88, 0x13, 0x8c, 0x0e, 0x28, 0x02, 0xca, 0x0f, 0xdd, 0x9a, + 0xaf, 0x29, 0xe3, 0x35, 0x64, 0xb1, 0x0b, 0x8c, 0x55, 0x69, 0x01, 0x61, + 0x8c, 0x50, 0x02, 0x5a, 0x29, 0xf3, 0x06, 0x2b, 0x7a, 0x11, 0x82, 0x95, + 0x8f, 0x67, 0x19, 0xdf, 0xd0, 0xe2, 0xb6, 0xa1, 0x8c, 0xee, 0x51, 0x40, + 0x0f, 0xba, 0xe1, 0xe3, 0x35, 0x76, 0xd4, 0xe5, 0x45, 0x55, 0xbc, 0x4d, + 0xbe, 0x59, 0xf7, 0xab, 0x96, 0x63, 0xe4, 0x14, 0x01, 0xa1, 0x17, 0x0b, + 0x52, 0x41, 0x9c, 0xe6, 0xa2, 0x5e, 0x05, 0x4f, 0x12, 0x90, 0xa3, 0x1d, + 0x68, 0x02, 0x66, 0xff, 0x00, 0x54, 0x4d, 0x39, 0x4e, 0x54, 0x7a, 0x50, + 0xea, 0x7c, 0xb3, 0x9a, 0x7c, 0x51, 0x12, 0xa3, 0x8a, 0x00, 0x8a, 0x24, + 0xf9, 0x88, 0xcd, 0x5b, 0x48, 0x43, 0x0e, 0x79, 0xa7, 0x45, 0x6f, 0xba, + 0x40, 0x71, 0xc1, 0xae, 0x9a, 0xc3, 0x48, 0x0f, 0x18, 0xc2, 0xf2, 0x7d, + 0x68, 0x03, 0x98, 0x7b, 0x67, 0x90, 0x04, 0x55, 0x21, 0x4f, 0x5a, 0xf9, + 0xcf, 0xf6, 0xc2, 0xb4, 0xbc, 0x92, 0xd7, 0x47, 0x8e, 0xce, 0xde, 0x5b, + 0x89, 0x94, 0x4a, 0xdb, 0x63, 0xc7, 0x07, 0x61, 0x0b, 0x9f, 0x6c, 0x91, + 0x5f, 0x5a, 0xde, 0x5a, 0xdb, 0x69, 0xb1, 0x19, 0x27, 0x91, 0x54, 0x0f, + 0x53, 0x5e, 0x53, 0xe3, 0x0b, 0x08, 0xfc, 0x43, 0xab, 0x35, 0xc0, 0x0a, + 0x61, 0x55, 0xd8, 0x81, 0x85, 0x00, 0x7c, 0xe5, 0xf0, 0x4b, 0xc1, 0xad, + 0x1f, 0xc3, 0xbb, 0x39, 0x6e, 0x2c, 0xcd, 0x9d, 0xfc, 0x92, 0xbf, 0x9f, + 0x09, 0x23, 0x1b, 0xb3, 0xd4, 0x57, 0xa0, 0x27, 0x83, 0xc9, 0x60, 0x58, + 0x28, 0x5c, 0x74, 0xcf, 0x35, 0xd6, 0xc5, 0xe1, 0xd9, 0x2c, 0xd8, 0xac, + 0x45, 0x04, 0x07, 0x92, 0x81, 0x7a, 0x1f, 0x6a, 0x9f, 0xec, 0x92, 0xa7, + 0x41, 0xfa, 0x50, 0x07, 0x18, 0x7c, 0x2e, 0x89, 0xff, 0x00, 0x2c, 0x89, + 0x1e, 0xb8, 0xac, 0xad, 0x73, 0xc2, 0x6b, 0x7a, 0x2d, 0xd4, 0x2e, 0x21, + 0x47, 0xde, 0xe8, 0x47, 0x2d, 0x8e, 0x83, 0xf3, 0xc5, 0x7a, 0x3e, 0xc9, + 0x81, 0xff, 0x00, 0xeb, 0x52, 0x34, 0x72, 0xb0, 0xc1, 0xc7, 0xfd, 0xf3, + 0x40, 0x1f, 0x9f, 0x9e, 0x3c, 0xf8, 0x11, 0xe3, 0x49, 0x3c, 0x4b, 0xa8, + 0x5d, 0xc5, 0xa7, 0x3d, 0xe4, 0x53, 0xca, 0xce, 0x1a, 0x2f, 0x42, 0x7d, + 0x2b, 0xa2, 0xf8, 0x3d, 0xf0, 0x87, 0x5f, 0xb3, 0xd7, 0x6d, 0xef, 0x6e, + 0xf4, 0x98, 0xe7, 0xb6, 0xb7, 0xdd, 0x13, 0x45, 0x2f, 0x07, 0x7e, 0x7a, + 0xf4, 0x3d, 0x2b, 0xed, 0xf5, 0xb7, 0x95, 0x57, 0x09, 0x81, 0xff, 0x00, + 0x01, 0xac, 0xcf, 0x0f, 0xf8, 0x66, 0xe7, 0x4a, 0x6b, 0xa6, 0x79, 0xc3, + 0x99, 0xa6, 0x79, 0x78, 0x5e, 0x99, 0x3d, 0x28, 0x03, 0xa2, 0xf8, 0x43, + 0x7e, 0x2d, 0x2c, 0xff, 0x00, 0xb2, 0xe5, 0x8c, 0x42, 0xf1, 0x8c, 0xaa, + 0x01, 0x80, 0x07, 0x70, 0x2b, 0xd3, 0x60, 0x50, 0x65, 0x6c, 0x77, 0x15, + 0xe4, 0xa3, 0x4c, 0xba, 0x86, 0xf2, 0x2b, 0xcb, 0x69, 0x48, 0x9a, 0x33, + 0x9c, 0x76, 0x6f, 0x6a, 0xf4, 0x3d, 0x1f, 0x5d, 0x5b, 0xc8, 0x51, 0xf1, + 0xb2, 0xe1, 0x3e, 0xf4, 0x6d, 0xd4, 0xfa, 0xe2, 0x80, 0x34, 0xae, 0xa3, + 0x20, 0xe7, 0x15, 0x49, 0xc1, 0xe8, 0x31, 0x5b, 0x23, 0xcb, 0xbb, 0x87, + 0x7c, 0x4d, 0xb8, 0x77, 0x1d, 0xc1, 0xac, 0xd9, 0xed, 0xc8, 0x27, 0xb1, + 0xa0, 0x0a, 0x12, 0xe4, 0x03, 0x54, 0x9c, 0x93, 0x9e, 0x2a, 0xfc, 0xb1, + 0x90, 0x3a, 0xd5, 0x39, 0xc1, 0x00, 0xf2, 0x68, 0x02, 0xac, 0x72, 0xe2, + 0x5c, 0x91, 0xc5, 0x5b, 0x79, 0x1a, 0x2c, 0xa9, 0x39, 0x53, 0xd0, 0xd5, + 0x48, 0xe3, 0x2f, 0xf2, 0xe4, 0x8a, 0x97, 0xcd, 0xde, 0x86, 0x37, 0xfb, + 0xc2, 0x80, 0x29, 0xdc, 0x8f, 0x98, 0x9f, 0x5a, 0xac, 0x1f, 0x13, 0x80, + 0x2a, 0x6b, 0x8c, 0xa1, 0xc1, 0x3c, 0x55, 0x45, 0x93, 0xe7, 0x27, 0xad, + 0x00, 0x32, 0xf1, 0x89, 0x63, 0xd6, 0xb2, 0xae, 0x4f, 0xe7, 0x5a, 0x77, + 0x2d, 0x91, 0xd2, 0xb2, 0xae, 0x39, 0xcf, 0x14, 0x01, 0x42, 0x7c, 0xe0, + 0xd5, 0x17, 0x3f, 0x85, 0x5d, 0x94, 0x81, 0x9a, 0xa5, 0x26, 0x32, 0x68, + 0x02, 0xb4, 0xbc, 0xe6, 0xab, 0x49, 0xd0, 0x55, 0x97, 0xc1, 0x35, 0x5e, + 0x53, 0x40, 0x15, 0x64, 0xea, 0x45, 0x54, 0x73, 0x8c, 0xe0, 0x55, 0xc9, + 0xba, 0xd5, 0x47, 0xfa, 0x50, 0x04, 0x0d, 0x92, 0x05, 0x35, 0xce, 0x05, + 0x39, 0x86, 0x6a, 0x37, 0xc9, 0xc7, 0xbd, 0x00, 0x34, 0x02, 0x4e, 0xe3, + 0x52, 0x84, 0x2e, 0xc0, 0x7f, 0x13, 0x7e, 0x94, 0x24, 0x7b, 0x57, 0x71, + 0x1c, 0x7b, 0xd6, 0x8e, 0x95, 0x6a, 0x64, 0x90, 0xca, 0xe3, 0xe5, 0x14, + 0x01, 0x2c, 0xc4, 0x58, 0xd9, 0xaa, 0x0e, 0x1d, 0xf8, 0xfc, 0x2a, 0xbd, + 0xf1, 0x55, 0x48, 0x01, 0x38, 0x21, 0x6a, 0x1d, 0x5a, 0xfd, 0x63, 0x92, + 0x49, 0x9b, 0x9c, 0x70, 0x8b, 0x48, 0x1b, 0xcf, 0xb6, 0x87, 0x79, 0xf9, + 0x88, 0xc9, 0x34, 0x00, 0x9b, 0xb3, 0xdf, 0x70, 0xaa, 0xb7, 0x12, 0x85, + 0x34, 0x4c, 0xc2, 0x00, 0x70, 0x79, 0xaa, 0xbf, 0xeb, 0x4e, 0x79, 0x34, + 0x00, 0x9b, 0x7c, 0xe6, 0xc9, 0xc9, 0x15, 0x05, 0xec, 0xa5, 0x00, 0x45, + 0xfd, 0x2b, 0x41, 0x82, 0xc3, 0x1e, 0x58, 0xfe, 0x02, 0xa9, 0xf9, 0x0f, + 0x71, 0xba, 0x4d, 0xb8, 0x51, 0x40, 0x12, 0xdf, 0x78, 0x86, 0xdf, 0xc3, + 0xfa, 0x43, 0x5c, 0xce, 0x54, 0x08, 0x93, 0x77, 0xcc, 0x71, 0x93, 0xd8, + 0x57, 0xc5, 0xde, 0x2f, 0xbd, 0x83, 0x5f, 0xf1, 0xce, 0xa3, 0x7d, 0xa9, + 0xca, 0x27, 0x79, 0xe6, 0xc2, 0x44, 0x0f, 0xe5, 0x5e, 0x87, 0xf1, 0x97, + 0xc5, 0xf7, 0xda, 0xbd, 0xf1, 0xd2, 0x84, 0x4f, 0x1d, 0xb5, 0xbc, 0x99, + 0x24, 0x1f, 0xbe, 0x45, 0x79, 0x60, 0xd0, 0x6e, 0x35, 0x2d, 0x4e, 0x5b, + 0xa5, 0x85, 0x5a, 0x5c, 0xe7, 0xe7, 0x6c, 0x01, 0x40, 0x1b, 0x3f, 0x11, + 0xb5, 0x4f, 0x3e, 0xd3, 0x47, 0xb7, 0xb8, 0xb7, 0xd9, 0x0d, 0xb8, 0xc6, + 0x47, 0x52, 0xbe, 0x95, 0x83, 0xa2, 0x68, 0xd6, 0x1e, 0x20, 0xd6, 0x7e, + 0xc3, 0x65, 0x78, 0x62, 0x46, 0x5c, 0xa3, 0x5c, 0x0c, 0x0c, 0xfa, 0x66, + 0xaa, 0xf8, 0x96, 0xe6, 0xf6, 0x59, 0xe3, 0x82, 0xf4, 0xef, 0x75, 0x18, + 0x5c, 0x1e, 0x00, 0xf4, 0xa8, 0xf4, 0xd4, 0xb0, 0x86, 0x40, 0x4b, 0x95, + 0x3d, 0xf9, 0xc1, 0xa0, 0x0d, 0x8f, 0x10, 0xfc, 0x24, 0xf1, 0x16, 0x9c, + 0xcd, 0x34, 0x76, 0x9f, 0x6d, 0x83, 0x1f, 0x7e, 0xd8, 0xef, 0xfd, 0x2b, + 0x8b, 0xb9, 0xb2, 0xb8, 0xb2, 0x93, 0x65, 0xc4, 0x12, 0x42, 0xe3, 0xf8, + 0x64, 0x52, 0x0d, 0x7a, 0x86, 0x8f, 0xe3, 0x03, 0xa4, 0x11, 0xf6, 0x4b, + 0xd9, 0xd7, 0xd8, 0xcd, 0x95, 0xfc, 0x8d, 0x59, 0xd4, 0xfc, 0x5a, 0xfa, + 0xe2, 0xed, 0xb9, 0x86, 0x0b, 0x81, 0xfe, 0xd6, 0x33, 0xfc, 0xa8, 0x03, + 0xc7, 0xf3, 0x49, 0x5e, 0x95, 0x73, 0xe1, 0xdd, 0x0e, 0xee, 0xd1, 0x98, + 0x43, 0x2c, 0x37, 0x3d, 0x70, 0x9f, 0x74, 0xd5, 0xdb, 0x1f, 0x84, 0x9a, + 0x56, 0xab, 0x6e, 0x92, 0x5b, 0x6b, 0x4a, 0xb2, 0xb0, 0xe6, 0x19, 0xfe, + 0x52, 0xa7, 0xd3, 0x34, 0x01, 0xe5, 0x06, 0x90, 0xd7, 0xae, 0x4d, 0xf0, + 0x56, 0xea, 0xd9, 0x77, 0x25, 0xbf, 0xda, 0xd4, 0x7f, 0x14, 0x52, 0x06, + 0x15, 0x9d, 0x2f, 0x82, 0xff, 0x00, 0xb3, 0x8f, 0xef, 0xb4, 0xf7, 0x8b, + 0x1d, 0xdd, 0x0d, 0x00, 0x79, 0xa0, 0x52, 0x7a, 0x29, 0x3f, 0x41, 0x52, + 0xa5, 0x8c, 0xf2, 0x7d, 0xd8, 0x9c, 0xfe, 0x15, 0xe8, 0xcb, 0xa6, 0x40, + 0xa3, 0xe5, 0x8d, 0x57, 0xe8, 0x29, 0xdf, 0x62, 0x07, 0x80, 0x28, 0x03, + 0x81, 0x8b, 0x43, 0xba, 0x2a, 0xcc, 0x53, 0x6e, 0x07, 0x43, 0xde, 0xa2, + 0x6d, 0x3e, 0xe1, 0x3a, 0xc4, 0xdf, 0x95, 0x7a, 0x2c, 0x96, 0xcb, 0xe4, + 0x04, 0xf2, 0x94, 0x1f, 0xef, 0xe3, 0x9a, 0xa6, 0xf6, 0x67, 0x9c, 0x50, + 0x07, 0x04, 0x60, 0x91, 0x7a, 0xa3, 0x0f, 0xc2, 0xba, 0x0f, 0x01, 0x78, + 0x5e, 0x5f, 0x15, 0xf8, 0xa2, 0xc7, 0x4f, 0x54, 0x3e, 0x5b, 0xb8, 0x32, + 0x1c, 0x74, 0x51, 0xc9, 0xad, 0xb8, 0x34, 0xd9, 0x2e, 0xa7, 0x48, 0x63, + 0x8b, 0xcd, 0x91, 0xce, 0xd5, 0x50, 0x3a, 0x9a, 0xfa, 0x23, 0xe1, 0x9f, + 0xc3, 0x78, 0x7c, 0x25, 0x62, 0xb7, 0x37, 0x11, 0xa9, 0xd4, 0x66, 0x5f, + 0x98, 0x81, 0xf7, 0x07, 0xa5, 0x00, 0x76, 0x56, 0x56, 0xc9, 0x67, 0x69, + 0x0d, 0xb4, 0x2a, 0x12, 0x28, 0x94, 0x22, 0xa8, 0x1d, 0x00, 0xab, 0xf0, + 0xc7, 0x4d, 0x8a, 0x1a, 0xb9, 0x1c, 0x7d, 0x3b, 0x50, 0x03, 0xa2, 0x4c, + 0xf5, 0xab, 0x91, 0x2d, 0x47, 0x1c, 0x78, 0xab, 0x11, 0xa6, 0x28, 0x02, + 0x58, 0xd4, 0xd5, 0xa8, 0x97, 0x15, 0x0c, 0x63, 0xa5, 0x59, 0x8c, 0x62, + 0x80, 0x25, 0x45, 0xe2, 0xa7, 0x45, 0x22, 0xa3, 0x8e, 0xa7, 0x41, 0x40, + 0x12, 0xa8, 0xcd, 0x4c, 0xb5, 0x1a, 0x8a, 0x99, 0x39, 0xed, 0x40, 0x0f, + 0x41, 0xf8, 0x55, 0x84, 0xa8, 0x97, 0x9a, 0x98, 0x71, 0x40, 0x12, 0xae, + 0x2a, 0x55, 0x5a, 0x89, 0x45, 0x4c, 0x39, 0x1c, 0x50, 0x03, 0x82, 0x80, + 0x69, 0x65, 0xff, 0x00, 0x52, 0xff, 0x00, 0xee, 0x9a, 0x41, 0x44, 0xbf, + 0xea, 0x5f, 0xfd, 0xd3, 0x40, 0x0e, 0x88, 0xfe, 0xe9, 0x3f, 0xdd, 0x14, + 0xec, 0x9a, 0x64, 0x20, 0xf9, 0x49, 0xfe, 0xe8, 0xa9, 0x31, 0x40, 0x07, + 0x4e, 0x94, 0x99, 0xa3, 0x69, 0xcf, 0xa5, 0x05, 0x78, 0xa0, 0x06, 0x1a, + 0x61, 0x3d, 0xb1, 0x52, 0xe3, 0x8a, 0x69, 0x5a, 0x00, 0x88, 0xd4, 0x6c, + 0xa4, 0xd4, 0xec, 0x29, 0x8e, 0x28, 0x02, 0xbb, 0x03, 0xf8, 0xd4, 0x4c, + 0xb5, 0x63, 0x6f, 0x5a, 0x8d, 0xa8, 0x02, 0xb3, 0x2d, 0x44, 0xd1, 0xe2, + 0xac, 0xbd, 0x42, 0xe3, 0x34, 0x01, 0x59, 0x90, 0x54, 0x0e, 0xa2, 0xad, + 0xb8, 0xa8, 0x1d, 0x41, 0xa0, 0x0a, 0x72, 0x25, 0x56, 0x92, 0x3c, 0x8a, + 0xd0, 0x65, 0xaa, 0xef, 0x1f, 0xad, 0x00, 0x67, 0x49, 0x0e, 0x6b, 0x33, + 0x56, 0xd0, 0x6d, 0x35, 0xab, 0x66, 0xb7, 0xbc, 0x85, 0x65, 0x89, 0xbb, + 0x11, 0xd2, 0xb7, 0x9a, 0x3a, 0x81, 0xe3, 0xeb, 0xc6, 0x28, 0x03, 0xc2, + 0x7c, 0x61, 0xf0, 0x92, 0xe3, 0x47, 0xdf, 0x73, 0xa6, 0x83, 0x71, 0x6b, + 0xd4, 0xa0, 0xfb, 0xcb, 0xfe, 0x35, 0xc0, 0x49, 0x6e, 0xca, 0xc4, 0x10, + 0x43, 0x0e, 0xa0, 0xd7, 0xd5, 0xcc, 0xb8, 0xcf, 0x1c, 0x7a, 0x57, 0x11, + 0xe3, 0x0f, 0x87, 0x16, 0x7a, 0xe0, 0x6b, 0x8b, 0x55, 0x5b, 0x6b, 0xbf, + 0x61, 0x80, 0xc7, 0xde, 0x80, 0x3c, 0x15, 0xad, 0x8b, 0x29, 0xe7, 0x07, + 0xb5, 0x6e, 0x5a, 0xdd, 0x69, 0x96, 0x96, 0x91, 0x8f, 0xec, 0xe5, 0x96, + 0xe3, 0x1f, 0x33, 0x48, 0x72, 0x33, 0xed, 0x53, 0x6a, 0x3e, 0x1b, 0xba, + 0xd2, 0xe6, 0x68, 0xa7, 0x89, 0x91, 0x81, 0xeb, 0x8e, 0x0d, 0x51, 0x7d, + 0x3e, 0x63, 0xf7, 0x46, 0x68, 0x03, 0x5b, 0x46, 0xf1, 0x3c, 0x31, 0x6a, + 0x29, 0x15, 0xdc, 0x0a, 0xb6, 0xae, 0xa5, 0x54, 0x42, 0x76, 0x95, 0x3d, + 0x89, 0x35, 0x8f, 0xa8, 0xbd, 0xc7, 0xda, 0xa5, 0x47, 0xba, 0x69, 0x93, + 0x71, 0xda, 0x77, 0x71, 0x8e, 0xd5, 0x4a, 0xe6, 0xda, 0x7b, 0x14, 0x92, + 0x49, 0xa1, 0xca, 0x05, 0x3f, 0x30, 0xea, 0x0d, 0x73, 0x96, 0x3e, 0x23, + 0x99, 0x27, 0xc1, 0x8e, 0x49, 0x48, 0x19, 0x56, 0x60, 0x4f, 0x34, 0x01, + 0xda, 0x5f, 0xc9, 0x1e, 0x93, 0xa7, 0xfd, 0x8a, 0x06, 0x0d, 0x3c, 0xa3, + 0x74, 0xee, 0xbf, 0xfa, 0x0d, 0x72, 0x97, 0xdf, 0x69, 0x8a, 0x32, 0xf6, + 0x8c, 0xc9, 0x30, 0xe9, 0xb1, 0xb1, 0x56, 0xed, 0x9e, 0x6b, 0xde, 0x5b, + 0x70, 0x63, 0xc9, 0xc8, 0xab, 0x03, 0x4b, 0x90, 0x9f, 0xbd, 0x40, 0x1c, + 0x9d, 0xa4, 0x77, 0xb6, 0xf1, 0x6d, 0x30, 0x80, 0x49, 0x24, 0x92, 0x69, + 0xee, 0x2e, 0x7b, 0xaa, 0x8a, 0xea, 0x1b, 0x45, 0x95, 0xfb, 0x66, 0x98, + 0x74, 0x07, 0xfe, 0xee, 0x68, 0x03, 0x92, 0x7f, 0xb4, 0x0e, 0xcb, 0x53, + 0xeb, 0x9a, 0xc4, 0xfa, 0x86, 0x8d, 0x05, 0xa9, 0x89, 0x55, 0xa2, 0x18, + 0x04, 0x0c, 0x57, 0x42, 0xfa, 0x2b, 0xa7, 0xf0, 0x67, 0xf0, 0xa8, 0x9f, + 0x49, 0x12, 0x29, 0x06, 0x3f, 0xd2, 0x80, 0x3c, 0xbd, 0x67, 0xd4, 0xf4, + 0xf6, 0xe4, 0x33, 0xa0, 0xec, 0x79, 0x15, 0xd2, 0xf8, 0x65, 0x3f, 0xe1, + 0x34, 0xbb, 0x4d, 0x26, 0xd7, 0x4f, 0x07, 0x54, 0x90, 0x13, 0x14, 0x8a, + 0xfb, 0x79, 0x03, 0x35, 0xb3, 0x79, 0xe1, 0x73, 0x3a, 0xb6, 0xc3, 0xb4, + 0xd6, 0x7e, 0x8f, 0xa4, 0x5e, 0x78, 0x63, 0x5e, 0xb3, 0xbf, 0x46, 0xda, + 0xd1, 0xca, 0x0e, 0xe5, 0xeb, 0x8c, 0xd0, 0x07, 0xbd, 0xfc, 0x22, 0xf8, + 0xab, 0x3e, 0xab, 0x6e, 0x7c, 0x29, 0xe2, 0x1c, 0xdb, 0x6b, 0x76, 0x1f, + 0xbb, 0x8a, 0x47, 0x38, 0x2f, 0x8e, 0xc7, 0xde, 0xbd, 0x62, 0xd3, 0x55, + 0x96, 0xd9, 0xc2, 0xce, 0x32, 0xa7, 0xf8, 0xc5, 0x7c, 0xb7, 0xf1, 0x16, + 0xcd, 0xf4, 0xff, 0x00, 0x12, 0x58, 0x78, 0x96, 0xdd, 0xd8, 0x1b, 0xad, + 0xb2, 0x17, 0x5f, 0xef, 0x8e, 0xb5, 0xf4, 0x47, 0x80, 0xfc, 0x49, 0x69, + 0xe2, 0xed, 0x1e, 0xdd, 0xda, 0x45, 0x59, 0x59, 0x06, 0x51, 0xbd, 0x68, + 0x03, 0xd2, 0xf4, 0xad, 0x42, 0x2b, 0xc8, 0xc4, 0x6e, 0xc0, 0xe7, 0xa1, + 0xab, 0x97, 0x96, 0x02, 0x48, 0x8a, 0x4a, 0xbb, 0xe3, 0x3d, 0x0f, 0xa5, + 0x71, 0xa6, 0xc6, 0xe3, 0x4d, 0x93, 0x7c, 0x04, 0x95, 0xfe, 0xe9, 0xad, + 0xfd, 0x1f, 0xc5, 0x6a, 0xb8, 0x86, 0xf1, 0x76, 0xf6, 0xf9, 0xa8, 0x01, + 0xf1, 0x97, 0xd3, 0xff, 0x00, 0x77, 0x3b, 0x17, 0x87, 0xf8, 0x64, 0x3d, + 0xbd, 0x8d, 0x5a, 0x1c, 0x80, 0x54, 0xee, 0x07, 0xa1, 0x15, 0xa1, 0x25, + 0x94, 0x37, 0xf0, 0x97, 0xb7, 0x70, 0xea, 0x47, 0x2b, 0x58, 0xff, 0x00, + 0xd9, 0xf7, 0x1a, 0x73, 0xb7, 0x95, 0x92, 0xbd, 0x7c, 0xa6, 0xe9, 0xf8, + 0x50, 0x05, 0x9e, 0x78, 0xa9, 0x13, 0xa5, 0x47, 0x0c, 0xe9, 0x3a, 0xf1, + 0xc3, 0x77, 0x53, 0xd4, 0x54, 0xaa, 0x31, 0xc6, 0x28, 0x02, 0x45, 0x04, + 0x73, 0x51, 0xcc, 0xc4, 0xe3, 0x9a, 0x79, 0x75, 0x45, 0x0a, 0xc7, 0x04, + 0xf4, 0xa6, 0x10, 0x19, 0x87, 0xa5, 0x00, 0x37, 0x9c, 0xd4, 0xaa, 0x5c, + 0x93, 0x8e, 0x94, 0xab, 0x1e, 0x6a, 0x68, 0x62, 0xcc, 0x86, 0x80, 0x24, + 0x85, 0x59, 0x53, 0x8a, 0x86, 0x66, 0x62, 0xcc, 0x3d, 0xea, 0xe9, 0x4d, + 0x89, 0x8a, 0xac, 0x13, 0x7b, 0x16, 0x3d, 0x33, 0x40, 0x0c, 0x8e, 0x22, + 0x7e, 0xa6, 0xaf, 0xa4, 0x7e, 0x5a, 0x28, 0xc5, 0x36, 0xde, 0x1d, 0xc7, + 0x24, 0x71, 0x56, 0x1d, 0x3a, 0x50, 0x04, 0x52, 0x7b, 0x54, 0x7b, 0x0d, + 0x5a, 0xf2, 0x77, 0x53, 0xd6, 0xdb, 0x8a, 0x00, 0x65, 0xaa, 0x62, 0xb4, + 0xe1, 0x07, 0x72, 0xd4, 0x10, 0x43, 0x81, 0x5a, 0x16, 0xf0, 0xf2, 0x09, + 0xa0, 0x06, 0xde, 0x2f, 0xc8, 0x84, 0x7a, 0xd5, 0xeb, 0x38, 0xbf, 0x76, + 0x2a, 0x2b, 0x88, 0xb7, 0x26, 0x3d, 0xc5, 0x6b, 0x58, 0xd9, 0xb4, 0x8a, + 0xa0, 0x0e, 0x28, 0x00, 0x8a, 0x1d, 0xd8, 0xe3, 0x8a, 0xb5, 0x0c, 0x3b, + 0x98, 0x56, 0x8d, 0xb6, 0x96, 0x48, 0x19, 0xf9, 0x6a, 0xfc, 0x7a, 0x7c, + 0x50, 0xaf, 0xcc, 0xe3, 0x3f, 0x5a, 0x00, 0xc7, 0x92, 0x02, 0xc4, 0x28, + 0x1d, 0x6a, 0xfd, 0x96, 0x9a, 0x64, 0x38, 0xda, 0x6a, 0x79, 0x2e, 0xb4, + 0xfb, 0x10, 0x64, 0x96, 0xe1, 0x38, 0x1d, 0x33, 0x59, 0x57, 0xfe, 0x39, + 0x0a, 0xa6, 0x3b, 0x08, 0xbd, 0xbc, 0xc7, 0xe0, 0x50, 0x07, 0x42, 0x74, + 0xc8, 0xed, 0x57, 0xcc, 0x9a, 0x45, 0x44, 0x1d, 0x72, 0x6a, 0xa6, 0xa7, + 0xe3, 0x88, 0xad, 0xe2, 0x10, 0x58, 0xa7, 0x98, 0xe0, 0x63, 0xcc, 0xe8, + 0x05, 0x71, 0x17, 0x1a, 0x95, 0xc5, 0xeb, 0xef, 0xb8, 0x9d, 0xa4, 0x3e, + 0x99, 0xe0, 0x54, 0x5e, 0x75, 0x00, 0x5f, 0xbc, 0xbe, 0x9a, 0xfe, 0x43, + 0x25, 0xc4, 0xa6, 0x43, 0xd8, 0x76, 0x15, 0x4a, 0x5c, 0x1a, 0x61, 0x9a, + 0xa3, 0x69, 0x33, 0x40, 0x0d, 0x7e, 0x6a, 0x26, 0x5e, 0x29, 0xe5, 0xf1, + 0xde, 0x98, 0x5b, 0x34, 0x00, 0xcd, 0xb9, 0xa5, 0x0b, 0x4e, 0xc8, 0xa0, + 0x10, 0x4d, 0x00, 0x01, 0x7d, 0x85, 0x4a, 0x89, 0xf4, 0xa6, 0x06, 0x14, + 0xf0, 0xfc, 0xd0, 0x04, 0xe8, 0xb8, 0xa9, 0x36, 0x0c, 0x86, 0x1c, 0x30, + 0xe8, 0x45, 0x40, 0xb2, 0x52, 0xf9, 0xdc, 0x50, 0x06, 0x95, 0xb6, 0xb1, + 0x71, 0x64, 0xfb, 0x80, 0x0f, 0xeb, 0xdb, 0x35, 0x7f, 0xfe, 0x12, 0x38, + 0x6e, 0x31, 0xb9, 0x4c, 0x2d, 0xdc, 0x30, 0xe3, 0xf3, 0xae, 0x78, 0xcd, + 0x4c, 0x69, 0xa8, 0x03, 0xa5, 0x6b, 0xa8, 0x25, 0x5c, 0xab, 0xae, 0x7d, + 0x8d, 0x52, 0x9d, 0x95, 0xf3, 0xb5, 0xb3, 0x58, 0x12, 0xc8, 0x08, 0x35, + 0x9f, 0x3c, 0x04, 0xbe, 0xe8, 0xa6, 0x92, 0x16, 0xf5, 0x56, 0xe2, 0x80, + 0x3a, 0x67, 0x6f, 0x25, 0x54, 0xe7, 0xbf, 0x4a, 0x5b, 0x80, 0x26, 0x02, + 0x44, 0xeb, 0x5c, 0xc1, 0xd4, 0xaf, 0x21, 0x50, 0x1d, 0x96, 0x7c, 0x7e, + 0x04, 0xd5, 0x9b, 0x5d, 0x7e, 0x38, 0xf8, 0x90, 0x94, 0x07, 0xb3, 0x0a, + 0x00, 0xbf, 0x76, 0xfb, 0x93, 0x07, 0xef, 0x55, 0x34, 0x1d, 0x47, 0xb5, + 0x4f, 0x25, 0xc4, 0x77, 0x20, 0xb2, 0x32, 0xb0, 0xf6, 0x35, 0x5f, 0x91, + 0x9c, 0xd0, 0x04, 0x72, 0x8f, 0x94, 0x77, 0xaa, 0x17, 0x0b, 0xd7, 0x9a, + 0xbe, 0x48, 0x0a, 0x41, 0xaa, 0x57, 0x08, 0x09, 0x3c, 0xd0, 0x06, 0x5c, + 0xd8, 0xcd, 0x55, 0x93, 0xa5, 0x68, 0x4b, 0x10, 0x02, 0xa9, 0x48, 0x9d, + 0x68, 0x02, 0x94, 0x8b, 0x93, 0x55, 0x64, 0x5c, 0x9a, 0xbd, 0x22, 0x62, + 0xa1, 0x68, 0xb0, 0xd4, 0x01, 0x46, 0x45, 0xe2, 0xab, 0x48, 0x84, 0x8e, + 0x95, 0xa5, 0x24, 0x23, 0x26, 0xab, 0xc9, 0x11, 0x1c, 0x01, 0x93, 0xe9, + 0x40, 0x19, 0x8c, 0xb8, 0xa5, 0x48, 0x01, 0x1b, 0x9f, 0xe5, 0x02, 0xaf, + 0xfd, 0x8d, 0x61, 0x5f, 0x32, 0x63, 0x83, 0xd9, 0x6a, 0xbc, 0xd8, 0x90, + 0x6e, 0x90, 0xf9, 0x50, 0x8e, 0x83, 0xb9, 0xa0, 0x08, 0xe0, 0x80, 0xde, + 0x4a, 0x30, 0x31, 0x18, 0xfd, 0x6a, 0xe5, 0xf5, 0xfc, 0x7a, 0x75, 0xa9, + 0x45, 0xc1, 0x72, 0x30, 0x14, 0x55, 0x26, 0xbf, 0x91, 0xd7, 0xcb, 0xb6, + 0x4f, 0x2d, 0x3f, 0xbc, 0x7a, 0xd1, 0x6f, 0xa7, 0x6f, 0x6d, 0xf2, 0x9d, + 0xcd, 0xea, 0x68, 0x03, 0x2c, 0xdb, 0xc9, 0x7b, 0x27, 0x99, 0x37, 0x4e, + 0xc2, 0xb5, 0xe7, 0x8f, 0xc8, 0x44, 0x50, 0x07, 0x08, 0x00, 0xf6, 0xa7, + 0xac, 0x5f, 0xe9, 0x4b, 0x1a, 0xc7, 0x91, 0xfd, 0xea, 0xb7, 0x35, 0x99, + 0x79, 0xd9, 0x98, 0x9c, 0x7b, 0xd0, 0x06, 0x14, 0xb6, 0xc5, 0xc8, 0x2d, + 0xd0, 0xd2, 0xac, 0x6b, 0x18, 0xc6, 0x30, 0x05, 0x6a, 0x4f, 0x0a, 0x8e, + 0x9d, 0xaa, 0x15, 0x80, 0x64, 0x92, 0x3f, 0x3a, 0x00, 0xcd, 0x4b, 0x76, + 0xba, 0x98, 0x1c, 0x61, 0x05, 0x4d, 0xac, 0x5d, 0xc5, 0xa6, 0xd8, 0xb0, + 0x18, 0xdd, 0x8e, 0x05, 0x4b, 0x7b, 0xa8, 0x45, 0x64, 0x87, 0x1f, 0x78, + 0x0a, 0xe0, 0x6f, 0xb5, 0xd3, 0x7d, 0x7c, 0xee, 0xe4, 0xb4, 0x6b, 0xc7, + 0x5e, 0x28, 0x03, 0xc2, 0x7e, 0x21, 0x97, 0x7d, 0x7e, 0x67, 0x71, 0x82, + 0xcd, 0x93, 0x5c, 0xe6, 0xab, 0x76, 0xfa, 0x7e, 0xa2, 0xc6, 0x16, 0x57, + 0x46, 0x50, 0x72, 0xa7, 0x8e, 0x95, 0xdd, 0x78, 0xd6, 0xd7, 0xfb, 0x47, + 0x53, 0x9e, 0x40, 0xbb, 0x79, 0xe9, 0x5c, 0xb3, 0xe8, 0x0e, 0x54, 0xf1, + 0x9a, 0x00, 0xe1, 0x75, 0x6b, 0x79, 0xb5, 0x49, 0xbc, 0xc3, 0xb5, 0x48, + 0xee, 0x4d, 0x5e, 0xb5, 0xb6, 0x8f, 0xcb, 0x55, 0x78, 0x90, 0x90, 0x39, + 0xe2, 0xba, 0x75, 0xf0, 0xf3, 0x13, 0xca, 0x7e, 0x94, 0xf4, 0xd0, 0x76, + 0x9f, 0xb9, 0x40, 0x1c, 0xf0, 0xd2, 0x6d, 0x64, 0xfb, 0xd0, 0x28, 0xfa, + 0x53, 0xd3, 0x40, 0xb5, 0x27, 0x2a, 0x19, 0x0f, 0xa8, 0x35, 0xd2, 0xa6, + 0x90, 0x07, 0x51, 0x52, 0xfd, 0x81, 0x62, 0x14, 0x01, 0x9c, 0x90, 0x21, + 0xb7, 0x8e, 0x28, 0xe0, 0xf2, 0xfc, 0x95, 0xc3, 0xca, 0xcf, 0xf7, 0xcf, + 0x6c, 0x0a, 0x74, 0x76, 0x98, 0x39, 0xcd, 0x3e, 0xfa, 0xc5, 0x66, 0x0b, + 0x29, 0x88, 0xca, 0x62, 0x3b, 0xc2, 0x03, 0x8d, 0xde, 0xd5, 0x35, 0x94, + 0x4f, 0x77, 0x10, 0x75, 0xda, 0x1c, 0x8c, 0x94, 0x56, 0xce, 0xdf, 0x6a, + 0x00, 0x9a, 0xd2, 0xee, 0xea, 0xc8, 0xe6, 0x2b, 0x99, 0x63, 0xc7, 0xa3, + 0x1a, 0xed, 0xf4, 0xcf, 0x16, 0x44, 0xde, 0x19, 0x98, 0x9b, 0x99, 0x2e, + 0x35, 0x48, 0x8e, 0x59, 0x27, 0x50, 0x57, 0x19, 0xed, 0xeb, 0xc5, 0x70, + 0x17, 0x69, 0x73, 0x00, 0x23, 0x03, 0x22, 0xa8, 0x58, 0xde, 0x48, 0x2e, + 0x48, 0xfd, 0xe2, 0x48, 0xdc, 0x60, 0x67, 0x0d, 0x40, 0x1d, 0xc9, 0xf1, + 0x4d, 0x95, 0xe0, 0xc5, 0xf6, 0x8d, 0x6d, 0x29, 0xfe, 0xf2, 0x0c, 0x1a, + 0xe7, 0x6f, 0xe2, 0x86, 0x6b, 0xc9, 0x5e, 0xd6, 0x1f, 0x26, 0xdc, 0x9f, + 0x91, 0x09, 0xc9, 0x15, 0x3d, 0xad, 0x84, 0xac, 0xa1, 0xa4, 0xfc, 0xaa, + 0xd8, 0xb4, 0x23, 0x1c, 0x7e, 0x42, 0x80, 0x31, 0x0d, 0xb1, 0x6e, 0xa0, + 0xd3, 0x7e, 0xc8, 0xa0, 0x6d, 0xd8, 0x58, 0x9e, 0x98, 0xeb, 0x5d, 0x55, + 0xaf, 0x87, 0xee, 0xef, 0x9c, 0x2c, 0x36, 0xee, 0xe4, 0xfb, 0x71, 0x5e, + 0x83, 0xe1, 0x0f, 0x87, 0x11, 0xd8, 0xc8, 0xb7, 0x57, 0xca, 0xb2, 0x4c, + 0x39, 0x54, 0xec, 0xb4, 0x01, 0x93, 0xf0, 0xbb, 0xc0, 0x49, 0x64, 0xcb, + 0xaa, 0xde, 0xc3, 0xfb, 0xd3, 0xfe, 0xa5, 0x18, 0x7d, 0xd1, 0xeb, 0x5e, + 0xa4, 0xaa, 0x58, 0xf3, 0x4f, 0x8e, 0xdb, 0x68, 0x03, 0x68, 0x02, 0xac, + 0x47, 0x0d, 0x00, 0x36, 0x38, 0xaa, 0xd4, 0x71, 0x77, 0xa5, 0x8e, 0x2a, + 0xb1, 0x1a, 0x62, 0x80, 0x11, 0x13, 0x9a, 0x9d, 0x16, 0x95, 0x12, 0xa7, + 0x44, 0x1e, 0x94, 0x00, 0x46, 0x95, 0x3a, 0x26, 0x28, 0x44, 0xc5, 0x4c, + 0xa9, 0x40, 0x0a, 0x82, 0xa6, 0x5a, 0x68, 0x4a, 0x95, 0x53, 0xb5, 0x00, + 0x39, 0x79, 0xa9, 0xd4, 0xd3, 0x11, 0x79, 0xa9, 0x95, 0x38, 0xa0, 0x07, + 0x29, 0xa9, 0x91, 0xb3, 0x51, 0xaa, 0x54, 0x8b, 0x1d, 0x00, 0x4a, 0xa7, + 0xda, 0xa5, 0x52, 0x2a, 0x20, 0x95, 0x22, 0xad, 0x00, 0x48, 0xb8, 0xa4, + 0x94, 0xfe, 0xe9, 0xff, 0x00, 0xdd, 0x34, 0xaa, 0xb4, 0x92, 0xaf, 0xee, + 0x9f, 0xfd, 0xd3, 0xfc, 0xa8, 0x02, 0x58, 0x7f, 0xd5, 0x27, 0xfb, 0xa2, + 0x9f, 0xda, 0x99, 0x17, 0xfa, 0xa4, 0xff, 0x00, 0x74, 0x53, 0xba, 0x50, + 0x02, 0xe4, 0x52, 0x13, 0x4b, 0xc5, 0x26, 0x68, 0x01, 0xa7, 0x9e, 0xd4, + 0xd2, 0x30, 0x69, 0xc4, 0xf1, 0x4d, 0x34, 0x00, 0x87, 0x8a, 0x8d, 0xa9, + 0xe7, 0x9a, 0x69, 0x19, 0xf6, 0xa0, 0x08, 0x5a, 0xa3, 0x23, 0x8a, 0x98, + 0x8a, 0x42, 0xb4, 0x01, 0x55, 0x97, 0x35, 0x1b, 0x0a, 0xb2, 0x57, 0xaf, + 0x15, 0x1b, 0x21, 0xa0, 0x0a, 0xac, 0xb5, 0x13, 0x26, 0x6a, 0xdb, 0x2d, + 0x44, 0xc2, 0x80, 0x2b, 0x14, 0xe2, 0xa1, 0x64, 0xce, 0x6a, 0xe3, 0x2d, + 0x44, 0xc9, 0x40, 0x14, 0x5e, 0x3e, 0xb5, 0x0b, 0xa7, 0x15, 0x7d, 0xa3, + 0xcf, 0x6a, 0x8d, 0xa2, 0xe7, 0xa5, 0x00, 0x67, 0x34, 0x39, 0xa8, 0x9e, + 0xde, 0xb4, 0x9a, 0x3c, 0x54, 0x4f, 0x1e, 0x68, 0x03, 0x1e, 0xe3, 0x4c, + 0xb7, 0xbb, 0x5c, 0x4d, 0x0a, 0x4a, 0x3f, 0xda, 0x5c, 0xd6, 0x65, 0xc7, + 0x82, 0x34, 0x6b, 0x9c, 0xee, 0xb4, 0x11, 0x9f, 0x54, 0x38, 0xae, 0x99, + 0xa2, 0xe3, 0x8a, 0x89, 0xa2, 0xc5, 0x00, 0x71, 0x17, 0x9f, 0x0b, 0x34, + 0xfb, 0x85, 0x22, 0x2b, 0x89, 0x23, 0xcf, 0x66, 0xe4, 0x56, 0x15, 0xc7, + 0xc1, 0x86, 0x52, 0x4c, 0x32, 0xc2, 0xff, 0x00, 0x55, 0xc5, 0x7a, 0x81, + 0x53, 0xda, 0x80, 0xc4, 0x0a, 0x00, 0xf1, 0x8b, 0x9f, 0x85, 0x9a, 0xa5, + 0xa8, 0x3b, 0x2d, 0x95, 0xc7, 0xfb, 0x06, 0xb2, 0x6e, 0x7c, 0x1d, 0xa9, + 0xda, 0xe7, 0x7d, 0x9c, 0xab, 0xf4, 0x5c, 0xd7, 0xbf, 0x79, 0x8c, 0x29, + 0x4c, 0xb9, 0x1c, 0xd0, 0x07, 0xcd, 0xd2, 0xe9, 0x37, 0x50, 0x93, 0xba, + 0x29, 0x17, 0xea, 0xa6, 0xab, 0xb4, 0x52, 0xa1, 0xe7, 0x22, 0xbe, 0x94, + 0x78, 0xa0, 0x94, 0x7c, 0xf1, 0x23, 0x7d, 0x54, 0x1a, 0xa9, 0x36, 0x8b, + 0xa6, 0xcf, 0xf7, 0xec, 0xa1, 0x3f, 0xf0, 0x01, 0x40, 0x1f, 0x39, 0x9d, + 0xc7, 0x83, 0xcd, 0x26, 0x0e, 0x31, 0xb4, 0x7e, 0x55, 0xf4, 0x04, 0xbe, + 0x0d, 0xd1, 0x26, 0xfb, 0xd6, 0x31, 0xe7, 0xdb, 0x8a, 0xab, 0x27, 0xc3, + 0xdd, 0x0a, 0x4e, 0x96, 0x9b, 0x7e, 0x8c, 0x68, 0x03, 0xc1, 0xda, 0x30, + 0xdd, 0x50, 0x64, 0xd5, 0x6b, 0x98, 0x22, 0x8d, 0x94, 0xb5, 0xbf, 0x9b, + 0x9e, 0x83, 0x3d, 0x0d, 0x7b, 0xe1, 0xf8, 0x67, 0xa1, 0x9e, 0x44, 0x6e, + 0xbf, 0xf0, 0x2a, 0xa9, 0x7f, 0xf0, 0x97, 0x4a, 0xbc, 0x40, 0x20, 0x91, + 0xe1, 0x94, 0x74, 0x62, 0x72, 0x3f, 0x2a, 0x00, 0xf2, 0x4b, 0x6b, 0x73, + 0xe2, 0x1f, 0x0b, 0xde, 0x58, 0x4a, 0xaa, 0x6e, 0x6d, 0x8f, 0x9d, 0x08, + 0xf6, 0xee, 0x3f, 0x2a, 0xa3, 0xe0, 0x4d, 0x74, 0x68, 0x3a, 0x92, 0xc5, + 0x77, 0x94, 0xb6, 0x63, 0xc3, 0x03, 0x8d, 0x86, 0xbd, 0x5a, 0xd3, 0xe0, + 0xcd, 0xde, 0x9d, 0x7a, 0xb7, 0x16, 0xda, 0xa2, 0x02, 0x3a, 0xab, 0x47, + 0x90, 0xc3, 0xb8, 0x3c, 0xd3, 0x22, 0xf8, 0x19, 0xba, 0x46, 0x79, 0x6f, + 0x91, 0xc9, 0x39, 0xc0, 0x4e, 0x3f, 0x9d, 0x00, 0x6b, 0xc1, 0xf1, 0x8b, + 0x4b, 0xd2, 0x55, 0x62, 0xbb, 0x9d, 0x65, 0x88, 0x0f, 0xbf, 0x9c, 0x91, + 0x5a, 0xf6, 0xbf, 0x10, 0x7c, 0x39, 0xe2, 0x40, 0x3e, 0xcd, 0x79, 0x03, + 0x13, 0xd5, 0x09, 0xda, 0x6b, 0x9d, 0x4f, 0x81, 0xf6, 0xdf, 0xc5, 0x70, + 0x9f, 0xf7, 0xee, 0xad, 0xc3, 0xf0, 0x4f, 0x4f, 0x18, 0xdd, 0x38, 0xe3, + 0xd1, 0x05, 0x00, 0x75, 0x36, 0xfa, 0xd4, 0x3a, 0x7b, 0x06, 0xb6, 0xd4, + 0x52, 0x2f, 0xf6, 0x59, 0xc6, 0x2b, 0x46, 0xdb, 0xe2, 0xa5, 0x9c, 0x6d, + 0xb2, 0xf4, 0xc6, 0xd8, 0xe3, 0x7a, 0x30, 0x35, 0xca, 0x47, 0xf0, 0x8b, + 0x4b, 0x03, 0x0f, 0x34, 0x8c, 0x07, 0x61, 0x53, 0xc7, 0xf0, 0x9b, 0x41, + 0x53, 0xf3, 0x44, 0xef, 0xf5, 0x34, 0x01, 0xda, 0xc3, 0xe2, 0x0f, 0x0f, + 0x6b, 0x47, 0x75, 0xbd, 0xf2, 0x45, 0x2f, 0xa6, 0xe1, 0x56, 0x80, 0x70, + 0x33, 0x14, 0xf1, 0xce, 0xbd, 0xb0, 0x79, 0xae, 0x32, 0xdb, 0xe1, 0xaf, + 0x87, 0xed, 0x1c, 0x3c, 0x76, 0x2b, 0xbc, 0x77, 0xdc, 0x73, 0x5b, 0xb6, + 0xda, 0x64, 0x16, 0x6a, 0x16, 0x14, 0xd8, 0x07, 0xbd, 0x00, 0x5b, 0xbc, + 0xb8, 0x64, 0x21, 0xa4, 0x52, 0xa4, 0x77, 0x07, 0x35, 0x17, 0xfc, 0x24, + 0xb6, 0x96, 0xe4, 0x09, 0x24, 0xdb, 0x9e, 0xe0, 0x53, 0x24, 0xb7, 0x12, + 0x7d, 0xee, 0x6a, 0x07, 0xd2, 0xa3, 0x97, 0xaa, 0x66, 0x80, 0x37, 0xec, + 0xf5, 0x1b, 0x7b, 0xc5, 0x0d, 0x0c, 0xc8, 0xeb, 0xec, 0x6b, 0x62, 0xd2, + 0x2d, 0x8a, 0xd2, 0xbf, 0x04, 0xf4, 0x15, 0xc3, 0x43, 0xa1, 0x43, 0x13, + 0x86, 0x4c, 0xc6, 0xde, 0xaa, 0x71, 0x57, 0x96, 0x1b, 0x84, 0x6d, 0xcb, + 0x77, 0x36, 0x7d, 0xdb, 0x34, 0x01, 0xd5, 0xb8, 0x2f, 0xf8, 0xd2, 0x45, + 0x6e, 0x58, 0xe3, 0xb5, 0x60, 0xc3, 0x77, 0x77, 0x18, 0xff, 0x00, 0x5f, + 0xbb, 0xfd, 0xe1, 0x56, 0xd3, 0x56, 0xbb, 0x41, 0x81, 0xe5, 0x9f, 0xc0, + 0xd0, 0x07, 0x40, 0x88, 0x23, 0x00, 0x62, 0x86, 0xc6, 0x40, 0xef, 0x5c, + 0xe4, 0xfa, 0xa5, 0xfc, 0x9c, 0x46, 0xd1, 0xa7, 0xb9, 0x19, 0xaa, 0xcd, + 0x3e, 0xa2, 0xd9, 0xff, 0x00, 0x4a, 0x55, 0xf7, 0x0b, 0x40, 0x1d, 0x8a, + 0x32, 0xa8, 0x39, 0x34, 0x3d, 0xe4, 0x49, 0xd5, 0x80, 0xf7, 0xae, 0x33, + 0x65, 0xec, 0x9f, 0x7e, 0xfa, 0x4f, 0xc0, 0x01, 0x4d, 0xfe, 0xcc, 0xf3, + 0x0e, 0x64, 0x9e, 0x67, 0xfa, 0xb1, 0xa0, 0x0e, 0xde, 0x3b, 0xf8, 0x38, + 0xcc, 0x8a, 0x07, 0xd6, 0xa7, 0xfe, 0xd9, 0xb4, 0x52, 0x3f, 0x7e, 0xb8, + 0x1e, 0xf5, 0xc4, 0xc3, 0xa6, 0x42, 0x9d, 0x8b, 0x7f, 0xbc, 0x49, 0xab, + 0xb1, 0x41, 0x14, 0x63, 0x84, 0x5f, 0xca, 0x80, 0x3a, 0x9b, 0x3f, 0x15, + 0xd8, 0xdc, 0xde, 0x79, 0x47, 0x71, 0x54, 0xe7, 0x78, 0x5e, 0x0d, 0x6d, + 0xff, 0x00, 0xc2, 0x6d, 0x14, 0x3c, 0x41, 0x6c, 0x5b, 0xea, 0x71, 0x5c, + 0x24, 0x65, 0x57, 0xa0, 0xc7, 0xd2, 0xac, 0x2c, 0x94, 0x01, 0xd4, 0xdc, + 0x78, 0xcb, 0x51, 0x9f, 0x21, 0x19, 0x61, 0x5f, 0x61, 0x93, 0x54, 0x64, + 0xd5, 0x2e, 0xae, 0x3f, 0xd6, 0xdc, 0xc8, 0xf9, 0xf7, 0xc5, 0x64, 0x09, + 0x4d, 0x3c, 0x4d, 0xef, 0x40, 0x1a, 0x0a, 0x54, 0x1c, 0xe3, 0x9f, 0x53, + 0x52, 0x09, 0xf8, 0xaa, 0x02, 0x6f, 0x7a, 0x70, 0x9b, 0xb6, 0x68, 0x02, + 0xf8, 0x9b, 0x14, 0x79, 0xd9, 0xaa, 0x22, 0x5a, 0x5f, 0x36, 0x80, 0x2e, + 0x99, 0xb2, 0x69, 0x0c, 0xa7, 0xd6, 0xaa, 0x79, 0xde, 0xf4, 0x79, 0xbe, + 0xf4, 0x01, 0x6b, 0xcc, 0xcd, 0x08, 0xc6, 0x47, 0x0a, 0xbd, 0x49, 0xc0, + 0xaa, 0x9e, 0x6f, 0xbd, 0x1e, 0x67, 0x4a, 0x00, 0xea, 0x21, 0xf0, 0xbc, + 0xd2, 0xc2, 0x1f, 0xce, 0x4d, 0xc7, 0xf8, 0x6a, 0x85, 0xfe, 0x91, 0x71, + 0xa7, 0xae, 0xe9, 0x36, 0xed, 0xf6, 0x35, 0x97, 0x16, 0xa1, 0x34, 0x47, + 0xe4, 0x95, 0xd7, 0xe8, 0x68, 0x9e, 0xfe, 0x6b, 0x96, 0x06, 0x59, 0x19, + 0xcf, 0xb9, 0xa0, 0x09, 0x44, 0x94, 0xed, 0xe4, 0xd5, 0x31, 0x2f, 0xbd, + 0x28, 0x9b, 0xb6, 0x68, 0x02, 0xe7, 0x98, 0x45, 0x1e, 0x75, 0x52, 0x33, + 0x7b, 0xf3, 0x41, 0x9a, 0x80, 0x2d, 0x99, 0x8d, 0x30, 0xcd, 0x9e, 0xf5, + 0x54, 0xcb, 0xef, 0x4c, 0x33, 0x50, 0x05, 0x97, 0x97, 0xde, 0xa1, 0x79, + 0x3d, 0xea, 0x06, 0x9b, 0x35, 0x13, 0x49, 0x9a, 0x00, 0x95, 0xdf, 0x27, + 0xad, 0x40, 0xe4, 0x1c, 0xe4, 0x66, 0x98, 0xcf, 0x4c, 0x66, 0xe3, 0xad, + 0x00, 0x34, 0xe2, 0x26, 0xcc, 0x64, 0xa1, 0xff, 0x00, 0x64, 0xe2, 0x81, + 0xaa, 0x5d, 0x44, 0x78, 0x70, 0xe3, 0xd1, 0x85, 0x44, 0xf2, 0x01, 0x55, + 0xe4, 0x93, 0xd2, 0x80, 0x34, 0xd3, 0x5e, 0x04, 0xe2, 0x58, 0xb1, 0xee, + 0xa6, 0x9b, 0x2e, 0xb7, 0x6c, 0x0f, 0x2a, 0xe0, 0x7d, 0x2b, 0x21, 0xce, + 0x6a, 0x26, 0x19, 0x14, 0x01, 0xa7, 0x2e, 0xbd, 0xa7, 0x93, 0x83, 0x29, + 0x53, 0xee, 0x2a, 0x35, 0xbe, 0xb4, 0xb8, 0xc9, 0x49, 0xd4, 0xfe, 0x35, + 0x93, 0x24, 0x4a, 0xc3, 0x90, 0x0d, 0x57, 0x36, 0xd1, 0xa9, 0xe1, 0x00, + 0xfc, 0x28, 0x03, 0x5a, 0xe6, 0xfa, 0xda, 0x11, 0xf3, 0x4c, 0x83, 0xea, + 0x6a, 0x93, 0xeb, 0x56, 0xa5, 0x49, 0x13, 0x2b, 0x7b, 0x03, 0x54, 0xa4, + 0xb4, 0x89, 0xba, 0xc6, 0xbf, 0x95, 0x57, 0x7d, 0x3e, 0xdc, 0x83, 0x98, + 0x57, 0xf2, 0xa0, 0x0b, 0x6d, 0xe2, 0x0b, 0x34, 0x27, 0xcc, 0x9a, 0x38, + 0xd7, 0xfd, 0xb6, 0xe6, 0xa3, 0x6f, 0x11, 0xdb, 0xc9, 0x91, 0x6b, 0xfb, + 0xe7, 0xfe, 0xf0, 0xac, 0xb9, 0xf4, 0x2b, 0x39, 0x4e, 0x4d, 0xba, 0x1f, + 0xc2, 0xa2, 0x5d, 0x16, 0x18, 0xb8, 0x8d, 0x4c, 0x7f, 0xee, 0x92, 0x28, + 0x03, 0x53, 0x65, 0xdd, 0xd1, 0xdd, 0x8c, 0x13, 0xdc, 0xf6, 0xa9, 0x22, + 0xd2, 0xa7, 0x73, 0x99, 0x72, 0xdf, 0x5a, 0xc8, 0x16, 0x53, 0x47, 0xfe, + 0xae, 0xee, 0x74, 0xff, 0x00, 0x81, 0xe6, 0x82, 0x35, 0x24, 0x1f, 0x2d, + 0xfb, 0x9f, 0xf7, 0x80, 0xa0, 0x0e, 0x9a, 0x1d, 0x2f, 0x1d, 0x80, 0xab, + 0x02, 0xcd, 0x13, 0xef, 0x11, 0xc5, 0x72, 0x1f, 0x6a, 0xd6, 0x23, 0xe9, + 0x70, 0x8e, 0x3d, 0xc1, 0xa0, 0xdf, 0xea, 0xdd, 0xc4, 0x6d, 0xf8, 0x9a, + 0x00, 0xec, 0xe2, 0x58, 0xd1, 0xb2, 0x00, 0xe3, 0x9a, 0xad, 0x73, 0x76, + 0x91, 0xa9, 0xe4, 0x66, 0xb9, 0x13, 0xac, 0xea, 0xd1, 0x03, 0x88, 0x11, + 0xb2, 0x31, 0x9d, 0xf5, 0x4a, 0x6b, 0xbd, 0x4a, 0x51, 0xf3, 0x42, 0x3f, + 0x06, 0xa0, 0x0e, 0xa1, 0xef, 0x61, 0x62, 0x77, 0x11, 0x9f, 0x6a, 0xa3, + 0x7d, 0x7b, 0xe5, 0xa9, 0x0a, 0x78, 0xf5, 0xae, 0x61, 0x9f, 0x52, 0x46, + 0x2c, 0x21, 0x0d, 0xec, 0x5b, 0xff, 0x00, 0xad, 0x50, 0x6a, 0x53, 0xeb, + 0x52, 0x5a, 0x32, 0x5a, 0xda, 0xc2, 0xb3, 0x1e, 0x8d, 0x23, 0x9c, 0x0f, + 0xd2, 0x80, 0x31, 0xfe, 0x22, 0xf8, 0xbc, 0x68, 0x5a, 0x5b, 0x94, 0x5f, + 0x36, 0x67, 0xf9, 0x42, 0x83, 0xd6, 0xbc, 0xb2, 0x6f, 0x18, 0xdd, 0xea, + 0x28, 0x91, 0x8b, 0x66, 0xb6, 0x8f, 0xa9, 0x64, 0x6e, 0x4d, 0x75, 0xba, + 0x87, 0xc3, 0xad, 0x7b, 0x59, 0x9f, 0xcd, 0xd4, 0x2e, 0xa2, 0x95, 0xb3, + 0x90, 0xa3, 0x80, 0x3e, 0x94, 0xf8, 0xbe, 0x17, 0x5e, 0x20, 0xc6, 0xe8, + 0x87, 0xe3, 0x40, 0x1c, 0x6b, 0x6a, 0x57, 0x4e, 0xd2, 0x3e, 0x43, 0x06, + 0x1b, 0x4e, 0xf5, 0x15, 0x62, 0x21, 0x10, 0x45, 0x0c, 0x72, 0x71, 0xce, + 0x05, 0x75, 0x72, 0xfc, 0x32, 0xd4, 0x8a, 0xe2, 0x3f, 0x28, 0xfe, 0x35, + 0x2a, 0x7c, 0x34, 0xd4, 0x36, 0x8d, 0xc6, 0x25, 0x3f, 0xef, 0x50, 0x07, + 0x26, 0x7e, 0xce, 0x3a, 0x67, 0xf2, 0xa8, 0x64, 0xd8, 0x3a, 0x2d, 0x77, + 0x11, 0xfc, 0x31, 0xb9, 0x62, 0x37, 0x5c, 0x46, 0xbf, 0x4e, 0x6a, 0xcc, + 0x7f, 0x0b, 0x97, 0x1f, 0x3d, 0xf0, 0xfc, 0x12, 0x80, 0x3c, 0xe2, 0x48, + 0xf7, 0x70, 0x00, 0x19, 0xa8, 0x1b, 0x4f, 0xf3, 0x3a, 0xb3, 0x7e, 0x15, + 0xeb, 0x90, 0x7c, 0x31, 0xb1, 0x5f, 0xf5, 0x97, 0x32, 0x3f, 0xd0, 0x62, + 0xb4, 0x2d, 0xfe, 0x1f, 0xe8, 0xf0, 0x8c, 0xb4, 0x4f, 0x21, 0x1f, 0xde, + 0x6a, 0x00, 0xf0, 0xf3, 0xa6, 0xc9, 0xd1, 0x1f, 0xf3, 0x15, 0x5b, 0x46, + 0xf0, 0x5e, 0xa1, 0x6d, 0xac, 0xcd, 0x75, 0x08, 0x66, 0x86, 0x6f, 0xbd, + 0x1a, 0xa9, 0xc6, 0x7d, 0x6b, 0xe8, 0xdb, 0x7f, 0x0e, 0x69, 0x56, 0x98, + 0xf2, 0xec, 0xa3, 0xc8, 0xee, 0xc3, 0x35, 0x7d, 0x12, 0x38, 0x46, 0x22, + 0x85, 0x13, 0xe8, 0xa0, 0x50, 0x07, 0x8c, 0x5a, 0x78, 0x13, 0x53, 0xbf, + 0xc6, 0x2c, 0xdb, 0x1e, 0xac, 0x31, 0x5b, 0x76, 0x3f, 0x08, 0x6e, 0x1c, + 0x86, 0x9d, 0xe1, 0x87, 0xe8, 0x32, 0x6b, 0xd4, 0x03, 0xb9, 0xf6, 0xa5, + 0x01, 0x9b, 0xbd, 0x00, 0x71, 0xd6, 0x5f, 0x0b, 0x34, 0xd8, 0x30, 0x67, + 0x99, 0xe6, 0x3e, 0x83, 0x81, 0x5b, 0x76, 0xde, 0x11, 0xd2, 0x2c, 0x80, + 0xf2, 0xec, 0xa3, 0x24, 0x77, 0x61, 0x9a, 0xd9, 0x11, 0x9a, 0x7a, 0xc5, + 0x40, 0x14, 0xd2, 0xce, 0x34, 0x18, 0x48, 0xd5, 0x07, 0xb0, 0xc5, 0x4c, + 0x96, 0xf8, 0xe9, 0x56, 0x96, 0x2a, 0x95, 0x62, 0xf4, 0xa0, 0x0a, 0xa2, + 0x13, 0x91, 0x9a, 0x91, 0x21, 0xf6, 0xab, 0x62, 0x1c, 0xd4, 0x8b, 0x0f, + 0xa5, 0x00, 0x57, 0x48, 0xb1, 0x52, 0xa2, 0x54, 0xeb, 0x17, 0x35, 0x20, + 0x8b, 0x14, 0x01, 0x1a, 0x26, 0x2a, 0x75, 0x4c, 0x53, 0x96, 0x3f, 0x6a, + 0x91, 0x52, 0x80, 0x1a, 0xaa, 0x2a, 0x65, 0x14, 0x04, 0xa9, 0x55, 0x71, + 0x8a, 0x00, 0x15, 0x7b, 0x54, 0xaa, 0x29, 0x02, 0xf7, 0xa7, 0x85, 0xc8, + 0xa0, 0x07, 0xa8, 0xa9, 0x54, 0x53, 0x14, 0x62, 0xa5, 0x41, 0x40, 0x0f, + 0x02, 0xa4, 0x5e, 0x29, 0xaa, 0x05, 0x3d, 0x45, 0x00, 0x3c, 0x63, 0x8a, + 0x91, 0x79, 0xa6, 0x28, 0x18, 0xa7, 0xa8, 0x02, 0x80, 0x1e, 0x05, 0x12, + 0xa8, 0xf2, 0x5f, 0xfd, 0xd3, 0x4a, 0x38, 0x14, 0x92, 0xff, 0x00, 0xaa, + 0x6f, 0xf7, 0x4d, 0x00, 0x3e, 0x21, 0xfb, 0xa4, 0xfa, 0x0a, 0x78, 0xa6, + 0xc3, 0xcc, 0x48, 0x7d, 0x85, 0x3c, 0x8e, 0x28, 0x01, 0x30, 0x28, 0xda, + 0x29, 0x71, 0xc5, 0x14, 0x00, 0xc2, 0x29, 0xa0, 0x54, 0x98, 0xa6, 0xe3, + 0xf2, 0xa0, 0x08, 0xc8, 0xa4, 0x22, 0xa4, 0x20, 0x53, 0x48, 0xa0, 0x08, + 0x9b, 0xbf, 0xad, 0x46, 0x41, 0x3f, 0x5a, 0x9d, 0x87, 0xb5, 0x30, 0x8a, + 0x00, 0x80, 0xaf, 0x34, 0xc2, 0xb5, 0x39, 0x14, 0xd2, 0xbc, 0x50, 0x05, + 0x76, 0x5f, 0x6a, 0x8c, 0xad, 0x59, 0x29, 0x9a, 0x61, 0x4e, 0x28, 0x02, + 0xab, 0x2e, 0x4d, 0x30, 0xc7, 0x56, 0x4a, 0x73, 0x4c, 0x65, 0xc7, 0x14, + 0x01, 0x54, 0xa5, 0x30, 0xa5, 0x59, 0x65, 0xe6, 0x98, 0xc2, 0x80, 0x2a, + 0x32, 0x54, 0x6c, 0x95, 0x69, 0x97, 0x22, 0xa2, 0x65, 0xc0, 0xa0, 0x0a, + 0xa5, 0x2a, 0x36, 0x4a, 0xb4, 0x57, 0xda, 0xa3, 0x64, 0xf6, 0xa0, 0x0a, + 0x8d, 0x1d, 0x30, 0xc7, 0x8a, 0xb6, 0xc9, 0x51, 0xb4, 0x74, 0x01, 0x58, + 0xa0, 0xc5, 0x34, 0xc7, 0xc5, 0x5a, 0x31, 0xf1, 0x4d, 0x31, 0x50, 0x05, + 0x52, 0x9e, 0xd4, 0xc2, 0xb8, 0xab, 0x66, 0x2a, 0x69, 0x88, 0x50, 0x05, + 0x5c, 0x50, 0x10, 0x9f, 0xa5, 0x59, 0xf2, 0x45, 0x28, 0x4a, 0x00, 0x81, + 0x62, 0x27, 0xad, 0x48, 0xb1, 0x6d, 0x39, 0xa9, 0x82, 0xd4, 0x8a, 0xb4, + 0x00, 0xd5, 0x53, 0x8a, 0x7a, 0xad, 0x39, 0x46, 0x6a, 0x45, 0x8f, 0xa5, + 0x00, 0x35, 0x41, 0xe2, 0xa4, 0x58, 0xc9, 0xa7, 0x84, 0x03, 0x14, 0xfa, + 0x00, 0x8f, 0x66, 0x28, 0xdb, 0x52, 0x62, 0x97, 0x14, 0x01, 0x16, 0xda, + 0x5d, 0xb4, 0xfc, 0x66, 0x97, 0x6d, 0x00, 0x47, 0xb6, 0x94, 0x2e, 0x29, + 0xfb, 0x68, 0xc5, 0x00, 0x26, 0x07, 0x6a, 0x50, 0x33, 0x4b, 0x8a, 0x50, + 0x28, 0x00, 0x02, 0x9d, 0xda, 0x97, 0x14, 0x62, 0x80, 0x01, 0xcd, 0x3f, + 0x14, 0x80, 0x52, 0x8a, 0x00, 0x51, 0x4f, 0x1c, 0x53, 0x01, 0x14, 0xe0, + 0x68, 0x01, 0xeb, 0xf9, 0x54, 0x81, 0x8f, 0x4a, 0x84, 0x1a, 0x70, 0x34, + 0x01, 0x30, 0x7c, 0x54, 0xab, 0x26, 0x2a, 0xb0, 0x7a, 0x91, 0x4d, 0x00, + 0x59, 0x12, 0xd3, 0xfc, 0xca, 0xaa, 0x1a, 0x9c, 0x1a, 0x80, 0x2d, 0x09, + 0x31, 0x4e, 0x12, 0xd5, 0x50, 0xd8, 0xa5, 0xdf, 0x40, 0x16, 0xfc, 0xda, + 0x5f, 0x36, 0xaa, 0xf9, 0x94, 0xc9, 0x2e, 0x3c, 0xb5, 0x26, 0x80, 0x2e, + 0xf9, 0xb5, 0x4b, 0x54, 0xd7, 0xec, 0x74, 0x5b, 0x76, 0x9e, 0xf6, 0xea, + 0x38, 0x23, 0x51, 0x92, 0x59, 0xab, 0xca, 0xfc, 0x43, 0xf1, 0x52, 0xe2, + 0xd3, 0x51, 0x9e, 0xca, 0xeb, 0x76, 0x93, 0x1a, 0xb6, 0x12, 0x52, 0x84, + 0x89, 0x07, 0xfb, 0xdd, 0xab, 0x03, 0x59, 0x97, 0xed, 0x70, 0x0b, 0xd7, + 0x90, 0x88, 0xc8, 0xcb, 0x4f, 0x23, 0xef, 0x52, 0x3e, 0x94, 0x01, 0xde, + 0x68, 0xff, 0x00, 0x1f, 0xfc, 0x1f, 0xac, 0xea, 0x32, 0x59, 0xc5, 0xa9, + 0x08, 0xe5, 0x46, 0xda, 0x0c, 0xa0, 0xa8, 0x6f, 0xa1, 0xae, 0xe2, 0xcf, + 0x5d, 0xb2, 0xd4, 0x50, 0x35, 0xad, 0xdc, 0x53, 0x0f, 0xf6, 0x1c, 0x1a, + 0xf9, 0x62, 0x79, 0x3c, 0x19, 0xa8, 0xdd, 0x7d, 0x9c, 0xc6, 0xb0, 0x5c, + 0xb1, 0xc3, 0x5e, 0x46, 0x38, 0xcd, 0x6d, 0x5a, 0x78, 0x7e, 0x2d, 0x2a, + 0x58, 0xd3, 0x4f, 0xba, 0x76, 0xb7, 0x1f, 0x33, 0xca, 0x18, 0xa3, 0x7e, + 0x14, 0x01, 0xf4, 0xc0, 0x97, 0xd0, 0xd2, 0x99, 0x4e, 0x6b, 0xc7, 0x7c, + 0x39, 0xe2, 0x9b, 0x79, 0xee, 0x7c, 0xb1, 0xae, 0xcd, 0x65, 0x14, 0x63, + 0x04, 0xdc, 0x1d, 0xc1, 0x8f, 0xb1, 0x35, 0xe8, 0xba, 0x52, 0xdf, 0x5d, + 0xe9, 0xb3, 0x5f, 0xa6, 0xab, 0xa7, 0x4f, 0x68, 0x83, 0x21, 0xe4, 0x7d, + 0xa4, 0xa8, 0xea, 0x78, 0xa0, 0x0d, 0xdf, 0x36, 0x81, 0x2d, 0x60, 0x78, + 0x7f, 0xc4, 0x0b, 0xae, 0x59, 0xf9, 0xe1, 0x36, 0x0d, 0xc4, 0x0e, 0x78, + 0x20, 0x77, 0x1e, 0xd5, 0xab, 0xe6, 0x73, 0x40, 0x16, 0xbc, 0xdf, 0x7a, + 0x43, 0x35, 0x56, 0xf3, 0x33, 0x49, 0xe6, 0x50, 0x05, 0x83, 0x37, 0x14, + 0xc6, 0x98, 0xd4, 0x25, 0xe9, 0x9b, 0xe8, 0x02, 0x53, 0x36, 0x4d, 0x34, + 0xc8, 0x7d, 0x6a, 0x22, 0xf4, 0xc2, 0xf4, 0x01, 0x21, 0x6c, 0xf7, 0xa6, + 0x33, 0xfc, 0xbd, 0x6a, 0x3d, 0xde, 0xf4, 0xd2, 0x68, 0x00, 0x66, 0xcd, + 0x46, 0xc6, 0x9c, 0x69, 0x8c, 0x68, 0x01, 0x8c, 0x69, 0x84, 0x53, 0xc9, + 0xc5, 0x30, 0x9e, 0x28, 0x02, 0x36, 0x15, 0x19, 0xc5, 0x4a, 0x45, 0x30, + 0x8a, 0x00, 0x85, 0x86, 0x69, 0x8c, 0xb5, 0x35, 0x30, 0x8a, 0x00, 0x80, + 0xad, 0x46, 0x57, 0xbd, 0x4e, 0xcb, 0x4c, 0x23, 0x34, 0x01, 0x03, 0x27, + 0x1d, 0x29, 0xbb, 0x3d, 0xaa, 0x72, 0xb4, 0x84, 0x50, 0x04, 0x1b, 0x29, + 0x0a, 0xd5, 0x8d, 0xb9, 0xa6, 0xb2, 0x50, 0x05, 0x7d, 0x9e, 0xd4, 0xd3, + 0x18, 0x3d, 0xaa, 0x7d, 0xb4, 0xd2, 0x38, 0xa0, 0x0a, 0x8d, 0x08, 0xf4, + 0xa8, 0xcc, 0x78, 0xed, 0x57, 0x08, 0xa6, 0xb4, 0x74, 0x01, 0x4c, 0xc4, + 0x09, 0xe9, 0xcd, 0x37, 0xc8, 0x53, 0xda, 0xad, 0x98, 0xbd, 0x29, 0x36, + 0x1e, 0xb8, 0xa0, 0x0a, 0xbe, 0x56, 0xce, 0xd4, 0x6c, 0xcd, 0x5b, 0x09, + 0xc1, 0xe2, 0x9a, 0xd0, 0xfa, 0x50, 0x05, 0x71, 0x18, 0x3d, 0x45, 0x1f, + 0x67, 0x53, 0xda, 0xa6, 0x31, 0x11, 0x4b, 0xb6, 0x80, 0x2b, 0xfd, 0x97, + 0xd2, 0x90, 0xc0, 0x47, 0x6a, 0xb8, 0xab, 0x8a, 0x78, 0x1e, 0xb4, 0x01, + 0x44, 0x47, 0x8e, 0xa2, 0x9c, 0xb1, 0x8f, 0x4a, 0xba, 0x23, 0x07, 0xb5, + 0x06, 0x10, 0x68, 0x02, 0xaa, 0xa0, 0x34, 0xe5, 0x86, 0xa6, 0xf2, 0x39, + 0xe2, 0x9c, 0x21, 0x61, 0x40, 0x11, 0x88, 0x45, 0x48, 0xb1, 0x01, 0x4f, + 0x08, 0x47, 0x5a, 0x7a, 0xa9, 0x1d, 0xa8, 0x01, 0xab, 0x17, 0xad, 0x4a, + 0xa9, 0x81, 0x4e, 0x51, 0x9a, 0x95, 0x57, 0x9a, 0x00, 0x6a, 0xc7, 0x52, + 0x88, 0xf8, 0xa7, 0x28, 0xa9, 0x40, 0xe2, 0x80, 0x23, 0x11, 0x66, 0xa4, + 0x11, 0xf3, 0x52, 0x2a, 0xd3, 0xc2, 0x50, 0x04, 0x42, 0x3c, 0xd3, 0xc2, + 0xd4, 0xaa, 0x9c, 0x53, 0x82, 0x50, 0x04, 0x61, 0x2a, 0x40, 0x98, 0xa7, + 0x04, 0xe6, 0xa4, 0x0b, 0x40, 0x0c, 0x55, 0xa9, 0x42, 0xd2, 0x84, 0xa7, + 0xa8, 0xa0, 0x04, 0x51, 0x52, 0xa8, 0xa4, 0x09, 0xf9, 0xd4, 0x8a, 0xb4, + 0x00, 0x2a, 0xd4, 0x8a, 0xa0, 0xd0, 0xa2, 0x9e, 0xa2, 0x80, 0x14, 0x2e, + 0x29, 0xc1, 0x73, 0x40, 0xf5, 0xa7, 0x01, 0x9a, 0x00, 0x50, 0xbc, 0x53, + 0x65, 0x1f, 0xba, 0x7f, 0xf7, 0x4f, 0xf2, 0xa9, 0x06, 0x69, 0xb2, 0xff, + 0x00, 0xa9, 0x7f, 0xf7, 0x4d, 0x00, 0x49, 0x11, 0xfd, 0xda, 0xfd, 0x05, + 0x3f, 0xad, 0x32, 0x2f, 0xf5, 0x49, 0xf4, 0x15, 0x26, 0x38, 0xa0, 0x04, + 0xc6, 0x68, 0x22, 0x97, 0x14, 0x94, 0x00, 0xd2, 0x39, 0xa4, 0xc5, 0x49, + 0x4d, 0x23, 0x93, 0x8a, 0x00, 0x66, 0x29, 0xb8, 0xa7, 0x91, 0x49, 0xda, + 0x80, 0x19, 0xb7, 0x34, 0xd2, 0xbc, 0x53, 0xcd, 0x35, 0xa8, 0x01, 0x84, + 0x62, 0x98, 0x69, 0xe4, 0x53, 0x4d, 0x00, 0x31, 0xb8, 0xe9, 0x4c, 0x61, + 0x4f, 0x34, 0xc6, 0xa0, 0x08, 0x98, 0x54, 0x4d, 0x52, 0x9e, 0x6a, 0x36, + 0xa0, 0x08, 0x9b, 0x34, 0xc6, 0x15, 0x21, 0x35, 0x1b, 0x50, 0x04, 0x64, + 0x73, 0x51, 0x30, 0xa9, 0x9a, 0x98, 0x7a, 0x50, 0x04, 0x07, 0x9a, 0x61, + 0xa9, 0x5e, 0xa2, 0x23, 0x9c, 0x1a, 0x00, 0x61, 0x5c, 0xd2, 0x15, 0xa7, + 0x9a, 0x08, 0xe2, 0x80, 0x22, 0x2b, 0x4d, 0x2b, 0x52, 0xe3, 0xd2, 0x9b, + 0x8a, 0x00, 0x84, 0xae, 0x0d, 0x21, 0x19, 0x15, 0x2b, 0x2d, 0x26, 0xcc, + 0xd0, 0x04, 0x78, 0x14, 0x62, 0xa4, 0xd9, 0x4a, 0xb1, 0xd0, 0x03, 0x02, + 0xd4, 0x88, 0x94, 0xf5, 0x4c, 0x54, 0x81, 0x68, 0x01, 0x8a, 0x98, 0xa9, + 0x31, 0x8a, 0x50, 0x31, 0x8e, 0x29, 0x42, 0x8a, 0x00, 0x00, 0xed, 0x4e, + 0xc5, 0x2a, 0xad, 0x3b, 0x14, 0x00, 0x98, 0x14, 0x98, 0xcd, 0x3f, 0x14, + 0xb8, 0xa0, 0x06, 0x63, 0x14, 0x52, 0xe2, 0x80, 0x33, 0x40, 0x09, 0x8c, + 0xd1, 0x8f, 0x6a, 0x76, 0x28, 0x02, 0x80, 0x13, 0x14, 0xb8, 0xa5, 0xc5, + 0x1d, 0xa8, 0x00, 0xed, 0x46, 0x68, 0xa5, 0xc5, 0x00, 0x28, 0xe6, 0x97, + 0x14, 0x0e, 0xd4, 0xbd, 0x28, 0x01, 0x31, 0x4e, 0xa6, 0xf5, 0xa7, 0x0a, + 0x00, 0x5a, 0x51, 0x49, 0x4b, 0x40, 0x0a, 0x29, 0xea, 0x79, 0xa8, 0xfb, + 0x52, 0xe6, 0x80, 0x24, 0xdd, 0x4a, 0xaf, 0xf9, 0xd3, 0x32, 0x28, 0x07, + 0x14, 0x01, 0x36, 0x68, 0x07, 0x15, 0x18, 0x34, 0xb9, 0xf7, 0xa0, 0x07, + 0xee, 0xa4, 0x24, 0x11, 0xcd, 0x30, 0x35, 0x19, 0xcd, 0x00, 0x50, 0xd5, + 0x74, 0x1b, 0x1d, 0x66, 0x16, 0x8a, 0xea, 0xda, 0x39, 0x51, 0xb8, 0x21, + 0x97, 0x35, 0xe6, 0x1e, 0x29, 0xf8, 0x0f, 0x0d, 0xf4, 0x4d, 0xfd, 0x95, + 0x7f, 0x35, 0x8f, 0x71, 0x0e, 0xe2, 0x63, 0xcf, 0xd2, 0xbd, 0x77, 0x71, + 0xa4, 0x2d, 0x40, 0x1f, 0x35, 0xda, 0x7c, 0x39, 0xbf, 0xf0, 0x75, 0xc1, + 0x9f, 0x52, 0xd2, 0xde, 0xf5, 0x91, 0xb2, 0xb7, 0x36, 0xc3, 0x72, 0x8f, + 0xaa, 0xd7, 0x5b, 0x79, 0x34, 0x37, 0x7a, 0x47, 0xda, 0xae, 0xef, 0x6d, + 0x9e, 0x18, 0x97, 0x2d, 0x06, 0x36, 0x9f, 0xa1, 0xf7, 0xaf, 0x65, 0x60, + 0x08, 0xc1, 0x19, 0xac, 0x7d, 0x57, 0xc2, 0x5a, 0x4e, 0xb0, 0x8e, 0xb7, + 0x36, 0x71, 0xb6, 0xfe, 0xa4, 0x0c, 0x13, 0x40, 0x1e, 0x0d, 0x05, 0xde, + 0x81, 0xaa, 0xe5, 0xa6, 0x9a, 0x4b, 0x2c, 0x1f, 0x92, 0x11, 0xd0, 0xff, + 0x00, 0x8f, 0xd2, 0xbb, 0x2f, 0x06, 0x7c, 0x3d, 0xbb, 0xd5, 0xae, 0x45, + 0xe6, 0xa1, 0x2c, 0xd1, 0x69, 0xaa, 0x7f, 0x75, 0x6c, 0x4e, 0xd2, 0xe3, + 0xd5, 0x87, 0xf4, 0xae, 0xa3, 0x45, 0xf8, 0x47, 0xa0, 0xe8, 0xba, 0xaf, + 0xdb, 0x92, 0x16, 0x9e, 0x41, 0xca, 0x2c, 0xa7, 0x72, 0xa7, 0xd0, 0x57, + 0x6e, 0xa0, 0x20, 0xc0, 0x18, 0x1e, 0x82, 0x80, 0x12, 0xd6, 0xd6, 0x3b, + 0x38, 0x56, 0x28, 0x94, 0x22, 0xa8, 0xc0, 0x00, 0x54, 0xe1, 0xaa, 0x2d, + 0xd4, 0xe0, 0x78, 0xa0, 0x09, 0x37, 0xe2, 0x82, 0xdc, 0xd4, 0x41, 0xa8, + 0xdc, 0x68, 0x02, 0x42, 0xd4, 0x85, 0xa9, 0x85, 0xa9, 0x33, 0x9a, 0x00, + 0x71, 0x6a, 0x69, 0x34, 0x99, 0xa4, 0x26, 0x80, 0x0d, 0xde, 0x94, 0x13, + 0x9a, 0x6e, 0x69, 0x33, 0x40, 0x01, 0x3f, 0x8d, 0x34, 0x9e, 0x29, 0x49, + 0xa6, 0x9e, 0x68, 0x01, 0xa7, 0x9a, 0x61, 0x34, 0xf3, 0x4c, 0xe9, 0x40, + 0x08, 0x46, 0x69, 0xa6, 0x9c, 0x79, 0xa6, 0x37, 0x14, 0x00, 0xd3, 0x4c, + 0x65, 0xf7, 0xa7, 0x9a, 0x6b, 0x72, 0x68, 0x02, 0x2d, 0xb4, 0xd6, 0x00, + 0x66, 0xa4, 0x3c, 0x53, 0x09, 0xa0, 0x06, 0xed, 0xa6, 0x91, 0x52, 0x64, + 0x52, 0x11, 0x91, 0x40, 0x11, 0xf3, 0x8a, 0x42, 0x29, 0xe4, 0x62, 0x9b, + 0xc8, 0xf7, 0xa0, 0x06, 0x11, 0xf9, 0xd3, 0x4a, 0xe2, 0xa4, 0xc6, 0x68, + 0x2b, 0xf8, 0x50, 0x04, 0x25, 0x69, 0x84, 0x54, 0xc4, 0xd3, 0x48, 0x3e, + 0x94, 0x01, 0x11, 0x5a, 0x4d, 0xb5, 0x2e, 0xda, 0x02, 0xd0, 0x04, 0x58, + 0xa5, 0x15, 0x21, 0x5a, 0x36, 0xd0, 0x04, 0x7b, 0x73, 0xf5, 0xa3, 0xcb, + 0xcd, 0x49, 0x8c, 0x52, 0x81, 0x40, 0x11, 0x79, 0x74, 0xa1, 0x3d, 0x6a, + 0x50, 0x39, 0xa7, 0xed, 0xcd, 0x00, 0x42, 0x06, 0x29, 0x40, 0xa9, 0x84, + 0x79, 0x14, 0xbb, 0x28, 0x02, 0x2d, 0xb4, 0xf0, 0xa2, 0x9d, 0xb6, 0x80, + 0xb4, 0x00, 0x05, 0x14, 0xe0, 0x82, 0x95, 0x56, 0x9c, 0x07, 0x6a, 0x00, + 0x16, 0x31, 0x52, 0x08, 0xe9, 0x00, 0xc5, 0x48, 0xb4, 0x00, 0x04, 0xa9, + 0x15, 0x29, 0x16, 0xa4, 0x1d, 0x68, 0x01, 0xca, 0x3f, 0x0a, 0x7a, 0x81, + 0x4d, 0x5a, 0x78, 0xeb, 0x40, 0x12, 0x00, 0x29, 0xea, 0x99, 0xa6, 0x2d, + 0x4a, 0xb4, 0x00, 0x2a, 0x73, 0x52, 0x2a, 0x50, 0x29, 0xeb, 0x40, 0x00, + 0x5e, 0x3a, 0x53, 0x82, 0xd2, 0x8a, 0x70, 0x1f, 0x95, 0x00, 0x20, 0x1f, + 0x9d, 0x3c, 0x2d, 0x28, 0x1e, 0xb4, 0xf0, 0xa3, 0xd2, 0x80, 0x1a, 0xa3, + 0x15, 0x20, 0x1e, 0x94, 0x01, 0x4e, 0x03, 0x9a, 0x00, 0x00, 0xc9, 0xa7, + 0x01, 0x8a, 0x31, 0x4a, 0x17, 0x26, 0x80, 0x14, 0x0a, 0x49, 0x7f, 0xd5, + 0x3f, 0xfb, 0xa6, 0x9f, 0xb7, 0x14, 0xc9, 0x78, 0x85, 0xff, 0x00, 0xdd, + 0x34, 0x00, 0xf8, 0xbf, 0xd5, 0x27, 0xfb, 0xa2, 0x9f, 0x9a, 0x86, 0x16, + 0xfd, 0xd2, 0x7f, 0xba, 0x29, 0xf9, 0xa0, 0x07, 0x66, 0x80, 0x69, 0x9b, + 0xb1, 0x46, 0x68, 0x01, 0xf9, 0xa4, 0xa6, 0x83, 0x46, 0x73, 0x40, 0x0b, + 0x9a, 0x69, 0xa4, 0x27, 0xde, 0x9a, 0x4d, 0x00, 0x29, 0x39, 0xa6, 0x13, + 0x41, 0x38, 0xa6, 0x96, 0xa0, 0x00, 0xe7, 0x34, 0xc2, 0x71, 0x4e, 0x2d, + 0x4c, 0x63, 0x40, 0x0d, 0x6a, 0x61, 0xa5, 0x26, 0x9b, 0x9a, 0x00, 0x6b, + 0x74, 0xa8, 0xdb, 0x8a, 0x93, 0xa5, 0x46, 0xdd, 0xe8, 0x02, 0x22, 0x2a, + 0x33, 0x52, 0x91, 0x9a, 0x61, 0x14, 0x01, 0x11, 0x14, 0x84, 0x54, 0x84, + 0x0a, 0x69, 0x14, 0x01, 0x11, 0x4c, 0xd4, 0x6d, 0x1d, 0x4f, 0xb6, 0x9a, + 0x46, 0x0d, 0x00, 0x40, 0x63, 0xe6, 0x90, 0x25, 0x4c, 0x78, 0x14, 0x11, + 0x40, 0x10, 0xec, 0xe6, 0x9a, 0x53, 0xf2, 0xa9, 0xa9, 0xbb, 0x7d, 0x28, + 0x02, 0x2d, 0x94, 0x63, 0x69, 0xe9, 0x4f, 0x22, 0x9a, 0x28, 0x01, 0x36, + 0xd0, 0x01, 0xa5, 0xc5, 0x28, 0x1c, 0x50, 0x02, 0x53, 0x87, 0xe7, 0x4b, + 0xb6, 0x97, 0x66, 0x28, 0x00, 0x02, 0x9c, 0x06, 0x68, 0xdb, 0x8a, 0x70, + 0xcd, 0x00, 0x28, 0x1f, 0xfe, 0xaa, 0x50, 0x28, 0x14, 0xb8, 0xa0, 0x03, + 0xf4, 0xa3, 0x26, 0x94, 0x83, 0x41, 0x14, 0x00, 0xda, 0x5a, 0x28, 0xa0, + 0x03, 0x18, 0xc5, 0x18, 0xa2, 0x96, 0x80, 0x13, 0xb5, 0x18, 0xc5, 0x2f, + 0x4a, 0x31, 0xeb, 0x40, 0x09, 0xde, 0x9d, 0x9e, 0xf4, 0x62, 0x97, 0xa5, + 0x00, 0x14, 0x1e, 0x68, 0xcd, 0x14, 0x00, 0x0f, 0xd6, 0x9c, 0x29, 0xa2, + 0x94, 0x1a, 0x00, 0x75, 0x19, 0xc5, 0x14, 0x98, 0xa0, 0x07, 0x03, 0x8a, + 0x29, 0x05, 0x14, 0x00, 0xea, 0x33, 0x4d, 0xcd, 0x19, 0xa0, 0x07, 0xee, + 0xa3, 0x34, 0xdc, 0xe2, 0x8c, 0x9c, 0x0a, 0x00, 0x76, 0xe2, 0x68, 0xcd, + 0x26, 0x69, 0xa4, 0x9a, 0x00, 0x7e, 0x69, 0x09, 0xa6, 0x67, 0xd6, 0x82, + 0x68, 0x01, 0x72, 0x68, 0xcf, 0x14, 0xdc, 0xf3, 0x41, 0x34, 0x00, 0xfc, + 0xd3, 0x4b, 0x7e, 0x54, 0xdc, 0xfe, 0x54, 0x50, 0x03, 0xf3, 0x46, 0xea, + 0x66, 0x72, 0x28, 0xcd, 0x00, 0x49, 0x9a, 0x37, 0x53, 0x33, 0x91, 0x40, + 0x6e, 0x28, 0x01, 0xf9, 0xcd, 0x27, 0xe3, 0x4d, 0xa3, 0x34, 0x00, 0xfe, + 0xd4, 0xd2, 0x7b, 0xd2, 0x06, 0xe6, 0x96, 0x80, 0x12, 0x92, 0x97, 0x34, + 0xdc, 0xe2, 0x80, 0x03, 0x4d, 0xce, 0x69, 0xdd, 0x45, 0x35, 0x8f, 0x14, + 0x00, 0x87, 0xad, 0x34, 0xf3, 0x46, 0x68, 0xa0, 0x06, 0x93, 0x4d, 0x3f, + 0x95, 0x29, 0x14, 0x50, 0x03, 0x00, 0xe7, 0xd2, 0x90, 0xf4, 0xa7, 0x1a, + 0x43, 0xd7, 0x14, 0x01, 0x13, 0x0a, 0x69, 0x1d, 0x6a, 0x52, 0x29, 0xac, + 0x33, 0x40, 0x10, 0x9f, 0x6a, 0x50, 0x78, 0xc5, 0x38, 0x8a, 0x4c, 0x50, + 0x03, 0x48, 0xa6, 0xed, 0xa9, 0x31, 0x48, 0x45, 0x00, 0x34, 0x8a, 0x61, + 0x1c, 0x54, 0x9d, 0x38, 0xa4, 0xdb, 0x9a, 0x00, 0x87, 0x6e, 0x28, 0xe9, + 0xd6, 0xa5, 0x2b, 0xcd, 0x34, 0xf1, 0x40, 0x0c, 0x22, 0x8d, 0x86, 0x9c, + 0x41, 0xa0, 0x02, 0x0d, 0x00, 0x37, 0x18, 0xa4, 0xe7, 0xf0, 0xa9, 0x32, + 0x49, 0xe6, 0x8c, 0x0a, 0x00, 0x8f, 0x6d, 0x28, 0x5c, 0x53, 0xf6, 0xd1, + 0x8c, 0x75, 0xa0, 0x00, 0x2f, 0xe5, 0x4e, 0x03, 0x14, 0x0e, 0x94, 0xfe, + 0x28, 0x01, 0x00, 0xe9, 0x46, 0x31, 0x4e, 0xc5, 0x1d, 0x68, 0x01, 0x02, + 0xd1, 0xb6, 0x9f, 0x8a, 0x02, 0x9c, 0xd0, 0x02, 0x05, 0xa7, 0x01, 0x4b, + 0x8a, 0x72, 0x8a, 0x00, 0x40, 0x0d, 0x38, 0x71, 0xf5, 0xa3, 0x1c, 0xd3, + 0x96, 0x80, 0x14, 0x0e, 0x6a, 0x41, 0xd2, 0x9a, 0x3f, 0x4a, 0x70, 0xa0, + 0x07, 0x8f, 0x4a, 0x78, 0xa6, 0x0a, 0x7a, 0xd0, 0x04, 0x8b, 0xd6, 0xa4, + 0x15, 0x1a, 0xd3, 0xc1, 0xe6, 0x80, 0x25, 0x4e, 0x29, 0xe2, 0xa2, 0x53, + 0x4e, 0x53, 0x40, 0x13, 0x2d, 0x3d, 0x4f, 0x5a, 0x89, 0x4f, 0x35, 0x20, + 0x34, 0x01, 0x26, 0x7a, 0x53, 0xc1, 0xe2, 0xa2, 0xcd, 0x38, 0x1e, 0x68, + 0x02, 0x51, 0xcd, 0x3a, 0xa3, 0x1c, 0x53, 0x81, 0xcd, 0x00, 0x48, 0x3d, + 0x29, 0xeb, 0x51, 0x03, 0xeb, 0x4f, 0xcd, 0x00, 0x38, 0x73, 0x4d, 0x9b, + 0xfd, 0x53, 0xe3, 0xfb, 0xa6, 0x8c, 0xf7, 0xa6, 0xca, 0x7f, 0x72, 0xff, + 0x00, 0xee, 0x9f, 0xe5, 0x40, 0x0d, 0x84, 0xfe, 0xe5, 0x3f, 0xdd, 0x14, + 0xfc, 0xd4, 0x11, 0x37, 0xee, 0x93, 0xfd, 0xd1, 0x4f, 0xce, 0x28, 0x01, + 0xf9, 0xa3, 0x34, 0xc2, 0x68, 0xcd, 0x00, 0x3f, 0x77, 0x14, 0x9b, 0xa9, + 0xbb, 0xa9, 0xb9, 0xcd, 0x00, 0x38, 0xbd, 0x21, 0x6e, 0x29, 0x84, 0xd1, + 0xba, 0x80, 0x1c, 0x4f, 0x14, 0xc2, 0x71, 0x48, 0x4f, 0x34, 0x9b, 0xa8, + 0x00, 0xdd, 0x8a, 0x69, 0x3d, 0x68, 0xcd, 0x31, 0x8d, 0x00, 0x04, 0xf1, + 0xc5, 0x30, 0x9c, 0xd2, 0x93, 0x91, 0x4d, 0x3c, 0xd0, 0x00, 0x46, 0x29, + 0x87, 0xd6, 0x95, 0xb8, 0xa6, 0x64, 0x9c, 0xd0, 0x00, 0x7f, 0x3a, 0x65, + 0x2f, 0x5a, 0x42, 0x79, 0xa0, 0x06, 0xfd, 0x7a, 0xd1, 0x8e, 0x68, 0x34, + 0x50, 0x04, 0x67, 0x25, 0x8f, 0xa5, 0x07, 0xd2, 0x9c, 0x41, 0x04, 0xfa, + 0x52, 0x30, 0xe2, 0x80, 0x19, 0x8a, 0x46, 0x1c, 0x53, 0xce, 0x0d, 0x26, + 0x28, 0x02, 0x23, 0x48, 0x7d, 0x2a, 0x42, 0x3a, 0x83, 0x48, 0x46, 0x68, + 0x02, 0x22, 0x29, 0xac, 0x30, 0x73, 0x52, 0xe3, 0x14, 0x1c, 0x1e, 0xa2, + 0x80, 0x23, 0x5e, 0x45, 0x38, 0x74, 0xa4, 0x00, 0x03, 0xed, 0x4f, 0x5e, + 0x68, 0x01, 0x05, 0x3b, 0x14, 0x0c, 0x0a, 0x53, 0x8a, 0x00, 0x31, 0x8a, + 0x3a, 0x52, 0x64, 0xe2, 0x96, 0x80, 0x16, 0x9c, 0x01, 0xc5, 0x20, 0xe6, + 0x9d, 0x40, 0x00, 0x14, 0x52, 0x83, 0x9a, 0x09, 0xcd, 0x00, 0x26, 0x29, + 0x31, 0x4e, 0xa4, 0xcf, 0x14, 0x00, 0x98, 0xa5, 0x23, 0x02, 0x8c, 0xe6, + 0x8f, 0xc6, 0x80, 0x13, 0xad, 0x29, 0xeb, 0x46, 0x28, 0xc5, 0x00, 0x02, + 0x8a, 0x29, 0x0d, 0x00, 0x2e, 0x68, 0x1c, 0x9a, 0x6d, 0x38, 0x00, 0x0d, + 0x00, 0x38, 0x0a, 0x5a, 0x6d, 0x14, 0x00, 0xec, 0xf3, 0x48, 0x78, 0x34, + 0x86, 0x82, 0x73, 0x40, 0x0b, 0xbb, 0x9e, 0x69, 0x73, 0x93, 0x4d, 0xcd, + 0x07, 0x8a, 0x00, 0x77, 0x4a, 0x33, 0x4d, 0xc9, 0xe9, 0x49, 0x9a, 0x00, + 0x7e, 0x7d, 0xa9, 0x41, 0xe2, 0x99, 0x9c, 0x51, 0xba, 0x80, 0x1c, 0x0d, + 0x19, 0xe2, 0x9b, 0x47, 0xf2, 0xa0, 0x05, 0x27, 0x14, 0xdc, 0xd0, 0x4e, + 0x29, 0x09, 0xa0, 0x05, 0xcd, 0x34, 0x9a, 0x32, 0x31, 0x4d, 0x2d, 0x40, + 0x0b, 0xbb, 0x14, 0xbb, 0xaa, 0x3c, 0xd0, 0x0d, 0x00, 0x49, 0xba, 0x8d, + 0xdc, 0x75, 0xa6, 0x03, 0x49, 0x9a, 0x00, 0x90, 0x37, 0x14, 0xe0, 0x6a, + 0x2e, 0xf4, 0xe0, 0xd4, 0x00, 0xf0, 0x70, 0x7d, 0x68, 0xce, 0x69, 0x99, + 0xa3, 0x76, 0x68, 0x01, 0xd9, 0xa7, 0x66, 0x98, 0x29, 0x7b, 0x50, 0x01, + 0x9c, 0x73, 0x49, 0xba, 0x8c, 0xe6, 0x8a, 0x00, 0x09, 0xe2, 0x92, 0x90, + 0xf3, 0x46, 0x71, 0x40, 0x01, 0x14, 0xde, 0x86, 0x9c, 0x71, 0x4d, 0x3d, + 0x68, 0x01, 0x29, 0xb9, 0xa7, 0x1a, 0x6f, 0x4a, 0x00, 0x6e, 0x73, 0x45, + 0x29, 0xe2, 0x9b, 0x9c, 0xd0, 0x01, 0x48, 0x46, 0x4d, 0x29, 0xa4, 0xcd, + 0x00, 0x34, 0xad, 0x26, 0x29, 0xf4, 0xc3, 0xeb, 0x40, 0x05, 0x34, 0xf0, + 0x69, 0xfd, 0xa9, 0xb8, 0xa0, 0x06, 0xe2, 0x90, 0x8a, 0x76, 0x33, 0x46, + 0x38, 0xa0, 0x06, 0x91, 0x9a, 0x69, 0x1d, 0x78, 0xa7, 0x9a, 0x42, 0x28, + 0x01, 0xa0, 0x60, 0x7f, 0x4a, 0x36, 0xd2, 0xe3, 0x9a, 0x76, 0x28, 0x01, + 0x9b, 0x33, 0x49, 0xb3, 0x27, 0x8a, 0x94, 0x0a, 0x31, 0x40, 0x11, 0x6d, + 0xa7, 0x6d, 0xe2, 0x9f, 0x8c, 0x7d, 0x29, 0x3a, 0xd0, 0x03, 0x42, 0xe2, + 0x9c, 0x05, 0x2e, 0x28, 0x02, 0x80, 0x14, 0x03, 0x8a, 0x70, 0x19, 0xa0, + 0x2e, 0x45, 0x28, 0x14, 0x00, 0x62, 0x80, 0x05, 0x3f, 0xf0, 0xa0, 0x0a, + 0x00, 0x4c, 0x66, 0x94, 0x0a, 0x53, 0xc5, 0x28, 0xe9, 0x40, 0x06, 0x29, + 0x40, 0xa3, 0x14, 0xa2, 0x80, 0x1c, 0x29, 0x40, 0x34, 0x01, 0x4a, 0x28, + 0x01, 0xca, 0x3d, 0x05, 0x38, 0x53, 0x54, 0xe2, 0x9c, 0x3a, 0xd0, 0x03, + 0xc5, 0x39, 0x4d, 0x33, 0x1c, 0xd3, 0x81, 0x39, 0xa0, 0x09, 0x01, 0xcd, + 0x3d, 0x70, 0x2a, 0x20, 0x48, 0xeb, 0x4f, 0x07, 0x8a, 0x00, 0x95, 0x7a, + 0xd3, 0xc3, 0x60, 0x54, 0x40, 0xf3, 0x4e, 0x14, 0x01, 0x38, 0x3e, 0xf4, + 0x02, 0x29, 0x8a, 0x72, 0x00, 0xa7, 0x67, 0x14, 0x01, 0x26, 0xea, 0x76, + 0xea, 0x88, 0x1e, 0x3a, 0x53, 0x81, 0xa0, 0x09, 0x41, 0xa7, 0x06, 0xa8, + 0x83, 0x52, 0xee, 0xa0, 0x09, 0x0b, 0x62, 0x9b, 0x29, 0xfd, 0xcb, 0x9f, + 0xf6, 0x4d, 0x26, 0xea, 0x6c, 0xc7, 0xf7, 0x4f, 0xfe, 0xe9, 0xa0, 0x06, + 0xc4, 0x71, 0x12, 0x63, 0xfb, 0xa2, 0x9d, 0xbb, 0x8a, 0x86, 0x26, 0xfd, + 0xd2, 0x7f, 0xba, 0x29, 0x4b, 0x74, 0xeb, 0x40, 0x12, 0x97, 0xa3, 0x7f, + 0x1e, 0xf5, 0x1e, 0x70, 0x28, 0xdd, 0x40, 0x0f, 0x0d, 0xc5, 0x01, 0xbd, + 0x3a, 0xd4, 0x79, 0xf5, 0xa3, 0x3c, 0xd0, 0x02, 0x96, 0xe2, 0x8d, 0xd4, + 0xd2, 0x69, 0xb9, 0xf5, 0xa0, 0x07, 0x96, 0xa4, 0x27, 0x39, 0xa6, 0x96, + 0xc5, 0x21, 0x6a, 0x00, 0x29, 0x09, 0xe0, 0xd2, 0x13, 0xc0, 0xa6, 0x93, + 0x40, 0x0a, 0x69, 0x0b, 0x7e, 0x74, 0x84, 0xd3, 0x49, 0xf7, 0xe2, 0x80, + 0x0c, 0xe6, 0x93, 0xaf, 0xb5, 0x21, 0x26, 0x93, 0x39, 0xa0, 0x05, 0x35, + 0x1f, 0x43, 0x4e, 0xcd, 0x34, 0xd0, 0x00, 0x7a, 0x51, 0xd0, 0x66, 0x8c, + 0xe0, 0x52, 0x13, 0x40, 0x09, 0x9a, 0x43, 0xcd, 0x2e, 0x39, 0xf6, 0xa4, + 0x34, 0x00, 0x82, 0x93, 0x34, 0x77, 0xa4, 0x3d, 0x71, 0x40, 0x01, 0xa6, + 0xe6, 0x86, 0xa4, 0x1c, 0x50, 0x00, 0x7d, 0x29, 0x31, 0x41, 0xeb, 0xc5, + 0x00, 0x66, 0x80, 0x0e, 0x0f, 0x14, 0x03, 0x81, 0xd2, 0x94, 0x0c, 0xd2, + 0xe3, 0x9a, 0x00, 0x51, 0x9e, 0xb8, 0xa5, 0x03, 0x3d, 0x69, 0x54, 0x50, + 0x46, 0x28, 0x01, 0x31, 0x9a, 0x36, 0xf1, 0x4b, 0xde, 0x8e, 0xd4, 0x00, + 0x63, 0x1d, 0x28, 0xa4, 0xef, 0x46, 0x73, 0x40, 0x0e, 0xc5, 0x2f, 0x5a, + 0x60, 0xfd, 0x29, 0x41, 0xa0, 0x07, 0x52, 0x62, 0x81, 0xcd, 0x02, 0x80, + 0x12, 0x80, 0x39, 0xa5, 0xa0, 0xff, 0x00, 0x3a, 0x00, 0x3a, 0x51, 0x40, + 0xa4, 0xa0, 0x05, 0xa3, 0xad, 0x26, 0x33, 0xed, 0x4b, 0x40, 0x00, 0x14, + 0xa4, 0x52, 0x74, 0xa0, 0xd0, 0x00, 0x4d, 0x03, 0x9a, 0x69, 0xc7, 0x5a, + 0x09, 0xf5, 0xe9, 0x40, 0x0b, 0x9e, 0x78, 0xa0, 0x1a, 0x4e, 0x9d, 0xe8, + 0xe2, 0x80, 0x14, 0x9a, 0x37, 0x60, 0xd3, 0x28, 0x26, 0x80, 0x1d, 0xbf, + 0x34, 0x99, 0x34, 0xda, 0x50, 0x71, 0x40, 0x0f, 0xcf, 0xad, 0x2e, 0x69, + 0x94, 0x03, 0x40, 0x0e, 0xcf, 0x5a, 0x33, 0x4c, 0x26, 0x93, 0x22, 0x80, + 0x1c, 0x4f, 0xe7, 0x49, 0xde, 0x9a, 0x4f, 0x34, 0x66, 0x80, 0x17, 0x3c, + 0x53, 0x73, 0x48, 0x4d, 0x26, 0x78, 0xa0, 0x05, 0xa5, 0xa6, 0xee, 0x04, + 0x52, 0x67, 0x34, 0x00, 0xee, 0xb4, 0xb9, 0xe6, 0x98, 0x78, 0xa2, 0x80, + 0x1d, 0x9a, 0x70, 0x6a, 0x66, 0x68, 0xcf, 0x34, 0x00, 0xfc, 0xd2, 0xe6, + 0x99, 0x9e, 0x7d, 0xa8, 0xce, 0x0d, 0x00, 0x49, 0x9c, 0x1a, 0x33, 0x9a, + 0x66, 0xea, 0x33, 0xcf, 0xb5, 0x00, 0x3f, 0x3e, 0x94, 0x13, 0xc5, 0x33, + 0x34, 0xb9, 0xa0, 0x03, 0x3f, 0x85, 0x19, 0xa2, 0x8c, 0xf3, 0xeb, 0x40, + 0x06, 0x79, 0xce, 0x69, 0x3a, 0x9a, 0x4a, 0x28, 0x00, 0x34, 0x9d, 0xb1, + 0x4b, 0x47, 0x43, 0x40, 0x0d, 0x22, 0x90, 0x8a, 0x77, 0x51, 0x40, 0xa0, + 0x06, 0x90, 0x71, 0x4d, 0x23, 0xf1, 0xa7, 0x9a, 0x42, 0x28, 0x01, 0xb9, + 0xc5, 0x14, 0xbd, 0x28, 0x3c, 0x9a, 0x00, 0x6d, 0x21, 0x14, 0xfe, 0x94, + 0x75, 0xa0, 0x06, 0x74, 0xed, 0x4d, 0x3c, 0x1c, 0xd3, 0xf1, 0x49, 0x81, + 0x8a, 0x00, 0x60, 0x5e, 0x28, 0x03, 0x14, 0xa4, 0xd2, 0x11, 0x40, 0x07, + 0x06, 0x97, 0x1c, 0x52, 0x0a, 0x77, 0x51, 0x40, 0x09, 0x8e, 0x29, 0x31, + 0xcd, 0x38, 0x0c, 0x66, 0x97, 0x14, 0x00, 0xdc, 0x7d, 0x69, 0x30, 0x69, + 0xc4, 0x52, 0x91, 0x40, 0x08, 0x05, 0x2e, 0x29, 0x40, 0xa5, 0xc6, 0x68, + 0x00, 0x5f, 0x4a, 0x70, 0x00, 0xd2, 0x62, 0x95, 0x7a, 0x50, 0x02, 0xf4, + 0xa5, 0x14, 0x98, 0xa7, 0x0a, 0x00, 0x31, 0x9a, 0x5c, 0x50, 0x3b, 0xd2, + 0x8a, 0x00, 0x31, 0x8a, 0x07, 0x26, 0x97, 0x8a, 0x01, 0xa0, 0x05, 0xa5, + 0xc5, 0x26, 0x69, 0x46, 0x68, 0x01, 0x47, 0x5a, 0x78, 0xa6, 0x0e, 0x29, + 0xd9, 0xa0, 0x07, 0x0a, 0x78, 0xeb, 0x4c, 0x07, 0x22, 0x97, 0x83, 0x40, + 0x0f, 0xa5, 0x07, 0x9a, 0x6e, 0x29, 0x7a, 0x50, 0x04, 0x81, 0xe9, 0xc1, + 0xb2, 0x6a, 0x21, 0x4f, 0x19, 0xfa, 0x50, 0x04, 0xc0, 0xe2, 0x9c, 0x0e, + 0x2a, 0x10, 0x69, 0x4b, 0x50, 0x04, 0xca, 0xd4, 0xf0, 0x6a, 0xba, 0xb5, + 0x3c, 0x39, 0xc5, 0x00, 0x4c, 0x1b, 0x9a, 0x52, 0xdc, 0x54, 0x3b, 0xf8, + 0xa5, 0xdd, 0x8a, 0x00, 0x9b, 0x75, 0x36, 0x63, 0xfb, 0x97, 0xff, 0x00, + 0x74, 0xd3, 0x37, 0xf1, 0x8a, 0x6c, 0xac, 0x44, 0x4f, 0xfe, 0xe9, 0xa0, + 0x06, 0x44, 0xdf, 0xbb, 0x4f, 0xa5, 0x3b, 0x7d, 0x41, 0x1b, 0xfe, 0xed, + 0x31, 0xe8, 0x29, 0xc5, 0xa8, 0x02, 0x4d, 0xf8, 0xa5, 0xdf, 0x50, 0x79, + 0x98, 0x14, 0x85, 0xf3, 0xdf, 0x14, 0x01, 0x63, 0x7f, 0x34, 0x9b, 0xf9, + 0xa8, 0x77, 0xd0, 0x1c, 0x67, 0xd6, 0x80, 0x26, 0x2d, 0xef, 0x4d, 0xdd, + 0x9a, 0x8c, 0xb6, 0x3e, 0x94, 0x6e, 0xf7, 0xa0, 0x09, 0x0b, 0x75, 0xa6, + 0xee, 0xa6, 0x6e, 0x34, 0xb9, 0x19, 0xa0, 0x07, 0x52, 0x13, 0xf9, 0x52, + 0x06, 0xe6, 0x9a, 0x58, 0xd0, 0x03, 0x89, 0xc5, 0x35, 0x9a, 0x91, 0x8f, + 0x34, 0xcd, 0xdc, 0xe2, 0x80, 0x1d, 0x9a, 0x33, 0x9a, 0x6e, 0xee, 0x69, + 0x73, 0x40, 0x08, 0x68, 0x26, 0x8c, 0x8a, 0x6d, 0x00, 0x2d, 0x25, 0x19, + 0xa6, 0x93, 0x40, 0x0b, 0xef, 0x48, 0x4f, 0x3c, 0xd1, 0x90, 0x29, 0x0b, + 0x50, 0x02, 0x1f, 0x7a, 0x42, 0x68, 0x2d, 0x4c, 0xdd, 0x40, 0x0f, 0xc8, + 0xa6, 0x9a, 0x69, 0x6a, 0x33, 0x40, 0x06, 0x30, 0x69, 0x54, 0xf1, 0x4d, + 0xdd, 0x93, 0x4a, 0x0d, 0x00, 0x38, 0x0e, 0x69, 0xdf, 0xa5, 0x34, 0x54, + 0x83, 0xb5, 0x00, 0x0a, 0x3f, 0x4a, 0x53, 0x9c, 0xf2, 0x29, 0xd8, 0xc0, + 0xe9, 0x4b, 0x8a, 0x00, 0x61, 0x1c, 0xd3, 0x76, 0xd4, 0x9b, 0x69, 0x31, + 0xc5, 0x00, 0x47, 0xce, 0x69, 0xdd, 0xe9, 0x78, 0xa3, 0x3c, 0xf4, 0xa0, + 0x06, 0xe0, 0xfd, 0x69, 0x47, 0x4a, 0x28, 0xe6, 0x80, 0x0c, 0xf1, 0x49, + 0xf4, 0x34, 0xbe, 0xd4, 0x63, 0x34, 0x00, 0x0e, 0x29, 0x71, 0x46, 0x38, + 0xa4, 0x38, 0xe9, 0xde, 0x80, 0x0a, 0x5f, 0xc6, 0x9a, 0x0f, 0x1d, 0x28, + 0x34, 0x00, 0xb9, 0xa0, 0x9a, 0x6e, 0x68, 0xce, 0x68, 0x01, 0xdb, 0xb3, + 0x45, 0x34, 0x74, 0xa4, 0xe8, 0x68, 0x01, 0xd4, 0x87, 0xb5, 0x19, 0xa6, + 0x31, 0x3f, 0x85, 0x00, 0x38, 0xf0, 0x69, 0x0b, 0x1a, 0x42, 0x78, 0xa3, + 0x34, 0x00, 0x64, 0xd2, 0xe7, 0x34, 0xdc, 0xf5, 0xa3, 0x76, 0x28, 0x01, + 0xd9, 0xe2, 0x93, 0x75, 0x37, 0x75, 0x26, 0xea, 0x00, 0x93, 0x3c, 0xd2, + 0x1a, 0x66, 0xea, 0x4c, 0xd0, 0x03, 0xc9, 0xeb, 0x48, 0x4e, 0x06, 0x29, + 0x84, 0xd2, 0x67, 0x34, 0x00, 0xfc, 0xd1, 0x9c, 0x53, 0x41, 0xa3, 0x34, + 0x00, 0xea, 0x69, 0xa0, 0x11, 0x8a, 0x4c, 0xd0, 0x02, 0x73, 0x4b, 0x49, + 0x9a, 0x5c, 0xd0, 0x00, 0x69, 0x03, 0x52, 0x13, 0x48, 0x0d, 0x00, 0x3f, + 0x3c, 0xf3, 0x46, 0xe1, 0x9a, 0x61, 0x39, 0xa4, 0x2d, 0xe9, 0x40, 0x12, + 0x67, 0x34, 0x6e, 0xa8, 0xf3, 0x8e, 0x94, 0x66, 0x80, 0x25, 0xdd, 0x8a, + 0x37, 0x71, 0xd6, 0xa1, 0xdd, 0xc5, 0x28, 0x7a, 0x00, 0x9f, 0x78, 0xc5, + 0x1b, 0xaa, 0x00, 0xd4, 0xa1, 0xb2, 0x68, 0x02, 0x7d, 0xde, 0xf9, 0xa3, + 0x3c, 0x54, 0x21, 0xe9, 0x77, 0x50, 0x04, 0x9d, 0xb9, 0xa3, 0x34, 0xd0, + 0xd9, 0x14, 0x75, 0xa0, 0x07, 0x66, 0x8c, 0xe6, 0x92, 0x8c, 0x50, 0x02, + 0x91, 0xc6, 0x69, 0x33, 0x8a, 0x53, 0x41, 0x19, 0x14, 0x00, 0x87, 0x9e, + 0x94, 0x51, 0x8c, 0x51, 0x9e, 0x28, 0x01, 0x28, 0xc7, 0x34, 0xec, 0xf1, + 0x4d, 0xeb, 0x40, 0x05, 0x26, 0x29, 0x7a, 0x52, 0x66, 0x80, 0x1a, 0x78, + 0xa4, 0xcf, 0x34, 0xe2, 0x69, 0x31, 0xcd, 0x00, 0x37, 0xe9, 0x48, 0x4e, + 0x69, 0xdd, 0x68, 0xc7, 0xe3, 0x40, 0x0d, 0x61, 0xe9, 0x40, 0x04, 0x8a, + 0x78, 0x5c, 0x71, 0x4b, 0xb6, 0x80, 0x10, 0x53, 0xbb, 0x50, 0x17, 0x8a, + 0x76, 0x38, 0xc5, 0x00, 0x37, 0x14, 0x9d, 0x4d, 0x3f, 0x18, 0x34, 0xdc, + 0x50, 0x02, 0x63, 0x14, 0xbd, 0xa8, 0x23, 0x1d, 0x39, 0xa0, 0x74, 0x14, + 0x00, 0x7d, 0x29, 0x69, 0x3b, 0x52, 0x83, 0xd6, 0x80, 0x14, 0x13, 0x4b, + 0x9f, 0xca, 0x93, 0x3c, 0x51, 0x40, 0x0e, 0x06, 0x8f, 0xe7, 0x49, 0xf8, + 0xd0, 0x0d, 0x00, 0x3b, 0x3d, 0xa9, 0x73, 0x9a, 0x41, 0xc5, 0x28, 0x1c, + 0x50, 0x03, 0xb3, 0x8a, 0x51, 0x48, 0x30, 0x69, 0x68, 0x01, 0x69, 0xc0, + 0xe6, 0x9a, 0x0d, 0x04, 0xe0, 0xd0, 0x03, 0xa9, 0xc3, 0x8a, 0x66, 0x71, + 0x4a, 0x0d, 0x00, 0x48, 0x0f, 0x7a, 0x70, 0x35, 0x1e, 0xea, 0x5d, 0xc6, + 0x80, 0x25, 0x18, 0xa0, 0x75, 0xa6, 0x6e, 0xe6, 0x97, 0x75, 0x00, 0x49, + 0x9a, 0x33, 0x9e, 0xf4, 0xcd, 0xd4, 0xb9, 0xa0, 0x07, 0xe6, 0x97, 0x26, + 0x98, 0x0f, 0xe2, 0x0d, 0x29, 0x3d, 0xa8, 0x01, 0xc1, 0xf9, 0xa5, 0x0d, + 0xcd, 0x45, 0xcd, 0x38, 0x11, 0x40, 0x12, 0xe7, 0x26, 0x92, 0x56, 0xfd, + 0xd3, 0xf3, 0xfc, 0x26, 0x9b, 0xbb, 0xde, 0x99, 0x2b, 0x7e, 0xe9, 0xfe, + 0x86, 0x80, 0x22, 0x89, 0xff, 0x00, 0x74, 0xbc, 0xf6, 0x14, 0x19, 0x3d, + 0xeb, 0xcc, 0xec, 0x7e, 0x3b, 0xf8, 0x42, 0xef, 0x6c, 0x63, 0x54, 0x48, + 0xdf, 0x00, 0x61, 0xc6, 0x39, 0xae, 0xab, 0x4e, 0xf1, 0x8e, 0x93, 0xaa, + 0x80, 0x6d, 0x6f, 0xe1, 0x97, 0x3d, 0x00, 0x7a, 0x00, 0xe8, 0xb7, 0xfe, + 0x34, 0x06, 0xc5, 0x55, 0x59, 0xf2, 0x32, 0x0f, 0x07, 0xd2, 0xa4, 0x0f, + 0x91, 0xef, 0x40, 0x13, 0x6e, 0xcd, 0x28, 0x35, 0x08, 0x7e, 0x94, 0xbb, + 0xf3, 0x40, 0x13, 0x6f, 0xe6, 0x8d, 0xd5, 0x11, 0x7a, 0x37, 0x66, 0x80, + 0x25, 0x2f, 0x9a, 0x4d, 0xd9, 0xa6, 0x76, 0xa0, 0x30, 0xa0, 0x07, 0x86, + 0xe6, 0x8d, 0xdc, 0xd4, 0x7b, 0xb8, 0xa3, 0x76, 0x68, 0x01, 0xc4, 0xfe, + 0x34, 0x74, 0xa6, 0x16, 0xa4, 0x0f, 0x40, 0x0e, 0x34, 0x64, 0xd3, 0x77, + 0x73, 0x48, 0x48, 0xa0, 0x07, 0xe7, 0xde, 0x90, 0x9c, 0x53, 0x49, 0xa6, + 0x16, 0x39, 0xa0, 0x09, 0x09, 0xc5, 0x21, 0x6c, 0xd3, 0x37, 0x7e, 0x34, + 0x16, 0xa0, 0x05, 0x24, 0x51, 0xb8, 0x53, 0x0b, 0x0f, 0xc6, 0x9b, 0xba, + 0x80, 0x1c, 0x4f, 0x34, 0x84, 0xf1, 0x4c, 0xdd, 0x8e, 0xb4, 0x9b, 0xbd, + 0xe8, 0x01, 0xc4, 0xf1, 0x49, 0x9c, 0x53, 0x37, 0xfe, 0x23, 0xd2, 0x9a, + 0x5f, 0xd2, 0x80, 0x24, 0xce, 0x3a, 0x75, 0xa7, 0x03, 0x8a, 0x87, 0x7d, + 0x28, 0x6a, 0x00, 0xb2, 0xad, 0x52, 0x27, 0x35, 0x59, 0x5f, 0xa5, 0x4b, + 0x1b, 0xd0, 0x05, 0x9c, 0x64, 0xd3, 0x80, 0xfc, 0x69, 0x88, 0xd9, 0xe6, + 0xa6, 0x51, 0xf8, 0x50, 0x03, 0x08, 0xe2, 0x9b, 0xb7, 0x3d, 0x2a, 0x52, + 0xbd, 0xe9, 0xa5, 0x7b, 0xd0, 0x04, 0x65, 0x4d, 0x20, 0x1e, 0xd4, 0xf2, + 0x47, 0x7e, 0x94, 0xc3, 0xed, 0xcd, 0x00, 0x18, 0xa4, 0xea, 0x3a, 0x53, + 0x81, 0xe2, 0x93, 0xf1, 0xa0, 0x04, 0xc7, 0x34, 0x52, 0xf1, 0xeb, 0xc5, + 0x21, 0x20, 0x50, 0x01, 0x8a, 0x33, 0x49, 0xb8, 0x62, 0x98, 0xd2, 0x0a, + 0x00, 0x52, 0x69, 0x0f, 0x4a, 0x69, 0x90, 0x7a, 0xd3, 0x4c, 0xaa, 0x28, + 0x02, 0x4a, 0x33, 0x51, 0x19, 0x47, 0xad, 0x27, 0x9a, 0x31, 0xd6, 0x80, + 0x26, 0xdd, 0xed, 0x48, 0x4f, 0xe5, 0x51, 0xf9, 0xa2, 0x93, 0xcc, 0x19, + 0xa0, 0x09, 0x38, 0xcd, 0x27, 0x7a, 0x8c, 0xc9, 0xef, 0x4d, 0xf3, 0x79, + 0xe2, 0x80, 0x25, 0x2d, 0xc5, 0x26, 0xee, 0x6a, 0x22, 0xf9, 0x14, 0xdd, + 0xf4, 0x01, 0x31, 0x6c, 0x52, 0x6e, 0x1e, 0xb5, 0x16, 0xec, 0x9a, 0x5c, + 0xe6, 0x80, 0x1f, 0xba, 0x90, 0xbd, 0x37, 0x06, 0x80, 0x28, 0x01, 0x77, + 0x73, 0x45, 0x2e, 0x28, 0xe6, 0x80, 0x0c, 0x91, 0xef, 0x49, 0x9a, 0x52, + 0x28, 0xeb, 0xd6, 0x80, 0x03, 0xd6, 0x8a, 0x29, 0x0f, 0x6e, 0x28, 0x01, + 0x41, 0xa6, 0xee, 0xc5, 0x21, 0x24, 0x76, 0xa4, 0x26, 0x80, 0x17, 0x34, + 0x85, 0xe9, 0x33, 0x4d, 0xdd, 0xc9, 0xa0, 0x07, 0x67, 0x34, 0x84, 0xd2, + 0x6e, 0xc5, 0x26, 0x68, 0x01, 0xe7, 0xda, 0x8e, 0xf4, 0xd1, 0x4b, 0x9a, + 0x00, 0x51, 0x47, 0x5e, 0x29, 0x37, 0x50, 0x0d, 0x00, 0x07, 0x8a, 0x4a, + 0x5a, 0x09, 0x14, 0x00, 0xdc, 0xe0, 0xd0, 0x5a, 0x94, 0xe0, 0xd3, 0x48, + 0xc5, 0x00, 0x38, 0x37, 0xe1, 0x4e, 0x0f, 0xf8, 0xd4, 0x27, 0x3e, 0xbc, + 0x51, 0xbb, 0x8a, 0x00, 0xb0, 0x1f, 0x34, 0xed, 0xfe, 0xfc, 0xd5, 0x3f, + 0x30, 0x8a, 0x3c, 0xfc, 0x0a, 0x00, 0xbc, 0x1f, 0xde, 0x8c, 0xfb, 0xf3, + 0x54, 0x0d, 0xdf, 0x6a, 0x05, 0xee, 0x28, 0x03, 0x45, 0x5b, 0x8a, 0x50, + 0x79, 0x15, 0x9e, 0x2f, 0x80, 0x1d, 0x69, 0xdf, 0x6f, 0x51, 0xde, 0x80, + 0x2f, 0xf6, 0xa4, 0xed, 0x55, 0x53, 0x52, 0x5f, 0x51, 0x4e, 0xfb, 0x74, + 0x6c, 0x7e, 0xf0, 0xa0, 0x0b, 0x03, 0x9e, 0x94, 0x13, 0xed, 0x50, 0xfd, + 0xaa, 0x2c, 0x7d, 0xf5, 0x1f, 0x8d, 0x28, 0xb8, 0x8d, 0xb8, 0x0e, 0xa7, + 0xe8, 0x68, 0x01, 0xc6, 0x93, 0xa9, 0xa1, 0x8a, 0xb7, 0x7a, 0x4d, 0xc0, + 0x50, 0x02, 0xe0, 0x9e, 0x0d, 0x00, 0x74, 0x14, 0x06, 0xe3, 0xad, 0x19, + 0xa0, 0x00, 0x62, 0x8a, 0x51, 0xcd, 0x2e, 0x39, 0xa0, 0x04, 0xc6, 0x3d, + 0x69, 0xc0, 0x52, 0x8e, 0xb4, 0xa3, 0x83, 0x40, 0x08, 0x05, 0x18, 0xe2, + 0x83, 0xc7, 0x7a, 0x09, 0xc5, 0x00, 0x21, 0x18, 0xa6, 0x9e, 0xb4, 0xe6, + 0x34, 0xdc, 0xfe, 0x34, 0x00, 0x74, 0xfa, 0x52, 0x0f, 0xad, 0x21, 0x6a, + 0x37, 0x60, 0x50, 0x02, 0x8e, 0x29, 0x72, 0x69, 0x80, 0xd2, 0x83, 0xd6, + 0x80, 0x1f, 0x9a, 0x33, 0x9a, 0x66, 0x68, 0xcd, 0x00, 0x48, 0x0e, 0x4d, + 0x2f, 0x14, 0xc0, 0x7d, 0x69, 0x77, 0x50, 0x03, 0xf3, 0x9a, 0x51, 0x9f, + 0x5a, 0x68, 0x27, 0xa5, 0x28, 0x38, 0xe6, 0x80, 0x1e, 0x38, 0xa5, 0x34, + 0xc0, 0x73, 0x4e, 0xcd, 0x00, 0x3a, 0x90, 0x9e, 0xf4, 0x87, 0xeb, 0x4d, + 0x7c, 0x94, 0x20, 0x1c, 0x1c, 0x75, 0xa0, 0x0c, 0xfd, 0x57, 0xc5, 0x1a, + 0x5e, 0x86, 0x3f, 0xd3, 0xaf, 0xa1, 0xb7, 0x3e, 0x8e, 0xc0, 0x1a, 0xca, + 0x83, 0xe2, 0x77, 0x86, 0xee, 0x65, 0xf2, 0xd3, 0x53, 0x8b, 0x27, 0x8e, + 0x4d, 0x7c, 0xd1, 0xf1, 0x56, 0x0b, 0x9d, 0x2f, 0xe2, 0x05, 0xe2, 0x5c, + 0xce, 0xf3, 0x2c, 0x87, 0x7a, 0x16, 0x3d, 0x01, 0xed, 0x58, 0x91, 0xb9, + 0x18, 0x2a, 0x7f, 0x2a, 0x00, 0xfb, 0x56, 0xcf, 0x50, 0x82, 0xf6, 0x21, + 0x24, 0x13, 0x2c, 0xaa, 0x7b, 0xa1, 0xcd, 0x58, 0xcf, 0x39, 0xaf, 0x90, + 0x74, 0x2f, 0x1a, 0x6a, 0xba, 0x0b, 0x86, 0xb5, 0xbb, 0x74, 0x03, 0xf8, + 0x73, 0xc7, 0xe5, 0x5e, 0xa1, 0xe1, 0xcf, 0x8f, 0x6d, 0x84, 0x8f, 0x53, + 0xb7, 0xde, 0x3a, 0x19, 0x13, 0xad, 0x00, 0x7b, 0x86, 0xea, 0x03, 0x73, + 0x8a, 0xe5, 0xb4, 0x5f, 0x88, 0x7a, 0x2e, 0xb6, 0xa3, 0xc9, 0xbc, 0x44, + 0x73, 0xfc, 0x0e, 0x70, 0x6b, 0xa3, 0x8a, 0x78, 0xe5, 0x5d, 0xc8, 0xe1, + 0xc7, 0xa8, 0x39, 0xa0, 0x09, 0x83, 0x7b, 0xd3, 0x83, 0x9a, 0x87, 0x76, + 0x4d, 0x1b, 0xb9, 0xa0, 0x09, 0xf7, 0xd3, 0xb7, 0x93, 0xf4, 0xaa, 0xdb, + 0xf1, 0x9a, 0x5f, 0x37, 0x14, 0x01, 0x39, 0x7c, 0x77, 0xa3, 0xcc, 0xc5, + 0x56, 0x69, 0xbd, 0xea, 0x37, 0xb8, 0x58, 0xc1, 0x24, 0x80, 0x3d, 0x49, + 0xa0, 0x0b, 0xa2, 0x41, 0xcd, 0x32, 0x49, 0x31, 0x13, 0xfd, 0x0d, 0x73, + 0x9a, 0x9f, 0x8e, 0x34, 0x5d, 0x1d, 0x49, 0xbb, 0xd4, 0xad, 0xe0, 0xc7, + 0xf7, 0xa4, 0x15, 0xcc, 0xde, 0xfc, 0x73, 0xf0, 0x9c, 0x01, 0xd4, 0x6a, + 0x42, 0x53, 0x82, 0x3f, 0x76, 0xa5, 0x85, 0x00, 0x78, 0xe6, 0xb3, 0xfb, + 0x33, 0x5f, 0xf8, 0x71, 0xd3, 0x51, 0x87, 0x5c, 0x89, 0xe7, 0xdd, 0xbd, + 0x7c, 0xe8, 0xb0, 0x33, 0xfa, 0xd7, 0x57, 0xf0, 0xe3, 0x4f, 0xd7, 0x6d, + 0x2f, 0xe5, 0xb5, 0xf1, 0x0d, 0x9d, 0xb5, 0xe4, 0x0c, 0x01, 0x86, 0xea, + 0x04, 0x5c, 0x0f, 0x63, 0x8c, 0x1a, 0xd6, 0xbc, 0xf8, 0xcd, 0xa4, 0xea, + 0xf0, 0x24, 0x77, 0x29, 0x36, 0x17, 0x1c, 0x11, 0x4f, 0xb6, 0xf8, 0x8b, + 0xe1, 0xb0, 0x06, 0x25, 0x78, 0x8f, 0xd2, 0x80, 0x3d, 0x3a, 0xce, 0x40, + 0x91, 0x2a, 0x2f, 0x00, 0x0c, 0x01, 0x57, 0x12, 0x4e, 0x6b, 0xcd, 0xe0, + 0xf8, 0x99, 0xa2, 0xa8, 0xf9, 0x6f, 0xff, 0x00, 0x06, 0x15, 0x71, 0x7e, + 0x25, 0xe9, 0x2e, 0x99, 0x8f, 0x52, 0x8d, 0x5b, 0xd1, 0x81, 0xa0, 0x0f, + 0x41, 0x0d, 0xde, 0x9e, 0x18, 0x62, 0xbc, 0x63, 0x50, 0xfd, 0xa0, 0x6d, + 0x74, 0x7b, 0xef, 0xb3, 0xdc, 0x59, 0xbd, 0xc4, 0x7d, 0xa7, 0xb7, 0xe5, + 0x4d, 0x74, 0x1a, 0x37, 0xc7, 0x1f, 0x0d, 0xea, 0xa1, 0x43, 0x5c, 0x35, + 0xab, 0x9e, 0xd2, 0x8c, 0x50, 0x07, 0xa3, 0x86, 0xa5, 0xdf, 0x58, 0xf6, + 0x3e, 0x25, 0xd3, 0x75, 0x25, 0x06, 0xde, 0xf6, 0x19, 0x73, 0xe8, 0xe2, + 0xb4, 0x16, 0x61, 0x27, 0x42, 0x0f, 0xd2, 0x80, 0x2c, 0x6f, 0xe2, 0x93, + 0x3c, 0xd4, 0x45, 0xc0, 0xa3, 0x76, 0x4d, 0x00, 0x4b, 0xba, 0x8d, 0xf5, + 0x16, 0x69, 0x37, 0x7e, 0x34, 0x01, 0x36, 0xea, 0x42, 0xd5, 0x11, 0x71, + 0x41, 0x7c, 0x0a, 0x00, 0x93, 0x77, 0xa5, 0x26, 0xfa, 0x88, 0xb7, 0x14, + 0x6e, 0xa0, 0x09, 0x77, 0x53, 0x77, 0x71, 0x8a, 0x8b, 0x39, 0xcd, 0x21, + 0x6c, 0x50, 0x04, 0xbb, 0xf1, 0x8a, 0x42, 0xfd, 0xc5, 0x45, 0xb8, 0x1e, + 0xb4, 0x84, 0xfb, 0xd0, 0x03, 0xcb, 0xd3, 0x4b, 0xd4, 0x65, 0xb1, 0x4d, + 0x66, 0xc7, 0x7a, 0x00, 0x94, 0xbe, 0x69, 0x86, 0x4a, 0x89, 0xa4, 0xe3, + 0xad, 0x31, 0xa4, 0xc7, 0xa5, 0x00, 0x4e, 0x65, 0xc5, 0x30, 0xc9, 0xfa, + 0xd4, 0x0d, 0x2f, 0x18, 0xa8, 0xcc, 0x87, 0xd6, 0x80, 0x2d, 0x19, 0x71, + 0x47, 0x9f, 0x54, 0x5e, 0x53, 0x51, 0x34, 0xe4, 0x50, 0x06, 0xa0, 0xb8, + 0xc7, 0x7a, 0x72, 0xde, 0x81, 0xdf, 0x9a, 0xc0, 0x9e, 0xf7, 0x6e, 0x79, + 0xac, 0x9b, 0xdd, 0x65, 0xe1, 0x04, 0x83, 0x40, 0x1e, 0x93, 0x62, 0xed, + 0x2a, 0x17, 0x58, 0xd9, 0xd7, 0xda, 0xa6, 0x7b, 0xcd, 0x99, 0xcc, 0x44, + 0x7d, 0x4d, 0x78, 0x55, 0xf7, 0xc4, 0x0d, 0x57, 0x4a, 0x66, 0x36, 0x97, + 0xf3, 0x41, 0xec, 0xb8, 0x23, 0xf2, 0x35, 0x9c, 0x3f, 0x68, 0x2f, 0x11, + 0x58, 0x9c, 0x4b, 0x2d, 0xbd, 0xd8, 0x1d, 0xa6, 0x87, 0x9f, 0xd0, 0xd0, + 0x07, 0xbe, 0xcb, 0xaa, 0x95, 0xc8, 0x11, 0x8a, 0xa9, 0x36, 0xb1, 0x20, + 0x53, 0x84, 0xe6, 0xbc, 0x56, 0x3f, 0xda, 0x6a, 0x45, 0x3f, 0xe9, 0x7a, + 0x3d, 0xac, 0xbe, 0xa6, 0x37, 0x2b, 0xfd, 0x2a, 0xd4, 0x7f, 0xb4, 0xae, + 0x83, 0x28, 0xfd, 0xfe, 0x8d, 0x34, 0x67, 0xfe, 0x99, 0x48, 0x0d, 0x00, + 0x7b, 0x16, 0x95, 0xa9, 0x89, 0x59, 0x8d, 0xd0, 0x3b, 0x7b, 0x6d, 0xad, + 0x71, 0x75, 0xa6, 0xb0, 0xc1, 0xde, 0xbf, 0x5a, 0xf0, 0xa4, 0xfd, 0xa1, + 0x3c, 0x25, 0x29, 0xf9, 0xe0, 0xbd, 0x83, 0xdc, 0xa8, 0x3f, 0xc8, 0xd5, + 0xb8, 0xfe, 0x39, 0xf8, 0x32, 0x6e, 0xba, 0x9c, 0xd0, 0x9f, 0xfa, 0x69, + 0x0b, 0x50, 0x07, 0xb5, 0xb8, 0xd3, 0x1d, 0x4e, 0x2e, 0x9a, 0x33, 0x8e, + 0xb5, 0xc2, 0x78, 0xd7, 0x4f, 0x94, 0xc6, 0x46, 0x9d, 0xe2, 0x7b, 0x98, + 0xa5, 0x6e, 0x88, 0x91, 0xab, 0x01, 0xfa, 0x57, 0x32, 0x9f, 0x17, 0xfc, + 0x21, 0x38, 0xf9, 0x7c, 0x43, 0x00, 0xf6, 0x7c, 0x8f, 0xe9, 0x4e, 0x1f, + 0x10, 0xbc, 0x2b, 0x2b, 0x6e, 0x5d, 0x6a, 0xc9, 0x89, 0xee, 0x64, 0x02, + 0x80, 0x3c, 0xff, 0x00, 0xc4, 0x31, 0x78, 0xf7, 0x46, 0x0d, 0x33, 0x6a, + 0x97, 0x97, 0xd6, 0xe3, 0xf8, 0xed, 0x88, 0x0c, 0x3e, 0xab, 0x8a, 0xf3, + 0xd7, 0xf8, 0xd3, 0xe2, 0xed, 0x37, 0x51, 0xf2, 0x7f, 0xb4, 0xee, 0x52, + 0x30, 0xd8, 0xfd, 0xfa, 0x0d, 0xdf, 0x96, 0x2b, 0xe8, 0x29, 0x3c, 0x7f, + 0xe1, 0xa0, 0xa5, 0x9b, 0x5c, 0xb1, 0xda, 0x3a, 0x8f, 0x39, 0x4d, 0x78, + 0xbf, 0xc5, 0x9f, 0x1d, 0xf8, 0x0f, 0x50, 0x21, 0x6d, 0x4a, 0xdd, 0xde, + 0xe7, 0x05, 0xed, 0xc6, 0x00, 0xfc, 0x68, 0x03, 0xbb, 0xf0, 0x7f, 0xc4, + 0xdf, 0x10, 0xeb, 0x50, 0x09, 0x22, 0xbc, 0xb7, 0xd4, 0x15, 0x78, 0x60, + 0xe8, 0x63, 0x6f, 0xeb, 0x5e, 0x8d, 0xa7, 0x78, 0x8e, 0xea, 0xe6, 0x15, + 0x69, 0xd3, 0xca, 0x93, 0xba, 0x83, 0x9a, 0xf0, 0xdf, 0x85, 0x3e, 0x25, + 0xf0, 0xfe, 0x9d, 0x07, 0x94, 0x0c, 0xb1, 0x99, 0x0e, 0x4b, 0x39, 0xc8, + 0x15, 0xee, 0x5a, 0x52, 0x59, 0xea, 0x11, 0x2c, 0x96, 0xd3, 0x24, 0xaa, + 0x7f, 0xba, 0x68, 0x02, 0xfa, 0xea, 0x72, 0x37, 0x53, 0x53, 0x25, 0xe3, + 0x93, 0xd6, 0x84, 0xd3, 0x40, 0xa9, 0xd2, 0xc3, 0x14, 0x00, 0xd5, 0x9d, + 0x8f, 0x73, 0x52, 0x2c, 0xad, 0x52, 0xad, 0xa6, 0xd1, 0xeb, 0x52, 0x2c, + 0x00, 0x63, 0x8a, 0x00, 0x62, 0xb3, 0x53, 0xb2, 0xc6, 0xa4, 0xf2, 0xf2, + 0x3a, 0x62, 0x9d, 0xe5, 0x80, 0x79, 0xa0, 0x08, 0xf9, 0x34, 0xa0, 0x1a, + 0x97, 0x67, 0x14, 0x6d, 0xa0, 0x06, 0x05, 0x3f, 0x85, 0x2e, 0xca, 0x7e, + 0x3f, 0x1a, 0x31, 0xc5, 0x00, 0x33, 0xf0, 0xa5, 0xe9, 0x4b, 0x47, 0x07, + 0xa7, 0x5a, 0x00, 0x4e, 0x94, 0xa4, 0x8c, 0x51, 0x48, 0x71, 0x40, 0x07, + 0x4a, 0x5c, 0xd2, 0x1e, 0x28, 0x06, 0x80, 0x1d, 0x91, 0x47, 0x6a, 0x68, + 0xef, 0x9a, 0x3a, 0x50, 0x02, 0x9c, 0x52, 0x51, 0x48, 0x73, 0x40, 0x0d, + 0xef, 0xef, 0x47, 0x39, 0xa0, 0xf3, 0xd3, 0x8a, 0x69, 0x34, 0x00, 0x13, + 0x4d, 0xa5, 0x39, 0xeb, 0xd6, 0x99, 0xba, 0x80, 0x14, 0xf1, 0x49, 0x93, + 0x45, 0x19, 0xa0, 0x05, 0xcf, 0xb5, 0x3b, 0x39, 0x14, 0xda, 0x5e, 0x9c, + 0xd0, 0x02, 0xe7, 0xf1, 0xa2, 0x93, 0xad, 0x28, 0x1c, 0x50, 0x02, 0xd1, + 0x93, 0x8a, 0x31, 0x9a, 0x0f, 0x4a, 0x00, 0x3a, 0xd1, 0x8a, 0x07, 0x3d, + 0x3a, 0xd1, 0xc8, 0xa0, 0x04, 0xdb, 0x48, 0x50, 0x1a, 0x78, 0xc5, 0x18, + 0x14, 0x01, 0x01, 0x8f, 0x35, 0x1b, 0xc4, 0x73, 0xc5, 0x5a, 0xdb, 0x40, + 0x4a, 0x00, 0xcf, 0x68, 0x4d, 0x40, 0xca, 0xcb, 0xf4, 0xad, 0x56, 0x8c, + 0x53, 0x1a, 0x20, 0x47, 0x34, 0x01, 0x8c, 0xee, 0xeb, 0xd8, 0xd5, 0x4b, + 0x9b, 0xd3, 0x6f, 0x1b, 0x3b, 0x67, 0x00, 0x64, 0xe0, 0x56, 0xf4, 0x90, + 0xae, 0x32, 0x40, 0x15, 0x83, 0xae, 0x6a, 0x56, 0x76, 0x10, 0xb6, 0xf9, + 0x10, 0xc9, 0x8e, 0x13, 0x3c, 0x9a, 0x00, 0xf2, 0xaf, 0x1c, 0x7c, 0x70, + 0xb8, 0xf0, 0xe9, 0x31, 0x59, 0xe9, 0x53, 0xc8, 0xed, 0xc2, 0xcb, 0x28, + 0xda, 0xb9, 0xf6, 0xf5, 0xaf, 0x3d, 0x3f, 0x14, 0x3c, 0x79, 0xe2, 0x19, + 0x36, 0xdb, 0x6e, 0x88, 0x37, 0xf0, 0xc6, 0x9c, 0xd7, 0xa9, 0x5d, 0x78, + 0x4a, 0xe7, 0xc5, 0x37, 0x62, 0xe7, 0x50, 0x22, 0x1b, 0x60, 0x72, 0x91, + 0xed, 0xe7, 0x15, 0xbf, 0x63, 0xe1, 0xbb, 0x6b, 0x18, 0x44, 0x56, 0x70, + 0x2c, 0x7f, 0xf4, 0xd3, 0x1c, 0x9a, 0x00, 0xf2, 0x6d, 0x33, 0x4c, 0xf1, + 0xfe, 0xa6, 0x54, 0xcb, 0x67, 0xa8, 0x4e, 0x0f, 0x75, 0xb8, 0x28, 0x2a, + 0xdb, 0xfc, 0x34, 0xf8, 0xa3, 0x35, 0xd7, 0x99, 0x69, 0xf6, 0xbb, 0x78, + 0x3b, 0x24, 0x97, 0x84, 0x9f, 0xcf, 0x35, 0xee, 0x3a, 0x1e, 0xa7, 0xa9, + 0x68, 0xc9, 0xe5, 0x6e, 0x59, 0x23, 0xff, 0x00, 0x68, 0x64, 0x8a, 0xda, + 0x1e, 0x27, 0xba, 0x75, 0xff, 0x00, 0x58, 0x07, 0xb6, 0xdc, 0x50, 0x07, + 0x9c, 0x78, 0x67, 0xc2, 0xfe, 0x34, 0xb2, 0x8e, 0x24, 0xbb, 0xfe, 0xd0, + 0x47, 0xe8, 0xd2, 0x0b, 0xa5, 0x90, 0x7e, 0x44, 0x57, 0xa1, 0x5a, 0xae, + 0xa1, 0xa6, 0xc2, 0x05, 0xec, 0x8d, 0x27, 0xfb, 0x4e, 0x00, 0x3f, 0xa5, + 0x0d, 0xe2, 0x1b, 0x86, 0xff, 0x00, 0x96, 0xc4, 0x7d, 0x05, 0x53, 0xbe, + 0xd5, 0xa4, 0xbb, 0x8c, 0xc7, 0x23, 0xb3, 0x0a, 0x00, 0xd8, 0x8b, 0x51, + 0x57, 0x1d, 0x45, 0x58, 0x8e, 0xe4, 0x37, 0x7a, 0xe4, 0xa1, 0x91, 0x90, + 0x7d, 0xe3, 0xf9, 0x54, 0xab, 0x73, 0x27, 0x60, 0xe7, 0xe8, 0x28, 0x03, + 0xae, 0x59, 0x72, 0x7a, 0xe6, 0x9e, 0x18, 0xe6, 0xb9, 0x44, 0xbe, 0xb9, + 0x5e, 0x8a, 0xf4, 0xe9, 0xf5, 0xc9, 0x60, 0x42, 0x5e, 0xe1, 0x22, 0x03, + 0xfe, 0x7a, 0x30, 0x14, 0x01, 0xd6, 0x0e, 0x29, 0xd9, 0xe2, 0xbc, 0x53, + 0xc6, 0xff, 0x00, 0x17, 0xdf, 0xc3, 0x56, 0xcf, 0x25, 0xb6, 0xb5, 0x62, + 0xd2, 0xa8, 0xff, 0x00, 0x52, 0xe4, 0x36, 0x7f, 0x23, 0x5e, 0x73, 0x61, + 0xfb, 0x62, 0xea, 0x31, 0x49, 0xb2, 0xef, 0x4c, 0x86, 0x60, 0x0e, 0x37, + 0x46, 0x48, 0xcd, 0x00, 0x7d, 0x63, 0xbb, 0x8a, 0x63, 0x3d, 0x7c, 0xfd, + 0xa6, 0xfe, 0xd7, 0x1a, 0x65, 0xc8, 0x02, 0xe3, 0x4e, 0x78, 0x8f, 0xb3, + 0x57, 0x45, 0x65, 0xfb, 0x45, 0x68, 0x1a, 0x93, 0x2a, 0xae, 0xf8, 0x58, + 0xf7, 0x7c, 0x62, 0x80, 0x3d, 0x70, 0xc9, 0x4d, 0xdf, 0xdf, 0x35, 0xe3, + 0x5a, 0xef, 0xed, 0x21, 0xe1, 0x9d, 0x14, 0x15, 0x33, 0xb5, 0xdc, 0xbf, + 0xdc, 0x84, 0x67, 0xf5, 0xae, 0x42, 0xeb, 0xf6, 0xbc, 0xb5, 0x56, 0x22, + 0xdf, 0x46, 0x92, 0x45, 0xf5, 0x79, 0x40, 0xfe, 0x94, 0x01, 0xf4, 0x9e, + 0xee, 0x7a, 0xd3, 0x77, 0x57, 0xcc, 0xe3, 0xf6, 0xbd, 0x27, 0xfe, 0x60, + 0x3f, 0xf9, 0x1f, 0xff, 0x00, 0xad, 0x52, 0x2f, 0xed, 0x76, 0xbd, 0xf4, + 0x23, 0xff, 0x00, 0x7f, 0xbf, 0xfa, 0xd4, 0x01, 0xf4, 0xae, 0xfc, 0x52, + 0x86, 0x38, 0xaf, 0x9c, 0x13, 0xf6, 0xb6, 0x84, 0x9f, 0x9b, 0x43, 0x6f, + 0xfb, 0xfd, 0xff, 0x00, 0xd6, 0xab, 0x50, 0xfe, 0xd6, 0x76, 0x6c, 0x42, + 0x9d, 0x16, 0x6c, 0xfb, 0x48, 0x0d, 0x00, 0x7d, 0x0c, 0x1e, 0x94, 0x11, + 0xdc, 0xd7, 0x91, 0x78, 0x63, 0xf6, 0x85, 0xd1, 0xfc, 0x41, 0x79, 0x1d, + 0xb4, 0x96, 0xd3, 0x59, 0xc8, 0xe7, 0x00, 0xbe, 0x31, 0x5e, 0xab, 0x6f, + 0x70, 0xb3, 0xc6, 0xae, 0x87, 0x72, 0x91, 0x9c, 0xd0, 0x05, 0x90, 0x73, + 0x4e, 0xdd, 0x8e, 0x2a, 0x10, 0x7d, 0x29, 0x43, 0xe6, 0x80, 0x26, 0x0d, + 0x91, 0x4a, 0x0f, 0xbd, 0x42, 0x0d, 0x38, 0x35, 0x00, 0x4c, 0x5a, 0x8d, + 0xdc, 0xf5, 0xa8, 0xb3, 0x9a, 0x5d, 0xd8, 0xe3, 0x34, 0x01, 0x36, 0xec, + 0x8a, 0x41, 0xcf, 0x7a, 0x8f, 0x34, 0xbb, 0xb1, 0x40, 0x1e, 0x3b, 0xf1, + 0xff, 0x00, 0xc0, 0x7f, 0xda, 0xfa, 0x5f, 0xf6, 0xb5, 0xb2, 0x22, 0xdc, + 0x5b, 0xfc, 0xcc, 0x71, 0xcb, 0x0a, 0xf9, 0xfe, 0xc2, 0xeb, 0xcd, 0x4d, + 0xad, 0xc3, 0x0e, 0xb9, 0xaf, 0xb7, 0x2f, 0x2d, 0xd2, 0xf2, 0x07, 0x8a, + 0x45, 0x0c, 0xac, 0x30, 0x72, 0x33, 0x5f, 0x29, 0xfc, 0x5c, 0xf0, 0x0c, + 0xde, 0x0e, 0xd6, 0xde, 0xf6, 0xd8, 0x34, 0x96, 0x93, 0xb1, 0x63, 0xb5, + 0x78, 0x4a, 0x00, 0xe7, 0x01, 0xef, 0x52, 0x23, 0x91, 0x54, 0x2d, 0xae, + 0x96, 0x65, 0x04, 0x1e, 0x6a, 0xd6, 0x78, 0xa0, 0x0b, 0xb1, 0x5d, 0x49, + 0x1b, 0x65, 0x1c, 0xa9, 0xf6, 0x35, 0xbf, 0xa5, 0x78, 0xfb, 0x59, 0xd1, + 0x88, 0xf2, 0x6f, 0x64, 0xda, 0x3f, 0x84, 0x9c, 0x8a, 0xe6, 0x11, 0xb0, + 0x73, 0x43, 0x31, 0x1e, 0xf4, 0x01, 0xeb, 0x7a, 0x4f, 0xc7, 0xcb, 0xf8, + 0x36, 0xad, 0xdc, 0x09, 0x70, 0x3b, 0x91, 0xc1, 0xae, 0xc3, 0x4c, 0xf8, + 0xe3, 0xa3, 0x5e, 0xed, 0x17, 0x0b, 0x25, 0xbb, 0x1f, 0xc4, 0x57, 0xce, + 0x5b, 0xb3, 0x49, 0xe6, 0x11, 0x40, 0x1f, 0x5b, 0xd8, 0xf8, 0xf3, 0x44, + 0xd4, 0x71, 0xe4, 0xdf, 0xc4, 0x4f, 0xa1, 0x38, 0xad, 0x68, 0xf5, 0x1b, + 0x79, 0xf9, 0x8e, 0x64, 0x71, 0xfe, 0xcb, 0x0a, 0xf8, 0xd1, 0x6e, 0xa4, + 0x56, 0xf9, 0x58, 0xaf, 0xd0, 0xd5, 0xeb, 0x7f, 0x11, 0xea, 0x16, 0x98, + 0xf2, 0xae, 0xe5, 0x4c, 0x7a, 0x39, 0xa0, 0x0f, 0xab, 0x75, 0xfd, 0x46, + 0xea, 0xd2, 0xc5, 0xde, 0xc6, 0x15, 0xb8, 0x9f, 0xb2, 0xb3, 0x60, 0x7d, + 0x6b, 0xc7, 0xb5, 0x2f, 0x08, 0xfc, 0x42, 0xf1, 0xfd, 0xfc, 0xb1, 0x36, + 0xbf, 0x6d, 0xa6, 0xda, 0x93, 0xc4, 0x30, 0x12, 0x1b, 0x1e, 0xf8, 0xff, + 0x00, 0x1a, 0xe2, 0x60, 0xf8, 0x89, 0xad, 0xc6, 0xa1, 0x4d, 0xe4, 0x8c, + 0x3d, 0x09, 0xcd, 0x6c, 0xe8, 0xdf, 0x17, 0xf5, 0x6d, 0x1e, 0xe0, 0x4c, + 0x82, 0x32, 0xfd, 0x0e, 0x57, 0xad, 0x00, 0x6c, 0xaf, 0xec, 0x8f, 0x2d, + 0xd8, 0x0f, 0x7b, 0xaf, 0xcd, 0x2c, 0xc7, 0x92, 0x76, 0x67, 0xf9, 0x9a, + 0xb0, 0xbf, 0xb2, 0xb5, 0xc5, 0x84, 0x6c, 0x60, 0xf1, 0x1c, 0xc8, 0x40, + 0xe0, 0x18, 0x01, 0x1f, 0xce, 0xad, 0xdb, 0x7e, 0xd1, 0xfa, 0x82, 0x90, + 0x66, 0xb6, 0x53, 0xf4, 0x38, 0xad, 0x2f, 0xf8, 0x68, 0xa4, 0x9e, 0x26, + 0x12, 0xdb, 0xba, 0xf1, 0xfc, 0x2d, 0x40, 0x1e, 0x01, 0xba, 0x82, 0xfe, + 0xf5, 0x09, 0x71, 0x49, 0xba, 0x80, 0x27, 0x32, 0x1e, 0xa0, 0x9a, 0x3c, + 0xe6, 0xc0, 0xc9, 0x35, 0x06, 0xfc, 0x0e, 0xb4, 0x6f, 0xf5, 0xa0, 0x09, + 0x4b, 0x93, 0xc6, 0x69, 0x87, 0x07, 0xa8, 0x06, 0x93, 0x78, 0xa6, 0xb4, + 0x83, 0x14, 0x01, 0x3d, 0xbd, 0xc4, 0xd6, 0xc7, 0x30, 0xcf, 0x2c, 0x27, + 0xfd, 0x87, 0x22, 0xb6, 0x2c, 0x7c, 0x7d, 0xe2, 0x3d, 0x2c, 0x8f, 0xb3, + 0xea, 0x92, 0x90, 0x3f, 0x85, 0xce, 0x6b, 0x9e, 0x0f, 0x47, 0x98, 0x28, + 0x03, 0xd0, 0x6c, 0xbf, 0x68, 0x0f, 0x12, 0xe9, 0xf8, 0x17, 0x11, 0xc7, + 0x72, 0xa3, 0xbe, 0x2b, 0x6a, 0xd3, 0xf6, 0xaa, 0x86, 0x1c, 0x0b, 0xed, + 0x2d, 0xc6, 0x3a, 0x98, 0xcd, 0x79, 0x19, 0x7c, 0x72, 0x6b, 0x3e, 0xfc, + 0x5b, 0xc8, 0x87, 0x7a, 0x8c, 0xd0, 0x07, 0xd1, 0x9a, 0x67, 0xed, 0x49, + 0xe0, 0xeb, 0xd6, 0x09, 0x3c, 0xd3, 0x59, 0xb1, 0xea, 0x64, 0x43, 0x8f, + 0xd2, 0xbb, 0xdd, 0x0b, 0xe2, 0x4f, 0x87, 0x7c, 0x46, 0xa3, 0xec, 0x1a, + 0xbd, 0xac, 0xe4, 0xff, 0x00, 0x08, 0x90, 0x6e, 0xfc, 0xab, 0xe0, 0x8d, + 0x4a, 0x0b, 0x56, 0x66, 0xe3, 0xf1, 0xac, 0x74, 0x33, 0x5a, 0x49, 0xba, + 0x09, 0x1e, 0x32, 0x3a, 0x15, 0x24, 0x1a, 0x00, 0xfd, 0x31, 0x49, 0xd6, + 0x41, 0x95, 0x60, 0xc3, 0xd4, 0x50, 0x5f, 0x06, 0xbf, 0x3f, 0x7c, 0x3f, + 0xf1, 0x87, 0xc6, 0x3e, 0x19, 0x2a, 0x2d, 0x75, 0x79, 0xda, 0x35, 0xfe, + 0x09, 0x8e, 0xf5, 0xfd, 0x6b, 0xd2, 0xf4, 0x0f, 0xda, 0xeb, 0x5a, 0xb3, + 0xd8, 0xba, 0xa6, 0x9d, 0x0d, 0xda, 0x8e, 0xaf, 0x19, 0xda, 0x7f, 0x2a, + 0x00, 0xfa, 0xd8, 0xb6, 0x07, 0x5a, 0x37, 0xfb, 0xd7, 0x87, 0x68, 0x9f, + 0xb5, 0x87, 0x85, 0xb5, 0x0d, 0xab, 0x7b, 0x15, 0xc5, 0x83, 0x9e, 0xa5, + 0xd7, 0x70, 0xfd, 0x2b, 0xbe, 0xd1, 0xbe, 0x2c, 0xf8, 0x53, 0x5f, 0xdb, + 0xf6, 0x4d, 0x6a, 0xd5, 0xd9, 0xba, 0x21, 0x90, 0x06, 0xfc, 0xa8, 0x03, + 0xb2, 0xdf, 0x41, 0x7c, 0x74, 0xaa, 0x70, 0xdf, 0xc1, 0x72, 0x01, 0x8a, + 0x54, 0x90, 0x1e, 0xea, 0xc0, 0xd2, 0xdc, 0xde, 0xc3, 0x6c, 0x85, 0xa4, + 0x91, 0x63, 0x5f, 0x56, 0x38, 0xa0, 0x0b, 0x45, 0xf2, 0x69, 0xa5, 0xeb, + 0x84, 0xf1, 0x27, 0xc5, 0x9d, 0x07, 0xc3, 0xf1, 0x39, 0x37, 0xd1, 0x4d, + 0x28, 0x1f, 0xea, 0xd1, 0xb2, 0x6b, 0xc6, 0x3c, 0x45, 0xfb, 0x4a, 0xeb, + 0x32, 0x4e, 0xe9, 0xa6, 0x45, 0x14, 0x51, 0xf6, 0x2c, 0xb9, 0x34, 0x01, + 0xf4, 0xf9, 0x6c, 0x53, 0x4b, 0x03, 0x9e, 0x6b, 0xe3, 0xd9, 0xbe, 0x37, + 0xf8, 0xce, 0xf3, 0xa6, 0xa2, 0x21, 0x1f, 0xec, 0xa0, 0x15, 0x4a, 0x6f, + 0x8a, 0x9e, 0x28, 0x61, 0xfb, 0xdd, 0x72, 0xe0, 0x93, 0xd9, 0x1b, 0x14, + 0x01, 0xf6, 0x5b, 0x48, 0xa3, 0xab, 0x0f, 0xce, 0xa1, 0x6b, 0x98, 0xd3, + 0xac, 0x88, 0x3e, 0xa6, 0xbe, 0x2d, 0x7f, 0x18, 0xf8, 0x9f, 0x51, 0x3c, + 0x6a, 0xb7, 0x81, 0x4f, 0x73, 0x21, 0x15, 0x2c, 0x37, 0xda, 0x90, 0x3b, + 0xa7, 0xd4, 0xae, 0xa6, 0x6f, 0xf6, 0xa5, 0x34, 0x01, 0xf6, 0x2c, 0xba, + 0x95, 0xac, 0x43, 0x2f, 0x71, 0x1a, 0xfd, 0x58, 0x55, 0x29, 0xfc, 0x4b, + 0xa5, 0xc0, 0x84, 0xbd, 0xfd, 0xba, 0x81, 0xeb, 0x20, 0xaf, 0x93, 0x25, + 0xd4, 0x6e, 0x8a, 0xfc, 0xf7, 0x32, 0x63, 0xdd, 0xcd, 0x62, 0x6a, 0x9e, + 0x24, 0x5b, 0x54, 0x2b, 0xe6, 0x17, 0x6f, 0xae, 0x68, 0x03, 0xeb, 0x7b, + 0x8f, 0x88, 0xfe, 0x1b, 0x81, 0xb0, 0xfa, 0xad, 0xb8, 0x23, 0xfd, 0xac, + 0xd6, 0x6d, 0xdf, 0xc5, 0xaf, 0x0a, 0xdb, 0x82, 0x5b, 0x55, 0x8d, 0xbf, + 0xdd, 0x04, 0xff, 0x00, 0x2a, 0xf8, 0xbe, 0xe7, 0x5b, 0xba, 0xbb, 0x72, + 0x43, 0x95, 0x5f, 0x6a, 0x84, 0x5c, 0x48, 0x4f, 0x32, 0x36, 0x7e, 0xb4, + 0x01, 0xf5, 0xdd, 0xdf, 0xc6, 0xdf, 0x0a, 0x8c, 0x85, 0xb9, 0x96, 0x4f, + 0xf7, 0x22, 0x6f, 0xf0, 0xac, 0xdf, 0xf8, 0x5a, 0x1a, 0x3e, 0xb0, 0xfe, + 0x55, 0xb2, 0x4e, 0x19, 0xba, 0x34, 0xa3, 0x6a, 0xfe, 0xb5, 0xf2, 0xe4, + 0x57, 0x32, 0x2f, 0x47, 0x6f, 0xce, 0xaf, 0xc1, 0xa9, 0x5c, 0x2f, 0x49, + 0x9c, 0x7d, 0x0d, 0x00, 0x7d, 0x21, 0x75, 0xa1, 0xdd, 0xea, 0xe8, 0x5e, + 0x2b, 0xfd, 0x39, 0x14, 0xf6, 0x69, 0x89, 0x35, 0x8b, 0x3f, 0xc3, 0x3d, + 0x62, 0xfd, 0x88, 0xb6, 0xbc, 0xd3, 0xee, 0x18, 0x7f, 0x0a, 0xc8, 0x6b, + 0xc6, 0xb4, 0xdf, 0x13, 0xde, 0xc5, 0x38, 0x4f, 0x39, 0x99, 0x7d, 0xeb, + 0xb1, 0xb7, 0xf1, 0xce, 0xa3, 0xa5, 0x41, 0xe6, 0x5b, 0x38, 0x0f, 0xee, + 0xb9, 0xa0, 0x0d, 0x8d, 0x53, 0xe1, 0x4f, 0x8a, 0x2c, 0x94, 0xbc, 0x9a, + 0x70, 0x95, 0x07, 0x78, 0x64, 0x0d, 0xfa, 0x57, 0x17, 0x7b, 0xa6, 0x49, + 0x6f, 0x33, 0x45, 0x36, 0x6d, 0xe6, 0x1d, 0x63, 0x94, 0x6d, 0x35, 0xb0, + 0xff, 0x00, 0x1f, 0x3c, 0x51, 0x6e, 0x0a, 0x79, 0xdb, 0x57, 0xda, 0x1a, + 0xe4, 0xbc, 0x47, 0xf1, 0x02, 0x6f, 0x12, 0xcc, 0x25, 0xd4, 0x59, 0x9d, + 0xc7, 0x71, 0x1e, 0xda, 0x00, 0x59, 0xd1, 0xa2, 0x6c, 0x13, 0xf9, 0x1a, + 0xae, 0xc5, 0xbf, 0xbc, 0x6b, 0x30, 0xeb, 0xf6, 0xbc, 0x03, 0xe6, 0x7e, + 0x35, 0x34, 0x3a, 0xa5, 0xad, 0xc1, 0xc0, 0x63, 0x9f, 0x7a, 0x00, 0xb0, + 0xc5, 0x8f, 0x53, 0x51, 0x34, 0x61, 0xba, 0xaa, 0x9f, 0xa8, 0xa9, 0xc0, + 0x8d, 0x87, 0x1c, 0x8a, 0x5d, 0x8b, 0x9e, 0x94, 0x01, 0x4c, 0x5a, 0xc0, + 0x39, 0x30, 0x21, 0xfc, 0x2b, 0x0a, 0xfc, 0xc4, 0x6f, 0x3f, 0x73, 0x1e, + 0xc5, 0x1e, 0x95, 0xd5, 0xf1, 0xe8, 0x28, 0x8c, 0x46, 0xad, 0x92, 0x8a, + 0xde, 0xc4, 0x50, 0x04, 0x9a, 0x0e, 0xa8, 0x6d, 0xa0, 0x5e, 0x48, 0xae, + 0xd7, 0x43, 0xf8, 0x85, 0x77, 0xa3, 0xc8, 0xad, 0x6f, 0x72, 0xf1, 0xe3, + 0xb0, 0x3c, 0x57, 0x29, 0x19, 0xb2, 0x99, 0x76, 0xc9, 0x17, 0x94, 0x7d, + 0x53, 0x8a, 0x6c, 0xba, 0x08, 0x94, 0x6e, 0xb6, 0x9c, 0x30, 0xf4, 0x26, + 0x80, 0x3d, 0xf7, 0xc3, 0x7f, 0xb4, 0x31, 0x8b, 0x62, 0x5f, 0xaa, 0xca, + 0xbd, 0x0b, 0x8e, 0x0d, 0x7a, 0xc7, 0x86, 0xbe, 0x24, 0x68, 0x7e, 0x24, + 0x41, 0xf6, 0x7b, 0xb4, 0x59, 0x4f, 0xfc, 0xb3, 0x63, 0x83, 0x5f, 0x0d, + 0x4d, 0x63, 0x75, 0x6c, 0x48, 0x60, 0xe3, 0xdc, 0x54, 0xfa, 0x6e, 0xa5, + 0x77, 0xa7, 0x5c, 0x24, 0xb0, 0xcc, 0xf1, 0xba, 0x9c, 0x82, 0x0d, 0x00, + 0x7e, 0x84, 0x2b, 0xab, 0x00, 0x41, 0xcf, 0xbd, 0x3b, 0x19, 0x19, 0xaf, + 0x1c, 0xf8, 0x2d, 0xf1, 0x51, 0x7c, 0x43, 0x64, 0x96, 0x37, 0xd2, 0x8f, + 0xb5, 0x20, 0xc0, 0x2c, 0x7e, 0xf5, 0x7b, 0x1a, 0xb8, 0x61, 0x90, 0x73, + 0x40, 0x0b, 0x8a, 0x31, 0x4b, 0xdb, 0xde, 0x8c, 0x8c, 0x70, 0x79, 0xa0, + 0x06, 0x9e, 0x4f, 0xb5, 0x28, 0x19, 0x14, 0x16, 0x51, 0xfc, 0x40, 0x7d, + 0x4d, 0x31, 0xae, 0x62, 0x5e, 0xb2, 0x2f, 0xe7, 0x40, 0x0e, 0xc1, 0xe9, + 0x9c, 0x0a, 0x39, 0x1d, 0xaa, 0xbb, 0xea, 0xb6, 0x91, 0x8f, 0x9e, 0xe6, + 0x25, 0xc7, 0xab, 0x8a, 0xa3, 0x71, 0xe2, 0xdd, 0x1a, 0xd7, 0xfd, 0x6e, + 0xa7, 0x6d, 0x17, 0xfb, 0xd2, 0x8a, 0x00, 0xd5, 0x3f, 0x95, 0x03, 0xda, + 0xb9, 0x5b, 0xaf, 0x8a, 0x5e, 0x15, 0xb5, 0xff, 0x00, 0x59, 0xae, 0x59, + 0xf1, 0xd8, 0x4a, 0x2b, 0x1a, 0xef, 0xe3, 0xd7, 0x83, 0x2c, 0xf3, 0x9d, + 0x59, 0x5f, 0x1f, 0xdc, 0x52, 0xdf, 0xca, 0x80, 0x3d, 0x0c, 0xfe, 0xb4, + 0x1c, 0xfa, 0xd7, 0x90, 0x5f, 0xfe, 0xd3, 0xbe, 0x12, 0xb7, 0xcf, 0x94, + 0xd3, 0xdc, 0x1f, 0xf6, 0x50, 0x8f, 0xe7, 0x5c, 0xed, 0xff, 0x00, 0xed, + 0x69, 0xa6, 0xc6, 0x0f, 0xd9, 0x74, 0xb9, 0xa4, 0xff, 0x00, 0xae, 0x8c, + 0x05, 0x00, 0x7b, 0xff, 0x00, 0x4f, 0x7a, 0x2b, 0xe5, 0xbb, 0xff, 0x00, + 0xda, 0xc3, 0x56, 0x98, 0x9f, 0xb2, 0x69, 0x90, 0xc5, 0xe9, 0x92, 0x5a, + 0xb0, 0xee, 0x3f, 0x69, 0x2f, 0x18, 0xdc, 0x93, 0xe5, 0x98, 0x62, 0x1e, + 0xd1, 0xd0, 0x07, 0xd8, 0x1c, 0xd1, 0xef, 0x5f, 0x17, 0xcb, 0xf1, 0xd7, + 0xc6, 0xb3, 0x92, 0x7f, 0xb4, 0x36, 0x67, 0xfb, 0xa0, 0x0a, 0x80, 0xfc, + 0x66, 0xf1, 0xa3, 0x9c, 0xff, 0x00, 0x6b, 0xbd, 0x00, 0x7d, 0xac, 0x4f, + 0x34, 0x6f, 0xe6, 0xbe, 0x2a, 0x1f, 0x1a, 0x3c, 0x6a, 0xa7, 0x3f, 0xda, + 0xcf, 0xf8, 0xd3, 0xc7, 0xc7, 0x1f, 0x19, 0xa6, 0x09, 0xd5, 0x33, 0xf5, + 0xc5, 0x00, 0x7d, 0xa0, 0x58, 0x0a, 0x69, 0x35, 0xf1, 0xa7, 0xfc, 0x2f, + 0xdf, 0x18, 0xa6, 0x33, 0xa8, 0x29, 0x1e, 0xea, 0x29, 0xeb, 0xfb, 0x42, + 0xf8, 0xbc, 0x7f, 0xcb, 0xf4, 0x7f, 0xf7, 0xc0, 0xa0, 0x0f, 0xb1, 0xbf, + 0x1a, 0x4c, 0xd7, 0xc7, 0x63, 0xf6, 0x88, 0xf1, 0x70, 0xe3, 0xed, 0x71, + 0x1f, 0xf8, 0x05, 0x48, 0x3f, 0x68, 0x9f, 0x17, 0x1e, 0x3e, 0xd5, 0x0f, + 0xfd, 0xf0, 0x28, 0x03, 0xeb, 0xe2, 0xd8, 0xe8, 0x69, 0x32, 0x2b, 0xe4, + 0x51, 0xfb, 0x43, 0xf8, 0xbf, 0xfe, 0x7e, 0x20, 0x3f, 0xf0, 0x01, 0x4b, + 0xff, 0x00, 0x0d, 0x09, 0xe3, 0x13, 0xff, 0x00, 0x2d, 0xa0, 0xff, 0x00, + 0xbe, 0x05, 0x00, 0x7d, 0x76, 0x0f, 0xbd, 0x2e, 0x7f, 0x1a, 0xf9, 0x15, + 0x7f, 0x68, 0x5f, 0x18, 0x0f, 0xf9, 0x6b, 0x0f, 0xfd, 0xf0, 0x29, 0xf1, + 0xfe, 0xd1, 0x9e, 0x2e, 0x43, 0xc9, 0x81, 0xbf, 0xed, 0x9d, 0x00, 0x7d, + 0x71, 0xbb, 0x26, 0x94, 0x37, 0xbd, 0x7c, 0xa9, 0x6f, 0xfb, 0x4d, 0x78, + 0x92, 0x2e, 0x25, 0xb5, 0x82, 0x4f, 0xf8, 0x0e, 0x2b, 0x52, 0xd3, 0xf6, + 0xab, 0xbc, 0x88, 0x81, 0x75, 0xa4, 0xc6, 0x47, 0x7d, 0xae, 0x45, 0x00, + 0x7d, 0x31, 0x9e, 0x69, 0x77, 0x57, 0x83, 0xe9, 0xdf, 0xb5, 0x56, 0x8f, + 0x31, 0x02, 0xea, 0xc2, 0x78, 0x4f, 0x72, 0xa4, 0x10, 0x2b, 0xa7, 0xd3, + 0xff, 0x00, 0x68, 0x6f, 0x07, 0xdf, 0x60, 0x35, 0xeb, 0xc0, 0xc7, 0xfe, + 0x7a, 0x21, 0x14, 0x01, 0xea, 0x03, 0x07, 0x8e, 0x94, 0xe1, 0x91, 0xd2, + 0xb8, 0xeb, 0x2f, 0x8a, 0x7e, 0x16, 0xbf, 0xc7, 0x95, 0xad, 0xda, 0xe4, + 0xf6, 0x69, 0x00, 0xad, 0xcb, 0x7f, 0x12, 0x69, 0x97, 0x6a, 0x0c, 0x57, + 0xf0, 0x49, 0x9f, 0xee, 0xc8, 0x28, 0x03, 0x57, 0x75, 0x1b, 0xba, 0x55, + 0x54, 0xbc, 0x86, 0x4e, 0x56, 0x64, 0x6f, 0xa3, 0x0a, 0x6d, 0xc6, 0xa1, + 0x05, 0xa4, 0x4d, 0x24, 0xb2, 0xaa, 0x20, 0x19, 0x24, 0x9a, 0x00, 0xb8, + 0x5b, 0x34, 0xd2, 0xf8, 0xea, 0x71, 0x5e, 0x51, 0xe2, 0xef, 0x8f, 0xfa, + 0x2f, 0x87, 0xd9, 0xe1, 0xb6, 0xcd, 0xe4, 0xeb, 0xfd, 0xce, 0x82, 0xbc, + 0x9f, 0x5f, 0xfd, 0xa3, 0x75, 0x6d, 0x4c, 0xb2, 0x40, 0xbf, 0x66, 0x8c, + 0xf4, 0xdb, 0xd6, 0x80, 0x3e, 0xa1, 0xbf, 0xd7, 0x6c, 0xb4, 0xf4, 0x2d, + 0x71, 0x73, 0x1c, 0x78, 0xfe, 0xf3, 0x0a, 0xe2, 0x75, 0xff, 0x00, 0x8c, + 0xfa, 0x2e, 0x96, 0xae, 0xb0, 0x39, 0xb9, 0x90, 0x74, 0x0b, 0xd2, 0xbe, + 0x5a, 0xbf, 0xf8, 0x81, 0x7d, 0xa8, 0x39, 0x69, 0xa6, 0x91, 0xc9, 0xe7, + 0x92, 0x6b, 0x2e, 0x5f, 0x10, 0xbc, 0xa7, 0x9d, 0xd4, 0x01, 0xec, 0x5e, + 0x2e, 0xf8, 0xeb, 0xaa, 0x5e, 0xc7, 0x22, 0xda, 0x30, 0xb5, 0x8f, 0xfd, + 0x9e, 0xb5, 0xe3, 0xb7, 0x3f, 0x15, 0xb5, 0xcb, 0x3d, 0x76, 0x3b, 0xc5, + 0xb9, 0x69, 0xde, 0x36, 0xce, 0xc9, 0x0e, 0x41, 0xac, 0xfd, 0x43, 0x52, + 0x67, 0x84, 0x91, 0x92, 0x6b, 0x96, 0xf3, 0xd8, 0x5d, 0x6f, 0xef, 0x9a, + 0x00, 0xfa, 0x2b, 0x47, 0xfd, 0xa8, 0x0f, 0xd9, 0x11, 0x75, 0x0d, 0x0a, + 0x57, 0x70, 0x39, 0x68, 0x4f, 0x07, 0xf3, 0xad, 0x28, 0xff, 0x00, 0x69, + 0xbd, 0x27, 0x39, 0xfe, 0xc7, 0xbf, 0x43, 0xe8, 0x02, 0xe3, 0xf9, 0xd7, + 0x83, 0x5b, 0x3b, 0xdd, 0x44, 0x08, 0xc9, 0xe3, 0xa0, 0xab, 0x03, 0x4f, + 0x9d, 0xf9, 0xd8, 0x47, 0xb9, 0xa0, 0x0f, 0x78, 0x3f, 0xb4, 0xf6, 0x98, + 0xab, 0xf2, 0xe8, 0xb7, 0x8c, 0x7f, 0xda, 0x20, 0x7f, 0x5a, 0x82, 0x4f, + 0xda, 0x7a, 0x0f, 0xf9, 0x67, 0xe1, 0xf9, 0x0f, 0xfb, 0xf2, 0x81, 0x5e, + 0x18, 0xd6, 0x6e, 0x87, 0x92, 0xa3, 0xf1, 0xa8, 0x9a, 0x22, 0x38, 0xe4, + 0xfd, 0x28, 0x03, 0xdb, 0xa5, 0xfd, 0xa7, 0xe7, 0xff, 0x00, 0x96, 0x5a, + 0x04, 0x2b, 0xfe, 0xfc, 0xd9, 0xfe, 0x95, 0x4a, 0x6f, 0xda, 0x6f, 0x58, + 0x60, 0x7c, 0xad, 0x2e, 0xce, 0x3f, 0xa9, 0x27, 0xfa, 0x57, 0x8e, 0x98, + 0xf1, 0xd8, 0xfe, 0x54, 0x9b, 0x47, 0xa1, 0xa0, 0x0f, 0x56, 0x9f, 0xf6, + 0x93, 0xf1, 0x44, 0x80, 0x88, 0xd2, 0xce, 0x1f, 0xa4, 0x44, 0xd6, 0x45, + 0xd7, 0xc7, 0xaf, 0x18, 0xdc, 0xe7, 0x1a, 0x97, 0x92, 0x3f, 0xe9, 0x9c, + 0x60, 0x57, 0x05, 0x1a, 0x2c, 0x8e, 0x14, 0x75, 0x3d, 0xcf, 0x02, 0xbb, + 0x2d, 0x0b, 0xe1, 0xa4, 0xda, 0xd2, 0x2b, 0x9d, 0x57, 0x4f, 0xb5, 0x53, + 0xff, 0x00, 0x3d, 0x25, 0xc9, 0x14, 0x01, 0x9d, 0x79, 0xf1, 0x33, 0xc5, + 0x17, 0xf9, 0xf3, 0xb5, 0xab, 0xb3, 0x9e, 0xca, 0xfb, 0x7f, 0x95, 0x62, + 0xdc, 0xeb, 0x3a, 0x85, 0xe9, 0x3e, 0x7d, 0xed, 0xcc, 0xd9, 0xfe, 0xfc, + 0xcc, 0x6b, 0xd2, 0x4f, 0xc1, 0xdd, 0x36, 0xd0, 0x03, 0x75, 0xe2, 0x9b, + 0x51, 0xff, 0x00, 0x5c, 0x94, 0x1f, 0xeb, 0x43, 0x7c, 0x2e, 0xd0, 0x42, + 0xfc, 0xbe, 0x21, 0x79, 0x7f, 0xeb, 0x9c, 0x40, 0xd0, 0x07, 0x94, 0x34, + 0x0a, 0xed, 0x92, 0x81, 0x8f, 0xa9, 0xe6, 0xa4, 0x45, 0xd8, 0x30, 0xa0, + 0x2f, 0xd0, 0x57, 0xad, 0x2f, 0xc1, 0xed, 0x2e, 0x48, 0xb7, 0xa7, 0x88, + 0x02, 0x8f, 0xfa, 0x69, 0x18, 0x15, 0x85, 0xac, 0xfc, 0x3b, 0x87, 0x4d, + 0x52, 0x61, 0xd6, 0x2d, 0xee, 0x7d, 0x82, 0x62, 0x80, 0x38, 0x09, 0x22, + 0xf3, 0x07, 0xcc, 0x33, 0x54, 0xa6, 0xb5, 0x64, 0x1f, 0xbb, 0x95, 0x97, + 0xdb, 0x35, 0xd5, 0x4b, 0xa3, 0x47, 0x0e, 0x7c, 0xcb, 0x88, 0xc7, 0xd2, + 0xa9, 0xcb, 0x61, 0x68, 0xdc, 0x7d, 0xa3, 0x3f, 0x41, 0x40, 0x1c, 0x93, + 0x44, 0xe1, 0x8e, 0x49, 0x3e, 0xf4, 0xab, 0x91, 0x5d, 0x04, 0xda, 0x3d, + 0x91, 0xe4, 0xc9, 0x21, 0xfa, 0x2d, 0x55, 0x6d, 0x2b, 0x4f, 0x07, 0x99, + 0x26, 0x5f, 0xa8, 0xa0, 0x0c, 0xd0, 0xe1, 0x7a, 0x9c, 0x53, 0xbe, 0xd7, + 0x1a, 0x77, 0xc9, 0xad, 0x28, 0xf4, 0x2d, 0x3e, 0x63, 0x85, 0xb8, 0x6c, + 0xfb, 0xd5, 0x95, 0xf0, 0x74, 0x32, 0x7d, 0xdb, 0x83, 0x8f, 0xa5, 0x00, + 0x73, 0xef, 0xa9, 0x7f, 0x74, 0x53, 0x53, 0x55, 0x99, 0x4f, 0xca, 0x40, + 0x3f, 0x4a, 0xe9, 0xe0, 0xf0, 0x1d, 0xbb, 0x38, 0xdf, 0x78, 0xca, 0xbd, + 0xfe, 0x5a, 0xee, 0xfc, 0x2b, 0xf0, 0x9f, 0xc1, 0xb7, 0xf2, 0x20, 0xbe, + 0xd6, 0x6e, 0x95, 0x8f, 0x55, 0x50, 0x00, 0xfe, 0x54, 0x01, 0xc9, 0x7c, + 0x36, 0xd3, 0xb5, 0x9f, 0x13, 0xf8, 0x82, 0xda, 0x2b, 0x4c, 0xe1, 0x58, + 0x12, 0xf8, 0xe0, 0x57, 0xdc, 0xde, 0x1f, 0xb5, 0x9a, 0xc7, 0x4b, 0xb7, + 0x86, 0x69, 0x37, 0xba, 0xa8, 0x04, 0xd7, 0x25, 0xf0, 0xff, 0x00, 0xc0, + 0x9e, 0x1a, 0xf0, 0x9d, 0xa0, 0xfe, 0xc8, 0x02, 0x42, 0x47, 0x32, 0x33, + 0x65, 0x8d, 0x77, 0x28, 0xc3, 0x8c, 0x76, 0xa0, 0x0b, 0x3b, 0xbb, 0x52, + 0x82, 0x2a, 0x10, 0xdf, 0x8d, 0x29, 0x61, 0x40, 0x13, 0x2b, 0x8a, 0x50, + 0xe0, 0xd4, 0x21, 0x85, 0x1b, 0xe8, 0x02, 0xc6, 0xea, 0x37, 0xfe, 0x75, + 0x5c, 0xc8, 0x01, 0xe4, 0xd5, 0x6b, 0x9d, 0x5e, 0xd2, 0xc5, 0x0b, 0xcf, + 0x73, 0x14, 0x40, 0x75, 0x2e, 0xe0, 0x50, 0x06, 0x90, 0x6c, 0x52, 0xef, + 0xc0, 0xeb, 0x5e, 0x73, 0xaf, 0x7c, 0x75, 0xf0, 0x77, 0x87, 0xc3, 0x09, + 0xf5, 0x88, 0x66, 0x91, 0x7f, 0x82, 0x03, 0xbc, 0xfe, 0x95, 0xe6, 0x1e, + 0x24, 0xfd, 0xaf, 0xec, 0xa1, 0x56, 0x4d, 0x1b, 0x4c, 0x92, 0x76, 0xe8, + 0x24, 0x9c, 0xed, 0x14, 0x01, 0xf4, 0xae, 0xf0, 0x06, 0x49, 0xfc, 0xeb, + 0x9b, 0xf1, 0x97, 0xf6, 0x4d, 0xf6, 0x91, 0x3d, 0xbd, 0xfd, 0xd5, 0xbc, + 0x4a, 0xea, 0x47, 0xef, 0x1c, 0x0a, 0xf8, 0xdb, 0xc4, 0xbf, 0xb4, 0x57, + 0x8c, 0xbc, 0x46, 0x59, 0x56, 0xff, 0x00, 0xec, 0x31, 0x37, 0xf0, 0x5b, + 0x0d, 0xbf, 0xad, 0x71, 0x32, 0x5e, 0xea, 0xba, 0xd4, 0x86, 0x4b, 0xbb, + 0xeb, 0x89, 0x73, 0xd4, 0xc9, 0x21, 0x39, 0xa0, 0x0f, 0x42, 0xf1, 0x2e, + 0x9f, 0x1e, 0x83, 0xab, 0x4c, 0x2c, 0xae, 0xa3, 0xba, 0xb5, 0x0c, 0x70, + 0xd1, 0x36, 0x71, 0x4d, 0xb4, 0xd4, 0x56, 0x75, 0x18, 0x3c, 0xd7, 0x2f, + 0xa5, 0x69, 0x32, 0x01, 0xf7, 0xdf, 0x69, 0xeb, 0x93, 0xd6, 0xba, 0x3b, + 0x4b, 0x28, 0xed, 0x54, 0x6d, 0xeb, 0xeb, 0x40, 0x1a, 0x62, 0x5e, 0x29, + 0xde, 0x67, 0xbd, 0x55, 0x0d, 0xd8, 0x53, 0x83, 0xe0, 0x75, 0xa0, 0x0b, + 0x21, 0xb3, 0xde, 0x90, 0xb6, 0x6a, 0x0f, 0x30, 0x1a, 0x5d, 0xf4, 0x01, + 0x36, 0xef, 0x6a, 0x5c, 0xd4, 0x41, 0xbd, 0xe9, 0x43, 0x67, 0xbd, 0x00, + 0x4a, 0x1c, 0x8c, 0x50, 0x18, 0x9e, 0x6a, 0x32, 0xf4, 0x17, 0x5c, 0x75, + 0xa0, 0x09, 0x77, 0xe6, 0x90, 0x35, 0x47, 0xb8, 0x52, 0x87, 0x1c, 0xd0, + 0x05, 0x55, 0x7c, 0xd1, 0xbf, 0x1d, 0x6a, 0xaf, 0x9d, 0xe8, 0x68, 0x33, + 0x13, 0xde, 0x80, 0x2d, 0x17, 0x1d, 0x69, 0x3c, 0xd1, 0x8e, 0xb5, 0x50, + 0xc9, 0xef, 0x9a, 0x4f, 0x37, 0x9f, 0x6a, 0x00, 0xb7, 0xe6, 0xd2, 0x19, + 0x3d, 0x6a, 0xa7, 0x9c, 0x3d, 0x6a, 0x37, 0xba, 0x45, 0x3c, 0xb0, 0x14, + 0x01, 0x78, 0x49, 0xf8, 0x53, 0x1e, 0x5d, 0xa3, 0x93, 0x59, 0x53, 0x6a, + 0xf0, 0xc4, 0x09, 0xdf, 0xcf, 0xd6, 0xb2, 0xaf, 0x3c, 0x4a, 0x83, 0x21, + 0x4f, 0xe5, 0x40, 0x1d, 0x05, 0xc5, 0xfa, 0xc6, 0x0e, 0x5a, 0xb9, 0xbd, + 0x57, 0x5a, 0x1c, 0x85, 0x6a, 0xc7, 0xbb, 0xd6, 0x9e, 0xe0, 0x90, 0x0e, + 0x05, 0x67, 0xb4, 0x9b, 0x9b, 0x93, 0x40, 0x16, 0x9e, 0x76, 0x99, 0xf2, + 0x6a, 0x68, 0x9c, 0x8a, 0xa6, 0xae, 0xa0, 0x75, 0xa9, 0x52, 0x65, 0x14, + 0x01, 0xa2, 0x81, 0x18, 0x72, 0x07, 0xe5, 0x52, 0x7d, 0x9a, 0x16, 0xea, + 0xa2, 0xa8, 0x2d, 0xc8, 0xf7, 0xa9, 0x92, 0xe7, 0xb0, 0x04, 0xd0, 0x04, + 0xe6, 0xc2, 0x06, 0xfe, 0x11, 0x42, 0x69, 0xd0, 0xa9, 0xca, 0x82, 0x0f, + 0xa8, 0x34, 0xc5, 0x96, 0x46, 0xe8, 0x8c, 0x7f, 0x0a, 0x99, 0x12, 0xe1, + 0xfa, 0x46, 0xdf, 0x95, 0x00, 0x6c, 0x68, 0xfe, 0x24, 0xd5, 0x74, 0x06, + 0x06, 0xc7, 0x53, 0xba, 0xb7, 0xc7, 0x64, 0x94, 0xe3, 0xf2, 0xad, 0xbd, + 0x47, 0xe2, 0xaf, 0x89, 0xb5, 0x7b, 0x53, 0x6f, 0x75, 0xa9, 0xc9, 0x2c, + 0x47, 0x8c, 0x10, 0x39, 0xfc, 0x6b, 0x94, 0x8a, 0xc2, 0xee, 0x4e, 0x90, + 0x9f, 0xc7, 0x8a, 0xb3, 0x1e, 0x91, 0x71, 0xd5, 0x82, 0xa7, 0xd5, 0xa8, + 0x02, 0xbb, 0x39, 0x95, 0xcb, 0x37, 0xcc, 0xc7, 0xb9, 0xa9, 0x23, 0x49, + 0x18, 0xe0, 0x0c, 0x55, 0x91, 0x64, 0x90, 0xff, 0x00, 0xac, 0xb9, 0x8d, + 0x7e, 0x86, 0x95, 0xaf, 0x74, 0xfb, 0x61, 0xf3, 0x4e, 0x5c, 0xfb, 0x50, + 0x03, 0xa1, 0xd3, 0xcb, 0x9c, 0xbb, 0xe0, 0x7a, 0x0a, 0xd1, 0xb7, 0xb3, + 0x82, 0x3c, 0x6d, 0x4d, 0xcd, 0xea, 0x6b, 0x15, 0xfc, 0x4d, 0x69, 0x17, + 0xfa, 0xa8, 0xcb, 0x1f, 0x7a, 0xa5, 0x71, 0xe2, 0xb9, 0xe4, 0xe2, 0x35, + 0xda, 0x28, 0x03, 0xb2, 0x69, 0x56, 0x35, 0xcb, 0x30, 0x51, 0x59, 0xf7, + 0x7e, 0x23, 0xb5, 0xb4, 0x04, 0x67, 0x73, 0x7d, 0x6b, 0x8b, 0xb8, 0xd5, + 0x2e, 0xae, 0x3e, 0xfc, 0x87, 0xf0, 0xaa, 0x85, 0x4b, 0x1c, 0xb3, 0x66, + 0x80, 0x37, 0xb5, 0x1f, 0x14, 0xcb, 0x73, 0x95, 0x8c, 0x90, 0x2b, 0x16, + 0x49, 0x8c, 0xad, 0xb9, 0xdb, 0x26, 0xa3, 0x0a, 0x29, 0x42, 0x8a, 0x00, + 0x70, 0x70, 0x3a, 0x53, 0x96, 0x50, 0x3b, 0x53, 0x42, 0x8f, 0x4a, 0x95, + 0x22, 0x27, 0x9c, 0x50, 0x04, 0x91, 0xb6, 0xe3, 0xc0, 0xab, 0x61, 0xbc, + 0xb4, 0x39, 0xe2, 0xa1, 0x8d, 0x44, 0x43, 0x38, 0xa8, 0x67, 0xb8, 0x2e, + 0x70, 0x28, 0x02, 0xdd, 0x83, 0xee, 0xb9, 0xc8, 0xae, 0x90, 0xdc, 0x11, + 0x00, 0xcd, 0x73, 0xba, 0x6c, 0x40, 0x1c, 0x9a, 0xd9, 0x90, 0x8f, 0x23, + 0x00, 0xd0, 0x04, 0x33, 0x5d, 0x2f, 0x7a, 0xcd, 0xbb, 0x9d, 0x08, 0xe0, + 0x0a, 0x65, 0xd4, 0x9b, 0x0f, 0x73, 0x59, 0x93, 0x5d, 0x0e, 0x47, 0x34, + 0x00, 0x4e, 0xc8, 0xdd, 0xaa, 0x99, 0x7f, 0x2d, 0xb2, 0xa7, 0x18, 0xa7, + 0x92, 0x64, 0x34, 0x2d, 0x93, 0x3f, 0x71, 0x40, 0x16, 0x20, 0xd6, 0x66, + 0x8c, 0x01, 0x90, 0x47, 0xbd, 0x68, 0x43, 0xab, 0xcd, 0x2f, 0xf1, 0x20, + 0xac, 0xc5, 0xd2, 0x65, 0x6f, 0xe2, 0x5a, 0x95, 0x74, 0x79, 0x87, 0xf1, + 0xa8, 0xa0, 0x0d, 0x75, 0x9a, 0xe2, 0x41, 0xfe, 0xb5, 0x47, 0xd0, 0x53, + 0xbc, 0xb9, 0x9b, 0xac, 0xff, 0x00, 0x95, 0x50, 0x86, 0xca, 0xe2, 0x3f, + 0xf9, 0x6a, 0x2a, 0xec, 0x71, 0xba, 0xfd, 0xe6, 0x06, 0x80, 0x24, 0x8e, + 0xdf, 0x9f, 0x9e, 0x57, 0x6f, 0x6c, 0xd6, 0x95, 0x9d, 0xda, 0x5a, 0x91, + 0x85, 0x2d, 0xff, 0x00, 0x02, 0xac, 0xea, 0x69, 0x9b, 0x67, 0x63, 0x40, + 0x1d, 0x64, 0x1a, 0xdc, 0x0e, 0x36, 0xc8, 0x31, 0xf5, 0xa7, 0xbc, 0x36, + 0x17, 0x7c, 0x8d, 0xa0, 0xfa, 0x8e, 0x2b, 0x8c, 0x6b, 0xe2, 0x9f, 0xc0, + 0xc6, 0x98, 0x75, 0x66, 0x5e, 0x91, 0x37, 0xe7, 0x40, 0x1d, 0xbd, 0x84, + 0x57, 0x5a, 0x3d, 0xd2, 0xdc, 0xe9, 0xd7, 0xad, 0x0c, 0x8a, 0x72, 0x0f, + 0x5a, 0xea, 0x24, 0xf8, 0xd1, 0xe3, 0xdb, 0x58, 0xc2, 0xc7, 0xa8, 0x46, + 0xe0, 0x0c, 0x71, 0x1a, 0xe6, 0xbc, 0x84, 0x78, 0x82, 0xe5, 0x3e, 0xea, + 0x30, 0xff, 0x00, 0x81, 0x53, 0xc7, 0x89, 0xaf, 0x47, 0xfc, 0xb3, 0xcf, + 0xe3, 0x40, 0x1e, 0x93, 0x3f, 0xc7, 0x3f, 0x1f, 0x92, 0x77, 0x5f, 0xb0, + 0x1f, 0xec, 0xc6, 0xa2, 0xb3, 0xae, 0x7e, 0x33, 0xf8, 0xde, 0x5f, 0xbf, + 0xac, 0x4d, 0x1f, 0xd0, 0x81, 0x5c, 0x31, 0xf1, 0x2d, 0xf1, 0xeb, 0x10, + 0xc7, 0xd2, 0x9a, 0xda, 0xdc, 0xd2, 0x7d, 0xfb, 0x75, 0x6f, 0xa8, 0xa0, + 0x0e, 0xa2, 0x7f, 0x8a, 0x7e, 0x2c, 0xb8, 0xc8, 0x93, 0x5e, 0xba, 0xfc, + 0x27, 0x22, 0xa8, 0x4b, 0xe3, 0x8d, 0x7e, 0xe3, 0x89, 0x35, 0xbb, 0x97, + 0xfa, 0xce, 0xc6, 0xb3, 0x6c, 0x35, 0xf3, 0x63, 0x28, 0x91, 0x2c, 0x61, + 0x66, 0x1f, 0xdf, 0x8c, 0x11, 0xfa, 0xd7, 0x55, 0x6f, 0xf1, 0x6f, 0x50, + 0x82, 0x1f, 0x2e, 0x3d, 0x2f, 0x4f, 0x43, 0xfd, 0xff, 0x00, 0xb2, 0xae, + 0x7f, 0x95, 0x00, 0x73, 0x72, 0xea, 0xba, 0x84, 0xe3, 0x7c, 0x97, 0xd3, + 0x3f, 0xb9, 0x2c, 0x6a, 0x94, 0x9a, 0x86, 0xef, 0xbf, 0x74, 0xc7, 0xf3, + 0xad, 0x5d, 0x67, 0xc5, 0x1a, 0x8e, 0xbe, 0x08, 0xb8, 0x93, 0x6a, 0x9f, + 0xe1, 0x8a, 0x25, 0x41, 0xfa, 0x0a, 0xc2, 0x3a, 0x3a, 0xc8, 0x7e, 0xf3, + 0x7e, 0x54, 0x00, 0xf3, 0x7b, 0x00, 0xeb, 0x33, 0x1a, 0x8d, 0xb5, 0x2b, + 0x65, 0x1f, 0xc4, 0xff, 0x00, 0xf0, 0x2a, 0x46, 0xf0, 0xff, 0x00, 0x3c, + 0x39, 0xfc, 0xa9, 0xbf, 0xf0, 0x8e, 0xff, 0x00, 0xb6, 0x7f, 0x2a, 0x00, + 0x63, 0x6b, 0x50, 0x81, 0xf2, 0xc0, 0x0f, 0xfb, 0xc7, 0x34, 0x89, 0xac, + 0xcb, 0x21, 0x0b, 0x14, 0x28, 0x09, 0xf4, 0x15, 0x28, 0xd0, 0x31, 0xfc, + 0x43, 0xf1, 0x15, 0x3c, 0x1a, 0x77, 0xd9, 0xd8, 0x10, 0x47, 0x1e, 0x82, + 0x80, 0x1d, 0x6e, 0x35, 0x19, 0x08, 0x24, 0xaa, 0x0f, 0x4c, 0x56, 0x8c, + 0x6a, 0xe1, 0x40, 0x77, 0x03, 0xe9, 0x4d, 0x0d, 0x80, 0x3a, 0xd3, 0xd6, + 0x50, 0xac, 0x0f, 0x71, 0xc8, 0xa0, 0x0d, 0x08, 0x34, 0x9b, 0x97, 0x40, + 0xfb, 0x76, 0x29, 0xe8, 0x5f, 0xbf, 0xe1, 0x57, 0x2d, 0x3c, 0x2d, 0x71, + 0x76, 0xe0, 0x29, 0x76, 0x27, 0xb2, 0xf0, 0x29, 0x2d, 0xbc, 0x57, 0xb1, + 0x15, 0x26, 0x84, 0x48, 0x07, 0x19, 0x1c, 0x1a, 0xda, 0xd3, 0x7c, 0x77, + 0x6b, 0x66, 0xc1, 0x82, 0x32, 0x1f, 0x71, 0x9a, 0x00, 0xb1, 0x69, 0xf0, + 0xbe, 0xe6, 0x65, 0x06, 0x5f, 0x91, 0x7f, 0xda, 0x62, 0x69, 0xf7, 0x3e, + 0x0b, 0xd2, 0x74, 0xa9, 0x56, 0x2b, 0x89, 0x43, 0x4c, 0xdd, 0x11, 0x17, + 0x9a, 0xdd, 0xb4, 0xf8, 0xaf, 0x60, 0xca, 0x04, 0xb8, 0xfc, 0x41, 0x14, + 0xeb, 0x8f, 0x19, 0xf8, 0x63, 0x53, 0x20, 0xdc, 0xa2, 0x96, 0xfe, 0xf7, + 0x7a, 0x00, 0xcc, 0xb7, 0xf0, 0x65, 0x8c, 0xc3, 0xf7, 0x76, 0xe4, 0x8f, + 0xf6, 0x98, 0x0f, 0xe9, 0x56, 0x87, 0x80, 0xad, 0x07, 0xde, 0x89, 0x14, + 0x7b, 0x9a, 0xb7, 0x07, 0x88, 0xfc, 0x37, 0x10, 0xfd, 0xcd, 0xec, 0xb0, + 0x8f, 0x40, 0xdf, 0xe3, 0x56, 0x57, 0xc5, 0x3a, 0x1e, 0x39, 0xd5, 0x24, + 0x23, 0xdf, 0x14, 0x01, 0x98, 0x3e, 0x1f, 0xd9, 0xbf, 0x44, 0x8c, 0x9f, + 0x63, 0x51, 0x4d, 0xf0, 0xea, 0x1c, 0x7f, 0xc7, 0xae, 0x47, 0xb3, 0x0f, + 0xf0, 0xad, 0xb5, 0xf1, 0x4e, 0x84, 0x87, 0x23, 0x50, 0x6f, 0xc0, 0x0a, + 0x57, 0xf1, 0xa6, 0x89, 0x8c, 0x36, 0xa3, 0x21, 0x1e, 0x99, 0x1f, 0xe1, + 0x40, 0x1c, 0x74, 0xfe, 0x0b, 0xd2, 0x92, 0xe1, 0x60, 0x94, 0xbd, 0xb4, + 0xcd, 0xf7, 0x44, 0x8b, 0xc1, 0xa2, 0xe3, 0xe1, 0x64, 0x8a, 0xbb, 0xa0, + 0x90, 0x3f, 0xa7, 0x24, 0x57, 0x4c, 0xde, 0x2d, 0xf0, 0xc2, 0x4a, 0x25, + 0xc8, 0x96, 0x41, 0xfc, 0x4e, 0x49, 0xa2, 0x7f, 0x8a, 0x1a, 0x4c, 0x63, + 0x11, 0xe0, 0xfe, 0x14, 0x01, 0xe7, 0x97, 0xfe, 0x0e, 0xbf, 0xb0, 0x38, + 0x6c, 0xa7, 0xfb, 0xc3, 0x22, 0xb2, 0xee, 0x34, 0x7b, 0xd8, 0x22, 0x32, + 0x94, 0x0e, 0xa3, 0xa9, 0x4a, 0xed, 0x75, 0x7f, 0x88, 0x96, 0x97, 0xd9, + 0x04, 0x33, 0x2f, 0xa0, 0x18, 0xae, 0x6a, 0xf3, 0xc5, 0x42, 0x48, 0x9a, + 0x38, 0x10, 0x46, 0x8d, 0xd7, 0x27, 0x26, 0x80, 0x30, 0x03, 0xb9, 0xe8, + 0x73, 0xec, 0x6a, 0x29, 0x65, 0xb8, 0x2c, 0x15, 0x63, 0x52, 0x0f, 0x76, + 0xe9, 0x53, 0xb4, 0xe8, 0x4e, 0x72, 0x2a, 0x37, 0xb8, 0x18, 0xf9, 0x59, + 0x73, 0xee, 0x68, 0x03, 0xa1, 0xb0, 0xf8, 0x65, 0xe2, 0x4d, 0x5e, 0xd4, + 0x5c, 0xd9, 0x69, 0xb0, 0x5f, 0x44, 0x46, 0x73, 0x04, 0xa3, 0x3f, 0xad, + 0x56, 0xbc, 0xf8, 0x73, 0xe2, 0x3b, 0x1c, 0xf9, 0xfe, 0x1f, 0xbe, 0x8c, + 0xfa, 0xa2, 0xee, 0xfe, 0x55, 0x67, 0xe1, 0xf7, 0x8e, 0x6e, 0xfc, 0x29, + 0xac, 0xa4, 0xcd, 0x74, 0xd0, 0xda, 0x93, 0xf3, 0xaa, 0x9c, 0x82, 0x3e, + 0x95, 0xf4, 0x0c, 0x1f, 0xb4, 0x87, 0x85, 0xd6, 0x05, 0x12, 0xc9, 0x33, + 0xb8, 0x1c, 0xfe, 0xee, 0x80, 0x3e, 0x5f, 0x9b, 0x47, 0xbf, 0xb5, 0x3f, + 0xbc, 0xb4, 0xbd, 0x83, 0x1f, 0xdf, 0x85, 0x87, 0xf4, 0xa8, 0x85, 0xdd, + 0xc5, 0xb9, 0xc0, 0xba, 0x64, 0x23, 0xb1, 0xc8, 0x35, 0xf4, 0x96, 0xaf, + 0xfb, 0x45, 0x78, 0x66, 0xe2, 0x07, 0x58, 0x2d, 0x1a, 0x47, 0xc7, 0x06, + 0x48, 0xc6, 0x2b, 0xc3, 0xfc, 0x6b, 0xe2, 0xa1, 0xe2, 0xbb, 0xa6, 0x75, + 0xf2, 0x20, 0x43, 0xd0, 0x24, 0x6a, 0x0d, 0x00, 0x65, 0x5b, 0x78, 0xa3, + 0x59, 0xb5, 0xff, 0x00, 0x51, 0xa9, 0xcc, 0xbf, 0xee, 0xcc, 0x45, 0x58, + 0xb9, 0xf1, 0xbf, 0x88, 0xae, 0xa1, 0x31, 0x4d, 0xa9, 0xdd, 0x4d, 0x19, + 0xe3, 0x6b, 0x4e, 0x48, 0xac, 0x05, 0xd2, 0x63, 0x63, 0x93, 0x72, 0x4f, + 0xb0, 0x35, 0x66, 0x2b, 0x18, 0x62, 0x1f, 0xeb, 0x4b, 0x7e, 0x34, 0x00, + 0xc9, 0x6e, 0x67, 0x97, 0x96, 0x47, 0x27, 0xd7, 0xad, 0x33, 0xce, 0x6c, + 0x72, 0x8f, 0x9f, 0xa5, 0x5f, 0x45, 0xb7, 0x5e, 0xc4, 0xd4, 0xeb, 0x79, + 0x1c, 0x7d, 0x12, 0x80, 0x32, 0xe3, 0x0f, 0x29, 0xc0, 0x46, 0x27, 0xe9, + 0x57, 0xa1, 0xd2, 0x2e, 0xa6, 0xe8, 0x9b, 0x7f, 0xde, 0xab, 0x03, 0x56, + 0x2b, 0xf7, 0x63, 0x14, 0x8d, 0xac, 0xcc, 0x7a, 0x10, 0xb4, 0x01, 0x2a, + 0x78, 0x69, 0xd9, 0x3f, 0x7d, 0x30, 0x51, 0xe8, 0x2a, 0xbb, 0xe8, 0x3a, + 0x5d, 0x93, 0x6f, 0x90, 0x3c, 0xc4, 0x76, 0x3d, 0x29, 0xaf, 0xa8, 0xcd, + 0x27, 0x59, 0x4f, 0xe1, 0x50, 0xbd, 0xc3, 0x37, 0x25, 0xc9, 0xfa, 0x9a, + 0x00, 0xb5, 0xfd, 0xbb, 0x05, 0xb2, 0xec, 0x82, 0x24, 0x88, 0x0e, 0x33, + 0x8a, 0x89, 0xf5, 0x5f, 0xb4, 0xfd, 0xe9, 0xff, 0x00, 0x0c, 0xd5, 0x37, + 0x28, 0xdf, 0x78, 0x0a, 0x85, 0xd2, 0xdf, 0x07, 0x21, 0x68, 0x03, 0x40, + 0x3a, 0x1e, 0x8e, 0xa7, 0xf1, 0xa5, 0x18, 0x3d, 0x08, 0xfc, 0xeb, 0x16, + 0x47, 0xb5, 0x4e, 0xff, 0x00, 0x91, 0xaa, 0xb2, 0x5e, 0x42, 0xbf, 0x74, + 0xb7, 0xe7, 0x40, 0x1d, 0x26, 0xde, 0x3a, 0x83, 0x4c, 0x92, 0x41, 0x1f, + 0x52, 0x2b, 0x96, 0x6b, 0xf7, 0x1f, 0x75, 0xd8, 0x7e, 0x35, 0x0b, 0xdd, + 0xca, 0xdd, 0x5d, 0x8f, 0xe3, 0x40, 0x1d, 0x05, 0xc6, 0xb0, 0x90, 0xe4, + 0x28, 0x04, 0xd5, 0x4f, 0xf8, 0x48, 0x67, 0xce, 0x11, 0x45, 0x63, 0x6f, + 0xdd, 0xd4, 0xd4, 0xd1, 0x38, 0x5a, 0x00, 0xd7, 0x8f, 0x55, 0xbd, 0x97, + 0xf8, 0x57, 0xf1, 0xab, 0x71, 0x5c, 0xde, 0x37, 0x74, 0x1f, 0x9d, 0x65, + 0xc3, 0x71, 0xb7, 0x15, 0x7e, 0x1b, 0xc0, 0x31, 0x40, 0x1a, 0x50, 0x7d, + 0xa4, 0x90, 0x5a, 0x41, 0xf8, 0x66, 0xb6, 0x61, 0x99, 0x84, 0x18, 0x2c, + 0x4f, 0xe3, 0x58, 0x11, 0xde, 0x67, 0x15, 0xa5, 0x14, 0xe4, 0xc5, 0x40, + 0x19, 0x9a, 0x95, 0xc3, 0x2c, 0xf9, 0xea, 0x3d, 0xe8, 0x8e, 0xfe, 0x46, + 0x4e, 0x1b, 0x6f, 0xd2, 0xa3, 0xd4, 0xf2, 0xdc, 0xd6, 0x74, 0x37, 0x18, + 0x38, 0x34, 0x01, 0x7a, 0x6b, 0xa7, 0x27, 0x96, 0x26, 0xab, 0xb4, 0xc4, + 0xf7, 0x34, 0x31, 0xde, 0x2a, 0xac, 0xbb, 0x96, 0x80, 0x1e, 0xee, 0x4f, + 0x42, 0x73, 0x53, 0x5b, 0x6a, 0xd7, 0x16, 0x8c, 0x3e, 0x72, 0xcb, 0xe9, + 0x54, 0x0c, 0x8d, 0x49, 0xb8, 0x9a, 0x00, 0xea, 0xec, 0xfc, 0x4b, 0x1c, + 0x80, 0x09, 0x78, 0x3e, 0xb5, 0xaf, 0x6d, 0x7d, 0x14, 0xa3, 0x74, 0x72, + 0xe0, 0xfa, 0x57, 0x9e, 0xf2, 0x7b, 0x53, 0x92, 0xe2, 0x58, 0x8e, 0x51, + 0x88, 0xfc, 0x68, 0x03, 0xd6, 0x6c, 0xbc, 0x55, 0xa9, 0xe9, 0xb8, 0x30, + 0x5e, 0xcd, 0x18, 0xff, 0x00, 0x65, 0xcd, 0x74, 0x7a, 0x67, 0xc6, 0x6d, + 0x7b, 0x4e, 0x23, 0xfd, 0x2f, 0xce, 0x51, 0xfc, 0x32, 0x73, 0x5e, 0x23, + 0x06, 0xbf, 0x75, 0x08, 0xc1, 0x3b, 0x87, 0xbd, 0x5f, 0x8b, 0xc5, 0x00, + 0xf1, 0x2c, 0x7f, 0x8d, 0x00, 0x7d, 0x13, 0x67, 0xfb, 0x49, 0xcd, 0x0c, + 0x60, 0x5c, 0xe9, 0x82, 0x62, 0x3b, 0xc6, 0xf8, 0xa9, 0x25, 0xfd, 0xa9, + 0x6d, 0x62, 0xff, 0x00, 0x98, 0x25, 0xc1, 0x3f, 0xf5, 0xd0, 0x57, 0xcf, + 0x91, 0xeb, 0x76, 0x72, 0xf5, 0x62, 0x86, 0x9f, 0xf6, 0x88, 0x26, 0x1f, + 0x25, 0xc0, 0xfc, 0x68, 0x03, 0xde, 0x7f, 0xe1, 0xab, 0x2d, 0xf3, 0xce, + 0x8b, 0x2f, 0xfd, 0xfc, 0x15, 0x91, 0xad, 0xfe, 0xd5, 0x77, 0xed, 0x19, + 0x1a, 0x6e, 0x93, 0x1c, 0x6d, 0xfd, 0xe9, 0x9f, 0x3f, 0xca, 0xbc, 0x56, + 0x5b, 0x57, 0x7c, 0xed, 0x64, 0x6f, 0xa1, 0xaa, 0x72, 0xe9, 0xf7, 0x2b, + 0xc8, 0x4c, 0xfd, 0x28, 0x03, 0xb1, 0xd7, 0x7e, 0x3e, 0x78, 0xeb, 0x59, + 0xdc, 0x3e, 0xde, 0x2d, 0x23, 0x3f, 0xc3, 0x6e, 0xa1, 0x4f, 0xe7, 0x5c, + 0x2e, 0xa3, 0xae, 0xeb, 0x1a, 0xc3, 0x96, 0xbe, 0xbe, 0xb9, 0xb9, 0x63, + 0xde, 0x59, 0x09, 0xa6, 0xbc, 0x17, 0x69, 0xff, 0x00, 0x2c, 0x9b, 0x1e, + 0xc2, 0xa0, 0x77, 0x99, 0x7e, 0xf4, 0x4c, 0x3f, 0x0a, 0x00, 0x83, 0xc9, + 0x27, 0x92, 0x79, 0xa3, 0xcb, 0x02, 0x95, 0xa7, 0x3d, 0xd4, 0x8a, 0x8d, + 0xa6, 0x1e, 0xe2, 0x80, 0x2c, 0x42, 0xd1, 0x23, 0x0c, 0x8c, 0xd6, 0xee, + 0x9c, 0xc8, 0xe4, 0x1a, 0xe5, 0x8b, 0xf7, 0xcd, 0x4b, 0x05, 0xfc, 0x96, + 0xe7, 0xe5, 0x6a, 0x00, 0xf4, 0x8b, 0x59, 0x55, 0x54, 0x62, 0xac, 0x89, + 0x01, 0xae, 0x0a, 0xdb, 0xc4, 0xef, 0x16, 0x37, 0x0c, 0xd6, 0x9c, 0x1e, + 0x30, 0x88, 0xfd, 0xf5, 0xc5, 0x00, 0x75, 0xa2, 0x4c, 0x52, 0xf9, 0xe0, + 0x76, 0xae, 0x7e, 0x2f, 0x13, 0x5a, 0x49, 0x8c, 0xbe, 0x3e, 0xb5, 0x69, + 0x35, 0x9b, 0x49, 0x3a, 0x4c, 0xb4, 0x01, 0xac, 0x26, 0xc9, 0xa7, 0x89, + 0x32, 0x2b, 0x31, 0x75, 0x08, 0x0f, 0xdd, 0x91, 0x4f, 0xe3, 0x52, 0x0b, + 0xa4, 0x6f, 0xe3, 0x1f, 0x9d, 0x00, 0x68, 0x89, 0x30, 0x3d, 0x3e, 0xb4, + 0x19, 0x7b, 0xd5, 0x0f, 0xb4, 0x03, 0xfc, 0x40, 0xfe, 0x34, 0xe1, 0x26, + 0x7a, 0x62, 0x80, 0x2e, 0x79, 0xde, 0xb4, 0xbe, 0x60, 0xaa, 0x61, 0xf3, + 0xde, 0x94, 0x3f, 0xbf, 0xe3, 0x40, 0x16, 0xcc, 0x98, 0xc7, 0xa5, 0x05, + 0xce, 0x38, 0xe9, 0x55, 0x44, 0x9f, 0xfe, 0xba, 0x5f, 0x37, 0xde, 0x80, + 0x38, 0xc6, 0xbb, 0x97, 0x27, 0xfe, 0x26, 0x63, 0xfe, 0xf9, 0x34, 0xdf, + 0xb6, 0x49, 0xff, 0x00, 0x41, 0x41, 0xff, 0x00, 0x7c, 0xd4, 0x0d, 0xe1, + 0x0d, 0x5c, 0x92, 0x46, 0x9d, 0x7a, 0x47, 0xfd, 0x7b, 0xbf, 0xf8, 0x52, + 0x7f, 0xc2, 0x1b, 0xac, 0x7f, 0xd0, 0x3a, 0xfb, 0xff, 0x00, 0x01, 0xdf, + 0xfc, 0x28, 0x02, 0x7f, 0xb6, 0xb8, 0xff, 0x00, 0x98, 0xa7, 0xfe, 0x3b, + 0x49, 0xf6, 0xbc, 0xf5, 0xd5, 0x4f, 0xfd, 0xf3, 0x50, 0x7f, 0xc2, 0x1b, + 0xac, 0x7f, 0xd0, 0x36, 0xf7, 0xff, 0x00, 0x01, 0xdf, 0xfc, 0x29, 0x3f, + 0xe1, 0x0c, 0xd6, 0x3f, 0xe8, 0x19, 0x7b, 0xff, 0x00, 0x80, 0xef, 0xfe, + 0x14, 0x01, 0x29, 0x9a, 0x33, 0xd7, 0x54, 0x7f, 0xfb, 0xe2, 0x98, 0x4d, + 0xb3, 0x7d, 0xed, 0x46, 0x53, 0xff, 0x00, 0x00, 0xa6, 0xff, 0x00, 0xc2, + 0x1b, 0xab, 0xff, 0x00, 0xd0, 0x32, 0xf7, 0xff, 0x00, 0x01, 0xdf, 0xfc, + 0x29, 0x3f, 0xe1, 0x0e, 0xd6, 0x3f, 0xe8, 0x19, 0x7b, 0xff, 0x00, 0x80, + 0xef, 0xfe, 0x14, 0x00, 0x34, 0x5a, 0x7b, 0x7d, 0xeb, 0xd9, 0x9b, 0xfe, + 0x03, 0x4d, 0xfb, 0x36, 0x95, 0xde, 0x79, 0xdb, 0xf0, 0x14, 0xef, 0xf8, + 0x43, 0xb5, 0x8f, 0xfa, 0x06, 0x5e, 0xff, 0x00, 0xe0, 0x3b, 0xff, 0x00, + 0x85, 0x1f, 0xf0, 0x87, 0x6b, 0x1f, 0xf4, 0x0b, 0xbd, 0xff, 0x00, 0xc0, + 0x77, 0xff, 0x00, 0x0a, 0x00, 0x04, 0x1a, 0x40, 0xfe, 0x29, 0x9a, 0x9e, + 0xab, 0xa4, 0x0f, 0xf9, 0x63, 0x33, 0x7f, 0xc0, 0xa9, 0x83, 0xc1, 0xba, + 0xc7, 0xfd, 0x02, 0xef, 0x7f, 0xf0, 0x1d, 0xff, 0x00, 0xc2, 0x97, 0xfe, + 0x10, 0xfd, 0x63, 0xfe, 0x81, 0x77, 0xbf, 0xf8, 0x0e, 0xff, 0x00, 0xe1, + 0x40, 0x13, 0x09, 0xb4, 0xb4, 0xfb, 0xb6, 0x8e, 0xdf, 0x57, 0xa7, 0xad, + 0xed, 0x8a, 0xfd, 0xdb, 0x00, 0x7e, 0xad, 0x55, 0xbf, 0xe1, 0x0e, 0xd6, + 0x3f, 0xe8, 0x19, 0x7b, 0xff, 0x00, 0x7e, 0x1f, 0xfc, 0x28, 0xff, 0x00, + 0x84, 0x3f, 0x58, 0xff, 0x00, 0xa0, 0x65, 0xef, 0xfd, 0xf8, 0x7f, 0xf0, + 0xa0, 0x0b, 0xab, 0xa9, 0x42, 0x3e, 0xee, 0x9f, 0x17, 0xe2, 0x69, 0xe3, + 0x56, 0x90, 0x7d, 0xcb, 0x48, 0x16, 0xb3, 0xff, 0x00, 0xe1, 0x0f, 0xd6, + 0x7f, 0xe8, 0x19, 0x7b, 0xff, 0x00, 0x7e, 0x1f, 0xfc, 0x28, 0xff, 0x00, + 0x84, 0x3f, 0x59, 0xff, 0x00, 0xa0, 0x65, 0xef, 0xfd, 0xf8, 0x7f, 0xf0, + 0xa0, 0x0d, 0x0f, 0xed, 0x5b, 0xe3, 0xf7, 0x56, 0x14, 0xfa, 0x01, 0x48, + 0x6f, 0x35, 0x27, 0xff, 0x00, 0x96, 0xc8, 0xbf, 0x4a, 0xa2, 0x3c, 0x21, + 0xad, 0x0f, 0xf9, 0x86, 0x5e, 0xff, 0x00, 0xdf, 0x87, 0xff, 0x00, 0x0a, + 0x5f, 0xf8, 0x44, 0x35, 0xaf, 0xfa, 0x06, 0xdf, 0x7f, 0xdf, 0x97, 0xff, + 0x00, 0x0a, 0x00, 0xb0, 0xe7, 0x52, 0x93, 0xad, 0xc7, 0xe1, 0x9a, 0x85, + 0xed, 0x2f, 0x5f, 0xef, 0x4a, 0xc7, 0xfe, 0x05, 0x49, 0xff, 0x00, 0x08, + 0x96, 0xb7, 0xff, 0x00, 0x40, 0xdb, 0xef, 0xfb, 0xf2, 0xff, 0x00, 0xe1, + 0x4f, 0x5f, 0x0a, 0xeb, 0xa3, 0xfe, 0x61, 0xd7, 0xc3, 0xfe, 0xd8, 0xbf, + 0xf8, 0x50, 0x05, 0x76, 0xd3, 0x6e, 0x3b, 0xee, 0x6f, 0xc6, 0x98, 0x74, + 0xe9, 0x87, 0xfc, 0xb3, 0x35, 0x7d, 0x7c, 0x33, 0xaf, 0x29, 0xe3, 0x4e, + 0xbe, 0xff, 0x00, 0xbf, 0x2d, 0xfe, 0x15, 0x20, 0xf0, 0xf7, 0x88, 0x07, + 0xfc, 0xc3, 0xaf, 0x7f, 0xef, 0xcb, 0x7f, 0x85, 0x00, 0x65, 0x9b, 0x29, + 0x87, 0xfc, 0xb3, 0x34, 0x82, 0xce, 0x6f, 0xf9, 0xe6, 0x6b, 0x60, 0x68, + 0x1e, 0x20, 0xff, 0x00, 0xa0, 0x6d, 0xe7, 0xfd, 0xf9, 0x6f, 0xf0, 0xa5, + 0xfe, 0xc0, 0xf1, 0x07, 0xfd, 0x03, 0x6e, 0xff, 0x00, 0xef, 0xc3, 0x7f, + 0x85, 0x00, 0x63, 0x7d, 0x8e, 0x5f, 0xee, 0x1a, 0x3e, 0xc7, 0x2f, 0xf7, + 0x0d, 0x6c, 0xff, 0x00, 0xc2, 0x3b, 0xe2, 0x0f, 0xfa, 0x07, 0x5d, 0x7f, + 0xdf, 0x96, 0xff, 0x00, 0x0a, 0x3f, 0xe1, 0x1a, 0xd7, 0xcf, 0xfc, 0xc3, + 0xae, 0xbf, 0xef, 0xcb, 0x7f, 0x85, 0x00, 0x63, 0x8b, 0x39, 0x07, 0xf0, + 0xd2, 0x8b, 0x62, 0x3a, 0xd6, 0xb7, 0xfc, 0x22, 0xda, 0xeb, 0x75, 0xb0, + 0xbb, 0xff, 0x00, 0xbf, 0x2d, 0xfe, 0x14, 0x9f, 0xf0, 0x88, 0x6b, 0x47, + 0xad, 0x8d, 0xdf, 0xfd, 0xf9, 0x6f, 0xf0, 0xa0, 0x0c, 0xb1, 0x1a, 0xa5, + 0x06, 0x75, 0x41, 0xc0, 0xad, 0x5f, 0xf8, 0x43, 0x35, 0x63, 0xf7, 0xac, + 0x2e, 0xff, 0x00, 0xef, 0xc3, 0x7f, 0x85, 0x3d, 0x3c, 0x19, 0xa9, 0x03, + 0xce, 0x9f, 0x77, 0xff, 0x00, 0x7e, 0x1b, 0xfc, 0x28, 0x03, 0x0c, 0xca, + 0xd2, 0x70, 0x05, 0x4d, 0x6d, 0x6a, 0x58, 0xe4, 0x8a, 0xdd, 0x4f, 0x09, + 0xea, 0x29, 0x8f, 0xf8, 0x97, 0x5d, 0x7f, 0xdf, 0x86, 0xff, 0x00, 0x0a, + 0x9d, 0x7c, 0x37, 0xa9, 0x2f, 0x4d, 0x3e, 0xeb, 0xfe, 0xfc, 0x37, 0xf8, + 0x50, 0x05, 0x2b, 0x68, 0xc2, 0x0e, 0x95, 0x69, 0xf1, 0xb6, 0xac, 0x2e, + 0x81, 0xa9, 0xaf, 0xfc, 0xc3, 0xee, 0xff, 0x00, 0xef, 0xc3, 0x7f, 0x85, + 0x38, 0xe8, 0x7a, 0x97, 0xfd, 0x03, 0xee, 0xff, 0x00, 0xef, 0xc3, 0x7f, + 0x85, 0x00, 0x60, 0xdd, 0x45, 0x9c, 0xf1, 0x59, 0x17, 0x16, 0xd9, 0xe7, + 0x15, 0xd8, 0xbf, 0x87, 0xb5, 0x17, 0xff, 0x00, 0x98, 0x75, 0xdf, 0xfd, + 0xf8, 0x6f, 0xf0, 0xaa, 0xf2, 0x78, 0x5b, 0x51, 0x6f, 0xf9, 0x87, 0x5d, + 0xff, 0x00, 0xdf, 0x86, 0xff, 0x00, 0x0a, 0x00, 0xe2, 0xda, 0x36, 0x53, + 0x4a, 0x93, 0x32, 0x7b, 0x57, 0x56, 0xfe, 0x10, 0xd4, 0x8f, 0xfc, 0xc3, + 0xae, 0xbf, 0xef, 0xc3, 0x7f, 0x85, 0x40, 0xfe, 0x0a, 0xd4, 0xcf, 0x4d, + 0x36, 0xef, 0xfe, 0xfc, 0x37, 0xf8, 0x50, 0x06, 0x24, 0x7a, 0x83, 0x27, + 0x7a, 0xb0, 0x9a, 0x96, 0x7a, 0xd5, 0xe6, 0xf0, 0x46, 0xab, 0xff, 0x00, + 0x40, 0xeb, 0xbf, 0xfb, 0xf0, 0xdf, 0xe1, 0x51, 0x9f, 0x04, 0xea, 0xe3, + 0xa6, 0x9d, 0x77, 0xff, 0x00, 0x7e, 0x1b, 0xfc, 0x28, 0x01, 0x89, 0x7e, + 0x8d, 0xde, 0xa5, 0x5b, 0xa8, 0xcf, 0xf1, 0x54, 0x67, 0xc1, 0x7a, 0xc8, + 0xff, 0x00, 0x98, 0x75, 0xdf, 0xfd, 0xf8, 0x6f, 0xf0, 0xa4, 0xff, 0x00, + 0x84, 0x3b, 0x5b, 0x1d, 0x34, 0xdb, 0xbf, 0xfb, 0xf2, 0xdf, 0xe1, 0x40, + 0x16, 0x04, 0xca, 0x7a, 0x35, 0x3f, 0xcd, 0x5f, 0x51, 0x55, 0x7f, 0xe1, + 0x12, 0xd7, 0x57, 0xfe, 0x61, 0xb7, 0x9f, 0xf7, 0xe1, 0xbf, 0xc2, 0x97, + 0xfe, 0x11, 0x7d, 0x79, 0x7a, 0x69, 0xb7, 0x9f, 0xf7, 0xe1, 0xbf, 0xc2, + 0x80, 0x2c, 0x6e, 0x53, 0xe8, 0x68, 0xda, 0x87, 0xb0, 0xa8, 0x3f, 0xe1, + 0x1c, 0xf1, 0x00, 0xff, 0x00, 0x98, 0x65, 0xe7, 0xfd, 0xf8, 0x6f, 0xf0, + 0xa5, 0x1e, 0x1f, 0xf1, 0x00, 0xff, 0x00, 0x98, 0x5d, 0xe7, 0xfd, 0xf8, + 0x6f, 0xf0, 0xa0, 0x09, 0xbc, 0xb8, 0xcf, 0x61, 0x48, 0x60, 0x4f, 0x41, + 0x4c, 0x1a, 0x17, 0x88, 0x07, 0xfc, 0xc2, 0xef, 0x3f, 0xef, 0xc3, 0x7f, + 0x85, 0x28, 0xd1, 0xbc, 0x40, 0x3f, 0xe6, 0x15, 0x79, 0xff, 0x00, 0x7e, + 0x1b, 0xfc, 0x28, 0x01, 0x4d, 0xba, 0x51, 0xf6, 0x55, 0xc7, 0x53, 0xf9, + 0xd1, 0xfd, 0x91, 0xaf, 0xff, 0x00, 0xd0, 0x26, 0xf3, 0xfe, 0xfc, 0x37, + 0xf8, 0x52, 0x8d, 0x27, 0x5e, 0xff, 0x00, 0xa0, 0x45, 0xe7, 0xfd, 0xf8, + 0x7f, 0xf0, 0xa0, 0x06, 0x9b, 0x50, 0x3a, 0x31, 0xfc, 0xe8, 0x16, 0xec, + 0x3a, 0x48, 0x45, 0x3f, 0xfb, 0x2b, 0x5d, 0xef, 0xa3, 0xde, 0x7f, 0xdf, + 0x87, 0xff, 0x00, 0x0a, 0x06, 0x97, 0xae, 0x7f, 0xd0, 0x1e, 0xf3, 0xfe, + 0xfc, 0x3f, 0xf8, 0x50, 0x03, 0x7c, 0xb9, 0x57, 0xa4, 0x86, 0x9c, 0x1a, + 0x75, 0xfe, 0x31, 0xf9, 0x51, 0xfd, 0x97, 0xae, 0x7f, 0xd0, 0x1e, 0xf7, + 0xfe, 0xfc, 0x3f, 0xf8, 0x50, 0x34, 0xcd, 0x6f, 0xfe, 0x80, 0xf7, 0xbf, + 0xf7, 0xe1, 0xff, 0x00, 0xc2, 0x80, 0x1f, 0xe7, 0x4e, 0x3b, 0xa9, 0xa4, + 0x37, 0x17, 0x1e, 0x8b, 0xf9, 0x52, 0x7f, 0x66, 0xeb, 0x7f, 0xf4, 0x07, + 0xbd, 0xff, 0x00, 0xbf, 0x0f, 0xfe, 0x14, 0xbf, 0xd9, 0xda, 0xd7, 0xfd, + 0x01, 0xef, 0x7f, 0xef, 0xc3, 0xff, 0x00, 0x85, 0x00, 0x27, 0xda, 0x67, + 0xfe, 0xea, 0xd0, 0x2e, 0x65, 0x1d, 0x50, 0x7e, 0x74, 0xa3, 0x4e, 0xd6, + 0xbf, 0xe8, 0x0f, 0x7d, 0xff, 0x00, 0x7e, 0x1f, 0xfc, 0x29, 0x7f, 0xb3, + 0xb5, 0x9f, 0xfa, 0x03, 0x5f, 0x7f, 0xdf, 0x87, 0xff, 0x00, 0x0a, 0x00, + 0x43, 0x77, 0x27, 0xfc, 0xf2, 0x1f, 0x9d, 0x27, 0xda, 0xa4, 0xff, 0x00, + 0x9e, 0x43, 0xf3, 0xa7, 0x7f, 0x67, 0x6b, 0x3f, 0xf4, 0x07, 0xbe, 0xff, + 0x00, 0xc0, 0x77, 0xff, 0x00, 0x0a, 0x3f, 0xb3, 0xb5, 0x9f, 0xfa, 0x03, + 0xdf, 0x7f, 0xe0, 0x3b, 0x7f, 0x85, 0x00, 0x37, 0xed, 0x6f, 0xff, 0x00, + 0x3c, 0xbf, 0x5a, 0x05, 0xd3, 0x0e, 0x7c, 0x9f, 0xd6, 0x9d, 0xfd, 0x9b, + 0xac, 0x7f, 0xd0, 0x1e, 0xfb, 0xff, 0x00, 0x01, 0xdf, 0xfc, 0x29, 0x7f, + 0xb3, 0xb5, 0x8f, 0xfa, 0x03, 0xdf, 0x7f, 0xe0, 0x3b, 0xff, 0x00, 0x85, + 0x00, 0x37, 0xed, 0x67, 0xfe, 0x79, 0x1f, 0xce, 0x81, 0x77, 0xff, 0x00, + 0x4c, 0x8f, 0xe7, 0x4e, 0xfe, 0xcf, 0xd6, 0x3f, 0xe8, 0x0d, 0x7d, 0xff, + 0x00, 0x80, 0xef, 0xfe, 0x14, 0x7f, 0x66, 0xeb, 0x1f, 0xf4, 0x05, 0xbf, + 0xff, 0x00, 0xc0, 0x77, 0xff, 0x00, 0x0a, 0x00, 0x4f, 0xb6, 0x0f, 0xf9, + 0xe2, 0x7f, 0x3a, 0x3e, 0xdb, 0x8f, 0xf9, 0x64, 0x68, 0xfe, 0xcd, 0xd6, + 0x3f, 0xe8, 0x0d, 0x7f, 0xff, 0x00, 0x80, 0xef, 0xfe, 0x14, 0x7f, 0x66, + 0x6b, 0x3f, 0xf4, 0x07, 0xbf, 0xff, 0x00, 0xc0, 0x77, 0xff, 0x00, 0x0a, + 0x00, 0x3e, 0xdb, 0xff, 0x00, 0x4c, 0x8d, 0x2f, 0xdb, 0x38, 0xff, 0x00, + 0x53, 0x47, 0xf6, 0x66, 0xb3, 0xff, 0x00, 0x40, 0x6b, 0xff, 0x00, 0xfc, + 0x07, 0x7f, 0xf0, 0xa3, 0xfb, 0x33, 0x59, 0x3f, 0xf3, 0x06, 0xbf, 0xff, + 0x00, 0xc0, 0x77, 0xff, 0x00, 0x0a, 0x00, 0x4f, 0xb6, 0x1f, 0xf9, 0xe5, + 0x4c, 0x37, 0x44, 0xe7, 0xf7, 0x5f, 0xad, 0x3f, 0xfb, 0x33, 0x5a, 0xff, + 0x00, 0xa0, 0x35, 0xff, 0x00, 0xfe, 0x03, 0xbf, 0xf8, 0x51, 0xfd, 0x99, + 0xad, 0x7f, 0xd0, 0x1a, 0xff, 0x00, 0xff, 0x00, 0x01, 0xdf, 0xfc, 0x28, + 0x02, 0x23, 0x31, 0x3f, 0xf2, 0xcf, 0x1f, 0x8d, 0x30, 0x92, 0x7f, 0xe5, + 0x99, 0xfc, 0xea, 0xc7, 0xf6, 0x66, 0xb5, 0xff, 0x00, 0x40, 0x6b, 0xef, + 0xfc, 0x07, 0x7f, 0xf0, 0xa3, 0xfb, 0x37, 0x5a, 0xff, 0x00, 0xa0, 0x35, + 0xf7, 0xfe, 0x03, 0xbf, 0xf8, 0x50, 0x05, 0x43, 0x11, 0x6f, 0xe1, 0x3f, + 0x9d, 0x46, 0xd6, 0xcc, 0x7b, 0x1f, 0xce, 0xaf, 0xff, 0x00, 0x66, 0x6b, + 0x5f, 0xf4, 0x06, 0xbe, 0xff, 0x00, 0xc0, 0x77, 0xff, 0x00, 0x0a, 0x43, + 0xa6, 0xeb, 0x5f, 0xf4, 0x06, 0xbe, 0xff, 0x00, 0xc0, 0x77, 0xff, 0x00, + 0x0a, 0x00, 0xce, 0x36, 0x8d, 0xfd, 0xd3, 0xf9, 0xd2, 0x1b, 0x26, 0x3d, + 0x8f, 0xe7, 0x5a, 0x5f, 0xd9, 0x9a, 0xd7, 0xfd, 0x01, 0xef, 0xbf, 0xf0, + 0x1d, 0xff, 0x00, 0xc2, 0x93, 0xfb, 0x37, 0x5a, 0xff, 0x00, 0xa0, 0x3d, + 0xf7, 0xfe, 0x03, 0xbf, 0xf8, 0x50, 0x06, 0x6f, 0xf6, 0x7b, 0x1f, 0x5f, + 0xce, 0x8f, 0xec, 0xd7, 0xf4, 0x3f, 0x9d, 0x69, 0x7f, 0x66, 0xeb, 0x7f, + 0xf4, 0x06, 0xbd, 0xff, 0x00, 0xbf, 0x0f, 0xfe, 0x14, 0x7f, 0x66, 0xeb, + 0x9f, 0xf4, 0x06, 0xbd, 0xff, 0x00, 0xbf, 0x0f, 0xfe, 0x14, 0x01, 0x9c, + 0x34, 0xe7, 0xf5, 0x23, 0xf1, 0xa5, 0x16, 0x32, 0x0f, 0xe3, 0x3f, 0x9d, + 0x5f, 0xfe, 0xcc, 0xd7, 0x7f, 0xe8, 0x0f, 0x7b, 0xff, 0x00, 0x7e, 0x1f, + 0xfc, 0x29, 0xbf, 0xd9, 0x7a, 0xef, 0xfd, 0x01, 0xef, 0x7f, 0xf0, 0x1d, + 0xff, 0x00, 0xc2, 0x80, 0x2b, 0x2d, 0xac, 0xcb, 0xff, 0x00, 0x2d, 0x58, + 0x7e, 0x35, 0x20, 0x86, 0x61, 0xff, 0x00, 0x2d, 0x4d, 0x4b, 0xfd, 0x95, + 0xaf, 0x7f, 0xd0, 0x1e, 0xf3, 0xff, 0x00, 0x01, 0xdf, 0xfc, 0x29, 0x3f, + 0xb2, 0x75, 0xff, 0x00, 0xfa, 0x04, 0x5e, 0x7f, 0xe0, 0x3b, 0xff, 0x00, + 0x85, 0x00, 0x20, 0x59, 0x47, 0x59, 0x29, 0xe3, 0x70, 0xea, 0xdf, 0xa5, + 0x34, 0xe8, 0xfa, 0xf9, 0xff, 0x00, 0x98, 0x45, 0xe7, 0xfe, 0x03, 0xbf, + 0xf8, 0x52, 0x7f, 0x62, 0x78, 0x80, 0xff, 0x00, 0xcc, 0x26, 0xf3, 0xfe, + 0xfc, 0x3f, 0xf8, 0x50, 0x04, 0x81, 0x80, 0xea, 0x69, 0x09, 0x53, 0xde, + 0xa2, 0x3a, 0x0f, 0x88, 0x3f, 0xe8, 0x15, 0x79, 0xff, 0x00, 0x7e, 0x1b, + 0xfc, 0x28, 0xff, 0x00, 0x84, 0x7f, 0xc4, 0x3f, 0xf4, 0x0a, 0xbc, 0xff, + 0x00, 0xbf, 0x0d, 0xfe, 0x14, 0x00, 0xae, 0x88, 0xdd, 0x49, 0xa8, 0x5e, + 0xd2, 0x16, 0xea, 0x4f, 0xe7, 0x52, 0x1f, 0x0e, 0x78, 0x80, 0xff, 0x00, + 0xcc, 0x32, 0xf3, 0xfe, 0xfc, 0x37, 0xf8, 0x53, 0x7f, 0xe1, 0x18, 0xd7, + 0xcf, 0x5d, 0x32, 0xf3, 0xfe, 0xfc, 0x3f, 0xf8, 0x50, 0x04, 0x0d, 0xa6, + 0xdb, 0x9e, 0xe7, 0xf3, 0xa8, 0xdb, 0x4e, 0xb7, 0x1f, 0xc6, 0x45, 0x5a, + 0x3e, 0x14, 0xd7, 0x8f, 0xfc, 0xc3, 0x6f, 0x3f, 0xef, 0xc3, 0x7f, 0x85, + 0x27, 0xfc, 0x21, 0xfa, 0xe1, 0xff, 0x00, 0x98, 0x75, 0xe7, 0xfd, 0xf8, + 0x6f, 0xf0, 0xa0, 0x0c, 0xf6, 0xb1, 0xb7, 0x1f, 0xf2, 0xd0, 0xd4, 0x4d, + 0x6f, 0x00, 0xe8, 0xe6, 0xb5, 0x7f, 0xe1, 0x0c, 0xd6, 0x8f, 0xfc, 0xc3, + 0xae, 0xff, 0x00, 0xef, 0xc3, 0x7f, 0x85, 0x38, 0x78, 0x27, 0x58, 0x3f, + 0xf3, 0x0e, 0xbb, 0xff, 0x00, 0xbf, 0x0d, 0xfe, 0x14, 0x01, 0x86, 0xc9, + 0x18, 0xe8, 0xc4, 0xd3, 0x72, 0x07, 0x4a, 0xe8, 0x17, 0xc1, 0x1a, 0xb7, + 0x7d, 0x3e, 0xef, 0xfe, 0xfc, 0x37, 0xf8, 0x54, 0x8b, 0xe0, 0x9d, 0x4c, + 0x75, 0xd3, 0xae, 0xbf, 0xef, 0xc3, 0x7f, 0x85, 0x00, 0x73, 0xc8, 0xed, + 0xd8, 0x55, 0xb8, 0x59, 0xfd, 0x2b, 0x76, 0x3f, 0x06, 0xea, 0x23, 0xfe, + 0x61, 0xd7, 0x5f, 0xf7, 0xe1, 0xbf, 0xc2, 0xac, 0x47, 0xe1, 0x4d, 0x45, + 0x7f, 0xe6, 0x1d, 0x77, 0xff, 0x00, 0x7e, 0x1b, 0xfc, 0x28, 0x03, 0x36, + 0xd8, 0x31, 0xc6, 0x6b, 0x56, 0x26, 0xc2, 0x60, 0xd4, 0xd1, 0xf8, 0x77, + 0x51, 0x4f, 0xf9, 0x87, 0xdd, 0xff, 0x00, 0xdf, 0x86, 0xff, 0x00, 0x0a, + 0x98, 0x68, 0x7a, 0x88, 0x1f, 0xf2, 0x0f, 0xbb, 0xff, 0x00, 0xbf, 0x0d, + 0xfe, 0x14, 0x01, 0x95, 0x71, 0x1e, 0xf0, 0x6b, 0x1e, 0xe2, 0xd5, 0x91, + 0xb2, 0x2b, 0xab, 0x6d, 0x0b, 0x52, 0x6f, 0xf9, 0x87, 0xdd, 0x7f, 0xdf, + 0x86, 0xff, 0x00, 0x0a, 0x8d, 0xfc, 0x39, 0xa9, 0x1f, 0xf9, 0x87, 0xdd, + 0x7f, 0xdf, 0x86, 0xff, 0x00, 0x0a, 0x00, 0xe4, 0x84, 0xae, 0x9c, 0x1a, + 0x90, 0x4e, 0x0f, 0x5a, 0xe8, 0x9f, 0xc2, 0x7a, 0x8b, 0xff, 0x00, 0xcc, + 0x3a, 0xeb, 0xfe, 0xfc, 0x37, 0xf8, 0x54, 0x0d, 0xe0, 0xcd, 0x45, 0xbf, + 0xe6, 0x1f, 0x77, 0xff, 0x00, 0x7e, 0x1b, 0xfc, 0x28, 0x03, 0x1b, 0xe4, + 0x7f, 0x4a, 0x61, 0x88, 0x1e, 0xe2, 0xb6, 0x1b, 0xc1, 0x7a, 0xa7, 0x6b, + 0x1b, 0xbf, 0xfb, 0xf0, 0xdf, 0xe1, 0x4d, 0x3e, 0x0c, 0xd5, 0xc7, 0x4b, + 0x0b, 0xaf, 0xfb, 0xf0, 0xdf, 0xe1, 0x40, 0x18, 0xe6, 0x13, 0xed, 0x4d, + 0x31, 0x91, 0x5b, 0x3f, 0xf0, 0x88, 0x6b, 0x43, 0xa6, 0x9f, 0x75, 0xff, + 0x00, 0x7e, 0x1b, 0xfc, 0x28, 0xff, 0x00, 0x84, 0x4f, 0x5b, 0x1f, 0xf3, + 0x0e, 0xba, 0xff, 0x00, 0xbf, 0x2d, 0xfe, 0x14, 0x01, 0x8a, 0x45, 0x26, + 0x2b, 0x6f, 0xfe, 0x11, 0x4d, 0x6c, 0x7f, 0xcc, 0x32, 0xeb, 0xfe, 0xfc, + 0x37, 0xf8, 0x52, 0x7f, 0xc2, 0x2b, 0xad, 0x7f, 0xd0, 0x2a, 0xe8, 0xff, + 0x00, 0xdb, 0x06, 0xff, 0x00, 0x0a, 0x00, 0xc4, 0xdb, 0x46, 0x39, 0xad, + 0xbf, 0xf8, 0x45, 0x75, 0x8f, 0xfa, 0x04, 0xdd, 0xff, 0x00, 0xdf, 0x86, + 0xff, 0x00, 0x0a, 0x4f, 0xf8, 0x45, 0x75, 0x8f, 0xfa, 0x04, 0x5e, 0x7f, + 0xdf, 0x86, 0xff, 0x00, 0x0a, 0x00, 0xc7, 0x59, 0x1d, 0x7a, 0x3b, 0x0f, + 0xc6, 0xa5, 0x4b, 0xeb, 0x84, 0xe9, 0x2b, 0x0f, 0xc6, 0xb4, 0xff, 0x00, + 0xe1, 0x14, 0xd6, 0x3f, 0xe8, 0x11, 0x79, 0xff, 0x00, 0x7e, 0x1b, 0xfc, + 0x29, 0x3f, 0xe1, 0x15, 0xd5, 0xf1, 0xff, 0x00, 0x20, 0x8b, 0xdf, 0xfb, + 0xf0, 0xdf, 0xe1, 0x40, 0x14, 0xd3, 0x57, 0xbb, 0x4f, 0xf9, 0x6b, 0x9f, + 0xad, 0x49, 0xfd, 0xb7, 0x73, 0xdf, 0x61, 0xfa, 0x8a, 0xb1, 0xff, 0x00, + 0x08, 0xae, 0xaf, 0xff, 0x00, 0x40, 0x8b, 0xdf, 0xfb, 0xf0, 0xdf, 0xe1, + 0x47, 0xfc, 0x22, 0x9a, 0xb7, 0xfd, 0x02, 0x6f, 0xbf, 0xef, 0xc3, 0x7f, + 0x85, 0x00, 0x40, 0x35, 0xa7, 0x3f, 0x7a, 0x18, 0x9b, 0xf0, 0xa0, 0xea, + 0x91, 0x3f, 0xdf, 0xb2, 0x88, 0xfd, 0x2a, 0x7f, 0xf8, 0x45, 0x75, 0x6f, + 0xfa, 0x05, 0x5f, 0x7f, 0xe0, 0x3b, 0x7f, 0x85, 0x1f, 0xf0, 0x8a, 0x6a, + 0xdf, 0xf4, 0x0b, 0xbe, 0xff, 0x00, 0xc0, 0x76, 0xff, 0x00, 0x0a, 0x00, + 0xac, 0x6f, 0x2c, 0x9b, 0xef, 0x58, 0xaf, 0xe0, 0x69, 0x0c, 0xba, 0x6b, + 0xff, 0x00, 0xcb, 0x9b, 0x8f, 0xa3, 0x55, 0xaf, 0xf8, 0x45, 0x35, 0x5f, + 0xfa, 0x05, 0xdf, 0x7f, 0xe0, 0x3b, 0x7f, 0x85, 0x2f, 0xfc, 0x22, 0x9a, + 0xaf, 0xfd, 0x02, 0xef, 0xbf, 0xf0, 0x1d, 0xbf, 0xc2, 0x80, 0x29, 0x63, + 0x4b, 0x6f, 0xf9, 0x61, 0x2a, 0xfd, 0x1a, 0x90, 0xc1, 0xa5, 0x9e, 0xd3, + 0x0a, 0xbd, 0xff, 0x00, 0x08, 0xa6, 0xa9, 0xff, 0x00, 0x40, 0xcb, 0xef, + 0xfc, 0x07, 0x6f, 0xf0, 0xa5, 0xff, 0x00, 0x84, 0x53, 0x54, 0xff, 0x00, + 0xa0, 0x65, 0xf7, 0xfe, 0x03, 0xbf, 0xf8, 0x50, 0x06, 0x7f, 0xd9, 0x34, + 0xcf, 0xf9, 0xe9, 0x30, 0xfc, 0x28, 0xfb, 0x26, 0x9d, 0xda, 0xe6, 0x51, + 0xff, 0x00, 0x01, 0xad, 0x11, 0xe1, 0x6d, 0x4c, 0x7f, 0xcc, 0x2e, 0xf8, + 0xff, 0x00, 0xdb, 0xbb, 0xff, 0x00, 0x85, 0x3c, 0x78, 0x63, 0x51, 0x1f, + 0xf3, 0x09, 0xbe, 0xff, 0x00, 0xc0, 0x67, 0xff, 0x00, 0x0a, 0x00, 0xcc, + 0x16, 0x96, 0x5f, 0xc3, 0x7d, 0x28, 0xff, 0x00, 0x80, 0xd3, 0xd6, 0xde, + 0x01, 0xf7, 0x75, 0x19, 0x07, 0xfc, 0x04, 0xd6, 0x90, 0xf0, 0xe6, 0xa4, + 0x3f, 0xe6, 0x11, 0x7b, 0xff, 0x00, 0x80, 0xcf, 0xfe, 0x14, 0xef, 0xf8, + 0x47, 0xb5, 0x31, 0xd3, 0x49, 0xbd, 0x1f, 0xf6, 0xec, 0xff, 0x00, 0xe1, + 0x40, 0x19, 0xc2, 0x34, 0x1d, 0x35, 0x27, 0xff, 0x00, 0xbe, 0x4d, 0x48, + 0x09, 0x1d, 0x35, 0x36, 0xff, 0x00, 0xbe, 0x4d, 0x5c, 0x3e, 0x1f, 0xd5, + 0x7b, 0x69, 0x77, 0xa3, 0xfe, 0xdd, 0x5b, 0xfc, 0x29, 0xad, 0xe1, 0xcd, + 0x58, 0xff, 0x00, 0xcc, 0x36, 0xf8, 0x7f, 0xdb, 0xab, 0x7f, 0x85, 0x00, + 0x57, 0xf3, 0x64, 0x5e, 0x9a, 0xa1, 0xff, 0x00, 0xbe, 0x4d, 0x2f, 0x9f, + 0x2f, 0xfd, 0x05, 0x06, 0x3f, 0xdd, 0x35, 0x23, 0x78, 0x67, 0x58, 0x3f, + 0xf3, 0x0f, 0xbe, 0xff, 0x00, 0xc0, 0x66, 0xff, 0x00, 0x0a, 0x8c, 0xf8, + 0x5b, 0x58, 0x3f, 0xf2, 0xe1, 0x7d, 0xff, 0x00, 0x80, 0xcf, 0xfe, 0x14, + 0x00, 0xe1, 0x75, 0x30, 0xff, 0x00, 0x98, 0xa0, 0xc7, 0xfb, 0xa6, 0x94, + 0x5d, 0x4d, 0xb8, 0x7f, 0xc4, 0xcd, 0x7f, 0xef, 0x93, 0x50, 0x9f, 0x09, + 0xeb, 0x07, 0xfe, 0x5c, 0x2f, 0xbf, 0xf0, 0x19, 0xff, 0x00, 0xc2, 0x90, + 0x78, 0x47, 0x57, 0x0c, 0x0f, 0xf6, 0x7d, 0xf7, 0xfe, 0x03, 0xbf, 0xf8, + 0x50, 0x07, 0xff, 0xd9 +}; +unsigned int neutral_jpg_len = 48268; diff --git a/assets/hdr/08_papermill.h b/assets/hdr/08_papermill.h new file mode 100644 index 0000000..8a55591 --- /dev/null +++ b/assets/hdr/08_papermill.h @@ -0,0 +1,7483 @@ +unsigned char papermill_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x4b, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x31, 0x32, + 0x3a, 0x34, 0x34, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x34, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, + 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, + 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, + 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, + 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, + 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, + 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xf5, 0xad, 0xa3, 0x1d, 0x29, 0x76, 0x8f, 0x41, 0x4b, 0x8e, + 0x28, 0xc5, 0x7a, 0x27, 0x38, 0xdd, 0xa3, 0xd0, 0x51, 0xb4, 0x7a, 0x0a, + 0x75, 0x2d, 0x17, 0x01, 0x9b, 0x47, 0xa0, 0xa3, 0x68, 0xf4, 0x14, 0xea, + 0x28, 0xb8, 0x0d, 0xda, 0x3d, 0x05, 0x1b, 0x47, 0xa5, 0x3a, 0x8a, 0x2e, + 0x03, 0x70, 0x3d, 0x28, 0xda, 0x3d, 0x05, 0x3a, 0x8a, 0x77, 0x01, 0xb8, + 0x1e, 0x94, 0x60, 0x7a, 0x0a, 0x75, 0x25, 0x00, 0x26, 0xd1, 0xe9, 0x46, + 0x07, 0xa0, 0xa5, 0xa2, 0x80, 0x13, 0x68, 0xf4, 0x14, 0x60, 0x7a, 0x52, + 0xd2, 0x50, 0x01, 0xb4, 0x7a, 0x0a, 0x30, 0x3d, 0x05, 0x14, 0x50, 0x01, + 0x81, 0xe9, 0x46, 0x07, 0xa0, 0xa2, 0x8e, 0x68, 0x01, 0x30, 0x3d, 0x05, + 0x18, 0x1e, 0x94, 0xb8, 0xa5, 0xd8, 0x4d, 0x00, 0x37, 0x03, 0xd0, 0x51, + 0x81, 0xe8, 0x29, 0xfb, 0x0f, 0xa5, 0x26, 0x3d, 0xa8, 0xb8, 0x0d, 0xc0, + 0xf4, 0xa3, 0x03, 0xd0, 0x52, 0xe2, 0x8a, 0x04, 0x26, 0x07, 0xa0, 0xa3, + 0x03, 0xd2, 0x8c, 0xd1, 0x9a, 0x00, 0x30, 0x3d, 0x28, 0xc0, 0xf4, 0x14, + 0x66, 0x8a, 0x00, 0x30, 0x3d, 0x05, 0x1c, 0x7a, 0x51, 0x49, 0x9a, 0x60, + 0x2f, 0x1e, 0x82, 0x8e, 0x3d, 0x05, 0x26, 0x69, 0x73, 0x40, 0x07, 0x1e, + 0x82, 0x8c, 0x0f, 0x41, 0x49, 0x9a, 0x33, 0x40, 0x0b, 0x81, 0xe8, 0x28, + 0xc0, 0xf4, 0x14, 0x99, 0xa3, 0x34, 0x00, 0xb8, 0x1e, 0x94, 0x60, 0x7a, + 0x0a, 0x4c, 0xd1, 0x40, 0x07, 0x1e, 0x94, 0x71, 0xe8, 0x29, 0x33, 0x4b, + 0x9a, 0x00, 0x38, 0xf4, 0x14, 0xbc, 0x7a, 0x52, 0x66, 0x8c, 0xd0, 0x02, + 0xf1, 0xe9, 0x49, 0xc7, 0xa0, 0xa3, 0x34, 0x66, 0x80, 0x0e, 0x3d, 0x05, + 0x1c, 0x7a, 0x51, 0x9a, 0x33, 0x40, 0x07, 0x1e, 0x94, 0x71, 0xe8, 0x28, + 0xcd, 0x26, 0x68, 0x01, 0x78, 0xf4, 0x14, 0xbc, 0x7a, 0x0a, 0x6d, 0x14, + 0x00, 0xbc, 0x7a, 0x0a, 0x5e, 0x3d, 0x05, 0x25, 0x14, 0x00, 0xb8, 0x1e, + 0x94, 0x71, 0xe8, 0x29, 0x33, 0x45, 0x00, 0x2e, 0x07, 0xa0, 0xa3, 0x03, + 0xd0, 0x52, 0x51, 0x9a, 0x00, 0x5c, 0x0f, 0x4a, 0x30, 0x3d, 0x05, 0x26, + 0x68, 0xcd, 0x00, 0x2e, 0x07, 0xa0, 0xa3, 0x03, 0xd0, 0x52, 0x51, 0x40, + 0x0b, 0x81, 0xe8, 0x28, 0xe3, 0xd0, 0x52, 0x51, 0x9a, 0x00, 0x5e, 0x3d, + 0x05, 0x18, 0x1e, 0x82, 0x93, 0x34, 0x66, 0x80, 0x1d, 0x81, 0xe8, 0x28, + 0xc0, 0xf4, 0xa6, 0xd1, 0x9a, 0x40, 0x3b, 0x03, 0xd2, 0x8e, 0x3d, 0x29, + 0x28, 0xa0, 0x03, 0x03, 0xd2, 0x97, 0x03, 0xd2, 0x92, 0x8a, 0x00, 0x5c, + 0x0f, 0x41, 0x46, 0x07, 0xa0, 0xa4, 0xa5, 0xa0, 0x03, 0x03, 0xd0, 0x51, + 0x81, 0xe8, 0x28, 0xa2, 0x81, 0x86, 0x07, 0xa0, 0xa3, 0x03, 0xd0, 0x52, + 0xd1, 0x40, 0x84, 0xc0, 0xf4, 0x14, 0x60, 0x7a, 0x0a, 0x5a, 0x28, 0x18, + 0x6d, 0x1e, 0x82, 0x93, 0x68, 0xf4, 0x14, 0xea, 0x29, 0x5c, 0x06, 0xed, + 0x1e, 0x82, 0x8d, 0xa3, 0xd0, 0x53, 0xa8, 0xa0, 0x04, 0xda, 0x3d, 0x05, + 0x1b, 0x47, 0xa0, 0xa5, 0xa2, 0x80, 0x13, 0x68, 0xf4, 0x14, 0x6d, 0x1e, + 0x82, 0x96, 0x8c, 0x51, 0x70, 0x13, 0x68, 0xf4, 0x14, 0x6d, 0x1e, 0x82, + 0x9d, 0x8a, 0x31, 0x45, 0xc0, 0x6e, 0xd1, 0xe8, 0x28, 0xda, 0x3d, 0x05, + 0x3b, 0x14, 0x62, 0x80, 0x1b, 0xb4, 0x7a, 0x0a, 0x36, 0x8f, 0x41, 0x4e, + 0xc5, 0x18, 0xa0, 0x06, 0xed, 0x1e, 0x82, 0x8d, 0xa3, 0xd2, 0x9d, 0x8a, + 0x31, 0x45, 0xc0, 0x6e, 0xd1, 0xe8, 0x28, 0xda, 0x3d, 0x05, 0x3b, 0x14, + 0x62, 0x8b, 0x80, 0xdd, 0xa3, 0xd0, 0x51, 0xb4, 0x7a, 0x0a, 0x76, 0x28, + 0xc5, 0x17, 0x01, 0xbb, 0x47, 0xa0, 0xa3, 0x68, 0xf4, 0x14, 0xec, 0x51, + 0x8a, 0x2e, 0x03, 0x76, 0x8f, 0x41, 0x46, 0xd1, 0xe8, 0x29, 0xf8, 0xa4, + 0xa2, 0xe0, 0x37, 0x68, 0xf4, 0xa3, 0x68, 0xf4, 0x14, 0xec, 0x52, 0xe2, + 0x8b, 0x80, 0xcd, 0xa3, 0xd0, 0x51, 0xb4, 0x7a, 0x0a, 0x76, 0x28, 0xc5, + 0x17, 0x01, 0xbb, 0x47, 0xa0, 0xa3, 0x68, 0xf4, 0x14, 0xea, 0x5c, 0x51, + 0x70, 0x19, 0xb4, 0x7a, 0x0a, 0x36, 0x8f, 0x4a, 0x75, 0x2d, 0x17, 0x01, + 0x9b, 0x47, 0xa0, 0xa3, 0x68, 0xf4, 0x14, 0xfa, 0x4a, 0x2e, 0x03, 0x76, + 0x8f, 0x41, 0x46, 0xd1, 0xe8, 0x29, 0xd4, 0x51, 0x70, 0x1b, 0xb4, 0x7a, + 0x51, 0xb4, 0x7a, 0x53, 0xa8, 0xc5, 0x17, 0x01, 0xbb, 0x47, 0xa5, 0x1b, + 0x47, 0xa5, 0x3b, 0x14, 0x62, 0x8b, 0x80, 0xdd, 0xa3, 0xd2, 0x93, 0x68, + 0xf4, 0x14, 0xfc, 0x51, 0x45, 0xc0, 0x6e, 0xd1, 0xe8, 0x29, 0x30, 0x3d, + 0x05, 0x3f, 0x14, 0x62, 0x8b, 0x80, 0xcd, 0xa3, 0xd0, 0x52, 0xed, 0x1e, + 0x82, 0x9d, 0x8a, 0x28, 0xb8, 0x0c, 0xda, 0x3d, 0x05, 0x05, 0x46, 0x3a, + 0x53, 0xa8, 0x23, 0x8a, 0x2e, 0x02, 0xf6, 0xa2, 0x9d, 0x8e, 0x28, 0xa5, + 0x70, 0x1b, 0x45, 0x3a, 0x92, 0x80, 0x12, 0x8c, 0x51, 0x45, 0x30, 0x12, + 0x8a, 0x5a, 0x4a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x29, 0x28, 0xa2, 0x80, + 0x0a, 0x29, 0x28, 0xa6, 0x01, 0x45, 0x14, 0x50, 0x20, 0xa2, 0x92, 0x8a, + 0x00, 0x5c, 0xd2, 0x87, 0x22, 0x9b, 0x49, 0x45, 0x80, 0x93, 0xcc, 0xcd, + 0x26, 0xef, 0x43, 0x4c, 0xa2, 0x8b, 0x05, 0xc7, 0xf9, 0x87, 0xd6, 0x82, + 0xe6, 0x99, 0x9a, 0x4c, 0xd1, 0x60, 0xb8, 0xec, 0xd2, 0x66, 0x93, 0x34, + 0x99, 0xa7, 0x60, 0x1d, 0x49, 0x49, 0x9a, 0x33, 0x4c, 0x05, 0xcd, 0x26, + 0x69, 0x33, 0x45, 0x02, 0x1d, 0x9a, 0x4c, 0xd3, 0x73, 0x45, 0x16, 0x01, + 0xd9, 0xa3, 0x34, 0xdc, 0xd1, 0x45, 0x80, 0x76, 0x68, 0xcd, 0x36, 0x8c, + 0xd3, 0xb0, 0x0e, 0xcd, 0x19, 0xa6, 0xe6, 0x93, 0x34, 0x58, 0x07, 0xe6, + 0x8c, 0xd3, 0x73, 0x49, 0x9a, 0x2c, 0x03, 0xb3, 0x4b, 0x9a, 0x6e, 0x68, + 0xcd, 0x16, 0x01, 0xd9, 0xa4, 0xcd, 0x26, 0x69, 0x33, 0x45, 0x80, 0x7e, + 0x68, 0xcd, 0x33, 0x34, 0xb9, 0xa2, 0xc0, 0x2e, 0x69, 0x73, 0x4d, 0xcd, + 0x19, 0xa0, 0x07, 0x66, 0x8c, 0xd3, 0x73, 0x46, 0x69, 0x58, 0x07, 0x66, + 0x8c, 0xd3, 0x73, 0x4b, 0x40, 0x0b, 0x9a, 0x33, 0x49, 0x45, 0x00, 0x2e, + 0x68, 0xcd, 0x25, 0x14, 0x00, 0xb9, 0xa3, 0x34, 0x94, 0x66, 0x81, 0x8b, + 0x4b, 0x49, 0x45, 0x02, 0x0a, 0x5a, 0x4a, 0x28, 0x18, 0xb4, 0x94, 0x51, + 0x9a, 0x00, 0x5a, 0x29, 0x33, 0x46, 0x68, 0x01, 0xd4, 0x52, 0x51, 0x48, + 0x05, 0xa2, 0x8a, 0x28, 0x01, 0x68, 0xa4, 0xa2, 0x80, 0x16, 0x96, 0x92, + 0x8a, 0x40, 0x2d, 0x14, 0x51, 0x40, 0x0b, 0x45, 0x25, 0x2d, 0x03, 0x16, + 0x8a, 0x4a, 0x5a, 0x40, 0x14, 0x51, 0x45, 0x00, 0x14, 0xb4, 0x51, 0x40, + 0x05, 0x18, 0xa3, 0x23, 0xd6, 0xa2, 0x92, 0xea, 0x08, 0x98, 0xab, 0xca, + 0x81, 0x87, 0x62, 0x79, 0xa4, 0xda, 0x5a, 0xb1, 0xa4, 0xde, 0xc4, 0xb4, + 0x55, 0x43, 0xa9, 0xda, 0x86, 0x2b, 0xe6, 0xa9, 0xc7, 0xa5, 0x5c, 0x46, + 0x49, 0x10, 0x32, 0x48, 0xac, 0x3d, 0x8d, 0x66, 0xab, 0x53, 0x6e, 0xc9, + 0x96, 0xe9, 0x4d, 0x2b, 0xb4, 0x25, 0x2d, 0x2e, 0x28, 0xc5, 0x68, 0x66, + 0x25, 0x14, 0xb8, 0xa2, 0x80, 0x12, 0x8a, 0x5a, 0x31, 0x40, 0x09, 0x45, + 0x3b, 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x5c, 0x52, 0xe2, 0x97, 0x14, 0xae, + 0x31, 0xb4, 0x62, 0x9d, 0x8a, 0x31, 0x45, 0xc2, 0xc3, 0x71, 0x46, 0x29, + 0xd8, 0xa5, 0xc5, 0x17, 0x0b, 0x0c, 0xc5, 0x18, 0xa7, 0xed, 0xa3, 0x14, + 0x5c, 0x06, 0x62, 0x8c, 0x53, 0xf6, 0xd1, 0x8a, 0x2e, 0x16, 0x19, 0x8a, + 0x31, 0x4f, 0xc5, 0x18, 0xa2, 0xe1, 0x61, 0x98, 0xa3, 0x14, 0xec, 0x51, + 0x8a, 0x2e, 0x03, 0x71, 0x46, 0x29, 0xd8, 0xa3, 0x14, 0x5c, 0x06, 0xe2, + 0x8c, 0x53, 0xb1, 0x46, 0x28, 0xb8, 0x0d, 0xc5, 0x14, 0xec, 0x52, 0x62, + 0x8b, 0x80, 0x94, 0x98, 0xa7, 0x62, 0x8c, 0x53, 0x10, 0xda, 0x29, 0xd8, + 0xa4, 0xc5, 0x00, 0x25, 0x18, 0xa5, 0xc5, 0x18, 0xa0, 0x04, 0xa2, 0x97, + 0x14, 0x50, 0x02, 0x51, 0x4b, 0x46, 0x28, 0x01, 0x29, 0x0f, 0x4a, 0x5c, + 0x51, 0x8e, 0x28, 0x01, 0x68, 0xa5, 0xed, 0x49, 0x48, 0x61, 0x49, 0x4b, + 0x45, 0x31, 0x09, 0x49, 0x4b, 0x45, 0x00, 0x25, 0x14, 0x51, 0x4c, 0x04, + 0xa2, 0x8a, 0x28, 0x01, 0x28, 0xa2, 0x8a, 0x60, 0x14, 0x99, 0xa2, 0x8a, + 0x04, 0x19, 0xa4, 0xa2, 0x92, 0x80, 0x16, 0x92, 0x8a, 0x4a, 0x60, 0x2d, + 0x26, 0x69, 0xeb, 0x1b, 0x37, 0x20, 0x71, 0xea, 0x78, 0xa9, 0x96, 0x18, + 0xc0, 0xe7, 0x2c, 0x7d, 0xba, 0x56, 0x55, 0x2b, 0xd3, 0xa7, 0xf1, 0x33, + 0x48, 0x52, 0x9c, 0xf6, 0x45, 0x6c, 0xd2, 0x55, 0xd0, 0x91, 0xe7, 0xe5, + 0x8c, 0x7f, 0x3a, 0x56, 0x1d, 0xb6, 0xae, 0x7d, 0x94, 0x57, 0x3b, 0xc7, + 0xd3, 0x5b, 0x26, 0x6c, 0xb0, 0x92, 0xea, 0xca, 0x3c, 0x9e, 0xc6, 0x9c, + 0x23, 0x76, 0xe8, 0x8c, 0x7f, 0x0a, 0xbb, 0x89, 0x02, 0xf4, 0x38, 0xfa, + 0xd2, 0x10, 0xc7, 0xbd, 0x66, 0xf3, 0x0e, 0xd1, 0x2d, 0x61, 0x3b, 0xc8, + 0xa9, 0xe4, 0x4b, 0xff, 0x00, 0x3c, 0xdf, 0xfe, 0xf9, 0xa6, 0xb2, 0x3a, + 0x72, 0xc8, 0x57, 0xea, 0x2a, 0xe8, 0x8f, 0xd5, 0xab, 0x2f, 0x58, 0xd5, + 0x2d, 0x74, 0x88, 0x44, 0xb3, 0x89, 0x18, 0x7f, 0xb0, 0x33, 0x52, 0xf3, + 0x2b, 0x6a, 0xe3, 0xf8, 0x8d, 0x60, 0x93, 0xd1, 0x32, 0x4a, 0x2b, 0x9c, + 0x6f, 0x88, 0x36, 0x2c, 0x76, 0xc1, 0x67, 0x2c, 0xad, 0xe8, 0x23, 0x03, + 0x35, 0x2c, 0xbe, 0x28, 0xd4, 0x56, 0x38, 0x9d, 0x3c, 0x3f, 0x70, 0x44, + 0x8b, 0xb9, 0x4a, 0x90, 0x78, 0xfc, 0x07, 0x15, 0xa2, 0xcc, 0xa0, 0xf6, + 0x8b, 0x17, 0xd4, 0xa5, 0xd6, 0x48, 0xde, 0xe7, 0xd2, 0x8a, 0xc7, 0x8f, + 0x5e, 0xd5, 0xe5, 0xb2, 0x7b, 0x83, 0xa3, 0x5c, 0xa8, 0x56, 0x0b, 0xe5, + 0x96, 0x3b, 0x8f, 0xbe, 0x31, 0xd2, 0xa5, 0xd3, 0xf5, 0x2d, 0x56, 0xfe, + 0x7f, 0x2d, 0xb4, 0xe9, 0xad, 0x97, 0x19, 0x2f, 0x28, 0xe2, 0xa7, 0xfb, + 0x45, 0x7f, 0x23, 0x2b, 0xea, 0x3f, 0xdf, 0x46, 0x9f, 0x3e, 0x94, 0x60, + 0xfa, 0x1a, 0xb7, 0x1a, 0x48, 0x46, 0x1a, 0x46, 0xc8, 0xe0, 0xe0, 0xd4, + 0xa2, 0x13, 0x8e, 0x25, 0x7c, 0xfd, 0x6a, 0x96, 0x62, 0x9f, 0xd9, 0x25, + 0xe0, 0xed, 0xf6, 0x8c, 0xfc, 0x11, 0xd4, 0x1a, 0x4a, 0x9e, 0xf5, 0xe7, + 0x82, 0x07, 0x70, 0x4b, 0x90, 0x09, 0x03, 0x3d, 0x6b, 0x98, 0x3e, 0x24, + 0xd4, 0xc6, 0x73, 0xa1, 0xdc, 0xe4, 0x7f, 0xb0, 0x7f, 0xc2, 0xa7, 0xfb, + 0x49, 0x5e, 0xdc, 0x8c, 0x7f, 0x51, 0xd2, 0xfc, 0xc8, 0xe8, 0x28, 0xea, + 0x71, 0x58, 0x51, 0xf8, 0x96, 0xff, 0x00, 0xab, 0x68, 0xd7, 0x03, 0xea, + 0x87, 0xfc, 0x29, 0x3f, 0xe1, 0x31, 0x44, 0x70, 0x2e, 0x2c, 0x8c, 0x63, + 0xdd, 0x7f, 0xfa, 0xd4, 0xde, 0x67, 0x05, 0xf1, 0x45, 0xaf, 0x90, 0xbe, + 0xa3, 0x27, 0xb4, 0x91, 0xbc, 0xec, 0x23, 0x9d, 0x62, 0xf2, 0x9d, 0xd8, + 0x80, 0x72, 0x3a, 0x54, 0xea, 0x14, 0x8c, 0x79, 0x6b, 0x9f, 0x72, 0x6b, + 0x26, 0xcb, 0xc4, 0x96, 0xf7, 0xb2, 0xec, 0xb6, 0x8d, 0x99, 0xc7, 0x24, + 0x22, 0xe6, 0xb5, 0xb0, 0xec, 0x77, 0x14, 0xc3, 0x37, 0x38, 0x35, 0xc1, + 0x3c, 0x74, 0xe7, 0x26, 0xe9, 0xc9, 0xd8, 0xec, 0x8e, 0x1a, 0x11, 0x8a, + 0x52, 0x8a, 0xb8, 0xbe, 0x58, 0x23, 0x88, 0xd7, 0x3e, 0xc4, 0xd2, 0xac, + 0x58, 0xe4, 0xc0, 0xc7, 0xf1, 0xa7, 0x21, 0x65, 0x03, 0xe5, 0xa5, 0xf3, + 0x9d, 0x71, 0x85, 0x34, 0x2c, 0x55, 0x5b, 0x7c, 0x4c, 0x4e, 0x84, 0x3f, + 0x95, 0x0a, 0xb1, 0x21, 0x1c, 0xc2, 0x47, 0xfc, 0x0a, 0x91, 0xa1, 0x8c, + 0xff, 0x00, 0x0b, 0xaf, 0xeb, 0x4b, 0xf6, 0x86, 0x3f, 0xc2, 0xd9, 0xfa, + 0x52, 0x8b, 0x8f, 0xaf, 0xe2, 0x2a, 0xd6, 0x32, 0xaa, 0xfb, 0x44, 0x3c, + 0x3c, 0x1f, 0xd9, 0x2b, 0x98, 0x57, 0x3f, 0xeb, 0x31, 0xfe, 0xf0, 0xc5, + 0x34, 0xc0, 0xfd, 0xb0, 0xdf, 0x43, 0x57, 0x43, 0xab, 0x8e, 0x54, 0x1a, + 0x43, 0x1c, 0x4d, 0xd1, 0x70, 0x6b, 0x68, 0xe3, 0xea, 0xad, 0xec, 0xcc, + 0xde, 0x16, 0x9b, 0xee, 0x8a, 0x2d, 0x14, 0x8b, 0xf7, 0x91, 0x87, 0xd4, + 0x53, 0x2a, 0xe9, 0x85, 0xd3, 0x98, 0xe5, 0x3f, 0x4a, 0x8c, 0x6f, 0x6e, + 0x1a, 0x34, 0x6f, 0xc3, 0x15, 0xb4, 0x73, 0x28, 0xed, 0x38, 0x99, 0xbc, + 0x13, 0xfb, 0x32, 0x2b, 0x51, 0x53, 0x95, 0x8f, 0x3f, 0x32, 0x32, 0xfd, + 0x0e, 0x45, 0x37, 0xc9, 0x53, 0xf7, 0x24, 0x07, 0xd8, 0xf0, 0x6b, 0xa6, + 0x18, 0xca, 0x33, 0xda, 0x46, 0x32, 0xc3, 0x55, 0x8f, 0x42, 0x2a, 0x5c, + 0xd0, 0xf1, 0xba, 0x7d, 0xe5, 0x20, 0x7a, 0xd3, 0x73, 0x5d, 0x2a, 0xcf, + 0x63, 0x9d, 0xdd, 0x6e, 0x3a, 0x8c, 0xd3, 0x73, 0x4b, 0x9a, 0x60, 0x3b, + 0x34, 0xbc, 0x7a, 0xd3, 0x33, 0x4a, 0x0d, 0x2b, 0x00, 0xb4, 0x52, 0x66, + 0x97, 0x8a, 0x00, 0x5a, 0x29, 0xb4, 0x66, 0x80, 0x16, 0x8a, 0x4c, 0xd1, + 0x40, 0x0b, 0x4b, 0x49, 0x49, 0x40, 0x0e, 0xa2, 0x93, 0x34, 0x66, 0x80, + 0x16, 0x8a, 0x4a, 0x5a, 0x40, 0x2d, 0x14, 0x94, 0xb4, 0x0c, 0x5a, 0x29, + 0x29, 0x68, 0x01, 0x68, 0xa2, 0x8a, 0x40, 0x2d, 0x14, 0xc9, 0x25, 0x48, + 0x90, 0xbc, 0x8c, 0x15, 0x47, 0x52, 0x6b, 0x02, 0xeb, 0xc4, 0x37, 0x0f, + 0x33, 0x45, 0xa7, 0xda, 0x87, 0x51, 0xd6, 0x69, 0x0e, 0x14, 0x7e, 0x1d, + 0x6b, 0x2a, 0x95, 0xa1, 0x4d, 0x5e, 0x4c, 0xd2, 0x14, 0xa5, 0x3f, 0x85, + 0x1d, 0x10, 0xe7, 0xa5, 0x2e, 0xe8, 0xc3, 0x6d, 0x69, 0x55, 0x4e, 0x33, + 0xd6, 0xb8, 0xab, 0xaf, 0x13, 0xc5, 0x63, 0x6e, 0xc7, 0x51, 0xd4, 0x40, + 0x6f, 0xee, 0x28, 0x19, 0x3f, 0x80, 0xae, 0x7a, 0x4f, 0x17, 0x6a, 0x9a, + 0xa6, 0xe3, 0xa1, 0x69, 0x73, 0xcb, 0x8e, 0xb3, 0x15, 0x27, 0x15, 0xc1, + 0x3c, 0x74, 0xe5, 0xa5, 0x28, 0x9d, 0x91, 0xc2, 0x46, 0x3a, 0xd4, 0x67, + 0xab, 0xa9, 0x8d, 0x94, 0x9d, 0xe0, 0x1e, 0xd9, 0x3d, 0x6b, 0x3e, 0xff, + 0x00, 0x5d, 0xd2, 0x74, 0xc0, 0x7e, 0xd9, 0xa8, 0x5b, 0xc4, 0xc3, 0xf8, + 0x4b, 0x8d, 0xdf, 0x97, 0x5a, 0xf1, 0x6b, 0x8f, 0xf8, 0x4a, 0xf5, 0x29, + 0xca, 0xcb, 0x71, 0x3a, 0x92, 0x7e, 0xe0, 0xc8, 0x03, 0xf0, 0xa4, 0x5f, + 0x0b, 0x6a, 0x13, 0x66, 0x39, 0x30, 0x65, 0x53, 0xcb, 0x3b, 0x66, 0xa2, + 0x38, 0xe9, 0xc5, 0x5a, 0x5a, 0xb2, 0xde, 0x0e, 0x32, 0x7e, 0xe9, 0xe8, + 0x57, 0xbf, 0x14, 0x34, 0x68, 0x32, 0xb6, 0x91, 0xcf, 0x76, 0xdf, 0xec, + 0xae, 0xd1, 0xf9, 0x9a, 0xa1, 0x0f, 0xc5, 0x32, 0x59, 0x8c, 0xda, 0x4c, + 0x81, 0x33, 0xc6, 0xd7, 0x19, 0x02, 0xb8, 0x4b, 0x9d, 0x2e, 0xfb, 0x45, + 0x53, 0x25, 0xdf, 0x90, 0x21, 0x1f, 0xc7, 0x9a, 0xa1, 0xfd, 0xb3, 0x6e, + 0x65, 0xc6, 0xe5, 0x3f, 0x4e, 0x41, 0xac, 0xe5, 0x8f, 0xac, 0xf5, 0x8a, + 0x1f, 0xd5, 0x21, 0x1d, 0x24, 0x7b, 0x0c, 0x3f, 0x12, 0xb4, 0x39, 0x10, + 0x17, 0xf3, 0xd1, 0xfb, 0xa9, 0x8f, 0x38, 0xa9, 0x97, 0xc7, 0x9a, 0x64, + 0xe0, 0x8b, 0x77, 0x04, 0xf4, 0x1b, 0xdb, 0x1f, 0xa5, 0x79, 0x18, 0xba, + 0xb2, 0xb8, 0x1c, 0x28, 0x3f, 0x4a, 0x1a, 0x2b, 0x7c, 0x65, 0x49, 0x06, + 0xa2, 0x59, 0x85, 0x57, 0xa6, 0xc3, 0x8e, 0x16, 0x9a, 0xf3, 0x3d, 0x77, + 0xfe, 0x12, 0x2b, 0xb9, 0x07, 0xdc, 0x8d, 0x54, 0xf4, 0x75, 0xed, 0xfa, + 0xd4, 0x69, 0xab, 0x5f, 0xc9, 0x90, 0x6e, 0x33, 0xf4, 0x51, 0xfe, 0x15, + 0xe5, 0x56, 0xfa, 0x8d, 0xdd, 0x8c, 0x80, 0xc7, 0x31, 0x91, 0x07, 0xf0, + 0xb7, 0x23, 0xf2, 0x35, 0xd3, 0x69, 0x9e, 0x33, 0xb4, 0xc8, 0x8e, 0xea, + 0xdf, 0xcb, 0x63, 0xd5, 0x93, 0xa7, 0xe5, 0x59, 0xbc, 0x4d, 0x59, 0x7d, + 0xa3, 0xa6, 0x14, 0xa8, 0x75, 0x89, 0xd6, 0x9b, 0x8b, 0x97, 0x52, 0x1a, + 0x69, 0x73, 0x9c, 0xfd, 0xf3, 0x4b, 0x1a, 0xb6, 0x0b, 0x96, 0x20, 0x93, + 0xcb, 0x63, 0x34, 0xcb, 0x6b, 0xdb, 0x5b, 0xb8, 0xc3, 0xc1, 0x2a, 0x3a, + 0x9f, 0x43, 0x57, 0xed, 0x66, 0x81, 0xdb, 0xcb, 0xde, 0x01, 0x19, 0xce, + 0x7a, 0x54, 0x29, 0xc9, 0xbd, 0x4d, 0xa7, 0x08, 0x28, 0xe8, 0x5d, 0xd2, + 0xad, 0x90, 0xdc, 0x24, 0x85, 0xb7, 0xfc, 0xa7, 0xb6, 0x05, 0x5e, 0x9d, + 0x9e, 0x39, 0xd5, 0xd0, 0x03, 0xb7, 0xb5, 0x54, 0xb5, 0xb8, 0x81, 0x2e, + 0x91, 0x56, 0x54, 0x27, 0x1d, 0xaa, 0xe4, 0xce, 0xac, 0xdf, 0x78, 0x1f, + 0xa1, 0xa7, 0xcf, 0xd5, 0x6e, 0x62, 0xa0, 0xaf, 0xe4, 0x4b, 0x05, 0xec, + 0x57, 0x0d, 0xb3, 0xee, 0x49, 0x9c, 0x6d, 0x6e, 0xf5, 0x63, 0x6d, 0x60, + 0xea, 0x01, 0x36, 0x2b, 0x86, 0x55, 0x23, 0xbe, 0x6a, 0x4b, 0x3d, 0x66, + 0x28, 0xdb, 0xc9, 0xbc, 0x98, 0x06, 0x1d, 0x1f, 0x39, 0x1f, 0xfe, 0xaa, + 0xef, 0xc3, 0xe3, 0x2f, 0xee, 0xd4, 0x38, 0xb1, 0x18, 0x4e, 0x5f, 0x7a, + 0x06, 0xce, 0x28, 0xdb, 0x55, 0xbf, 0xb4, 0xec, 0x73, 0x8f, 0xb5, 0xc1, + 0xff, 0x00, 0x7f, 0x07, 0xf8, 0xd3, 0x0e, 0xaf, 0x60, 0x0f, 0x37, 0x31, + 0xf1, 0xe8, 0x73, 0x5d, 0xdc, 0xf1, 0xee, 0x71, 0xf2, 0x4b, 0xb1, 0x77, + 0x6d, 0x18, 0xaa, 0x1f, 0xdb, 0x56, 0x39, 0xc0, 0x9f, 0x3f, 0x45, 0x6f, + 0xf0, 0xa5, 0xfe, 0xd8, 0xb4, 0xc6, 0x43, 0x39, 0xff, 0x00, 0xb6, 0x6d, + 0xfe, 0x14, 0xbd, 0xac, 0x3b, 0xa1, 0xfb, 0x39, 0xf6, 0x2f, 0x62, 0x97, + 0x15, 0x9f, 0xfd, 0xb3, 0x6c, 0x46, 0x47, 0x98, 0x47, 0xb2, 0x1a, 0x67, + 0xf6, 0xf5, 0xae, 0xec, 0x15, 0x94, 0x7b, 0xec, 0x34, 0xbd, 0xac, 0x3b, + 0x87, 0xb3, 0x9f, 0x63, 0x4f, 0x14, 0xb8, 0xac, 0xd5, 0xd6, 0xed, 0x18, + 0x90, 0x3c, 0xc2, 0x7f, 0xdc, 0x34, 0xff, 0x00, 0xed, 0x8b, 0x61, 0xd5, + 0x66, 0x1f, 0xf6, 0xc9, 0xbf, 0xc2, 0x8f, 0x6b, 0x0e, 0xe1, 0xec, 0xe7, + 0xd8, 0xbf, 0x8a, 0x31, 0x59, 0xdf, 0xdb, 0xb6, 0x3d, 0xdd, 0xc7, 0xd6, + 0x36, 0xff, 0x00, 0x0a, 0x72, 0x6b, 0xba, 0x73, 0x9e, 0x2e, 0x07, 0xe2, + 0x08, 0xa3, 0xda, 0x47, 0xb8, 0x7b, 0x39, 0x76, 0x2f, 0xe2, 0x97, 0x15, + 0x54, 0x6a, 0x96, 0x04, 0x7f, 0xc7, 0xdc, 0x3f, 0xf7, 0xf0, 0x54, 0xb1, + 0xde, 0x5a, 0x4a, 0x71, 0x1d, 0xc4, 0x4e, 0x7d, 0x15, 0xc1, 0xa7, 0xcc, + 0x85, 0xca, 0xfb, 0x12, 0xe2, 0x8c, 0x53, 0x86, 0xd3, 0xd0, 0xd1, 0xc7, + 0xa8, 0xa7, 0x71, 0x58, 0x6e, 0x28, 0xc5, 0x3b, 0x14, 0x62, 0x8b, 0x88, + 0x66, 0x28, 0xc5, 0x3b, 0x14, 0x62, 0x9d, 0xc0, 0x6e, 0x28, 0xc5, 0x3b, + 0x14, 0x62, 0x8b, 0x80, 0xcc, 0x51, 0x8a, 0x7e, 0x29, 0x31, 0x45, 0xc0, + 0x6e, 0x28, 0xc5, 0x3b, 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, + 0x26, 0x28, 0x01, 0xb8, 0xa3, 0x14, 0xec, 0x51, 0x8a, 0x77, 0x01, 0xb8, + 0xa4, 0xc5, 0x3f, 0x14, 0x98, 0xa0, 0x43, 0x71, 0x46, 0x29, 0xd8, 0xa3, + 0x14, 0x5c, 0x06, 0xe2, 0x93, 0x14, 0xec, 0x51, 0x8a, 0x00, 0x6e, 0x28, + 0xc5, 0x3a, 0x92, 0x98, 0x09, 0x8a, 0x4e, 0xd4, 0xea, 0x43, 0xd2, 0x80, + 0x17, 0xb5, 0x25, 0x3b, 0xb5, 0x25, 0x00, 0x25, 0x25, 0x2d, 0x14, 0x00, + 0x94, 0x94, 0xea, 0x4a, 0x60, 0x25, 0x18, 0xa2, 0x8a, 0x04, 0x25, 0x18, + 0xa2, 0x8c, 0xd3, 0x01, 0x29, 0x28, 0xa4, 0xa6, 0x01, 0x45, 0x25, 0x25, + 0x02, 0x16, 0x83, 0x49, 0x40, 0x38, 0x34, 0xc0, 0x95, 0x20, 0x67, 0xea, + 0x42, 0xfd, 0x6a, 0x61, 0x6e, 0x10, 0x64, 0x1c, 0xb7, 0xa9, 0x14, 0xd6, + 0xb9, 0x45, 0x73, 0x93, 0x82, 0x79, 0x15, 0x46, 0xef, 0x5e, 0xb1, 0xb4, + 0x07, 0xce, 0xba, 0x8d, 0x48, 0xea, 0x33, 0x93, 0xf9, 0x57, 0x8f, 0x5b, + 0x17, 0x51, 0xb7, 0x1d, 0x8f, 0x4a, 0x9e, 0x1a, 0x29, 0x29, 0x17, 0x0e, + 0xe2, 0x7e, 0x66, 0x26, 0xa7, 0x50, 0xaa, 0x32, 0x08, 0xae, 0x2a, 0xeb, + 0xc7, 0x7a, 0x7a, 0x48, 0xcb, 0x0f, 0x99, 0x33, 0x76, 0xd8, 0xb5, 0x97, + 0x3f, 0x8d, 0xf5, 0x27, 0x24, 0x41, 0x6d, 0x1a, 0xa9, 0xe9, 0xb8, 0x92, + 0x45, 0x71, 0xa5, 0x2e, 0xc7, 0x4c, 0xb9, 0x7b, 0x9e, 0x95, 0xe6, 0xa0, + 0x07, 0x91, 0x55, 0x2e, 0x35, 0x2b, 0x78, 0x06, 0xe9, 0x26, 0x44, 0x1e, + 0xac, 0x40, 0xaf, 0x20, 0xd4, 0x7c, 0x53, 0xac, 0xbb, 0xb2, 0x3d, 0xdb, + 0x47, 0xc7, 0xfc, 0xb3, 0x1b, 0x6b, 0x36, 0x08, 0xf5, 0x1d, 0x4f, 0x73, + 0xee, 0x9a, 0xe4, 0x81, 0x92, 0x4e, 0x4e, 0x2a, 0xf9, 0x64, 0xd6, 0xa4, + 0x73, 0x41, 0x3d, 0x35, 0x3d, 0x92, 0x4f, 0x12, 0x69, 0xf1, 0xae, 0xe7, + 0xbb, 0x8b, 0x6f, 0xb3, 0x66, 0xb3, 0x24, 0xf1, 0xbe, 0x96, 0xad, 0x85, + 0xb9, 0x0d, 0x8f, 0x40, 0x6b, 0xce, 0x6d, 0x74, 0x9d, 0x4e, 0xfa, 0x15, + 0x6b, 0x5b, 0x37, 0x92, 0x23, 0xc6, 0xe0, 0x38, 0xfd, 0x6a, 0xf3, 0xf8, + 0x4b, 0x58, 0x8e, 0x13, 0x2b, 0x5b, 0xa8, 0xc0, 0xe4, 0x6e, 0x19, 0xa8, + 0xe5, 0x5b, 0x39, 0x15, 0xcd, 0xd5, 0x44, 0xec, 0x5f, 0xc6, 0xd6, 0x8f, + 0x8f, 0x2e, 0x39, 0xd8, 0x7a, 0x85, 0xaa, 0x97, 0x9e, 0x24, 0x87, 0xef, + 0x5c, 0x59, 0x86, 0x04, 0x71, 0xe6, 0xb0, 0x51, 0xfa, 0xd7, 0x2d, 0xa7, + 0xa4, 0xf1, 0x61, 0x5a, 0x12, 0xa7, 0xdc, 0x55, 0xfd, 0x46, 0xc5, 0xb5, + 0x3b, 0x43, 0x1c, 0xd2, 0xc6, 0xb8, 0x1f, 0x27, 0x3c, 0x8a, 0x52, 0xa4, + 0xbd, 0x46, 0xaa, 0xbe, 0xd6, 0x35, 0x6d, 0x7c, 0x74, 0x90, 0x46, 0x12, + 0x1b, 0x6b, 0x48, 0x50, 0x74, 0xc4, 0xab, 0xc7, 0xe4, 0x2a, 0x41, 0xe3, + 0xf8, 0xc6, 0xe6, 0x92, 0xee, 0x14, 0x3f, 0x89, 0xfe, 0x42, 0xb9, 0x2b, + 0x6f, 0x05, 0x59, 0x48, 0xd9, 0xb8, 0xd5, 0x99, 0x06, 0x78, 0x54, 0x8f, + 0x77, 0xeb, 0x9a, 0xd1, 0x4f, 0x07, 0x78, 0x7a, 0x3c, 0xf9, 0xb2, 0x5e, + 0x48, 0x47, 0x75, 0x60, 0x33, 0x5a, 0x46, 0x12, 0x92, 0xd5, 0xfe, 0x2c, + 0x87, 0x52, 0xcf, 0x45, 0xf8, 0x23, 0x4e, 0xe7, 0xe2, 0x0a, 0x75, 0x83, + 0x50, 0xb7, 0x27, 0xde, 0x27, 0xa6, 0xc1, 0xe3, 0xbd, 0xf2, 0xaa, 0x3e, + 0xa3, 0x09, 0xdc, 0x70, 0x31, 0x13, 0xff, 0x00, 0x5a, 0xcb, 0x5f, 0x0c, + 0x78, 0x61, 0x9c, 0x05, 0x17, 0x8c, 0x7f, 0xeb, 0xa5, 0x4a, 0x3c, 0x37, + 0xa1, 0xc1, 0x70, 0x8f, 0x6b, 0x05, 0xc1, 0x75, 0x39, 0xfd, 0xe4, 0xb9, + 0x1f, 0x95, 0x1e, 0xcd, 0xf7, 0x5f, 0x88, 0x7b, 0x47, 0xdb, 0xf2, 0x3b, + 0x35, 0xba, 0xd4, 0x88, 0x0e, 0x97, 0x36, 0xdf, 0x37, 0x20, 0x94, 0x27, + 0xfa, 0xd3, 0x26, 0xbd, 0xd6, 0xd3, 0x25, 0x2e, 0x2d, 0x0e, 0x3f, 0xd8, + 0x3f, 0xe3, 0x59, 0x96, 0xcc, 0xd8, 0xc4, 0x69, 0x20, 0x03, 0xb5, 0x3d, + 0x83, 0xe4, 0xe4, 0x4b, 0x93, 0xd7, 0x8a, 0x9e, 0x54, 0x3e, 0x66, 0x4b, + 0x2e, 0xab, 0xac, 0xc5, 0x6e, 0xf3, 0x5d, 0x5c, 0xd9, 0x2c, 0x48, 0x37, + 0x1f, 0xdd, 0x37, 0x4f, 0xce, 0xa8, 0x27, 0xc4, 0x48, 0x23, 0xe2, 0x4b, + 0xa8, 0x98, 0x7f, 0xb2, 0x8c, 0x3f, 0xa5, 0x57, 0xd5, 0x2d, 0xfe, 0xd7, + 0x07, 0x93, 0x24, 0x93, 0xa4, 0x7d, 0x08, 0xc7, 0x51, 0x59, 0xd1, 0xf8, + 0x2b, 0x46, 0x68, 0xf7, 0x32, 0xdd, 0xb6, 0x46, 0x41, 0x57, 0xa1, 0x41, + 0xb7, 0xa6, 0x9f, 0x78, 0x73, 0xe9, 0xff, 0x00, 0x0c, 0x6f, 0x8f, 0x88, + 0x76, 0xed, 0x2e, 0x16, 0x68, 0x8a, 0xe3, 0x39, 0xc9, 0x1f, 0xd2, 0x9d, + 0x1f, 0x8f, 0xd5, 0xa5, 0xda, 0x62, 0x84, 0xaf, 0xaf, 0x9c, 0x3f, 0xa8, + 0xae, 0x79, 0x7c, 0x15, 0xa2, 0x37, 0xdd, 0x6b, 0xc4, 0x23, 0xa8, 0x2e, + 0x2a, 0x9d, 0xc7, 0x81, 0xed, 0x1a, 0x41, 0xf6, 0x7d, 0x4a, 0x68, 0x87, + 0xa3, 0xa6, 0x6a, 0xb9, 0x26, 0x96, 0x92, 0xfc, 0x58, 0xbd, 0xa5, 0xf7, + 0x5f, 0x82, 0x3b, 0x54, 0xf1, 0x95, 0x9b, 0x10, 0xe1, 0x23, 0x56, 0xf4, + 0x52, 0xb9, 0xfd, 0x2a, 0xf4, 0x5e, 0x27, 0x8a, 0xe0, 0x19, 0x3c, 0x99, + 0x76, 0xf7, 0x60, 0x84, 0x81, 0xf9, 0x57, 0x9a, 0x41, 0xe0, 0xe7, 0x4b, + 0xd5, 0x57, 0xbd, 0x59, 0x22, 0xef, 0xb4, 0x60, 0xe6, 0xbb, 0xfb, 0x1f, + 0x0e, 0xbd, 0xbd, 0xb6, 0xdb, 0x6b, 0x80, 0xb1, 0xe3, 0x1b, 0x0d, 0x65, + 0x26, 0xef, 0xef, 0x3f, 0xd4, 0xd6, 0x2f, 0x4d, 0x11, 0xa3, 0x6f, 0xe2, + 0x9d, 0x2e, 0x43, 0xb7, 0xed, 0x0a, 0xac, 0x3b, 0x36, 0x57, 0xf9, 0xd5, + 0xe8, 0xf5, 0x5b, 0x39, 0xb1, 0xb2, 0x54, 0x3f, 0x42, 0x0d, 0x73, 0x9f, + 0xf0, 0x8c, 0xb9, 0x95, 0x64, 0x66, 0x46, 0x20, 0xf3, 0xcf, 0xff, 0x00, + 0x5a, 0x96, 0x5d, 0x14, 0xc6, 0x0e, 0x60, 0x47, 0x51, 0xc9, 0x38, 0xe6, + 0x8b, 0xae, 0xe2, 0xf5, 0x47, 0x58, 0x27, 0x89, 0xb1, 0x86, 0x14, 0xb9, + 0x43, 0xc0, 0x35, 0xc2, 0xb4, 0xb6, 0xc8, 0x7c, 0xaf, 0x32, 0x48, 0x4e, + 0x3a, 0xc7, 0x29, 0x53, 0xfc, 0xea, 0x24, 0xbc, 0xbb, 0xb6, 0x8c, 0x98, + 0x6f, 0xdd, 0xf0, 0x73, 0xb6, 0x4f, 0x9f, 0xf5, 0xeb, 0x4d, 0xa9, 0x09, + 0x38, 0x9d, 0xfb, 0x05, 0xc7, 0x18, 0xcd, 0x36, 0x3d, 0xe4, 0x67, 0x35, + 0xc2, 0xcd, 0xe2, 0x2d, 0x52, 0x15, 0x53, 0x88, 0x1b, 0x3f, 0xdd, 0x3d, + 0x7f, 0x0a, 0x75, 0xbf, 0x8c, 0x6e, 0x87, 0xfa, 0xfb, 0x5d, 0xc0, 0x75, + 0x23, 0x8c, 0x50, 0xa3, 0x27, 0xad, 0x87, 0x75, 0xb5, 0xce, 0xe4, 0x96, + 0x5c, 0x9c, 0xe4, 0x52, 0x45, 0x20, 0xe7, 0x35, 0xc8, 0xc7, 0xe3, 0x05, + 0x90, 0x1d, 0x91, 0x71, 0xdc, 0x16, 0xad, 0x1b, 0x0f, 0x13, 0x5a, 0xcc, + 0xc7, 0x7a, 0x14, 0xfd, 0x45, 0x0e, 0x32, 0x42, 0xbc, 0x5e, 0x85, 0xab, + 0xbb, 0x5d, 0x5a, 0x29, 0x9e, 0x5b, 0x2b, 0x88, 0xa6, 0x46, 0x3c, 0x44, + 0xe0, 0xf1, 0xf8, 0xff, 0x00, 0xf5, 0xaa, 0x1b, 0x3d, 0x46, 0xea, 0x59, + 0xbc, 0x8b, 0xad, 0x32, 0x58, 0x98, 0x1f, 0xbe, 0xa7, 0x2b, 0xf9, 0xd5, + 0x4d, 0x5f, 0x5b, 0xb9, 0xb2, 0xb8, 0x59, 0xad, 0xe2, 0x79, 0x6d, 0x9d, + 0x73, 0x90, 0xa7, 0x02, 0xad, 0x69, 0x9e, 0x25, 0xb2, 0xbf, 0x0a, 0x24, + 0x76, 0x49, 0x07, 0xf7, 0xba, 0x51, 0x2e, 0x45, 0x1b, 0x38, 0xd9, 0xfe, + 0x1f, 0x88, 0xe2, 0xa5, 0x7b, 0xa9, 0x5d, 0x1b, 0x82, 0x36, 0xdb, 0xf2, + 0x12, 0x3d, 0x41, 0xa8, 0x9e, 0x13, 0x9f, 0xde, 0x46, 0x07, 0xba, 0xd5, + 0xa8, 0xe5, 0x46, 0xe5, 0x58, 0x30, 0x3c, 0xe4, 0x72, 0x2a, 0xae, 0xa5, + 0x25, 0xcc, 0x6a, 0x92, 0x5a, 0xa6, 0xf0, 0x3e, 0xfa, 0xfa, 0x8a, 0xd2, + 0x15, 0x27, 0x4d, 0x5e, 0x0c, 0xcd, 0xc6, 0x33, 0x76, 0x9a, 0x22, 0x6b, + 0x73, 0xd6, 0x36, 0xdc, 0x3d, 0x3a, 0x1a, 0x80, 0x82, 0x09, 0x04, 0x60, + 0xd3, 0xec, 0x35, 0x28, 0x2f, 0x51, 0x43, 0xc4, 0xf0, 0xc8, 0x7b, 0x30, + 0xab, 0xf3, 0x43, 0xb9, 0x72, 0x40, 0x61, 0xfa, 0xfe, 0x75, 0xdf, 0x43, + 0x31, 0xbe, 0x95, 0x17, 0xf5, 0xe8, 0x72, 0xd5, 0xc1, 0xd9, 0xfb, 0xa6, + 0x6e, 0x68, 0xcd, 0x4a, 0xd0, 0x01, 0xff, 0x00, 0x2d, 0x00, 0xf6, 0x20, + 0xe6, 0x9c, 0xb6, 0xe8, 0xc0, 0x61, 0x98, 0x9f, 0x65, 0xae, 0xe7, 0x8b, + 0xa2, 0x95, 0xf9, 0x8e, 0x65, 0x86, 0xab, 0xd8, 0x83, 0x34, 0x6f, 0x19, + 0x03, 0x3c, 0x9e, 0x94, 0xdd, 0x4f, 0x46, 0x7b, 0xfb, 0x7d, 0xb0, 0x4f, + 0x2d, 0xac, 0x83, 0x38, 0x74, 0x73, 0x9f, 0xc6, 0xb9, 0x65, 0x9a, 0xea, + 0xca, 0x6f, 0xec, 0x9f, 0x11, 0x0d, 0xf6, 0xf2, 0x1c, 0x45, 0x79, 0x8c, + 0x15, 0xf4, 0xe6, 0xb9, 0x2a, 0x66, 0x94, 0xe1, 0x75, 0x67, 0xe4, 0x74, + 0xc3, 0x01, 0x29, 0x2d, 0xce, 0xb3, 0x34, 0xb8, 0x3e, 0x95, 0x83, 0x67, + 0x71, 0x73, 0xe1, 0xeb, 0xe8, 0xac, 0x2f, 0x66, 0x33, 0x59, 0x4b, 0xff, + 0x00, 0x1e, 0xf3, 0x9e, 0xbf, 0x43, 0x5d, 0x82, 0x05, 0x75, 0x0c, 0x92, + 0x16, 0x07, 0xbe, 0x6a, 0x63, 0x9a, 0x46, 0x5b, 0x47, 0x51, 0xcf, 0x00, + 0xe3, 0xaf, 0x36, 0x85, 0x05, 0x8a, 0x47, 0x19, 0x54, 0x62, 0x3d, 0x85, + 0x06, 0x29, 0x07, 0x54, 0x35, 0x7f, 0xca, 0x5e, 0xf9, 0x26, 0xaa, 0xdc, + 0x44, 0xce, 0x36, 0xa3, 0x94, 0xf7, 0xa5, 0x2c, 0xc6, 0x4b, 0x68, 0x84, + 0x70, 0x71, 0x7b, 0xc8, 0x8b, 0xca, 0x73, 0xd8, 0x7e, 0x62, 0x9a, 0x55, + 0x81, 0xc6, 0x33, 0xf4, 0xa7, 0xdb, 0xdb, 0x98, 0x58, 0xb3, 0xca, 0x5b, + 0xf0, 0xab, 0x1b, 0x63, 0x27, 0x21, 0x32, 0x69, 0x47, 0x31, 0x9b, 0xde, + 0x28, 0x25, 0x84, 0x82, 0xd9, 0x95, 0x42, 0x39, 0xfe, 0x1a, 0x5f, 0x2d, + 0xc7, 0xf0, 0xfe, 0xb4, 0xb7, 0x9a, 0x85, 0xad, 0x92, 0x03, 0x71, 0x32, + 0x43, 0x93, 0x80, 0x59, 0xb1, 0x9a, 0xe4, 0xb5, 0x7f, 0x12, 0x46, 0x97, + 0xd0, 0xbc, 0x3a, 0xda, 0x47, 0x06, 0xe0, 0x19, 0x14, 0x06, 0xcf, 0xaf, + 0x3d, 0xa9, 0xfd, 0x7e, 0x5d, 0x85, 0xf5, 0x58, 0xf7, 0x3a, 0xbc, 0x30, + 0x3c, 0x83, 0x51, 0xb4, 0xf1, 0x23, 0x6d, 0x69, 0x14, 0x37, 0xa1, 0x3c, + 0xd5, 0x18, 0xbc, 0x57, 0xa4, 0x3a, 0x85, 0x8e, 0xee, 0x29, 0x1f, 0x1c, + 0x7c, 0xe3, 0x26, 0xb9, 0x1d, 0x73, 0x4c, 0xd5, 0xb5, 0xed, 0x54, 0x4b, + 0x15, 0xe1, 0x82, 0x20, 0xc1, 0xa3, 0x0a, 0xbd, 0x31, 0x55, 0xf5, 0xf7, + 0xd5, 0x13, 0xf5, 0x55, 0xdc, 0xef, 0x84, 0x8a, 0x7a, 0x1a, 0x5d, 0xeb, + 0xfd, 0xe1, 0x54, 0x6c, 0x9e, 0x2b, 0x7b, 0x38, 0xa1, 0xbc, 0x74, 0x79, + 0x42, 0xe1, 0x9b, 0x3f, 0x78, 0xd4, 0xed, 0x05, 0xb8, 0x3b, 0xa2, 0xca, + 0xe7, 0x9e, 0x2a, 0x96, 0x3b, 0xbc, 0x7f, 0x11, 0x7d, 0x59, 0x77, 0x2c, + 0xe4, 0x7a, 0xd1, 0xb8, 0x7a, 0xd6, 0x6d, 0xd2, 0x97, 0x89, 0xbc, 0xb9, + 0x8e, 0xe1, 0xdb, 0x71, 0x1f, 0xd6, 0xb1, 0xa6, 0xb7, 0x69, 0x67, 0xfd, + 0xff, 0x00, 0x9b, 0x80, 0x31, 0xf2, 0x4a, 0x78, 0xa6, 0xf1, 0xd1, 0xfe, + 0x51, 0x7d, 0x59, 0xf7, 0x3a, 0xc0, 0xc0, 0xf7, 0xa5, 0xcd, 0x79, 0x75, + 0xf6, 0xb5, 0x7b, 0xa4, 0xcd, 0x20, 0xb6, 0x6b, 0x93, 0x18, 0xe0, 0x6e, + 0x62, 0x6b, 0x2e, 0xeb, 0xc7, 0xb7, 0x91, 0xd8, 0xb4, 0x28, 0xf3, 0x79, + 0xad, 0xc3, 0x16, 0x62, 0x6b, 0x37, 0x98, 0xc3, 0xb1, 0x4b, 0x08, 0xfb, + 0x9d, 0xc7, 0x88, 0x75, 0xad, 0x3a, 0xd2, 0x57, 0x92, 0xee, 0xe3, 0x85, + 0x18, 0x54, 0x07, 0xfa, 0x57, 0x9e, 0x6a, 0x7e, 0x2d, 0xbe, 0xd4, 0x0b, + 0xdb, 0xe9, 0xa9, 0xf6, 0x78, 0x09, 0xe5, 0x87, 0x53, 0x5c, 0xeb, 0x3c, + 0xda, 0x84, 0xe6, 0x7b, 0xa9, 0x59, 0xd8, 0x9e, 0x84, 0xd5, 0xd4, 0x2a, + 0xab, 0xc0, 0xc6, 0x2b, 0xc7, 0xab, 0x59, 0xca, 0x4e, 0x4f, 0x73, 0xd0, + 0x84, 0x52, 0x56, 0x5b, 0x14, 0xbe, 0xcd, 0x74, 0xb7, 0x4b, 0x71, 0x2b, + 0x19, 0x5d, 0x4e, 0xee, 0x4e, 0x79, 0xf7, 0xae, 0xff, 0x00, 0x4e, 0xf8, + 0x9b, 0x35, 0xb4, 0x29, 0x15, 0xce, 0x9f, 0x11, 0xda, 0x31, 0xb9, 0x4e, + 0xcf, 0xd3, 0x06, 0xb8, 0xd6, 0x76, 0x3c, 0x83, 0x41, 0x39, 0x18, 0x6c, + 0x1f, 0xad, 0x55, 0x3c, 0x65, 0x5a, 0x7f, 0x0b, 0x22, 0x74, 0x21, 0x3d, + 0xd1, 0xdf, 0xea, 0x7f, 0x13, 0x6c, 0x66, 0xb1, 0x0b, 0x6d, 0x69, 0x33, + 0x4b, 0x9c, 0x9f, 0xba, 0x00, 0xfa, 0x1c, 0xd7, 0x17, 0x2f, 0x8b, 0x35, + 0x9b, 0x89, 0x64, 0x36, 0x96, 0xb1, 0xc4, 0x1c, 0xe7, 0x7b, 0x72, 0x45, + 0x67, 0xdb, 0x5a, 0x25, 0xde, 0xa3, 0x15, 0xb8, 0x45, 0xc4, 0x8d, 0x8a, + 0xec, 0x23, 0xf0, 0xec, 0x30, 0xab, 0x46, 0x5c, 0xe4, 0x0e, 0x8b, 0x4e, + 0xae, 0x26, 0x55, 0x1d, 0xda, 0x2a, 0x95, 0x3e, 0x45, 0x68, 0xbb, 0x1c, + 0x55, 0xdd, 0x9d, 0xfe, 0xa2, 0x7c, 0xed, 0x52, 0xf1, 0x9d, 0x7d, 0x09, + 0xc0, 0x1f, 0x85, 0x16, 0xf0, 0x69, 0x90, 0x8c, 0x2c, 0x6f, 0x33, 0x8e, + 0xc8, 0xb9, 0xad, 0xc9, 0xf4, 0x12, 0x6e, 0x9b, 0x26, 0x4d, 0xb8, 0xe0, + 0xca, 0xdc, 0x0a, 0xbd, 0x6d, 0xa6, 0xdb, 0x69, 0xf0, 0x03, 0x34, 0x99, + 0x00, 0x72, 0x4e, 0x14, 0x1f, 0xc6, 0x96, 0xad, 0x7b, 0xcc, 0x7c, 0xba, + 0x97, 0xfc, 0x3d, 0xa0, 0x69, 0xf7, 0x36, 0x29, 0x79, 0x25, 0xbf, 0x96, + 0xcd, 0x90, 0x10, 0x8a, 0xb3, 0x7b, 0xe1, 0xdb, 0x0b, 0x8e, 0x12, 0x3f, + 0x2d, 0x87, 0xf7, 0x6a, 0x5b, 0x19, 0x43, 0xd9, 0x79, 0x96, 0xb3, 0xa7, + 0x91, 0x9c, 0x01, 0x1f, 0x39, 0x3f, 0x5a, 0x2c, 0xf5, 0x22, 0xd7, 0x12, + 0x2c, 0x90, 0x3a, 0x95, 0xee, 0x69, 0xd3, 0x4a, 0xee, 0xe2, 0x9d, 0xfa, + 0x1c, 0xcd, 0xff, 0x00, 0x86, 0xae, 0x60, 0xcb, 0x40, 0xc2, 0x44, 0xf4, + 0xef, 0x58, 0xd2, 0x58, 0x4c, 0x1f, 0x63, 0xc6, 0xc1, 0xfd, 0x08, 0xe6, + 0xbd, 0x29, 0xe6, 0x84, 0xf2, 0xdd, 0xfb, 0x63, 0xa5, 0x4f, 0x6f, 0x04, + 0x32, 0x92, 0xce, 0x8a, 0xc5, 0x7a, 0x64, 0x73, 0x44, 0xe9, 0xdb, 0x54, + 0x28, 0xca, 0xfa, 0x33, 0xce, 0xf4, 0xfd, 0x37, 0x5b, 0x8a, 0x51, 0x25, + 0x9c, 0x72, 0x86, 0x1f, 0x80, 0xae, 0xa2, 0xd0, 0x6a, 0xc8, 0x43, 0x5f, + 0x2f, 0x96, 0x47, 0xf7, 0x4e, 0x45, 0x75, 0x22, 0x48, 0x92, 0x3f, 0x94, + 0x63, 0x03, 0x9a, 0xcc, 0xbe, 0x9e, 0x1b, 0x82, 0xa8, 0x6e, 0x0a, 0xa9, + 0x3d, 0x14, 0xd6, 0x6a, 0x4d, 0x68, 0x69, 0xc8, 0x9e, 0xa4, 0x62, 0x56, + 0x0a, 0x48, 0x76, 0xcf, 0xe5, 0x56, 0x20, 0x95, 0xcd, 0xbb, 0x30, 0x72, + 0x18, 0x9d, 0xbb, 0xb2, 0x6a, 0xbc, 0xb6, 0xbe, 0x4c, 0x78, 0x52, 0x76, + 0x9e, 0x41, 0x27, 0x39, 0xaa, 0xd1, 0x5d, 0x4f, 0x0c, 0x4f, 0xb2, 0x20, + 0xeb, 0xbf, 0xef, 0x6e, 0xaa, 0x8d, 0x8a, 0x95, 0xed, 0xe4, 0x68, 0x24, + 0x3e, 0x69, 0x65, 0x27, 0x27, 0x1d, 0x49, 0xef, 0x52, 0x47, 0x66, 0x48, + 0x24, 0x8c, 0x7d, 0x45, 0x63, 0x36, 0xa1, 0x75, 0xe6, 0x6e, 0x45, 0x45, + 0xc5, 0x35, 0xef, 0x2f, 0x9f, 0x18, 0x99, 0x40, 0x27, 0x9e, 0x2a, 0xf5, + 0x33, 0xd0, 0xeb, 0xed, 0x74, 0x71, 0x73, 0x61, 0xe6, 0xc7, 0xb7, 0xce, + 0x2f, 0xb5, 0x41, 0x1c, 0x1a, 0x9c, 0x68, 0xba, 0x9c, 0x60, 0xaa, 0x9b, + 0x2f, 0xc4, 0x9f, 0xfe, 0x26, 0xb9, 0xeb, 0x48, 0xf5, 0x4f, 0xb0, 0xbd, + 0xc5, 0xbc, 0xb7, 0x0e, 0x88, 0x46, 0x56, 0x37, 0xda, 0x72, 0x7d, 0x05, + 0x5b, 0x59, 0xf5, 0x52, 0x83, 0xf7, 0x7a, 0xbb, 0x31, 0xef, 0x87, 0xc6, + 0x68, 0x8b, 0x85, 0xfd, 0xf4, 0xdf, 0xa1, 0x4d, 0x4a, 0xde, 0xed, 0xbe, + 0x66, 0xf4, 0x7a, 0x3d, 0xe9, 0x51, 0xbe, 0xe2, 0x05, 0x3f, 0xec, 0x21, + 0x3f, 0xe1, 0x52, 0xae, 0x97, 0x35, 0xbb, 0x09, 0x27, 0xba, 0x57, 0x8f, + 0xa1, 0x5d, 0xbb, 0x7f, 0xad, 0x73, 0x82, 0x0d, 0x5e, 0xe8, 0x82, 0x2c, + 0x6e, 0xf2, 0x0f, 0xcc, 0x64, 0x25, 0x49, 0xfc, 0xc8, 0xa7, 0x49, 0x61, + 0xa9, 0x41, 0x19, 0x96, 0x7d, 0x3d, 0xc4, 0x43, 0xa9, 0xf3, 0x01, 0xc0, + 0xfc, 0x0d, 0x68, 0xf9, 0x2d, 0xee, 0xc1, 0xfa, 0xea, 0x4f, 0xbf, 0x7b, + 0x39, 0x2f, 0xc0, 0xdf, 0x31, 0xdb, 0x86, 0xc0, 0x38, 0xfa, 0x1a, 0x6b, + 0xdb, 0x43, 0x38, 0xf2, 0x3c, 0xf3, 0x13, 0x37, 0xdd, 0x7f, 0x4a, 0xcf, + 0x5b, 0x0b, 0x53, 0x0e, 0xed, 0xac, 0x03, 0x0c, 0xe7, 0x71, 0xa2, 0xef, + 0x4c, 0x47, 0xb5, 0xff, 0x00, 0x45, 0x4d, 0xd3, 0xb0, 0xc2, 0x29, 0x63, + 0xc9, 0xac, 0x94, 0xba, 0x0f, 0x94, 0xba, 0xbe, 0x1f, 0x9d, 0x48, 0xc6, + 0xac, 0xf9, 0xff, 0x00, 0xae, 0x43, 0xfc, 0x6a, 0x4f, 0xec, 0x2b, 0xe2, + 0x38, 0xd5, 0xa4, 0xff, 0x00, 0xbf, 0x3f, 0xfd, 0x7a, 0xe7, 0xa0, 0xd1, + 0xbc, 0x43, 0x16, 0x08, 0xd3, 0xa3, 0x24, 0x7a, 0xce, 0xbc, 0xff, 0x00, + 0xe3, 0xd5, 0x61, 0xa3, 0xf1, 0x2c, 0x60, 0x21, 0xd3, 0x54, 0x83, 0xfd, + 0xd9, 0x01, 0xff, 0x00, 0xd9, 0xab, 0x5b, 0xc3, 0xfe, 0x7d, 0x3f, 0xfc, + 0x98, 0x5e, 0xff, 0x00, 0x4a, 0x8b, 0xf0, 0x2f, 0x5d, 0xe8, 0xf7, 0xf6, + 0xa0, 0x4c, 0xf7, 0xe2, 0x48, 0xc1, 0xc3, 0x02, 0x9b, 0x4f, 0xf5, 0xaa, + 0x24, 0x89, 0x0e, 0x01, 0x55, 0x23, 0xaf, 0x4a, 0xcc, 0xb9, 0x8f, 0x5b, + 0x59, 0x03, 0x4d, 0x69, 0x71, 0x1a, 0x67, 0x92, 0x72, 0x40, 0xfc, 0x7a, + 0x54, 0xd6, 0xd1, 0x7d, 0xa0, 0x60, 0x5c, 0xc8, 0xb2, 0xff, 0x00, 0x12, + 0x9c, 0x71, 0x52, 0xa7, 0x05, 0x3d, 0x13, 0x5e, 0x4e, 0xff, 0x00, 0xa8, + 0xe5, 0x09, 0x38, 0x6b, 0xf7, 0xa3, 0x65, 0x34, 0xb6, 0x99, 0x11, 0x8c, + 0xea, 0x3b, 0x81, 0xb4, 0x54, 0xc2, 0xd5, 0x63, 0x50, 0x8e, 0x88, 0x71, + 0xdc, 0xae, 0x33, 0x59, 0x43, 0xfb, 0x46, 0xdc, 0x10, 0x97, 0x24, 0xa2, + 0x9c, 0x7c, 0xc0, 0x55, 0xc2, 0xfa, 0x9e, 0xc0, 0xcd, 0x34, 0x25, 0x48, + 0xc8, 0x18, 0xe6, 0x9f, 0x39, 0x1c, 0x88, 0xba, 0x96, 0xb6, 0x4f, 0x11, + 0xcc, 0x49, 0xbb, 0xbe, 0x09, 0x06, 0xaa, 0x2d, 0x9c, 0xe9, 0x30, 0x16, + 0xb3, 0xcf, 0x1a, 0x1e, 0xa0, 0x3d, 0x54, 0x6d, 0x62, 0xf6, 0x17, 0xd8, + 0x2d, 0x62, 0x6c, 0x77, 0x07, 0x15, 0x6a, 0x1d, 0x69, 0x88, 0x06, 0x4b, + 0x09, 0x78, 0xee, 0x9c, 0xd5, 0x2a, 0x96, 0xd9, 0x89, 0xd3, 0x2c, 0xac, + 0xb7, 0xd6, 0xcf, 0x85, 0xbc, 0x96, 0x5f, 0x50, 0xeb, 0x53, 0x47, 0xab, + 0xde, 0xef, 0x0b, 0xb1, 0x09, 0xce, 0x3e, 0xe9, 0x1f, 0xad, 0x51, 0x4d, + 0x7e, 0xcd, 0x24, 0x3e, 0x63, 0x4d, 0x19, 0xee, 0xa6, 0x33, 0x5a, 0x30, + 0x6a, 0x56, 0xd2, 0xb0, 0x31, 0x48, 0x8c, 0x0f, 0x7a, 0xd1, 0x57, 0x9a, + 0xd9, 0x98, 0xca, 0x84, 0x64, 0x5a, 0x7d, 0x59, 0xe0, 0xe6, 0x7b, 0x66, + 0x0b, 0xdc, 0xa9, 0xdd, 0x4e, 0x8b, 0x5c, 0xb2, 0x91, 0xb6, 0xb3, 0x34, + 0x64, 0xf4, 0xde, 0x31, 0x4d, 0xb8, 0x81, 0xef, 0xad, 0xa4, 0x86, 0x26, + 0x44, 0x72, 0xb9, 0x0c, 0x7a, 0x56, 0x24, 0x9a, 0x4e, 0xb9, 0x68, 0x57, + 0xca, 0x48, 0x6e, 0x06, 0x3a, 0x86, 0x1c, 0x7e, 0x78, 0xad, 0x16, 0x26, + 0xaa, 0x57, 0xe5, 0xba, 0x25, 0x61, 0xe9, 0xbd, 0x1b, 0xb3, 0x3a, 0xe1, + 0x86, 0x19, 0x1c, 0xd2, 0xe2, 0xb9, 0x2b, 0x0d, 0x66, 0xe2, 0x1b, 0x93, + 0x14, 0xd6, 0xf2, 0x87, 0x1c, 0x14, 0xe4, 0x6d, 0xfc, 0x0d, 0x6e, 0xff, + 0x00, 0x6c, 0x46, 0xaa, 0x19, 0xe2, 0x93, 0x07, 0xa1, 0x51, 0x9a, 0xde, + 0x9e, 0x2e, 0x9d, 0x43, 0x3a, 0x98, 0x5a, 0x90, 0xdc, 0xd0, 0xc5, 0x18, + 0xa8, 0xe1, 0xbb, 0x82, 0x73, 0x84, 0x70, 0x48, 0xed, 0x53, 0xf0, 0x7a, + 0x57, 0x42, 0x92, 0x7b, 0x1c, 0xed, 0x35, 0xb8, 0xcc, 0x51, 0x8a, 0x7e, + 0x28, 0xc5, 0x3b, 0x88, 0x66, 0x29, 0x31, 0x4f, 0xc5, 0x26, 0x28, 0xb8, + 0x0d, 0xc5, 0x26, 0x29, 0xf8, 0xa4, 0xc5, 0x3b, 0x80, 0xdc, 0x52, 0x62, + 0x9d, 0x8a, 0x31, 0x40, 0x86, 0xd2, 0x53, 0xb1, 0x46, 0x29, 0x80, 0xda, + 0x29, 0x71, 0x45, 0x00, 0x36, 0x92, 0x9d, 0x8a, 0x31, 0x4c, 0x06, 0xd2, + 0x11, 0x4e, 0xa4, 0x23, 0x8a, 0x04, 0x2f, 0x6a, 0x4a, 0x75, 0x25, 0x03, + 0x12, 0x92, 0x9d, 0x49, 0x8a, 0x04, 0x36, 0x93, 0x14, 0xea, 0x4a, 0x60, + 0x25, 0x21, 0xa5, 0xa4, 0xa6, 0x21, 0x29, 0x29, 0x69, 0x29, 0x80, 0x94, + 0x94, 0xa6, 0x9b, 0x4c, 0x04, 0xa2, 0x82, 0x71, 0xd4, 0xd6, 0x3d, 0xff, + 0x00, 0x88, 0xad, 0x2c, 0x99, 0xd0, 0x13, 0x2c, 0x88, 0x32, 0x55, 0x3b, + 0x7e, 0x34, 0x4a, 0x4a, 0x2a, 0xf2, 0x63, 0x8c, 0x5c, 0x9d, 0x91, 0xae, + 0x4d, 0x61, 0x6b, 0xfe, 0x21, 0xfe, 0xc7, 0x50, 0xb1, 0xaa, 0x34, 0xa5, + 0x4b, 0x65, 0xdb, 0x0a, 0x83, 0xd4, 0xd7, 0x9e, 0xf8, 0x87, 0xe2, 0x16, + 0xb3, 0x3c, 0x86, 0x0b, 0x18, 0x4d, 0xb2, 0x1e, 0x8c, 0x06, 0x58, 0x8a, + 0xc3, 0xb4, 0xd1, 0x75, 0xcd, 0x7d, 0xcd, 0xdd, 0xdc, 0xe5, 0x61, 0xce, + 0x0c, 0xd3, 0xb7, 0xf9, 0x26, 0xb9, 0x2a, 0x62, 0x79, 0x97, 0x2d, 0x33, + 0xa2, 0x34, 0x79, 0x1d, 0xe6, 0x75, 0x33, 0xeb, 0x97, 0xfa, 0xb4, 0x5b, + 0xdb, 0x53, 0x20, 0x13, 0xd2, 0x2e, 0x3f, 0x5a, 0xa2, 0x9a, 0x65, 0xc5, + 0xf3, 0x95, 0x8e, 0x39, 0xa6, 0x63, 0xfc, 0x58, 0x2d, 0x5d, 0x4f, 0x84, + 0xfc, 0x19, 0x63, 0x6b, 0x62, 0x24, 0xba, 0x73, 0x74, 0xfb, 0x89, 0x53, + 0x92, 0xab, 0xf9, 0x75, 0xae, 0x87, 0x53, 0xd6, 0xb4, 0xef, 0x0f, 0x5a, + 0x6f, 0x95, 0x02, 0x83, 0xc2, 0xa4, 0x6a, 0x01, 0x35, 0xe5, 0x3a, 0x8a, + 0x3a, 0x25, 0xa9, 0xdf, 0xc9, 0x29, 0xfb, 0xcd, 0x9e, 0x66, 0x6d, 0x25, + 0xb3, 0x94, 0xc7, 0x24, 0x6c, 0xae, 0x38, 0xc1, 0x1c, 0xd2, 0x4f, 0x24, + 0x86, 0x1c, 0xee, 0x61, 0xc7, 0x20, 0xd5, 0x5d, 0x77, 0xc4, 0xd2, 0x6a, + 0x5a, 0x84, 0xb2, 0x41, 0x08, 0x80, 0x31, 0xc6, 0x0b, 0x6e, 0x3f, 0x9d, + 0x65, 0xf9, 0xf3, 0x49, 0x19, 0x0e, 0x5d, 0xcf, 0xa3, 0x1e, 0x2b, 0x68, + 0xb6, 0xd6, 0xc6, 0x12, 0x49, 0x3d, 0xcd, 0x2d, 0x2e, 0xd2, 0x3b, 0xfb, + 0xb5, 0x88, 0xce, 0x1c, 0xb3, 0x63, 0x69, 0xaf, 0x4f, 0xd3, 0xb4, 0xf8, + 0x2c, 0xf4, 0xc5, 0xb5, 0x47, 0x8e, 0x12, 0x41, 0xdc, 0x78, 0xc9, 0xf7, + 0xaf, 0x1e, 0x86, 0x59, 0x6d, 0x63, 0x59, 0x20, 0x1e, 0x5b, 0x81, 0x9d, + 0xc0, 0xf3, 0x49, 0xf6, 0x8b, 0x9b, 0x86, 0xde, 0xd3, 0xb9, 0x39, 0xcf, + 0x2c, 0x4d, 0x65, 0x3a, 0x73, 0x9b, 0xde, 0xc8, 0xd6, 0x15, 0x21, 0x05, + 0x74, 0xb5, 0x3d, 0x8e, 0x1d, 0x6b, 0x45, 0xd1, 0xad, 0x63, 0xb3, 0xfb, + 0x6c, 0x38, 0x88, 0x6d, 0x03, 0x76, 0x4f, 0xe9, 0x58, 0x7a, 0xaf, 0x8d, + 0x44, 0xe7, 0xca, 0xb0, 0x61, 0xb7, 0xbb, 0x3a, 0xff, 0x00, 0x2a, 0xf3, + 0xe5, 0x91, 0xb9, 0xde, 0x43, 0x1f, 0xd6, 0xac, 0x44, 0xf2, 0x93, 0x9f, + 0x2f, 0x8e, 0xdc, 0xd0, 0xb0, 0xf1, 0x5b, 0x83, 0xc4, 0x37, 0xb2, 0x3a, + 0x05, 0xd4, 0x63, 0x7c, 0xb9, 0xda, 0x1b, 0x1c, 0xe7, 0xb9, 0xac, 0xcd, + 0x67, 0x52, 0xbd, 0x8e, 0xc5, 0x6e, 0x2c, 0x66, 0x78, 0x96, 0x33, 0xf3, + 0xe0, 0x54, 0x44, 0x32, 0x01, 0xbf, 0x03, 0x3d, 0xa9, 0x65, 0x99, 0x0d, + 0x8c, 0xa8, 0xce, 0xa1, 0x18, 0x73, 0x9a, 0xa9, 0x45, 0x5b, 0x42, 0x13, + 0x77, 0x30, 0xff, 0x00, 0xe1, 0x28, 0xd4, 0x64, 0x4c, 0x35, 0xd4, 0xcd, + 0xef, 0x9a, 0x84, 0xea, 0xd7, 0xd7, 0x47, 0x6f, 0xef, 0xe4, 0xcf, 0xa1, + 0x26, 0xba, 0xef, 0x0f, 0xea, 0xba, 0x6d, 0xb5, 0xa8, 0x82, 0x2b, 0x1b, + 0x79, 0x1d, 0x79, 0x32, 0x49, 0x16, 0x4d, 0x6e, 0xc3, 0xaf, 0x88, 0x83, + 0x18, 0x6c, 0xe1, 0x19, 0x39, 0xca, 0x5b, 0xe3, 0xf9, 0x50, 0xa9, 0x52, + 0xb6, 0xb3, 0xfc, 0x09, 0x6e, 0xa5, 0xf4, 0x5f, 0x89, 0xe6, 0xb1, 0xa6, + 0xa2, 0x08, 0x09, 0x63, 0x72, 0x7d, 0x30, 0x8d, 0x53, 0x2a, 0xea, 0xca, + 0xc1, 0x9a, 0xc6, 0xed, 0x54, 0x72, 0x58, 0xa3, 0x00, 0x3f, 0x4a, 0xf4, + 0x39, 0x7c, 0x59, 0x7a, 0xab, 0x98, 0xac, 0xe4, 0x76, 0xe8, 0x31, 0x1e, + 0x07, 0xeb, 0x54, 0x5b, 0xc5, 0x7a, 0xcd, 0xd2, 0xbc, 0x12, 0x69, 0xf2, + 0x2a, 0xb7, 0xca, 0x70, 0x07, 0x4a, 0x6e, 0x9d, 0x0e, 0x8d, 0xfd, 0xc1, + 0x7a, 0xbd, 0x6c, 0x6f, 0xdb, 0xdd, 0x3a, 0xd9, 0xc0, 0xcf, 0x28, 0x04, + 0xa0, 0x1f, 0x5e, 0x2a, 0xf0, 0x97, 0x95, 0x05, 0xf3, 0x9f, 0x5a, 0xe5, + 0x23, 0xbe, 0x28, 0x14, 0x1b, 0x29, 0x54, 0x81, 0xdc, 0x81, 0x8f, 0xd6, + 0xa7, 0xfe, 0xd5, 0x91, 0x87, 0x16, 0x53, 0x1f, 0xab, 0x0f, 0xf1, 0xac, + 0xee, 0x68, 0x6c, 0xeb, 0x57, 0x56, 0xf1, 0x58, 0x4c, 0x73, 0xc8, 0x43, + 0xd0, 0xfb, 0x57, 0x90, 0xc7, 0x2e, 0xb0, 0xc3, 0x31, 0x5b, 0xde, 0x15, + 0x3c, 0x82, 0xaa, 0xd8, 0x22, 0xbb, 0x59, 0x35, 0x0b, 0xd9, 0x66, 0x2a, + 0xda, 0x3e, 0xe8, 0xbf, 0x89, 0x8b, 0xe7, 0x8f, 0xa5, 0x6d, 0xa6, 0xbd, + 0x3d, 0xad, 0xbc, 0x68, 0x22, 0xd8, 0xaa, 0xb8, 0x50, 0x63, 0x3d, 0x2a, + 0xa0, 0xa1, 0x37, 0xef, 0xdd, 0x7a, 0x13, 0x2e, 0x64, 0xbd, 0xd3, 0xcb, + 0xfe, 0xdb, 0xa9, 0xc2, 0xfb, 0x9e, 0x2b, 0xa4, 0x61, 0xdc, 0x86, 0x14, + 0xf1, 0xe2, 0x1b, 0xb6, 0xc0, 0x69, 0xe7, 0x04, 0x74, 0xc3, 0x74, 0xaf, + 0x51, 0x8f, 0xc4, 0xac, 0x55, 0x9d, 0xd6, 0x37, 0xcf, 0xf0, 0x98, 0xcd, + 0x53, 0xb8, 0xf1, 0x86, 0x9a, 0x27, 0x11, 0x4b, 0xa4, 0xc2, 0x5f, 0xa7, + 0xcf, 0x18, 0x20, 0xfe, 0x38, 0xab, 0xf6, 0x34, 0x1a, 0xd2, 0x6d, 0x7c, + 0x88, 0x53, 0xaa, 0x9e, 0xdf, 0x89, 0xc5, 0xd9, 0xf8, 0xb6, 0xfa, 0xdf, + 0x68, 0x17, 0x72, 0x1c, 0x10, 0x40, 0x6e, 0x6b, 0xd4, 0xb4, 0x6f, 0x1a, + 0xc4, 0xf6, 0x36, 0xe6, 0xfe, 0x30, 0x92, 0xc8, 0xa4, 0x9d, 0xab, 0x81, + 0xd6, 0xb9, 0x3d, 0x42, 0xd7, 0x4a, 0xd4, 0x88, 0x92, 0x1d, 0x3e, 0xda, + 0x09, 0x4f, 0x3b, 0xe3, 0x7e, 0xa3, 0xd3, 0x1d, 0x2a, 0x79, 0x74, 0xab, + 0xe9, 0xf6, 0x3f, 0x90, 0xe1, 0x55, 0x70, 0xa5, 0x63, 0x3c, 0x57, 0x3c, + 0xa9, 0xc6, 0x32, 0xba, 0x95, 0xcd, 0xe1, 0x39, 0x35, 0xaa, 0x3b, 0xe5, + 0xf1, 0x1e, 0x8f, 0x22, 0xe7, 0xcd, 0xc1, 0xf7, 0x53, 0x52, 0xb5, 0xf6, + 0x97, 0x71, 0x09, 0xd9, 0x79, 0x10, 0x3f, 0xef, 0x81, 0x5e, 0x71, 0x1d, + 0xa5, 0xc4, 0x6a, 0xc8, 0xf9, 0x2d, 0xee, 0x70, 0x69, 0x16, 0xca, 0x59, + 0x1c, 0x87, 0x46, 0xe3, 0xb9, 0x35, 0x2e, 0x0a, 0x45, 0x73, 0xb4, 0x59, + 0xbd, 0xd1, 0xf7, 0x5d, 0xcb, 0x2c, 0x77, 0x41, 0x97, 0x71, 0xc7, 0xcd, + 0x9e, 0x2b, 0x3e, 0x7b, 0x2b, 0xc8, 0xe4, 0x8c, 0x46, 0x58, 0x86, 0x1c, + 0x60, 0x55, 0xc4, 0xb1, 0x32, 0x65, 0x5f, 0x7a, 0x8f, 0xef, 0x1a, 0xd1, + 0xb7, 0xb5, 0x48, 0xf6, 0x98, 0xe6, 0x70, 0x57, 0xb6, 0xee, 0x2b, 0x54, + 0xb4, 0xb1, 0x9d, 0xde, 0xe7, 0x33, 0x23, 0x5e, 0xc6, 0xcc, 0xb2, 0xe4, + 0x81, 0xd3, 0x22, 0xb6, 0xf4, 0xfd, 0x23, 0x53, 0xbc, 0xd3, 0x44, 0xc8, + 0xd1, 0x11, 0x8e, 0x11, 0xf3, 0x92, 0x2b, 0x7c, 0x41, 0x0c, 0xf1, 0xed, + 0x9d, 0x23, 0x90, 0x1e, 0xf8, 0xad, 0x9d, 0x3e, 0x6b, 0x08, 0x2d, 0xc4, + 0x0c, 0x04, 0x78, 0xe0, 0x73, 0x53, 0x37, 0x24, 0xbd, 0xd2, 0xa0, 0xa2, + 0xde, 0xa7, 0x20, 0xba, 0x6c, 0x31, 0xc4, 0xe9, 0xaa, 0x58, 0xcf, 0x11, + 0xed, 0x2c, 0x47, 0x70, 0x15, 0x99, 0x1d, 0xac, 0x51, 0xc8, 0x44, 0x17, + 0x24, 0x8e, 0xc1, 0xba, 0x9a, 0xf5, 0x1f, 0x2e, 0x27, 0x19, 0x8a, 0x45, + 0x71, 0xe9, 0x5c, 0x1f, 0x8b, 0x2d, 0x1a, 0xcf, 0x50, 0x59, 0x63, 0x87, + 0x62, 0xb8, 0xe4, 0xa8, 0xe3, 0x35, 0x9c, 0x24, 0xd4, 0xac, 0xfa, 0x97, + 0x38, 0xab, 0x5d, 0x0d, 0x4d, 0x66, 0xf7, 0x4f, 0x8c, 0x2e, 0xe1, 0x3a, + 0x0f, 0xe0, 0x18, 0x24, 0x7f, 0x5a, 0xd5, 0xd2, 0xb5, 0x4d, 0x1e, 0xe6, + 0xe1, 0x65, 0x96, 0xd2, 0x38, 0xa7, 0xe8, 0x5b, 0x1f, 0xd2, 0xbc, 0xf2, + 0xef, 0x49, 0xd4, 0x67, 0x7f, 0xb4, 0xd8, 0xdc, 0x2c, 0xec, 0xc0, 0x9f, + 0x24, 0x1c, 0x32, 0xe3, 0xeb, 0xfd, 0x2a, 0x85, 0xb6, 0xb5, 0x73, 0x61, + 0x77, 0xe5, 0xde, 0x43, 0x20, 0x93, 0xba, 0x38, 0x20, 0xfe, 0x7d, 0x45, + 0x74, 0x55, 0x75, 0x5c, 0x39, 0x65, 0xf0, 0x98, 0xd3, 0x74, 0xd4, 0xee, + 0xb7, 0x3e, 0x80, 0x8a, 0xf2, 0xdb, 0xcc, 0x51, 0x13, 0xa9, 0x5c, 0x7f, + 0x0f, 0x4a, 0x76, 0xa3, 0x75, 0x15, 0x9d, 0x93, 0xdd, 0x39, 0x25, 0x13, + 0x93, 0x81, 0x9e, 0x2b, 0xcf, 0xf4, 0x0b, 0x89, 0xee, 0x2d, 0xfe, 0xd1, + 0x6c, 0x67, 0x00, 0xf5, 0x59, 0x47, 0xf2, 0xad, 0xf5, 0xd5, 0x60, 0x95, + 0xdf, 0x4e, 0xbc, 0xde, 0xac, 0xe9, 0x8c, 0x1c, 0x8f, 0xc8, 0xf7, 0xac, + 0x75, 0x6a, 0xc6, 0xba, 0x5e, 0xe6, 0xbe, 0x9d, 0x7b, 0x61, 0x7b, 0xb6, + 0x7b, 0x59, 0xd1, 0x81, 0x19, 0x20, 0x1e, 0x47, 0xd4, 0x56, 0xb8, 0xc1, + 0x41, 0x8e, 0x45, 0x70, 0xd6, 0x1e, 0x17, 0xb7, 0x8a, 0xf6, 0x36, 0xb7, + 0xbb, 0x9a, 0x25, 0x45, 0x20, 0x79, 0x78, 0x04, 0x9c, 0xe7, 0x26, 0xbb, + 0x1b, 0x48, 0xde, 0x38, 0x42, 0xf9, 0x85, 0xb1, 0xc6, 0x5b, 0xa9, 0xa5, + 0x4a, 0x52, 0xbb, 0x8b, 0x45, 0x55, 0x8a, 0xb2, 0x69, 0x92, 0x18, 0x50, + 0xb6, 0x71, 0xcd, 0x33, 0x64, 0x68, 0x77, 0x74, 0x34, 0x2b, 0xc8, 0x5d, + 0x83, 0x0c, 0x0c, 0xf1, 0x8a, 0x50, 0x9d, 0xc2, 0xe3, 0xdc, 0x9a, 0xd3, + 0x47, 0xb2, 0x33, 0xd5, 0x6e, 0xc0, 0xbb, 0x7f, 0x0a, 0x9f, 0xa9, 0xaa, + 0x77, 0xfa, 0x5c, 0x3a, 0xac, 0x22, 0x2b, 0xc5, 0x0f, 0x18, 0x39, 0xda, + 0x38, 0xfd, 0x6a, 0xf0, 0x07, 0xb9, 0x00, 0x54, 0x72, 0x4c, 0x8a, 0x48, + 0xce, 0xe2, 0x3d, 0x29, 0x4a, 0x29, 0xaf, 0x78, 0x71, 0x6d, 0x3f, 0x74, + 0xab, 0x1e, 0x8f, 0x63, 0x1d, 0xbc, 0x70, 0x79, 0x21, 0xe3, 0x8f, 0xee, + 0x09, 0x0e, 0xfd, 0xbf, 0x9d, 0x5b, 0x54, 0x58, 0x94, 0x2a, 0x28, 0x55, + 0x1d, 0x85, 0x57, 0x6b, 0xa7, 0x2b, 0xf2, 0xc5, 0x83, 0xea, 0xc6, 0xa1, + 0x6f, 0xb5, 0xb6, 0x49, 0x78, 0xc0, 0xec, 0x39, 0xa9, 0x4a, 0x2b, 0xe1, + 0x45, 0x3b, 0xbf, 0x89, 0x93, 0xc9, 0x29, 0x2c, 0x40, 0x6e, 0x3d, 0xaa, + 0x9d, 0xe5, 0xfc, 0x3a, 0x7c, 0x2d, 0x3d, 0xcb, 0xb2, 0xa0, 0xee, 0x17, + 0x34, 0x79, 0x73, 0x03, 0xb9, 0xae, 0xfa, 0x75, 0x01, 0x71, 0x4e, 0x95, + 0xe0, 0x74, 0xc4, 0xdb, 0x5b, 0xfd, 0xf0, 0x0e, 0x69, 0xa8, 0xb1, 0x36, + 0x8a, 0x96, 0x1a, 0xed, 0x9e, 0xa7, 0xc4, 0x06, 0x4c, 0xe3, 0xa3, 0x2e, + 0xd3, 0x5a, 0x3e, 0x7f, 0x96, 0x46, 0x22, 0x62, 0x3d, 0xaa, 0xa3, 0xfd, + 0x92, 0x32, 0x3e, 0xe8, 0x3f, 0xec, 0xf1, 0xfc, 0xaa, 0x95, 0xde, 0xa3, + 0x6b, 0x11, 0x3b, 0x98, 0x83, 0xd8, 0xef, 0x35, 0xa4, 0x51, 0x0d, 0x95, + 0x75, 0x9b, 0x1b, 0x2d, 0x76, 0x66, 0x5b, 0xe8, 0xe5, 0x58, 0xe3, 0xc1, + 0x50, 0x1b, 0x19, 0x3d, 0xfa, 0x56, 0x13, 0x78, 0x67, 0xc3, 0x11, 0x15, + 0xff, 0x00, 0x5c, 0x01, 0xcf, 0xf1, 0x31, 0xad, 0x1b, 0x9d, 0x56, 0xcb, + 0xf8, 0x59, 0x32, 0x7a, 0x92, 0xc6, 0xb2, 0x67, 0xbb, 0xb5, 0x79, 0x31, + 0xbd, 0x4f, 0x19, 0x1c, 0x9a, 0xe8, 0x8d, 0x54, 0x95, 0x9c, 0x53, 0xf9, + 0x18, 0xca, 0x9d, 0xdd, 0xee, 0xd1, 0x13, 0xf8, 0x7b, 0xc3, 0xb6, 0x84, + 0xdc, 0xd8, 0x99, 0xbe, 0xd2, 0xbc, 0xa2, 0xb1, 0x38, 0x6f, 0xce, 0xae, + 0xb6, 0xbb, 0x80, 0x8a, 0x91, 0xba, 0x15, 0x18, 0xc5, 0x66, 0xb4, 0xd6, + 0xe4, 0x13, 0xb8, 0xe4, 0xf0, 0x0e, 0x7a, 0x54, 0x0c, 0x62, 0x53, 0x9d, + 0xdf, 0x37, 0xf7, 0xb7, 0x54, 0xcd, 0xa9, 0x3b, 0xa4, 0x97, 0xa0, 0xe2, + 0xb9, 0x55, 0xaf, 0x73, 0x65, 0x75, 0xf3, 0x32, 0x6d, 0x52, 0xe8, 0xc3, + 0xa8, 0x65, 0xa7, 0xa6, 0xb7, 0x2b, 0x2e, 0xdd, 0xdf, 0x77, 0xaf, 0x15, + 0x82, 0x39, 0xfd, 0xe6, 0x72, 0x48, 0xc7, 0x5a, 0x0c, 0x72, 0x67, 0x29, + 0x26, 0x3d, 0x46, 0x7a, 0x54, 0x58, 0xab, 0x9b, 0x4f, 0xab, 0x85, 0xf9, + 0x24, 0x2c, 0xbb, 0xb8, 0x07, 0x35, 0x56, 0x69, 0xe3, 0x98, 0x86, 0x24, + 0x86, 0xfe, 0xf0, 0x3c, 0x9a, 0xcb, 0xb8, 0x0f, 0xb7, 0xe6, 0x6c, 0x91, + 0xdd, 0xbf, 0xa5, 0x64, 0x5d, 0x78, 0x8f, 0xca, 0x73, 0x13, 0xc7, 0x96, + 0x4e, 0x09, 0x02, 0x95, 0x86, 0x8e, 0xa6, 0x59, 0x0c, 0x90, 0x15, 0x8a, + 0x78, 0xd8, 0xff, 0x00, 0x75, 0xc6, 0x7f, 0x5a, 0xcc, 0xfe, 0xcd, 0x8a, + 0x56, 0xcb, 0xc4, 0xbb, 0xbb, 0xfa, 0x1a, 0xe4, 0x2e, 0x75, 0x76, 0x69, + 0x04, 0x90, 0xb4, 0x91, 0xe0, 0xe7, 0x00, 0xd5, 0xd8, 0x3c, 0x48, 0xf2, + 0x48, 0x03, 0x2b, 0x2a, 0xe3, 0x93, 0xbb, 0x35, 0x2e, 0x37, 0xd0, 0xad, + 0x56, 0xa6, 0xcc, 0xba, 0x25, 0xa0, 0x73, 0xb5, 0x55, 0x49, 0xf4, 0xe2, + 0xab, 0x9d, 0x07, 0xcc, 0xc8, 0x89, 0xbe, 0x95, 0x57, 0xfb, 0x44, 0x4e, + 0xfb, 0x52, 0x6c, 0x67, 0xd7, 0x8a, 0xb5, 0x6f, 0x7b, 0x2a, 0x49, 0x86, + 0x56, 0x6e, 0xc1, 0x97, 0x91, 0x59, 0x4a, 0x82, 0x65, 0x2a, 0x85, 0x1b, + 0x9d, 0x0a, 0xf6, 0x3e, 0x77, 0x65, 0x7d, 0x3a, 0x56, 0x25, 0xdb, 0x1b, + 0x47, 0xc4, 0xa1, 0xbe, 0x95, 0xde, 0x2e, 0xa2, 0x18, 0x05, 0x93, 0x23, + 0xb6, 0x58, 0x55, 0x3b, 0xbb, 0x4b, 0x6b, 0xa2, 0x33, 0x1a, 0x93, 0xf4, + 0xac, 0x1d, 0x37, 0x1d, 0xcd, 0x2e, 0x9e, 0xc7, 0x33, 0xa2, 0x5c, 0x46, + 0xf7, 0xeb, 0x26, 0x3f, 0xd5, 0xfc, 0xc3, 0x07, 0x93, 0x5d, 0x6c, 0xfa, + 0x84, 0xce, 0xdb, 0xd4, 0x60, 0x37, 0x3b, 0x47, 0x2c, 0x6b, 0x25, 0xf4, + 0xa8, 0x2c, 0xa7, 0xf3, 0x6d, 0xc0, 0x42, 0xc3, 0x04, 0xf6, 0xc5, 0x4b, + 0x69, 0x2a, 0xc3, 0x22, 0xcd, 0x72, 0x0f, 0x94, 0xbd, 0x1b, 0xb5, 0x5c, + 0x52, 0x6a, 0xe8, 0x5a, 0xad, 0x0a, 0x57, 0xba, 0xde, 0xa5, 0x24, 0xcd, + 0x14, 0x16, 0xab, 0x01, 0x1d, 0x5e, 0x53, 0x93, 0x59, 0xa6, 0x06, 0xb9, + 0x93, 0x75, 0xe4, 0xf2, 0xdc, 0x39, 0x3d, 0x33, 0xc5, 0x49, 0xaa, 0xeb, + 0xfa, 0x7b, 0x5f, 0x3c, 0x83, 0x74, 0xa7, 0xa0, 0x8d, 0x7f, 0xa9, 0xac, + 0xe6, 0xbf, 0xd5, 0x6f, 0x97, 0x6d, 0xbc, 0x6b, 0x6d, 0x0f, 0xfb, 0x23, + 0x9f, 0xce, 0xb6, 0x8c, 0x74, 0x21, 0xc9, 0x7a, 0x9d, 0xce, 0x8d, 0x7b, + 0x6b, 0xa7, 0xd8, 0x47, 0x6e, 0x10, 0xee, 0x2d, 0x9d, 0x83, 0xb5, 0x68, + 0xcf, 0x75, 0x0c, 0x12, 0x15, 0x74, 0xd9, 0xb8, 0x67, 0xae, 0x6b, 0x07, + 0x4b, 0xb6, 0x58, 0xec, 0x60, 0xf3, 0xa4, 0x2c, 0xc4, 0x0c, 0x81, 0xdc, + 0xfa, 0x9a, 0xb1, 0xaa, 0xb2, 0x46, 0xd1, 0xaa, 0x9e, 0x48, 0xe9, 0xd6, + 0xa2, 0x0d, 0x39, 0x58, 0xb9, 0x5d, 0x46, 0xe6, 0xba, 0xcc, 0x8c, 0x07, + 0xcc, 0xa5, 0xaa, 0xcc, 0x12, 0x19, 0x1d, 0x03, 0x03, 0x9f, 0x63, 0x8a, + 0xe4, 0xa2, 0x9d, 0x84, 0xc1, 0x93, 0x23, 0x03, 0x91, 0xda, 0xb6, 0x2c, + 0xf5, 0x58, 0xfe, 0xd0, 0x9b, 0xd4, 0xae, 0x3b, 0xf5, 0x15, 0xd1, 0xd0, + 0xc1, 0x6e, 0x6e, 0x1b, 0xa0, 0x57, 0x62, 0xa8, 0x03, 0xde, 0xa1, 0x08, + 0x22, 0x7c, 0xc6, 0x88, 0x09, 0x19, 0xe7, 0x9a, 0x86, 0x2b, 0xf8, 0x4f, + 0xcd, 0xb4, 0x03, 0xeb, 0xb7, 0xad, 0x66, 0xde, 0xeb, 0x0c, 0x6e, 0xc4, + 0x31, 0x47, 0xdc, 0x6e, 0x3e, 0xd5, 0xcd, 0x25, 0xd8, 0xe9, 0x8b, 0xb6, + 0xe6, 0xfc, 0x97, 0x44, 0xda, 0xe6, 0x42, 0x06, 0x57, 0x1c, 0x1f, 0xe9, + 0x50, 0xe9, 0x70, 0x89, 0x6c, 0xe7, 0x2c, 0xc0, 0x7c, 0xe7, 0x8a, 0xa1, + 0x21, 0x41, 0x11, 0x21, 0xb7, 0x9f, 0x52, 0x71, 0x8a, 0xa1, 0xba, 0xe8, + 0x40, 0x4a, 0xdc, 0xc9, 0x1c, 0x65, 0xb2, 0x55, 0x7b, 0xd2, 0x8a, 0x2a, + 0x5b, 0x1a, 0x77, 0xd0, 0xa4, 0x00, 0x66, 0x61, 0x9f, 0x41, 0x55, 0xed, + 0xee, 0xad, 0x92, 0x4c, 0xcb, 0x20, 0xdb, 0xee, 0x6b, 0x34, 0xa0, 0x60, + 0x4e, 0xe7, 0x73, 0xdc, 0x96, 0x35, 0x09, 0x8a, 0xdc, 0xca, 0x08, 0x8f, + 0x70, 0x1d, 0x8f, 0x35, 0x5a, 0xec, 0x67, 0xa6, 0xe7, 0x7d, 0xa7, 0xf8, + 0xaa, 0xce, 0xc5, 0x04, 0x51, 0xc6, 0x5d, 0x77, 0x06, 0x27, 0x35, 0xa5, + 0x2f, 0x8f, 0x2c, 0xd0, 0x6e, 0x10, 0x39, 0xcf, 0x6c, 0xff, 0x00, 0xf5, + 0xab, 0x90, 0xb4, 0xb3, 0xb9, 0xbf, 0xb5, 0xff, 0x00, 0x43, 0x8d, 0x16, + 0x5d, 0xea, 0x8a, 0xb8, 0x1c, 0x93, 0xeb, 0xe9, 0x5b, 0x23, 0xc1, 0xde, + 0x22, 0x91, 0x14, 0x34, 0xb6, 0xb1, 0x1e, 0x87, 0xf7, 0x84, 0xe3, 0xf4, + 0xad, 0x28, 0xce, 0xac, 0x6e, 0xa9, 0xa2, 0x6a, 0x46, 0x9b, 0xfe, 0x21, + 0xa8, 0xbe, 0x3a, 0x85, 0xc8, 0xd9, 0x6c, 0xdc, 0xfb, 0x9f, 0xf0, 0xa6, + 0x5e, 0xf8, 0xc1, 0x64, 0xb4, 0x92, 0x23, 0x03, 0xa6, 0xf5, 0x2a, 0x7e, + 0x52, 0x4e, 0x2a, 0x18, 0xfc, 0x09, 0xa9, 0x00, 0xbb, 0xb5, 0x68, 0x55, + 0xba, 0x12, 0x22, 0x26, 0xa9, 0x78, 0x87, 0xc2, 0x97, 0xda, 0x56, 0x9d, + 0xf6, 0xe7, 0xd5, 0x12, 0x75, 0x56, 0x0a, 0xcb, 0xe5, 0xed, 0x38, 0x3e, + 0x9c, 0x9a, 0xd6, 0x52, 0xc5, 0x5b, 0xde, 0xbd, 0xbe, 0x44, 0x25, 0x87, + 0xbe, 0x96, 0xfc, 0x48, 0x5f, 0xc4, 0xb1, 0xbb, 0x6c, 0xcc, 0x81, 0x71, + 0x80, 0x0a, 0xe2, 0xac, 0xc5, 0xe2, 0x30, 0x8e, 0x8e, 0xa9, 0x2e, 0x50, + 0xe7, 0xee, 0xe6, 0xb9, 0x68, 0xe6, 0x6d, 0xe7, 0x2c, 0x1b, 0xf0, 0xab, + 0xb6, 0x19, 0xbb, 0x77, 0xb4, 0x12, 0x88, 0xda, 0x5f, 0x94, 0x13, 0xc7, + 0x27, 0xa5, 0x73, 0xf2, 0x49, 0x6a, 0x8d, 0xb9, 0xd3, 0xe8, 0x75, 0xa3, + 0xc7, 0x2e, 0x54, 0x91, 0x6e, 0x3f, 0xef, 0x92, 0x0d, 0x20, 0xf1, 0xdb, + 0x75, 0x36, 0xc8, 0x57, 0x38, 0xce, 0x4f, 0x5f, 0xca, 0xa0, 0x8b, 0xe1, + 0xc5, 0xd2, 0x28, 0xff, 0x00, 0x89, 0xf7, 0xcd, 0x8f, 0xf9, 0xe1, 0xc7, + 0xfe, 0x85, 0x49, 0x27, 0xc3, 0x8b, 0xd6, 0x18, 0x4d, 0x70, 0x13, 0x9c, + 0xe0, 0xc5, 0x81, 0x9f, 0xce, 0xba, 0x39, 0xb1, 0x6b, 0xa7, 0xe4, 0x61, + 0xcb, 0x86, 0x7d, 0x7f, 0x32, 0x4b, 0xaf, 0x1e, 0x43, 0x73, 0x6f, 0x2d, + 0xaa, 0x5b, 0x11, 0x23, 0x0c, 0x67, 0x76, 0x40, 0xfd, 0x2b, 0x12, 0x3d, + 0x6a, 0x24, 0x6e, 0x63, 0x50, 0x4f, 0x71, 0x4b, 0xa9, 0x78, 0x03, 0x5c, + 0xd3, 0xed, 0xe4, 0xbb, 0x6b, 0xcb, 0x79, 0xe1, 0x8c, 0x65, 0xb6, 0xbb, + 0x06, 0xc7, 0xae, 0x08, 0xfe, 0xb5, 0x4b, 0xfb, 0x26, 0x4f, 0xb3, 0x2e, + 0xf6, 0x53, 0xdf, 0x35, 0x9c, 0xe7, 0x29, 0x4f, 0xf7, 0x8b, 0x53, 0x48, + 0xc2, 0x31, 0x87, 0xee, 0xd9, 0xaa, 0xba, 0xf5, 0xb0, 0x60, 0xad, 0x90, + 0x0f, 0xbd, 0x6a, 0xc3, 0xae, 0x59, 0x48, 0xa3, 0x6c, 0x91, 0xa8, 0xc6, + 0x30, 0x47, 0x5a, 0xf3, 0xeb, 0x9b, 0x61, 0x04, 0xdc, 0xa2, 0xb3, 0x76, + 0xc8, 0xa8, 0x63, 0x6c, 0xb1, 0xda, 0xc5, 0x73, 0xd8, 0x1c, 0x53, 0xe4, + 0xbe, 0xc4, 0xf3, 0x25, 0xb9, 0xea, 0x56, 0xf2, 0x58, 0xcb, 0xbf, 0x26, + 0x36, 0xcf, 0x6e, 0xd5, 0x6e, 0xd2, 0x25, 0xc9, 0x00, 0x80, 0xbd, 0x80, + 0x35, 0xe5, 0x6d, 0xf6, 0x95, 0x1b, 0xa3, 0xb9, 0x61, 0x81, 0xd3, 0x39, + 0xab, 0x96, 0x9a, 0xa6, 0xa5, 0x14, 0x28, 0x56, 0x71, 0x9e, 0xc2, 0x8e, + 0x47, 0xd8, 0x7c, 0xeb, 0x6b, 0x9e, 0x94, 0xf6, 0xe8, 0xb2, 0x31, 0x11, + 0x07, 0x07, 0xe9, 0x55, 0xe5, 0xd3, 0xad, 0x67, 0x4f, 0x9a, 0xdc, 0x2b, + 0x01, 0xc3, 0x63, 0x04, 0x7e, 0x35, 0xcc, 0xc1, 0xab, 0xea, 0xe8, 0x3c, + 0xd6, 0x80, 0x38, 0x23, 0x92, 0x08, 0xcd, 0x5e, 0xb4, 0xf1, 0x42, 0x15, + 0x09, 0x70, 0x19, 0x64, 0xee, 0x48, 0x35, 0x0d, 0x58, 0xa4, 0x58, 0x62, + 0x74, 0xeb, 0x46, 0x9c, 0xdc, 0xca, 0x0a, 0x9e, 0x30, 0xd9, 0x20, 0x7b, + 0x53, 0xa0, 0xf1, 0x3c, 0xdb, 0x54, 0x47, 0x72, 0x92, 0x73, 0xc8, 0x94, + 0x60, 0xfe, 0x75, 0x73, 0x46, 0xd7, 0x74, 0xc9, 0x9e, 0x41, 0x23, 0x44, + 0x41, 0xe3, 0x76, 0x33, 0xf8, 0x1a, 0xd3, 0x93, 0x45, 0xd0, 0xf5, 0x38, + 0xd8, 0xac, 0x10, 0x12, 0x7f, 0x8e, 0x2c, 0x02, 0x3f, 0x2a, 0xd2, 0x14, + 0xaa, 0xc9, 0x5e, 0x9c, 0xbe, 0x44, 0x4a, 0xa5, 0x38, 0xbb, 0x4e, 0x2f, + 0xd4, 0xca, 0x96, 0xf9, 0x2e, 0x65, 0x37, 0x12, 0x2e, 0xc7, 0x6e, 0x32, + 0x39, 0x15, 0x66, 0x3b, 0xdb, 0x57, 0x89, 0x54, 0x48, 0xa7, 0x1d, 0x47, + 0x71, 0x58, 0x73, 0x68, 0x51, 0xd8, 0x6a, 0xf3, 0x44, 0x97, 0x12, 0xb4, + 0x29, 0x82, 0xb9, 0x6e, 0x79, 0x00, 0xf2, 0x45, 0x6c, 0xc7, 0xa5, 0x40, + 0xb1, 0xef, 0x55, 0xea, 0x39, 0x23, 0xbd, 0x65, 0x06, 0xf9, 0x9f, 0x32, + 0xd7, 0xa9, 0xb5, 0x48, 0xfb, 0xaa, 0xcf, 0x4e, 0x81, 0x7f, 0xe1, 0xeb, + 0xd3, 0x23, 0xdc, 0x58, 0xdc, 0xab, 0x6e, 0xe7, 0xca, 0x23, 0x1f, 0x91, + 0xaa, 0xda, 0x7e, 0xa5, 0xa9, 0xdb, 0x5c, 0x1b, 0x7b, 0xa8, 0x1c, 0x94, + 0x38, 0x6e, 0x73, 0x8f, 0xf3, 0xed, 0x55, 0x20, 0xd6, 0xae, 0x6c, 0x6f, + 0xde, 0x08, 0x6e, 0x30, 0x88, 0xd8, 0xf2, 0xe6, 0x19, 0x1f, 0x81, 0xea, + 0x2a, 0xeb, 0x5f, 0x4b, 0x35, 0xd6, 0xf9, 0xa3, 0x28, 0xd2, 0x7f, 0x1a, + 0xf2, 0xbf, 0xa5, 0x5c, 0xaa, 0x47, 0xe2, 0xa4, 0xda, 0x7d, 0x4c, 0xe3, + 0x4d, 0xfc, 0x35, 0x56, 0x9d, 0x0d, 0xff, 0x00, 0xed, 0x4b, 0x78, 0xad, + 0xfc, 0xd9, 0x98, 0xa0, 0x1d, 0x72, 0x09, 0xc5, 0x26, 0x9f, 0xad, 0xe9, + 0xda, 0xa3, 0xba, 0x59, 0xdd, 0x24, 0xac, 0x80, 0x16, 0x03, 0xb6, 0x6a, + 0x28, 0x5a, 0x37, 0x8f, 0x00, 0xab, 0xe7, 0xb5, 0x63, 0xdd, 0xe8, 0xf6, + 0x76, 0x97, 0x26, 0xf6, 0x08, 0x56, 0x29, 0xc8, 0x39, 0x28, 0x31, 0xcd, + 0x75, 0x43, 0x12, 0xfa, 0x9c, 0xb3, 0xa0, 0xba, 0x1d, 0x6d, 0x26, 0x2b, + 0x2a, 0xcb, 0x52, 0x73, 0x6e, 0xaf, 0x29, 0x0c, 0xb8, 0x19, 0x61, 0xc1, + 0x1f, 0x85, 0x6a, 0xc5, 0x2c, 0x73, 0x20, 0x64, 0x60, 0xc0, 0xf7, 0x06, + 0xba, 0xe3, 0x38, 0xcb, 0x63, 0x9a, 0x50, 0x71, 0xdc, 0x31, 0x49, 0x8a, + 0x7e, 0x28, 0xc5, 0x5d, 0xc8, 0xb0, 0xcc, 0x52, 0x62, 0x9f, 0x8a, 0x31, + 0x45, 0xc2, 0xc3, 0x31, 0x49, 0x8a, 0x7e, 0x28, 0xc5, 0x3b, 0x81, 0x1e, + 0x29, 0x31, 0x52, 0x62, 0x93, 0x14, 0x5c, 0x06, 0x62, 0x93, 0x14, 0xfc, + 0x52, 0x62, 0x9d, 0xc4, 0x33, 0x14, 0x11, 0xc5, 0x3b, 0x14, 0x86, 0x98, + 0x0d, 0xdc, 0xbe, 0xa2, 0x8c, 0x83, 0xde, 0xa8, 0x5e, 0x5b, 0xdc, 0x49, + 0x6e, 0x56, 0x29, 0x8e, 0xec, 0x71, 0x9e, 0x94, 0xdb, 0x0b, 0x6b, 0xc5, + 0x84, 0x25, 0xcc, 0xa1, 0xb1, 0xd0, 0x80, 0x47, 0xf5, 0xae, 0x4f, 0xad, + 0xae, 0xc7, 0x4f, 0xd5, 0xfc, 0xcd, 0x1a, 0x29, 0x82, 0x12, 0x38, 0x2d, + 0x9a, 0x46, 0x56, 0x0d, 0xb4, 0x4b, 0x83, 0xe9, 0x91, 0x56, 0xb1, 0x50, + 0x25, 0xd0, 0x7d, 0xc7, 0xd2, 0x53, 0x48, 0x91, 0x71, 0x81, 0xb8, 0x53, + 0x04, 0xa4, 0xbe, 0xc6, 0x47, 0x53, 0xea, 0x47, 0x15, 0xac, 0x6a, 0xc2, + 0x4e, 0xc9, 0x99, 0xba, 0x52, 0x5a, 0x92, 0x52, 0x51, 0xf4, 0xa4, 0xad, + 0x8c, 0xc4, 0xa4, 0x34, 0xb4, 0xd6, 0x21, 0x46, 0x4d, 0x31, 0x01, 0xac, + 0x0d, 0x77, 0xc5, 0x9a, 0x5e, 0x83, 0x1b, 0x7d, 0xa6, 0x6c, 0xca, 0x06, + 0x44, 0x69, 0xcb, 0x1a, 0xc5, 0xf1, 0x37, 0x8b, 0xda, 0x09, 0xa5, 0xb0, + 0xb2, 0x75, 0xde, 0x38, 0x69, 0x41, 0xce, 0x3d, 0x87, 0xbd, 0x70, 0xb7, + 0xda, 0x47, 0xf6, 0xa2, 0xad, 0xdc, 0x92, 0xbb, 0x33, 0x36, 0x0e, 0x5b, + 0x24, 0xd7, 0x35, 0x6c, 0x4a, 0xa7, 0xa4, 0x75, 0x66, 0xf4, 0xe8, 0xf3, + 0x6a, 0xcb, 0x57, 0x9f, 0x12, 0x2f, 0xf5, 0x7d, 0x4e, 0x3b, 0x6b, 0x78, + 0xcc, 0x36, 0xee, 0xf8, 0xda, 0x3e, 0xf1, 0x1e, 0xe6, 0xb6, 0xe3, 0xb5, + 0xdd, 0x14, 0x84, 0x0c, 0x16, 0x5e, 0xac, 0x6b, 0x9d, 0xb5, 0x5b, 0x0f, + 0x0f, 0xc6, 0x44, 0x16, 0xa9, 0x71, 0x79, 0x27, 0x49, 0x1c, 0xe7, 0x60, + 0xf6, 0xa6, 0x7d, 0xa3, 0x54, 0xbc, 0x8b, 0x99, 0x8e, 0x0f, 0x45, 0x02, + 0xb8, 0x2a, 0x4e, 0x53, 0xd5, 0xbb, 0x9d, 0x70, 0x4a, 0x3a, 0x12, 0xde, + 0x4b, 0x6f, 0x6f, 0x30, 0x90, 0xa6, 0xf0, 0x9f, 0x2b, 0x30, 0x38, 0x1f, + 0x41, 0xeb, 0x50, 0x9f, 0x14, 0xc8, 0xb7, 0x11, 0x18, 0xa0, 0x06, 0x28, + 0xc8, 0x21, 0x5b, 0xa1, 0xac, 0x9b, 0xa8, 0x65, 0x85, 0xb1, 0x2a, 0x3b, + 0x31, 0xe4, 0x7b, 0xd6, 0xb6, 0x89, 0xe0, 0x9d, 0x53, 0x5c, 0x8c, 0x5d, + 0x5c, 0x3a, 0x58, 0x58, 0xf5, 0x12, 0x49, 0xd5, 0x87, 0xb0, 0xac, 0x60, + 0xa7, 0x55, 0xf2, 0xc5, 0x15, 0x29, 0xa8, 0x7b, 0xcd, 0x9b, 0x57, 0xbe, + 0x3f, 0xbe, 0x7b, 0x72, 0x96, 0xb1, 0x45, 0x00, 0x3c, 0x64, 0x72, 0x6b, + 0x98, 0x92, 0xe2, 0xf7, 0x56, 0x97, 0xcc, 0xba, 0x9a, 0x49, 0x48, 0xe3, + 0xe6, 0x6a, 0x35, 0x1d, 0x31, 0xe0, 0xd4, 0xda, 0xce, 0xd4, 0x89, 0x42, + 0xb6, 0xc4, 0x71, 0xd1, 0xfe, 0x95, 0x62, 0x7d, 0x13, 0x54, 0xd2, 0x2d, + 0x7e, 0xd1, 0x76, 0x36, 0x0e, 0xcb, 0xd6, 0xb4, 0x51, 0x85, 0x37, 0x62, + 0x5c, 0xa7, 0x51, 0x5c, 0x8d, 0x74, 0xb5, 0x3b, 0x5b, 0x78, 0xf3, 0x09, + 0xe0, 0x11, 0x56, 0xe5, 0x81, 0x60, 0xb7, 0x60, 0x59, 0x41, 0xc7, 0x52, + 0x45, 0x73, 0xd2, 0x6a, 0xf7, 0x8d, 0x23, 0x6c, 0x91, 0x55, 0x71, 0xd2, + 0xab, 0xb4, 0xd3, 0xb5, 0xbb, 0x3c, 0x8e, 0x4e, 0x41, 0xc0, 0xcd, 0x5f, + 0x32, 0xe8, 0x67, 0xca, 0xfa, 0x9b, 0xa9, 0x73, 0x6b, 0x34, 0x2b, 0x0a, + 0x39, 0x9a, 0x42, 0x31, 0x88, 0x86, 0x4d, 0x6f, 0x69, 0x9e, 0x15, 0xb8, + 0xbd, 0x8f, 0x2f, 0x13, 0x46, 0x83, 0x9c, 0x1e, 0x1a, 0xb9, 0x7f, 0x01, + 0xc4, 0xf2, 0x78, 0x86, 0x10, 0x89, 0x93, 0xd7, 0xa7, 0x5a, 0xf7, 0x48, + 0xa0, 0x28, 0x49, 0xc7, 0xe0, 0x6b, 0x92, 0xb5, 0x5a, 0x91, 0x76, 0x47, + 0x5d, 0x2a, 0x70, 0x92, 0xbb, 0x39, 0x9b, 0x2f, 0x05, 0x58, 0xaf, 0x32, + 0x45, 0xbb, 0x8f, 0xe3, 0x6c, 0xff, 0x00, 0x2a, 0xe5, 0xfc, 0x49, 0xa3, + 0xa6, 0x85, 0x2a, 0x18, 0x6e, 0x7e, 0x59, 0x09, 0xc2, 0x9e, 0xd5, 0xea, + 0x68, 0x57, 0x71, 0xe9, 0x5e, 0x6f, 0xf1, 0x1e, 0x42, 0x97, 0x70, 0x02, + 0x14, 0x8d, 0xb9, 0xfa, 0x56, 0x30, 0x6e, 0x73, 0x57, 0x66, 0xb2, 0x51, + 0x84, 0x5d, 0x91, 0xc8, 0x24, 0xeb, 0x71, 0x2e, 0xd9, 0x98, 0x9e, 0x7a, + 0xe4, 0xd3, 0x6f, 0x2e, 0xfe, 0xc4, 0x9f, 0xb9, 0x40, 0x47, 0xab, 0x0c, + 0xd5, 0x51, 0x30, 0xce, 0x47, 0x1f, 0x4a, 0xb3, 0x1c, 0x5f, 0x69, 0xb3, + 0xb9, 0x2d, 0xc9, 0x02, 0xba, 0x9c, 0x3b, 0x1c, 0xca, 0x65, 0x64, 0xd7, + 0xef, 0xb0, 0x42, 0x48, 0x91, 0x83, 0xfd, 0xd4, 0x14, 0xf5, 0xd7, 0x75, + 0x15, 0x25, 0x9a, 0xfa, 0x4f, 0xe5, 0x5d, 0x1f, 0x86, 0xbe, 0x18, 0x3e, + 0xbd, 0xa6, 0xc5, 0xa8, 0x4d, 0x7e, 0xd0, 0x45, 0x26, 0x76, 0xaa, 0xa6, + 0x49, 0xc7, 0x19, 0xae, 0xb6, 0xcb, 0xe1, 0x06, 0x87, 0x12, 0x01, 0x73, + 0x3d, 0xd5, 0xc3, 0x67, 0xa9, 0x7d, 0xa3, 0xf2, 0x15, 0xac, 0x30, 0x75, + 0x64, 0x93, 0xb9, 0x93, 0xaf, 0x05, 0xa1, 0xe6, 0x3f, 0xdb, 0xf7, 0x7d, + 0x4d, 0xeb, 0x9f, 0xf8, 0x15, 0x32, 0x4d, 0x6a, 0xe6, 0x42, 0x0f, 0xda, + 0xa4, 0xc8, 0xe9, 0x86, 0xaf, 0x5e, 0xff, 0x00, 0x85, 0x4f, 0xe1, 0x95, + 0x3f, 0xf1, 0xed, 0x31, 0x1f, 0xf5, 0xd9, 0xbf, 0xc6, 0xac, 0xaf, 0xc2, + 0x9f, 0x0b, 0x18, 0x89, 0xfb, 0x14, 0xa0, 0xe3, 0x82, 0x27, 0x7e, 0x3f, + 0x5a, 0xb7, 0x81, 0x9a, 0xfb, 0x4b, 0xf1, 0x21, 0x57, 0x85, 0xce, 0x17, + 0x49, 0x90, 0x5d, 0xd8, 0xa4, 0x97, 0x00, 0xb1, 0x3c, 0x16, 0x39, 0xce, + 0x6b, 0x4c, 0xed, 0x48, 0xc6, 0x1b, 0x23, 0xa0, 0x07, 0x8a, 0xa7, 0x6f, + 0x62, 0xb6, 0x97, 0x12, 0x47, 0x1b, 0x96, 0x8e, 0x37, 0x2a, 0xab, 0xbb, + 0xa8, 0x07, 0xad, 0x68, 0xcb, 0x66, 0xb3, 0x46, 0x0a, 0xe7, 0xd7, 0x93, + 0xd2, 0xb9, 0xf6, 0x76, 0x37, 0xd4, 0xce, 0xd4, 0x8c, 0xd0, 0xda, 0xbc, + 0xd1, 0xce, 0xff, 0x00, 0x2a, 0x9e, 0x23, 0xc0, 0xfd, 0x2b, 0x8f, 0x4f, + 0x12, 0x4e, 0x17, 0x61, 0xbc, 0x76, 0x03, 0xb1, 0xe6, 0xb7, 0x35, 0x68, + 0x6f, 0x23, 0x82, 0x40, 0x4e, 0x46, 0x3a, 0x83, 0xd4, 0x57, 0x53, 0xa4, + 0x7c, 0x38, 0xf0, 0xe4, 0xda, 0x55, 0xb4, 0xd3, 0xc1, 0x24, 0x92, 0x49, + 0x18, 0x62, 0xc6, 0x56, 0x1c, 0x91, 0xec, 0x6b, 0x5a, 0x58, 0x59, 0x57, + 0x6f, 0x95, 0xda, 0xc4, 0xce, 0xb2, 0xa6, 0xbd, 0xe3, 0xcf, 0x63, 0xf1, + 0x1c, 0xe3, 0x3b, 0x6e, 0x58, 0x0f, 0xa5, 0x4f, 0x0f, 0x88, 0x27, 0x69, + 0x0b, 0xb4, 0xe8, 0xe5, 0xba, 0x86, 0x50, 0x6b, 0xd0, 0x64, 0xf8, 0x5f, + 0xe1, 0xe6, 0x90, 0xec, 0x13, 0xa0, 0xc7, 0x41, 0x29, 0x3f, 0xce, 0xb3, + 0x2e, 0x3e, 0x12, 0x5a, 0x6e, 0xdd, 0x6d, 0xa9, 0x4a, 0xb9, 0x3c, 0x07, + 0x40, 0xd8, 0xfe, 0x55, 0x72, 0xcb, 0x2b, 0x74, 0x97, 0xe2, 0x4c, 0x71, + 0x94, 0x8c, 0x38, 0xf5, 0xe9, 0x30, 0x08, 0x82, 0xdc, 0xe3, 0xfd, 0x9c, + 0x57, 0xac, 0x78, 0x5f, 0x54, 0x87, 0x58, 0xd2, 0xe3, 0x97, 0xec, 0xa5, + 0x0f, 0xdd, 0xe4, 0xf0, 0x48, 0xf4, 0xaf, 0x22, 0xd5, 0xfc, 0x03, 0xa9, + 0x68, 0x6a, 0xb3, 0xfd, 0xaa, 0x39, 0x6d, 0x8b, 0x85, 0xca, 0xe4, 0x37, + 0x3e, 0xa3, 0xff, 0x00, 0xaf, 0x5e, 0xbd, 0xe1, 0x0b, 0x65, 0xb3, 0xf0, + 0xdd, 0x9c, 0x60, 0x72, 0x07, 0x27, 0xf1, 0x35, 0xc1, 0x52, 0x85, 0x4a, + 0x53, 0xb5, 0x43, 0xae, 0x9d, 0x58, 0x4e, 0x0f, 0x94, 0xd3, 0x9b, 0x44, + 0xd3, 0xee, 0x2e, 0x52, 0xe2, 0x4b, 0x71, 0xe6, 0xa7, 0xdd, 0x6a, 0x8e, + 0xe7, 0x48, 0xb3, 0x92, 0x36, 0x3e, 0x54, 0x60, 0xff, 0x00, 0x78, 0x0c, + 0x1a, 0xbc, 0x64, 0xc3, 0x7d, 0xf1, 0xf4, 0xa8, 0xa7, 0x60, 0xd1, 0x13, + 0x91, 0xf9, 0xd4, 0xb5, 0x14, 0xb4, 0x40, 0xaf, 0xd4, 0xf3, 0x3b, 0xf9, + 0x75, 0x3b, 0x2b, 0xc9, 0x96, 0x05, 0x32, 0xc6, 0x8c, 0x40, 0x07, 0x07, + 0x35, 0x5a, 0xdb, 0x58, 0x37, 0x87, 0xca, 0xba, 0xb2, 0x7b, 0x69, 0x3d, + 0xfe, 0x50, 0x7f, 0x3a, 0xb9, 0x7b, 0x76, 0xe6, 0xee, 0x76, 0x04, 0x70, + 0xe4, 0x0c, 0x7a, 0xd2, 0xac, 0x91, 0xdd, 0xc1, 0xb2, 0x64, 0x57, 0x35, + 0xac, 0x56, 0x8a, 0xe6, 0x4d, 0xea, 0x58, 0x81, 0xcc, 0x5c, 0x24, 0xac, + 0x33, 0xc6, 0x4f, 0x35, 0x7a, 0xdf, 0x7b, 0x4a, 0x0b, 0xe1, 0xc6, 0x3e, + 0xf5, 0x67, 0x7d, 0x96, 0x1c, 0x80, 0x87, 0xcb, 0x07, 0xa1, 0x43, 0x5d, + 0x1e, 0x8f, 0xe1, 0x45, 0xc0, 0xba, 0x92, 0xee, 0x67, 0xdc, 0xbf, 0xea, + 0xc9, 0xc2, 0x8a, 0x52, 0xd3, 0x41, 0xad, 0x4a, 0xab, 0x34, 0xaa, 0xe4, + 0xa6, 0x54, 0xfa, 0x8a, 0x27, 0x94, 0xdd, 0x94, 0x8e, 0xe4, 0x12, 0x07, + 0x43, 0x8a, 0xd9, 0xb8, 0xd0, 0x5d, 0x01, 0xf2, 0x5f, 0x9f, 0xf6, 0xba, + 0x7e, 0x75, 0xcd, 0xdc, 0x4e, 0x6d, 0x6f, 0x5a, 0xd2, 0xe1, 0xb6, 0x4a, + 0xa3, 0x76, 0x18, 0xf5, 0x1e, 0xa3, 0xda, 0xb3, 0x76, 0xb8, 0xf5, 0xb1, + 0x91, 0xe2, 0x5b, 0x6b, 0x7d, 0x3d, 0xed, 0xee, 0x23, 0x2c, 0x19, 0x8e, + 0x32, 0x9c, 0x15, 0xac, 0xbf, 0x36, 0xd2, 0xea, 0x75, 0x95, 0xa4, 0x49, + 0x64, 0xc6, 0x4b, 0x4a, 0x3e, 0x6f, 0xd6, 0xb5, 0xfc, 0x43, 0xa4, 0xea, + 0x1a, 0xe6, 0x9e, 0xb2, 0x69, 0xa5, 0x24, 0x30, 0xb6, 0x4a, 0xee, 0xc1, + 0x6e, 0x3b, 0x57, 0x9f, 0x4b, 0x25, 0xd5, 0xad, 0xc3, 0x41, 0x73, 0x13, + 0xc5, 0x32, 0x9c, 0x15, 0x71, 0x82, 0x29, 0xcf, 0xda, 0xc6, 0x37, 0xb7, + 0xba, 0xc8, 0x8c, 0xa1, 0xcd, 0x6e, 0xa7, 0xa8, 0xc7, 0xaf, 0xdb, 0x19, + 0xad, 0xd2, 0x15, 0x31, 0xf9, 0x63, 0x0c, 0x00, 0xe0, 0x55, 0xdd, 0x67, + 0x5a, 0xb7, 0x8f, 0x4d, 0x69, 0xfc, 0xa4, 0x66, 0x8c, 0x83, 0x93, 0xe9, + 0xf5, 0xae, 0x27, 0x40, 0xfb, 0x66, 0xa6, 0x04, 0x12, 0x40, 0x4c, 0x5f, + 0xf3, 0xd8, 0xf0, 0x47, 0xf8, 0xd6, 0x9e, 0xa9, 0xa6, 0x4f, 0x1d, 0xbc, + 0x96, 0xb2, 0x16, 0x96, 0xd9, 0x86, 0x0b, 0x8e, 0xa2, 0x85, 0x26, 0xd1, + 0xa6, 0x86, 0x8d, 0x97, 0x88, 0x4c, 0xf2, 0x2b, 0xd9, 0xca, 0xa3, 0x8e, + 0x61, 0x7f, 0xbd, 0xf8, 0x57, 0x4b, 0xa6, 0xf8, 0x84, 0x09, 0x02, 0xcc, + 0x71, 0x9e, 0xa0, 0x9e, 0x86, 0xbc, 0xb3, 0x4f, 0xf0, 0xdd, 0xd8, 0xd4, + 0x23, 0x8e, 0x0b, 0xc0, 0x6d, 0xd8, 0xe4, 0x3e, 0x39, 0x5a, 0xef, 0xe6, + 0xd0, 0xd0, 0xda, 0x2b, 0xa4, 0xa4, 0xdc, 0xc6, 0x98, 0x2c, 0xdf, 0xc5, + 0x4a, 0x37, 0x5b, 0x8d, 0xb4, 0x76, 0xd6, 0xb7, 0x50, 0xdc, 0xc5, 0xe6, + 0x23, 0x02, 0x3d, 0x73, 0x44, 0x97, 0x49, 0x1f, 0x4e, 0x6b, 0x83, 0xd1, + 0xb5, 0x19, 0xb4, 0xf8, 0x2e, 0x21, 0x91, 0x1d, 0xa5, 0x03, 0x28, 0x30, + 0x70, 0x4d, 0x3a, 0xcc, 0xeb, 0x77, 0xb6, 0xa4, 0xdd, 0xc6, 0x7c, 0xc2, + 0xc4, 0xf0, 0xd8, 0x00, 0x56, 0xd7, 0x76, 0x33, 0xd2, 0xe7, 0x63, 0x25, + 0xd8, 0x7e, 0xac, 0xa0, 0x7a, 0x66, 0x98, 0xd3, 0x2a, 0x81, 0x8e, 0x7e, + 0x95, 0x8b, 0x16, 0x9b, 0x74, 0xe1, 0x44, 0x93, 0x73, 0xe8, 0x3a, 0x8a, + 0xd2, 0x87, 0x48, 0x65, 0x5c, 0x3c, 0xac, 0x57, 0xdc, 0xd2, 0x18, 0xb7, + 0x37, 0x41, 0x46, 0x43, 0xaf, 0x1d, 0x73, 0x54, 0xe6, 0xbe, 0x76, 0x52, + 0x11, 0xfa, 0x73, 0xc7, 0x39, 0xad, 0x43, 0x63, 0x04, 0x31, 0x10, 0xa8, + 0x0f, 0xa9, 0x23, 0x35, 0x87, 0x25, 0xfd, 0xb4, 0x6c, 0xe8, 0x5b, 0xe6, + 0x07, 0x1d, 0x29, 0xa7, 0x77, 0x60, 0x7a, 0x14, 0x5d, 0x67, 0x2e, 0xcf, + 0xfb, 0xe2, 0x4f, 0x38, 0x20, 0xe2, 0xb3, 0xef, 0xae, 0xae, 0x2d, 0x8a, + 0xf9, 0xc8, 0xe5, 0x8f, 0x40, 0x0d, 0x6c, 0xc9, 0xa9, 0x43, 0x12, 0x8d, + 0xce, 0x08, 0x3e, 0x86, 0xa9, 0x5e, 0xde, 0xdb, 0xb2, 0x09, 0xc4, 0x71, + 0xcc, 0x47, 0x40, 0xc7, 0x18, 0xab, 0xb0, 0xae, 0x67, 0xd9, 0x2d, 0xe5, + 0xf0, 0x90, 0x22, 0xba, 0xec, 0x19, 0xcb, 0x3d, 0x51, 0xb9, 0x86, 0xe5, + 0x66, 0x02, 0x58, 0x5c, 0xb7, 0xae, 0x78, 0x35, 0x2c, 0xfe, 0x27, 0x9a, + 0x38, 0x8c, 0x56, 0xf6, 0xf1, 0x44, 0x73, 0xf7, 0x81, 0xaa, 0x76, 0x9a, + 0x8d, 0xe5, 0xeb, 0xb7, 0x9e, 0xe0, 0x28, 0xe7, 0x73, 0x0c, 0xd5, 0x22, + 0x59, 0x1d, 0xfd, 0x98, 0x9d, 0x09, 0x75, 0x28, 0x50, 0x76, 0x26, 0xb9, + 0xf7, 0x36, 0x71, 0x4c, 0x63, 0x37, 0x2c, 0x24, 0x5f, 0x42, 0x4d, 0x75, + 0x13, 0x38, 0x93, 0x03, 0xcd, 0x40, 0x9d, 0xc9, 0x1c, 0x9a, 0xe2, 0xb5, + 0x78, 0x23, 0x8f, 0x55, 0x06, 0x1e, 0xae, 0x3e, 0x6f, 0x7a, 0x6d, 0xb4, + 0xb4, 0x14, 0x55, 0xe5, 0x66, 0x4c, 0xf7, 0x2e, 0xbc, 0x46, 0xcc, 0x47, + 0xab, 0x1a, 0xad, 0x2e, 0xaa, 0x23, 0x89, 0x94, 0x4e, 0x16, 0x6c, 0xf4, + 0x73, 0x5b, 0xfa, 0x2f, 0x85, 0x6f, 0x35, 0x6b, 0x97, 0x8a, 0x46, 0x36, + 0xa1, 0x10, 0x3f, 0xce, 0xbc, 0x90, 0x7a, 0x60, 0x7e, 0x15, 0x16, 0xb1, + 0xf0, 0xc6, 0xee, 0xc6, 0x2b, 0x8d, 0x45, 0xaf, 0x61, 0x9e, 0x38, 0xd4, + 0xbb, 0x02, 0x0a, 0x9c, 0x0f, 0x4a, 0xaa, 0x74, 0x2b, 0xc9, 0x73, 0xb5, + 0xa0, 0xaa, 0x55, 0xa5, 0x1f, 0x75, 0x3d, 0x4a, 0xba, 0x76, 0xb6, 0x76, + 0x44, 0xaf, 0x14, 0x6c, 0xa7, 0xef, 0x15, 0x7a, 0xe9, 0x05, 0xf6, 0x9f, + 0x22, 0x85, 0x46, 0x20, 0x9e, 0xbb, 0xbb, 0x57, 0x01, 0x05, 0xb8, 0xf3, + 0x8e, 0xcc, 0xed, 0xc0, 0xc6, 0x38, 0xad, 0x28, 0x11, 0x87, 0xde, 0xdd, + 0x8f, 0x6a, 0x1c, 0x44, 0xa4, 0x6e, 0xde, 0x5d, 0x5a, 0xc2, 0xde, 0x52, + 0xca, 0xef, 0x9e, 0x98, 0x04, 0xd7, 0x3b, 0x7d, 0x66, 0xd7, 0x7a, 0x82, + 0x2a, 0x1d, 0xad, 0x2f, 0x0b, 0xbc, 0x6d, 0xfc, 0xcd, 0x5d, 0x21, 0xc1, + 0x0c, 0x3e, 0x63, 0xeb, 0x52, 0xf9, 0xd2, 0xf2, 0x64, 0x55, 0x6f, 0x4a, + 0x12, 0xee, 0x3e, 0x6e, 0xc2, 0x4b, 0xf0, 0xeb, 0x5d, 0x48, 0x1e, 0x52, + 0x2d, 0xb0, 0xaa, 0x58, 0x8f, 0x37, 0x9c, 0x57, 0x1d, 0x2c, 0x86, 0x17, + 0x31, 0x81, 0xfb, 0xcf, 0x4c, 0x57, 0x49, 0x7f, 0x77, 0xaa, 0xcc, 0xcc, + 0x17, 0x50, 0xb8, 0x58, 0x88, 0xc7, 0x94, 0x24, 0x60, 0xb8, 0xfa, 0x66, + 0xb1, 0x9e, 0x32, 0x24, 0x0c, 0xf1, 0x02, 0xc3, 0xa9, 0x1d, 0x4d, 0x6b, + 0x3f, 0x67, 0xa7, 0x2a, 0x21, 0x4a, 0x7a, 0xa9, 0x32, 0x3b, 0x67, 0x9f, + 0x20, 0x95, 0xe3, 0x3d, 0xeb, 0xa3, 0xb2, 0x94, 0xa0, 0x57, 0x20, 0x8c, + 0xe3, 0xa7, 0x6a, 0xca, 0x81, 0x98, 0x90, 0x15, 0x71, 0xfe, 0xf0, 0xab, + 0x61, 0xa4, 0x45, 0xe5, 0x78, 0xcf, 0x55, 0xac, 0xde, 0xa3, 0x46, 0xe9, + 0xb9, 0x12, 0xe7, 0x2c, 0x01, 0x1d, 0xa9, 0xca, 0xb1, 0x39, 0xff, 0x00, + 0x58, 0x55, 0xbb, 0x10, 0x6b, 0x21, 0x27, 0x24, 0x0f, 0x98, 0x67, 0xde, + 0xb2, 0xb5, 0xc9, 0x5c, 0x49, 0x0b, 0x2b, 0x15, 0x18, 0x23, 0x83, 0x59, + 0x4a, 0x37, 0x35, 0x8b, 0x37, 0x75, 0x2f, 0x3d, 0x15, 0x57, 0x7a, 0xb8, + 0x2d, 0x8c, 0x9e, 0x31, 0x4d, 0xfb, 0x33, 0xde, 0x5a, 0xc8, 0x97, 0x2f, + 0xe6, 0x85, 0xe0, 0x2f, 0x41, 0x5c, 0xc5, 0xa5, 0xec, 0xf3, 0x4c, 0xb1, + 0x19, 0x5d, 0x97, 0xd0, 0x9a, 0xd8, 0x1a, 0xbc, 0x1a, 0x7a, 0x17, 0x9d, + 0xf2, 0x70, 0x40, 0x50, 0x79, 0xac, 0x9c, 0x6c, 0x69, 0x7d, 0x4c, 0xff, + 0x00, 0xb1, 0x5a, 0x5a, 0x5c, 0x3e, 0xc8, 0x86, 0x47, 0x40, 0x7b, 0x53, + 0x67, 0xbc, 0x36, 0xf1, 0x65, 0xc8, 0x53, 0xfd, 0xdc, 0xe0, 0xd6, 0x5d, + 0xee, 0xbd, 0x2d, 0xd4, 0x8e, 0x20, 0x8c, 0x26, 0xe3, 0xf7, 0xb1, 0x96, + 0xaa, 0xd0, 0xd8, 0xdc, 0x5d, 0x30, 0x77, 0x27, 0x1e, 0xac, 0x6b, 0x44, + 0xac, 0xb5, 0x33, 0xe6, 0xd7, 0xdd, 0x3b, 0xfb, 0x3b, 0xab, 0x9f, 0xb3, + 0xdb, 0x8f, 0x20, 0x1c, 0x2e, 0x46, 0x0e, 0x49, 0xaa, 0xd7, 0x5a, 0xa9, + 0x9e, 0xec, 0x43, 0x34, 0x3b, 0x00, 0x38, 0xe9, 0xc8, 0x35, 0x2e, 0x9d, + 0x38, 0x82, 0x3b, 0x78, 0x86, 0x0e, 0x57, 0x1b, 0xb3, 0xc8, 0xaa, 0xba, + 0x9a, 0x99, 0x6f, 0x80, 0x8d, 0x97, 0x7e, 0x7a, 0x8e, 0xb5, 0x14, 0xf7, + 0xd4, 0xba, 0x8f, 0x42, 0xe6, 0x08, 0xc1, 0x0e, 0x1b, 0xd7, 0xd6, 0xad, + 0xd9, 0x0f, 0xdf, 0x28, 0xda, 0x48, 0x1e, 0xdc, 0xd6, 0x2a, 0xc9, 0x2a, + 0x95, 0x2c, 0xb9, 0x7e, 0x84, 0xfa, 0xd6, 0xa5, 0xad, 0xe7, 0x97, 0x74, + 0x80, 0x2b, 0x6f, 0xf4, 0x15, 0xab, 0xd8, 0xcd, 0x6e, 0x4d, 0x75, 0x34, + 0xe1, 0x8a, 0xc3, 0x1b, 0x29, 0x3d, 0xcd, 0x44, 0xb1, 0x38, 0x7d, 0xd2, + 0xcc, 0x73, 0x8e, 0x8b, 0x5a, 0xa0, 0xf9, 0xed, 0xf3, 0x60, 0x1c, 0x56, + 0x65, 0xd4, 0xcf, 0xf6, 0x93, 0x0c, 0x70, 0xf0, 0x38, 0x2c, 0x2b, 0x06, + 0xd9, 0xb2, 0x44, 0xcf, 0x26, 0xd8, 0xf0, 0x0e, 0x3e, 0xb4, 0xe1, 0x3a, + 0x3e, 0x9e, 0xa0, 0xb2, 0xe4, 0x31, 0x27, 0x9a, 0xa7, 0x71, 0x14, 0x26, + 0x22, 0x70, 0xec, 0xde, 0xa5, 0xba, 0x51, 0x60, 0x88, 0x8c, 0xbb, 0x53, + 0x23, 0xa9, 0x03, 0xbd, 0x09, 0x75, 0x1b, 0x97, 0x42, 0x48, 0xe5, 0x13, + 0x02, 0x15, 0xb6, 0xaf, 0xb8, 0x38, 0x34, 0xf8, 0xbf, 0xd7, 0x6d, 0xda, + 0xcc, 0x4f, 0x4d, 0xa3, 0x8a, 0xb0, 0xed, 0x2b, 0x9d, 0xa9, 0x10, 0x50, + 0x7a, 0x0e, 0xd4, 0xf1, 0x71, 0x24, 0x41, 0x37, 0x28, 0x53, 0x9f, 0xe1, + 0xa5, 0x60, 0xe6, 0xb2, 0x27, 0x4b, 0x9b, 0x9d, 0x3d, 0xb7, 0x24, 0x8d, + 0x09, 0x24, 0x36, 0x03, 0x00, 0x78, 0x3c, 0x55, 0x87, 0xf1, 0x3e, 0xb7, + 0x23, 0xbb, 0x1b, 0xe9, 0x70, 0x0e, 0x46, 0x1b, 0x1f, 0xca, 0xb5, 0x97, + 0xc3, 0x87, 0x57, 0xf0, 0xba, 0x5d, 0xc7, 0x81, 0x7d, 0xe6, 0xfc, 0x8e, + 0xc7, 0x23, 0x19, 0xc6, 0x0d, 0x50, 0xd3, 0xfc, 0x29, 0xaa, 0x5f, 0xbb, + 0x62, 0x68, 0xe3, 0x11, 0xcb, 0xe5, 0x33, 0x1e, 0x06, 0x73, 0x8a, 0x87, + 0x5a, 0x70, 0x7c, 0xb0, 0xea, 0x68, 0xa9, 0xa9, 0xab, 0xcb, 0xa0, 0xf1, + 0xad, 0x6a, 0x52, 0x45, 0x95, 0xd4, 0x6e, 0x54, 0xf6, 0x60, 0x5a, 0xa8, + 0x5e, 0x6a, 0x13, 0x5d, 0x10, 0xb7, 0x57, 0x53, 0x4c, 0xc3, 0xf8, 0x9f, + 0x27, 0x1f, 0x9d, 0x76, 0xbf, 0xf0, 0xae, 0x64, 0xf2, 0x94, 0x36, 0xb5, + 0x28, 0x6e, 0xe1, 0x63, 0x18, 0xac, 0x6f, 0x10, 0xf8, 0x15, 0xb4, 0x8d, + 0x35, 0xb5, 0x18, 0xf5, 0x37, 0x98, 0xc4, 0xc3, 0x7a, 0x3a, 0x01, 0x90, + 0x4e, 0x38, 0xfc, 0xc5, 0x6a, 0xe1, 0x8a, 0x6a, 0xf2, 0x5a, 0x19, 0xc6, + 0x78, 0x7b, 0xd9, 0x33, 0x0e, 0x3b, 0x54, 0xda, 0xac, 0x25, 0x18, 0x3d, + 0x73, 0xc5, 0x4a, 0x6d, 0x15, 0x11, 0xa4, 0xdc, 0x08, 0x03, 0x3c, 0x03, + 0x45, 0xbc, 0xca, 0x60, 0x2c, 0xdf, 0x81, 0xc5, 0x5a, 0xb6, 0x74, 0xbb, + 0xb9, 0x82, 0xcc, 0x9d, 0xbf, 0x68, 0x71, 0x18, 0x61, 0xdb, 0x27, 0x19, + 0xa5, 0xca, 0xfa, 0x0f, 0x9c, 0xa3, 0x14, 0xb3, 0xf9, 0x58, 0x17, 0x72, + 0xc7, 0xf4, 0x1d, 0x2a, 0xd2, 0x6a, 0x77, 0x96, 0xe3, 0x11, 0xeb, 0x17, + 0x2b, 0xec, 0x01, 0x02, 0xba, 0xa6, 0xf8, 0x6b, 0x6a, 0x23, 0xc2, 0xea, + 0x97, 0x20, 0xfa, 0x95, 0x06, 0xab, 0x4b, 0xf0, 0xc8, 0xf9, 0x27, 0xca, + 0xd5, 0xdf, 0x77, 0xfb, 0x51, 0xf1, 0xfc, 0xe8, 0xf6, 0x38, 0xc4, 0xf6, + 0x17, 0xb5, 0xc3, 0x3e, 0xbf, 0xd7, 0xdc, 0x73, 0xd3, 0xf8, 0x9b, 0x50, + 0x92, 0x16, 0xb7, 0xb8, 0xbf, 0x32, 0xc2, 0x78, 0x3b, 0xb7, 0x73, 0xf5, + 0xa6, 0x1b, 0x9b, 0xe7, 0x45, 0x68, 0x84, 0x6d, 0x10, 0x19, 0x00, 0x83, + 0x93, 0x5a, 0x1a, 0x87, 0xc3, 0xed, 0x47, 0x4f, 0xb3, 0x92, 0xe4, 0x5e, + 0xc3, 0x2c, 0x71, 0x7c, 0xcc, 0xa4, 0x10, 0x48, 0xef, 0x55, 0x64, 0x22, + 0x24, 0x0a, 0xbd, 0xa9, 0x7e, 0xf7, 0x9b, 0x96, 0xaa, 0xb1, 0x5f, 0xbb, + 0xe5, 0xbc, 0x1d, 0xcc, 0xe9, 0x6f, 0x84, 0x72, 0x2b, 0xcb, 0x6b, 0xbb, + 0x8e, 0x9d, 0x71, 0x50, 0x0b, 0xcd, 0x3a, 0x57, 0x26, 0x6b, 0x59, 0x62, + 0xc8, 0xea, 0xa3, 0x35, 0x34, 0xd3, 0xc7, 0x23, 0x0d, 0xd9, 0x1f, 0x5a, + 0xab, 0xe5, 0x82, 0x49, 0x18, 0x35, 0xbc, 0x69, 0xb3, 0x09, 0x4d, 0x16, + 0x13, 0xfb, 0x3e, 0xe2, 0x42, 0x91, 0x5c, 0x95, 0xc0, 0xfe, 0x3e, 0x0d, + 0x30, 0x59, 0x9d, 0xa5, 0xa0, 0xb9, 0x12, 0x00, 0x78, 0xc1, 0xaa, 0x13, + 0xa7, 0xa2, 0x81, 0x8e, 0xd5, 0x12, 0xe1, 0x54, 0x16, 0x04, 0x13, 0xdf, + 0xd2, 0xaa, 0xd2, 0x5b, 0x32, 0x6f, 0x17, 0xd0, 0xdd, 0x8e, 0xfa, 0xfe, + 0xd8, 0xfc, 0xd1, 0x16, 0xdb, 0xea, 0x2a, 0xdd, 0xae, 0xb4, 0xaf, 0x7a, + 0xb2, 0x4b, 0x6f, 0x8e, 0x36, 0x91, 0x8e, 0x2b, 0x0e, 0xdb, 0x51, 0xbf, + 0xb7, 0x6c, 0x45, 0x36, 0xf0, 0x78, 0xda, 0xfc, 0xd4, 0x91, 0xdc, 0xcc, + 0x66, 0x06, 0x6b, 0x74, 0x2b, 0xce, 0x76, 0xf1, 0x49, 0xdf, 0xaa, 0x1a, + 0xb7, 0x73, 0xa3, 0xba, 0xb7, 0xb5, 0x8e, 0x01, 0x71, 0x6d, 0x6c, 0x4e, + 0xe3, 0x92, 0x63, 0xcf, 0x07, 0xf0, 0xaa, 0xd1, 0x6a, 0x32, 0xa2, 0xfe, + 0xe6, 0xe9, 0x95, 0x81, 0xfb, 0xae, 0x32, 0x3f, 0x4e, 0x6b, 0x47, 0xc3, + 0x9e, 0x2a, 0xb1, 0xd1, 0xa5, 0x71, 0x3a, 0x31, 0x8d, 0x86, 0x32, 0x07, + 0xcc, 0xbf, 0x9f, 0x6a, 0xea, 0x51, 0xbc, 0x29, 0xe2, 0x45, 0x5f, 0xdd, + 0xdb, 0xf9, 0x87, 0x9e, 0x3f, 0x76, 0xf9, 0xfa, 0x8c, 0x67, 0xf5, 0xa9, + 0xf6, 0x32, 0x96, 0xb0, 0x96, 0xbd, 0x99, 0x5e, 0xd6, 0x31, 0xd2, 0x4b, + 0x4e, 0xe8, 0xe5, 0xed, 0xb5, 0x87, 0x71, 0x9b, 0x88, 0xf7, 0xa8, 0x3f, + 0x31, 0x4e, 0x73, 0xfd, 0x6b, 0xa0, 0xd3, 0xb5, 0xdb, 0x3b, 0xc8, 0xc0, + 0x59, 0x94, 0x10, 0x70, 0x41, 0xed, 0x5c, 0xed, 0xe6, 0x8d, 0x6d, 0x65, + 0xaa, 0xdd, 0x5b, 0xc3, 0x74, 0xd2, 0xc5, 0x18, 0xca, 0xfc, 0xc3, 0x23, + 0x8c, 0xe0, 0xe2, 0x9b, 0x69, 0x69, 0x69, 0x3c, 0x2a, 0x84, 0x18, 0xe4, + 0xfe, 0xf6, 0x39, 0xfc, 0xeb, 0x18, 0x4a, 0x57, 0x69, 0xad, 0x51, 0xbc, + 0xe2, 0x92, 0x4d, 0x3d, 0x19, 0xe8, 0x37, 0x7a, 0x46, 0x99, 0xab, 0x47, + 0xba, 0x58, 0x63, 0x66, 0x23, 0x89, 0x53, 0x86, 0xfc, 0xc5, 0x72, 0xd6, + 0xfa, 0x6b, 0x5a, 0xdf, 0x4f, 0x6e, 0xb7, 0x2e, 0xc8, 0xae, 0x54, 0x02, + 0x7b, 0x67, 0xbd, 0x66, 0xdb, 0xde, 0xbd, 0xad, 0xe1, 0x11, 0x5f, 0xc8, + 0x02, 0xfc, 0xa5, 0x73, 0xb7, 0xf5, 0xef, 0x57, 0x1b, 0x53, 0x41, 0x74, + 0xb1, 0xcc, 0xa5, 0x5d, 0xce, 0x77, 0x9f, 0xe2, 0xad, 0x2b, 0x38, 0x55, + 0xb3, 0x8a, 0xb3, 0x5b, 0x91, 0x47, 0x9a, 0x92, 0x6a, 0x4d, 0xb5, 0xd0, + 0xd5, 0xbc, 0xb3, 0x68, 0xe3, 0x49, 0x2d, 0x8b, 0x47, 0x22, 0x7f, 0x10, + 0xe8, 0x7e, 0xb5, 0x4d, 0xf5, 0xf5, 0x58, 0x96, 0xde, 0xfd, 0x4a, 0xcc, + 0xc0, 0x85, 0xe3, 0x86, 0x3f, 0x5a, 0xd9, 0x5b, 0xc8, 0x99, 0x14, 0x02, + 0x08, 0x23, 0xb5, 0x64, 0x6a, 0xb6, 0x69, 0x70, 0xcb, 0xc2, 0x91, 0xd8, + 0x62, 0xaa, 0xd6, 0x33, 0xbd, 0xf7, 0x2e, 0x69, 0xe9, 0xba, 0xcf, 0x8e, + 0x32, 0xd8, 0xc1, 0xa8, 0x2e, 0x35, 0x45, 0xd2, 0xf5, 0x14, 0x84, 0x1d, + 0x83, 0x00, 0xfb, 0x1a, 0x7c, 0x3a, 0x7c, 0xb0, 0xa2, 0x3d, 0x94, 0xa4, + 0x0c, 0x0c, 0xc4, 0xe7, 0x82, 0x7d, 0x8f, 0x6a, 0x4d, 0x56, 0xea, 0xdb, + 0x56, 0xb6, 0x82, 0xda, 0x7b, 0x66, 0x59, 0xe2, 0x90, 0x6e, 0xdc, 0x06, + 0x40, 0xc6, 0x38, 0xf6, 0x34, 0x5e, 0x49, 0x39, 0x27, 0x66, 0x82, 0x31, + 0x4d, 0xa8, 0xb5, 0xa1, 0xd1, 0xd9, 0xdf, 0x45, 0x77, 0x18, 0x2a, 0xc3, + 0x76, 0x32, 0x46, 0x6a, 0xdd, 0x72, 0x51, 0xf9, 0x1a, 0x7c, 0x0d, 0x70, + 0x87, 0x67, 0x97, 0xc6, 0x7d, 0x2a, 0xfb, 0x78, 0x96, 0xd2, 0xde, 0xcd, + 0x67, 0x6d, 0xd2, 0x29, 0xfe, 0x28, 0xf0, 0x47, 0xf3, 0xae, 0xca, 0x58, + 0x88, 0xc9, 0x5a, 0x5b, 0x9c, 0xd5, 0x70, 0xee, 0x2e, 0xf1, 0xd8, 0xde, + 0xc5, 0x26, 0x2a, 0x8d, 0x8e, 0xb3, 0x67, 0x7d, 0x00, 0x91, 0x25, 0x00, + 0xf7, 0x56, 0x38, 0x22, 0xa6, 0x6b, 0xe8, 0x01, 0xc0, 0x70, 0x7e, 0x9c, + 0xd7, 0x47, 0x32, 0xb5, 0xee, 0x61, 0xc9, 0x2b, 0xda, 0xc5, 0x8c, 0x52, + 0x62, 0xa9, 0xff, 0x00, 0x68, 0x21, 0x3c, 0x23, 0x54, 0x32, 0x5f, 0xdc, + 0x6e, 0xc2, 0x44, 0xb8, 0xc7, 0x52, 0xdf, 0xfd, 0x6a, 0x87, 0x5a, 0x0b, + 0xa9, 0x6a, 0x84, 0xdf, 0x43, 0x46, 0x92, 0xb9, 0x6d, 0x57, 0x59, 0xd4, + 0xe1, 0x78, 0x96, 0xde, 0xd9, 0xcb, 0x13, 0xc8, 0x04, 0x10, 0x45, 0x5e, + 0x82, 0x6b, 0xb9, 0x40, 0x69, 0x90, 0x42, 0x48, 0xe8, 0x1f, 0x75, 0x43, + 0xc5, 0x40, 0xbf, 0xaa, 0xcb, 0xab, 0x36, 0x89, 0x14, 0xd2, 0x47, 0xa8, + 0xac, 0xe0, 0xb2, 0x75, 0xfb, 0x43, 0x7e, 0x54, 0x4b, 0xb6, 0x55, 0x11, + 0xbc, 0xed, 0x9c, 0xe7, 0x01, 0x88, 0x34, 0x7d, 0x6a, 0x3d, 0x85, 0xf5, + 0x6f, 0x32, 0xf9, 0x23, 0xd4, 0x52, 0x12, 0xbe, 0xa2, 0xab, 0xaa, 0x0f, + 0xf9, 0xe8, 0xdf, 0x9d, 0x35, 0xa2, 0x2d, 0x9c, 0x5c, 0x3d, 0x1f, 0x5b, + 0x5d, 0x83, 0xea, 0xeb, 0xb9, 0x3f, 0x98, 0x02, 0xd0, 0x24, 0x52, 0x3a, + 0xd6, 0x6d, 0xdd, 0x8d, 0xc8, 0xb5, 0xc5, 0xa5, 0xc1, 0x12, 0xf1, 0x8d, + 0xe0, 0x11, 0x53, 0x5a, 0x59, 0x5c, 0xfd, 0x9c, 0x7d, 0xa6, 0xe3, 0xf7, + 0xb9, 0xe7, 0x62, 0x8c, 0x57, 0x1e, 0xa7, 0x4d, 0xa2, 0x5a, 0x2e, 0x39, + 0xdb, 0x59, 0x12, 0x96, 0x92, 0xe1, 0x8b, 0x82, 0x30, 0x78, 0x3e, 0x95, + 0xa3, 0xf6, 0x79, 0x15, 0xb0, 0x26, 0x1f, 0x88, 0xaa, 0xb7, 0x51, 0xdc, + 0x44, 0x85, 0x8f, 0x97, 0x20, 0x07, 0x38, 0x19, 0x06, 0x96, 0xa1, 0x64, + 0x59, 0xb3, 0x3e, 0x5d, 0xba, 0xaa, 0xb1, 0x27, 0xdf, 0xbd, 0x45, 0xa8, + 0x5f, 0x9b, 0x78, 0x5b, 0x24, 0x64, 0x8c, 0x71, 0x50, 0x09, 0x6e, 0x44, + 0x61, 0x85, 0xbe, 0x54, 0x8c, 0xfc, 0xac, 0x2b, 0x0b, 0x54, 0xd4, 0x3a, + 0xf9, 0xb0, 0xba, 0x1e, 0x99, 0x22, 0x9d, 0xdd, 0x85, 0x62, 0xe6, 0x95, + 0xa8, 0xdc, 0xa6, 0xa1, 0xe4, 0x5e, 0x4a, 0x4c, 0x72, 0x03, 0xe5, 0x13, + 0x8e, 0xbe, 0x95, 0xd1, 0xf6, 0xae, 0x30, 0xd9, 0xbc, 0xf0, 0x0b, 0xd6, + 0x94, 0xa8, 0x80, 0xab, 0x22, 0x8e, 0xbf, 0x5a, 0xeb, 0x3e, 0xd5, 0x12, + 0xd9, 0x8b, 0x96, 0x60, 0xb1, 0xed, 0xdd, 0x96, 0x38, 0xc0, 0xaf, 0x43, + 0x09, 0x51, 0xc9, 0x34, 0xfa, 0x1c, 0xb8, 0x98, 0xa4, 0xd3, 0x43, 0xe6, + 0x95, 0x21, 0x89, 0xa4, 0x91, 0x82, 0xa2, 0x8c, 0x92, 0x4f, 0x41, 0x5e, + 0x61, 0xe2, 0x9f, 0x1b, 0xfd, 0xa9, 0x9a, 0xdf, 0x4f, 0x94, 0xac, 0x03, + 0x39, 0x91, 0x72, 0x0b, 0x1f, 0x41, 0xed, 0x55, 0x7c, 0x61, 0xe3, 0xc8, + 0xb5, 0x1f, 0x36, 0xca, 0xc5, 0x98, 0xdb, 0x00, 0x54, 0xb8, 0xfe, 0x33, + 0xfe, 0x15, 0xc8, 0x5b, 0x20, 0xfb, 0x19, 0x95, 0xc0, 0x6e, 0x72, 0x16, + 0x8a, 0xd5, 0xed, 0xee, 0xc4, 0x29, 0xd2, 0xb6, 0xac, 0x7d, 0xb0, 0x66, + 0xdd, 0x3d, 0xc4, 0x9b, 0x63, 0x07, 0x24, 0x9e, 0xa7, 0xe9, 0x51, 0x6a, + 0xda, 0xfc, 0x46, 0x14, 0xb7, 0xb4, 0xde, 0xaa, 0xa3, 0x9e, 0x7a, 0xd4, + 0xe5, 0x3e, 0xd6, 0x83, 0x7e, 0xd4, 0x40, 0x3a, 0x0f, 0x5a, 0xaf, 0x79, + 0xe1, 0xc9, 0x2d, 0xe1, 0x0e, 0x31, 0x86, 0x23, 0xf0, 0xaf, 0x3e, 0x72, + 0x7d, 0x0e, 0x95, 0x1b, 0x22, 0xbe, 0x91, 0x71, 0xf6, 0x8b, 0xa2, 0x09, + 0x66, 0x70, 0xbd, 0x3d, 0x2b, 0xaf, 0xb1, 0x1f, 0x65, 0x31, 0x48, 0xe0, + 0xe0, 0x70, 0x40, 0xaa, 0xba, 0x3e, 0x85, 0xa3, 0xd8, 0xe8, 0xa6, 0x65, + 0x79, 0xa5, 0xd5, 0x1d, 0xfe, 0x62, 0x78, 0x44, 0x5c, 0xd4, 0x31, 0x5f, + 0xde, 0x1b, 0xb9, 0x20, 0x82, 0x34, 0x68, 0x61, 0x07, 0x74, 0xae, 0x7e, + 0x51, 0xfe, 0x35, 0x4d, 0x28, 0x2b, 0x37, 0x72, 0x53, 0x72, 0x66, 0x86, + 0xb3, 0x3d, 0x9a, 0x04, 0x9a, 0x43, 0xe5, 0x63, 0xee, 0x8e, 0xed, 0x52, + 0xe9, 0x72, 0xdd, 0x6b, 0x37, 0xf6, 0xf6, 0x66, 0xe1, 0xd2, 0xdc, 0x61, + 0x10, 0xb9, 0xe3, 0x1e, 0xd5, 0xcf, 0x5e, 0x6a, 0x50, 0xce, 0x57, 0x68, + 0x33, 0x4c, 0xa7, 0x25, 0xdc, 0x7c, 0xa3, 0xe8, 0x2a, 0x04, 0xd4, 0xa4, + 0xfb, 0x54, 0x25, 0xe7, 0x24, 0x87, 0x04, 0x73, 0xd3, 0x9a, 0xc2, 0x55, + 0xb9, 0x6e, 0xa2, 0x6a, 0xa9, 0xa7, 0x67, 0x23, 0xdc, 0xa1, 0xf0, 0xde, + 0x93, 0x62, 0xab, 0x3a, 0x5a, 0xab, 0xcc, 0xa3, 0x87, 0x61, 0x93, 0x58, + 0xde, 0x31, 0x7b, 0x75, 0xf0, 0xd4, 0xc6, 0x7c, 0x28, 0x03, 0x8c, 0x0e, + 0x73, 0x5d, 0x04, 0x57, 0x2e, 0xd6, 0x8a, 0xcc, 0x40, 0x05, 0x41, 0x24, + 0x9e, 0x2b, 0xcf, 0x7c, 0x7d, 0xe2, 0x3d, 0x2e, 0x4d, 0x30, 0xe9, 0xf0, + 0xce, 0xb3, 0xdc, 0x16, 0xf9, 0xb6, 0xf2, 0x16, 0xb9, 0xd5, 0xe7, 0x35, + 0x63, 0xa2, 0x4f, 0x96, 0x2d, 0x33, 0xcc, 0x24, 0xc6, 0xfd, 0xb8, 0xeb, + 0xd4, 0xd4, 0x4e, 0x70, 0x0e, 0xde, 0x70, 0x31, 0x4b, 0xb8, 0x96, 0xef, + 0xf4, 0xa7, 0x88, 0xf3, 0xf2, 0x88, 0xdb, 0xdf, 0x1c, 0xe6, 0xbd, 0x24, + 0x70, 0x17, 0x7c, 0x39, 0xac, 0x1d, 0x1b, 0x55, 0x86, 0xec, 0xab, 0x30, + 0x53, 0xf3, 0x28, 0xee, 0x2b, 0xbb, 0xb8, 0xf8, 0xa4, 0xd8, 0x61, 0x06, + 0x9d, 0xb8, 0xf6, 0x2c, 0xdc, 0x0a, 0xe0, 0xad, 0xb4, 0xe0, 0x9f, 0x35, + 0xc4, 0xa2, 0x25, 0x6e, 0x99, 0xea, 0x6a, 0xf4, 0x9a, 0x7a, 0x1b, 0x72, + 0xb1, 0xc8, 0x37, 0x38, 0xe0, 0x91, 0x5c, 0xf3, 0x50, 0x93, 0xd4, 0xda, + 0x2e, 0x51, 0x5a, 0x1a, 0x37, 0xbf, 0x10, 0x75, 0xcb, 0x97, 0xdd, 0x14, + 0x89, 0x6c, 0xbd, 0x84, 0x63, 0x26, 0xb0, 0x6e, 0x2f, 0x6f, 0x75, 0x29, + 0x8c, 0x97, 0x33, 0x3c, 0x8c, 0x7b, 0xb1, 0xab, 0x91, 0xda, 0x47, 0x0c, + 0x68, 0x0c, 0x4a, 0xed, 0x8c, 0x12, 0xd9, 0xa9, 0x85, 0xab, 0xb2, 0x30, + 0x60, 0x9b, 0x48, 0xc6, 0x11, 0x71, 0x8a, 0x95, 0xca, 0xbe, 0x14, 0x3d, + 0x5e, 0xe6, 0x37, 0x43, 0x8f, 0x4f, 0x5a, 0x99, 0x67, 0x74, 0x56, 0x55, + 0x98, 0x20, 0x7e, 0xa0, 0x55, 0xd5, 0xd3, 0x2d, 0xc3, 0x8d, 0xde, 0x63, + 0x51, 0x76, 0xda, 0x5d, 0xa3, 0x79, 0x7c, 0x16, 0xee, 0x31, 0xcd, 0x57, + 0x33, 0xb1, 0x36, 0x46, 0xc6, 0x87, 0xe2, 0x8d, 0x5f, 0x4e, 0xb6, 0x8e, + 0xca, 0xdb, 0x56, 0x29, 0x6e, 0x09, 0x21, 0x7c, 0xb5, 0x6d, 0xbf, 0x89, + 0x15, 0xd0, 0x3f, 0x8a, 0x35, 0x20, 0x81, 0xe4, 0xd5, 0x65, 0x72, 0x7a, + 0x04, 0x01, 0x47, 0xe8, 0x2b, 0xcf, 0xe1, 0xd5, 0x6d, 0x2d, 0xf2, 0x21, + 0xb7, 0x27, 0xd3, 0x34, 0xf1, 0xe2, 0x19, 0x81, 0xf9, 0x20, 0x4c, 0x7b, + 0x9a, 0x3d, 0xbc, 0xed, 0x67, 0x22, 0x1d, 0x3a, 0x77, 0xd8, 0xee, 0x5f, + 0xc5, 0xf7, 0x08, 0x3e, 0x7b, 0xcb, 0xd6, 0xe3, 0xf8, 0x58, 0xff, 0x00, + 0x8d, 0x67, 0x5b, 0xf8, 0xb2, 0xf1, 0xe6, 0x90, 0x19, 0xaf, 0x4a, 0xb0, + 0x38, 0x12, 0x39, 0xe7, 0xf5, 0xae, 0x59, 0xf5, 0xeb, 0x82, 0x31, 0xe4, + 0xc5, 0x49, 0x1e, 0xb9, 0x39, 0x95, 0x77, 0x42, 0x87, 0x90, 0x38, 0xa9, + 0x75, 0x5b, 0xea, 0x52, 0x82, 0xec, 0x75, 0xa7, 0x58, 0x94, 0xc3, 0xff, + 0x00, 0x1e, 0x61, 0x89, 0x3c, 0xe4, 0xd6, 0x75, 0xdd, 0xee, 0xb3, 0x33, + 0x81, 0x15, 0x99, 0x8d, 0x07, 0x4d, 0xaf, 0x5a, 0xd0, 0x42, 0xd3, 0x5b, + 0xac, 0x83, 0x72, 0x71, 0x92, 0xad, 0x8e, 0x6a, 0xec, 0x6a, 0x36, 0xae, + 0x0f, 0x4e, 0xbc, 0xd3, 0xe5, 0xb9, 0x77, 0xb1, 0xca, 0xc1, 0x35, 0xc8, + 0x97, 0xfd, 0x31, 0x25, 0x04, 0xf0, 0x70, 0x6a, 0x67, 0xd7, 0xb5, 0x18, + 0x64, 0xdb, 0x15, 0xad, 0xc3, 0x42, 0xb9, 0x00, 0x87, 0x23, 0x22, 0xb7, + 0x6f, 0x12, 0x38, 0xad, 0x5e, 0xe9, 0x7e, 0x67, 0x5f, 0xe1, 0x1c, 0xee, + 0xac, 0x28, 0xf5, 0xd9, 0x50, 0x10, 0x21, 0x8b, 0x07, 0xa8, 0xa9, 0x72, + 0x54, 0xfa, 0xd8, 0x1f, 0xbf, 0xd0, 0x60, 0xf1, 0x55, 0xfc, 0x5f, 0x34, + 0x71, 0xde, 0x44, 0x41, 0xe4, 0x89, 0x09, 0x15, 0xa3, 0x6d, 0xe3, 0xbb, + 0xe4, 0x90, 0x3e, 0xe9, 0x1d, 0xb1, 0x82, 0x24, 0x6e, 0x3f, 0x2c, 0x55, + 0x41, 0xaf, 0x48, 0x38, 0x16, 0xf0, 0xed, 0x3d, 0x46, 0x3a, 0xd5, 0x59, + 0xaf, 0x52, 0x6b, 0x8f, 0x34, 0xd9, 0xc4, 0x07, 0xa0, 0xa3, 0xeb, 0x4d, + 0x6d, 0x36, 0x0a, 0x84, 0x5e, 0xf1, 0x4c, 0xe9, 0xee, 0x3c, 0x44, 0xda, + 0xdd, 0xba, 0x25, 0xdc, 0x89, 0x1c, 0x7b, 0x81, 0xd8, 0xbd, 0x32, 0x2a, + 0xd0, 0xd5, 0xaf, 0x63, 0xb5, 0x58, 0xe3, 0xbd, 0x09, 0x04, 0x67, 0x29, + 0xb4, 0xed, 0xfc, 0xcd, 0x73, 0x30, 0xcb, 0xa6, 0x3a, 0x01, 0x73, 0x07, + 0x07, 0xa9, 0xab, 0xd0, 0xd9, 0xe9, 0xd7, 0x08, 0xeb, 0x69, 0x72, 0x55, + 0x00, 0xe1, 0x43, 0x1c, 0xd5, 0x3a, 0x9e, 0xd5, 0xdd, 0xbb, 0x89, 0x41, + 0x41, 0x59, 0x2b, 0x1a, 0x1f, 0xf0, 0x96, 0xea, 0xb6, 0xf0, 0xb3, 0xc5, + 0x7a, 0x24, 0xda, 0x7e, 0xeb, 0x80, 0x7f, 0xa5, 0x5d, 0xb2, 0xf1, 0xed, + 0xf4, 0xe8, 0x12, 0x7b, 0x58, 0x64, 0x07, 0x8c, 0xa8, 0x2a, 0x73, 0x5c, + 0x74, 0xfa, 0x72, 0xc5, 0x71, 0xb9, 0x64, 0x32, 0x01, 0xeb, 0xc6, 0x2a, + 0xe4, 0x2c, 0xd6, 0x80, 0x13, 0x09, 0x23, 0xae, 0x54, 0xf3, 0x51, 0xc8, + 0x9f, 0x42, 0xf9, 0xad, 0xd4, 0xba, 0x55, 0xda, 0xea, 0x59, 0x4a, 0x3e, + 0x1d, 0x8b, 0x63, 0xd2, 0xad, 0xda, 0xc8, 0x8e, 0xff, 0x00, 0x34, 0x4c, + 0x18, 0x7a, 0xd4, 0x1f, 0xda, 0xd6, 0xc2, 0x11, 0x23, 0x8d, 0xb8, 0x1d, + 0xcf, 0x3f, 0xa5, 0x43, 0x6d, 0xe2, 0x2b, 0x29, 0x1b, 0x7b, 0x3e, 0xc1, + 0xfe, 0xd7, 0x7a, 0xd3, 0x6d, 0x08, 0xdc, 0xe8, 0x62, 0x57, 0xe3, 0x8e, + 0x33, 0xd8, 0xd7, 0xa1, 0x69, 0x1b, 0xbe, 0xc1, 0x10, 0x24, 0x1f, 0x94, + 0x73, 0xf8, 0x57, 0x9b, 0xdb, 0x5e, 0xc5, 0x70, 0x86, 0x48, 0x87, 0xd0, + 0xe7, 0xad, 0x74, 0x9a, 0x57, 0x88, 0x5e, 0xd2, 0x35, 0x8a, 0x54, 0xdf, + 0x18, 0xe3, 0x20, 0xf2, 0x29, 0x3d, 0x1a, 0x60, 0xb6, 0x3b, 0x4c, 0x71, + 0x5c, 0x7f, 0x8b, 0xb4, 0xa8, 0x27, 0x78, 0xae, 0x76, 0xec, 0x99, 0x78, + 0x12, 0x28, 0xe7, 0x1e, 0x87, 0xda, 0xba, 0x0b, 0x6d, 0x6a, 0xca, 0xe8, + 0x00, 0xb3, 0x2a, 0xb1, 0xe8, 0xad, 0xc1, 0xaa, 0x1a, 0xf2, 0xc9, 0x32, + 0x28, 0x85, 0x4c, 0x9c, 0xe7, 0x00, 0x66, 0x94, 0xf9, 0x65, 0x60, 0x8d, + 0xd5, 0xee, 0x79, 0xf4, 0xd7, 0x1a, 0x96, 0x98, 0xa6, 0x5b, 0x65, 0xf3, + 0x42, 0xf3, 0xfb, 0xb3, 0x82, 0x7f, 0x0a, 0xad, 0x77, 0x78, 0xbe, 0x22, + 0xf2, 0x6e, 0x6e, 0x60, 0x11, 0xc8, 0x8b, 0xb0, 0x82, 0xbc, 0xf5, 0xef, + 0x4d, 0xf1, 0x9b, 0xea, 0x7a, 0x64, 0x50, 0x5c, 0x5a, 0xdb, 0x4e, 0x80, + 0x1c, 0xbc, 0x81, 0x4e, 0x07, 0xb1, 0xac, 0x0b, 0x1f, 0x17, 0xdb, 0xdc, + 0x15, 0x5b, 0xe8, 0x76, 0x49, 0xff, 0x00, 0x3d, 0xa2, 0xe0, 0xfe, 0x22, + 0xa5, 0xca, 0x4a, 0x2e, 0x09, 0xe8, 0x0b, 0x95, 0xbb, 0xdb, 0x53, 0xd0, + 0x2d, 0xe5, 0x82, 0x1b, 0x22, 0xb0, 0x80, 0x1b, 0x1c, 0x0a, 0x4b, 0xeb, + 0x93, 0x1e, 0x9f, 0x2b, 0xf2, 0x18, 0x26, 0x6b, 0x0a, 0x09, 0xae, 0xbc, + 0xd4, 0xb8, 0x86, 0x58, 0xee, 0x2c, 0x88, 0xe0, 0xa8, 0xe4, 0x7d, 0x71, + 0x5a, 0xf2, 0xba, 0x6a, 0x16, 0x0f, 0x08, 0x60, 0x8c, 0xea, 0x57, 0x93, + 0x5c, 0xf2, 0x6c, 0xb8, 0xd8, 0xe7, 0x2c, 0xb5, 0x88, 0xe5, 0x3f, 0x31, + 0xf2, 0x66, 0xed, 0x22, 0xf4, 0x3f, 0x5a, 0xf4, 0x4d, 0x12, 0x21, 0xa9, + 0x69, 0x08, 0xd2, 0x12, 0x97, 0x03, 0x20, 0x30, 0x3c, 0x1a, 0xf1, 0x59, + 0xf4, 0xdd, 0x52, 0xc2, 0xf0, 0xdb, 0x48, 0x84, 0xae, 0x7e, 0x57, 0xf5, + 0xaf, 0x4f, 0xf8, 0x7b, 0xa8, 0x7d, 0x92, 0xd2, 0x4b, 0x0b, 0xd6, 0xf9, + 0xcb, 0x6e, 0x46, 0x27, 0xa7, 0xb5, 0x25, 0x7b, 0xeb, 0xb1, 0x69, 0xae, + 0x87, 0x49, 0x6d, 0x6e, 0xf6, 0x56, 0xb7, 0x1e, 0x72, 0x29, 0x91, 0x01, + 0x20, 0x8e, 0xf5, 0x9f, 0xe1, 0xad, 0x46, 0x4d, 0x57, 0x4b, 0x37, 0x52, + 0x46, 0xb1, 0x3b, 0x33, 0x29, 0xc7, 0x4e, 0x0d, 0x68, 0x6b, 0x37, 0xed, + 0x63, 0x19, 0x0b, 0x19, 0x95, 0xa6, 0x1b, 0x63, 0xdb, 0xeb, 0xef, 0x58, + 0xbe, 0x1a, 0xd3, 0xaf, 0xec, 0xb4, 0xd1, 0x6f, 0x31, 0x03, 0xe6, 0x2d, + 0xd3, 0xd4, 0xd5, 0xfb, 0x4d, 0x2c, 0x84, 0xa0, 0xaf, 0xa9, 0xd3, 0xd9, + 0xaa, 0x24, 0xd8, 0x0d, 0x93, 0x8a, 0xd1, 0x67, 0x54, 0x5c, 0x96, 0xac, + 0x38, 0x17, 0xec, 0xe4, 0xb7, 0x9a, 0x09, 0x27, 0xbd, 0x47, 0x77, 0x20, + 0xb8, 0x5f, 0x9e, 0x66, 0x03, 0x38, 0xe3, 0xa1, 0xab, 0x83, 0x76, 0x09, + 0x72, 0x96, 0xef, 0xf5, 0x68, 0x11, 0x19, 0x63, 0x3e, 0x63, 0x7a, 0x03, + 0x5c, 0x74, 0xd0, 0x99, 0x64, 0x24, 0xb8, 0x0d, 0xdc, 0x8a, 0xd2, 0xbb, + 0x89, 0x63, 0x04, 0x6e, 0x54, 0x07, 0xa1, 0xc7, 0x5a, 0xa7, 0x21, 0x68, + 0xd9, 0x01, 0x19, 0x56, 0x1c, 0x15, 0xc7, 0xeb, 0x5a, 0x25, 0xd4, 0x96, + 0xef, 0xa1, 0x5a, 0xdb, 0x4f, 0x94, 0x48, 0xc5, 0x98, 0xb0, 0xfe, 0x10, + 0x6b, 0x1f, 0xc4, 0x10, 0xde, 0x47, 0xb0, 0x04, 0xca, 0x92, 0x40, 0xe7, + 0x15, 0xd7, 0x46, 0xc8, 0x24, 0xdb, 0xb4, 0x67, 0x00, 0xe4, 0x1e, 0x68, + 0xbc, 0x58, 0xe6, 0xe2, 0x48, 0x94, 0xa0, 0xe9, 0xde, 0xae, 0xd7, 0x27, + 0x9a, 0xc7, 0x05, 0xa7, 0xd8, 0xdc, 0xdc, 0xb9, 0x8d, 0xd9, 0x7e, 0x51, + 0x9c, 0x96, 0xe9, 0x51, 0xcb, 0x35, 0x85, 0xb4, 0xae, 0x9f, 0xda, 0x8a, + 0x8e, 0x3a, 0x81, 0xcd, 0x75, 0xd3, 0x24, 0x70, 0x45, 0x27, 0x93, 0x1a, + 0xaf, 0x07, 0x24, 0x2e, 0x2b, 0x90, 0xb7, 0xf0, 0x54, 0xfa, 0xf5, 0xcc, + 0xb7, 0x16, 0xcf, 0x0c, 0x31, 0xa9, 0xda, 0xcc, 0xc3, 0x39, 0x6e, 0xbd, + 0x3f, 0x1a, 0xb8, 0x53, 0x94, 0xb4, 0x82, 0xbb, 0x33, 0x9d, 0x45, 0x15, + 0x79, 0x6c, 0x67, 0xcf, 0xaa, 0x5b, 0x29, 0xc2, 0xde, 0x86, 0x1f, 0xee, + 0x9a, 0xa3, 0x73, 0x35, 0xa1, 0x06, 0xe0, 0x5d, 0xa8, 0x96, 0x31, 0x94, + 0xda, 0x0e, 0x72, 0x39, 0x15, 0xb1, 0xaa, 0xf8, 0x0b, 0x51, 0xd3, 0x6e, + 0x2d, 0x62, 0x8d, 0x96, 0xe8, 0x5c, 0x3e, 0xc1, 0xb1, 0x48, 0xda, 0x7a, + 0xf3, 0xed, 0x49, 0xaf, 0x78, 0x56, 0x3d, 0x13, 0x4c, 0x91, 0xe7, 0xd4, + 0x6d, 0x9e, 0x4d, 0x87, 0x11, 0x00, 0x77, 0x1f, 0xa5, 0x69, 0xec, 0x2b, + 0xc6, 0xed, 0xc7, 0x62, 0x15, 0x5a, 0x72, 0xeb, 0xb9, 0x95, 0xa1, 0xf8, + 0x97, 0x59, 0xfe, 0xd7, 0x92, 0xec, 0xdf, 0xb3, 0x4f, 0x20, 0x0a, 0xec, + 0xe0, 0x10, 0x40, 0xed, 0x8a, 0xe8, 0x75, 0x5f, 0x14, 0x6a, 0xb7, 0xda, + 0x75, 0xc5, 0x93, 0x5c, 0x41, 0xb6, 0x54, 0x2a, 0x48, 0x5e, 0x71, 0x5c, + 0x36, 0x8e, 0xc4, 0x96, 0x90, 0x81, 0x83, 0xeb, 0x5d, 0x10, 0x2a, 0xf1, + 0x72, 0xa3, 0x3f, 0x4a, 0xde, 0x35, 0x6a, 0x28, 0xdb, 0x98, 0x87, 0x18, + 0xdf, 0x62, 0xa6, 0x9b, 0x66, 0xe2, 0x23, 0xe7, 0xb8, 0x0c, 0x3a, 0x10, + 0x6b, 0x46, 0x18, 0x57, 0x79, 0x52, 0xfb, 0x57, 0xb1, 0xa6, 0x21, 0x45, + 0x41, 0x8c, 0x0a, 0x95, 0x36, 0xf7, 0xdb, 0xf5, 0xac, 0x99, 0x48, 0x65, + 0xca, 0xcb, 0x6e, 0xc8, 0x11, 0x7c, 0xd0, 0xc7, 0xa8, 0xed, 0x55, 0xe6, + 0xb8, 0x11, 0x64, 0x48, 0x71, 0xf5, 0xab, 0x4f, 0x22, 0x81, 0x9d, 0xcc, + 0x47, 0xa0, 0xaa, 0x52, 0xa8, 0x73, 0xd7, 0x70, 0xf4, 0xa5, 0xa9, 0x44, + 0x26, 0xe2, 0x37, 0xe3, 0xcc, 0x0a, 0x7d, 0xcd, 0x02, 0x12, 0xcd, 0x9c, + 0xa9, 0x1f, 0x5a, 0xce, 0xbc, 0xb6, 0x26, 0x52, 0xe0, 0x0e, 0x0f, 0x1c, + 0xf4, 0xaa, 0x7f, 0xda, 0xb3, 0xc2, 0xe6, 0x37, 0x01, 0xb6, 0xf1, 0xcf, + 0x53, 0x49, 0xdd, 0x0d, 0x59, 0x9b, 0x4c, 0x0c, 0x6c, 0x01, 0x19, 0xfa, + 0x53, 0x8b, 0x48, 0x14, 0x81, 0x9c, 0x7b, 0xd5, 0x2b, 0x4b, 0x98, 0xa7, + 0x02, 0x40, 0xe4, 0x37, 0xa7, 0xa5, 0x4f, 0x34, 0xae, 0x18, 0x95, 0x3b, + 0xd4, 0xfa, 0x52, 0x60, 0x8b, 0x29, 0x3e, 0x62, 0xda, 0x54, 0x73, 0x50, + 0x5c, 0xda, 0x41, 0x73, 0x18, 0x47, 0xc8, 0xc7, 0x4c, 0x53, 0x15, 0xd5, + 0x58, 0x16, 0x66, 0xe0, 0x70, 0x0d, 0x28, 0x7f, 0x32, 0x5f, 0x94, 0x70, + 0x3b, 0x54, 0x48, 0xa4, 0x50, 0x86, 0xc7, 0xec, 0xd7, 0x19, 0xf3, 0x0b, + 0x63, 0xa6, 0x6a, 0xdc, 0xd6, 0xd1, 0xb4, 0x65, 0x9a, 0x35, 0x73, 0xea, + 0x45, 0x3e, 0xe5, 0xd0, 0x60, 0x6d, 0xc3, 0xfa, 0xfa, 0x56, 0x88, 0x92, + 0xdc, 0xda, 0xc3, 0xb9, 0x77, 0xbe, 0x3a, 0x62, 0xb2, 0x93, 0xee, 0x68, + 0xa3, 0xd8, 0xe7, 0x16, 0xde, 0x18, 0xe7, 0x2e, 0x23, 0x03, 0xda, 0xac, + 0x42, 0x5e, 0x53, 0x85, 0x53, 0xf4, 0x02, 0x92, 0xfe, 0x7b, 0x68, 0x24, + 0x69, 0x1d, 0x80, 0x27, 0xf8, 0x07, 0x6a, 0xcb, 0x97, 0x5d, 0x95, 0x9c, + 0x2c, 0x03, 0xcb, 0x53, 0xc6, 0x47, 0x53, 0x4e, 0x29, 0xf4, 0x14, 0x9a, + 0x47, 0x51, 0x6b, 0x77, 0x6f, 0x68, 0xe5, 0xe5, 0xe4, 0x81, 0xf7, 0x45, + 0x3f, 0xcd, 0x8a, 0x57, 0xfb, 0x4c, 0x64, 0x00, 0x79, 0xcd, 0x33, 0x4c, + 0x8a, 0x09, 0x57, 0x98, 0xd4, 0xb6, 0x3e, 0x62, 0x79, 0xa6, 0x48, 0x23, + 0x59, 0x1e, 0x18, 0xca, 0xae, 0xd3, 0x91, 0x81, 0x53, 0x17, 0xef, 0x32, + 0xa5, 0xf0, 0xa2, 0x79, 0x18, 0x99, 0x3c, 0xcc, 0x7c, 0xa3, 0xf8, 0x85, + 0x5c, 0xb3, 0x23, 0xce, 0x12, 0x64, 0x03, 0x8e, 0xbe, 0xb5, 0x9f, 0x06, + 0xed, 0x84, 0x6e, 0x18, 0xf4, 0xab, 0x56, 0xd9, 0x47, 0xe7, 0xe6, 0x5c, + 0x70, 0x2b, 0x43, 0x3e, 0xa5, 0xb1, 0x34, 0x8d, 0x24, 0xab, 0x09, 0x05, + 0xc8, 0xc2, 0xee, 0x1d, 0x0d, 0x36, 0xd5, 0x2e, 0xe2, 0x66, 0x7b, 0x8b, + 0x82, 0xc3, 0x38, 0xda, 0x3a, 0x52, 0xdb, 0x30, 0x89, 0xdc, 0xac, 0x79, + 0x2c, 0x3a, 0x9a, 0x82, 0x59, 0x5d, 0x65, 0xda, 0xf9, 0x23, 0xaf, 0x1d, + 0xab, 0x36, 0xcd, 0x51, 0x6e, 0x6b, 0x88, 0xc2, 0x36, 0x54, 0x10, 0x3b, + 0xd5, 0x78, 0x65, 0xd9, 0xf3, 0x76, 0xaa, 0x7e, 0x45, 0xd3, 0xcc, 0x5a, + 0x24, 0x70, 0x8d, 0xd5, 0x58, 0x60, 0x1f, 0xce, 0xaa, 0x15, 0xbb, 0x8e, + 0x52, 0xbe, 0x6a, 0xec, 0x1c, 0x05, 0x6a, 0x49, 0xf4, 0x1b, 0xee, 0x6b, + 0x3d, 0xf3, 0x8e, 0x12, 0x96, 0x1b, 0x89, 0x25, 0x9d, 0x63, 0x76, 0x5c, + 0x7f, 0x74, 0x9a, 0xa9, 0x6d, 0x6d, 0x19, 0x90, 0x09, 0x6e, 0x48, 0x6e, + 0xe0, 0x0c, 0x7e, 0xb5, 0xab, 0x65, 0xa3, 0xd9, 0x9b, 0xcf, 0x36, 0x52, + 0xee, 0xe0, 0xf1, 0xf3, 0xd5, 0x32, 0x0d, 0xeb, 0x5d, 0x63, 0x55, 0xb4, + 0xb1, 0x5b, 0x68, 0x27, 0x44, 0x89, 0x5f, 0x78, 0xc8, 0x1f, 0x97, 0xd2, + 0xb3, 0xa4, 0xf1, 0x2d, 0xe5, 0x89, 0x78, 0x7e, 0xd8, 0xff, 0x00, 0xe9, + 0x32, 0x6f, 0x7f, 0x2c, 0x03, 0xce, 0x73, 0x9f, 0x6a, 0x9e, 0xf2, 0xe3, + 0x4e, 0xb4, 0x65, 0x88, 0x5a, 0x6e, 0x3f, 0xde, 0x71, 0xc6, 0x7f, 0x1a, + 0x89, 0x6f, 0xed, 0x41, 0x0e, 0x56, 0xde, 0x3e, 0xc0, 0x00, 0x2b, 0x29, + 0x4e, 0x31, 0x7a, 0x9a, 0xa4, 0xd9, 0xac, 0x7c, 0x47, 0xa9, 0x4b, 0x1a, + 0xa9, 0xd6, 0x25, 0xe9, 0xfc, 0x23, 0x07, 0xf3, 0x02, 0xa9, 0x6a, 0x3a, + 0xd5, 0xd4, 0xb6, 0x8c, 0x9e, 0x75, 0xdd, 0xd9, 0x04, 0x7e, 0xec, 0xb3, + 0x10, 0x4f, 0xe3, 0x4c, 0x3a, 0xba, 0x05, 0xf9, 0x27, 0x88, 0x67, 0xda, + 0x92, 0xdf, 0x54, 0x32, 0x4c, 0xaa, 0x2e, 0x57, 0x7b, 0x9c, 0x01, 0xb6, + 0x9f, 0xd6, 0x5c, 0xf4, 0xbb, 0x0f, 0x65, 0x6d, 0x48, 0xed, 0x18, 0x3d, + 0xb0, 0x69, 0x56, 0x78, 0x98, 0xf2, 0xc9, 0xb4, 0xf1, 0x43, 0xb5, 0xa2, + 0xaf, 0x98, 0xad, 0x70, 0xcc, 0x3a, 0x61, 0x0e, 0x45, 0x6e, 0x36, 0xee, + 0xbe, 0x60, 0xe0, 0x73, 0x55, 0xaf, 0x9b, 0xc9, 0xb5, 0x69, 0xc3, 0x8e, + 0x06, 0x4e, 0x2b, 0x4d, 0x51, 0x1a, 0x33, 0x32, 0x0f, 0x12, 0x6a, 0x52, + 0x96, 0x59, 0x6e, 0x75, 0x28, 0x97, 0xb1, 0x69, 0x58, 0xe7, 0xf5, 0xab, + 0x91, 0xf8, 0x8a, 0xfe, 0x24, 0x0f, 0x1e, 0xa7, 0x77, 0xc7, 0x21, 0x5b, + 0x2d, 0xfc, 0xea, 0x9a, 0xdf, 0x46, 0xd1, 0xee, 0x32, 0xb1, 0x04, 0x76, + 0x43, 0x50, 0xbe, 0xa6, 0xc9, 0xf2, 0x87, 0x60, 0xa3, 0xa6, 0x52, 0xa5, + 0x62, 0x65, 0x7d, 0x2e, 0x57, 0xb0, 0x2c, 0x5c, 0xf8, 0xdb, 0x53, 0xbc, + 0x49, 0x2d, 0x6e, 0x6f, 0x27, 0x58, 0x9f, 0x86, 0x06, 0x15, 0x5f, 0xd4, + 0x0a, 0x8e, 0x1b, 0xa5, 0x2a, 0x08, 0xb8, 0x12, 0x67, 0xb1, 0x34, 0xcf, + 0xb7, 0x99, 0x80, 0xdc, 0xf1, 0x91, 0x9e, 0x85, 0x07, 0x35, 0x37, 0x9f, + 0x04, 0xb2, 0x18, 0xe5, 0xb6, 0x8b, 0x8e, 0x9f, 0x28, 0xa3, 0xeb, 0x1e, + 0xd1, 0xd9, 0xee, 0x1e, 0xc5, 0xc1, 0x5f, 0xa0, 0xcb, 0x83, 0x10, 0xd8, + 0x4c, 0xd1, 0xef, 0x6e, 0x83, 0x3c, 0xd4, 0x2c, 0xc1, 0x40, 0x2e, 0xc4, + 0x7f, 0x5a, 0x8a, 0xfa, 0xde, 0xd4, 0x8d, 0xc2, 0x10, 0xac, 0xbd, 0x30, + 0x78, 0xaa, 0xe6, 0x0b, 0x79, 0x0f, 0xdf, 0x91, 0x0f, 0xb9, 0xcd, 0x6f, + 0x19, 0x49, 0x18, 0x49, 0x45, 0x96, 0x09, 0x4d, 0xe3, 0xe5, 0x07, 0x3d, + 0xcd, 0x56, 0xb8, 0x56, 0x19, 0xdb, 0x8c, 0x75, 0xc5, 0x36, 0x4b, 0x79, + 0x4a, 0xa7, 0x95, 0x73, 0xc0, 0xed, 0xd2, 0x9c, 0x1a, 0x64, 0x61, 0xe6, + 0x2a, 0xca, 0x09, 0xc0, 0x0a, 0x71, 0x8a, 0xae, 0x6b, 0xee, 0x2b, 0x5b, + 0x61, 0x2d, 0xce, 0x4f, 0x2b, 0xf9, 0xd6, 0x8c, 0x4f, 0x95, 0xe8, 0x38, + 0xf7, 0xac, 0xc5, 0x9c, 0x2d, 0xc0, 0x0d, 0x13, 0x20, 0x3f, 0x95, 0x68, + 0x8b, 0x69, 0x77, 0x29, 0x8c, 0xab, 0x21, 0xea, 0x47, 0x6a, 0x52, 0x71, + 0x04, 0x99, 0x34, 0x61, 0x5f, 0x73, 0x39, 0x00, 0x7d, 0x29, 0x00, 0x46, + 0x52, 0xb1, 0x3e, 0x18, 0x9f, 0xa5, 0x6f, 0xf8, 0x40, 0x5b, 0xc1, 0xe2, + 0x4b, 0x59, 0x27, 0x64, 0xf2, 0x90, 0xb6, 0x59, 0xf1, 0x80, 0x76, 0x9c, + 0x7e, 0xb8, 0xaf, 0x48, 0xd4, 0x7c, 0x33, 0xa3, 0x6b, 0x08, 0x4c, 0xd6, + 0x91, 0xef, 0x6e, 0x7c, 0xd8, 0x80, 0x56, 0xfc, 0xc5, 0x4b, 0xa5, 0x52, + 0x6b, 0x9a, 0x0c, 0x6a, 0x71, 0x83, 0xb4, 0x91, 0xe4, 0x70, 0x40, 0x57, + 0x2c, 0xce, 0xa1, 0xfb, 0x8e, 0x99, 0xad, 0x3b, 0x2b, 0xc8, 0x43, 0x2c, + 0x73, 0xa3, 0x80, 0x4f, 0x07, 0x15, 0x35, 0xef, 0x87, 0xce, 0x9b, 0xae, + 0xcb, 0x64, 0x27, 0x69, 0x60, 0x40, 0x19, 0x77, 0x75, 0xc1, 0xab, 0xb1, + 0x5b, 0x40, 0x61, 0xf2, 0xc8, 0x52, 0x33, 0x8c, 0x1a, 0xe7, 0xa7, 0x52, + 0x4e, 0x4e, 0x33, 0xdd, 0x1d, 0x33, 0x82, 0x51, 0x52, 0x5b, 0x33, 0x7e, + 0x7d, 0x03, 0xc3, 0xfa, 0xe4, 0x7b, 0xed, 0x99, 0x61, 0x9b, 0x1f, 0x7e, + 0x03, 0x83, 0xf8, 0xaf, 0xf9, 0x35, 0xc9, 0x7f, 0x66, 0xcb, 0x63, 0x3c, + 0xcb, 0x73, 0x30, 0x91, 0x21, 0x72, 0xbc, 0x0e, 0x1b, 0x07, 0xad, 0x36, + 0x78, 0x23, 0x8a, 0x56, 0x58, 0xa4, 0x96, 0x16, 0x1d, 0x19, 0x4d, 0x67, + 0x93, 0x7d, 0x04, 0x4e, 0xaf, 0x26, 0xf8, 0x98, 0xfd, 0xe0, 0x72, 0x0f, + 0xf8, 0x55, 0xd4, 0xe4, 0xa8, 0xd3, 0x86, 0x8d, 0x6e, 0x2a, 0x5c, 0xd0, + 0x4d, 0x4e, 0xed, 0x1b, 0x07, 0xed, 0x11, 0x79, 0x53, 0x5b, 0x49, 0xf2, + 0x11, 0xf7, 0x0f, 0x3f, 0x91, 0xed, 0x4e, 0xfe, 0xd7, 0x22, 0x78, 0xa3, + 0xba, 0x75, 0xdf, 0x9e, 0x07, 0x43, 0x59, 0xd6, 0x77, 0xeb, 0xe4, 0x6d, + 0x07, 0x2c, 0x07, 0x4c, 0xd4, 0x13, 0x08, 0x26, 0xb9, 0x8f, 0xce, 0xe0, + 0x82, 0x08, 0x6a, 0xd5, 0x44, 0xca, 0xe7, 0xa0, 0xdb, 0xcb, 0xbe, 0xdd, + 0x59, 0x08, 0x60, 0x46, 0x6b, 0x98, 0xd7, 0x6e, 0xaf, 0x2c, 0xb5, 0x58, + 0xde, 0xe6, 0xdd, 0xc5, 0xbc, 0x98, 0xf2, 0xa6, 0x51, 0xd3, 0xf1, 0xfe, + 0x94, 0xc8, 0x66, 0xbc, 0xd2, 0xe5, 0x32, 0xac, 0xbe, 0x75, 0xa9, 0xfe, + 0x15, 0x1c, 0xad, 0x6a, 0xdf, 0x6a, 0xd0, 0x6b, 0x1a, 0x6d, 0xa2, 0xc4, + 0xa1, 0xb6, 0x4a, 0x1d, 0xb2, 0x7a, 0x60, 0x11, 0xfd, 0x69, 0x34, 0x9c, + 0x5e, 0xb6, 0x63, 0x8a, 0x7c, 0xcb, 0xb0, 0x90, 0xde, 0xc3, 0x25, 0xb4, + 0xd6, 0xd7, 0x50, 0x6f, 0x13, 0xc5, 0xb5, 0x1c, 0xf4, 0xcf, 0xaf, 0xd6, + 0x97, 0x4e, 0xd3, 0x6d, 0xd2, 0xce, 0x48, 0x95, 0x46, 0x19, 0x70, 0x41, + 0xe6, 0xa3, 0xbe, 0x92, 0x28, 0xb4, 0xe3, 0x21, 0x5c, 0x80, 0x69, 0xba, + 0x2d, 0xe3, 0x48, 0xa5, 0x5f, 0x18, 0x6f, 0xba, 0xc0, 0xff, 0x00, 0x3a, + 0xc5, 0xc9, 0x73, 0x2e, 0xe6, 0xd6, 0x6a, 0x2f, 0xb0, 0xfb, 0x7d, 0x31, + 0x2c, 0xa5, 0x3e, 0x58, 0x2f, 0x9e, 0x99, 0x3d, 0x2b, 0x44, 0x33, 0x02, + 0x3a, 0x0e, 0x28, 0x61, 0xb5, 0xcf, 0xa9, 0xa0, 0x90, 0x06, 0x19, 0x85, + 0x3e, 0x66, 0x0a, 0x22, 0xac, 0xe5, 0x9b, 0x18, 0xa9, 0x83, 0x93, 0xc5, + 0x56, 0xca, 0x29, 0xc8, 0xa9, 0x16, 0x71, 0x8f, 0xbb, 0x4d, 0x31, 0xc9, + 0x76, 0x27, 0xc9, 0x03, 0x26, 0x9a, 0xd2, 0x14, 0x8c, 0xb6, 0x39, 0xaa, + 0x17, 0x9a, 0x85, 0xc4, 0x6e, 0xa9, 0x0d, 0xa9, 0x76, 0xf5, 0x6e, 0x98, + 0xab, 0xa9, 0x1c, 0x97, 0x31, 0x2a, 0xbe, 0xd4, 0x38, 0xc9, 0x03, 0x9c, + 0x53, 0x5a, 0x99, 0x32, 0x24, 0xbc, 0x91, 0xa6, 0xd9, 0xb0, 0xb1, 0xea, + 0x29, 0x2e, 0x60, 0x9e, 0x69, 0xb7, 0x86, 0x0b, 0xc7, 0x6a, 0x9e, 0x2d, + 0x3d, 0x63, 0x72, 0xc2, 0x73, 0x9e, 0xdc, 0x54, 0xb1, 0xdb, 0x33, 0x9f, + 0x9a, 0x73, 0xc1, 0xf4, 0x15, 0x5a, 0xf4, 0x27, 0x4e, 0xa3, 0x2c, 0xe3, + 0x68, 0x55, 0x83, 0x39, 0x39, 0xab, 0xd1, 0x91, 0xb4, 0xe4, 0xd3, 0x3e, + 0xc6, 0xa1, 0x49, 0xf3, 0x5a, 0x9a, 0x2c, 0xd5, 0x94, 0xe6, 0x59, 0x3f, + 0x3a, 0x69, 0x32, 0x5d, 0xac, 0x46, 0x67, 0x97, 0xcb, 0x07, 0x18, 0x35, + 0x1a, 0x6a, 0x2c, 0x09, 0x57, 0xc9, 0x23, 0xd3, 0xa5, 0x72, 0x5a, 0xce, + 0xaf, 0x7f, 0x1d, 0xaa, 0x14, 0x3b, 0x31, 0x8c, 0xb2, 0xf3, 0x50, 0x69, + 0x1a, 0xa5, 0xdc, 0xc9, 0x20, 0x90, 0x89, 0x40, 0x6f, 0xbc, 0x4e, 0x29, + 0x5d, 0xdc, 0xae, 0x55, 0x63, 0xb8, 0x13, 0x48, 0xed, 0xbc, 0xae, 0x14, + 0x0a, 0xa7, 0x77, 0x79, 0x20, 0x81, 0x9d, 0x62, 0x93, 0x68, 0x3c, 0xbe, + 0xde, 0x2a, 0x90, 0xd5, 0x24, 0x28, 0x23, 0xfb, 0x34, 0x84, 0xff, 0x00, + 0xb2, 0x73, 0x55, 0xee, 0x75, 0x46, 0x48, 0x9a, 0x01, 0x1c, 0xc1, 0x1b, + 0xaa, 0x91, 0x5a, 0x2b, 0x75, 0x23, 0x5e, 0x86, 0x9c, 0x37, 0xec, 0x60, + 0x53, 0xb7, 0x03, 0x15, 0xcf, 0xeb, 0x57, 0x66, 0x45, 0xdb, 0x82, 0x4e, + 0xee, 0xe2, 0xa0, 0x7d, 0x44, 0xa4, 0xc3, 0x0e, 0x51, 0x7b, 0x02, 0x71, + 0x8a, 0xa9, 0x75, 0x79, 0xe7, 0x07, 0xde, 0xc8, 0x40, 0xe4, 0x10, 0x6a, + 0x6e, 0xc7, 0x64, 0x4d, 0x36, 0xb5, 0x15, 0xad, 0x93, 0xc1, 0x3c, 0xa3, + 0x7b, 0x81, 0x81, 0xe9, 0x58, 0x9e, 0x20, 0xf1, 0x2d, 0xd6, 0xb9, 0xa4, + 0x2e, 0x97, 0x63, 0x88, 0xa2, 0x8d, 0x00, 0x99, 0xb3, 0x92, 0xd8, 0xfe, + 0x43, 0x8a, 0xe7, 0xfc, 0x4a, 0xf3, 0x5c, 0x20, 0x10, 0x23, 0xec, 0x27, + 0xb7, 0xf3, 0xaa, 0xfa, 0x6a, 0x49, 0x65, 0x64, 0xd2, 0xcc, 0xea, 0x82, + 0x41, 0x82, 0x1f, 0xae, 0x29, 0xc2, 0xa4, 0xa3, 0x74, 0x9e, 0xe2, 0x94, + 0x53, 0xb3, 0x68, 0xad, 0x16, 0x9a, 0x96, 0xf1, 0x91, 0x3b, 0x97, 0x61, + 0xc9, 0x0b, 0xd8, 0x54, 0x32, 0x4a, 0x58, 0xec, 0x8b, 0x21, 0x07, 0x6a, + 0xbd, 0x79, 0x28, 0x68, 0xd9, 0xa3, 0xce, 0xc6, 0x1c, 0x1f, 0x5a, 0xa7, + 0x63, 0x13, 0x3f, 0x24, 0x64, 0x93, 0xc5, 0x54, 0x35, 0x22, 0x4c, 0xbf, + 0x6c, 0xa3, 0xec, 0xc7, 0x9e, 0x49, 0x18, 0xcd, 0x6d, 0x3c, 0x8f, 0x74, + 0x91, 0xf9, 0xca, 0x76, 0xf4, 0x48, 0xd3, 0xab, 0x62, 0xa8, 0xd8, 0x6c, + 0x29, 0x24, 0x60, 0x61, 0x90, 0xe1, 0x99, 0xc7, 0xca, 0xbf, 0xe3, 0x59, + 0xd7, 0xba, 0xba, 0xdb, 0xa1, 0xb6, 0xd3, 0xcb, 0x22, 0xaf, 0xde, 0x98, + 0xfd, 0xe6, 0xfa, 0x7a, 0x54, 0x4e, 0x69, 0x0d, 0x23, 0x72, 0x15, 0xc3, + 0x49, 0x04, 0xb7, 0x01, 0x98, 0xfc, 0xc2, 0x11, 0xd1, 0x07, 0xbe, 0x3a, + 0xd2, 0x4f, 0x6d, 0x1b, 0x46, 0x2d, 0xc1, 0xf9, 0x9f, 0x8c, 0x0e, 0x3b, + 0x57, 0x2b, 0xa6, 0x5e, 0xf9, 0x77, 0xfb, 0x8b, 0x12, 0x48, 0xe4, 0x93, + 0xd6, 0xb7, 0xa0, 0xbe, 0x07, 0x50, 0x85, 0xd8, 0x72, 0x58, 0xe4, 0xb1, + 0xe0, 0x54, 0x2f, 0x79, 0x15, 0xb3, 0x33, 0xef, 0x74, 0x89, 0x61, 0x9d, + 0x63, 0x5c, 0x8d, 0xfc, 0x0a, 0xee, 0xbc, 0x2b, 0xf0, 0xd6, 0xcd, 0x21, + 0x83, 0x51, 0xd5, 0x24, 0xfb, 0x44, 0x8c, 0xa1, 0xd6, 0x2e, 0x88, 0xbe, + 0x99, 0xf5, 0xae, 0x6f, 0x51, 0xd5, 0x16, 0x7b, 0xc8, 0xc5, 0xaa, 0x09, + 0x5a, 0x3e, 0xac, 0x3a, 0x0a, 0xb1, 0x37, 0x8b, 0x35, 0x1f, 0xec, 0xf8, + 0xed, 0xe6, 0xbd, 0x3b, 0x10, 0x05, 0x11, 0xc2, 0x36, 0xe4, 0x0e, 0x39, + 0x23, 0x93, 0x5b, 0x61, 0x9d, 0x2a, 0x4d, 0xb9, 0xab, 0xf6, 0x33, 0xad, + 0xcf, 0x34, 0x94, 0x08, 0xfc, 0x65, 0xe2, 0x0d, 0x52, 0x4d, 0x4e, 0xe6, + 0xc1, 0x6e, 0xf6, 0xda, 0xc4, 0xe5, 0x12, 0x38, 0x4e, 0xd0, 0x57, 0xdf, + 0x1d, 0x6b, 0x8f, 0xf2, 0x49, 0xe4, 0xaf, 0x1d, 0x49, 0x26, 0xb4, 0x35, + 0x0d, 0x41, 0xa6, 0xc8, 0x8a, 0x34, 0x5f, 0xef, 0x12, 0x3f, 0xad, 0x65, + 0xa4, 0xde, 0x6c, 0x9f, 0xbe, 0x7c, 0x2e, 0x71, 0xd7, 0x8a, 0x89, 0x6a, + 0xef, 0x15, 0x61, 0xa5, 0xfc, 0xce, 0xe6, 0xce, 0x8d, 0x61, 0x1d, 0xfc, + 0xb2, 0x47, 0xd5, 0x63, 0x8d, 0xa4, 0x6d, 0xc3, 0x00, 0x62, 0x9b, 0x26, + 0xa1, 0xb4, 0xe5, 0x62, 0x50, 0x47, 0x00, 0x0e, 0x2a, 0xe2, 0xdf, 0xda, + 0xaa, 0xcb, 0x6d, 0x64, 0xd8, 0x84, 0x40, 0x77, 0x36, 0x39, 0x73, 0x8e, + 0xb5, 0x87, 0x1b, 0x20, 0x2a, 0x47, 0x20, 0xf5, 0x27, 0xbd, 0x65, 0x17, + 0x27, 0x77, 0x23, 0x4d, 0x2d, 0xa1, 0x79, 0x76, 0xdc, 0x4a, 0x0b, 0x2e, + 0xe3, 0xd7, 0xd6, 0xba, 0x0b, 0x3f, 0x0a, 0x6a, 0x5a, 0x96, 0xc6, 0x8e, + 0xda, 0x48, 0xd4, 0x10, 0x43, 0x37, 0xca, 0x3f, 0x5a, 0xed, 0xbc, 0x25, + 0xe1, 0xcd, 0x32, 0xde, 0x08, 0xee, 0xfc, 0x9f, 0x32, 0x49, 0x23, 0x04, + 0x17, 0xfe, 0x13, 0xed, 0x5d, 0x6e, 0x15, 0x1d, 0x55, 0x48, 0x03, 0xd0, + 0x56, 0x4e, 0xaf, 0xf2, 0x9b, 0x46, 0x92, 0xea, 0x79, 0xdd, 0xe7, 0x82, + 0x2f, 0xad, 0x6c, 0xda, 0x6f, 0x32, 0x22, 0x15, 0x72, 0x54, 0x64, 0xd7, + 0x28, 0xdb, 0xf2, 0x30, 0xd8, 0x03, 0x8c, 0x60, 0x64, 0xd7, 0xb5, 0x6a, + 0x8b, 0x25, 0xc6, 0x9f, 0x34, 0x40, 0x63, 0x72, 0x10, 0x0d, 0x78, 0x95, + 0xeb, 0x9b, 0x7b, 0x87, 0x8d, 0x88, 0xc2, 0x12, 0x33, 0x57, 0x09, 0x3e, + 0x66, 0x99, 0x35, 0x23, 0x64, 0xac, 0x4a, 0x23, 0x57, 0x70, 0x54, 0xbe, + 0xe1, 0xe9, 0xd2, 0xb9, 0x5d, 0x67, 0x71, 0xba, 0x79, 0x5c, 0x61, 0xb3, + 0x83, 0x5d, 0x45, 0xbd, 0xcb, 0x4b, 0x8d, 0xad, 0x8e, 0x2b, 0x1f, 0x58, + 0xb5, 0x53, 0x67, 0x2c, 0x99, 0xcb, 0x67, 0xaf, 0xe3, 0x5a, 0xda, 0xe6, + 0x27, 0x37, 0xf6, 0xb4, 0x07, 0x8c, 0x9f, 0xa0, 0xa3, 0xed, 0x8e, 0x7e, + 0xe4, 0x2c, 0x6b, 0xd9, 0xbc, 0x19, 0xf0, 0xff, 0x00, 0xc3, 0xf3, 0xe8, + 0x16, 0x3a, 0x85, 0xd5, 0x9f, 0x9f, 0x71, 0x2c, 0x61, 0xdb, 0xcc, 0x62, + 0x57, 0xf2, 0xe9, 0x5d, 0xad, 0xb7, 0x87, 0xb4, 0x7b, 0x33, 0x9b, 0x7d, + 0x32, 0xd2, 0x23, 0xea, 0x90, 0xa8, 0x3f, 0xca, 0xbb, 0xe1, 0x97, 0xa6, + 0xaf, 0x26, 0x72, 0x3c, 0x4a, 0x4f, 0x44, 0x7c, 0xce, 0x27, 0xbb, 0x6f, + 0xf9, 0x75, 0x93, 0xf2, 0xa9, 0x21, 0xb8, 0x94, 0x5c, 0x47, 0xbe, 0x09, + 0x13, 0x2c, 0x06, 0x48, 0xf7, 0xaf, 0xa8, 0x45, 0xb4, 0x20, 0x71, 0x12, + 0x7e, 0x55, 0x91, 0xe2, 0x7b, 0x4b, 0x63, 0xe1, 0xcb, 0xe6, 0x68, 0x23, + 0x3b, 0x62, 0x2c, 0x09, 0x5e, 0x84, 0x77, 0xad, 0x1e, 0x5f, 0x4e, 0xdb, + 0x82, 0xc5, 0x3b, 0xda, 0xc7, 0x13, 0x6c, 0xcd, 0xe4, 0x20, 0x3b, 0x89, + 0xc0, 0xe9, 0x56, 0x62, 0x4d, 0x92, 0x64, 0xc6, 0xc0, 0x1e, 0xa4, 0xb5, + 0x32, 0x16, 0x8d, 0x60, 0x56, 0x4f, 0x9b, 0x20, 0x74, 0x34, 0xf9, 0x6e, + 0x02, 0xae, 0xe4, 0x52, 0xc7, 0xd3, 0x35, 0xe7, 0x33, 0xa9, 0x31, 0x97, + 0xd3, 0xf9, 0x76, 0x32, 0xec, 0x8c, 0x11, 0xb4, 0xe2, 0xbc, 0xc4, 0xea, + 0x72, 0xe4, 0x81, 0x03, 0xd7, 0xa5, 0x2c, 0x90, 0xcb, 0x34, 0x71, 0x3c, + 0x7c, 0xbb, 0x00, 0x41, 0xe4, 0x72, 0x6b, 0xd0, 0xa1, 0xd3, 0x6d, 0x23, + 0x89, 0x42, 0x5b, 0x42, 0xa3, 0x1d, 0x02, 0x01, 0x5d, 0x34, 0x70, 0x71, + 0xc4, 0x2b, 0xc9, 0xda, 0xc6, 0x53, 0xaf, 0xec, 0x9e, 0xd7, 0x3e, 0x72, + 0x1a, 0xbb, 0x29, 0xf9, 0xa2, 0x61, 0xf8, 0xd4, 0xd1, 0xeb, 0x28, 0xc7, + 0x0c, 0xac, 0x3f, 0x0a, 0xfa, 0x06, 0x4d, 0x0f, 0x4c, 0xb8, 0x2f, 0xe7, + 0x69, 0xd6, 0xb2, 0xe4, 0xff, 0x00, 0x1c, 0x40, 0xff, 0x00, 0x4a, 0xa6, + 0xff, 0x00, 0x0f, 0xb4, 0x1d, 0x4e, 0x4d, 0x87, 0x48, 0x81, 0x06, 0x39, + 0x31, 0x0d, 0x98, 0xff, 0x00, 0xbe, 0x71, 0x55, 0x3c, 0xaa, 0x09, 0x5f, + 0x98, 0x23, 0x8d, 0xbf, 0x43, 0xc4, 0x45, 0xf2, 0x3f, 0xdd, 0x6c, 0x9f, + 0x4a, 0xf4, 0xdf, 0x00, 0xf8, 0x4e, 0x2b, 0xbd, 0x33, 0xfb, 0x46, 0xef, + 0x21, 0xa5, 0x62, 0x10, 0x7f, 0xb2, 0x2a, 0xb7, 0x8f, 0xbe, 0x1c, 0x68, + 0xfe, 0x1d, 0xb4, 0xb0, 0xbc, 0xd3, 0x04, 0xb1, 0xbc, 0x93, 0xf9, 0x4e, + 0x8c, 0xe5, 0x81, 0xf9, 0x49, 0xc8, 0xcf, 0x4e, 0x9f, 0xad, 0x7a, 0x07, + 0x87, 0xe2, 0x16, 0xba, 0x05, 0x8c, 0x49, 0xc2, 0x88, 0x86, 0x7f, 0x2a, + 0xf3, 0x25, 0x43, 0xd9, 0xce, 0xc7, 0x75, 0x39, 0xf3, 0x2b, 0xa2, 0xb5, + 0xc7, 0x81, 0xb4, 0xbb, 0x81, 0xb9, 0x51, 0x95, 0x8f, 0x75, 0x6a, 0xe6, + 0x35, 0xcf, 0x04, 0xcf, 0xa7, 0x24, 0xb7, 0x76, 0xb7, 0x2e, 0xd1, 0xa8, + 0xc9, 0x8c, 0x8e, 0x71, 0x5e, 0x90, 0x5d, 0x94, 0x71, 0x91, 0x59, 0x7e, + 0x21, 0x98, 0xae, 0x87, 0x76, 0xc7, 0x9c, 0x44, 0xdc, 0x7e, 0x15, 0x6e, + 0x5c, 0xaa, 0xe8, 0x9b, 0x73, 0x6e, 0x78, 0x9c, 0x81, 0x1e, 0xe4, 0xab, + 0x39, 0x03, 0x1d, 0xc8, 0x18, 0xa5, 0xb6, 0xd2, 0xed, 0xef, 0x25, 0x54, + 0x90, 0x85, 0x5c, 0xe0, 0x15, 0xfe, 0x75, 0x19, 0xb8, 0xb6, 0x2d, 0xe6, + 0x4c, 0xac, 0xac, 0x4f, 0xf1, 0x76, 0xad, 0x5d, 0x35, 0xd2, 0x67, 0x50, + 0x8c, 0x00, 0xec, 0x42, 0xd6, 0xd6, 0x4c, 0xc3, 0x62, 0x0b, 0x8d, 0x22, + 0xe2, 0xc1, 0xd3, 0xec, 0x77, 0xaf, 0x82, 0x3a, 0x13, 0x91, 0x4f, 0xb7, + 0xd6, 0x2f, 0xf4, 0xa9, 0x19, 0x6f, 0x55, 0xe4, 0x8c, 0x8c, 0x86, 0x1c, + 0xd6, 0x95, 0xc4, 0x32, 0x23, 0x21, 0x5c, 0x9c, 0x56, 0x94, 0xde, 0x1a, + 0xd4, 0x6e, 0xad, 0xd6, 0x46, 0xb6, 0x05, 0x48, 0xe8, 0x08, 0xa9, 0x95, + 0x91, 0x51, 0x4d, 0x95, 0x6d, 0x75, 0xfb, 0x5b, 0xbc, 0x6c, 0x95, 0x41, + 0xf4, 0x26, 0xba, 0x11, 0x2e, 0xa8, 0xe9, 0x0c, 0xb0, 0x48, 0x21, 0x89, + 0x07, 0x1c, 0xf2, 0x45, 0x71, 0xf3, 0x68, 0xb1, 0xb4, 0xa9, 0x6f, 0x75, + 0x65, 0x24, 0x6c, 0x3a, 0x10, 0x31, 0xfa, 0xd6, 0x98, 0xbb, 0x89, 0x36, + 0x42, 0x89, 0x34, 0x70, 0xa8, 0x0a, 0x1c, 0xb1, 0x62, 0xbe, 0xf5, 0xa5, + 0x35, 0xbc, 0x93, 0xb1, 0xcf, 0x88, 0x95, 0xad, 0x16, 0xae, 0x75, 0x77, + 0x16, 0xa3, 0xc4, 0x1a, 0x3b, 0xda, 0x4d, 0xa8, 0xdc, 0xa1, 0x90, 0x15, + 0x90, 0x47, 0xb7, 0x03, 0xd3, 0x82, 0x39, 0xaf, 0x09, 0xf1, 0x0f, 0x86, + 0x6f, 0xbc, 0x33, 0xac, 0x49, 0x66, 0xf9, 0x9a, 0x2c, 0x6e, 0x49, 0x40, + 0x20, 0x30, 0xf6, 0xaf, 0x53, 0x9f, 0xc5, 0xb7, 0xba, 0x00, 0x58, 0x67, + 0x48, 0xe7, 0x8c, 0xf2, 0x92, 0x7f, 0x78, 0x56, 0x77, 0x88, 0xb5, 0x4b, + 0x7f, 0x14, 0x0b, 0x7b, 0x88, 0xe3, 0x08, 0xa8, 0x9b, 0x4a, 0xe7, 0xbe, + 0x6b, 0x49, 0xaa, 0x3c, 0xbc, 0xaf, 0xe2, 0x44, 0xd0, 0x53, 0xbf, 0x37, + 0x43, 0x07, 0xc2, 0x56, 0x77, 0xb6, 0xb2, 0xad, 0xd3, 0xca, 0xf1, 0xc0, + 0x78, 0xd9, 0xd8, 0xfd, 0x6b, 0xa6, 0xbf, 0xd3, 0xd2, 0x4b, 0x88, 0xa4, + 0x59, 0x0a, 0x48, 0xa7, 0x70, 0xda, 0x48, 0x04, 0xfb, 0x8a, 0x5b, 0xbd, + 0xd6, 0xba, 0x3a, 0x7d, 0x9b, 0x67, 0x60, 0x73, 0x56, 0x66, 0x95, 0x16, + 0xc5, 0x9d, 0x98, 0x02, 0x23, 0x24, 0xfe, 0x55, 0xcd, 0x38, 0x25, 0xa1, + 0xd5, 0x17, 0xd4, 0x82, 0xe3, 0x50, 0x86, 0x18, 0xd5, 0x35, 0x08, 0xfe, + 0x56, 0x3b, 0x73, 0x8e, 0x9e, 0xe0, 0xd5, 0xab, 0x6d, 0x29, 0xe0, 0x9b, + 0xce, 0x81, 0xc3, 0x44, 0x57, 0x22, 0xb8, 0xdd, 0x2f, 0xc4, 0x4c, 0xc8, + 0x6d, 0x6f, 0x90, 0x5c, 0x5b, 0x31, 0xe0, 0xf7, 0x5f, 0x70, 0x6b, 0xd3, + 0x74, 0xdd, 0x3a, 0x77, 0xd0, 0xa2, 0xba, 0xb2, 0x22, 0x70, 0x73, 0x80, + 0x4e, 0x09, 0x5f, 0x4f, 0xad, 0x72, 0x35, 0xd8, 0xdd, 0x22, 0x0d, 0x22, + 0xea, 0x59, 0xa6, 0x61, 0x70, 0xdb, 0xd2, 0x33, 0xf2, 0x86, 0x3d, 0x2b, + 0x65, 0x6e, 0xf7, 0x64, 0x20, 0xc0, 0xf5, 0xae, 0x7e, 0xda, 0xde, 0x5b, + 0x6b, 0xdb, 0x95, 0x99, 0x4c, 0x44, 0x82, 0xd8, 0x3e, 0x9e, 0xb5, 0x2e, + 0x9b, 0x77, 0x1e, 0xa5, 0x0f, 0x9d, 0x6e, 0xec, 0x63, 0x0c, 0x57, 0x9e, + 0x32, 0x45, 0x5a, 0x8a, 0xe5, 0xb9, 0x9b, 0xbd, 0xec, 0x69, 0x08, 0xfe, + 0x67, 0x2f, 0x23, 0x48, 0xcd, 0xd3, 0x03, 0x00, 0x7d, 0x2a, 0xd5, 0x96, + 0x9d, 0x75, 0x29, 0x2d, 0x70, 0x02, 0x45, 0xfc, 0x2a, 0x3a, 0x9a, 0xb3, + 0xa5, 0x43, 0x19, 0x42, 0xed, 0x82, 0xc3, 0xf1, 0xc5, 0x6a, 0x6e, 0x38, + 0xe1, 0x4d, 0x5a, 0xbb, 0xd8, 0x1a, 0xb6, 0xe5, 0x69, 0xad, 0xa0, 0x4b, + 0x56, 0x5d, 0x83, 0x18, 0xc6, 0x48, 0xae, 0x5b, 0xca, 0x8c, 0x70, 0x23, + 0x7e, 0x4f, 0x19, 0xae, 0x9b, 0x55, 0x9e, 0x58, 0xac, 0x64, 0x64, 0xda, + 0xa7, 0x1c, 0x13, 0x5c, 0x44, 0x93, 0xdc, 0xbb, 0xe2, 0x4b, 0xa2, 0x01, + 0xfe, 0xea, 0xd3, 0x4f, 0x50, 0x6b, 0x42, 0xfe, 0xdf, 0x2c, 0x97, 0x21, + 0x72, 0x7d, 0x3a, 0xd6, 0x6e, 0xa3, 0xa8, 0x2d, 0x8c, 0x68, 0xd3, 0x3a, + 0xa8, 0x66, 0xeb, 0xd4, 0x9a, 0x0c, 0x6b, 0x27, 0x2d, 0x2b, 0xb1, 0x1e, + 0xa6, 0xb9, 0xef, 0x12, 0x46, 0xe2, 0x38, 0xbc, 0x98, 0xf7, 0x1c, 0x9f, + 0x7a, 0xbb, 0xd9, 0x12, 0x95, 0xd9, 0xb1, 0x36, 0xad, 0x67, 0x34, 0x3b, + 0x92, 0xe2, 0x32, 0xa4, 0x67, 0xef, 0x55, 0xbf, 0x05, 0xdf, 0x5a, 0x8d, + 0x3e, 0xe0, 0x19, 0x52, 0x33, 0xe7, 0x13, 0x86, 0x60, 0x0e, 0x30, 0x39, + 0xae, 0x23, 0x4c, 0x8e, 0x37, 0x12, 0x35, 0xc4, 0x40, 0x30, 0x38, 0xc6, + 0x3a, 0xfb, 0xd1, 0xab, 0xe9, 0x89, 0x7b, 0xa7, 0xc8, 0x8a, 0xaa, 0x9d, + 0xe3, 0x23, 0xa9, 0xae, 0x9c, 0x35, 0x6f, 0x67, 0x2e, 0x66, 0xae, 0x63, + 0x56, 0x9a, 0x9a, 0xb0, 0x78, 0xd7, 0xc6, 0xba, 0xc5, 0xee, 0xa1, 0x35, + 0x8e, 0x9a, 0xad, 0x05, 0xbc, 0x12, 0x10, 0x26, 0x88, 0xfc, 0xce, 0x47, + 0x19, 0x07, 0xb0, 0xae, 0x11, 0x23, 0xba, 0x32, 0xcd, 0x2d, 0xc7, 0x98, + 0xd2, 0x48, 0x87, 0x2c, 0xe4, 0x92, 0x49, 0xa9, 0xed, 0x35, 0x2b, 0xdd, + 0x2e, 0x5d, 0x80, 0xef, 0x50, 0x70, 0x51, 0xc6, 0x73, 0x5b, 0xcb, 0xe2, + 0x1b, 0x69, 0x50, 0xee, 0xb1, 0x26, 0x42, 0x3b, 0x91, 0x80, 0x68, 0xaf, + 0x88, 0x95, 0x4d, 0x5b, 0xd0, 0x21, 0x49, 0x43, 0x63, 0x27, 0x4e, 0x8f, + 0xcb, 0x88, 0x21, 0x91, 0x57, 0xeb, 0xd6, 0xb5, 0x84, 0x8a, 0x23, 0xc6, + 0xf5, 0x23, 0x1d, 0x6a, 0xa4, 0x9a, 0xa3, 0x48, 0xc0, 0x98, 0x50, 0x0f, + 0x4a, 0x55, 0xbc, 0x8d, 0xb8, 0x36, 0xc3, 0x27, 0xd0, 0xd6, 0x51, 0xac, + 0xba, 0xb1, 0xba, 0x7d, 0x8b, 0x91, 0x4a, 0x19, 0x72, 0x1c, 0x1c, 0x7a, + 0x1a, 0x7f, 0x9e, 0x0b, 0x60, 0x30, 0xcd, 0x02, 0xd5, 0x65, 0xb7, 0x12, + 0xc5, 0x16, 0x09, 0xf5, 0xa8, 0x4c, 0x1c, 0x97, 0x08, 0xa4, 0x8f, 0xc2, + 0xb4, 0xe6, 0x62, 0xb2, 0x27, 0x9d, 0x8b, 0x26, 0x11, 0x80, 0x35, 0x00, + 0x56, 0x8d, 0x7e, 0x62, 0x73, 0x55, 0x24, 0x82, 0x43, 0x26, 0xe5, 0xdc, + 0xb8, 0xf4, 0x6a, 0x85, 0xee, 0xae, 0xa3, 0x38, 0x71, 0xb9, 0x7d, 0xe9, + 0xdc, 0x2c, 0x4b, 0x3c, 0xa1, 0x98, 0xf3, 0x9a, 0xc6, 0xbc, 0x8c, 0x33, + 0xe4, 0x0e, 0x7d, 0x6a, 0xf3, 0x36, 0xc9, 0x07, 0x9a, 0xc3, 0xe6, 0xe4, + 0x64, 0x52, 0x4a, 0x6d, 0xdd, 0xf6, 0x80, 0xca, 0x7e, 0x99, 0xa8, 0x72, + 0x4d, 0x0f, 0x95, 0xa3, 0x3e, 0x01, 0x2c, 0x72, 0x02, 0x83, 0xad, 0x6c, + 0xa6, 0x4a, 0x92, 0x5b, 0xa7, 0x6a, 0x89, 0x21, 0x41, 0xca, 0x38, 0x61, + 0x9a, 0x96, 0x68, 0xd8, 0xc3, 0xc0, 0x20, 0x8f, 0xd2, 0x9a, 0xb5, 0xb4, + 0x07, 0x7e, 0xa3, 0xe6, 0x20, 0x8f, 0xbb, 0xd3, 0xa8, 0x34, 0x96, 0xf1, + 0x97, 0x1b, 0x90, 0x94, 0x35, 0x06, 0xe6, 0xd8, 0x37, 0x02, 0x73, 0x57, + 0x2d, 0x95, 0x95, 0x41, 0x5e, 0x87, 0xf4, 0xa4, 0xc6, 0x88, 0x6e, 0x65, + 0x58, 0xb6, 0xac, 0x80, 0x17, 0xcf, 0xe3, 0x59, 0x57, 0x77, 0x77, 0xa7, + 0x3e, 0x52, 0x14, 0x5e, 0xc7, 0x3c, 0x81, 0x57, 0xae, 0x72, 0x2e, 0xcb, + 0xf5, 0x62, 0x3a, 0xd4, 0x91, 0x22, 0xcd, 0x82, 0xbc, 0xb7, 0x42, 0xb5, + 0x8e, 0xa6, 0x9b, 0x9c, 0xaf, 0x97, 0x34, 0xf2, 0x9d, 0xd9, 0x66, 0xee, + 0x4d, 0x68, 0xdb, 0xe9, 0x9b, 0x42, 0xc8, 0xfd, 0x73, 0x57, 0x64, 0x8d, + 0x21, 0xba, 0x93, 0x09, 0x83, 0xe9, 0xe9, 0x4d, 0x49, 0x4b, 0x71, 0x9e, + 0x3d, 0x29, 0xf3, 0xb6, 0x0a, 0x9a, 0x47, 0x4b, 0xa7, 0xaa, 0xf9, 0xea, + 0xb1, 0x39, 0xe5, 0x01, 0x3c, 0x75, 0xa6, 0xdd, 0x18, 0xad, 0x6e, 0x59, + 0xa5, 0x1f, 0x37, 0x66, 0x22, 0xac, 0x69, 0x71, 0xc0, 0xab, 0x1b, 0x86, + 0xdb, 0xb8, 0x00, 0x4e, 0x7b, 0xd5, 0x7b, 0xc8, 0x05, 0xcd, 0xdb, 0x13, + 0x23, 0x10, 0xbc, 0x0c, 0x8e, 0x2b, 0x38, 0x6e, 0x54, 0xb6, 0x29, 0x8b, + 0xbf, 0x32, 0x6f, 0xdd, 0x28, 0x03, 0xbf, 0xbd, 0x5d, 0x5b, 0x67, 0x92, + 0xee, 0x23, 0x1c, 0xbb, 0x03, 0x1f, 0x98, 0x7a, 0xd5, 0x58, 0xed, 0x5a, + 0x38, 0xb2, 0x8d, 0x87, 0xe9, 0xd3, 0x8a, 0xd0, 0xb7, 0x99, 0xd2, 0x58, + 0x54, 0x46, 0x1b, 0x1e, 0x9d, 0x6b, 0x4b, 0x99, 0xd8, 0xd8, 0xf2, 0x42, + 0x84, 0x5d, 0xa5, 0xf1, 0xd4, 0x9e, 0x05, 0x66, 0x3d, 0xa5, 0xd3, 0xea, + 0x01, 0x55, 0x08, 0x8f, 0x7e, 0x41, 0xc7, 0x18, 0xab, 0xf2, 0xdd, 0xed, + 0xb6, 0x6d, 0xc7, 0x6c, 0xa4, 0x70, 0xbe, 0x95, 0x43, 0x4c, 0x86, 0xf9, + 0x98, 0xbd, 0xe5, 0xc3, 0x14, 0x3d, 0x17, 0xa5, 0x43, 0x34, 0x46, 0x9b, + 0xbc, 0x47, 0x28, 0xf9, 0x2e, 0xbd, 0x32, 0x6b, 0x0e, 0xe1, 0xfe, 0x7e, + 0x11, 0x72, 0x4f, 0x5a, 0xdb, 0x92, 0x48, 0x00, 0x2b, 0x85, 0x3b, 0x7f, + 0xbd, 0x5c, 0xfd, 0xd5, 0xc7, 0xca, 0x51, 0x40, 0x3c, 0x9f, 0xbb, 0x49, + 0x03, 0x63, 0x76, 0x4a, 0x64, 0x2c, 0x08, 0x39, 0x3c, 0x8a, 0xd9, 0xd3, + 0x1d, 0xc1, 0x20, 0x36, 0xcc, 0x9e, 0x70, 0x3a, 0xd7, 0x38, 0xd7, 0x73, + 0x6d, 0xd9, 0x9e, 0x87, 0xf2, 0xab, 0x96, 0xf7, 0x32, 0x33, 0xaf, 0x97, + 0x80, 0x7b, 0xb1, 0xaa, 0x62, 0x5a, 0x9e, 0xc1, 0x67, 0xa0, 0x59, 0xeb, + 0x5e, 0x10, 0x82, 0x1b, 0xa4, 0xdc, 0x5a, 0x6d, 0xdb, 0xc7, 0x0c, 0x30, + 0xde, 0xbf, 0x4e, 0x2a, 0xad, 0x8f, 0x82, 0x34, 0xc7, 0xb7, 0xb9, 0x32, + 0x46, 0xc4, 0xc5, 0x21, 0x54, 0x20, 0x8e, 0xd5, 0x8d, 0xa6, 0x78, 0xce, + 0xe3, 0x4d, 0xd0, 0x21, 0xb3, 0x16, 0xe8, 0xf3, 0xc7, 0x26, 0xe0, 0xe5, + 0xbe, 0x52, 0x33, 0x9c, 0x11, 0xeb, 0x53, 0xe9, 0xde, 0x39, 0xbd, 0x8a, + 0x39, 0xd6, 0x5b, 0x7b, 0x7c, 0xc9, 0x21, 0x71, 0x92, 0x78, 0xcf, 0x6a, + 0xc5, 0xc1, 0x49, 0xa6, 0xd1, 0xb4, 0x6a, 0x38, 0xa6, 0x91, 0xd9, 0x69, + 0x9e, 0x0e, 0xd1, 0x23, 0xbc, 0x3b, 0xec, 0x92, 0x4d, 0xa0, 0x90, 0xb2, + 0x7c, 0xc3, 0xf2, 0xa4, 0xf1, 0x57, 0x87, 0xb4, 0x7b, 0x4d, 0x15, 0xef, + 0x22, 0xb1, 0xb7, 0x82, 0x48, 0x19, 0x58, 0x49, 0x1c, 0x61, 0x48, 0xe7, + 0x07, 0xa7, 0xd6, 0xb9, 0x43, 0xe3, 0xeb, 0xa1, 0x75, 0xe6, 0xc7, 0x2c, + 0x28, 0x01, 0x04, 0x81, 0xcf, 0x4e, 0xdc, 0xfa, 0xd4, 0x5a, 0xc7, 0x8d, + 0xae, 0x35, 0xbb, 0x56, 0xb5, 0x96, 0x68, 0x12, 0x03, 0x82, 0xc9, 0x18, + 0xeb, 0x8e, 0x99, 0x39, 0xae, 0x9a, 0x52, 0x84, 0x20, 0xd5, 0x8e, 0x79, + 0xba, 0x92, 0x9d, 0xef, 0xa1, 0x0b, 0x5c, 0x5a, 0xb2, 0x8c, 0x12, 0x73, + 0x53, 0x58, 0x0b, 0x5b, 0xcb, 0xd8, 0x2d, 0x24, 0x5c, 0xc7, 0x2b, 0xaa, + 0x10, 0x7b, 0xe4, 0xe2, 0xb9, 0xaf, 0x39, 0x39, 0xc3, 0xe4, 0x9f, 0x7a, + 0x85, 0xef, 0x4a, 0x3a, 0xb7, 0x9c, 0x51, 0x81, 0xf9, 0x70, 0x70, 0x6a, + 0x54, 0xb5, 0xd4, 0xab, 0x3e, 0x87, 0xbb, 0x45, 0xa0, 0xe9, 0x91, 0x44, + 0x15, 0x74, 0xfb, 0x6d, 0xa3, 0xfe, 0x99, 0x2f, 0xf8, 0x53, 0xdb, 0x43, + 0xd2, 0xe4, 0xfb, 0xda, 0x6d, 0xa3, 0x7d, 0x61, 0x53, 0xfd, 0x2b, 0xc6, + 0xe0, 0xf1, 0xe6, 0xaf, 0x6a, 0x00, 0x5d, 0x56, 0x42, 0x7a, 0x62, 0x46, + 0xdf, 0xfc, 0xea, 0xec, 0x3e, 0x3e, 0xd4, 0xa3, 0x5c, 0x35, 0xf4, 0x83, + 0xbe, 0x5b, 0x07, 0xf9, 0xd7, 0x57, 0xd6, 0x23, 0xd8, 0xe7, 0x70, 0xab, + 0xfc, 0xdf, 0x89, 0xdc, 0x78, 0xa7, 0xc2, 0x5a, 0x4c, 0xda, 0x15, 0xdc, + 0xf1, 0x59, 0x45, 0x0c, 0xd0, 0xc6, 0x64, 0x47, 0x89, 0x02, 0xf4, 0xe7, + 0xb5, 0x79, 0xd5, 0xe4, 0x49, 0x19, 0x04, 0x00, 0x0e, 0x06, 0x6b, 0x4e, + 0xe7, 0xc7, 0xd7, 0xda, 0x95, 0x9c, 0x96, 0x72, 0x5c, 0xa1, 0x49, 0x46, + 0xd6, 0xda, 0x80, 0x12, 0x3d, 0x33, 0x58, 0x8e, 0xa6, 0x67, 0x27, 0x25, + 0x98, 0x8e, 0xac, 0x6b, 0x9a, 0xa3, 0x8c, 0xa6, 0xa5, 0x1d, 0x0d, 0xe0, + 0xe6, 0xa0, 0xe3, 0x2d, 0x4a, 0x53, 0x0d, 0xc4, 0xe4, 0x66, 0xa1, 0x61, + 0x81, 0x93, 0xce, 0x29, 0x67, 0x13, 0x44, 0xc4, 0x30, 0xe3, 0xd4, 0x76, + 0xa4, 0x04, 0x37, 0xd6, 0xb6, 0x4d, 0x34, 0x65, 0x66, 0x99, 0x58, 0xee, + 0x8c, 0xee, 0x07, 0x2a, 0x69, 0xb2, 0x31, 0x18, 0xe7, 0x8c, 0xf5, 0xab, + 0x27, 0x1b, 0xba, 0x71, 0x4c, 0x78, 0xce, 0xd2, 0x46, 0x08, 0xfe, 0x54, + 0xec, 0x85, 0xa8, 0xdb, 0x7b, 0x86, 0x79, 0x30, 0xc7, 0x77, 0x1d, 0x0d, + 0x6f, 0x44, 0xb1, 0x4d, 0x8c, 0x26, 0xd3, 0xfe, 0xc7, 0x18, 0xae, 0x70, + 0x26, 0xd9, 0x01, 0x07, 0x9a, 0xd7, 0xb3, 0x0e, 0x84, 0x16, 0x24, 0x03, + 0xcf, 0xd6, 0xb3, 0x94, 0x4d, 0x22, 0xcd, 0x6b, 0x3b, 0x2f, 0xb2, 0xcc, + 0xf2, 0x45, 0x3e, 0x4b, 0x72, 0xcb, 0x2f, 0x22, 0xb5, 0x63, 0xd5, 0xf5, + 0x1d, 0x2e, 0x06, 0x6b, 0x3f, 0x3e, 0x36, 0xeb, 0x88, 0xc8, 0x75, 0x3f, + 0x85, 0x55, 0xb1, 0x82, 0x5b, 0xd9, 0x05, 0xbc, 0x51, 0x99, 0x24, 0x71, + 0xf2, 0x81, 0xde, 0xa7, 0x6d, 0x3a, 0xf3, 0x4f, 0x25, 0x64, 0x8e, 0x68, + 0x3f, 0xdf, 0x07, 0x07, 0xf1, 0xa5, 0x0b, 0xc7, 0x54, 0x6c, 0xa1, 0xce, + 0x86, 0x7d, 0xb7, 0x51, 0xbb, 0x77, 0xbf, 0x76, 0xf3, 0xe4, 0x70, 0x37, + 0x67, 0x19, 0x1f, 0x80, 0xab, 0x3a, 0x55, 0xea, 0xc8, 0xe6, 0x29, 0xc6, + 0x1f, 0x24, 0xf3, 0x55, 0xfc, 0xf0, 0xdb, 0x44, 0xd1, 0xf2, 0x4f, 0x0e, + 0x9c, 0x1a, 0x9c, 0x69, 0xe6, 0x26, 0x2f, 0x13, 0x34, 0xdb, 0xf9, 0x21, + 0xb8, 0x22, 0xa3, 0xdd, 0xbd, 0xd6, 0xe3, 0x92, 0x92, 0x56, 0x96, 0xc7, + 0x59, 0x3f, 0x83, 0xad, 0x6f, 0x2d, 0x12, 0x58, 0x27, 0x78, 0xee, 0x0a, + 0xe4, 0xbe, 0xed, 0xca, 0xdf, 0x87, 0xa7, 0xd2, 0xb8, 0xd7, 0xd3, 0x67, + 0x4b, 0xb9, 0xe1, 0x97, 0x68, 0x78, 0x58, 0xa9, 0xdb, 0xd0, 0xe2, 0xb5, + 0xad, 0x7c, 0x51, 0x79, 0xa4, 0x32, 0x5b, 0xbe, 0xe9, 0x13, 0xa0, 0x47, + 0x1c, 0x8f, 0x60, 0x6a, 0xa4, 0xba, 0x91, 0x9e, 0x4b, 0x89, 0xdd, 0x02, + 0x3c, 0xa4, 0xb1, 0x03, 0xb1, 0xa8, 0xc5, 0x52, 0x84, 0x92, 0x9d, 0x25, + 0x66, 0x5e, 0x1a, 0x72, 0x4d, 0xc6, 0xab, 0xd0, 0xc1, 0x68, 0x11, 0x1c, + 0xcd, 0x08, 0xd8, 0xfe, 0xfd, 0x0d, 0x54, 0xde, 0xd3, 0x16, 0x79, 0x70, + 0xae, 0xbf, 0x74, 0x67, 0x83, 0xf4, 0xab, 0xa6, 0x61, 0xe5, 0x05, 0x73, + 0xf8, 0x1a, 0x82, 0x70, 0x1d, 0x08, 0x8c, 0x7c, 0xab, 0xcd, 0x6f, 0x1b, + 0xe8, 0xcc, 0x25, 0x6b, 0xb4, 0x6e, 0x69, 0x17, 0x4f, 0x2a, 0x0d, 0xea, + 0x42, 0x63, 0xa5, 0x32, 0x60, 0xa9, 0x7a, 0xe6, 0xdb, 0x6c, 0x52, 0x03, + 0x92, 0x3b, 0x3d, 0x56, 0xd3, 0xef, 0x24, 0x86, 0x34, 0xc2, 0x99, 0x47, + 0x75, 0x1d, 0x45, 0x75, 0x9a, 0xc5, 0xe6, 0x9b, 0xac, 0xd9, 0xda, 0x4b, + 0x18, 0x1f, 0x68, 0x57, 0xe7, 0x23, 0x0c, 0x17, 0x07, 0x20, 0xfe, 0x38, + 0xa9, 0xaa, 0x9f, 0x23, 0x94, 0x7a, 0x7e, 0x25, 0x51, 0xb3, 0x9a, 0x8b, + 0xeb, 0xf8, 0x15, 0xf4, 0xfd, 0x6e, 0xdd, 0x2d, 0x2f, 0x6d, 0x6e, 0x23, + 0x61, 0x23, 0xc6, 0x53, 0x6e, 0xdf, 0x50, 0x7f, 0x4e, 0x68, 0xb6, 0x10, + 0x2f, 0x97, 0x1a, 0x80, 0xb9, 0x5f, 0x4c, 0x56, 0x65, 0xc3, 0x41, 0xb3, + 0x76, 0xf1, 0x1c, 0x8a, 0x4a, 0xab, 0xff, 0x00, 0x8d, 0x5f, 0xb1, 0x6f, + 0xb6, 0x95, 0x52, 0x9b, 0x65, 0x40, 0x01, 0x23, 0xa1, 0xf7, 0x15, 0x93, + 0x7c, 0xf6, 0x7d, 0x8d, 0x7e, 0x0b, 0xae, 0xe5, 0xf6, 0x52, 0x0e, 0x0b, + 0x93, 0x8a, 0x43, 0x84, 0x52, 0x4e, 0x29, 0xa5, 0x66, 0x49, 0x1b, 0xce, + 0x60, 0x07, 0x41, 0x8a, 0x84, 0xc3, 0xe6, 0xdc, 0xac, 0xa9, 0x29, 0xc2, + 0x8c, 0x6d, 0x3d, 0x2a, 0x1d, 0xee, 0x69, 0x1b, 0x58, 0x9d, 0x37, 0xc8, + 0x01, 0x3f, 0x22, 0xd5, 0x88, 0xc2, 0xa8, 0xe3, 0xf3, 0xaa, 0xa5, 0xdb, + 0x67, 0xcf, 0x81, 0x8e, 0x82, 0x93, 0xed, 0x20, 0x01, 0xf3, 0x63, 0xd4, + 0x55, 0x22, 0x1b, 0x2e, 0x19, 0x53, 0xa9, 0xcf, 0xd2, 0x8f, 0xb4, 0x80, + 0x37, 0x00, 0x71, 0x8c, 0x57, 0x35, 0x7f, 0xe2, 0x39, 0x2d, 0x25, 0x11, + 0xad, 0xab, 0x38, 0x63, 0x80, 0x73, 0x57, 0xd2, 0xf6, 0x6d, 0xab, 0xfe, + 0x8c, 0xe5, 0x58, 0x64, 0xb1, 0x3d, 0x0d, 0x34, 0x4b, 0x46, 0xba, 0xdc, + 0x06, 0x20, 0x83, 0x8f, 0x5c, 0xd3, 0x92, 0xe5, 0x03, 0xb1, 0x32, 0x05, + 0xc7, 0x6a, 0xc5, 0x90, 0x4e, 0xee, 0x09, 0x46, 0xe0, 0x70, 0x4b, 0x62, + 0x9d, 0x10, 0xb9, 0x55, 0x3b, 0xe1, 0x42, 0x73, 0x9c, 0xee, 0xaa, 0x57, + 0x25, 0xa4, 0x6e, 0xad, 0xc7, 0x98, 0xa7, 0xf7, 0x80, 0xa9, 0xf4, 0xa6, + 0xb5, 0xdb, 0xa4, 0x85, 0x10, 0x06, 0x1e, 0xb9, 0xac, 0x73, 0x71, 0x30, + 0x52, 0xe8, 0x91, 0xaf, 0x6c, 0xee, 0xa6, 0xbd, 0xc4, 0xed, 0xb9, 0xc6, + 0xc0, 0x71, 0xeb, 0x55, 0x76, 0x45, 0x8a, 0xc3, 0x64, 0xe0, 0x07, 0xe4, + 0x71, 0x90, 0x7a, 0x52, 0x8b, 0x7b, 0x78, 0xc3, 0xae, 0xc5, 0x0a, 0x7a, + 0x01, 0xde, 0xb0, 0x66, 0xd4, 0x6e, 0x6d, 0x2d, 0x3c, 0xc9, 0x11, 0x70, + 0xa2, 0xa3, 0xb7, 0xd5, 0x66, 0xbc, 0x8f, 0x28, 0x80, 0xf3, 0xf9, 0xd3, + 0xd0, 0x9d, 0x4d, 0xd7, 0x91, 0x63, 0x18, 0x8f, 0x72, 0x7b, 0x0e, 0xd5, + 0x13, 0x5c, 0x4c, 0xab, 0xc4, 0x99, 0x35, 0x90, 0xd7, 0x73, 0xa6, 0x7f, + 0x70, 0x0b, 0x63, 0x8c, 0x9a, 0x87, 0xfb, 0x61, 0x80, 0xfd, 0xed, 0xb9, + 0xc8, 0xfe, 0xed, 0x30, 0x34, 0x2e, 0x6e, 0xce, 0x08, 0x6c, 0x1f, 0xad, + 0x63, 0xb9, 0x86, 0x77, 0xda, 0xe9, 0xdf, 0xb5, 0x45, 0x71, 0xa8, 0xc4, + 0xe7, 0xb8, 0xcf, 0x63, 0xda, 0xa2, 0x8a, 0xee, 0x21, 0x2f, 0xcc, 0xe0, + 0x01, 0xcf, 0x5a, 0x5a, 0x86, 0x85, 0x59, 0x2e, 0x8b, 0xdc, 0xcb, 0x6c, + 0x91, 0x96, 0x96, 0x42, 0x02, 0x0f, 0x40, 0x3b, 0xd5, 0x2d, 0x68, 0x4c, + 0x4e, 0xcf, 0x2c, 0x94, 0x8c, 0x7c, 0xc4, 0x77, 0x34, 0x93, 0xdf, 0x34, + 0x7a, 0xac, 0x66, 0x10, 0x56, 0x42, 0x70, 0x49, 0xf4, 0x26, 0xb5, 0xd1, + 0x16, 0x48, 0x26, 0x8e, 0x47, 0x0c, 0xdb, 0x8e, 0xe3, 0x51, 0x2d, 0x74, + 0x40, 0x73, 0x9c, 0xdd, 0x41, 0x1c, 0x51, 0xf5, 0xc0, 0x1f, 0x43, 0x57, + 0x74, 0xcb, 0x42, 0x09, 0x72, 0x55, 0x61, 0x4f, 0x94, 0xbf, 0x76, 0x3e, + 0xd5, 0x6d, 0xed, 0x62, 0x92, 0xd0, 0x4b, 0xe5, 0x98, 0xa0, 0x56, 0xf9, + 0x7b, 0x16, 0xac, 0xa7, 0xd4, 0xc2, 0x45, 0xe5, 0x81, 0x82, 0xa4, 0x80, + 0xa2, 0xad, 0x3d, 0x2c, 0x4b, 0x46, 0xc4, 0xf7, 0x30, 0xc0, 0x3c, 0xb8, + 0xf0, 0x23, 0x7e, 0x82, 0xaa, 0xea, 0x5a, 0x34, 0x5e, 0x52, 0x38, 0x00, + 0x6e, 0x61, 0x9a, 0xc9, 0x8a, 0xf4, 0xed, 0x73, 0x27, 0x2c, 0x79, 0xc9, + 0xed, 0x5a, 0xf3, 0xeb, 0x06, 0xfe, 0x14, 0x48, 0xd7, 0x64, 0x6b, 0x8d, + 0xd2, 0x1e, 0x31, 0x49, 0xa4, 0xc6, 0x99, 0xd3, 0x4b, 0xa4, 0x68, 0xd6, + 0x1f, 0x0f, 0x16, 0x44, 0xb7, 0x87, 0xed, 0x72, 0x48, 0x0a, 0xbe, 0x01, + 0x76, 0x60, 0xdc, 0xf3, 0xd7, 0xa5, 0x70, 0xf3, 0xcd, 0x0b, 0xb9, 0x0e, + 0x70, 0x47, 0xf0, 0x8e, 0xb5, 0xa2, 0x8b, 0x73, 0x71, 0x1f, 0xee, 0x54, + 0xec, 0x07, 0xfd, 0x63, 0xf4, 0xfc, 0x2a, 0x94, 0x9f, 0x67, 0xb6, 0x91, + 0xd9, 0x90, 0x3c, 0xbd, 0x9b, 0xd6, 0xae, 0xad, 0x6b, 0xdb, 0xa5, 0x91, + 0x30, 0x85, 0xaf, 0x7d, 0x6e, 0x3a, 0xc6, 0x19, 0xee, 0x51, 0x82, 0x91, + 0x6d, 0x07, 0x73, 0xdd, 0xbe, 0xb5, 0xa3, 0x61, 0xa7, 0x25, 0xdd, 0xe1, + 0xb4, 0xb0, 0x8b, 0xcf, 0x9c, 0xa9, 0xcb, 0x75, 0x00, 0x7a, 0xd6, 0x0c, + 0xb7, 0x4d, 0x26, 0x77, 0x39, 0xc7, 0xa0, 0xae, 0xc7, 0xe1, 0x6c, 0xca, + 0xfe, 0x25, 0xb8, 0x51, 0xce, 0x2d, 0x8e, 0x7f, 0xef, 0xa5, 0xae, 0x47, + 0x55, 0xbd, 0x8d, 0xa3, 0x0e, 0xe6, 0x95, 0x8f, 0xc3, 0x02, 0xf1, 0xee, + 0xd4, 0x2e, 0x8a, 0x82, 0x39, 0x54, 0x15, 0xe7, 0x3a, 0xf6, 0x9b, 0x1e, + 0x9b, 0xaa, 0xcf, 0x6a, 0x85, 0xb6, 0xc6, 0x70, 0x37, 0x75, 0xaf, 0xa5, + 0x08, 0xe3, 0x9c, 0x57, 0x82, 0xf8, 0xff, 0x00, 0xec, 0xe3, 0xc5, 0x77, + 0x2d, 0x07, 0x23, 0x03, 0x77, 0xd6, 0xb5, 0xa5, 0x27, 0xcd, 0x66, 0x2a, + 0xb1, 0x4a, 0x3a, 0x1c, 0xcd, 0xac, 0x82, 0x3d, 0xc0, 0x0e, 0x5d, 0x4a, + 0x8a, 0x90, 0x05, 0x42, 0x91, 0xb3, 0x2a, 0xb0, 0x39, 0x39, 0xac, 0xf2, + 0xed, 0x9c, 0xf4, 0xc5, 0x28, 0x7d, 0xcc, 0x18, 0xf2, 0x6b, 0x69, 0x2b, + 0x98, 0xa7, 0x63, 0xe8, 0x9f, 0x0b, 0x93, 0x2e, 0x81, 0x6f, 0x23, 0x1c, + 0xf0, 0x36, 0x91, 0xdc, 0x56, 0xbc, 0xa4, 0x7d, 0xa1, 0x46, 0x3b, 0x64, + 0x57, 0x8e, 0xe9, 0xde, 0x3d, 0xbe, 0xb3, 0xd1, 0x13, 0x4f, 0xb4, 0xb4, + 0xf9, 0xc0, 0xc0, 0x95, 0x89, 0xe3, 0xe9, 0x59, 0x29, 0xe2, 0xfd, 0x7a, + 0xf7, 0x5e, 0x85, 0x5f, 0x50, 0x99, 0x18, 0xb9, 0x52, 0xaa, 0xd8, 0x00, + 0x7a, 0x62, 0xb8, 0x9d, 0x19, 0x1d, 0x6a, 0xaa, 0x3d, 0xdf, 0x52, 0xba, + 0x86, 0x1b, 0x07, 0x69, 0x67, 0x48, 0x46, 0x31, 0x96, 0x6c, 0x57, 0xcf, + 0xb7, 0xf3, 0x2f, 0xdb, 0xa7, 0x60, 0x4c, 0xe8, 0x5c, 0xe0, 0x91, 0xef, + 0xd6, 0xbb, 0x82, 0x7e, 0xd0, 0x4f, 0xda, 0x5b, 0xcc, 0xcf, 0xf7, 0x8d, + 0x44, 0xf6, 0x36, 0x9b, 0x48, 0x8e, 0x34, 0xdd, 0xef, 0x5b, 0x46, 0x16, + 0xd5, 0x99, 0x4e, 0x7c, 0xca, 0xc7, 0x0f, 0xfd, 0xa4, 0x50, 0x01, 0xe5, + 0x11, 0x91, 0x4b, 0x73, 0x77, 0x14, 0x9a, 0x58, 0x87, 0x69, 0x12, 0x93, + 0xc9, 0xed, 0xd6, 0xba, 0x4d, 0x46, 0xc5, 0x59, 0xd4, 0x81, 0x18, 0x51, + 0xc6, 0x31, 0x54, 0xae, 0xec, 0x10, 0xc1, 0x8f, 0xdd, 0xae, 0x07, 0xde, + 0x26, 0xad, 0x3b, 0x11, 0x6b, 0x9d, 0x7f, 0x86, 0xbc, 0x7d, 0xa2, 0x69, + 0xbe, 0x1c, 0xb3, 0xb3, 0x99, 0xe6, 0xf3, 0xe1, 0x88, 0x2b, 0x2a, 0xc6, + 0x4f, 0x23, 0xd0, 0xd5, 0xf1, 0xf1, 0x1e, 0xde, 0x42, 0x4c, 0x3a, 0x6d, + 0xc3, 0x27, 0x66, 0x66, 0x03, 0x35, 0xe6, 0xd0, 0xe8, 0x4b, 0x70, 0xa5, + 0xa0, 0x98, 0x32, 0x8e, 0xa4, 0x1e, 0xf5, 0xa3, 0x05, 0x8c, 0xd0, 0x81, + 0x18, 0x6c, 0x85, 0xee, 0x4d, 0x76, 0x7d, 0x76, 0xa5, 0x92, 0x47, 0x37, + 0xd5, 0xa1, 0x7d, 0x4e, 0xda, 0x6f, 0x88, 0x6f, 0xb0, 0xf9, 0x1a, 0x5b, + 0x96, 0x1f, 0xdf, 0x90, 0x62, 0xb2, 0xee, 0x3c, 0x63, 0xa9, 0xea, 0xb6, + 0x73, 0xd9, 0x5c, 0x58, 0x42, 0x91, 0xce, 0xbb, 0x32, 0xac, 0x72, 0x3d, + 0x6b, 0x1e, 0x68, 0xda, 0x08, 0x1a, 0x52, 0x85, 0x97, 0xbd, 0x52, 0xd2, + 0x2f, 0x6d, 0xf5, 0x3b, 0xc7, 0x48, 0x89, 0xca, 0x0c, 0x96, 0x3d, 0xea, + 0x1e, 0x2e, 0xb4, 0xb4, 0xb9, 0x4b, 0x0f, 0x4d, 0x6a, 0x6e, 0x58, 0x40, + 0x13, 0x86, 0x56, 0x51, 0xe8, 0x5b, 0x39, 0xab, 0xf2, 0xcd, 0x14, 0x48, + 0x37, 0x1e, 0xbc, 0x2f, 0x15, 0x02, 0xc1, 0x3f, 0x1b, 0x55, 0x4a, 0x8e, + 0xbc, 0xd2, 0xcb, 0x9c, 0x06, 0x68, 0x86, 0x57, 0xa1, 0xcd, 0x73, 0xea, + 0x6d, 0xa0, 0xe1, 0x1a, 0xc8, 0x15, 0x91, 0x7f, 0x7b, 0x90, 0xca, 0xc0, + 0x62, 0xb6, 0x97, 0xc5, 0x37, 0xf0, 0x8f, 0xdf, 0x5b, 0x40, 0x54, 0x71, + 0xf2, 0x92, 0x2b, 0x86, 0xb7, 0xf1, 0x1c, 0x72, 0xea, 0xff, 0x00, 0x61, + 0x42, 0x7c, 0xc2, 0xdb, 0x41, 0x53, 0xde, 0xba, 0x09, 0xa0, 0xb9, 0x90, + 0x6d, 0xf2, 0x5b, 0x07, 0xbe, 0x6b, 0x5a, 0x75, 0xa7, 0x05, 0x68, 0x33, + 0x39, 0xd3, 0x8c, 0xfe, 0x23, 0xa0, 0xb5, 0xf1, 0x80, 0x66, 0x26, 0x5b, + 0x4c, 0x0d, 0xdc, 0x85, 0x93, 0x9c, 0x7e, 0x55, 0xb7, 0x63, 0xf1, 0x0f, + 0x43, 0x5b, 0x83, 0x04, 0xd1, 0xdc, 0x5b, 0x67, 0x18, 0x66, 0x4d, 0xc0, + 0xff, 0x00, 0xdf, 0x39, 0xaf, 0x3a, 0x16, 0x17, 0x31, 0x9c, 0xaa, 0x30, + 0xcf, 0xe3, 0x59, 0xd7, 0x73, 0x25, 0xac, 0xe1, 0x26, 0x70, 0xac, 0x0e, + 0x46, 0xee, 0x09, 0xab, 0x96, 0x26, 0xac, 0xbe, 0x22, 0x55, 0x08, 0x2d, + 0x8e, 0xf3, 0xe2, 0x5e, 0xbf, 0xa5, 0xdf, 0x69, 0xda, 0x74, 0x36, 0x97, + 0x09, 0x70, 0xe2, 0xe3, 0xcd, 0x6f, 0x2f, 0x9d, 0xaa, 0x14, 0x8e, 0x7d, + 0x3a, 0xd4, 0xbf, 0xf0, 0x98, 0x69, 0x9a, 0x66, 0x81, 0x60, 0xc9, 0x22, + 0xcf, 0x21, 0xda, 0xa6, 0x28, 0x8e, 0x5d, 0x78, 0xe4, 0x91, 0xda, 0xb8, + 0x80, 0x01, 0xf9, 0xda, 0x03, 0x86, 0xf9, 0xba, 0x66, 0x8d, 0xcb, 0xe7, + 0x7e, 0xee, 0x1d, 0xf9, 0xeb, 0xda, 0xb0, 0xa9, 0xef, 0xbb, 0xb3, 0x68, + 0x37, 0x05, 0x63, 0xd2, 0xad, 0xbc, 0x5f, 0xa6, 0xce, 0x15, 0x84, 0xbb, + 0x41, 0x1d, 0x1d, 0x48, 0xc5, 0x57, 0xf1, 0x0e, 0xaf, 0x6b, 0x3e, 0x89, + 0x72, 0x62, 0x92, 0x27, 0x06, 0x32, 0x31, 0xb8, 0x1c, 0xd7, 0x0c, 0xd7, + 0x10, 0x2a, 0x85, 0x69, 0x04, 0x6d, 0xe8, 0x69, 0x92, 0x43, 0x1d, 0xca, + 0x84, 0x8e, 0x55, 0x26, 0xb1, 0x71, 0xbe, 0x97, 0x34, 0x55, 0x17, 0x63, + 0x96, 0x9e, 0xda, 0x29, 0x2e, 0x0b, 0x89, 0x19, 0x77, 0x76, 0x23, 0x9a, + 0xb9, 0xa3, 0xda, 0x48, 0x97, 0x20, 0xb3, 0xa9, 0x55, 0xfc, 0x0d, 0x43, + 0xaa, 0x46, 0xd6, 0xac, 0x23, 0x75, 0x5d, 0xa3, 0xbe, 0x2a, 0xe6, 0x99, + 0xb5, 0xad, 0xd4, 0xc5, 0x27, 0xcd, 0xd4, 0xf3, 0x9c, 0x7e, 0x75, 0xba, + 0x66, 0x4c, 0xdc, 0x6b, 0x86, 0x32, 0xc6, 0x80, 0x77, 0xc6, 0x4d, 0x7a, + 0xd5, 0xa2, 0xb7, 0xd9, 0x23, 0xdb, 0x8e, 0x95, 0xe3, 0xc5, 0x9c, 0x46, + 0x86, 0x66, 0xdc, 0xd9, 0xe0, 0xf4, 0xcd, 0x7b, 0x0e, 0x9b, 0x32, 0xcd, + 0x63, 0x0b, 0x26, 0x08, 0x65, 0x07, 0x83, 0x53, 0x2f, 0x89, 0x1a, 0x47, + 0x63, 0x2b, 0xc5, 0x16, 0x7e, 0x76, 0x89, 0x31, 0x50, 0x81, 0xa3, 0x1b, + 0xce, 0x47, 0x27, 0x1d, 0x85, 0x70, 0xf1, 0xe9, 0xf6, 0xd6, 0xeb, 0x6d, + 0x24, 0x50, 0xcb, 0x70, 0x8e, 0x3e, 0x70, 0x57, 0x6b, 0x29, 0xf4, 0xf7, + 0xaf, 0x54, 0x9b, 0x0b, 0x1b, 0x3f, 0x52, 0xa3, 0x38, 0xaf, 0x33, 0x9b, + 0xc4, 0x17, 0x5a, 0xdc, 0xe2, 0x5f, 0x25, 0x21, 0x84, 0x31, 0x11, 0x91, + 0xc9, 0x5e, 0x70, 0x49, 0xa5, 0xce, 0xd3, 0xe5, 0x5b, 0x6f, 0xe5, 0xf3, + 0x31, 0xaa, 0xa3, 0x7e, 0x67, 0xbb, 0xd0, 0xca, 0xd7, 0xa5, 0xd2, 0x4c, + 0x49, 0x1c, 0xd0, 0x4c, 0x80, 0x92, 0x0e, 0xe1, 0x9d, 0xb5, 0xce, 0xff, + 0x00, 0x66, 0xdc, 0xc7, 0x32, 0xcb, 0xa5, 0xc8, 0x24, 0x40, 0x32, 0x39, + 0xeb, 0x5d, 0xc7, 0x8a, 0xa0, 0x2b, 0xe1, 0xa9, 0x65, 0x61, 0x67, 0x36, + 0xd5, 0xcb, 0x49, 0x19, 0x1b, 0xab, 0xca, 0xec, 0xb5, 0x29, 0xa1, 0x93, + 0x7d, 0xb4, 0x8c, 0xa7, 0xd8, 0xf1, 0x57, 0x59, 0xa8, 0xca, 0xcc, 0x29, + 0x4b, 0xdc, 0x3a, 0x13, 0xac, 0xc8, 0x55, 0xe2, 0xd4, 0x20, 0x64, 0x65, + 0xfe, 0x11, 0xf2, 0xe4, 0xd5, 0xb4, 0x65, 0xbe, 0x86, 0x28, 0x12, 0xf2, + 0x28, 0xda, 0x72, 0x13, 0x04, 0x9d, 0xa8, 0x0f, 0xad, 0x55, 0x3a, 0xd5, + 0xb6, 0xaf, 0x68, 0xd6, 0xd7, 0xd1, 0x2a, 0x4d, 0x8e, 0x25, 0x02, 0xa1, + 0xb5, 0x96, 0x7b, 0x39, 0x21, 0x01, 0xa4, 0x9a, 0xdd, 0x0e, 0x4b, 0x2c, + 0x7d, 0x07, 0xd4, 0xd6, 0x4e, 0xdc, 0xd7, 0xdd, 0x0e, 0x5a, 0xec, 0x53, + 0xfe, 0xc7, 0x92, 0xd3, 0x59, 0x7b, 0x34, 0x98, 0x61, 0x49, 0x1b, 0x94, + 0xe5, 0x5b, 0xdc, 0x57, 0xbf, 0xf8, 0x5a, 0xd1, 0x2c, 0xb4, 0x4b, 0x7b, + 0x74, 0x27, 0x01, 0x01, 0x39, 0x3d, 0x49, 0xe4, 0xd7, 0x8e, 0xc5, 0x79, + 0x6f, 0x2e, 0xa0, 0xb7, 0x42, 0x37, 0x90, 0x72, 0x0e, 0xc0, 0x58, 0x8f, + 0xa8, 0xaf, 0x56, 0xf0, 0xe6, 0xb7, 0x67, 0x78, 0x22, 0x8a, 0x37, 0x65, + 0x61, 0x18, 0xf9, 0x5d, 0x4a, 0xf2, 0x3b, 0x73, 0x53, 0x1e, 0x55, 0x3b, + 0xa3, 0x48, 0xb6, 0xe2, 0xe3, 0x72, 0xaf, 0x8b, 0x34, 0xb3, 0x73, 0x7f, + 0x6f, 0x25, 0xb9, 0x65, 0x76, 0x05, 0x1f, 0x69, 0xea, 0xa6, 0xa2, 0xb4, + 0xd1, 0x6d, 0x74, 0xcb, 0x28, 0xed, 0xe3, 0x8f, 0x72, 0x0e, 0xd9, 0xef, + 0x5b, 0x1a, 0xb4, 0x81, 0x75, 0x08, 0x49, 0x19, 0x5c, 0x1e, 0x45, 0x42, + 0x65, 0x8d, 0x72, 0xdc, 0x63, 0xda, 0x95, 0x4f, 0x23, 0x6a, 0x65, 0xed, + 0x32, 0x31, 0x1c, 0x18, 0x03, 0x14, 0xeb, 0xdd, 0x4a, 0x2b, 0x55, 0xc6, + 0x77, 0x3f, 0x61, 0x59, 0x46, 0xf9, 0xd4, 0x14, 0x8c, 0x90, 0x08, 0xc9, + 0x35, 0x97, 0x34, 0x99, 0x6d, 0xe5, 0xcb, 0x73, 0xeb, 0x8a, 0x71, 0xbd, + 0xac, 0x4c, 0xf7, 0xb8, 0xba, 0x95, 0xf4, 0xd7, 0x4d, 0x97, 0x61, 0xb4, + 0x7f, 0x0f, 0x40, 0x2b, 0x1a, 0x59, 0xe3, 0x8d, 0x99, 0xb6, 0x83, 0x56, + 0x2e, 0xae, 0x06, 0x08, 0xc1, 0xe4, 0xf1, 0x8a, 0xa3, 0x32, 0xa8, 0x43, + 0x92, 0x32, 0x7b, 0xe2, 0xb4, 0x51, 0xb1, 0x9b, 0x64, 0x0f, 0xa9, 0x00, + 0x08, 0x18, 0xcf, 0x6c, 0xd5, 0x3b, 0xad, 0x4b, 0x6a, 0x80, 0xdc, 0x93, + 0xde, 0xab, 0x5e, 0x24, 0xa2, 0x5d, 0x91, 0xa6, 0x7b, 0x92, 0x2a, 0x2f, + 0xb1, 0x4c, 0xc7, 0x3e, 0x59, 0xc7, 0x5e, 0x6a, 0xac, 0x49, 0x4e, 0xe6, + 0xf1, 0xc3, 0x12, 0x01, 0x19, 0xf7, 0xaa, 0x5f, 0x6e, 0x99, 0x38, 0x42, + 0x4f, 0xb5, 0x5e, 0x96, 0xd6, 0x53, 0x27, 0xcd, 0x16, 0x07, 0x35, 0x5a, + 0x5b, 0x26, 0x48, 0xc1, 0x39, 0xe9, 0x9e, 0xb5, 0x57, 0x49, 0x0a, 0xcd, + 0x9c, 0xce, 0xa0, 0xa4, 0xdc, 0x17, 0xc0, 0x1b, 0x8e, 0x73, 0xef, 0x59, + 0x32, 0xde, 0x3d, 0xba, 0x31, 0xdb, 0x96, 0x66, 0xfc, 0xab, 0xa6, 0xba, + 0xb6, 0x33, 0xc2, 0x70, 0x9b, 0x4f, 0x50, 0x6b, 0x96, 0xbb, 0x03, 0xcd, + 0xd8, 0x71, 0xb8, 0x1c, 0x30, 0xac, 0xe0, 0xf9, 0xa5, 0x66, 0x54, 0x95, + 0x95, 0xc6, 0x8d, 0x52, 0x73, 0xfc, 0x0b, 0xf9, 0xd6, 0x86, 0x8f, 0x7d, + 0x25, 0xce, 0xa3, 0x1c, 0x4c, 0x02, 0xf3, 0x9c, 0xd6, 0x60, 0x88, 0x06, + 0xd9, 0xb4, 0x64, 0xf4, 0x35, 0x73, 0x4b, 0x4f, 0x2a, 0xfc, 0x73, 0x8f, + 0x7a, 0xd5, 0xd2, 0x8a, 0xd6, 0xc4, 0x5c, 0xed, 0x60, 0x96, 0x48, 0xd1, + 0xc7, 0x9a, 0xbc, 0x31, 0x07, 0x8a, 0x89, 0xdd, 0xd8, 0x10, 0x30, 0x71, + 0x51, 0xda, 0x4a, 0xb1, 0xc0, 0xcd, 0x8d, 0xfb, 0x8e, 0x72, 0x68, 0x8d, + 0x89, 0x2c, 0xfb, 0x4f, 0x34, 0xef, 0xa0, 0x2d, 0xc8, 0x64, 0x94, 0x11, + 0xbb, 0x24, 0x37, 0x42, 0x31, 0x4c, 0xc8, 0x7f, 0xbc, 0x33, 0x51, 0x4d, + 0x20, 0xde, 0x4f, 0x6a, 0x72, 0x4e, 0x0a, 0xe3, 0x8a, 0x68, 0x96, 0x41, + 0x3d, 0x91, 0x98, 0x09, 0x03, 0xf1, 0x9e, 0xf5, 0x0b, 0x5b, 0x13, 0xeb, + 0x5a, 0xa9, 0x2c, 0x26, 0x33, 0xbd, 0x72, 0x47, 0xa5, 0x46, 0xf8, 0x90, + 0x8c, 0xe5, 0x79, 0xe0, 0x1a, 0x1a, 0x1d, 0xcc, 0xd1, 0x6c, 0x42, 0xe5, + 0x5c, 0x83, 0x4b, 0xbe, 0x78, 0x22, 0x74, 0x57, 0xe0, 0xf5, 0x15, 0x72, + 0x74, 0x08, 0x08, 0x04, 0x71, 0xeb, 0x54, 0x98, 0xb6, 0x0e, 0xec, 0x0a, + 0x56, 0x19, 0x2a, 0xea, 0x25, 0x50, 0x2c, 0xb0, 0x67, 0x03, 0x19, 0x53, + 0x56, 0xa2, 0xbf, 0xb7, 0x64, 0xda, 0xad, 0x83, 0xe8, 0x6a, 0x92, 0x15, + 0x7d, 0xa3, 0x19, 0xf5, 0xa5, 0x2b, 0x08, 0x38, 0x71, 0xdf, 0xd2, 0x93, + 0x40, 0x8b, 0x33, 0xc6, 0x25, 0x4f, 0x31, 0x72, 0x76, 0xf4, 0xa6, 0x43, + 0x09, 0x8d, 0x56, 0xe1, 0x79, 0xcf, 0x38, 0x35, 0x3d, 0xad, 0xb6, 0xf8, + 0x9d, 0x63, 0x62, 0x14, 0x9e, 0x79, 0xa7, 0x6d, 0x8d, 0x63, 0x0d, 0x2b, + 0x2a, 0x47, 0x18, 0x23, 0x19, 0xc6, 0x6b, 0x9f, 0x9a, 0xcd, 0xa3, 0x6e, + 0x5d, 0x2e, 0x66, 0x4d, 0xbe, 0xe2, 0xea, 0x46, 0x58, 0xc9, 0x27, 0x93, + 0x8e, 0xd5, 0x3c, 0x16, 0x51, 0xc1, 0x13, 0xc9, 0x74, 0xc5, 0x09, 0xfb, + 0xa3, 0x35, 0x56, 0xf3, 0xc4, 0x31, 0xc5, 0xba, 0x3b, 0x38, 0xc0, 0x3d, + 0x37, 0x0a, 0xc3, 0x92, 0xee, 0xe2, 0xee, 0x65, 0x0d, 0x23, 0x31, 0x27, + 0xa0, 0xe8, 0x2a, 0x94, 0x24, 0xfc, 0x89, 0x73, 0x4b, 0x63, 0xad, 0xb3, + 0xb9, 0x8d, 0xe3, 0x31, 0xc7, 0x0b, 0xb7, 0x1c, 0x48, 0x78, 0xe7, 0xda, + 0xa6, 0x17, 0x04, 0x36, 0x0e, 0xec, 0xf6, 0x27, 0xbd, 0x58, 0xb6, 0x84, + 0x2d, 0xb4, 0x7c, 0xe5, 0xb6, 0x01, 0xb7, 0x15, 0x5a, 0xe1, 0x1c, 0x8c, + 0xaf, 0x18, 0x3d, 0x6b, 0x38, 0x4b, 0x52, 0xe4, 0xb4, 0x26, 0x67, 0xf3, + 0x53, 0x01, 0xb1, 0xd8, 0xf6, 0xab, 0x9a, 0x72, 0x81, 0x3a, 0xb1, 0x6c, + 0xf1, 0x58, 0x81, 0x9d, 0x4e, 0x49, 0xc1, 0x3c, 0x8c, 0xd5, 0xa8, 0xaf, + 0x9e, 0x1e, 0x55, 0x0b, 0x36, 0x3e, 0xe8, 0xad, 0xba, 0x19, 0xf5, 0xd4, + 0xdd, 0x92, 0x71, 0xb9, 0x87, 0x1f, 0x5a, 0x6c, 0x97, 0x60, 0xa8, 0x28, + 0x7e, 0x9e, 0xf5, 0x94, 0x0c, 0xb3, 0x36, 0x48, 0xc6, 0x3a, 0xf1, 0x8a, + 0x52, 0xaa, 0x1f, 0xcd, 0x61, 0xf3, 0x20, 0xc0, 0x19, 0xe2, 0xb3, 0x66, + 0x9a, 0x0b, 0x34, 0x4e, 0xd2, 0x79, 0x8b, 0x30, 0x5c, 0xff, 0x00, 0x0e, + 0x6a, 0x2f, 0x2e, 0x19, 0x18, 0xa2, 0x48, 0x59, 0x80, 0xc9, 0xe3, 0x15, + 0x1b, 0xdc, 0x1f, 0x98, 0x6e, 0x03, 0xd0, 0x01, 0xd2, 0xa1, 0xb7, 0x67, + 0x79, 0xb1, 0xbb, 0xe6, 0x22, 0x84, 0x26, 0xcb, 0xb1, 0xc7, 0x6f, 0x10, + 0xf9, 0x94, 0x37, 0xe3, 0x48, 0x27, 0x75, 0x9f, 0x62, 0x24, 0x61, 0x3d, + 0x87, 0x34, 0xf3, 0x10, 0x88, 0x92, 0x47, 0xf5, 0xa4, 0xb7, 0x43, 0x23, + 0x83, 0xb4, 0x1c, 0xe7, 0x8e, 0x94, 0x06, 0xa4, 0xa2, 0xe6, 0x77, 0xf9, + 0x5a, 0x40, 0x83, 0xda, 0x88, 0x6c, 0x3c, 0xe6, 0x64, 0xfb, 0x44, 0xaf, + 0xdf, 0x00, 0x9a, 0xb2, 0xf0, 0x2d, 0x9d, 0xb4, 0x32, 0xce, 0x83, 0x13, + 0x67, 0x0c, 0x45, 0x68, 0xdb, 0xea, 0x91, 0x41, 0x18, 0xf2, 0xa2, 0x66, + 0x27, 0x8e, 0x16, 0xb9, 0xe7, 0x55, 0xc5, 0xda, 0xc6, 0xb0, 0x87, 0x31, + 0x96, 0xba, 0x75, 0xac, 0x47, 0x6b, 0xc1, 0x3b, 0x3f, 0xbe, 0x79, 0xa7, + 0x9b, 0x1b, 0x53, 0xf2, 0x35, 0xbb, 0xc6, 0x5b, 0x82, 0x08, 0xad, 0x31, + 0xaa, 0xca, 0x8c, 0x73, 0x6d, 0x23, 0x06, 0x6c, 0x8c, 0xe3, 0x8a, 0x65, + 0xd5, 0xef, 0xda, 0xda, 0x38, 0xc4, 0x52, 0x46, 0xec, 0x7b, 0x8e, 0x08, + 0xa5, 0x0a, 0xd2, 0x6d, 0x23, 0x47, 0x49, 0x25, 0x76, 0x41, 0x1e, 0x99, + 0x6f, 0x1c, 0x2c, 0x43, 0x10, 0x71, 0xc6, 0x0d, 0x56, 0x6b, 0x58, 0x4f, + 0x50, 0x5b, 0x1d, 0x3e, 0xb5, 0xa8, 0xce, 0x04, 0x44, 0x32, 0xe5, 0x7d, + 0xaa, 0xab, 0x07, 0x48, 0x8b, 0x85, 0xcf, 0x3c, 0x62, 0xba, 0xd4, 0x5b, + 0xd8, 0xc2, 0xfd, 0xca, 0xf6, 0xb6, 0x16, 0xcc, 0x4e, 0xe8, 0x77, 0x9f, + 0x71, 0x52, 0x4b, 0xa6, 0xdb, 0xb6, 0x08, 0x87, 0x9a, 0xdc, 0xb4, 0xd1, + 0xf5, 0xa6, 0x8c, 0x4b, 0x16, 0x8d, 0x74, 0xc0, 0x8e, 0xe9, 0x8a, 0x9a, + 0xe7, 0x48, 0xd6, 0x23, 0x53, 0x24, 0x9a, 0x3c, 0xe1, 0x40, 0xcf, 0xca, + 0xb9, 0xc5, 0x62, 0xe3, 0x89, 0xbe, 0x88, 0xd5, 0x2a, 0x4f, 0xa9, 0xce, + 0x2d, 0xb4, 0x08, 0xdc, 0x23, 0x0c, 0x53, 0xa3, 0x2e, 0xae, 0x70, 0xc7, + 0x83, 0xeb, 0x56, 0xae, 0x25, 0x30, 0x10, 0x26, 0xb5, 0x96, 0x2d, 0xc7, + 0x19, 0x65, 0xa5, 0xb9, 0x8d, 0x16, 0x55, 0x1d, 0x3e, 0x41, 0x53, 0x0a, + 0x93, 0x72, 0xe5, 0x9a, 0x09, 0xd2, 0x4a, 0x37, 0x8b, 0x29, 0xce, 0xf2, + 0xb4, 0xc1, 0xb7, 0x1e, 0x3b, 0x66, 0xa5, 0x17, 0x9b, 0x31, 0xbe, 0x15, + 0x61, 0xf4, 0xaa, 0xd3, 0x80, 0xb3, 0x72, 0xf8, 0xc5, 0x30, 0xcd, 0xce, + 0x0e, 0x0f, 0xd2, 0xba, 0xd4, 0x2e, 0x72, 0xca, 0x4d, 0x1a, 0x8b, 0x73, + 0x6a, 0xea, 0xa5, 0xe0, 0x1c, 0xf5, 0xc7, 0x6a, 0x7c, 0x90, 0xc0, 0x84, + 0x14, 0xca, 0xab, 0x76, 0x3c, 0x8a, 0xcf, 0x8d, 0xb3, 0xd2, 0xb4, 0x6d, + 0x65, 0x18, 0xf2, 0xe4, 0x19, 0x4f, 0x4f, 0x4a, 0x5c, 0xb2, 0x5b, 0x07, + 0x3a, 0x7b, 0x95, 0x9e, 0xc1, 0x83, 0x82, 0x84, 0x32, 0x9e, 0x98, 0xab, + 0xd1, 0x5b, 0x4b, 0xe5, 0x63, 0x69, 0x18, 0xe9, 0x8a, 0x77, 0xd9, 0xbc, + 0xb7, 0xc8, 0x25, 0xa1, 0x7e, 0x8c, 0x3b, 0x53, 0xd6, 0xd2, 0xe2, 0xd1, + 0xb7, 0xac, 0xc5, 0x81, 0xe8, 0x0f, 0x7a, 0xa4, 0xdb, 0x13, 0xb2, 0x3a, + 0x8f, 0x03, 0xc6, 0x57, 0x5d, 0xb6, 0xdc, 0x3b, 0x37, 0xfe, 0x82, 0x6b, + 0xd3, 0xe6, 0x86, 0x29, 0xe3, 0x31, 0xcb, 0x1a, 0xba, 0x91, 0x82, 0x18, + 0x66, 0xbc, 0x87, 0x4c, 0x92, 0xe1, 0x6e, 0x41, 0x4d, 0xca, 0xe0, 0x6e, + 0x56, 0x5f, 0x5a, 0xec, 0xec, 0xfc, 0x49, 0x79, 0x14, 0x4b, 0xf6, 0x85, + 0x59, 0x07, 0xa9, 0x18, 0x35, 0xad, 0x29, 0xdb, 0x46, 0x4c, 0xa9, 0xce, + 0x6e, 0xf0, 0x31, 0x35, 0x3d, 0x2a, 0x2b, 0x6f, 0x11, 0x3c, 0x31, 0x2e, + 0xd8, 0x97, 0xe6, 0x0b, 0xe9, 0xc5, 0x35, 0x5f, 0x6c, 0x92, 0x3e, 0x08, + 0x00, 0xf1, 0x5a, 0x37, 0x53, 0x7d, 0xb6, 0xf2, 0xe6, 0xff, 0x00, 0x66, + 0xd0, 0x40, 0x50, 0x07, 0x35, 0x9f, 0x39, 0x2b, 0xf2, 0x01, 0xcf, 0x7a, + 0xe5, 0x6a, 0xf5, 0x19, 0xd9, 0x39, 0x2f, 0x66, 0x93, 0xdc, 0xca, 0xb9, + 0xb9, 0x0f, 0x70, 0xd1, 0x3e, 0xd7, 0x1e, 0x8d, 0x55, 0x66, 0x89, 0xe6, + 0x8c, 0xa4, 0x12, 0xec, 0x61, 0xce, 0x1f, 0x9f, 0xc0, 0x1a, 0xf4, 0x68, + 0x3c, 0x37, 0xa6, 0x5f, 0xe8, 0xd0, 0xac, 0x96, 0xca, 0x24, 0x74, 0x04, + 0xca, 0xa3, 0x0f, 0x92, 0x3d, 0x6b, 0x88, 0x93, 0x4b, 0x36, 0xf7, 0xf7, + 0x16, 0xac, 0xdb, 0x92, 0x17, 0x2a, 0x0f, 0xae, 0x2a, 0xaa, 0xa9, 0x52, + 0x5c, 0xd7, 0xba, 0x32, 0xa4, 0xe3, 0x55, 0xd9, 0x6e, 0x73, 0xb7, 0x0a, + 0xe8, 0xfb, 0x6e, 0x10, 0xc4, 0xfd, 0x01, 0xc7, 0xca, 0x69, 0x23, 0xdd, + 0x0b, 0x11, 0x22, 0xfe, 0x06, 0xb7, 0xee, 0x04, 0x72, 0xc4, 0x51, 0x97, + 0x70, 0x1d, 0x8f, 0x51, 0x58, 0xf7, 0x71, 0xcc, 0x10, 0x14, 0x22, 0x48, + 0xc7, 0x55, 0x23, 0xe6, 0x03, 0xeb, 0x54, 0x9b, 0xb1, 0x0d, 0x6a, 0x5d, + 0xb3, 0x21, 0x76, 0xbe, 0x06, 0x71, 0xd4, 0x0a, 0x96, 0xe5, 0x63, 0x5b, + 0x85, 0x91, 0x5b, 0xcb, 0x90, 0x8e, 0xb9, 0xe0, 0xfd, 0x6a, 0xa6, 0x97, + 0x2a, 0x79, 0x81, 0x0c, 0x9b, 0xf3, 0xf7, 0x41, 0xea, 0x2b, 0x7b, 0x58, + 0xd0, 0xe1, 0xfe, 0xc8, 0xb2, 0xd4, 0x20, 0x96, 0x4f, 0x3a, 0x49, 0x44, + 0x6e, 0x09, 0x1b, 0x70, 0x73, 0xdb, 0xf0, 0xa2, 0xa7, 0x37, 0x2b, 0x71, + 0xe8, 0x55, 0x3b, 0x39, 0x25, 0x2e, 0xa5, 0x5b, 0x43, 0xa5, 0xdd, 0x69, + 0xf7, 0xf1, 0xea, 0x4a, 0xcb, 0x38, 0x42, 0x21, 0xe4, 0xfd, 0xec, 0x1e, + 0x46, 0x3d, 0xf1, 0x53, 0xe8, 0xf6, 0xed, 0x6d, 0x6b, 0x16, 0x1d, 0x99, + 0xba, 0x82, 0x4d, 0x67, 0x5c, 0xd9, 0x2c, 0x61, 0x63, 0x2e, 0x72, 0xbc, + 0x86, 0xee, 0x2a, 0xc6, 0x9d, 0x72, 0xf1, 0x49, 0xf3, 0xb8, 0x64, 0x1c, + 0x63, 0xd4, 0x7b, 0x56, 0x69, 0xa9, 0x24, 0xd2, 0xb1, 0xab, 0x4e, 0x37, + 0x4c, 0xe8, 0x26, 0x93, 0x7b, 0xfc, 0xc3, 0x04, 0x55, 0x76, 0x66, 0xdc, + 0x09, 0x60, 0x06, 0x3a, 0x0a, 0x8a, 0x6b, 0xc8, 0x9a, 0x42, 0x51, 0x83, + 0x60, 0x74, 0xaa, 0x1f, 0x6c, 0x69, 0xa7, 0xf2, 0x94, 0x15, 0x38, 0xc9, + 0x3e, 0xd5, 0x0d, 0x6a, 0x38, 0x3d, 0x0d, 0x29, 0x26, 0x45, 0x21, 0x41, + 0xc9, 0x3d, 0x85, 0x35, 0x22, 0x0e, 0x77, 0xca, 0x78, 0x1f, 0xc3, 0x54, + 0xd2, 0x58, 0xe2, 0x3f, 0x78, 0x67, 0xb9, 0x27, 0x9a, 0x1b, 0x50, 0x8d, + 0x07, 0xcc, 0xdf, 0xa5, 0x34, 0x3b, 0x13, 0xdc, 0x59, 0xdb, 0x48, 0xeb, + 0x2e, 0xcf, 0x98, 0x70, 0x31, 0x4f, 0x92, 0x63, 0xb7, 0x6e, 0x41, 0xc7, + 0x41, 0x8e, 0x95, 0x9b, 0x36, 0xb9, 0x6b, 0x1a, 0x9c, 0xb6, 0x71, 0xd4, + 0x53, 0x3f, 0xb4, 0xd6, 0xe1, 0x4f, 0x91, 0x6d, 0x21, 0x6f, 0x53, 0xc0, + 0xaa, 0x21, 0x97, 0x0d, 0xc1, 0xf3, 0x03, 0x07, 0x24, 0x1e, 0xd9, 0xe9, + 0x50, 0x35, 0xf5, 0xc3, 0x4a, 0x40, 0x1f, 0x20, 0xee, 0x2a, 0x83, 0x9b, + 0xd6, 0x2b, 0xb6, 0x20, 0xb9, 0xf7, 0xa7, 0x07, 0xbe, 0x00, 0xed, 0x48, + 0xfa, 0xfa, 0xd0, 0x2b, 0x1a, 0x69, 0x75, 0xfb, 0xb3, 0xfd, 0x69, 0x52, + 0xe5, 0x8c, 0x6c, 0x4f, 0x71, 0x59, 0x85, 0xae, 0xb1, 0xd2, 0x2c, 0x9e, + 0xdc, 0xd4, 0x4e, 0x2f, 0x04, 0x64, 0xfe, 0xec, 0x0c, 0x70, 0xa3, 0x35, + 0x48, 0x86, 0x53, 0xb9, 0x9b, 0xcd, 0x8f, 0xcb, 0x7c, 0x38, 0x23, 0x1b, + 0x4d, 0x55, 0xb6, 0xff, 0x00, 0x46, 0x42, 0xa3, 0xe5, 0xf6, 0xf4, 0xa8, + 0x2f, 0x67, 0x36, 0x91, 0x89, 0x01, 0xde, 0x7a, 0x60, 0x51, 0x6b, 0x72, + 0xb7, 0x2b, 0xbf, 0x1e, 0x59, 0x1d, 0x41, 0xf5, 0xa9, 0x1f, 0x42, 0xd3, + 0xce, 0xc7, 0x92, 0x7a, 0x71, 0x9c, 0xd4, 0x06, 0x6c, 0x1c, 0x97, 0xf9, + 0x47, 0x7f, 0x5a, 0x74, 0xa4, 0x34, 0x7b, 0x4f, 0x3e, 0xf5, 0x93, 0x74, + 0xee, 0xbc, 0x26, 0x40, 0x07, 0xbf, 0x7a, 0x77, 0x11, 0x7a, 0x59, 0xa2, + 0x90, 0x02, 0x02, 0x91, 0xf4, 0xa7, 0xc1, 0x67, 0x04, 0xe4, 0x3b, 0x28, + 0xca, 0xf3, 0xc5, 0x66, 0xa8, 0x66, 0x50, 0xc4, 0x10, 0x45, 0x68, 0x58, + 0xbf, 0xcc, 0xc0, 0x9e, 0x82, 0x9d, 0xc5, 0x62, 0x1b, 0x8b, 0x48, 0x6e, + 0x62, 0x77, 0x3c, 0x48, 0xcf, 0xc7, 0xb6, 0x29, 0xeb, 0x1d, 0xad, 0xb4, + 0x31, 0x49, 0x24, 0xad, 0xf6, 0x70, 0x49, 0x20, 0x1e, 0x65, 0x6f, 0x4a, + 0xab, 0x13, 0xe2, 0xee, 0x42, 0x64, 0x21, 0x37, 0x10, 0xc4, 0xf6, 0xf6, + 0x1e, 0xf4, 0x6a, 0x96, 0x93, 0xcc, 0x55, 0xd3, 0x88, 0xa3, 0x03, 0x6a, + 0xfa, 0x54, 0xc9, 0xdb, 0x54, 0x1b, 0x8d, 0xf1, 0x56, 0xa3, 0xe5, 0xda, + 0xc5, 0x14, 0x7c, 0x6e, 0xe5, 0x57, 0xfb, 0xb5, 0xc8, 0x42, 0xee, 0xe4, + 0xe7, 0x24, 0x93, 0x9a, 0xbf, 0xe2, 0x0b, 0xb1, 0x3d, 0xe8, 0x8f, 0xa0, + 0x40, 0x05, 0x47, 0x61, 0x6a, 0xf8, 0xfd, 0xdf, 0xcc, 0xdd, 0x77, 0x03, + 0xc0, 0xab, 0x8e, 0x91, 0xd4, 0x87, 0xab, 0x2e, 0x59, 0xc1, 0xe7, 0x9f, + 0xdf, 0x1c, 0x28, 0xea, 0x00, 0xe4, 0xfb, 0x55, 0xd0, 0xf6, 0xd6, 0xf1, + 0x62, 0xe5, 0xc0, 0x5e, 0xa2, 0x11, 0xc9, 0x3f, 0x5a, 0x69, 0x0f, 0x67, + 0x68, 0x64, 0x45, 0xdf, 0x20, 0xe0, 0xb3, 0x57, 0x3f, 0x34, 0xa4, 0xc8, + 0xcf, 0x21, 0x3b, 0x8f, 0x24, 0x9a, 0xce, 0x52, 0xb1, 0x48, 0xef, 0xec, + 0x6e, 0x52, 0xee, 0xc5, 0x65, 0x54, 0xd8, 0x84, 0x60, 0x2f, 0xd2, 0xb2, + 0xaf, 0xad, 0x56, 0x49, 0xce, 0xd4, 0x03, 0x8a, 0x93, 0x41, 0x91, 0x9b, + 0x45, 0x8c, 0x93, 0xc1, 0x27, 0x1f, 0x4a, 0xb2, 0x88, 0x19, 0x9f, 0x8c, + 0x81, 0x54, 0xd7, 0x34, 0x6c, 0xc7, 0x17, 0x66, 0x72, 0xb7, 0x76, 0x12, + 0x9b, 0x94, 0xb7, 0x8d, 0x88, 0xdf, 0xde, 0xbd, 0xa7, 0xc0, 0x9e, 0x0c, + 0xb3, 0xf0, 0xdd, 0x8f, 0xda, 0x83, 0x34, 0xb7, 0xb3, 0x44, 0x3c, 0xc9, + 0x0f, 0x00, 0x74, 0x38, 0x02, 0xbc, 0xba, 0xf1, 0xd2, 0x1d, 0x56, 0x17, + 0x72, 0x14, 0x05, 0x35, 0xe9, 0x93, 0x78, 0xba, 0xc6, 0xe3, 0xc3, 0x86, + 0x1b, 0x19, 0x9d, 0xee, 0xa4, 0x87, 0x66, 0x02, 0x95, 0xda, 0x48, 0xc1, + 0x39, 0xae, 0x8c, 0x2c, 0x29, 0xf2, 0x4d, 0x48, 0xce, 0xbc, 0xa4, 0x9c, + 0x5c, 0x7b, 0x9a, 0xda, 0xcf, 0x89, 0xac, 0x34, 0xc6, 0xf2, 0x5e, 0x5f, + 0x32, 0xe1, 0xf8, 0x58, 0xd3, 0x93, 0x9f, 0x7f, 0x4a, 0xf1, 0xdd, 0x56, + 0xda, 0x5d, 0x53, 0x5a, 0x9d, 0xf6, 0xfc, 0xf2, 0x39, 0x38, 0x1c, 0xf1, + 0x5a, 0xb0, 0xda, 0x41, 0x62, 0xc6, 0xe6, 0xe2, 0x46, 0x32, 0x9e, 0xa5, + 0x8e, 0x49, 0xa6, 0xc1, 0x71, 0x6d, 0x1b, 0x19, 0x43, 0xa2, 0x27, 0x27, + 0x71, 0x39, 0x63, 0x5c, 0xb1, 0x8f, 0x2b, 0xb9, 0xac, 0xa5, 0x75, 0x66, + 0x64, 0x1d, 0x0a, 0x28, 0x4e, 0xd9, 0x30, 0x0e, 0x39, 0x51, 0xd6, 0x95, + 0x74, 0x28, 0x63, 0x06, 0x53, 0x19, 0x0b, 0xfc, 0x39, 0xef, 0x57, 0xa1, + 0xd4, 0x2c, 0xe7, 0x59, 0x26, 0x8a, 0x65, 0x40, 0xad, 0x86, 0x66, 0xe4, + 0x9a, 0xad, 0x77, 0xa8, 0x5b, 0x3c, 0x24, 0x2d, 0xdb, 0x6c, 0x3c, 0x0e, + 0x79, 0xfc, 0xa9, 0xb9, 0x09, 0x24, 0x5d, 0x16, 0x31, 0xa4, 0x4b, 0x1a, + 0xb2, 0x86, 0x23, 0x21, 0x47, 0x5a, 0xc0, 0xb0, 0xd1, 0xee, 0xd3, 0x5f, + 0x17, 0x13, 0x00, 0xa8, 0xae, 0x79, 0xcf, 0x5a, 0x86, 0xce, 0x5d, 0x44, + 0x6a, 0xeb, 0x73, 0x6b, 0x13, 0x4a, 0x9c, 0xaf, 0xcf, 0xd3, 0x15, 0xba, + 0x22, 0xd5, 0xee, 0x1b, 0xe6, 0x99, 0x20, 0x56, 0x3d, 0x10, 0x64, 0x8a, + 0x2f, 0xa0, 0x8b, 0xba, 0x9d, 0xf9, 0xb0, 0xb4, 0x32, 0x65, 0x59, 0xd7, + 0xa0, 0xf5, 0xac, 0xbd, 0x1b, 0x5f, 0x59, 0xe2, 0x9a, 0x5b, 0xd9, 0x15, + 0x08, 0x6c, 0x2a, 0x83, 0x83, 0x8a, 0x9a, 0x1d, 0x02, 0x39, 0xfc, 0xc3, + 0x71, 0x2d, 0xc4, 0xac, 0xad, 0x8f, 0x9b, 0x80, 0x7d, 0xea, 0xdd, 0xb7, + 0x87, 0xb4, 0xf8, 0x65, 0xfd, 0xec, 0x21, 0x41, 0x1c, 0x29, 0xef, 0x4f, + 0x51, 0x15, 0xe7, 0xf1, 0x16, 0x9a, 0xaf, 0xb4, 0x23, 0x4c, 0x47, 0x23, + 0x00, 0xf5, 0xac, 0xad, 0x57, 0x54, 0x3a, 0x85, 0x93, 0x41, 0x05, 0xa4, + 0x8a, 0x1b, 0xbe, 0x2b, 0x63, 0x54, 0xbe, 0xd2, 0xf4, 0xbc, 0xc5, 0x14, + 0x28, 0xd2, 0x7f, 0x75, 0x40, 0xe3, 0xeb, 0x5c, 0xdd, 0xd7, 0x88, 0xa7, + 0x75, 0xc4, 0x68, 0x91, 0xae, 0x7a, 0xa8, 0xe6, 0x86, 0xc5, 0x72, 0xe6, + 0x8b, 0x75, 0x7f, 0xa7, 0xd8, 0x9b, 0x75, 0xb6, 0x52, 0x4b, 0x67, 0x2d, + 0x90, 0x45, 0x68, 0x33, 0x6b, 0x13, 0x80, 0x76, 0xc7, 0x18, 0xf5, 0x15, + 0xcc, 0xff, 0x00, 0x68, 0x4f, 0x29, 0xde, 0x66, 0x6c, 0xfd, 0x6a, 0x74, + 0xd5, 0xef, 0x17, 0xa4, 0xec, 0x7d, 0x8d, 0x4d, 0xd8, 0xd3, 0x47, 0x48, + 0xf6, 0x1a, 0xf4, 0xf0, 0xb4, 0x4f, 0x79, 0x18, 0x42, 0x31, 0xd0, 0x74, + 0xaa, 0x9a, 0x6f, 0x82, 0xef, 0x2c, 0xf7, 0xca, 0x97, 0xbb, 0x59, 0x87, + 0x3b, 0x73, 0x4d, 0xb2, 0xf1, 0x34, 0xa1, 0x95, 0x6e, 0x14, 0x30, 0x03, + 0x1b, 0x96, 0xba, 0xeb, 0x3b, 0xb8, 0x26, 0xb7, 0x49, 0xa1, 0x93, 0x76, + 0x7a, 0xe3, 0xb1, 0xf7, 0xaa, 0x8e, 0xa1, 0xa1, 0xcf, 0x5e, 0x69, 0x5a, + 0x8e, 0x9f, 0x68, 0x67, 0x93, 0x53, 0x94, 0x46, 0x31, 0xd3, 0x27, 0xad, + 0x30, 0x68, 0x1a, 0x94, 0xea, 0x4b, 0xea, 0x12, 0x61, 0xbf, 0xdb, 0xae, + 0xa1, 0x5d, 0xae, 0x09, 0x8f, 0x83, 0x9e, 0xa1, 0xbd, 0x29, 0x82, 0x22, + 0xae, 0x40, 0x07, 0x23, 0xd2, 0xab, 0x94, 0x5e, 0xa7, 0x25, 0x6d, 0xe0, + 0x6b, 0x98, 0xe7, 0xfb, 0x44, 0x57, 0x7b, 0x65, 0x07, 0x20, 0xe0, 0xff, + 0x00, 0x3a, 0xd9, 0x5d, 0x33, 0xc5, 0x16, 0x88, 0x3c, 0x9d, 0x49, 0x5f, + 0xd4, 0x38, 0xcd, 0x6f, 0xda, 0xff, 0x00, 0xab, 0x21, 0x89, 0xc8, 0x3c, + 0xd4, 0x97, 0x17, 0xd0, 0xc5, 0x01, 0x2c, 0xff, 0x00, 0x37, 0x60, 0x3a, + 0xd5, 0xd9, 0x25, 0x76, 0x4f, 0x91, 0xce, 0x33, 0x78, 0xba, 0x4c, 0x0f, + 0x3e, 0x15, 0x2a, 0x3f, 0x84, 0x0e, 0x7f, 0x3a, 0xe7, 0xf5, 0xad, 0x2b, + 0x5e, 0xbd, 0xbd, 0x86, 0xe6, 0xea, 0x21, 0x22, 0xa0, 0x0a, 0x7c, 0xbf, + 0xf0, 0xae, 0xa6, 0xe3, 0x5b, 0x70, 0x71, 0x12, 0x80, 0x3d, 0x5a, 0xa8, + 0x36, 0xb1, 0x76, 0xd9, 0xfd, 0xee, 0x33, 0xed, 0x59, 0x3a, 0x91, 0x2d, + 0x41, 0x8b, 0xa4, 0x6b, 0xd2, 0x69, 0x91, 0xfd, 0x9a, 0xe2, 0xc2, 0xed, + 0x93, 0xb3, 0x15, 0xdd, 0x5a, 0x63, 0xc5, 0x3a, 0x13, 0xb0, 0xf3, 0x55, + 0xa2, 0x6e, 0xfb, 0xa3, 0x22, 0xb3, 0xad, 0xf5, 0x7b, 0x98, 0x99, 0x4e, + 0x56, 0x40, 0x3b, 0x30, 0xab, 0x6b, 0xa9, 0x5a, 0x5c, 0x1c, 0x5d, 0x5a, + 0xc7, 0x92, 0x7e, 0xf6, 0x32, 0x28, 0x8d, 0x45, 0x6b, 0x0d, 0xc5, 0xde, + 0xe7, 0x3d, 0xaf, 0xeb, 0x56, 0x43, 0x5a, 0xb6, 0x4b, 0x09, 0x04, 0xb1, + 0xcb, 0x8f, 0x30, 0x37, 0xf0, 0xd7, 0x40, 0x74, 0x77, 0x09, 0xe7, 0x5a, + 0xcc, 0xb2, 0xb3, 0x0c, 0xaa, 0x86, 0xc6, 0x29, 0x67, 0xf0, 0xf6, 0x8b, + 0x76, 0x04, 0xb1, 0xdb, 0xc7, 0x9c, 0x7d, 0xe4, 0xe2, 0xb9, 0xbd, 0x62, + 0xcc, 0xe9, 0x12, 0xc4, 0x2c, 0xef, 0x26, 0x50, 0xf9, 0xc8, 0x0d, 0x9c, + 0x54, 0xca, 0x9c, 0x37, 0xb1, 0x9f, 0x29, 0x6a, 0x7d, 0xf2, 0x2f, 0x91, + 0x34, 0x32, 0x09, 0x51, 0xbe, 0x66, 0x3c, 0xf1, 0x52, 0xd8, 0x48, 0xb6, + 0xec, 0x63, 0x5d, 0xa7, 0x3d, 0xc8, 0xe2, 0xa8, 0x69, 0xfa, 0x86, 0xb1, + 0x23, 0x79, 0x08, 0xd1, 0xca, 0x18, 0x75, 0x97, 0xbd, 0x40, 0x7e, 0xdb, + 0x69, 0x23, 0xcb, 0x7b, 0x18, 0x09, 0xbb, 0x8d, 0x87, 0x81, 0x59, 0xa8, + 0xcd, 0x34, 0xe2, 0xf4, 0xea, 0x4b, 0x8c, 0xe3, 0xb1, 0xd5, 0x44, 0xed, + 0x74, 0x56, 0x38, 0xc9, 0x91, 0xb3, 0x80, 0x16, 0xba, 0x6d, 0x1e, 0x6d, + 0x6a, 0xc2, 0xeb, 0xc9, 0x8f, 0x29, 0x14, 0x7f, 0x79, 0x1c, 0x65, 0x47, + 0xf8, 0x57, 0x0f, 0x6b, 0xa8, 0xd8, 0x2c, 0x51, 0x34, 0x53, 0xaa, 0xb1, + 0x6c, 0xb6, 0x4e, 0x08, 0x35, 0xda, 0x27, 0x89, 0x62, 0x9e, 0xc5, 0x2c, + 0x6d, 0xe1, 0x47, 0x1b, 0x7e, 0x79, 0x43, 0xe4, 0xb7, 0xd2, 0xb7, 0x8b, + 0xfe, 0x7d, 0xbc, 0x85, 0x29, 0xcd, 0x68, 0x91, 0x6a, 0x6f, 0x13, 0x5e, + 0xd9, 0x5e, 0xdd, 0x34, 0xca, 0x26, 0x12, 0x8d, 0xab, 0xb5, 0x8e, 0xd5, + 0xfa, 0x56, 0x51, 0xbc, 0xb2, 0xb7, 0xb4, 0x7f, 0xb2, 0x40, 0x54, 0x8c, + 0xf9, 0x91, 0xa3, 0x67, 0x39, 0xf7, 0x35, 0x9d, 0xad, 0x79, 0xb1, 0xb2, + 0x46, 0xf2, 0x9f, 0x2c, 0x00, 0xca, 0x07, 0x6f, 0x6a, 0xc9, 0xb6, 0xbd, + 0x36, 0xee, 0xad, 0xba, 0x43, 0x21, 0x94, 0x14, 0x24, 0x8d, 0xbf, 0x88, + 0xaa, 0xa1, 0x28, 0xc9, 0xf3, 0x47, 0x4b, 0xff, 0x00, 0x56, 0x32, 0xa8, + 0xdd, 0x92, 0x35, 0xec, 0xb4, 0xf9, 0x75, 0x88, 0xa6, 0xb7, 0xb2, 0xb6, + 0x69, 0xa6, 0x65, 0x3f, 0xbb, 0x63, 0xcf, 0xbf, 0xb6, 0x2b, 0x93, 0xbe, + 0xd2, 0xe4, 0xd1, 0xae, 0x1a, 0x2b, 0xe8, 0x1e, 0x17, 0x07, 0x1b, 0x19, + 0x36, 0x91, 0x5e, 0x99, 0xe1, 0x7d, 0x4e, 0xdf, 0x4f, 0xf1, 0x0b, 0xdd, + 0xdc, 0xc8, 0x23, 0x8e, 0x54, 0x2a, 0x5b, 0x1c, 0x29, 0x38, 0x3d, 0xbe, + 0x95, 0x4f, 0xe2, 0xd5, 0xc5, 0x9e, 0xa1, 0x75, 0xa6, 0x9b, 0x69, 0xa2, + 0x95, 0x95, 0x1b, 0x73, 0x46, 0xe1, 0xb8, 0x24, 0x60, 0x71, 0xf8, 0xd4, + 0xcb, 0x0b, 0x19, 0xc7, 0x9a, 0xfb, 0x15, 0x18, 0xde, 0xd1, 0x67, 0x9f, + 0x59, 0xd8, 0x7d, 0xa2, 0x7c, 0xae, 0x44, 0x67, 0xbd, 0x74, 0xd3, 0xde, + 0xdb, 0xda, 0xd9, 0x79, 0x02, 0x52, 0x84, 0x2f, 0x75, 0xeb, 0x59, 0x62, + 0xe8, 0x5a, 0x5b, 0x79, 0x61, 0x01, 0x90, 0x8e, 0x3d, 0x07, 0xd6, 0xa9, + 0xdc, 0x59, 0xc8, 0x90, 0x79, 0x8c, 0xfb, 0xa4, 0x6e, 0x47, 0x71, 0x8a, + 0xc9, 0xda, 0x9a, 0xe5, 0x8e, 0xa5, 0xf3, 0x72, 0xfc, 0x25, 0xbb, 0x19, + 0x95, 0xad, 0x9e, 0x4b, 0x4b, 0x86, 0x8a, 0xe7, 0x76, 0x36, 0xb1, 0x03, + 0x23, 0xd6, 0xb6, 0xf4, 0xbf, 0x10, 0x5e, 0x46, 0xdf, 0x65, 0xbc, 0xc7, + 0x9d, 0xfc, 0x2d, 0xc0, 0xcd, 0x70, 0x5f, 0x68, 0x0a, 0xdb, 0x4b, 0x02, + 0x47, 0x7a, 0xe8, 0xf4, 0x8d, 0x5e, 0xdb, 0x51, 0xcd, 0xbd, 0xe0, 0xc3, + 0xc6, 0xbf, 0x24, 0x80, 0x74, 0xa5, 0x19, 0xdf, 0x73, 0x4a, 0x6d, 0xb5, + 0x76, 0x7a, 0x02, 0x6a, 0x53, 0xdd, 0x11, 0xe6, 0x39, 0x66, 0x41, 0xc0, + 0x27, 0xa5, 0x41, 0x6d, 0xaf, 0xdb, 0xde, 0xcf, 0x71, 0x6c, 0x26, 0x21, + 0xa3, 0x6d, 0x8d, 0xc6, 0x39, 0xae, 0x3e, 0x5b, 0xcb, 0xbb, 0x2d, 0xce, + 0x8f, 0xf2, 0xe3, 0xe5, 0x24, 0x75, 0xa6, 0x78, 0x69, 0x35, 0x09, 0x65, + 0xb9, 0x97, 0xc9, 0x05, 0xa5, 0x93, 0x39, 0x6e, 0x06, 0x6a, 0xe2, 0xe3, + 0x3d, 0x3b, 0x17, 0x19, 0xbb, 0xb3, 0xbd, 0x37, 0x9b, 0x63, 0xda, 0x8f, + 0x92, 0x38, 0xcd, 0x54, 0x8a, 0xda, 0x7d, 0x4a, 0x60, 0xb1, 0x3b, 0x6e, + 0xcf, 0xcd, 0xcf, 0x41, 0xef, 0x52, 0xe8, 0xbe, 0x1e, 0xbf, 0xbe, 0x98, + 0x9b, 0xab, 0x9d, 0x91, 0x03, 0xca, 0xa8, 0xeb, 0xf4, 0xae, 0xee, 0xd7, + 0x4a, 0xb6, 0xb3, 0x80, 0x45, 0x0a, 0x05, 0x5e, 0xf8, 0xef, 0x55, 0xfe, + 0x12, 0xbc, 0xe4, 0x73, 0x53, 0x68, 0x49, 0x6d, 0xa7, 0xbc, 0x92, 0xc9, + 0xbd, 0xd5, 0x72, 0x7d, 0x38, 0xae, 0x42, 0x6d, 0x5a, 0xdc, 0x82, 0xa8, + 0x3a, 0xf1, 0x8d, 0xb9, 0xaf, 0x57, 0xbe, 0x8e, 0x04, 0xb4, 0x7d, 0xe8, + 0x0a, 0x6d, 0x39, 0x1e, 0xd5, 0xe7, 0x25, 0x6d, 0x9a, 0x42, 0x12, 0x0d, + 0x9e, 0x94, 0xa3, 0xcc, 0x9b, 0x4c, 0x52, 0xe5, 0x7b, 0x18, 0x5f, 0x68, + 0x25, 0x30, 0xab, 0x21, 0x23, 0xbf, 0x4c, 0x55, 0x1d, 0x4b, 0x52, 0xba, + 0xb5, 0x55, 0xf2, 0xa4, 0x75, 0x2d, 0xd7, 0x2b, 0x9c, 0x57, 0x4c, 0x76, + 0x6e, 0x2c, 0x00, 0x38, 0xf6, 0xac, 0x6d, 0x5a, 0xda, 0x5b, 0xb9, 0x30, + 0xa8, 0x18, 0x11, 0xd3, 0x14, 0xdb, 0x76, 0x12, 0x45, 0x0b, 0x2b, 0xcb, + 0x9b, 0x98, 0xc6, 0xe6, 0x47, 0x60, 0x7b, 0x77, 0xa7, 0x4d, 0x6b, 0x76, + 0xea, 0x79, 0x19, 0xf4, 0x06, 0xad, 0xd8, 0xd9, 0x49, 0x06, 0x4c, 0x88, + 0x14, 0xe3, 0x8c, 0x55, 0xd5, 0x8c, 0x96, 0xe7, 0x04, 0x9a, 0x6b, 0x54, + 0x27, 0xb9, 0xca, 0x5c, 0x58, 0x5d, 0x81, 0x97, 0x27, 0x15, 0x98, 0x3c, + 0x31, 0x14, 0xd7, 0x0c, 0xd2, 0xb1, 0x56, 0x61, 0xbb, 0xef, 0x0a, 0xde, + 0xf1, 0x3c, 0xe5, 0x15, 0x61, 0x12, 0x15, 0x3c, 0xb1, 0x0a, 0x71, 0x90, + 0x2b, 0x8d, 0xdd, 0xa8, 0x5d, 0x10, 0xf1, 0x69, 0xf7, 0x92, 0x29, 0xe8, + 0xc1, 0x18, 0xff, 0x00, 0x2a, 0x71, 0xa5, 0x26, 0xef, 0x14, 0x27, 0x34, + 0x96, 0xa4, 0xba, 0x9e, 0x8f, 0x6b, 0x61, 0x2d, 0xb0, 0x32, 0xb9, 0x8e, + 0x62, 0x41, 0x6c, 0x8c, 0x8a, 0xbf, 0x2f, 0x85, 0xe6, 0xb7, 0x55, 0x9a, + 0x07, 0xc8, 0x23, 0x82, 0xc4, 0x73, 0x5c, 0xee, 0xa2, 0xb7, 0x71, 0xb4, + 0x49, 0x75, 0x6f, 0x34, 0x07, 0x04, 0xa8, 0x91, 0x48, 0xfc, 0xb3, 0x5d, + 0x27, 0x85, 0x65, 0x3a, 0x8e, 0x6d, 0xe7, 0x95, 0xdc, 0x42, 0x37, 0x22, + 0xe7, 0xee, 0x9a, 0xd1, 0xa7, 0x7b, 0x30, 0xbd, 0x95, 0xc5, 0x82, 0xd2, + 0xe8, 0x29, 0x42, 0xa4, 0x01, 0x53, 0xc4, 0x66, 0x07, 0xca, 0x28, 0x40, + 0x1e, 0x95, 0xd0, 0x1d, 0xaa, 0x30, 0xc8, 0x09, 0xaa, 0xfb, 0x37, 0xb3, + 0x15, 0x4d, 0xa4, 0x7a, 0x77, 0xa9, 0x60, 0x99, 0xcb, 0xdd, 0xc7, 0x32, + 0xdc, 0x04, 0x3b, 0xf0, 0xdd, 0x78, 0xa7, 0x25, 0x8a, 0x9c, 0x03, 0x39, + 0x52, 0x4f, 0xf1, 0x29, 0xae, 0x8b, 0xc9, 0x88, 0xb0, 0x2c, 0xb9, 0xc7, + 0x66, 0xa7, 0xc8, 0xb0, 0x37, 0xca, 0xe8, 0xac, 0x3a, 0x7d, 0x28, 0xbb, + 0x0d, 0x0e, 0x5e, 0x58, 0x9e, 0x37, 0xd9, 0x14, 0xc9, 0x26, 0x38, 0xe0, + 0xd4, 0x86, 0xde, 0xfa, 0x25, 0xf3, 0x59, 0x37, 0x01, 0xef, 0x9a, 0x65, + 0xd2, 0x22, 0x5d, 0x91, 0x1a, 0x8c, 0x2b, 0x72, 0x00, 0xad, 0xc8, 0x90, + 0x49, 0x18, 0x66, 0x70, 0xa0, 0x8e, 0x05, 0x0a, 0x4d, 0x89, 0xa4, 0x8e, + 0x7b, 0xcd, 0x79, 0x24, 0xc6, 0xdc, 0x9f, 0x42, 0x6a, 0xb1, 0x0c, 0x0f, + 0xce, 0x08, 0x53, 0x5b, 0xf3, 0xc6, 0xea, 0x49, 0x8b, 0x69, 0x60, 0x79, + 0x3d, 0xe9, 0xb3, 0x90, 0xc3, 0x74, 0xd1, 0x8c, 0x01, 0xd8, 0x55, 0x5c, + 0x2c, 0x62, 0x04, 0x7f, 0x28, 0x30, 0x5e, 0x3d, 0x6a, 0xab, 0xce, 0xe1, + 0xf0, 0x73, 0x8a, 0xe9, 0x37, 0xdb, 0xec, 0x01, 0x46, 0x01, 0xec, 0x6b, + 0x3e, 0x5b, 0x68, 0x84, 0x99, 0xc0, 0x34, 0x36, 0x24, 0x85, 0xb6, 0xbf, + 0x75, 0xb5, 0x58, 0xad, 0xe3, 0xcc, 0x9d, 0x4b, 0x7a, 0x56, 0x66, 0xab, + 0x69, 0x78, 0xe4, 0x1b, 0x89, 0xb8, 0x3d, 0x00, 0xe9, 0x5b, 0x44, 0x79, + 0x7a, 0x78, 0xd9, 0x81, 0xb9, 0xb9, 0xc7, 0x5c, 0x55, 0x5b, 0xa7, 0x69, + 0x11, 0x4b, 0xa9, 0x01, 0x7a, 0x73, 0xd6, 0xb9, 0x6e, 0xd3, 0xba, 0x37, + 0x69, 0x58, 0xe5, 0xfe, 0xca, 0xfe, 0x69, 0x46, 0x3c, 0x0f, 0x4a, 0xb9, + 0x6f, 0x6d, 0xb0, 0x86, 0x03, 0x90, 0x72, 0x2a, 0x6c, 0xa9, 0x99, 0xdc, + 0x8e, 0xb4, 0xa8, 0xf9, 0xc0, 0xcf, 0x5a, 0xd5, 0xcd, 0xb2, 0x23, 0x04, + 0x8e, 0xbb, 0x4f, 0x90, 0xbc, 0x0b, 0xbc, 0x76, 0xef, 0xda, 0xa1, 0x72, + 0xe1, 0xb6, 0x8e, 0x43, 0x1e, 0x01, 0xa9, 0x2c, 0xd0, 0xa5, 0xaa, 0x7c, + 0xd8, 0x6c, 0x73, 0x55, 0xe6, 0xdc, 0xc0, 0x31, 0x76, 0x05, 0x5b, 0xb7, + 0x7a, 0xc2, 0x26, 0xb2, 0x15, 0xc0, 0x03, 0xe6, 0x51, 0xc7, 0x1d, 0x2a, + 0x5b, 0x7c, 0x6d, 0xc9, 0x03, 0x1f, 0x4a, 0x61, 0x52, 0xd0, 0x92, 0x0e, + 0x5b, 0x39, 0xe6, 0xa5, 0xb2, 0x22, 0x55, 0x60, 0xe9, 0xf9, 0x56, 0xbd, + 0x08, 0x7b, 0x92, 0xf9, 0xc9, 0xb1, 0xb6, 0xa1, 0x60, 0x4e, 0x2a, 0xa4, + 0xf1, 0x39, 0x85, 0x9c, 0x7c, 0xaa, 0x3d, 0xf3, 0x57, 0x64, 0x8d, 0xc6, + 0x38, 0x01, 0x41, 0xe3, 0x02, 0x9d, 0x73, 0x02, 0xcd, 0x00, 0xc0, 0x2a, + 0x4f, 0x5e, 0xd9, 0xa8, 0x63, 0x30, 0xa1, 0x7f, 0x98, 0x8c, 0xd4, 0xf6, + 0xc9, 0xfe, 0x95, 0x85, 0xe3, 0x03, 0xa5, 0x58, 0xb7, 0xd3, 0x86, 0xed, + 0xc5, 0x72, 0xbd, 0x01, 0x35, 0x72, 0x2b, 0x16, 0x86, 0x52, 0xf2, 0x05, + 0xe7, 0xa0, 0xa2, 0xf7, 0x0d, 0x87, 0x09, 0x20, 0x64, 0x3f, 0x37, 0xcd, + 0x8c, 0x52, 0xdb, 0x28, 0x0b, 0x9e, 0x8d, 0xeb, 0xeb, 0x4e, 0xf2, 0x04, + 0x81, 0x9b, 0xae, 0x3d, 0x38, 0xa6, 0x59, 0x44, 0xcf, 0x26, 0x08, 0xc0, + 0x1d, 0xf3, 0x4a, 0xcc, 0xab, 0xae, 0x87, 0xae, 0xc7, 0xa2, 0x69, 0xba, + 0x97, 0x85, 0xf4, 0x54, 0xba, 0xb7, 0x57, 0x0a, 0xb1, 0x3e, 0x31, 0xdf, + 0x1c, 0xd5, 0xbd, 0x27, 0x48, 0xd3, 0x6d, 0xec, 0xe4, 0x71, 0x67, 0x16, + 0xe5, 0x95, 0xb0, 0xc5, 0x72, 0x70, 0x0d, 0x47, 0x69, 0x71, 0x15, 0xb7, + 0x87, 0xf4, 0x4c, 0xba, 0xaa, 0x93, 0x1a, 0x64, 0xb6, 0x07, 0xdd, 0x35, + 0x35, 0x96, 0xa5, 0x62, 0xda, 0x45, 0xd6, 0x6f, 0x2d, 0x81, 0x13, 0x38, + 0x3f, 0xbd, 0x1c, 0x7c, 0xc6, 0x95, 0x95, 0xd3, 0x7d, 0x8b, 0x52, 0x6a, + 0x36, 0xbf, 0x52, 0xdc, 0x96, 0x30, 0x48, 0xaf, 0x8b, 0x78, 0x8b, 0x09, + 0x10, 0xf2, 0xa0, 0xf4, 0xa8, 0x3c, 0x71, 0x6b, 0x13, 0x78, 0x6e, 0x67, + 0x31, 0xaf, 0xc8, 0xe8, 0xca, 0x40, 0xfb, 0xbc, 0x81, 0xfd, 0x6a, 0x13, + 0xe2, 0x3d, 0x3a, 0x23, 0x22, 0xfd, 0xa9, 0x1b, 0x95, 0x3f, 0x27, 0x39, + 0xe2, 0xa9, 0xf8, 0xc3, 0xc4, 0x56, 0x3a, 0x8f, 0x85, 0xa5, 0xb7, 0xb3, + 0xb9, 0x57, 0xb9, 0x93, 0xcb, 0xc4, 0x78, 0x3c, 0x61, 0x81, 0x39, 0xfc, + 0x8d, 0x76, 0x61, 0xe4, 0x92, 0x97, 0xa1, 0xcb, 0x5e, 0xee, 0x51, 0xf5, + 0x3c, 0xd6, 0x64, 0x8d, 0x87, 0xcc, 0xec, 0xa3, 0x3d, 0xaa, 0xff, 0x00, + 0x86, 0x8a, 0xb6, 0xb9, 0x66, 0xa4, 0x03, 0xfe, 0x90, 0x98, 0x27, 0xfd, + 0xe1, 0x54, 0x98, 0x21, 0x8b, 0x12, 0x01, 0xbc, 0x75, 0xc5, 0x59, 0xd1, + 0xae, 0x60, 0xb2, 0xd5, 0x2d, 0x6e, 0x9d, 0x5b, 0x64, 0x52, 0xab, 0x32, + 0xf7, 0xc0, 0x3d, 0xab, 0x28, 0x4e, 0xd2, 0xb9, 0xa4, 0x97, 0xba, 0x7b, + 0xc8, 0xe1, 0x7a, 0x0a, 0x4e, 0xa3, 0xa0, 0xae, 0x79, 0x3c, 0x6d, 0xa0, + 0x30, 0x18, 0xbf, 0x1d, 0x3f, 0xe7, 0x9b, 0x7f, 0x85, 0x4d, 0xff, 0x00, + 0x09, 0x76, 0x83, 0x8f, 0xf9, 0x09, 0x46, 0x3e, 0xa0, 0xff, 0x00, 0x85, + 0x7a, 0x6a, 0x51, 0x7d, 0x4f, 0x33, 0x5e, 0xc5, 0x8f, 0x12, 0xdb, 0xc3, + 0x3f, 0x86, 0xb5, 0x04, 0x96, 0x35, 0x70, 0x20, 0x76, 0x00, 0x8e, 0x84, + 0x0c, 0x83, 0xf9, 0x8a, 0xf1, 0x9d, 0x55, 0x42, 0x5c, 0x85, 0x23, 0x9d, + 0x83, 0xa5, 0x7a, 0xbe, 0xb7, 0xe2, 0x4d, 0x1e, 0x4f, 0x0f, 0xde, 0x18, + 0xf5, 0x0b, 0x79, 0x0b, 0xc2, 0xca, 0xaa, 0xae, 0x0b, 0x12, 0x46, 0x3a, + 0x75, 0xaf, 0x26, 0xd4, 0x2e, 0x62, 0xb9, 0xbd, 0x69, 0x22, 0x25, 0x97, + 0x00, 0x74, 0xae, 0x1c, 0x4a, 0xbd, 0x48, 0xbf, 0x26, 0x77, 0xe1, 0x5f, + 0xee, 0xe4, 0xbc, 0xcc, 0x5b, 0xb0, 0x3c, 0xc1, 0x83, 0xcf, 0x7c, 0xd4, + 0x69, 0x9c, 0xf4, 0x15, 0x25, 0xea, 0x39, 0x9b, 0x72, 0x21, 0xdb, 0x51, + 0xa0, 0x91, 0x79, 0x0a, 0xdf, 0x95, 0x69, 0x05, 0xa1, 0x32, 0x4e, 0xe5, + 0x98, 0xbd, 0x8e, 0x2a, 0xf4, 0x27, 0xfb, 0xdc, 0x56, 0x7c, 0x4c, 0x18, + 0x60, 0xaf, 0xe5, 0x5a, 0xb6, 0x70, 0x16, 0xc6, 0xd7, 0xc8, 0x3d, 0x8d, + 0x0e, 0x24, 0xd8, 0xd2, 0xd3, 0xd8, 0xa3, 0x85, 0x60, 0x1e, 0x36, 0xea, + 0x2b, 0xa3, 0x4d, 0x35, 0x66, 0xb7, 0x0a, 0xbf, 0x34, 0x2d, 0xf7, 0x1b, + 0xba, 0x9f, 0x43, 0x58, 0x56, 0x76, 0xed, 0x14, 0xaa, 0x58, 0x15, 0x04, + 0xf7, 0xe8, 0x6b, 0xb3, 0xd1, 0xe1, 0x60, 0x32, 0x07, 0xca, 0xdd, 0x57, + 0xb1, 0xac, 0x24, 0xba, 0xa3, 0x44, 0xfa, 0x32, 0xce, 0x9b, 0xa6, 0xa5, + 0xbc, 0x0b, 0x90, 0x15, 0xbb, 0x9e, 0xe6, 0xac, 0x4f, 0x6d, 0x0b, 0xc4, + 0x57, 0x04, 0xb6, 0x78, 0x35, 0x76, 0x3b, 0x7f, 0x98, 0x76, 0x35, 0x64, + 0xd8, 0x90, 0x49, 0x61, 0x9a, 0x95, 0xce, 0xf5, 0x45, 0xf3, 0x25, 0xa3, + 0x66, 0x22, 0xd9, 0xf9, 0x76, 0xe0, 0x03, 0xd0, 0x96, 0x23, 0xd6, 0xb1, + 0x04, 0x77, 0x46, 0xe1, 0x9a, 0x68, 0xf0, 0x0f, 0x39, 0x3d, 0x00, 0xae, + 0xc6, 0x5b, 0x61, 0xb7, 0x8e, 0xb5, 0x52, 0x68, 0x4b, 0xc6, 0x54, 0x80, + 0x69, 0x6d, 0xbe, 0xe0, 0xf5, 0xd4, 0xad, 0x65, 0xe2, 0xab, 0x6b, 0x28, + 0x63, 0x82, 0xe2, 0x37, 0x0a, 0x06, 0x15, 0xd7, 0x9c, 0xfe, 0x15, 0x83, + 0x3d, 0xe2, 0x5c, 0xdf, 0xdd, 0xdc, 0x0f, 0x95, 0x24, 0x72, 0xc9, 0xbb, + 0xae, 0x2a, 0xfc, 0xfa, 0x32, 0x31, 0x2c, 0x48, 0x0d, 0xea, 0x7a, 0x55, + 0x0b, 0x8b, 0x73, 0x6e, 0xbf, 0x2c, 0x26, 0x53, 0xfd, 0xe3, 0xc0, 0xa2, + 0xab, 0xe7, 0x8f, 0x2b, 0x1d, 0x18, 0xb8, 0x4b, 0x99, 0x75, 0x33, 0x8a, + 0x6f, 0x0d, 0xb4, 0x1f, 0xad, 0x50, 0x93, 0x68, 0xe0, 0x90, 0x4f, 0xb5, + 0x5d, 0xba, 0x90, 0x81, 0xf3, 0xcc, 0xa0, 0x7f, 0x74, 0x56, 0x69, 0x74, + 0x0f, 0xf2, 0xd3, 0x45, 0x38, 0xf7, 0x26, 0x8a, 0xd1, 0x1b, 0x0e, 0xa3, + 0x6b, 0x8e, 0x43, 0x0a, 0x57, 0xbb, 0xba, 0x81, 0x58, 0x5c, 0x49, 0x88, + 0xe3, 0x6d, 0xc8, 0xa4, 0x9d, 0xbf, 0x5a, 0x48, 0xee, 0x1c, 0x37, 0xde, + 0xe3, 0x1d, 0x2a, 0x39, 0xe7, 0x49, 0x1b, 0x63, 0xfc, 0xc0, 0x8e, 0x55, + 0xa8, 0x9c, 0x94, 0x63, 0x76, 0x38, 0x45, 0xb7, 0xee, 0x96, 0x6e, 0xa4, + 0x92, 0x78, 0x5e, 0x40, 0x71, 0x94, 0xe0, 0x8a, 0x86, 0xc3, 0x4f, 0x91, + 0xad, 0xc3, 0x4c, 0xe7, 0x2d, 0xf7, 0x71, 0xd8, 0xfa, 0xd4, 0x02, 0x59, + 0x21, 0xc6, 0x0e, 0xeb, 0x5d, 0xb8, 0x23, 0xba, 0xfd, 0x6a, 0xd5, 0xae, + 0xa0, 0x5a, 0x15, 0x55, 0x1b, 0x90, 0x72, 0x18, 0x7a, 0x56, 0x6e, 0x3b, + 0x38, 0x9a, 0x29, 0x5e, 0xea, 0x5b, 0x93, 0x8b, 0x67, 0x56, 0xda, 0x5b, + 0x07, 0x3c, 0x91, 0xde, 0xa7, 0x16, 0xc8, 0x13, 0x92, 0x77, 0x77, 0x39, + 0xa5, 0x6b, 0x84, 0x0c, 0xa4, 0x9e, 0xa3, 0xa5, 0x43, 0x35, 0xf4, 0x6b, + 0xf2, 0x86, 0xf9, 0x89, 0xc0, 0x14, 0xa5, 0x2d, 0x47, 0x18, 0xe8, 0x48, + 0x44, 0x51, 0x02, 0xdb, 0x01, 0x23, 0xb6, 0x3a, 0xd4, 0x6a, 0x9e, 0x77, + 0xcf, 0x22, 0x6d, 0x5e, 0xc2, 0x9b, 0x10, 0x25, 0x8b, 0xc8, 0x72, 0x7b, + 0x0a, 0x91, 0xe4, 0x3d, 0xcd, 0x24, 0xc6, 0xf4, 0x29, 0xdc, 0x58, 0x44, + 0xf3, 0x89, 0x71, 0xd3, 0xb0, 0xab, 0x6a, 0xc7, 0x68, 0xc0, 0xc7, 0xe1, + 0x51, 0xb3, 0xed, 0x21, 0xdb, 0x81, 0xd2, 0x99, 0x23, 0x77, 0xdf, 0xd7, + 0xb6, 0x69, 0x99, 0xb1, 0xef, 0x72, 0xd1, 0x82, 0x79, 0x23, 0xd7, 0x15, + 0x01, 0xb9, 0x2a, 0xbc, 0x75, 0x35, 0x5d, 0xd8, 0x92, 0x55, 0x24, 0x5c, + 0x1f, 0x5a, 0x71, 0x48, 0x8a, 0xe1, 0xa6, 0x19, 0xa6, 0x21, 0x7c, 0xe2, + 0x09, 0x62, 0xc4, 0x9e, 0xf4, 0xd6, 0xb9, 0x1b, 0x4e, 0xd6, 0x3d, 0x29, + 0x0f, 0x91, 0x0a, 0x16, 0x69, 0x97, 0x00, 0x77, 0x35, 0x04, 0xa8, 0x92, + 0xc5, 0xbd, 0x25, 0x4c, 0x11, 0x9c, 0x13, 0x8a, 0x68, 0x4c, 0xe7, 0x2f, + 0x75, 0x5b, 0x39, 0x62, 0x58, 0xbe, 0xcf, 0x32, 0x33, 0x10, 0x06, 0x52, + 0xae, 0xd9, 0x5a, 0x42, 0x21, 0x05, 0x94, 0x8c, 0xf3, 0x92, 0x69, 0xd1, + 0x22, 0x5c, 0x10, 0x70, 0xa5, 0x7b, 0x64, 0x55, 0x92, 0xa0, 0x01, 0xb4, + 0x8c, 0x7b, 0x53, 0xb9, 0x36, 0x11, 0x62, 0x83, 0xa6, 0xe3, 0x9e, 0xd8, + 0x35, 0x5a, 0x68, 0xe3, 0x0d, 0x8c, 0xbe, 0x3f, 0xbc, 0x4f, 0x15, 0x23, + 0xb9, 0xc7, 0xc9, 0xd4, 0x75, 0x06, 0xa0, 0x72, 0xad, 0x0e, 0xd7, 0x0b, + 0x93, 0xdb, 0x34, 0x5c, 0x44, 0x4d, 0x10, 0x2c, 0x10, 0x38, 0x07, 0x1c, + 0x71, 0xd6, 0x9b, 0xe5, 0xdc, 0xc4, 0xd8, 0x8d, 0x97, 0x9e, 0x38, 0xed, + 0x4a, 0x47, 0x92, 0xbc, 0x28, 0x2c, 0x3a, 0x73, 0xd2, 0x9f, 0x13, 0x16, + 0xcb, 0xe7, 0x07, 0x1d, 0x33, 0x45, 0xc0, 0xcb, 0xb8, 0x8a, 0x6f, 0xed, + 0x2b, 0x70, 0x49, 0xf2, 0x55, 0xc7, 0xe2, 0x7d, 0x4d, 0x74, 0x73, 0x4a, + 0x9f, 0x65, 0x30, 0x8f, 0xbc, 0xdd, 0x4f, 0xa5, 0x65, 0x34, 0xb0, 0xb4, + 0x2b, 0xb8, 0x8d, 0xea, 0xdb, 0x8f, 0xb0, 0xcd, 0x43, 0xe6, 0x49, 0xaa, + 0x8f, 0x97, 0x29, 0x6e, 0xa7, 0xe6, 0x62, 0x71, 0xbb, 0xe9, 0x40, 0x8c, + 0x0d, 0x52, 0x28, 0xda, 0xe4, 0x94, 0xc9, 0x05, 0xb9, 0x73, 0x5a, 0x76, + 0x4f, 0x1a, 0x46, 0xb0, 0xc7, 0xc0, 0xc5, 0x57, 0xd6, 0x19, 0x01, 0x08, + 0x80, 0x2a, 0x2f, 0x41, 0x54, 0x62, 0x98, 0xa1, 0xce, 0x7b, 0x75, 0x15, + 0x76, 0xd0, 0x8b, 0xea, 0x74, 0x7b, 0x84, 0x81, 0x61, 0x5c, 0x1c, 0x9f, + 0x9b, 0x35, 0x9f, 0xa9, 0xe9, 0x6b, 0x1f, 0x96, 0x4a, 0xf0, 0xcc, 0x01, + 0xa7, 0xe9, 0x93, 0x0f, 0xb4, 0xa0, 0x2e, 0x01, 0x3e, 0xb5, 0xa1, 0xa9, + 0xcc, 0x97, 0x26, 0x38, 0x22, 0x3b, 0xa4, 0x0c, 0x0e, 0x7b, 0x52, 0x68, + 0x69, 0x8e, 0xb3, 0xcd, 0xbd, 0xa0, 0x89, 0x31, 0xb4, 0x74, 0x15, 0x04, + 0xb7, 0x77, 0x2a, 0x85, 0xa1, 0x55, 0xcb, 0x1c, 0x64, 0xf6, 0xab, 0x89, + 0x6e, 0x52, 0x15, 0x0e, 0x46, 0xec, 0x7c, 0xc4, 0x1a, 0xb1, 0x6d, 0xa6, + 0xc7, 0x73, 0x6d, 0xf6, 0x95, 0x75, 0xf2, 0x94, 0xf0, 0xc7, 0xa0, 0x22, + 0x81, 0xb3, 0x2a, 0xd6, 0xc0, 0xcb, 0x39, 0x96, 0xe5, 0x8c, 0x8e, 0x7a, + 0x6e, 0xe8, 0x3e, 0x95, 0xaf, 0xbc, 0xd9, 0xc0, 0xcb, 0x0c, 0x60, 0x64, + 0x67, 0x26, 0xb2, 0xfe, 0xd8, 0xd0, 0x6b, 0xca, 0xb6, 0x8a, 0xd7, 0x91, + 0xaa, 0x1d, 0xca, 0x9c, 0x80, 0xd5, 0x72, 0xe2, 0x0d, 0x4e, 0xf4, 0x8f, + 0xb4, 0xc8, 0x96, 0xb0, 0xb0, 0xce, 0xc4, 0x3c, 0xfe, 0x75, 0x2e, 0xe3, + 0x4e, 0xc6, 0x4d, 0xbe, 0xb9, 0xbe, 0x69, 0x9a, 0xe0, 0x92, 0xd8, 0xc2, + 0x8e, 0xb4, 0xc9, 0xa5, 0x9a, 0xfe, 0x27, 0x58, 0xed, 0x8e, 0x31, 0xcb, + 0x35, 0x68, 0x9d, 0x1a, 0x0b, 0x43, 0x6f, 0x24, 0x4b, 0x96, 0x2f, 0x82, + 0xcd, 0xf4, 0xad, 0xab, 0x58, 0x55, 0x31, 0xf2, 0x10, 0xc7, 0xa9, 0xed, + 0x42, 0x4e, 0xc2, 0x7b, 0x9c, 0x44, 0x7a, 0x3b, 0x5b, 0x24, 0xbb, 0x9f, + 0x2d, 0x9f, 0xba, 0x0f, 0xb5, 0x49, 0x15, 0xb5, 0xba, 0x5c, 0xc4, 0x09, + 0x0c, 0xa0, 0x8d, 0xfb, 0xab, 0x5e, 0xf6, 0x32, 0xac, 0x26, 0x28, 0x58, + 0x48, 0xed, 0x90, 0xa3, 0xa8, 0x1c, 0x75, 0xa4, 0x36, 0x62, 0xe0, 0xaf, + 0x97, 0x13, 0x02, 0xc7, 0xbf, 0x38, 0xa8, 0x96, 0xe5, 0x26, 0x6b, 0x0b, + 0x78, 0xd3, 0x64, 0xc9, 0x80, 0x9f, 0xc2, 0xaa, 0x2a, 0xc6, 0xe0, 0xe4, + 0xe1, 0x09, 0x35, 0xd8, 0x68, 0xde, 0x09, 0x26, 0xde, 0x27, 0xbd, 0x94, + 0xe7, 0x68, 0xc2, 0x46, 0x30, 0x07, 0xd6, 0xba, 0x2b, 0x4f, 0x0e, 0x58, + 0xd9, 0xf2, 0xb0, 0xa9, 0xe7, 0x20, 0x91, 0x92, 0x2a, 0xae, 0xfa, 0x21, + 0xf2, 0xf7, 0x67, 0x96, 0x32, 0x4a, 0xeb, 0xb9, 0x99, 0x54, 0x0f, 0xbb, + 0xb4, 0x57, 0x39, 0xaf, 0xeb, 0x2c, 0x14, 0xdb, 0x44, 0x4f, 0x98, 0x3e, + 0xf3, 0x7a, 0x7d, 0x2b, 0xd2, 0x7e, 0x21, 0x22, 0x5a, 0xd9, 0xa4, 0xb1, + 0x46, 0x11, 0xc1, 0x20, 0xe0, 0x63, 0x35, 0xe2, 0x77, 0xac, 0x4b, 0x17, + 0x63, 0x92, 0x4d, 0x09, 0xb9, 0x22, 0x64, 0xb9, 0x4a, 0x8f, 0x2b, 0x17, + 0x39, 0x24, 0x93, 0xeb, 0x4d, 0x55, 0x92, 0x59, 0x56, 0x18, 0xe3, 0x69, + 0x24, 0x73, 0x85, 0x44, 0x5c, 0x92, 0x7e, 0x95, 0xd2, 0x78, 0x2f, 0xc1, + 0x97, 0xbe, 0x33, 0xd5, 0x5a, 0xda, 0xdd, 0xbc, 0x9b, 0x78, 0x86, 0xe9, + 0xee, 0x0a, 0xe4, 0x20, 0xec, 0x00, 0xee, 0x4f, 0xa5, 0x7d, 0x13, 0xa0, + 0xf8, 0x1f, 0x41, 0xf0, 0xed, 0xaa, 0xc5, 0x63, 0x66, 0x16, 0x4c, 0x61, + 0xe6, 0x7e, 0x5d, 0xcf, 0xa9, 0x35, 0xbd, 0x2a, 0x4a, 0x5a, 0xcb, 0x44, + 0x73, 0xca, 0x56, 0xd8, 0xf9, 0xd6, 0xcf, 0xc0, 0x3e, 0x2b, 0xbc, 0x88, + 0x4b, 0x16, 0x90, 0xc8, 0xb9, 0xc6, 0x26, 0x71, 0x19, 0xfc, 0x8f, 0x35, + 0x7f, 0xfe, 0x15, 0xaf, 0x8b, 0x63, 0x19, 0x3a, 0x7c, 0x2d, 0xec, 0xb3, + 0xad, 0x7d, 0x1b, 0x71, 0x62, 0x55, 0x73, 0x17, 0x20, 0x1e, 0x95, 0x07, + 0x91, 0x26, 0x32, 0x50, 0x8a, 0xf4, 0x23, 0x86, 0xa0, 0xd6, 0xc7, 0x3b, + 0xab, 0x51, 0x33, 0xe6, 0x2b, 0xcd, 0x1b, 0x50, 0xd2, 0x25, 0xd9, 0xa8, + 0x58, 0xcf, 0x6a, 0x73, 0x80, 0xce, 0xbf, 0x29, 0x3e, 0xcd, 0xd0, 0xd5, + 0xdd, 0x26, 0xf2, 0x4b, 0x1b, 0x80, 0x46, 0x0a, 0x37, 0x04, 0x1e, 0x84, + 0x57, 0xd0, 0x97, 0x9a, 0x7c, 0x17, 0xb0, 0x98, 0x6e, 0xe0, 0x8e, 0x58, + 0x8f, 0x55, 0x75, 0x04, 0x1a, 0xf2, 0x8f, 0x17, 0xf8, 0x35, 0x34, 0x09, + 0x56, 0xee, 0xd0, 0xff, 0x00, 0xa0, 0x4c, 0xdb, 0x76, 0x13, 0xcc, 0x4d, + 0xd8, 0x7d, 0x2b, 0x0a, 0xd8, 0x45, 0x15, 0xcd, 0x03, 0x5a, 0x75, 0xb9, + 0x9d, 0x9e, 0xe5, 0x88, 0x24, 0x8f, 0x87, 0xca, 0xe5, 0x86, 0x46, 0x3b, + 0x0a, 0x7c, 0xa4, 0x90, 0x4a, 0xb1, 0x35, 0x4e, 0xc1, 0x4b, 0x69, 0xe8, + 0x17, 0x3b, 0xb1, 0xd4, 0x54, 0xbf, 0x32, 0xe0, 0x33, 0x16, 0x61, 0x5c, + 0xac, 0xdf, 0xa9, 0x24, 0xa0, 0x49, 0x6b, 0x2a, 0xf9, 0xce, 0xb9, 0x18, + 0x20, 0x1c, 0x1a, 0xe6, 0xae, 0xae, 0xe1, 0xb4, 0x02, 0x08, 0xb2, 0xc4, + 0x71, 0x81, 0xc9, 0x35, 0xad, 0xab, 0x4f, 0x34, 0x71, 0x24, 0x30, 0x02, + 0xd3, 0xcc, 0xdb, 0x11, 0x54, 0x72, 0x49, 0xaf, 0x4f, 0xf0, 0x57, 0x80, + 0xac, 0xbc, 0x3d, 0x6b, 0x1d, 0xd5, 0xd4, 0x69, 0x3e, 0xa6, 0xe3, 0x73, + 0xca, 0xc3, 0x3b, 0x33, 0xd9, 0x7f, 0xc6, 0x8f, 0x65, 0xed, 0x18, 0xf9, + 0xf9, 0x11, 0xe4, 0x10, 0x78, 0x6f, 0xc5, 0x1a, 0x8a, 0xef, 0x83, 0x49, + 0x9a, 0x34, 0x3d, 0x0c, 0xdf, 0xbb, 0xcf, 0xd3, 0x76, 0x2a, 0xd2, 0xfc, + 0x3e, 0xf1, 0x79, 0x3c, 0x59, 0x46, 0x49, 0xff, 0x00, 0xa6, 0xeb, 0xfe, + 0x35, 0xef, 0x77, 0x80, 0x02, 0x38, 0x18, 0xa8, 0x62, 0xc2, 0x9d, 0xd9, + 0xc7, 0xb5, 0x76, 0x47, 0x07, 0x4b, 0x94, 0xe7, 0x78, 0x99, 0xdc, 0xf9, + 0xea, 0xff, 0x00, 0x48, 0xd6, 0xf4, 0x26, 0x61, 0xa9, 0xe9, 0xd3, 0xc2, + 0x83, 0x03, 0xcd, 0xdb, 0x94, 0xff, 0x00, 0xbe, 0x87, 0x15, 0x14, 0x73, + 0x87, 0x5f, 0x94, 0xd7, 0xd1, 0xa4, 0xc3, 0x72, 0x0c, 0x73, 0xa8, 0x65, + 0x6e, 0x08, 0x61, 0x90, 0x6b, 0x84, 0xf1, 0x87, 0xc3, 0x7b, 0x79, 0xe3, + 0x93, 0x51, 0xd0, 0x10, 0x43, 0x72, 0xa3, 0x73, 0xda, 0xaf, 0xdc, 0x93, + 0xfd, 0xdf, 0x43, 0xfa, 0x57, 0x2d, 0x6c, 0x1f, 0x2e, 0xb0, 0x36, 0xa7, + 0x88, 0x52, 0xdc, 0xf3, 0x68, 0x6e, 0x25, 0x87, 0x94, 0x24, 0x67, 0xa8, + 0xa7, 0xdc, 0x44, 0x93, 0x61, 0xfc, 0x8f, 0x30, 0x38, 0xe4, 0xb2, 0xd4, + 0x50, 0x6e, 0x71, 0xca, 0xe0, 0xf4, 0x20, 0xf6, 0x35, 0xa9, 0xf6, 0x57, + 0x82, 0xd1, 0x2f, 0x2e, 0x50, 0xfd, 0x9d, 0x8e, 0xc1, 0x8e, 0xd5, 0xc7, + 0x19, 0x35, 0xa1, 0xbc, 0xa1, 0x73, 0x14, 0x5a, 0xbf, 0x9e, 0x9e, 0x49, + 0x31, 0xb2, 0xb7, 0x1f, 0x37, 0x18, 0xad, 0xdb, 0xcb, 0x38, 0xcd, 0xa8, + 0x51, 0x1a, 0x9d, 0xdc, 0x90, 0x7b, 0xd4, 0xeb, 0xa5, 0x46, 0x5d, 0x65, + 0x0c, 0xcc, 0x3a, 0x8f, 0x9b, 0x22, 0xab, 0x6b, 0x1e, 0x7c, 0x76, 0xb8, + 0x5d, 0xa3, 0x9e, 0x08, 0x35, 0xaa, 0x56, 0x44, 0x2d, 0xca, 0x96, 0xba, + 0x45, 0x9b, 0x33, 0x86, 0x84, 0x21, 0x61, 0xc0, 0x26, 0xa3, 0x36, 0x8f, + 0xa7, 0xdc, 0x62, 0xd5, 0xca, 0x60, 0x16, 0x20, 0x0c, 0x03, 0xf8, 0xd5, + 0x8d, 0x13, 0xcc, 0x95, 0xdb, 0xce, 0x7d, 0xd8, 0xc6, 0x09, 0xe7, 0x15, + 0xd0, 0x5c, 0xe9, 0xf2, 0x45, 0x19, 0x9b, 0xca, 0x66, 0x41, 0xd1, 0xb6, + 0x90, 0x28, 0xbe, 0x89, 0x5e, 0xcc, 0x53, 0x8f, 0x35, 0xd1, 0xc9, 0xcd, + 0xa9, 0x5d, 0xcb, 0x19, 0x8d, 0xa0, 0x18, 0x0d, 0x9c, 0xf5, 0xc7, 0xb5, + 0x57, 0x80, 0x0b, 0xab, 0xb8, 0x56, 0x3d, 0xaa, 0x77, 0x7c, 0xc0, 0x9e, + 0xff, 0x00, 0x8d, 0x74, 0x0b, 0x60, 0x97, 0x2c, 0xf2, 0x38, 0xc1, 0x27, + 0xa6, 0x6a, 0xb3, 0xe9, 0x69, 0x24, 0xa1, 0x36, 0xfc, 0xca, 0x31, 0x91, + 0x51, 0xcb, 0x57, 0x9f, 0x99, 0xb3, 0x9f, 0xd9, 0xe9, 0x62, 0x2b, 0xd9, + 0x27, 0xb2, 0xba, 0x2a, 0xb8, 0x75, 0xc7, 0xcc, 0xa2, 0xa9, 0xcc, 0xf1, + 0x5d, 0x04, 0x25, 0x3c, 0xa1, 0x9c, 0xf4, 0xcf, 0x35, 0x36, 0xa1, 0x61, + 0x7f, 0x0c, 0x22, 0x58, 0xe6, 0x89, 0x82, 0xf4, 0x0e, 0x7a, 0xfe, 0x75, + 0x9f, 0xa7, 0xba, 0xad, 0xcc, 0xaf, 0xa8, 0x45, 0xb7, 0xcc, 0xe9, 0x83, + 0xf2, 0xa9, 0xf6, 0xad, 0x1b, 0xeb, 0x32, 0x92, 0x97, 0x72, 0xc3, 0xd9, + 0x3a, 0x8c, 0xf9, 0x65, 0xb7, 0xf5, 0x93, 0x3c, 0x63, 0xe9, 0x4e, 0x5b, + 0x1b, 0xb8, 0xdc, 0x24, 0x71, 0x86, 0x4c, 0x03, 0xb9, 0x86, 0x70, 0x2b, + 0x46, 0x4b, 0x88, 0x2c, 0xe1, 0x42, 0x65, 0x06, 0x37, 0x38, 0x07, 0x39, + 0xa5, 0x9e, 0xe0, 0x88, 0xb0, 0x64, 0xd9, 0x19, 0x1c, 0xed, 0xfb, 0xd5, + 0x12, 0x84, 0x77, 0xd8, 0xbf, 0x66, 0x9e, 0xa7, 0x19, 0x7b, 0x12, 0x8d, + 0x42, 0x55, 0x2a, 0xbb, 0x81, 0xea, 0x38, 0xfd, 0x2b, 0xd2, 0x3e, 0x1a, + 0x78, 0x7f, 0x4e, 0xd4, 0xa0, 0xb8, 0xba, 0xba, 0xb7, 0x69, 0x1a, 0x36, + 0x0a, 0x32, 0x3e, 0x5e, 0x9f, 0xa9, 0xaf, 0x3e, 0xbb, 0x5b, 0x51, 0x72, + 0xad, 0x1b, 0x33, 0xb3, 0x1c, 0x37, 0x1d, 0x2b, 0xdb, 0xbc, 0x1b, 0xe5, + 0x41, 0x67, 0x67, 0x6b, 0x6a, 0xc0, 0x46, 0xd0, 0x17, 0x3b, 0x7b, 0xb6, + 0x47, 0x5f, 0x7e, 0x6b, 0x29, 0x6b, 0x25, 0x7d, 0x82, 0x9a, 0xbc, 0x9f, + 0x91, 0x8b, 0xe2, 0xcf, 0x0a, 0xc7, 0x6d, 0x2c, 0x53, 0x40, 0xff, 0x00, + 0xb8, 0x6e, 0x19, 0x0f, 0x3f, 0x95, 0x3b, 0x44, 0xd3, 0x12, 0x17, 0x94, + 0x2a, 0xf0, 0xa4, 0x1c, 0x7e, 0x15, 0xd3, 0x78, 0xac, 0x62, 0xda, 0xd9, + 0x49, 0x19, 0x2f, 0xfd, 0x2b, 0x22, 0xc9, 0xc4, 0x57, 0x57, 0x59, 0x27, + 0x68, 0x0b, 0xc7, 0x4e, 0x71, 0x5b, 0x2b, 0x45, 0x33, 0x74, 0xae, 0xce, + 0x97, 0x48, 0x8f, 0xcb, 0x8d, 0x80, 0xe7, 0x9c, 0xf3, 0x56, 0xef, 0xf5, + 0x0b, 0x7d, 0x3a, 0x1d, 0xf3, 0x49, 0x87, 0x6f, 0xba, 0xbd, 0xcd, 0x60, + 0xae, 0xac, 0xd6, 0xb6, 0x0c, 0xd1, 0x2a, 0x97, 0x6c, 0xe0, 0x93, 0xd2, + 0xb1, 0x2e, 0x25, 0x92, 0xee, 0x61, 0x24, 0x8e, 0xd2, 0x30, 0x1d, 0x6a, + 0xa2, 0xdb, 0x14, 0x8b, 0x5a, 0x9e, 0xb5, 0x3e, 0xa3, 0x6f, 0x85, 0xfd, + 0xdc, 0x67, 0x9c, 0x0a, 0xc0, 0x72, 0xeb, 0x70, 0xa3, 0x7f, 0x04, 0x71, + 0xf9, 0x54, 0x93, 0x4b, 0x26, 0x49, 0x65, 0xf9, 0x41, 0xc6, 0x07, 0x51, + 0x55, 0xa4, 0x94, 0x33, 0xa0, 0x1c, 0x05, 0x6f, 0x4a, 0xd3, 0x44, 0x8c, + 0xc2, 0x21, 0xf6, 0x64, 0x6d, 0xf2, 0x16, 0xdc, 0x73, 0xcd, 0x3c, 0x32, + 0xf3, 0xfc, 0xea, 0xa4, 0xd2, 0x98, 0xe7, 0x5f, 0x98, 0xe0, 0xf1, 0xb7, + 0x6d, 0x2c, 0x81, 0x39, 0x53, 0x90, 0x0f, 0x39, 0xcd, 0x41, 0x44, 0xcb, + 0x2a, 0x15, 0x25, 0x0e, 0x40, 0x35, 0x11, 0x73, 0xb8, 0xf3, 0xd6, 0xa2, + 0x77, 0x11, 0x9e, 0x32, 0x46, 0x3b, 0xf4, 0x15, 0x03, 0xcc, 0x18, 0xf0, + 0x09, 0x22, 0x9a, 0x13, 0x1d, 0x6e, 0xb0, 0x5d, 0x78, 0xab, 0x4f, 0x86, + 0x68, 0x43, 0x82, 0xc3, 0x21, 0x86, 0x41, 0xf6, 0xaf, 0x5a, 0x8e, 0xde, + 0x18, 0xd0, 0x2a, 0x46, 0xaa, 0xa0, 0x70, 0x00, 0xc6, 0x2b, 0xc8, 0x74, + 0x82, 0x64, 0xf1, 0x66, 0x9c, 0x79, 0x04, 0x49, 0xd0, 0xfe, 0x35, 0xec, + 0x80, 0x71, 0x5e, 0xb6, 0x0f, 0x4a, 0x7f, 0x33, 0x83, 0x11, 0xf1, 0x9e, + 0x41, 0xf1, 0xc9, 0x15, 0x6c, 0xb4, 0x96, 0x50, 0x01, 0x12, 0xbf, 0x20, + 0x7b, 0x0a, 0xe1, 0xbc, 0x23, 0x2c, 0x70, 0xb4, 0x64, 0x0f, 0x9e, 0x4d, + 0xc3, 0x22, 0xbb, 0xcf, 0x8e, 0x83, 0x1a, 0x66, 0x96, 0xdf, 0xf4, 0xd9, + 0xbf, 0x95, 0x79, 0xdf, 0x87, 0x01, 0x29, 0x03, 0x29, 0xc6, 0x0b, 0x13, + 0xc5, 0x63, 0x8a, 0xfe, 0x25, 0xcd, 0xa8, 0xff, 0x00, 0x0c, 0xec, 0x5e, + 0x41, 0xcb, 0x16, 0xe7, 0xbd, 0x46, 0x19, 0x80, 0xf9, 0x78, 0x22, 0xa1, + 0x56, 0xc8, 0xce, 0xef, 0x7e, 0x69, 0xe4, 0x86, 0x04, 0x82, 0x71, 0xe9, + 0x5c, 0x4c, 0xdd, 0x0d, 0x32, 0x48, 0xaa, 0x4b, 0x0d, 0xdc, 0xd3, 0x66, + 0x60, 0x55, 0x48, 0x38, 0xf6, 0xa7, 0x64, 0x85, 0xc9, 0xcf, 0x1d, 0x71, + 0x55, 0xa7, 0x91, 0xcb, 0x02, 0x98, 0xda, 0x7b, 0xd2, 0x19, 0x56, 0x6b, + 0x68, 0x9a, 0x51, 0x90, 0x41, 0x27, 0xa8, 0x35, 0x60, 0x02, 0x9c, 0x70, + 0x45, 0x46, 0xc2, 0x16, 0x7d, 0xd2, 0x70, 0x7d, 0x45, 0x36, 0x19, 0x10, + 0x0e, 0x01, 0xe0, 0xf7, 0x6c, 0xd2, 0xb0, 0x16, 0x59, 0xf0, 0xa7, 0x0b, + 0x48, 0x18, 0x30, 0x21, 0xc7, 0x04, 0x73, 0x4c, 0x79, 0x54, 0x0d, 0xd8, + 0xc0, 0xee, 0x45, 0x3c, 0xed, 0xc0, 0x65, 0x39, 0x14, 0xc4, 0x51, 0x92, + 0x04, 0x04, 0xe1, 0xb8, 0xf4, 0xaa, 0x17, 0x11, 0xb2, 0x9c, 0xf6, 0xad, + 0x49, 0x40, 0x65, 0xe9, 0xc8, 0xaa, 0x32, 0xa7, 0xbf, 0xe7, 0x43, 0x1a, + 0x24, 0xb3, 0xc9, 0xb2, 0x93, 0x71, 0x3c, 0x67, 0xad, 0x47, 0x6f, 0x13, + 0x5d, 0xc2, 0x46, 0xf3, 0xb4, 0x12, 0x31, 0x8e, 0xbc, 0xd3, 0xad, 0xe3, + 0x32, 0x47, 0xd7, 0xe4, 0xc9, 0x24, 0x0e, 0xf5, 0x3c, 0x01, 0xa1, 0xb6, + 0x2c, 0x32, 0x17, 0x27, 0x01, 0x7a, 0xd7, 0x3f, 0x56, 0x6b, 0xd0, 0xe7, + 0xae, 0x97, 0xcb, 0xb9, 0x91, 0x31, 0xc5, 0x41, 0x17, 0xde, 0x5c, 0xf6, + 0x3d, 0x2a, 0xf4, 0xd0, 0x49, 0x77, 0x76, 0xec, 0x80, 0x81, 0x9e, 0xa6, + 0xa5, 0x36, 0x16, 0xf6, 0x80, 0x19, 0xa5, 0xe4, 0xf3, 0x83, 0x55, 0x74, + 0xb4, 0x03, 0xa1, 0x8e, 0x61, 0xe5, 0xed, 0x1d, 0x97, 0xa8, 0xaa, 0xaa, + 0xfb, 0x83, 0x6e, 0xe9, 0xc9, 0x06, 0xa3, 0x98, 0x32, 0x5b, 0xa8, 0x5c, + 0xfc, 0xeb, 0xc7, 0x7a, 0xac, 0xb2, 0x4f, 0x02, 0x15, 0xc0, 0x20, 0xfa, + 0x52, 0x8a, 0x41, 0x26, 0xcb, 0xe8, 0xcc, 0x41, 0x00, 0x82, 0xb5, 0x3d, + 0x93, 0x28, 0x67, 0x27, 0x00, 0x0e, 0x86, 0xb3, 0xe1, 0x90, 0x48, 0xb8, + 0xce, 0xc6, 0x1d, 0x73, 0x5a, 0x76, 0x42, 0x36, 0x2c, 0x1b, 0x6b, 0x0e, + 0xd4, 0xed, 0xa0, 0x8b, 0x85, 0xd5, 0xc2, 0xec, 0x20, 0xe6, 0x97, 0xcf, + 0x54, 0x93, 0x6b, 0x80, 0xca, 0x3a, 0x91, 0xce, 0x28, 0x62, 0xae, 0x81, + 0x55, 0x46, 0x7a, 0x64, 0xf1, 0x8a, 0x6c, 0x2b, 0x00, 0x3e, 0x5a, 0xa8, + 0x25, 0x7b, 0x0a, 0x96, 0xc6, 0x91, 0x2c, 0x61, 0x26, 0x65, 0x31, 0xab, + 0x81, 0xed, 0xd0, 0x53, 0x8c, 0x6c, 0xac, 0x76, 0xe0, 0x93, 0xea, 0x6a, + 0x30, 0x0b, 0x06, 0x65, 0x91, 0x91, 0x14, 0xf3, 0xce, 0x2a, 0x84, 0x1a, + 0x9d, 0xbd, 0xc4, 0xb2, 0x7f, 0xa4, 0x32, 0x04, 0x38, 0x24, 0x9e, 0x4d, + 0x2d, 0x4a, 0x76, 0x34, 0xa2, 0xb3, 0x58, 0x0b, 0x10, 0x00, 0x2f, 0xf7, + 0xb9, 0xa9, 0xa2, 0x68, 0x63, 0x6d, 0x9b, 0x94, 0xe2, 0xb1, 0xee, 0x75, + 0x8b, 0x78, 0xa3, 0x2b, 0x0c, 0x8e, 0xed, 0xea, 0x45, 0x66, 0x69, 0xbe, + 0x22, 0x8e, 0x4b, 0xb9, 0x92, 0xec, 0x85, 0x45, 0x3f, 0x2e, 0x17, 0x19, + 0xa7, 0x66, 0xf6, 0x25, 0xc9, 0x23, 0xa8, 0xba, 0xbb, 0x70, 0x16, 0x12, + 0xec, 0x50, 0x1c, 0xaa, 0x16, 0x38, 0x07, 0xd6, 0x98, 0x66, 0xb7, 0xfb, + 0xa5, 0x50, 0x31, 0xe6, 0xb3, 0x06, 0xaf, 0x60, 0x5f, 0x31, 0xa4, 0xaf, + 0x8f, 0x45, 0xcd, 0x54, 0xba, 0x9e, 0xea, 0xe3, 0x5b, 0xb4, 0xb9, 0xb3, + 0xb2, 0x91, 0xa1, 0x41, 0xf3, 0xab, 0x2e, 0x01, 0xa6, 0x95, 0xc4, 0xe5, + 0xd8, 0xeb, 0xa2, 0x9e, 0x15, 0x8f, 0x25, 0x46, 0x7d, 0xaa, 0x2b, 0xab, + 0xbd, 0x91, 0x93, 0xf2, 0x2a, 0xfa, 0xd4, 0x1f, 0x6f, 0xd4, 0x25, 0x8b, + 0x10, 0xe9, 0xa1, 0x48, 0xee, 0x48, 0xc0, 0xaa, 0x7a, 0xad, 0xae, 0xb5, + 0xa9, 0xd9, 0x79, 0x2f, 0x0c, 0x71, 0xae, 0x47, 0x43, 0xcd, 0x50, 0x8b, + 0x06, 0xe6, 0x37, 0x00, 0x82, 0xad, 0x9f, 0xca, 0x9b, 0x1c, 0x8a, 0xfc, + 0x36, 0x07, 0xd0, 0x56, 0x74, 0x71, 0xea, 0x36, 0x56, 0xeb, 0x0b, 0x47, + 0x19, 0x0b, 0xc7, 0xbd, 0x21, 0x6b, 0xc9, 0x18, 0xaa, 0xaa, 0xe7, 0x1c, + 0x85, 0x35, 0x25, 0x2b, 0x97, 0xed, 0xde, 0x27, 0x66, 0xf2, 0x66, 0x25, + 0xd4, 0xf2, 0x31, 0x52, 0x99, 0xe4, 0x76, 0x28, 0x53, 0x06, 0xb2, 0xb4, + 0xfd, 0x23, 0x52, 0x82, 0x56, 0x92, 0x10, 0x41, 0x6e, 0x7e, 0xf5, 0x6b, + 0x32, 0xea, 0xaa, 0x06, 0xfb, 0x24, 0x63, 0xea, 0x1a, 0xae, 0xe4, 0x58, + 0x23, 0x68, 0xd6, 0x60, 0x8c, 0x06, 0x7d, 0x2b, 0x42, 0x2d, 0x80, 0x00, + 0xaa, 0x2b, 0x0c, 0xe9, 0xfa, 0x83, 0xdf, 0xc7, 0x72, 0xd6, 0xd8, 0x54, + 0xfe, 0x10, 0x6b, 0x59, 0x67, 0x60, 0xdb, 0x9a, 0xd1, 0xc7, 0xe1, 0x4d, + 0xc8, 0x71, 0x44, 0x8d, 0x1e, 0x58, 0x00, 0xa0, 0x93, 0xe8, 0x2b, 0x4a, + 0xd2, 0xd8, 0x15, 0xc3, 0x00, 0x7d, 0xb1, 0x59, 0x73, 0x4b, 0x2b, 0xc6, + 0x3e, 0xce, 0x85, 0x1f, 0x70, 0x24, 0xed, 0xed, 0x5b, 0x16, 0xf7, 0x36, + 0xa1, 0x15, 0x5a, 0xe8, 0x23, 0xe3, 0x9c, 0xfa, 0xd1, 0x7e, 0xc5, 0xaf, + 0x32, 0xa5, 0xde, 0x88, 0x8e, 0x77, 0xc6, 0xbb, 0x09, 0xf4, 0xa7, 0xd9, + 0xd9, 0xc9, 0x6f, 0x85, 0x92, 0x32, 0x71, 0xd0, 0x81, 0x5a, 0x66, 0xf2, + 0xce, 0x18, 0xb7, 0xb5, 0xe0, 0x7c, 0x76, 0x02, 0xaf, 0x59, 0xea, 0x9a, + 0x7c, 0xa4, 0x0d, 0xcf, 0xbb, 0xb7, 0x1d, 0x6a, 0xe3, 0x56, 0x68, 0x7c, + 0xb1, 0x65, 0x6b, 0x7f, 0x34, 0x2a, 0x22, 0x23, 0x10, 0x0e, 0x4e, 0x56, + 0xba, 0xcd, 0x21, 0xc6, 0xd0, 0xad, 0x11, 0x46, 0xf6, 0x1c, 0x54, 0x16, + 0xd7, 0x36, 0xdc, 0x70, 0xc0, 0xfb, 0x8a, 0xdb, 0xb7, 0xdb, 0x20, 0xca, + 0xad, 0x29, 0x54, 0x4f, 0xa1, 0x9d, 0x48, 0xd9, 0xde, 0xe5, 0xc8, 0x57, + 0x38, 0xe2, 0xb4, 0x07, 0x4a, 0xa7, 0x06, 0x01, 0xe9, 0xcd, 0x5c, 0x0c, + 0x31, 0x5b, 0x51, 0x6a, 0xc7, 0x2d, 0x4d, 0xca, 0xf7, 0x11, 0x02, 0x33, + 0xde, 0xb3, 0xe4, 0x50, 0x33, 0x5a, 0x72, 0xb0, 0x23, 0x02, 0xb3, 0xe5, + 0x1e, 0xd5, 0x9d, 0x6b, 0x36, 0x69, 0x49, 0xd9, 0x19, 0x77, 0x85, 0xbc, + 0xb2, 0x55, 0x19, 0x80, 0xea, 0x40, 0xce, 0x2b, 0x16, 0xe1, 0x98, 0x82, + 0x32, 0x48, 0x3d, 0xab, 0xb5, 0xd3, 0xc6, 0x61, 0x7c, 0xaf, 0xf1, 0x62, + 0xb9, 0x4d, 0x41, 0x76, 0xea, 0x33, 0xa2, 0x8c, 0x28, 0x73, 0x81, 0x58, + 0xd5, 0xa5, 0xcb, 0x15, 0x34, 0xf5, 0x3b, 0x70, 0xb5, 0x14, 0xdb, 0x83, + 0x5b, 0x1c, 0x9d, 0xf5, 0x89, 0x65, 0x62, 0x32, 0x8c, 0x6b, 0x1a, 0x45, + 0x9a, 0x15, 0x05, 0x83, 0x70, 0x7a, 0xf6, 0xae, 0xaf, 0x52, 0x6d, 0xad, + 0x81, 0x9e, 0x95, 0x89, 0x2b, 0x8e, 0x99, 0xc8, 0xf4, 0xad, 0xa9, 0xb7, + 0x28, 0xa6, 0xc9, 0xa8, 0xad, 0x26, 0x91, 0x56, 0xde, 0xec, 0x3f, 0xcb, + 0x91, 0x9f, 0x4a, 0xe8, 0x6e, 0x6d, 0x6c, 0xe7, 0xf0, 0xde, 0x9b, 0x3a, + 0x40, 0x16, 0xe9, 0xae, 0x18, 0x3b, 0xe7, 0x92, 0x06, 0x78, 0xfe, 0x55, + 0xca, 0xcb, 0x6d, 0xfb, 0xc3, 0x2d, 0xb9, 0x0a, 0xe3, 0xb7, 0x63, 0x56, + 0x2c, 0xa7, 0xba, 0x96, 0xe6, 0x28, 0x48, 0x22, 0x40, 0xdf, 0x28, 0xfe, + 0x12, 0x69, 0x55, 0x5e, 0xe3, 0x22, 0x0e, 0xd3, 0x4d, 0x9a, 0x97, 0xef, + 0x1d, 0x98, 0x72, 0x00, 0xc0, 0x50, 0x4d, 0x66, 0xd9, 0x4c, 0x05, 0xc6, + 0xf8, 0xc7, 0xc8, 0x7e, 0xf2, 0x7a, 0x0f, 0x51, 0x5a, 0x9a, 0xb6, 0x97, + 0x7d, 0x04, 0x52, 0xcf, 0x77, 0x1a, 0xa2, 0x48, 0x02, 0x8c, 0x30, 0x35, + 0x5a, 0x0b, 0x54, 0xb7, 0xb3, 0xb7, 0x65, 0x18, 0x27, 0xae, 0x2b, 0x8e, + 0x9d, 0x44, 0xd2, 0xe5, 0x77, 0x46, 0xee, 0xd2, 0x72, 0x68, 0x98, 0xc0, + 0x8d, 0x3f, 0x9a, 0x1b, 0x70, 0x23, 0x80, 0x79, 0x02, 0xa5, 0x11, 0xa6, + 0x43, 0x15, 0x53, 0x8e, 0x47, 0x1d, 0x29, 0x9b, 0x40, 0x6e, 0x0e, 0x3b, + 0xd2, 0x33, 0x11, 0xd2, 0xaa, 0x4f, 0x50, 0x8e, 0xc3, 0xa4, 0x98, 0x8f, + 0x61, 0x8a, 0xaa, 0xd7, 0x1c, 0xf5, 0xc9, 0xec, 0x05, 0x31, 0xae, 0x10, + 0xb1, 0x50, 0x72, 0xdd, 0xfd, 0xaa, 0x21, 0xb5, 0x4f, 0xa9, 0x3d, 0xe9, + 0x26, 0x55, 0xae, 0x65, 0x5e, 0xc9, 0x7b, 0x3d, 0xfc, 0x60, 0x4a, 0xcb, + 0x1a, 0x91, 0x91, 0x9e, 0xb5, 0xa6, 0x90, 0x93, 0xf7, 0x99, 0x8f, 0xe3, + 0x48, 0xe4, 0x06, 0xa7, 0xef, 0x21, 0x47, 0x61, 0x9e, 0xd4, 0xd3, 0x6c, + 0x6d, 0x24, 0x3f, 0xec, 0xd1, 0xf1, 0x8d, 0xc7, 0xd7, 0x9a, 0x3e, 0xcf, + 0x0e, 0x40, 0x0a, 0x3f, 0x13, 0x4d, 0x12, 0x15, 0x3c, 0x74, 0xa8, 0xcb, + 0xe1, 0xb3, 0x54, 0x8c, 0xdb, 0x21, 0xd4, 0x34, 0xa4, 0xba, 0x55, 0x54, + 0x93, 0xca, 0x20, 0xf2, 0x57, 0x9a, 0xce, 0xba, 0xbc, 0xb6, 0xd2, 0xa2, + 0x8e, 0xdc, 0xc6, 0xd3, 0xbf, 0x42, 0xca, 0x39, 0xad, 0x63, 0x2b, 0x1c, + 0x9d, 0xb5, 0x46, 0xe1, 0xa2, 0x08, 0x5d, 0xd5, 0x41, 0xe7, 0x19, 0xeb, + 0x54, 0x66, 0xca, 0x76, 0x97, 0x91, 0x9d, 0xbb, 0xf6, 0xa0, 0xc7, 0x04, + 0xd3, 0x6e, 0x75, 0x15, 0x54, 0x1e, 0x5e, 0xd6, 0xe7, 0xb7, 0x6a, 0x83, + 0x50, 0xb6, 0x89, 0x6d, 0xf1, 0x1a, 0x72, 0xa3, 0xa6, 0x6a, 0x9d, 0x94, + 0x41, 0x23, 0x3e, 0x64, 0x78, 0xc9, 0xef, 0x4e, 0xea, 0xe4, 0x6a, 0x5f, + 0x37, 0xe1, 0x82, 0xfc, 0xc1, 0x4f, 0x7a, 0x61, 0x9f, 0x07, 0x77, 0xca, + 0xc3, 0xeb, 0x51, 0x49, 0x1c, 0x00, 0x70, 0x30, 0x40, 0xce, 0x31, 0xd6, + 0xa2, 0x4b, 0x54, 0x90, 0x02, 0x41, 0x0a, 0x7d, 0xe9, 0xe8, 0x2d, 0x49, + 0x59, 0xdd, 0xf9, 0x2e, 0x46, 0x6a, 0x58, 0x18, 0x61, 0x94, 0xb0, 0xe9, + 0x54, 0xa5, 0xb3, 0x23, 0x3b, 0x64, 0x3c, 0x7b, 0xd4, 0x71, 0x5a, 0x4b, + 0x24, 0xea, 0x9e, 0x61, 0xd9, 0xfc, 0x58, 0xa2, 0xc8, 0x1b, 0x63, 0xed, + 0xec, 0xda, 0xee, 0xea, 0x53, 0xc8, 0x84, 0x37, 0x27, 0xfb, 0xdf, 0x4a, + 0x87, 0xed, 0x4c, 0xda, 0x9c, 0x71, 0x28, 0x29, 0x6e, 0xaf, 0xc2, 0x0a, + 0xbf, 0x6b, 0x2c, 0xcd, 0x7a, 0xca, 0x62, 0x64, 0x81, 0x14, 0x85, 0x18, + 0xe2, 0xad, 0xda, 0xe9, 0x72, 0xde, 0xdc, 0x2c, 0x56, 0xd6, 0xfe, 0x64, + 0xce, 0x78, 0x51, 0x51, 0x26, 0xda, 0xba, 0x13, 0x76, 0x47, 0x3b, 0xac, + 0xc8, 0xaf, 0x2f, 0x15, 0x40, 0xc1, 0x3f, 0x96, 0xb2, 0x2c, 0x64, 0xa1, + 0xad, 0x4d, 0x5a, 0xcf, 0xca, 0xbd, 0x68, 0xe6, 0x06, 0x37, 0x88, 0x95, + 0x74, 0x23, 0xb8, 0xab, 0x76, 0x84, 0x4d, 0x6a, 0x4b, 0x1d, 0xa1, 0x57, + 0x81, 0x8e, 0x4d, 0x57, 0xb4, 0xb4, 0x2e, 0x91, 0x93, 0x77, 0x57, 0x32, + 0x20, 0xb5, 0xb8, 0xba, 0x6c, 0x26, 0x55, 0xd4, 0x56, 0xf5, 0xbd, 0x9c, + 0xba, 0x7d, 0x93, 0x5c, 0xdd, 0x63, 0x2b, 0xd8, 0x1f, 0x5a, 0x88, 0x07, + 0x84, 0x34, 0x48, 0x8f, 0xe6, 0x9e, 0x70, 0x3b, 0xd5, 0xfb, 0x6b, 0x29, + 0x35, 0x59, 0x3f, 0xd3, 0xae, 0x94, 0xa8, 0xe9, 0x02, 0x1c, 0x0f, 0xc6, + 0x95, 0x3a, 0x9e, 0xd1, 0x6c, 0x11, 0x95, 0xc7, 0x5d, 0xde, 0x5a, 0xc9, + 0x19, 0x82, 0xdb, 0x7d, 0xcb, 0xb2, 0xff, 0x00, 0x0f, 0x08, 0xbf, 0x53, + 0x4f, 0xd0, 0xf4, 0x29, 0xae, 0x6c, 0x56, 0x1b, 0xcb, 0xb9, 0x0c, 0x08, + 0x4e, 0x22, 0x53, 0x81, 0x8f, 0x7f, 0x5a, 0xdf, 0x8f, 0x4d, 0x8a, 0x25, + 0x54, 0x86, 0x25, 0x45, 0x0b, 0x8e, 0x9d, 0x2b, 0x3f, 0x59, 0xba, 0x3a, + 0x7d, 0x9f, 0xd9, 0xa0, 0xf9, 0x5e, 0x4e, 0xa4, 0x7a, 0x56, 0x8f, 0xdd, + 0x57, 0x65, 0xad, 0x74, 0x29, 0x5f, 0x6a, 0x96, 0xfa, 0x79, 0x7b, 0x5d, + 0x32, 0x24, 0x8c, 0x0f, 0x94, 0xb8, 0x15, 0x85, 0x2d, 0xe4, 0x92, 0x1c, + 0xc9, 0x23, 0x1f, 0xa9, 0xa8, 0x65, 0xca, 0x72, 0xc6, 0xba, 0x9f, 0x87, + 0x3e, 0x1f, 0xb5, 0xd7, 0x75, 0x87, 0xb9, 0xbf, 0x0a, 0xf6, 0xf6, 0xe3, + 0x29, 0x0b, 0x74, 0x91, 0xbd, 0xfd, 0x40, 0xf4, 0xac, 0x21, 0x17, 0x5a, + 0x6a, 0x3b, 0x1a, 0x49, 0xaa, 0x71, 0xe6, 0x66, 0x6d, 0x85, 0xa6, 0xb7, + 0x7a, 0x89, 0xf6, 0x5b, 0x0b, 0xab, 0x88, 0x8b, 0x02, 0x0a, 0xc6, 0x48, + 0xfc, 0xeb, 0x62, 0xee, 0x2b, 0xd8, 0xed, 0xe7, 0x49, 0x51, 0xe2, 0x9a, + 0x1c, 0x86, 0x53, 0xc1, 0x1e, 0xd5, 0xed, 0x17, 0x7a, 0x84, 0x5a, 0x7e, + 0x9c, 0xa4, 0x90, 0x88, 0x85, 0x46, 0x15, 0x7a, 0x01, 0xdb, 0xf2, 0xaf, + 0x29, 0xf1, 0x8d, 0xfa, 0x5f, 0xdf, 0x5c, 0x4d, 0x6c, 0xe5, 0x21, 0x6c, + 0x6e, 0x18, 0xe5, 0x88, 0x18, 0xe6, 0xba, 0x27, 0x08, 0xd3, 0x7c, 0x97, + 0xd4, 0xc2, 0x15, 0xbd, 0xa3, 0xd1, 0x19, 0x56, 0x90, 0x98, 0xac, 0x95, + 0x08, 0x2f, 0x20, 0x00, 0x91, 0x57, 0xf4, 0xc5, 0x0f, 0x73, 0x07, 0x99, + 0x1e, 0xcf, 0xde, 0x0e, 0x09, 0xeb, 0xcd, 0x56, 0x47, 0x2f, 0x1a, 0x15, + 0x18, 0x5c, 0x72, 0x73, 0x45, 0xa0, 0x0d, 0xa9, 0x43, 0x20, 0x94, 0xe0, + 0x3a, 0xe1, 0x4f, 0x4e, 0xb5, 0x94, 0xb6, 0x36, 0x8e, 0xe7, 0xb4, 0x5b, + 0x8c, 0xc4, 0xb8, 0x7c, 0x0c, 0x74, 0xa9, 0x70, 0x07, 0x19, 0xa8, 0x2d, + 0x80, 0x30, 0x2e, 0x1b, 0xf2, 0xa7, 0xb2, 0xf3, 0x9c, 0x93, 0x55, 0x17, + 0xee, 0xa1, 0xb5, 0xa9, 0xe7, 0x7f, 0x12, 0xc4, 0xbe, 0x44, 0x1b, 0x88, + 0x31, 0xee, 0x23, 0x15, 0xe3, 0x9a, 0xa2, 0x2a, 0xc8, 0x00, 0x18, 0x1d, + 0x71, 0x5e, 0xd9, 0xf1, 0x29, 0xd1, 0x74, 0x84, 0x05, 0x72, 0xe6, 0x55, + 0xc1, 0xf4, 0xaf, 0x14, 0xd6, 0x38, 0x99, 0x47, 0x24, 0x01, 0xd4, 0xd2, + 0x83, 0xd1, 0xa1, 0xd5, 0x5b, 0x33, 0xe9, 0x1f, 0x87, 0x5e, 0x1f, 0x8f, + 0xc3, 0xfe, 0x0d, 0xb1, 0x84, 0x2a, 0x89, 0xa7, 0x41, 0x3c, 0xcc, 0x07, + 0x2c, 0xcd, 0xcf, 0x3f, 0x41, 0x81, 0xf8, 0x57, 0x55, 0xd4, 0xd6, 0x66, + 0x83, 0x73, 0x14, 0xba, 0x2d, 0x80, 0x8d, 0x48, 0x5f, 0xb3, 0x46, 0x40, + 0x3d, 0x86, 0xd1, 0x5a, 0x4a, 0xca, 0x49, 0x00, 0xf3, 0x5d, 0xd4, 0xe5, + 0x19, 0xab, 0xc3, 0x54, 0x70, 0xbd, 0x1e, 0xa3, 0xc5, 0x25, 0x1f, 0x8d, + 0x21, 0x70, 0x3b, 0xd6, 0x88, 0x46, 0x7d, 0xc5, 0xb6, 0xd6, 0xc2, 0x64, + 0xe4, 0xf4, 0xae, 0x5f, 0xc6, 0xf6, 0xdb, 0xbc, 0x2b, 0x7e, 0xb2, 0x47, + 0x96, 0x58, 0xf7, 0xa8, 0xf7, 0x1c, 0xd7, 0x61, 0x24, 0xcb, 0x9c, 0x8e, + 0xa2, 0xb9, 0x8f, 0x18, 0x3f, 0x99, 0xe1, 0xad, 0x48, 0x9e, 0xf0, 0x3f, + 0xf2, 0xae, 0x98, 0xb6, 0xd5, 0x99, 0x8d, 0x92, 0x96, 0x87, 0x99, 0x69, + 0xa4, 0x26, 0x9c, 0x36, 0x7f, 0xac, 0xc1, 0xe0, 0xd5, 0x69, 0x67, 0xbb, + 0x51, 0xfb, 0xc5, 0x45, 0x19, 0xcb, 0x15, 0xec, 0x2a, 0x5d, 0x2d, 0x3f, + 0x76, 0xab, 0xcf, 0x4f, 0x4a, 0xb1, 0x2c, 0x22, 0x50, 0xf1, 0xb7, 0x28, + 0xdf, 0x2f, 0xbd, 0x79, 0x2f, 0x54, 0x77, 0xf5, 0x2f, 0xf8, 0x50, 0xd9, + 0x6a, 0xfe, 0x33, 0xd3, 0x82, 0xb0, 0x93, 0xc8, 0x0f, 0x26, 0x0f, 0xf7, + 0x80, 0xe0, 0xff, 0x00, 0x5f, 0xc2, 0xbd, 0x8c, 0xc7, 0x2f, 0x55, 0x22, + 0xbc, 0x67, 0xc1, 0xb6, 0x09, 0xa3, 0xf8, 0xd6, 0xd1, 0xa2, 0xc7, 0x96, + 0xf1, 0xb8, 0x03, 0xdf, 0x6d, 0x7b, 0x17, 0xda, 0xc1, 0x1d, 0x2b, 0xb2, + 0x82, 0x97, 0x25, 0xec, 0x61, 0x59, 0xc7, 0x9a, 0xc9, 0x91, 0xc8, 0x09, + 0x6c, 0x38, 0xc0, 0xa6, 0x0b, 0x62, 0xfc, 0xa3, 0x7e, 0x14, 0x4d, 0x39, + 0x7a, 0x89, 0x5d, 0x94, 0xe4, 0x1c, 0x57, 0x5a, 0x4e, 0xc7, 0x33, 0x6a, + 0xe4, 0x8d, 0x01, 0x88, 0xe6, 0x4f, 0xd2, 0xac, 0xc5, 0x2c, 0x78, 0x02, + 0xaa, 0x3c, 0xcf, 0x20, 0x01, 0x8d, 0x33, 0xa7, 0x7a, 0x1c, 0x6e, 0xb5, + 0x0e, 0x6b, 0x6c, 0x79, 0xbf, 0x8e, 0x74, 0x61, 0x6f, 0xe2, 0x92, 0xf6, + 0x31, 0x16, 0xfb, 0x64, 0x7e, 0x73, 0x2a, 0xaf, 0x01, 0xf3, 0x86, 0x3f, + 0x8f, 0x07, 0xf1, 0xab, 0xfe, 0x23, 0xd3, 0xd2, 0x1f, 0x03, 0x24, 0x25, + 0x94, 0x32, 0x22, 0x12, 0x54, 0xf5, 0x6e, 0xf5, 0xd2, 0xea, 0xd6, 0x77, + 0x17, 0x33, 0x5a, 0xc9, 0x6f, 0x23, 0x89, 0x41, 0x2b, 0x90, 0x14, 0x85, + 0x52, 0x46, 0x49, 0x07, 0xaf, 0x41, 0x5c, 0x87, 0x8a, 0xae, 0xae, 0xc0, + 0xbc, 0xb2, 0x7b, 0xa4, 0xba, 0x82, 0x28, 0xd0, 0xb9, 0x65, 0x09, 0xe5, + 0xb1, 0x27, 0x03, 0x8e, 0xb5, 0xf3, 0xf8, 0xa5, 0xc9, 0x5a, 0x48, 0xf5, + 0x68, 0xce, 0xd4, 0xd4, 0x99, 0xca, 0xd8, 0xea, 0x17, 0x29, 0x6b, 0x1c, + 0x30, 0x2c, 0x6e, 0xc8, 0x76, 0x95, 0x73, 0x82, 0x47, 0xb5, 0x3f, 0x5e, + 0xbb, 0x43, 0x67, 0x1c, 0x6c, 0x40, 0x98, 0x9c, 0xe0, 0x73, 0xf5, 0xac, + 0xf8, 0xac, 0xe4, 0x9c, 0x29, 0x8a, 0x40, 0x92, 0x67, 0x3b, 0x81, 0xe7, + 0x15, 0x5b, 0x51, 0xb6, 0x92, 0x39, 0x8a, 0xb3, 0x3b, 0x05, 0xfe, 0x2c, + 0xf5, 0xac, 0xd5, 0x69, 0x28, 0x5e, 0x48, 0xc3, 0x9f, 0xde, 0xe6, 0x7b, + 0x1a, 0x5e, 0x1e, 0x95, 0xbe, 0xd0, 0xc5, 0x40, 0x24, 0x30, 0xeb, 0xf5, + 0xaf, 0x6a, 0xb7, 0x89, 0x5e, 0xd8, 0x09, 0x22, 0x18, 0x23, 0xa7, 0x5a, + 0xf0, 0xdd, 0x0a, 0xf6, 0x0b, 0x5b, 0x9c, 0x5c, 0x12, 0x01, 0x23, 0x04, + 0x0c, 0x9a, 0xf7, 0x2b, 0x4d, 0x42, 0x13, 0x69, 0x01, 0xda, 0xf8, 0x94, + 0x02, 0xbf, 0x29, 0x3d, 0xbb, 0xe3, 0xa5, 0x52, 0x9c, 0x65, 0x67, 0x2d, + 0x0d, 0x61, 0x34, 0xd3, 0xe5, 0x2b, 0xdc, 0x68, 0x56, 0x37, 0x36, 0xcc, + 0xaf, 0x6f, 0x1a, 0xe3, 0x38, 0x0a, 0x31, 0x8a, 0xf2, 0x7b, 0xb7, 0xbb, + 0x5d, 0x56, 0x5d, 0x3e, 0xcd, 0x77, 0x4f, 0x1b, 0x32, 0xb6, 0x06, 0x47, + 0x1f, 0x4a, 0xf6, 0x97, 0x9d, 0x04, 0x0c, 0x72, 0x15, 0x71, 0xf7, 0xbb, + 0x57, 0x0b, 0xa2, 0x9d, 0x3f, 0x49, 0xb3, 0xd4, 0x75, 0x49, 0xee, 0x83, + 0xa3, 0xcc, 0xe4, 0xb9, 0x03, 0x73, 0x2e, 0x7a, 0x63, 0xae, 0x4f, 0xa5, + 0x6d, 0x08, 0x73, 0xcd, 0x46, 0x0e, 0xca, 0xd7, 0x66, 0x58, 0x8a, 0x8e, + 0x31, 0xb9, 0xe5, 0xba, 0xbc, 0x97, 0x71, 0x4f, 0xe4, 0x5d, 0xdc, 0x83, + 0x9e, 0x4a, 0x9e, 0x30, 0x7e, 0x95, 0x42, 0x2b, 0xa6, 0x61, 0xe5, 0x96, + 0xcc, 0x63, 0xa6, 0x45, 0x77, 0x7e, 0x2a, 0x3e, 0x17, 0xf1, 0x2e, 0x9f, + 0x25, 0xc5, 0x82, 0xc7, 0x16, 0xa9, 0x1a, 0xee, 0x4f, 0x30, 0x79, 0x45, + 0xbd, 0x8f, 0xf7, 0xab, 0xce, 0x01, 0x68, 0xd4, 0x96, 0x1b, 0x71, 0xd5, + 0x7d, 0xe9, 0x62, 0x28, 0xf2, 0xca, 0xf1, 0x95, 0xd3, 0xd8, 0xe7, 0x84, + 0xf9, 0x95, 0xde, 0xe6, 0xdd, 0x9e, 0x9c, 0xb7, 0xc0, 0xac, 0x57, 0x02, + 0x37, 0x0d, 0x90, 0xac, 0x72, 0x29, 0x35, 0x0b, 0x8b, 0xb8, 0xa5, 0x44, + 0xba, 0x18, 0x28, 0xa4, 0x13, 0x18, 0xeb, 0xe8, 0x4d, 0x66, 0x5b, 0xdc, + 0xc9, 0x11, 0x59, 0x63, 0x25, 0x4d, 0x4d, 0x3c, 0xf7, 0x12, 0xdc, 0x33, + 0x33, 0x61, 0x88, 0xe4, 0x1e, 0x84, 0x0a, 0x98, 0xc9, 0x25, 0x66, 0x57, + 0x3e, 0x81, 0x6f, 0x68, 0xa6, 0xe6, 0x39, 0x46, 0x0a, 0x01, 0x97, 0x24, + 0xe7, 0x93, 0x5d, 0xdf, 0x85, 0xf5, 0x71, 0x65, 0x74, 0x1e, 0x33, 0xf3, + 0xc2, 0x76, 0x98, 0xd9, 0xb9, 0xc5, 0x70, 0x70, 0x4d, 0xb2, 0x19, 0x96, + 0x29, 0x8c, 0x2c, 0xea, 0x01, 0x56, 0x23, 0xe6, 0xab, 0xb6, 0x7a, 0x85, + 0xbc, 0x32, 0xa2, 0x49, 0x19, 0x50, 0x13, 0x0e, 0xfd, 0x72, 0xd5, 0x4e, + 0x2f, 0xa9, 0xa4, 0x24, 0x96, 0xa8, 0xf5, 0x4d, 0x7b, 0x5c, 0x4d, 0x50, + 0x5a, 0xfd, 0x9f, 0x2a, 0xd1, 0xb7, 0xef, 0x03, 0x0a, 0xad, 0x6b, 0x33, + 0x35, 0xc5, 0xd1, 0xc6, 0x73, 0xb7, 0x8f, 0xc2, 0xb8, 0xc3, 0xa9, 0xc4, + 0x11, 0x51, 0x24, 0x75, 0x8c, 0xf3, 0x95, 0x3c, 0x8a, 0x8f, 0x49, 0xd6, + 0xb6, 0x6a, 0x17, 0x24, 0xdc, 0x48, 0xc8, 0x40, 0xc6, 0x4f, 0x34, 0x3b, + 0x3d, 0x0d, 0x94, 0xec, 0xce, 0xea, 0x67, 0x6d, 0x9b, 0x18, 0x00, 0x05, + 0x54, 0xda, 0xc8, 0xc9, 0x99, 0x70, 0xa3, 0x27, 0x68, 0x1d, 0x6b, 0x13, + 0xfb, 0x6d, 0x24, 0x98, 0x46, 0x9e, 0x6c, 0xa4, 0xf4, 0x03, 0xad, 0x75, + 0x5a, 0x4f, 0x87, 0xae, 0xee, 0xe2, 0x4b, 0x8b, 0xd6, 0x30, 0x8c, 0x82, + 0x22, 0x1d, 0x48, 0xf4, 0x6a, 0x77, 0x51, 0x2d, 0x27, 0x2d, 0x8c, 0x6b, + 0x99, 0xf6, 0x02, 0xed, 0x8c, 0x0e, 0xa6, 0xa8, 0x1b, 0x9d, 0xee, 0xb8, + 0xcb, 0x2b, 0x1c, 0x8e, 0x31, 0x5d, 0xe6, 0xbf, 0xa3, 0xda, 0xcf, 0xa3, + 0x4c, 0x5e, 0xdc, 0xe6, 0x24, 0x25, 0x02, 0x1c, 0x73, 0x8a, 0xf2, 0x89, + 0xd7, 0x51, 0x45, 0x01, 0x30, 0xaa, 0xa3, 0x1f, 0x41, 0x4e, 0x33, 0xe6, + 0x14, 0xa1, 0xca, 0x74, 0x0e, 0xf8, 0x1c, 0xf3, 0x51, 0xca, 0x61, 0x2a, + 0x19, 0x94, 0x64, 0x57, 0x3d, 0x04, 0xf7, 0x8c, 0x85, 0x04, 0xcc, 0x54, + 0x7a, 0x8a, 0x9a, 0xde, 0xce, 0xe8, 0x2e, 0x1a, 0x62, 0xf9, 0x3d, 0xea, + 0xd6, 0xa4, 0x1a, 0xd3, 0x4f, 0x1a, 0xc4, 0x58, 0xed, 0x23, 0xd4, 0x9a, + 0xa2, 0xb7, 0xa8, 0x5c, 0x9d, 0xab, 0xb4, 0x7a, 0x1a, 0x82, 0x7d, 0x39, + 0xad, 0xe3, 0xd8, 0xf2, 0x85, 0x0c, 0x73, 0xcb, 0x75, 0x35, 0x87, 0x7c, + 0xed, 0x14, 0xc9, 0x12, 0x10, 0xc1, 0x86, 0x09, 0xcf, 0x4a, 0x7b, 0x08, + 0xea, 0x34, 0x29, 0xc4, 0xbe, 0x2d, 0xd3, 0x76, 0x90, 0x33, 0x37, 0x4f, + 0xc0, 0xd7, 0xb4, 0x73, 0x5f, 0x3f, 0xd9, 0x5a, 0x98, 0xfc, 0x99, 0xd6, + 0x69, 0x23, 0x95, 0x08, 0x28, 0xc3, 0x86, 0x07, 0xda, 0xba, 0x09, 0x35, + 0xdd, 0x79, 0x6d, 0xf0, 0xba, 0xac, 0xbc, 0x0e, 0x38, 0x19, 0xfc, 0xeb, + 0xb6, 0x85, 0x78, 0xd3, 0x85, 0xa4, 0x8e, 0x6a, 0xd4, 0xa5, 0x29, 0x5d, + 0x1d, 0xb7, 0x8f, 0xfc, 0x28, 0x9e, 0x2a, 0xf0, 0xec, 0x90, 0x29, 0xdb, + 0x75, 0x0e, 0x64, 0x81, 0xbb, 0x6e, 0xc7, 0x43, 0xf5, 0xe9, 0x5e, 0x0d, + 0xa1, 0xca, 0x6c, 0xc0, 0x8e, 0x41, 0x89, 0x22, 0x66, 0x56, 0x51, 0xd7, + 0x39, 0xae, 0xe1, 0xfc, 0x45, 0xe2, 0x79, 0x6d, 0xde, 0x23, 0xa9, 0x37, + 0x96, 0x57, 0x07, 0x01, 0x77, 0x63, 0xeb, 0x8a, 0xe7, 0xa3, 0xd1, 0xd5, + 0x99, 0xa5, 0x01, 0xc4, 0x9d, 0x77, 0x7a, 0x9a, 0x9a, 0xf5, 0xe3, 0x52, + 0xdc, 0xa8, 0xaa, 0x54, 0xe5, 0x14, 0xf9, 0x8d, 0x3b, 0x62, 0x92, 0x28, + 0x67, 0xc2, 0x9c, 0x77, 0xe2, 0xa5, 0xdb, 0x16, 0x70, 0x8d, 0x93, 0xec, + 0x6b, 0x26, 0x33, 0x3e, 0xf2, 0xab, 0x22, 0xa8, 0x1c, 0x61, 0xb9, 0xa5, + 0x66, 0xbe, 0x8c, 0x87, 0x06, 0x3e, 0x4e, 0x3a, 0x57, 0x33, 0x66, 0xe9, + 0x33, 0x4e, 0x65, 0x58, 0x97, 0x96, 0x3f, 0x95, 0x63, 0xdc, 0x4b, 0x1a, + 0x9d, 0xaa, 0x4e, 0x29, 0x9a, 0x85, 0xd5, 0xd4, 0x56, 0xea, 0x5d, 0x80, + 0x3c, 0xe7, 0xd2, 0xa3, 0xb7, 0x79, 0x27, 0x89, 0x5f, 0x68, 0x23, 0x1c, + 0x71, 0x53, 0x60, 0xb8, 0xaa, 0xcc, 0xf9, 0xc6, 0x71, 0x52, 0x42, 0xb2, + 0xf5, 0xd9, 0xc7, 0xd2, 0x9e, 0xb6, 0xd2, 0x06, 0x38, 0x40, 0xff, 0x00, + 0x43, 0x4a, 0x5a, 0x58, 0xb3, 0xba, 0x29, 0x02, 0x8e, 0xe3, 0x90, 0x29, + 0xf2, 0x85, 0xc6, 0x08, 0x25, 0x52, 0x7c, 0xc2, 0x3c, 0xb2, 0x7a, 0x03, + 0x52, 0x23, 0x3f, 0x9a, 0x63, 0x00, 0x84, 0xa0, 0x5e, 0xdb, 0x4f, 0xc2, + 0x4b, 0x96, 0x1c, 0xd4, 0xdf, 0x68, 0x88, 0x73, 0x80, 0x7e, 0x94, 0x72, + 0x87, 0x31, 0x04, 0xca, 0xeb, 0x28, 0x2a, 0x30, 0xa0, 0x74, 0xf5, 0xaa, + 0x93, 0x72, 0x39, 0xab, 0x53, 0xce, 0xaf, 0x19, 0xda, 0x79, 0xaa, 0xb1, + 0x81, 0x24, 0x8a, 0x03, 0x8e, 0x4f, 0x5a, 0x52, 0xd0, 0x16, 0xa3, 0xad, + 0x89, 0x58, 0x8a, 0x0e, 0xa7, 0xd2, 0x92, 0xe2, 0xf6, 0xda, 0x25, 0x58, + 0x51, 0x9a, 0x47, 0xfe, 0xe2, 0xf2, 0x49, 0xa5, 0x93, 0x4f, 0x92, 0xe2, + 0x70, 0x0c, 0xc5, 0x21, 0xee, 0x17, 0x82, 0x6a, 0xe5, 0xb5, 0x9d, 0xad, + 0xb0, 0x22, 0x38, 0xc2, 0x9e, 0xe4, 0xf5, 0x35, 0xcc, 0xd9, 0xba, 0x4c, + 0xcd, 0x8a, 0xd6, 0xfe, 0xf7, 0x94, 0x02, 0xda, 0x2c, 0xfd, 0x5a, 0xae, + 0x26, 0x8f, 0x05, 0xb1, 0x0e, 0xed, 0xe7, 0x39, 0xee, 0xc7, 0x26, 0xad, + 0xc9, 0x77, 0x0c, 0x0b, 0x96, 0x95, 0x51, 0x3b, 0x64, 0xf3, 0xf9, 0x56, + 0x69, 0xd5, 0xed, 0xe5, 0xb9, 0x48, 0x60, 0x56, 0x76, 0x63, 0x8d, 0xcd, + 0xc0, 0xa3, 0x56, 0x3f, 0x75, 0x1a, 0x32, 0xaa, 0xb6, 0x0a, 0x2e, 0x40, + 0x1d, 0x3d, 0x2a, 0x9c, 0xa4, 0xed, 0x20, 0x01, 0x8e, 0xd8, 0x15, 0xa3, + 0x08, 0x5f, 0x28, 0x86, 0x03, 0x91, 0xd7, 0xfa, 0x55, 0x03, 0xc3, 0xed, + 0x3c, 0x63, 0xb5, 0x28, 0x84, 0x8a, 0xcf, 0x19, 0x0c, 0x78, 0x1c, 0xd5, + 0x69, 0x2f, 0x67, 0xb3, 0x60, 0x63, 0x19, 0x4c, 0xf2, 0x3d, 0x6a, 0xe3, + 0x60, 0x30, 0x0c, 0x7f, 0x10, 0x6a, 0x6b, 0x78, 0x16, 0x5b, 0x85, 0xc0, + 0x1c, 0x7a, 0xd6, 0xa9, 0xf4, 0x66, 0x6d, 0x11, 0x0d, 0x5a, 0x47, 0xf9, + 0x52, 0x07, 0x1b, 0x87, 0x4c, 0x54, 0xb6, 0x7a, 0x6e, 0xad, 0xf6, 0x89, + 0x6e, 0x21, 0x02, 0x35, 0x97, 0x1f, 0x79, 0xb3, 0x56, 0xee, 0x14, 0x09, + 0x55, 0x76, 0x81, 0x82, 0x3a, 0x77, 0xae, 0x86, 0xdc, 0x91, 0x0a, 0xe5, + 0x46, 0x71, 0x50, 0x55, 0x8e, 0x72, 0xeb, 0x4f, 0xd4, 0x88, 0x0a, 0xd2, + 0x99, 0x14, 0xf5, 0xda, 0xb8, 0x15, 0x0f, 0xf6, 0x32, 0x5a, 0x46, 0xf7, + 0x12, 0x31, 0x0c, 0xdf, 0xc3, 0x8e, 0xf5, 0xd7, 0xf9, 0xd1, 0xc8, 0x08, + 0x0c, 0x09, 0x1d, 0x71, 0x59, 0x5a, 0x8c, 0x5b, 0xa2, 0x24, 0x2e, 0x46, + 0x73, 0x8a, 0x4e, 0xcb, 0x51, 0xad, 0x74, 0x39, 0x71, 0xa7, 0x35, 0xed, + 0xd6, 0x1b, 0xe5, 0x53, 0xc0, 0xc5, 0x74, 0xba, 0x66, 0x8d, 0x04, 0x10, + 0x08, 0x84, 0x68, 0xe7, 0x39, 0xdc, 0x54, 0x1a, 0x5d, 0x1e, 0xcf, 0xed, + 0x77, 0x8b, 0x16, 0xd1, 0x93, 0xc8, 0x0b, 0x5b, 0x57, 0x24, 0x59, 0x11, + 0x04, 0x31, 0x97, 0x94, 0xf0, 0x00, 0x15, 0x85, 0x4a, 0xb2, 0x4b, 0xdd, + 0x34, 0x85, 0x34, 0xde, 0xa1, 0x69, 0xa4, 0x5b, 0xdb, 0xfc, 0xd2, 0x6c, + 0x19, 0xf5, 0xab, 0x61, 0xb4, 0xf8, 0xcf, 0x32, 0xc5, 0xef, 0x83, 0xd2, + 0xb2, 0x7e, 0xc9, 0x73, 0x71, 0xf3, 0x5c, 0xca, 0x40, 0xcf, 0xdc, 0x1d, + 0xab, 0xd0, 0xfc, 0x2f, 0xe1, 0xdd, 0x2a, 0x4f, 0x0f, 0x47, 0x24, 0xd6, + 0x30, 0x4b, 0x23, 0x33, 0x65, 0xdd, 0x03, 0x13, 0xcf, 0xa9, 0xac, 0x69, + 0xc2, 0xa4, 0xe5, 0x6b, 0x9b, 0x4b, 0x96, 0x0a, 0xed, 0x1c, 0xd0, 0xb4, + 0x8a, 0x7e, 0x6d, 0x66, 0x56, 0x38, 0xce, 0x01, 0xc8, 0xaa, 0xee, 0x92, + 0x46, 0xdb, 0x1c, 0x60, 0xd7, 0x5b, 0x77, 0xe1, 0x0b, 0x27, 0x9a, 0x49, + 0x6c, 0x59, 0xad, 0x26, 0xe0, 0x2f, 0x97, 0xf7, 0x47, 0xe1, 0x5c, 0xdd, + 0xf4, 0x57, 0x90, 0xa8, 0x87, 0x50, 0x81, 0xa3, 0xba, 0x4e, 0x41, 0x23, + 0x89, 0x17, 0xd4, 0x1a, 0xe9, 0x8b, 0xa9, 0x07, 0x69, 0x6a, 0x8c, 0xa5, + 0x18, 0x49, 0x5e, 0x3b, 0x98, 0x17, 0xa8, 0x5e, 0x42, 0xe4, 0x64, 0x0a, + 0x86, 0x15, 0x01, 0xc9, 0x2a, 0x39, 0xef, 0x8a, 0xb7, 0x71, 0xce, 0x72, + 0x7a, 0x9e, 0x2a, 0x4b, 0x0b, 0x43, 0x2c, 0xad, 0x23, 0x02, 0x62, 0x88, + 0x6e, 0x73, 0xdb, 0xe9, 0x5b, 0xf2, 0x99, 0x27, 0xd0, 0xb3, 0x66, 0x9b, + 0x6d, 0xc3, 0x30, 0xc0, 0xf7, 0xa7, 0xf9, 0xd1, 0x17, 0xda, 0x32, 0xc7, + 0xd1, 0x46, 0x6b, 0xb2, 0xf0, 0xf7, 0x83, 0xd2, 0xfe, 0x14, 0xbe, 0xd5, + 0x15, 0xbc, 0xb7, 0xe6, 0x3b, 0x70, 0x4a, 0x8d, 0xbd, 0x89, 0xc7, 0x35, + 0xdb, 0x5b, 0xd8, 0xd9, 0xd9, 0xae, 0xdb, 0x7b, 0x68, 0x62, 0x1d, 0x3e, + 0x44, 0x03, 0xf9, 0x56, 0x91, 0xc2, 0x39, 0xeb, 0x36, 0x67, 0x2c, 0x44, + 0x60, 0xec, 0x91, 0xe3, 0xc9, 0x2c, 0x2b, 0xc3, 0xe5, 0x09, 0xfe, 0xf2, + 0xe2, 0xa6, 0x6b, 0x45, 0x95, 0x03, 0x46, 0xdf, 0x4c, 0x1a, 0xf5, 0xd9, + 0xec, 0xad, 0x6e, 0x40, 0x59, 0xed, 0xe3, 0x95, 0x7d, 0x1d, 0x03, 0x0f, + 0xd6, 0xb9, 0x4d, 0x6f, 0xc2, 0x31, 0xc0, 0x8d, 0x79, 0xa4, 0x26, 0xc7, + 0x5c, 0xb3, 0xdb, 0x82, 0x76, 0xb8, 0xff, 0x00, 0x67, 0xd0, 0xfb, 0x74, + 0xac, 0xaa, 0x60, 0xa5, 0x0f, 0x7a, 0x93, 0x34, 0xa7, 0x8a, 0x84, 0xdf, + 0x2c, 0xd1, 0xc4, 0xac, 0x26, 0x39, 0x00, 0x91, 0x79, 0xed, 0x8e, 0xf4, + 0xad, 0x6f, 0x1c, 0x8c, 0x32, 0x14, 0x7c, 0xd9, 0x3f, 0x28, 0xe4, 0x56, + 0x8f, 0xc9, 0x73, 0x6f, 0xbd, 0x47, 0x3f, 0xa8, 0x35, 0x9d, 0x2e, 0xe6, + 0x53, 0xb5, 0xb6, 0x9f, 0xa5, 0x4d, 0x1a, 0xdc, 0xeb, 0x5d, 0xd1, 0xa5, + 0x4a, 0x7c, 0x8f, 0xc8, 0xb1, 0xfd, 0x9f, 0x67, 0x22, 0xe1, 0xa1, 0x53, + 0x59, 0xae, 0x45, 0xbd, 0xdb, 0x28, 0x40, 0x31, 0xcf, 0x1d, 0xaa, 0xf5, + 0xbc, 0x8d, 0x8c, 0x67, 0x9c, 0x73, 0x54, 0x2f, 0x36, 0xfd, 0xb7, 0x71, + 0xe4, 0xed, 0xed, 0xd2, 0xb6, 0x72, 0x33, 0xbf, 0x63, 0x77, 0x4f, 0x9a, + 0x5b, 0xa8, 0xc6, 0xc7, 0x04, 0x03, 0xd1, 0xb8, 0xae, 0xae, 0xca, 0xfb, + 0xca, 0x55, 0x47, 0x42, 0x5b, 0xa6, 0x54, 0x57, 0x09, 0xa4, 0xdd, 0x11, + 0x71, 0xb4, 0x9e, 0x3d, 0x3d, 0x2b, 0xb2, 0xb0, 0x4f, 0x98, 0x4a, 0xfc, + 0xbe, 0x38, 0xf6, 0x15, 0x3a, 0x6e, 0xcc, 0xa5, 0x79, 0x1d, 0x14, 0x72, + 0x06, 0xc6, 0x38, 0x38, 0xe6, 0xac, 0x87, 0x18, 0xc6, 0x79, 0x02, 0xb1, + 0x7e, 0xd2, 0x01, 0x01, 0x5b, 0x9a, 0x51, 0x78, 0xdb, 0x86, 0x7b, 0xd1, + 0xcf, 0x62, 0x7d, 0x93, 0x7b, 0x1a, 0x6d, 0x20, 0x39, 0xe7, 0x9a, 0xa9, + 0x73, 0x72, 0x91, 0xaf, 0x35, 0x04, 0xb3, 0x39, 0x89, 0xbc, 0xb6, 0x01, + 0xfd, 0xeb, 0x0a, 0xf7, 0x53, 0x99, 0xa3, 0x0b, 0x24, 0x45, 0x40, 0xe1, + 0x99, 0x79, 0xc7, 0xbd, 0x5a, 0x57, 0x57, 0x13, 0x5c, 0xae, 0xc7, 0x59, + 0xa6, 0x5c, 0xc5, 0x24, 0x6c, 0xaa, 0xe0, 0xb6, 0x73, 0x8c, 0xd7, 0x3b, + 0x7e, 0x15, 0xf5, 0x0b, 0x82, 0x18, 0x1f, 0x9c, 0x8a, 0xe7, 0xa5, 0xd4, + 0xd2, 0x02, 0x59, 0x64, 0x3b, 0x87, 0xa1, 0xeb, 0x43, 0xea, 0x05, 0xd0, + 0x33, 0x65, 0x58, 0xf3, 0xb9, 0x69, 0x54, 0xbc, 0xe0, 0xa0, 0xba, 0x1a, + 0xd1, 0x92, 0xa7, 0x37, 0x27, 0xd4, 0x66, 0xab, 0xc4, 0xfd, 0x4f, 0xdd, + 0x15, 0x83, 0x3b, 0xe1, 0x8e, 0x7f, 0x1a, 0xd4, 0xb9, 0xba, 0x98, 0xfc, + 0xc4, 0x87, 0x42, 0x3b, 0x8a, 0xc5, 0x7b, 0x88, 0x5e, 0x43, 0xd6, 0x36, + 0xf4, 0x3c, 0x83, 0x57, 0x06, 0xe3, 0x1b, 0x15, 0x39, 0x29, 0x49, 0xb1, + 0x82, 0x41, 0xbb, 0x83, 0x5d, 0xf7, 0x85, 0xe3, 0x4d, 0x4b, 0x4d, 0x64, + 0xbb, 0x82, 0x35, 0x86, 0x2c, 0x05, 0x70, 0x36, 0xb3, 0x1f, 0x5d, 0xde, + 0xd5, 0xc0, 0xbc, 0x4c, 0x0e, 0xe5, 0xc1, 0x07, 0xba, 0xd7, 0xa3, 0x78, + 0x65, 0x64, 0x7d, 0x0a, 0x3b, 0x99, 0x2e, 0x5a, 0x46, 0x8d, 0xcb, 0x2c, + 0x6b, 0x8c, 0x2f, 0x6e, 0x46, 0x3f, 0x1a, 0xce, 0xab, 0x4d, 0x5d, 0xab, + 0xa5, 0xa9, 0x94, 0xef, 0x63, 0x0b, 0x5e, 0xd4, 0x6d, 0x25, 0xf3, 0x0c, + 0x91, 0x5e, 0x30, 0x52, 0x42, 0x86, 0x20, 0x60, 0x7d, 0x2b, 0x9a, 0x8b, + 0x53, 0xdf, 0xb6, 0x3c, 0xe5, 0x17, 0xa0, 0x3d, 0x6b, 0xd1, 0x35, 0xed, + 0x26, 0x7b, 0xc3, 0x24, 0xaf, 0x34, 0x09, 0x04, 0x8b, 0x8d, 0xd2, 0xa8, + 0x1b, 0x0f, 0x6c, 0x7b, 0xd7, 0x92, 0x88, 0x5f, 0xed, 0x8f, 0xe5, 0xc8, + 0x84, 0xa3, 0x10, 0x46, 0x7e, 0xf5, 0x70, 0xd2, 0x85, 0x92, 0xe4, 0xd1, + 0x37, 0xa7, 0xfc, 0x37, 0x41, 0xa9, 0xb4, 0xed, 0x13, 0xa5, 0x13, 0x46, + 0xe7, 0xe5, 0x3d, 0x2a, 0x39, 0x6e, 0x01, 0x95, 0x61, 0x5e, 0x19, 0xbb, + 0xe3, 0xb5, 0x50, 0x82, 0x59, 0x18, 0xe4, 0x28, 0x53, 0xfc, 0x59, 0xa9, + 0x48, 0x95, 0x9f, 0x96, 0xc7, 0xbd, 0x74, 0x49, 0x6a, 0x75, 0x45, 0xdd, + 0x13, 0xed, 0x0a, 0x4e, 0x3f, 0x1a, 0x63, 0x10, 0x0d, 0x44, 0xd0, 0xb9, + 0xe4, 0xcc, 0xd8, 0xf6, 0xaa, 0x72, 0x26, 0x5f, 0x64, 0x65, 0x9c, 0xfa, + 0x93, 0x53, 0xa1, 0xa5, 0xd9, 0x6a, 0x47, 0x8f, 0x39, 0x2d, 0xcf, 0xd6, + 0xa2, 0x37, 0x11, 0x63, 0xfd, 0x62, 0x8f, 0xc6, 0xb2, 0xef, 0x34, 0xf2, + 0xcc, 0xd9, 0x67, 0xc9, 0xee, 0x2a, 0xed, 0x9e, 0x99, 0x0a, 0xda, 0xaa, + 0xb8, 0x0c, 0xc0, 0x75, 0x6a, 0xb5, 0x63, 0x36, 0xd9, 0x39, 0xb9, 0x8b, + 0x1c, 0xc8, 0xa3, 0xf1, 0xa6, 0x1b, 0xc8, 0x81, 0xe6, 0x40, 0x7d, 0x31, + 0x4f, 0x5b, 0x5b, 0x75, 0x04, 0xb4, 0x60, 0xd5, 0x71, 0x63, 0x02, 0xcc, + 0x1d, 0x50, 0x01, 0xde, 0xa9, 0x58, 0x86, 0xd8, 0xad, 0x7d, 0x10, 0x70, + 0x0b, 0x71, 0x54, 0x6f, 0xee, 0x2d, 0x9e, 0x10, 0xe1, 0xc9, 0x95, 0x4f, + 0xca, 0x70, 0x6a, 0xe3, 0xd8, 0xa6, 0xe6, 0x62, 0x41, 0x56, 0x18, 0xc7, + 0xa5, 0x42, 0xf6, 0x70, 0x6c, 0xc3, 0x28, 0x23, 0x15, 0x49, 0xa2, 0x1d, + 0xca, 0x72, 0xbf, 0x9a, 0xa0, 0xe7, 0xb5, 0x3e, 0x34, 0x1b, 0x07, 0x23, + 0x03, 0xa8, 0xa8, 0x2d, 0x2d, 0xe4, 0xf9, 0x5a, 0x42, 0xbb, 0x07, 0xbf, + 0x5a, 0xb1, 0xe5, 0xee, 0x2d, 0x90, 0x15, 0x7e, 0xbc, 0xd6, 0x54, 0xd7, + 0xba, 0x44, 0x1e, 0x9a, 0x91, 0xc8, 0x01, 0x3b, 0x71, 0xc1, 0x1c, 0x53, + 0x3e, 0xe8, 0xc0, 0xe9, 0xeb, 0x52, 0x2a, 0x32, 0xe4, 0x79, 0x80, 0x8f, + 0x5a, 0x6e, 0x16, 0x21, 0xf3, 0x36, 0x72, 0x7d, 0x2a, 0xca, 0xb8, 0x98, + 0x56, 0x5c, 0x9c, 0x1a, 0xb5, 0x63, 0x0c, 0x52, 0x5c, 0x0c, 0x90, 0xb9, + 0xc7, 0x26, 0xab, 0xbc, 0xb1, 0x82, 0x50, 0x9c, 0x7e, 0x14, 0xe8, 0x2e, + 0x7c, 0xa9, 0x56, 0x44, 0x20, 0xed, 0x39, 0xc6, 0x3a, 0xd2, 0x93, 0xb2, + 0xd0, 0x4d, 0xe8, 0x7a, 0x85, 0x96, 0x9a, 0xb2, 0x68, 0x90, 0x95, 0x82, + 0x36, 0x30, 0x7f, 0x00, 0x24, 0xef, 0x1e, 0xa4, 0x76, 0x15, 0x42, 0x71, + 0x05, 0xa5, 0xc0, 0xbe, 0x8d, 0x12, 0x29, 0xb2, 0xb2, 0x20, 0x89, 0x36, + 0x28, 0xc7, 0x04, 0x7b, 0x54, 0xba, 0x37, 0x8b, 0xee, 0xb5, 0x96, 0x11, + 0xdb, 0xc7, 0xe4, 0x4d, 0x02, 0x66, 0x5f, 0x2d, 0x47, 0xcc, 0x3b, 0x0a, + 0x8b, 0x50, 0x49, 0x9a, 0xe1, 0xe6, 0xf3, 0xb7, 0xc4, 0xcb, 0xbd, 0x62, + 0x90, 0x91, 0xb4, 0xfa, 0xe3, 0xbf, 0xd2, 0xb2, 0x49, 0x28, 0x79, 0xf5, + 0xe9, 0xf3, 0x39, 0x5b, 0x95, 0xec, 0xce, 0x2f, 0xc4, 0xba, 0x79, 0xbd, + 0xd5, 0x6e, 0x35, 0x08, 0xad, 0x07, 0x90, 0xa0, 0x0f, 0xdc, 0xb6, 0xe1, + 0xb8, 0xfa, 0x93, 0xd4, 0xd6, 0x4e, 0x85, 0x6d, 0x32, 0x6b, 0x90, 0x59, + 0xdf, 0xbb, 0xac, 0x78, 0xde, 0xc1, 0x3a, 0xe3, 0xae, 0x2b, 0xa3, 0x7b, + 0xa0, 0x2e, 0x5a, 0x24, 0x6e, 0x27, 0x3b, 0xe4, 0xc8, 0xc7, 0x23, 0xd0, + 0x51, 0x6d, 0x02, 0xc5, 0xa9, 0x0b, 0x89, 0x54, 0x6d, 0x1f, 0xc5, 0xea, + 0x2b, 0x64, 0xf9, 0xaf, 0xcc, 0xb4, 0x34, 0x8f, 0xc3, 0x66, 0x47, 0xad, + 0xe9, 0x5b, 0x9d, 0xae, 0x2c, 0xe3, 0x2b, 0x68, 0x30, 0x09, 0x66, 0xc9, + 0xfa, 0x7d, 0x6b, 0x93, 0x2c, 0xd0, 0x4f, 0xf2, 0xab, 0x09, 0x41, 0xc2, + 0x2a, 0xf0, 0x49, 0xaf, 0x51, 0xb9, 0xd3, 0x6c, 0x6d, 0x51, 0x6e, 0x74, + 0xc9, 0x25, 0x9a, 0x39, 0xf0, 0xf2, 0x2b, 0x2e, 0xe8, 0xe3, 0x61, 0xd4, + 0xe4, 0xf4, 0x35, 0xc4, 0xfd, 0x9c, 0x45, 0xe2, 0x07, 0x79, 0x23, 0x2e, + 0x11, 0x8b, 0x61, 0x7b, 0x7b, 0xf1, 0x5c, 0x75, 0xe4, 0xa3, 0x52, 0xd1, + 0xed, 0x73, 0x18, 0xae, 0xbd, 0x0d, 0xcb, 0x1b, 0xab, 0xc3, 0x6e, 0x8b, + 0x73, 0x01, 0x49, 0xc2, 0x82, 0xc1, 0x8d, 0x65, 0xea, 0x39, 0xba, 0xb9, + 0x25, 0x87, 0x20, 0x62, 0xb7, 0x27, 0x32, 0xb7, 0x96, 0x24, 0x61, 0x83, + 0x18, 0x2b, 0x80, 0x33, 0x8f, 0xc2, 0xb2, 0xae, 0x8a, 0xc5, 0x09, 0x76, + 0x07, 0x00, 0xf0, 0x07, 0x35, 0xdb, 0x09, 0x4a, 0x50, 0x4e, 0x7b, 0x9d, + 0x31, 0x6a, 0xd7, 0x39, 0x4b, 0xe8, 0xcb, 0x5d, 0x08, 0x87, 0xad, 0x7a, + 0x4f, 0x84, 0xbc, 0x37, 0x7a, 0xab, 0x6d, 0x35, 0xb3, 0x18, 0x22, 0x52, + 0x09, 0x76, 0x38, 0x24, 0xf7, 0xc5, 0x70, 0xb6, 0xf1, 0xc5, 0x3e, 0xbd, + 0x6c, 0xc6, 0x37, 0x75, 0x69, 0x06, 0xe4, 0x1d, 0x48, 0xf4, 0xaf, 0x6b, + 0xd3, 0x75, 0x08, 0xde, 0xc9, 0xe6, 0x78, 0x24, 0x82, 0x08, 0x17, 0x05, + 0x4e, 0x00, 0x51, 0xdb, 0xde, 0xbc, 0xfa, 0xf3, 0x9b, 0x92, 0x8d, 0x25, + 0xae, 0xaf, 0xee, 0x0a, 0xae, 0x32, 0x8a, 0xbe, 0xc6, 0xbc, 0xc9, 0x0c, + 0xb6, 0xc6, 0x09, 0xd1, 0x64, 0x53, 0xd7, 0x71, 0xc9, 0x3f, 0x8d, 0x79, + 0x2f, 0x8a, 0xe3, 0xb6, 0x87, 0x56, 0xba, 0x8e, 0x05, 0xda, 0x99, 0x5f, + 0x94, 0x1c, 0x8e, 0x6b, 0xd5, 0xe2, 0xb0, 0xb5, 0x90, 0x09, 0x72, 0x64, + 0x0c, 0x33, 0x9c, 0xf0, 0x73, 0x5e, 0x55, 0xe2, 0xeb, 0x77, 0x3a, 0xed, + 0xd8, 0x99, 0xb6, 0xfc, 0xca, 0xaa, 0x03, 0x6e, 0xe0, 0x74, 0xae, 0xda, + 0x34, 0x71, 0x31, 0x4e, 0x78, 0x87, 0xb9, 0x8d, 0x37, 0x0e, 0x6b, 0x40, + 0xa7, 0xbd, 0x52, 0x20, 0x99, 0x2a, 0x3a, 0x1c, 0x53, 0xed, 0x66, 0x8d, + 0x6f, 0xad, 0xfa, 0xe0, 0xb0, 0xed, 0xef, 0x54, 0x5e, 0x7f, 0x2b, 0x05, + 0x80, 0x23, 0xa1, 0xa2, 0x7b, 0x86, 0x0a, 0x1a, 0x18, 0x8b, 0x28, 0x3c, + 0x8c, 0x62, 0xb5, 0x67, 0x42, 0x3d, 0xc6, 0xda, 0x68, 0x84, 0x29, 0x82, + 0x31, 0x8a, 0x64, 0xb7, 0x29, 0x93, 0xba, 0x50, 0x14, 0x73, 0xd7, 0x15, + 0xe3, 0x11, 0xeb, 0xd7, 0xca, 0x9b, 0x62, 0xbc, 0x99, 0x23, 0x53, 0x8d, + 0x9b, 0xba, 0x55, 0x5b, 0xbb, 0xfb, 0xbb, 0x8c, 0xb3, 0x5c, 0xc8, 0xc3, + 0x3d, 0x0d, 0x45, 0xa5, 0x6b, 0x17, 0xcd, 0x1b, 0xdc, 0xe9, 0x7e, 0x25, + 0xea, 0x56, 0xd3, 0xa5, 0xb5, 0xb4, 0x33, 0xab, 0x3e, 0xfd, 0xed, 0xb4, + 0xe7, 0x03, 0xb5, 0x79, 0x76, 0xb0, 0xc3, 0x39, 0x03, 0x1f, 0x2d, 0x68, + 0x5f, 0x48, 0x04, 0xb1, 0x47, 0x21, 0x25, 0xc9, 0xfe, 0xb5, 0x4b, 0x57, + 0x45, 0x62, 0xa0, 0x10, 0x32, 0x30, 0x7d, 0xaa, 0xa9, 0x47, 0x46, 0x15, + 0x64, 0x9d, 0x8f, 0x72, 0xd0, 0x35, 0x7b, 0xbb, 0x4f, 0x08, 0x69, 0x9b, + 0xa7, 0x86, 0x29, 0xfc, 0xb5, 0x1b, 0x0a, 0x92, 0x71, 0x8e, 0x3b, 0x8a, + 0xea, 0xec, 0xae, 0x6e, 0x25, 0x42, 0xf3, 0xf0, 0xe7, 0x18, 0x20, 0x00, + 0x08, 0xc5, 0x71, 0xd6, 0xf0, 0x47, 0x16, 0x8f, 0xa7, 0x79, 0xf1, 0xc4, + 0x6d, 0x2d, 0x62, 0x8d, 0x91, 0xdd, 0x89, 0xdf, 0x91, 0xcf, 0x35, 0xd7, + 0x5a, 0x34, 0x4f, 0x0a, 0x98, 0x30, 0x63, 0x60, 0x0a, 0xed, 0x1c, 0x62, + 0xbd, 0x0c, 0x36, 0x1f, 0xd9, 0xd4, 0x93, 0x4f, 0x4e, 0xc7, 0x93, 0x2a, + 0x9c, 0xd6, 0x2e, 0x89, 0x24, 0xc6, 0x41, 0xa6, 0x19, 0x5c, 0xf7, 0xa6, + 0x92, 0x40, 0xe8, 0x7f, 0x2a, 0x4c, 0x9f, 0xee, 0x9a, 0xed, 0xb2, 0x26, + 0xe0, 0x09, 0x6c, 0xe4, 0x9e, 0xb5, 0x8f, 0xe2, 0xcb, 0x7d, 0xfe, 0x16, + 0xd4, 0xb0, 0x41, 0x22, 0x06, 0x3f, 0x90, 0xad, 0x65, 0x27, 0x9f, 0x94, + 0xf5, 0xac, 0x9f, 0x15, 0xb3, 0x0f, 0x0c, 0x6a, 0x18, 0x53, 0xfe, 0xa5, + 0xa9, 0xcb, 0x6d, 0x07, 0x1d, 0xd1, 0xe5, 0x1a, 0x6d, 0xf1, 0x13, 0xfd, + 0x95, 0xa3, 0x6d, 0xc0, 0x64, 0x11, 0xde, 0xaf, 0x5d, 0x29, 0x12, 0x83, + 0x82, 0x3d, 0x47, 0xad, 0x63, 0xc0, 0xd2, 0x2d, 0xe9, 0x78, 0xc0, 0x27, + 0x18, 0x06, 0xb5, 0xa1, 0xbd, 0x96, 0x34, 0x90, 0xdc, 0x5a, 0xa4, 0x92, + 0x12, 0x02, 0x17, 0x6c, 0x62, 0xbc, 0x09, 0x55, 0xb2, 0x7a, 0x5c, 0xf4, + 0xa6, 0xf9, 0x5e, 0x86, 0xae, 0x89, 0xb0, 0x78, 0xb7, 0x4f, 0x54, 0x52, + 0x3e, 0x57, 0x24, 0x9f, 0xf7, 0x6b, 0xd3, 0x6b, 0xce, 0x7c, 0x2f, 0x3b, + 0x5d, 0xeb, 0x56, 0x73, 0x11, 0x12, 0x00, 0x5d, 0x76, 0x64, 0x16, 0xe0, + 0x1e, 0xf5, 0xe8, 0xc1, 0x81, 0x24, 0x0e, 0xd5, 0xea, 0x60, 0xaa, 0x73, + 0xd2, 0xbd, 0xb6, 0x6c, 0xe1, 0xae, 0xfd, 0xf0, 0xa3, 0x1c, 0x71, 0x41, + 0x91, 0x00, 0x52, 0x5d, 0x70, 0xc7, 0x68, 0xf9, 0x87, 0x27, 0xd2, 0x94, + 0x10, 0x6b, 0xad, 0x34, 0xf6, 0x31, 0xba, 0x2a, 0xc8, 0xd3, 0xa1, 0x0a, + 0xab, 0xbb, 0xd5, 0xba, 0x00, 0x29, 0x45, 0xdc, 0x6b, 0xbc, 0xbb, 0x6d, + 0x44, 0x5c, 0xb3, 0x1e, 0x00, 0xfc, 0x6a, 0xd6, 0x33, 0x54, 0xb5, 0x2d, + 0x32, 0x3d, 0x52, 0xdb, 0xec, 0xd2, 0xc9, 0x22, 0x44, 0xc7, 0xe7, 0x58, + 0xdb, 0x1b, 0xc7, 0xa1, 0xf6, 0xaa, 0xbe, 0x82, 0xb3, 0xe8, 0x66, 0x5c, + 0xeb, 0xd6, 0x90, 0xdf, 0x40, 0x90, 0x4e, 0xd7, 0xb3, 0x4c, 0x0e, 0xc8, + 0x60, 0x75, 0xc2, 0x81, 0xdf, 0x39, 0x03, 0xf5, 0xed, 0x54, 0xbc, 0x51, + 0x69, 0x6d, 0xae, 0x68, 0x92, 0xcc, 0x11, 0x43, 0x47, 0xf7, 0x64, 0xf2, + 0xf6, 0x9c, 0x83, 0xd3, 0x9e, 0xd5, 0x7a, 0x7d, 0x3f, 0x4f, 0xd1, 0xe3, + 0x84, 0x5a, 0x59, 0xdb, 0x86, 0x4e, 0x14, 0x48, 0x71, 0x9e, 0x78, 0x00, + 0x9e, 0xf9, 0xaa, 0x7e, 0x27, 0xbd, 0x48, 0xf4, 0x36, 0x55, 0x7c, 0x3d, + 0xc0, 0xce, 0x09, 0xc6, 0xda, 0xf9, 0xec, 0x55, 0xe5, 0x88, 0x94, 0x5f, + 0x91, 0xeb, 0xd0, 0x5f, 0xb9, 0x4d, 0x9e, 0x79, 0x0c, 0x11, 0xc0, 0xe8, + 0x5b, 0x1e, 0x60, 0x1d, 0xfd, 0x29, 0x9a, 0xe4, 0x87, 0xec, 0xab, 0xc0, + 0xda, 0x4f, 0x51, 0x4a, 0x26, 0x8d, 0xc0, 0x2e, 0xc8, 0x4f, 0x40, 0x49, + 0xe9, 0x55, 0xb5, 0x46, 0xf3, 0x2c, 0x04, 0x6a, 0xca, 0xdc, 0xf6, 0xa7, + 0xee, 0xa5, 0x64, 0x4a, 0xb5, 0xca, 0xda, 0x4c, 0x42, 0xe2, 0x56, 0x53, + 0xdf, 0x03, 0x38, 0xaf, 0x6b, 0xd0, 0x6c, 0xd2, 0xca, 0xc4, 0x5a, 0x43, + 0x2c, 0xb2, 0x49, 0x10, 0x00, 0xb4, 0x99, 0x2a, 0x3d, 0x87, 0x6f, 0xca, + 0xbc, 0x3f, 0x4b, 0xb9, 0xfb, 0x14, 0x87, 0xcc, 0x52, 0x73, 0x8a, 0xf4, + 0x27, 0xf1, 0xe3, 0xbe, 0x88, 0xd0, 0xc5, 0x6a, 0x12, 0x53, 0x11, 0x0b, + 0x2a, 0xcd, 0xb7, 0x07, 0x1d, 0x40, 0xc5, 0x72, 0xce, 0x51, 0x77, 0x4c, + 0x5c, 0xd0, 0x4c, 0xef, 0x26, 0x8a, 0xed, 0xa2, 0x08, 0x64, 0x8d, 0x4e, + 0x72, 0xcc, 0x13, 0xa8, 0xf4, 0xeb, 0xc7, 0x15, 0xc3, 0xde, 0x69, 0xb6, + 0x3a, 0x93, 0xbe, 0xa1, 0x04, 0x21, 0xd6, 0x29, 0x9c, 0xdc, 0x28, 0xc1, + 0x0c, 0xa0, 0x90, 0x48, 0x39, 0xeb, 0xc6, 0x45, 0x62, 0xdf, 0xf8, 0xa3, + 0x58, 0xd3, 0xec, 0xa2, 0x81, 0xf5, 0x39, 0x5e, 0xea, 0x54, 0x12, 0x1d, + 0xa5, 0x58, 0x2a, 0x9e, 0xd9, 0x1d, 0xeb, 0x3e, 0xc2, 0x0d, 0x7d, 0x34, + 0xfb, 0x7b, 0x55, 0xb7, 0x82, 0x4b, 0x5d, 0x58, 0xb3, 0x2a, 0x86, 0xc3, + 0xb0, 0x5e, 0x4e, 0x4f, 0x6a, 0xd3, 0x07, 0x28, 0xca, 0x4f, 0xdd, 0x76, + 0xb7, 0xfc, 0x31, 0xcf, 0x88, 0x9d, 0xe2, 0x92, 0x35, 0xed, 0xed, 0x3c, + 0x3f, 0xe2, 0x39, 0xa6, 0xba, 0x0b, 0x0b, 0x5c, 0x90, 0xde, 0x54, 0x31, + 0xcd, 0xb3, 0x6a, 0xaf, 0x00, 0xb0, 0x1d, 0x0d, 0x79, 0xfe, 0xb0, 0x61, + 0x37, 0xf2, 0x08, 0xd1, 0x15, 0x01, 0xc1, 0xda, 0xdb, 0x81, 0xfc, 0x6b, + 0x63, 0x50, 0xf2, 0xac, 0x8a, 0x79, 0x72, 0x49, 0xa6, 0x6a, 0xb1, 0x9f, + 0x29, 0x60, 0x44, 0xc0, 0x55, 0xee, 0x4b, 0x75, 0x24, 0xd7, 0x2d, 0x78, + 0x64, 0xd8, 0xae, 0xeb, 0x82, 0x49, 0x05, 0x87, 0xf1, 0xfb, 0xfa, 0xe6, + 0xbb, 0x31, 0x1a, 0xc1, 0x24, 0x92, 0x6b, 0xb1, 0xcb, 0x0b, 0xa6, 0x44, + 0xd2, 0x16, 0x3e, 0x58, 0x04, 0x2f, 0xa8, 0xab, 0x0a, 0x72, 0x8a, 0x7c, + 0xcc, 0x15, 0x1f, 0x9d, 0x46, 0x90, 0x48, 0xc9, 0x95, 0x47, 0x21, 0xbd, + 0x05, 0x4d, 0x6b, 0x03, 0x33, 0x2a, 0x34, 0x6f, 0xe5, 0xb1, 0x3f, 0x39, + 0x5e, 0xf5, 0xc5, 0xca, 0xdd, 0x8d, 0xd4, 0x5d, 0xca, 0xaf, 0x27, 0x98, + 0x55, 0x46, 0xd2, 0x01, 0xc9, 0xcd, 0x5e, 0xb6, 0x21, 0x25, 0x42, 0xe8, + 0x1a, 0x3c, 0xe4, 0x8f, 0x5a, 0x5b, 0x8b, 0x0b, 0x64, 0x80, 0x00, 0x42, + 0xca, 0x09, 0x0d, 0x81, 0xc1, 0xfa, 0x53, 0x93, 0x6c, 0xb1, 0xaa, 0xae, + 0xd0, 0x17, 0x8e, 0x28, 0xa9, 0x78, 0x34, 0x91, 0x71, 0x56, 0x77, 0x66, + 0x95, 0xce, 0x9a, 0x93, 0xf9, 0x6d, 0x0e, 0x7c, 0xa7, 0x19, 0xda, 0x0f, + 0x4a, 0x8a, 0xd7, 0x4e, 0x54, 0x93, 0x7c, 0x24, 0x23, 0xa9, 0xc1, 0x52, + 0x72, 0x5a, 0xad, 0xe9, 0xd6, 0xd2, 0x4e, 0x8c, 0xa5, 0xfe, 0x55, 0x19, + 0xc7, 0xa5, 0x43, 0x11, 0x68, 0xa7, 0x79, 0x0e, 0xd6, 0x88, 0x30, 0xc9, + 0x3f, 0xc2, 0x7d, 0x78, 0xae, 0x88, 0xad, 0x36, 0x34, 0x93, 0xb3, 0x3b, + 0x1f, 0x07, 0xdb, 0xc6, 0x75, 0xd8, 0x37, 0xc0, 0x19, 0xc0, 0x27, 0xe6, + 0xfe, 0x1f, 0x7a, 0xf5, 0x78, 0xa2, 0x18, 0xe7, 0x8f, 0xa5, 0x79, 0x6f, + 0x82, 0xae, 0x49, 0xd7, 0x43, 0xed, 0xca, 0x98, 0xd8, 0xb1, 0x51, 0x9f, + 0xd2, 0xba, 0xdb, 0xef, 0x19, 0x5a, 0x5b, 0x4e, 0x60, 0xb3, 0x61, 0x73, + 0x29, 0x07, 0x25, 0x4f, 0xca, 0x87, 0xde, 0x95, 0xd7, 0x31, 0xb4, 0x65, + 0xee, 0x1b, 0x1a, 0xcc, 0xd0, 0xdb, 0xe9, 0xf3, 0x09, 0x18, 0x06, 0x65, + 0x2a, 0xa3, 0xb9, 0x38, 0xaf, 0x1e, 0xd7, 0x6d, 0xda, 0x40, 0x02, 0xb3, + 0x1f, 0xa5, 0x74, 0xd7, 0x9a, 0xa4, 0xf7, 0xf2, 0x6f, 0x9d, 0xb2, 0xe7, + 0xb0, 0xe0, 0x0f, 0xa5, 0x65, 0x4d, 0x22, 0xf9, 0x9b, 0x5b, 0x86, 0xf4, + 0xcd, 0x6d, 0xc9, 0xa1, 0x3c, 0xd7, 0x67, 0x20, 0x52, 0xfa, 0x29, 0xed, + 0xc4, 0x29, 0xba, 0x36, 0x38, 0x6c, 0x8a, 0xea, 0x6d, 0x20, 0x16, 0xf1, + 0x83, 0x27, 0x04, 0xff, 0x00, 0x08, 0x1c, 0x0a, 0x1b, 0xcb, 0x75, 0x1f, + 0x27, 0x01, 0xbb, 0x7a, 0xd5, 0x79, 0x0d, 0xc7, 0x9e, 0x06, 0x3e, 0x4c, + 0xf5, 0xa4, 0x97, 0x28, 0xfe, 0x22, 0xaf, 0x88, 0xac, 0x64, 0xbd, 0x8c, + 0x18, 0x73, 0xb9, 0x41, 0xfa, 0x0a, 0xc2, 0xb1, 0xd1, 0xb7, 0x40, 0x66, + 0xbb, 0x72, 0x8a, 0xbf, 0xc5, 0x9c, 0x57, 0x64, 0x41, 0x54, 0x25, 0xd8, + 0x6d, 0xc7, 0x7a, 0xe6, 0x35, 0x0b, 0x49, 0x65, 0x92, 0x56, 0x96, 0x66, + 0xfb, 0x2a, 0x8c, 0xed, 0x07, 0x8a, 0x25, 0x1d, 0x6e, 0x0a, 0x5a, 0x58, + 0xbe, 0x97, 0x3a, 0x75, 0xb5, 0xba, 0xe6, 0xe9, 0x49, 0x03, 0x81, 0x9a, + 0x8a, 0x6d, 0x5f, 0x4f, 0x29, 0xb5, 0x66, 0x27, 0xe8, 0x0d, 0x73, 0x1e, + 0x7d, 0xba, 0x93, 0xe5, 0x47, 0x91, 0xd8, 0xb5, 0x4b, 0x05, 0xb6, 0xa1, + 0xa9, 0x4a, 0x21, 0xd3, 0x74, 0xf9, 0x6e, 0xa7, 0x3c, 0x88, 0xe2, 0x8c, + 0xb1, 0xc5, 0x47, 0xb4, 0x93, 0xd1, 0x21, 0x59, 0x23, 0xa3, 0x86, 0xff, + 0x00, 0x4e, 0x65, 0xc7, 0xda, 0x15, 0x58, 0xfa, 0xf1, 0x56, 0x51, 0x50, + 0xc2, 0xc6, 0x39, 0x11, 0x80, 0x1d, 0x8d, 0x71, 0xfa, 0x85, 0x8e, 0xbd, + 0xa5, 0x34, 0x6f, 0xa9, 0xe8, 0x97, 0x36, 0x91, 0xbf, 0x4f, 0x32, 0x12, + 0x01, 0xc7, 0xbd, 0x47, 0x05, 0xed, 0xbc, 0xbc, 0x23, 0x49, 0x13, 0x74, + 0x38, 0xed, 0x4d, 0xca, 0x51, 0xdd, 0x02, 0xb3, 0xd9, 0x9d, 0x46, 0x9b, + 0x10, 0x78, 0x8c, 0x8e, 0x06, 0x79, 0xe7, 0xf1, 0xa7, 0x4b, 0x34, 0x11, + 0x36, 0xd2, 0xbf, 0x89, 0xaa, 0x5a, 0x73, 0x4f, 0x02, 0x34, 0x59, 0x0e, + 0x8e, 0x32, 0xa4, 0xd4, 0xfe, 0x59, 0x76, 0x22, 0x48, 0x86, 0x31, 0xd4, + 0xd3, 0xe6, 0xba, 0xd0, 0xbb, 0x6b, 0xa8, 0x9a, 0x8c, 0x11, 0xdf, 0x5a, + 0x84, 0x8f, 0x8f, 0x42, 0x2a, 0xc6, 0x93, 0xa7, 0xad, 0xbd, 0xaa, 0xab, + 0xfc, 0xc4, 0x7a, 0xf7, 0xa6, 0x47, 0x0a, 0xc6, 0x83, 0xcb, 0x40, 0x14, + 0xf5, 0xab, 0xc9, 0x28, 0x89, 0x3d, 0xaa, 0xd6, 0xf7, 0x64, 0xc9, 0x76, + 0x25, 0xf2, 0x62, 0x5c, 0xe1, 0x40, 0xa8, 0x24, 0xb5, 0x57, 0x53, 0x84, + 0xc9, 0xc5, 0x49, 0xe7, 0xef, 0x39, 0x04, 0x63, 0xd2, 0xb4, 0xec, 0x75, + 0x6d, 0x3e, 0xd6, 0xd6, 0x4b, 0x3b, 0xa8, 0x1f, 0xed, 0x12, 0x36, 0x19, + 0xfb, 0x85, 0xf6, 0xa8, 0xab, 0x5a, 0x34, 0xd5, 0xda, 0xb9, 0x16, 0xee, + 0x79, 0xec, 0x56, 0x4e, 0x59, 0xe2, 0x68, 0x5d, 0x08, 0x62, 0x41, 0x65, + 0xc5, 0x5f, 0x8b, 0x4f, 0x2d, 0x19, 0x53, 0x80, 0x7d, 0xab, 0xb0, 0xd4, + 0x65, 0xb2, 0xb3, 0xba, 0x36, 0x12, 0xa2, 0x48, 0xb2, 0xa8, 0x96, 0x1b, + 0x91, 0x26, 0x70, 0x0f, 0xa8, 0xac, 0x22, 0xd9, 0x12, 0x38, 0x00, 0x0c, + 0x9e, 0x16, 0x8a, 0x75, 0x39, 0xf5, 0xb0, 0x94, 0xba, 0x18, 0x17, 0x7a, + 0x6c, 0xa8, 0x84, 0xc2, 0xfc, 0x8f, 0x7a, 0xce, 0xb5, 0x5b, 0xa4, 0xbc, + 0x45, 0x75, 0x18, 0xcf, 0x5a, 0xe9, 0x5d, 0x7e, 0x5e, 0x0e, 0x01, 0xe6, + 0xa8, 0x4a, 0xa4, 0xbe, 0x00, 0xfc, 0x6a, 0xe6, 0xbd, 0xd6, 0x5c, 0x37, + 0x16, 0x62, 0xd1, 0xe7, 0x6e, 0x4f, 0x19, 0xe2, 0xb0, 0x6e, 0xb5, 0x4b, + 0xcc, 0x1d, 0x83, 0x62, 0xf7, 0xc7, 0x5a, 0xe8, 0x1c, 0x95, 0x88, 0x67, + 0x1d, 0x2b, 0x12, 0x68, 0x81, 0x56, 0x6c, 0x77, 0xae, 0x38, 0xbb, 0x1b, + 0xcd, 0x76, 0x39, 0xf9, 0xaf, 0x65, 0x79, 0x0a, 0xe1, 0x99, 0xbd, 0xcd, + 0x68, 0x68, 0xb1, 0x4e, 0x35, 0x58, 0xda, 0x55, 0x20, 0x0e, 0x70, 0x05, + 0x5b, 0xd3, 0x2d, 0x2d, 0xae, 0x2f, 0x8a, 0x4a, 0xa3, 0x20, 0xe7, 0xeb, + 0x5b, 0x10, 0x98, 0xed, 0xef, 0x8b, 0x2e, 0x37, 0x06, 0x20, 0x2e, 0x38, + 0xc5, 0x74, 0x36, 0x9c, 0x74, 0x30, 0x8a, 0xb4, 0x8d, 0x1d, 0xe1, 0xa3, + 0x20, 0x2e, 0x76, 0xd5, 0x09, 0x00, 0x67, 0x07, 0x82, 0x3b, 0xd5, 0x8b, + 0xa9, 0x08, 0x8b, 0x73, 0x16, 0xe4, 0xe3, 0x8e, 0x2a, 0x82, 0x6e, 0x93, + 0x25, 0x54, 0x91, 0x9e, 0xb5, 0x84, 0x56, 0xba, 0x1a, 0xce, 0x4d, 0x12, + 0xc8, 0x83, 0x00, 0xaf, 0x04, 0x74, 0x15, 0x66, 0xc4, 0x1f, 0xb4, 0x03, + 0xc7, 0x4a, 0xa6, 0xef, 0xb5, 0x88, 0x20, 0xe7, 0xa7, 0xd2, 0xac, 0x5a, + 0xb6, 0x67, 0x5c, 0x1a, 0xa5, 0xb8, 0x32, 0xed, 0xdc, 0x6b, 0xe7, 0xc7, + 0xf3, 0xed, 0xad, 0x88, 0x91, 0xfc, 0x95, 0x8c, 0xbe, 0x30, 0x38, 0x22, + 0xb3, 0x66, 0xb6, 0x59, 0x99, 0x4b, 0x31, 0x5c, 0x1e, 0xa2, 0xb4, 0xd5, + 0x92, 0x24, 0x50, 0xef, 0xd4, 0x60, 0x1a, 0x2c, 0x32, 0x68, 0xce, 0xd2, + 0x10, 0x0c, 0xfb, 0xd0, 0xf0, 0x2c, 0x80, 0x82, 0x32, 0x0d, 0x3a, 0x31, + 0xe8, 0x6a, 0x44, 0x23, 0xa7, 0xf4, 0xa9, 0x60, 0x75, 0xbe, 0x14, 0xd0, + 0xed, 0xec, 0x74, 0x49, 0x75, 0x40, 0x80, 0xdc, 0xb6, 0xe6, 0x04, 0xff, + 0x00, 0x08, 0x1c, 0x62, 0x8d, 0x07, 0x4c, 0x56, 0xd3, 0xe6, 0xd4, 0xa7, + 0x40, 0x66, 0x94, 0x92, 0xa4, 0xff, 0x00, 0x08, 0xf4, 0xad, 0x7d, 0x13, + 0x9f, 0x06, 0xb6, 0x3a, 0xf9, 0x6f, 0xfc, 0xcd, 0x2d, 0xa8, 0x54, 0xf0, + 0xe4, 0x6a, 0xbd, 0x02, 0xd4, 0x72, 0xab, 0xaf, 0x43, 0xa2, 0x9b, 0x76, + 0x38, 0x4b, 0x83, 0x89, 0xa4, 0xe3, 0xf8, 0xcf, 0xf3, 0xae, 0xff, 0x00, + 0xc3, 0x8c, 0x53, 0xc2, 0xc8, 0xe3, 0x8c, 0x16, 0x3f, 0xa9, 0xae, 0x06, + 0x65, 0x26, 0x66, 0x23, 0xfb, 0xe7, 0xf9, 0xd7, 0x7f, 0xe1, 0xf0, 0x4f, + 0x85, 0x90, 0x0e, 0xa4, 0xb0, 0xfd, 0x4d, 0x45, 0x17, 0xfb, 0xc6, 0x69, + 0x59, 0x7b, 0xab, 0xd4, 0xb4, 0xf7, 0x02, 0x19, 0x5c, 0xbe, 0xd5, 0x4c, + 0xaf, 0xcc, 0xc7, 0x03, 0x38, 0x34, 0xdf, 0x17, 0x59, 0xae, 0xa1, 0xe0, + 0xf9, 0x2e, 0x13, 0x02, 0x58, 0x63, 0xf3, 0x63, 0x7e, 0xe0, 0x63, 0x27, + 0xf3, 0x14, 0x5e, 0x59, 0x45, 0x7f, 0x04, 0xb6, 0xf2, 0x96, 0x08, 0xcc, + 0xa4, 0x95, 0x38, 0x3c, 0x73, 0xfd, 0x2a, 0xde, 0xbe, 0x8b, 0x6f, 0xe1, + 0x3b, 0xd8, 0xf7, 0x13, 0x18, 0xb7, 0x60, 0x37, 0x1e, 0x71, 0x8a, 0xef, + 0xa5, 0x1e, 0x68, 0xc9, 0x3e, 0xc7, 0x0d, 0x59, 0x5a, 0x71, 0x7e, 0x67, + 0x8b, 0xfc, 0xd2, 0x5a, 0x02, 0xc4, 0xee, 0xad, 0xef, 0x09, 0xdb, 0x9b, + 0xad, 0x41, 0x6c, 0x49, 0xdc, 0xb2, 0xba, 0x33, 0x29, 0xe8, 0xc1, 0x4e, + 0x4d, 0x62, 0x6e, 0x52, 0x38, 0x1c, 0x76, 0xcd, 0x74, 0x5e, 0x05, 0x42, + 0xbe, 0x24, 0x47, 0x07, 0x3d, 0x4e, 0x3f, 0x03, 0x53, 0x05, 0xad, 0x86, + 0xdf, 0x54, 0x7a, 0xea, 0xe5, 0x14, 0x28, 0xe0, 0x0a, 0x4c, 0xd4, 0x9b, + 0xb2, 0x29, 0x36, 0x72, 0x0d, 0x7a, 0x37, 0x3c, 0xe1, 0xc0, 0xfc, 0xa0, + 0xf1, 0x4c, 0x66, 0xe7, 0xd6, 0x9d, 0xc0, 0x1d, 0xa9, 0x99, 0x5a, 0x48, + 0x67, 0x9f, 0x6b, 0x56, 0xa6, 0xc3, 0xc4, 0xf7, 0x11, 0xa0, 0x02, 0x2b, + 0x94, 0x13, 0x28, 0x1d, 0x8f, 0x43, 0xfa, 0xe4, 0xd7, 0x36, 0xac, 0xed, + 0x2c, 0xa1, 0xb1, 0x8d, 0xe7, 0xf9, 0xd7, 0x61, 0xe2, 0xa0, 0x0f, 0x88, + 0xe0, 0xff, 0x00, 0xaf, 0x5f, 0xfd, 0x98, 0xd7, 0x19, 0x2c, 0x91, 0xc4, + 0xd2, 0xb4, 0x87, 0x68, 0x0c, 0x72, 0x73, 0x5e, 0x45, 0x92, 0xc4, 0x4d, + 0x23, 0xd5, 0x72, 0x6e, 0x84, 0x5b, 0x26, 0x0e, 0xa1, 0xb6, 0x1c, 0x6f, + 0x23, 0x81, 0x51, 0xc8, 0x88, 0xb7, 0x3f, 0x39, 0x2a, 0x36, 0x70, 0x45, + 0x43, 0xe6, 0xc2, 0xf8, 0x78, 0xe4, 0x42, 0xd8, 0xe0, 0xe7, 0xa5, 0x3a, + 0x39, 0x16, 0x69, 0xd0, 0x6f, 0x0c, 0x42, 0x90, 0x6b, 0x46, 0x60, 0x68, + 0xda, 0xc7, 0x0a, 0x30, 0x93, 0xef, 0x64, 0xf0, 0x3d, 0x4d, 0x76, 0x7a, + 0x0d, 0xba, 0x4d, 0x21, 0x89, 0xf9, 0xda, 0xbb, 0x9f, 0x9e, 0xe7, 0xa0, + 0xae, 0x36, 0xd9, 0xd6, 0x26, 0xf3, 0x49, 0x05, 0x87, 0x0a, 0x3d, 0xfd, + 0x6b, 0xb4, 0xf0, 0x6e, 0x1d, 0x2e, 0xdc, 0xf2, 0xe4, 0xae, 0x4e, 0x7a, + 0xf5, 0xa7, 0x4a, 0x37, 0x96, 0xa2, 0xa8, 0xed, 0x1d, 0x0e, 0x87, 0xec, + 0x36, 0xc5, 0x02, 0x79, 0x4b, 0x81, 0x59, 0xb7, 0xfa, 0x49, 0x44, 0x32, + 0xdb, 0x12, 0x48, 0xe7, 0x67, 0xf8, 0x56, 0xd5, 0x04, 0x8a, 0xed, 0x74, + 0xe2, 0xfa, 0x1c, 0xf0, 0xab, 0x28, 0xbb, 0xa6, 0x71, 0x6f, 0x3b, 0x0c, + 0xf3, 0xce, 0x2b, 0x1a, 0x7b, 0xa5, 0x77, 0x75, 0xcf, 0x3f, 0xc4, 0x2b, + 0x63, 0x5d, 0xc5, 0x9e, 0xae, 0x54, 0x0c, 0x24, 0x83, 0x70, 0xfe, 0xbf, + 0xad, 0x73, 0xf7, 0x68, 0xbb, 0xdd, 0x80, 0xc3, 0xb0, 0xeb, 0x5e, 0x72, + 0x6e, 0x15, 0x5c, 0x19, 0xe8, 0x54, 0x8a, 0x9c, 0x14, 0xd1, 0x5e, 0x68, + 0x62, 0xb9, 0x04, 0x3a, 0x8c, 0x76, 0x35, 0x99, 0x34, 0x12, 0x42, 0x08, + 0x86, 0xe5, 0x80, 0xfe, 0xeb, 0x0c, 0x8a, 0xf4, 0x7f, 0x0b, 0xe8, 0xd6, + 0x92, 0xe9, 0x02, 0x7b, 0x98, 0x63, 0x99, 0xa5, 0x27, 0xef, 0xae, 0x70, + 0x01, 0xc7, 0x7a, 0xca, 0xf1, 0x3f, 0x86, 0x52, 0xc2, 0x33, 0x7b, 0x66, + 0x0f, 0x91, 0x9c, 0x49, 0x19, 0xe7, 0x67, 0xb8, 0xf6, 0xae, 0x97, 0x09, + 0x28, 0xf3, 0x44, 0xe4, 0x52, 0x8b, 0x95, 0x99, 0xe7, 0xe2, 0xea, 0xe2, + 0xd1, 0x3c, 0xb9, 0x62, 0x66, 0x51, 0xfc, 0x4b, 0xc8, 0x35, 0x01, 0x11, + 0xdd, 0xa7, 0x9a, 0x1c, 0x21, 0x03, 0x25, 0x3d, 0x2b, 0x6a, 0x58, 0x76, + 0x72, 0x2b, 0x03, 0x50, 0x85, 0x5a, 0xed, 0x18, 0xa9, 0xdb, 0xd1, 0x8a, + 0x9c, 0x56, 0x50, 0xa8, 0xa6, 0xaf, 0xd4, 0xd2, 0x50, 0x71, 0xd0, 0x48, + 0xee, 0x65, 0x86, 0x41, 0x80, 0x4a, 0x9e, 0x87, 0xb1, 0xae, 0xa3, 0xc3, + 0x5a, 0xcc, 0x76, 0x7a, 0x94, 0x6b, 0x3a, 0xb3, 0x24, 0xb8, 0x4c, 0x29, + 0xc0, 0xc9, 0xe9, 0x91, 0xde, 0xb9, 0xc9, 0x21, 0x9d, 0x22, 0x08, 0x8c, + 0x24, 0x8c, 0x10, 0x42, 0xb7, 0x0d, 0xf8, 0x1a, 0xb9, 0xa3, 0xc4, 0x2f, + 0xb5, 0x78, 0xe0, 0xf2, 0xe4, 0x04, 0xf4, 0x5e, 0x84, 0x1a, 0x8a, 0xdf, + 0x0d, 0xd9, 0x2d, 0xe8, 0x7a, 0xaf, 0x89, 0x6c, 0x9a, 0xf3, 0x45, 0x96, + 0x15, 0x0b, 0xe6, 0x84, 0xc8, 0xdc, 0x3f, 0x97, 0xbd, 0x79, 0x64, 0x96, + 0x50, 0x69, 0xe8, 0x56, 0x65, 0xcc, 0xe3, 0xba, 0xf6, 0xfa, 0x9a, 0xf6, + 0x0b, 0xa0, 0xd6, 0xb6, 0x98, 0x8e, 0x2f, 0x39, 0x82, 0xf5, 0x76, 0xc9, + 0x63, 0xef, 0x5e, 0x51, 0xac, 0x5f, 0x5b, 0x25, 0xcc, 0xf1, 0xbd, 0x9b, + 0x46, 0xed, 0xcb, 0x87, 0x1c, 0x06, 0xf6, 0xf4, 0x15, 0x96, 0x22, 0x32, + 0x72, 0x8d, 0x96, 0x88, 0x78, 0x79, 0xa5, 0x78, 0xf7, 0x2a, 0x5b, 0x94, + 0x91, 0xb2, 0xa7, 0x8a, 0x9d, 0xca, 0xc7, 0x92, 0x4d, 0x53, 0x82, 0xe9, + 0x1f, 0x3e, 0x58, 0x03, 0x8a, 0xb4, 0xb6, 0xee, 0xed, 0xba, 0x46, 0xca, + 0xfa, 0x0a, 0x52, 0xbd, 0xce, 0xb8, 0x68, 0xb5, 0x2b, 0xaa, 0x4b, 0x72, + 0xc5, 0x53, 0x21, 0x0f, 0x53, 0x4a, 0xd1, 0x2d, 0xb1, 0xc2, 0x8c, 0xfa, + 0x93, 0x5d, 0x16, 0x99, 0xa5, 0x35, 0xed, 0x94, 0xd2, 0xa6, 0x54, 0x46, + 0x3e, 0x50, 0x06, 0x72, 0x6b, 0x02, 0xf1, 0x97, 0xcc, 0x2a, 0x83, 0x3c, + 0xf2, 0x45, 0x4c, 0x67, 0x16, 0xda, 0x5d, 0x01, 0x4e, 0xee, 0xc4, 0x66, + 0x40, 0x62, 0xe7, 0x9e, 0x69, 0xa0, 0xf1, 0x92, 0x70, 0x2a, 0x31, 0x16, + 0x03, 0x11, 0xc6, 0x47, 0x3c, 0xd5, 0x76, 0xbe, 0x86, 0x3f, 0x91, 0x86, + 0x7b, 0x63, 0xae, 0x6a, 0xd1, 0x33, 0x91, 0x01, 0x91, 0xc4, 0x8e, 0xf1, + 0x4d, 0xe6, 0x02, 0x7a, 0x1e, 0x00, 0xab, 0x2b, 0x71, 0x95, 0x07, 0x00, + 0x7d, 0x2b, 0x36, 0xea, 0x55, 0x98, 0x12, 0xa1, 0x63, 0x8b, 0xb1, 0xc6, + 0x09, 0xa5, 0xb6, 0xba, 0x67, 0x1b, 0x63, 0xda, 0xd8, 0xf5, 0xa6, 0xa5, + 0x66, 0x60, 0xa4, 0xaf, 0x62, 0xf9, 0x70, 0x46, 0x0b, 0x75, 0xaa, 0xf3, + 0x4f, 0xe4, 0x96, 0x04, 0xf6, 0xa4, 0x67, 0x05, 0x83, 0x30, 0x2a, 0x47, + 0x5c, 0x74, 0x35, 0x5a, 0xe7, 0x6d, 0xc0, 0x38, 0x70, 0x31, 0x51, 0x56, + 0xa2, 0xda, 0xfa, 0x93, 0x52, 0x4b, 0x60, 0xb0, 0xb4, 0x91, 0xad, 0xd6, + 0x63, 0x2e, 0x01, 0x1c, 0x0a, 0x99, 0xe0, 0x90, 0x46, 0xee, 0xb2, 0x2b, + 0x10, 0x33, 0xb4, 0x54, 0x5b, 0xa4, 0x9e, 0x18, 0x23, 0x8d, 0xc2, 0x05, + 0x01, 0x49, 0xf5, 0xab, 0xd6, 0xf6, 0x0d, 0x6e, 0xa4, 0xc9, 0x30, 0x6c, + 0x8c, 0x74, 0xe9, 0x5a, 0x45, 0x49, 0x3b, 0x25, 0xa1, 0x29, 0xb5, 0xa2, + 0xd8, 0xca, 0xb1, 0x17, 0x97, 0x28, 0xce, 0x42, 0x70, 0x71, 0x8e, 0x95, + 0x3c, 0xb1, 0xdd, 0x05, 0xe2, 0x31, 0x9a, 0x7c, 0x12, 0x25, 0x92, 0xba, + 0x33, 0x87, 0xcb, 0x12, 0x0f, 0x41, 0x52, 0x9b, 0xa4, 0x2a, 0x58, 0x67, + 0x03, 0xad, 0x6c, 0x91, 0x6d, 0x94, 0x09, 0xb9, 0x27, 0x1e, 0x4e, 0x49, + 0xa8, 0xcb, 0x49, 0x1b, 0x85, 0x78, 0x19, 0x72, 0x71, 0xc7, 0xad, 0x68, + 0xb5, 0xd0, 0x4c, 0x36, 0x17, 0x38, 0xe3, 0x35, 0x9d, 0x2d, 0xfb, 0xbb, + 0x61, 0x88, 0xf9, 0x73, 0xc6, 0x3a, 0x1a, 0xca, 0x6e, 0xcf, 0xc8, 0x97, + 0x2d, 0x0d, 0x9d, 0x1b, 0x51, 0xbc, 0xd2, 0xe5, 0x95, 0xa0, 0x95, 0x62, + 0x12, 0xa0, 0x56, 0x0a, 0x41, 0x6e, 0x2b, 0xaa, 0xbc, 0xb9, 0xb9, 0x92, + 0xc2, 0x29, 0xd2, 0xea, 0x36, 0x77, 0x8f, 0x98, 0x43, 0x0c, 0x81, 0xeb, + 0x9f, 0x5a, 0xf3, 0x5b, 0x4c, 0x87, 0x2c, 0xef, 0x8e, 0xf8, 0xf5, 0xad, + 0x68, 0x6f, 0xad, 0x23, 0x83, 0xca, 0x68, 0xe5, 0x6f, 0xef, 0x7c, 0xf8, + 0x04, 0xd7, 0x35, 0x6a, 0x8b, 0x95, 0xab, 0x6e, 0x60, 0xf7, 0xb9, 0xa4, + 0xc2, 0x16, 0xd9, 0x24, 0xb9, 0x79, 0x81, 0xc6, 0xe0, 0x72, 0x3d, 0xea, + 0xdb, 0x14, 0x92, 0xdd, 0x89, 0x66, 0xc0, 0x07, 0xa0, 0xa8, 0x2d, 0xa3, + 0xb2, 0x92, 0xc9, 0x4c, 0x32, 0x2a, 0xb6, 0xd1, 0x98, 0xd8, 0xf3, 0x9f, + 0x5a, 0xaf, 0x22, 0x49, 0x04, 0xef, 0x13, 0x36, 0x18, 0xaf, 0x38, 0x7e, + 0x08, 0xa5, 0x46, 0xb3, 0x72, 0xe4, 0xfc, 0x07, 0xb1, 0x25, 0x84, 0xf7, + 0x97, 0x51, 0x0d, 0x36, 0xde, 0xe1, 0xd6, 0x19, 0x5b, 0x07, 0x27, 0x8c, + 0x7b, 0xd6, 0x85, 0xe5, 0x89, 0xb5, 0xb8, 0x5d, 0xd7, 0x31, 0xc5, 0x16, + 0x42, 0xbc, 0x88, 0x87, 0xe6, 0x1f, 0xd6, 0xb2, 0xbc, 0xc3, 0x69, 0x68, + 0xde, 0x58, 0xc1, 0x51, 0x90, 0xc3, 0xad, 0x30, 0xdd, 0xea, 0x37, 0xd0, + 0x47, 0x73, 0x71, 0x71, 0xe6, 0x22, 0x1c, 0x01, 0xd3, 0x15, 0x58, 0xa8, + 0x34, 0x94, 0x96, 0x8c, 0x56, 0x24, 0x37, 0xab, 0x03, 0xec, 0x59, 0x43, + 0x21, 0xe0, 0x12, 0xb8, 0xa4, 0x69, 0x0c, 0xd6, 0xe4, 0x27, 0x72, 0x79, + 0x27, 0x02, 0x9b, 0x75, 0x71, 0x6d, 0x71, 0x38, 0x0c, 0x0e, 0xd5, 0x4c, + 0x31, 0x11, 0xe0, 0x93, 0xef, 0x59, 0xe4, 0x34, 0xf8, 0x8f, 0xe6, 0xf2, + 0x57, 0x95, 0x60, 0xd8, 0xdb, 0xf5, 0xad, 0xa8, 0x37, 0xc8, 0x93, 0x35, + 0x4f, 0xa1, 0x05, 0xbb, 0x49, 0x65, 0xab, 0x43, 0x2b, 0x8f, 0x30, 0xc6, + 0xe1, 0x8e, 0x0d, 0x77, 0x37, 0x1e, 0x22, 0xb8, 0xbe, 0x8d, 0x4c, 0x68, + 0x22, 0x8d, 0xfa, 0x6f, 0x8f, 0x8c, 0x8e, 0xd9, 0xef, 0x5e, 0x7c, 0x6e, + 0x3c, 0xab, 0x9c, 0xbf, 0xef, 0x39, 0xc7, 0x0d, 0xd4, 0x56, 0xa4, 0x1a, + 0xcc, 0x8f, 0x3c, 0x6d, 0x18, 0x2a, 0xa8, 0x70, 0x81, 0xb9, 0xc5, 0x72, + 0x62, 0xa8, 0xc5, 0xc9, 0x34, 0xb6, 0x09, 0xbe, 0x5d, 0x0f, 0x4c, 0xf0, + 0x4e, 0xbe, 0xb0, 0x09, 0x6c, 0xb5, 0x3b, 0xd5, 0x8a, 0x34, 0x5f, 0xdc, + 0x87, 0xc0, 0x07, 0x9f, 0x5f, 0xe9, 0x5c, 0x77, 0x8b, 0x2f, 0xe3, 0xb8, + 0xf1, 0x3d, 0xd3, 0xc1, 0x22, 0xc8, 0x8e, 0xd9, 0x52, 0xa3, 0x8e, 0x95, + 0x57, 0x50, 0xd4, 0xe5, 0x91, 0x9d, 0xe5, 0x2a, 0xb2, 0x70, 0x30, 0xb8, + 0xe4, 0x7b, 0x0a, 0xc0, 0x92, 0xed, 0x89, 0x66, 0xc9, 0x12, 0xe7, 0x8a, + 0xde, 0x9e, 0x22, 0xa4, 0xe2, 0xa2, 0xf6, 0x46, 0x50, 0x56, 0x7a, 0x16, + 0xee, 0x26, 0x55, 0x93, 0xef, 0x26, 0xf5, 0x1d, 0x01, 0xeb, 0x45, 0xbd, + 0xf3, 0x4b, 0x23, 0x2b, 0xb7, 0xca, 0x7b, 0x0e, 0xd5, 0x94, 0x44, 0x92, + 0xcb, 0xca, 0x64, 0xf7, 0x39, 0xa9, 0x96, 0x16, 0x88, 0xed, 0x23, 0x04, + 0x8c, 0x83, 0x5a, 0x29, 0xb7, 0x3b, 0x1a, 0x26, 0xdc, 0x8b, 0xf2, 0x4d, + 0x0c, 0x79, 0x73, 0x11, 0x0a, 0x48, 0xf9, 0x89, 0xaa, 0x57, 0xfa, 0xaa, + 0x5a, 0x49, 0x10, 0x2a, 0x0a, 0xcc, 0x7a, 0xfa, 0x0a, 0x95, 0x49, 0x2a, + 0xa2, 0x42, 0x0e, 0x3a, 0x56, 0x0f, 0x88, 0x5c, 0x4d, 0xa8, 0x5b, 0x22, + 0xb6, 0xec, 0x2f, 0x6a, 0xe8, 0x5a, 0x9a, 0x3d, 0x0d, 0x59, 0xa3, 0x86, + 0x69, 0x03, 0x85, 0xe3, 0xa8, 0x6a, 0xcc, 0xd5, 0x12, 0x47, 0xc1, 0x44, + 0x66, 0xc2, 0xf3, 0x81, 0x5a, 0x4b, 0x94, 0xb7, 0x45, 0x11, 0x92, 0x71, + 0xc0, 0xaa, 0xa9, 0x7d, 0x71, 0xe6, 0x98, 0x51, 0x14, 0xe3, 0xae, 0x68, + 0xbf, 0x2a, 0x06, 0xef, 0xb9, 0xea, 0x3e, 0x1d, 0xf1, 0x15, 0xbd, 0xd7, + 0x86, 0xad, 0xf4, 0xeb, 0xfb, 0x8f, 0x20, 0xc4, 0x17, 0xcb, 0x27, 0x1d, + 0xab, 0xad, 0xb7, 0xf1, 0x7e, 0x9c, 0xbb, 0xe2, 0x33, 0xc2, 0xaa, 0xb8, + 0x54, 0x93, 0x70, 0x1d, 0xab, 0xc2, 0x8c, 0xda, 0x81, 0x53, 0x88, 0xe3, + 0x03, 0xdc, 0x54, 0x6c, 0x6f, 0xf2, 0x37, 0x3c, 0x63, 0xbe, 0x31, 0x5c, + 0xae, 0x9d, 0x4b, 0xb6, 0xaa, 0x35, 0x73, 0x2f, 0x67, 0x1b, 0x6c, 0x7b, + 0xc5, 0xcf, 0x8b, 0xf4, 0xd8, 0x52, 0x27, 0xfb, 0x7a, 0xb8, 0x32, 0x28, + 0x2a, 0xa7, 0x3f, 0x2e, 0x79, 0xab, 0xf1, 0xf8, 0x8b, 0x46, 0x94, 0x12, + 0x9a, 0x95, 0xbf, 0x1c, 0x10, 0xce, 0x14, 0xfe, 0xb5, 0xf3, 0xab, 0x5d, + 0x5f, 0x44, 0xd8, 0x12, 0x44, 0xc7, 0xfb, 0xb8, 0xaa, 0xed, 0x75, 0x7e, + 0xb8, 0x73, 0x70, 0x03, 0x67, 0x91, 0x8a, 0xe9, 0xc1, 0xca, 0x58, 0x65, + 0xcb, 0xcd, 0xcc, 0xbc, 0xcc, 0xe7, 0x49, 0x4b, 0x53, 0xe9, 0x16, 0xf1, + 0x1e, 0x8b, 0x10, 0x62, 0xfa, 0x95, 0xb0, 0xc1, 0xc7, 0xfa, 0xc1, 0x58, + 0xde, 0x26, 0xf1, 0x16, 0x93, 0x75, 0xe1, 0xdb, 0xdb, 0x7b, 0x5b, 0xf8, + 0x65, 0x9e, 0x58, 0x99, 0x23, 0x45, 0x6c, 0x92, 0x48, 0xaf, 0x0a, 0x5b, + 0xeb, 0xc3, 0x78, 0xac, 0x6e, 0x15, 0x89, 0xfe, 0x12, 0x38, 0xad, 0x17, + 0xbb, 0x59, 0xf1, 0x08, 0xb8, 0x3e, 0x7f, 0x60, 0x83, 0x00, 0x1a, 0xeb, + 0x9e, 0x3f, 0x97, 0xa1, 0x1e, 0xca, 0xcc, 0xd7, 0x82, 0x59, 0x20, 0x67, + 0x32, 0xc7, 0xf2, 0x91, 0xc7, 0x1d, 0x2a, 0xb5, 0xce, 0xa5, 0x24, 0xb3, + 0xb1, 0x03, 0x80, 0x07, 0xa1, 0xcd, 0x54, 0x5b, 0x9b, 0x88, 0x67, 0x48, + 0xae, 0x2e, 0x15, 0x95, 0x86, 0x37, 0x31, 0x1c, 0x7b, 0x55, 0x79, 0x42, + 0x90, 0xf2, 0x0b, 0x94, 0xda, 0x2b, 0x8d, 0xcd, 0x35, 0xa1, 0xd9, 0x07, + 0x77, 0x73, 0xa8, 0xf0, 0x4d, 0xc8, 0x83, 0xc5, 0xb0, 0x5c, 0x5d, 0xbc, + 0x71, 0x42, 0xc1, 0xc6, 0xe2, 0x70, 0x01, 0x23, 0x8c, 0xd7, 0xb4, 0x89, + 0xed, 0xda, 0x3c, 0xac, 0xb1, 0xec, 0x23, 0x39, 0x0c, 0x31, 0x8a, 0xf9, + 0xba, 0xd7, 0x59, 0x86, 0x35, 0xc3, 0x44, 0xd2, 0x30, 0xfe, 0x20, 0x7b, + 0xd4, 0xef, 0xe2, 0x59, 0x25, 0x01, 0x52, 0xdd, 0x8a, 0xa9, 0xce, 0x59, + 0xab, 0xa2, 0x18, 0xa7, 0x4e, 0x36, 0x49, 0x33, 0x9a, 0xb5, 0x37, 0x29, + 0x5c, 0xf7, 0xbb, 0x2b, 0x6b, 0x4b, 0x4b, 0x7f, 0xb3, 0xd8, 0xb4, 0x49, + 0x6f, 0x82, 0xd9, 0x0d, 0xb8, 0xef, 0x27, 0xae, 0x7f, 0x2a, 0x9d, 0xe5, + 0x92, 0x1b, 0x68, 0xc0, 0x9e, 0x06, 0x20, 0xaa, 0xb3, 0x3b, 0x6d, 0xcf, + 0x20, 0x13, 0xd7, 0xf4, 0xaf, 0x24, 0xd2, 0x75, 0xd8, 0xfe, 0xce, 0xee, + 0xf7, 0x31, 0xc2, 0xf2, 0x71, 0xf6, 0x7f, 0x2c, 0x11, 0x8f, 0xad, 0x4e, + 0xda, 0xe6, 0x8f, 0x30, 0x74, 0x93, 0x4f, 0xb6, 0x66, 0xf2, 0xce, 0x1d, + 0x46, 0x14, 0xb5, 0x64, 0xb3, 0x54, 0xa2, 0xfd, 0xcb, 0x5b, 0xcf, 0xfe, + 0x01, 0xcf, 0xec, 0x55, 0xf7, 0x3d, 0x2e, 0xd6, 0xee, 0x49, 0xb5, 0xfb, + 0x9b, 0x48, 0xee, 0x61, 0x9a, 0x01, 0x0a, 0xca, 0x02, 0x30, 0xca, 0x36, + 0x70, 0x57, 0x8e, 0xbd, 0x8f, 0xe3, 0x5a, 0xd1, 0xc1, 0xb8, 0x1f, 0xde, + 0x60, 0x0e, 0xe6, 0xbc, 0x1f, 0x4f, 0xd5, 0xe0, 0xb1, 0xd4, 0x64, 0x9d, + 0x01, 0xb7, 0x29, 0x9c, 0xb2, 0xb1, 0xe3, 0x3d, 0x86, 0x0d, 0x32, 0xeb, + 0xc6, 0xf7, 0x77, 0x10, 0x98, 0xc5, 0xe5, 0xd7, 0xca, 0x72, 0x7f, 0x7e, + 0xc4, 0x7f, 0x3a, 0x6b, 0x34, 0x97, 0x2b, 0x49, 0x6a, 0x57, 0xb1, 0x49, + 0x9e, 0xa7, 0xe2, 0xcb, 0xef, 0xec, 0xe9, 0xad, 0x03, 0x4a, 0x0b, 0x7c, + 0xcc, 0x83, 0x0a, 0x72, 0xdd, 0xba, 0xd7, 0x98, 0x6b, 0x3e, 0x26, 0xbd, + 0xd6, 0xae, 0x83, 0xdc, 0x79, 0x49, 0xb5, 0x76, 0xf9, 0x48, 0xb8, 0x02, + 0xb0, 0xa6, 0xd7, 0x27, 0xbc, 0x2a, 0xf3, 0xdc, 0x4b, 0x2e, 0x07, 0xca, + 0x59, 0x8b, 0x63, 0xdb, 0x9a, 0xa5, 0x25, 0xc9, 0x98, 0xb1, 0x57, 0x2a, + 0x7f, 0x5a, 0xe1, 0x9c, 0xa5, 0x52, 0x6e, 0x6f, 0x76, 0x74, 0xba, 0xbe, + 0xe2, 0x82, 0xe8, 0x6e, 0x46, 0x12, 0x46, 0x18, 0x2a, 0x9e, 0xbe, 0xf5, + 0x5e, 0x76, 0x6b, 0x76, 0x2a, 0xae, 0xa4, 0x66, 0xb2, 0x96, 0x59, 0x44, + 0xbd, 0x4a, 0x90, 0x7e, 0xf7, 0x6a, 0x1c, 0x4b, 0xbc, 0xb3, 0x49, 0xb9, + 0x4f, 0x20, 0xd5, 0xaa, 0x6e, 0x5b, 0xb2, 0x14, 0xdb, 0xe8, 0x69, 0x43, + 0x21, 0x79, 0x08, 0x3c, 0xe4, 0x7e, 0x55, 0xa7, 0x3e, 0x9d, 0x24, 0xd6, + 0xd1, 0x32, 0x5c, 0x21, 0x18, 0xc6, 0x07, 0x27, 0xf2, 0x15, 0x8d, 0xa7, + 0x42, 0xb7, 0x73, 0x18, 0xcc, 0x81, 0x58, 0x0c, 0x82, 0xc7, 0x02, 0xb6, + 0x6c, 0xac, 0x6e, 0xc4, 0x8e, 0xb6, 0xf2, 0xae, 0x70, 0x46, 0xe5, 0x6e, + 0x9f, 0x8d, 0x67, 0x36, 0x95, 0xf9, 0x99, 0xa3, 0x8e, 0x9a, 0x98, 0xae, + 0xc6, 0x19, 0x4e, 0x58, 0xfc, 0xbd, 0x0f, 0x4a, 0xf6, 0x2f, 0x0f, 0xea, + 0x8b, 0xa4, 0x78, 0x2b, 0x4a, 0x96, 0x48, 0x27, 0xb9, 0x13, 0x02, 0xa8, + 0x62, 0x8f, 0xf8, 0x89, 0x24, 0x03, 0x9f, 0xc7, 0x9a, 0xf1, 0xbd, 0x4e, + 0xd2, 0xee, 0x09, 0x84, 0x33, 0xab, 0x73, 0xc8, 0x26, 0xba, 0xcf, 0x0f, + 0x6b, 0xba, 0xf6, 0x9b, 0xa4, 0xfd, 0x86, 0xd2, 0xf1, 0x4c, 0x40, 0x65, + 0x54, 0xe1, 0x8a, 0x8f, 0x41, 0x9e, 0x95, 0xbe, 0x0e, 0xab, 0x83, 0xe6, + 0x89, 0x94, 0xa2, 0xa5, 0xa3, 0x47, 0xa5, 0xdf, 0xe8, 0xa9, 0xae, 0x68, + 0x52, 0x49, 0x73, 0xa6, 0xa2, 0xdf, 0x4d, 0x16, 0x0c, 0x3e, 0x62, 0x92, + 0xac, 0x33, 0x8f, 0x9a, 0xb8, 0x3f, 0x18, 0x69, 0x57, 0x9e, 0x1e, 0xf0, + 0xba, 0x69, 0xc1, 0x20, 0x6d, 0x36, 0x49, 0xc1, 0x42, 0xed, 0x99, 0xa3, + 0x38, 0xce, 0x09, 0x1c, 0x1e, 0x41, 0xe4, 0x53, 0x5b, 0xe2, 0x06, 0xaf, + 0x24, 0x91, 0x46, 0xd2, 0xc7, 0x08, 0xc1, 0x57, 0x74, 0x4e, 0x73, 0xeb, + 0x9f, 0xf0, 0xac, 0xff, 0x00, 0x11, 0xd9, 0xde, 0xcf, 0xa2, 0x59, 0x6a, + 0xb7, 0x3a, 0xab, 0xdc, 0x8b, 0x89, 0x48, 0x48, 0xa4, 0x72, 0xdb, 0x47, + 0xa8, 0xae, 0xb9, 0x62, 0x79, 0xe9, 0xbb, 0xef, 0xb0, 0x9d, 0x08, 0xde, + 0xf0, 0x31, 0x74, 0xdf, 0x39, 0xa3, 0x11, 0xab, 0x80, 0x83, 0x90, 0x71, + 0x9c, 0x55, 0xff, 0x00, 0xb5, 0x5a, 0x90, 0xf1, 0x4a, 0x30, 0xb9, 0x2b, + 0x80, 0x3a, 0x1f, 0x5a, 0x86, 0xce, 0xda, 0x17, 0x50, 0xc6, 0xe1, 0x50, + 0x0e, 0xa8, 0x9c, 0x13, 0x55, 0x35, 0x1b, 0x65, 0x0f, 0x21, 0x85, 0xc9, + 0x57, 0x6e, 0x14, 0xd6, 0x37, 0x6a, 0x36, 0x34, 0x8b, 0x69, 0x91, 0x9b, + 0x64, 0x9e, 0x09, 0x76, 0xb0, 0x0b, 0x18, 0x6d, 0xa0, 0x75, 0xc5, 0x6d, + 0xf8, 0x67, 0x42, 0xd2, 0x62, 0xc5, 0xde, 0xb1, 0x7a, 0xb1, 0x9d, 0xbb, + 0xa3, 0xb6, 0x6e, 0x37, 0xfd, 0x6a, 0x92, 0x42, 0x21, 0xd2, 0x1b, 0xf7, + 0x99, 0x7d, 0xbf, 0x29, 0x3f, 0x4e, 0x95, 0xaf, 0xaa, 0xc3, 0x24, 0x9e, + 0x16, 0x17, 0xda, 0xa8, 0x2d, 0x34, 0x52, 0x28, 0x43, 0x1c, 0x58, 0xdc, + 0x87, 0x18, 0xcb, 0xf4, 0xfc, 0x2b, 0x1c, 0x43, 0xb7, 0x2d, 0x8d, 0x61, + 0x15, 0x67, 0x26, 0xb5, 0x46, 0x04, 0xf7, 0x29, 0x6d, 0x75, 0x34, 0xb6, + 0xee, 0x63, 0x88, 0xb1, 0xc4, 0x79, 0x38, 0x02, 0xa1, 0xb7, 0x9b, 0x10, + 0xb1, 0x11, 0x82, 0x87, 0x9e, 0xa6, 0xb2, 0x2e, 0x2e, 0x43, 0xb3, 0x46, + 0x8d, 0x92, 0x39, 0x50, 0x6a, 0x7b, 0x3b, 0xc6, 0x48, 0x4c, 0x66, 0x2d, + 0xcc, 0xfc, 0x0e, 0xf4, 0x45, 0xb3, 0x9b, 0x9a, 0xec, 0xdd, 0xb0, 0xd4, + 0xae, 0xa0, 0xb8, 0x57, 0xb2, 0x8e, 0x44, 0xb8, 0x1d, 0x36, 0x12, 0x01, + 0x5a, 0xdb, 0xb7, 0xbb, 0x96, 0xe2, 0x23, 0x3c, 0x88, 0xa9, 0x27, 0x21, + 0xcf, 0x7c, 0xfd, 0x6b, 0x0e, 0xc2, 0xca, 0xfd, 0x95, 0x26, 0x81, 0xd5, + 0x20, 0x73, 0xf3, 0x0d, 0xd9, 0x22, 0xb6, 0x6c, 0x2d, 0x23, 0xb7, 0xb8, + 0x9d, 0x91, 0xce, 0xc9, 0x7f, 0x81, 0xbd, 0x6b, 0xa2, 0x17, 0x2a, 0x37, + 0x22, 0xb7, 0xd5, 0xe3, 0x92, 0x63, 0x6c, 0x64, 0x22, 0x65, 0x38, 0x05, + 0xf8, 0xcd, 0x5d, 0x74, 0xf3, 0x19, 0x59, 0x88, 0xdc, 0xbd, 0x6a, 0xa4, + 0xba, 0x4d, 0xbb, 0x5d, 0x79, 0xc3, 0x1e, 0xf8, 0xa9, 0xde, 0xe2, 0x34, + 0x6d, 0xa5, 0x87, 0xd6, 0xad, 0x69, 0xb9, 0xa2, 0xb9, 0x1d, 0xc0, 0x92, + 0x38, 0x19, 0x61, 0x93, 0x6f, 0x73, 0x91, 0x9a, 0x96, 0x07, 0x93, 0xc9, + 0x4d, 0xcd, 0x96, 0xee, 0x71, 0x54, 0x75, 0x17, 0x12, 0x59, 0x31, 0x56, + 0x2a, 0x7d, 0xaa, 0x5b, 0x69, 0x14, 0x43, 0x18, 0x07, 0x00, 0x0a, 0x69, + 0xea, 0x5f, 0xd9, 0x2e, 0x3b, 0x8c, 0x1c, 0xf2, 0x3b, 0xd6, 0x55, 0xe2, + 0xa5, 0xcd, 0x94, 0xdc, 0x95, 0x53, 0x91, 0x56, 0xa7, 0xb9, 0x58, 0xa3, + 0x77, 0x39, 0xc0, 0x1d, 0x6b, 0x29, 0x64, 0x59, 0xf4, 0x82, 0xd2, 0x36, + 0xdc, 0x92, 0xc7, 0x1f, 0x5a, 0x6d, 0x89, 0x23, 0xbf, 0xf8, 0x65, 0x6f, + 0xe1, 0xfb, 0x1d, 0x39, 0x25, 0x9e, 0xd6, 0x06, 0xbd, 0x67, 0xdb, 0xe7, + 0xc8, 0xa1, 0x99, 0x7d, 0x00, 0xcf, 0x4a, 0xf5, 0x60, 0x3a, 0x15, 0x1c, + 0x1f, 0x6a, 0xf9, 0xeb, 0x4c, 0x92, 0xe6, 0xcb, 0xc3, 0x5f, 0x6a, 0x89, + 0x7f, 0x77, 0x24, 0xd8, 0x2c, 0x0f, 0x38, 0xf5, 0xaf, 0x4a, 0xd1, 0x7c, + 0x7f, 0xa7, 0x2e, 0x9a, 0x62, 0x9e, 0x67, 0xf3, 0xa3, 0x1d, 0x5c, 0x83, + 0x9f, 0xc6, 0xb8, 0xe8, 0x62, 0xdd, 0x39, 0x49, 0x4b, 0xe1, 0xd4, 0xc6, + 0x5a, 0xca, 0xc7, 0x51, 0xaf, 0x5c, 0x1b, 0x7b, 0x48, 0xdf, 0xec, 0x66, + 0xe0, 0x09, 0x14, 0x95, 0x0b, 0x9c, 0x73, 0x5e, 0x09, 0xf1, 0x42, 0xf3, + 0x4b, 0xbe, 0xd7, 0xe0, 0xb9, 0xd3, 0xed, 0x25, 0xb5, 0xb9, 0x75, 0x2b, + 0x72, 0x24, 0x40, 0xa4, 0xb0, 0x3c, 0x70, 0x0f, 0x5a, 0xf4, 0x89, 0xfe, + 0x23, 0x03, 0x61, 0x72, 0xd1, 0x45, 0xe6, 0x3c, 0x63, 0x71, 0xc8, 0xf9, + 0x71, 0xda, 0xbc, 0x9f, 0xc4, 0x97, 0x0f, 0xab, 0x4e, 0x9a, 0x9c, 0xcc, + 0xa2, 0x59, 0x5d, 0x98, 0xc2, 0xab, 0x85, 0x5e, 0x7d, 0x7b, 0xd6, 0xbf, + 0x5a, 0xa5, 0x5a, 0x0f, 0xa3, 0x12, 0x93, 0x8c, 0x95, 0x86, 0x69, 0xf2, + 0x31, 0x30, 0xa1, 0xc9, 0x64, 0x18, 0x39, 0xad, 0x59, 0x67, 0x58, 0xe3, + 0x6e, 0x39, 0xfa, 0x56, 0x35, 0xa3, 0xaa, 0xdd, 0xab, 0xaf, 0x19, 0xed, + 0xf8, 0x54, 0xd7, 0x97, 0xb3, 0x31, 0x51, 0x12, 0x0c, 0x67, 0xbd, 0x38, + 0xbd, 0x0e, 0xb9, 0x5b, 0x43, 0x41, 0xa5, 0x25, 0x13, 0x0c, 0x3a, 0xd5, + 0x84, 0x21, 0x93, 0x95, 0xe3, 0xb8, 0x35, 0x9e, 0xcb, 0xe6, 0x44, 0x84, + 0x9d, 0xad, 0x8e, 0xc6, 0xad, 0x19, 0x96, 0x38, 0x94, 0x3c, 0x98, 0xf5, + 0x22, 0xac, 0x97, 0x6b, 0x0b, 0x3a, 0xb9, 0x01, 0x6d, 0x90, 0xbc, 0xce, + 0x42, 0xa8, 0x51, 0x9a, 0x82, 0xe1, 0xa7, 0xb6, 0x95, 0x56, 0xe7, 0x78, + 0x94, 0x72, 0x59, 0xba, 0x83, 0x5a, 0x72, 0x78, 0xb2, 0x1d, 0x36, 0xda, + 0x28, 0xf4, 0xb8, 0x87, 0x9a, 0x9c, 0x99, 0x1f, 0x07, 0x9e, 0xf8, 0xae, + 0x6e, 0xf6, 0xf8, 0xdd, 0x5d, 0x79, 0xf7, 0x12, 0x16, 0x95, 0xdb, 0x71, + 0xed, 0xcd, 0x72, 0x4a, 0xa4, 0x9c, 0x9e, 0x86, 0x52, 0x92, 0x2c, 0xf9, + 0x10, 0xdd, 0x4d, 0x33, 0xcc, 0x48, 0x91, 0xb9, 0xdd, 0xd3, 0xf2, 0x15, + 0x3a, 0x66, 0x18, 0xb8, 0x90, 0x32, 0x81, 0x8c, 0x9a, 0xc8, 0xb9, 0xbd, + 0x71, 0x2a, 0x82, 0xb8, 0xc2, 0xf2, 0x3d, 0xe9, 0x4e, 0xa4, 0x04, 0x18, + 0x64, 0xda, 0xa0, 0x7d, 0xef, 0x7a, 0xe8, 0x84, 0x94, 0x55, 0x91, 0x2a, + 0x49, 0x0b, 0x2e, 0xa0, 0xdf, 0x6b, 0x36, 0xe5, 0x08, 0xe3, 0x21, 0xa9, + 0xa6, 0x43, 0xbc, 0x03, 0xfa, 0x54, 0x39, 0x13, 0x11, 0x32, 0x81, 0xb8, + 0x2e, 0x3f, 0x0a, 0x8d, 0x77, 0xc8, 0xfc, 0x30, 0xc5, 0x5c, 0xa4, 0xb9, + 0x4b, 0x8c, 0xd5, 0xee, 0x8b, 0xce, 0xca, 0x30, 0x3a, 0x8e, 0x86, 0xb3, + 0xe4, 0x53, 0xb5, 0x88, 0xe5, 0x73, 0xcd, 0x59, 0x55, 0x70, 0x30, 0xcd, + 0xee, 0x2a, 0x39, 0x14, 0x04, 0xdc, 0x09, 0xf7, 0x19, 0xae, 0x53, 0xaa, + 0xec, 0xa7, 0x69, 0x0c, 0x26, 0x72, 0x5c, 0x36, 0x49, 0xc0, 0x20, 0xd5, + 0xe8, 0xe4, 0x51, 0x3a, 0xdb, 0x33, 0x60, 0xa3, 0x65, 0x49, 0x1f, 0x7e, + 0xaa, 0xd9, 0x46, 0x67, 0xf3, 0x3f, 0x78, 0xca, 0xaa, 0xd9, 0xc7, 0x4a, + 0x9d, 0x1d, 0xbc, 0xa2, 0x48, 0x5e, 0xe0, 0x7a, 0xd6, 0xcf, 0xe1, 0x31, + 0x72, 0xb3, 0x2e, 0x5c, 0xba, 0xc8, 0x9b, 0x03, 0x1e, 0x39, 0xe4, 0xd4, + 0x10, 0xca, 0x23, 0xf9, 0x09, 0xe3, 0xb0, 0xaa, 0x9e, 0x73, 0x22, 0x70, + 0x48, 0xcf, 0x40, 0x45, 0x20, 0x98, 0xee, 0x04, 0x91, 0x9e, 0xf9, 0xac, + 0x51, 0x9c, 0xab, 0xdc, 0xba, 0xdb, 0x4b, 0xf4, 0x24, 0x7b, 0xd1, 0x1b, + 0xac, 0x33, 0x09, 0x0f, 0x4f, 0x4a, 0x86, 0x37, 0x99, 0x8b, 0x6c, 0x6c, + 0x29, 0xf5, 0xa7, 0xa9, 0x94, 0xb0, 0x69, 0x97, 0x23, 0xa7, 0x15, 0x51, + 0x95, 0xc1, 0x55, 0xbe, 0xc6, 0xcd, 0xb5, 0xf4, 0x42, 0xf2, 0x23, 0x3a, + 0xb3, 0xc3, 0x9c, 0x14, 0x03, 0xef, 0x7b, 0x57, 0x4f, 0xaa, 0xe9, 0x16, + 0xb7, 0x7a, 0x2d, 0xb5, 0xf6, 0x94, 0x92, 0x2d, 0xc4, 0x3f, 0x33, 0x5a, + 0xcb, 0x90, 0xcc, 0x07, 0x19, 0x19, 0xeb, 0x5c, 0x6c, 0x72, 0x18, 0xe3, + 0x02, 0x23, 0xb6, 0x4c, 0xf0, 0x4d, 0x74, 0xfa, 0x5d, 0xcd, 0xe5, 0x95, + 0xf4, 0x56, 0xba, 0xc4, 0x91, 0xf9, 0x6e, 0xc1, 0xb6, 0x3b, 0xe0, 0x85, + 0x3c, 0x82, 0xa7, 0xd6, 0xa2, 0x4b, 0x5b, 0xb7, 0x62, 0xa4, 0xe5, 0x6b, + 0xa3, 0x13, 0x4d, 0xd6, 0xde, 0xea, 0xf9, 0xed, 0x6e, 0x21, 0x6b, 0x79, + 0x94, 0x7d, 0xdf, 0xf1, 0xad, 0x55, 0xbd, 0x4f, 0x3b, 0x67, 0x98, 0x37, + 0x7a, 0x66, 0xaf, 0x58, 0xf8, 0x72, 0x3d, 0x63, 0xc5, 0x7a, 0xa4, 0xaf, + 0x7e, 0x3c, 0xd8, 0x81, 0xf2, 0x37, 0x00, 0x37, 0x2f, 0x6a, 0xa7, 0x79, + 0xf0, 0xfe, 0xee, 0xcf, 0x50, 0x5b, 0xc9, 0xaf, 0x4a, 0x6f, 0x39, 0xd9, + 0x1a, 0xee, 0xe7, 0xb8, 0xac, 0xea, 0x57, 0x8c, 0x77, 0x66, 0x91, 0x96, + 0x8a, 0xe7, 0xa3, 0xf8, 0x60, 0xcd, 0xff, 0x00, 0x08, 0x6c, 0x9e, 0x71, + 0x07, 0x89, 0x36, 0xe3, 0xd3, 0x26, 0xa6, 0x83, 0xfe, 0x45, 0xd5, 0x1f, + 0xec, 0x9a, 0x9f, 0x44, 0x88, 0x5b, 0xf8, 0x6d, 0x15, 0x98, 0x4a, 0x81, + 0x5b, 0xb6, 0x32, 0x32, 0x7b, 0x53, 0x13, 0x03, 0x41, 0x3b, 0x06, 0x17, + 0x07, 0x03, 0xd3, 0x9a, 0x71, 0x97, 0x33, 0x5e, 0x87, 0x55, 0x37, 0x75, + 0xf3, 0x47, 0x00, 0xce, 0xc6, 0x46, 0x40, 0x71, 0xf3, 0x1f, 0xe7, 0x5e, + 0x89, 0xe1, 0x93, 0xff, 0x00, 0x12, 0x18, 0xb2, 0x38, 0xdc, 0x7f, 0x9d, + 0x79, 0x8d, 0xcb, 0xb0, 0x98, 0x8c, 0x1f, 0xbe, 0x4e, 0x47, 0xd6, 0xbd, + 0x13, 0xc3, 0xb7, 0x02, 0x3f, 0x0a, 0x24, 0xc4, 0xe4, 0x29, 0x63, 0xfa, + 0xd4, 0x51, 0xd2, 0xa3, 0x66, 0xb5, 0xbd, 0xe8, 0x25, 0xe6, 0x6c, 0x11, + 0xb5, 0xdf, 0xfd, 0xe1, 0xfc, 0xaa, 0x2f, 0x18, 0xbf, 0xfc, 0x51, 0x97, + 0x6c, 0x5b, 0x19, 0x40, 0x3f, 0x51, 0x55, 0x6e, 0x75, 0x28, 0x6c, 0xe4, + 0x26, 0x62, 0x40, 0x25, 0x00, 0x3e, 0x84, 0xee, 0xff, 0x00, 0x0a, 0xe6, + 0x3c, 0x5d, 0xaf, 0xbd, 0xd6, 0x9b, 0xf6, 0x54, 0x2e, 0x23, 0x66, 0x5c, + 0xab, 0x0e, 0x41, 0xc1, 0xe2, 0xbb, 0x15, 0x4e, 0x58, 0xbf, 0x33, 0x8e, + 0x51, 0xbc, 0xa3, 0xe4, 0x70, 0xc8, 0xe6, 0x65, 0x5d, 0xa7, 0x22, 0xba, + 0xff, 0x00, 0x87, 0xe0, 0x2f, 0x88, 0x14, 0x13, 0x93, 0x8e, 0x0d, 0x72, + 0x10, 0xa3, 0xc6, 0xac, 0x0b, 0x82, 0x07, 0x41, 0xd0, 0xd7, 0x59, 0xe0, + 0x37, 0x6f, 0xed, 0xe5, 0x2c, 0x00, 0x23, 0x1f, 0x2e, 0x79, 0x34, 0x93, + 0xb3, 0x57, 0xf2, 0x12, 0xd5, 0xe9, 0xe6, 0x7b, 0x19, 0x02, 0x91, 0x89, + 0x3d, 0x28, 0xce, 0x69, 0x6b, 0xd1, 0xb9, 0xc3, 0x61, 0xb8, 0xc8, 0xe4, + 0x53, 0x36, 0x73, 0x52, 0xf1, 0x47, 0xd2, 0xa9, 0x32, 0x59, 0xc3, 0x78, + 0xaf, 0x70, 0xd7, 0xe3, 0x00, 0x8e, 0x2d, 0x38, 0xcf, 0xae, 0xe3, 0x5e, + 0x49, 0xae, 0xea, 0x12, 0xb1, 0xb8, 0x8d, 0x8e, 0xd1, 0xbc, 0x80, 0x17, + 0xa1, 0x39, 0xaf, 0x5a, 0xf1, 0x9c, 0xa2, 0x1d, 0x66, 0x16, 0xc7, 0x26, + 0xdb, 0xff, 0x00, 0x66, 0x35, 0xe2, 0x5a, 0xc0, 0x9e, 0x5b, 0xf9, 0x36, + 0x8f, 0x90, 0xb9, 0x63, 0xed, 0x5e, 0x5a, 0xff, 0x00, 0x79, 0x9b, 0x67, + 0xa5, 0x2f, 0xf7, 0x78, 0x58, 0x8f, 0x4e, 0xde, 0xd7, 0x28, 0x49, 0x21, + 0x77, 0x0a, 0xeb, 0x21, 0x82, 0x54, 0xbb, 0x8a, 0x45, 0x6c, 0x46, 0x3e, + 0xf1, 0xf4, 0x15, 0xcc, 0x69, 0xde, 0x63, 0x37, 0x94, 0x38, 0xe7, 0xb8, + 0xae, 0x99, 0xc4, 0xeb, 0x1a, 0xc2, 0xb2, 0x2b, 0x67, 0xae, 0x05, 0x5d, + 0x47, 0x76, 0x63, 0x4f, 0x44, 0x6c, 0x24, 0xcb, 0xf6, 0x9d, 0xd8, 0x1b, + 0x47, 0x02, 0xbb, 0x9f, 0x04, 0xb0, 0x63, 0x7a, 0x01, 0xfe, 0xe1, 0xff, + 0x00, 0xd0, 0xab, 0xcd, 0xa1, 0x33, 0x34, 0x81, 0x70, 0xb8, 0x1d, 0x4d, + 0x7a, 0x07, 0x80, 0x27, 0x42, 0x6f, 0xa2, 0x72, 0x37, 0xfc, 0x84, 0x0f, + 0x51, 0xcd, 0x3a, 0x32, 0xb4, 0x82, 0xaa, 0xf7, 0x4e, 0xdb, 0x72, 0xaf, + 0x39, 0xa3, 0xcc, 0x53, 0xde, 0x99, 0xb1, 0x7b, 0x0c, 0xd3, 0x59, 0x00, + 0xeb, 0x80, 0x2b, 0x67, 0x56, 0xa6, 0xfa, 0x1c, 0xc9, 0x23, 0x91, 0xf1, + 0x64, 0xaa, 0x35, 0x48, 0x89, 0xe0, 0x24, 0x59, 0xfd, 0x6b, 0x02, 0xed, + 0xc1, 0x58, 0xd9, 0x7f, 0x88, 0x66, 0xb3, 0x7c, 0x4d, 0xe2, 0x09, 0xa6, + 0xf1, 0x15, 0xdc, 0x6a, 0xc8, 0x63, 0x8b, 0x31, 0x2f, 0xca, 0x79, 0xc7, + 0xff, 0x00, 0x5e, 0xaa, 0xd8, 0xdf, 0x5c, 0x4f, 0x66, 0x86, 0xe4, 0x05, + 0x65, 0xc8, 0x1f, 0x4a, 0xe4, 0x94, 0x5b, 0x9f, 0x3b, 0x3d, 0x25, 0x25, + 0xec, 0xb9, 0x7c, 0x8f, 0x56, 0xf0, 0xb4, 0xe8, 0xfa, 0x0c, 0x4a, 0x0f, + 0xcc, 0xac, 0xca, 0x47, 0xa1, 0xc9, 0x3f, 0xd6, 0xb5, 0xae, 0xa1, 0x4b, + 0x8b, 0x59, 0x61, 0x75, 0x0c, 0xae, 0xa4, 0x10, 0x7b, 0xd7, 0x13, 0xf0, + 0xe7, 0x50, 0x37, 0x87, 0x50, 0x89, 0x4e, 0x63, 0x85, 0x97, 0x8c, 0x74, + 0x63, 0x9f, 0xf0, 0xae, 0xe8, 0xf4, 0x35, 0xe8, 0x53, 0xbb, 0x5a, 0x9e, + 0x6c, 0xb4, 0x91, 0xe2, 0x17, 0x2e, 0xc9, 0x33, 0x42, 0xce, 0x56, 0x48, + 0xc9, 0x46, 0x1f, 0x43, 0x59, 0xb2, 0x40, 0xd3, 0x38, 0x6d, 0xc3, 0x0a, + 0x7f, 0x3a, 0xdb, 0xd4, 0xed, 0xd6, 0x5d, 0x56, 0xfd, 0x9b, 0x03, 0x65, + 0xc4, 0x9f, 0x88, 0xdc, 0x6b, 0x22, 0x19, 0xa2, 0xc3, 0x2a, 0x10, 0x30, + 0x4f, 0x06, 0xbc, 0xe8, 0x24, 0xa7, 0x24, 0x77, 0x4e, 0xf6, 0x4d, 0x93, + 0x46, 0xa5, 0xdc, 0x22, 0x82, 0x49, 0xc0, 0x03, 0xde, 0xa5, 0xbc, 0xb1, + 0xbd, 0xd1, 0xef, 0xcc, 0x77, 0x28, 0xf6, 0xf3, 0x05, 0xdc, 0x8c, 0x0f, + 0x51, 0xea, 0x08, 0xa9, 0x34, 0x5d, 0xb2, 0x6b, 0x76, 0x48, 0xdb, 0x79, + 0xb8, 0x4d, 0xbc, 0xf5, 0xf9, 0x85, 0x77, 0x3f, 0x10, 0xad, 0x11, 0xb4, + 0xeb, 0x3b, 0xa2, 0x81, 0x9e, 0x29, 0xf6, 0x16, 0xf4, 0x56, 0x07, 0x3f, + 0xa8, 0x15, 0xa5, 0x5a, 0x6a, 0xa5, 0x29, 0x6b, 0xb1, 0x94, 0x1a, 0x73, + 0x51, 0x7d, 0x4e, 0x7f, 0x4c, 0xf8, 0x85, 0x24, 0x40, 0x43, 0x7d, 0x17, + 0x98, 0x80, 0x10, 0x1d, 0x7a, 0xee, 0xf5, 0x39, 0xae, 0x66, 0xf1, 0x1a, + 0x6b, 0xa9, 0xef, 0xe7, 0x9d, 0x1a, 0xd8, 0xbf, 0xcb, 0xbe, 0x4c, 0xb5, + 0x24, 0x9a, 0x7b, 0xdd, 0x6a, 0xd0, 0x59, 0xc0, 0x14, 0x34, 0xcc, 0xa8, + 0x99, 0xe8, 0x09, 0x38, 0xa9, 0xef, 0x34, 0xb9, 0x2c, 0x2e, 0xa7, 0xb1, + 0xb8, 0x44, 0x13, 0xc4, 0xdb, 0x4e, 0xde, 0x41, 0xcf, 0x20, 0x8a, 0xe2, + 0xa7, 0x39, 0xa8, 0xc6, 0x52, 0x77, 0x45, 0x46, 0x8b, 0x53, 0x69, 0x11, + 0xc4, 0x20, 0x45, 0xcc, 0x48, 0xa7, 0x70, 0xeb, 0x57, 0x84, 0x17, 0x3b, + 0x14, 0x84, 0x00, 0x11, 0xc6, 0xe3, 0x8c, 0x8a, 0x66, 0x83, 0x1e, 0x93, + 0x1e, 0x21, 0xbd, 0x49, 0xf7, 0x07, 0xe5, 0xd5, 0xc0, 0x51, 0xf8, 0x56, + 0x8e, 0xb1, 0x7f, 0x65, 0x05, 0xad, 0xc8, 0xb2, 0xbe, 0x9f, 0xec, 0xe3, + 0x68, 0x89, 0x0f, 0xf1, 0x0e, 0xe3, 0x24, 0x71, 0x57, 0x5e, 0xaa, 0x5b, + 0x6e, 0x37, 0x26, 0x95, 0x88, 0xf5, 0x6d, 0x52, 0xf3, 0x44, 0xb1, 0xb6, + 0xb7, 0x8e, 0xfe, 0x33, 0x1c, 0x91, 0x6f, 0x64, 0x84, 0x82, 0x54, 0x9e, + 0xc4, 0x8a, 0xe4, 0x22, 0xd4, 0x6e, 0x6e, 0xee, 0xbc, 0xb5, 0x87, 0x28, + 0x7b, 0xd5, 0xa9, 0x5e, 0x2b, 0xf9, 0x98, 0x44, 0xc5, 0x6d, 0xf0, 0x0f, + 0xef, 0x0e, 0x4e, 0x6b, 0x46, 0x08, 0x16, 0x3d, 0xbb, 0x14, 0x70, 0x3b, + 0x52, 0xa6, 0xf4, 0xd5, 0x15, 0x45, 0x5a, 0x3a, 0xee, 0x55, 0x5b, 0x69, + 0xdd, 0x3a, 0x60, 0x8e, 0x7a, 0xd7, 0x3f, 0xa9, 0xdb, 0xdd, 0xdb, 0xdc, + 0xac, 0x81, 0x46, 0x1b, 0xa6, 0xde, 0x6b, 0xb2, 0xde, 0x46, 0xe0, 0x40, + 0xac, 0x6d, 0x76, 0x09, 0x26, 0xb5, 0x57, 0x8c, 0x90, 0x57, 0xb0, 0xef, + 0x5a, 0x3d, 0x8a, 0x9e, 0xc6, 0x2c, 0xe6, 0xe5, 0x82, 0xc6, 0xe8, 0x79, + 0x1c, 0x00, 0x29, 0xd6, 0x56, 0x37, 0x4d, 0x20, 0x60, 0xdb, 0x06, 0x79, + 0x18, 0xc1, 0xa6, 0x43, 0x65, 0x7b, 0x2a, 0xa1, 0x9a, 0x66, 0x00, 0xae, + 0x57, 0x9e, 0x82, 0xb7, 0xac, 0x6d, 0x5a, 0x08, 0x13, 0x7c, 0x85, 0x98, + 0xfb, 0xe6, 0xa9, 0x25, 0x73, 0x9e, 0x2a, 0xef, 0x52, 0x85, 0xe5, 0xa4, + 0xa9, 0x13, 0x33, 0x11, 0x81, 0xdc, 0x90, 0x2b, 0x2a, 0x74, 0x66, 0xb5, + 0xde, 0xac, 0xbd, 0x7a, 0x03, 0xcd, 0x74, 0xfa, 0x87, 0x94, 0xb6, 0xed, + 0xe6, 0x72, 0x33, 0xc5, 0x61, 0xdf, 0xac, 0x2f, 0x16, 0xe8, 0x90, 0xa0, + 0x6e, 0xa4, 0x8a, 0x89, 0xc5, 0x73, 0x0a, 0x7a, 0xb2, 0xb4, 0x32, 0xb8, + 0x91, 0x56, 0x26, 0xc0, 0xcf, 0x39, 0xab, 0x17, 0x3a, 0x89, 0x40, 0x63, + 0x56, 0xdf, 0xee, 0x6b, 0x28, 0x48, 0xdb, 0x83, 0x0c, 0xe2, 0xa1, 0x95, + 0x9a, 0x57, 0x39, 0x70, 0xa3, 0xb6, 0x6b, 0x58, 0x3b, 0x46, 0xec, 0xcd, + 0x4a, 0xc8, 0x97, 0x57, 0x96, 0x54, 0xb7, 0x8e, 0x54, 0x3b, 0xdb, 0x3d, + 0x0f, 0x35, 0xb7, 0xa3, 0xe8, 0xe3, 0x55, 0xf0, 0x1e, 0xaf, 0x7c, 0xd6, + 0xf9, 0xbd, 0xb5, 0x65, 0x31, 0xba, 0x7c, 0xa0, 0x28, 0xe5, 0xbb, 0xf3, + 0xc6, 0x7f, 0x4a, 0xe6, 0x65, 0x8e, 0xe1, 0x71, 0xb9, 0x4e, 0xc1, 0xce, + 0x7b, 0x57, 0x59, 0xe1, 0x8f, 0x10, 0x45, 0xa7, 0xf8, 0x6b, 0x57, 0xb1, + 0x95, 0x5c, 0x8b, 0x90, 0x36, 0xed, 0xc6, 0x32, 0x46, 0x0e, 0x6a, 0x67, + 0x2d, 0x2e, 0x8d, 0x69, 0xc9, 0x3d, 0xce, 0x42, 0x09, 0x5c, 0xed, 0x2c, + 0xe4, 0x9c, 0xf7, 0xab, 0x20, 0xee, 0x90, 0xf1, 0xc5, 0x32, 0x68, 0x94, + 0x31, 0xf2, 0x42, 0x80, 0x4d, 0x3e, 0x27, 0x02, 0x3c, 0x0e, 0x2a, 0x27, + 0x34, 0xd1, 0x83, 0x95, 0xcb, 0x49, 0x2a, 0x22, 0x6d, 0x55, 0xcb, 0xf4, + 0xce, 0x69, 0x8d, 0x26, 0x38, 0x20, 0x86, 0xfa, 0x54, 0x1e, 0x62, 0xe6, + 0xa7, 0xb8, 0x95, 0x09, 0xf9, 0x09, 0x08, 0x7a, 0x67, 0xa8, 0xac, 0x52, + 0x49, 0x5c, 0x45, 0x88, 0x26, 0x92, 0xde, 0xe6, 0x19, 0x48, 0x2c, 0x14, + 0x86, 0x2b, 0x9c, 0x64, 0x7a, 0x56, 0xe6, 0xad, 0x7b, 0x6b, 0x70, 0x58, + 0xdb, 0xdb, 0x79, 0x4a, 0xe1, 0x49, 0x05, 0xb3, 0x8e, 0x3b, 0x1a, 0xe6, + 0x22, 0x93, 0x70, 0x3b, 0x8e, 0x73, 0xdc, 0xd5, 0xd8, 0xa7, 0x85, 0x6d, + 0x9e, 0xdb, 0x1b, 0xa4, 0x63, 0xf2, 0x49, 0xbc, 0x8d, 0x9f, 0x85, 0x4a, + 0x8e, 0xbe, 0x60, 0x6b, 0xf9, 0x66, 0x6b, 0x3d, 0xc2, 0x61, 0x90, 0xb8, + 0xdb, 0xf8, 0x55, 0x6d, 0x1f, 0xcc, 0x7b, 0x85, 0xb3, 0x90, 0x84, 0x62, + 0x19, 0x90, 0x63, 0x92, 0x7d, 0x2b, 0x9b, 0x76, 0xb9, 0x60, 0x47, 0x9b, + 0x9c, 0x1e, 0x00, 0x3c, 0x55, 0xbb, 0x1d, 0x46, 0xea, 0xc4, 0x86, 0x2c, + 0xa5, 0xb1, 0xc3, 0x32, 0xe4, 0x8f, 0xc6, 0xba, 0xea, 0x35, 0x34, 0xa2, + 0x8d, 0x61, 0xae, 0x86, 0xf5, 0xcd, 0xc1, 0x80, 0x4f, 0x80, 0xdb, 0x9b, + 0xe5, 0x00, 0x8c, 0x9c, 0xd6, 0x0c, 0x3a, 0x8c, 0x91, 0xbc, 0x89, 0xe6, + 0x02, 0x1b, 0xae, 0x46, 0x6a, 0x58, 0x35, 0x52, 0x19, 0x54, 0x36, 0x40, + 0x24, 0xfc, 0xdd, 0xaa, 0xa5, 0xe6, 0xe9, 0x57, 0xce, 0x01, 0x54, 0xb7, + 0x5c, 0x56, 0x09, 0x4a, 0x0f, 0x94, 0x89, 0x2e, 0x57, 0x74, 0x3d, 0xcc, + 0x71, 0x9c, 0x06, 0x19, 0xce, 0x40, 0xab, 0x52, 0x4e, 0x5e, 0x35, 0x2a, + 0x55, 0x57, 0xfb, 0xa0, 0xd6, 0x14, 0xcb, 0x23, 0xf2, 0x49, 0x23, 0xda, + 0xa5, 0xb5, 0x67, 0x88, 0x62, 0x40, 0x3e, 0x80, 0xf4, 0xad, 0x2c, 0x94, + 0x43, 0x9e, 0x5b, 0xb3, 0x4c, 0x23, 0xb8, 0x2e, 0xec, 0xca, 0x14, 0xfa, + 0xf3, 0x52, 0xbb, 0x46, 0x62, 0x0a, 0xaf, 0xb9, 0xb3, 0xf7, 0x8f, 0x7a, + 0xad, 0x2c, 0xc9, 0x72, 0xa1, 0x47, 0x3b, 0x47, 0x4c, 0xd4, 0x2a, 0x43, + 0x7e, 0xec, 0x3e, 0x31, 0xef, 0x52, 0x9e, 0x9a, 0x07, 0xb4, 0xd2, 0xc8, + 0xbb, 0x18, 0x0b, 0x2a, 0xe3, 0x70, 0x63, 0xd7, 0xd2, 0xae, 0x4c, 0x8a, + 0x51, 0x58, 0xf2, 0x17, 0xb9, 0xac, 0xc1, 0x2b, 0x2b, 0x28, 0x38, 0x2b, + 0x40, 0xb9, 0x6d, 0xcc, 0x19, 0xc8, 0x1f, 0x5a, 0x4d, 0xeb, 0x74, 0x0a, + 0x5a, 0xd9, 0x1a, 0x50, 0x81, 0x32, 0xb6, 0x13, 0x07, 0xf2, 0xae, 0x66, + 0x7d, 0xe7, 0x5d, 0xcc, 0xff, 0x00, 0x28, 0x52, 0x07, 0xe0, 0x2b, 0x48, + 0xca, 0xf2, 0x6d, 0xf9, 0xdb, 0x1d, 0x32, 0x29, 0xad, 0xa7, 0x41, 0x36, + 0x1a, 0x49, 0x24, 0xde, 0x7b, 0xfa, 0xd6, 0x90, 0xa9, 0xc8, 0xbd, 0xe2, + 0x94, 0xed, 0xa3, 0x2c, 0x5c, 0xea, 0x50, 0xc5, 0x6a, 0x76, 0xca, 0x18, + 0x91, 0xc6, 0x07, 0x4a, 0xa1, 0xa7, 0xdd, 0x85, 0x0e, 0x42, 0x31, 0x63, + 0xc8, 0x35, 0x2c, 0x96, 0xb0, 0xda, 0xc5, 0xb8, 0x82, 0xea, 0x3a, 0x06, + 0x35, 0x40, 0x5c, 0xb2, 0x49, 0x95, 0x00, 0x2f, 0xb0, 0xab, 0x55, 0x39, + 0xb6, 0x1a, 0xa9, 0x73, 0x4e, 0x5b, 0xe9, 0x59, 0x0c, 0x67, 0x27, 0x27, + 0x20, 0xd4, 0x12, 0xbc, 0xce, 0x77, 0xe4, 0x80, 0xa3, 0xfa, 0xd5, 0x31, + 0xa8, 0x2a, 0x8c, 0x9e, 0x4d, 0x07, 0x54, 0xf9, 0x0a, 0x85, 0xe2, 0xad, + 0x5c, 0xdf, 0x9a, 0x16, 0x1d, 0x26, 0xf7, 0x97, 0xcc, 0x07, 0x9a, 0x98, + 0x24, 0xaa, 0x8d, 0xb8, 0x67, 0x70, 0xaa, 0x0d, 0x7e, 0x39, 0xc0, 0xc5, + 0x49, 0x1d, 0xf6, 0x07, 0xad, 0x29, 0x5c, 0x71, 0x94, 0x0b, 0x0b, 0x11, + 0x4c, 0x91, 0x8e, 0xb5, 0x24, 0x32, 0xca, 0x93, 0x96, 0x18, 0x1c, 0xfe, + 0x75, 0x07, 0xdb, 0x33, 0x9f, 0x94, 0xd3, 0xd6, 0xf1, 0x0b, 0x2b, 0x30, + 0xdb, 0x8a, 0x13, 0x7d, 0x46, 0xd4, 0x5e, 0xc6, 0xd1, 0xf9, 0xe3, 0x65, + 0x78, 0x83, 0x29, 0x1c, 0x9e, 0xe6, 0xab, 0xdc, 0xda, 0x5b, 0x88, 0x02, + 0x47, 0x13, 0x6e, 0xed, 0x53, 0x5a, 0x48, 0x4f, 0xcc, 0xa0, 0x37, 0x1c, + 0x66, 0x9f, 0x34, 0xb1, 0xba, 0xf2, 0x40, 0x61, 0xd4, 0x1e, 0x2b, 0x99, + 0xf3, 0x46, 0x5a, 0x2d, 0x19, 0xcf, 0x2b, 0xc2, 0x56, 0x91, 0x51, 0x60, + 0x8e, 0xde, 0x30, 0x23, 0x42, 0xd2, 0x1e, 0x58, 0x1a, 0x0a, 0x80, 0xbc, + 0x00, 0x1b, 0xb8, 0x35, 0x39, 0x9e, 0x18, 0x42, 0x2a, 0x72, 0xed, 0xe9, + 0xeb, 0x40, 0x62, 0x37, 0xb6, 0x0a, 0xb0, 0xf5, 0x3d, 0x69, 0x4e, 0xa5, + 0xdd, 0xed, 0x64, 0x63, 0x39, 0x5d, 0xd9, 0x19, 0xb7, 0x12, 0xc8, 0xa0, + 0x0c, 0xe0, 0x67, 0x05, 0x85, 0x0b, 0xe7, 0x3c, 0x01, 0x55, 0xc9, 0xc9, + 0xe3, 0x9a, 0x74, 0xb1, 0xb8, 0x76, 0x23, 0xe7, 0xdf, 0xc9, 0x03, 0xb5, + 0x11, 0xca, 0xd0, 0x0c, 0x3c, 0x79, 0xc7, 0x38, 0xcd, 0x69, 0x04, 0xac, + 0x69, 0x4d, 0xc5, 0x6e, 0xc8, 0x4d, 0xb5, 0xc0, 0x24, 0xe4, 0x9c, 0xf5, + 0xe6, 0x9c, 0x91, 0x01, 0x20, 0x47, 0x53, 0xb7, 0x1c, 0x9a, 0x9d, 0x35, + 0x38, 0x64, 0x60, 0x16, 0x32, 0x49, 0xe8, 0x31, 0xde, 0xba, 0xdd, 0x2b, + 0x43, 0x03, 0x4a, 0x93, 0x50, 0xbd, 0x80, 0xf9, 0x6d, 0xc0, 0x8f, 0x1f, + 0x35, 0x15, 0xab, 0x46, 0x92, 0xbb, 0x37, 0x72, 0x8a, 0x39, 0x03, 0xe5, + 0x87, 0x55, 0x45, 0x55, 0x53, 0xd7, 0xda, 0x90, 0xc0, 0xaf, 0x26, 0xd8, + 0xcf, 0xe3, 0x53, 0x5c, 0x3d, 0xb9, 0xbb, 0x65, 0x48, 0xf6, 0xae, 0x78, + 0x14, 0x3a, 0x02, 0x08, 0x43, 0xb4, 0xe3, 0xb5, 0x1e, 0xd1, 0x3d, 0xd1, + 0x33, 0x71, 0x8d, 0xae, 0x85, 0x67, 0x8d, 0x54, 0x20, 0xde, 0x8c, 0x3e, + 0xf6, 0x7a, 0x1a, 0xae, 0xd2, 0x33, 0xb3, 0x36, 0xdc, 0xaf, 0xb5, 0x3b, + 0xec, 0xee, 0x70, 0x5d, 0xc1, 0x00, 0xf4, 0xf5, 0xa6, 0x31, 0x71, 0x13, + 0x2c, 0x67, 0x04, 0x9e, 0xfd, 0xa9, 0xc9, 0xdf, 0x63, 0x0e, 0x6b, 0xbb, + 0xc4, 0x96, 0xda, 0x5d, 0xb2, 0x82, 0x0e, 0x08, 0xfd, 0x6b, 0xd3, 0x7c, + 0x1f, 0xad, 0xc3, 0x05, 0xac, 0xd1, 0xcc, 0xa8, 0x96, 0x70, 0xe1, 0xa5, + 0xdf, 0xc3, 0x16, 0x3d, 0x31, 0xeb, 0x5e, 0x51, 0x10, 0x9d, 0x5f, 0x32, + 0x38, 0xf9, 0x7a, 0x11, 0x5a, 0xd0, 0xea, 0x92, 0x35, 0xec, 0x53, 0xdc, + 0x01, 0x26, 0xc1, 0x8c, 0x0f, 0x97, 0x38, 0xf5, 0xae, 0x5c, 0x45, 0x25, + 0x38, 0xf2, 0x8e, 0x32, 0x8c, 0x5d, 0xef, 0x76, 0x74, 0x9e, 0x34, 0x96, + 0x49, 0x75, 0x91, 0x78, 0xb3, 0x34, 0xb6, 0xae, 0xa0, 0x47, 0x26, 0xdf, + 0x97, 0x8e, 0xc0, 0xf7, 0xfa, 0xd6, 0x14, 0x97, 0x46, 0x18, 0xd1, 0xa2, + 0x99, 0x18, 0xcb, 0xd5, 0x01, 0xc6, 0xda, 0x6e, 0xb3, 0x7b, 0x35, 0xc9, + 0x41, 0x24, 0xed, 0x22, 0x8e, 0x44, 0x7f, 0xc2, 0x80, 0xf6, 0x15, 0x85, + 0x33, 0x9c, 0xe1, 0x07, 0x3e, 0xb5, 0xa5, 0x24, 0xd4, 0x62, 0x93, 0xd8, + 0x8a, 0x93, 0x6c, 0xd9, 0x79, 0x67, 0x80, 0xf9, 0xc7, 0x6f, 0x1c, 0x8d, + 0xa7, 0x38, 0xa5, 0x97, 0x55, 0xbe, 0xbd, 0xb6, 0x8e, 0x2b, 0x89, 0x1b, + 0xc9, 0x89, 0x89, 0x8d, 0x7d, 0x09, 0xef, 0x59, 0xd6, 0xef, 0x1f, 0x94, + 0x52, 0x62, 0xd9, 0x23, 0x23, 0x06, 0x90, 0xcc, 0xe8, 0xa5, 0x40, 0x24, + 0x11, 0x8a, 0xd9, 0xc5, 0x58, 0x94, 0xd9, 0x64, 0x4c, 0x91, 0xbe, 0xe6, + 0x73, 0x93, 0xef, 0xcd, 0x5a, 0x92, 0xe5, 0x44, 0x71, 0xb4, 0x65, 0xc8, + 0x56, 0xce, 0x5b, 0xad, 0x62, 0x00, 0x1c, 0x7e, 0xf0, 0x9c, 0xe7, 0xa5, + 0x58, 0x32, 0xae, 0xd0, 0xa0, 0x1e, 0x3b, 0xe6, 0x92, 0x76, 0xd0, 0x15, + 0xd6, 0xa5, 0xe3, 0x70, 0x8a, 0x1b, 0x25, 0xb3, 0x9f, 0x95, 0x47, 0x4a, + 0x24, 0xd5, 0x2e, 0xa5, 0xb5, 0x6b, 0x4b, 0x9b, 0xc9, 0x7e, 0xc6, 0x46, + 0x44, 0x20, 0xf1, 0xb8, 0x74, 0xaa, 0xab, 0x21, 0x68, 0xf2, 0x58, 0x1c, + 0x1c, 0x8c, 0x8e, 0xd5, 0x14, 0x81, 0x66, 0x6e, 0x80, 0x67, 0xa0, 0xcd, + 0x4b, 0x77, 0x7a, 0x8f, 0x99, 0xf4, 0x2b, 0xe0, 0xb6, 0xdd, 0xc9, 0xb4, + 0x8e, 0x86, 0xad, 0x47, 0x85, 0x40, 0xbc, 0x64, 0xf5, 0x35, 0x03, 0x46, + 0xe8, 0x48, 0x2d, 0x92, 0xbd, 0xa9, 0x22, 0xdc, 0x43, 0x12, 0x4e, 0x07, + 0x42, 0x46, 0x2a, 0xb5, 0x68, 0xce, 0xc6, 0xf5, 0x9d, 0xfc, 0xd6, 0xc8, + 0xaa, 0x8e, 0x49, 0x5e, 0x78, 0xf4, 0xad, 0xb8, 0xae, 0xee, 0x2e, 0x62, + 0x32, 0x5b, 0xa8, 0x75, 0x55, 0xfe, 0x21, 0xf3, 0x1f, 0xa5, 0x72, 0xb6, + 0xfe, 0x64, 0xd2, 0x2c, 0x49, 0xce, 0xe3, 0x81, 0x8a, 0xf6, 0x1f, 0x03, + 0x78, 0x6f, 0xfe, 0x11, 0xe8, 0x25, 0x96, 0xe8, 0x46, 0xf7, 0x12, 0x60, + 0xed, 0xea, 0x54, 0x7b, 0x1a, 0xa8, 0xd5, 0xe5, 0x56, 0x67, 0x45, 0x28, + 0x4a, 0x6f, 0x4d, 0x8e, 0x63, 0xfe, 0x11, 0xab, 0xe4, 0xd3, 0x5b, 0x52, + 0x60, 0xc9, 0x6f, 0x22, 0x07, 0xdc, 0xad, 0xce, 0x4f, 0xb7, 0x61, 0x59, + 0x90, 0xc4, 0x1e, 0x56, 0x12, 0x0c, 0x30, 0x1e, 0xb5, 0xeb, 0x9a, 0xc5, + 0xc4, 0x4d, 0xa2, 0xdd, 0x29, 0xf9, 0x3f, 0x76, 0xdf, 0x29, 0x18, 0xaf, + 0x24, 0x9a, 0xf1, 0x3c, 0xd7, 0x3b, 0x70, 0xc3, 0x8c, 0xa9, 0xad, 0x29, + 0xb4, 0xcd, 0xe5, 0x4d, 0x44, 0x49, 0x76, 0x79, 0x6c, 0x99, 0xe3, 0xa1, + 0x15, 0x56, 0x17, 0x20, 0x94, 0x66, 0x62, 0x05, 0x42, 0xf7, 0xf1, 0x90, + 0x49, 0xeb, 0xfa, 0xd3, 0x4d, 0xdc, 0x26, 0x32, 0xcd, 0x21, 0xc0, 0xe8, + 0x4f, 0x5a, 0xdb, 0x71, 0x5d, 0x24, 0x68, 0x6e, 0x59, 0x61, 0x65, 0x3c, + 0x29, 0x18, 0xe4, 0xd6, 0x4d, 0xe5, 0xbb, 0x9d, 0x3c, 0x42, 0xa7, 0x03, + 0x71, 0x07, 0x1e, 0x94, 0xa7, 0x50, 0x02, 0x12, 0xd1, 0x72, 0x07, 0x66, + 0xef, 0x59, 0xef, 0x7f, 0x34, 0x90, 0x05, 0x18, 0x12, 0x33, 0x60, 0x01, + 0xd3, 0x9a, 0x1e, 0xda, 0x82, 0x92, 0x36, 0x21, 0xbd, 0xf2, 0xbc, 0x28, + 0x34, 0xe8, 0xd5, 0x98, 0xf9, 0xa4, 0xe7, 0x3d, 0x85, 0x50, 0x68, 0xae, + 0x34, 0xe9, 0xf6, 0x5d, 0xc6, 0xe8, 0x3a, 0x90, 0x4f, 0x5a, 0x96, 0xee, + 0x19, 0x74, 0xdb, 0x64, 0xb6, 0xb8, 0x2d, 0x26, 0xe1, 0xb9, 0x18, 0x1e, + 0x01, 0x3d, 0x6a, 0x3d, 0x7e, 0xed, 0x5d, 0xe3, 0x29, 0x75, 0xe6, 0x92, + 0x39, 0x50, 0x49, 0x03, 0x81, 0xdc, 0xd7, 0x9f, 0x14, 0x9d, 0xfc, 0xce, + 0x79, 0x59, 0xdd, 0xf6, 0x2d, 0xe8, 0x9a, 0xda, 0x58, 0xcf, 0x71, 0x11, + 0x8f, 0xcf, 0x49, 0xd7, 0x62, 0x82, 0x33, 0xd4, 0xd5, 0x2d, 0x72, 0x77, + 0x92, 0xed, 0xc3, 0xa9, 0x8f, 0x6f, 0x0b, 0x1e, 0x3a, 0x56, 0x2a, 0xca, + 0xd1, 0xc9, 0xbc, 0x12, 0x84, 0x72, 0x08, 0xed, 0x52, 0x4f, 0x72, 0x66, + 0x93, 0xcc, 0x69, 0x0b, 0xc8, 0x79, 0x24, 0xf2, 0x4d, 0x52, 0x82, 0x4e, + 0xe9, 0x6a, 0x64, 0xa5, 0xa5, 0x98, 0xeb, 0x5b, 0xdf, 0x22, 0x6c, 0x93, + 0x96, 0xcd, 0x5c, 0x92, 0x79, 0x24, 0x98, 0xbc, 0x79, 0x0c, 0x7b, 0x76, + 0xac, 0x83, 0x0c, 0x8d, 0xf3, 0x85, 0xc1, 0xf7, 0xab, 0x31, 0x09, 0x76, + 0x00, 0x78, 0xf5, 0x35, 0xd5, 0x13, 0x7f, 0x68, 0x8d, 0x8b, 0x77, 0x95, + 0x94, 0x89, 0xa5, 0xdb, 0x53, 0x46, 0x42, 0xc4, 0xc1, 0x1c, 0x3f, 0x3d, + 0xeb, 0x1c, 0xbb, 0x1c, 0x11, 0xd0, 0x76, 0xf5, 0xa8, 0x84, 0xef, 0x14, + 0x8c, 0xc3, 0x8c, 0xf4, 0x5c, 0xd5, 0xb7, 0x62, 0xbd, 0xae, 0x85, 0xfb, + 0x9c, 0x34, 0xd9, 0x1c, 0xb0, 0xe3, 0x00, 0x62, 0xa1, 0x95, 0x55, 0x82, + 0xb4, 0xb9, 0x2d, 0xd0, 0x63, 0xb5, 0x44, 0x97, 0x6c, 0x58, 0x3e, 0x3e, + 0x63, 0xd6, 0xaf, 0xc5, 0x28, 0x96, 0x2c, 0xbf, 0xca, 0xd8, 0xfc, 0xeb, + 0x9a, 0x4d, 0xef, 0xb1, 0x8e, 0xec, 0xcf, 0x72, 0x84, 0x60, 0xb0, 0xfa, + 0x50, 0x8e, 0xca, 0xa5, 0x94, 0x16, 0x53, 0xd4, 0x1a, 0x9a, 0x54, 0x55, + 0xcb, 0x90, 0x3f, 0x2a, 0x89, 0x2e, 0x62, 0x04, 0x8c, 0x60, 0x11, 0x8c, + 0x53, 0x8f, 0x72, 0x56, 0x9b, 0x8b, 0x16, 0xff, 0x00, 0xa0, 0xef, 0x4e, + 0x4c, 0x89, 0x86, 0x38, 0xe6, 0x85, 0x67, 0x0b, 0x95, 0xc1, 0x53, 0xd8, + 0x52, 0x21, 0x24, 0xe4, 0x8e, 0x6a, 0xdb, 0x5c, 0xa5, 0xc6, 0xc5, 0xd0, + 0xea, 0x5c, 0x1e, 0xf5, 0x0b, 0xb6, 0x72, 0x01, 0xf9, 0xbd, 0x73, 0x4a, + 0xa8, 0x30, 0x3f, 0xbc, 0x7d, 0x4d, 0x40, 0x4a, 0xee, 0xc6, 0x40, 0xa8, + 0x56, 0xb1, 0xd4, 0xe7, 0x65, 0xa9, 0x09, 0xdf, 0x12, 0x49, 0xb8, 0x86, + 0x05, 0xb3, 0x8a, 0x8a, 0xdd, 0xc4, 0xf2, 0x2e, 0xc0, 0x40, 0x07, 0x1f, + 0x4a, 0x59, 0x5d, 0xdb, 0x3b, 0x30, 0x70, 0x7f, 0x3a, 0x2c, 0x8c, 0xc6, + 0x52, 0x1d, 0x42, 0xaf, 0x72, 0x29, 0xdd, 0xb5, 0xa9, 0x8c, 0x79, 0xa5, + 0xa9, 0x3b, 0xed, 0x96, 0x40, 0xa7, 0x70, 0xc9, 0xc6, 0xea, 0xd1, 0x3a, + 0x43, 0x44, 0x22, 0x8e, 0x48, 0x1c, 0x49, 0x29, 0x01, 0x30, 0x47, 0xcd, + 0x9e, 0x95, 0x9f, 0x71, 0x22, 0x49, 0xca, 0xca, 0x46, 0xd1, 0x80, 0xc2, + 0xac, 0x99, 0x2e, 0xbf, 0x72, 0x56, 0x49, 0x0c, 0x83, 0x05, 0x58, 0x75, + 0xe2, 0xb3, 0xbd, 0x99, 0x15, 0x16, 0xba, 0x97, 0xbf, 0xb2, 0xe2, 0xfb, + 0x6f, 0xd9, 0x33, 0x3a, 0xdc, 0xef, 0x0a, 0x23, 0xc0, 0xe4, 0xf7, 0x15, + 0x7e, 0xef, 0x44, 0x0b, 0x21, 0x6b, 0x39, 0xd6, 0x4d, 0x8b, 0x93, 0x19, + 0x38, 0x61, 0xea, 0x08, 0xaa, 0x71, 0x5a, 0x6a, 0xd7, 0xbb, 0x66, 0x44, + 0x92, 0x49, 0x4b, 0x03, 0xbf, 0x18, 0x20, 0x93, 0x81, 0xcf, 0xd6, 0x9f, + 0xa8, 0xc5, 0x75, 0x69, 0x04, 0x51, 0x5e, 0xd8, 0xcf, 0x14, 0xb1, 0x96, + 0x06, 0x6c, 0x7d, 0xe7, 0xf4, 0xcf, 0x7a, 0x98, 0xa9, 0x5f, 0xdd, 0x91, + 0x29, 0xf5, 0x29, 0x87, 0x0c, 0x54, 0x37, 0x18, 0x3c, 0xf1, 0x9a, 0xe9, + 0x75, 0xcf, 0x0c, 0x5d, 0xe9, 0xda, 0x65, 0xb6, 0xa7, 0xf6, 0xa4, 0xba, + 0xb6, 0x94, 0x07, 0x0c, 0xbd, 0x50, 0x7b, 0xfe, 0x75, 0x89, 0xa3, 0x5a, + 0x1b, 0xb9, 0x26, 0x32, 0x4f, 0x04, 0x3e, 0x58, 0xdc, 0x82, 0x5f, 0xe3, + 0x3e, 0x82, 0xa7, 0xf1, 0x37, 0x8b, 0x0e, 0xa7, 0xa7, 0xd9, 0xd8, 0x0b, + 0x5f, 0xb3, 0xb5, 0xa1, 0x2a, 0xea, 0xad, 0xf2, 0xb7, 0xbd, 0x6a, 0xdd, + 0xd9, 0xb2, 0xa8, 0x58, 0xd3, 0x35, 0x7b, 0x86, 0x8a, 0x78, 0x22, 0x5d, + 0xf2, 0x3a, 0x60, 0x48, 0x4e, 0x19, 0x14, 0x75, 0xc5, 0x7a, 0x8f, 0x85, + 0x27, 0x5d, 0x5b, 0x4e, 0x8e, 0x0b, 0xb5, 0x32, 0xca, 0x8a, 0x41, 0x79, + 0x53, 0x23, 0x1c, 0x74, 0xaf, 0x9f, 0x63, 0xbf, 0x28, 0xc0, 0x9c, 0x05, + 0xcf, 0x63, 0x5d, 0xc6, 0x83, 0xe3, 0xa9, 0x74, 0x91, 0x0e, 0xc9, 0x5c, + 0xc0, 0x06, 0x0c, 0x6e, 0xfc, 0x1f, 0xa5, 0x73, 0x57, 0xa5, 0xd8, 0x71, + 0x93, 0x67, 0xad, 0x1f, 0x2f, 0x4c, 0xb4, 0x9a, 0xdf, 0xcf, 0xf2, 0x11, + 0x89, 0x11, 0x19, 0x80, 0xd8, 0x0f, 0xa6, 0x6b, 0xcf, 0x6f, 0x3c, 0x6b, + 0xac, 0x45, 0x1b, 0x58, 0x47, 0x05, 0xb0, 0x0a, 0x4a, 0x96, 0x0a, 0x72, + 0x7f, 0x5a, 0xc4, 0xd7, 0xfc, 0x6a, 0x35, 0x49, 0xf2, 0xa7, 0xcb, 0xdc, + 0xd9, 0x7d, 0xac, 0x48, 0x7c, 0x74, 0xe3, 0xb5, 0x66, 0xd9, 0x4b, 0x3e, + 0xaf, 0x79, 0x1d, 0xbc, 0x2c, 0x23, 0x0c, 0xc3, 0x32, 0x3f, 0x41, 0x9e, + 0x33, 0x45, 0x18, 0x7b, 0x38, 0x39, 0x49, 0x9a, 0xf3, 0xf2, 0x97, 0xa6, + 0xba, 0xd5, 0x6e, 0x37, 0x15, 0x29, 0x18, 0x73, 0xf3, 0x01, 0xd2, 0xaf, + 0x47, 0xae, 0xeb, 0x91, 0x69, 0xff, 0x00, 0xd9, 0xf1, 0xdc, 0xa4, 0x76, + 0xfd, 0x08, 0x0a, 0x32, 0x7d, 0x79, 0xae, 0x73, 0x57, 0x3a, 0x9e, 0x8b, + 0xa8, 0xcd, 0xa7, 0x4e, 0xaa, 0x59, 0x1b, 0x86, 0x07, 0x86, 0x1d, 0x88, + 0xaa, 0xc3, 0x56, 0xbc, 0x55, 0x39, 0x45, 0x2d, 0xe9, 0x5b, 0xa7, 0x1b, + 0x5d, 0x14, 0xa5, 0x27, 0xbb, 0x3a, 0xfb, 0x8d, 0x4e, 0xf2, 0xe9, 0x5a, + 0x3b, 0xbb, 0xe9, 0x24, 0x89, 0xb6, 0xe6, 0x33, 0xdc, 0x8e, 0x95, 0x49, + 0x13, 0x66, 0xe6, 0xcb, 0x90, 0x4e, 0x72, 0xc7, 0x35, 0x84, 0xba, 0x95, + 0xc3, 0x0e, 0x62, 0x1e, 0xb5, 0x3c, 0x5a, 0xd2, 0x6c, 0xc4, 0x89, 0x20, + 0xfc, 0x2a, 0xd4, 0xd0, 0x9a, 0xee, 0x6b, 0x3c, 0xfd, 0x49, 0xe0, 0x63, + 0xa9, 0xa6, 0xdb, 0xea, 0x4d, 0x6f, 0x70, 0xb3, 0xdb, 0xce, 0x61, 0x98, + 0x7d, 0xd7, 0x5e, 0xb5, 0x8a, 0xf7, 0xe6, 0x77, 0xc6, 0xe6, 0x09, 0xd8, + 0x62, 0xab, 0x09, 0xa7, 0x12, 0x1d, 0xab, 0x83, 0xeb, 0x53, 0xcd, 0xad, + 0xca, 0xb6, 0x87, 0xa1, 0x2f, 0xc4, 0x0f, 0x14, 0x2e, 0xd0, 0xba, 0x8a, + 0x91, 0xea, 0xd0, 0x27, 0xf8, 0x53, 0xff, 0x00, 0xe1, 0x62, 0xf8, 0x95, + 0x14, 0x93, 0xa9, 0x47, 0x91, 0xc9, 0xcc, 0x29, 0xfe, 0x15, 0xc0, 0xfe, + 0xfe, 0x47, 0x0c, 0xd2, 0xb0, 0xfa, 0x52, 0x8b, 0x62, 0xd9, 0x66, 0x90, + 0x96, 0xad, 0x55, 0x69, 0x77, 0x33, 0x74, 0x93, 0xe8, 0x77, 0xe9, 0xf1, + 0x1f, 0xc4, 0xdb, 0x43, 0x1b, 0xb8, 0x98, 0x1e, 0x78, 0x85, 0x3f, 0xc2, + 0xa6, 0x1f, 0x11, 0x3c, 0x46, 0x8b, 0xff, 0x00, 0x1f, 0x31, 0x31, 0xf7, + 0x89, 0x7f, 0xc2, 0xbc, 0xfd, 0x26, 0x96, 0x05, 0xf2, 0xd5, 0x37, 0x2f, + 0x6c, 0xf6, 0xa5, 0x59, 0xe7, 0x3d, 0x68, 0x75, 0x9f, 0x70, 0xf6, 0x4b, + 0xb1, 0xd3, 0x6a, 0xda, 0xfe, 0xa9, 0xad, 0xdc, 0x0b, 0x8b, 0xcb, 0x9c, + 0x38, 0x5d, 0x83, 0x6a, 0x80, 0x00, 0xfc, 0x2a, 0xb9, 0xb5, 0x8e, 0x58, + 0xd4, 0x81, 0xf3, 0x63, 0x96, 0xee, 0x4d, 0x64, 0xa5, 0xf2, 0xc6, 0x08, + 0x60, 0xca, 0x0d, 0x5b, 0x87, 0x54, 0x8a, 0x35, 0xe7, 0xf3, 0xc5, 0x43, + 0x92, 0x7a, 0x96, 0x95, 0xb4, 0x26, 0xb7, 0xb2, 0x92, 0x36, 0xcc, 0x88, + 0x87, 0x1d, 0x0d, 0x59, 0x50, 0x91, 0x9f, 0x2f, 0x90, 0xcf, 0xdc, 0x55, + 0x3f, 0xed, 0xcb, 0x67, 0x38, 0xdc, 0x78, 0xa0, 0x6b, 0xb6, 0xc4, 0xe4, + 0xf5, 0xaa, 0x44, 0xb6, 0x6b, 0xdb, 0x2a, 0xa0, 0xc6, 0xe3, 0x9f, 0x7a, + 0xdd, 0xd0, 0x7c, 0x43, 0x06, 0x81, 0x75, 0x34, 0xd2, 0xdb, 0x99, 0x8c, + 0x8a, 0x14, 0x6d, 0x6c, 0x63, 0x15, 0xc6, 0xae, 0xa9, 0x6f, 0xbc, 0x3e, + 0xf1, 0x9f, 0xad, 0x3d, 0xb5, 0x0b, 0x69, 0x8f, 0x2c, 0xbc, 0x74, 0x39, + 0xa6, 0x90, 0x9e, 0xaa, 0xc7, 0xaa, 0xd8, 0x7c, 0x46, 0xd2, 0xa4, 0x67, + 0x17, 0xb1, 0x4b, 0x6a, 0x47, 0x20, 0xe3, 0x78, 0x3f, 0x95, 0x5d, 0x3e, + 0x3e, 0xf0, 0xe9, 0x27, 0x37, 0x6e, 0x31, 0xd3, 0x31, 0x37, 0x3f, 0xa5, + 0x78, 0xd7, 0xda, 0xe0, 0xde, 0x46, 0x43, 0x0c, 0x7d, 0x69, 0xaf, 0x77, + 0x6e, 0xa7, 0x21, 0x86, 0x7e, 0x95, 0xac, 0x74, 0x56, 0x33, 0x70, 0x89, + 0xa1, 0xab, 0xdc, 0xc3, 0x73, 0xe2, 0x5b, 0x9b, 0xe8, 0x46, 0x2d, 0xe4, + 0x94, 0xb2, 0xe4, 0x63, 0x8f, 0xa5, 0x59, 0x17, 0x71, 0xdc, 0x4e, 0x02, + 0x37, 0x01, 0x6b, 0x06, 0xe2, 0xee, 0x23, 0x95, 0x32, 0x0f, 0x6c, 0x1a, + 0xb1, 0x69, 0x77, 0x04, 0x67, 0x1e, 0x6a, 0x93, 0x8e, 0x95, 0x12, 0x57, + 0x77, 0x66, 0xea, 0x56, 0x8d, 0x91, 0xdf, 0x7c, 0x35, 0xb9, 0xb6, 0xb0, + 0xbe, 0xd5, 0x05, 0xed, 0xd4, 0x50, 0xcb, 0x39, 0x43, 0x1a, 0xb4, 0x9b, + 0x43, 0x01, 0x9c, 0xf5, 0xea, 0x79, 0x15, 0xe8, 0xf0, 0xea, 0x36, 0x57, + 0x06, 0x51, 0x0d, 0xd4, 0x2e, 0x62, 0xfb, 0xe1, 0x5c, 0x1d, 0xbf, 0x5a, + 0xf9, 0xfe, 0x5b, 0x85, 0x77, 0x04, 0x1e, 0x47, 0x4a, 0x2e, 0xe7, 0x67, + 0x01, 0xbc, 0xdf, 0x98, 0xfd, 0xe6, 0xcd, 0x5c, 0x6b, 0xb8, 0xa3, 0x9e, + 0x74, 0xd6, 0xe6, 0xd5, 0xc5, 0xcc, 0x6f, 0xa8, 0x5f, 0x4c, 0x92, 0x07, + 0x49, 0x67, 0x91, 0x97, 0x9e, 0xc5, 0x8e, 0x2b, 0x05, 0x13, 0x2a, 0xce, + 0x1b, 0x63, 0x6e, 0x38, 0xa8, 0x1a, 0x6c, 0xb6, 0x23, 0x7e, 0x9d, 0x8d, + 0x4c, 0x83, 0x7d, 0xb6, 0xc2, 0xc7, 0x39, 0xf5, 0xae, 0x68, 0x34, 0xe5, + 0x2e, 0xe6, 0xae, 0xa2, 0x9c, 0x54, 0x7b, 0x1a, 0xde, 0x15, 0x11, 0x5c, + 0x78, 0xaf, 0x4f, 0x8e, 0x6c, 0xec, 0x12, 0x82, 0x58, 0x1c, 0x12, 0xc3, + 0xa7, 0xeb, 0x8a, 0xf5, 0x4f, 0x1d, 0xba, 0x47, 0xe1, 0xa6, 0x2f, 0x80, + 0x3c, 0xd4, 0xfe, 0x75, 0xe2, 0xf0, 0x5d, 0xb5, 0x8c, 0xf1, 0x4b, 0x0e, + 0x56, 0x68, 0xd8, 0x30, 0x65, 0x3d, 0xc1, 0xad, 0xbd, 0x77, 0xc7, 0xba, + 0x8f, 0x89, 0xad, 0xc6, 0x9a, 0xb6, 0xb1, 0xa4, 0x7b, 0x83, 0xe5, 0x14, + 0x96, 0x24, 0x7e, 0x35, 0xac, 0x25, 0x1a, 0x70, 0x6a, 0x5d, 0x4c, 0x54, + 0x5a, 0x9a, 0x64, 0xda, 0x2d, 0xec, 0x37, 0xde, 0x2b, 0xd3, 0x51, 0x3e, + 0xea, 0x5c, 0x27, 0xf3, 0x15, 0xd0, 0x78, 0xde, 0xcc, 0x3f, 0x89, 0xa3, + 0xc1, 0x20, 0x34, 0x0a, 0xcc, 0x07, 0xd4, 0xe2, 0xbc, 0xeb, 0x4b, 0x99, + 0xf4, 0xdd, 0x72, 0xc6, 0xf1, 0x4e, 0xff, 0x00, 0x26, 0x75, 0x76, 0x5c, + 0xe3, 0x20, 0x1e, 0x95, 0xdb, 0x6a, 0x5a, 0xe8, 0xd5, 0xbc, 0x4b, 0x2c, + 0x85, 0x30, 0x82, 0x30, 0x91, 0x8f, 0x40, 0x3f, 0xfa, 0xe4, 0xd7, 0x3c, + 0xa5, 0x1f, 0x62, 0xe2, 0xbb, 0x9d, 0x14, 0xdb, 0x9d, 0x6b, 0xc8, 0xe5, + 0x6e, 0xe5, 0xf2, 0x6f, 0x1d, 0x01, 0xf9, 0x03, 0x72, 0x05, 0x52, 0x98, + 0xcb, 0x3c, 0xca, 0x25, 0xf9, 0x23, 0xcf, 0x6a, 0xbd, 0x78, 0x63, 0x6b, + 0xd9, 0xf0, 0xcb, 0x92, 0xc4, 0x61, 0xaa, 0x00, 0xaa, 0xd1, 0x19, 0x59, + 0xf7, 0x6d, 0x1c, 0xab, 0x74, 0x3e, 0xc2, 0xb1, 0xdd, 0x8e, 0x76, 0x6f, + 0x42, 0xc6, 0x42, 0x44, 0x5a, 0x33, 0x1e, 0xd4, 0x3f, 0x7b, 0x15, 0x14, + 0x7a, 0xa4, 0xbe, 0x77, 0x60, 0x80, 0xf5, 0x3c, 0x64, 0x52, 0xc3, 0x70, + 0x82, 0xc8, 0xa8, 0x00, 0xe4, 0xfc, 0xaa, 0x00, 0xe3, 0xda, 0xb3, 0x35, + 0x0b, 0x92, 0xb1, 0x2a, 0x21, 0x55, 0x23, 0xaf, 0xad, 0x5c, 0x57, 0x52, + 0x65, 0x2d, 0x2e, 0x74, 0x5f, 0x6c, 0x49, 0xa1, 0x67, 0x46, 0x07, 0x3c, + 0x0f, 0xad, 0x51, 0xb9, 0x9e, 0x7f, 0x2f, 0x62, 0x6d, 0x04, 0xf5, 0x35, + 0xcd, 0xd9, 0x6b, 0x13, 0x41, 0x30, 0x8a, 0x46, 0x01, 0x5c, 0xf0, 0x71, + 0xd2, 0xb6, 0x2e, 0x6e, 0x24, 0x30, 0xac, 0x96, 0xd8, 0x66, 0x56, 0x04, + 0xf4, 0xad, 0x5e, 0x88, 0x6a, 0xa5, 0xe3, 0x71, 0xe8, 0xdf, 0xba, 0x55, + 0x21, 0x8c, 0x80, 0x10, 0x4b, 0x1f, 0xd2, 0xad, 0xa4, 0xe8, 0x82, 0x28, + 0xd9, 0x00, 0x27, 0xa5, 0x54, 0x3a, 0x92, 0x6b, 0x73, 0xc6, 0xd3, 0xa1, + 0x8e, 0xe2, 0x21, 0x80, 0x8a, 0xbf, 0x2e, 0x3b, 0x9a, 0xbd, 0x3d, 0x9c, + 0x0b, 0x68, 0xce, 0xa5, 0x99, 0xc7, 0xdd, 0xf9, 0xb1, 0x83, 0x59, 0xd3, + 0x9c, 0xb9, 0x6e, 0xd5, 0x99, 0x9a, 0x93, 0xb5, 0xd1, 0x52, 0xf6, 0xe0, + 0x8d, 0xd1, 0xba, 0xa9, 0xc9, 0xf9, 0x40, 0x6e, 0x6a, 0x83, 0x48, 0x8f, + 0x1e, 0x1a, 0x1d, 0xac, 0xa3, 0x19, 0xeb, 0x53, 0xc9, 0x6e, 0xf2, 0xcb, + 0x1e, 0xf2, 0x14, 0x3a, 0xf0, 0xcd, 0xeb, 0xe9, 0x54, 0xef, 0x4c, 0x90, + 0x83, 0x1c, 0x91, 0x79, 0x63, 0x19, 0x19, 0x07, 0x91, 0xed, 0x54, 0xe5, + 0xef, 0x10, 0xde, 0xb7, 0x28, 0x1b, 0x66, 0x58, 0x3c, 0xc5, 0x91, 0x48, + 0xc0, 0x38, 0x04, 0x67, 0x9f, 0x6a, 0xa5, 0x25, 0xc9, 0x89, 0x72, 0xe1, + 0x58, 0x0e, 0xa0, 0x8a, 0x9c, 0xb3, 0x6d, 0xea, 0x30, 0x45, 0x55, 0x9e, + 0x3f, 0x3d, 0x42, 0x16, 0x0a, 0x7d, 0x68, 0x5a, 0xbd, 0x4c, 0x39, 0x87, + 0x19, 0xf7, 0xa0, 0xde, 0xac, 0xb1, 0xf5, 0xda, 0x3b, 0xd5, 0xa4, 0x9a, + 0xd5, 0x74, 0xd6, 0x68, 0xd8, 0x19, 0x0f, 0x58, 0x80, 0xe4, 0x01, 0xef, + 0x55, 0x20, 0x88, 0x8c, 0xa1, 0x97, 0x91, 0xd2, 0xa1, 0xd9, 0x8d, 0xc2, + 0x40, 0xdc, 0xf4, 0x23, 0x8a, 0x6a, 0xcb, 0x62, 0xa2, 0xc0, 0x4e, 0x1a, + 0x2c, 0xaa, 0x6d, 0xf6, 0x35, 0x24, 0x65, 0xb0, 0x49, 0xce, 0xdc, 0x70, + 0x29, 0x21, 0xb5, 0xdd, 0x1e, 0x46, 0x76, 0xe7, 0x8a, 0x91, 0x90, 0x05, + 0xea, 0x38, 0xac, 0xe4, 0xd7, 0x42, 0x58, 0x44, 0xea, 0x01, 0xdc, 0xb9, + 0x3e, 0xf4, 0xaa, 0xb9, 0x42, 0x49, 0xe8, 0x78, 0xa6, 0xef, 0x4c, 0x60, + 0x8e, 0x71, 0xd6, 0x81, 0xd0, 0x7a, 0x54, 0x8d, 0x09, 0xbf, 0x0d, 0x8c, + 0xd4, 0x81, 0x95, 0xa2, 0x94, 0xb1, 0xe8, 0xbf, 0x2f, 0xbf, 0x34, 0x92, + 0x27, 0xcc, 0x1c, 0x60, 0xd4, 0x52, 0x36, 0x7b, 0x00, 0x3d, 0x29, 0xc6, + 0xcc, 0x77, 0x44, 0xb1, 0xb4, 0x4d, 0x19, 0x20, 0x38, 0x20, 0x75, 0xe3, + 0x14, 0xcc, 0x95, 0x20, 0x13, 0x9c, 0xf6, 0x34, 0xdf, 0x3b, 0x67, 0x19, + 0xe9, 0xd2, 0xa7, 0x96, 0xea, 0x4b, 0xa4, 0x13, 0x4c, 0x62, 0xc8, 0xf9, + 0x47, 0x66, 0xfc, 0xaa, 0xac, 0x4d, 0xc9, 0x21, 0x8e, 0x04, 0x8b, 0x1e, + 0x66, 0x25, 0x27, 0x77, 0x1d, 0x31, 0x56, 0xa7, 0x70, 0x8e, 0xaf, 0xe4, + 0xae, 0x42, 0xfd, 0xdc, 0x12, 0x08, 0xac, 0x89, 0x64, 0x1e, 0x60, 0xe0, + 0x8c, 0x2d, 0x24, 0x97, 0x52, 0x79, 0x0a, 0xb8, 0xc0, 0x1d, 0x09, 0x3d, + 0x68, 0xe5, 0xbd, 0x9d, 0xcb, 0x72, 0xd0, 0xb5, 0x2b, 0x47, 0xe7, 0x11, + 0x19, 0x1b, 0x09, 0xce, 0x3d, 0x2a, 0xb7, 0x94, 0xe6, 0x52, 0x78, 0x07, + 0xb5, 0x3a, 0x20, 0xec, 0xa2, 0x41, 0x1f, 0xcc, 0x0e, 0x4b, 0x76, 0x15, + 0x60, 0xbe, 0xe9, 0x43, 0x9c, 0x03, 0xd7, 0x2a, 0x3a, 0x55, 0x28, 0xbd, + 0x91, 0x9b, 0x7d, 0x4a, 0xac, 0x80, 0x36, 0xd4, 0x19, 0x6e, 0xe7, 0x34, + 0xf4, 0x44, 0x80, 0x9c, 0xb0, 0xce, 0x39, 0xc9, 0xa9, 0x4c, 0x6c, 0x9b, + 0x5d, 0x5d, 0x0a, 0x9c, 0x9c, 0x0e, 0xa3, 0xeb, 0x55, 0xf6, 0x21, 0x93, + 0x79, 0x39, 0xc1, 0xe0, 0x77, 0xa9, 0x04, 0xcb, 0x10, 0xa9, 0x31, 0xb1, + 0x63, 0x9e, 0x78, 0xc9, 0xa9, 0xd2, 0xde, 0x26, 0x53, 0xdc, 0xf6, 0xa6, + 0x0c, 0x18, 0xb8, 0x1c, 0xfa, 0x0e, 0xb4, 0x2b, 0xbc, 0x27, 0xe5, 0x00, + 0x67, 0xd6, 0xa6, 0xe5, 0xc5, 0xd8, 0x98, 0x46, 0xa5, 0x42, 0x45, 0x13, + 0xb3, 0x7a, 0x81, 0x51, 0xed, 0x91, 0x30, 0x08, 0x23, 0x1e, 0xb5, 0xd7, + 0xf8, 0x53, 0x53, 0xbb, 0x4b, 0x47, 0x8a, 0xda, 0xc6, 0x39, 0xef, 0x58, + 0xfe, 0xe8, 0x71, 0xf2, 0xf6, 0xa9, 0x64, 0xd0, 0x75, 0xc5, 0xba, 0x51, + 0x77, 0x62, 0xa6, 0x66, 0xcb, 0x2a, 0x87, 0x5f, 0x98, 0x67, 0x9c, 0x62, + 0x93, 0x66, 0xbe, 0xc7, 0x99, 0x73, 0x23, 0xcf, 0x6f, 0x41, 0x7e, 0x18, + 0x91, 0x83, 0x8c, 0x56, 0x6c, 0xb6, 0x77, 0x12, 0x70, 0xa1, 0xc0, 0xf7, + 0xe2, 0xba, 0x5d, 0x7e, 0x38, 0x9b, 0x5a, 0x7c, 0x41, 0xe5, 0x85, 0x6c, + 0x14, 0x53, 0xd0, 0xf7, 0xa8, 0x9a, 0xd9, 0x1a, 0x25, 0x0a, 0x18, 0x0e, + 0xf9, 0x3c, 0xd6, 0xd1, 0x9f, 0x2a, 0xd0, 0x89, 0x5a, 0x3a, 0x23, 0x2e, + 0x0d, 0x12, 0x3f, 0x29, 0x5a, 0x49, 0x5b, 0xcc, 0x23, 0xa0, 0xe9, 0x57, + 0x61, 0xd1, 0xed, 0x0e, 0xd0, 0xdb, 0xfa, 0xe0, 0xe7, 0x81, 0x9a, 0x7c, + 0x60, 0xb4, 0xcb, 0x1a, 0x90, 0x40, 0xe4, 0x05, 0x35, 0x3b, 0xee, 0x47, + 0x21, 0xb8, 0x0b, 0xd7, 0x26, 0x87, 0x39, 0x3e, 0xa6, 0x7c, 0xcd, 0x14, + 0xa5, 0xd3, 0xac, 0x92, 0xe7, 0xcb, 0x00, 0x10, 0x38, 0x2d, 0x9a, 0x9d, + 0x74, 0x8b, 0x62, 0xb9, 0xf3, 0x00, 0x18, 0xce, 0xef, 0x5f, 0x6a, 0x8e, + 0x4b, 0xa8, 0x97, 0x38, 0x8d, 0x73, 0xfd, 0xe1, 0xd6, 0x9c, 0x97, 0x09, + 0x73, 0x88, 0xf7, 0xe0, 0xf5, 0xe6, 0x95, 0xe4, 0xc9, 0xf6, 0xaf, 0xa0, + 0x8d, 0x6b, 0x69, 0x0a, 0x95, 0x2c, 0xdb, 0xcf, 0x03, 0x14, 0xf4, 0xb1, + 0x89, 0x2d, 0x98, 0x88, 0x24, 0x79, 0x3a, 0xe4, 0x8c, 0x8c, 0x52, 0xcf, + 0x0a, 0x42, 0x43, 0x99, 0x4b, 0x03, 0xd0, 0x81, 0xde, 0xb6, 0x61, 0xd7, + 0x36, 0xe9, 0x22, 0xdc, 0xe3, 0x38, 0xdb, 0x8c, 0x76, 0x35, 0x32, 0x93, + 0xd3, 0x94, 0x14, 0xe4, 0xf4, 0x6c, 0xc2, 0x69, 0x6e, 0x8a, 0x05, 0x8d, + 0x19, 0x31, 0x8c, 0x6d, 0x5c, 0x52, 0x18, 0xe5, 0x96, 0xc6, 0x74, 0x20, + 0xee, 0x4f, 0x9b, 0xcc, 0x6e, 0xbf, 0x4a, 0xe9, 0x60, 0x92, 0xde, 0x5b, + 0x53, 0x2b, 0x97, 0x8f, 0x62, 0xf2, 0x45, 0x62, 0xcf, 0x6f, 0x04, 0xf1, + 0x02, 0x65, 0xdc, 0xae, 0x78, 0x65, 0x24, 0x13, 0xf5, 0xae, 0xce, 0x5e, + 0xa8, 0xb7, 0x03, 0x22, 0x35, 0x92, 0x26, 0x89, 0x9e, 0x40, 0x7b, 0xe0, + 0xf5, 0xad, 0x6f, 0xdd, 0x8b, 0x1f, 0x3b, 0xce, 0x0f, 0x21, 0xeb, 0x10, + 0x53, 0xf2, 0x8f, 0x53, 0x55, 0xda, 0xd9, 0x61, 0x64, 0x1b, 0x0b, 0x31, + 0x20, 0x0c, 0xd7, 0x51, 0xa6, 0x78, 0x6e, 0xe6, 0x5b, 0x93, 0x2a, 0x42, + 0x98, 0x31, 0x07, 0x31, 0x97, 0xe5, 0x86, 0x6b, 0x86, 0xbd, 0x48, 0xc7, + 0x59, 0x11, 0x14, 0xde, 0xc7, 0x2f, 0x99, 0x16, 0x64, 0x61, 0x1f, 0xca, + 0xdf, 0x78, 0x0f, 0xbc, 0x47, 0xb5, 0x5a, 0xdf, 0xa2, 0xb2, 0x84, 0xbe, + 0x4b, 0xd8, 0xa5, 0xcf, 0x54, 0xc6, 0x31, 0x5e, 0xc7, 0xa7, 0x5a, 0xe9, + 0xc8, 0x56, 0x16, 0xb4, 0x3f, 0x2e, 0x01, 0x51, 0x1e, 0x42, 0x7e, 0x35, + 0xcc, 0x7c, 0x44, 0xbf, 0xf0, 0xfd, 0xd5, 0xbd, 0xb6, 0x9d, 0x6a, 0x6d, + 0xc3, 0xc4, 0xff, 0x00, 0x33, 0xa2, 0xe4, 0xae, 0x7a, 0xf0, 0x2b, 0x3a, + 0x18, 0x95, 0x51, 0xda, 0xda, 0x16, 0xe3, 0xcb, 0xa9, 0xc7, 0xe9, 0x11, + 0x69, 0x29, 0x78, 0x8b, 0x6e, 0xac, 0x10, 0x36, 0xef, 0x36, 0x72, 0x38, + 0xc7, 0xbd, 0x6b, 0xdc, 0x78, 0x83, 0x50, 0xd5, 0x6f, 0x93, 0x4b, 0xb7, + 0x58, 0xa3, 0xde, 0x48, 0x47, 0x07, 0x8c, 0x7f, 0x5a, 0xcb, 0xbf, 0xd2, + 0x2d, 0xd4, 0x96, 0xd3, 0x2f, 0x12, 0xe2, 0xd6, 0x34, 0x55, 0x93, 0x0b, + 0xb4, 0x82, 0x7d, 0xaa, 0xd4, 0x7a, 0x54, 0xcb, 0x2c, 0x16, 0x8d, 0x69, + 0x70, 0x9b, 0x9c, 0x3c, 0x53, 0x22, 0xed, 0x76, 0x24, 0x70, 0x33, 0xe9, + 0xcd, 0x4b, 0x74, 0xe4, 0xf9, 0xa5, 0xf2, 0xb8, 0xa4, 0xdb, 0x67, 0x23, + 0x7c, 0xb7, 0x71, 0x6a, 0x13, 0xc3, 0x8f, 0x9a, 0x26, 0x28, 0x59, 0x94, + 0x8c, 0x91, 0x4e, 0x86, 0x72, 0xd0, 0x13, 0x2b, 0x62, 0x45, 0xea, 0x2b, + 0xa1, 0xf1, 0x7e, 0x89, 0x77, 0xa6, 0xdc, 0x46, 0xac, 0x23, 0x59, 0x1c, + 0x67, 0x0a, 0xfb, 0xc9, 0x39, 0xe7, 0x71, 0xf5, 0xac, 0x3b, 0x8d, 0x26, + 0xea, 0xda, 0xde, 0x29, 0x59, 0x55, 0xc4, 0xa0, 0xf7, 0xc5, 0x74, 0xd3, + 0x94, 0x6a, 0xc1, 0x34, 0x2e, 0x49, 0xdd, 0x91, 0x45, 0x26, 0x49, 0x2c, + 0xdd, 0x7a, 0x50, 0x24, 0x90, 0xa9, 0xdf, 0x9c, 0x67, 0x02, 0xa1, 0x10, + 0xc8, 0xa8, 0x19, 0x41, 0x5e, 0xc4, 0x66, 0x9a, 0xcc, 0xca, 0x40, 0x2f, + 0xb8, 0xf4, 0xc7, 0xa5, 0x57, 0x2a, 0xd4, 0x2d, 0x6d, 0xc7, 0x09, 0x94, + 0xbe, 0x0e, 0x78, 0x3d, 0x6b, 0x6a, 0xd6, 0x68, 0x89, 0x48, 0xe4, 0x84, + 0x34, 0x59, 0xc9, 0xc0, 0xe6, 0xb1, 0x10, 0x6c, 0x3b, 0x9f, 0x18, 0xab, + 0x2d, 0x70, 0x8c, 0x17, 0x33, 0x14, 0xe3, 0x1f, 0x28, 0xe9, 0x4a, 0x51, + 0x52, 0xd0, 0x49, 0xb4, 0xb4, 0x37, 0xa4, 0x4b, 0x26, 0xb3, 0x31, 0x83, + 0xb9, 0x88, 0x07, 0x2a, 0xbc, 0x83, 0xe9, 0x9a, 0xe7, 0xe7, 0x02, 0x22, + 0x47, 0x96, 0x42, 0xaf, 0x52, 0x06, 0x73, 0x56, 0x6d, 0x6e, 0x24, 0x54, + 0x2a, 0x1b, 0x08, 0xe3, 0x19, 0x63, 0x51, 0xc8, 0xfd, 0x15, 0xd7, 0x2b, + 0xe9, 0x53, 0x4a, 0x09, 0x37, 0x70, 0x6c, 0xaa, 0xae, 0xd2, 0x30, 0xc1, + 0x1c, 0x76, 0x22, 0xac, 0x11, 0x2e, 0xce, 0x9c, 0x75, 0xa9, 0x1d, 0xac, + 0xe2, 0xb7, 0x3b, 0x23, 0x3e, 0x79, 0xe7, 0x93, 0xd2, 0xaa, 0xa1, 0x32, + 0x7c, 0xcc, 0xd9, 0xcd, 0x6b, 0x25, 0xcb, 0xd4, 0x57, 0x1c, 0x1c, 0x8e, + 0x08, 0x5f, 0x7a, 0x57, 0x8f, 0x2b, 0xb8, 0x70, 0x3d, 0xa9, 0x8d, 0x1f, + 0xcd, 0x85, 0xe7, 0xeb, 0x52, 0x46, 0x19, 0x53, 0x38, 0xcd, 0x4d, 0xd6, + 0xe5, 0x29, 0xa4, 0x88, 0xd8, 0x82, 0xa3, 0x04, 0xfd, 0x0d, 0x47, 0xba, + 0x54, 0x75, 0x74, 0x00, 0xad, 0x4c, 0x1a, 0x23, 0x9d, 0xc4, 0x12, 0x3d, + 0x0f, 0x4a, 0x45, 0x5f, 0x34, 0x80, 0x41, 0xe6, 0x92, 0x76, 0xd4, 0x5a, + 0x48, 0x8e, 0x7b, 0x8c, 0x90, 0x00, 0xc9, 0xc5, 0x4b, 0x1c, 0x8d, 0x22, + 0x04, 0x1d, 0x3d, 0x29, 0xf3, 0xe8, 0xd7, 0x9f, 0x6b, 0x58, 0xad, 0xd3, + 0xcd, 0x38, 0xdd, 0xc5, 0x47, 0xe4, 0x49, 0x0a, 0xe2, 0x41, 0xb6, 0x41, + 0xdb, 0xb8, 0xaa, 0x49, 0x5b, 0x41, 0xa4, 0xc9, 0x21, 0xdf, 0x1b, 0x01, + 0xd1, 0xb3, 0xc7, 0x35, 0xd2, 0x69, 0x5a, 0xbd, 0xed, 0x96, 0xb9, 0x66, + 0xd2, 0xea, 0x12, 0x5b, 0x84, 0x01, 0x19, 0xd9, 0x8b, 0xa9, 0x1e, 0xe3, + 0xb8, 0xae, 0x6a, 0xd0, 0x3b, 0xcd, 0x19, 0x43, 0x96, 0x53, 0xbb, 0x27, + 0xa0, 0xc5, 0x7a, 0x7e, 0xab, 0xad, 0x58, 0x43, 0xa3, 0x93, 0x3b, 0xd8, + 0x4f, 0x72, 0xb6, 0xcb, 0x1d, 0xac, 0xab, 0x1e, 0xfc, 0x7a, 0xf3, 0xd8, + 0xd6, 0x72, 0xde, 0xc7, 0x45, 0x08, 0xdd, 0x37, 0x7b, 0x58, 0xce, 0xf1, + 0x7f, 0x8b, 0xad, 0x6f, 0x84, 0x69, 0x6f, 0x7c, 0x5f, 0x6a, 0xb0, 0x90, + 0xc6, 0xac, 0x14, 0x9e, 0x31, 0xc1, 0xfc, 0x6b, 0x86, 0x13, 0xbc, 0xc7, + 0xe5, 0x2d, 0x9a, 0x6c, 0xa1, 0xe7, 0x8d, 0xa6, 0x07, 0x2e, 0x5b, 0x91, + 0x8e, 0xb5, 0x56, 0xdc, 0xb3, 0x5e, 0x2c, 0x79, 0xc0, 0x1c, 0x12, 0x2b, + 0x68, 0xc5, 0xc7, 0x42, 0x65, 0x55, 0xce, 0x5a, 0x92, 0x28, 0xb8, 0x6b, + 0x8c, 0x6e, 0x25, 0x4f, 0x15, 0x65, 0xed, 0xae, 0xd7, 0x6e, 0xe3, 0x94, + 0xed, 0xd3, 0x8a, 0x9a, 0x4c, 0x2b, 0xa2, 0xc6, 0xdb, 0x80, 0x6f, 0x9a, + 0xa0, 0xbb, 0x97, 0x63, 0x02, 0xa7, 0xbe, 0x48, 0xf4, 0xad, 0xd2, 0xb2, + 0xb1, 0x7b, 0x22, 0x13, 0x1c, 0x9e, 0x5c, 0x8e, 0xaa, 0xd8, 0x5e, 0xb5, + 0x5c, 0x4a, 0x58, 0xa8, 0xf4, 0xe7, 0x34, 0x92, 0x5d, 0x92, 0xd8, 0xf9, + 0x88, 0xa8, 0x63, 0x71, 0xbf, 0x83, 0xef, 0x50, 0xec, 0x42, 0x92, 0x72, + 0x3a, 0xff, 0x00, 0x15, 0xc9, 0x1b, 0x7d, 0x80, 0xc3, 0x92, 0x04, 0x03, + 0xe6, 0xcf, 0x04, 0xfb, 0x57, 0x32, 0xec, 0x0b, 0x02, 0x7a, 0x83, 0x5d, + 0x2e, 0xb3, 0xae, 0x43, 0xa8, 0xe9, 0x36, 0x6a, 0x6d, 0x51, 0x64, 0x58, + 0xc0, 0x2f, 0xdf, 0x8a, 0xe5, 0x66, 0x60, 0xd2, 0x1d, 0xa0, 0x85, 0xeb, + 0x81, 0xda, 0xb9, 0x69, 0xdd, 0xee, 0x63, 0x52, 0x5c, 0xd2, 0x6d, 0x8f, + 0x90, 0xef, 0x5e, 0x0f, 0x15, 0x02, 0xa0, 0x07, 0x76, 0xec, 0x1a, 0x56, + 0x63, 0xb4, 0x60, 0x8c, 0x54, 0x4c, 0x4b, 0x2f, 0x06, 0xb7, 0x48, 0xcc, + 0x9d, 0xc8, 0x2c, 0x3e, 0x73, 0x93, 0x52, 0xc0, 0xc5, 0x79, 0xdc, 0x5c, + 0xe2, 0xa0, 0x58, 0xf2, 0x0e, 0x79, 0x00, 0x73, 0x4e, 0x00, 0x9c, 0x32, + 0x1d, 0x8b, 0xdb, 0x35, 0x4f, 0x6b, 0x16, 0xd9, 0x61, 0x5c, 0xc8, 0x0e, + 0x32, 0x33, 0xd3, 0x26, 0x86, 0x89, 0x9d, 0xf3, 0xbc, 0x2e, 0x3a, 0x82, + 0x29, 0x81, 0x9a, 0x3c, 0x0f, 0x95, 0xbe, 0x94, 0xe8, 0x96, 0x49, 0x4b, + 0x13, 0x9c, 0x76, 0x06, 0xa1, 0xc9, 0x89, 0x0b, 0x6e, 0xe0, 0x5c, 0x32, + 0x3f, 0x6e, 0x46, 0x3b, 0xd5, 0xcd, 0xeb, 0x8d, 0xac, 0x70, 0x7b, 0x62, + 0xb3, 0xe7, 0xb6, 0x0c, 0x43, 0xa3, 0x61, 0x87, 0xa1, 0xa7, 0xbb, 0xed, + 0x45, 0x0c, 0x39, 0x1d, 0xfd, 0x6a, 0x24, 0x93, 0xd8, 0xb4, 0xc9, 0xdd, + 0xdd, 0x22, 0x65, 0xe7, 0x27, 0xd7, 0xbd, 0x46, 0x91, 0x02, 0x84, 0xe0, + 0xee, 0xa7, 0x89, 0x77, 0x21, 0x07, 0x93, 0xd6, 0xad, 0xe9, 0x56, 0x13, + 0xea, 0x8d, 0x2a, 0xc3, 0x2c, 0x69, 0xe5, 0xe3, 0x21, 0x9b, 0x04, 0x8f, + 0x61, 0xde, 0xa3, 0x9a, 0xca, 0xe2, 0xb5, 0xdd, 0x8a, 0x4a, 0x30, 0xd8, + 0x2e, 0x57, 0xe9, 0x5b, 0xfa, 0x47, 0x85, 0xee, 0x75, 0xad, 0x3e, 0x7b, + 0xa8, 0x6e, 0xed, 0xd0, 0xc0, 0xa4, 0x84, 0x91, 0xf0, 0xcf, 0x8e, 0xc0, + 0x56, 0xee, 0x9f, 0xe0, 0x9b, 0xeb, 0x61, 0x35, 0xcd, 0xcc, 0x76, 0x97, + 0x10, 0x21, 0xc6, 0xd6, 0x6c, 0x17, 0x18, 0xc9, 0xc7, 0xb8, 0x1c, 0xd5, + 0xe4, 0xd4, 0x34, 0x6d, 0x36, 0xca, 0xd6, 0x3d, 0x29, 0x93, 0x25, 0x5b, + 0x72, 0x4e, 0xbf, 0xc6, 0x78, 0x20, 0x9f, 0x4e, 0x95, 0x94, 0xeb, 0x37, + 0xb1, 0x71, 0x85, 0xb7, 0x3c, 0xf4, 0x4a, 0x76, 0xed, 0x65, 0xe4, 0x1c, + 0x1a, 0x8c, 0x49, 0x0a, 0xc8, 0x1a, 0x45, 0xc8, 0x1c, 0xed, 0xc7, 0x5a, + 0x9c, 0xd8, 0x5e, 0x4f, 0x3c, 0xbe, 0x4a, 0x6e, 0xe4, 0x96, 0x09, 0xc8, + 0x15, 0x47, 0xcf, 0x08, 0xe3, 0x20, 0x1e, 0x31, 0xf3, 0x57, 0x42, 0xd4, + 0xa5, 0x36, 0xf4, 0x91, 0x7d, 0x26, 0xb7, 0x7b, 0x91, 0x22, 0xc2, 0xb1, + 0x29, 0x3c, 0x63, 0xa0, 0xfc, 0xeb, 0x5a, 0xde, 0x5b, 0x18, 0xc5, 0xc7, + 0x98, 0x10, 0xca, 0xdf, 0x71, 0x54, 0x01, 0xb4, 0xfa, 0xfb, 0x8a, 0xe7, + 0x37, 0x44, 0xf6, 0x92, 0x4a, 0xce, 0x56, 0x54, 0x20, 0xa8, 0xc7, 0x0c, + 0x29, 0xb2, 0xea, 0x52, 0x4d, 0x72, 0xd7, 0x32, 0xfe, 0xf2, 0x56, 0x23, + 0x24, 0x8c, 0x74, 0xaa, 0xe5, 0x12, 0xa9, 0x14, 0xcd, 0x04, 0x9e, 0xda, + 0x39, 0xda, 0x26, 0x45, 0x78, 0xdb, 0xa8, 0xd9, 0x9c, 0x52, 0x69, 0xfa, + 0xb2, 0xd8, 0x6b, 0x6d, 0x38, 0x8f, 0xcd, 0x40, 0x08, 0x00, 0xff, 0x00, + 0x3a, 0xcf, 0x92, 0xf7, 0x7c, 0xe6, 0x45, 0x40, 0xb9, 0x39, 0xda, 0x3a, + 0x54, 0x7e, 0x7e, 0xf9, 0x7c, 0xdd, 0x80, 0x2e, 0x4e, 0x02, 0x8e, 0x28, + 0x8a, 0x68, 0x53, 0x9f, 0x36, 0xc7, 0x63, 0xa6, 0x78, 0xda, 0xf6, 0xc2, + 0x19, 0x2d, 0x59, 0x13, 0xec, 0xee, 0xcd, 0x22, 0xfc, 0x83, 0x70, 0x27, + 0xb5, 0x5d, 0xb7, 0xf1, 0x0a, 0xdf, 0xe9, 0xd1, 0xfd, 0xa2, 0xd6, 0x69, + 0xb6, 0xca, 0x5e, 0x63, 0x23, 0x7c, 0x85, 0x0f, 0x19, 0x03, 0xd4, 0x57, + 0x11, 0x14, 0xcc, 0xe8, 0xe2, 0x33, 0xd4, 0x72, 0x0d, 0x5a, 0x48, 0xa4, + 0x36, 0xe8, 0x82, 0x45, 0x0c, 0x4f, 0xdd, 0x04, 0x82, 0x41, 0xf5, 0xf6, + 0xac, 0xe5, 0x4d, 0x4b, 0xa1, 0x3c, 0xc5, 0xdb, 0xf5, 0x0f, 0xad, 0xdc, + 0xc5, 0xa7, 0x3a, 0x7d, 0x9f, 0x27, 0x61, 0xed, 0x8f, 0xc6, 0xac, 0xd8, + 0x78, 0x13, 0x5d, 0xd7, 0x26, 0x88, 0xa5, 0x84, 0xc1, 0x1b, 0x93, 0x2b, + 0x9d, 0xaa, 0x47, 0xd4, 0xd6, 0x28, 0x90, 0xdb, 0xfc, 0xc8, 0x36, 0xb5, + 0x75, 0xde, 0x19, 0xf1, 0xdd, 0xd6, 0x91, 0x62, 0xe8, 0xf7, 0x6e, 0xe7, + 0x1b, 0x22, 0x42, 0x78, 0x4e, 0xf9, 0xe6, 0xa9, 0x36, 0xb6, 0x08, 0xda, + 0xfa, 0x98, 0x7e, 0x22, 0xf0, 0x5a, 0x68, 0xb1, 0x48, 0xc9, 0x7e, 0x92, + 0x4a, 0x8c, 0x03, 0xdb, 0xba, 0xe1, 0xd7, 0xfc, 0x6a, 0xd5, 0xad, 0x96, + 0x87, 0x77, 0xe1, 0x74, 0x7b, 0xa8, 0xd2, 0x0b, 0xc8, 0x1b, 0x1b, 0x63, + 0x73, 0xba, 0x41, 0xea, 0x73, 0xfd, 0x29, 0xba, 0xcf, 0x89, 0x1b, 0xc4, + 0x17, 0x11, 0xcb, 0x31, 0xdd, 0x2a, 0x8c, 0x79, 0x98, 0x03, 0x75, 0x50, + 0x26, 0x30, 0xdf, 0x31, 0xe0, 0x53, 0x6e, 0x5d, 0x4d, 0x54, 0x93, 0x25, + 0x9b, 0xec, 0x01, 0x31, 0x69, 0x08, 0x45, 0x1d, 0x9b, 0x93, 0x56, 0xbc, + 0x3d, 0x7d, 0x0d, 0xbe, 0xab, 0x11, 0xb9, 0x05, 0x60, 0x2c, 0x37, 0x60, + 0x67, 0x8a, 0xc7, 0x60, 0xac, 0xf9, 0x0d, 0x9c, 0xfe, 0xb5, 0xd6, 0x78, + 0x46, 0x68, 0x1a, 0xea, 0xe6, 0xd6, 0xee, 0xe6, 0x3b, 0x15, 0x9a, 0x1d, + 0x8b, 0x24, 0x91, 0x82, 0xb9, 0xf7, 0xcf, 0x4a, 0x89, 0x7b, 0xca, 0xd2, + 0x23, 0x77, 0x62, 0xe7, 0xc4, 0xbb, 0x0b, 0xa8, 0x3c, 0x50, 0xb2, 0x49, + 0x11, 0x92, 0x09, 0xa2, 0x53, 0x01, 0x8c, 0x67, 0x80, 0x30, 0x41, 0xfc, + 0x6b, 0x07, 0x4f, 0xd1, 0xaf, 0x2f, 0x1f, 0xe6, 0xb2, 0x9d, 0x62, 0x5e, + 0x59, 0xca, 0xe3, 0xf9, 0xd4, 0x97, 0x1e, 0x2a, 0xd4, 0xe3, 0xbb, 0x82, + 0x17, 0xbc, 0xfb, 0x40, 0xb1, 0x72, 0xb0, 0xb7, 0x0c, 0x30, 0x0f, 0xaf, + 0x71, 0x5e, 0x8d, 0xa4, 0xf8, 0xef, 0x4b, 0xb8, 0x82, 0x15, 0x9d, 0x1a, + 0xda, 0x59, 0x4f, 0xef, 0x89, 0x42, 0xca, 0x0e, 0x3e, 0xf0, 0x22, 0xa7, + 0x92, 0xca, 0xcb, 0x63, 0xae, 0x94, 0xee, 0xac, 0x8a, 0x37, 0xba, 0x75, + 0xac, 0x1e, 0x11, 0xb7, 0xd3, 0x6f, 0x16, 0x08, 0x14, 0x37, 0x99, 0x14, + 0x8e, 0x47, 0x98, 0x01, 0x3d, 0xf1, 0xd3, 0xad, 0x70, 0xba, 0xee, 0x8d, + 0xfd, 0x95, 0x3a, 0x05, 0x95, 0x25, 0x82, 0x41, 0xf2, 0x3a, 0x30, 0x21, + 0xab, 0xde, 0x60, 0x5d, 0x3f, 0x57, 0xd2, 0xc2, 0x87, 0x8a, 0xee, 0xd0, + 0xa8, 0x47, 0x03, 0x0c, 0xa7, 0xeb, 0x5e, 0x75, 0xe3, 0xeb, 0x7d, 0x36, + 0xc6, 0xc6, 0x0d, 0x32, 0xd5, 0x51, 0x2e, 0x12, 0x7d, 0xeb, 0x1f, 0x52, + 0x10, 0x83, 0xdf, 0xd2, 0x9d, 0x45, 0x1a, 0x72, 0x8a, 0xe6, 0xbb, 0x7f, + 0x80, 0x42, 0x4e, 0x52, 0x6b, 0xfa, 0x67, 0x9c, 0xb6, 0x10, 0x64, 0x21, + 0x27, 0x1d, 0xa9, 0xf1, 0x06, 0x99, 0x95, 0x42, 0x90, 0x4f, 0xb7, 0x35, + 0xa0, 0xb1, 0x14, 0x53, 0xf2, 0xa1, 0xe3, 0xb9, 0xab, 0xda, 0x05, 0xb1, + 0x9b, 0x5d, 0xb7, 0x65, 0x55, 0x2b, 0x1b, 0x6f, 0x61, 0xec, 0x2a, 0xe5, + 0xca, 0xa2, 0xda, 0x35, 0x57, 0xbd, 0x82, 0x0f, 0x0e, 0xea, 0x12, 0x28, + 0x64, 0xd3, 0xef, 0x24, 0xcf, 0x71, 0x1e, 0x05, 0x5a, 0xb7, 0xf0, 0xd6, + 0xb1, 0x33, 0x98, 0xd7, 0x46, 0x90, 0x7a, 0x19, 0x32, 0x2b, 0xd5, 0x6e, + 0x75, 0x28, 0xad, 0xa2, 0xcb, 0xb0, 0xe8, 0x3e, 0xef, 0x6a, 0xae, 0x75, + 0xe8, 0x43, 0xa2, 0xab, 0x7c, 0x80, 0xe5, 0x89, 0x3c, 0x9a, 0xf3, 0xbd, + 0xad, 0x46, 0x43, 0xae, 0x70, 0x71, 0xf8, 0x37, 0x5b, 0x71, 0xce, 0x95, + 0x06, 0x07, 0xfd, 0x35, 0xa7, 0x3f, 0x83, 0x35, 0x44, 0x5d, 0xcf, 0xa5, + 0x37, 0xaf, 0xee, 0xe4, 0x04, 0xd7, 0x77, 0x6d, 0xad, 0x5c, 0xdf, 0xce, + 0x44, 0x09, 0xb5, 0x03, 0x1c, 0x71, 0xd6, 0xb6, 0xd2, 0xe7, 0x25, 0x10, + 0xfd, 0xf3, 0xd4, 0x7a, 0x56, 0x13, 0xab, 0x56, 0x23, 0x55, 0xd9, 0xe2, + 0x17, 0x7a, 0x19, 0x4f, 0x39, 0x24, 0x59, 0x60, 0x96, 0x21, 0xca, 0x4a, + 0x30, 0x6b, 0x36, 0x3b, 0x19, 0x36, 0x63, 0xae, 0x7b, 0xd7, 0x77, 0xe2, + 0xc0, 0x46, 0xb3, 0xa8, 0x36, 0xde, 0xa1, 0x7a, 0xfd, 0x2b, 0x8c, 0x13, + 0x3c, 0x45, 0x77, 0x0c, 0x67, 0xd6, 0xbd, 0x1c, 0x24, 0x9c, 0xd5, 0xe4, + 0x6b, 0x55, 0x25, 0x14, 0xd7, 0x52, 0x9b, 0xe9, 0xc6, 0x39, 0x36, 0xb6, + 0x46, 0x7d, 0x69, 0xff, 0x00, 0x61, 0x0a, 0x39, 0x01, 0x94, 0x0a, 0xb8, + 0xb3, 0x99, 0xd9, 0x83, 0x0e, 0x9f, 0xad, 0x57, 0x92, 0x49, 0x51, 0x80, + 0x09, 0xc0, 0x3c, 0xfb, 0xd7, 0x6d, 0x8e, 0x6b, 0xdc, 0x81, 0xad, 0x10, + 0x81, 0x84, 0x3c, 0xfa, 0x54, 0xb6, 0xfa, 0x69, 0x3f, 0x36, 0xcc, 0xfb, + 0x01, 0x93, 0x56, 0xe1, 0x46, 0x66, 0x1c, 0x05, 0xf4, 0xcd, 0x3e, 0xf6, + 0x59, 0x20, 0x8b, 0x11, 0x36, 0xdf, 0x5c, 0x75, 0xaa, 0x51, 0xec, 0x26, + 0xf4, 0x18, 0x2c, 0x5e, 0xd8, 0xfe, 0xf2, 0x09, 0x17, 0x3e, 0xaa, 0x6a, + 0x19, 0xc4, 0x58, 0x2c, 0xc0, 0xa8, 0x3c, 0x64, 0xad, 0x52, 0xb9, 0xd5, + 0xaf, 0x65, 0xe6, 0x59, 0xe4, 0x63, 0xd3, 0x93, 0x54, 0x9b, 0x58, 0xbe, + 0x58, 0x9a, 0x25, 0x99, 0xf6, 0x1e, 0x08, 0xc7, 0x6a, 0x6e, 0x33, 0xb6, + 0xfa, 0x89, 0x4f, 0xc8, 0xb1, 0x3c, 0x11, 0x88, 0x99, 0xe3, 0x21, 0xc0, + 0xe7, 0x8a, 0x41, 0x19, 0xf2, 0x96, 0x60, 0x4a, 0x9c, 0x70, 0x6b, 0x3d, + 0x6e, 0x50, 0x30, 0x55, 0xde, 0x77, 0x70, 0x45, 0x6a, 0x4b, 0x24, 0x49, + 0x6a, 0x22, 0x03, 0x15, 0x16, 0xb3, 0xb3, 0x1b, 0xaa, 0x89, 0xec, 0xad, + 0x6f, 0xee, 0x63, 0x59, 0x53, 0x25, 0x01, 0xc6, 0xe3, 0xc0, 0x35, 0x35, + 0xcd, 0xbc, 0xb0, 0x37, 0x96, 0xc4, 0xe4, 0xfa, 0x74, 0xab, 0x9a, 0x0d, + 0xf7, 0x91, 0x6e, 0xe8, 0x31, 0x82, 0xb8, 0x1f, 0x2f, 0x4a, 0x82, 0xf5, + 0xe4, 0x79, 0xb8, 0x65, 0x90, 0x9e, 0xc3, 0xa5, 0x72, 0x54, 0x6f, 0x9f, + 0x53, 0x1e, 0x6e, 0x6b, 0x15, 0x80, 0xd8, 0x01, 0x0c, 0x55, 0xbd, 0x7a, + 0xe6, 0xab, 0xcb, 0x71, 0x77, 0x08, 0x3b, 0x5d, 0x5b, 0x26, 0xb4, 0x63, + 0x84, 0x18, 0x89, 0x70, 0x03, 0x56, 0xde, 0x9f, 0xe0, 0x3b, 0xbd, 0x7b, + 0x41, 0x1a, 0x85, 0x9d, 0xd4, 0x0a, 0xec, 0x48, 0x11, 0xbe, 0x47, 0x4f, + 0x7a, 0x74, 0x67, 0xcb, 0x7e, 0x66, 0x6c, 0xe0, 0xe2, 0xaf, 0xdc, 0xe2, + 0x56, 0x49, 0xf7, 0x97, 0x39, 0x2d, 0xe8, 0x09, 0xad, 0xef, 0x0f, 0x78, + 0x82, 0xef, 0x48, 0x59, 0xa4, 0xb6, 0x81, 0x5a, 0x49, 0x17, 0x6e, 0xf6, + 0x4c, 0xed, 0xf7, 0x15, 0xda, 0xf8, 0x4f, 0xc1, 0xa9, 0xa2, 0x32, 0xdd, + 0x6a, 0xb7, 0x2d, 0x0d, 0xcb, 0x2c, 0x88, 0x51, 0x82, 0xb4, 0x6c, 0x98, + 0xe7, 0x9f, 0xff, 0x00, 0x55, 0x72, 0xf7, 0xc2, 0xd2, 0x1d, 0x52, 0xe1, + 0x6c, 0x27, 0xf3, 0x6d, 0x91, 0xb0, 0x24, 0x55, 0xc2, 0x9a, 0x2a, 0xd5, + 0x52, 0x4d, 0x47, 0x56, 0xb7, 0x22, 0x0a, 0xf2, 0x4a, 0x5a, 0x18, 0x13, + 0x3b, 0xbb, 0xb4, 0xdb, 0xc8, 0x76, 0x62, 0x5b, 0xeb, 0x4f, 0xb5, 0x93, + 0x50, 0x63, 0x88, 0x4c, 0x8e, 0xcc, 0x76, 0x81, 0xd7, 0x3e, 0xd5, 0x66, + 0x68, 0xe2, 0x69, 0x60, 0xdc, 0xdb, 0x54, 0xf5, 0x60, 0x33, 0xfa, 0x57, + 0xa7, 0x69, 0xb6, 0x9a, 0x26, 0x9f, 0x65, 0x69, 0x6a, 0x86, 0x40, 0xe7, + 0x6c, 0xfe, 0x63, 0x7a, 0xfe, 0x3f, 0xca, 0xb9, 0xea, 0xe2, 0x95, 0x34, + 0xb4, 0x6e, 0xe6, 0xd6, 0x5b, 0x23, 0x9a, 0xbf, 0xf0, 0xff, 0x00, 0x93, + 0xa2, 0x47, 0x2c, 0x8d, 0x1a, 0x4a, 0x57, 0x79, 0x01, 0xf2, 0xc4, 0xf7, + 0x06, 0xb9, 0xb1, 0x26, 0xd8, 0x02, 0xca, 0xe4, 0x73, 0x9e, 0x06, 0x71, + 0x5e, 0xb3, 0x15, 0x8c, 0x17, 0x4d, 0x75, 0x89, 0xc3, 0x47, 0x70, 0xc1, + 0x9c, 0x63, 0xf5, 0xfd, 0x2b, 0xce, 0xf5, 0xaf, 0x0f, 0x5c, 0x47, 0x75, + 0x37, 0xd9, 0xbc, 0xa6, 0x81, 0x64, 0x20, 0x6d, 0x39, 0x23, 0xeb, 0x5c, + 0xb8, 0x7c, 0x42, 0x75, 0x1a, 0x66, 0x6d, 0x5b, 0x53, 0x13, 0xcc, 0x54, + 0xf3, 0x4c, 0x6d, 0x8e, 0x07, 0x5e, 0x39, 0xaa, 0x33, 0x62, 0xe2, 0x45, + 0x67, 0x7c, 0xfa, 0xd5, 0xbf, 0xec, 0xe9, 0xda, 0x09, 0xa7, 0xf9, 0x59, + 0x50, 0xe0, 0x90, 0x7a, 0x55, 0x04, 0x0b, 0xb4, 0x03, 0x90, 0x73, 0x9a, + 0xf4, 0xd3, 0x4d, 0x68, 0x44, 0xbb, 0x09, 0x36, 0xc0, 0x0a, 0x22, 0x8c, + 0xe3, 0x82, 0x45, 0x0d, 0x77, 0x32, 0x43, 0xe5, 0x90, 0x09, 0xf4, 0x14, + 0xd9, 0x03, 0x17, 0xdd, 0x91, 0xc7, 0x4c, 0x55, 0x5b, 0x82, 0xf1, 0x82, + 0xe1, 0xb1, 0xf4, 0xa7, 0xad, 0xf4, 0x22, 0x72, 0x7d, 0x0d, 0x9d, 0x1f, + 0x56, 0xfb, 0x13, 0x96, 0x68, 0x95, 0xd8, 0xae, 0x06, 0x46, 0x71, 0x5b, + 0x33, 0xea, 0x6f, 0xab, 0x32, 0x22, 0xc2, 0x00, 0x51, 0x82, 0xd1, 0x83, + 0xfa, 0xd7, 0x0d, 0x69, 0x2b, 0x09, 0x09, 0x3c, 0x67, 0x9a, 0xbe, 0xb7, + 0x45, 0x58, 0xf9, 0x6c, 0x40, 0xf6, 0x6c, 0x55, 0x5a, 0xcf, 0x61, 0xa9, + 0xb4, 0xac, 0xce, 0x9a, 0x76, 0x2b, 0x34, 0x71, 0xcf, 0xfe, 0x8e, 0x23, + 0xc1, 0xf9, 0x94, 0xf3, 0xef, 0x54, 0x35, 0xfb, 0x93, 0x2f, 0x94, 0x3c, + 0xf6, 0x99, 0x23, 0x4d, 0xaa, 0x4a, 0xe3, 0x02, 0xb3, 0xd2, 0x79, 0x6f, + 0xa6, 0x58, 0x90, 0x97, 0x93, 0xb0, 0xce, 0x49, 0xa2, 0xf6, 0x36, 0x89, + 0x80, 0x67, 0xdf, 0xeb, 0x8f, 0x5a, 0x87, 0x7b, 0x8a, 0x4d, 0xdb, 0x52, + 0xab, 0x0d, 0xf1, 0x65, 0x70, 0x18, 0x60, 0x60, 0x9e, 0x4f, 0xbd, 0x42, + 0x96, 0xd3, 0x4a, 0xcc, 0x11, 0x19, 0x88, 0xe4, 0x90, 0x33, 0x8a, 0x97, + 0x95, 0x72, 0x4e, 0x33, 0x8f, 0x5a, 0xb5, 0xa7, 0x5d, 0xcf, 0x0c, 0xec, + 0x21, 0x95, 0x91, 0x59, 0x48, 0x7d, 0x87, 0xa8, 0xc5, 0x26, 0xdc, 0x55, + 0xd1, 0x81, 0x98, 0xe0, 0xc1, 0x2a, 0x96, 0x2a, 0x41, 0x1d, 0x69, 0x77, + 0x2c, 0x84, 0x1d, 0xbc, 0xfb, 0x1a, 0xd3, 0xb8, 0x6b, 0x79, 0x20, 0x48, + 0x63, 0x0a, 0x42, 0x9c, 0xee, 0x2b, 0xf3, 0x7d, 0x2b, 0x3a, 0x6b, 0x64, + 0x82, 0x51, 0x92, 0x3d, 0xf0, 0x68, 0x53, 0x52, 0xdf, 0x72, 0xb6, 0x1e, + 0xad, 0xe5, 0x43, 0xc2, 0xf2, 0x4f, 0x53, 0x55, 0x99, 0x89, 0x62, 0x4f, + 0x7a, 0x9c, 0x1d, 0xc9, 0x81, 0x8c, 0x67, 0x81, 0x9a, 0xb0, 0x9a, 0x35, + 0xe4, 0xf6, 0x5f, 0x69, 0x48, 0xb7, 0xa0, 0xee, 0x8d, 0x93, 0xf9, 0x54, + 0xab, 0x2d, 0x58, 0x8a, 0xd1, 0x85, 0x65, 0xc1, 0xc6, 0x7b, 0x62, 0x91, + 0xe5, 0xc0, 0xda, 0x3a, 0xd7, 0x4b, 0xa0, 0x78, 0x32, 0xff, 0x00, 0x5e, + 0x81, 0x9a, 0xd6, 0x58, 0xa2, 0x2b, 0xd5, 0x5f, 0xad, 0x62, 0x6b, 0x7a, + 0x45, 0xde, 0x85, 0x7c, 0x6d, 0x2e, 0xd4, 0x2c, 0x8b, 0xc8, 0x3d, 0x41, + 0x1e, 0xb4, 0xe1, 0x17, 0x38, 0xb9, 0xad, 0x93, 0xb7, 0xcc, 0x7a, 0xa2, + 0x96, 0xe5, 0x18, 0xf5, 0xeb, 0x50, 0xb9, 0xe4, 0x93, 0xcd, 0x23, 0xc9, + 0xb8, 0xe0, 0xb6, 0x0f, 0xb5, 0x31, 0xd1, 0x04, 0x7f, 0x78, 0x93, 0xde, + 0xae, 0x28, 0x57, 0x1a, 0x5d, 0x06, 0x41, 0x1c, 0x7b, 0xd3, 0xd5, 0xf2, + 0xbc, 0xe0, 0xe3, 0xa6, 0x2a, 0x02, 0xd1, 0x91, 0xfd, 0xe3, 0x4e, 0x49, + 0x82, 0x47, 0xc2, 0xf7, 0xea, 0x2b, 0x46, 0xb4, 0x11, 0x33, 0x38, 0x24, + 0x6d, 0x3c, 0xff, 0x00, 0x16, 0x69, 0xcd, 0x1c, 0x6f, 0x82, 0x0f, 0x41, + 0xd0, 0x9a, 0xa7, 0x21, 0x66, 0x3f, 0x21, 0xeb, 0xde, 0xa6, 0x88, 0xb2, + 0x21, 0x1b, 0x77, 0x1f, 0x53, 0x49, 0xad, 0x2e, 0x09, 0xea, 0x48, 0xaa, + 0xe0, 0xee, 0x0c, 0x02, 0xf7, 0x00, 0xd5, 0x85, 0x64, 0x61, 0xb4, 0xb1, + 0x05, 0x79, 0x26, 0xaa, 0xe4, 0x2a, 0xe5, 0x98, 0x0f, 0x51, 0x42, 0x46, + 0x25, 0x24, 0xab, 0x70, 0x0f, 0x7a, 0x3a, 0xdc, 0xa9, 0x32, 0xe2, 0x83, + 0xb1, 0x00, 0x63, 0xbb, 0xa8, 0xf7, 0xa9, 0xe7, 0x50, 0x91, 0xaf, 0x99, + 0x1a, 0xa8, 0x23, 0xe5, 0x20, 0x0f, 0x9a, 0xaa, 0x21, 0x58, 0x88, 0xcb, + 0x61, 0xbd, 0xaa, 0x09, 0xe5, 0x2d, 0x26, 0x15, 0x0f, 0xca, 0x7a, 0x9a, + 0x12, 0x4c, 0x92, 0xda, 0xca, 0x10, 0x8e, 0xd4, 0x79, 0xc1, 0xb7, 0x0e, + 0x3f, 0x1a, 0xa8, 0x00, 0x39, 0x25, 0xb0, 0xc3, 0xa6, 0x69, 0x59, 0x59, + 0xc8, 0x6e, 0xb5, 0x09, 0x2b, 0x94, 0x8d, 0x6b, 0x0d, 0x42, 0xe2, 0xce, + 0x75, 0x7b, 0x67, 0x74, 0x95, 0x4e, 0x43, 0xaf, 0x6a, 0xe8, 0xad, 0x3f, + 0xb7, 0x2f, 0xa3, 0xfe, 0xd4, 0x59, 0xa7, 0xbb, 0x8a, 0x06, 0xc3, 0x93, + 0x21, 0x3b, 0x47, 0x5c, 0x1f, 0xfe, 0xb5, 0x72, 0x31, 0xc9, 0x2a, 0xc4, + 0x02, 0x82, 0xac, 0x3b, 0xfa, 0xd6, 0xee, 0x9b, 0xaa, 0x36, 0x95, 0xa5, + 0xec, 0xb5, 0xbd, 0x9d, 0x64, 0x76, 0xcc, 0x91, 0x67, 0xe4, 0x35, 0x12, + 0x37, 0x84, 0x92, 0xd1, 0xb3, 0x3b, 0x57, 0xb8, 0x4f, 0xb6, 0x3b, 0x91, + 0x86, 0x6c, 0xb1, 0x18, 0xe8, 0x6a, 0xb2, 0xbb, 0x34, 0x79, 0xc7, 0x51, + 0x52, 0x6a, 0xfa, 0x88, 0xd5, 0x6f, 0xde, 0xe1, 0x55, 0x63, 0x73, 0x80, + 0xc1, 0x45, 0x46, 0xae, 0x42, 0x00, 0x06, 0x46, 0x3a, 0xd5, 0xa5, 0x64, + 0x67, 0x3e, 0x5b, 0xe8, 0x37, 0x0c, 0xa7, 0x2a, 0x08, 0x23, 0xb5, 0x3d, + 0xa6, 0xde, 0xbb, 0x8e, 0x18, 0x81, 0xce, 0x2a, 0x45, 0x91, 0xa4, 0x8d, + 0xc2, 0x28, 0x2c, 0x47, 0x1f, 0x5a, 0xc9, 0x33, 0x95, 0x94, 0xab, 0x26, + 0xc6, 0x3d, 0xa9, 0xc3, 0xde, 0x6d, 0x18, 0x48, 0x9a, 0x37, 0xc4, 0xdc, + 0x47, 0x81, 0xee, 0x33, 0x53, 0xcb, 0x2c, 0x29, 0x0b, 0x33, 0xc4, 0x79, + 0x39, 0xc8, 0xe0, 0xe6, 0x96, 0x2b, 0x93, 0x14, 0x2a, 0xd9, 0x1c, 0xe4, + 0x67, 0x14, 0xd7, 0xba, 0x86, 0x7f, 0xbc, 0x79, 0xec, 0x4f, 0x39, 0xad, + 0x63, 0x0e, 0x67, 0xa8, 0x46, 0x3e, 0x65, 0x68, 0xe4, 0x79, 0xa2, 0xda, + 0x73, 0x9e, 0xd9, 0xa9, 0xa2, 0x79, 0x83, 0x47, 0x1b, 0x46, 0x47, 0x38, + 0x26, 0xac, 0x41, 0x1e, 0xd5, 0x0e, 0xa8, 0x4f, 0xae, 0x7b, 0x9a, 0xbb, + 0x3c, 0xf1, 0xb4, 0x29, 0xb6, 0x1c, 0x31, 0x03, 0x3e, 0xd5, 0xb3, 0x84, + 0x3b, 0x8e, 0x31, 0x57, 0x44, 0x52, 0xca, 0x51, 0xc2, 0x92, 0x4e, 0xde, + 0xc3, 0xbd, 0x42, 0x66, 0xd8, 0xb8, 0xc8, 0x03, 0x39, 0xdb, 0x53, 0x5c, + 0xe6, 0x55, 0x57, 0x00, 0x1e, 0x3b, 0x55, 0x68, 0x95, 0x1d, 0xc0, 0x95, + 0xb6, 0x8e, 0xb9, 0xae, 0x7b, 0xb8, 0xa6, 0x8d, 0x1d, 0xef, 0x6b, 0x92, + 0x46, 0xcf, 0x3d, 0xf4, 0x08, 0xa3, 0xcc, 0x25, 0x80, 0x03, 0x3d, 0x4e, + 0x6b, 0x6e, 0xf7, 0x55, 0xd5, 0xec, 0x2f, 0xe6, 0x89, 0x1d, 0xe1, 0xc6, + 0x23, 0x28, 0xae, 0x0e, 0x3d, 0x05, 0x73, 0x69, 0x8f, 0x34, 0x90, 0xed, + 0xb4, 0x74, 0xc7, 0x5a, 0xba, 0xf2, 0x29, 0x87, 0x07, 0x0c, 0xc7, 0xf8, + 0xbb, 0x9a, 0xc6, 0xaf, 0x2c, 0x9e, 0xa8, 0x77, 0xb2, 0x16, 0xe3, 0xc4, + 0xda, 0xca, 0x17, 0x81, 0xae, 0xe7, 0xc3, 0xf0, 0xdc, 0xf1, 0x58, 0x45, + 0xb6, 0xcd, 0xe6, 0xc9, 0x2b, 0x16, 0x07, 0x90, 0x0d, 0x6a, 0xa5, 0xca, + 0x2b, 0x22, 0x24, 0x61, 0x5b, 0x9d, 0xee, 0xc3, 0x39, 0xfa, 0x53, 0xa5, + 0xd1, 0xcc, 0xf1, 0x34, 0xc8, 0x82, 0x34, 0xc6, 0x43, 0x48, 0x31, 0x9f, + 0xa7, 0xad, 0x69, 0x4a, 0x54, 0xe9, 0xe9, 0x6b, 0x19, 0x49, 0x36, 0x25, + 0xbb, 0x45, 0x2c, 0x4a, 0xed, 0x77, 0x24, 0x6c, 0x5f, 0xe7, 0x0b, 0xcf, + 0xcb, 0xd8, 0xd7, 0x54, 0x2f, 0x2f, 0xac, 0x04, 0x53, 0xce, 0x3e, 0xd4, + 0x8b, 0x17, 0xee, 0x0c, 0x87, 0x1b, 0x40, 0xf6, 0xae, 0x4e, 0xc7, 0x4a, + 0xb8, 0xf3, 0x36, 0x08, 0x4c, 0x91, 0x14, 0xfd, 0xe3, 0x01, 0xf7, 0x47, + 0xad, 0x5c, 0xfb, 0x5a, 0x1b, 0x66, 0x5f, 0xed, 0x16, 0x9b, 0x6f, 0xcb, + 0x1a, 0x76, 0x15, 0xcf, 0x5e, 0x9c, 0x66, 0xf4, 0xd4, 0xb8, 0x5f, 0xa9, + 0x76, 0x1b, 0x9d, 0x2a, 0xea, 0xe5, 0xee, 0x75, 0x2b, 0xa9, 0xa3, 0x63, + 0xb9, 0x82, 0x22, 0xe7, 0x9f, 0x6c, 0xd5, 0x3d, 0x73, 0x54, 0xb2, 0xb8, + 0xb8, 0x09, 0x60, 0xd3, 0x35, 0xba, 0x9c, 0xa7, 0x98, 0x79, 0x1c, 0x54, + 0x3a, 0xc4, 0xb0, 0x22, 0x45, 0xf6, 0x67, 0x92, 0xe0, 0x10, 0x0c, 0x8c, + 0xe8, 0x14, 0x7d, 0x07, 0xb5, 0x62, 0xf9, 0xe1, 0x2e, 0x8b, 0xb2, 0x05, + 0xdf, 0xc8, 0x51, 0xc0, 0x02, 0xb6, 0xa5, 0x1e, 0x68, 0xdc, 0xd2, 0x55, + 0x1d, 0xb9, 0x4b, 0x12, 0x5c, 0x93, 0x19, 0x0c, 0x3a, 0x55, 0x30, 0xce, + 0x76, 0xef, 0x5c, 0x77, 0xfa, 0xd4, 0xe5, 0xf7, 0xf2, 0x48, 0xc7, 0xa5, + 0x28, 0x45, 0x94, 0xaa, 0xe4, 0xe4, 0xd6, 0xb7, 0x49, 0x19, 0xb7, 0xa9, + 0x0b, 0xc8, 0xe7, 0x03, 0x03, 0x60, 0x39, 0xab, 0x11, 0x69, 0xd7, 0x37, + 0x71, 0x3d, 0xd2, 0xa6, 0x21, 0x87, 0x6a, 0xb0, 0x07, 0x04, 0xe4, 0xd4, + 0x2f, 0x6e, 0xc1, 0xca, 0x87, 0xe9, 0xeb, 0x49, 0x6c, 0x25, 0xde, 0x50, + 0xc8, 0xf8, 0xec, 0x41, 0xa6, 0xa5, 0x65, 0x78, 0x84, 0x79, 0x5e, 0xe6, + 0x98, 0xbb, 0x87, 0x62, 0x22, 0x2a, 0xae, 0x3a, 0x9c, 0x73, 0x4b, 0x24, + 0xf1, 0x63, 0x76, 0xf0, 0x58, 0x7a, 0xd6, 0x6c, 0x88, 0xd1, 0xb9, 0x5f, + 0x7e, 0x29, 0x8a, 0xa5, 0x32, 0x1c, 0x8c, 0xd2, 0xbb, 0x33, 0xb1, 0x72, + 0x66, 0x59, 0x70, 0xdd, 0x07, 0x73, 0x4c, 0x45, 0x58, 0xdc, 0x95, 0x6d, + 0xd9, 0xe9, 0x51, 0x37, 0x31, 0xf1, 0x4d, 0xea, 0x07, 0x03, 0x39, 0xa5, + 0xb9, 0x4c, 0xb2, 0x58, 0xaa, 0xee, 0x34, 0xc3, 0x72, 0x54, 0x75, 0xe4, + 0xf7, 0xa6, 0x93, 0xbd, 0x76, 0x93, 0xd2, 0xa2, 0x20, 0xae, 0x5b, 0x1c, + 0x0e, 0xf4, 0x9a, 0x4d, 0x89, 0xf9, 0x13, 0x0d, 0xa4, 0x96, 0xc7, 0x27, + 0xad, 0x5b, 0xd3, 0xee, 0xda, 0xce, 0xee, 0x29, 0x95, 0x43, 0x79, 0x6d, + 0xbb, 0x06, 0xa8, 0xef, 0x66, 0x40, 0x41, 0xeb, 0x4e, 0x5b, 0x96, 0x80, + 0x96, 0x52, 0xa7, 0x2b, 0x82, 0x08, 0xcd, 0x27, 0x1b, 0xe8, 0x38, 0xe8, + 0xce, 0x94, 0x78, 0x91, 0xee, 0xaf, 0xa4, 0xbd, 0xb9, 0x89, 0x08, 0xc8, + 0xc4, 0x4b, 0xc0, 0x22, 0xb0, 0xaf, 0x27, 0xfb, 0x4d, 0xcc, 0x92, 0xe0, + 0x28, 0x66, 0xce, 0x17, 0xa5, 0x53, 0x33, 0x80, 0x71, 0x9e, 0x7d, 0x28, + 0x0c, 0x4f, 0x3d, 0x28, 0x50, 0xb1, 0x5c, 0xdc, 0xda, 0x96, 0xad, 0xe6, + 0x92, 0x06, 0x63, 0x13, 0x94, 0xdc, 0xbb, 0x4e, 0x3b, 0x83, 0xda, 0x9c, + 0xac, 0x0a, 0xed, 0x76, 0xa8, 0x15, 0x87, 0x42, 0x29, 0xdb, 0x43, 0x61, + 0xb2, 0x78, 0xf4, 0xa7, 0x61, 0x5d, 0x93, 0x99, 0x0f, 0x90, 0x55, 0x09, + 0xe3, 0xaf, 0x35, 0x4e, 0x16, 0xc3, 0x13, 0x9c, 0x13, 0xdc, 0xd5, 0xdb, + 0x3b, 0x47, 0xb9, 0x9c, 0x2c, 0x5c, 0x06, 0xe0, 0x96, 0x38, 0xab, 0xb7, + 0x3a, 0x5b, 0x40, 0x13, 0x08, 0xdb, 0x4f, 0xf1, 0xb2, 0xe0, 0x1f, 0xa5, + 0x4b, 0xaa, 0x93, 0xb3, 0x0d, 0x5b, 0xb9, 0x56, 0x33, 0x23, 0xae, 0x11, + 0x58, 0x9f, 0x61, 0x55, 0x6e, 0xd1, 0xd5, 0xca, 0x9f, 0x92, 0x4e, 0xe0, + 0xd7, 0xa3, 0xf8, 0x7e, 0xc2, 0xd7, 0x40, 0x1f, 0x6b, 0xd4, 0x9e, 0x06, + 0x8a, 0x48, 0xc9, 0x8d, 0xa4, 0xe4, 0x03, 0x8e, 0x01, 0x02, 0xbc, 0xee, + 0xea, 0x43, 0xa9, 0x6b, 0x12, 0x13, 0x2a, 0xa2, 0xc9, 0x21, 0xc3, 0x91, + 0xf2, 0x8e, 0x6b, 0x3a, 0x38, 0xbf, 0x69, 0x36, 0x92, 0xd1, 0x75, 0x36, + 0x94, 0x9a, 0x5a, 0x99, 0xee, 0x1b, 0xa9, 0x39, 0x34, 0xd5, 0x70, 0xbd, + 0x46, 0x0f, 0xad, 0x6a, 0x0d, 0x02, 0xe4, 0x96, 0x78, 0xe4, 0x59, 0x15, + 0x3a, 0xb0, 0x38, 0x18, 0xac, 0xd9, 0x93, 0x07, 0xe5, 0xcf, 0x5e, 0xb5, + 0xd3, 0x1a, 0x91, 0x9b, 0xd1, 0x99, 0xf3, 0x5e, 0x44, 0x86, 0x66, 0x65, + 0xf9, 0xb8, 0x3e, 0x94, 0xc0, 0xfb, 0x8e, 0x32, 0x69, 0x55, 0x78, 0xf9, + 0xa9, 0x84, 0x2f, 0x45, 0x22, 0x9b, 0xb5, 0xc9, 0x9b, 0x5c, 0xcc, 0x57, + 0x20, 0x9c, 0x01, 0x51, 0x90, 0xd8, 0x03, 0x38, 0xe7, 0x07, 0xda, 0x94, + 0xe4, 0x10, 0x07, 0x4c, 0xd4, 0xea, 0xc3, 0x01, 0x48, 0xf9, 0xbb, 0xd3, + 0xd8, 0x92, 0xc4, 0x71, 0x83, 0x12, 0xa8, 0xe4, 0xe7, 0x9a, 0x46, 0x85, + 0x5c, 0xe3, 0xbf, 0xa7, 0x6a, 0x89, 0xa5, 0x65, 0x6f, 0x94, 0x67, 0xde, + 0x85, 0xb8, 0x61, 0x1f, 0xce, 0x00, 0x73, 0xce, 0x3b, 0x54, 0xb5, 0xd5, + 0x0c, 0x9f, 0xc9, 0x55, 0x04, 0x10, 0x08, 0xa5, 0x59, 0x51, 0x58, 0x20, + 0xea, 0x3a, 0x62, 0x98, 0x66, 0x56, 0x55, 0x2c, 0x79, 0x23, 0xd6, 0xa0, + 0x20, 0x33, 0x97, 0x45, 0x23, 0x1d, 0x48, 0xa8, 0x49, 0xbd, 0xc4, 0x68, + 0x2f, 0xcf, 0xb8, 0x28, 0xcf, 0xad, 0x67, 0xbf, 0x3c, 0x8c, 0xe3, 0x3c, + 0xe7, 0xb5, 0x59, 0x8a, 0x62, 0xc0, 0xe3, 0x9e, 0x3d, 0x29, 0x93, 0xdb, + 0x0b, 0x85, 0x2e, 0x18, 0x21, 0xfa, 0x51, 0x1d, 0x1e, 0xa3, 0x4f, 0xa3, + 0x1c, 0x02, 0x2a, 0x16, 0x2e, 0xc5, 0xb1, 0xc1, 0x1d, 0x33, 0x5a, 0x1a, + 0x2d, 0xf4, 0xd6, 0x93, 0xb3, 0x45, 0x30, 0x8b, 0x28, 0xcb, 0x9d, 0xb9, + 0xcf, 0x1d, 0xea, 0xba, 0xb5, 0x84, 0x56, 0x28, 0x18, 0x33, 0x4a, 0x32, + 0x08, 0x07, 0x90, 0x7b, 0x1a, 0xcf, 0x77, 0x91, 0x48, 0xda, 0xa4, 0x33, + 0x1c, 0x73, 0x53, 0xcb, 0xcd, 0xa1, 0x4d, 0xf2, 0xb3, 0xa0, 0xbd, 0xd4, + 0xaf, 0xee, 0x99, 0x05, 0xdd, 0xdc, 0x93, 0x80, 0x73, 0x85, 0x73, 0xcf, + 0x15, 0x1f, 0x94, 0xf3, 0xce, 0x83, 0x1d, 0x7d, 0xfa, 0x7d, 0x6a, 0x9d, + 0xac, 0x6e, 0x07, 0xcd, 0x28, 0x5e, 0x3b, 0xd5, 0xe5, 0x25, 0x51, 0xbc, + 0xb6, 0x62, 0x9c, 0x0d, 0xc0, 0x74, 0x3e, 0xf5, 0x84, 0xb4, 0xd1, 0x0e, + 0xf7, 0x2e, 0x47, 0x14, 0xd6, 0xd6, 0xef, 0x29, 0x36, 0xb1, 0xc7, 0xf7, + 0x43, 0x38, 0x39, 0xfd, 0x2b, 0x92, 0x95, 0x98, 0x5c, 0x60, 0x1c, 0xa9, + 0xce, 0x4f, 0xad, 0x74, 0x17, 0x7a, 0x56, 0xa3, 0x63, 0x69, 0x05, 0xfd, + 0xc6, 0x1a, 0xd2, 0x66, 0xc2, 0xe2, 0x40, 0x49, 0xc7, 0xa8, 0xea, 0x2b, + 0x0e, 0xe5, 0xa2, 0x6b, 0xb3, 0xb0, 0x3a, 0xc6, 0x7b, 0x9e, 0x71, 0x5b, + 0x50, 0xd5, 0xef, 0x70, 0x7a, 0x6e, 0x34, 0xa3, 0x11, 0xf5, 0x14, 0xcc, + 0xf0, 0x73, 0x8a, 0xbc, 0x96, 0xb1, 0xc8, 0x46, 0x25, 0x50, 0x71, 0x9e, + 0x4f, 0x7a, 0xaf, 0x79, 0x62, 0x56, 0x21, 0x74, 0x84, 0x24, 0x20, 0xe0, + 0xe5, 0xb9, 0xdd, 0xe9, 0x8a, 0xd5, 0x49, 0x37, 0x66, 0x67, 0x67, 0x61, + 0x91, 0xa8, 0x07, 0x61, 0x52, 0x4d, 0x48, 0xf1, 0xa1, 0xe1, 0x1c, 0xfa, + 0x91, 0x50, 0xc3, 0x23, 0x49, 0x03, 0x4a, 0xd8, 0x52, 0x06, 0x07, 0x7e, + 0x68, 0x19, 0x72, 0xac, 0x41, 0xc8, 0x1c, 0x62, 0xa9, 0xa1, 0xc5, 0x3b, + 0xe8, 0x2a, 0x87, 0x57, 0xda, 0xac, 0x72, 0xdc, 0x1c, 0x77, 0xab, 0x71, + 0x4a, 0xb0, 0x13, 0x96, 0xdc, 0x54, 0x8c, 0x11, 0x54, 0x8c, 0x87, 0x78, + 0x3b, 0xb0, 0x47, 0x46, 0x14, 0xc3, 0x29, 0x04, 0x1c, 0x64, 0xb1, 0xc5, + 0x3b, 0x5d, 0x85, 0xae, 0x74, 0x1a, 0x84, 0xf1, 0xc8, 0x43, 0xb6, 0xd5, + 0x25, 0x38, 0x0a, 0x3f, 0x9d, 0x60, 0x6e, 0x0c, 0x4a, 0xa9, 0xdb, 0x57, + 0xec, 0xed, 0x2e, 0x2f, 0x89, 0x58, 0xa1, 0x96, 0x42, 0x07, 0xf0, 0x29, + 0x6c, 0x1a, 0xa7, 0x70, 0x82, 0x39, 0x32, 0xc8, 0x11, 0x81, 0xc1, 0x5f, + 0x7a, 0x6e, 0x31, 0x5b, 0x17, 0x1d, 0x77, 0x26, 0x82, 0x50, 0x8a, 0x00, + 0x5f, 0xad, 0x4e, 0x92, 0x17, 0x39, 0xcf, 0x7a, 0xa3, 0x1c, 0x81, 0x81, + 0x07, 0xbf, 0xa5, 0x6e, 0x68, 0x71, 0x69, 0x97, 0x32, 0xb4, 0x37, 0xc6, + 0x64, 0x24, 0x61, 0x1d, 0x08, 0xc6, 0x7d, 0xf3, 0x58, 0xcb, 0x4d, 0x4d, + 0x2c, 0x92, 0x12, 0xce, 0xc2, 0xee, 0xf2, 0xe5, 0x23, 0x85, 0x17, 0x1d, + 0x8b, 0x1c, 0x0f, 0xce, 0xbd, 0x5f, 0xc3, 0x07, 0x4b, 0xd7, 0xb4, 0x68, + 0xf4, 0x7d, 0x42, 0x18, 0x6e, 0x1e, 0x1c, 0x93, 0x70, 0x30, 0x08, 0x3e, + 0x9e, 0xe7, 0x93, 0x5e, 0x3d, 0xa8, 0x19, 0xed, 0xae, 0xe4, 0xb6, 0xdc, + 0x4e, 0xc6, 0xdb, 0xc1, 0xeb, 0x5d, 0x0e, 0x83, 0xa7, 0x49, 0x0d, 0xa4, + 0x57, 0xcd, 0x75, 0xb6, 0x39, 0x5c, 0xab, 0x44, 0x87, 0x2f, 0xf5, 0xc5, + 0x4c, 0xac, 0x97, 0x30, 0x94, 0xac, 0x74, 0x7a, 0xd7, 0xc3, 0xa8, 0x34, + 0xbd, 0x5a, 0x24, 0x4b, 0xa2, 0xd6, 0x53, 0x1f, 0xbc, 0x17, 0x2c, 0x8b, + 0xdc, 0xfb, 0xe2, 0xb2, 0x35, 0xdd, 0x36, 0xdf, 0xc3, 0x12, 0x5a, 0x4d, + 0xa6, 0xea, 0x91, 0xdf, 0x2c, 0xaa, 0x58, 0x95, 0xc6, 0x50, 0xfa, 0x11, + 0x52, 0x5e, 0xeb, 0x06, 0xc6, 0xed, 0x9a, 0x0b, 0xf9, 0xae, 0x44, 0x0b, + 0xb2, 0x35, 0x9d, 0xb2, 0x02, 0x9e, 0xa2, 0xb9, 0x29, 0x6e, 0x7e, 0xd7, + 0x70, 0xca, 0xa0, 0x26, 0x72, 0x4e, 0x4f, 0x00, 0xfb, 0x51, 0x4d, 0x3e, + 0xae, 0xe8, 0xbf, 0x6b, 0xd8, 0xee, 0xb4, 0x4f, 0x19, 0x4b, 0xa4, 0x45, + 0x17, 0xd9, 0x6f, 0x55, 0xe2, 0x90, 0xef, 0xb9, 0xb5, 0x92, 0x2c, 0x28, + 0x3d, 0xc2, 0xd5, 0xaf, 0x1e, 0x78, 0x97, 0x4c, 0xd7, 0x5e, 0xca, 0x7b, + 0x01, 0x6e, 0xe7, 0xbb, 0xed, 0xc4, 0xcb, 0xfe, 0xc9, 0xf6, 0xaf, 0x3e, + 0x09, 0x35, 0xac, 0xa9, 0x24, 0x65, 0x1c, 0xe7, 0xa1, 0xab, 0xab, 0xf6, + 0x7b, 0xdb, 0x85, 0x94, 0xed, 0x86, 0x71, 0xfc, 0x0a, 0x30, 0x0d, 0x2e, + 0x5b, 0xbb, 0xdc, 0x98, 0xcd, 0x29, 0x5d, 0x17, 0x63, 0x2e, 0x5b, 0xe6, + 0x00, 0x0f, 0x7e, 0x6b, 0xac, 0xf0, 0x74, 0x0a, 0x66, 0xbf, 0x9f, 0x72, + 0x65, 0x61, 0xc6, 0x0f, 0xbf, 0xff, 0x00, 0xaa, 0xb9, 0x8b, 0x38, 0x25, + 0xba, 0xb9, 0x58, 0x62, 0x5d, 0xee, 0xdc, 0x72, 0x7a, 0x56, 0xce, 0x83, + 0x3d, 0xcd, 0xb5, 0xfd, 0xc4, 0x11, 0xa0, 0x2a, 0xf1, 0xb2, 0xc8, 0x3e, + 0x94, 0x54, 0xf8, 0x4e, 0xda, 0x73, 0xf7, 0x91, 0xa1, 0x7f, 0xad, 0xaf, + 0x9b, 0xb0, 0x71, 0x1b, 0x75, 0xe6, 0xb1, 0x5f, 0x56, 0x95, 0x9c, 0x9d, + 0xff, 0x00, 0x28, 0xe3, 0x02, 0xa9, 0x5f, 0xc5, 0x7b, 0x71, 0xbe, 0x54, + 0xb4, 0x98, 0x41, 0x1a, 0xee, 0x2d, 0xb0, 0xe0, 0x0f, 0x5c, 0xd6, 0x62, + 0x39, 0x76, 0xce, 0xec, 0x7a, 0x56, 0x51, 0x8e, 0x87, 0x13, 0xbd, 0xce, + 0xaf, 0x4d, 0xd6, 0x1a, 0xdf, 0x50, 0x8a, 0x70, 0x64, 0x55, 0x43, 0x92, + 0xb9, 0xea, 0x6b, 0xd2, 0x34, 0x7b, 0x87, 0xbe, 0x65, 0xbb, 0x17, 0x31, + 0xb1, 0x71, 0x96, 0x8c, 0x0e, 0x56, 0xbc, 0x8e, 0x34, 0x93, 0x60, 0xb7, + 0x0a, 0x4d, 0xc3, 0x60, 0x9e, 0x6b, 0xb3, 0xf0, 0xe6, 0xb3, 0x26, 0x95, + 0x01, 0xf3, 0x20, 0x73, 0x10, 0x53, 0xbd, 0x82, 0xe7, 0x1e, 0xf9, 0xac, + 0xeb, 0x42, 0xf1, 0x2a, 0x2c, 0x4f, 0x15, 0xb1, 0x5d, 0x52, 0xf9, 0x4f, + 0xf7, 0x41, 0xfa, 0xf1, 0x5c, 0x30, 0x0b, 0x2a, 0xed, 0x1d, 0x31, 0xd7, + 0x3c, 0xd7, 0x5f, 0xae, 0xdf, 0xc7, 0xa8, 0xcd, 0x79, 0x70, 0x87, 0xe4, + 0x7d, 0xa1, 0x72, 0x39, 0xc6, 0x2b, 0x8d, 0x57, 0x0b, 0xc0, 0x5e, 0x31, + 0xd4, 0x56, 0x98, 0x45, 0x64, 0xd1, 0xdf, 0x59, 0xfb, 0x91, 0x19, 0x93, + 0x05, 0xc2, 0x6d, 0xcb, 0x0e, 0xf8, 0x35, 0x6d, 0x67, 0x8d, 0xc9, 0x59, + 0x63, 0x29, 0x8e, 0x99, 0x3d, 0x6b, 0x22, 0x72, 0xea, 0x59, 0xb9, 0xe0, + 0xf1, 0x49, 0x1c, 0xf2, 0x4b, 0x32, 0x9d, 0xdd, 0x07, 0x7a, 0xef, 0x8a, + 0x38, 0x9c, 0xac, 0xcd, 0x98, 0xe5, 0xcc, 0x99, 0x65, 0x21, 0x4f, 0x43, + 0x9a, 0x74, 0xb3, 0x06, 0x47, 0xe3, 0x8e, 0xc6, 0xb3, 0x3c, 0xe7, 0x24, + 0x0c, 0x90, 0xa3, 0xda, 0xac, 0x49, 0x30, 0x58, 0x30, 0xe0, 0xed, 0xf6, + 0x15, 0x76, 0x2a, 0xe8, 0xa7, 0x28, 0x57, 0xe3, 0xf8, 0xaa, 0x1f, 0x21, + 0x88, 0xdb, 0x81, 0x92, 0x71, 0xd2, 0xac, 0x01, 0x1e, 0xe2, 0x47, 0x4e, + 0xbd, 0x69, 0xe0, 0xb4, 0x8d, 0xb8, 0x32, 0x9c, 0x74, 0xac, 0xe4, 0x9a, + 0x2f, 0xa1, 0x4e, 0x3b, 0x16, 0xfb, 0x4a, 0x86, 0xc0, 0xc7, 0x24, 0xd5, + 0xef, 0x22, 0x29, 0x64, 0x18, 0x6c, 0xe3, 0x3c, 0x11, 0xc5, 0x77, 0xf6, + 0x9e, 0x16, 0xd1, 0xec, 0xfc, 0x2c, 0xd7, 0xda, 0xaa, 0x5d, 0xc5, 0x7b, + 0x24, 0x67, 0x82, 0x40, 0xe4, 0xf4, 0x2a, 0x3f, 0x2e, 0xb5, 0xc3, 0x60, + 0x46, 0xa4, 0x2f, 0x24, 0x7a, 0xf5, 0xac, 0x65, 0x53, 0xb6, 0xe7, 0x3c, + 0xbb, 0x9a, 0x3a, 0x7c, 0x0f, 0x24, 0x8d, 0x12, 0x3c, 0x71, 0x92, 0x98, + 0xc1, 0x38, 0xcf, 0xf8, 0xd2, 0x08, 0x66, 0xb3, 0x33, 0x17, 0x8c, 0x9d, + 0x8c, 0x01, 0x38, 0xe2, 0x97, 0xc3, 0x77, 0x31, 0x26, 0xad, 0x14, 0x73, + 0x02, 0xcb, 0x21, 0xda, 0xc0, 0x63, 0x38, 0x3d, 0x71, 0x9e, 0x29, 0xba, + 0x94, 0x72, 0xcd, 0xa9, 0x4c, 0x03, 0x32, 0x21, 0x93, 0x02, 0x39, 0x0e, + 0x3e, 0x9e, 0xd5, 0xc7, 0x3e, 0x77, 0x2b, 0x09, 0x77, 0x46, 0xbe, 0x89, + 0xa1, 0xdb, 0xea, 0xf1, 0xcd, 0x3c, 0xfa, 0x8c, 0x56, 0xe1, 0x0f, 0xee, + 0xa1, 0x94, 0xed, 0x32, 0x77, 0xfc, 0xbe, 0x95, 0xd9, 0xf8, 0x54, 0xdd, + 0x62, 0xe7, 0x4c, 0x5b, 0x7d, 0x96, 0x31, 0x8c, 0xae, 0xf3, 0xb8, 0x28, + 0x3d, 0x94, 0xf7, 0xcf, 0x26, 0xb8, 0xcd, 0x0a, 0x24, 0x75, 0x57, 0xd4, + 0xe2, 0xc5, 0x9e, 0x42, 0xab, 0x1c, 0x8c, 0xfa, 0x73, 0xe9, 0x5e, 0x99, + 0x6c, 0xd3, 0xc1, 0x6a, 0x96, 0xf6, 0x56, 0xa8, 0x8a, 0x54, 0x95, 0x72, + 0xd9, 0x03, 0xd3, 0x3e, 0xbc, 0x56, 0x4e, 0x4b, 0x9b, 0xde, 0xd8, 0xd1, + 0x37, 0x2d, 0xce, 0x1b, 0xc7, 0xb0, 0x5f, 0x2d, 0xa4, 0x12, 0xc3, 0x71, + 0x2b, 0x5b, 0xc4, 0xc5, 0x55, 0x04, 0x6c, 0x02, 0x8c, 0xe3, 0x96, 0xf5, + 0xfe, 0x95, 0x5d, 0xb4, 0xd8, 0x2e, 0xb4, 0x28, 0xa1, 0xb7, 0x4f, 0xdf, + 0x5b, 0x45, 0xbe, 0x5d, 0x80, 0x0d, 0xc7, 0xb9, 0x63, 0x5d, 0xbe, 0xb3, + 0x25, 0xff, 0x00, 0xd8, 0x27, 0x8d, 0x44, 0x61, 0xbc, 0xa2, 0x23, 0x88, + 0x44, 0x65, 0x59, 0xd8, 0x8e, 0x98, 0xed, 0x5c, 0x07, 0x81, 0x6c, 0xb5, + 0x1d, 0x4b, 0x5a, 0xba, 0x33, 0xbb, 0x27, 0x90, 0x8c, 0x1a, 0x32, 0xaa, + 0x70, 0xdd, 0x30, 0x55, 0xab, 0x5f, 0x8a, 0x09, 0xa6, 0x2b, 0xa8, 0xb3, + 0x99, 0x3b, 0x04, 0xb1, 0x93, 0x9e, 0x08, 0x38, 0xae, 0xae, 0xd3, 0x57, + 0x51, 0x7f, 0x2e, 0xe3, 0x10, 0x4f, 0x2f, 0xe5, 0xde, 0x4b, 0x01, 0xf4, + 0xf7, 0xa8, 0xfc, 0x51, 0xa1, 0xc7, 0x06, 0xa2, 0xc6, 0x18, 0x63, 0x51, + 0x12, 0xe5, 0xcc, 0x4f, 0xc1, 0x3e, 0xb8, 0x35, 0xcd, 0xc5, 0x37, 0x96, + 0xef, 0xb8, 0x86, 0xdc, 0x30, 0x73, 0x59, 0xbf, 0x79, 0x5d, 0x0b, 0x9d, + 0xa6, 0x76, 0xfa, 0x96, 0xa9, 0x69, 0x36, 0x9a, 0xb1, 0xae, 0xa5, 0x23, + 0xca, 0x31, 0x8d, 0xa3, 0x03, 0x1d, 0xeb, 0x02, 0x0d, 0x4a, 0x58, 0xbe, + 0x48, 0xda, 0x46, 0xc9, 0x39, 0x6f, 0x33, 0x07, 0x1d, 0xeb, 0x38, 0xc1, + 0xb6, 0xc5, 0xa6, 0x87, 0x7b, 0xa2, 0xfc, 0xae, 0xc7, 0x80, 0x0f, 0xb5, + 0x53, 0x02, 0x4b, 0x8c, 0xb2, 0x60, 0xb8, 0xea, 0xbd, 0x73, 0x53, 0x1a, + 0x51, 0xb3, 0x13, 0x93, 0x3a, 0x4b, 0x48, 0xec, 0x36, 0xca, 0xd0, 0x4b, + 0x2c, 0xbb, 0x1c, 0x99, 0x12, 0x51, 0xf2, 0xb0, 0xfc, 0x2b, 0x9c, 0xf1, + 0x1c, 0x96, 0xb3, 0xea, 0x01, 0xec, 0xad, 0xd6, 0x14, 0x00, 0x29, 0x0a, + 0xd9, 0x07, 0xd4, 0xd6, 0xb6, 0x8d, 0x04, 0x2b, 0x76, 0xb1, 0x5c, 0x06, + 0x48, 0x65, 0xf9, 0x4b, 0x06, 0xc7, 0x3e, 0x83, 0xd6, 0xb6, 0x26, 0xd1, + 0x34, 0x59, 0xee, 0x2e, 0x10, 0xc4, 0xf6, 0xc6, 0x2c, 0xa2, 0xe5, 0x8f, + 0xcc, 0xde, 0xbc, 0xf4, 0xa7, 0xce, 0xa2, 0xf9, 0xad, 0xa7, 0xe6, 0x1c, + 0xae, 0x5b, 0x1c, 0x24, 0x96, 0x33, 0xc7, 0x6b, 0x1d, 0xc1, 0x4c, 0xc3, + 0x20, 0x38, 0x60, 0x3a, 0x1f, 0x7a, 0xa6, 0x59, 0x4a, 0x10, 0xc2, 0xb7, + 0x75, 0x69, 0x1a, 0xcb, 0x4f, 0x36, 0x90, 0xdd, 0x99, 0x20, 0x66, 0xfb, + 0x99, 0xe2, 0xb2, 0x60, 0xb4, 0x92, 0x5b, 0x76, 0x2a, 0x15, 0x80, 0x52, + 0xe4, 0x93, 0x8e, 0x2b, 0xa2, 0x33, 0x76, 0xbb, 0x25, 0xb7, 0xb1, 0x41, + 0xe1, 0x90, 0x9f, 0x94, 0x00, 0x3b, 0x1e, 0x9c, 0x53, 0x4a, 0xf0, 0x0f, + 0x4c, 0x7a, 0x77, 0xa9, 0xf7, 0xb6, 0xe0, 0x48, 0x1b, 0x4f, 0x5c, 0xd4, + 0x52, 0xc9, 0xb9, 0xca, 0xa2, 0x0c, 0x0a, 0xd5, 0x37, 0xb1, 0x9b, 0xd5, + 0x90, 0xb9, 0x9a, 0x20, 0xaf, 0x19, 0xfe, 0x2e, 0xb5, 0x75, 0x5e, 0x57, + 0x4c, 0xc9, 0x92, 0x71, 0x4d, 0x11, 0xbb, 0x28, 0x24, 0x54, 0x8b, 0x8c, + 0x1c, 0x16, 0xe0, 0x53, 0x72, 0x4d, 0x58, 0x2f, 0xa5, 0x8a, 0xe4, 0x80, + 0x31, 0xd4, 0xf7, 0xa9, 0x61, 0x73, 0x1e, 0x1d, 0x4e, 0xd2, 0x0f, 0x6a, + 0xaf, 0xcb, 0x60, 0xe3, 0xaf, 0xbd, 0x2b, 0xe4, 0x0f, 0x4c, 0x1c, 0x70, + 0x6a, 0x5e, 0xa2, 0xb1, 0x76, 0xe6, 0x68, 0x5e, 0x66, 0x92, 0x25, 0x60, + 0x84, 0x0e, 0x0f, 0x5a, 0xa4, 0xe0, 0x3e, 0x49, 0x27, 0x9f, 0x5a, 0xb1, + 0x15, 0x95, 0xd4, 0xde, 0x5a, 0xa4, 0x52, 0x31, 0x94, 0xed, 0x40, 0x06, + 0x72, 0x7d, 0xaa, 0x17, 0x86, 0x48, 0xa6, 0x30, 0xba, 0xb2, 0xba, 0x9c, + 0x10, 0x7b, 0x54, 0xab, 0x74, 0x1b, 0xee, 0x2c, 0x50, 0x7e, 0xef, 0x27, + 0x91, 0xdc, 0x54, 0xd6, 0xf2, 0xcc, 0x25, 0x10, 0xdb, 0x19, 0x01, 0x63, + 0x80, 0xa8, 0x4f, 0x34, 0xbe, 0x4b, 0xf9, 0x7b, 0x97, 0x25, 0x73, 0x8e, + 0x2b, 0xae, 0xf0, 0x5e, 0x97, 0xa7, 0x4e, 0xb3, 0xdd, 0xdd, 0xea, 0x71, + 0xd9, 0xcf, 0x09, 0xca, 0x89, 0x31, 0x8c, 0x7a, 0xf3, 0x4e, 0x1c, 0xb3, + 0x95, 0xa4, 0xec, 0x85, 0x67, 0xb9, 0x6a, 0xd2, 0xdf, 0x52, 0xf0, 0xfb, + 0x5b, 0xcb, 0x77, 0x70, 0xca, 0xed, 0x86, 0x54, 0x8c, 0xfc, 0xdf, 0x98, + 0xaa, 0x7e, 0x27, 0xd5, 0xe3, 0xf1, 0x0d, 0xca, 0x8b, 0xa6, 0x67, 0x89, + 0x0f, 0xcb, 0x84, 0x01, 0xc7, 0xd4, 0xd6, 0xd5, 0xf7, 0x88, 0x34, 0xad, + 0x6a, 0xdc, 0x41, 0x1c, 0x8e, 0x6f, 0x22, 0xc8, 0x8e, 0x60, 0x30, 0xaf, + 0x8f, 0xf1, 0xac, 0x26, 0xb6, 0x7b, 0x6b, 0x67, 0x74, 0x43, 0xf6, 0x82, + 0x41, 0xf3, 0x0f, 0xdd, 0x14, 0x56, 0xa1, 0x85, 0xa7, 0x36, 0x94, 0xdf, + 0x95, 0xbb, 0x8d, 0x39, 0x5a, 0xc7, 0x3f, 0x36, 0x86, 0x97, 0x72, 0xec, + 0xb5, 0x43, 0x1b, 0x01, 0x91, 0xe6, 0x1e, 0xb5, 0xcf, 0xdf, 0x46, 0xf6, + 0xb7, 0x0d, 0x04, 0x98, 0x2c, 0x0f, 0x63, 0xc5, 0x74, 0x5e, 0x20, 0xb8, + 0xbf, 0x8d, 0xe3, 0x77, 0xbe, 0x12, 0xb1, 0x4c, 0x12, 0xa3, 0x1b, 0x6b, + 0x9a, 0x7b, 0x59, 0x1d, 0x84, 0x8e, 0xc4, 0x93, 0xc9, 0x26, 0x96, 0x1b, + 0x9a, 0xd7, 0x93, 0xd0, 0x19, 0x12, 0x2f, 0x9a, 0x70, 0x17, 0xa7, 0xa5, + 0x4c, 0xc4, 0x46, 0x02, 0x20, 0xcf, 0xd4, 0x53, 0x42, 0xc7, 0x11, 0x1d, + 0x7d, 0x32, 0x0d, 0x38, 0xba, 0x29, 0xc8, 0x39, 0x38, 0xef, 0x5d, 0x4d, + 0x90, 0xc6, 0x87, 0x70, 0xf8, 0x39, 0x00, 0x0e, 0x76, 0x8c, 0xe6, 0xa7, + 0x0c, 0x32, 0x4f, 0xdd, 0x24, 0x74, 0xaa, 0xd0, 0xac, 0xce, 0xd8, 0x41, + 0xbb, 0x3e, 0xbd, 0x29, 0x67, 0x5f, 0x2b, 0x06, 0x45, 0xc3, 0x74, 0xcf, + 0xad, 0x26, 0x95, 0xec, 0x08, 0x73, 0x36, 0xe7, 0xda, 0x06, 0x57, 0xd6, + 0x90, 0x49, 0xb1, 0xba, 0x80, 0x07, 0x51, 0x55, 0x3c, 0xc0, 0x5b, 0x6a, + 0x9c, 0xe7, 0xad, 0x58, 0x11, 0x18, 0x93, 0xcd, 0x62, 0x08, 0xf4, 0xeb, + 0x56, 0xd7, 0x71, 0xdc, 0xb6, 0x01, 0x60, 0x19, 0x97, 0x1c, 0x67, 0x35, + 0x16, 0xfd, 0xdc, 0x02, 0x78, 0xef, 0x4c, 0x96, 0x61, 0xe5, 0x86, 0x66, + 0x65, 0x04, 0x70, 0x00, 0xaa, 0xfb, 0x37, 0x26, 0xe4, 0x76, 0x00, 0xf0, + 0x05, 0x42, 0x8f, 0x70, 0x4c, 0xbb, 0x1c, 0x6b, 0x77, 0x95, 0x0e, 0x54, + 0x8a, 0x99, 0xa2, 0x48, 0x17, 0x99, 0x09, 0x3d, 0x30, 0x2b, 0x3e, 0xde, + 0x39, 0xe3, 0xdc, 0x43, 0x60, 0x81, 0xd7, 0xad, 0x38, 0xf9, 0x8b, 0xcc, + 0x84, 0x87, 0xcf, 0x20, 0xf7, 0xa2, 0x51, 0xd6, 0xc9, 0xe8, 0x11, 0xb3, + 0xd4, 0xb2, 0xcf, 0x20, 0x94, 0x1d, 0xe7, 0x1e, 0x99, 0xab, 0x90, 0xa9, + 0x97, 0x0a, 0xee, 0x57, 0x27, 0x25, 0xbf, 0xbb, 0x54, 0x7e, 0xd0, 0x9b, + 0x55, 0xca, 0xe7, 0xd7, 0xda, 0x83, 0x3a, 0x4b, 0x1a, 0xbf, 0x9c, 0x14, + 0x13, 0x80, 0x33, 0x83, 0x52, 0xd3, 0x68, 0xb8, 0xd9, 0x4a, 0xe5, 0xdb, + 0xc5, 0xb6, 0x51, 0x6e, 0xd1, 0x12, 0x5f, 0x07, 0xcc, 0x27, 0xb9, 0xcd, + 0x24, 0x72, 0x36, 0x54, 0x00, 0x0e, 0x4f, 0x39, 0xaa, 0x33, 0x3e, 0xd2, + 0x17, 0x23, 0xd7, 0x35, 0x3c, 0x52, 0x46, 0x14, 0x6f, 0x2c, 0x47, 0x5e, + 0x0f, 0x39, 0xa3, 0x92, 0xeb, 0x73, 0x49, 0x25, 0x27, 0x74, 0x68, 0x17, + 0x92, 0xd6, 0x2f, 0x37, 0x60, 0x39, 0x3f, 0x76, 0xb3, 0x35, 0x47, 0x5b, + 0xa9, 0x12, 0x48, 0x90, 0xab, 0x63, 0x9e, 0xd5, 0xa0, 0x5a, 0xd6, 0xee, + 0x15, 0x59, 0x27, 0x91, 0x76, 0xfa, 0x75, 0xa6, 0x7d, 0x8a, 0xda, 0x1c, + 0x98, 0x64, 0x79, 0x0e, 0x38, 0x0d, 0x57, 0x4a, 0x94, 0x63, 0xef, 0x49, + 0xea, 0x4b, 0x86, 0x9a, 0x95, 0x20, 0x66, 0x7b, 0x70, 0x8d, 0x1f, 0x43, + 0xd4, 0xd3, 0xde, 0x26, 0x16, 0xe7, 0x66, 0x37, 0x76, 0x38, 0xc5, 0x5e, + 0x58, 0x55, 0x61, 0x12, 0xb3, 0xa8, 0xcf, 0x5c, 0x76, 0xa8, 0xe3, 0x91, + 0x37, 0x80, 0xed, 0xbd, 0x49, 0xe9, 0x8e, 0x05, 0x68, 0xd7, 0x52, 0x1c, + 0x6c, 0x25, 0xa1, 0x97, 0x62, 0x99, 0x1c, 0xfb, 0x93, 0xd2, 0xb5, 0xae, + 0xe3, 0x0b, 0x0a, 0x16, 0xd9, 0x96, 0x50, 0x70, 0xa6, 0xa9, 0x3b, 0xaa, + 0xed, 0x18, 0x05, 0x73, 0xd3, 0x1c, 0x53, 0xa4, 0x0a, 0x5b, 0x72, 0x37, + 0x18, 0xae, 0x77, 0x17, 0x3d, 0x57, 0x41, 0xc5, 0x69, 0xa1, 0x13, 0x10, + 0x41, 0x55, 0xc9, 0xfc, 0x6a, 0xac, 0xa9, 0x86, 0xe4, 0x81, 0xea, 0x3d, + 0x2a, 0xc4, 0x68, 0x4b, 0x97, 0x70, 0x71, 0xec, 0x6a, 0x37, 0x8a, 0x37, + 0x93, 0x89, 0x0e, 0xde, 0xe7, 0xfa, 0x52, 0xe6, 0xe8, 0xc6, 0xd7, 0x72, + 0x18, 0x10, 0xb3, 0x9c, 0x13, 0x81, 0xd8, 0x55, 0xc1, 0x11, 0x2c, 0x10, + 0xa9, 0x0c, 0x79, 0x02, 0xaa, 0x79, 0x7e, 0x5c, 0x99, 0x0f, 0x95, 0xf4, + 0x1c, 0x54, 0x92, 0xc8, 0xac, 0x02, 0x21, 0x24, 0x8e, 0xe4, 0xd4, 0xbd, + 0xc8, 0x95, 0xae, 0x3d, 0x30, 0xd3, 0x30, 0x23, 0x6e, 0x0f, 0x24, 0xd6, + 0xcd, 0xce, 0xb3, 0x71, 0x7c, 0x61, 0x49, 0xc4, 0x72, 0x2c, 0x51, 0x08, + 0x97, 0x6a, 0xe3, 0x8f, 0x5e, 0x3b, 0xd7, 0x35, 0x23, 0x48, 0x1c, 0xe4, + 0x8f, 0xf1, 0xa5, 0x86, 0xe9, 0xe1, 0xcb, 0x2f, 0xe4, 0x69, 0x38, 0x5f, + 0x50, 0xbd, 0xb4, 0x47, 0x47, 0x79, 0xaf, 0xcb, 0x06, 0x9a, 0x96, 0xb1, + 0x28, 0x46, 0x0a, 0x55, 0x88, 0x1c, 0xb2, 0xfa, 0x57, 0x26, 0xd7, 0x71, + 0xbb, 0x6c, 0x8e, 0x30, 0xab, 0xd7, 0x1d, 0xf3, 0x56, 0x9a, 0x47, 0x9e, + 0x6d, 0xef, 0xd1, 0x86, 0x0d, 0x07, 0x4f, 0x85, 0xf7, 0xaa, 0xc4, 0xc8, + 0x7b, 0x10, 0x6a, 0xa9, 0xc6, 0x10, 0x56, 0x25, 0xb6, 0x4a, 0xd7, 0xbe, + 0x75, 0x8c, 0x71, 0xc8, 0x15, 0x82, 0x36, 0xd1, 0xc6, 0x30, 0x3a, 0xf5, + 0xa8, 0x35, 0x8b, 0x8f, 0xed, 0x19, 0xd2, 0x6d, 0x8b, 0x12, 0x22, 0x84, + 0x45, 0x51, 0xd8, 0x53, 0x25, 0xb7, 0x8e, 0x35, 0x02, 0x36, 0x67, 0x23, + 0xa8, 0x23, 0x14, 0xe8, 0x90, 0xcc, 0xaa, 0x1c, 0xe2, 0x35, 0xf6, 0xab, + 0x8d, 0xa3, 0xaa, 0x2d, 0xd4, 0x4d, 0x59, 0x95, 0xd2, 0x28, 0x44, 0x63, + 0x24, 0x83, 0x8e, 0xb5, 0x5d, 0x8b, 0x23, 0x03, 0x1b, 0xf2, 0x0e, 0x45, + 0x68, 0x5f, 0xc2, 0xbc, 0x98, 0x46, 0x33, 0xd0, 0x01, 0xc5, 0x67, 0x2a, + 0xb3, 0x64, 0xff, 0x00, 0x74, 0xf4, 0xab, 0x83, 0xba, 0xb9, 0x11, 0xb0, + 0xef, 0x35, 0xf3, 0xb9, 0xa4, 0xc6, 0xee, 0xf5, 0x6e, 0x07, 0x50, 0x9c, + 0xee, 0x27, 0xb9, 0x15, 0x9d, 0x30, 0x55, 0x25, 0x88, 0x27, 0xfa, 0x55, + 0x8b, 0x26, 0xcc, 0x24, 0x91, 0x9c, 0xfe, 0x74, 0xe5, 0x1f, 0x76, 0xe8, + 0x4d, 0xdc, 0xd1, 0x0a, 0x66, 0x46, 0x75, 0x6e, 0x14, 0x67, 0x9a, 0x8a, + 0xda, 0xcc, 0x4f, 0x73, 0xe5, 0x49, 0x71, 0xb3, 0x77, 0x46, 0x23, 0x8c, + 0xd7, 0x47, 0xe1, 0xb9, 0xf4, 0xb8, 0x22, 0x9b, 0xfb, 0x49, 0x37, 0x04, + 0x5d, 0xe8, 0xa3, 0x9d, 0xc7, 0xd2, 0xb5, 0x62, 0xb8, 0xd2, 0x6e, 0x6e, + 0x85, 0xf5, 0xe1, 0xfb, 0x1d, 0xb6, 0xdc, 0x24, 0x71, 0xae, 0xe6, 0x6f, + 0xaf, 0xa5, 0x79, 0xf2, 0xc4, 0x4a, 0x12, 0x71, 0x51, 0x7e, 0xa6, 0xb1, + 0x85, 0xd5, 0xce, 0x32, 0xeb, 0x4d, 0x9a, 0xc9, 0xf6, 0x33, 0x06, 0x1d, + 0x43, 0x0e, 0x95, 0x52, 0x5f, 0x95, 0x41, 0x27, 0x00, 0x7b, 0x75, 0xad, + 0xbf, 0x10, 0xdd, 0xc1, 0x73, 0x7c, 0x4d, 0x93, 0xc8, 0x6d, 0x97, 0xee, + 0xef, 0xeb, 0x58, 0x4f, 0x23, 0x4c, 0xbb, 0x08, 0xc1, 0x06, 0xba, 0x69, + 0x49, 0xca, 0x2a, 0x52, 0x44, 0xd8, 0x8f, 0x79, 0xfe, 0xf0, 0x3f, 0x4a, + 0x98, 0xc8, 0x02, 0xf3, 0xd0, 0x8a, 0xa4, 0x40, 0x4e, 0x0e, 0x73, 0x52, + 0x45, 0x20, 0x70, 0x70, 0x73, 0x8e, 0xd5, 0xbb, 0x8f, 0x52, 0x47, 0x2c, + 0xbf, 0x38, 0xda, 0x70, 0x29, 0x49, 0xdc, 0x48, 0xa8, 0x8e, 0x17, 0x90, + 0x7a, 0x8a, 0x23, 0x46, 0xfe, 0x12, 0x49, 0xa7, 0x65, 0xb8, 0x31, 0xed, + 0xb5, 0xfd, 0x88, 0xef, 0x52, 0x26, 0x76, 0x81, 0xda, 0x92, 0x24, 0x19, + 0x6c, 0xf5, 0xa9, 0x76, 0x83, 0xec, 0x05, 0x4b, 0x7d, 0x06, 0x84, 0x0c, + 0x77, 0x60, 0x03, 0x56, 0x54, 0x64, 0x7a, 0x54, 0x2a, 0xd8, 0x38, 0xe2, + 0xa4, 0x46, 0x3b, 0x8f, 0x3f, 0x4a, 0x86, 0x2d, 0xcd, 0xad, 0x1e, 0x19, + 0xcd, 0xda, 0x6d, 0x52, 0x59, 0x48, 0x3b, 0x71, 0xc0, 0x07, 0xb9, 0xcd, + 0x76, 0x76, 0xd1, 0x24, 0xa6, 0x58, 0xa5, 0x11, 0xdc, 0xb4, 0x04, 0x86, + 0x80, 0x1c, 0x7c, 0xb8, 0xea, 0x09, 0xef, 0x5c, 0x76, 0x9f, 0xaa, 0x2e, + 0x9d, 0x09, 0xdf, 0x09, 0x66, 0x2c, 0x33, 0xd7, 0xa5, 0x6e, 0x69, 0xa7, + 0x51, 0xd4, 0xde, 0xe2, 0xe2, 0x1b, 0x60, 0xfe, 0x68, 0x23, 0x7c, 0x87, + 0x6e, 0xd1, 0xdb, 0x06, 0xbc, 0xac, 0x54, 0x25, 0x27, 0x77, 0xa2, 0x29, + 0x33, 0x07, 0x5f, 0xd4, 0xfe, 0xda, 0xa9, 0x67, 0x6a, 0x59, 0x6d, 0xe3, + 0x18, 0x1d, 0x89, 0xfa, 0xfb, 0xd5, 0x6d, 0x35, 0xa1, 0xb3, 0x87, 0xe6, + 0x3b, 0xe5, 0x23, 0x04, 0x30, 0xe9, 0xef, 0x51, 0x5d, 0xdb, 0xdc, 0x58, + 0xdf, 0x3c, 0x57, 0x31, 0x82, 0xca, 0xd9, 0x35, 0x0d, 0xd5, 0xc8, 0x92, + 0x42, 0xea, 0x83, 0xfd, 0xd1, 0x5d, 0xb0, 0x84, 0x79, 0x14, 0x23, 0xb0, + 0xa5, 0x2b, 0xbb, 0x96, 0xef, 0xb5, 0x07, 0x9a, 0x1f, 0x26, 0x15, 0xf2, + 0xe2, 0xc6, 0x1b, 0x07, 0x96, 0x3e, 0xb5, 0x88, 0x4e, 0xc2, 0x17, 0xf8, + 0x7d, 0x6a, 0x69, 0x5c, 0x14, 0x38, 0xc8, 0x3e, 0x95, 0x54, 0x48, 0xcd, + 0xf2, 0x91, 0x91, 0x9e, 0xb5, 0xd3, 0x4a, 0x9a, 0x8a, 0xb2, 0x21, 0xb6, + 0x58, 0xdf, 0xfc, 0x3c, 0x73, 0x55, 0xc8, 0x0b, 0x26, 0x00, 0x39, 0xa5, + 0x52, 0x03, 0x71, 0xc9, 0xf4, 0xab, 0x01, 0xcb, 0xb6, 0xe0, 0x83, 0x27, + 0xb0, 0x15, 0xaa, 0xb2, 0x4e, 0xe6, 0x8a, 0x37, 0x5a, 0x91, 0x79, 0x65, + 0x47, 0x98, 0x78, 0x02, 0x99, 0xbc, 0xbb, 0xf0, 0x3f, 0x1a, 0xb2, 0xe6, + 0x4f, 0x27, 0x88, 0xf7, 0x13, 0x50, 0x2a, 0xc8, 0xc3, 0x1b, 0x54, 0x7d, + 0x2a, 0x57, 0x98, 0x72, 0xe8, 0x2b, 0x3e, 0x7b, 0xf4, 0xed, 0x51, 0xcc, + 0xdf, 0xba, 0x07, 0xdf, 0x8c, 0x9a, 0x92, 0x58, 0x65, 0x48, 0xbc, 0xd6, + 0x5c, 0x20, 0xe3, 0x3e, 0xb4, 0xf8, 0xe1, 0xf3, 0xb6, 0x33, 0x6d, 0xc1, + 0x1e, 0xb4, 0x5d, 0x2d, 0x41, 0xc5, 0x95, 0x61, 0xfd, 0xe3, 0xe0, 0x1c, + 0xe3, 0xb7, 0xa5, 0x69, 0x23, 0x94, 0x8f, 0xca, 0x51, 0x90, 0xd8, 0xcf, + 0xbd, 0x50, 0x58, 0xfe, 0xce, 0xcc, 0xe1, 0xfa, 0xfa, 0xd4, 0x91, 0xdf, + 0x1d, 0x9b, 0xdc, 0x0f, 0xa5, 0x15, 0x23, 0xcd, 0xac, 0x76, 0x25, 0x68, + 0x5e, 0x91, 0x3c, 0xb8, 0xbe, 0x44, 0x21, 0x8f, 0x5a, 0x84, 0x4b, 0x86, + 0xc3, 0x64, 0x0c, 0x63, 0x9e, 0x99, 0xa9, 0xc3, 0xf9, 0xf0, 0x87, 0x56, + 0xc8, 0x3d, 0x46, 0x7a, 0xd5, 0x57, 0xb7, 0x73, 0x0f, 0x99, 0x20, 0xc8, + 0xf4, 0x27, 0xa5, 0x67, 0x05, 0x7d, 0x18, 0x2b, 0x93, 0x47, 0xe5, 0x86, + 0x5d, 0xcc, 0x80, 0xe7, 0x06, 0xae, 0x5d, 0x5a, 0x2c, 0x61, 0x55, 0x99, + 0x4b, 0x0c, 0x12, 0x54, 0xe4, 0x7e, 0x95, 0xcd, 0x09, 0x94, 0x9e, 0xa4, + 0x0c, 0xf1, 0xeb, 0x5b, 0xba, 0x7d, 0xd0, 0x89, 0x56, 0x26, 0x65, 0x6f, + 0x4c, 0xd1, 0x56, 0x9c, 0xa3, 0xaa, 0x2a, 0xca, 0xc5, 0xdb, 0x3b, 0x27, + 0xd4, 0x41, 0x8e, 0xd9, 0x5a, 0x46, 0x51, 0xc8, 0x1c, 0xe2, 0xac, 0x9b, + 0x79, 0xf4, 0xd2, 0xf0, 0x4a, 0xaf, 0x19, 0x20, 0x6e, 0x0f, 0xc5, 0x74, + 0x3a, 0x35, 0xb2, 0x5a, 0x40, 0xd7, 0x71, 0xdc, 0xcb, 0x14, 0x91, 0xb0, + 0x91, 0xe3, 0x8c, 0x7a, 0x73, 0xfc, 0xab, 0xab, 0xb2, 0xf0, 0xce, 0x9f, + 0xe2, 0x9d, 0x39, 0xae, 0x6e, 0xd6, 0x42, 0x8c, 0x3f, 0x71, 0x3a, 0xbe, + 0x0b, 0x2f, 0xb8, 0xf5, 0xcd, 0x79, 0x95, 0x31, 0x1c, 0xae, 0xef, 0x63, + 0x55, 0x0f, 0xbc, 0xf2, 0x7b, 0x86, 0x7b, 0xd6, 0xd8, 0xd7, 0x05, 0x46, + 0xec, 0x36, 0x4f, 0x1f, 0x95, 0x65, 0xc8, 0x9f, 0xbe, 0x78, 0x99, 0x83, + 0x2a, 0xb1, 0x01, 0xc0, 0xc6, 0x6b, 0xa2, 0xf1, 0x57, 0x87, 0x0f, 0x86, + 0xef, 0x0f, 0xfa, 0x54, 0x0d, 0x14, 0x8c, 0x4c, 0x48, 0x92, 0xef, 0x75, + 0x1f, 0xed, 0x57, 0x35, 0xbd, 0x30, 0x72, 0x72, 0x49, 0xce, 0x4d, 0x77, + 0xd1, 0x94, 0x67, 0x0e, 0x68, 0xec, 0x66, 0xe5, 0x67, 0x67, 0xb8, 0xb3, + 0x94, 0x82, 0x30, 0x42, 0x93, 0x93, 0x82, 0x69, 0x8d, 0x32, 0x79, 0x44, + 0xb9, 0xf9, 0xb1, 0xc0, 0xab, 0x56, 0x96, 0x07, 0x53, 0x26, 0xda, 0x08, + 0xe4, 0x96, 0x5c, 0x64, 0x84, 0xe7, 0x15, 0x05, 0xd6, 0x85, 0x7e, 0xb7, + 0xdf, 0x66, 0x8e, 0xce, 0xe0, 0xca, 0x17, 0x71, 0x5c, 0x64, 0xe3, 0xd6, + 0xb6, 0x8b, 0x85, 0xf9, 0x5b, 0xd4, 0x35, 0x91, 0x5e, 0x0c, 0x94, 0x25, + 0x8e, 0xd1, 0xe9, 0x52, 0x7c, 0xe5, 0x48, 0x00, 0xb7, 0xb8, 0x15, 0x3c, + 0xbf, 0x24, 0x49, 0x03, 0x27, 0xce, 0x38, 0x20, 0x8c, 0x1a, 0xea, 0x2c, + 0xb5, 0x29, 0x74, 0x66, 0x81, 0xb4, 0x4b, 0x09, 0x84, 0xc6, 0x3d, 0x97, + 0x51, 0xce, 0x03, 0xa9, 0x24, 0x60, 0x11, 0xe9, 0x44, 0xa7, 0xd9, 0x1b, + 0x5f, 0xdd, 0x28, 0xf8, 0x63, 0xc0, 0x7a, 0xaf, 0x89, 0x2e, 0x02, 0xc6, + 0xa6, 0x08, 0x48, 0xdc, 0x24, 0x94, 0x60, 0x30, 0xf6, 0xf5, 0xab, 0xbe, + 0x25, 0xf8, 0x6b, 0xad, 0x68, 0x17, 0x2a, 0x90, 0x23, 0x5f, 0x5b, 0xb7, + 0x22, 0x58, 0x93, 0xa0, 0xf7, 0x1d, 0xab, 0xa0, 0x1a, 0xd5, 0xe5, 0xad, + 0xc4, 0x37, 0x09, 0x6f, 0xe4, 0x2c, 0x71, 0xe0, 0x5a, 0x92, 0x48, 0x07, + 0xa1, 0x3e, 0xd5, 0xdc, 0x69, 0xfa, 0xe1, 0xd5, 0xb4, 0xbb, 0x6b, 0x85, + 0xbd, 0x8a, 0x0b, 0x98, 0x23, 0x06, 0x65, 0x2f, 0x8c, 0x8f, 0xa1, 0xea, + 0x6b, 0x95, 0xd6, 0xaa, 0xe5, 0x78, 0xec, 0x44, 0x54, 0x4e, 0x3a, 0xdf, + 0x66, 0x85, 0xe1, 0xa8, 0xee, 0x6c, 0xa5, 0xfb, 0x35, 0xdb, 0x46, 0x12, + 0x65, 0x74, 0xc9, 0x52, 0x07, 0x5f, 0xc6, 0xbc, 0xae, 0xf2, 0x57, 0xb9, + 0x91, 0x9e, 0x4e, 0x5c, 0xb1, 0x25, 0xbd, 0x6b, 0xe8, 0xcf, 0x14, 0xea, + 0x11, 0x5a, 0xe9, 0x8b, 0x76, 0xd6, 0x42, 0x68, 0x1a, 0x26, 0xe4, 0xc3, + 0x96, 0x43, 0xc7, 0x24, 0x7a, 0x57, 0x8c, 0x6b, 0x36, 0x5f, 0x6d, 0xb6, + 0x7d, 0x4e, 0xdb, 0x4d, 0x36, 0xb6, 0xf1, 0x80, 0x24, 0x23, 0xee, 0xbb, + 0x1e, 0xe0, 0x76, 0xa7, 0x86, 0x93, 0x4d, 0xb9, 0x75, 0x0a, 0x9a, 0x6c, + 0x72, 0xb0, 0xc4, 0x46, 0x08, 0x20, 0x8e, 0xf5, 0x64, 0x39, 0x42, 0x36, + 0x7a, 0xd4, 0xef, 0x6d, 0x35, 0xac, 0x2a, 0xf2, 0xc2, 0xd1, 0xa4, 0x83, + 0x72, 0x12, 0x3a, 0xd4, 0x2e, 0x30, 0xa1, 0x80, 0xeb, 0x5d, 0x4d, 0xdd, + 0x91, 0xcc, 0xcb, 0xd1, 0x5a, 0x1b, 0x95, 0x7b, 0x85, 0x64, 0x51, 0x1e, + 0x37, 0x29, 0x70, 0x09, 0xfa, 0x0e, 0xf5, 0x7a, 0x58, 0xd6, 0x3b, 0x35, + 0x9a, 0xd1, 0xe4, 0xde, 0x1b, 0x1b, 0x5b, 0xb0, 0xf5, 0xcd, 0x61, 0xac, + 0xad, 0xbc, 0xb3, 0x0c, 0x8c, 0x70, 0x07, 0xad, 0x74, 0x9a, 0x31, 0x6b, + 0xd1, 0x15, 0x9f, 0x98, 0x23, 0xf3, 0x18, 0x2a, 0xee, 0x53, 0x8d, 0xc4, + 0xfa, 0xd6, 0x73, 0x6a, 0x22, 0xf2, 0x28, 0x92, 0x81, 0x23, 0x6d, 0xc4, + 0x97, 0xfb, 0xe0, 0x75, 0xce, 0x6a, 0xb7, 0xd9, 0xb7, 0xca, 0xd2, 0x83, + 0x81, 0xef, 0x57, 0xae, 0x2c, 0x67, 0xb6, 0xb9, 0x99, 0x64, 0x8c, 0xfe, + 0xea, 0x52, 0x9b, 0xf3, 0xf2, 0xe4, 0x7a, 0x53, 0x0b, 0xa3, 0x02, 0xc5, + 0x32, 0x18, 0xe3, 0x2b, 0xda, 0x9f, 0x3b, 0x48, 0x57, 0xb1, 0x4d, 0x43, + 0xa3, 0xb0, 0x2d, 0xc8, 0x39, 0xcd, 0x74, 0x9a, 0x1d, 0x83, 0x6b, 0x22, + 0x68, 0x63, 0x6b, 0x68, 0xa5, 0x8a, 0x32, 0xe0, 0xca, 0xdb, 0x77, 0x63, + 0xb0, 0x3e, 0xb5, 0x97, 0x6d, 0x64, 0x11, 0xb1, 0x28, 0x2d, 0x19, 0xe8, + 0xc4, 0x57, 0x49, 0x69, 0xe1, 0x26, 0xbd, 0xb4, 0x8a, 0x68, 0x52, 0xe7, + 0x6f, 0xcc, 0x3c, 0xd0, 0xb8, 0x52, 0x71, 0xc5, 0x47, 0xb5, 0x49, 0xdc, + 0xb8, 0x24, 0xd9, 0x95, 0xa7, 0xdf, 0x3c, 0x13, 0xbb, 0xc6, 0xbc, 0xe0, + 0xa9, 0x19, 0xad, 0xef, 0x0e, 0x22, 0x2e, 0xab, 0x13, 0xce, 0x76, 0x41, + 0x22, 0x9c, 0x93, 0x9e, 0xfd, 0xa8, 0xf0, 0xc5, 0xa2, 0xe9, 0x91, 0x5d, + 0x7d, 0xba, 0x18, 0x66, 0xde, 0x7c, 0xbd, 0xa4, 0xe5, 0x89, 0xaf, 0x40, + 0xd3, 0xb4, 0x4b, 0x4f, 0xf8, 0x47, 0xa4, 0x0b, 0x68, 0xa7, 0x9d, 0xca, + 0x3a, 0xb2, 0x03, 0xdc, 0x7d, 0x2b, 0x39, 0xce, 0xf2, 0xe5, 0xee, 0x76, + 0xd2, 0x92, 0x5e, 0xf3, 0xe8, 0x2d, 0xd5, 0x80, 0x16, 0xab, 0x0d, 0xac, + 0x31, 0xcf, 0x01, 0x18, 0xd8, 0xec, 0x54, 0x63, 0xd2, 0xb3, 0x9b, 0x44, + 0x9f, 0x64, 0x8b, 0x1e, 0x8d, 0x63, 0x87, 0x40, 0xa7, 0x9e, 0xc2, 0xb9, + 0x0f, 0x11, 0x7d, 0xab, 0x4a, 0xbf, 0x54, 0xb7, 0xd5, 0xe5, 0x9a, 0x37, + 0x5c, 0x86, 0x0e, 0x54, 0x8f, 0x62, 0x33, 0xc5, 0x63, 0x1f, 0x10, 0x6a, + 0xeb, 0xf2, 0xa5, 0xf5, 0xca, 0xaf, 0x4f, 0xf5, 0xcd, 0xfe, 0x35, 0x6a, + 0x8d, 0x99, 0xb3, 0xaf, 0x09, 0x2b, 0xd8, 0xf4, 0x0b, 0x6b, 0x3d, 0x4b, + 0x4a, 0x98, 0xcc, 0x2c, 0x2d, 0x00, 0xda, 0x50, 0x2e, 0xec, 0x9f, 0xcc, + 0xf3, 0x55, 0xf5, 0x1d, 0x5a, 0x6b, 0x3d, 0x39, 0x2c, 0x25, 0xf2, 0x22, + 0x6c, 0x73, 0xb1, 0x86, 0x71, 0xe9, 0xe9, 0x5c, 0x17, 0xf6, 0x9d, 0xd3, + 0xb6, 0x25, 0x9e, 0x49, 0x09, 0x3f, 0x79, 0x9c, 0x93, 0x50, 0xbc, 0xac, + 0xec, 0x19, 0x89, 0x62, 0x7a, 0x92, 0x73, 0x55, 0xec, 0xd5, 0xf5, 0x46, + 0x32, 0xac, 0x93, 0xb5, 0x8d, 0x7d, 0x42, 0xf7, 0x77, 0x99, 0x20, 0x95, + 0x0e, 0xf3, 0x96, 0x03, 0x03, 0xf9, 0x56, 0x1c, 0x13, 0xe5, 0x19, 0x5c, + 0x8e, 0x3a, 0x53, 0x9f, 0x0b, 0x1e, 0x37, 0xe4, 0xfa, 0x1a, 0xae, 0xd8, + 0x57, 0xdc, 0xca, 0x40, 0x3e, 0xd8, 0xad, 0x54, 0x52, 0x7a, 0x04, 0xaa, + 0xf3, 0x2d, 0x48, 0xae, 0x2e, 0x9a, 0x3c, 0x87, 0x20, 0x82, 0x38, 0xa8, + 0x6d, 0x6e, 0x4b, 0x11, 0x85, 0xc3, 0x0a, 0x74, 0xa8, 0xb2, 0xb6, 0x07, + 0x4e, 0x98, 0xa9, 0xa0, 0xb1, 0x11, 0xa2, 0x9d, 0xd8, 0x24, 0xd5, 0x4a, + 0xa4, 0x60, 0x8e, 0x69, 0x35, 0x29, 0x17, 0xad, 0xc8, 0x24, 0x79, 0x84, + 0x67, 0xde, 0xa6, 0xba, 0xf9, 0x94, 0x71, 0xc0, 0xa6, 0xc6, 0x8a, 0xa3, + 0x05, 0x49, 0xf7, 0x35, 0x6f, 0xec, 0x2f, 0x71, 0x6a, 0xd3, 0x29, 0x18, + 0x00, 0x9c, 0x13, 0x82, 0x71, 0xe9, 0x59, 0xc7, 0x11, 0xa9, 0x69, 0xa3, + 0x2b, 0x05, 0xfa, 0x6d, 0x18, 0xad, 0xdf, 0x04, 0xe9, 0x70, 0xea, 0x7e, + 0x24, 0x82, 0xda, 0xe5, 0x56, 0x48, 0x80, 0x2c, 0x63, 0x39, 0xc1, 0xc0, + 0xac, 0xa9, 0xb4, 0xc9, 0xa3, 0x58, 0x65, 0x09, 0x21, 0x8e, 0x45, 0xdc, + 0xac, 0xc3, 0x03, 0xf0, 0xaf, 0x4d, 0xf8, 0x61, 0xa7, 0xc1, 0x15, 0x84, + 0xd7, 0x53, 0xdb, 0x0f, 0xb4, 0x97, 0xc2, 0x48, 0xc9, 0xd1, 0x7d, 0x8d, + 0x69, 0x52, 0xb4, 0x79, 0x74, 0x63, 0x52, 0xbb, 0xb1, 0xa1, 0xad, 0x5b, + 0xce, 0xd6, 0x23, 0x4b, 0x16, 0x73, 0xcf, 0x14, 0x69, 0x90, 0xe4, 0x90, + 0xbc, 0x0e, 0x9b, 0x89, 0xe7, 0xe9, 0xed, 0x5e, 0x59, 0x25, 0x8c, 0xbb, + 0xc8, 0x1c, 0xb8, 0xea, 0x0f, 0x15, 0xed, 0x7a, 0xa6, 0xa3, 0x14, 0xd2, + 0xdc, 0x69, 0xfb, 0xbc, 0x9c, 0x40, 0x64, 0xf3, 0x98, 0x7c, 0xab, 0xf5, + 0xaf, 0x1c, 0x6d, 0x4a, 0x2b, 0x49, 0xa5, 0x07, 0x13, 0x33, 0x13, 0x87, + 0x23, 0x83, 0x5c, 0x94, 0xa4, 0xb9, 0x9a, 0x68, 0x9a, 0xaf, 0x62, 0xb2, + 0x97, 0xb6, 0x92, 0x29, 0x91, 0x02, 0x49, 0x19, 0x0c, 0x99, 0xe4, 0x83, + 0x50, 0x78, 0x8b, 0x55, 0xbb, 0xd4, 0xe7, 0xf3, 0xa4, 0x94, 0x99, 0x09, + 0xdc, 0xcc, 0x00, 0x51, 0x9c, 0x76, 0xc5, 0x36, 0x5b, 0xd9, 0x24, 0x67, + 0x65, 0x3f, 0x29, 0xe3, 0x1e, 0x95, 0x4e, 0x66, 0xf3, 0x54, 0xab, 0x3a, + 0x8d, 0xdc, 0x73, 0x5a, 0x49, 0xfb, 0xc9, 0xa4, 0x67, 0x17, 0x62, 0x3b, + 0x5f, 0x10, 0x6a, 0x06, 0xdd, 0xac, 0x9e, 0xe9, 0xc5, 0xb0, 0x6d, 0xc2, + 0x3e, 0x4f, 0x35, 0xdc, 0xf8, 0x5b, 0xc6, 0xda, 0x85, 0xb4, 0xab, 0x15, + 0xd3, 0xcb, 0x73, 0x02, 0xa9, 0x2a, 0xa3, 0x86, 0xe0, 0x74, 0xe7, 0xb5, + 0x71, 0xda, 0x14, 0x17, 0x5a, 0x36, 0xa4, 0xb7, 0xc1, 0x22, 0x7d, 0xb9, + 0x0a, 0xae, 0x37, 0x67, 0x23, 0x1d, 0x2b, 0x49, 0xa6, 0xf3, 0x6e, 0xe3, + 0x9a, 0x57, 0x6c, 0x2b, 0x73, 0xb4, 0x63, 0x03, 0xbd, 0x4d, 0x65, 0x14, + 0xf4, 0x45, 0xf3, 0x2d, 0xd1, 0xea, 0xb6, 0x5e, 0x20, 0x96, 0xee, 0xce, + 0x4d, 0x61, 0x2c, 0x2e, 0xb6, 0xb4, 0x7f, 0x24, 0x64, 0x12, 0x13, 0x1d, + 0x48, 0x3d, 0x3f, 0xfd, 0x55, 0x47, 0x49, 0xd2, 0xfe, 0xdf, 0x0c, 0xda, + 0x8e, 0x98, 0xde, 0x4c, 0xd3, 0x0d, 0xfe, 0x79, 0x05, 0x41, 0x62, 0x4e, + 0xe5, 0xcf, 0x53, 0xf8, 0x71, 0x5a, 0x3a, 0x6b, 0xc7, 0xa9, 0xe9, 0x8b, + 0xe6, 0x5d, 0x5c, 0xc7, 0x65, 0x2a, 0xf9, 0x10, 0xc3, 0x24, 0x59, 0x63, + 0xf2, 0xf3, 0xf3, 0x2f, 0x7f, 0xad, 0x6b, 0x2d, 0xa5, 0x86, 0x81, 0xa1, + 0x08, 0x84, 0x0e, 0xf6, 0xf1, 0x8f, 0x98, 0x63, 0x71, 0x24, 0xf7, 0xc5, + 0x73, 0xb8, 0xa8, 0xbb, 0x3b, 0xbf, 0xeb, 0xc8, 0xb5, 0x66, 0xcc, 0xef, + 0x13, 0x58, 0xaa, 0xf8, 0x6e, 0xeb, 0x6c, 0x71, 0x92, 0xa9, 0xbb, 0x2a, + 0x84, 0x1c, 0xfa, 0xf5, 0xaf, 0x14, 0x95, 0x96, 0x24, 0x66, 0xde, 0x37, + 0x67, 0xa0, 0xaf, 0x56, 0xd7, 0xb5, 0xb6, 0x9b, 0x47, 0x91, 0xa0, 0x92, + 0x08, 0xed, 0xfc, 0xa3, 0xf2, 0x67, 0x79, 0xc1, 0xc6, 0x3f, 0xe0, 0x55, + 0xe4, 0x37, 0x28, 0xd2, 0x11, 0xb8, 0x85, 0x24, 0x67, 0xaf, 0x5a, 0xcf, + 0x0f, 0x15, 0x6b, 0x22, 0x6a, 0x2d, 0x49, 0xed, 0xf5, 0x06, 0x31, 0x98, + 0xb7, 0x93, 0x1b, 0x1c, 0x95, 0xec, 0x4d, 0x5b, 0xb7, 0x99, 0xed, 0x6e, + 0x4a, 0x33, 0x63, 0x70, 0xce, 0x57, 0xb5, 0x66, 0xda, 0xc6, 0xc5, 0x4b, + 0x8d, 0xab, 0xb3, 0xbf, 0xad, 0x5c, 0x8e, 0x48, 0xde, 0x35, 0xdd, 0xf2, + 0xb0, 0xce, 0x4f, 0xad, 0x6f, 0x24, 0x9b, 0xb1, 0x24, 0x93, 0xc9, 0x33, + 0x37, 0x9d, 0xe6, 0x36, 0x33, 0x95, 0x3d, 0x30, 0x6a, 0xc4, 0x57, 0xf7, + 0x57, 0x04, 0x99, 0xe4, 0x2f, 0x95, 0xc6, 0x58, 0x9c, 0x93, 0x50, 0x99, + 0xa0, 0x58, 0xd9, 0x59, 0x4b, 0x39, 0xc6, 0xc3, 0x9e, 0x05, 0x45, 0x24, + 0xe1, 0xf1, 0x13, 0x70, 0x7d, 0xb8, 0xcd, 0x67, 0x2d, 0x74, 0x42, 0x4b, + 0x5d, 0x05, 0x92, 0xcd, 0x2f, 0x17, 0x2d, 0x75, 0x1c, 0x52, 0x0e, 0xa8, + 0x7d, 0x3e, 0xb4, 0xcd, 0x3b, 0xcb, 0x36, 0xef, 0x04, 0xa1, 0xfe, 0xf9, + 0x08, 0xe0, 0x80, 0x31, 0xde, 0x9b, 0xb2, 0x08, 0x99, 0x16, 0x60, 0xcc, + 0x18, 0xe7, 0x0a, 0x79, 0xeb, 0xde, 0xae, 0x6a, 0xb6, 0x36, 0x96, 0x16, + 0x90, 0xc8, 0x66, 0x99, 0xda, 0x55, 0xdd, 0xb4, 0x26, 0xd0, 0x80, 0xf4, + 0xe7, 0xbd, 0x5c, 0x53, 0x6a, 0xc2, 0x2b, 0xc9, 0xa0, 0x5d, 0xcf, 0x76, + 0x61, 0x76, 0x40, 0xa0, 0x33, 0x23, 0x29, 0xed, 0x59, 0x7e, 0x43, 0xa4, + 0x85, 0x31, 0x92, 0xa7, 0x0d, 0x57, 0x2d, 0x3c, 0x45, 0xa8, 0x69, 0xb2, + 0x45, 0xb0, 0x80, 0x00, 0x2a, 0xa4, 0x8e, 0x48, 0xac, 0xb9, 0xef, 0x24, + 0xb9, 0xbc, 0x91, 0x89, 0xc7, 0x98, 0x72, 0x40, 0xab, 0x8c, 0x6a, 0x5f, + 0x50, 0x97, 0x2d, 0xb4, 0x34, 0x25, 0xba, 0xde, 0xca, 0xb1, 0xa8, 0x08, + 0xa7, 0x20, 0x03, 0xde, 0xa2, 0xbb, 0x73, 0x2c, 0xad, 0x31, 0x50, 0x09, + 0xea, 0xa3, 0xa5, 0x31, 0x49, 0x10, 0x84, 0xdb, 0xb8, 0x54, 0x2e, 0xcc, + 0x0e, 0x31, 0xc7, 0x6c, 0xd0, 0xa3, 0x67, 0x73, 0x36, 0xc6, 0x06, 0x63, + 0x80, 0x0e, 0x31, 0xe9, 0x46, 0xc6, 0x91, 0xc2, 0xa8, 0xc9, 0xa9, 0x94, + 0x29, 0x8f, 0x69, 0x23, 0xd7, 0x23, 0xbd, 0x35, 0x19, 0x72, 0x41, 0x40, + 0x4f, 0xa5, 0x3b, 0x8c, 0xe9, 0x3c, 0x2c, 0xd1, 0x5a, 0x4e, 0x5a, 0x76, + 0x3b, 0x82, 0x31, 0x47, 0x2f, 0x85, 0x46, 0xc7, 0x04, 0xd6, 0x6e, 0xab, + 0xaa, 0xcd, 0x74, 0x42, 0xce, 0xb6, 0xac, 0x77, 0x1c, 0x3c, 0x4b, 0x82, + 0x3f, 0xfa, 0xd4, 0x96, 0xa1, 0xc5, 0xab, 0xb5, 0xbc, 0x61, 0x5c, 0xf0, + 0xce, 0xc7, 0x80, 0x2a, 0xa5, 0xed, 0xac, 0x70, 0xc2, 0x92, 0x7d, 0xb2, + 0x29, 0x9d, 0x8e, 0x0a, 0x2e, 0x72, 0x2b, 0x18, 0xaf, 0x7d, 0xb6, 0x5b, + 0x7e, 0xed, 0x88, 0xfc, 0xc6, 0x8c, 0x86, 0x57, 0x20, 0x7b, 0x56, 0xad, + 0x9f, 0xd9, 0xae, 0x2d, 0xf2, 0xd7, 0x7b, 0x65, 0x19, 0x2c, 0xae, 0x38, + 0x03, 0xeb, 0x58, 0x65, 0xc1, 0x40, 0xa7, 0x9c, 0x54, 0x05, 0x99, 0x43, + 0x61, 0xb8, 0x3c, 0x56, 0xf1, 0x82, 0x7b, 0xab, 0x90, 0xdb, 0x51, 0xb1, + 0xd1, 0x04, 0x89, 0x49, 0x68, 0x4a, 0x49, 0xfe, 0xd7, 0x4a, 0xd5, 0xd2, + 0x3c, 0x46, 0x2c, 0x16, 0x5b, 0x7b, 0xd4, 0x13, 0xc0, 0x01, 0x3b, 0x5d, + 0x77, 0x67, 0x3d, 0x85, 0x73, 0xc9, 0x1d, 0xbb, 0x42, 0xa6, 0x49, 0x24, + 0x24, 0x0e, 0x09, 0xc7, 0x14, 0xe9, 0x14, 0x3a, 0xaa, 0xc5, 0x2a, 0x86, + 0x65, 0xce, 0xe3, 0x58, 0x38, 0x29, 0xbb, 0x58, 0xa8, 0xbb, 0x21, 0xf7, + 0x30, 0xc3, 0xa8, 0x4f, 0x2d, 0xcb, 0x24, 0xd1, 0x86, 0x25, 0x94, 0x2a, + 0x8d, 0xa3, 0xdb, 0xad, 0x67, 0x5c, 0x32, 0xc3, 0xb4, 0x34, 0x4c, 0xe8, + 0x32, 0x36, 0xe7, 0x0c, 0x6b, 0x49, 0x34, 0x9b, 0xed, 0x46, 0xcf, 0x7c, + 0x33, 0x2c, 0xac, 0xbc, 0x34, 0x48, 0x79, 0x3e, 0xf8, 0xa8, 0xd7, 0x44, + 0xd4, 0x16, 0xdc, 0x49, 0x2c, 0x0a, 0xb1, 0xb9, 0xda, 0x37, 0xb8, 0x07, + 0x8e, 0xb5, 0xbf, 0xb5, 0x8a, 0xb2, 0x76, 0x56, 0x26, 0xcf, 0xa1, 0x9d, + 0xa4, 0xda, 0x41, 0xa9, 0x4e, 0xf0, 0x2c, 0xcb, 0x1c, 0x81, 0x0b, 0x7c, + 0xfd, 0x38, 0xab, 0x70, 0xe8, 0xaa, 0xb2, 0x6e, 0x79, 0x14, 0x95, 0xe7, + 0xe5, 0x1d, 0x69, 0xfa, 0x5b, 0x5b, 0x69, 0xba, 0x8f, 0x98, 0xb6, 0xca, + 0xf2, 0xa6, 0x41, 0xde, 0x32, 0x0d, 0x5b, 0x96, 0x45, 0x64, 0x79, 0xb3, + 0xb0, 0xe7, 0x20, 0x76, 0xa9, 0xa9, 0x51, 0xb7, 0x68, 0x82, 0x5a, 0x1a, + 0x56, 0xf1, 0x68, 0x29, 0x24, 0x86, 0x76, 0xb8, 0x65, 0xf2, 0xfe, 0x55, + 0x08, 0x06, 0x5b, 0xd0, 0xf3, 0xd2, 0xb9, 0xad, 0x56, 0x08, 0xe6, 0xc0, + 0x1b, 0x8b, 0x7f, 0x0a, 0x8a, 0x74, 0xf2, 0x5c, 0x30, 0x3e, 0x49, 0x07, + 0xeb, 0x58, 0xee, 0xd3, 0x09, 0xc2, 0xcc, 0xc5, 0x98, 0x9e, 0x95, 0x54, + 0xd4, 0x9d, 0xb5, 0xd8, 0x8b, 0xdc, 0xa9, 0xe4, 0x00, 0xc7, 0x79, 0x2a, + 0x41, 0xc1, 0xf6, 0xab, 0x71, 0x36, 0xec, 0xc5, 0xe6, 0x8d, 0xab, 0xd8, + 0xf7, 0xa9, 0xee, 0xac, 0xc3, 0x44, 0x4b, 0x39, 0x41, 0xea, 0x3a, 0xd6, + 0x59, 0x80, 0x2b, 0x0d, 0x8c, 0x5f, 0xd7, 0xd6, 0xba, 0xd3, 0x53, 0x40, + 0x95, 0xf7, 0x34, 0x1e, 0xe2, 0x3d, 0xde, 0x5b, 0x6d, 0x2c, 0x38, 0x02, + 0xa1, 0x9a, 0x44, 0x68, 0xce, 0xdf, 0x94, 0x83, 0xda, 0x94, 0x7d, 0x99, + 0x20, 0x56, 0x65, 0xf9, 0xcf, 0x41, 0x8e, 0xf5, 0x14, 0xb2, 0xa2, 0xf0, + 0x0a, 0x2e, 0x7a, 0xf1, 0xd6, 0xa5, 0x25, 0x7d, 0x01, 0x6f, 0xa8, 0xf8, + 0x8c, 0x92, 0xa6, 0x24, 0x97, 0x1f, 0xee, 0xd3, 0xa5, 0x2f, 0x22, 0x1c, + 0xb8, 0xdf, 0xfc, 0x24, 0xf7, 0xa8, 0x25, 0x11, 0x28, 0x1b, 0x37, 0x72, + 0x3a, 0xf6, 0xa4, 0x76, 0x6e, 0x00, 0xdc, 0xc7, 0xe9, 0xd2, 0xab, 0x96, + 0xfa, 0x8d, 0x32, 0xc5, 0x8e, 0x64, 0x0d, 0xe6, 0x63, 0xe8, 0x07, 0x4a, + 0x99, 0xa2, 0x00, 0x6e, 0x45, 0x0c, 0xe0, 0xf4, 0xad, 0x5d, 0x26, 0xda, + 0xca, 0x6b, 0x37, 0xf3, 0x0b, 0x19, 0x31, 0xc6, 0xdc, 0xe6, 0xaa, 0xea, + 0x10, 0xfd, 0x8e, 0xe0, 0x41, 0x10, 0x60, 0x84, 0x03, 0xf3, 0x60, 0x9f, + 0xd2, 0xb9, 0xfd, 0xaa, 0x73, 0x71, 0x45, 0x2f, 0x32, 0x85, 0xcc, 0x98, + 0x78, 0xf2, 0x85, 0x38, 0xe7, 0x8a, 0x5f, 0x3d, 0x1a, 0x23, 0xb1, 0x72, + 0xde, 0xf5, 0x66, 0x4d, 0xcf, 0x1a, 0xa8, 0x21, 0x7d, 0x72, 0x29, 0x91, + 0x5b, 0x22, 0x12, 0x48, 0x5f, 0x5f, 0x6a, 0xd1, 0x35, 0xca, 0x5a, 0x68, + 0xa9, 0x18, 0x91, 0xdf, 0x0b, 0xf3, 0x7b, 0x0e, 0x95, 0x7b, 0x2c, 0x98, + 0x53, 0x90, 0xd8, 0xe4, 0x66, 0x98, 0xef, 0x1c, 0x24, 0x81, 0xf2, 0xbb, + 0x1e, 0xd5, 0x5a, 0x56, 0x60, 0x72, 0x09, 0x27, 0xda, 0xa9, 0x3b, 0xb0, + 0x93, 0xe6, 0x56, 0x45, 0xf5, 0x56, 0xb8, 0xc2, 0x19, 0x08, 0x51, 0xcd, + 0x4c, 0x21, 0x8d, 0x54, 0x79, 0x7c, 0xb0, 0x3d, 0x8e, 0x6a, 0x8c, 0x0c, + 0xcf, 0x1e, 0x0f, 0x3e, 0xfd, 0xea, 0xcc, 0x66, 0x45, 0x52, 0x17, 0x81, + 0xdf, 0x35, 0x9c, 0xae, 0xd9, 0x12, 0x7a, 0x13, 0xee, 0x91, 0xd8, 0x0d, + 0xd8, 0xa9, 0x95, 0x54, 0x72, 0x78, 0xc0, 0xe9, 0xeb, 0x54, 0x84, 0xa4, + 0x48, 0x3d, 0x7b, 0xd3, 0xdd, 0xdd, 0xb2, 0x70, 0x4d, 0x43, 0xb9, 0x37, + 0x6b, 0x44, 0x5b, 0x67, 0x2e, 0x9b, 0x03, 0x60, 0x1e, 0xde, 0x95, 0x9f, + 0x27, 0xc9, 0x21, 0x5c, 0x9c, 0x7d, 0x69, 0x4c, 0xcc, 0xbb, 0x4b, 0x75, + 0xf5, 0xa4, 0x96, 0x5d, 0xcd, 0xf7, 0x77, 0x13, 0xd7, 0x34, 0x45, 0x34, + 0x52, 0x93, 0xd9, 0x0b, 0xc0, 0xf9, 0x8e, 0x30, 0x17, 0xa7, 0x73, 0x55, + 0xc5, 0xc4, 0x8c, 0x18, 0x05, 0xe4, 0x8c, 0x83, 0x8e, 0x94, 0xe9, 0x64, + 0x96, 0x34, 0x27, 0x04, 0x85, 0xf4, 0x5e, 0x05, 0x56, 0x8e, 0x76, 0x97, + 0x2a, 0xf2, 0x60, 0xfa, 0x81, 0x5a, 0x46, 0x3a, 0x5c, 0x96, 0xf5, 0x26, + 0x76, 0x63, 0x8c, 0x9c, 0x9a, 0x6a, 0xc8, 0x03, 0x1c, 0x9e, 0x94, 0xc9, + 0x09, 0x94, 0x6d, 0x42, 0x78, 0x3d, 0x6a, 0x0d, 0x8c, 0x38, 0x19, 0xc8, + 0xf6, 0xaa, 0x51, 0xd0, 0xa6, 0x5f, 0x8d, 0xd4, 0x61, 0xc3, 0x64, 0x83, + 0xc6, 0x4d, 0x4d, 0xe6, 0xc9, 0x92, 0x41, 0x04, 0x9a, 0xcf, 0x55, 0x90, + 0x01, 0xd9, 0xcf, 0x6a, 0x9d, 0x64, 0xda, 0x39, 0x6e, 0x7b, 0xd4, 0xb8, + 0x90, 0xd1, 0x69, 0x99, 0x98, 0xe4, 0x60, 0x7b, 0xe6, 0x90, 0xc8, 0x63, + 0x42, 0x09, 0xdd, 0x59, 0xde, 0x64, 0xbf, 0x38, 0x53, 0x9c, 0x9c, 0x8c, + 0x9e, 0x95, 0x36, 0x4c, 0x71, 0xc6, 0x3e, 0x66, 0x62, 0x79, 0xcd, 0x37, + 0x16, 0xba, 0x99, 0x96, 0x9a, 0xe8, 0x98, 0x4a, 0x30, 0xc6, 0x3a, 0x35, + 0x65, 0x9b, 0xd8, 0x94, 0xf1, 0x92, 0xd9, 0xef, 0x5a, 0x04, 0x87, 0x5c, + 0x11, 0x82, 0x6a, 0x08, 0x74, 0xc8, 0x5a, 0xfe, 0x0f, 0x3d, 0xd6, 0x28, + 0x99, 0xb0, 0xcd, 0xc9, 0xa2, 0x1c, 0x89, 0x36, 0xca, 0x8e, 0xe4, 0xb7, + 0xba, 0x25, 0xf8, 0xd2, 0xe2, 0xd4, 0xfc, 0xa6, 0x16, 0xb3, 0x9c, 0x21, + 0x03, 0x9c, 0x8a, 0xca, 0x51, 0x32, 0xe3, 0x6e, 0x71, 0xdc, 0xfa, 0xd7, + 0xd1, 0x1a, 0x45, 0xf6, 0x8e, 0xfe, 0x1d, 0x8e, 0xd6, 0x78, 0xed, 0x4d, + 0xb4, 0x69, 0xe5, 0x46, 0x37, 0x64, 0x91, 0x8e, 0x78, 0xc7, 0x5a, 0xf3, + 0xff, 0x00, 0x1a, 0xf8, 0x00, 0xe9, 0xba, 0x7c, 0x7a, 0xae, 0x95, 0x3f, + 0xda, 0x2d, 0x24, 0x6f, 0x9a, 0x30, 0x39, 0x40, 0x7a, 0x57, 0x16, 0x1f, + 0x32, 0x8c, 0xa7, 0xec, 0xea, 0x69, 0xd8, 0xda, 0x50, 0xb2, 0xf7, 0x75, + 0x39, 0x9f, 0x08, 0xe9, 0xf7, 0xba, 0x96, 0xb3, 0x1c, 0x71, 0xd9, 0x49, + 0x77, 0x02, 0xb6, 0x64, 0x45, 0x38, 0xc8, 0xfa, 0xd7, 0xa0, 0xea, 0x9e, + 0x0f, 0x9e, 0xe6, 0x7f, 0x32, 0x5b, 0x76, 0xb4, 0xb5, 0xdd, 0x9f, 0xb3, + 0xc5, 0x20, 0x21, 0x46, 0x3a, 0xfd, 0x6a, 0x6f, 0x87, 0xf6, 0x9a, 0x9e, + 0x8b, 0xa6, 0x0b, 0x5b, 0xc9, 0xa3, 0xb0, 0x5b, 0xa5, 0x2d, 0x13, 0x34, + 0x20, 0xb3, 0x7d, 0x4f, 0xad, 0x76, 0x5a, 0x6e, 0x81, 0x67, 0x14, 0xcf, + 0x76, 0xf2, 0xb5, 0xf3, 0x3a, 0xf1, 0x33, 0xb6, 0xe2, 0x4f, 0xb0, 0xed, + 0x5e, 0x7e, 0x33, 0x18, 0xdd, 0x76, 0xe0, 0xf4, 0x5f, 0x8f, 0xe8, 0x54, + 0x57, 0xbb, 0xa9, 0xe2, 0x1a, 0xbe, 0x90, 0xd6, 0x37, 0x6e, 0xb0, 0x87, + 0x96, 0x11, 0xd1, 0x80, 0xac, 0x67, 0x88, 0xc7, 0x20, 0x65, 0xc7, 0x1c, + 0x91, 0x5e, 0x81, 0xe2, 0x9b, 0xab, 0xed, 0x3f, 0x50, 0x9a, 0x25, 0x89, + 0x45, 0xb1, 0x27, 0x9d, 0xbc, 0x7e, 0x35, 0xc2, 0x4d, 0x3a, 0x99, 0x18, + 0xb0, 0xef, 0x8c, 0xe2, 0xbd, 0x2c, 0x2d, 0x59, 0xce, 0x09, 0xb2, 0x66, + 0x92, 0x7a, 0x14, 0x6e, 0x32, 0xef, 0xc0, 0xe4, 0xf7, 0xa8, 0x62, 0x06, + 0x35, 0x90, 0x01, 0xcd, 0x68, 0x88, 0x1a, 0x43, 0x92, 0x78, 0xc5, 0x3a, + 0x4b, 0x50, 0x91, 0x66, 0x3e, 0x58, 0xf5, 0xe6, 0xbb, 0x15, 0x44, 0x95, + 0x8c, 0xca, 0x0a, 0xa4, 0x44, 0x0b, 0x30, 0x06, 0xa5, 0x13, 0x46, 0xb1, + 0xa9, 0x40, 0x77, 0xf7, 0x35, 0x03, 0xbc, 0x71, 0x30, 0xde, 0x48, 0x06, + 0x9c, 0x26, 0x57, 0x04, 0x85, 0x0a, 0x3d, 0x6a, 0xda, 0xb8, 0x16, 0x8c, + 0xc1, 0x90, 0x32, 0x8c, 0x1a, 0x6a, 0xb3, 0x3b, 0x71, 0xe9, 0x4c, 0x46, + 0x6d, 0x81, 0x71, 0x96, 0x23, 0x9c, 0x52, 0xa0, 0x62, 0x80, 0x28, 0xc7, + 0x3c, 0xd4, 0x5a, 0xc0, 0x48, 0xb1, 0xb0, 0x24, 0x91, 0x4a, 0xb2, 0xb4, + 0x67, 0x83, 0xf8, 0x54, 0x66, 0x69, 0x83, 0x6c, 0x44, 0x27, 0x27, 0x19, + 0x06, 0xa5, 0x78, 0xfc, 0xce, 0x1f, 0x03, 0x1d, 0xc5, 0x2f, 0x51, 0x96, + 0xed, 0x6e, 0x00, 0x66, 0x2c, 0x4e, 0x31, 0xc1, 0x15, 0xa2, 0xda, 0xe5, + 0xec, 0x16, 0xe9, 0x04, 0x53, 0x3c, 0x71, 0x81, 0xd8, 0xd6, 0x24, 0x6d, + 0xe5, 0xa9, 0x50, 0x80, 0xe3, 0xa9, 0xab, 0x0c, 0xca, 0xd8, 0xdd, 0x9d, + 0xa7, 0xb5, 0x61, 0x3a, 0x71, 0x6f, 0x54, 0x03, 0x66, 0xb8, 0x33, 0xbb, + 0x19, 0x24, 0xde, 0x4f, 0xbd, 0x57, 0x44, 0x08, 0x3e, 0x66, 0xe6, 0xa3, + 0x11, 0xa8, 0x9d, 0x82, 0x93, 0x83, 0xeb, 0x4e, 0x70, 0xc1, 0xb3, 0xc1, + 0xf7, 0xad, 0x92, 0x4b, 0x44, 0x2b, 0x0f, 0x24, 0x8e, 0x11, 0x73, 0xef, + 0x55, 0x64, 0x32, 0xee, 0xd8, 0x14, 0x71, 0xdf, 0x15, 0x66, 0x34, 0xde, + 0x79, 0x38, 0x35, 0x61, 0x62, 0x00, 0xf3, 0x4f, 0x9e, 0xc5, 0x28, 0x99, + 0xcb, 0x14, 0xac, 0x79, 0x38, 0x1e, 0xd5, 0x6a, 0x24, 0x31, 0x11, 0x8c, + 0x96, 0xf7, 0xa9, 0xc6, 0xc5, 0xf4, 0xa4, 0x2d, 0x9e, 0x14, 0x66, 0x93, + 0x9b, 0x61, 0x62, 0x6b, 0x7b, 0xa9, 0x62, 0x7c, 0x1c, 0x10, 0x7d, 0x6a, + 0xc4, 0x06, 0xd2, 0x67, 0x65, 0x97, 0x6a, 0x33, 0x1e, 0x1f, 0xb0, 0xaa, + 0x0c, 0xc3, 0x68, 0xe0, 0x83, 0x50, 0x0c, 0xb1, 0x27, 0xa1, 0xef, 0x45, + 0xee, 0xb5, 0x1c, 0x66, 0xd1, 0xab, 0x77, 0x0d, 0x90, 0x85, 0xa2, 0x12, + 0xac, 0xee, 0x0f, 0x06, 0x36, 0xe0, 0x7e, 0x15, 0x96, 0xb0, 0xed, 0x1b, + 0x11, 0x8e, 0x7a, 0x9f, 0x6a, 0x8f, 0x90, 0x4e, 0x0f, 0x34, 0x85, 0xdd, + 0x46, 0x14, 0xe1, 0x8f, 0xe5, 0x4d, 0x46, 0xda, 0x22, 0xdd, 0x45, 0x2d, + 0x2c, 0x24, 0xa9, 0xba, 0x26, 0x20, 0x12, 0x56, 0xa5, 0xb3, 0xd3, 0x91, + 0x91, 0x5e, 0x40, 0x70, 0x79, 0xe9, 0x44, 0xcf, 0xe4, 0x5a, 0x85, 0x73, + 0xbc, 0x30, 0xfe, 0x1e, 0xb5, 0xab, 0xe1, 0xf9, 0x74, 0xcb, 0xb9, 0xe3, + 0xb7, 0xb9, 0x92, 0x75, 0xcf, 0x03, 0x62, 0xe6, 0x89, 0xd4, 0x94, 0x69, + 0xbb, 0x19, 0x5b, 0xde, 0xb9, 0x4a, 0xe1, 0x56, 0x05, 0xd8, 0x84, 0xa8, + 0xed, 0x8e, 0x2b, 0x2c, 0xcc, 0xc4, 0x95, 0xf3, 0x24, 0x65, 0x6e, 0x31, + 0x9a, 0xf4, 0xcf, 0x11, 0xf8, 0x46, 0xdc, 0x58, 0x5b, 0xcf, 0x6a, 0x5e, + 0xe3, 0x9d, 0xd2, 0x05, 0x5f, 0x9d, 0x57, 0x1f, 0x95, 0x63, 0x6b, 0x9a, + 0x3e, 0x96, 0x75, 0x7d, 0x32, 0xdb, 0x49, 0x8d, 0xe3, 0x0d, 0xb5, 0x5d, + 0x58, 0x8d, 0xee, 0xdd, 0xce, 0x73, 0x81, 0xf9, 0xd6, 0x74, 0x6b, 0xc7, + 0x45, 0xd5, 0x97, 0x28, 0x1c, 0x9c, 0x1a, 0x75, 0xdd, 0xf8, 0x2b, 0x69, + 0x65, 0x24, 0x8d, 0x18, 0xce, 0x14, 0x72, 0x05, 0x77, 0xde, 0x1b, 0xd2, + 0x74, 0x7b, 0x9d, 0x2e, 0xda, 0x7d, 0x43, 0x45, 0xb9, 0x8a, 0x58, 0xce, + 0xc9, 0x67, 0x77, 0x25, 0x58, 0x93, 0x8f, 0xbb, 0xda, 0xbb, 0xcb, 0x5d, + 0x27, 0x40, 0xb6, 0x97, 0x16, 0x42, 0x55, 0x94, 0xa8, 0x8d, 0x90, 0xcb, + 0x8f, 0x2d, 0xc7, 0x56, 0x24, 0x1e, 0x7f, 0x5a, 0xe9, 0xe1, 0xd2, 0x2c, + 0xee, 0xf4, 0xc0, 0x9f, 0x2a, 0x39, 0x3c, 0xba, 0x13, 0x8c, 0x83, 0xc1, + 0xc7, 0x7f, 0xc6, 0xbc, 0xec, 0x66, 0x36, 0x6d, 0xaa, 0x69, 0x7c, 0xd3, + 0x2e, 0x34, 0xcf, 0x11, 0xf1, 0x03, 0xde, 0x78, 0x7d, 0xe6, 0xb5, 0xb7, + 0x9e, 0x48, 0x74, 0xd9, 0x24, 0xda, 0xbb, 0x8e, 0x4e, 0xd2, 0x3e, 0xed, + 0x73, 0xc3, 0xc4, 0xda, 0xa5, 0x9a, 0x2c, 0x30, 0x6a, 0x4e, 0xf6, 0xc1, + 0x08, 0x0a, 0xa7, 0x18, 0x07, 0xb5, 0x76, 0x9f, 0x14, 0x74, 0xd0, 0x63, + 0x54, 0x8b, 0x51, 0x6b, 0xa2, 0xb3, 0xe0, 0xb4, 0x84, 0x70, 0xdb, 0x7e, + 0xe8, 0xc7, 0x00, 0x73, 0x5e, 0x69, 0x2d, 0x8d, 0xe0, 0xb6, 0xdc, 0xe8, + 0x13, 0xcb, 0x5d, 0xc0, 0x01, 0xf7, 0x87, 0xd6, 0xbd, 0x1c, 0x2d, 0x38, + 0x4e, 0x9a, 0x72, 0xb5, 0xc2, 0xa2, 0x92, 0xd1, 0x05, 0xc6, 0xa7, 0x25, + 0xc4, 0xbe, 0x6c, 0xcc, 0xd2, 0x3f, 0x72, 0xc7, 0x39, 0xa5, 0xb9, 0x70, + 0x88, 0x98, 0x5f, 0xde, 0x30, 0xc9, 0xc7, 0x41, 0x5a, 0x23, 0xc3, 0xfe, + 0x54, 0x71, 0x49, 0x2f, 0xca, 0x27, 0x8b, 0x7c, 0x25, 0xb1, 0x86, 0x6c, + 0x67, 0x15, 0x8d, 0x23, 0x34, 0x61, 0x95, 0xf0, 0xdf, 0x8f, 0x35, 0xd3, + 0x1f, 0x66, 0xdd, 0xa1, 0xd0, 0xc2, 0x50, 0x94, 0x17, 0xbd, 0xb9, 0xe8, + 0x1f, 0x09, 0xbc, 0xef, 0xed, 0xa2, 0xf2, 0xd8, 0xa5, 0xc5, 0xa3, 0x1c, + 0x3b, 0x71, 0xb9, 0x4f, 0x62, 0x05, 0x7a, 0x03, 0x2a, 0xbf, 0x8a, 0xfe, + 0xd1, 0x67, 0x3c, 0xc9, 0x74, 0x0b, 0x47, 0xe5, 0xa4, 0x3f, 0x2b, 0x26, + 0x33, 0x80, 0x09, 0x15, 0xe4, 0xba, 0x06, 0xbb, 0x75, 0xa4, 0xc6, 0xab, + 0x1a, 0xb5, 0xbe, 0xfc, 0x6d, 0x90, 0x2e, 0xd3, 0x8f, 0x5c, 0xd7, 0x79, + 0x72, 0xef, 0xa8, 0x58, 0xae, 0xa9, 0xa7, 0x5d, 0x3d, 0xc4, 0xa9, 0x9f, + 0x34, 0xbb, 0x72, 0x9c, 0x73, 0xc9, 0xaf, 0x2b, 0x15, 0x06, 0xeb, 0x39, + 0xdb, 0xc8, 0xda, 0x0e, 0xd1, 0x48, 0xe5, 0x35, 0x13, 0x6e, 0xba, 0x8c, + 0xf7, 0xd7, 0xd6, 0xf3, 0xcd, 0x8e, 0x11, 0x62, 0x7d, 0xbb, 0x5b, 0xb6, + 0x6b, 0x1e, 0xc3, 0x54, 0xbe, 0x46, 0x67, 0x0f, 0x89, 0x24, 0x6e, 0x49, + 0xea, 0xde, 0xc6, 0xb5, 0x56, 0xde, 0x5d, 0x6b, 0x51, 0x78, 0xd9, 0x9f, + 0x78, 0x5e, 0xcb, 0xe9, 0xd2, 0xb1, 0x75, 0x98, 0x23, 0xb1, 0xb9, 0x16, + 0xf1, 0xbb, 0x31, 0x50, 0x0b, 0x12, 0x36, 0x90, 0x7b, 0xd7, 0x4d, 0x04, + 0xa4, 0xd5, 0x3e, 0xa4, 0x4a, 0x56, 0x47, 0x6d, 0xe1, 0x5f, 0x1b, 0x0d, + 0x3f, 0x50, 0x9c, 0x5d, 0x43, 0x19, 0x12, 0x42, 0x43, 0x09, 0x0e, 0xed, + 0xc4, 0x74, 0x1f, 0x89, 0xab, 0xab, 0xab, 0x47, 0xaf, 0xeb, 0x5e, 0x75, + 0x96, 0x8a, 0x2c, 0xad, 0x92, 0x3d, 0xb3, 0x84, 0x6e, 0x59, 0xbd, 0xb0, + 0x2b, 0xce, 0xad, 0x55, 0x27, 0x44, 0x63, 0x13, 0x33, 0x2b, 0x65, 0xd8, + 0x9e, 0xa3, 0xd2, 0xbd, 0x3b, 0xe1, 0xd5, 0xe2, 0xc1, 0x69, 0xa8, 0x4b, + 0xb6, 0x34, 0x81, 0x4a, 0xb8, 0x04, 0xfc, 0xe4, 0x8c, 0xe0, 0x7f, 0xf5, + 0xea, 0x71, 0x70, 0x8d, 0x2b, 0xf2, 0xa2, 0xa8, 0xc9, 0xbb, 0x5c, 0xe9, + 0xf5, 0x9d, 0x76, 0xeb, 0x4c, 0xd1, 0xfc, 0xb5, 0x4b, 0x19, 0x9d, 0xa0, + 0x03, 0x6b, 0xa9, 0x52, 0x73, 0xd7, 0xd8, 0xf4, 0xe6, 0xbc, 0x73, 0x50, + 0xbe, 0x9b, 0x51, 0x9c, 0xa4, 0x0a, 0xb0, 0xaf, 0x46, 0x8e, 0x2c, 0x85, + 0x3f, 0x5f, 0x5a, 0xec, 0x3c, 0x5f, 0xa8, 0x47, 0xaa, 0xbd, 0xa5, 0x8d, + 0xb2, 0x49, 0x07, 0x92, 0xa4, 0xba, 0x13, 0x91, 0x93, 0xd7, 0x07, 0xb8, + 0xae, 0x42, 0xdd, 0x25, 0x0f, 0x38, 0x88, 0x7d, 0xdc, 0xe4, 0xe2, 0xa6, + 0x95, 0xa2, 0xbc, 0xc2, 0x6d, 0xc9, 0xd9, 0x17, 0x65, 0xb9, 0x25, 0x7f, + 0xb3, 0xb5, 0x8b, 0xa7, 0x6b, 0x54, 0x1b, 0xd1, 0xa3, 0x5c, 0x90, 0xd8, + 0xe3, 0x8a, 0xe5, 0xee, 0x14, 0x19, 0x8c, 0x71, 0xe4, 0x20, 0x6e, 0x0e, + 0x3b, 0x55, 0xa9, 0x04, 0x92, 0xe5, 0xc3, 0x02, 0xc4, 0xe4, 0x8c, 0x71, + 0x8a, 0xd0, 0x8a, 0x1b, 0x33, 0x09, 0x77, 0x91, 0x84, 0xbd, 0x1b, 0x23, + 0x80, 0x3d, 0xab, 0x75, 0x2e, 0x5d, 0xc8, 0xbd, 0xd9, 0xb5, 0xa3, 0x5b, + 0xf8, 0x36, 0x4d, 0x22, 0x44, 0xbb, 0x17, 0x82, 0xfc, 0xc5, 0x81, 0xb4, + 0xe4, 0x2b, 0xfa, 0x8f, 0x51, 0x52, 0xe9, 0xfa, 0x9e, 0xa5, 0xa0, 0xc4, + 0x2d, 0x92, 0xd2, 0x36, 0x49, 0x00, 0x68, 0xcc, 0x8a, 0x09, 0x1c, 0xe7, + 0x22, 0xa9, 0xdb, 0x43, 0xa1, 0xe9, 0xc5, 0x2e, 0x60, 0xfb, 0x45, 0xcc, + 0xea, 0xc7, 0x72, 0xb2, 0x62, 0x36, 0x1d, 0xb9, 0xeb, 0x51, 0x5e, 0xdf, + 0x8b, 0xeb, 0xb3, 0x71, 0xb4, 0x46, 0xdf, 0xdd, 0x53, 0xc0, 0xac, 0xa5, + 0x67, 0xbe, 0xa5, 0x37, 0xf7, 0x9b, 0x3a, 0xd7, 0x88, 0xa0, 0xd4, 0x74, + 0xc8, 0xed, 0x8d, 0xaf, 0x96, 0x54, 0x99, 0x0e, 0xde, 0x41, 0x90, 0xf5, + 0x3f, 0x95, 0x73, 0x31, 0x4a, 0x82, 0x4d, 0x81, 0x08, 0x0c, 0x72, 0x1b, + 0xb5, 0x4f, 0x0c, 0x12, 0x09, 0x3c, 0xdf, 0x31, 0x99, 0x5b, 0xf8, 0x7b, + 0x54, 0x6e, 0xd1, 0x09, 0x7e, 0x54, 0x05, 0x7a, 0xe3, 0x18, 0xe6, 0xad, + 0xae, 0x55, 0x62, 0x5c, 0xae, 0xf5, 0x2e, 0xdb, 0xb9, 0x79, 0x55, 0x51, + 0x8b, 0x0e, 0xe0, 0x0a, 0xf4, 0xbf, 0x09, 0xeb, 0xd2, 0x45, 0x69, 0x35, + 0x8d, 0xec, 0xca, 0x40, 0x53, 0xb2, 0x39, 0x7e, 0x56, 0x1e, 0xa3, 0x38, + 0xe7, 0x8a, 0xf3, 0x9b, 0x36, 0x4b, 0x60, 0xac, 0x0a, 0xb9, 0xe1, 0x87, + 0x6c, 0x1a, 0xeb, 0x74, 0x1b, 0x9b, 0x31, 0x31, 0xb9, 0xba, 0x9d, 0x4c, + 0x8e, 0x09, 0xdb, 0x27, 0x23, 0x3f, 0x5e, 0xd5, 0x9c, 0xfe, 0x1e, 0xe6, + 0x94, 0xf4, 0x66, 0x8e, 0xa0, 0x96, 0xda, 0x96, 0xb2, 0x93, 0xd8, 0xab, + 0x42, 0x12, 0x1d, 0xa0, 0x15, 0xe4, 0x1c, 0xf5, 0xf7, 0xae, 0xbb, 0x48, + 0xb4, 0x9b, 0x4e, 0x68, 0x5f, 0xed, 0x52, 0xb4, 0x5e, 0x51, 0x2e, 0xb2, + 0x28, 0x03, 0x3c, 0x73, 0xed, 0x58, 0x5a, 0x24, 0xb1, 0x5e, 0xdd, 0x13, + 0xe7, 0x46, 0x45, 0xb8, 0x25, 0x76, 0xf5, 0x6f, 0x6c, 0xf7, 0xad, 0xcb, + 0xa6, 0x7b, 0xdd, 0x25, 0x5e, 0x09, 0x8a, 0x49, 0xb7, 0x86, 0x43, 0x9c, + 0x83, 0xfc, 0x24, 0x57, 0x23, 0x9c, 0xa3, 0x26, 0xce, 0x98, 0xc6, 0xe8, + 0xf2, 0x7f, 0x15, 0x00, 0xbe, 0x21, 0xba, 0x74, 0x8f, 0xf7, 0x52, 0xb7, + 0x98, 0x85, 0x46, 0x14, 0x83, 0xe9, 0x5c, 0xd5, 0xc4, 0xa1, 0x57, 0x70, + 0xdc, 0x33, 0xd0, 0xe2, 0xbd, 0x6b, 0x56, 0x1a, 0x65, 0xa3, 0x41, 0x1e, + 0xa3, 0x6e, 0x2e, 0x44, 0x30, 0xec, 0x62, 0xee, 0x54, 0x7b, 0x01, 0xf4, + 0xae, 0x0f, 0x55, 0xb1, 0xd3, 0xf7, 0xa0, 0xb3, 0x9d, 0x24, 0x8d, 0xb9, + 0x0a, 0x01, 0xca, 0x7b, 0x13, 0x5d, 0x74, 0xb1, 0x0e, 0x6f, 0xde, 0x5a, + 0x91, 0x34, 0xe3, 0xb3, 0x39, 0x21, 0x70, 0xe1, 0xb1, 0x86, 0x65, 0xcf, + 0x3c, 0x66, 0xaf, 0x42, 0x8f, 0x36, 0xd2, 0x99, 0x5c, 0xf5, 0xdc, 0x2b, + 0x43, 0xec, 0xf1, 0xc0, 0x4e, 0xd0, 0x48, 0x23, 0x9c, 0x53, 0x23, 0x91, + 0xc7, 0xc8, 0x17, 0x80, 0x73, 0x9f, 0x4a, 0xe9, 0x73, 0x5a, 0x18, 0xb5, + 0xad, 0xc6, 0xc7, 0x65, 0xb1, 0xc7, 0x9b, 0x26, 0xe5, 0x27, 0xaf, 0xa5, + 0x76, 0xba, 0x2c, 0xfa, 0x3d, 0xe2, 0xa6, 0x9b, 0x72, 0x88, 0xc9, 0x32, + 0xf9, 0x6b, 0xe6, 0xaf, 0x21, 0xfb, 0x10, 0x7b, 0x57, 0x27, 0x03, 0x61, + 0x94, 0xb8, 0xdd, 0xcf, 0x4a, 0xbb, 0xaf, 0x5e, 0xda, 0x31, 0x8e, 0x6b, + 0x44, 0x11, 0xc9, 0x9c, 0x90, 0xbc, 0x32, 0x11, 0x58, 0x4d, 0x39, 0xb4, + 0x34, 0xec, 0x8c, 0xfd, 0x5f, 0x48, 0xfe, 0xc8, 0xd6, 0x2e, 0x2c, 0x44, + 0x81, 0xd6, 0x36, 0xc6, 0xe0, 0x3b, 0xd4, 0x90, 0xd8, 0xcf, 0x73, 0x1e, + 0xe8, 0xa1, 0x92, 0x40, 0x9d, 0x4a, 0x83, 0x81, 0x54, 0xbe, 0xd4, 0xf7, + 0x12, 0x99, 0xa4, 0x62, 0x59, 0x8f, 0xcc, 0x49, 0xc9, 0x35, 0xea, 0xbe, + 0x0f, 0xd6, 0x22, 0xd6, 0x34, 0x93, 0xa2, 0x49, 0x6c, 0x15, 0xd2, 0x33, + 0xf3, 0xc5, 0xf2, 0x65, 0x78, 0x19, 0xfa, 0xd1, 0x52, 0x3f, 0x68, 0x54, + 0xec, 0xe5, 0x63, 0xcd, 0xf6, 0xe7, 0x03, 0xb8, 0xe0, 0x8a, 0xd4, 0x9a, + 0xe2, 0xe4, 0xe9, 0xb1, 0x5a, 0x96, 0xdb, 0x6d, 0x19, 0xde, 0xa0, 0x9e, + 0xf4, 0xba, 0xfd, 0xb5, 0xb5, 0x8e, 0xa7, 0x2c, 0x10, 0x45, 0x2a, 0x04, + 0x38, 0x22, 0x41, 0xc9, 0xf7, 0xaa, 0x0a, 0xb7, 0x77, 0x50, 0xf9, 0x11, + 0x23, 0x32, 0x64, 0x12, 0x40, 0xce, 0x33, 0xc5, 0x66, 0xa0, 0xed, 0x74, + 0x57, 0x35, 0x99, 0xd7, 0x69, 0x9a, 0x05, 0xee, 0xbf, 0xe1, 0xe5, 0x78, + 0x6d, 0xed, 0xf3, 0xb8, 0xec, 0x75, 0x7c, 0x30, 0xc7, 0xb7, 0x4a, 0xd9, + 0xd1, 0x4d, 0xde, 0x9f, 0x20, 0xd0, 0xa3, 0xbb, 0x8e, 0x1b, 0xbc, 0xee, + 0xdb, 0x2e, 0x09, 0x8d, 0x78, 0x24, 0x8c, 0x70, 0x73, 0x5d, 0x06, 0x9f, + 0x6e, 0x9a, 0x4e, 0x9f, 0x04, 0x73, 0x25, 0xbd, 0xb5, 0xbc, 0x51, 0x00, + 0xce, 0x24, 0x2a, 0x09, 0x3d, 0x73, 0x90, 0x2b, 0x88, 0xd1, 0x21, 0x3a, + 0x7f, 0x8a, 0xee, 0xb5, 0x51, 0x63, 0x73, 0x79, 0x60, 0xd2, 0x32, 0x45, + 0x74, 0x32, 0x55, 0x06, 0x7a, 0x83, 0xdc, 0x76, 0xad, 0x1a, 0x5b, 0x4b, + 0xa1, 0xb6, 0xda, 0x9d, 0x06, 0xb4, 0xda, 0x75, 0xb6, 0xb5, 0x0a, 0x5d, + 0x44, 0x2e, 0xde, 0xe6, 0x23, 0x1f, 0x32, 0x60, 0xe4, 0x7a, 0x81, 0xda, + 0xbc, 0x7f, 0x50, 0x8b, 0xcb, 0xbe, 0x99, 0x19, 0x0c, 0x6c, 0x8c, 0x47, + 0x97, 0xd7, 0x1e, 0xd5, 0xd2, 0xf8, 0xdf, 0x58, 0x6b, 0xdd, 0x7b, 0xcc, + 0x47, 0x65, 0xf2, 0xc6, 0x17, 0x1c, 0x10, 0x3b, 0x7e, 0x35, 0xcc, 0xc8, + 0x41, 0x6d, 0xd2, 0x4b, 0xb9, 0xdb, 0xf8, 0x89, 0xcd, 0x11, 0x96, 0x97, + 0x31, 0xa9, 0xa9, 0x02, 0x23, 0x70, 0x36, 0xf1, 0x52, 0xb4, 0x5e, 0x71, + 0xdb, 0xbc, 0x2f, 0x3d, 0x71, 0x4e, 0x60, 0xca, 0xaa, 0xc7, 0xee, 0x81, + 0xda, 0xa0, 0x77, 0x56, 0xce, 0x09, 0xa6, 0xd6, 0xa6, 0x57, 0x27, 0x8a, + 0x01, 0x15, 0xc3, 0x16, 0x72, 0xd9, 0xee, 0x2a, 0x62, 0xf0, 0xa7, 0x98, + 0x17, 0x27, 0x9f, 0x94, 0x93, 0x83, 0x8f, 0xa5, 0x67, 0xb0, 0x76, 0xc6, + 0xd6, 0xc1, 0xa7, 0x84, 0x26, 0x45, 0x47, 0x3d, 0x07, 0x63, 0x51, 0x27, + 0x67, 0x70, 0x8e, 0xa7, 0x79, 0xa0, 0x78, 0xaa, 0xdf, 0x4b, 0xd1, 0x25, + 0x6f, 0x38, 0x9b, 0xc5, 0x21, 0x63, 0x85, 0xc7, 0x0a, 0x0f, 0x52, 0xbe, + 0xf5, 0xda, 0x5a, 0x6a, 0x7a, 0xad, 0xd7, 0x86, 0xda, 0x69, 0xda, 0x18, + 0xa6, 0x96, 0x32, 0xc8, 0xf9, 0x07, 0x3e, 0xc4, 0x7a, 0x9a, 0xf3, 0xff, + 0x00, 0x0c, 0x5b, 0xe9, 0x3a, 0x74, 0xe2, 0xf7, 0x59, 0xb6, 0x7b, 0x88, + 0x0f, 0x11, 0x1c, 0x7c, 0xbb, 0xba, 0xf3, 0xeb, 0x52, 0x1f, 0x11, 0xda, + 0xe9, 0xd6, 0x17, 0xa6, 0xd9, 0x55, 0x9a, 0xe2, 0x4c, 0x46, 0x07, 0x1e, + 0x58, 0xac, 0x6e, 0xba, 0x1b, 0xc5, 0xb4, 0x76, 0xfa, 0x35, 0x91, 0x87, + 0x50, 0xbb, 0xb3, 0x9c, 0x5b, 0xcc, 0x86, 0x1d, 0xcf, 0xbb, 0x04, 0x27, + 0xe1, 0xde, 0xb9, 0xad, 0x47, 0xc2, 0xda, 0x33, 0x6a, 0xb3, 0xc0, 0xb3, + 0xc2, 0xd2, 0xb8, 0x55, 0x53, 0xbb, 0x6a, 0xa3, 0x1e, 0x7a, 0x0c, 0xd3, + 0xe5, 0xd6, 0x20, 0xb8, 0xb2, 0x82, 0x16, 0x96, 0x1b, 0x37, 0x31, 0x90, + 0xc5, 0xd7, 0xf7, 0x92, 0x1f, 0x42, 0x7d, 0x3e, 0xb4, 0xcd, 0x1e, 0xd2, + 0xc2, 0xd3, 0x42, 0x51, 0x71, 0xb1, 0xae, 0x76, 0x33, 0x99, 0x8a, 0xa9, + 0x2d, 0xcf, 0x41, 0x44, 0x15, 0xbd, 0xeb, 0x83, 0xbb, 0x38, 0xdd, 0x67, + 0xcd, 0xd3, 0x27, 0x5b, 0x29, 0xd6, 0x04, 0xf2, 0x41, 0x0a, 0xd1, 0x8c, + 0x79, 0x83, 0x3d, 0x73, 0xde, 0xb2, 0x27, 0x9d, 0x15, 0x01, 0x47, 0xc6, + 0xee, 0x39, 0x15, 0xaf, 0xaf, 0x8f, 0xed, 0x6b, 0xd5, 0x95, 0xa1, 0x74, + 0x6e, 0x10, 0x16, 0xee, 0x47, 0xd7, 0xa5, 0x62, 0xdf, 0xdb, 0x18, 0xe4, + 0x08, 0x3b, 0x75, 0x15, 0xb4, 0x5c, 0x5b, 0x27, 0x71, 0x56, 0x76, 0xd8, + 0x47, 0x5f, 0x52, 0x47, 0x4a, 0x91, 0xee, 0x61, 0x78, 0x36, 0x38, 0x6d, + 0xc3, 0xf8, 0xaa, 0x92, 0xb4, 0x8a, 0x0a, 0xb0, 0xeb, 0xe9, 0x51, 0x38, + 0x27, 0x20, 0xe7, 0x15, 0x5c, 0xaa, 0xe2, 0xd8, 0x9d, 0xe5, 0xcb, 0x8d, + 0x92, 0x1c, 0x0e, 0x79, 0xef, 0x56, 0x2e, 0x2e, 0x9e, 0xf8, 0xaa, 0xcd, + 0x2b, 0x12, 0x00, 0x55, 0xcf, 0x38, 0x1e, 0x82, 0xb3, 0x50, 0x36, 0x0b, + 0x7a, 0x76, 0x34, 0xf8, 0x51, 0xe6, 0x90, 0x61, 0x88, 0x22, 0xae, 0xc4, + 0x5c, 0x9e, 0xe2, 0xde, 0x22, 0xc3, 0xc9, 0x04, 0x15, 0xcf, 0x53, 0x92, + 0x6a, 0xa2, 0xc4, 0xe6, 0x5c, 0x9c, 0xa2, 0xe3, 0x25, 0x8d, 0x5e, 0x50, + 0x62, 0x73, 0x26, 0x59, 0x7f, 0xda, 0x34, 0xe1, 0x39, 0x44, 0x3b, 0x9c, + 0x3c, 0x5d, 0x46, 0x45, 0x2e, 0x77, 0xd0, 0x16, 0xa4, 0x6a, 0x4c, 0x68, + 0x36, 0x9c, 0x2f, 0xd7, 0x35, 0x1c, 0xa4, 0xb6, 0x19, 0x48, 0x3f, 0x43, + 0x4f, 0x76, 0xcb, 0x16, 0x18, 0x55, 0x6e, 0x83, 0xd2, 0xa2, 0x0a, 0xa0, + 0x13, 0xc6, 0x4d, 0x4a, 0x06, 0x86, 0xab, 0x71, 0xf3, 0x11, 0x9f, 0x41, + 0x48, 0x93, 0x18, 0xe4, 0x2e, 0x31, 0x9f, 0x7a, 0x18, 0xe4, 0x02, 0xa3, + 0x26, 0x95, 0x09, 0x0b, 0x90, 0x33, 0x9f, 0x6a, 0xa1, 0x16, 0x8d, 0xd1, + 0x9e, 0xdb, 0x66, 0xed, 0xbc, 0xfc, 0xd8, 0xef, 0x54, 0x89, 0x55, 0x97, + 0x01, 0xb2, 0x3d, 0xa9, 0xc6, 0x45, 0xe9, 0xb7, 0x1e, 0xa2, 0x8f, 0x2d, + 0x48, 0xde, 0xb4, 0x92, 0x51, 0x06, 0xc0, 0x84, 0xdd, 0xf2, 0xf1, 0xf5, + 0xa7, 0x45, 0x62, 0xd7, 0x32, 0x6c, 0x57, 0x55, 0x6f, 0xf6, 0x8e, 0x05, + 0x05, 0x32, 0xa5, 0xd7, 0xb7, 0x5a, 0x20, 0xb6, 0x6b, 0xb9, 0x0e, 0x25, + 0x48, 0xc2, 0x72, 0xdb, 0xdb, 0x19, 0xfa, 0x50, 0xdd, 0x95, 0xee, 0x1b, + 0x9a, 0x30, 0x78, 0x72, 0x36, 0xb8, 0x86, 0x0b, 0xad, 0x6a, 0x08, 0x3c, + 0xc3, 0xcf, 0xf1, 0x05, 0xab, 0x5a, 0xad, 0x86, 0x9f, 0x69, 0x88, 0xac, + 0x35, 0x13, 0x74, 0xa9, 0xc6, 0xff, 0x00, 0x2c, 0xa8, 0x27, 0xbe, 0x2a, + 0x0b, 0x5b, 0x6b, 0x4b, 0x3b, 0x95, 0x96, 0x79, 0x23, 0x9c, 0x00, 0x7e, + 0x5c, 0x64, 0x66, 0xb4, 0x27, 0xd5, 0x9a, 0xf2, 0xcf, 0xec, 0xaf, 0xb9, + 0xe2, 0x8c, 0xee, 0x50, 0xa0, 0x71, 0xfa, 0x57, 0x3f, 0xb7, 0xa9, 0x19, + 0x27, 0x17, 0xfa, 0x7e, 0x83, 0xb2, 0x68, 0x98, 0x49, 0x6f, 0x69, 0xa4, + 0x47, 0xfd, 0x9f, 0x6b, 0x2f, 0xda, 0x1d, 0x33, 0x25, 0xc3, 0x92, 0xa0, + 0x7a, 0x81, 0x5c, 0xf3, 0x5d, 0x5c, 0x49, 0x2a, 0xbc, 0xcc, 0xc4, 0x0e, + 0x99, 0x39, 0xad, 0x38, 0x6f, 0xe1, 0x9e, 0x29, 0x56, 0xfc, 0x4e, 0xe8, + 0x13, 0x11, 0x22, 0x36, 0x39, 0xf7, 0xac, 0xd6, 0x45, 0x92, 0xe9, 0x04, + 0xb3, 0x79, 0x30, 0xb2, 0x8c, 0xb9, 0x5c, 0xed, 0xad, 0x29, 0x4e, 0x51, + 0x72, 0x72, 0x5a, 0xbf, 0x98, 0x9c, 0x53, 0xd1, 0x03, 0x5d, 0x0c, 0x80, + 0x00, 0xcd, 0x41, 0x34, 0xcc, 0xca, 0x41, 0x6c, 0x0f, 0x7e, 0x94, 0xcb, + 0xc2, 0x90, 0xdd, 0x05, 0x47, 0x59, 0x14, 0x8c, 0xab, 0x0f, 0xeb, 0x59, + 0x57, 0xab, 0x26, 0xdf, 0x9a, 0x6e, 0xa7, 0xa0, 0xad, 0xe1, 0x4b, 0x6e, + 0x84, 0xda, 0xef, 0x73, 0x56, 0x73, 0x35, 0xa5, 0xac, 0x12, 0x45, 0x3c, + 0x37, 0x06, 0x50, 0x72, 0xaa, 0x70, 0x53, 0x1e, 0xb5, 0x48, 0x4a, 0x5a, + 0x75, 0xb8, 0x94, 0x64, 0xaf, 0x40, 0x83, 0x35, 0x55, 0xed, 0x8c, 0x30, + 0xab, 0xab, 0x6f, 0x07, 0xbe, 0x7a, 0xd3, 0x91, 0xa3, 0xdc, 0x41, 0x61, + 0xb8, 0xf0, 0x07, 0xa5, 0x68, 0xa0, 0x92, 0xee, 0x2b, 0x5b, 0x62, 0x77, + 0x96, 0x49, 0x59, 0xc9, 0xf9, 0x54, 0x9e, 0xf4, 0xdb, 0x58, 0xdd, 0x64, + 0x62, 0xab, 0xb8, 0x1e, 0xe4, 0xf1, 0x4c, 0x79, 0x54, 0x10, 0xbd, 0x7d, + 0x85, 0x1e, 0x76, 0xc7, 0x3b, 0x54, 0xb0, 0xc7, 0x41, 0x55, 0x67, 0x6b, + 0x20, 0xbb, 0xd8, 0x94, 0x2f, 0x96, 0x59, 0xe4, 0x0a, 0xc4, 0xf4, 0x1e, + 0x95, 0x8d, 0x38, 0x2e, 0xe7, 0x0c, 0x03, 0x66, 0xae, 0x3c, 0xa1, 0x88, + 0x62, 0x71, 0x8e, 0xd9, 0xa8, 0x45, 0xb7, 0x9b, 0x26, 0xe5, 0x60, 0x32, + 0x7a, 0x56, 0xb4, 0xd7, 0x2e, 0xac, 0xa8, 0xe9, 0xb9, 0x2d, 0x92, 0x39, + 0x8d, 0x96, 0x4c, 0xe1, 0x7d, 0xba, 0xd7, 0x42, 0x13, 0x4f, 0x36, 0x96, + 0xc2, 0x28, 0x25, 0x69, 0xb7, 0x7e, 0xf0, 0x8e, 0x3f, 0x01, 0x58, 0x11, + 0xc4, 0xf1, 0xca, 0x14, 0x4a, 0x47, 0xa6, 0x4d, 0x76, 0x5e, 0x1d, 0x92, + 0x4b, 0x87, 0x25, 0x3c, 0x85, 0x78, 0x30, 0xdb, 0xb1, 0xc9, 0xfc, 0x2b, + 0x97, 0x15, 0x2b, 0x2e, 0x60, 0x4e, 0xe5, 0x7b, 0x5b, 0x86, 0x86, 0xe6, + 0x38, 0x2c, 0x2c, 0xe6, 0x92, 0x56, 0xc8, 0x65, 0x75, 0xe0, 0xd4, 0x5a, + 0xb9, 0xbd, 0xb2, 0x98, 0xda, 0xde, 0x44, 0x62, 0x76, 0x3b, 0xb0, 0xca, + 0x38, 0xfa, 0x1a, 0xdc, 0xd5, 0xfc, 0x75, 0x7b, 0x1d, 0xbb, 0xdb, 0xaa, + 0xc6, 0x1d, 0x8f, 0xdf, 0x0a, 0x07, 0x3e, 0xb5, 0xcb, 0x5f, 0xeb, 0x57, + 0xba, 0xbf, 0x96, 0x6f, 0x65, 0x12, 0xc8, 0x8b, 0xb4, 0x31, 0x18, 0x27, + 0xeb, 0x5c, 0xf4, 0x63, 0x39, 0x5a, 0x52, 0x8a, 0x5f, 0x3b, 0xfe, 0x83, + 0xb7, 0x66, 0x44, 0xe0, 0xbe, 0x00, 0x7e, 0x7d, 0xfb, 0xd2, 0x2c, 0x6b, + 0x16, 0xd5, 0x6d, 0xdc, 0xf5, 0xf4, 0xa8, 0xa3, 0x8e, 0x4d, 0x9b, 0xfe, + 0x60, 0x33, 0xf3, 0x1a, 0xbb, 0x3f, 0x96, 0x12, 0x16, 0x8a, 0x6f, 0x30, + 0x95, 0xcb, 0x82, 0x30, 0x54, 0xd7, 0x4b, 0xd3, 0x44, 0x22, 0xb7, 0x90, + 0x4b, 0x70, 0x73, 0xce, 0x00, 0xa7, 0xfd, 0x9a, 0x58, 0xc8, 0x0d, 0x11, + 0x23, 0xf9, 0xd3, 0xa3, 0x6c, 0x31, 0x24, 0xe4, 0x75, 0xa9, 0x8d, 0xf3, + 0x88, 0xd8, 0x2b, 0x01, 0x19, 0x18, 0x39, 0xe6, 0x8b, 0xbb, 0x89, 0x8c, + 0x75, 0xf2, 0x1f, 0x6b, 0x26, 0xd3, 0x8a, 0x6b, 0x36, 0x50, 0x80, 0x76, + 0xd5, 0x79, 0x2e, 0x56, 0x59, 0xb2, 0x77, 0x11, 0xef, 0x4b, 0xe7, 0x7a, + 0x0e, 0xd4, 0xb9, 0x58, 0xac, 0x3f, 0x6e, 0x57, 0x68, 0x39, 0xf5, 0x34, + 0xf7, 0x9c, 0x85, 0x0a, 0xa4, 0x70, 0x29, 0x12, 0x62, 0x89, 0x93, 0x1a, + 0x9c, 0x7a, 0xd5, 0x47, 0x96, 0x36, 0xba, 0xc9, 0x8c, 0xe5, 0xbb, 0x2f, + 0x41, 0x42, 0x8b, 0x93, 0x0d, 0xcb, 0x51, 0x05, 0x98, 0xe5, 0xf8, 0xc7, + 0xad, 0x4e, 0x3e, 0x46, 0xcf, 0x07, 0x1d, 0x01, 0xa9, 0x2d, 0x2c, 0x2e, + 0x3e, 0xcd, 0x2d, 0xda, 0x2e, 0xe8, 0x91, 0x41, 0xfb, 0xbe, 0xf4, 0x93, + 0x29, 0x70, 0xad, 0xc0, 0xf6, 0xc5, 0x66, 0xe4, 0x9b, 0xb0, 0xe4, 0x9a, + 0x61, 0x21, 0x8a, 0x58, 0x98, 0x3e, 0x54, 0xe3, 0x90, 0x3a, 0x13, 0x59, + 0x62, 0xdb, 0xcb, 0x5d, 0xe5, 0xb3, 0xce, 0x70, 0x2b, 0x55, 0x2c, 0xe4, + 0x9e, 0x27, 0x30, 0x9d, 0xcc, 0x06, 0x48, 0x03, 0xa0, 0xaa, 0x8d, 0x1b, + 0xc8, 0x36, 0x15, 0xe1, 0x79, 0xe9, 0x4e, 0x12, 0xb6, 0x89, 0x89, 0x2b, + 0x3b, 0xb2, 0x97, 0x12, 0x10, 0x53, 0x81, 0xe9, 0x4e, 0x63, 0xf2, 0x72, + 0x70, 0x73, 0xeb, 0x4f, 0x48, 0x9d, 0x09, 0x23, 0x04, 0x1e, 0xb8, 0xa4, + 0x48, 0x4c, 0xad, 0xe6, 0x30, 0xe0, 0x7f, 0x0f, 0xad, 0x6f, 0x74, 0x36, + 0x3b, 0xca, 0x3b, 0x8b, 0xb1, 0x39, 0xc7, 0x01, 0x6a, 0xb8, 0x75, 0x66, + 0x2d, 0xc8, 0x71, 0xd2, 0xaf, 0xb9, 0x3b, 0x3e, 0x61, 0xb5, 0xbb, 0x60, + 0xd5, 0x3f, 0x2f, 0x3b, 0x9b, 0x1b, 0x53, 0xd5, 0x8e, 0x29, 0x45, 0xdf, + 0x71, 0x5c, 0x8c, 0x8d, 0xf2, 0x96, 0x3d, 0x4f, 0x61, 0xc5, 0x28, 0xf3, + 0xd1, 0x42, 0x8e, 0xa7, 0xa0, 0x34, 0xf6, 0x91, 0x63, 0x90, 0x21, 0xe0, + 0xff, 0x00, 0x7a, 0xac, 0x00, 0x5e, 0x12, 0xdb, 0x81, 0x61, 0xd0, 0x8e, + 0xf5, 0x4e, 0x4d, 0x21, 0x4a, 0x37, 0xd4, 0xaf, 0xe6, 0x4e, 0x26, 0xe0, + 0x12, 0x00, 0xe4, 0x56, 0xae, 0x9d, 0x6a, 0xf7, 0x37, 0x28, 0xaf, 0x22, + 0x81, 0xd7, 0x91, 0x55, 0x23, 0x40, 0x48, 0x5f, 0xb8, 0x0f, 0x53, 0xeb, + 0x5a, 0x3a, 0x6c, 0x19, 0xd4, 0x52, 0x20, 0xed, 0x92, 0x7a, 0x8e, 0xd5, + 0x8d, 0x59, 0xfb, 0xba, 0x68, 0x4d, 0xb5, 0x3d, 0x7f, 0xc3, 0x70, 0xe8, + 0xd6, 0x3a, 0x41, 0x55, 0xb4, 0xfb, 0x5d, 0xc4, 0xe7, 0xe7, 0x28, 0x9b, + 0xb9, 0xf4, 0xc9, 0xe8, 0x2b, 0x4a, 0x3d, 0x33, 0xcc, 0xd4, 0xd2, 0x38, + 0x27, 0xc6, 0x9a, 0x50, 0x89, 0x2d, 0x64, 0xeb, 0x9f, 0x51, 0x5c, 0x84, + 0x3a, 0x56, 0xbb, 0x75, 0x32, 0xc5, 0xa3, 0xbb, 0xdb, 0xc4, 0x81, 0x43, + 0x48, 0xc7, 0xe5, 0x63, 0x9c, 0xd6, 0xff, 0x00, 0xf6, 0xbc, 0x3a, 0x65, + 0x9b, 0x2d, 0xc4, 0xcb, 0x26, 0xa0, 0x4e, 0xdf, 0x2e, 0x26, 0xde, 0x59, + 0xab, 0xe6, 0x6a, 0x46, 0x5c, 0xde, 0xe3, 0xbd, 0xfa, 0x75, 0xf9, 0x9d, + 0x09, 0xb8, 0xa3, 0x51, 0xf4, 0xb1, 0x06, 0xb4, 0x1a, 0xe6, 0xf8, 0x4b, + 0x6f, 0x9f, 0x32, 0x18, 0x24, 0x23, 0x70, 0x38, 0xe9, 0xf4, 0x1c, 0xd6, + 0xa6, 0x91, 0xa9, 0x69, 0x17, 0x9e, 0x6c, 0x16, 0x6f, 0x1a, 0xcb, 0x1b, + 0xb2, 0x34, 0x40, 0x60, 0xe7, 0xd7, 0x1e, 0x95, 0x15, 0xac, 0x70, 0xeb, + 0x1a, 0x5c, 0x17, 0x91, 0x4a, 0x05, 0xc0, 0x8c, 0x2f, 0x9a, 0x14, 0x6e, + 0x46, 0xc7, 0x23, 0x9a, 0xe6, 0xe3, 0xb5, 0x96, 0xc7, 0xc4, 0x11, 0xea, + 0x56, 0x8a, 0x5e, 0x45, 0x73, 0x1d, 0xc8, 0x45, 0xe7, 0x20, 0x72, 0x48, + 0xa5, 0x05, 0x79, 0x3e, 0x7d, 0x0b, 0xbd, 0xf4, 0xb1, 0x97, 0xe3, 0x5f, + 0xb3, 0x69, 0x93, 0xdc, 0xd9, 0xde, 0x9c, 0x2c, 0xe3, 0xcc, 0x81, 0xb1, + 0x91, 0x83, 0xd4, 0x1f, 0xc6, 0xbc, 0x9e, 0x7d, 0xbb, 0xf6, 0xae, 0x1c, + 0x1c, 0x90, 0x07, 0x6a, 0xeb, 0x3c, 0x6b, 0xad, 0x5f, 0x6a, 0x97, 0xf2, + 0xcb, 0x38, 0x41, 0x13, 0x31, 0x54, 0x00, 0x73, 0x80, 0x71, 0xc8, 0x3d, + 0x2b, 0x88, 0x32, 0x3a, 0x49, 0xd7, 0x91, 0xe9, 0x5e, 0xe6, 0x0a, 0x97, + 0x2c, 0x0c, 0x66, 0xf5, 0x26, 0x5d, 0xd2, 0x2e, 0x41, 0x2a, 0x45, 0x4a, + 0x41, 0x64, 0x0a, 0xc0, 0x60, 0xf7, 0x15, 0x0c, 0xa3, 0x74, 0x8a, 0x51, + 0x5b, 0x67, 0x7f, 0x43, 0x49, 0xb8, 0x13, 0xb4, 0xb3, 0x20, 0xf4, 0xf4, + 0xae, 0xcb, 0x5c, 0xcf, 0x4e, 0xa6, 0x4d, 0xdc, 0x04, 0xb0, 0x03, 0x23, + 0x04, 0xe2, 0xa6, 0x8a, 0x09, 0x1a, 0x2c, 0x96, 0xc1, 0x1d, 0xbd, 0x6b, + 0x4d, 0xa1, 0x0e, 0xab, 0x85, 0x03, 0x8c, 0x03, 0xeb, 0x4d, 0x78, 0x04, + 0x68, 0x0a, 0x36, 0xe2, 0x07, 0x22, 0xb5, 0xf6, 0xba, 0x24, 0x36, 0xee, + 0x54, 0xb7, 0x65, 0x59, 0x41, 0x20, 0xe7, 0x15, 0x66, 0x57, 0x54, 0x8b, + 0x7e, 0xdc, 0x9f, 0xe5, 0x55, 0x25, 0x66, 0x42, 0x7e, 0x5e, 0x49, 0xa7, + 0xf9, 0x72, 0xb2, 0x8d, 0xe7, 0x68, 0xf7, 0xa4, 0xd5, 0xdd, 0xcd, 0x23, + 0x11, 0xf1, 0x30, 0x4f, 0xde, 0x1c, 0x83, 0xd4, 0x55, 0xb8, 0xf6, 0xca, + 0x01, 0xf5, 0xe7, 0x15, 0x4c, 0x23, 0x28, 0x3c, 0x82, 0x3d, 0x6a, 0x78, + 0xdc, 0xa6, 0xd0, 0xc4, 0x00, 0x7b, 0xd4, 0xc9, 0x76, 0x09, 0x2b, 0x17, + 0x15, 0x40, 0xe5, 0x97, 0xa5, 0x2b, 0x08, 0xe4, 0x00, 0x64, 0x00, 0x3d, + 0xaa, 0x3d, 0xed, 0x20, 0x60, 0x41, 0x1b, 0x47, 0xe7, 0x4c, 0x8d, 0x81, + 0xc0, 0x3c, 0x7b, 0xd6, 0x56, 0x22, 0xc2, 0xc9, 0x18, 0x3d, 0x14, 0x10, + 0x29, 0xbf, 0x67, 0x60, 0x32, 0x14, 0xed, 0xab, 0x31, 0x85, 0x27, 0x39, + 0xc8, 0xa9, 0x09, 0x05, 0x70, 0x06, 0x29, 0xf3, 0x1b, 0x28, 0x26, 0xae, + 0xca, 0x69, 0x0f, 0xb6, 0x31, 0x52, 0xb0, 0x18, 0x00, 0xd4, 0xa3, 0xa6, + 0x29, 0x36, 0xf3, 0xc8, 0xc5, 0x2d, 0x41, 0xc6, 0xc8, 0x87, 0x6c, 0x60, + 0xe4, 0xad, 0x3f, 0x0b, 0xb7, 0xe5, 0x38, 0xcf, 0x6a, 0x24, 0xc8, 0x39, + 0x0a, 0x31, 0x4d, 0xe7, 0x9e, 0x31, 0x8a, 0x37, 0x33, 0x6c, 0x8c, 0x44, + 0x5a, 0x4e, 0xbc, 0xfa, 0xd3, 0x9a, 0x3c, 0xe5, 0x76, 0x8c, 0x8e, 0xf4, + 0xf8, 0xf0, 0xd8, 0xae, 0x87, 0x45, 0xd0, 0xa4, 0xd4, 0x7e, 0x78, 0xe3, + 0x67, 0x55, 0x3f, 0x31, 0x1d, 0x85, 0x45, 0x4a, 0xaa, 0x0a, 0xec, 0xa8, + 0xc1, 0xc9, 0xe8, 0x60, 0x41, 0xa4, 0x4d, 0x74, 0x77, 0x22, 0x12, 0x07, + 0x53, 0xda, 0xb5, 0x6e, 0xfc, 0x13, 0x73, 0x6d, 0x61, 0x15, 0xd1, 0x9e, + 0x36, 0x12, 0x63, 0x2b, 0xb8, 0x06, 0x5f, 0x5c, 0x8a, 0xf4, 0x4b, 0x2f, + 0x0d, 0xf9, 0x16, 0xa1, 0x64, 0x29, 0x12, 0x39, 0xce, 0xfc, 0x67, 0xa5, + 0x63, 0xeb, 0x91, 0xc7, 0x03, 0x4c, 0xb1, 0xaf, 0x9b, 0xb4, 0x61, 0xbe, + 0x6c, 0xe4, 0xfa, 0x8a, 0xe0, 0x58, 0xf9, 0x4e, 0x6a, 0x30, 0x66, 0xce, + 0x83, 0x8a, 0xbb, 0x3c, 0xd6, 0xe3, 0x45, 0x9e, 0x10, 0x85, 0xb0, 0xca, + 0xe0, 0xed, 0xe7, 0x35, 0xa7, 0xe1, 0xfd, 0x3a, 0x4b, 0x62, 0xcf, 0x6e, + 0xe0, 0x4c, 0x78, 0x00, 0xae, 0x77, 0x7b, 0x03, 0xda, 0xb6, 0xa0, 0xb5, + 0x5b, 0x9b, 0x86, 0x31, 0xc1, 0xe4, 0x21, 0xe0, 0xef, 0x3c, 0x56, 0xa3, + 0x5a, 0x59, 0x5b, 0x68, 0xad, 0x22, 0x1f, 0xf4, 0x94, 0x25, 0x94, 0x11, + 0xe9, 0xfc, 0xeb, 0xb6, 0x58, 0x96, 0xd7, 0x29, 0x1e, 0xcb, 0x5d, 0xcb, + 0x9a, 0x75, 0xb6, 0xa5, 0x71, 0x6a, 0xf6, 0x46, 0x71, 0xe4, 0xdc, 0xb6, + 0xd2, 0x01, 0xe5, 0x08, 0xe7, 0x19, 0xac, 0x55, 0x8d, 0x86, 0xb5, 0x1d, + 0xa4, 0x16, 0xbe, 0x4c, 0xf0, 0x31, 0xde, 0x65, 0x3c, 0x6d, 0x1d, 0xd7, + 0x3d, 0xeb, 0xa9, 0xf0, 0xbc, 0x73, 0xeb, 0x1a, 0x7a, 0x4d, 0x22, 0x08, + 0x90, 0x11, 0xc9, 0x38, 0xda, 0x47, 0xa5, 0x6c, 0x6b, 0xba, 0x7c, 0xe9, + 0xac, 0xd8, 0xea, 0x8a, 0xc9, 0xf6, 0x48, 0xc8, 0x8c, 0xa6, 0xde, 0x57, + 0x77, 0x19, 0x27, 0xeb, 0x8a, 0xe1, 0xf6, 0xe9, 0x49, 0xc5, 0xbd, 0xbf, + 0x32, 0xfd, 0x8c, 0x9e, 0xc6, 0x07, 0x86, 0x7c, 0x52, 0x34, 0xef, 0x10, + 0x5c, 0x69, 0xc9, 0x6c, 0xb2, 0x42, 0x48, 0x5f, 0x9f, 0x01, 0xc6, 0x7a, + 0xfd, 0x6b, 0xba, 0xbc, 0xbf, 0xb0, 0xd1, 0xb4, 0x6b, 0xab, 0xa3, 0x3f, + 0x9b, 0x04, 0x60, 0xe6, 0x36, 0x60, 0x72, 0xde, 0x82, 0xbc, 0xde, 0x3d, + 0x2e, 0x66, 0xd4, 0x65, 0xd5, 0xe3, 0xba, 0x44, 0x95, 0x25, 0x65, 0x24, + 0x8e, 0x06, 0x0e, 0x38, 0xfc, 0x2a, 0x5b, 0xc8, 0xe0, 0x6b, 0x4b, 0xcf, + 0x31, 0x84, 0x9b, 0x81, 0xfb, 0xdc, 0xe3, 0x9e, 0x31, 0x59, 0x4e, 0x51, + 0x94, 0x93, 0x5f, 0x33, 0x58, 0xc6, 0x4a, 0x3b, 0x6a, 0x72, 0x0f, 0xad, + 0x59, 0xde, 0x68, 0xd7, 0x16, 0xb7, 0x11, 0x10, 0xb3, 0xce, 0xf2, 0x28, + 0xee, 0x87, 0xb7, 0xf8, 0x54, 0xb6, 0x1a, 0x24, 0x57, 0xfa, 0x30, 0x32, + 0xde, 0x2a, 0x31, 0x52, 0x46, 0xef, 0xe1, 0x51, 0x54, 0xd2, 0x38, 0xd0, + 0x49, 0x03, 0xdb, 0xc4, 0x4b, 0x0e, 0x18, 0xf5, 0x1e, 0xe2, 0xad, 0x42, + 0x59, 0x60, 0x8e, 0x35, 0x23, 0xe5, 0xc8, 0xe3, 0xb8, 0x35, 0xe9, 0x4a, + 0xa5, 0x97, 0xbb, 0xa1, 0x31, 0x5c, 0xdf, 0x17, 0x63, 0x3a, 0x69, 0x5a, + 0xde, 0x33, 0x6d, 0x1c, 0xa6, 0x68, 0x86, 0x10, 0x06, 0x5e, 0xbe, 0xe0, + 0x1e, 0x94, 0xd5, 0xf0, 0xfc, 0x37, 0x97, 0x00, 0x5e, 0x5d, 0x25, 0x98, + 0x48, 0xf7, 0x2b, 0xed, 0xce, 0x7e, 0xb8, 0xa7, 0xdc, 0x42, 0xfe, 0x6b, + 0x98, 0xd0, 0x93, 0x9e, 0xa0, 0x77, 0xab, 0xb6, 0xc5, 0x63, 0xb8, 0x86, + 0xd7, 0x57, 0x47, 0x55, 0x76, 0x01, 0xcb, 0x0e, 0x40, 0xa6, 0xea, 0x49, + 0x2b, 0xc1, 0xeb, 0xf8, 0x98, 0x34, 0xdb, 0xb3, 0x39, 0x79, 0x96, 0xe2, + 0x6f, 0xdc, 0x23, 0xef, 0x55, 0x38, 0x52, 0x78, 0xe2, 0xbd, 0x13, 0xe1, + 0xa3, 0xcd, 0xa6, 0x1f, 0x3a, 0x49, 0xed, 0xe7, 0xb7, 0x99, 0xfc, 0xbb, + 0x88, 0x65, 0x24, 0x98, 0xd7, 0xd6, 0xb0, 0x06, 0x97, 0x04, 0xba, 0xa3, + 0xc1, 0x09, 0x26, 0x35, 0x62, 0x51, 0x90, 0xf5, 0x5f, 0x5c, 0x56, 0x8e, + 0x9b, 0x36, 0x99, 0xa6, 0x5d, 0x5c, 0xc5, 0xba, 0x59, 0x10, 0x00, 0x1b, + 0x63, 0x70, 0x4d, 0x3a, 0xd5, 0x94, 0xe9, 0xf2, 0x24, 0x14, 0xe9, 0x49, + 0x4a, 0xec, 0xee, 0x75, 0x5d, 0x2e, 0xd2, 0xdf, 0x55, 0x79, 0x74, 0xbb, + 0xa8, 0xa2, 0x9a, 0xe5, 0x44, 0xaa, 0x89, 0xd0, 0xfb, 0x13, 0xda, 0xbc, + 0xef, 0x50, 0xf0, 0xc6, 0xa1, 0xae, 0xeb, 0x77, 0x93, 0x4f, 0x3c, 0x51, + 0x4e, 0x0e, 0xe7, 0x0a, 0xd9, 0x07, 0xe9, 0xeb, 0x5d, 0x8d, 0xbe, 0x90, + 0xda, 0xc5, 0x87, 0xf6, 0x8d, 0xb4, 0x4d, 0xb5, 0x0e, 0xd9, 0x04, 0x7c, + 0x30, 0xc7, 0x43, 0xee, 0x29, 0x2d, 0x2f, 0x5b, 0x50, 0xff, 0x00, 0x46, + 0xb8, 0x80, 0x31, 0x8d, 0x42, 0x8f, 0x28, 0xe1, 0x9b, 0x07, 0xbf, 0xae, + 0x6b, 0x8e, 0x95, 0x79, 0xd3, 0x6f, 0x94, 0xda, 0x70, 0x8b, 0xd2, 0xc6, + 0x5d, 0xf6, 0x94, 0xda, 0x5a, 0xda, 0xdb, 0xcb, 0xf6, 0x7b, 0x6b, 0x57, + 0x88, 0x6e, 0x9b, 0xcb, 0x2c, 0x09, 0xf5, 0xcf, 0xad, 0x5e, 0xd0, 0xee, + 0x66, 0x36, 0xe9, 0x65, 0x08, 0x8d, 0x16, 0x59, 0x36, 0x4b, 0x75, 0xe5, + 0x02, 0x19, 0x4f, 0xf8, 0xd6, 0xde, 0xaf, 0x22, 0x6b, 0x1a, 0x42, 0x69, + 0x9e, 0x43, 0x44, 0x91, 0xf2, 0x8d, 0x20, 0xc9, 0x5c, 0x76, 0xfe, 0x95, + 0x91, 0x62, 0xa2, 0xc7, 0x50, 0x8e, 0xcd, 0x0a, 0x0b, 0x59, 0x39, 0x74, + 0x0e, 0x3a, 0x8e, 0xf9, 0xed, 0x59, 0xaa, 0xee, 0x71, 0xb3, 0xdc, 0xae, + 0x4b, 0x3d, 0x4b, 0x6f, 0xa5, 0xe9, 0x2b, 0xaa, 0x49, 0xf6, 0x9e, 0x2d, + 0x91, 0x81, 0x32, 0xa6, 0x77, 0x73, 0xfc, 0x20, 0x74, 0xae, 0x4e, 0xf3, + 0x4b, 0x86, 0xeb, 0x5b, 0xbc, 0xb5, 0xb1, 0x63, 0xe5, 0x2b, 0x12, 0x85, + 0xd8, 0x29, 0x23, 0xb1, 0x35, 0xd3, 0x5f, 0xeb, 0xa8, 0xd7, 0xdf, 0x61, + 0x8e, 0x13, 0x0b, 0xc8, 0xca, 0x0b, 0xf7, 0x3e, 0xbc, 0xd7, 0x21, 0xac, + 0x48, 0xb6, 0xfa, 0x9c, 0xdf, 0x66, 0xe1, 0xb2, 0x55, 0x88, 0x39, 0xc7, + 0xe3, 0x5b, 0x51, 0x72, 0x32, 0x92, 0x5b, 0x99, 0xfa, 0x85, 0x85, 0xe6, + 0x96, 0x64, 0xb7, 0x96, 0x30, 0xc2, 0x32, 0x32, 0xe9, 0xf3, 0x0f, 0xce, + 0xb2, 0xd1, 0xdf, 0xed, 0x2a, 0xc5, 0x80, 0xc7, 0xb6, 0x7f, 0x4a, 0xdd, + 0x83, 0x55, 0xb9, 0x6b, 0x59, 0xac, 0x37, 0x9f, 0x2e, 0x60, 0x37, 0x6e, + 0x19, 0xe9, 0x54, 0x5e, 0xdc, 0x47, 0x29, 0xdd, 0xb7, 0x03, 0x8c, 0x8a, + 0xea, 0x84, 0xda, 0xd2, 0x46, 0x2d, 0x2d, 0xd0, 0x09, 0xda, 0x59, 0x0a, + 0xa9, 0xfd, 0xd8, 0x3c, 0x0c, 0xe0, 0x7e, 0x55, 0x22, 0x2e, 0xc6, 0x66, + 0xc2, 0x9e, 0xdd, 0x6a, 0xa5, 0xc4, 0x66, 0x34, 0xdc, 0x09, 0x51, 0x9f, + 0x4a, 0x65, 0xbc, 0xca, 0xce, 0xca, 0xde, 0xbc, 0x1a, 0xa5, 0x1b, 0xad, + 0x09, 0xb3, 0x66, 0xac, 0x97, 0x51, 0x43, 0xb5, 0x53, 0x93, 0xd4, 0x91, + 0xeb, 0xde, 0xa9, 0xb9, 0xcd, 0xda, 0xe3, 0x9c, 0x9e, 0x99, 0xa9, 0x95, + 0x56, 0x68, 0xca, 0xb9, 0x55, 0xc1, 0xcf, 0x1d, 0x45, 0x53, 0x3b, 0xa1, + 0xbb, 0xe7, 0x91, 0xea, 0x6a, 0xd5, 0x9b, 0xd0, 0x0b, 0xf2, 0x49, 0x89, + 0xcc, 0x63, 0x38, 0xea, 0x31, 0xda, 0x9e, 0xb7, 0x3b, 0x08, 0x50, 0x4e, + 0x7a, 0x91, 0x9a, 0x87, 0x70, 0x79, 0x40, 0x5c, 0x6d, 0x3d, 0xdb, 0xb5, + 0x38, 0xda, 0xe1, 0x9d, 0xc1, 0x07, 0xbf, 0x14, 0xe5, 0xa6, 0xc3, 0x56, + 0x34, 0xec, 0xb5, 0x8b, 0x8b, 0x37, 0x0f, 0x13, 0xf2, 0x46, 0x2a, 0x55, + 0xd6, 0xef, 0xa3, 0x53, 0xe5, 0x5c, 0xcb, 0x19, 0x63, 0xb8, 0xed, 0x72, + 0x39, 0xac, 0x62, 0xac, 0x00, 0x0b, 0xf9, 0xd3, 0x94, 0x30, 0x19, 0x63, + 0xf4, 0x35, 0x9b, 0x8a, 0x65, 0xa9, 0x34, 0x5e, 0x93, 0x53, 0xb9, 0xb9, + 0x7c, 0xcf, 0x2b, 0xc8, 0x47, 0xf7, 0xdb, 0x34, 0xc5, 0x94, 0xb7, 0xdd, + 0xc2, 0x9a, 0xa0, 0xbb, 0xd8, 0xe7, 0x76, 0xec, 0xfa, 0x8e, 0x95, 0x34, + 0x5b, 0x95, 0x80, 0x24, 0x52, 0x92, 0xec, 0x37, 0x76, 0xcb, 0x42, 0x42, + 0x0a, 0xa3, 0xbf, 0x3e, 0xd4, 0xab, 0x09, 0x79, 0x3f, 0x76, 0x77, 0x64, + 0xf4, 0x1d, 0x6a, 0x19, 0x63, 0x56, 0x00, 0x82, 0x79, 0xae, 0xf3, 0xe1, + 0xae, 0x95, 0x67, 0x33, 0x4f, 0x77, 0x2b, 0x2c, 0x97, 0x11, 0x8c, 0x79, + 0x72, 0xc4, 0x70, 0x07, 0xa8, 0x6e, 0x80, 0xd3, 0x57, 0x4a, 0xf7, 0x2a, + 0x1a, 0x9c, 0x89, 0x8c, 0x46, 0xb9, 0x91, 0x19, 0x50, 0x7b, 0x71, 0x55, + 0x6e, 0x16, 0x37, 0x3b, 0x91, 0x73, 0xed, 0x9a, 0xe8, 0xb5, 0x78, 0x50, + 0x6b, 0x77, 0x32, 0xc9, 0x04, 0x8b, 0x1b, 0x31, 0x6f, 0x29, 0xcf, 0x38, + 0xf5, 0xe2, 0xa8, 0x4d, 0x04, 0x06, 0x0f, 0x36, 0x34, 0x02, 0x30, 0x79, + 0x39, 0xe4, 0x7e, 0x15, 0x72, 0xba, 0x57, 0x6f, 0x51, 0x39, 0x2d, 0x8c, + 0x23, 0x0b, 0x64, 0x67, 0x81, 0xed, 0x5e, 0x8d, 0xe0, 0xff, 0x00, 0x11, + 0x69, 0xda, 0x3e, 0x98, 0xf1, 0xa8, 0x6f, 0xb5, 0x49, 0xf7, 0x99, 0xb1, + 0x83, 0xe9, 0x5c, 0x77, 0xd8, 0xe1, 0x38, 0x78, 0xe6, 0x67, 0x42, 0x79, + 0xf9, 0x31, 0x8a, 0xec, 0x7c, 0x23, 0xa1, 0xdb, 0xe9, 0xf3, 0x2e, 0xab, + 0xa9, 0x5b, 0x47, 0x2e, 0x9d, 0x2a, 0x15, 0x46, 0x99, 0x03, 0x00, 0x73, + 0xc1, 0xdb, 0xcf, 0xd2, 0xb3, 0x95, 0xa7, 0x1e, 0x59, 0x68, 0x28, 0x5d, + 0x4a, 0xe8, 0x7f, 0x88, 0x75, 0xa8, 0xbc, 0x45, 0x15, 0xbd, 0x82, 0x40, + 0xcd, 0x7d, 0x1c, 0xdb, 0x23, 0x65, 0x23, 0x6b, 0x83, 0xc7, 0xf8, 0x56, + 0xe4, 0x37, 0xc9, 0xe0, 0xcd, 0x0a, 0x3f, 0xb4, 0xe9, 0x12, 0xc7, 0x37, + 0xdd, 0x0f, 0xf2, 0x90, 0xe4, 0xf3, 0x82, 0xc0, 0xd4, 0x32, 0xe8, 0x1a, + 0x62, 0xde, 0xda, 0x6a, 0x5a, 0x3c, 0x32, 0x6e, 0x52, 0xd3, 0x05, 0x75, + 0x6d, 0x87, 0x04, 0x72, 0x3d, 0x31, 0x55, 0xfc, 0x41, 0xae, 0xcf, 0xac, + 0x69, 0x4f, 0x08, 0xb1, 0xcc, 0x60, 0xfc, 0xb3, 0x11, 0x90, 0x24, 0x1d, + 0x71, 0xfa, 0xd4, 0xce, 0xa4, 0x56, 0x86, 0xda, 0xa7, 0x76, 0x51, 0xbf, + 0xf1, 0xe5, 0xa4, 0xea, 0xad, 0x79, 0xa6, 0x34, 0xee, 0xc0, 0x11, 0x0b, + 0xbe, 0x62, 0x07, 0xd8, 0x7d, 0x3b, 0xe2, 0xa6, 0xb4, 0xf1, 0x9d, 0xc5, + 0x95, 0xbe, 0xc8, 0x74, 0xfb, 0x78, 0x2c, 0xae, 0x18, 0x08, 0xa0, 0x59, + 0x37, 0x34, 0x78, 0xfb, 0xc3, 0x1e, 0xf5, 0xc3, 0xb4, 0x17, 0x53, 0x5b, + 0xb5, 0xc4, 0x91, 0xb1, 0x85, 0x38, 0x32, 0x01, 0xc0, 0x35, 0x47, 0x78, + 0x76, 0x4d, 0xce, 0xc1, 0x53, 0x9c, 0xaf, 0x06, 0x9c, 0x27, 0x66, 0x27, + 0x26, 0xcd, 0xdf, 0x17, 0x5d, 0x69, 0xfa, 0xbd, 0xe4, 0x73, 0xd9, 0x66, + 0x36, 0x0b, 0x89, 0x09, 0x3d, 0x7d, 0x07, 0xe1, 0x5c, 0xda, 0xa2, 0x42, + 0xa7, 0x04, 0xb9, 0x3d, 0xc9, 0xaa, 0x72, 0xc7, 0x33, 0x07, 0x92, 0x3d, + 0xcd, 0x18, 0x6e, 0xa6, 0x90, 0xf9, 0xcc, 0xf9, 0xce, 0x10, 0x0f, 0x5e, + 0x95, 0xa2, 0x8c, 0xbb, 0x98, 0xce, 0xf2, 0x2f, 0xfd, 0xb0, 0xf9, 0x2c, + 0x9b, 0x79, 0xe8, 0x0d, 0x56, 0x59, 0x96, 0x25, 0x39, 0xea, 0x7d, 0x6a, + 0x04, 0x2a, 0xbc, 0x31, 0x38, 0x1e, 0x95, 0x1d, 0xc4, 0xcd, 0xb8, 0x6d, + 0xe4, 0x1f, 0x5a, 0x6e, 0x2e, 0x5b, 0x84, 0x6c, 0xb4, 0x2d, 0xbd, 0xc6, + 0xe5, 0x23, 0xa3, 0x76, 0x22, 0xab, 0x4d, 0x7a, 0x62, 0x01, 0x89, 0x6d, + 0xc3, 0xa0, 0xc7, 0x5a, 0x4c, 0xef, 0x40, 0xe5, 0x4a, 0xb7, 0xa5, 0x35, + 0xc4, 0xce, 0x4b, 0x44, 0xbb, 0x80, 0x3c, 0x8f, 0x6a, 0x84, 0x95, 0xf5, + 0x2d, 0x25, 0x62, 0xfa, 0xea, 0xd7, 0xb7, 0xf6, 0xeb, 0x68, 0xec, 0xc2, + 0x00, 0x77, 0x05, 0x3c, 0x05, 0x3f, 0x4a, 0xdc, 0xd2, 0x6f, 0xf4, 0xf4, + 0xf2, 0xed, 0xaf, 0x2d, 0x49, 0x42, 0xcb, 0xbc, 0x83, 0x82, 0xd8, 0x3d, + 0xab, 0x97, 0x13, 0x48, 0xc7, 0x28, 0xac, 0xbd, 0xba, 0x55, 0xeb, 0x30, + 0xf2, 0x66, 0x50, 0xab, 0x29, 0x1c, 0xe1, 0x8e, 0x00, 0xa8, 0x69, 0x47, + 0x54, 0xac, 0x85, 0xad, 0xcf, 0x58, 0xd6, 0xf5, 0x6d, 0x1f, 0x58, 0xb6, + 0xb0, 0x92, 0x1b, 0x55, 0x96, 0xf4, 0xb0, 0x45, 0x46, 0x5c, 0x04, 0x50, + 0x7d, 0x7b, 0xd4, 0x5a, 0xd7, 0x83, 0xe7, 0x7b, 0xc4, 0xd4, 0x2d, 0x2e, + 0x10, 0x28, 0xc2, 0xc8, 0xb1, 0xae, 0xf0, 0xb9, 0xea, 0x76, 0xff, 0x00, + 0x85, 0x72, 0x6d, 0x65, 0x77, 0x26, 0x86, 0xba, 0xad, 0x95, 0xc1, 0x73, + 0x18, 0x01, 0xd7, 0x1c, 0xa7, 0xad, 0x5b, 0xf0, 0xf7, 0x8e, 0xf5, 0x58, + 0x2f, 0x2d, 0xac, 0xa5, 0x95, 0x56, 0x09, 0x27, 0x1e, 0x64, 0x87, 0x0b, + 0xc7, 0x4e, 0x49, 0x07, 0x02, 0xb0, 0x69, 0xf3, 0x73, 0x23, 0x6b, 0xbe, + 0x5b, 0x33, 0x7e, 0xc3, 0x4f, 0xb7, 0xbd, 0x95, 0x61, 0x8d, 0xd0, 0x4d, + 0x0d, 0xc7, 0xfc, 0xbc, 0x0c, 0x97, 0xc0, 0xc7, 0xe5, 0x59, 0x7e, 0x32, + 0xf0, 0xe3, 0x46, 0x1e, 0xe8, 0xc4, 0xaa, 0x4a, 0xf3, 0xb7, 0x81, 0xc7, + 0xa5, 0x67, 0xbe, 0xaf, 0x7f, 0x6b, 0xe3, 0x51, 0x79, 0x04, 0x8d, 0x3c, + 0x42, 0x56, 0x05, 0x50, 0x06, 0x1b, 0x4b, 0x1e, 0x98, 0xc6, 0x6b, 0xaa, + 0x9a, 0xfa, 0xe7, 0xc4, 0xf6, 0x2d, 0x1c, 0x45, 0x18, 0xc7, 0x21, 0xea, + 0x30, 0x70, 0x7b, 0x11, 0x5c, 0xd5, 0x5c, 0xa9, 0xb5, 0x26, 0xf4, 0x2a, + 0x29, 0x35, 0x63, 0xc9, 0x45, 0x9b, 0xab, 0x6e, 0x2c, 0x36, 0xe7, 0xd6, + 0xa3, 0x92, 0x51, 0xb8, 0x34, 0x60, 0x10, 0xa7, 0x9c, 0x57, 0x4b, 0xaf, + 0x68, 0xf7, 0x16, 0xeb, 0x26, 0xcb, 0x7f, 0x27, 0x03, 0x21, 0x4f, 0x52, + 0x3d, 0xab, 0x93, 0x92, 0xd6, 0x68, 0xe2, 0x67, 0xcf, 0x0d, 0xc7, 0x07, + 0xa5, 0x76, 0xd2, 0x9a, 0x9e, 0xad, 0x98, 0xce, 0x2d, 0x17, 0x24, 0x8e, + 0x3b, 0xb5, 0x59, 0x01, 0x00, 0x77, 0xc7, 0x5a, 0xad, 0x38, 0x05, 0x8b, + 0xc7, 0xfb, 0xa1, 0x1f, 0x19, 0xfe, 0xf5, 0x45, 0x6c, 0xd3, 0xa4, 0x7e, + 0x52, 0xa8, 0x0a, 0xdd, 0x58, 0xd3, 0xe7, 0x98, 0xc6, 0xdb, 0x30, 0x85, + 0x31, 0xd3, 0xad, 0x6a, 0x93, 0x4e, 0xc8, 0x81, 0x7e, 0xd7, 0x3b, 0x0f, + 0x2c, 0x95, 0x90, 0x01, 0xe9, 0x4e, 0x0d, 0x90, 0x37, 0xa8, 0x0b, 0xda, + 0x99, 0x14, 0x84, 0x7c, 0xde, 0x5e, 0x7e, 0x82, 0xa4, 0x59, 0x8b, 0xfc, + 0xa5, 0x41, 0x34, 0x6d, 0xb1, 0x2f, 0xcc, 0x8a, 0x75, 0x25, 0xf8, 0x5c, + 0x7b, 0x7a, 0xd4, 0x48, 0x36, 0x92, 0x42, 0xf3, 0x8a, 0xb3, 0x26, 0x5b, + 0x9e, 0x46, 0x3d, 0x2a, 0x99, 0x94, 0x03, 0xd1, 0xbf, 0x01, 0x55, 0x1d, + 0x55, 0x85, 0x71, 0x15, 0x4a, 0x8c, 0x06, 0xa9, 0x55, 0x8a, 0x82, 0xbc, + 0x95, 0xf7, 0xa8, 0xc0, 0x62, 0x32, 0xab, 0x81, 0xeb, 0x4d, 0x56, 0xc2, + 0xb1, 0x2d, 0xce, 0x71, 0x54, 0xd5, 0xc4, 0xc9, 0x27, 0x55, 0x51, 0xe6, + 0x2a, 0x80, 0x08, 0xe4, 0x53, 0xed, 0x65, 0xb7, 0x45, 0xc4, 0x80, 0xee, + 0x35, 0x5d, 0x89, 0x20, 0x77, 0xa6, 0xc6, 0xa4, 0xb7, 0x3f, 0x85, 0x1c, + 0xb7, 0x8d, 0x98, 0xb7, 0xdc, 0xbc, 0xe5, 0x1c, 0x10, 0x01, 0x00, 0x74, + 0xe7, 0xad, 0x11, 0xc5, 0x0a, 0x82, 0xce, 0xff, 0x00, 0x99, 0xe9, 0x4c, + 0xca, 0x67, 0x69, 0xe5, 0xbd, 0x05, 0x45, 0x34, 0x7e, 0x62, 0x63, 0x6d, + 0x42, 0x5d, 0x2e, 0x3b, 0xd8, 0xb2, 0xf7, 0x11, 0x34, 0x8a, 0x53, 0x69, + 0x40, 0x31, 0x95, 0xa8, 0xd6, 0xe0, 0x99, 0xd9, 0x54, 0x12, 0xb8, 0xed, + 0xde, 0xaa, 0x24, 0x21, 0x72, 0x15, 0xfb, 0x72, 0x29, 0xf6, 0x92, 0xa4, + 0x72, 0x0d, 0xa4, 0x79, 0x87, 0x8e, 0x6b, 0xa1, 0xd3, 0xa2, 0xa1, 0xee, + 0xdd, 0xb1, 0x27, 0x26, 0xf5, 0xd0, 0x92, 0x79, 0x64, 0xdd, 0xb3, 0x95, + 0x19, 0xc6, 0x41, 0xab, 0x51, 0x39, 0x2d, 0x0c, 0x4e, 0x91, 0xb4, 0x48, + 0x7e, 0xf1, 0x1f, 0xce, 0xaa, 0xcc, 0x92, 0x6f, 0xf3, 0x48, 0x19, 0x6e, + 0xd4, 0xab, 0x74, 0xf9, 0x20, 0x20, 0x00, 0x77, 0xf5, 0xac, 0xa4, 0xb9, + 0xa2, 0x92, 0xb6, 0x85, 0x6c, 0xcd, 0x3f, 0x13, 0x5f, 0x5b, 0xc9, 0x75, + 0x0c, 0xb0, 0x7d, 0x91, 0x99, 0x50, 0x07, 0x08, 0x9d, 0x4e, 0x31, 0x5c, + 0xcd, 0xc5, 0xc0, 0x9d, 0xf2, 0x55, 0x14, 0x77, 0x0a, 0x30, 0x2a, 0xf3, + 0x22, 0x4b, 0x92, 0x54, 0x03, 0xeb, 0x55, 0xa4, 0x81, 0x3a, 0x82, 0x07, + 0xad, 0x55, 0x15, 0x18, 0x24, 0x86, 0xda, 0x64, 0x6e, 0x91, 0xb4, 0x40, + 0x00, 0x72, 0x39, 0x5a, 0xa8, 0x61, 0x2b, 0x97, 0x23, 0x9c, 0xf1, 0xef, + 0x5d, 0xbe, 0x9f, 0x63, 0xe1, 0x75, 0xd3, 0xfe, 0xd1, 0x79, 0x7b, 0x33, + 0x48, 0xa3, 0x2d, 0x0a, 0x8e, 0x6b, 0x13, 0x5a, 0x9b, 0x4a, 0x7b, 0x90, + 0xba, 0x5c, 0x52, 0x24, 0x38, 0xe5, 0xa5, 0x3c, 0x9a, 0x74, 0xeb, 0xf3, + 0x49, 0xc5, 0x26, 0x26, 0x9a, 0x46, 0x3c, 0x6c, 0x51, 0x4c, 0x85, 0x4e, + 0x47, 0x53, 0x56, 0x55, 0xd0, 0x8e, 0x1b, 0xef, 0x75, 0x26, 0x98, 0x02, + 0x06, 0x05, 0x79, 0x5c, 0xe4, 0xd1, 0x85, 0x60, 0xc0, 0x1e, 0x33, 0x5a, + 0xbd, 0x49, 0x49, 0x0c, 0x92, 0xdd, 0x77, 0x8d, 0xaa, 0xb8, 0xc7, 0x25, + 0x4d, 0x46, 0x89, 0xe5, 0xbe, 0x06, 0x73, 0xeb, 0x8a, 0xb1, 0x1a, 0x85, + 0xc0, 0xa5, 0x70, 0x0a, 0xe3, 0x24, 0x1f, 0x51, 0x47, 0x33, 0xd8, 0xaf, + 0x21, 0xcd, 0x1a, 0x4a, 0x8b, 0xb8, 0x94, 0x73, 0xd0, 0xd5, 0xcb, 0x3b, + 0xaf, 0xec, 0xf6, 0x66, 0x67, 0x64, 0x56, 0x42, 0x8c, 0x57, 0xde, 0xb3, + 0x53, 0x89, 0x37, 0x33, 0x64, 0x01, 0x8e, 0x69, 0x0b, 0x23, 0xe5, 0x39, + 0x27, 0xd4, 0xd4, 0xb8, 0x5f, 0x47, 0xb0, 0xec, 0xee, 0x24, 0xd3, 0xbd, + 0xc4, 0xbc, 0xe5, 0x90, 0x1c, 0x82, 0x4f, 0x5a, 0xb5, 0x13, 0xc7, 0x1b, + 0x29, 0xd8, 0x08, 0x1c, 0xe3, 0x35, 0x50, 0x26, 0xd1, 0x8c, 0xf0, 0x69, + 0xde, 0x5e, 0x00, 0xc3, 0xe0, 0x8f, 0x5e, 0xf5, 0x6d, 0x27, 0xa0, 0x9a, + 0xb2, 0x2f, 0xbc, 0xed, 0x20, 0x65, 0x52, 0x42, 0x3f, 0x3b, 0x73, 0xc5, + 0x46, 0x0e, 0xd2, 0xbc, 0xd4, 0x51, 0xb7, 0xc8, 0x07, 0x71, 0xc8, 0xa9, + 0x37, 0xee, 0x1c, 0x73, 0x8a, 0xca, 0xd6, 0x1b, 0x25, 0x66, 0xe0, 0x80, + 0x7b, 0x55, 0x2f, 0xde, 0x6e, 0xce, 0x7e, 0x5c, 0xd4, 0xc6, 0x56, 0x55, + 0x09, 0xc5, 0x28, 0xc1, 0x5e, 0x4f, 0x5e, 0xd4, 0xd6, 0x84, 0xd9, 0x8c, + 0x68, 0x89, 0xf9, 0xd0, 0x9c, 0x7f, 0x3a, 0x40, 0x8c, 0x32, 0x7a, 0x55, + 0xb8, 0xfe, 0x65, 0xda, 0x71, 0x85, 0xec, 0x29, 0x62, 0xb6, 0x96, 0xe9, + 0xb6, 0x47, 0xb7, 0x9e, 0x00, 0xa4, 0xe7, 0x6d, 0xc5, 0x67, 0x6d, 0x4a, + 0xa1, 0xc9, 0xfb, 0xc0, 0x1c, 0x77, 0xab, 0x7a, 0x1e, 0x99, 0x36, 0xb3, + 0xaf, 0xda, 0xda, 0xc5, 0x0b, 0xba, 0xbc, 0x81, 0x4a, 0xa9, 0x00, 0xe3, + 0xbd, 0x6f, 0x69, 0x5e, 0x1c, 0x8a, 0xee, 0xcc, 0xab, 0x79, 0x8d, 0x72, + 0xe7, 0x00, 0xa8, 0xfb, 0x9f, 0x87, 0x7a, 0xea, 0xbe, 0x1e, 0x68, 0xeb, + 0xa7, 0xea, 0x97, 0x72, 0x4a, 0x07, 0x9d, 0x1c, 0x81, 0x50, 0xb0, 0x1c, + 0x8c, 0xf1, 0x8f, 0x43, 0x5c, 0xb5, 0xb1, 0x90, 0x85, 0x39, 0x38, 0xee, + 0xb4, 0xff, 0x00, 0x82, 0x11, 0x57, 0x76, 0x3b, 0x6b, 0xcd, 0x02, 0xca, + 0x37, 0xb5, 0xd2, 0x20, 0x81, 0xa3, 0x57, 0x8f, 0x39, 0x50, 0x06, 0xe0, + 0xb8, 0xfd, 0x6b, 0x90, 0xd6, 0xbc, 0x27, 0x0e, 0x95, 0x77, 0x13, 0x5e, + 0x4d, 0x14, 0x91, 0xcc, 0xc5, 0x02, 0x86, 0xd8, 0x50, 0xf6, 0x26, 0xbb, + 0x5d, 0x7a, 0xdb, 0x52, 0x9a, 0x6b, 0x2b, 0xfb, 0x62, 0xe3, 0xc8, 0x9b, + 0x21, 0x00, 0xf9, 0x94, 0x74, 0x63, 0xc7, 0x51, 0x8a, 0x8b, 0x50, 0xb6, + 0x8a, 0x7d, 0x36, 0xe1, 0x2e, 0xae, 0x22, 0x9c, 0xa8, 0x66, 0x49, 0x24, + 0x5c, 0xed, 0x2d, 0x5e, 0x16, 0x1e, 0x7a, 0xa4, 0xa4, 0xf5, 0xdc, 0xe9, + 0xf6, 0x6e, 0x4e, 0xc8, 0xe3, 0x63, 0x4d, 0x27, 0x40, 0xb5, 0x11, 0x1b, + 0x47, 0x6b, 0x96, 0xf9, 0x84, 0xd1, 0xb6, 0xe0, 0x73, 0xd0, 0x7b, 0x8a, + 0xe3, 0xf5, 0x59, 0x00, 0x9d, 0xf1, 0x6e, 0x61, 0x94, 0x9f, 0x99, 0x31, + 0x5d, 0xb5, 0xfe, 0x9d, 0x23, 0x68, 0xfb, 0xe6, 0x2b, 0x0c, 0x5e, 0x4e, + 0x55, 0xe3, 0xf9, 0x83, 0xe0, 0x8f, 0x5e, 0x86, 0xb9, 0x44, 0xd3, 0x35, + 0x4b, 0xbb, 0x49, 0xb5, 0x2f, 0x25, 0xb3, 0x6f, 0x8c, 0xca, 0xe7, 0x00, + 0xa8, 0xed, 0x8a, 0xf4, 0x70, 0xf1, 0xb3, 0x6d, 0xbb, 0x8e, 0xa5, 0x19, + 0x2b, 0x68, 0x73, 0x72, 0x41, 0x30, 0x19, 0x68, 0xd8, 0x0c, 0x64, 0x8e, + 0x9c, 0x55, 0x2f, 0x35, 0xf0, 0x4c, 0x7d, 0x07, 0x40, 0x6b, 0xac, 0xd5, + 0x2c, 0x24, 0x9b, 0x49, 0x4d, 0x4a, 0xe2, 0xe2, 0x26, 0x59, 0x78, 0xc2, + 0xf0, 0xc3, 0x15, 0xca, 0xb3, 0x2a, 0xc7, 0x88, 0xd7, 0x81, 0x5e, 0x95, + 0x29, 0x29, 0x23, 0x1a, 0x94, 0x94, 0x12, 0xf3, 0x2a, 0x49, 0x79, 0x71, + 0x80, 0x3c, 0xbf, 0x98, 0xf6, 0xa9, 0x01, 0x96, 0x74, 0x26, 0x55, 0x2a, + 0x40, 0xe0, 0x62, 0xa7, 0xb5, 0x85, 0x58, 0x87, 0x72, 0x72, 0x3a, 0x1c, + 0xd4, 0xd3, 0xb0, 0x8d, 0x72, 0x72, 0x6b, 0x57, 0x24, 0x9d, 0x92, 0x32, + 0x76, 0x33, 0x2e, 0x61, 0x91, 0xb6, 0x15, 0x27, 0x77, 0x4c, 0x7a, 0x55, + 0xab, 0x30, 0x23, 0x05, 0x99, 0x89, 0xc0, 0xe5, 0x4d, 0x39, 0x31, 0x2c, + 0xaa, 0x73, 0xc8, 0xa5, 0x91, 0x12, 0x52, 0x53, 0x0e, 0x14, 0xff, 0x00, + 0x10, 0xa6, 0xe5, 0x75, 0xca, 0xc5, 0xd6, 0xe5, 0xab, 0x8f, 0xf8, 0xf7, + 0x19, 0x23, 0x69, 0x39, 0xc8, 0xa8, 0xad, 0x16, 0xe8, 0xde, 0xa1, 0xb5, + 0x2f, 0xf3, 0x10, 0x14, 0xf7, 0x26, 0xa9, 0x33, 0x48, 0x58, 0xc7, 0x1c, + 0x83, 0xf7, 0x67, 0x8d, 0xdd, 0xeb, 0x53, 0x4c, 0x9f, 0x37, 0x36, 0xe1, + 0xe4, 0xc0, 0xdc, 0x37, 0x30, 0x18, 0xc5, 0x4b, 0xbc, 0x20, 0xfa, 0x83, + 0x8e, 0xcc, 0xf7, 0x0f, 0x0a, 0xaf, 0xf6, 0x7e, 0x99, 0x1e, 0x0f, 0xda, + 0x25, 0x75, 0xdb, 0x3f, 0x9c, 0x79, 0x5f, 0xa0, 0xee, 0x2a, 0x3d, 0x43, + 0xc1, 0xb6, 0xd7, 0x3a, 0xfc, 0x53, 0x46, 0x5a, 0xd4, 0x60, 0xbf, 0x9b, + 0x09, 0xe5, 0x9b, 0x3e, 0x9d, 0xba, 0xd6, 0xaf, 0x84, 0xe0, 0x8a, 0x0d, + 0x10, 0x49, 0x1a, 0x89, 0x5b, 0x9f, 0x9d, 0xba, 0x9f, 0xad, 0x69, 0x49, + 0x15, 0xb4, 0xf3, 0x05, 0x90, 0x4b, 0x1b, 0xfb, 0x39, 0x1f, 0x8f, 0x15, + 0xf2, 0x71, 0xa9, 0x2f, 0x6c, 0xe4, 0x9f, 0x73, 0xb5, 0x25, 0x6d, 0x51, + 0xcc, 0xc5, 0xe1, 0xed, 0x43, 0x49, 0xbc, 0xf3, 0x74, 0x67, 0x92, 0x5b, + 0x80, 0xff, 0x00, 0xbe, 0x7b, 0xa7, 0xf9, 0x24, 0x07, 0xa9, 0x03, 0xd6, + 0xb4, 0x6c, 0x75, 0x1d, 0x36, 0xd2, 0xd0, 0x1b, 0xbb, 0xa8, 0xe4, 0xbb, + 0x69, 0x58, 0x48, 0xb1, 0x8f, 0x98, 0xb1, 0x3e, 0x95, 0xbd, 0x13, 0x46, + 0xd0, 0xb8, 0x84, 0xb3, 0x6c, 0x3b, 0x40, 0x90, 0x10, 0x78, 0xf7, 0x3d, + 0x45, 0x60, 0x6a, 0x56, 0x28, 0xb2, 0xb4, 0xc9, 0x66, 0xae, 0xbe, 0x5b, + 0x06, 0x29, 0xd8, 0x9e, 0x73, 0x4f, 0x9b, 0xda, 0x4b, 0x96, 0xa7, 0xde, + 0x67, 0x26, 0x8f, 0x1b, 0xf1, 0x84, 0x91, 0xb7, 0x88, 0xae, 0x4d, 0xb3, + 0xbf, 0x93, 0xbc, 0x95, 0x0d, 0xda, 0xb9, 0x49, 0xe4, 0x01, 0x88, 0x3d, + 0x4d, 0x74, 0x5a, 0xc4, 0xa9, 0x1d, 0xd4, 0x90, 0x05, 0xdc, 0xdb, 0xc8, + 0x24, 0xf5, 0x15, 0x85, 0x74, 0x14, 0xae, 0xd6, 0x03, 0x20, 0xf5, 0x1d, + 0xeb, 0xe9, 0xb0, 0xca, 0xd1, 0x49, 0x98, 0x49, 0xae, 0x6b, 0x30, 0x8a, + 0x4c, 0xc0, 0x4b, 0x8d, 0xbe, 0xd9, 0xa8, 0xdb, 0xb6, 0x39, 0x15, 0x18, + 0x07, 0x1d, 0x72, 0x29, 0xc8, 0x5b, 0x84, 0xdb, 0x9e, 0x6b, 0x7b, 0x5b, + 0x53, 0x26, 0x4f, 0x13, 0x90, 0xdc, 0x31, 0xe2, 0xa6, 0xdd, 0x86, 0xdc, + 0x4f, 0x07, 0xa9, 0xa5, 0xf2, 0x62, 0x09, 0x90, 0x4e, 0x7d, 0x3d, 0x2a, + 0x32, 0xac, 0xca, 0x40, 0x6c, 0x01, 0x59, 0xdd, 0x31, 0xaf, 0x32, 0x22, + 0xe9, 0x96, 0x50, 0xa0, 0x64, 0xf5, 0x3d, 0xe9, 0xce, 0x8e, 0x0f, 0xce, + 0xed, 0xc8, 0xc8, 0xa5, 0x84, 0x04, 0x62, 0xb8, 0xdd, 0xdf, 0x35, 0x3c, + 0xac, 0xbb, 0x41, 0x65, 0x62, 0x3d, 0xbb, 0x55, 0x37, 0xa9, 0xab, 0x93, + 0x4e, 0xc8, 0xa4, 0xcc, 0xca, 0xa3, 0x6e, 0xee, 0x47, 0x39, 0xa9, 0x11, + 0x43, 0xae, 0xdd, 0xd9, 0xda, 0x33, 0xcd, 0x48, 0xc7, 0x72, 0x29, 0x03, + 0x1c, 0xe0, 0x66, 0x84, 0xc0, 0xc8, 0xe3, 0x27, 0xd2, 0x86, 0xf4, 0x07, + 0x22, 0x48, 0xe6, 0x78, 0xc0, 0x53, 0x8a, 0x13, 0x07, 0x39, 0xe3, 0xde, + 0x9d, 0xc6, 0x7e, 0x65, 0xfa, 0x54, 0x90, 0x46, 0xc5, 0x8e, 0x46, 0x52, + 0xb3, 0x6d, 0x20, 0xeb, 0xa1, 0x2c, 0x4a, 0x98, 0x00, 0x53, 0x89, 0x28, + 0x71, 0xbb, 0x35, 0x13, 0xae, 0xd3, 0x94, 0xc8, 0x03, 0xd6, 0x90, 0xb8, + 0x27, 0x8e, 0xbe, 0xb5, 0x29, 0x5f, 0x53, 0x54, 0xc7, 0x49, 0x26, 0xd6, + 0xcf, 0x6a, 0x88, 0x5c, 0x89, 0x1b, 0xaf, 0x4a, 0x63, 0xb0, 0xc0, 0x56, + 0x23, 0x9e, 0xf9, 0xaa, 0xe5, 0x11, 0x64, 0xca, 0xa9, 0xc1, 0x3f, 0x95, + 0x68, 0xa2, 0xac, 0x67, 0x29, 0x36, 0x68, 0x21, 0x0c, 0x3d, 0x4d, 0x49, + 0x1e, 0xd2, 0x71, 0xde, 0xaa, 0xc4, 0xea, 0x01, 0xf5, 0xf6, 0xa9, 0x43, + 0xef, 0xc1, 0x07, 0x0d, 0xf5, 0xa8, 0x6a, 0xe4, 0x27, 0x62, 0xe0, 0xb4, + 0x5d, 0xa0, 0xaf, 0x5e, 0xf5, 0x62, 0xce, 0xf2, 0xea, 0xc6, 0x4c, 0xdb, + 0xca, 0xe9, 0xce, 0x71, 0x9e, 0x2a, 0x9a, 0x4f, 0x85, 0xe5, 0xf7, 0x11, + 0xd7, 0x02, 0x95, 0xa5, 0xdd, 0xca, 0x8c, 0x0f, 0x7a, 0xc1, 0xc5, 0xb5, + 0xa9, 0xa4, 0x67, 0x6d, 0x4e, 0xfa, 0x3d, 0x5a, 0x5d, 0x6a, 0x11, 0x66, + 0xfa, 0x96, 0xd7, 0x91, 0x40, 0x11, 0xc4, 0x99, 0xdc, 0x7d, 0x0f, 0xa1, + 0xac, 0x74, 0x9a, 0x0d, 0x3e, 0xff, 0x00, 0xca, 0xbf, 0x82, 0x73, 0x10, + 0xca, 0xbe, 0x1b, 0x2d, 0x9f, 0x5f, 0x6a, 0xc3, 0xb4, 0xbd, 0x36, 0x85, + 0x26, 0xb7, 0x19, 0x9f, 0x3f, 0x2b, 0x2b, 0x10, 0x73, 0x5d, 0xec, 0x97, + 0x50, 0x37, 0x85, 0xf7, 0xea, 0xba, 0x6a, 0x15, 0x52, 0x09, 0x64, 0x6d, + 0xad, 0x93, 0xdc, 0x9e, 0xb5, 0x8c, 0x70, 0xea, 0x3b, 0x6c, 0xce, 0xea, + 0x72, 0xf6, 0x91, 0xbf, 0x52, 0x8c, 0x5a, 0xc6, 0x95, 0x6a, 0xa0, 0x9b, + 0x6f, 0xb4, 0x40, 0x01, 0x0e, 0x0c, 0x9c, 0x63, 0x3c, 0x11, 0x59, 0x7e, + 0x2b, 0xd4, 0xb4, 0xb3, 0xa5, 0xac, 0xfa, 0x64, 0x92, 0x46, 0xcf, 0x90, + 0x91, 0xb7, 0x41, 0xea, 0x40, 0xae, 0x6a, 0xe2, 0xfe, 0xd2, 0x28, 0x8c, + 0x52, 0x2a, 0x49, 0xb4, 0x92, 0xbb, 0x3a, 0x9c, 0xfa, 0x9a, 0xa9, 0x3f, + 0x88, 0x9a, 0x5d, 0x0e, 0x4d, 0x36, 0x5b, 0x28, 0x9c, 0xe7, 0xf7, 0x33, + 0x7f, 0x14, 0x63, 0xd2, 0xb7, 0x8e, 0x16, 0x4e, 0x4a, 0x5a, 0xee, 0x43, + 0x9b, 0x7a, 0x34, 0x6e, 0xe8, 0x5f, 0x10, 0xaf, 0xf4, 0xad, 0x2e, 0x5b, + 0x78, 0xa2, 0x89, 0x98, 0xf2, 0xad, 0xb3, 0x90, 0x7d, 0x73, 0x58, 0x97, + 0x1e, 0x2f, 0xd7, 0x67, 0xf3, 0x16, 0x5b, 0xf9, 0x58, 0x48, 0xdb, 0x8a, + 0x93, 0xf2, 0x83, 0x9c, 0xd6, 0x02, 0xdd, 0xbc, 0x5c, 0x74, 0xa9, 0x5e, + 0x51, 0x3a, 0xe4, 0x2f, 0xcd, 0xde, 0xbb, 0x56, 0x1e, 0x9a, 0x6d, 0xdb, + 0x70, 0x8d, 0xae, 0x6d, 0x5b, 0xea, 0x5a, 0x9c, 0xeb, 0x33, 0x7d, 0xa0, + 0x2e, 0x4e, 0xf9, 0x00, 0x6e, 0xde, 0xd5, 0x24, 0xda, 0xdd, 0xe4, 0x7b, + 0xa2, 0x57, 0x49, 0x16, 0x41, 0xf7, 0x80, 0xe7, 0x8a, 0xc0, 0x80, 0xb2, + 0xee, 0x5d, 0xd8, 0x3e, 0xb5, 0x33, 0x48, 0xac, 0xc0, 0x10, 0x73, 0xea, + 0x29, 0x3a, 0x10, 0xbe, 0xc3, 0x72, 0x65, 0xb8, 0xa4, 0x9a, 0x79, 0x37, + 0xb3, 0xc8, 0x25, 0xfe, 0x75, 0xd2, 0xe9, 0x1a, 0x7b, 0x5c, 0xb4, 0x9f, + 0x6a, 0xbc, 0x8a, 0x14, 0x44, 0xdd, 0xb9, 0xb9, 0xdd, 0xf4, 0xa6, 0x78, + 0x3a, 0x5d, 0x22, 0x7d, 0x55, 0x2d, 0xf5, 0x35, 0x5d, 0x85, 0x4e, 0xd7, + 0x63, 0xc0, 0x3e, 0xf5, 0x5b, 0x57, 0xd4, 0xac, 0x64, 0xd7, 0xe7, 0x06, + 0x75, 0x10, 0x06, 0xc2, 0x6c, 0x18, 0x52, 0x07, 0x4c, 0x0a, 0xc2, 0x69, + 0xca, 0x7c, 0x96, 0x2a, 0x31, 0x49, 0x5d, 0x91, 0x5e, 0x4e, 0x6d, 0xa6, + 0x98, 0x5b, 0xcd, 0xbd, 0x0f, 0xdd, 0xc7, 0x4a, 0xcf, 0x13, 0xdc, 0x79, + 0x82, 0x6b, 0x89, 0x7c, 0xc6, 0x1d, 0x33, 0xcd, 0x47, 0x70, 0xaf, 0x2b, + 0x31, 0x89, 0x1d, 0x80, 0xe8, 0x13, 0x9e, 0x2a, 0x26, 0xb5, 0x66, 0x55, + 0xfb, 0xd9, 0x6e, 0x83, 0xbd, 0x69, 0x1a, 0x51, 0x48, 0xc9, 0x9a, 0x67, + 0x5a, 0x73, 0x27, 0x9a, 0x90, 0x15, 0x2a, 0x31, 0xf2, 0x71, 0x91, 0x55, + 0x5b, 0x51, 0x57, 0x8c, 0x6e, 0xb7, 0x55, 0x90, 0x9e, 0x70, 0x7a, 0xfd, + 0x69, 0x6c, 0xe2, 0x86, 0x1d, 0xd1, 0xdd, 0x99, 0x11, 0x8f, 0x19, 0x6a, + 0xa2, 0x49, 0x8e, 0xf2, 0x44, 0x18, 0x74, 0xcf, 0xca, 0xed, 0x4d, 0x52, + 0x82, 0xd9, 0x09, 0x45, 0xad, 0xce, 0xae, 0xcf, 0xc4, 0xda, 0x84, 0x5a, + 0x70, 0xb1, 0x5b, 0xbf, 0x26, 0x10, 0x72, 0x40, 0x3c, 0xe2, 0xae, 0x69, + 0x77, 0xb1, 0x49, 0x7d, 0x24, 0x96, 0xf7, 0x12, 0x44, 0xe8, 0xb9, 0x47, + 0xdb, 0x9e, 0x47, 0xad, 0x71, 0x32, 0x30, 0xdd, 0xb8, 0x8c, 0x7a, 0x0c, + 0xd6, 0xc6, 0x85, 0xa8, 0x2d, 0x93, 0xb1, 0x91, 0x59, 0xa2, 0x75, 0xc1, + 0x02, 0xb9, 0xea, 0x50, 0x49, 0x36, 0x8a, 0x5a, 0xbb, 0x33, 0xb2, 0x82, + 0x6b, 0x9b, 0xc8, 0x67, 0xba, 0x37, 0x5b, 0x27, 0x8c, 0x96, 0x6e, 0xb8, + 0x90, 0x74, 0xc0, 0xa4, 0x65, 0x8d, 0xef, 0x50, 0xdc, 0xb3, 0x41, 0x21, + 0x6c, 0x48, 0x1c, 0x63, 0x68, 0xc7, 0x63, 0x5c, 0xfa, 0xea, 0xab, 0x03, + 0xbb, 0xc7, 0xbd, 0x95, 0x86, 0x14, 0x13, 0x8f, 0xce, 0xa0, 0xd5, 0xb5, + 0x99, 0x2e, 0xed, 0xa3, 0x33, 0x17, 0x37, 0x3b, 0xb2, 0xee, 0x5b, 0x39, + 0x1d, 0xab, 0x99, 0x61, 0xe4, 0xd8, 0xd5, 0x96, 0xec, 0xd5, 0xbf, 0x45, + 0x7b, 0x94, 0xb8, 0x49, 0xb0, 0x88, 0x70, 0x39, 0xcb, 0x1a, 0xaf, 0x73, + 0x7f, 0x6b, 0xf2, 0xa7, 0xd9, 0x94, 0xe0, 0x1c, 0x9e, 0xec, 0x7d, 0x6b, + 0x06, 0x3b, 0xb7, 0x54, 0x50, 0x59, 0x98, 0x9e, 0x72, 0x69, 0xaf, 0x70, + 0xc4, 0xf4, 0xeb, 0x5a, 0xaa, 0x0e, 0xfa, 0x99, 0x4d, 0x96, 0xe6, 0xb9, + 0x69, 0x25, 0xdc, 0x48, 0xf4, 0xe3, 0xb0, 0xa8, 0x24, 0x7c, 0x93, 0xb8, + 0x92, 0x2a, 0xab, 0x39, 0x54, 0xdf, 0x82, 0x79, 0xeb, 0x4e, 0x59, 0x03, + 0x2f, 0x3c, 0xf3, 0x5b, 0xa8, 0x58, 0xcb, 0xd4, 0xb4, 0x8f, 0xf6, 0x88, + 0xd8, 0x79, 0x85, 0x47, 0xa1, 0xef, 0x55, 0xe2, 0xb5, 0x28, 0x4b, 0xb1, + 0x35, 0x34, 0x71, 0x20, 0x21, 0xdd, 0xd4, 0x0c, 0xf4, 0xa2, 0x49, 0x24, + 0x65, 0x65, 0x84, 0x8f, 0x2c, 0x71, 0x93, 0xd6, 0x92, 0xd3, 0x44, 0x3d, + 0x07, 0x3b, 0xaf, 0xcb, 0x1c, 0x64, 0xfb, 0xfb, 0xd3, 0x2e, 0x32, 0xa8, + 0x37, 0x26, 0x49, 0xe8, 0xd5, 0x02, 0xee, 0x41, 0x9d, 0xc4, 0xe7, 0xa1, + 0x35, 0xa9, 0x04, 0x50, 0xdc, 0xdb, 0xaa, 0x09, 0xb6, 0xb9, 0xec, 0x6a, + 0x94, 0x5d, 0xf4, 0x22, 0xc5, 0x0d, 0xe4, 0x1c, 0x90, 0x4a, 0xf1, 0xcd, + 0x68, 0x40, 0xdb, 0x72, 0xd9, 0x6c, 0x91, 0xd2, 0x8f, 0xec, 0xe9, 0x23, + 0x04, 0x31, 0x04, 0x8e, 0x47, 0xa5, 0x57, 0x27, 0x6b, 0x6c, 0x39, 0xde, + 0x3b, 0x55, 0xb4, 0xf7, 0x04, 0xbb, 0x97, 0xc4, 0x88, 0xc8, 0x06, 0x3a, + 0xf5, 0xcd, 0x01, 0x50, 0xb7, 0x20, 0xed, 0x1d, 0x2a, 0x14, 0x27, 0x6e, + 0x48, 0x03, 0xda, 0x9c, 0xe8, 0x5b, 0x18, 0x6c, 0x0a, 0xc1, 0xdd, 0xc8, + 0xa4, 0x3f, 0x7a, 0xa4, 0x84, 0xa8, 0xcf, 0x6e, 0x68, 0x56, 0x8b, 0x3f, + 0x3b, 0x6d, 0x3e, 0x80, 0x53, 0x16, 0x32, 0x1f, 0x27, 0x9a, 0x25, 0x88, + 0xb7, 0x44, 0xc7, 0xb8, 0x35, 0x4a, 0xc8, 0xa4, 0xf5, 0x2e, 0x8b, 0x75, + 0x60, 0xbb, 0x24, 0x0d, 0x9e, 0xa3, 0xbd, 0x7a, 0x96, 0x83, 0xaa, 0x68, + 0xba, 0x4f, 0x86, 0x1a, 0xd2, 0x7b, 0xb9, 0xad, 0xe3, 0x6c, 0x87, 0x59, + 0x13, 0x0e, 0xa5, 0xba, 0x91, 0x8e, 0xa2, 0xb1, 0x7c, 0x21, 0xe0, 0x4b, + 0x2d, 0x4f, 0x46, 0x8e, 0xf7, 0xed, 0xf2, 0x17, 0x6e, 0xaa, 0xa8, 0x30, + 0xa4, 0x76, 0x39, 0xeb, 0x5d, 0xb5, 0xff, 0x00, 0x83, 0xac, 0xf5, 0x26, + 0x88, 0xcf, 0x73, 0x3e, 0xd4, 0x4d, 0x87, 0xee, 0xe4, 0xaf, 0xa7, 0x4c, + 0x7e, 0x94, 0x2b, 0xdf, 0x63, 0x45, 0x7d, 0xec, 0x78, 0xce, 0xbb, 0x1c, + 0x67, 0x59, 0x73, 0x63, 0x7e, 0xd7, 0x96, 0xe7, 0x1b, 0x65, 0x7e, 0xbf, + 0x43, 0x56, 0xf4, 0x8f, 0x0a, 0xea, 0xba, 0x9d, 0xbc, 0xf3, 0xd8, 0x05, + 0x95, 0x62, 0xc6, 0xe5, 0x2e, 0x07, 0xe4, 0x2a, 0xd7, 0x89, 0xfc, 0x28, + 0xde, 0x1e, 0xd5, 0x5d, 0x22, 0x12, 0xfd, 0x8d, 0x8e, 0x60, 0x92, 0x4c, + 0x1c, 0xf0, 0x32, 0x38, 0xf7, 0xad, 0x7d, 0x35, 0xd6, 0xd6, 0xd6, 0xcf, + 0xec, 0xad, 0xe5, 0x49, 0x28, 0x2b, 0x34, 0x81, 0x8a, 0x89, 0x39, 0xc8, + 0x1e, 0x99, 0x14, 0x4a, 0x69, 0xbb, 0x33, 0x29, 0x46, 0xda, 0x99, 0xb6, + 0x1e, 0x1d, 0xd4, 0x2f, 0xe3, 0x92, 0x2b, 0x78, 0x55, 0xae, 0x22, 0x39, + 0x61, 0xb8, 0x03, 0xc5, 0x77, 0x96, 0xd7, 0x36, 0x5f, 0xd9, 0xd0, 0xc1, + 0x7f, 0xa2, 0x9b, 0x59, 0x11, 0x91, 0x04, 0x6c, 0xa3, 0x0e, 0xc7, 0x8c, + 0x8c, 0x75, 0xf5, 0xad, 0x5d, 0x33, 0xc3, 0xf6, 0xb6, 0x37, 0x1e, 0x7d, + 0xb7, 0x99, 0xf6, 0x8e, 0x4b, 0x3b, 0x3f, 0xde, 0x07, 0xb1, 0x1d, 0x31, + 0x5c, 0xc6, 0xaf, 0x7d, 0xae, 0x6b, 0x17, 0xd3, 0xe9, 0xeb, 0x6f, 0x6d, + 0x0c, 0x31, 0x5c, 0x82, 0x97, 0x32, 0x39, 0x00, 0xed, 0x23, 0xf8, 0x7a, + 0xf5, 0xef, 0x52, 0xa3, 0xcc, 0x8d, 0x69, 0x42, 0xcf, 0xde, 0x3a, 0x3d, + 0x7f, 0x51, 0xfb, 0x07, 0x87, 0x27, 0x7b, 0x2d, 0xac, 0x23, 0x5d, 0x87, + 0x1c, 0xec, 0x1e, 0xf5, 0xc5, 0xea, 0x3a, 0xc5, 0xf3, 0x78, 0x6a, 0x2b, + 0x7b, 0x88, 0x7c, 0xb4, 0x91, 0xfe, 0x40, 0x50, 0xae, 0xec, 0xf3, 0x9c, + 0xf4, 0xef, 0x5d, 0x46, 0x8b, 0xa4, 0xeb, 0x1f, 0xda, 0x97, 0xef, 0xac, + 0x5c, 0x41, 0x2d, 0x8c, 0xf1, 0xaa, 0xf9, 0x31, 0x42, 0x42, 0x13, 0xdc, + 0xe0, 0xe4, 0xe7, 0xf9, 0xfe, 0x15, 0xa5, 0xa9, 0x43, 0xa6, 0x6a, 0xf6, + 0xf1, 0x59, 0x3a, 0x79, 0x96, 0xea, 0xc1, 0x86, 0x06, 0xd1, 0xc7, 0x18, + 0x07, 0xfc, 0x2a, 0x67, 0x4a, 0x31, 0x5a, 0xc8, 0xd2, 0x51, 0xbb, 0xb2, + 0x3c, 0xe2, 0xfe, 0xce, 0xca, 0xd7, 0xc3, 0xa9, 0x6d, 0x25, 0xc9, 0x7b, + 0x89, 0x1c, 0x30, 0x86, 0x21, 0xd6, 0xb9, 0x3f, 0xb1, 0x6c, 0x9c, 0xb4, + 0xb1, 0xb2, 0xc7, 0x9e, 0x8d, 0xf2, 0xd7, 0xad, 0x47, 0xa1, 0x58, 0xe9, + 0xf7, 0x8b, 0x34, 0x51, 0xc9, 0x32, 0x06, 0xc0, 0x2f, 0x86, 0x11, 0xfb, + 0xe7, 0xad, 0x68, 0xea, 0x3a, 0x1c, 0x3a, 0xa5, 0x93, 0xc4, 0xf1, 0x24, + 0x6a, 0xc3, 0xfd, 0x66, 0x01, 0x3c, 0x57, 0x2f, 0xb4, 0x9d, 0xd4, 0x52, + 0x2b, 0xd9, 0xab, 0x5e, 0xe7, 0x88, 0xcd, 0x0a, 0x88, 0xfc, 0xbc, 0x84, + 0x0d, 0xc9, 0x0a, 0x3f, 0x2a, 0xcf, 0x9a, 0x25, 0x20, 0x74, 0x3b, 0x46, + 0x30, 0x2b, 0x77, 0xc4, 0xd6, 0x90, 0xd9, 0xea, 0x26, 0x1b, 0x79, 0x44, + 0xb1, 0xff, 0x00, 0x7d, 0x46, 0x30, 0x7b, 0x8a, 0xc4, 0xf9, 0x54, 0x90, + 0x72, 0x5b, 0xf4, 0xae, 0xb8, 0x54, 0x73, 0x5a, 0x68, 0x73, 0xce, 0x3c, + 0x92, 0x2b, 0x35, 0xae, 0xe4, 0x24, 0x3e, 0x0f, 0x60, 0x2a, 0x05, 0x81, + 0x94, 0xfc, 0xe0, 0xb6, 0x3b, 0xd5, 0xf8, 0xdf, 0x2e, 0x46, 0x3a, 0x54, + 0xfe, 0x51, 0xc8, 0x39, 0x1c, 0xd3, 0x75, 0x6d, 0xa3, 0x21, 0xc9, 0x14, + 0x06, 0xd4, 0x88, 0x12, 0x98, 0xe7, 0xbd, 0x08, 0x42, 0x64, 0xab, 0x06, + 0x24, 0xf4, 0xcd, 0x59, 0xb8, 0x88, 0xcc, 0x55, 0x36, 0xd3, 0xe2, 0xd3, + 0x15, 0x70, 0xd2, 0xba, 0xa7, 0xf7, 0x43, 0x0a, 0x4d, 0xa7, 0xb1, 0x49, + 0xe8, 0x55, 0x0c, 0x00, 0xc9, 0x18, 0xc9, 0xa9, 0x6c, 0x4a, 0xbd, 0xec, + 0x51, 0xb2, 0xed, 0x8c, 0xbf, 0x3f, 0x4a, 0x96, 0xe2, 0x11, 0x00, 0xcb, + 0x20, 0x2a, 0x7f, 0x88, 0x73, 0x59, 0x97, 0xd7, 0xb1, 0x24, 0x47, 0x63, + 0xed, 0x6f, 0xd4, 0x51, 0x18, 0xb9, 0xe8, 0x91, 0x71, 0xee, 0x77, 0xc9, + 0x24, 0xba, 0x64, 0xb3, 0x26, 0x91, 0x7c, 0x16, 0xd6, 0x48, 0xce, 0xf5, + 0x94, 0x1c, 0x1f, 0x63, 0x5a, 0x9a, 0x66, 0x81, 0xa7, 0xea, 0xb6, 0x12, + 0x30, 0xf2, 0xad, 0xae, 0x12, 0x3c, 0xf9, 0xb2, 0x39, 0x2a, 0xc7, 0x3d, + 0x41, 0xed, 0xf4, 0xaf, 0x24, 0xb3, 0xf1, 0x2e, 0xa7, 0x6a, 0xca, 0x21, + 0x95, 0xde, 0x35, 0x6c, 0x90, 0xdc, 0x86, 0xfa, 0xd7, 0x63, 0x6f, 0xf1, + 0x02, 0x29, 0x34, 0x9f, 0xec, 0xfb, 0x9b, 0x08, 0xdd, 0x48, 0x3c, 0x81, + 0x83, 0x93, 0x49, 0xd0, 0xab, 0x4d, 0x25, 0xba, 0x2d, 0x24, 0xdd, 0xf6, + 0x37, 0x7c, 0x39, 0xa2, 0x43, 0xa8, 0x3c, 0xb2, 0x4b, 0x3a, 0xc7, 0x2c, + 0x2e, 0x78, 0x56, 0xc9, 0x7e, 0x7a, 0x81, 0xe9, 0x5d, 0x2e, 0x97, 0xa4, + 0x8b, 0x38, 0x6e, 0x25, 0x43, 0xba, 0x47, 0xc3, 0x13, 0x9c, 0x70, 0x3b, + 0x8a, 0xe3, 0x74, 0x0d, 0x67, 0x4e, 0x9f, 0x50, 0xb6, 0x60, 0x92, 0xd9, + 0xaa, 0x95, 0x46, 0xf2, 0xce, 0x77, 0x0e, 0xe7, 0xd7, 0xf2, 0xae, 0xaf, + 0x5a, 0xf1, 0x4e, 0x87, 0xa3, 0x4c, 0xb2, 0x59, 0xc4, 0x24, 0x31, 0xc7, + 0xe5, 0x90, 0x32, 0x09, 0x04, 0xfe, 0xbe, 0xbc, 0xd7, 0x2d, 0x5c, 0x35, + 0x5a, 0x8d, 0xfe, 0x46, 0xf1, 0x6a, 0xc6, 0x8d, 0x8d, 0xbe, 0x98, 0x65, + 0xf3, 0xee, 0x67, 0x37, 0x05, 0xd7, 0xfd, 0x5c, 0xa9, 0x92, 0xbf, 0x85, + 0x60, 0x78, 0xcb, 0xc1, 0xb0, 0x24, 0x4d, 0x7d, 0xa6, 0x8d, 0xa0, 0xf2, + 0xf1, 0x8e, 0x07, 0xd4, 0x52, 0x5d, 0xf8, 0xd0, 0xde, 0xdb, 0x43, 0x7f, + 0x6d, 0x6c, 0x89, 0x64, 0x1f, 0x6b, 0xfe, 0xf0, 0x06, 0x0d, 0x8e, 0x3d, + 0xeb, 0x36, 0xeb, 0xc5, 0x97, 0x13, 0xe9, 0xcc, 0x2e, 0xb6, 0x49, 0x0f, + 0x45, 0x93, 0x3f, 0x31, 0x3e, 0x86, 0xa1, 0xe1, 0x6a, 0xd3, 0xb3, 0x8b, + 0xd4, 0x3d, 0xd6, 0xac, 0x71, 0x13, 0x43, 0x2a, 0xe4, 0xee, 0x27, 0xb6, + 0x2a, 0xaf, 0xd9, 0xf2, 0xc0, 0x6c, 0x27, 0xf1, 0xad, 0x1d, 0x51, 0x66, + 0x88, 0xac, 0x81, 0xc6, 0xd9, 0x39, 0x15, 0x4d, 0x27, 0x74, 0x21, 0x58, + 0x64, 0xf7, 0x35, 0xdf, 0x1e, 0x64, 0x8e, 0x49, 0xc5, 0xad, 0x08, 0xce, + 0x23, 0x90, 0x46, 0xad, 0x93, 0x4d, 0x77, 0x64, 0x23, 0x90, 0x0f, 0xd2, + 0xa7, 0x0c, 0x85, 0xf7, 0xaa, 0x8d, 0xc3, 0xb5, 0x24, 0xdb, 0x49, 0xde, + 0x70, 0x06, 0x31, 0x8c, 0x53, 0xbe, 0xa6, 0x2d, 0x74, 0x22, 0xf3, 0xc9, + 0x07, 0x20, 0x1c, 0xf7, 0xa6, 0x3e, 0x1c, 0x11, 0xc8, 0xa4, 0x29, 0x83, + 0x91, 0x9d, 0xbe, 0xf4, 0xd6, 0x20, 0x0e, 0xf5, 0x49, 0x2e, 0x82, 0x21, + 0x57, 0x67, 0x87, 0x00, 0x9e, 0x69, 0x14, 0xb1, 0x01, 0x70, 0x3d, 0xe9, + 0x54, 0x6e, 0x0a, 0x89, 0xc5, 0x4c, 0xd6, 0xb2, 0x46, 0x80, 0x86, 0x19, + 0x3d, 0x45, 0x5b, 0x69, 0x08, 0x6b, 0x9d, 0xa4, 0x2e, 0x3a, 0x52, 0x28, + 0x0e, 0xca, 0x09, 0x03, 0x07, 0xad, 0x3b, 0xca, 0xe7, 0xe7, 0x38, 0xf7, + 0xa6, 0x48, 0x81, 0x7e, 0xe3, 0x64, 0x52, 0x42, 0xf3, 0x1d, 0x3b, 0x88, + 0x06, 0xe5, 0x39, 0xc7, 0x52, 0x29, 0x45, 0xcf, 0x9d, 0x0e, 0x46, 0x15, + 0x00, 0xeb, 0x51, 0x12, 0x4a, 0xb6, 0x06, 0xe2, 0x07, 0x4f, 0x5a, 0x96, + 0x0f, 0x2b, 0xec, 0xc4, 0x63, 0x0b, 0xe9, 0x8a, 0xad, 0x14, 0x49, 0xea, + 0x44, 0x97, 0x10, 0x08, 0xd8, 0xee, 0x1e, 0x9e, 0x94, 0x45, 0x10, 0x33, + 0xf9, 0xbc, 0xf4, 0xef, 0xda, 0x98, 0xaa, 0x8b, 0xf2, 0xac, 0x60, 0x77, + 0xe6, 0xa5, 0x0d, 0xb5, 0x49, 0xce, 0x3d, 0xe9, 0xb7, 0x6d, 0x8b, 0x8b, + 0xbb, 0xd4, 0x77, 0x3d, 0x4b, 0xe7, 0xea, 0x6a, 0x58, 0xc8, 0xc0, 0xdd, + 0xd2, 0xaa, 0x8e, 0x9c, 0x1c, 0xe6, 0xa6, 0x56, 0x1c, 0x7b, 0x75, 0xa9, + 0x92, 0x2f, 0xa0, 0x4c, 0x18, 0xbf, 0x03, 0x1d, 0xc5, 0x47, 0x1c, 0x11, + 0x16, 0x26, 0x50, 0x4f, 0xa5, 0x58, 0x2e, 0x5f, 0x04, 0x9c, 0x81, 0xc5, + 0x34, 0xe1, 0xc7, 0x40, 0x08, 0xa5, 0x7b, 0x68, 0x82, 0xc8, 0xb0, 0x8b, + 0x65, 0x1c, 0x13, 0x07, 0x56, 0x25, 0x87, 0xca, 0x16, 0xa8, 0x35, 0xbd, + 0xbb, 0x7d, 0xd4, 0x61, 0xc7, 0xad, 0x4c, 0xb0, 0x99, 0x01, 0x3e, 0x83, + 0x34, 0xf8, 0xae, 0x63, 0x85, 0xf2, 0x62, 0x27, 0x1e, 0x94, 0x95, 0xd5, + 0xed, 0xa8, 0x9e, 0xc5, 0x11, 0x6c, 0xa8, 0x4f, 0x38, 0x07, 0xb5, 0x4e, + 0x2d, 0x97, 0x68, 0xc0, 0x07, 0x3d, 0x85, 0x24, 0xf3, 0x89, 0x5c, 0xb0, + 0x8c, 0x27, 0xb0, 0xa3, 0xcc, 0xdd, 0x1e, 0x31, 0xc8, 0xef, 0x9a, 0xd1, + 0xb9, 0x32, 0x46, 0x38, 0x58, 0x1c, 0xb7, 0x1d, 0x38, 0xaa, 0x8f, 0x36, + 0xf6, 0x62, 0x31, 0xd3, 0x9a, 0x7c, 0xc4, 0xb8, 0xc1, 0x38, 0xfa, 0xd3, + 0xe2, 0x85, 0x76, 0x33, 0x8c, 0x02, 0x6a, 0xd5, 0x92, 0xbb, 0x19, 0x59, + 0x5b, 0xf7, 0x64, 0x9a, 0x16, 0x33, 0x23, 0xe1, 0x3f, 0x88, 0xd3, 0xcc, + 0x6b, 0xca, 0xf6, 0xcf, 0x6a, 0x9a, 0x30, 0x23, 0x60, 0x56, 0xa9, 0xca, + 0xdb, 0x15, 0x74, 0x57, 0xc6, 0xdc, 0xa1, 0x3d, 0x3a, 0x53, 0x55, 0x9f, + 0xa6, 0x38, 0x14, 0xf6, 0x42, 0x5c, 0x1c, 0x53, 0xd9, 0x50, 0x2e, 0x7a, + 0x1f, 0x4a, 0x77, 0x05, 0x21, 0xd1, 0x03, 0xb8, 0x37, 0x51, 0xde, 0xa5, + 0xc0, 0x47, 0xc1, 0xe9, 0x51, 0xac, 0x6c, 0x54, 0x32, 0xf4, 0xf4, 0xcd, + 0x48, 0xc4, 0x05, 0xf9, 0xba, 0xe7, 0xaf, 0xa5, 0x66, 0xf7, 0x0d, 0x18, + 0x82, 0x25, 0x66, 0xeb, 0xc1, 0xef, 0x44, 0xa8, 0x23, 0x00, 0x29, 0xc9, + 0x3f, 0xa5, 0x36, 0x3f, 0x97, 0x2a, 0xe7, 0x1d, 0xf3, 0x52, 0xc6, 0x0c, + 0xa3, 0x67, 0x51, 0xd7, 0x75, 0x0f, 0x41, 0xbd, 0x0b, 0x16, 0x96, 0x92, + 0xba, 0xef, 0x0a, 0xd8, 0x3c, 0x12, 0x05, 0x75, 0xba, 0x36, 0x95, 0x0e, + 0x8f, 0x3d, 0x95, 0xc5, 0xf8, 0x0f, 0x67, 0x3c, 0x98, 0x66, 0x00, 0xee, + 0x1f, 0x85, 0x66, 0x68, 0xb6, 0x52, 0x85, 0x63, 0x2c, 0x6c, 0xb1, 0x7f, + 0x0c, 0x84, 0x12, 0x09, 0xf6, 0xad, 0xed, 0x4e, 0xfa, 0xd1, 0x20, 0xb6, + 0xf2, 0xec, 0x9a, 0xde, 0x68, 0xc6, 0x7c, 0xc2, 0x77, 0x02, 0x7d, 0x71, + 0x5e, 0x6e, 0x22, 0xac, 0xa5, 0x2e, 0x45, 0xb0, 0x24, 0xf7, 0x3a, 0xdd, + 0x51, 0x34, 0xdd, 0x30, 0xd9, 0x8d, 0x2a, 0x09, 0x5f, 0x54, 0x6f, 0x99, + 0x46, 0x3f, 0xd5, 0x83, 0xdd, 0xfd, 0xb9, 0xaa, 0x17, 0x1a, 0xb4, 0x32, + 0x59, 0xcf, 0x63, 0x78, 0x81, 0x67, 0x41, 0xb8, 0xb4, 0x5f, 0x2e, 0x5b, + 0x3d, 0x72, 0x3b, 0x57, 0x35, 0xfd, 0xa9, 0xa9, 0x6a, 0x9b, 0xe7, 0x79, + 0x89, 0x78, 0xd7, 0x99, 0x3a, 0x1c, 0x7a, 0x56, 0x4c, 0xf7, 0xf2, 0x61, + 0xcb, 0x13, 0xb8, 0xf4, 0x38, 0xae, 0x3a, 0x58, 0x77, 0x75, 0x7d, 0xd0, + 0xa7, 0x24, 0xf7, 0x47, 0xb4, 0xd8, 0xea, 0x16, 0xa3, 0x47, 0xb7, 0x9a, + 0xfa, 0xfc, 0xf9, 0x7e, 0x56, 0xc0, 0xa8, 0xdf, 0x7b, 0xeb, 0xde, 0xb9, + 0x5d, 0x27, 0x5f, 0xb6, 0xd3, 0x75, 0x7b, 0xcf, 0x32, 0x46, 0x68, 0x24, + 0x05, 0x56, 0x32, 0x77, 0x15, 0xf7, 0xe6, 0xb8, 0x41, 0xab, 0x94, 0x8a, + 0x34, 0x81, 0x89, 0x0a, 0x06, 0x43, 0x7a, 0xd5, 0x69, 0x75, 0x3b, 0xa9, + 0x1a, 0x49, 0x5c, 0xa2, 0xe7, 0x8c, 0x2f, 0x42, 0x2a, 0xa9, 0xe0, 0xe5, + 0xef, 0x26, 0xf4, 0x65, 0xc6, 0xa4, 0x56, 0xe7, 0x75, 0xa8, 0x78, 0x8e, + 0xde, 0xe1, 0x17, 0x4d, 0x5b, 0x80, 0x2d, 0xa3, 0x72, 0xe3, 0x21, 0x72, + 0x40, 0xe4, 0x7b, 0x57, 0x39, 0xaf, 0xf8, 0xce, 0xe7, 0x51, 0x2d, 0x69, + 0x6c, 0xcc, 0xb6, 0xdb, 0x40, 0x61, 0x80, 0x37, 0x7e, 0x55, 0xc9, 0x19, + 0x1d, 0xd5, 0x9b, 0x20, 0x86, 0x3d, 0x0d, 0x2f, 0x97, 0x2e, 0xe1, 0x85, + 0x02, 0x3c, 0x77, 0xae, 0xda, 0x58, 0x58, 0x52, 0x56, 0x2a, 0x75, 0xe5, + 0xcb, 0x64, 0xca, 0xf7, 0x53, 0x4b, 0x29, 0x11, 0xef, 0x62, 0x80, 0xf4, + 0x07, 0x81, 0x55, 0xd8, 0x3a, 0x3a, 0x90, 0x49, 0x5c, 0x62, 0xad, 0x9b, + 0x73, 0xe6, 0x12, 0x40, 0x03, 0xd6, 0x9a, 0xf6, 0xb2, 0x3a, 0x64, 0x01, + 0xf4, 0xae, 0xe5, 0x24, 0xb4, 0x39, 0xf9, 0x97, 0x56, 0x32, 0x19, 0x08, + 0x1b, 0x78, 0x03, 0xd3, 0xd6, 0x95, 0xb2, 0xe9, 0xf7, 0x88, 0xf5, 0x15, + 0x13, 0xe6, 0x15, 0x2a, 0x57, 0x07, 0xf5, 0xa9, 0x63, 0x04, 0x46, 0x01, + 0xee, 0x33, 0x43, 0x5d, 0x49, 0x6b, 0x52, 0x3c, 0x2e, 0xf5, 0x61, 0xd4, + 0x75, 0xc5, 0x12, 0x4a, 0x51, 0x4f, 0xcd, 0xc1, 0xed, 0x51, 0x90, 0xf2, + 0x30, 0x27, 0x20, 0x67, 0xb7, 0xa5, 0x2b, 0x46, 0x85, 0xfa, 0x60, 0x8a, + 0xab, 0x2e, 0xa2, 0x10, 0xc5, 0x1b, 0x80, 0xeb, 0xc1, 0xef, 0x57, 0x6d, + 0x1b, 0x6d, 0xcc, 0x40, 0xae, 0x46, 0x46, 0x3d, 0xea, 0xa3, 0x87, 0x41, + 0x91, 0xc8, 0xf6, 0xab, 0xfa, 0x4c, 0x32, 0x5d, 0xdd, 0xaa, 0xa3, 0x28, + 0x6c, 0xfc, 0xb9, 0xe9, 0x51, 0x51, 0xda, 0x2d, 0xbd, 0x86, 0x95, 0xcf, + 0x78, 0xf0, 0x65, 0xcc, 0x77, 0x16, 0x88, 0xaf, 0x71, 0x99, 0x15, 0x70, + 0x17, 0x38, 0x18, 0xaa, 0x9e, 0x28, 0xf1, 0xa7, 0xfc, 0x23, 0x77, 0x42, + 0x18, 0x21, 0x8a, 0x59, 0x33, 0xf3, 0x6e, 0x3d, 0x2a, 0xcf, 0x84, 0x20, + 0xb2, 0x86, 0xc4, 0x09, 0x1d, 0x4c, 0xeb, 0xcb, 0x81, 0xdb, 0xde, 0xb9, + 0xaf, 0x1b, 0x68, 0xfa, 0x5e, 0xa7, 0xa9, 0xf9, 0xff, 0x00, 0xda, 0x69, + 0x01, 0x62, 0x15, 0x81, 0x39, 0x35, 0xf3, 0xf0, 0xa7, 0x07, 0x57, 0xde, + 0x5a, 0x1d, 0x3c, 0x93, 0x66, 0xaf, 0x86, 0xfc, 0x7b, 0x3e, 0xbd, 0xa9, + 0xc7, 0x6c, 0x6c, 0xb9, 0x63, 0xf3, 0x14, 0x3f, 0x2a, 0x8f, 0x5a, 0xe9, + 0x7c, 0x45, 0x65, 0x70, 0xda, 0x73, 0x35, 0x95, 0xc7, 0x92, 0x77, 0x8d, + 0xe7, 0xb6, 0xce, 0xf5, 0xe7, 0xba, 0x46, 0xa3, 0xa4, 0x78, 0x3d, 0xc8, + 0xb7, 0xba, 0x17, 0x12, 0xc9, 0x19, 0x0e, 0xc3, 0xa7, 0x51, 0x8a, 0xc8, + 0xf1, 0x0f, 0xc4, 0x5d, 0x43, 0x51, 0xcc, 0x51, 0x28, 0x8a, 0xdf, 0x90, + 0x15, 0x7a, 0x9a, 0xd5, 0xe1, 0x9c, 0xaa, 0x27, 0x49, 0x69, 0xe6, 0x35, + 0x4b, 0x93, 0xde, 0x91, 0xcb, 0xeb, 0x49, 0x17, 0xf6, 0x8c, 0xbb, 0x5f, + 0x2c, 0x24, 0x24, 0x9f, 0x5a, 0xc0, 0x91, 0xe4, 0x32, 0xbb, 0x80, 0x58, + 0x67, 0x02, 0xae, 0x5c, 0xca, 0xd3, 0xcb, 0x9d, 0xdb, 0x41, 0x3d, 0xfb, + 0xd2, 0xa2, 0x79, 0x43, 0x6b, 0x1d, 0xc0, 0x77, 0xc5, 0x7b, 0x74, 0xfd, + 0xc8, 0xd9, 0x9c, 0xb2, 0x4a, 0xf7, 0x2a, 0x92, 0xd1, 0xc6, 0x0b, 0x27, + 0x07, 0xbd, 0x4c, 0x8a, 0x78, 0x23, 0x00, 0x1e, 0xe6, 0xa6, 0x91, 0x51, + 0x97, 0x2c, 0x3a, 0x54, 0x36, 0x8c, 0xd2, 0x34, 0x98, 0x52, 0xca, 0xbd, + 0x32, 0x6a, 0xaf, 0x75, 0x72, 0x6c, 0x9e, 0xa4, 0xaa, 0x72, 0x98, 0x24, + 0x75, 0xed, 0x52, 0x22, 0xee, 0x6e, 0x7a, 0x62, 0x91, 0x00, 0xcf, 0xd4, + 0xd3, 0xd8, 0xb4, 0x32, 0x12, 0xeb, 0x95, 0xed, 0x8f, 0x4a, 0xcd, 0xbe, + 0xc5, 0x28, 0x91, 0xca, 0x04, 0x6e, 0x0a, 0xf2, 0x7d, 0xaa, 0x63, 0x2f, + 0x9b, 0x1e, 0x59, 0x70, 0x0f, 0x6a, 0x8d, 0x63, 0xca, 0xc8, 0xc9, 0x92, + 0x4f, 0x4c, 0xf6, 0xa1, 0x77, 0xb6, 0x03, 0x0c, 0x0e, 0xe3, 0xd6, 0x86, + 0x53, 0x77, 0x1f, 0x1c, 0x41, 0xce, 0xde, 0x3a, 0x53, 0xcc, 0x2b, 0xd4, + 0xf0, 0xc2, 0xa5, 0x5c, 0x85, 0x00, 0x2e, 0x07, 0x4e, 0x29, 0x42, 0x82, + 0x3d, 0xea, 0x2f, 0xa8, 0xd2, 0x4c, 0x6a, 0x20, 0xe0, 0x77, 0x15, 0x36, + 0x4a, 0xa7, 0x18, 0xa6, 0x02, 0x17, 0x83, 0x82, 0x68, 0x2e, 0x09, 0x03, + 0xda, 0xa5, 0xc6, 0xe6, 0x89, 0x0d, 0x6c, 0x3f, 0x3d, 0xea, 0x06, 0x5d, + 0xa3, 0x24, 0xd5, 0x90, 0x40, 0x07, 0x81, 0x55, 0x98, 0xab, 0x48, 0x78, + 0xcd, 0x69, 0x08, 0xf6, 0x1d, 0x86, 0x32, 0x20, 0x1f, 0x76, 0xa2, 0x63, + 0x8c, 0x8d, 0xa7, 0xf0, 0xab, 0x40, 0x9f, 0xee, 0x54, 0x6e, 0x32, 0x7a, + 0x60, 0xd6, 0x8a, 0x12, 0xec, 0x43, 0x89, 0x9e, 0x65, 0x93, 0x0c, 0xa8, + 0x71, 0xf8, 0x55, 0x98, 0x7c, 0xe1, 0x09, 0x12, 0x00, 0x78, 0xeb, 0x8e, + 0x94, 0x85, 0x59, 0x18, 0x36, 0xde, 0x94, 0xb2, 0xdf, 0x07, 0x88, 0xaa, + 0xa1, 0x57, 0xab, 0x71, 0x7b, 0x58, 0x99, 0x45, 0x93, 0xa3, 0xf9, 0x60, + 0x02, 0x79, 0xc7, 0x5f, 0x5a, 0x51, 0x73, 0x96, 0xda, 0x09, 0x24, 0xfb, + 0x55, 0x75, 0xbc, 0x8d, 0x61, 0xf9, 0x87, 0x2a, 0x3a, 0x7a, 0xd5, 0x78, + 0xae, 0x97, 0xed, 0x91, 0xbe, 0xd2, 0xab, 0xce, 0x69, 0x46, 0x8b, 0x93, + 0xd4, 0x21, 0x0b, 0xee, 0x6e, 0x59, 0x02, 0xa3, 0x9e, 0x08, 0xe7, 0x1e, + 0x95, 0x46, 0xfe, 0xfe, 0xe2, 0x79, 0xe5, 0x89, 0xe7, 0x7d, 0x87, 0x19, + 0x52, 0xc7, 0x07, 0x15, 0x66, 0x39, 0xc2, 0xc8, 0x0e, 0x0e, 0x09, 0xeb, + 0x51, 0xea, 0x16, 0x70, 0xcb, 0x37, 0x9a, 0x24, 0x08, 0x7b, 0x83, 0xd0, + 0xd6, 0xdc, 0x89, 0x68, 0x8e, 0x95, 0xa6, 0xc6, 0x4b, 0x70, 0x7d, 0x73, + 0x51, 0x33, 0x38, 0x1c, 0x8f, 0xa5, 0x5f, 0x68, 0xa3, 0x4c, 0x6d, 0x91, + 0x4f, 0xe1, 0x40, 0x7b, 0x70, 0x98, 0x75, 0x2c, 0xc2, 0x8d, 0x40, 0xc6, + 0x95, 0x25, 0x91, 0xb3, 0x8a, 0xb1, 0x0c, 0x53, 0x01, 0xc2, 0xd5, 0xd9, + 0x24, 0x4e, 0xb1, 0xc6, 0x16, 0xa2, 0x37, 0x12, 0x74, 0x07, 0x1f, 0x4a, + 0x77, 0x6d, 0x58, 0x69, 0xd8, 0x74, 0x56, 0x92, 0xbb, 0x74, 0xe4, 0xf7, + 0xa7, 0xbd, 0xab, 0xc4, 0xe0, 0x16, 0x5c, 0x1e, 0xe0, 0xd3, 0x3e, 0xd2, + 0xca, 0x07, 0xcd, 0x9e, 0x3b, 0xd3, 0x55, 0xa4, 0x97, 0x68, 0x55, 0x35, + 0x36, 0x0b, 0x97, 0xa0, 0x16, 0xd1, 0x9d, 0xc3, 0x74, 0x8c, 0x3f, 0x01, + 0x54, 0xe5, 0xd3, 0xe4, 0xb9, 0xbe, 0x4c, 0x65, 0x51, 0xcf, 0x07, 0xae, + 0x2a, 0x55, 0xb7, 0x99, 0x18, 0x76, 0xad, 0x08, 0x4d, 0xc8, 0x65, 0x74, + 0x1b, 0x48, 0xf6, 0xa4, 0xe5, 0x67, 0xa0, 0xbd, 0x46, 0xdd, 0x78, 0x57, + 0x5a, 0xd3, 0xa1, 0x92, 0xea, 0x2d, 0xd2, 0xdb, 0x21, 0xe6, 0x58, 0x1b, + 0x3f, 0x9f, 0xa5, 0x41, 0xa6, 0x88, 0xbe, 0xdd, 0x0f, 0xda, 0xa4, 0x94, + 0x0d, 0xc3, 0xbf, 0x22, 0xb4, 0xdb, 0x5a, 0xbe, 0x82, 0xda, 0xe6, 0xd7, + 0xed, 0x03, 0xcb, 0x95, 0x3e, 0x78, 0xc9, 0xe1, 0xab, 0x13, 0x4c, 0x82, + 0xf2, 0xf2, 0xe1, 0x61, 0xb7, 0xb7, 0x69, 0xe7, 0x2d, 0x94, 0x51, 0xeb, + 0x53, 0xad, 0x9f, 0x31, 0x6a, 0xd7, 0xd0, 0xef, 0xb5, 0x1f, 0x0b, 0xe9, + 0x7a, 0x92, 0x79, 0xf6, 0x1a, 0x8b, 0x86, 0x0b, 0xf3, 0x24, 0xa8, 0x78, + 0x6c, 0x7b, 0xd7, 0x9e, 0xea, 0x16, 0x2f, 0x6d, 0x78, 0xc9, 0x19, 0x69, + 0x91, 0x4e, 0x37, 0xa8, 0x21, 0x6b, 0xd0, 0xff, 0x00, 0xe1, 0x23, 0xb9, + 0xd2, 0x2d, 0x1a, 0x2b, 0xe1, 0x6c, 0xb7, 0x00, 0x85, 0xfb, 0x3a, 0xae, + 0xe3, 0xf5, 0x27, 0xd6, 0xb8, 0xad, 0x4a, 0xfd, 0xef, 0xee, 0xe4, 0x94, + 0x28, 0x45, 0x73, 0x9d, 0xab, 0xc5, 0x67, 0x4a, 0x52, 0x45, 0xd5, 0x51, + 0x5e, 0xa6, 0x58, 0x19, 0x23, 0x76, 0x4e, 0x2b, 0x5e, 0xc9, 0x77, 0x42, + 0x0e, 0xdc, 0x0c, 0xf4, 0xaa, 0x70, 0xa0, 0x24, 0x71, 0xd4, 0xd6, 0xa5, + 0xa9, 0x01, 0x71, 0x8a, 0xa9, 0xea, 0x8c, 0x53, 0x14, 0x44, 0x18, 0xf4, + 0xe9, 0xd0, 0x53, 0x1d, 0x30, 0xad, 0x91, 0x91, 0xe8, 0x6a, 0xca, 0x10, + 0x73, 0xc5, 0x32, 0x45, 0xde, 0x09, 0x3d, 0x3d, 0xab, 0x3d, 0x8a, 0x28, + 0x3c, 0x67, 0xa2, 0xf0, 0x29, 0xaa, 0xb2, 0x29, 0xe8, 0x1a, 0xae, 0x18, + 0xc0, 0x4c, 0x01, 0x93, 0x4c, 0x48, 0x99, 0x73, 0xc5, 0x32, 0x5a, 0xb9, + 0x55, 0xd4, 0xa2, 0xed, 0x53, 0x83, 0xd4, 0x83, 0x55, 0x83, 0xc8, 0x84, + 0x1c, 0x1c, 0xd6, 0xc4, 0x4b, 0xbd, 0xbe, 0x65, 0x14, 0xcb, 0x8b, 0x45, + 0x07, 0x2a, 0x31, 0x4f, 0x64, 0x4b, 0x82, 0x68, 0xa7, 0x14, 0x86, 0x42, + 0x44, 0x89, 0x92, 0xbd, 0xea, 0x48, 0xe4, 0x22, 0x47, 0x00, 0x60, 0x0e, + 0x71, 0x4c, 0x54, 0x64, 0x24, 0x60, 0xf5, 0xa8, 0xe6, 0x57, 0x50, 0xce, + 0x17, 0x2d, 0x53, 0xa3, 0x66, 0x6a, 0x2d, 0x3d, 0x4b, 0x1e, 0x6e, 0xf6, + 0xdf, 0xb4, 0x9f, 0x41, 0x48, 0x93, 0x49, 0x1a, 0x97, 0xdb, 0xc8, 0xec, + 0x3b, 0x54, 0x36, 0xf0, 0xcc, 0xdb, 0x64, 0x46, 0xfc, 0x3b, 0x55, 0xd1, + 0x62, 0xec, 0xc5, 0x9e, 0x4c, 0x67, 0xa8, 0xa3, 0xdd, 0x89, 0x4e, 0xc9, + 0x12, 0x69, 0xda, 0xb1, 0x13, 0x14, 0x9f, 0x26, 0x32, 0x38, 0xcf, 0x63, + 0x57, 0x2f, 0x16, 0x37, 0x2b, 0x34, 0x58, 0x39, 0xfd, 0x6b, 0x30, 0xe9, + 0xe3, 0x38, 0x4e, 0x6a, 0xf2, 0xda, 0x3c, 0x76, 0xb1, 0xa0, 0xdc, 0x73, + 0xf7, 0x8f, 0x61, 0x53, 0x2a, 0x88, 0xcd, 0xdb, 0x74, 0x22, 0xc8, 0x49, + 0xc2, 0xae, 0xe3, 0xe9, 0x9a, 0x61, 0x69, 0x0b, 0xe0, 0xf1, 0xed, 0x53, + 0xdb, 0xe6, 0x10, 0xc5, 0x92, 0x36, 0x0b, 0xd7, 0x9e, 0x69, 0xb2, 0xdd, + 0xdb, 0x4b, 0x92, 0x91, 0x95, 0x61, 0xc6, 0x6a, 0x55, 0xb7, 0x04, 0xd2, + 0x10, 0x5c, 0x7c, 0xe1, 0x73, 0x53, 0x09, 0x70, 0x8c, 0x47, 0x7e, 0xf9, + 0xaa, 0x40, 0x82, 0xea, 0xd8, 0xc9, 0xf4, 0xa9, 0xa2, 0x89, 0x9e, 0x12, + 0xe7, 0xf7, 0x78, 0x3c, 0x6e, 0xee, 0x29, 0xab, 0x5b, 0x52, 0xe2, 0x91, + 0xd8, 0xf8, 0x2b, 0xc4, 0x32, 0x69, 0x5a, 0x94, 0x6b, 0x73, 0x77, 0x37, + 0xd8, 0x4e, 0x77, 0x20, 0x63, 0xb4, 0x12, 0x3a, 0xe0, 0x57, 0xaa, 0xbf, + 0x8b, 0x34, 0x98, 0x60, 0x86, 0x45, 0x98, 0xc8, 0xd3, 0x11, 0xe5, 0xc6, + 0x14, 0x82, 0x41, 0xef, 0xce, 0x38, 0xf7, 0xaf, 0x9f, 0x6d, 0xe6, 0x84, + 0xce, 0x11, 0x9c, 0xa0, 0xcf, 0xde, 0xaf, 0x45, 0x97, 0xc3, 0x92, 0x5e, + 0xe9, 0x10, 0xcb, 0xa7, 0xb3, 0x99, 0xcf, 0x11, 0x87, 0xc8, 0x05, 0x7e, + 0xbd, 0xaa, 0x5b, 0xbc, 0x8b, 0x5c, 0xd6, 0xb2, 0xd4, 0x9f, 0xc7, 0x37, + 0x17, 0x17, 0x5e, 0x21, 0xb3, 0xb6, 0xbf, 0x99, 0xd2, 0xc0, 0x81, 0x22, + 0x8c, 0x0f, 0x94, 0x1e, 0x09, 0xe3, 0xaf, 0x4a, 0xe8, 0x6c, 0x2e, 0x74, + 0x12, 0x90, 0xc3, 0x6d, 0x24, 0x13, 0x1b, 0x51, 0x90, 0x48, 0xfb, 0xa3, + 0xa6, 0x6b, 0x2b, 0x4c, 0xf0, 0xf4, 0x7a, 0x9d, 0xa4, 0x2d, 0xab, 0x3d, + 0xcc, 0x97, 0x76, 0xdf, 0x23, 0x97, 0xe1, 0x58, 0x76, 0x03, 0x3d, 0x40, + 0xac, 0x5d, 0x6f, 0xc2, 0x77, 0x56, 0x0b, 0x73, 0x73, 0xa6, 0x12, 0x6d, + 0x41, 0xc1, 0xc3, 0xf3, 0x8f, 0xff, 0x00, 0x5d, 0x71, 0xce, 0x6a, 0x52, + 0xb2, 0x66, 0xb1, 0xe6, 0x84, 0x6f, 0x6b, 0xa3, 0xb0, 0xd5, 0xfc, 0x41, + 0xa2, 0x47, 0xa6, 0xdd, 0x95, 0xd4, 0xa2, 0x5b, 0x93, 0x19, 0x0a, 0xd1, + 0x82, 0x58, 0x1e, 0xdc, 0x8a, 0xf2, 0x88, 0x35, 0xbd, 0x5b, 0x52, 0x73, + 0x72, 0xb2, 0xbc, 0xa6, 0x1f, 0x97, 0x71, 0x07, 0x80, 0x0d, 0x6d, 0x5c, + 0x68, 0x37, 0xf7, 0x9a, 0x0f, 0xf6, 0xac, 0x30, 0x5b, 0x81, 0x03, 0x08, + 0x9e, 0x18, 0x01, 0x67, 0x3d, 0x39, 0x23, 0xd7, 0x9a, 0xcf, 0xd1, 0x2f, + 0xa5, 0xd3, 0xf5, 0x25, 0xb6, 0x8d, 0xb6, 0x2c, 0xce, 0x16, 0x58, 0x98, + 0x60, 0xfe, 0x39, 0xad, 0x69, 0x3e, 0x58, 0x6a, 0x65, 0x7e, 0x79, 0x5a, + 0x47, 0xaa, 0xf8, 0x5f, 0xc4, 0x56, 0xd7, 0x9a, 0x72, 0x5b, 0x47, 0xac, + 0x8b, 0xdb, 0xa8, 0x8e, 0x66, 0x99, 0x80, 0x45, 0xc9, 0x39, 0xdb, 0x83, + 0xcf, 0x4a, 0xde, 0x99, 0x16, 0x69, 0x01, 0x56, 0x19, 0x6e, 0x9c, 0x57, + 0x90, 0xfc, 0x45, 0xf0, 0x74, 0x76, 0x36, 0x83, 0x58, 0xd2, 0x51, 0x91, + 0x43, 0x66, 0xe1, 0x10, 0x9c, 0x7b, 0x30, 0x1f, 0xce, 0xab, 0xf8, 0x1b, + 0xe2, 0x06, 0xaf, 0x36, 0xaf, 0x05, 0x8d, 0xf5, 0xcb, 0xcb, 0x01, 0x5d, + 0xa0, 0x85, 0x19, 0x00, 0x0f, 0xa5, 0x6b, 0x2b, 0xb8, 0x36, 0xf6, 0x3a, + 0x12, 0x71, 0x95, 0x91, 0xeb, 0x4f, 0xa7, 0xdd, 0xc7, 0x3c, 0x9f, 0x66, + 0x61, 0x1f, 0x9a, 0xb9, 0x2e, 0x46, 0xe0, 0xac, 0x3d, 0xbd, 0xc7, 0xf2, + 0xac, 0x7f, 0x13, 0x5d, 0xde, 0xd8, 0x58, 0xc4, 0x89, 0x33, 0xac, 0xa5, + 0xf1, 0xd3, 0x1b, 0x87, 0x73, 0xc7, 0x4a, 0xea, 0x52, 0xeb, 0x7a, 0x2b, + 0x06, 0x00, 0x1e, 0x72, 0x78, 0xa8, 0xaf, 0xac, 0xe2, 0xd4, 0x87, 0x95, + 0x28, 0x42, 0x84, 0x63, 0x39, 0xc3, 0x0f, 0xa5, 0x61, 0xcb, 0x07, 0x1f, + 0x77, 0x70, 0x52, 0x69, 0xea, 0x78, 0x66, 0xaf, 0x12, 0xcb, 0x12, 0x4b, + 0x0c, 0x0e, 0x85, 0x14, 0x79, 0xce, 0x79, 0x05, 0x8d, 0x61, 0x3c, 0x71, + 0xe7, 0x79, 0x7e, 0x0f, 0x18, 0xef, 0x9a, 0xf5, 0xed, 0x4b, 0xe1, 0xa2, + 0xcf, 0x6d, 0x70, 0x2d, 0x2f, 0x18, 0x3b, 0xbe, 0x55, 0x1f, 0x84, 0x1f, + 0x95, 0x79, 0x67, 0x8a, 0x74, 0x1b, 0xcf, 0x0f, 0x6a, 0x06, 0xd6, 0x7c, + 0x30, 0x18, 0xc3, 0x0f, 0xba, 0xc3, 0xda, 0xb5, 0xa7, 0x19, 0x24, 0xd3, + 0x46, 0x33, 0xd5, 0xe8, 0x67, 0x29, 0x11, 0xb7, 0x50, 0x46, 0x6a, 0x60, + 0xc8, 0x4e, 0xe2, 0xe7, 0x1d, 0x71, 0x54, 0xb6, 0xe7, 0x05, 0x48, 0x1d, + 0xb1, 0x4c, 0x66, 0x25, 0xc4, 0x45, 0xb0, 0x4f, 0x63, 0x4f, 0x94, 0x4a, + 0x28, 0xd4, 0x86, 0xe2, 0x36, 0x8d, 0xf3, 0x2e, 0x0e, 0x3e, 0x5e, 0x2a, + 0x96, 0xdb, 0x9b, 0xbd, 0xfb, 0xa6, 0x03, 0x1f, 0x74, 0xb0, 0xea, 0x2a, + 0x19, 0x2f, 0x05, 0xbd, 0xc2, 0xdb, 0xc2, 0x15, 0x86, 0x39, 0x6c, 0xf5, + 0xab, 0x09, 0xa9, 0xc7, 0x6c, 0x04, 0xb2, 0xa8, 0x29, 0x9e, 0xa3, 0xb5, + 0x69, 0xf0, 0xa5, 0x68, 0x90, 0xad, 0x06, 0x23, 0xcb, 0x1c, 0x56, 0xcd, + 0x0a, 0xb1, 0x66, 0xc7, 0x76, 0xea, 0x6b, 0x9e, 0x7b, 0x57, 0x6b, 0x8f, + 0xdf, 0x29, 0xda, 0xdf, 0xc5, 0x9a, 0xd0, 0xd4, 0xef, 0x6d, 0xae, 0xa4, + 0xdf, 0x6e, 0xbb, 0x46, 0x39, 0x39, 0xeb, 0x59, 0xc2, 0x76, 0xe8, 0x1b, + 0xf5, 0xae, 0x9a, 0x32, 0x7c, 0xb7, 0x68, 0xd2, 0xf7, 0xd4, 0x6d, 0xd4, + 0x66, 0xda, 0x6f, 0xdc, 0x3e, 0x57, 0xb0, 0xc5, 0x31, 0x6f, 0xa7, 0x41, + 0xba, 0x48, 0x32, 0x3d, 0x71, 0x8a, 0xbd, 0x6f, 0x31, 0x73, 0xb6, 0xe0, + 0x29, 0x50, 0x3e, 0x52, 0x45, 0x4b, 0x71, 0x2c, 0x77, 0x11, 0x2a, 0x98, + 0xd5, 0x48, 0x1d, 0xab, 0x55, 0x28, 0x6c, 0xc5, 0x76, 0x56, 0x87, 0x56, + 0x11, 0xb2, 0xb0, 0xde, 0x8c, 0x39, 0x04, 0x76, 0xa2, 0xe7, 0x52, 0x7b, + 0xa9, 0x37, 0xb5, 0xdb, 0x13, 0xdc, 0xb1, 0xeb, 0x4e, 0x9e, 0xda, 0xca, + 0x5b, 0x50, 0x90, 0xa3, 0x0b, 0x8c, 0xf2, 0x49, 0xe2, 0xaa, 0x4d, 0xa6, + 0x79, 0x2b, 0xcb, 0x46, 0xfc, 0x7f, 0x01, 0xcf, 0x3e, 0x95, 0x4a, 0x10, + 0xbe, 0x83, 0xe6, 0x65, 0xcf, 0xed, 0x0d, 0xb1, 0x84, 0xf3, 0x8e, 0x1b, + 0xa8, 0x07, 0x8a, 0x6c, 0x17, 0xf7, 0x36, 0x92, 0x6e, 0x52, 0x4a, 0x67, + 0x20, 0x37, 0x22, 0xaa, 0x2e, 0x99, 0x9b, 0x70, 0xf1, 0xb9, 0x69, 0x09, + 0xe5, 0x36, 0xe3, 0x14, 0xf8, 0xad, 0xa7, 0x0e, 0x80, 0xa9, 0x61, 0xbb, + 0xa6, 0x69, 0x3a, 0x68, 0x13, 0x35, 0x2e, 0xee, 0x56, 0xeb, 0x6c, 0xc2, + 0x49, 0x64, 0x95, 0xbe, 0x66, 0x19, 0xc0, 0x06, 0xab, 0x0b, 0x89, 0x4b, + 0x60, 0x46, 0xe7, 0xd7, 0x35, 0xa3, 0x28, 0x64, 0xb4, 0x57, 0x58, 0xc0, + 0xc1, 0xc7, 0x23, 0x9a, 0xae, 0x92, 0xc7, 0x26, 0x77, 0x7c, 0xa4, 0x7a, + 0xd7, 0x34, 0xec, 0x9e, 0xc2, 0x7b, 0xea, 0x2c, 0x57, 0x0d, 0x11, 0xdb, + 0xb4, 0xe4, 0xfe, 0x66, 0x9c, 0xce, 0x08, 0x2f, 0xff, 0x00, 0x2d, 0x3d, + 0x0d, 0x48, 0x9e, 0x5c, 0x9f, 0x77, 0x90, 0x3a, 0x91, 0x55, 0x2e, 0x1a, + 0x3d, 0xec, 0x42, 0x93, 0x59, 0x24, 0x9b, 0x32, 0x7a, 0xb2, 0x4f, 0xb4, + 0x39, 0x5f, 0x99, 0x05, 0x56, 0x96, 0x56, 0x00, 0x90, 0x38, 0xa6, 0x49, + 0x39, 0xd8, 0x18, 0x75, 0x27, 0x18, 0xa1, 0x63, 0x72, 0x83, 0x78, 0x3c, + 0xf2, 0x38, 0xad, 0x14, 0x52, 0xd4, 0x49, 0x77, 0x2f, 0xdc, 0xdb, 0xec, + 0x85, 0x0c, 0x43, 0x0f, 0xd7, 0x22, 0x85, 0x2f, 0xc1, 0x90, 0xfc, 0xc7, + 0xae, 0x2a, 0x51, 0x22, 0x34, 0x60, 0xb3, 0x60, 0x9f, 0x5a, 0x85, 0xa6, + 0x21, 0x8a, 0xa9, 0x1b, 0x7d, 0x6b, 0x15, 0x77, 0xa1, 0x9d, 0xfa, 0x0d, + 0xb8, 0x6c, 0x29, 0x5c, 0xf4, 0xaa, 0xc1, 0x81, 0x1b, 0x46, 0x73, 0x8a, + 0x94, 0x2f, 0xcc, 0x77, 0x1c, 0x92, 0x3a, 0xd3, 0xe3, 0x88, 0x82, 0xc4, + 0x82, 0x6a, 0xd3, 0x51, 0x45, 0x59, 0x11, 0x89, 0xbe, 0x5e, 0x40, 0xe0, + 0x63, 0x70, 0xa7, 0x42, 0xc5, 0x8f, 0x96, 0xe7, 0xe5, 0xeb, 0x9a, 0x86, + 0x60, 0x15, 0x9b, 0x68, 0x3c, 0x75, 0xc5, 0x45, 0x0c, 0x8e, 0x57, 0x0c, + 0x79, 0x27, 0x1d, 0x3b, 0x55, 0xf2, 0xdd, 0x5d, 0x10, 0xf4, 0x2e, 0x32, + 0x2f, 0x9b, 0xf2, 0xbf, 0x4e, 0xc6, 0xa2, 0x69, 0x14, 0x29, 0x04, 0x54, + 0x2b, 0x9f, 0x30, 0x91, 0xc9, 0x03, 0xb5, 0x33, 0xcb, 0x72, 0xa4, 0x95, + 0x3e, 0xbd, 0x29, 0xa8, 0xf7, 0x65, 0x25, 0xa1, 0x2c, 0x32, 0x02, 0xc4, + 0x62, 0xa6, 0x6c, 0x82, 0x08, 0x19, 0x3e, 0x82, 0xa0, 0x81, 0x5c, 0x31, + 0xc2, 0xfe, 0x95, 0x73, 0x27, 0xa3, 0x74, 0xc7, 0x6a, 0x99, 0x68, 0xc2, + 0xe4, 0x21, 0xcf, 0x4c, 0x60, 0x1a, 0x1d, 0x1f, 0x69, 0xf2, 0xdb, 0xa8, + 0xfc, 0xa9, 0xec, 0x82, 0x12, 0x09, 0xe4, 0x1a, 0x6b, 0xb8, 0x71, 0xf2, + 0x71, 0x4d, 0x49, 0x5b, 0x62, 0xee, 0x9a, 0xb0, 0xd8, 0x04, 0xaa, 0x08, + 0x79, 0x37, 0x13, 0xda, 0xad, 0x5b, 0xdc, 0x24, 0x2c, 0x46, 0x10, 0xb1, + 0xfe, 0xf8, 0xcd, 0x56, 0x4d, 0xe3, 0xe6, 0xc6, 0x4d, 0x4e, 0x0c, 0x67, + 0xab, 0x02, 0xde, 0x98, 0xa9, 0x9e, 0xbb, 0x91, 0x7d, 0x2c, 0xb6, 0x12, + 0xe1, 0x96, 0x57, 0xdc, 0x40, 0x04, 0xfa, 0x0a, 0xaa, 0xa8, 0x63, 0x6e, + 0x46, 0xe0, 0x4d, 0x5b, 0xda, 0x1b, 0x25, 0x4e, 0x40, 0xa8, 0x72, 0x77, + 0x72, 0x9d, 0x3b, 0x83, 0x44, 0x5e, 0x96, 0x34, 0x4a, 0xca, 0xc4, 0x53, + 0x85, 0x95, 0x86, 0x17, 0xa7, 0x41, 0x49, 0x1a, 0x34, 0x79, 0x53, 0x8e, + 0x3b, 0x53, 0x99, 0x4f, 0x9b, 0xbb, 0x76, 0x05, 0x21, 0xf9, 0x06, 0x41, + 0x24, 0xe3, 0x9c, 0xd5, 0xf4, 0xb1, 0x0d, 0x30, 0x0e, 0x03, 0x71, 0xb7, + 0xf0, 0xed, 0x4c, 0xc3, 0x09, 0x3a, 0xe3, 0x3e, 0xb4, 0x91, 0x02, 0xcc, + 0x47, 0x19, 0x3d, 0xea, 0x46, 0x5d, 0xfc, 0x39, 0x20, 0x7a, 0xd3, 0xd9, + 0x8a, 0xd6, 0x03, 0x6e, 0xf2, 0x3f, 0xc8, 0x33, 0xc7, 0x6a, 0xac, 0xfb, + 0xc4, 0x9b, 0x4a, 0xe1, 0xb3, 0x8c, 0x1a, 0xbd, 0x13, 0x98, 0x58, 0x61, + 0xb9, 0x1d, 0xc5, 0x28, 0x5f, 0xb4, 0xdc, 0xf9, 0x85, 0xff, 0x00, 0x78, + 0xa3, 0x3f, 0x37, 0x7a, 0x4a, 0x56, 0xdc, 0x5a, 0x11, 0xda, 0xdb, 0x4e, + 0xd2, 0xa2, 0x85, 0x6c, 0x96, 0x1c, 0x7a, 0x55, 0xab, 0x9d, 0x1a, 0xe0, + 0x4b, 0x2e, 0xec, 0x2c, 0x60, 0xe0, 0x13, 0xde, 0xad, 0x43, 0x24, 0x91, + 0xc8, 0x24, 0x42, 0xbf, 0x30, 0xe8, 0x6a, 0x56, 0xbc, 0x92, 0xe1, 0x1b, + 0x7f, 0x21, 0x3d, 0x0f, 0x7a, 0xc1, 0xd4, 0x9f, 0x35, 0xd0, 0xc9, 0xac, + 0x7c, 0x3a, 0x97, 0x5a, 0x71, 0x43, 0x77, 0x11, 0x91, 0x7f, 0x87, 0x1c, + 0x9f, 0xc6, 0xaa, 0x8d, 0x1a, 0x7b, 0x3f, 0x31, 0x30, 0x49, 0x5c, 0x64, + 0x0c, 0x1e, 0xbf, 0x4a, 0x8a, 0x5b, 0xe7, 0x92, 0x10, 0x53, 0xe4, 0xdb, + 0xd8, 0x70, 0x0f, 0xd6, 0x9b, 0x15, 0xf5, 0xde, 0xfd, 0xcd, 0x2b, 0xa2, + 0x9c, 0x64, 0x28, 0x35, 0x29, 0x55, 0xd6, 0xec, 0xd1, 0x46, 0xea, 0xc6, + 0xbd, 0x89, 0xbd, 0x58, 0x48, 0x61, 0x27, 0x92, 0x87, 0xee, 0xe4, 0x81, + 0x9a, 0xb3, 0xaa, 0x5c, 0x7d, 0xa6, 0x24, 0x8e, 0x38, 0xdc, 0xcc, 0xb8, + 0xea, 0xd9, 0xfc, 0x2b, 0x38, 0x6a, 0x97, 0x4b, 0x6c, 0x63, 0x6b, 0xa9, + 0x87, 0x3b, 0x87, 0x03, 0x9a, 0x86, 0xd6, 0x62, 0xf7, 0x4b, 0x73, 0x2d, + 0xc2, 0xee, 0x24, 0xe4, 0xb0, 0x24, 0xfd, 0x4d, 0x64, 0xe9, 0xeb, 0xcc, + 0x69, 0xca, 0x91, 0xd8, 0x78, 0x73, 0x49, 0xbd, 0x16, 0xad, 0x71, 0x77, + 0xf6, 0x78, 0xf4, 0xf5, 0x1b, 0x9c, 0xc8, 0xfb, 0x77, 0x1f, 0x4e, 0x95, + 0x81, 0xe2, 0x7b, 0xf3, 0x73, 0x79, 0xe4, 0x40, 0xd6, 0xcd, 0x10, 0xc9, + 0x5f, 0x27, 0xa0, 0x14, 0xeb, 0xaf, 0x10, 0xbc, 0xda, 0x58, 0xb2, 0x99, + 0x8b, 0x22, 0x70, 0xa4, 0x1c, 0x02, 0x2b, 0x9a, 0x33, 0x79, 0x85, 0x84, + 0x2a, 0x43, 0x37, 0x19, 0xc5, 0x45, 0x0a, 0x33, 0xe7, 0x75, 0x2a, 0x2f, + 0xf2, 0x32, 0x93, 0x72, 0xd0, 0x76, 0xc9, 0x0b, 0x02, 0xfc, 0x85, 0x1f, + 0xc2, 0x7a, 0xfd, 0x69, 0x44, 0xa6, 0x29, 0x77, 0xec, 0xdb, 0x91, 0xc0, + 0x1d, 0x28, 0x92, 0xd4, 0xf9, 0x43, 0x32, 0x9f, 0x33, 0xb9, 0xcd, 0x46, + 0xe7, 0x70, 0xda, 0xc4, 0x6e, 0x15, 0xdb, 0x74, 0xcc, 0xfc, 0x91, 0x6a, + 0xe1, 0x64, 0x9a, 0x30, 0x51, 0x40, 0x1d, 0x72, 0x2a, 0xa7, 0xda, 0xe4, + 0x58, 0xca, 0x1e, 0x71, 0xc6, 0x4d, 0x4a, 0x2e, 0x82, 0xd8, 0x3a, 0xaa, + 0x10, 0xfd, 0x9a, 0xa8, 0x40, 0x86, 0x51, 0x99, 0x1b, 0x6a, 0xaf, 0x5a, + 0x70, 0x8e, 0x8f, 0x9b, 0xa1, 0x56, 0xb2, 0xb1, 0x75, 0x0b, 0x6c, 0xeb, + 0x9c, 0xfe, 0x94, 0xbb, 0xdb, 0x27, 0xe6, 0xc0, 0x1e, 0xb5, 0x1a, 0x99, + 0x22, 0x20, 0x93, 0xba, 0x3e, 0x9f, 0x4a, 0x8a, 0x6c, 0xa3, 0x82, 0x5b, + 0x86, 0x19, 0xe6, 0x8b, 0x5d, 0x8b, 0x95, 0x3d, 0x89, 0x26, 0xda, 0xf1, + 0x9d, 0xc4, 0x86, 0xc7, 0xe1, 0x50, 0xc4, 0xb9, 0x26, 0x36, 0xe8, 0x39, + 0x06, 0x9f, 0x1c, 0x66, 0x45, 0x2a, 0x1f, 0x8f, 0xef, 0x1a, 0x8c, 0x23, + 0x96, 0xce, 0x4b, 0x05, 0xe3, 0x39, 0xab, 0x5d, 0x81, 0x46, 0xcf, 0x51, + 0xb2, 0x86, 0x65, 0x3e, 0x58, 0x3b, 0xb3, 0x83, 0xeb, 0x4a, 0x18, 0x91, + 0xb7, 0x03, 0x35, 0x61, 0x15, 0x4a, 0x8c, 0xfc, 0xb9, 0x3c, 0x9a, 0x47, + 0x88, 0x2c, 0xa5, 0x90, 0x83, 0x4f, 0x9b, 0xa0, 0x5a, 0xe3, 0x60, 0x24, + 0x45, 0x8c, 0x03, 0xf5, 0xa9, 0xad, 0x25, 0x6b, 0x47, 0x2c, 0x8d, 0xc8, + 0xa6, 0x1e, 0x4a, 0xfc, 0x9b, 0x71, 0xe9, 0xde, 0xa4, 0xc2, 0x75, 0xea, + 0xde, 0x95, 0x12, 0xd5, 0x6a, 0x3e, 0x4b, 0x6a, 0x74, 0x76, 0x3e, 0x25, + 0xbd, 0x81, 0x42, 0xa4, 0x84, 0x2b, 0x0c, 0x1a, 0xc6, 0xbc, 0xba, 0x92, + 0xe6, 0xf1, 0x9d, 0xcb, 0x36, 0x4f, 0x52, 0x6a, 0x05, 0xdc, 0x39, 0xc9, + 0x51, 0x8e, 0x95, 0x24, 0x63, 0x73, 0x8c, 0xe7, 0xa5, 0x62, 0xa9, 0xc6, + 0x3a, 0xa3, 0x45, 0x79, 0x34, 0x93, 0x1d, 0xe5, 0x33, 0x2e, 0x7a, 0x53, + 0x0c, 0x6c, 0x46, 0x08, 0xc8, 0xfa, 0x55, 0xad, 0xa1, 0x18, 0x06, 0x34, + 0x49, 0x3a, 0x0f, 0x95, 0x57, 0xe5, 0xf5, 0xa2, 0xee, 0xe6, 0xca, 0x2b, + 0xab, 0x33, 0x9e, 0xd9, 0x54, 0x82, 0x57, 0x22, 0x9d, 0x29, 0x08, 0x83, + 0x6a, 0x75, 0x15, 0x67, 0x74, 0x64, 0x60, 0xf5, 0xa8, 0x67, 0x04, 0x26, + 0xe4, 0x50, 0x4d, 0x5a, 0x93, 0x6f, 0x53, 0x39, 0x41, 0x36, 0x52, 0x33, + 0x1c, 0x6c, 0x75, 0xc8, 0x35, 0x62, 0x1d, 0xac, 0x30, 0x84, 0x1f, 0x40, + 0x29, 0xab, 0x19, 0x9a, 0x36, 0x27, 0xe5, 0x61, 0xd8, 0x8e, 0xb4, 0x24, + 0x45, 0x0e, 0x73, 0xc5, 0x5c, 0xad, 0x62, 0x25, 0x0b, 0xec, 0x30, 0x48, + 0xea, 0xe5, 0x64, 0x5c, 0x2e, 0x7a, 0x8e, 0xd5, 0x29, 0x59, 0x9e, 0x42, + 0xab, 0xf3, 0x8c, 0x60, 0x52, 0x98, 0xa2, 0x90, 0xae, 0x03, 0x31, 0x1d, + 0x47, 0x6a, 0xb0, 0x8e, 0x23, 0x62, 0x5c, 0x67, 0x23, 0x8c, 0x0a, 0x4d, + 0xf9, 0x0b, 0xe4, 0x43, 0x1c, 0x0f, 0x1c, 0xbf, 0x30, 0x2b, 0x9a, 0xb2, + 0x53, 0x74, 0x7d, 0xb9, 0xe3, 0x34, 0xbb, 0xbb, 0x90, 0x70, 0xdc, 0x60, + 0x8a, 0x72, 0x6e, 0x6e, 0x83, 0x81, 0xdb, 0xd6, 0xa1, 0xb6, 0xf5, 0x27, + 0x4b, 0xdc, 0x6a, 0x2e, 0xd0, 0x14, 0x67, 0x8f, 0x5a, 0xad, 0x70, 0x64, + 0x0f, 0x94, 0xfb, 0xb8, 0xeb, 0x56, 0x9b, 0x23, 0x82, 0x2a, 0x32, 0x8a, + 0x70, 0x78, 0xe3, 0xb5, 0x5d, 0x39, 0x28, 0xbb, 0xb3, 0x45, 0xa1, 0x5e, + 0x3f, 0x31, 0xbe, 0x62, 0x33, 0x52, 0x16, 0x62, 0xe0, 0x05, 0xfc, 0x6a, + 0x56, 0x2a, 0xa3, 0x03, 0xf4, 0xa8, 0x16, 0x36, 0x2f, 0x92, 0xf9, 0x07, + 0xb5, 0x6b, 0xce, 0xa5, 0xab, 0x43, 0x1e, 0x72, 0xdc, 0x13, 0x51, 0xe0, + 0xc6, 0x7a, 0xf1, 0xe9, 0x52, 0x3c, 0x4d, 0xb7, 0x20, 0xe0, 0x52, 0x08, + 0xf7, 0xa1, 0x25, 0x4f, 0x1d, 0xe8, 0x8c, 0xad, 0xb3, 0x02, 0x3f, 0xb4, + 0x85, 0x6e, 0x84, 0x8f, 0x5a, 0x3c, 0xe4, 0x63, 0xdc, 0x54, 0x4f, 0xf2, + 0x8e, 0x6a, 0x2c, 0x83, 0xd8, 0xd7, 0x42, 0x96, 0x83, 0x34, 0x36, 0x0f, + 0x2c, 0x30, 0x39, 0xcd, 0x31, 0xa3, 0x4c, 0x7f, 0x0d, 0x53, 0xf9, 0xd7, + 0x80, 0xc4, 0x0a, 0x6e, 0xe6, 0x00, 0xf3, 0x9e, 0xd9, 0xab, 0x56, 0x01, + 0xf7, 0x36, 0xe1, 0x94, 0x1d, 0xa2, 0xaa, 0x88, 0x58, 0x02, 0x47, 0x35, + 0x65, 0x4b, 0x30, 0xdb, 0xc9, 0xa9, 0x15, 0x0a, 0x9c, 0x81, 0x4d, 0xe8, + 0x80, 0x8a, 0x3b, 0xa9, 0x84, 0x7e, 0x5a, 0x8d, 0xc4, 0xd4, 0x0d, 0x33, + 0x07, 0x22, 0x5c, 0xe4, 0x76, 0xab, 0xaa, 0xde, 0x4b, 0x0c, 0x46, 0x0b, + 0x1e, 0x7e, 0x95, 0x0d, 0xcc, 0x6d, 0x34, 0xfe, 0x64, 0x80, 0x60, 0xf5, + 0xcf, 0x14, 0x9a, 0x4c, 0x77, 0x2a, 0x2c, 0x84, 0x9e, 0x33, 0x4f, 0x05, + 0x87, 0x24, 0x01, 0x56, 0x12, 0xca, 0x32, 0x33, 0xe6, 0x01, 0x56, 0x1a, + 0xd6, 0x1d, 0x9f, 0x34, 0x85, 0x80, 0xf4, 0xa5, 0x64, 0x17, 0x33, 0x0e, + 0xe6, 0x6c, 0x13, 0x8a, 0x51, 0x03, 0x37, 0xad, 0x5f, 0x8a, 0xda, 0x19, + 0x1c, 0x7c, 0xad, 0xf5, 0xad, 0x48, 0x2d, 0x15, 0x9c, 0x05, 0x8c, 0x1e, + 0x3b, 0xd2, 0xd1, 0x05, 0xcc, 0x68, 0x2c, 0x1d, 0xcf, 0x23, 0x1f, 0x5a, + 0xd2, 0x86, 0xcc, 0xc6, 0x01, 0x18, 0xdb, 0x57, 0xde, 0x03, 0x19, 0xfb, + 0xbc, 0xd4, 0x77, 0x33, 0xc3, 0x6b, 0x19, 0x33, 0xc8, 0xa8, 0x47, 0x25, + 0x49, 0xe7, 0xf2, 0xa8, 0x6a, 0xe3, 0x13, 0xc9, 0xe7, 0x80, 0x3e, 0xb5, + 0x14, 0xd2, 0x08, 0x23, 0x25, 0x9f, 0x00, 0x77, 0x35, 0x89, 0x2f, 0x8a, + 0x56, 0x39, 0x1c, 0x47, 0x0e, 0xf1, 0xd1, 0x49, 0x38, 0xac, 0xab, 0x8d, + 0x5a, 0xe2, 0xf9, 0xff, 0x00, 0x7a, 0xd8, 0x5e, 0xca, 0x3a, 0x55, 0x2a, + 0x52, 0x64, 0xf3, 0x24, 0x68, 0xcf, 0x78, 0x67, 0x62, 0x40, 0xce, 0x7b, + 0xd3, 0xad, 0xae, 0xa7, 0x84, 0x05, 0x49, 0x19, 0x3b, 0x8d, 0xa7, 0x15, + 0x9f, 0x0b, 0x71, 0x56, 0x94, 0x83, 0x51, 0x28, 0xf4, 0x29, 0x36, 0x5a, + 0x66, 0x69, 0x18, 0xb3, 0x31, 0x66, 0x3d, 0x49, 0x39, 0x34, 0x20, 0xe7, + 0x91, 0x51, 0xab, 0x60, 0x7b, 0xd4, 0xb1, 0xf2, 0x07, 0x3d, 0x6b, 0x3b, + 0x03, 0x64, 0xb1, 0x0e, 0x45, 0x5c, 0x88, 0xe2, 0xab, 0x82, 0xaa, 0x9c, + 0xf5, 0xa8, 0x53, 0x51, 0x44, 0x98, 0xa3, 0x55, 0x4a, 0x0c, 0x48, 0xd8, + 0x8d, 0xf9, 0x22, 0x97, 0x20, 0xf1, 0x55, 0x12, 0x65, 0x60, 0x70, 0x6a, + 0x48, 0x9f, 0x9a, 0xca, 0x5b, 0x5c, 0xb2, 0xce, 0x14, 0x0a, 0x4c, 0x02, + 0x39, 0xa3, 0x20, 0xf5, 0xa3, 0x38, 0x1f, 0x5a, 0xcd, 0x6a, 0xae, 0x03, + 0x90, 0x05, 0x3d, 0x29, 0xee, 0x03, 0x80, 0x71, 0xc5, 0x44, 0x08, 0x23, + 0xad, 0x4d, 0xdb, 0x19, 0xe3, 0xde, 0xae, 0x3b, 0x58, 0x65, 0x57, 0x88, + 0x07, 0xef, 0xd6, 0x9a, 0xf0, 0x82, 0xa7, 0x22, 0xac, 0x63, 0xe6, 0xa5, + 0x61, 0xc7, 0x15, 0xce, 0xdd, 0xa4, 0x22, 0xaa, 0xab, 0x47, 0x1a, 0xf9, + 0x63, 0xa5, 0x2c, 0x93, 0x38, 0x5c, 0x67, 0x26, 0xa5, 0xe8, 0x30, 0x0d, + 0x43, 0x28, 0x23, 0x38, 0xa1, 0x3b, 0xb3, 0x39, 0xa1, 0x20, 0x98, 0x6f, + 0x26, 0x43, 0x80, 0x06, 0x6a, 0x55, 0xd6, 0x94, 0x5c, 0xac, 0x41, 0x4f, + 0x97, 0xd0, 0x9a, 0xa2, 0xc8, 0x4d, 0x57, 0x78, 0x4a, 0xca, 0x24, 0xfe, + 0xed, 0x69, 0x18, 0xc5, 0xee, 0x63, 0x67, 0x63, 0x5a, 0xea, 0x48, 0xe4, + 0x90, 0xf3, 0x85, 0x3d, 0xe9, 0x21, 0xb1, 0x0d, 0x13, 0x98, 0x99, 0x25, + 0x53, 0xd0, 0x9e, 0x08, 0xac, 0xf8, 0xde, 0x5b, 0xe9, 0xbe, 0xce, 0xbb, + 0x51, 0xb1, 0xf7, 0x8f, 0x4a, 0xb2, 0x8f, 0x73, 0x64, 0x8b, 0x63, 0x33, + 0xae, 0xd6, 0x3c, 0x38, 0x1d, 0x05, 0x27, 0x16, 0x95, 0x96, 0xe3, 0x82, + 0xee, 0x2c, 0x10, 0x4d, 0xe7, 0x6d, 0x52, 0xc8, 0xc0, 0xe0, 0xf1, 0xd2, + 0xb4, 0x65, 0xb4, 0x01, 0x01, 0xbb, 0x27, 0xcb, 0x52, 0x0a, 0xb7, 0xf7, + 0xaa, 0xb0, 0xd5, 0x16, 0x39, 0x04, 0x5e, 0x6b, 0x37, 0x04, 0x16, 0x0a, + 0x3f, 0x9d, 0x31, 0x62, 0x6d, 0x4d, 0x5d, 0x63, 0x95, 0xb0, 0x06, 0xe1, + 0xb8, 0x9c, 0x54, 0xb5, 0x27, 0xab, 0xd1, 0x1b, 0x6f, 0xa9, 0xdb, 0x69, + 0x9e, 0x1a, 0xd2, 0xa4, 0xd5, 0x2c, 0xd6, 0x6b, 0xb8, 0xa5, 0x82, 0x70, + 0x1c, 0xbc, 0x2d, 0x95, 0xc7, 0xa1, 0x3d, 0x8d, 0x7b, 0x04, 0x10, 0xda, + 0xc3, 0x6d, 0x0c, 0x56, 0xfb, 0x76, 0x22, 0xe1, 0x31, 0xd0, 0x01, 0x5e, + 0x45, 0xe0, 0x0d, 0x04, 0xde, 0x3b, 0x24, 0xac, 0x41, 0x55, 0x0c, 0x92, + 0xa8, 0x38, 0xeb, 0xcd, 0x7a, 0x6a, 0xab, 0xd9, 0xa9, 0x5f, 0xde, 0x61, + 0x46, 0x06, 0x4e, 0x73, 0x8a, 0xe4, 0xad, 0x2b, 0x3b, 0x74, 0x47, 0x4d, + 0x38, 0x79, 0x92, 0xde, 0x5c, 0x10, 0xe6, 0x33, 0x6e, 0x4c, 0x40, 0x65, + 0xe4, 0x56, 0xc6, 0xda, 0xab, 0xa8, 0xe9, 0x76, 0x36, 0xda, 0x70, 0x57, + 0x9d, 0x63, 0x8e, 0x49, 0x37, 0x3b, 0x33, 0x9c, 0x13, 0xd7, 0x9a, 0xb8, + 0x64, 0x8a, 0x44, 0x55, 0x3b, 0x7e, 0x63, 0xca, 0x93, 0x4d, 0xd4, 0x9e, + 0x38, 0x5a, 0xde, 0x2b, 0x99, 0x21, 0x31, 0xc9, 0xb8, 0xec, 0x66, 0xc6, + 0x70, 0xa7, 0x8a, 0xcd, 0xd2, 0xf6, 0x89, 0xb4, 0xef, 0xb1, 0x73, 0x49, + 0x15, 0x74, 0x6b, 0x58, 0xf4, 0x0f, 0x0e, 0xfd, 0xaa, 0xd2, 0x01, 0x7b, + 0x3c, 0xf2, 0xee, 0xc2, 0xb6, 0x03, 0x12, 0xd8, 0x18, 0xcf, 0x4e, 0x3d, + 0xab, 0x8a, 0xf8, 0xa1, 0xa1, 0x3d, 0x9d, 0xcc, 0x7e, 0x29, 0x86, 0x4f, + 0x2a, 0x52, 0xe8, 0xb2, 0x43, 0xe8, 0x40, 0xc0, 0x2a, 0x47, 0x5e, 0x95, + 0x57, 0x55, 0xf1, 0x76, 0xad, 0xa6, 0x4e, 0x64, 0xb1, 0xbc, 0x75, 0x84, + 0xbf, 0xc9, 0x6f, 0x20, 0x0c, 0xaa, 0x3b, 0x63, 0x35, 0x83, 0xe2, 0x0f, + 0x1b, 0xeb, 0x1e, 0x22, 0xb0, 0x5b, 0x2b, 0xe9, 0x23, 0x10, 0xab, 0x06, + 0x21, 0x13, 0x6e, 0xe3, 0xea, 0x6b, 0xbe, 0x74, 0xa5, 0x4b, 0xf7, 0x73, + 0x56, 0x67, 0x1a, 0x7c, 0xda, 0xa3, 0x4a, 0xff, 0x00, 0xe2, 0x04, 0xb7, + 0x9e, 0x1d, 0xbc, 0xb4, 0x9e, 0x27, 0x12, 0x49, 0x6e, 0xd1, 0x97, 0x55, + 0xc8, 0x62, 0x78, 0xe9, 0xdb, 0xbd, 0x73, 0x3e, 0x07, 0xb6, 0x07, 0x57, + 0xb7, 0xb9, 0x9a, 0xdd, 0xa6, 0xb7, 0x79, 0x44, 0x25, 0x43, 0x60, 0x92, + 0x7d, 0x2a, 0x94, 0x72, 0x84, 0xc8, 0x62, 0x48, 0x23, 0x0c, 0x73, 0x5b, + 0x5e, 0x1e, 0xbf, 0xfe, 0xcc, 0xbb, 0x49, 0xad, 0xe0, 0x8e, 0x65, 0x8f, + 0x94, 0x46, 0x07, 0x05, 0xbb, 0x67, 0xe9, 0x50, 0xe7, 0xcb, 0x1e, 0x54, + 0x8b, 0xe6, 0x97, 0x53, 0xdb, 0x85, 0xa4, 0xb0, 0xc5, 0xb6, 0xd9, 0x58, + 0x34, 0x6c, 0x00, 0xf3, 0x5f, 0x20, 0x2e, 0x07, 0x3f, 0xd2, 0xb8, 0x0f, + 0x88, 0xba, 0x85, 0xe5, 0x95, 0xea, 0x47, 0x1d, 0xcc, 0xcb, 0x13, 0xed, + 0x3b, 0x33, 0xc6, 0x47, 0x75, 0xae, 0xc7, 0x40, 0x6d, 0x42, 0xe6, 0xde, + 0xea, 0x7b, 0x8b, 0xd2, 0x65, 0xba, 0x03, 0x6f, 0xee, 0xc8, 0x54, 0xe3, + 0xb0, 0xfc, 0x7f, 0x4a, 0xe3, 0xfc, 0x75, 0x60, 0xf7, 0x37, 0xd1, 0x43, + 0x22, 0x48, 0x72, 0x06, 0xd9, 0x00, 0x2d, 0xb7, 0xaf, 0xe3, 0xda, 0xb9, + 0x94, 0x62, 0xf5, 0x35, 0xb4, 0xac, 0xf9, 0x8c, 0x6d, 0x3b, 0x5e, 0xf1, + 0x8d, 0xa5, 0x9f, 0xdb, 0x34, 0xfb, 0x8b, 0xb9, 0x6d, 0x66, 0x7f, 0xbc, + 0xea, 0x25, 0x04, 0xff, 0x00, 0xc0, 0xb3, 0x8a, 0xcf, 0xf1, 0x0f, 0x88, + 0xb5, 0x8d, 0x7e, 0x14, 0x8b, 0x53, 0xb6, 0x53, 0x24, 0x0c, 0x7e, 0x61, + 0x16, 0xd6, 0x1f, 0x5a, 0x7f, 0x87, 0x75, 0x2b, 0xbf, 0x0f, 0x1f, 0x2e, + 0x6b, 0x9b, 0x94, 0xb0, 0xf3, 0x32, 0xcb, 0x13, 0x72, 0x0f, 0xa8, 0x07, + 0x8a, 0x87, 0x50, 0xf1, 0x15, 0xcc, 0xb7, 0x3a, 0x83, 0x41, 0x21, 0x96, + 0x1b, 0x87, 0xfb, 0xf3, 0x20, 0xde, 0x47, 0x6e, 0x9d, 0x3f, 0x0a, 0xeb, + 0x8b, 0xb6, 0x88, 0x8e, 0x5e, 0xa7, 0x2f, 0x71, 0xbd, 0x1c, 0x1e, 0x70, + 0x7a, 0x7b, 0x54, 0x90, 0x95, 0x73, 0xfb, 0xd0, 0x0e, 0x7d, 0x47, 0x14, + 0xd9, 0xa5, 0x2c, 0x70, 0xc7, 0x39, 0xaa, 0xde, 0x6b, 0x45, 0xc1, 0x1c, + 0x67, 0x83, 0x5b, 0x59, 0xad, 0x62, 0x4b, 0x12, 0x7b, 0x15, 0x2c, 0xcd, + 0x0b, 0xe0, 0x9e, 0xc4, 0x54, 0x11, 0xda, 0x18, 0xf2, 0x92, 0x10, 0x54, + 0x82, 0x4e, 0x0f, 0x4a, 0xba, 0xb7, 0x71, 0x2a, 0x8c, 0x26, 0x73, 0x50, + 0xdc, 0xab, 0x2b, 0xee, 0x51, 0x80, 0x79, 0xeb, 0x55, 0x1a, 0x92, 0xd9, + 0x92, 0xaf, 0xd4, 0xcb, 0x92, 0xc0, 0x79, 0x46, 0x68, 0x19, 0x8a, 0x8e, + 0xb9, 0xe2, 0xb3, 0xc0, 0x93, 0x77, 0x7a, 0xdc, 0x67, 0xc4, 0x64, 0x30, + 0xf9, 0x7b, 0xe2, 0xa2, 0x10, 0xa1, 0x1f, 0x24, 0x80, 0x0f, 0xee, 0xb0, + 0xae, 0xa8, 0x54, 0xee, 0x4f, 0x29, 0x42, 0xde, 0xe6, 0x68, 0xdc, 0x95, + 0x3c, 0x63, 0x18, 0x35, 0x27, 0x9c, 0x76, 0x92, 0x46, 0xd2, 0x3d, 0x29, + 0xf2, 0xda, 0x32, 0xb8, 0xdd, 0x81, 0x9e, 0x98, 0x35, 0x13, 0x46, 0xf9, + 0xea, 0x38, 0xa7, 0x68, 0xb6, 0x55, 0x98, 0xe5, 0xbb, 0x60, 0x0e, 0x0e, + 0x71, 0xeb, 0x5a, 0x7a, 0x74, 0x66, 0x58, 0x9e, 0x42, 0xe3, 0x1f, 0xd6, + 0xb2, 0xa4, 0x98, 0x33, 0x0d, 0xca, 0x38, 0x18, 0xe0, 0x62, 0xa3, 0x13, + 0x70, 0x70, 0x4f, 0xe1, 0x53, 0x28, 0x5d, 0x69, 0xa1, 0x2e, 0xe6, 0xd2, + 0xb9, 0x69, 0xca, 0xa8, 0x3c, 0x54, 0xa6, 0xf5, 0x2d, 0x64, 0xda, 0xf8, + 0x0d, 0xd7, 0x9a, 0xcf, 0x8a, 0x66, 0x92, 0x16, 0x91, 0x70, 0x0c, 0x6a, + 0x33, 0xf3, 0x63, 0x35, 0x9f, 0x3d, 0xc3, 0xcd, 0x30, 0x79, 0x06, 0x7d, + 0x33, 0xe9, 0x53, 0x08, 0xc9, 0xbb, 0x5c, 0x39, 0x99, 0xb7, 0x71, 0xaa, + 0xb4, 0x91, 0x1c, 0x9c, 0xfd, 0x2a, 0xb2, 0x39, 0x68, 0x95, 0xc8, 0x3b, + 0x73, 0x8c, 0xe6, 0xa9, 0x47, 0xb8, 0x6e, 0x62, 0xb8, 0x03, 0x90, 0x33, + 0x53, 0x5b, 0xa3, 0x5d, 0xdc, 0x6d, 0x53, 0x86, 0xfc, 0xb3, 0x4e, 0x51, + 0x56, 0xbb, 0x06, 0xcb, 0xf0, 0xc9, 0x22, 0x44, 0x55, 0x51, 0x8a, 0xf6, + 0x60, 0x3a, 0x53, 0x53, 0x39, 0xf9, 0x86, 0x09, 0xad, 0x3b, 0x28, 0x9e, + 0xde, 0x22, 0x93, 0xc8, 0x55, 0x7a, 0x81, 0x8c, 0xe6, 0xa5, 0x16, 0xd0, + 0xbc, 0x85, 0xd5, 0x7f, 0x1a, 0xe4, 0x73, 0x49, 0x99, 0x73, 0x59, 0x99, + 0xe9, 0x6e, 0x92, 0xf7, 0xc3, 0x7d, 0x2a, 0x61, 0x00, 0xe1, 0x46, 0x7e, + 0x51, 0x8c, 0xd4, 0x92, 0x39, 0x8c, 0x70, 0x07, 0xb1, 0xa8, 0x4c, 0xf2, + 0x0f, 0xbc, 0x71, 0x53, 0x79, 0x32, 0x5b, 0x64, 0x46, 0x30, 0xb8, 0x24, + 0xfe, 0x2d, 0xd2, 0x89, 0x8b, 0x44, 0xbf, 0x34, 0x7c, 0x7a, 0x8a, 0x68, + 0x9b, 0x2e, 0xa2, 0x46, 0x0d, 0x9e, 0xf4, 0x93, 0x42, 0x52, 0x27, 0x21, + 0x98, 0xfa, 0x02, 0x6b, 0x4b, 0x6b, 0xa9, 0x37, 0x77, 0xd4, 0x4b, 0x7d, + 0xd2, 0xbf, 0x09, 0x90, 0x7d, 0x3b, 0x56, 0x94, 0x59, 0x8b, 0xe5, 0x90, + 0x75, 0xe8, 0x6a, 0x85, 0xb5, 0xcc, 0x90, 0xc7, 0x80, 0x14, 0x12, 0x28, + 0x6b, 0xa9, 0x83, 0x86, 0x93, 0xe6, 0x1d, 0x30, 0x2a, 0x27, 0x17, 0x27, + 0x60, 0x6f, 0x52, 0xd4, 0xf6, 0xea, 0xf9, 0x60, 0x3d, 0xce, 0x0d, 0x67, + 0xbc, 0x6e, 0xcf, 0xc3, 0x80, 0xbd, 0xc5, 0x17, 0x97, 0xa0, 0x04, 0xf2, + 0x9c, 0xe7, 0xf8, 0x85, 0x37, 0xcd, 0x26, 0x10, 0xef, 0x81, 0xc7, 0x4a, + 0xb8, 0x46, 0x49, 0x5c, 0xa5, 0x1e, 0xe4, 0x8e, 0xa8, 0x90, 0x9d, 0xa4, + 0x99, 0x0f, 0x4c, 0x53, 0x15, 0xc8, 0x50, 0xcc, 0xae, 0x4f, 0xf7, 0x73, + 0xc9, 0xa8, 0x23, 0x90, 0xc8, 0xac, 0x48, 0xd8, 0x07, 0x20, 0xd3, 0x11, + 0x8c, 0xb2, 0xef, 0x8b, 0x3c, 0x77, 0xcf, 0x5a, 0xd3, 0x91, 0xad, 0x18, + 0x3d, 0x56, 0x85, 0xa3, 0x78, 0x49, 0xf2, 0x95, 0x76, 0xb7, 0x6c, 0xd1, + 0x1c, 0xb3, 0x73, 0xe6, 0x81, 0x9e, 0xd5, 0x08, 0x9b, 0x78, 0x0b, 0x80, + 0x24, 0xcf, 0x4e, 0xb4, 0xe6, 0xb8, 0x1b, 0x42, 0xb0, 0xf9, 0xa8, 0xe5, + 0xd2, 0xd6, 0x27, 0xa1, 0x3f, 0x9c, 0x48, 0xda, 0x5b, 0x3d, 0xea, 0x2d, + 0xdc, 0x9c, 0x0c, 0x1a, 0x23, 0x6c, 0xe7, 0x77, 0x22, 0x90, 0xba, 0xee, + 0xe0, 0x52, 0xb5, 0x81, 0x31, 0xfe, 0x6b, 0x2a, 0xfc, 0xcd, 0xc7, 0xad, + 0x31, 0xe6, 0x28, 0xcb, 0x81, 0xc1, 0xee, 0x6a, 0x55, 0x94, 0x37, 0x1b, + 0x79, 0xa7, 0x85, 0x25, 0x70, 0xca, 0x00, 0xa9, 0xba, 0x5b, 0xa1, 0x7a, + 0x8e, 0x4c, 0xb1, 0x07, 0x21, 0x4f, 0xa5, 0x4a, 0xf1, 0xb1, 0xe7, 0x70, + 0xaa, 0xbe, 0x59, 0x69, 0x32, 0x0b, 0x60, 0x7a, 0x77, 0xa7, 0xa8, 0x6d, + 0xc3, 0xe5, 0x21, 0x7b, 0x83, 0x52, 0xd7, 0x62, 0x94, 0x9d, 0xc4, 0x91, + 0x48, 0x6c, 0x67, 0x22, 0xab, 0xb3, 0xe5, 0xc8, 0x6c, 0x85, 0x1e, 0x95, + 0xa2, 0x0a, 0x74, 0x20, 0x63, 0xbd, 0x41, 0x2c, 0x2a, 0xe7, 0x81, 0xb4, + 0x76, 0xaa, 0x8c, 0xd5, 0xf5, 0x35, 0x8b, 0xbe, 0xe5, 0x75, 0x55, 0x53, + 0x90, 0x69, 0xfb, 0xc6, 0xec, 0x37, 0x02, 0x90, 0x40, 0xca, 0x73, 0x93, + 0xc5, 0x24, 0x9c, 0xf5, 0xab, 0xd1, 0x8d, 0xc5, 0x34, 0x30, 0xbe, 0x0e, + 0x01, 0xfa, 0x51, 0x1b, 0x39, 0x90, 0x63, 0xbd, 0x30, 0x8f, 0x9b, 0x83, + 0x52, 0x45, 0x11, 0x20, 0xba, 0xc8, 0x32, 0x28, 0x76, 0xb1, 0x92, 0x83, + 0x5b, 0x93, 0xc8, 0xee, 0x9f, 0x2b, 0x75, 0xed, 0xf4, 0xa8, 0xe3, 0x79, + 0x13, 0x7a, 0x86, 0x20, 0x38, 0xc1, 0x15, 0x26, 0x43, 0xed, 0x2c, 0x73, + 0x81, 0xcd, 0x3b, 0x0b, 0x90, 0x30, 0x08, 0xa8, 0x56, 0x45, 0xc5, 0x58, + 0x04, 0x6a, 0xa8, 0xa8, 0x41, 0xc8, 0x39, 0x3c, 0xd5, 0xa8, 0xaf, 0x0d, + 0xb3, 0x75, 0xc8, 0xc7, 0xdd, 0x3c, 0xd4, 0x18, 0xe0, 0x10, 0x32, 0x7a, + 0x75, 0xaa, 0xf2, 0x67, 0x76, 0x30, 0x69, 0x35, 0xcd, 0xa3, 0x0e, 0x76, + 0x99, 0x60, 0xdc, 0x79, 0xb2, 0x6e, 0xc7, 0xca, 0x0f, 0x4a, 0x6b, 0xdc, + 0x26, 0xe2, 0x13, 0x20, 0x7b, 0xd4, 0x09, 0x2a, 0xa0, 0x20, 0x01, 0x81, + 0xde, 0x9e, 0xa1, 0xa4, 0xce, 0xc1, 0x93, 0xf4, 0xa7, 0xc8, 0x55, 0xdb, + 0x1e, 0x0f, 0x98, 0x57, 0x7f, 0x23, 0xb6, 0x6a, 0x74, 0xdb, 0x1b, 0x65, + 0x3e, 0x98, 0xa8, 0xa3, 0x57, 0x54, 0xc0, 0xc1, 0xf5, 0xa9, 0x23, 0x00, + 0x21, 0x2c, 0xbc, 0x93, 0xc7, 0x3d, 0x2a, 0x24, 0x0d, 0x68, 0x4d, 0x13, + 0xa9, 0x91, 0xda, 0x44, 0x27, 0x1c, 0x66, 0xa9, 0x49, 0x14, 0x22, 0x7f, + 0x91, 0xfe, 0x5c, 0xfa, 0x74, 0xab, 0x21, 0x58, 0xee, 0x8e, 0x3c, 0x9d, + 0xde, 0xb5, 0x0b, 0xc5, 0x2c, 0x2c, 0x54, 0xa9, 0x1c, 0x75, 0xc5, 0x11, + 0xd1, 0x8a, 0x31, 0x5b, 0x01, 0x55, 0x4f, 0x90, 0x49, 0x95, 0x27, 0xa5, + 0x48, 0x60, 0x17, 0x04, 0xaa, 0xb2, 0x8f, 0x52, 0x2a, 0x18, 0xa3, 0x2d, + 0x22, 0xe5, 0x48, 0xf7, 0x35, 0x7a, 0x15, 0x46, 0x0f, 0xc9, 0x5c, 0x77, + 0xa7, 0x27, 0xca, 0x36, 0x8a, 0x5f, 0x67, 0x28, 0x76, 0x19, 0x31, 0xf5, + 0x35, 0x15, 0xc9, 0x43, 0x80, 0xbf, 0x33, 0x0e, 0xf5, 0x6a, 0xe8, 0x21, + 0x60, 0xbc, 0x1c, 0xfa, 0x53, 0x56, 0xd7, 0x6a, 0x13, 0xb4, 0x30, 0xa1, + 0x4b, 0x66, 0xc4, 0xac, 0x57, 0xb6, 0x19, 0x93, 0x69, 0x5f, 0x97, 0xb8, + 0x07, 0xad, 0x68, 0xf9, 0x70, 0xf9, 0x05, 0x57, 0x00, 0x0c, 0xfd, 0x6a, + 0xb4, 0x21, 0x0c, 0x99, 0x03, 0x6b, 0x0f, 0xd6, 0xac, 0x4a, 0x43, 0xa9, + 0x09, 0x85, 0x23, 0xb5, 0x4c, 0xdd, 0xd9, 0x0d, 0xeb, 0x66, 0x53, 0x00, + 0x34, 0x7b, 0x3a, 0x8c, 0xf5, 0xa3, 0x68, 0x1c, 0x83, 0xc8, 0xe2, 0xa4, + 0x65, 0x68, 0xfa, 0xf7, 0xf4, 0x15, 0x24, 0x6b, 0x12, 0xc4, 0xc5, 0xce, + 0x1c, 0xf4, 0xf4, 0xaa, 0x72, 0x2a, 0xe8, 0x6a, 0xae, 0x78, 0x23, 0x14, + 0xf3, 0x1b, 0x28, 0xcf, 0x1e, 0xc2, 0xa2, 0x12, 0x12, 0xe0, 0x63, 0x71, + 0xf4, 0x14, 0xfd, 0xf2, 0xba, 0x80, 0x53, 0x03, 0x3d, 0x69, 0x34, 0xc4, + 0xe2, 0xde, 0xc3, 0x07, 0x07, 0x0c, 0xd8, 0x35, 0x32, 0x28, 0x23, 0x23, + 0x24, 0x7b, 0x54, 0x72, 0x26, 0xee, 0x09, 0xed, 0xe9, 0x44, 0x0e, 0xd0, + 0xa1, 0x04, 0xe7, 0x07, 0xee, 0x8a, 0x1e, 0xda, 0x15, 0x66, 0x96, 0x84, + 0xb8, 0x2c, 0x09, 0x3c, 0x11, 0x51, 0x82, 0x58, 0x7c, 0xb9, 0xf7, 0xa7, + 0x6f, 0xdc, 0x0b, 0x63, 0xaf, 0x51, 0x4b, 0xbb, 0x23, 0x2c, 0x36, 0xf1, + 0xc0, 0x1d, 0xea, 0x4a, 0x4d, 0x91, 0x98, 0xf2, 0xd9, 0x4e, 0x80, 0x77, + 0xa7, 0x88, 0xc8, 0x51, 0xd7, 0x27, 0xbd, 0x22, 0x86, 0xc1, 0x27, 0xe5, + 0x14, 0x99, 0x38, 0x07, 0x3c, 0x0a, 0xa6, 0x9b, 0x0e, 0x57, 0x72, 0x5d, + 0x8d, 0x8e, 0xb4, 0x8a, 0xaa, 0x79, 0xeb, 0x42, 0x9e, 0x09, 0xce, 0x01, + 0xeb, 0x40, 0x20, 0x71, 0xdb, 0xb1, 0xa1, 0x45, 0x95, 0x61, 0x40, 0x11, + 0x9c, 0x8e, 0x3e, 0x94, 0xcf, 0x35, 0x77, 0x92, 0xd9, 0xc9, 0x1c, 0x53, + 0x5b, 0x25, 0x89, 0x35, 0x19, 0x27, 0x8d, 0xe4, 0x01, 0x56, 0xa0, 0x05, + 0xb0, 0x41, 0x19, 0xe4, 0x83, 0x49, 0xb8, 0x2f, 0xca, 0x49, 0xe2, 0xab, + 0xef, 0x25, 0x88, 0x5c, 0x91, 0x8e, 0xd4, 0xf5, 0x50, 0xa0, 0x1c, 0x1c, + 0x9f, 0x4a, 0x3d, 0x9d, 0x91, 0x2d, 0x68, 0x4a, 0x1c, 0x9e, 0xd9, 0xcf, + 0x6f, 0x4a, 0x18, 0x05, 0xe3, 0xa1, 0x22, 0xa3, 0x54, 0x20, 0xe7, 0x27, + 0x8f, 0x4a, 0x39, 0xe7, 0x07, 0xf3, 0xa9, 0xe5, 0xb3, 0x15, 0xec, 0x01, + 0x76, 0xae, 0x4e, 0x18, 0xfa, 0xd3, 0x50, 0x96, 0x27, 0x9c, 0x66, 0x90, + 0x7c, 0xa0, 0x75, 0x24, 0xd4, 0x98, 0xe3, 0x71, 0x03, 0xe9, 0x4d, 0xbb, + 0x09, 0xb1, 0x54, 0x6d, 0x18, 0x24, 0x1f, 0x7c, 0xd2, 0x6e, 0xca, 0xb0, + 0x19, 0xeb, 0x40, 0x45, 0x31, 0xe0, 0x30, 0x1f, 0x8d, 0x0b, 0x01, 0x03, + 0x2a, 0x41, 0xc8, 0xf5, 0xa4, 0x83, 0x62, 0x33, 0x12, 0xbf, 0x00, 0xe4, + 0x8a, 0xac, 0x48, 0x8f, 0x8e, 0x09, 0xab, 0x26, 0x36, 0x04, 0xf5, 0x19, + 0xef, 0x50, 0xbc, 0x6c, 0xaf, 0xca, 0x83, 0x5b, 0xc2, 0x5a, 0xea, 0xcb, + 0x44, 0x1e, 0x61, 0x3d, 0x0f, 0xd2, 0x8f, 0x30, 0x0e, 0x19, 0x70, 0x69, + 0xe4, 0x0c, 0x1c, 0x26, 0x3d, 0xc1, 0xa7, 0x79, 0x61, 0x94, 0x13, 0xf7, + 0x80, 0xef, 0x5a, 0xb9, 0x47, 0xa8, 0x32, 0x48, 0xe4, 0x55, 0x4c, 0x03, + 0xcd, 0x4a, 0x93, 0x05, 0x42, 0x4a, 0x06, 0xc8, 0xfc, 0xaa, 0x81, 0x52, + 0x1b, 0x9a, 0x94, 0x16, 0x50, 0x40, 0x6e, 0x3a, 0x0a, 0x24, 0xf4, 0xb0, + 0x0d, 0x2f, 0xb9, 0xcb, 0x72, 0x3d, 0x2a, 0x50, 0x05, 0xca, 0xed, 0x61, + 0x90, 0x3d, 0x2a, 0x00, 0x5b, 0x07, 0x20, 0x0a, 0x9e, 0xc5, 0xf6, 0x39, + 0x3d, 0xfb, 0x03, 0x57, 0x10, 0x1a, 0xc2, 0x28, 0xc0, 0x27, 0x6a, 0x91, + 0xea, 0x69, 0x0d, 0xfd, 0xb0, 0x5d, 0xbb, 0xc1, 0x3f, 0xec, 0x8a, 0xa5, + 0xac, 0xa1, 0x47, 0xcf, 0x93, 0xc3, 0x8f, 0xbd, 0xe8, 0x6b, 0x2d, 0x03, + 0xae, 0x30, 0x47, 0x3d, 0xa9, 0xd8, 0x4f, 0x43, 0x73, 0xfb, 0x6a, 0x18, + 0x87, 0xc9, 0x0b, 0xb1, 0xf7, 0xe2, 0xa3, 0x1e, 0x29, 0xba, 0x04, 0x88, + 0xe3, 0x8e, 0x3f, 0x7e, 0xa6, 0xb1, 0xd9, 0xca, 0xb9, 0xe7, 0x34, 0x04, + 0x05, 0xb2, 0x57, 0xaf, 0x7a, 0x69, 0x22, 0x1c, 0x8d, 0x76, 0xd5, 0x6f, + 0x26, 0x91, 0x64, 0x96, 0xe1, 0xb2, 0x39, 0x18, 0xe0, 0x53, 0xf5, 0x8b, + 0xab, 0x6d, 0x4a, 0xd5, 0x66, 0x99, 0x48, 0xbb, 0x53, 0x86, 0x7c, 0xf0, + 0xc2, 0xb2, 0x88, 0x5c, 0x7c, 0xac, 0x4b, 0x7a, 0x54, 0x64, 0x17, 0x62, + 0x08, 0x6c, 0xd4, 0x72, 0x5e, 0x5c, 0xc3, 0xe7, 0xba, 0xb1, 0x45, 0x97, + 0x04, 0x8c, 0xe6, 0x81, 0x5a, 0x62, 0xc4, 0x30, 0xf9, 0x8f, 0x34, 0x1d, + 0x30, 0x63, 0x28, 0xfc, 0xd6, 0xde, 0xda, 0x3d, 0x48, 0x6d, 0x22, 0xa4, + 0x52, 0xb2, 0xfd, 0x2a, 0xc2, 0x5c, 0x91, 0xd4, 0x12, 0x28, 0xfb, 0x38, + 0x8f, 0x3b, 0x89, 0x00, 0xf1, 0xcd, 0x20, 0x55, 0x43, 0xf2, 0x9c, 0x29, + 0xf5, 0xa8, 0x6e, 0x2c, 0x3d, 0xa1, 0x76, 0x39, 0xb3, 0x82, 0x39, 0xab, + 0x11, 0xb1, 0xdc, 0x2b, 0x39, 0x27, 0x5c, 0x1c, 0x71, 0x8a, 0xb1, 0x0d, + 0xc8, 0x24, 0xe7, 0xad, 0x66, 0xe2, 0xca, 0x8c, 0xee, 0x8d, 0x37, 0x61, + 0xe5, 0x8a, 0xe7, 0x6e, 0xdc, 0xfd, 0xa5, 0xb1, 0x5a, 0xef, 0x38, 0xdb, + 0x8c, 0x8a, 0xce, 0x92, 0x01, 0x24, 0xa1, 0xb3, 0x9c, 0xfa, 0x55, 0x41, + 0xab, 0xdd, 0x96, 0x59, 0xb1, 0x96, 0x48, 0xe3, 0xde, 0xc4, 0x91, 0xda, + 0xb5, 0xa1, 0xbd, 0x43, 0x8e, 0xd5, 0x56, 0x14, 0x44, 0x84, 0x47, 0x81, + 0x8c, 0x52, 0x24, 0x5e, 0x5a, 0x63, 0x70, 0x23, 0xeb, 0x58, 0xce, 0xd2, + 0xb9, 0x6b, 0x43, 0x69, 0x24, 0x0f, 0xc8, 0x39, 0x14, 0xf2, 0xf8, 0x00, + 0x76, 0xac, 0x88, 0x5d, 0x94, 0xe5, 0x58, 0x0f, 0x6a, 0xbd, 0xe7, 0x02, + 0xaa, 0x4f, 0x5a, 0xc5, 0x46, 0xc8, 0x69, 0x96, 0x62, 0x6c, 0x92, 0x7d, + 0xe9, 0xf3, 0xb1, 0x2d, 0x18, 0x07, 0x19, 0x35, 0x02, 0x4c, 0xbf, 0x4a, + 0x79, 0x60, 0xce, 0x87, 0x3d, 0x29, 0xa5, 0x61, 0x92, 0x86, 0xf9, 0xcd, + 0x29, 0x6a, 0x87, 0x3f, 0x39, 0xc1, 0xa4, 0x2d, 0xc5, 0x73, 0x4c, 0x57, + 0x1e, 0xcd, 0xcf, 0x14, 0xc9, 0x1b, 0x35, 0x1b, 0x31, 0x18, 0x35, 0x19, + 0x7d, 0xc7, 0x1e, 0x94, 0x94, 0x44, 0xc7, 0xe6, 0xa2, 0x91, 0x97, 0x69, + 0xef, 0x4e, 0x06, 0xa0, 0x71, 0xfb, 0xd2, 0x3b, 0x1e, 0x6b, 0x64, 0x84, + 0xe3, 0x71, 0x6c, 0x6e, 0x8c, 0x33, 0x4a, 0x4e, 0xd5, 0x52, 0x3a, 0x91, + 0xc8, 0xa9, 0x24, 0xbe, 0xfb, 0x64, 0x12, 0x07, 0x01, 0xa4, 0x07, 0xe5, + 0x6e, 0x95, 0x48, 0x0d, 0xcd, 0x26, 0x3d, 0x2a, 0x28, 0xf7, 0x28, 0x63, + 0xc7, 0x07, 0x8a, 0xd3, 0xd9, 0xa7, 0xaf, 0x51, 0xf2, 0xab, 0x17, 0x34, + 0xf8, 0x5c, 0xde, 0x8d, 0xff, 0x00, 0x30, 0x6e, 0x0e, 0x2b, 0xd3, 0xbc, + 0x37, 0xe1, 0x88, 0x02, 0x43, 0xe6, 0x69, 0xf2, 0xf9, 0xec, 0x77, 0xe5, + 0xdb, 0x0b, 0xb0, 0x7f, 0x8d, 0x71, 0x9e, 0x10, 0xd2, 0x97, 0x57, 0xd6, + 0x21, 0x82, 0x42, 0x23, 0x40, 0x77, 0x6e, 0x3f, 0xc5, 0x8e, 0xd5, 0xeb, + 0x3a, 0x65, 0xd4, 0xb0, 0x2c, 0xa6, 0xd6, 0xda, 0x5b, 0x94, 0x13, 0x18, + 0x86, 0x18, 0x62, 0x30, 0x0e, 0x3b, 0xd7, 0x25, 0x75, 0x29, 0x4b, 0x7b, + 0x1d, 0x34, 0x68, 0xa9, 0x2b, 0xb3, 0x57, 0x44, 0x2a, 0x93, 0xce, 0x21, + 0xd2, 0x96, 0xc8, 0x81, 0x81, 0x2e, 0x77, 0x67, 0xdb, 0x6d, 0x4f, 0x1d, + 0xb6, 0xa3, 0x2c, 0xf2, 0x5c, 0x4f, 0x27, 0xc8, 0x18, 0xed, 0x8d, 0x00, + 0x03, 0xea, 0x6b, 0x8b, 0xf1, 0x6e, 0xab, 0xe2, 0x2b, 0x07, 0x7d, 0x46, + 0xca, 0x78, 0x74, 0xfb, 0x44, 0x5c, 0x62, 0x52, 0x0b, 0x4a, 0x7e, 0x9c, + 0xd7, 0x18, 0xdf, 0x14, 0x7c, 0x49, 0x13, 0xb5, 0xad, 0xe5, 0xe0, 0x84, + 0xc9, 0x80, 0xd2, 0x98, 0x46, 0xe8, 0xc7, 0xa8, 0x02, 0xb3, 0x8e, 0x1e, + 0x73, 0x8e, 0xda, 0x96, 0xed, 0x4c, 0xee, 0xfc, 0x7f, 0xab, 0xdb, 0x8b, + 0x7d, 0x3e, 0x3b, 0x7e, 0x24, 0x17, 0x91, 0xbb, 0x9c, 0x8e, 0x30, 0x7d, + 0x6b, 0xa5, 0xbf, 0x8e, 0x3b, 0xc9, 0xe0, 0x5d, 0xa9, 0x24, 0xa9, 0x19, + 0x2b, 0x8f, 0x98, 0x0d, 0xc3, 0x03, 0x24, 0x57, 0x85, 0xea, 0xf3, 0xda, + 0xdd, 0x58, 0x8d, 0x42, 0xdf, 0x58, 0x7b, 0xa7, 0x33, 0xaf, 0x9a, 0x24, + 0x5d, 0xac, 0x4f, 0xa8, 0x5f, 0x4a, 0xf5, 0x4f, 0x0c, 0xfd, 0x8a, 0xca, + 0xd2, 0x2b, 0xe1, 0xaa, 0x99, 0xfc, 0xd5, 0x0c, 0x50, 0xf1, 0xc7, 0xfb, + 0xbd, 0x6a, 0x6a, 0x61, 0x65, 0x4e, 0x2a, 0xdb, 0xfd, 0xc1, 0x1b, 0xc9, + 0x9c, 0xd6, 0xa5, 0xe0, 0x4d, 0x75, 0x1d, 0xe4, 0x98, 0xc4, 0xe8, 0x32, + 0x77, 0x99, 0x70, 0x3f, 0x5a, 0xa7, 0x71, 0xe0, 0x7b, 0xe8, 0xb4, 0x36, + 0xd5, 0xfe, 0xd3, 0x6e, 0xd0, 0x63, 0xa2, 0xbe, 0x4f, 0x5c, 0x7d, 0x3a, + 0xd7, 0x79, 0xac, 0xf8, 0xfb, 0xc3, 0x62, 0xc9, 0xe0, 0x9e, 0xe1, 0xc8, + 0x95, 0x4a, 0xe7, 0xc9, 0x62, 0x07, 0xe9, 0x5a, 0x1a, 0x3e, 0xa1, 0xa2, + 0x6a, 0x9a, 0x6a, 0xc5, 0xa6, 0xc9, 0x14, 0xb6, 0xa0, 0x63, 0xca, 0x03, + 0xa7, 0xd4, 0x1a, 0x5c, 0xd5, 0x56, 0xb3, 0xfb, 0xc4, 0xa9, 0xc5, 0xbb, + 0x1e, 0x1e, 0xd6, 0x53, 0xc4, 0x01, 0x78, 0xdc, 0x06, 0xe4, 0x64, 0x70, + 0x6b, 0xd3, 0x3c, 0x1f, 0xe1, 0xfb, 0x33, 0xe1, 0xc5, 0xb9, 0xba, 0x88, + 0x86, 0x91, 0x8b, 0x17, 0x3d, 0x40, 0x1d, 0x30, 0x2b, 0xb3, 0x68, 0x23, + 0x54, 0xdb, 0xe4, 0xae, 0xdc, 0x60, 0x02, 0x3b, 0x55, 0x3b, 0xeb, 0x26, + 0x96, 0xd5, 0x0c, 0x52, 0xf9, 0x7f, 0x2e, 0x07, 0xa2, 0xfe, 0x15, 0x9d, + 0x59, 0x73, 0x46, 0xcc, 0xd6, 0x34, 0x54, 0x75, 0x44, 0x76, 0x1e, 0x25, + 0xd3, 0xe0, 0x4f, 0xb3, 0xdb, 0x96, 0x60, 0x9f, 0x28, 0x2e, 0xd8, 0xfd, + 0x6a, 0xf4, 0x42, 0x5d, 0x5e, 0xcd, 0xa7, 0xc4, 0x50, 0xcd, 0x23, 0x6f, + 0x85, 0xc8, 0xdc, 0x54, 0x0e, 0x9f, 0xd7, 0xf3, 0xaf, 0x20, 0xbc, 0xb7, + 0x16, 0x97, 0x12, 0x99, 0x2e, 0x1a, 0x3d, 0xc4, 0x8e, 0x17, 0x20, 0xf3, + 0xd4, 0x0c, 0xf4, 0xf7, 0xaf, 0x4b, 0xd0, 0x24, 0x36, 0x5a, 0x7c, 0x7e, + 0x7d, 0xca, 0xbc, 0x25, 0x41, 0x56, 0x23, 0x1b, 0x73, 0xda, 0xa2, 0x14, + 0x5c, 0x3c, 0xd1, 0x29, 0x73, 0x5c, 0x87, 0x53, 0xd0, 0x2d, 0x6e, 0xed, + 0x26, 0x1a, 0x84, 0x30, 0xa5, 0xec, 0xa3, 0x68, 0x95, 0x73, 0xb7, 0x7f, + 0x63, 0x5e, 0x77, 0x7d, 0xe1, 0x9b, 0xdd, 0x32, 0x77, 0x86, 0xe1, 0x06, + 0x01, 0xc8, 0xc1, 0xe0, 0x83, 0xde, 0xbd, 0x8a, 0x5d, 0x5a, 0xc8, 0x6d, + 0x0c, 0xea, 0xca, 0xa8, 0x64, 0xc8, 0xe7, 0x18, 0xc5, 0x71, 0xbe, 0x24, + 0xd7, 0x63, 0xbb, 0x80, 0xaa, 0xb2, 0xb8, 0x7e, 0x41, 0x5f, 0x4f, 0x43, + 0x44, 0x2b, 0x4a, 0x2b, 0x95, 0x11, 0x38, 0xc4, 0xf3, 0x19, 0xac, 0x4a, + 0xb1, 0x66, 0x1c, 0x0f, 0x4a, 0xae, 0x63, 0x46, 0x71, 0xbb, 0x38, 0x1d, + 0x8f, 0x7a, 0xd6, 0xb9, 0x9b, 0x0d, 0xb7, 0x18, 0xe7, 0xb5, 0x62, 0xdc, + 0x96, 0xf3, 0x1b, 0x6b, 0x73, 0xe9, 0x5e, 0x85, 0x36, 0xe4, 0xb5, 0x39, + 0x3c, 0x88, 0x35, 0x14, 0x86, 0x09, 0x30, 0x87, 0x66, 0x46, 0x71, 0xe9, + 0x54, 0x8d, 0xcb, 0x85, 0x19, 0xf9, 0x80, 0xa7, 0x4a, 0x8e, 0xed, 0xf3, + 0xe7, 0xf1, 0xa9, 0x6d, 0x56, 0xcc, 0x44, 0xc2, 0x70, 0xd9, 0x51, 0x90, + 0x41, 0xeb, 0x5d, 0x09, 0x28, 0xc7, 0x5d, 0x44, 0xf4, 0x1f, 0x12, 0x1b, + 0xc8, 0x4f, 0x96, 0x87, 0x8f, 0x6a, 0x49, 0x6d, 0x8a, 0xa9, 0x2d, 0x19, + 0x1e, 0xf4, 0x96, 0xb7, 0xcb, 0x6f, 0x38, 0x44, 0x63, 0xe4, 0xee, 0xe4, + 0x77, 0xab, 0x57, 0x1a, 0x84, 0x13, 0x06, 0x54, 0x8c, 0x95, 0x3e, 0xa7, + 0x90, 0x6a, 0x5f, 0x32, 0x96, 0x8b, 0x41, 0xdc, 0xcc, 0x2b, 0xb5, 0x0b, + 0x03, 0xcf, 0xbd, 0x22, 0xca, 0xbb, 0x8e, 0xf8, 0x95, 0x89, 0xfc, 0x28, + 0xf3, 0x0e, 0xd2, 0x18, 0x54, 0x41, 0x94, 0x49, 0xdc, 0x56, 0xca, 0xe0, + 0x2c, 0xa6, 0xdd, 0xdb, 0x04, 0x14, 0x6f, 0xcc, 0x50, 0x96, 0x91, 0xbe, + 0x0f, 0x98, 0xaa, 0x3b, 0x8c, 0x75, 0xa0, 0xc6, 0xad, 0x20, 0x20, 0xd4, + 0x8d, 0x19, 0x38, 0xfa, 0xd5, 0xf3, 0xd8, 0x04, 0x7b, 0x01, 0xb8, 0x08, + 0x9b, 0xcd, 0x53, 0xd7, 0x1d, 0x45, 0x32, 0x5b, 0x59, 0x58, 0x00, 0xb0, + 0x3b, 0x46, 0x9f, 0xc5, 0xb7, 0xa5, 0x2c, 0x81, 0xc3, 0x8c, 0x64, 0x0f, + 0x6a, 0x9a, 0x39, 0xee, 0x23, 0x01, 0x52, 0x57, 0x03, 0xbf, 0x34, 0xd4, + 0xfa, 0x8a, 0xc5, 0x3d, 0xfb, 0x53, 0x2a, 0x8c, 0x5b, 0x3c, 0xf1, 0xc5, + 0x16, 0xf7, 0x46, 0x1b, 0x85, 0x75, 0x4c, 0x10, 0x73, 0x93, 0x5a, 0x3f, + 0x6d, 0xb8, 0x85, 0x08, 0x42, 0x08, 0x3d, 0x41, 0x15, 0x07, 0xdb, 0xb2, + 0x4a, 0x4d, 0x02, 0x73, 0xd4, 0x81, 0xd6, 0x9a, 0x71, 0x68, 0x4d, 0x77, + 0x36, 0x65, 0xd5, 0x20, 0x3b, 0x7f, 0x78, 0x58, 0x01, 0xd9, 0x7a, 0xd2, + 0x2e, 0xa5, 0x1d, 0xca, 0x04, 0x8f, 0xe5, 0x63, 0xd2, 0xb3, 0x8d, 0xc5, + 0xb9, 0x40, 0x3e, 0xca, 0xbd, 0x31, 0x90, 0x6a, 0x9a, 0x85, 0x32, 0x6f, + 0x42, 0x55, 0x41, 0xe9, 0x5c, 0xde, 0xc2, 0x06, 0x7e, 0xcd, 0x23, 0x46, + 0x59, 0x18, 0xc9, 0xb7, 0x39, 0x14, 0x04, 0x66, 0xfb, 0xc7, 0x03, 0xb1, + 0xa8, 0x58, 0x8d, 0xb9, 0x45, 0x20, 0xf7, 0x34, 0xe5, 0xba, 0x60, 0x46, + 0xc2, 0x0a, 0xa8, 0xc3, 0x31, 0x14, 0x38, 0xf6, 0x13, 0x8d, 0xb6, 0x60, + 0x57, 0x7f, 0xcc, 0x46, 0x01, 0xa1, 0x98, 0xaf, 0x19, 0xce, 0x3a, 0x52, + 0xec, 0x90, 0xc6, 0x1c, 0x10, 0x54, 0xf6, 0xa9, 0x5a, 0xd7, 0x6a, 0x87, + 0x76, 0xc6, 0x47, 0x6a, 0x2e, 0x89, 0xb7, 0x72, 0xa3, 0x12, 0x1b, 0x2a, + 0x69, 0xc0, 0x86, 0x62, 0x4f, 0x5a, 0x73, 0x42, 0xe0, 0xef, 0x03, 0x0b, + 0xee, 0x28, 0x46, 0x89, 0x1f, 0xe6, 0x04, 0x8e, 0xb4, 0xee, 0x24, 0xae, + 0x40, 0x6d, 0x91, 0xa4, 0x2e, 0x5a, 0x9d, 0x22, 0x71, 0x8e, 0x99, 0xe8, + 0x69, 0xd7, 0x0f, 0x0c, 0xb8, 0x78, 0x98, 0x86, 0xce, 0x08, 0xa7, 0x45, + 0x19, 0x78, 0xc1, 0x70, 0x70, 0x39, 0xeb, 0x4f, 0x99, 0xda, 0xec, 0xb7, + 0x7b, 0x10, 0x48, 0x1a, 0x35, 0xdb, 0xb0, 0xb2, 0x91, 0xd6, 0x98, 0x0e, + 0xc8, 0xf6, 0x04, 0xe3, 0xd4, 0x54, 0xf2, 0xca, 0xc1, 0x59, 0x14, 0x10, + 0x87, 0xad, 0x40, 0xd2, 0x80, 0x9b, 0x76, 0xe4, 0x55, 0x2d, 0x56, 0xc4, + 0xa4, 0x43, 0x69, 0xb8, 0x4a, 0x58, 0x26, 0x57, 0x3c, 0x1c, 0x54, 0xa7, + 0xfd, 0x67, 0xca, 0x83, 0x3e, 0xb8, 0xa9, 0x60, 0x42, 0xa9, 0xc6, 0xe0, + 0x18, 0xd4, 0x67, 0xcd, 0x12, 0x12, 0x99, 0xc9, 0xe8, 0x2a, 0x9c, 0xae, + 0xd8, 0xd4, 0x50, 0xa3, 0x72, 0x23, 0x1c, 0x72, 0x69, 0x7e, 0x62, 0x57, + 0x0b, 0xda, 0x93, 0x2e, 0xc9, 0xc8, 0xc3, 0x75, 0xa9, 0x43, 0x15, 0xc6, + 0xee, 0x38, 0xa9, 0x61, 0x65, 0x7b, 0x8a, 0xaf, 0xcf, 0x03, 0x81, 0xde, + 0xac, 0x86, 0xf3, 0xbe, 0x40, 0x0e, 0x7d, 0x6a, 0xb0, 0x40, 0x5c, 0x1c, + 0xfe, 0x54, 0x1b, 0xf3, 0x11, 0x21, 0x79, 0x15, 0x2a, 0x29, 0xb3, 0x4e, + 0x58, 0xbd, 0xcd, 0x98, 0xad, 0x44, 0x51, 0x64, 0x48, 0x09, 0xea, 0x6a, + 0x07, 0x74, 0x07, 0x93, 0x59, 0x4b, 0xa8, 0x4c, 0xf9, 0x1b, 0xf0, 0xbd, + 0x2a, 0xf5, 0xac, 0x05, 0x81, 0x91, 0x8e, 0x47, 0x6c, 0xd2, 0xab, 0x18, + 0xad, 0x4c, 0xa7, 0x18, 0xee, 0x2b, 0x6c, 0x69, 0x57, 0x61, 0xc6, 0x6a, + 0xcb, 0xc4, 0x91, 0x80, 0x03, 0x92, 0x4f, 0x5c, 0x8a, 0x58, 0x92, 0x16, + 0x97, 0x0d, 0xb4, 0xb0, 0xe9, 0xed, 0x56, 0x2e, 0x94, 0x79, 0x07, 0x78, + 0xe3, 0x1c, 0x56, 0x0e, 0x4a, 0xe9, 0x19, 0xde, 0xfa, 0x15, 0x30, 0x98, + 0xcb, 0x00, 0x45, 0x51, 0x9d, 0x77, 0x39, 0xd9, 0xc2, 0xf6, 0xa7, 0x6d, + 0xc0, 0xe0, 0x1c, 0x51, 0xf7, 0x72, 0x4f, 0x15, 0xa4, 0x74, 0x37, 0x84, + 0x79, 0x7a, 0x90, 0x88, 0xc9, 0x39, 0x20, 0x1a, 0x90, 0x6d, 0x58, 0xb0, + 0xa7, 0x19, 0xea, 0x08, 0xa7, 0xc7, 0x2a, 0x32, 0xf6, 0x18, 0x14, 0x9b, + 0x81, 0xe7, 0x15, 0x77, 0x66, 0x97, 0x68, 0x11, 0x42, 0x01, 0xb7, 0xad, + 0x38, 0xe1, 0x8f, 0xa0, 0xa6, 0x39, 0xc6, 0x71, 0x82, 0x6a, 0x35, 0x79, + 0x24, 0x60, 0x30, 0x38, 0xa2, 0xd7, 0x57, 0x13, 0xbf, 0x42, 0x50, 0xc5, + 0x0e, 0x31, 0xcd, 0x0f, 0x99, 0x7f, 0x87, 0x8f, 0xad, 0x39, 0x63, 0x04, + 0xe4, 0x91, 0x9a, 0x97, 0x6b, 0x30, 0x01, 0x8f, 0xca, 0xbd, 0x05, 0x4b, + 0x69, 0x09, 0xad, 0x08, 0x4d, 0xb8, 0x2b, 0xb4, 0x00, 0x0e, 0x29, 0x91, + 0xef, 0x4e, 0x07, 0x5f, 0x4a, 0xb6, 0x99, 0xc8, 0x04, 0x11, 0xe9, 0x52, + 0xb4, 0x09, 0xc3, 0x33, 0x80, 0xd8, 0xe9, 0x49, 0x4d, 0xec, 0x4c, 0x39, + 0xb6, 0x45, 0x64, 0x3c, 0x81, 0xdc, 0xd4, 0x8a, 0xa4, 0x39, 0x0f, 0xb8, + 0x63, 0xa0, 0x14, 0x79, 0x39, 0x39, 0x03, 0x00, 0x0a, 0x95, 0x14, 0xa8, + 0xf5, 0xfa, 0x9a, 0x52, 0x65, 0xa4, 0xd8, 0x7d, 0xac, 0xc2, 0x81, 0x96, + 0x3c, 0x81, 0xef, 0xcd, 0x43, 0xf6, 0xb7, 0x98, 0x92, 0xe3, 0x00, 0xf4, + 0xcd, 0x39, 0xa3, 0x52, 0x47, 0xa7, 0xd6, 0x91, 0x63, 0x09, 0xdc, 0x37, + 0xa5, 0x4d, 0xa3, 0xbf, 0x50, 0x50, 0x5d, 0x49, 0x03, 0x6e, 0x19, 0x77, + 0x2a, 0xa3, 0xd2, 0x9a, 0xd2, 0x80, 0x00, 0x4c, 0xb2, 0xe7, 0xf8, 0x78, + 0x34, 0x79, 0x45, 0x89, 0x7c, 0x80, 0x07, 0xa9, 0xa6, 0xa9, 0x78, 0xe3, + 0x7d, 0xac, 0x09, 0x3d, 0x28, 0xb2, 0x33, 0x71, 0xbb, 0xd0, 0x24, 0x68, + 0x83, 0x16, 0x28, 0xc1, 0x87, 0x40, 0x4d, 0x24, 0x32, 0x79, 0xa4, 0xab, + 0x9d, 0xbe, 0x80, 0x9f, 0xe9, 0x4d, 0x8d, 0x1c, 0xe1, 0x89, 0x25, 0xbb, + 0x9a, 0x56, 0x48, 0x46, 0x18, 0x92, 0x64, 0xeb, 0x4e, 0xcb, 0x61, 0xf2, + 0x8f, 0x48, 0x96, 0x3e, 0x4e, 0xd6, 0xf7, 0xcf, 0x34, 0xdb, 0x86, 0x45, + 0x75, 0xf2, 0xb9, 0xcd, 0x2f, 0x94, 0x59, 0x4c, 0x99, 0x54, 0x02, 0x98, + 0xb7, 0x01, 0x9b, 0x98, 0x97, 0x1d, 0x38, 0xa5, 0xbb, 0xb8, 0x92, 0xd4, + 0x91, 0x5a, 0x59, 0x10, 0xfc, 0xa0, 0x0c, 0x75, 0x35, 0x11, 0x5f, 0x31, + 0x48, 0x75, 0xc6, 0x3a, 0x11, 0x4f, 0x56, 0xc8, 0x20, 0x10, 0x07, 0xa5, + 0x21, 0x2c, 0x39, 0xeb, 0xec, 0x28, 0xd8, 0xb5, 0x14, 0x20, 0xdb, 0x1b, + 0x64, 0x0c, 0xf1, 0x4a, 0xd2, 0xbe, 0x06, 0x47, 0xca, 0x29, 0x70, 0xce, + 0x46, 0xe0, 0x4f, 0xd0, 0x54, 0xd1, 0x28, 0x59, 0x7e, 0xee, 0xf5, 0xf4, + 0x34, 0x36, 0xba, 0x86, 0xc4, 0x21, 0x8e, 0xcc, 0x7a, 0x9a, 0x58, 0x97, + 0x63, 0xee, 0xc9, 0xa9, 0x1e, 0x09, 0x14, 0xb3, 0x95, 0x00, 0x67, 0x9e, + 0x69, 0x32, 0x08, 0xe9, 0xc7, 0xa5, 0x09, 0xf6, 0x29, 0x3b, 0x88, 0xe7, + 0x23, 0x27, 0x81, 0x48, 0x55, 0xb6, 0x83, 0xb8, 0x95, 0x06, 0xa4, 0x31, + 0x65, 0x46, 0x17, 0x9c, 0x50, 0x9b, 0x22, 0x42, 0xa4, 0x1e, 0x7b, 0x63, + 0xbd, 0x09, 0xe8, 0x2f, 0x42, 0x12, 0x46, 0x39, 0x7c, 0x0a, 0x97, 0x1d, + 0xb8, 0xfa, 0xd3, 0x24, 0x50, 0x5b, 0x24, 0x00, 0x3d, 0x31, 0x40, 0x65, + 0x1c, 0x74, 0xc5, 0x5d, 0xb4, 0xd0, 0xa1, 0xdb, 0x8a, 0xf5, 0x19, 0xed, + 0x9a, 0x8a, 0x52, 0xa4, 0x70, 0x29, 0xcc, 0x77, 0x20, 0x61, 0xeb, 0xc5, + 0x46, 0xae, 0x01, 0xe7, 0x93, 0xee, 0x2b, 0x78, 0x45, 0x6e, 0x31, 0x0b, + 0x77, 0x27, 0x03, 0xda, 0x92, 0x4c, 0xcf, 0x26, 0xe6, 0xc0, 0x00, 0x74, + 0xa6, 0x72, 0xc4, 0xae, 0xdc, 0x96, 0x3d, 0x71, 0xd2, 0x9f, 0x84, 0x8b, + 0xef, 0x2e, 0x48, 0xf4, 0xad, 0x52, 0xb0, 0x99, 0x34, 0x3b, 0x57, 0x2e, + 0xa0, 0xe4, 0x0c, 0x63, 0xa5, 0x02, 0x42, 0xca, 0x7a, 0xfa, 0x8a, 0x88, + 0x49, 0xe6, 0x37, 0x65, 0xa8, 0xd8, 0xe0, 0xe0, 0x83, 0xb7, 0xd0, 0x1a, + 0xc6, 0x49, 0xa6, 0x43, 0x6f, 0xb9, 0x6d, 0x66, 0xca, 0xe3, 0x83, 0x8e, + 0xb4, 0xed, 0xc8, 0xa4, 0x90, 0xa3, 0x9e, 0x86, 0xa0, 0x86, 0xdb, 0x11, + 0x96, 0x12, 0xe3, 0x3d, 0x46, 0x2a, 0x74, 0x5c, 0x20, 0x84, 0xe7, 0x3d, + 0xdb, 0x15, 0x84, 0xad, 0xd0, 0xc9, 0xc8, 0x5c, 0x29, 0x19, 0xcf, 0x34, + 0xb3, 0x99, 0x23, 0xc0, 0x95, 0x48, 0x52, 0x38, 0x23, 0xbd, 0x32, 0x48, + 0x63, 0x55, 0x2c, 0x25, 0x3b, 0x87, 0x6c, 0x53, 0xe1, 0x4f, 0xb6, 0x5b, + 0xab, 0x99, 0x72, 0xc8, 0x71, 0xb4, 0xf6, 0xa7, 0x18, 0x26, 0x3e, 0x64, + 0x46, 0xb2, 0x46, 0xa3, 0x0c, 0x40, 0x18, 0xe0, 0x54, 0xd6, 0x4f, 0x0b, + 0xb8, 0xdf, 0x91, 0x9e, 0x9e, 0x94, 0xc7, 0x56, 0x31, 0xe2, 0x46, 0x50, + 0xd9, 0xea, 0x00, 0xa5, 0x8e, 0x08, 0x0a, 0x82, 0xae, 0x59, 0xc1, 0xe4, + 0x9e, 0x94, 0xa4, 0x94, 0x49, 0xbf, 0x61, 0x64, 0xcf, 0xda, 0x99, 0x21, + 0x52, 0xcb, 0xf5, 0xa6, 0x30, 0xdb, 0x9f, 0x38, 0x14, 0x3d, 0xb8, 0xcd, + 0x43, 0x70, 0xd8, 0x9b, 0x2a, 0x0a, 0x01, 0xd8, 0x1a, 0x8d, 0xd9, 0xd9, + 0x72, 0xed, 0xc7, 0xad, 0x34, 0x85, 0xcc, 0xf7, 0x25, 0x89, 0x77, 0x48, + 0x43, 0x10, 0x05, 0x3e, 0x45, 0x11, 0xe4, 0xa9, 0xe4, 0xfa, 0xd4, 0x71, + 0xe1, 0x63, 0xca, 0xf2, 0x7d, 0xe9, 0x0b, 0x6e, 0x3f, 0x37, 0x4a, 0x2c, + 0xdb, 0x2d, 0x3b, 0x8d, 0xf2, 0xc8, 0x39, 0x01, 0x79, 0xe4, 0x62, 0xa3, + 0x66, 0xdc, 0x46, 0x71, 0xc7, 0x40, 0x05, 0x59, 0x57, 0xda, 0x43, 0xa8, + 0x1f, 0x28, 0xc0, 0xcf, 0x35, 0x51, 0xb3, 0xbf, 0x71, 0xc5, 0x74, 0x53, + 0x6e, 0xc6, 0xa9, 0x8d, 0x6d, 0xcc, 0x32, 0x1b, 0x0c, 0x7a, 0x52, 0x0c, + 0xef, 0x1b, 0x9f, 0x9e, 0xb9, 0x34, 0xf4, 0x8f, 0x2a, 0x4b, 0x77, 0xe9, + 0x93, 0x5a, 0xc9, 0x61, 0x6a, 0x21, 0x56, 0x3b, 0xd8, 0x9a, 0xe9, 0x8c, + 0x74, 0xd4, 0x65, 0x1b, 0xd8, 0x3e, 0xd5, 0x6c, 0x62, 0x7c, 0x7c, 0xc3, + 0xe5, 0x3e, 0xf5, 0xce, 0x79, 0x2f, 0x11, 0x38, 0x56, 0xe0, 0xe3, 0x24, + 0x57, 0x5a, 0xd1, 0x4a, 0xb2, 0x04, 0x45, 0x0d, 0x8e, 0x95, 0x9f, 0x7f, + 0x04, 0x88, 0xad, 0x20, 0x8c, 0x86, 0xfa, 0x74, 0x34, 0x4e, 0xe9, 0x68, + 0x44, 0xdb, 0x4a, 0xe8, 0xc3, 0x64, 0x0d, 0x8c, 0x80, 0x33, 0xd4, 0x9a, + 0x95, 0x63, 0x42, 0x07, 0x61, 0xe8, 0x3b, 0xd3, 0x22, 0x8e, 0xe6, 0x5c, + 0xee, 0x1d, 0xfa, 0x1a, 0xb9, 0x14, 0x79, 0xf9, 0x1e, 0x3c, 0x30, 0xee, + 0x2b, 0x29, 0x3b, 0x1c, 0xce, 0x4c, 0xab, 0xb6, 0x36, 0x3b, 0x70, 0x46, + 0x2a, 0x5f, 0x28, 0x80, 0x19, 0x7f, 0x2a, 0xb2, 0xd6, 0xe8, 0x09, 0x6c, + 0xfe, 0x42, 0x99, 0xd0, 0x70, 0x72, 0x2a, 0x39, 0xef, 0xb0, 0xae, 0x24, + 0x5b, 0x4f, 0xff, 0x00, 0x5e, 0x9b, 0x3d, 0xc6, 0xc5, 0xc2, 0x0e, 0x68, + 0x60, 0xc7, 0xee, 0x02, 0x4d, 0x41, 0x71, 0xe6, 0xed, 0xfb, 0x87, 0xde, + 0x88, 0xc5, 0x37, 0xa9, 0x71, 0xb3, 0x7a, 0x94, 0x27, 0x32, 0x96, 0xcb, + 0x9d, 0xc2, 0x9f, 0x0c, 0x3e, 0x60, 0xc6, 0xe2, 0xbe, 0xc6, 0xa7, 0x8e, + 0xdc, 0xbf, 0xde, 0xe3, 0xda, 0xad, 0xa4, 0x41, 0x06, 0x0f, 0x4a, 0xda, + 0x55, 0x2c, 0xac, 0x8b, 0x93, 0xec, 0x67, 0xbd, 0xb4, 0x91, 0xb9, 0x50, + 0x72, 0xbd, 0x72, 0x6a, 0x78, 0xb1, 0xbb, 0x9c, 0x37, 0xa9, 0xab, 0x9b, + 0xa2, 0x5c, 0xb3, 0xf2, 0x00, 0xaa, 0x17, 0x72, 0xc7, 0x23, 0x93, 0x09, + 0xdb, 0x91, 0xc8, 0x1d, 0x2a, 0x54, 0x9c, 0xf4, 0x27, 0x95, 0xc8, 0x49, + 0xd4, 0x3a, 0xe5, 0x53, 0x77, 0xa1, 0xcd, 0x50, 0x22, 0x44, 0x6c, 0x64, + 0x82, 0x3d, 0xea, 0xc4, 0x6e, 0x55, 0x48, 0x24, 0xe3, 0xb0, 0xcd, 0x3a, + 0x45, 0x57, 0x8b, 0x2a, 0xad, 0xbb, 0xf0, 0xad, 0xa2, 0xb9, 0x74, 0x34, + 0x8c, 0x1a, 0x45, 0x5f, 0x3a, 0x4f, 0xef, 0xb7, 0xe7, 0x49, 0xe6, 0xc9, + 0xfd, 0xf6, 0xfc, 0xe9, 0x4c, 0x6c, 0x3f, 0x86, 0xa7, 0x16, 0x67, 0x66, + 0x4b, 0x73, 0xe8, 0x2a, 0xdb, 0x8a, 0x1a, 0x8b, 0x64, 0x02, 0x69, 0x07, + 0xf1, 0xb7, 0xe7, 0x4f, 0x17, 0x77, 0x03, 0xa4, 0xcd, 0xf9, 0xd3, 0x65, + 0x84, 0xc4, 0x47, 0x3c, 0x1a, 0x8e, 0x8b, 0x26, 0x27, 0x74, 0x58, 0x17, + 0xf7, 0x43, 0xa4, 0xef, 0x52, 0x0d, 0x56, 0xf5, 0x4f, 0xfc, 0x7c, 0x35, + 0x53, 0xa4, 0xa3, 0x92, 0x3d, 0x82, 0xec, 0xd1, 0x5d, 0x6e, 0xf5, 0x7f, + 0xe5, 0xa6, 0x7e, 0xa2, 0xa5, 0x5d, 0x7e, 0xec, 0x01, 0x90, 0xa7, 0xf0, + 0xac, 0xaa, 0x3a, 0x54, 0xfb, 0x28, 0x76, 0x0e, 0x66, 0x6c, 0x8f, 0x10, + 0x4c, 0x57, 0x0c, 0x3f, 0x4a, 0x72, 0xeb, 0xcc, 0x17, 0x1f, 0xcd, 0x6b, + 0x13, 0x34, 0x52, 0xf6, 0x30, 0xec, 0x3e, 0x76, 0x6e, 0x9d, 0x71, 0x8f, + 0xf1, 0x8f, 0xfb, 0xe6, 0x81, 0xaa, 0x86, 0x1c, 0xca, 0xbf, 0x95, 0x61, + 0x51, 0x49, 0xd1, 0x8b, 0x1f, 0x3b, 0x3a, 0x9b, 0x09, 0x0d, 0xc2, 0xca, + 0xd1, 0x90, 0xc7, 0xe9, 0x5a, 0xda, 0x1e, 0x9c, 0x6e, 0xf5, 0x15, 0xb6, + 0x65, 0x00, 0x49, 0xf7, 0xb3, 0xd1, 0x3d, 0xeb, 0x13, 0xc3, 0xab, 0x8b, + 0x59, 0x5f, 0xd5, 0xab, 0xa9, 0xd0, 0x35, 0x28, 0x74, 0xcd, 0x50, 0xdd, + 0x4f, 0x13, 0x48, 0x42, 0x1d, 0x8a, 0x0f, 0x1b, 0xbd, 0xfd, 0xab, 0x8a, + 0xb3, 0xe5, 0xbc, 0x62, 0x74, 0x53, 0xe8, 0xd9, 0xad, 0x7b, 0xa8, 0xdb, + 0xf8, 0x5f, 0x45, 0x93, 0x64, 0x11, 0x5c, 0x5f, 0x89, 0x70, 0xa6, 0x45, + 0xc8, 0x09, 0xea, 0x2a, 0x96, 0x9f, 0xf1, 0x2e, 0xe2, 0xdb, 0xcb, 0x58, + 0xd6, 0x0b, 0x74, 0x76, 0xdd, 0x30, 0x86, 0xdf, 0x07, 0xf9, 0xf3, 0x58, + 0x3a, 0xdd, 0xc4, 0xfa, 0x95, 0xfb, 0x2b, 0x1f, 0xf5, 0xc7, 0x71, 0xf9, + 0xb0, 0x07, 0xb5, 0x67, 0x1d, 0x1e, 0x48, 0x0f, 0xef, 0x1d, 0x07, 0xa6, + 0x1b, 0x39, 0xa2, 0x14, 0xe3, 0xcb, 0xef, 0x6e, 0x6c, 0xea, 0x4b, 0xa6, + 0xc7, 0x43, 0xe3, 0x3f, 0x19, 0xb7, 0x88, 0x2e, 0xa2, 0x8d, 0x26, 0x91, + 0xec, 0xe1, 0x21, 0x95, 0x4a, 0xed, 0x24, 0xf7, 0xcd, 0x60, 0xdf, 0xea, + 0x71, 0xea, 0x91, 0x31, 0x9a, 0xdf, 0x37, 0x25, 0x81, 0xf3, 0x8b, 0x73, + 0x80, 0x31, 0x8a, 0x63, 0x58, 0xc6, 0xd0, 0x6f, 0x12, 0x02, 0x47, 0x5e, + 0x29, 0x63, 0xb2, 0x43, 0x19, 0x2a, 0xf9, 0x60, 0x7a, 0x77, 0xad, 0x54, + 0x52, 0x5a, 0x10, 0xdb, 0x7b, 0x94, 0xed, 0x99, 0x6d, 0x64, 0xcf, 0x94, + 0xaf, 0x91, 0xfc, 0x55, 0xd0, 0x0f, 0x18, 0xeb, 0x09, 0x6a, 0x96, 0xd0, + 0xc9, 0x1c, 0x11, 0xaa, 0xed, 0x1e, 0x5a, 0x60, 0xd5, 0x48, 0xf4, 0x99, + 0xd8, 0xf1, 0x19, 0xd9, 0x9c, 0x64, 0xf1, 0x4a, 0xfa, 0x4c, 0xd1, 0xcf, + 0xe5, 0x96, 0x8f, 0xa7, 0x5d, 0xc2, 0x87, 0x66, 0xf5, 0x1a, 0xba, 0x45, + 0x2b, 0xbb, 0xab, 0xdb, 0xb5, 0x1f, 0x68, 0x95, 0xe4, 0xe7, 0x23, 0x27, + 0xa5, 0x75, 0xff, 0x00, 0x0d, 0xfc, 0x41, 0x1f, 0x87, 0x75, 0x39, 0x92, + 0xe9, 0x1d, 0xa2, 0x9c, 0x0e, 0x9e, 0xb5, 0xc8, 0xdc, 0x48, 0x20, 0xbb, + 0xf2, 0x23, 0x7d, 0xe9, 0xc6, 0x72, 0x3b, 0xd4, 0xf1, 0xdf, 0x8b, 0x19, + 0x23, 0x78, 0x8b, 0x79, 0xaa, 0xc1, 0x86, 0x17, 0x8c, 0xe6, 0xa2, 0xa5, + 0x3f, 0x69, 0x0e, 0x51, 0x27, 0x67, 0x73, 0xe9, 0xe8, 0xe5, 0x82, 0xed, + 0x0c, 0x96, 0xf2, 0x2b, 0x28, 0x5c, 0x90, 0x1b, 0x38, 0xac, 0xeb, 0xbb, + 0x59, 0x20, 0x64, 0xb9, 0x8b, 0x22, 0x2c, 0x7e, 0xfb, 0x9e, 0x83, 0x1d, + 0x6b, 0xcc, 0x2d, 0xfe, 0x28, 0xdd, 0xdd, 0x5e, 0x58, 0xc2, 0xf6, 0x30, + 0xc6, 0xed, 0x20, 0x5b, 0x89, 0x10, 0xf1, 0x28, 0x3c, 0x7d, 0xda, 0xf4, + 0x59, 0x7c, 0x4f, 0xa6, 0x1d, 0xf6, 0x57, 0x00, 0xa7, 0x61, 0x91, 0xc3, + 0x0f, 0x4a, 0xf1, 0x2b, 0x42, 0xa4, 0x1d, 0xa4, 0xbd, 0x0e, 0xa8, 0x54, + 0xbe, 0xc7, 0x13, 0xae, 0x41, 0x67, 0x75, 0x8b, 0x74, 0xb6, 0x92, 0x4b, + 0xa8, 0xf7, 0x61, 0xc1, 0xda, 0x36, 0x93, 0x91, 0xfa, 0x1a, 0xe9, 0xac, + 0xaf, 0x62, 0x4b, 0x28, 0x6c, 0xa5, 0x8f, 0x6c, 0xce, 0xb8, 0x88, 0x3b, + 0xee, 0x8d, 0x8e, 0x3a, 0x13, 0xdf, 0xe9, 0x56, 0x27, 0x6d, 0x3f, 0x52, + 0x49, 0x2d, 0x6e, 0x60, 0x58, 0xd2, 0x45, 0x0d, 0x0b, 0x29, 0x1b, 0xbd, + 0x38, 0xc7, 0x4a, 0xad, 0x0e, 0x8b, 0x6d, 0x26, 0x8a, 0x89, 0x68, 0x30, + 0xf8, 0x0e, 0xae, 0xc4, 0xee, 0x0c, 0x3e, 0xb5, 0x0a, 0xab, 0x4a, 0xc9, + 0x96, 0xa0, 0xef, 0xb9, 0x46, 0xfe, 0xf2, 0xd6, 0xd2, 0xc2, 0xe2, 0x06, + 0x56, 0x57, 0x66, 0xe2, 0x5e, 0x9c, 0xfa, 0x01, 0xd8, 0x57, 0x9f, 0xdf, + 0xea, 0x4e, 0x36, 0xa2, 0x10, 0x40, 0xeb, 0x5a, 0xde, 0x26, 0xd4, 0x4c, + 0x92, 0xcd, 0x04, 0xe7, 0x12, 0x45, 0x80, 0xe0, 0x73, 0xcf, 0xae, 0x6b, + 0x8c, 0x96, 0x57, 0x23, 0x90, 0x08, 0xae, 0x9a, 0x18, 0x64, 0xbd, 0xe7, + 0xad, 0xce, 0x6a, 0x92, 0x5b, 0x1a, 0x06, 0x7f, 0xb4, 0x01, 0xc2, 0xe4, + 0xf5, 0xe6, 0x9b, 0x24, 0x59, 0x03, 0x03, 0x18, 0xee, 0x6a, 0x90, 0x7d, + 0xdb, 0x4f, 0x0b, 0x8e, 0x38, 0x35, 0x62, 0x32, 0xe4, 0x90, 0x64, 0xe0, + 0xfa, 0xd7, 0x4f, 0x2d, 0xb6, 0x39, 0xad, 0x61, 0x92, 0x6d, 0xdc, 0x14, + 0x80, 0x52, 0x9c, 0x34, 0xc8, 0x5d, 0x79, 0x90, 0x29, 0x23, 0xb1, 0xcd, + 0x0b, 0x17, 0x9a, 0xf8, 0x19, 0xfc, 0xfa, 0x54, 0xe2, 0xd4, 0xc6, 0x81, + 0x58, 0xb0, 0x1d, 0xaa, 0xdc, 0x9a, 0xd9, 0x87, 0xa1, 0xcf, 0xdc, 0xdb, + 0xfd, 0x8a, 0x46, 0x24, 0xfb, 0x52, 0x47, 0xb4, 0xc2, 0x1f, 0x71, 0xc1, + 0x38, 0xad, 0xf9, 0x34, 0xd8, 0x2e, 0xb0, 0x25, 0x2a, 0x4f, 0x7c, 0x0c, + 0x1a, 0x85, 0xb4, 0xfb, 0x64, 0x64, 0x58, 0x17, 0x6a, 0xa1, 0xe4, 0x67, + 0x39, 0xab, 0x55, 0xe2, 0xd5, 0x9e, 0xe6, 0x6e, 0x46, 0x63, 0x5b, 0x6d, + 0x0a, 0x63, 0x94, 0x36, 0x46, 0x48, 0xf4, 0xa8, 0x82, 0x9d, 0xdc, 0x8e, + 0x6b, 0x62, 0x4b, 0x30, 0x03, 0x79, 0x21, 0x87, 0x18, 0xc1, 0xfe, 0x94, + 0xd1, 0x1c, 0x50, 0xa7, 0xcc, 0xa0, 0xb7, 0xbf, 0x6a, 0x6a, 0xa5, 0xc3, + 0x9d, 0x23, 0x2c, 0xc4, 0xdb, 0xb3, 0x8c, 0x0f, 0x7a, 0x4c, 0x7a, 0x1c, + 0x55, 0xd7, 0x0b, 0x27, 0x11, 0xee, 0x91, 0xbd, 0x7b, 0x0a, 0x87, 0xc8, + 0x55, 0xff, 0x00, 0x59, 0x22, 0xaf, 0xb0, 0xe6, 0xa9, 0x4b, 0xb8, 0xd4, + 0x88, 0x36, 0xbb, 0x9c, 0x2f, 0x27, 0xad, 0x30, 0x4a, 0xe8, 0x70, 0x7b, + 0x75, 0x15, 0x73, 0x7c, 0x0b, 0x85, 0x8c, 0x92, 0x7b, 0x9a, 0xa9, 0x76, + 0xc8, 0xc0, 0x95, 0x43, 0xb8, 0xf7, 0xf5, 0xaa, 0x8e, 0xba, 0x58, 0x9e, + 0x77, 0x7d, 0x81, 0xae, 0x57, 0x18, 0x20, 0x54, 0x2e, 0xf1, 0xb7, 0x62, + 0x4d, 0x54, 0x92, 0x19, 0x53, 0x05, 0xd4, 0xf3, 0xef, 0x56, 0x22, 0xb5, + 0x3f, 0x2b, 0x82, 0x40, 0xf7, 0xad, 0x79, 0x23, 0x1e, 0xa3, 0x72, 0x25, + 0x84, 0xf9, 0xd9, 0x08, 0xb8, 0x20, 0x73, 0x57, 0x60, 0x74, 0xb6, 0x83, + 0x63, 0xb7, 0x7e, 0x32, 0x28, 0x86, 0x21, 0x10, 0x25, 0x86, 0xdc, 0xf4, + 0x27, 0xbd, 0x57, 0x68, 0xda, 0x47, 0x6c, 0x1c, 0xe3, 0xbe, 0x2b, 0x37, + 0x69, 0x3b, 0x74, 0x25, 0xc5, 0xb2, 0x79, 0x2f, 0x63, 0x2d, 0xcb, 0x1e, + 0x4e, 0x3e, 0xb4, 0x8f, 0xb5, 0x5b, 0x89, 0x0e, 0x48, 0xc9, 0xef, 0x9a, + 0xaf, 0x04, 0x7b, 0xa4, 0xf2, 0x9d, 0x0f, 0xb1, 0xab, 0x5f, 0x67, 0x48, + 0xba, 0xb6, 0x48, 0xa9, 0x69, 0x45, 0x8b, 0x94, 0xb5, 0x69, 0x32, 0x28, + 0x3e, 0x6f, 0x18, 0xe9, 0xc7, 0x5a, 0xb9, 0xf2, 0xcd, 0x1e, 0x50, 0xe7, + 0xf0, 0xac, 0xc3, 0xbb, 0x66, 0x7e, 0x62, 0xa3, 0xae, 0x2a, 0x48, 0xee, + 0x9a, 0x14, 0x05, 0x47, 0xb7, 0x35, 0x8c, 0xe3, 0x7d, 0x50, 0xe5, 0x06, + 0xf5, 0x16, 0x4b, 0x89, 0x94, 0x34, 0x6a, 0x46, 0x0f, 0x50, 0xc3, 0xa5, + 0x55, 0xcb, 0x2c, 0x80, 0x49, 0x86, 0x53, 0x52, 0x3c, 0xfe, 0x69, 0x2c, + 0xe3, 0x04, 0xf6, 0x14, 0xf1, 0x19, 0x23, 0x76, 0xdc, 0x0e, 0xd9, 0xab, + 0x5e, 0xe8, 0xd4, 0x6d, 0xa9, 0x04, 0x96, 0xe0, 0x28, 0xd9, 0xf7, 0x4f, + 0x27, 0x1d, 0xaa, 0x43, 0x31, 0x58, 0x15, 0x0f, 0xd0, 0x11, 0xde, 0x9a, + 0xed, 0xe5, 0xee, 0xdc, 0x41, 0x6c, 0x64, 0x05, 0xa6, 0x79, 0x9b, 0xb8, + 0xe8, 0x00, 0xe9, 0x54, 0xf5, 0x1b, 0x49, 0xec, 0x19, 0x27, 0x01, 0x87, + 0x1e, 0xd4, 0xe6, 0x82, 0x27, 0x20, 0xef, 0xe7, 0x18, 0xc6, 0x6a, 0xb7, + 0x9b, 0x86, 0xeb, 0xf2, 0xd5, 0xcb, 0x4b, 0x64, 0x99, 0x4c, 0x8c, 0x40, + 0x51, 0xef, 0x44, 0xbd, 0xd5, 0x73, 0x39, 0x46, 0xc8, 0x93, 0xca, 0x69, + 0x10, 0x00, 0x70, 0x6a, 0xbc, 0xb6, 0x72, 0xee, 0xe1, 0xce, 0x05, 0x5c, + 0x2d, 0x14, 0x40, 0xb0, 0x7e, 0x17, 0x8e, 0x29, 0xa2, 0xec, 0x94, 0x3b, + 0xa1, 0x70, 0x3b, 0x35, 0x66, 0xa5, 0x2d, 0xd1, 0x0a, 0xfd, 0x0a, 0xa6, + 0x39, 0x94, 0x1d, 0xab, 0xf2, 0x8e, 0xbd, 0xe9, 0xae, 0x09, 0x18, 0x3c, + 0x7d, 0x6a, 0xea, 0xc8, 0x04, 0x58, 0x2d, 0x86, 0x23, 0x93, 0xda, 0xa8, + 0xbb, 0xe6, 0x40, 0x57, 0xe6, 0x00, 0x55, 0xc5, 0xb6, 0x5c, 0x62, 0xd8, + 0x88, 0x19, 0x11, 0xce, 0x7b, 0x71, 0x54, 0x87, 0x0c, 0x43, 0x36, 0x39, + 0xef, 0x5a, 0x4a, 0xac, 0xd0, 0xb6, 0xec, 0x00, 0x4f, 0x7a, 0xae, 0x96, + 0xa9, 0x19, 0xc9, 0x25, 0x94, 0x9e, 0xc7, 0xa5, 0x69, 0x19, 0x25, 0x7b, + 0x94, 0xdd, 0xb4, 0x62, 0xc7, 0x6a, 0xab, 0x8d, 0xae, 0x7a, 0xe7, 0x15, + 0x63, 0xcc, 0x68, 0xc6, 0x03, 0x12, 0x3d, 0x33, 0x51, 0x04, 0x68, 0x98, + 0x9e, 0x36, 0xe7, 0xa9, 0x35, 0x30, 0xd9, 0x8c, 0x96, 0x04, 0xfb, 0x54, + 0x49, 0xb7, 0xbe, 0xa1, 0xa5, 0x85, 0x49, 0x3e, 0x6d, 0xca, 0x08, 0x22, + 0xa6, 0x69, 0xa4, 0x93, 0x68, 0x72, 0xc4, 0x0f, 0x7a, 0xae, 0xac, 0x0b, + 0x10, 0xbd, 0x8d, 0x48, 0x18, 0xaa, 0xf2, 0x0e, 0x6a, 0x1a, 0xd4, 0x56, + 0x42, 0xfc, 0xdd, 0xb1, 0x4d, 0x79, 0x00, 0x53, 0xb8, 0x8a, 0x91, 0xcc, + 0x7b, 0x01, 0x24, 0x96, 0x3d, 0x85, 0x54, 0x24, 0x06, 0xf9, 0x86, 0x7d, + 0x05, 0x38, 0xab, 0x8d, 0x3b, 0x8e, 0x56, 0x6f, 0x33, 0x6f, 0x1c, 0xf7, + 0xa9, 0xc1, 0x0b, 0xd7, 0xaf, 0x7a, 0x84, 0xaa, 0x30, 0x0d, 0xd1, 0x87, + 0x07, 0xda, 0x9d, 0xd3, 0x95, 0xc9, 0x03, 0x8a, 0xa6, 0xae, 0x5b, 0x45, + 0x80, 0x55, 0xf2, 0xa1, 0x47, 0xfb, 0xdd, 0x29, 0x02, 0xaa, 0xb6, 0x3b, + 0xf7, 0xc5, 0x31, 0x54, 0xb2, 0x93, 0xb7, 0x27, 0xb5, 0x29, 0x18, 0x39, + 0x38, 0xe0, 0x54, 0x34, 0x2d, 0x49, 0x41, 0x3b, 0xc6, 0x14, 0x7d, 0x29, + 0xfb, 0x4f, 0x7f, 0xd2, 0xa1, 0x8e, 0x40, 0x41, 0x2d, 0x90, 0xde, 0xb5, + 0x3c, 0x6c, 0x5d, 0x70, 0xa3, 0x2d, 0xed, 0x51, 0x24, 0xd0, 0xec, 0x49, + 0x9f, 0x94, 0x0e, 0x77, 0x77, 0x26, 0x9a, 0x14, 0xee, 0x3b, 0x82, 0x90, + 0x69, 0x43, 0x38, 0x01, 0x76, 0x65, 0xba, 0x54, 0x6d, 0xc9, 0xc8, 0x24, + 0x37, 0xa5, 0x25, 0x7e, 0xc2, 0x56, 0xe8, 0x29, 0xdc, 0xac, 0x7e, 0x71, + 0x8f, 0x4a, 0x78, 0x6c, 0x21, 0x6f, 0x4e, 0xd5, 0x01, 0x90, 0x05, 0xfb, + 0xa7, 0x75, 0x48, 0xad, 0xb9, 0x41, 0xc1, 0x03, 0xd3, 0xd6, 0x86, 0x80, + 0x01, 0x12, 0x0e, 0x98, 0x35, 0x26, 0xd5, 0x51, 0xf3, 0x53, 0x0c, 0x47, + 0x66, 0x47, 0x14, 0xdc, 0x48, 0xbe, 0xe2, 0x97, 0xcc, 0x63, 0x24, 0x65, + 0x6e, 0x37, 0x13, 0xeb, 0xcd, 0x3c, 0xc4, 0x14, 0x02, 0x39, 0x5e, 0x9c, + 0x52, 0xec, 0x56, 0x00, 0xed, 0xc1, 0xf5, 0xc5, 0x11, 0xba, 0xed, 0xc0, + 0x6f, 0xc6, 0xaa, 0xee, 0xda, 0x00, 0xd5, 0x67, 0x8c, 0x12, 0xbd, 0x29, + 0x19, 0xc3, 0x12, 0x5a, 0x3c, 0xf1, 0xd8, 0xd3, 0x9c, 0x91, 0xf2, 0xe6, + 0xa2, 0xda, 0xcb, 0x21, 0x6d, 0xdf, 0x2f, 0xbd, 0x09, 0x5f, 0x52, 0x1c, + 0x6e, 0xc6, 0xaa, 0x16, 0x1b, 0x49, 0xc2, 0x9f, 0x53, 0xd2, 0x8f, 0x2b, + 0xcb, 0xca, 0x92, 0x08, 0xf6, 0xef, 0x52, 0xe7, 0x81, 0xe9, 0x4d, 0x3b, + 0x73, 0x83, 0xc8, 0xef, 0x55, 0x72, 0xec, 0x31, 0x95, 0xb8, 0xc0, 0xc6, + 0x45, 0x3d, 0x58, 0x2e, 0x32, 0x7a, 0xf5, 0xa3, 0x69, 0x28, 0x55, 0x58, + 0x9f, 0x40, 0x29, 0xa0, 0x15, 0x3d, 0x49, 0x1d, 0xe8, 0xb6, 0x81, 0x72, + 0xcc, 0x64, 0x47, 0xff, 0x00, 0x2d, 0x31, 0x9f, 0x5a, 0x43, 0x32, 0x82, + 0x40, 0xce, 0x7d, 0x69, 0x01, 0x2d, 0xdb, 0x77, 0xf4, 0xa6, 0xb2, 0xa0, + 0x2c, 0x4f, 0x2d, 0xe9, 0x9a, 0xcf, 0x97, 0x50, 0xb0, 0x19, 0x3b, 0x6f, + 0x26, 0xac, 0x3c, 0xa9, 0x2c, 0x41, 0x5e, 0x35, 0x07, 0xfb, 0xc3, 0x8a, + 0xa6, 0x5d, 0x54, 0xf2, 0x8c, 0x7e, 0x94, 0xdf, 0x33, 0xe5, 0xea, 0x71, + 0xe9, 0x8a, 0xde, 0x31, 0x92, 0x5a, 0x0d, 0x22, 0xd7, 0x98, 0xa3, 0x23, + 0x76, 0x70, 0x38, 0x22, 0xa3, 0xdd, 0x91, 0xf7, 0x8e, 0x3b, 0x53, 0x04, + 0xc4, 0xa0, 0xda, 0xab, 0xe9, 0xf3, 0x53, 0xd5, 0x37, 0x15, 0x57, 0x6e, + 0xa6, 0x97, 0x2d, 0x84, 0x98, 0x00, 0xe5, 0xb1, 0xfc, 0xe9, 0x1d, 0xb8, + 0xc8, 0xe7, 0xd6, 0xa5, 0x98, 0x28, 0x3c, 0x64, 0x13, 0xc0, 0x02, 0xa2, + 0x56, 0x0b, 0xd4, 0xe4, 0x77, 0xa7, 0x1e, 0xe8, 0x77, 0xb8, 0xd2, 0xc7, + 0x3b, 0x40, 0xc1, 0xa6, 0x05, 0x7f, 0x37, 0x9c, 0x1c, 0xfa, 0xd3, 0xcb, + 0x2f, 0xde, 0x1c, 0x67, 0xbd, 0x34, 0x3a, 0x7a, 0x92, 0xde, 0xe6, 0xb6, + 0xb0, 0x31, 0xcb, 0x13, 0x79, 0x84, 0x0e, 0x3b, 0xfd, 0x2a, 0x5b, 0xa8, + 0x8c, 0x21, 0x37, 0x6d, 0x6d, 0xc3, 0x76, 0x54, 0xe7, 0x8a, 0xae, 0xae, + 0xa2, 0x42, 0x06, 0xe2, 0xa3, 0xf8, 0x88, 0xa9, 0x44, 0x69, 0xc4, 0x84, + 0x92, 0x3a, 0x60, 0x54, 0xca, 0x56, 0xf8, 0x89, 0x6e, 0xc2, 0x47, 0x6b, + 0xe7, 0x6d, 0x20, 0xae, 0x0f, 0x4c, 0x9e, 0x69, 0xc2, 0xcf, 0x32, 0x95, + 0x66, 0x0a, 0x17, 0xae, 0x4d, 0x3f, 0x36, 0xea, 0x83, 0x6a, 0x12, 0x7d, + 0x7d, 0x28, 0x55, 0x3d, 0x58, 0x96, 0x1e, 0x99, 0xac, 0xa5, 0x36, 0xcc, + 0xda, 0x6f, 0x71, 0x67, 0x09, 0x1b, 0xa0, 0x8a, 0x50, 0xc0, 0x0e, 0x78, + 0xa7, 0x0c, 0xca, 0x4b, 0x0c, 0x90, 0x3b, 0xd4, 0xd1, 0xba, 0x95, 0x21, + 0xa3, 0x03, 0x8e, 0x98, 0xa6, 0x26, 0x64, 0x8d, 0xc6, 0xe0, 0xb8, 0x3c, + 0x2f, 0xad, 0x64, 0xfc, 0x88, 0x51, 0xb3, 0x22, 0xde, 0x49, 0xe9, 0xc0, + 0xef, 0x8a, 0x55, 0xcc, 0x4c, 0x4c, 0x44, 0xf3, 0xd7, 0x8e, 0x0d, 0x48, + 0x53, 0xb0, 0xfc, 0xa9, 0x91, 0x9c, 0x48, 0x54, 0x95, 0xc1, 0xee, 0x4d, + 0x09, 0xdb, 0x54, 0x5c, 0x92, 0x22, 0x7d, 0xd3, 0x39, 0x63, 0xb4, 0x1a, + 0x9d, 0xad, 0xa5, 0x8e, 0x0d, 0xe0, 0x05, 0x3f, 0x5e, 0xb4, 0x34, 0xd0, + 0xc4, 0xbf, 0x22, 0x6e, 0xc7, 0xf7, 0xba, 0x53, 0x24, 0x98, 0x3a, 0x9d, + 0xdb, 0x8a, 0xff, 0x00, 0x74, 0x1a, 0xad, 0x59, 0x17, 0xbb, 0xd0, 0x84, + 0x37, 0x98, 0xe0, 0x37, 0x50, 0x71, 0x51, 0xc9, 0x10, 0x8e, 0x62, 0xa0, + 0xe4, 0x1f, 0x4a, 0x94, 0x46, 0xf9, 0x24, 0x26, 0x7b, 0xe6, 0xa2, 0x92, + 0x40, 0x24, 0x0a, 0xb9, 0xf7, 0xc8, 0xaa, 0x88, 0xa2, 0x9b, 0x1d, 0x96, + 0x5c, 0x90, 0x84, 0x80, 0x39, 0x14, 0xe2, 0xc4, 0x60, 0xe0, 0x1c, 0xd5, + 0xcb, 0x7b, 0x4f, 0x35, 0x43, 0x06, 0x5c, 0x30, 0xef, 0xd6, 0x96, 0x5b, + 0x7f, 0x2c, 0x79, 0x41, 0xb7, 0x7b, 0x0a, 0xa5, 0xdc, 0xd2, 0x2d, 0x5c, + 0xa6, 0xca, 0x19, 0xc3, 0x63, 0x00, 0x75, 0xc5, 0x12, 0x98, 0x58, 0xfc, + 0xa0, 0x9c, 0x77, 0xa7, 0xcc, 0x08, 0x88, 0x20, 0x50, 0x15, 0x78, 0x3e, + 0xf4, 0x89, 0x18, 0x11, 0x61, 0x72, 0x6a, 0x95, 0x4e, 0x4d, 0x8d, 0x92, + 0x44, 0x05, 0x41, 0x8c, 0x95, 0xe9, 0xdc, 0x1e, 0xb4, 0xe8, 0x6f, 0xe5, + 0x87, 0x8e, 0xab, 0xdb, 0x27, 0xa5, 0x35, 0x95, 0x58, 0xfc, 0xc3, 0x07, + 0x3d, 0xa9, 0x24, 0x48, 0xd0, 0x81, 0xcf, 0x3c, 0x83, 0x5b, 0xc6, 0xb3, + 0x7a, 0x05, 0x8d, 0x6b, 0x3d, 0x4a, 0xc9, 0x46, 0xfb, 0x86, 0xda, 0xd9, + 0xe3, 0x35, 0x16, 0xa5, 0xa9, 0x5b, 0xde, 0xa2, 0xfd, 0x9f, 0xee, 0xf7, + 0x24, 0x56, 0x36, 0xc0, 0x4e, 0xd3, 0x82, 0x3d, 0xeb, 0x52, 0xce, 0x28, + 0xa2, 0x8f, 0xe4, 0x55, 0x27, 0xd0, 0xd6, 0xc9, 0xdd, 0x12, 0x66, 0x95, + 0x85, 0x97, 0x7b, 0x71, 0x8e, 0xb8, 0x35, 0x14, 0xae, 0x91, 0x28, 0x31, + 0xb8, 0xc1, 0x3c, 0x8c, 0xf3, 0x5b, 0x13, 0x59, 0x42, 0x5c, 0xc8, 0x01, + 0x4c, 0xf5, 0x18, 0xe2, 0xb3, 0xee, 0xad, 0xca, 0x2f, 0xdc, 0x0c, 0x87, + 0xb8, 0xea, 0x2b, 0x9a, 0x70, 0x69, 0xdc, 0xc2, 0xa5, 0x2e, 0xa8, 0xa8, + 0x67, 0x5c, 0x61, 0x25, 0x03, 0x8c, 0xe2, 0xa0, 0x13, 0x02, 0x09, 0x27, + 0x1f, 0x85, 0x5f, 0x36, 0xb0, 0xb6, 0x33, 0x18, 0x53, 0xed, 0x54, 0x67, + 0xb7, 0x2a, 0xfb, 0x53, 0xa1, 0xf5, 0xa9, 0x83, 0x8b, 0xd0, 0xc4, 0x9a, + 0x29, 0x63, 0x2b, 0xc3, 0x82, 0x69, 0xce, 0xe0, 0x8a, 0xac, 0xa8, 0x50, + 0x70, 0x33, 0xea, 0x40, 0xa9, 0x62, 0x46, 0x91, 0xc8, 0x07, 0x91, 0x43, + 0x4b, 0x71, 0x89, 0x9c, 0x1c, 0x52, 0x16, 0x38, 0xef, 0x4e, 0xe7, 0x38, + 0xdb, 0x9c, 0x1e, 0xd5, 0x1c, 0x92, 0x84, 0xf9, 0x08, 0x21, 0x8f, 0x4f, + 0x7a, 0xa5, 0xa9, 0xa4, 0x59, 0x0c, 0x8c, 0x58, 0xf1, 0x81, 0x50, 0xba, + 0xa1, 0x51, 0xd3, 0x70, 0x1d, 0x45, 0x58, 0x89, 0x24, 0x19, 0x32, 0x45, + 0x90, 0x6a, 0xc8, 0xb6, 0x80, 0xed, 0x62, 0x70, 0x0f, 0x63, 0x57, 0xce, + 0xa2, 0x6d, 0xcf, 0x15, 0xa1, 0x90, 0xf1, 0x32, 0xfc, 0xc0, 0xf1, 0xe9, + 0x8a, 0x96, 0xcd, 0x3c, 0xcd, 0xdc, 0x8c, 0x0f, 0x5a, 0xd1, 0x9a, 0xd9, + 0x18, 0xfc, 0xa5, 0x40, 0x1f, 0xdd, 0x1d, 0x6b, 0x39, 0x6d, 0x65, 0x12, + 0xb8, 0x41, 0xb4, 0x0e, 0xfe, 0xb5, 0x6a, 0xa2, 0x94, 0x43, 0x9d, 0x74, + 0x2e, 0x2a, 0x12, 0x0c, 0x4f, 0x12, 0x91, 0x9c, 0xee, 0xa8, 0xa7, 0x09, + 0x10, 0x05, 0x39, 0x1e, 0x94, 0xd8, 0x9e, 0x79, 0x1b, 0x66, 0xf5, 0x50, + 0xbd, 0x78, 0xa2, 0x5b, 0x76, 0xb7, 0x40, 0xde, 0x66, 0x47, 0x71, 0x50, + 0xb7, 0xb3, 0x62, 0x53, 0x97, 0x36, 0xe4, 0x5f, 0x24, 0xa3, 0x71, 0x4c, + 0x9e, 0xd5, 0x21, 0xb3, 0x89, 0xa3, 0x19, 0x8d, 0x95, 0xfb, 0x9c, 0xf1, + 0x56, 0x2d, 0x93, 0xf7, 0x47, 0x2c, 0xa3, 0x8e, 0x95, 0x03, 0x12, 0xd2, + 0xaa, 0xab, 0x8c, 0xb1, 0xc7, 0x26, 0xad, 0x4b, 0xa2, 0x2d, 0x4d, 0x3d, + 0xd1, 0x55, 0xed, 0x55, 0x9c, 0x88, 0xc1, 0xc0, 0xfc, 0xaa, 0x26, 0xb4, + 0x75, 0xe9, 0x83, 0x5b, 0x0f, 0x03, 0x47, 0x19, 0xce, 0xc1, 0x8f, 0x4e, + 0xf5, 0x99, 0x71, 0x39, 0x77, 0x01, 0x01, 0xc0, 0xf4, 0xaa, 0x84, 0xdc, + 0xb6, 0x12, 0x71, 0x6a, 0xe5, 0x42, 0x8c, 0x3a, 0x83, 0x49, 0x83, 0x5a, + 0x11, 0x36, 0xe1, 0xf3, 0x2f, 0x3f, 0x4a, 0x1e, 0xd5, 0x1c, 0x92, 0xa7, + 0x69, 0xab, 0xf6, 0x9d, 0x18, 0xfd, 0x9f, 0x63, 0x3e, 0x8a, 0xb6, 0x53, + 0xca, 0xc8, 0x91, 0x59, 0xbd, 0x08, 0xa8, 0x02, 0x92, 0x7e, 0xe7, 0x15, + 0x4a, 0x57, 0x21, 0xc6, 0xc4, 0x74, 0x54, 0x81, 0x03, 0x1c, 0x74, 0xfa, + 0xd2, 0xb4, 0x38, 0x1c, 0x30, 0x3f, 0x4a, 0x77, 0x42, 0xe5, 0x67, 0x49, + 0xe1, 0xe4, 0x61, 0x60, 0x48, 0x5c, 0x82, 0xc7, 0x9a, 0xd1, 0x51, 0xfb, + 0xfc, 0x1e, 0x2a, 0xa6, 0x8c, 0xaf, 0x16, 0x9a, 0x87, 0xb1, 0xab, 0x2a, + 0xdb, 0xee, 0x40, 0x3d, 0xeb, 0xcd, 0xab, 0xac, 0x99, 0xd1, 0x1d, 0x90, + 0xdd, 0x4a, 0x14, 0x43, 0x13, 0xe4, 0x7c, 0xc0, 0xd6, 0x64, 0x92, 0x95, + 0x7c, 0xa0, 0x0f, 0x9f, 0x56, 0xe0, 0x56, 0x9e, 0xac, 0x87, 0x6a, 0x73, + 0xd3, 0xda, 0xb1, 0x9c, 0x05, 0xf9, 0x9b, 0x81, 0x57, 0x07, 0xa1, 0x7d, + 0x0b, 0xb6, 0x57, 0x8b, 0x1f, 0x98, 0x2e, 0x2d, 0x63, 0x90, 0x30, 0xe3, + 0xe6, 0x3c, 0x1f, 0x5e, 0x2a, 0x17, 0x94, 0x47, 0x20, 0x2a, 0xa0, 0x0f, + 0x50, 0x2a, 0x05, 0x19, 0x19, 0x53, 0xc5, 0x49, 0x14, 0xe6, 0x13, 0xc8, + 0xc8, 0xf7, 0xad, 0x1c, 0xba, 0x02, 0x24, 0x92, 0x63, 0x71, 0xc3, 0x5d, + 0x4c, 0xbf, 0xf0, 0x2a, 0xaf, 0x25, 0xa4, 0xa8, 0x37, 0xc7, 0x74, 0x5b, + 0x3c, 0xe0, 0xe7, 0x9a, 0x6c, 0xd2, 0x79, 0x8c, 0x59, 0x17, 0x15, 0x0e, + 0x65, 0x65, 0xe1, 0xb8, 0xfa, 0xd1, 0x14, 0xc4, 0xda, 0x2c, 0x79, 0x32, + 0x3c, 0x9b, 0xc9, 0x3f, 0x87, 0x35, 0x1d, 0xdd, 0xc3, 0xc6, 0x9b, 0x42, + 0xb2, 0x93, 0xdc, 0xd4, 0x4a, 0xf2, 0xa8, 0xc8, 0x73, 0x4f, 0x62, 0xd3, + 0x2e, 0x25, 0xc9, 0xaa, 0x49, 0xa7, 0xa8, 0x9b, 0xba, 0xd0, 0xb1, 0xa4, + 0x5b, 0x5c, 0xdd, 0x5d, 0x2c, 0xd1, 0x9d, 0xbe, 0x5f, 0x25, 0xb3, 0x8c, + 0x1a, 0xec, 0x8f, 0x8a, 0x5d, 0xe5, 0xb6, 0x8a, 0xea, 0x00, 0xcd, 0x16, + 0x15, 0x9f, 0xd6, 0xb9, 0x1d, 0x3d, 0x9b, 0x1e, 0x54, 0x6c, 0x14, 0x75, + 0xdd, 0x56, 0xed, 0x99, 0xcc, 0xe5, 0x64, 0x6d, 0xc9, 0x9c, 0xfa, 0xe4, + 0xd7, 0x2d, 0x78, 0x46, 0x6f, 0xde, 0xe8, 0x0a, 0xa7, 0x2a, 0xb2, 0x3d, + 0x4d, 0x75, 0x1b, 0xa9, 0x3e, 0xcb, 0x24, 0x4f, 0x19, 0xb6, 0xc8, 0x3e, + 0x5a, 0x63, 0x78, 0xfa, 0x1a, 0xa8, 0x9e, 0x25, 0x7d, 0x3e, 0x29, 0x55, + 0xa5, 0x62, 0x15, 0xd9, 0x44, 0x6c, 0x79, 0x00, 0xd7, 0x22, 0x6f, 0x64, + 0x86, 0x02, 0xcb, 0xb8, 0x60, 0x71, 0x83, 0x8c, 0x56, 0x2d, 0xdd, 0xc5, + 0xd5, 0xc1, 0xf3, 0x1d, 0x0e, 0xd6, 0xe7, 0x77, 0xad, 0x71, 0x53, 0xc3, + 0x29, 0xe8, 0xf6, 0x2e, 0x35, 0xde, 0xe8, 0xd8, 0xd6, 0x75, 0x2f, 0xb5, + 0xdc, 0x33, 0x46, 0xbc, 0x38, 0xf9, 0xbd, 0xeb, 0x20, 0x36, 0x30, 0x71, + 0x8c, 0x71, 0xf8, 0x55, 0x71, 0x23, 0x27, 0xde, 0xdf, 0x91, 0xda, 0xad, + 0x41, 0x3a, 0xb9, 0x2c, 0xe0, 0x05, 0x1f, 0xc4, 0x6b, 0xb1, 0x53, 0xe4, + 0x8d, 0x91, 0x12, 0x9d, 0xdd, 0xc7, 0x2c, 0x05, 0xfb, 0xe7, 0xd2, 0xac, + 0x24, 0x6c, 0x15, 0x56, 0x4f, 0xbd, 0x9e, 0x9d, 0x69, 0xe6, 0xe6, 0x32, + 0x00, 0x50, 0x3e, 0xb4, 0x79, 0x61, 0x8e, 0xe0, 0xdf, 0xad, 0x66, 0x9b, + 0x7d, 0x04, 0x9b, 0x63, 0xd2, 0x58, 0xd3, 0x3e, 0x59, 0x0a, 0xc4, 0xf5, + 0x3c, 0xd0, 0x27, 0x60, 0xc1, 0x4b, 0x6f, 0xf7, 0x15, 0x10, 0x84, 0x03, + 0x92, 0x43, 0x0c, 0xf3, 0x4e, 0x31, 0xc4, 0x5b, 0x01, 0x80, 0x38, 0xed, + 0x43, 0x56, 0x62, 0x68, 0x99, 0x24, 0x57, 0x27, 0x1c, 0x9c, 0x1a, 0x7a, + 0x10, 0xa3, 0xe5, 0x5e, 0x33, 0xf9, 0x54, 0x48, 0x16, 0x22, 0x36, 0xe0, + 0xfb, 0xd3, 0xf7, 0xaa, 0xe4, 0x67, 0xe9, 0x8a, 0xc9, 0xc5, 0xb6, 0x25, + 0x01, 0xfe, 0x60, 0xce, 0xd2, 0x3a, 0x54, 0x13, 0x98, 0x44, 0x98, 0x28, + 0x09, 0x22, 0x9d, 0xb9, 0x46, 0x5b, 0x6b, 0x1c, 0xf7, 0xa8, 0x49, 0x52, + 0xc4, 0xba, 0x90, 0x47, 0x7c, 0xf1, 0x42, 0x83, 0x4c, 0x97, 0x4e, 0xcc, + 0xa5, 0x71, 0x17, 0x9a, 0xe5, 0x7c, 0xd6, 0x54, 0xc7, 0xdd, 0x5e, 0x2b, + 0x3d, 0xf4, 0xdb, 0xa4, 0x3b, 0x92, 0x42, 0x54, 0xf4, 0xef, 0x5b, 0x44, + 0xe4, 0xf0, 0x79, 0xfa, 0x52, 0x12, 0x3f, 0x88, 0x91, 0xee, 0x2b, 0xa2, + 0x35, 0x25, 0x1d, 0x85, 0xcb, 0xd8, 0xc1, 0xdb, 0xa8, 0xda, 0x39, 0x06, + 0x30, 0x41, 0xf5, 0x15, 0x66, 0xdd, 0xa4, 0xb8, 0x6d, 0xb7, 0x29, 0xb5, + 0x07, 0xb5, 0x6a, 0xb7, 0xef, 0x13, 0x19, 0xc9, 0xff, 0x00, 0x6a, 0x91, + 0x6d, 0xf7, 0x0f, 0x94, 0x29, 0x22, 0xb4, 0xf6, 0x97, 0x57, 0x68, 0xa8, + 0xab, 0x6a, 0x64, 0xce, 0xc8, 0x93, 0xed, 0x8c, 0x6e, 0x1e, 0xf5, 0x21, + 0x58, 0xd9, 0x03, 0x87, 0xda, 0xcb, 0xdb, 0x35, 0xa1, 0x2c, 0x11, 0x1c, + 0xe6, 0x30, 0x5a, 0xa1, 0x4b, 0x4b, 0x73, 0x9c, 0xa9, 0x19, 0xa4, 0xea, + 0x2b, 0x03, 0x8d, 0xfa, 0x91, 0x07, 0x9e, 0xf6, 0x33, 0x92, 0xa1, 0x13, + 0xad, 0x53, 0x49, 0xa5, 0x89, 0xd9, 0x19, 0x49, 0x19, 0xc0, 0x38, 0xad, + 0x43, 0x65, 0x6c, 0xc3, 0x00, 0xba, 0x8f, 0x45, 0x6c, 0x53, 0xd6, 0xd2, + 0x05, 0x6c, 0x80, 0xdc, 0x7a, 0x9a, 0x51, 0xab, 0x08, 0x8a, 0xc5, 0x58, + 0x51, 0x55, 0x4b, 0x9e, 0x1b, 0xd3, 0x34, 0x8f, 0x1b, 0x97, 0x2c, 0x1f, + 0x8e, 0xb8, 0xab, 0x3b, 0x55, 0x73, 0x84, 0xc0, 0xa4, 0x2b, 0x95, 0x20, + 0x28, 0xfc, 0x6a, 0x7d, 0xa5, 0xd9, 0x69, 0x91, 0xa3, 0x30, 0x60, 0x39, + 0xcf, 0xa5, 0x3a, 0x58, 0xd5, 0xb9, 0x00, 0x67, 0xba, 0x9e, 0xd4, 0xa9, + 0xb9, 0xa5, 0xdd, 0xbf, 0xdc, 0x9a, 0x74, 0xa5, 0x47, 0xef, 0x23, 0x24, + 0xb7, 0xd6, 0x85, 0xb8, 0x22, 0xb1, 0x0e, 0x0f, 0xca, 0x07, 0x5e, 0x95, + 0x24, 0xf3, 0x4e, 0xd8, 0x53, 0x85, 0x1f, 0x4a, 0x58, 0xc9, 0x67, 0xc8, + 0xe1, 0xbe, 0xbd, 0x29, 0xec, 0x8f, 0x23, 0x66, 0x46, 0x18, 0xec, 0x69, + 0x36, 0xaf, 0xa8, 0x9a, 0xd4, 0xa5, 0x20, 0x41, 0x73, 0x93, 0xe9, 0xce, + 0x29, 0xc1, 0x1a, 0x45, 0x20, 0x2e, 0x07, 0xae, 0x7a, 0xd5, 0xa7, 0xb5, + 0x18, 0x6c, 0x9c, 0x38, 0xe4, 0x71, 0xda, 0xa5, 0x46, 0x84, 0xc3, 0xb0, + 0xc7, 0xb5, 0xb1, 0xd7, 0xb1, 0xa6, 0xe7, 0xd8, 0x4c, 0xce, 0x31, 0x03, + 0x19, 0x00, 0xf2, 0x7b, 0xd4, 0x71, 0x02, 0x32, 0x8c, 0xdc, 0x0e, 0xa3, + 0xd6, 0xac, 0x0b, 0x7c, 0x06, 0x69, 0x38, 0x19, 0xe2, 0x9f, 0x6f, 0x61, + 0x2c, 0xca, 0x59, 0x17, 0x38, 0x3d, 0x41, 0xad, 0x13, 0xe8, 0x31, 0xeb, + 0x79, 0x14, 0x31, 0x85, 0x31, 0xa9, 0xc0, 0xeb, 0x53, 0x43, 0x70, 0x97, + 0x2c, 0x43, 0xe0, 0x7f, 0x74, 0x01, 0x59, 0x73, 0x5b, 0xb0, 0x63, 0x94, + 0x24, 0x0e, 0x32, 0x2a, 0xc5, 0xbf, 0x98, 0x80, 0x27, 0x97, 0x95, 0x23, + 0x90, 0x3b, 0x7b, 0xd4, 0x4a, 0x9c, 0x6c, 0x43, 0x8a, 0x66, 0x85, 0xdd, + 0xb8, 0x68, 0x77, 0x93, 0x8d, 0xb5, 0x41, 0x23, 0xe3, 0x23, 0xa9, 0xa9, + 0xca, 0x4c, 0xe7, 0x12, 0x31, 0x20, 0x7b, 0xd3, 0xc4, 0x6d, 0xd7, 0x69, + 0x0a, 0x2b, 0x38, 0xbe, 0x55, 0x6b, 0x92, 0xb4, 0x56, 0x21, 0x95, 0x48, + 0x85, 0x46, 0x01, 0x3e, 0x95, 0x12, 0xc4, 0xdc, 0xee, 0x5c, 0x71, 0xc5, + 0x5a, 0x68, 0xc3, 0x01, 0xb7, 0x92, 0x3b, 0x13, 0xd6, 0xa3, 0x00, 0xf3, + 0x9f, 0xca, 0xad, 0x4b, 0x41, 0xb7, 0x74, 0x57, 0x97, 0x18, 0x54, 0x3f, + 0x30, 0x1c, 0xf5, 0xa1, 0x70, 0xb8, 0xd9, 0xc5, 0x38, 0x21, 0x3c, 0xc6, + 0x9d, 0x3d, 0x6a, 0x54, 0x56, 0x61, 0xb8, 0xa0, 0x05, 0x7d, 0x3b, 0xd3, + 0xbd, 0x90, 0x5f, 0x94, 0x8c, 0xb8, 0xc7, 0x5c, 0x52, 0xc8, 0xa3, 0x66, + 0x15, 0x89, 0x6a, 0x7b, 0x10, 0xe4, 0x26, 0xd5, 0xcf, 0x60, 0x2a, 0x30, + 0x83, 0x9c, 0xf1, 0x8f, 0x7a, 0x17, 0x71, 0xef, 0xa8, 0x8f, 0x1f, 0x96, + 0xdb, 0x84, 0xb9, 0xe3, 0xb5, 0x39, 0x23, 0x6e, 0x1a, 0x43, 0xd7, 0xb7, + 0x7a, 0x7a, 0x2e, 0xd1, 0xbf, 0x23, 0xe8, 0x46, 0x73, 0x4f, 0xc0, 0xc6, + 0xe0, 0x38, 0xf6, 0xa3, 0x9b, 0x42, 0xb4, 0x1a, 0x51, 0x57, 0xee, 0x8c, + 0x1e, 0xe6, 0x94, 0x36, 0xc4, 0x20, 0x92, 0x46, 0x69, 0x48, 0x3c, 0x71, + 0xc1, 0xed, 0x4e, 0x65, 0xdc, 0x81, 0x72, 0x70, 0x2a, 0x2f, 0xdc, 0x76, + 0x14, 0x23, 0x32, 0xee, 0x56, 0x1c, 0xf6, 0xa6, 0x18, 0x59, 0x5b, 0x2f, + 0xb8, 0xf3, 0x4e, 0x07, 0x68, 0xca, 0xe3, 0xf1, 0xed, 0x4a, 0xb3, 0x90, + 0x0f, 0x52, 0x7d, 0xba, 0x53, 0x5c, 0xcb, 0x61, 0x2b, 0xa1, 0xae, 0xa5, + 0xc8, 0x0a, 0x40, 0xc7, 0x6a, 0x9d, 0x03, 0xaa, 0xfc, 0xbf, 0x7b, 0xdf, + 0x8a, 0x60, 0x77, 0x3c, 0x95, 0x03, 0xdf, 0x35, 0x28, 0x99, 0x4a, 0x67, + 0x9c, 0xf4, 0xa4, 0xee, 0xc1, 0xc6, 0xe2, 0xc5, 0x2e, 0xdc, 0xf9, 0x84, + 0x16, 0xf6, 0xa6, 0x2e, 0x32, 0x48, 0xce, 0x4f, 0xad, 0x3d, 0x1e, 0x37, + 0xe0, 0x8e, 0x6a, 0x4d, 0x8a, 0xa0, 0x11, 0x8f, 0xc3, 0xa5, 0x43, 0x95, + 0xb4, 0x68, 0x34, 0x45, 0x30, 0xa4, 0xb6, 0x18, 0x8c, 0x54, 0xca, 0xe8, + 0x33, 0xbb, 0x27, 0xd2, 0x9c, 0xdf, 0x7b, 0x1b, 0x41, 0xfa, 0x55, 0x69, + 0x3c, 0xc5, 0xe0, 0x26, 0x40, 0x35, 0xa4, 0x5a, 0x63, 0xb9, 0x31, 0x98, + 0xab, 0x05, 0x27, 0x2a, 0x47, 0x1c, 0x54, 0x8a, 0xe4, 0x02, 0x01, 0x07, + 0x8a, 0x83, 0x0e, 0x14, 0x07, 0x8c, 0x81, 0xd7, 0x9a, 0x86, 0x49, 0x1f, + 0x3d, 0x3b, 0xd2, 0xe4, 0x4d, 0x83, 0x26, 0x7d, 0xec, 0x33, 0x9d, 0xa3, + 0xeb, 0x51, 0xa7, 0xc8, 0xdc, 0x28, 0x3d, 0xba, 0xd3, 0x43, 0x33, 0x1c, + 0x76, 0xf4, 0x34, 0xa9, 0x1e, 0xdc, 0x8c, 0x82, 0x3b, 0xf3, 0x57, 0xa2, + 0x56, 0x13, 0x68, 0x74, 0x93, 0x38, 0xea, 0x38, 0xf5, 0xa9, 0x55, 0x77, + 0xc6, 0x09, 0x00, 0x71, 0xc7, 0xbd, 0x45, 0xb0, 0xb0, 0x00, 0x06, 0x2a, + 0x29, 0xa2, 0xdd, 0xb3, 0x9d, 0xe7, 0xe9, 0x4d, 0x72, 0x25, 0x60, 0xb8, + 0xf0, 0xe0, 0xe1, 0x71, 0xde, 0x94, 0xc0, 0xf2, 0x64, 0x28, 0x04, 0xfb, + 0x76, 0xa6, 0xfd, 0x9c, 0xe7, 0xfa, 0xfa, 0x54, 0xca, 0x1d, 0x4f, 0xca, + 0x7a, 0xfb, 0xd4, 0xf3, 0x45, 0x30, 0xba, 0x23, 0xfb, 0x3c, 0x91, 0xf5, + 0x3c, 0x54, 0xf0, 0xb4, 0x08, 0x4f, 0x9a, 0x33, 0xf5, 0xa5, 0x2c, 0xa0, + 0x7c, 0xfb, 0xb3, 0x4c, 0x6c, 0xb8, 0xc2, 0xa9, 0xc8, 0xf5, 0xa3, 0x9d, + 0x5e, 0xeb, 0x61, 0xdc, 0x6c, 0x97, 0x11, 0x96, 0xdb, 0x1a, 0xfb, 0x71, + 0x4d, 0x65, 0x21, 0x83, 0x00, 0x32, 0x3a, 0xd0, 0xd1, 0xbb, 0xb0, 0x5d, + 0x81, 0x4f, 0xa8, 0xef, 0x4c, 0x68, 0xdd, 0x08, 0xeb, 0x8c, 0xf2, 0x45, + 0x3e, 0x64, 0xd8, 0x9e, 0xa3, 0xcb, 0xb1, 0xc6, 0x57, 0x22, 0x9b, 0x28, + 0x0d, 0x29, 0x68, 0xd3, 0x60, 0xec, 0x09, 0xcd, 0x5a, 0x65, 0x85, 0x50, + 0x6c, 0x2f, 0x9e, 0xbf, 0x30, 0xeb, 0x50, 0x3b, 0x6d, 0x3b, 0x82, 0x06, + 0xfe, 0x94, 0xef, 0x6d, 0x85, 0x7b, 0x22, 0x35, 0x43, 0x9c, 0x10, 0x2a, + 0x45, 0x0b, 0xbb, 0x0d, 0xd3, 0x1d, 0x4d, 0x3f, 0x69, 0x55, 0x0c, 0x71, + 0xb9, 0xba, 0x8f, 0x4a, 0x37, 0x04, 0x5d, 0x8c, 0x37, 0x0e, 0xd9, 0x34, + 0x9c, 0x9b, 0x17, 0x35, 0xc8, 0x94, 0xee, 0x76, 0x0a, 0x3e, 0x4e, 0xd5, + 0x20, 0x89, 0x4a, 0x94, 0x3d, 0x4f, 0x71, 0x4a, 0x02, 0xe3, 0xe5, 0x00, + 0x1f, 0x5c, 0xd4, 0xf9, 0x68, 0x46, 0xf2, 0x83, 0x18, 0xcd, 0x44, 0xa4, + 0xc4, 0xe6, 0x55, 0xf2, 0x54, 0x30, 0x0c, 0x70, 0xb8, 0xe4, 0x53, 0x16, + 0x15, 0x0c, 0xcc, 0xb2, 0x64, 0xf6, 0x00, 0x55, 0x99, 0x0e, 0xfc, 0x36, + 0x07, 0x3c, 0x93, 0x8a, 0x85, 0xbe, 0x63, 0xf7, 0x78, 0x1f, 0x95, 0x5a, + 0x9b, 0x6b, 0x72, 0x93, 0xbe, 0xe4, 0xb1, 0xb0, 0x40, 0x54, 0x00, 0x15, + 0xba, 0xe4, 0xd4, 0x3e, 0x6a, 0x23, 0x9e, 0xeb, 0x42, 0x5b, 0x97, 0x62, + 0x09, 0x61, 0xf4, 0xe6, 0xa1, 0x68, 0x48, 0x62, 0x03, 0x71, 0xf4, 0xa1, + 0x46, 0x3b, 0xb6, 0x0a, 0x2b, 0xa3, 0x2d, 0x2b, 0x0e, 0x48, 0x0b, 0xc7, + 0xad, 0x2e, 0xec, 0x60, 0xe7, 0xaf, 0x61, 0x51, 0x05, 0x38, 0x00, 0xf6, + 0xa9, 0x62, 0x91, 0x37, 0x0d, 0xc8, 0x78, 0xfe, 0x75, 0x9c, 0x92, 0x13, + 0x8d, 0x84, 0x12, 0x00, 0xc4, 0x02, 0x7f, 0x1a, 0x96, 0x06, 0x56, 0x62, + 0x0b, 0x81, 0x8e, 0x84, 0x8e, 0x2a, 0x09, 0x09, 0xf3, 0x0b, 0xa8, 0xfa, + 0xd3, 0x44, 0x65, 0xa2, 0x25, 0x41, 0x2d, 0xd7, 0x14, 0x72, 0xab, 0x07, + 0x2a, 0x62, 0xc9, 0x78, 0x8b, 0x28, 0x48, 0xf0, 0xc7, 0xbe, 0x29, 0x08, + 0x92, 0x6b, 0x85, 0xc4, 0x61, 0x79, 0xc6, 0x7b, 0x54, 0x6c, 0xbe, 0x4b, + 0x8d, 0xc0, 0x2b, 0x1f, 0x4a, 0xb6, 0x0c, 0xab, 0x10, 0x5d, 0xe1, 0x94, + 0xf3, 0x56, 0xd4, 0x62, 0x93, 0x42, 0x76, 0x5b, 0x09, 0x3c, 0x4d, 0x24, + 0x9e, 0x50, 0xfb, 0xa7, 0xa8, 0xf4, 0xfc, 0x6a, 0xa1, 0x82, 0x48, 0xc3, + 0x12, 0x4a, 0x10, 0x71, 0xc5, 0x48, 0xe4, 0xa3, 0x10, 0x01, 0xda, 0x79, + 0x20, 0x76, 0xa5, 0x6d, 0xf2, 0x29, 0x2c, 0xe7, 0x68, 0xe3, 0x14, 0xe3, + 0x1e, 0xc2, 0x50, 0x04, 0x12, 0x6e, 0x5f, 0x31, 0x9b, 0x07, 0xd0, 0xf5, + 0xa9, 0xee, 0x95, 0x36, 0x09, 0x42, 0xe0, 0x63, 0x1d, 0x39, 0x35, 0x58, + 0xb6, 0xc0, 0xa3, 0x76, 0x0f, 0x6a, 0x90, 0x61, 0xc6, 0xd2, 0xcc, 0xcc, + 0x0f, 0x7e, 0x45, 0x3e, 0x46, 0xb5, 0x61, 0xec, 0xec, 0xc4, 0x01, 0xe4, + 0x8d, 0x7a, 0xa7, 0xf5, 0xab, 0x90, 0x80, 0xa9, 0xd3, 0xa7, 0x53, 0x51, + 0x16, 0x18, 0x08, 0x0f, 0x4f, 0x4a, 0x7a, 0x86, 0x08, 0x7d, 0xc5, 0x65, + 0x2b, 0xbd, 0x11, 0x6e, 0x28, 0x8a, 0x50, 0x8c, 0x5b, 0x7b, 0x64, 0x75, + 0xa6, 0xa9, 0x27, 0x02, 0x3d, 0xce, 0x07, 0x52, 0x3d, 0x29, 0xac, 0xa8, + 0xb9, 0x38, 0xce, 0x7a, 0xf3, 0x52, 0x5a, 0xcf, 0x71, 0x68, 0x25, 0x31, + 0x30, 0x51, 0x20, 0xc3, 0x02, 0x3b, 0x56, 0xf0, 0x51, 0xea, 0x57, 0xa1, + 0x04, 0xca, 0x77, 0x7d, 0xef, 0x7e, 0x2a, 0x26, 0x8a, 0x32, 0x81, 0x95, + 0x59, 0xdc, 0xfa, 0xf6, 0xa5, 0x66, 0x2e, 0x73, 0xd7, 0x14, 0x47, 0x3b, + 0xc5, 0x97, 0x8d, 0xbe, 0x6e, 0x87, 0x22, 0xb7, 0x4d, 0x45, 0x89, 0x90, + 0x3a, 0x49, 0x1f, 0x27, 0x8e, 0x3a, 0x55, 0x9b, 0x79, 0xa4, 0x0b, 0xd0, + 0x01, 0xea, 0x6a, 0xab, 0x4f, 0x96, 0xe7, 0x93, 0xf9, 0xd2, 0x9c, 0xe3, + 0x39, 0x24, 0x1e, 0x98, 0xa6, 0xe7, 0xe4, 0x06, 0xc3, 0x5d, 0xb3, 0xa6, + 0xc2, 0xc1, 0x78, 0xc6, 0x3d, 0x6a, 0x32, 0xff, 0x00, 0x32, 0x86, 0x4c, + 0x8f, 0x61, 0xd6, 0xaa, 0xd9, 0x40, 0xec, 0x84, 0xbf, 0x23, 0xb5, 0x68, + 0xc6, 0xa8, 0x17, 0xe6, 0xe3, 0x1e, 0xb5, 0x4f, 0x50, 0x46, 0x6d, 0xfd, + 0xa3, 0x33, 0x97, 0x42, 0xc1, 0x3d, 0x54, 0xf4, 0xac, 0xe9, 0x90, 0x2c, + 0x64, 0x06, 0x3b, 0xbd, 0x7a, 0xd7, 0x50, 0x02, 0xec, 0x20, 0x64, 0x23, + 0x75, 0x04, 0xf1, 0x59, 0x17, 0x9a, 0x70, 0x47, 0x32, 0x44, 0x43, 0x03, + 0xd4, 0x03, 0x58, 0x38, 0x5b, 0x63, 0x1a, 0x94, 0xba, 0xc4, 0xcb, 0x81, + 0x9d, 0x17, 0x6f, 0x9a, 0xa4, 0x7b, 0x8a, 0xb1, 0xbb, 0xca, 0x7d, 0xe4, + 0xe4, 0xe3, 0xb5, 0x31, 0xa2, 0xc7, 0x20, 0x0f, 0xa1, 0xa6, 0xc4, 0x50, + 0xb1, 0x3f, 0x86, 0x2a, 0x1e, 0xba, 0x98, 0x08, 0xe5, 0xdd, 0x0b, 0x45, + 0x28, 0xfa, 0x63, 0xa5, 0x55, 0xfb, 0x3f, 0x98, 0xc1, 0xa4, 0x93, 0x73, + 0xfb, 0x9e, 0xb5, 0xa6, 0x22, 0x88, 0xe7, 0xe5, 0x00, 0x9f, 0x4a, 0x84, + 0xda, 0x80, 0x78, 0xe4, 0x67, 0x34, 0xe3, 0x34, 0xb6, 0x1a, 0x6d, 0x10, + 0x6d, 0x63, 0xf2, 0x2b, 0x10, 0xc3, 0xb6, 0x6a, 0xa4, 0x92, 0x4b, 0x15, + 0xd0, 0xde, 0x59, 0xc2, 0xf3, 0x5a, 0x0d, 0x6f, 0xb9, 0xb3, 0xbb, 0x07, + 0x15, 0x13, 0x5b, 0xca, 0x39, 0x52, 0xad, 0x57, 0x19, 0x22, 0x96, 0x83, + 0x45, 0xc4, 0x72, 0x0c, 0xa7, 0xde, 0xf4, 0xe9, 0x4a, 0x63, 0x97, 0x6e, + 0xe2, 0x73, 0x54, 0xa7, 0xb6, 0x94, 0xb6, 0x42, 0xfc, 0xd9, 0xed, 0x56, + 0x1a, 0x47, 0x8e, 0x24, 0x8d, 0xce, 0xd6, 0xaa, 0xe5, 0x4a, 0xdc, 0xa5, + 0x27, 0x6d, 0x88, 0xde, 0x2d, 0xd9, 0xc1, 0x2b, 0xeb, 0x8a, 0x41, 0x14, + 0x9b, 0xc1, 0x32, 0xe4, 0x77, 0x04, 0x55, 0x88, 0xbe, 0xff, 0x00, 0xcc, + 0xb8, 0x4e, 0xb4, 0xbf, 0x24, 0x99, 0x31, 0xb6, 0x40, 0xeb, 0x9e, 0x29, + 0xf3, 0x1a, 0xa9, 0x45, 0xb2, 0x48, 0x3c, 0x85, 0x4d, 0xa4, 0xe4, 0xf7, + 0xaa, 0xf2, 0x25, 0xb2, 0x4a, 0xd9, 0x24, 0x1c, 0xe7, 0x9a, 0x90, 0xac, + 0x3c, 0x80, 0xfc, 0x8a, 0x85, 0xb6, 0xb0, 0x2a, 0xd8, 0x34, 0x92, 0xd4, + 0x12, 0x52, 0xd9, 0x91, 0x4d, 0x73, 0x33, 0x67, 0x61, 0x24, 0x74, 0xa5, + 0xb5, 0x91, 0x63, 0x41, 0x95, 0x39, 0xef, 0xc5, 0x27, 0x90, 0x31, 0x84, + 0x2c, 0xa3, 0xaf, 0x06, 0x98, 0x61, 0x75, 0x3c, 0x48, 0x6b, 0x4b, 0x46, + 0xd6, 0x0e, 0x42, 0xf8, 0x9e, 0x22, 0xd8, 0x5c, 0x67, 0x1c, 0x9a, 0xad, + 0x21, 0xe4, 0x3a, 0x9e, 0x0f, 0x5e, 0x6a, 0xbf, 0x95, 0x21, 0xcf, 0xcc, + 0x29, 0x85, 0x66, 0x4f, 0x5f, 0xce, 0x92, 0x82, 0x5b, 0x31, 0xc5, 0x72, + 0xb2, 0xe2, 0x95, 0x93, 0xaf, 0x35, 0x04, 0xcc, 0xc8, 0xa4, 0x2e, 0x08, + 0x3f, 0xa5, 0x31, 0x44, 0xb9, 0x1c, 0x81, 0x9a, 0x9d, 0x3a, 0x10, 0xcd, + 0xd7, 0xda, 0x9d, 0xac, 0x5c, 0x9d, 0xd6, 0xc5, 0x0c, 0x9e, 0xdc, 0xd2, + 0x86, 0xe6, 0xac, 0xb8, 0xf2, 0xdf, 0xe4, 0x20, 0x03, 0xd6, 0xa3, 0xf2, + 0xd5, 0xa5, 0x45, 0x53, 0x92, 0x4e, 0x2b, 0x4e, 0x64, 0x64, 0xae, 0x76, + 0x36, 0x4a, 0x17, 0x4d, 0x89, 0x31, 0xd0, 0x53, 0x46, 0x12, 0xe1, 0x6a, + 0x62, 0x16, 0xde, 0xdd, 0x41, 0x38, 0xe0, 0x55, 0x70, 0xe1, 0xa7, 0x56, + 0x18, 0x23, 0x3d, 0x6b, 0xce, 0x7a, 0xbb, 0x9d, 0x05, 0x8b, 0xf5, 0xde, + 0x23, 0x23, 0xb8, 0xe6, 0xb3, 0x64, 0xd9, 0xe5, 0xb2, 0x32, 0x82, 0xa7, + 0xbd, 0x74, 0x53, 0xc2, 0x25, 0xb6, 0x05, 0x02, 0xe7, 0x1d, 0x73, 0x5c, + 0xcd, 0xcd, 0xbc, 0xcb, 0x39, 0x32, 0x03, 0xf8, 0x7a, 0x56, 0xee, 0x03, + 0x4c, 0x65, 0xbd, 0xc7, 0xd8, 0xe6, 0xdd, 0x1c, 0x71, 0x3e, 0x46, 0x31, + 0x22, 0xe4, 0x55, 0x57, 0xe5, 0xf2, 0x7d, 0x73, 0x8a, 0x71, 0x47, 0x05, + 0xb2, 0x0e, 0x01, 0xe3, 0x34, 0xa0, 0xf1, 0x9d, 0xa3, 0x15, 0x4b, 0xb0, + 0x0c, 0x64, 0x2e, 0x38, 0x1f, 0x8d, 0x46, 0xaa, 0x54, 0xe0, 0xb7, 0x35, + 0x67, 0x04, 0x83, 0x80, 0x07, 0xa5, 0x44, 0xd1, 0x7c, 0xc1, 0x9b, 0x91, + 0xdc, 0x0a, 0xa4, 0xec, 0x26, 0xae, 0x3a, 0x34, 0xfb, 0x4c, 0x82, 0x30, + 0x56, 0x3f, 0x76, 0x34, 0xc9, 0x23, 0x58, 0x25, 0x68, 0xd9, 0xf7, 0x32, + 0x9c, 0x64, 0x74, 0xa8, 0xdc, 0x20, 0x6c, 0xaf, 0x1e, 0x82, 0xa4, 0x54, + 0x67, 0x00, 0x94, 0x24, 0xf6, 0x34, 0xd9, 0x3a, 0x92, 0x2c, 0xa9, 0x18, + 0x39, 0x24, 0x1f, 0x6a, 0xd2, 0xb4, 0x9e, 0x17, 0x8b, 0x3b, 0x82, 0xb0, + 0xe0, 0x2f, 0x73, 0x58, 0xb3, 0xb3, 0x09, 0x09, 0x7c, 0xb3, 0x1e, 0xf5, + 0x2d, 0xbc, 0xb2, 0xc6, 0x55, 0x90, 0x60, 0x8e, 0x86, 0xb3, 0xa9, 0x4f, + 0x99, 0x09, 0xea, 0x74, 0xf1, 0x4b, 0x13, 0xc2, 0x63, 0x90, 0x15, 0x07, + 0x8c, 0xd4, 0x42, 0xd6, 0x00, 0x85, 0x0d, 0xde, 0x13, 0x3c, 0x2e, 0x7a, + 0x56, 0x4f, 0xf6, 0x9d, 0xde, 0x42, 0x48, 0x89, 0x8f, 0x52, 0x29, 0xb7, + 0x17, 0xcf, 0x72, 0x8a, 0x8c, 0x80, 0x05, 0xf4, 0xef, 0x5c, 0xaa, 0x84, + 0xd0, 0x5b, 0x43, 0x52, 0x5b, 0x78, 0x0a, 0x6d, 0xfb, 0x4c, 0x67, 0x1d, + 0x0e, 0x39, 0xa8, 0xe5, 0xd3, 0x64, 0x36, 0xc2, 0x55, 0x9a, 0x26, 0x43, + 0xd1, 0x47, 0x53, 0x54, 0xec, 0xcb, 0x32, 0xe0, 0x20, 0x70, 0x4f, 0x23, + 0xb8, 0xab, 0xed, 0x70, 0xd6, 0xf2, 0xf9, 0x2a, 0xc7, 0xcb, 0x03, 0xb8, + 0xe4, 0x56, 0xf6, 0x70, 0x8d, 0xf7, 0x27, 0x53, 0x34, 0x79, 0x90, 0xbb, + 0x23, 0xa3, 0x15, 0xf4, 0xf6, 0xa9, 0x56, 0xe1, 0x90, 0x8d, 0x9b, 0x82, + 0xf6, 0x04, 0xf4, 0xab, 0x12, 0xb8, 0x94, 0xe5, 0x65, 0x72, 0x31, 0xfc, + 0x54, 0xfb, 0x73, 0x0f, 0x96, 0xc4, 0x82, 0x4f, 0x6a, 0x4e, 0xa2, 0xde, + 0xc5, 0xa2, 0xbf, 0xda, 0xa5, 0x69, 0x40, 0x2a, 0x32, 0x7d, 0x29, 0xed, + 0x2b, 0x0e, 0x08, 0xeb, 0xd7, 0x15, 0x21, 0x11, 0x2c, 0x8b, 0x27, 0xdd, + 0x39, 0xfc, 0xaa, 0x78, 0xe1, 0x8d, 0xa4, 0xdd, 0xbd, 0x4f, 0x39, 0x3c, + 0xd2, 0x94, 0xd5, 0xae, 0x90, 0xfd, 0x4a, 0xca, 0xc4, 0x3e, 0xe0, 0xa7, + 0x6e, 0x6a, 0x62, 0xc5, 0x79, 0xe1, 0x87, 0xad, 0x5e, 0xb9, 0x51, 0x32, + 0x2c, 0x71, 0x42, 0x9c, 0x77, 0x1c, 0x55, 0x57, 0xb6, 0xf2, 0xe3, 0xf9, + 0x98, 0x0f, 0x6e, 0xb5, 0x97, 0x3b, 0xdd, 0xe8, 0x36, 0xec, 0x56, 0x12, + 0x96, 0x27, 0x62, 0x9c, 0x67, 0xb1, 0xa9, 0x4b, 0xb2, 0x80, 0x0a, 0x13, + 0x9f, 0xca, 0xa2, 0x40, 0x88, 0xc7, 0x6b, 0xfd, 0x40, 0x14, 0x8d, 0x29, + 0x66, 0x03, 0xe7, 0x03, 0xb5, 0x5e, 0xaf, 0x44, 0x2b, 0xdc, 0xb4, 0xa7, + 0x9c, 0xfd, 0xce, 0x2a, 0x26, 0x3c, 0x6e, 0xde, 0x01, 0xcf, 0x4f, 0x5a, + 0x52, 0x4e, 0x06, 0x58, 0x03, 0x8e, 0x95, 0x0c, 0x89, 0xf2, 0xe7, 0x8a, + 0xce, 0xc4, 0xd9, 0x96, 0x63, 0xb7, 0x33, 0x9d, 0xd1, 0x70, 0x7d, 0x0d, + 0x3f, 0xc8, 0x74, 0x63, 0xb8, 0x70, 0x3a, 0x9a, 0xaf, 0x6f, 0x74, 0x61, + 0x00, 0x6d, 0xc8, 0xfe, 0xf1, 0x6a, 0xd2, 0x49, 0x4c, 0x91, 0x86, 0x29, + 0xf2, 0x9e, 0xe4, 0xd6, 0x52, 0x72, 0x4c, 0xce, 0x52, 0x92, 0x29, 0xb4, + 0x62, 0x4e, 0xf8, 0x34, 0xe5, 0x87, 0x8f, 0x94, 0x72, 0x2a, 0x66, 0x87, + 0x24, 0x94, 0xc7, 0xa9, 0xc5, 0x02, 0xe6, 0x28, 0x4e, 0xd6, 0xc1, 0x7c, + 0x70, 0xa4, 0xf3, 0x43, 0x95, 0xd6, 0x84, 0x7b, 0x4d, 0x34, 0x20, 0x78, + 0x4a, 0xfd, 0xe3, 0x83, 0x51, 0x16, 0xda, 0x07, 0x39, 0xf6, 0x14, 0xf9, + 0x5e, 0x49, 0x64, 0xdc, 0x13, 0x03, 0xeb, 0x40, 0x96, 0x3c, 0x6d, 0x64, + 0xc9, 0x3d, 0xe9, 0xa4, 0xfa, 0x9a, 0xc7, 0x55, 0x72, 0x07, 0x77, 0x23, + 0x1b, 0x78, 0x26, 0xa3, 0x77, 0x93, 0x3b, 0x4e, 0x71, 0x56, 0x0e, 0xd2, + 0x85, 0x70, 0x7a, 0xe7, 0x70, 0xa8, 0xd5, 0x8c, 0x41, 0x99, 0x5b, 0x39, + 0xeb, 0x91, 0x54, 0x87, 0x62, 0x14, 0xb5, 0x75, 0x1f, 0x7c, 0x9a, 0x94, + 0xc6, 0x15, 0x7a, 0xe0, 0xfa, 0x62, 0xa6, 0x8e, 0x2c, 0x29, 0xf9, 0xbf, + 0x3a, 0x70, 0x55, 0x60, 0x77, 0x30, 0xe6, 0xab, 0x99, 0xdc, 0xd1, 0x68, + 0x52, 0x47, 0xf9, 0xb8, 0x18, 0xf5, 0xe2, 0x9d, 0x22, 0x6d, 0xc3, 0x02, + 0x40, 0xf6, 0xa9, 0x9a, 0xcc, 0x11, 0x94, 0x6c, 0x9f, 0x4a, 0x96, 0x58, + 0x9e, 0x45, 0x5c, 0xa8, 0x55, 0x1d, 0x96, 0x8e, 0x68, 0xf7, 0x15, 0x8a, + 0x73, 0x2c, 0xac, 0xc0, 0xbb, 0x16, 0xc0, 0xfc, 0x31, 0x4a, 0xb9, 0x09, + 0xd3, 0x3d, 0xbe, 0x95, 0x61, 0xa2, 0xdc, 0x00, 0xe7, 0xf3, 0xa5, 0x10, + 0xa0, 0x5d, 0xb8, 0x23, 0x34, 0xb9, 0x95, 0x89, 0xb0, 0x91, 0xc8, 0x98, + 0x01, 0xe1, 0xdc, 0x40, 0xe7, 0x35, 0x0b, 0x10, 0x1d, 0x8c, 0x41, 0x91, + 0x4f, 0x60, 0x6a, 0xc2, 0xc6, 0xe3, 0xe5, 0x19, 0x3c, 0x71, 0x4c, 0x36, + 0xcc, 0x39, 0x63, 0x8f, 0x5a, 0xbf, 0x6b, 0xd0, 0x7b, 0x0c, 0x89, 0x62, + 0x10, 0x90, 0x24, 0x65, 0x90, 0x9c, 0x9c, 0xd3, 0x23, 0xdd, 0x05, 0xc6, + 0x48, 0x27, 0xdf, 0x38, 0xa9, 0x19, 0x17, 0x6e, 0x14, 0xe4, 0xd2, 0xc7, + 0x23, 0x91, 0x87, 0xda, 0x4d, 0x0d, 0xa7, 0xa8, 0x3b, 0x35, 0xb1, 0x24, + 0xcc, 0x0e, 0x19, 0x3f, 0x11, 0x47, 0x9e, 0x1a, 0x22, 0x0a, 0xe3, 0x1d, + 0x05, 0x33, 0x00, 0x9f, 0xba, 0x3f, 0x0a, 0x92, 0x30, 0xa1, 0x80, 0xc1, + 0x2b, 0xdf, 0xb5, 0x67, 0xca, 0xba, 0x10, 0xe1, 0x12, 0xb0, 0x8d, 0x89, + 0x2f, 0x95, 0xc7, 0xd7, 0x9a, 0x91, 0x63, 0x0f, 0xf2, 0x97, 0x24, 0x9f, + 0x6a, 0xb2, 0xfe, 0x4c, 0x63, 0x74, 0x60, 0x8c, 0xf6, 0x3c, 0xd4, 0x65, + 0xb2, 0x77, 0x01, 0xb7, 0x3f, 0xc5, 0x47, 0x35, 0xfa, 0x02, 0x5d, 0x12, + 0x1a, 0x96, 0x85, 0x4f, 0xcd, 0xc6, 0x3b, 0xe6, 0x9a, 0xfe, 0x5a, 0x7f, + 0x11, 0xc7, 0xa5, 0x4c, 0xb2, 0xee, 0x4d, 0xae, 0x77, 0x11, 0xfc, 0xa9, + 0x36, 0xc7, 0x81, 0x81, 0x96, 0x26, 0x93, 0xbd, 0xf5, 0x13, 0x86, 0xa5, + 0x53, 0xd3, 0xe4, 0x8c, 0x83, 0xea, 0x6a, 0x31, 0x0a, 0xb9, 0x20, 0x82, + 0x4f, 0xa9, 0xab, 0x6f, 0x92, 0xbd, 0x81, 0x34, 0x28, 0x42, 0x3e, 0x56, + 0x19, 0x1e, 0xbd, 0xea, 0x94, 0xac, 0x52, 0x8a, 0x48, 0x8c, 0x5b, 0x95, + 0xef, 0x9c, 0x76, 0xa5, 0x28, 0x07, 0x00, 0x1a, 0x97, 0x7f, 0xf7, 0x88, + 0x1f, 0x4a, 0x69, 0x59, 0x76, 0xf0, 0x38, 0xf7, 0xa1, 0x36, 0xf7, 0x12, + 0xbd, 0xc6, 0x16, 0xc9, 0x3f, 0xec, 0xfb, 0x53, 0x4b, 0xa9, 0x07, 0x19, + 0x14, 0xe8, 0xd0, 0xef, 0x21, 0x94, 0x83, 0xde, 0x9c, 0xd0, 0x32, 0xa8, + 0x61, 0xd3, 0xb5, 0x36, 0xac, 0xec, 0x27, 0x75, 0xd0, 0xae, 0xe8, 0x79, + 0x03, 0x9f, 0x61, 0x4f, 0x01, 0x63, 0x5c, 0x67, 0x8e, 0xf4, 0x6d, 0x60, + 0xdc, 0xf5, 0xa8, 0x08, 0x2d, 0x27, 0xde, 0xc2, 0xe7, 0x9a, 0xa5, 0xae, + 0x84, 0xfb, 0x47, 0xb1, 0x64, 0x6c, 0x73, 0x81, 0x91, 0x42, 0x03, 0x9c, + 0x2e, 0x4e, 0x3f, 0x2a, 0x6b, 0x88, 0x95, 0x87, 0x92, 0x49, 0x00, 0x72, + 0x5a, 0x9e, 0x92, 0xae, 0xde, 0x98, 0x23, 0xbd, 0x4b, 0x4d, 0x16, 0x98, + 0xa6, 0x3d, 0x87, 0x25, 0x88, 0x1d, 0xe9, 0xe6, 0x6e, 0x31, 0xce, 0xdf, + 0x53, 0x50, 0xf9, 0x8a, 0xec, 0x41, 0x52, 0x17, 0xb9, 0xed, 0x4f, 0x11, + 0xb1, 0x51, 0xc0, 0xc7, 0x63, 0x43, 0xf3, 0x1c, 0x75, 0xdc, 0x36, 0xb0, + 0xc1, 0x53, 0x90, 0x69, 0x09, 0x97, 0x3b, 0x48, 0x18, 0xf5, 0xa9, 0x10, + 0x15, 0xed, 0xcf, 0xb1, 0xa5, 0x93, 0x91, 0xce, 0xef, 0x6a, 0x9e, 0x6d, + 0x42, 0xf6, 0x15, 0x58, 0x6c, 0xcc, 0xb9, 0x63, 0xfc, 0x2b, 0x9a, 0xae, + 0xd1, 0xf9, 0x92, 0x67, 0x80, 0x05, 0x3b, 0x69, 0x19, 0xe7, 0xf3, 0xa3, + 0xca, 0xdc, 0x08, 0x19, 0xe9, 0xcf, 0x35, 0x69, 0xa0, 0x52, 0xb8, 0x62, + 0x3d, 0xa4, 0x03, 0xce, 0x3a, 0xd4, 0x4a, 0x00, 0xe3, 0x1c, 0x7a, 0xd3, + 0x80, 0x21, 0xc0, 0x0c, 0x48, 0xc5, 0x20, 0xb3, 0x0f, 0x96, 0xdf, 0x9e, + 0x7a, 0x13, 0x4d, 0x5b, 0xab, 0x0b, 0x5b, 0x73, 0x46, 0xde, 0xe6, 0x08, + 0x23, 0x0a, 0xcb, 0x9c, 0xf7, 0xc5, 0x2c, 0x93, 0xc1, 0x27, 0x11, 0x85, + 0x07, 0xb6, 0x6a, 0x9f, 0x91, 0xf2, 0x90, 0x38, 0x23, 0x8c, 0xd1, 0xe5, + 0xb6, 0xe0, 0x58, 0xa9, 0x15, 0x4a, 0xa2, 0xb5, 0x87, 0xb8, 0xad, 0x6c, + 0x4b, 0x92, 0x65, 0xc9, 0xed, 0x83, 0xc5, 0x3e, 0x28, 0x42, 0x23, 0x34, + 0x87, 0x9e, 0xc7, 0x35, 0x22, 0x3b, 0x11, 0xb4, 0xe0, 0xad, 0x31, 0x94, + 0x2b, 0x70, 0xac, 0x41, 0xe9, 0xed, 0x59, 0x5d, 0xbd, 0xcc, 0xac, 0xdb, + 0xb3, 0x16, 0x42, 0x19, 0x76, 0xa6, 0x7e, 0xa7, 0xbd, 0x47, 0xe5, 0x7c, + 0xa0, 0x82, 0x77, 0x77, 0xdc, 0x7a, 0x53, 0xbf, 0x7d, 0x1b, 0x67, 0x1c, + 0x0e, 0x95, 0x04, 0xcd, 0x2c, 0xa7, 0x24, 0xe3, 0xda, 0x97, 0x2e, 0xb6, + 0x0b, 0x3b, 0x93, 0x3f, 0xc8, 0xbf, 0x78, 0x12, 0x7b, 0xf3, 0x48, 0x84, + 0x6d, 0x21, 0x99, 0xb8, 0xe9, 0x83, 0x51, 0x46, 0x84, 0xf0, 0xc4, 0x90, + 0x7d, 0x6a, 0x43, 0x18, 0x12, 0x64, 0x37, 0x18, 0xe9, 0x45, 0x91, 0x5a, + 0x0e, 0x2c, 0x1c, 0x01, 0xba, 0x99, 0xcc, 0x7c, 0x01, 0x9c, 0xd4, 0xc3, + 0x69, 0xe3, 0x3c, 0xfd, 0x29, 0xbb, 0x4e, 0x0e, 0x06, 0x7d, 0xe8, 0x4c, + 0x57, 0x44, 0x4e, 0x8e, 0xcb, 0xc9, 0xc0, 0xf4, 0xa8, 0x5f, 0x72, 0x8e, + 0x58, 0x11, 0x57, 0x19, 0x37, 0x0c, 0xe6, 0xa0, 0x31, 0x82, 0x48, 0x19, + 0xab, 0x53, 0x0e, 0x68, 0xad, 0x88, 0x55, 0x3e, 0x5f, 0xf5, 0x86, 0xa7, + 0x55, 0x6e, 0x0b, 0x49, 0xb8, 0x76, 0x04, 0xd2, 0x79, 0x12, 0x1e, 0x36, + 0x9c, 0x0e, 0xd8, 0xa9, 0x07, 0xee, 0xfe, 0x52, 0x84, 0x1f, 0x7a, 0x52, + 0x91, 0x2e, 0x57, 0x25, 0x12, 0x91, 0x16, 0x01, 0x04, 0x7a, 0x7a, 0x53, + 0x0b, 0x61, 0x38, 0xc6, 0x49, 0xee, 0x3a, 0x52, 0x1f, 0x99, 0xb2, 0xbc, + 0x62, 0x9e, 0xaa, 0x36, 0xe4, 0x82, 0x4d, 0x67, 0x7b, 0x05, 0xd0, 0x2c, + 0xef, 0x18, 0xdc, 0xac, 0x03, 0x0f, 0x4a, 0x8c, 0xcc, 0xcf, 0xd4, 0x03, + 0x9f, 0x6a, 0x63, 0x12, 0xec, 0x40, 0x5e, 0x95, 0x28, 0x75, 0x3c, 0x8e, + 0xa0, 0x73, 0x93, 0x57, 0x6d, 0x0a, 0xe6, 0x48, 0x60, 0x5c, 0x0c, 0xb3, + 0x63, 0xd2, 0x80, 0x24, 0xe0, 0x88, 0xc9, 0xf7, 0xa4, 0x88, 0x19, 0x37, + 0xfc, 0xa4, 0x9c, 0xf7, 0xed, 0x4d, 0x77, 0x78, 0x17, 0x04, 0xfe, 0x46, + 0x8b, 0xf4, 0x2d, 0x49, 0x37, 0x62, 0x45, 0x49, 0x5c, 0x9e, 0x80, 0xfa, + 0x13, 0x4b, 0x1a, 0xbc, 0x72, 0xe4, 0xfc, 0xa4, 0x74, 0x39, 0xe2, 0xaa, + 0x1f, 0x30, 0xb0, 0x3e, 0x61, 0x07, 0xb5, 0x4f, 0xb9, 0xcb, 0x21, 0x42, + 0x58, 0xaf, 0x5d, 0xd4, 0x59, 0x83, 0x52, 0x41, 0x20, 0x69, 0x65, 0xdb, + 0xb0, 0x13, 0xd4, 0xd1, 0x22, 0x3d, 0xb8, 0x21, 0x97, 0x8e, 0xaa, 0x07, + 0x4a, 0x90, 0x4d, 0x96, 0xcc, 0xc8, 0x09, 0x23, 0xb1, 0xc5, 0x42, 0x37, + 0x4b, 0x21, 0xd8, 0xc0, 0x26, 0x71, 0xf3, 0x1e, 0x94, 0xd4, 0x9e, 0xc4, + 0xdd, 0xf5, 0x1b, 0xe6, 0x65, 0xcb, 0xb2, 0x9d, 0xa3, 0xf8, 0xb1, 0x4d, + 0x17, 0x22, 0x57, 0x25, 0x55, 0xb3, 0xe9, 0x8a, 0x94, 0x86, 0x8f, 0x31, + 0xac, 0xaa, 0xca, 0xfd, 0x40, 0xed, 0x53, 0xc5, 0x0c, 0x11, 0x82, 0x50, + 0x60, 0xe3, 0xaf, 0x5c, 0xd5, 0xf3, 0xc6, 0x28, 0x6d, 0xae, 0x85, 0x78, + 0x6d, 0xe6, 0xb9, 0x5f, 0x9a, 0x23, 0x8e, 0x9b, 0xb1, 0xd2, 0x95, 0xb7, + 0x5a, 0x37, 0x96, 0x4a, 0x9c, 0xf7, 0xf4, 0xab, 0xeb, 0x7a, 0x76, 0x79, + 0x67, 0x29, 0x9e, 0x8c, 0x05, 0x53, 0x96, 0xde, 0x39, 0x37, 0x3b, 0xca, + 0x8c, 0xc7, 0x81, 0x93, 0x44, 0x6a, 0xb9, 0x3b, 0x48, 0x5c, 0xf7, 0xd1, + 0x8b, 0x1c, 0x72, 0xba, 0x16, 0x8c, 0x29, 0xc0, 0xe0, 0xe3, 0xad, 0x36, + 0xe1, 0xa7, 0x48, 0xd1, 0x5b, 0x1b, 0xba, 0xe0, 0x54, 0xd0, 0xcb, 0x2c, + 0x2b, 0xc8, 0x05, 0x40, 0xe3, 0x1d, 0xaa, 0x04, 0xdf, 0xe7, 0x33, 0xb0, + 0x25, 0x1b, 0xd6, 0x92, 0xa9, 0x77, 0xad, 0xac, 0x52, 0x6c, 0xad, 0xe5, + 0x5d, 0x04, 0xf3, 0x19, 0x46, 0x33, 0xd4, 0x1a, 0x55, 0x90, 0x67, 0x92, + 0xc4, 0x0e, 0xb9, 0xe9, 0x56, 0x1d, 0xb0, 0x0a, 0xe3, 0xe5, 0xec, 0x2a, + 0x09, 0x36, 0xa9, 0x38, 0x04, 0xa6, 0x31, 0x5b, 0x46, 0x77, 0x5a, 0x80, + 0x86, 0x68, 0x72, 0x4a, 0xe4, 0x7d, 0x29, 0xe3, 0x0e, 0xbd, 0x41, 0x1f, + 0x95, 0x46, 0xc9, 0x12, 0x95, 0x3c, 0x30, 0x3c, 0xe0, 0x54, 0xf0, 0xa2, + 0x67, 0x76, 0x70, 0x0f, 0x6a, 0x2a, 0x34, 0x86, 0x34, 0x88, 0x54, 0x93, + 0xb3, 0x2d, 0xed, 0x51, 0x4b, 0x1c, 0x99, 0xde, 0xb8, 0x19, 0x18, 0x0b, + 0x56, 0xbc, 0xa8, 0xd9, 0xb3, 0x1e, 0x73, 0x9e, 0x73, 0x44, 0xa4, 0x85, + 0x3b, 0x98, 0x67, 0xb6, 0x2b, 0x38, 0xcd, 0x74, 0x18, 0xdb, 0x6b, 0x96, + 0xb6, 0xf9, 0x1d, 0x33, 0x9e, 0xe2, 0xb4, 0x24, 0x0a, 0xca, 0x3c, 0xb7, + 0x52, 0x48, 0xcf, 0x26, 0xb2, 0xdd, 0x95, 0xe3, 0xea, 0x77, 0xf6, 0xe6, + 0xa0, 0x91, 0xe5, 0x0c, 0xa7, 0x8c, 0x01, 0x8a, 0xdd, 0x54, 0x5b, 0x30, + 0x36, 0x97, 0x38, 0xc3, 0x11, 0xf8, 0x1a, 0x1d, 0x14, 0xaf, 0x04, 0x67, + 0xb0, 0xf5, 0xac, 0xeb, 0x56, 0x96, 0x66, 0x07, 0xca, 0x25, 0x73, 0x82, + 0xc3, 0xa5, 0x6c, 0x26, 0x9c, 0x71, 0xb9, 0xd0, 0xe3, 0xeb, 0x5a, 0x27, + 0x70, 0x33, 0xfe, 0xc2, 0xd7, 0x53, 0x08, 0xf0, 0x14, 0x93, 0x8d, 0xc2, + 0xa8, 0xea, 0x3e, 0x1d, 0xd5, 0x34, 0xf0, 0x67, 0x5b, 0x72, 0xf6, 0xf9, + 0xe6, 0x54, 0xe4, 0x57, 0x5f, 0x67, 0x6c, 0xa8, 0x57, 0x64, 0x0f, 0xcf, + 0x53, 0x5d, 0xee, 0x85, 0x1a, 0x08, 0xc2, 0x02, 0x18, 0x1e, 0xaa, 0xc3, + 0x83, 0x5c, 0xb5, 0x2a, 0x72, 0x3b, 0xa3, 0x48, 0xe1, 0xe3, 0x53, 0x73, + 0xc0, 0x16, 0xed, 0xcb, 0x10, 0x06, 0x00, 0xf5, 0xea, 0x6a, 0x75, 0xba, + 0x20, 0x00, 0xf8, 0xc9, 0xec, 0x2b, 0xda, 0x3c, 0x4d, 0xf0, 0xe6, 0xc7, + 0x5f, 0x4f, 0x3f, 0x4f, 0xb7, 0x82, 0xce, 0xef, 0x1c, 0x94, 0xe1, 0x5b, + 0xea, 0x00, 0xaf, 0x32, 0xd5, 0x7e, 0x1e, 0x78, 0x8b, 0x47, 0x99, 0x81, + 0xd3, 0xde, 0x75, 0x51, 0x9f, 0x32, 0x0f, 0x98, 0x62, 0x9c, 0x67, 0x4e, + 0x6b, 0xb1, 0x8c, 0xf0, 0x72, 0x8b, 0x31, 0x8c, 0xc9, 0xb7, 0x20, 0xfe, + 0x75, 0x1b, 0xbe, 0x47, 0xc8, 0xe0, 0x1a, 0xab, 0x22, 0xb2, 0x36, 0xc9, + 0xa3, 0x31, 0xb0, 0x3c, 0x86, 0x18, 0xc7, 0xe1, 0x4f, 0xfb, 0x34, 0x58, + 0xe6, 0x5c, 0x93, 0x5b, 0xaa, 0x2b, 0xb9, 0x8f, 0xb1, 0xf3, 0x1f, 0xe6, + 0x33, 0x37, 0xce, 0xe3, 0xea, 0x29, 0x65, 0xb7, 0xdf, 0xfb, 0xc5, 0x6d, + 0xc7, 0xde, 0xa2, 0x16, 0xa1, 0x01, 0x2a, 0xd9, 0x1e, 0xf4, 0xcf, 0xb7, + 0x47, 0x1e, 0x14, 0xb1, 0x38, 0x3d, 0xa8, 0x74, 0xda, 0xf8, 0x46, 0xe9, + 0xb4, 0x5d, 0x8a, 0xd5, 0x65, 0x87, 0xe7, 0x90, 0x03, 0xe8, 0x3a, 0xd6, + 0x75, 0xcc, 0x10, 0x23, 0x81, 0x13, 0x30, 0xfe, 0xf6, 0x7b, 0x54, 0xd2, + 0x5d, 0x44, 0x63, 0xdf, 0xbc, 0x02, 0x7a, 0x00, 0x6a, 0x85, 0xc1, 0x0c, + 0x46, 0xd1, 0xc9, 0xea, 0x41, 0xa7, 0x4d, 0x3b, 0xea, 0x0a, 0x5d, 0x2c, + 0x21, 0x76, 0x53, 0x85, 0x6d, 0xc0, 0xfb, 0xd0, 0x26, 0x23, 0xa8, 0x34, + 0xb1, 0xa2, 0xa8, 0xc1, 0x6c, 0x67, 0xbd, 0x49, 0x85, 0xc6, 0x3b, 0x56, + 0xce, 0xc6, 0x91, 0x8d, 0x90, 0xa2, 0xe5, 0x48, 0xeb, 0x4f, 0xf3, 0x54, + 0xf7, 0xa8, 0xd5, 0x03, 0x64, 0x08, 0x83, 0x67, 0xbf, 0xa5, 0x36, 0x48, + 0x94, 0x3e, 0x00, 0xc7, 0xd2, 0xa2, 0xc8, 0x6e, 0x56, 0xd0, 0xb0, 0x24, + 0x50, 0x33, 0x48, 0x1c, 0x31, 0xc9, 0x35, 0x0f, 0xd9, 0x98, 0xaf, 0xde, + 0xc0, 0xa7, 0x24, 0x03, 0x69, 0x0c, 0xe4, 0x7a, 0x77, 0xa5, 0x68, 0xf7, + 0x1a, 0x9d, 0xdd, 0x87, 0xee, 0x1d, 0x7d, 0x68, 0xeb, 0xd2, 0xa3, 0x78, + 0xca, 0x73, 0xb8, 0x11, 0x4c, 0x04, 0x9e, 0x84, 0x53, 0xb1, 0x5c, 0xc1, + 0x70, 0x78, 0x0b, 0xeb, 0x53, 0x58, 0x44, 0x1a, 0xee, 0x10, 0x3f, 0xbc, + 0x0d, 0x56, 0x74, 0x60, 0xff, 0x00, 0x31, 0x02, 0xb4, 0xf4, 0x28, 0x4c, + 0xba, 0x80, 0x3d, 0x76, 0x8c, 0xd1, 0x2d, 0x21, 0xa1, 0x17, 0xbc, 0x8e, + 0x92, 0x76, 0xf3, 0x23, 0xe9, 0x91, 0xf4, 0xaa, 0x4a, 0x4a, 0xca, 0x07, + 0x00, 0x03, 0xd2, 0xb4, 0x0b, 0xa4, 0x44, 0xab, 0x46, 0x4f, 0x1d, 0x41, + 0xaa, 0x72, 0x3a, 0x9e, 0x02, 0x01, 0xcf, 0x5a, 0xe2, 0x6a, 0xc6, 0x86, + 0xa5, 0xa4, 0x9e, 0x6c, 0x4d, 0x11, 0x60, 0x0e, 0x0e, 0x33, 0x55, 0xe5, + 0xcc, 0x8e, 0x91, 0xa4, 0x12, 0x33, 0x8e, 0x09, 0x09, 0xc5, 0x55, 0x5d, + 0xc1, 0xf7, 0x06, 0x38, 0xc7, 0x6a, 0xbf, 0x15, 0xf3, 0x00, 0x37, 0x73, + 0xdb, 0x22, 0xb6, 0x8c, 0xb4, 0xb3, 0x06, 0xba, 0x98, 0x17, 0xec, 0x62, + 0x91, 0x94, 0xa6, 0x09, 0xeb, 0x9a, 0xac, 0xa7, 0x35, 0xbb, 0x7d, 0x6f, + 0x13, 0xc8, 0xd2, 0x3b, 0x2a, 0x93, 0xce, 0x48, 0xeb, 0x59, 0x13, 0xc6, + 0xa3, 0xe7, 0x8f, 0x95, 0xa1, 0xe8, 0x08, 0x89, 0x88, 0x51, 0xc9, 0xa8, + 0xdd, 0xc2, 0xf0, 0x7a, 0xd4, 0x80, 0x16, 0xe7, 0x8c, 0x52, 0x3c, 0x7c, + 0xe7, 0x03, 0x15, 0x63, 0x23, 0x8b, 0x62, 0x4c, 0x1c, 0xae, 0x45, 0x5e, + 0x17, 0x11, 0x11, 0x90, 0xe0, 0x0f, 0x4c, 0x55, 0x02, 0x07, 0x4c, 0xe2, + 0x9a, 0x70, 0x3f, 0x88, 0x50, 0xd0, 0x5e, 0xc5, 0xb9, 0xa5, 0x86, 0x45, + 0x2b, 0x8c, 0x93, 0xdf, 0x15, 0x04, 0x59, 0x41, 0xc7, 0x22, 0xa2, 0x2e, + 0xbd, 0xd8, 0xd0, 0x6e, 0xb6, 0x8c, 0x2a, 0xd3, 0xb7, 0x42, 0x5b, 0x4c, + 0xb7, 0x19, 0xdc, 0x70, 0xe0, 0x90, 0x7a, 0xd2, 0x32, 0xf9, 0x39, 0x28, + 0xc0, 0x8f, 0x43, 0x54, 0x8d, 0xc4, 0xa4, 0x7a, 0x0a, 0x6e, 0x5c, 0xf2, + 0x5a, 0x8e, 0x50, 0x6c, 0xd1, 0x86, 0x53, 0x1c, 0xe9, 0x3a, 0x63, 0x72, + 0x9c, 0xd6, 0x85, 0xc5, 0xc8, 0xb8, 0xc4, 0xb2, 0x6d, 0xc9, 0x1d, 0x45, + 0x62, 0xc1, 0x29, 0x53, 0xcf, 0x4f, 0xa5, 0x75, 0x1a, 0x1c, 0x76, 0x17, + 0x4e, 0x12, 0x40, 0xd2, 0x48, 0x7b, 0x11, 0x81, 0x59, 0xce, 0x0d, 0xbb, + 0x09, 0x19, 0x8b, 0xf2, 0xa8, 0x6c, 0x10, 0xad, 0xc6, 0x7b, 0x53, 0xf0, + 0x01, 0xf9, 0xb0, 0x17, 0x1c, 0x73, 0x5b, 0xfa, 0x86, 0x90, 0xe9, 0x37, + 0xfa, 0x3a, 0xa7, 0x97, 0x8e, 0x46, 0x78, 0x35, 0x8a, 0xd1, 0x79, 0x24, + 0xaa, 0xe3, 0xdd, 0x0d, 0x65, 0x2b, 0x44, 0x4d, 0xc9, 0x11, 0xfe, 0xe9, + 0xc8, 0x1b, 0xb2, 0x40, 0xc6, 0x07, 0x7a, 0x91, 0x62, 0x11, 0x91, 0xb5, + 0x58, 0x67, 0xb9, 0xa6, 0x88, 0x8a, 0x01, 0x22, 0xc6, 0x79, 0xe8, 0x2a, + 0x51, 0x2c, 0xe0, 0x00, 0x48, 0x41, 0xef, 0x53, 0xcd, 0xae, 0x81, 0x7b, + 0x8e, 0xf3, 0x66, 0x57, 0x0a, 0xa0, 0x80, 0x46, 0x0f, 0x35, 0x03, 0xcd, + 0x22, 0x3e, 0x0b, 0xe4, 0x0e, 0x08, 0xab, 0x0b, 0x32, 0x8c, 0x92, 0xea, + 0x5f, 0x69, 0xc1, 0x02, 0xaa, 0xe2, 0x39, 0x49, 0x0a, 0x1c, 0x9f, 0x61, + 0x4a, 0xe9, 0xf4, 0x16, 0xad, 0x95, 0xe5, 0x2e, 0x58, 0x94, 0x3f, 0x85, + 0x58, 0x48, 0x65, 0x58, 0xbc, 0xf9, 0x98, 0xe0, 0xfd, 0xd5, 0xab, 0x31, + 0xd9, 0xab, 0x60, 0xb3, 0x6c, 0x03, 0xae, 0xee, 0xb4, 0xb2, 0x46, 0xd3, + 0x38, 0x55, 0x05, 0x95, 0x78, 0x51, 0xd0, 0x50, 0xea, 0x2d, 0x89, 0x93, + 0xb3, 0xb2, 0x29, 0x8d, 0xf3, 0xb6, 0xc4, 0x18, 0xc7, 0x7f, 0x4a, 0xb6, + 0x11, 0x15, 0x08, 0x24, 0xb3, 0x7b, 0x71, 0x52, 0x6c, 0x58, 0x62, 0x08, + 0x36, 0xab, 0x77, 0xc5, 0x33, 0x68, 0x66, 0x03, 0x63, 0x37, 0xd4, 0xe0, + 0x54, 0xf3, 0x27, 0xb0, 0xb9, 0x99, 0x0c, 0x9b, 0x39, 0x08, 0xbb, 0xcf, + 0x7e, 0xd8, 0xa6, 0x6e, 0x07, 0x18, 0xdd, 0xb4, 0x71, 0x8a, 0xb2, 0xfb, + 0x17, 0x07, 0x6b, 0x37, 0xb0, 0xa8, 0xd8, 0xc8, 0xe3, 0x68, 0x46, 0x55, + 0x3f, 0x85, 0x01, 0x76, 0x11, 0xdc, 0x48, 0x8a, 0x55, 0x1b, 0x0a, 0x7d, + 0x4d, 0x46, 0x81, 0x63, 0x97, 0x7e, 0xdc, 0xb7, 0xa9, 0xa5, 0x08, 0x91, + 0x8f, 0x94, 0x1c, 0x9e, 0xe6, 0x9a, 0x72, 0x7e, 0xbe, 0xb9, 0xa4, 0x5a, + 0x8d, 0xfa, 0x13, 0xfd, 0xa1, 0xdc, 0x71, 0x81, 0xf4, 0xa6, 0x31, 0x2e, + 0x79, 0xc0, 0x35, 0x1a, 0xb1, 0xe7, 0x8a, 0x97, 0x90, 0xbb, 0xb6, 0x8c, + 0x50, 0x95, 0x9e, 0x83, 0x50, 0x4b, 0x64, 0x42, 0xce, 0x57, 0x8c, 0xb6, + 0x0f, 0x5c, 0x53, 0x1d, 0x59, 0xd4, 0xa2, 0x8e, 0x4f, 0x7a, 0xb2, 0xaa, + 0x4f, 0xcd, 0xc8, 0x3e, 0xa2, 0x9c, 0xf2, 0x7f, 0x78, 0x10, 0x7a, 0x66, + 0xae, 0xeb, 0xa6, 0xe5, 0x6c, 0x46, 0xdb, 0x50, 0x8c, 0x1e, 0x3d, 0xa9, + 0xe2, 0x68, 0xd5, 0x70, 0x46, 0x1a, 0x88, 0x3c, 0xa7, 0x8f, 0x79, 0x39, + 0x03, 0xa9, 0x34, 0xe3, 0x24, 0x4b, 0xc2, 0xa0, 0x3e, 0xf5, 0x2d, 0x0d, + 0xa0, 0x49, 0x94, 0xf2, 0x33, 0x9a, 0x76, 0x49, 0x20, 0x31, 0xe2, 0x91, + 0x5d, 0x49, 0xce, 0x00, 0x3e, 0x82, 0x93, 0x21, 0xf7, 0x67, 0x2a, 0x07, + 0x70, 0x33, 0x9a, 0x94, 0xae, 0xc3, 0x56, 0x0c, 0x72, 0xfc, 0x11, 0xed, + 0x8a, 0x72, 0x23, 0x9c, 0xe0, 0x8f, 0xc6, 0xa2, 0x28, 0x15, 0xb2, 0xb9, + 0x65, 0x3d, 0xcf, 0x6a, 0x7e, 0xc7, 0x5d, 0xa5, 0x4f, 0x5f, 0x7a, 0x72, + 0xd5, 0xe8, 0x21, 0xf2, 0x3c, 0x83, 0x1d, 0x73, 0xe9, 0x4d, 0xf3, 0x65, + 0x61, 0xc1, 0xc0, 0x3d, 0x8f, 0x34, 0x85, 0x58, 0x92, 0x0b, 0xe5, 0xb3, + 0xd2, 0xa7, 0x82, 0x46, 0x48, 0xe4, 0x00, 0x65, 0x88, 0xc6, 0xef, 0x4a, + 0x23, 0x05, 0xd4, 0x96, 0xba, 0x91, 0x26, 0x18, 0x95, 0xe0, 0x66, 0x87, + 0x55, 0x8d, 0x78, 0x60, 0xd9, 0xf4, 0xa4, 0x54, 0x8f, 0x95, 0x19, 0x2c, + 0x0f, 0x53, 0x4c, 0x61, 0x8c, 0xe0, 0x9f, 0xc6, 0x97, 0x2e, 0xa3, 0xb3, + 0xdc, 0x7c, 0x60, 0x1f, 0xad, 0x49, 0xb0, 0x67, 0x20, 0x1f, 0xca, 0x92, + 0x17, 0x58, 0x80, 0x66, 0x3d, 0x7b, 0x1a, 0x68, 0x9d, 0x58, 0xb6, 0x19, + 0xb2, 0x3b, 0x0a, 0x49, 0x36, 0xf4, 0x25, 0x48, 0x56, 0x4e, 0x06, 0x33, + 0xf5, 0x14, 0xdf, 0xb3, 0x97, 0x1f, 0x7c, 0xfe, 0x34, 0xc1, 0x2b, 0x33, + 0x70, 0x4e, 0x3d, 0x69, 0x5b, 0x2d, 0x95, 0xde, 0x73, 0xe9, 0x4f, 0x54, + 0x59, 0x23, 0x22, 0xc6, 0xbf, 0x7b, 0xeb, 0xc5, 0x3a, 0x38, 0x4b, 0x44, + 0x5c, 0x9c, 0x2f, 0xad, 0x47, 0x1c, 0x4c, 0x62, 0x2b, 0xbc, 0xf5, 0xe0, + 0x67, 0x8a, 0x4f, 0x9a, 0x28, 0xf0, 0xcd, 0x81, 0xdc, 0x0e, 0x94, 0x9e, + 0xbd, 0x49, 0x7a, 0xec, 0x48, 0x5f, 0x2a, 0x57, 0x03, 0x8e, 0xe0, 0x54, + 0x7e, 0x59, 0x03, 0x00, 0x0a, 0x7a, 0xdc, 0xa3, 0xa9, 0x01, 0x32, 0x7d, + 0x45, 0x22, 0x79, 0x9d, 0xc1, 0x22, 0x8b, 0x34, 0x34, 0x9d, 0x86, 0x82, + 0x04, 0x99, 0x23, 0x91, 0xed, 0x4f, 0x90, 0xc9, 0x20, 0x38, 0x38, 0xcf, + 0xad, 0x26, 0xc6, 0x07, 0x27, 0x9f, 0x6a, 0x97, 0xcc, 0xde, 0xbc, 0xa8, + 0xfc, 0xa8, 0x7d, 0xd0, 0x9c, 0x53, 0x21, 0xd9, 0xb2, 0x21, 0x95, 0x04, + 0x9e, 0xfd, 0x68, 0x59, 0x36, 0x8c, 0x01, 0xdb, 0xd6, 0x9f, 0xc2, 0x93, + 0x8e, 0xf4, 0x9e, 0x48, 0xdc, 0x1b, 0xa7, 0xd4, 0xd5, 0xf3, 0x77, 0x1a, + 0x4c, 0x8c, 0x82, 0xcb, 0xb8, 0x0c, 0xe7, 0xb1, 0xa8, 0xbc, 0x97, 0x66, + 0xe0, 0x0f, 0xca, 0xad, 0x7f, 0x16, 0x29, 0x59, 0x99, 0x79, 0xf9, 0x71, + 0x4b, 0x98, 0x9e, 0x4e, 0xa5, 0x7f, 0xb2, 0x31, 0x1d, 0xff, 0x00, 0x2a, + 0x58, 0xec, 0xce, 0x72, 0x58, 0x9f, 0xa9, 0xa9, 0x77, 0x9c, 0x83, 0xb8, + 0x81, 0xdc, 0x50, 0x65, 0xe7, 0x82, 0x28, 0xbc, 0x98, 0xd6, 0xe3, 0x1e, + 0x27, 0x5e, 0x11, 0x73, 0xf8, 0xd4, 0x43, 0xcc, 0x52, 0x77, 0x29, 0x15, + 0x6c, 0x38, 0x61, 0x83, 0xdb, 0xb9, 0xa1, 0x98, 0x76, 0x23, 0x27, 0xa5, + 0x2b, 0xf4, 0x2b, 0xc8, 0x84, 0xca, 0x76, 0x80, 0x06, 0x0d, 0x2a, 0xb3, + 0x91, 0xd4, 0x1a, 0x18, 0x1d, 0xdf, 0x3e, 0xcc, 0xfb, 0x52, 0xc6, 0x7e, + 0x63, 0x80, 0x38, 0xf5, 0xa6, 0xd5, 0x84, 0x43, 0x29, 0x6f, 0xbd, 0xc1, + 0x07, 0x8a, 0x4f, 0x2c, 0x9e, 0x41, 0xc8, 0xfc, 0xaa, 0x56, 0xfe, 0xf3, + 0x60, 0x0f, 0x41, 0x4a, 0x1f, 0x23, 0xb5, 0x17, 0xb2, 0x24, 0x87, 0x0c, + 0xbd, 0x39, 0xa9, 0xd8, 0xb8, 0x55, 0x25, 0x57, 0xa7, 0x38, 0x34, 0xa1, + 0x00, 0x1b, 0x88, 0xa1, 0xd7, 0x70, 0xf9, 0x69, 0x39, 0x22, 0xae, 0x34, + 0x00, 0xce, 0x3e, 0x7c, 0x7b, 0x0a, 0x1a, 0x40, 0x7e, 0x50, 0x18, 0x9f, + 0x5a, 0x80, 0xb1, 0x59, 0x08, 0x03, 0xe6, 0xc6, 0x33, 0x4f, 0x0a, 0xe7, + 0x00, 0x1c, 0x66, 0xaa, 0xc8, 0x2c, 0x89, 0xd1, 0x70, 0x06, 0x48, 0x3e, + 0xd4, 0xe8, 0xc9, 0x62, 0x72, 0xc3, 0xd8, 0x55, 0x7f, 0x2a, 0x45, 0xc9, + 0xf3, 0x32, 0x3b, 0xd3, 0xa2, 0x1b, 0x01, 0x0a, 0x3a, 0xf7, 0x34, 0x58, + 0x69, 0x32, 0x5d, 0xa7, 0x77, 0x0c, 0xc4, 0xfa, 0x66, 0x97, 0x96, 0x19, + 0x2b, 0x4c, 0x44, 0x0a, 0xdc, 0x91, 0xcf, 0x7a, 0x94, 0x71, 0xc0, 0x73, + 0x52, 0xd6, 0xba, 0x8b, 0x90, 0x68, 0x44, 0x0b, 0x9e, 0x41, 0x35, 0x13, + 0x05, 0xce, 0x7e, 0x6c, 0xfb, 0x54, 0xfb, 0xb1, 0xd7, 0x9a, 0x68, 0x70, + 0x73, 0x90, 0x45, 0x17, 0x25, 0xc6, 0xcb, 0x42, 0x1c, 0xf4, 0xc7, 0x4f, + 0x7a, 0x91, 0x49, 0x50, 0x72, 0xa3, 0x8a, 0x00, 0xd8, 0x72, 0x48, 0xc7, + 0x5e, 0x69, 0x4b, 0xa9, 0xc8, 0x23, 0x39, 0xf4, 0xa1, 0xdf, 0xaa, 0x25, + 0x26, 0x21, 0x22, 0x40, 0x36, 0x90, 0x3e, 0x94, 0xbb, 0x19, 0x57, 0x76, + 0x7f, 0x1a, 0x8c, 0x28, 0x46, 0xe0, 0x0a, 0x95, 0x08, 0x3c, 0x1e, 0x28, + 0x76, 0x42, 0x69, 0x0f, 0x59, 0x64, 0x29, 0x8c, 0xe0, 0xe7, 0xae, 0x2a, + 0x19, 0x44, 0xc5, 0xc3, 0x67, 0x70, 0xf5, 0x15, 0x36, 0xd0, 0x01, 0xc7, + 0x34, 0x2a, 0x85, 0x04, 0x9f, 0x97, 0xda, 0xa7, 0xcc, 0xcf, 0x97, 0xb0, + 0xd5, 0x89, 0x07, 0x5c, 0x0f, 0x5a, 0x6c, 0x8c, 0xa1, 0xf6, 0x2a, 0x92, + 0x7b, 0x53, 0xe4, 0xc6, 0xdc, 0x8e, 0x4f, 0xa6, 0x68, 0xde, 0x0a, 0xe4, + 0xb6, 0x58, 0x7b, 0x52, 0x4b, 0xab, 0x0e, 0x5b, 0x15, 0x9c, 0x6c, 0x6d, + 0xdc, 0xa9, 0x35, 0x2a, 0x6d, 0x65, 0x24, 0x4b, 0xb8, 0xfa, 0x52, 0xca, + 0x43, 0xc6, 0x0f, 0x24, 0xfd, 0x2a, 0x91, 0x50, 0xa7, 0x9e, 0x2a, 0xd2, + 0xb9, 0x71, 0x85, 0xf7, 0x27, 0x92, 0x47, 0x8b, 0x81, 0x10, 0xda, 0x7b, + 0x66, 0xb3, 0x1e, 0x19, 0x5a, 0x42, 0xe2, 0x42, 0x09, 0xe8, 0x33, 0x57, + 0x81, 0x56, 0xf9, 0x5b, 0x90, 0x68, 0x7e, 0x31, 0xf2, 0x64, 0x7b, 0x55, + 0xc7, 0xdd, 0x66, 0xbc, 0x91, 0x5a, 0xa2, 0x16, 0x72, 0x39, 0x6c, 0xef, + 0xc7, 0x6a, 0x63, 0x5d, 0xca, 0xb8, 0xf2, 0xc1, 0x63, 0xdc, 0x11, 0x8a, + 0xb9, 0x84, 0x62, 0x09, 0x1b, 0x78, 0xa9, 0x04, 0x29, 0xf7, 0xb3, 0x4f, + 0x9e, 0x2b, 0x74, 0x0e, 0x4b, 0xa9, 0x9d, 0x23, 0xdc, 0xc8, 0x81, 0x95, + 0x0e, 0x7b, 0x83, 0x55, 0xbe, 0xc5, 0x79, 0x2c, 0x9f, 0x3e, 0xe5, 0x1e, + 0xb9, 0xe2, 0xb6, 0xdd, 0x78, 0xf9, 0x69, 0xa0, 0x33, 0x74, 0x61, 0x81, + 0xc6, 0x29, 0xaa, 0xcd, 0x2d, 0x04, 0x9a, 0x66, 0x39, 0x8a, 0xea, 0xd4, + 0x1f, 0x97, 0x7a, 0xfa, 0xd3, 0x53, 0x52, 0xb8, 0x8d, 0xfe, 0xef, 0xb5, + 0x6c, 0x1d, 0xc1, 0x8e, 0xec, 0x15, 0x1d, 0x70, 0x29, 0xa6, 0x18, 0x5b, + 0x9c, 0x0c, 0xfb, 0x8a, 0x3d, 0xaa, 0x7f, 0x12, 0x1d, 0x8a, 0xf1, 0x6a, + 0x69, 0x21, 0x02, 0x64, 0x2a, 0x3d, 0x6a, 0x77, 0x96, 0x33, 0x8f, 0x2e, + 0x45, 0x35, 0x22, 0x42, 0xad, 0xc6, 0xd0, 0x7f, 0x0a, 0x47, 0x82, 0x20, + 0x78, 0x40, 0x1b, 0xbf, 0x15, 0x93, 0x94, 0x2f, 0xa2, 0x10, 0xe3, 0x71, + 0x6f, 0x2c, 0x5b, 0x37, 0xe4, 0x8e, 0xbc, 0x62, 0x95, 0x6f, 0x02, 0x46, + 0x10, 0x6d, 0x65, 0x1d, 0x88, 0xaa, 0xe9, 0x6e, 0xa8, 0x49, 0x03, 0xad, + 0x4c, 0xcd, 0x6c, 0xd1, 0x85, 0x9a, 0x12, 0x76, 0xf4, 0x2b, 0xc6, 0x68, + 0x7c, 0xbd, 0x09, 0xb5, 0x86, 0x3c, 0xa6, 0xe0, 0xb1, 0x0a, 0xa8, 0x14, + 0x67, 0x8e, 0xf5, 0x16, 0x37, 0xa6, 0x77, 0x6e, 0x34, 0x8a, 0x50, 0x48, + 0x5a, 0x2c, 0x80, 0x3b, 0x1a, 0xb5, 0x14, 0x42, 0x61, 0x94, 0xc2, 0x9e, + 0xe0, 0xd5, 0x39, 0x72, 0xad, 0x8a, 0x44, 0x1e, 0x59, 0xdb, 0xf7, 0x7e, + 0x94, 0x9e, 0x57, 0x72, 0x49, 0x22, 0xad, 0x4b, 0x0b, 0xa8, 0xea, 0x33, + 0xdc, 0x66, 0xab, 0x33, 0x05, 0x4c, 0xef, 0x1b, 0xbd, 0x28, 0x52, 0x6d, + 0x68, 0x00, 0x8e, 0xcd, 0xc2, 0x9c, 0x81, 0xeb, 0x52, 0x4b, 0x21, 0xd8, + 0x38, 0x0c, 0xdd, 0x07, 0xb5, 0x57, 0xf3, 0x86, 0xc3, 0xf2, 0x72, 0x46, + 0x32, 0x2a, 0x15, 0x62, 0x17, 0x68, 0x53, 0xd7, 0xad, 0x5c, 0x56, 0xb7, + 0x1d, 0x89, 0xfc, 0xbf, 0x33, 0xe6, 0x62, 0x37, 0x74, 0xc5, 0x26, 0xc4, + 0x8b, 0x76, 0xf3, 0xbb, 0x3d, 0x06, 0x69, 0x39, 0xc7, 0xdd, 0xc1, 0xf5, + 0xcd, 0x46, 0x57, 0x9e, 0x3a, 0xd6, 0xde, 0xd6, 0xe2, 0xea, 0x69, 0xd9, + 0x6a, 0x51, 0xda, 0xc2, 0x51, 0x73, 0x8c, 0xe7, 0xde, 0xae, 0xc5, 0xad, + 0x66, 0x50, 0xdb, 0x77, 0x29, 0xea, 0x84, 0xf5, 0xac, 0x15, 0xdb, 0x8e, + 0x57, 0x1f, 0x85, 0x38, 0x7c, 0x8d, 0x95, 0xc8, 0xf6, 0xcd, 0x4b, 0xa8, + 0xde, 0x85, 0x26, 0x7a, 0x4e, 0x89, 0x7f, 0x63, 0x2c, 0xc9, 0xb6, 0xdd, + 0x83, 0x74, 0xc0, 0x3e, 0xb5, 0xe8, 0x36, 0xd6, 0xf6, 0xee, 0x8a, 0x42, + 0xa2, 0xb0, 0xe4, 0x85, 0x3c, 0xd7, 0x82, 0x59, 0xea, 0xf7, 0x36, 0x2c, + 0x1a, 0x32, 0x0e, 0x3a, 0xe4, 0x55, 0xe5, 0xf1, 0x86, 0xa1, 0xe7, 0x16, + 0x46, 0xda, 0x49, 0xcf, 0x22, 0xb8, 0x27, 0x0a, 0xce, 0x57, 0x47, 0x4c, + 0x2b, 0x45, 0x2d, 0x4f, 0x63, 0xb9, 0xd3, 0x2e, 0xd6, 0xe0, 0x4f, 0x0e, + 0xaa, 0xf1, 0x1c, 0xf0, 0x8c, 0x01, 0x5f, 0xa5, 0x6b, 0x5a, 0xc9, 0x70, + 0x88, 0x16, 0xea, 0x48, 0xd9, 0xbf, 0xbc, 0xbc, 0x67, 0xf0, 0xaf, 0x9f, + 0xe4, 0xf1, 0x5d, 0xdc, 0xd2, 0xa9, 0xb9, 0x9e, 0x59, 0x40, 0x6c, 0xe0, + 0xb1, 0xad, 0xcd, 0x47, 0xc6, 0xcb, 0x79, 0x60, 0x90, 0x25, 0x9b, 0xab, + 0x00, 0x30, 0xef, 0x29, 0x3c, 0xd6, 0xaa, 0x94, 0xb4, 0xb9, 0x6a, 0xbc, + 0x4f, 0x44, 0xf1, 0x27, 0x84, 0xfc, 0x35, 0xaf, 0xb9, 0x92, 0xf3, 0xca, + 0x8a, 0xe0, 0x0c, 0x79, 0xb1, 0xc8, 0x14, 0xfe, 0x3e, 0xb5, 0xc4, 0x5f, + 0xfc, 0x29, 0xd2, 0xc5, 0xbb, 0x35, 0x9f, 0x88, 0xa0, 0x49, 0x87, 0x41, + 0x31, 0x5d, 0xbf, 0xa1, 0xcd, 0x50, 0x3e, 0x31, 0x5b, 0x88, 0x16, 0x39, + 0x74, 0xeb, 0x65, 0xc2, 0xe3, 0x72, 0x0e, 0x4f, 0xbd, 0x45, 0x6d, 0xa9, + 0xda, 0x92, 0xcd, 0xb6, 0x23, 0x9e, 0xcc, 0x31, 0x8a, 0xda, 0x11, 0x92, + 0xd3, 0x98, 0x89, 0x55, 0x83, 0xe8, 0x71, 0xba, 0xff, 0x00, 0x87, 0x35, + 0x4d, 0x26, 0x53, 0x0c, 0x8c, 0x93, 0xc5, 0xfc, 0x2f, 0x0b, 0x65, 0x5a, + 0xb9, 0xd6, 0x86, 0x44, 0x38, 0x64, 0x60, 0x7d, 0xc5, 0x7a, 0x9b, 0xdc, + 0x5b, 0x48, 0xe4, 0x19, 0x54, 0x1f, 0x4a, 0x65, 0xd5, 0xbe, 0x93, 0x2a, + 0xe2, 0x6f, 0x2b, 0x71, 0x1d, 0x7b, 0xd7, 0x64, 0x6a, 0x59, 0x59, 0x9c, + 0xd2, 0x8a, 0x6e, 0xe7, 0x98, 0xa2, 0x9c, 0xfd, 0xde, 0x7d, 0xea, 0xda, + 0x49, 0x84, 0xc6, 0xc5, 0x23, 0x3c, 0x8a, 0xe9, 0x2e, 0xb4, 0x6d, 0x29, + 0xdc, 0x84, 0xb8, 0x2a, 0x7b, 0x63, 0xa5, 0x57, 0x3e, 0x14, 0x9a, 0x60, + 0x4d, 0xac, 0xcb, 0x26, 0x29, 0xb9, 0x29, 0x10, 0xe0, 0x64, 0x03, 0x10, + 0x6f, 0xf5, 0x40, 0xfd, 0x69, 0xb3, 0x46, 0x84, 0x82, 0xac, 0x17, 0xd4, + 0x66, 0xae, 0x4f, 0xe1, 0xcd, 0x52, 0xdb, 0x9f, 0x24, 0x11, 0xec, 0x6a, + 0x84, 0x96, 0x1a, 0x82, 0x7d, 0xeb, 0x67, 0x1f, 0x85, 0x35, 0xea, 0x3d, + 0x87, 0xc7, 0x20, 0x8d, 0xb0, 0x7a, 0x7b, 0x51, 0x34, 0x91, 0x31, 0xc6, + 0xcd, 0xde, 0xf5, 0x50, 0xc3, 0x74, 0xbd, 0x63, 0x61, 0xf8, 0x54, 0x2e, + 0x26, 0x1f, 0x7b, 0x70, 0xa1, 0x41, 0x37, 0x7b, 0x99, 0xbe, 0x52, 0xcf, + 0x0a, 0x0f, 0x3c, 0x7a, 0x66, 0x90, 0xdc, 0x22, 0x8f, 0x5f, 0x61, 0x55, + 0x76, 0xb1, 0xf5, 0xa0, 0x46, 0x7d, 0x2a, 0xf9, 0x57, 0x50, 0xe7, 0xb6, + 0xc3, 0xa4, 0x9c, 0xbf, 0x00, 0x60, 0x52, 0xa1, 0x93, 0x1c, 0x1a, 0x04, + 0x27, 0xbd, 0x3d, 0x2d, 0x64, 0x73, 0xfb, 0xb0, 0x49, 0xf6, 0xa6, 0xdc, + 0x51, 0x2e, 0x62, 0x14, 0x94, 0xf2, 0x46, 0x6b, 0x7f, 0xc3, 0xf0, 0x34, + 0x76, 0xef, 0x31, 0xe1, 0x98, 0xe0, 0x7d, 0x2a, 0x84, 0x5a, 0x55, 0xf4, + 0xbc, 0x04, 0x2b, 0x5d, 0x25, 0xbd, 0xa7, 0xd9, 0xec, 0xa3, 0x4e, 0xe0, + 0x73, 0x5c, 0xf5, 0x2a, 0x26, 0xb9, 0x53, 0x34, 0xa7, 0x77, 0xab, 0x12, + 0x46, 0x63, 0xc7, 0xeb, 0x55, 0x64, 0x38, 0xeb, 0x52, 0xc9, 0x32, 0xa1, + 0xda, 0x4e, 0x2a, 0xad, 0xd4, 0xc5, 0x06, 0x4a, 0x06, 0x5f, 0x51, 0x5c, + 0xed, 0x6b, 0x63, 0x52, 0xec, 0x20, 0xb8, 0xc7, 0x41, 0xeb, 0x52, 0x95, + 0x00, 0x0c, 0x82, 0x48, 0xa8, 0x2c, 0xdf, 0xcd, 0xb7, 0x18, 0xea, 0x7b, + 0x55, 0xe5, 0x80, 0xb2, 0x12, 0x08, 0x07, 0xd2, 0x9d, 0x8b, 0xe8, 0x46, + 0xb3, 0xb1, 0x52, 0xac, 0x32, 0x0f, 0x1c, 0xd4, 0x73, 0xc2, 0x92, 0xa7, + 0xdd, 0xc7, 0x6c, 0x53, 0x80, 0xda, 0x7a, 0x64, 0x8a, 0x69, 0x97, 0xcb, + 0x1b, 0x9c, 0xf0, 0x7a, 0x03, 0x56, 0xc4, 0x8c, 0xa9, 0x34, 0xdb, 0xb4, + 0x62, 0x16, 0x36, 0x23, 0xda, 0x98, 0x34, 0xeb, 0xb7, 0xeb, 0x1b, 0x56, + 0xfd, 0xbe, 0xa7, 0xb8, 0xec, 0x42, 0x3e, 0x98, 0xed, 0x57, 0x85, 0xe0, + 0x46, 0x55, 0xf2, 0xb2, 0x0f, 0x52, 0x7b, 0xd5, 0xad, 0x84, 0xce, 0x50, + 0x68, 0xb7, 0xaf, 0x9c, 0x47, 0xd3, 0xd4, 0xd3, 0x93, 0x40, 0xba, 0x93, + 0xef, 0x3c, 0x68, 0x3d, 0xcd, 0x75, 0x70, 0xce, 0x8d, 0x23, 0xb3, 0x9c, + 0x0e, 0xc2, 0x89, 0x6e, 0x6d, 0x4b, 0x00, 0x22, 0x42, 0x7b, 0x9c, 0xd5, + 0x5d, 0x21, 0x1c, 0xb4, 0x9a, 0x20, 0x82, 0x32, 0xf2, 0x4a, 0x48, 0x1f, + 0xdd, 0x5c, 0xd5, 0x78, 0xf4, 0xef, 0xb4, 0xcd, 0xb6, 0x22, 0x42, 0x7a, + 0xb0, 0xae, 0xbc, 0xc8, 0x37, 0x7e, 0xec, 0x71, 0xe8, 0x79, 0x14, 0xd6, + 0x92, 0x26, 0x23, 0xe5, 0x58, 0xd8, 0x75, 0x2a, 0x29, 0x7b, 0x48, 0xec, + 0x23, 0x9f, 0x3a, 0x04, 0x51, 0xc8, 0xab, 0x24, 0xb2, 0x30, 0x6e, 0x84, + 0x27, 0x15, 0x2c, 0x1e, 0x1d, 0x59, 0x5f, 0x29, 0x30, 0xda, 0x0f, 0x46, + 0xe3, 0x35, 0xaa, 0x92, 0xc9, 0x11, 0x1e, 0x5c, 0x8e, 0xcb, 0x9c, 0xf2, + 0x69, 0x0c, 0xc5, 0x9f, 0x7a, 0x23, 0x64, 0x77, 0x26, 0xaa, 0xec, 0x34, + 0x34, 0xa0, 0xd0, 0x34, 0x98, 0xac, 0x7f, 0x7b, 0x01, 0xdf, 0xdc, 0xe6, + 0xa2, 0x43, 0x6b, 0x62, 0xc0, 0x5b, 0xc2, 0x17, 0x9e, 0x06, 0x2b, 0x35, + 0xe7, 0xb9, 0x62, 0x5b, 0xcc, 0xc8, 0x3d, 0xa9, 0xf1, 0xf9, 0x92, 0x7a, + 0x81, 0x59, 0xcd, 0xb4, 0x1c, 0xe9, 0x1a, 0x72, 0x5d, 0x3c, 0xa4, 0x31, + 0x5c, 0x2d, 0x60, 0xeb, 0x03, 0x3f, 0x3a, 0x02, 0x39, 0xec, 0x2b, 0x49, + 0x6f, 0x12, 0xd8, 0xe0, 0xfd, 0xee, 0xd9, 0xaa, 0x17, 0x77, 0xcd, 0x34, + 0x6d, 0x18, 0x8e, 0x3e, 0x7b, 0x96, 0xac, 0xe3, 0x51, 0x35, 0xa8, 0xb9, + 0xee, 0x41, 0x6b, 0x75, 0xe6, 0x59, 0x34, 0x4f, 0xd5, 0x47, 0x18, 0xaa, + 0x7b, 0x83, 0x12, 0x5c, 0x48, 0x7f, 0x1c, 0xd3, 0x02, 0x4a, 0x84, 0x82, + 0x84, 0x0f, 0x55, 0xef, 0x52, 0x24, 0xd8, 0x42, 0x07, 0x7f, 0x5a, 0xce, + 0xd6, 0xd8, 0x95, 0x12, 0x61, 0x12, 0x64, 0x6c, 0x57, 0xde, 0x47, 0xcb, + 0x9e, 0x95, 0x31, 0x71, 0x6f, 0x0e, 0xc9, 0x25, 0xda, 0x7b, 0xf9, 0x74, + 0xd0, 0xce, 0x21, 0x1b, 0x7e, 0xf9, 0xef, 0xe8, 0x29, 0x3e, 0xc8, 0xad, + 0x1f, 0x2c, 0x4b, 0x77, 0xfa, 0xd4, 0xf3, 0x5b, 0x70, 0xe6, 0x1f, 0x15, + 0xc4, 0x25, 0x47, 0x97, 0x1b, 0x97, 0xf5, 0x6a, 0x94, 0xdc, 0x95, 0xc6, + 0xd0, 0xb9, 0x3d, 0xaa, 0xa7, 0x91, 0x20, 0xdd, 0x8c, 0xf1, 0xc7, 0x5e, + 0x29, 0x8d, 0x70, 0x53, 0x6a, 0xfd, 0xe0, 0x3a, 0xf1, 0xd2, 0x9a, 0x8c, + 0x5e, 0xa3, 0x56, 0x35, 0x56, 0x45, 0x70, 0xa3, 0x0b, 0x92, 0x3b, 0x0a, + 0x61, 0x25, 0x01, 0xcf, 0x1f, 0x4a, 0xab, 0x15, 0xca, 0xba, 0x8c, 0xe7, + 0xf0, 0xa2, 0x49, 0xc0, 0x38, 0x0b, 0x9e, 0x3b, 0xd4, 0x4a, 0x9e, 0xbe, + 0xe9, 0x4d, 0x27, 0xb1, 0x39, 0xde, 0x47, 0x0c, 0x0f, 0xe3, 0x55, 0x5d, + 0x8b, 0x1d, 0xb2, 0x64, 0x1a, 0x67, 0xda, 0x65, 0x5e, 0x00, 0xe3, 0xdc, + 0xd3, 0xbe, 0xd4, 0x4f, 0x0c, 0xaa, 0x6a, 0xd4, 0x6c, 0x2d, 0x87, 0x06, + 0x8c, 0x70, 0x14, 0x9a, 0x30, 0x99, 0xdd, 0xb7, 0x1e, 0xc0, 0xd4, 0x2d, + 0x22, 0xb7, 0x05, 0x70, 0x29, 0xff, 0x00, 0x23, 0xc6, 0x17, 0x76, 0xcc, + 0x73, 0x8a, 0x76, 0x45, 0x2b, 0x0a, 0x4a, 0x96, 0x07, 0x38, 0x38, 0xe9, + 0x4f, 0x91, 0x9c, 0x15, 0xc2, 0xf1, 0xd8, 0x62, 0x98, 0xab, 0x91, 0xf2, + 0xf2, 0x7a, 0x66, 0x92, 0x39, 0x64, 0x85, 0x81, 0x24, 0x92, 0x3a, 0x1c, + 0xf4, 0xa1, 0x05, 0xcb, 0x91, 0x02, 0xa8, 0xdb, 0x93, 0xf3, 0x15, 0x01, + 0x02, 0x72, 0x43, 0x92, 0x07, 0x50, 0x05, 0x36, 0x66, 0xb8, 0x91, 0xc3, + 0xee, 0x27, 0xeb, 0x51, 0x16, 0x65, 0x63, 0xbc, 0x95, 0xfa, 0x52, 0xe4, + 0xbb, 0xba, 0x1d, 0x89, 0x23, 0x93, 0x6b, 0x08, 0xd4, 0xf0, 0x79, 0x3f, + 0x2e, 0x6a, 0x79, 0x98, 0x2a, 0x82, 0xa0, 0x03, 0xdf, 0x8a, 0x88, 0xcd, + 0x85, 0x3b, 0x06, 0xd3, 0xeb, 0x50, 0xee, 0x7c, 0xe7, 0x27, 0x3e, 0xb4, + 0x9e, 0xaf, 0x51, 0x3b, 0xb2, 0x44, 0x0c, 0xf9, 0x7f, 0xfe, 0xb5, 0x48, + 0xff, 0x00, 0x2e, 0x48, 0x6f, 0xca, 0xa0, 0x72, 0xec, 0xa0, 0x93, 0x4e, + 0x8d, 0xa4, 0xc1, 0x44, 0x5c, 0x13, 0xd7, 0x34, 0x9c, 0x42, 0xcf, 0xa0, + 0xe1, 0x26, 0x03, 0x02, 0x78, 0xc7, 0xad, 0x22, 0x4a, 0x14, 0xe4, 0xe4, + 0x8f, 0xad, 0x41, 0x22, 0x4b, 0xbb, 0x0c, 0x0a, 0xd4, 0x89, 0xc0, 0xc2, + 0xe3, 0x3d, 0x39, 0xaa, 0xe4, 0xd0, 0x65, 0x9d, 0xe1, 0x86, 0x40, 0x20, + 0x1e, 0xe4, 0x54, 0x89, 0x8d, 0xa7, 0x0c, 0x09, 0x6e, 0xb5, 0x18, 0x49, + 0x90, 0x7f, 0x01, 0x38, 0xcd, 0x47, 0xbc, 0x63, 0x94, 0x5e, 0x7b, 0xaf, + 0x15, 0x2d, 0x35, 0xa2, 0x22, 0x4e, 0xfb, 0x16, 0x02, 0x84, 0x0c, 0x17, + 0xaf, 0xd6, 0x9a, 0x06, 0x50, 0xe5, 0xc7, 0xbe, 0x7a, 0x8a, 0x88, 0xb8, + 0x49, 0x01, 0x5e, 0x71, 0xeb, 0x53, 0x13, 0x1c, 0xa7, 0x39, 0x0a, 0x6a, + 0x6d, 0xdc, 0x8e, 0x59, 0x5c, 0x81, 0x11, 0x37, 0x67, 0x9e, 0x3d, 0x6a, + 0xdc, 0x26, 0xd5, 0xb7, 0x29, 0x8d, 0x89, 0x3e, 0xf8, 0xa4, 0x29, 0x16, + 0xde, 0x58, 0x0f, 0xad, 0x44, 0x22, 0x66, 0x70, 0x43, 0x8d, 0xbd, 0xb1, + 0xd2, 0xb5, 0x8c, 0xec, 0xb4, 0x34, 0xd6, 0xdb, 0x0e, 0x31, 0x85, 0xc8, + 0xdf, 0xf4, 0x02, 0x91, 0x4a, 0x23, 0x02, 0xe0, 0x93, 0xf4, 0xa7, 0x3a, + 0x30, 0xeb, 0x8c, 0x0a, 0x66, 0x18, 0x9f, 0x98, 0x1d, 0xbe, 0xf5, 0x9b, + 0x9b, 0x92, 0x23, 0x99, 0xee, 0xc9, 0x19, 0x87, 0x97, 0xfb, 0xb5, 0xea, + 0x6a, 0x14, 0x0c, 0xdd, 0x48, 0x3e, 0xd4, 0x8e, 0x54, 0xb0, 0x08, 0x18, + 0x8f, 0xad, 0x26, 0xd7, 0x1d, 0x14, 0x01, 0xeb, 0x49, 0x02, 0x91, 0x2a, + 0x9d, 0xbd, 0x71, 0xf4, 0xa9, 0x84, 0x83, 0x6f, 0xa7, 0xb5, 0x56, 0x01, + 0x81, 0xce, 0x29, 0xd9, 0x01, 0xfa, 0x9e, 0x29, 0x34, 0x35, 0x72, 0x63, + 0xcf, 0xdd, 0x3d, 0x7d, 0x6a, 0x35, 0x8d, 0xff, 0x00, 0xbd, 0x40, 0x31, + 0x83, 0x8d, 0xf8, 0xcd, 0x35, 0x57, 0xaf, 0xce, 0xc4, 0x0f, 0x4a, 0x10, + 0xf9, 0x9e, 0xc3, 0x9c, 0x48, 0xa4, 0x60, 0x0c, 0x1f, 0x6a, 0x8d, 0x99, + 0xc1, 0xc9, 0xe9, 0xda, 0xa4, 0xdc, 0x49, 0xe5, 0x89, 0x03, 0xde, 0xa6, + 0x47, 0x53, 0xf7, 0x88, 0x18, 0xe9, 0xc7, 0x5a, 0x6b, 0x7d, 0x47, 0x17, + 0xdc, 0xa2, 0xd3, 0x48, 0xad, 0x90, 0xbf, 0x2d, 0x23, 0x3b, 0xed, 0x53, + 0xb7, 0x3b, 0xbd, 0x39, 0xab, 0x39, 0xdc, 0xc5, 0xb6, 0xae, 0x3d, 0x0f, + 0x5a, 0x49, 0x08, 0xca, 0x94, 0xc8, 0x23, 0xae, 0x2a, 0xfd, 0xdb, 0x94, + 0x55, 0x40, 0x24, 0x6c, 0x96, 0x2a, 0x29, 0xcb, 0x1a, 0x6f, 0x38, 0x2c, + 0x40, 0xef, 0x43, 0x44, 0xbb, 0x8e, 0xc6, 0x38, 0xa9, 0x02, 0x2a, 0x80, + 0x77, 0x1c, 0xff, 0x00, 0x74, 0x8a, 0xad, 0x36, 0x42, 0x1e, 0x00, 0x23, + 0x04, 0xf3, 0xdb, 0x14, 0xdf, 0x9c, 0xb0, 0x01, 0x09, 0x3d, 0xb1, 0x52, + 0xc9, 0x3d, 0xb8, 0x50, 0x16, 0x22, 0x1b, 0xbb, 0x13, 0x4b, 0x04, 0xf2, + 0xdb, 0xc8, 0x24, 0x85, 0xb0, 0xfe, 0xb5, 0x2d, 0x24, 0x3b, 0xc7, 0xa8, + 0xcd, 0x8e, 0xa4, 0x09, 0x10, 0xa9, 0xf7, 0xa1, 0x80, 0x03, 0xaf, 0x5a, + 0x9e, 0xea, 0xfe, 0xee, 0xf0, 0x01, 0x3b, 0x06, 0x03, 0x9f, 0xba, 0x2a, + 0xb0, 0x27, 0x71, 0x0d, 0xf7, 0x45, 0x43, 0x5a, 0xe8, 0x26, 0xd0, 0x2c, + 0x6e, 0xc7, 0x00, 0xf1, 0xf4, 0xa9, 0x96, 0x12, 0x9c, 0x16, 0x19, 0xa4, + 0xcf, 0x01, 0x95, 0xc7, 0xd3, 0x35, 0x0b, 0x33, 0x6f, 0x24, 0xb6, 0x3d, + 0x39, 0xa5, 0x6b, 0x92, 0x4c, 0xca, 0x32, 0x07, 0x24, 0xd4, 0x45, 0x8b, + 0x6e, 0x54, 0xce, 0x3b, 0xd0, 0x93, 0x13, 0xf2, 0x8c, 0x92, 0x7b, 0xd2, + 0x98, 0xe4, 0x0d, 0xf7, 0x4e, 0x7f, 0x9d, 0x16, 0xd7, 0x51, 0xa1, 0xa1, + 0x38, 0xef, 0x9f, 0x53, 0x4b, 0x83, 0x8f, 0x98, 0x9f, 0xa0, 0xa7, 0x28, + 0x7d, 0xbc, 0x8a, 0x5c, 0x80, 0x09, 0x23, 0x9e, 0xdc, 0x53, 0x2b, 0x61, + 0x87, 0x24, 0x00, 0x01, 0xc7, 0xa5, 0x3c, 0xf0, 0xb8, 0xda, 0x4d, 0x1b, + 0xd9, 0x86, 0x36, 0x35, 0x2a, 0x24, 0xce, 0x48, 0x50, 0x4e, 0x06, 0x48, + 0xef, 0x42, 0x6c, 0x57, 0x18, 0xbb, 0x1b, 0x07, 0x38, 0x23, 0x8e, 0xb4, + 0xf1, 0x20, 0x5f, 0x5a, 0x8c, 0x1e, 0xb9, 0x18, 0xfa, 0xd2, 0xaf, 0x4e, + 0xab, 0x4e, 0xe3, 0xb8, 0xfd, 0xe0, 0x1e, 0x05, 0x1e, 0x60, 0x66, 0xc3, + 0x03, 0xf9, 0x53, 0x4a, 0x00, 0x07, 0x42, 0x69, 0x55, 0x51, 0x7a, 0x12, + 0x4f, 0xa5, 0x20, 0xd0, 0x7e, 0x13, 0x38, 0x03, 0x3e, 0xf4, 0x81, 0x72, + 0xf9, 0xe0, 0x52, 0x90, 0x3a, 0x76, 0xa4, 0x6d, 0xbc, 0x60, 0xe0, 0xfd, + 0x69, 0x5d, 0x32, 0x79, 0x11, 0x27, 0x0c, 0xc3, 0xf5, 0x35, 0x1b, 0x1d, + 0xe4, 0x85, 0x38, 0x1e, 0xb4, 0x1e, 0x0f, 0x05, 0x49, 0xf7, 0x34, 0x06, + 0x18, 0x20, 0x85, 0xe6, 0x8f, 0x42, 0x1c, 0x1f, 0x41, 0x55, 0xb0, 0xa1, + 0x79, 0x27, 0xd6, 0x9d, 0xc1, 0xce, 0x79, 0x1e, 0xf4, 0xd1, 0x24, 0x68, + 0xdb, 0x76, 0x8c, 0x7b, 0x54, 0xc7, 0x6b, 0x00, 0xd1, 0x81, 0xf8, 0x9e, + 0xb4, 0x5a, 0xc4, 0xa4, 0xe2, 0x44, 0x5b, 0x80, 0x12, 0x11, 0x91, 0xde, + 0x88, 0xfe, 0x76, 0x3d, 0x87, 0xa6, 0x2a, 0xe2, 0x79, 0x6a, 0xa0, 0xb1, + 0x03, 0x8c, 0xf1, 0xda, 0xa3, 0x67, 0x4c, 0x63, 0xa0, 0x3d, 0x69, 0x39, + 0xb5, 0xa1, 0x5c, 0xcf, 0xa8, 0xcc, 0xa8, 0x1b, 0x48, 0xe2, 0xa1, 0x78, + 0x51, 0xf3, 0x8a, 0x95, 0xfc, 0xb0, 0xa1, 0x43, 0x13, 0x9a, 0x8f, 0x05, + 0xbe, 0x60, 0x40, 0x6f, 0x4c, 0xd3, 0xb9, 0x4a, 0x48, 0x8b, 0xca, 0x45, + 0x38, 0xda, 0x70, 0x29, 0xc4, 0xe4, 0x72, 0xa7, 0x8e, 0x95, 0x23, 0xfc, + 0xbd, 0x85, 0x34, 0x2f, 0x43, 0x9c, 0x52, 0x15, 0xae, 0xc8, 0x43, 0x8f, + 0xba, 0x10, 0x7d, 0x48, 0xa5, 0xdf, 0x20, 0xe3, 0x6a, 0x91, 0xea, 0x2a, + 0x46, 0x83, 0x73, 0x0d, 0xa4, 0x11, 0xdb, 0x14, 0x89, 0x1b, 0x06, 0x21, + 0x80, 0x55, 0xcf, 0x7a, 0x6e, 0xc2, 0x69, 0x08, 0x5c, 0x9e, 0x8b, 0xcf, + 0xbd, 0x0f, 0x1c, 0xa1, 0x37, 0x6d, 0xe8, 0x79, 0xc5, 0x3c, 0x06, 0xf3, + 0x36, 0x2e, 0x36, 0xd4, 0x85, 0x76, 0x1c, 0x63, 0x3f, 0x8d, 0x45, 0xec, + 0x67, 0xcd, 0x62, 0x15, 0x32, 0x60, 0xbb, 0x60, 0xa6, 0x39, 0x18, 0xc5, + 0x45, 0x2c, 0xbe, 0x66, 0x0a, 0xae, 0x08, 0xed, 0x56, 0xd8, 0x00, 0xbb, + 0x0e, 0x33, 0xe9, 0x9a, 0x8c, 0xaa, 0xaa, 0x82, 0x00, 0x63, 0xe9, 0xd2, + 0x9a, 0x68, 0xb5, 0x24, 0x53, 0x32, 0x48, 0xad, 0x9c, 0xe0, 0xfb, 0x54, + 0xac, 0xed, 0x2e, 0x37, 0x75, 0xc7, 0x5a, 0x53, 0xb8, 0x91, 0xb2, 0x23, + 0xcf, 0xb5, 0x35, 0xae, 0x1c, 0x1c, 0x32, 0x2e, 0x47, 0x51, 0x57, 0xca, + 0xde, 0xb6, 0x2c, 0x78, 0x95, 0x50, 0x01, 0x8f, 0xcc, 0x53, 0x1d, 0x83, + 0x7d, 0x2a, 0x1c, 0x97, 0x27, 0x08, 0x72, 0x7d, 0xe9, 0xac, 0x92, 0x0e, + 0x8d, 0x47, 0x22, 0x5d, 0x44, 0x49, 0xf2, 0x63, 0xa6, 0x31, 0x46, 0xff, + 0x00, 0x97, 0x0b, 0x8f, 0xaf, 0x7a, 0x84, 0x07, 0xce, 0x09, 0x19, 0xab, + 0x11, 0x3c, 0xe0, 0x00, 0x02, 0xba, 0xfa, 0x55, 0x72, 0x8f, 0x65, 0x71, + 0xd1, 0x4b, 0x92, 0x52, 0x61, 0x90, 0x7a, 0x11, 0xd6, 0x92, 0x48, 0xe2, + 0xc6, 0x17, 0x19, 0x07, 0x38, 0x34, 0xf1, 0x70, 0xa8, 0x70, 0xd0, 0x72, + 0x2a, 0x19, 0x26, 0xf3, 0xe6, 0x20, 0x26, 0xdc, 0xfb, 0x54, 0xa4, 0xef, + 0x7d, 0x89, 0x4d, 0x83, 0xcc, 0xc5, 0x36, 0xed, 0x5c, 0x0e, 0x33, 0x8a, + 0x85, 0x76, 0xa0, 0x20, 0xae, 0x49, 0xe8, 0x6a, 0x61, 0x0f, 0xfb, 0x6a, + 0x3d, 0xb3, 0x4f, 0x48, 0xd5, 0x81, 0xc9, 0xc9, 0x1e, 0x95, 0x6a, 0x56, + 0x0e, 0x64, 0x88, 0x17, 0x73, 0x2e, 0x36, 0x9a, 0x49, 0x21, 0x60, 0x46, + 0x09, 0x04, 0xd5, 0x8f, 0x28, 0x13, 0x88, 0xce, 0x3d, 0x73, 0xd6, 0x9c, + 0xd0, 0x00, 0x46, 0x5f, 0x6f, 0xb6, 0x73, 0x4b, 0x9b, 0x52, 0x93, 0x52, + 0x20, 0x71, 0x00, 0x50, 0xa9, 0xe6, 0x19, 0x3f, 0x88, 0x37, 0xf4, 0xa4, + 0x0a, 0x77, 0x9c, 0x2b, 0x63, 0xfd, 0xaa, 0xb1, 0x85, 0x46, 0x0f, 0x19, + 0x05, 0xbd, 0xc7, 0x06, 0x8b, 0xb9, 0x24, 0x9c, 0x83, 0xb5, 0x17, 0x1f, + 0xdc, 0x18, 0xcd, 0x5f, 0x34, 0x64, 0xbc, 0xc6, 0xd5, 0x88, 0x36, 0x79, + 0x8d, 0xc9, 0xc0, 0x14, 0x04, 0x51, 0x9c, 0x7e, 0x54, 0xe7, 0x5e, 0x14, + 0x77, 0xa4, 0xd8, 0x01, 0x04, 0x3f, 0xd7, 0x8a, 0x8e, 0x80, 0x1e, 0x4a, + 0x92, 0x71, 0x81, 0x9a, 0x4d, 0xa4, 0x7d, 0xfc, 0x1f, 0xa1, 0xa7, 0x15, + 0xf7, 0xe3, 0xe9, 0x4d, 0xe0, 0x0f, 0x51, 0x45, 0xc4, 0x4d, 0x16, 0x12, + 0x22, 0xca, 0xc8, 0x49, 0xf5, 0x19, 0x34, 0xd6, 0x51, 0xce, 0x08, 0xc9, + 0xea, 0x00, 0xa6, 0x66, 0x30, 0x39, 0xe2, 0x8f, 0x32, 0x31, 0x80, 0xa7, + 0x24, 0xfb, 0xd1, 0x76, 0xc2, 0xc2, 0x0d, 0xc9, 0x93, 0x92, 0x4f, 0xa6, + 0x28, 0x0a, 0x79, 0x6f, 0x98, 0x7d, 0x28, 0x32, 0x9c, 0x60, 0x8e, 0x05, + 0x33, 0xed, 0x01, 0x73, 0x83, 0x83, 0x4f, 0x56, 0x31, 0xcd, 0xba, 0x40, + 0x00, 0x03, 0x3e, 0xf5, 0x34, 0x73, 0x5d, 0xc3, 0x83, 0x1c, 0xae, 0x84, + 0x7b, 0xd5, 0x51, 0x70, 0x49, 0xdc, 0xb9, 0x27, 0xe9, 0xd2, 0x9e, 0x24, + 0x72, 0x77, 0x12, 0x73, 0x4f, 0x54, 0x16, 0x35, 0x7f, 0xb5, 0xf5, 0x07, + 0x8c, 0x06, 0x08, 0x71, 0xfc, 0x44, 0x75, 0xa8, 0x5b, 0x52, 0xbf, 0x6e, + 0x0b, 0xa0, 0x1e, 0x9b, 0x45, 0x51, 0x92, 0x59, 0x18, 0x0c, 0x1c, 0x01, + 0xdb, 0x35, 0x11, 0x9a, 0x50, 0xbc, 0x90, 0x47, 0xd6, 0x9a, 0x94, 0xdf, + 0x50, 0x34, 0x86, 0xa3, 0x73, 0x82, 0xb2, 0xc1, 0x0c, 0xa7, 0xd4, 0xa8, + 0xfe, 0x94, 0xc5, 0x96, 0xd9, 0xb7, 0x2c, 0xf6, 0x71, 0xb7, 0xa1, 0x03, + 0xa5, 0x66, 0x89, 0x98, 0xb6, 0x43, 0x73, 0x49, 0xe6, 0xcb, 0xbb, 0xe6, + 0x27, 0x15, 0x77, 0x90, 0x16, 0xe5, 0x8e, 0xc0, 0x9c, 0x1d, 0x3f, 0x04, + 0xf4, 0x21, 0xb1, 0x55, 0x7c, 0xbb, 0x38, 0xdf, 0x3f, 0x65, 0xfc, 0x33, + 0x46, 0x5f, 0x76, 0x49, 0xc9, 0xf7, 0xa5, 0x04, 0xb1, 0xe5, 0x45, 0x0e, + 0x72, 0x7b, 0x93, 0x64, 0x3d, 0x5e, 0xc0, 0xb8, 0x3f, 0x67, 0xd8, 0x4f, + 0xaf, 0x4a, 0x47, 0xb3, 0xd8, 0xc6, 0x4b, 0x7c, 0xae, 0x79, 0x3c, 0xf1, + 0x51, 0xb2, 0x0c, 0x72, 0x32, 0x28, 0x0e, 0x0a, 0x91, 0xb9, 0x87, 0xd6, + 0xa7, 0x5e, 0x8c, 0x87, 0x04, 0x4b, 0x13, 0xdc, 0x10, 0x0f, 0x9d, 0xc6, + 0x6a, 0xf2, 0x24, 0xaf, 0x19, 0x3b, 0xb8, 0xec, 0x7d, 0x6b, 0x1f, 0x71, + 0x23, 0x66, 0x48, 0x1e, 0xd4, 0xbb, 0xa5, 0xc0, 0x51, 0x23, 0x6d, 0x1d, + 0xb3, 0x44, 0xa2, 0xfa, 0x0d, 0x2b, 0x1a, 0x32, 0x5b, 0x88, 0xa3, 0x69, + 0x64, 0xf9, 0xbb, 0xe0, 0x0a, 0xa6, 0x4c, 0x57, 0x4a, 0x41, 0xfd, 0xde, + 0x3a, 0x67, 0xbd, 0x4d, 0x05, 0xcf, 0x96, 0x02, 0xca, 0xbb, 0x96, 0x96, + 0x4b, 0xa8, 0xe4, 0x62, 0x4c, 0x2a, 0x57, 0xb6, 0x69, 0x27, 0x25, 0xb8, + 0x75, 0x13, 0x4f, 0x91, 0x00, 0x78, 0x8b, 0x0c, 0x83, 0xc1, 0xad, 0x28, + 0xdb, 0x1d, 0xc7, 0x35, 0x88, 0x5d, 0x32, 0x73, 0xc7, 0xb0, 0xa8, 0x8c, + 0xfb, 0x09, 0xf9, 0x88, 0x1f, 0x5a, 0xd5, 0x6a, 0x68, 0xa5, 0xa1, 0xb0, + 0xf3, 0x28, 0x94, 0xa8, 0x39, 0xc9, 0xe8, 0x0f, 0x34, 0xc7, 0x98, 0x23, + 0x08, 0xe4, 0x38, 0x04, 0xff, 0x00, 0x11, 0x06, 0xb0, 0x1e, 0x5f, 0x9f, + 0x70, 0x3b, 0xa8, 0x2d, 0x23, 0x9c, 0x8e, 0x95, 0xa5, 0x81, 0x48, 0xe9, + 0xe0, 0x6b, 0x3b, 0x61, 0xb9, 0x58, 0x39, 0x3d, 0x7b, 0xd5, 0xd8, 0x67, + 0x49, 0x54, 0x31, 0xdb, 0x81, 0xea, 0xdd, 0x6b, 0x93, 0x41, 0x27, 0x96, + 0x79, 0x18, 0x3d, 0x45, 0x38, 0x48, 0x53, 0x18, 0xe6, 0x92, 0x92, 0x40, + 0xdd, 0xce, 0xb0, 0x98, 0x11, 0xcb, 0x31, 0x01, 0x7b, 0x60, 0xd5, 0x36, + 0x96, 0xd4, 0xc8, 0x70, 0xe0, 0x31, 0x3f, 0x9d, 0x61, 0x2d, 0xc3, 0x80, + 0x40, 0x38, 0xfa, 0x54, 0x89, 0x3b, 0x9f, 0xbf, 0x9f, 0xc6, 0xa6, 0x53, + 0x7d, 0x11, 0x3a, 0x9d, 0x04, 0x93, 0xac, 0x11, 0xa9, 0x2a, 0x48, 0xed, + 0x8a, 0x8d, 0x27, 0x85, 0xd7, 0x71, 0x12, 0x67, 0xd0, 0x0c, 0x55, 0x03, + 0x7e, 0x26, 0x44, 0x8f, 0x62, 0xf1, 0xd4, 0x93, 0xc1, 0xa9, 0x93, 0x61, + 0x4c, 0x04, 0x3f, 0xf0, 0x07, 0xae, 0x7e, 0x79, 0x47, 0x7d, 0xcc, 0xf5, + 0x1d, 0x3d, 0xdb, 0x46, 0xc3, 0xc9, 0x8d, 0xb3, 0xea, 0x6a, 0xbb, 0xde, + 0x4a, 0xd1, 0x9f, 0x34, 0x15, 0x1d, 0x38, 0xe2, 0xa6, 0x16, 0xfe, 0x6f, + 0xca, 0x21, 0x94, 0x9e, 0xdf, 0x35, 0x3f, 0xc9, 0x92, 0x2f, 0x95, 0xa0, + 0x5f, 0xc4, 0xf3, 0x4f, 0xdb, 0x79, 0x95, 0xa8, 0x91, 0xa3, 0xac, 0x4a, + 0x5b, 0x94, 0x23, 0xe5, 0x23, 0xb5, 0x4b, 0xe6, 0x79, 0x71, 0x31, 0x2c, + 0x7d, 0xf1, 0x42, 0xab, 0x84, 0xc1, 0x20, 0x0f, 0x40, 0x6a, 0x2f, 0x31, + 0x79, 0x5f, 0x2c, 0x28, 0x3d, 0x49, 0x3d, 0x6b, 0x19, 0x3e, 0x67, 0xa9, + 0x0d, 0x31, 0xb8, 0x49, 0xc6, 0xec, 0x03, 0xf5, 0xeb, 0x55, 0xa4, 0x48, + 0x44, 0x98, 0x2a, 0x43, 0x7b, 0x54, 0x8d, 0x22, 0x03, 0x85, 0x64, 0xfa, + 0x1a, 0xaf, 0x2c, 0x85, 0xba, 0x20, 0x0b, 0xea, 0x0d, 0x6b, 0x12, 0x90, + 0x3c, 0x87, 0x1f, 0x23, 0x03, 0xc7, 0x7a, 0xae, 0xb1, 0x31, 0x91, 0x46, + 0x7a, 0x9c, 0x9a, 0x91, 0x48, 0xe8, 0x40, 0xfa, 0xd2, 0xef, 0x64, 0x75, + 0x63, 0xc8, 0x15, 0x69, 0xb5, 0xa1, 0x6f, 0x60, 0x07, 0x2e, 0xdc, 0x9c, + 0x67, 0x8a, 0x53, 0x2b, 0x91, 0xb3, 0x24, 0x0e, 0xc6, 0xa3, 0xf3, 0x07, + 0x98, 0x4f, 0x07, 0x3d, 0x05, 0x29, 0x96, 0x43, 0x91, 0x9e, 0x28, 0xb0, + 0x2d, 0x87, 0x79, 0xd2, 0xa2, 0x04, 0x20, 0x30, 0xf5, 0xc9, 0xa4, 0x5e, + 0x49, 0xe2, 0x9a, 0x8d, 0xb9, 0xb0, 0xdc, 0x0f, 0x5a, 0xb0, 0xaa, 0xa4, + 0x85, 0x47, 0xf9, 0xbb, 0x92, 0x38, 0xa4, 0xf4, 0x15, 0xec, 0x42, 0x57, + 0x73, 0x71, 0xd3, 0xd0, 0x54, 0x91, 0xe0, 0x1c, 0x3e, 0x48, 0xa9, 0x2e, + 0x63, 0x11, 0xa0, 0xc4, 0x8a, 0xdf, 0xee, 0xd4, 0x19, 0x55, 0xc1, 0x27, + 0xad, 0x0a, 0xf2, 0x5a, 0x0f, 0x71, 0xb2, 0xba, 0x87, 0xda, 0x11, 0xb1, + 0x9e, 0xb9, 0xa9, 0x63, 0x8c, 0x1e, 0x54, 0x00, 0x7e, 0xb4, 0xcd, 0xd1, + 0xbb, 0x60, 0x37, 0x1f, 0x4a, 0x72, 0x84, 0x0d, 0xf3, 0x64, 0x8f, 0x6e, + 0x29, 0xbd, 0xac, 0x3b, 0x58, 0x7b, 0x2f, 0x66, 0x00, 0x1a, 0x60, 0x50, + 0x0d, 0x3c, 0xe3, 0x18, 0x50, 0x40, 0xa1, 0x46, 0x3b, 0x73, 0x51, 0x70, + 0x15, 0x19, 0x81, 0x00, 0x0c, 0xe3, 0xad, 0x39, 0xd9, 0x5c, 0x93, 0xf7, + 0x7d, 0xa8, 0x0e, 0xc0, 0xe4, 0xe3, 0x1f, 0x4a, 0x69, 0x93, 0x92, 0x30, + 0x0d, 0x05, 0x74, 0x1c, 0x1d, 0x54, 0x0c, 0x67, 0x3e, 0xe6, 0x9b, 0x23, + 0x2b, 0xe4, 0xee, 0xe7, 0xb8, 0xc5, 0x3c, 0x61, 0x87, 0x0a, 0x32, 0x3d, + 0x68, 0x59, 0x21, 0x4e, 0xa8, 0x4b, 0x7b, 0x53, 0x40, 0x93, 0x1c, 0xc2, + 0x34, 0x5d, 0xa5, 0xc3, 0x67, 0xf4, 0xa4, 0x21, 0x47, 0x41, 0x91, 0xeb, + 0x9a, 0x26, 0x64, 0x42, 0x15, 0x1f, 0x70, 0xf5, 0xa6, 0x71, 0x8c, 0x85, + 0xe9, 0x45, 0x92, 0xd1, 0x89, 0x21, 0xa4, 0xb6, 0x4f, 0x6a, 0x41, 0x21, + 0x66, 0xc6, 0x31, 0xef, 0x4f, 0x12, 0x73, 0xca, 0x64, 0x54, 0x81, 0xd3, + 0xfe, 0x79, 0x8f, 0xc2, 0x87, 0x61, 0x37, 0xd8, 0x02, 0x33, 0x77, 0x53, + 0xf8, 0xd4, 0x4c, 0x8c, 0x1b, 0xaf, 0x3f, 0x4a, 0x73, 0x02, 0x3a, 0x2e, + 0x3f, 0x0a, 0x8d, 0x90, 0xf5, 0x1f, 0xa5, 0x28, 0xbb, 0x31, 0x6a, 0x4a, + 0x8c, 0xcd, 0xc3, 0x36, 0x3e, 0x82, 0x9f, 0x21, 0xf2, 0xd7, 0xa8, 0xa8, + 0x63, 0x89, 0xca, 0xe4, 0x31, 0xe3, 0x9a, 0xb1, 0x22, 0xdb, 0xac, 0x00, + 0xef, 0x3e, 0x76, 0x79, 0x03, 0x91, 0x55, 0xf1, 0x3d, 0xca, 0x44, 0x0a, + 0xf1, 0x96, 0xf9, 0xb3, 0xf8, 0x54, 0xa3, 0x1d, 0x42, 0x0d, 0xbe, 0xa6, + 0xa1, 0x62, 0xb2, 0x4a, 0x36, 0x46, 0x33, 0xea, 0x78, 0xa9, 0x66, 0xb6, + 0x91, 0x08, 0xc3, 0x06, 0xdd, 0xfd, 0xc1, 0xd2, 0xa9, 0xc5, 0x75, 0x65, + 0xdd, 0x0a, 0x5d, 0xc0, 0x20, 0xaa, 0x91, 0xeb, 0x8e, 0x94, 0xd0, 0xdc, + 0x8c, 0x12, 0x31, 0xef, 0x49, 0xe5, 0xdc, 0x46, 0xd9, 0xe7, 0x6e, 0x3b, + 0x8a, 0x40, 0x25, 0x27, 0x07, 0x80, 0x7d, 0x68, 0x69, 0x5b, 0x70, 0x25, + 0xcc, 0x8a, 0xc1, 0x83, 0x13, 0xbb, 0xde, 0xa5, 0xf3, 0x24, 0xe3, 0x7a, + 0x9c, 0x7a, 0xd5, 0x53, 0x11, 0x5f, 0xe3, 0x1f, 0x81, 0xa5, 0x13, 0x6d, + 0x52, 0x85, 0xb1, 0x9e, 0xf8, 0xa8, 0xb2, 0x7b, 0x93, 0xa3, 0xdc, 0x95, + 0x99, 0x0f, 0x01, 0xb6, 0x9f, 0x43, 0x51, 0xfc, 0xfd, 0x98, 0x7e, 0x74, + 0x04, 0x8b, 0x20, 0xbc, 0xb9, 0xff, 0x00, 0x74, 0x50, 0x50, 0x03, 0x95, + 0x0d, 0xb7, 0xfd, 0xa1, 0x4f, 0x96, 0x36, 0xd0, 0x56, 0x5d, 0x00, 0xb3, + 0x90, 0x79, 0x24, 0xfd, 0x69, 0x76, 0x17, 0x5e, 0xa4, 0x1f, 0x7a, 0x69, + 0x20, 0x91, 0x8c, 0x8f, 0xc2, 0xa5, 0x48, 0xe4, 0x64, 0x6d, 0xa1, 0x9b, + 0xfd, 0x91, 0x53, 0xca, 0x34, 0x88, 0x0a, 0xb2, 0xb7, 0xde, 0x56, 0x14, + 0xf5, 0x62, 0xcd, 0x91, 0xc7, 0x6c, 0x62, 0x92, 0x48, 0xe4, 0x00, 0x6e, + 0xb7, 0x65, 0xfa, 0x83, 0x4a, 0x36, 0x03, 0x93, 0xf2, 0xfb, 0x53, 0xb3, + 0x04, 0x05, 0x9c, 0xb6, 0x14, 0xe0, 0x53, 0x84, 0xbb, 0x0f, 0x20, 0x9f, + 0xad, 0x30, 0x4f, 0x12, 0x7d, 0xdc, 0xee, 0xf5, 0x22, 0x91, 0xa6, 0x66, + 0x6e, 0x36, 0xe2, 0x97, 0x2f, 0x4b, 0x08, 0x7f, 0x9c, 0x18, 0x9c, 0x8c, + 0xd2, 0x16, 0xe3, 0xee, 0x60, 0xfb, 0x9a, 0x88, 0xbb, 0x37, 0x1b, 0x41, + 0xf7, 0xcd, 0x46, 0x52, 0x45, 0x70, 0xc4, 0x63, 0x1e, 0xa7, 0x35, 0x6a, + 0x03, 0xd0, 0xb6, 0x09, 0xe4, 0xb1, 0x03, 0x3d, 0x85, 0x23, 0x22, 0x36, + 0x30, 0x4f, 0xd3, 0x14, 0xd0, 0xcc, 0x5b, 0x73, 0x90, 0x72, 0x3a, 0x67, + 0x15, 0x2a, 0x4a, 0x88, 0xbf, 0x2b, 0xe4, 0x8e, 0xd8, 0xa5, 0x25, 0x6d, + 0x84, 0xdd, 0x81, 0xa0, 0x90, 0x27, 0xcb, 0x1b, 0x73, 0x51, 0xb1, 0x68, + 0x71, 0xe6, 0x29, 0xce, 0x2a, 0xca, 0x5c, 0x99, 0x73, 0xf3, 0xb8, 0xfa, + 0x62, 0xa1, 0x9b, 0x62, 0x83, 0x99, 0x24, 0x27, 0xdc, 0x54, 0xa6, 0xf6, + 0x68, 0x95, 0x29, 0x75, 0x44, 0x7f, 0x68, 0x24, 0x70, 0x09, 0xa5, 0x33, + 0x67, 0x8c, 0x63, 0x3e, 0xa6, 0xa4, 0x89, 0x61, 0x61, 0xcc, 0x85, 0x7f, + 0xe0, 0x34, 0xe7, 0xb7, 0x57, 0x40, 0x55, 0x83, 0x11, 0xdf, 0xa5, 0x5f, + 0x21, 0x6d, 0xa2, 0x24, 0x03, 0xa8, 0x22, 0x94, 0xae, 0xd0, 0x58, 0x92, + 0x07, 0xa8, 0xa4, 0xd8, 0x40, 0x3e, 0xa3, 0xb7, 0x34, 0xf5, 0x8f, 0x71, + 0x05, 0xe4, 0x0a, 0x3e, 0x84, 0xe2, 0x97, 0x2f, 0x71, 0x2d, 0x42, 0x39, + 0x54, 0x26, 0x30, 0x4f, 0xb9, 0xab, 0x02, 0x73, 0xb0, 0x7c, 0x84, 0xfe, + 0x35, 0x58, 0x4b, 0x18, 0x93, 0x61, 0x65, 0x61, 0xea, 0x05, 0x3b, 0x78, + 0x57, 0xc0, 0x3f, 0x4e, 0x2a, 0x1d, 0x34, 0xc5, 0xca, 0x4e, 0xb2, 0x16, + 0xdd, 0xc1, 0xc0, 0xa6, 0xee, 0xe0, 0x82, 0x56, 0x99, 0xb9, 0xb0, 0xcd, + 0xe6, 0x2f, 0x1d, 0x79, 0xc5, 0x36, 0x2d, 0xae, 0xdb, 0xf7, 0x23, 0x7b, + 0x66, 0x9f, 0x25, 0xc6, 0x87, 0x31, 0x60, 0x32, 0x5f, 0x8a, 0x4f, 0x33, + 0x69, 0xdf, 0x9c, 0xfb, 0x03, 0x49, 0x21, 0x25, 0xb7, 0x20, 0x00, 0x7a, + 0x53, 0x37, 0x32, 0x2e, 0xec, 0x29, 0xf6, 0xcd, 0x4d, 0xac, 0x0e, 0x43, + 0x4c, 0xaa, 0xec, 0x4e, 0x08, 0xf6, 0x34, 0xf0, 0x50, 0x28, 0x2c, 0x87, + 0xe8, 0x29, 0x9e, 0x7f, 0x1f, 0xea, 0xd6, 0x94, 0xca, 0x4a, 0x8c, 0x9f, + 0xc8, 0x53, 0x69, 0xf6, 0x13, 0xd4, 0x91, 0x9d, 0x19, 0x81, 0x44, 0x65, + 0xfc, 0x69, 0x24, 0xcf, 0x1b, 0x38, 0xf5, 0xa8, 0xa4, 0x92, 0x41, 0x8d, + 0xb9, 0x6c, 0xfb, 0x53, 0x36, 0xdc, 0x33, 0x7d, 0xd6, 0xc5, 0x55, 0x9d, + 0xb6, 0x05, 0x12, 0xc0, 0x12, 0x63, 0x3c, 0xe7, 0xf9, 0xd0, 0x32, 0x49, + 0x0f, 0xc0, 0x1d, 0xea, 0x00, 0x93, 0xb7, 0x04, 0xbf, 0x1e, 0xb4, 0xad, + 0xe6, 0xa8, 0xe4, 0x31, 0xa9, 0xe5, 0x63, 0x77, 0x25, 0x00, 0x72, 0x43, + 0xe4, 0x0a, 0x39, 0x27, 0x23, 0x24, 0xd4, 0x91, 0xb8, 0x8d, 0x01, 0x68, + 0x88, 0xa9, 0x16, 0x78, 0x4f, 0xf0, 0x93, 0xf4, 0x15, 0x9b, 0x6c, 0xcb, + 0x9d, 0xae, 0x84, 0x18, 0x96, 0x32, 0x5b, 0x6e, 0x69, 0xbe, 0x71, 0x73, + 0x86, 0x3b, 0x6a, 0xe9, 0xb8, 0x88, 0x0e, 0x11, 0xb3, 0xe9, 0x55, 0x67, + 0x0b, 0x30, 0x25, 0x62, 0x20, 0xfa, 0x93, 0x4d, 0x3b, 0xee, 0x8b, 0x55, + 0x1b, 0xdd, 0x07, 0x98, 0x7a, 0x37, 0xcd, 0x4e, 0x44, 0x25, 0x83, 0x84, + 0xce, 0x3b, 0x13, 0x51, 0xdb, 0x24, 0x09, 0xcc, 0xb9, 0x0d, 0xeb, 0x57, + 0xb7, 0x59, 0xaa, 0xe7, 0x7e, 0x4f, 0xa0, 0x07, 0x34, 0x49, 0xdb, 0x42, + 0x77, 0xd8, 0x63, 0xa1, 0x60, 0x1f, 0xee, 0x1f, 0x6a, 0x7c, 0x56, 0xd1, + 0x48, 0x37, 0x49, 0x2a, 0xa6, 0x0f, 0x3e, 0xb5, 0x0b, 0xce, 0xa4, 0x10, + 0x88, 0x40, 0xf7, 0x35, 0x5b, 0x68, 0xce, 0x77, 0x9c, 0xd2, 0x8a, 0xb0, + 0xac, 0xcd, 0x67, 0xb7, 0xb2, 0x6c, 0x04, 0xbc, 0x00, 0xf7, 0xf9, 0x49, + 0xaa, 0xb3, 0xa2, 0xa4, 0x84, 0x46, 0xe2, 0x45, 0x1d, 0x09, 0x18, 0xa8, + 0x96, 0x17, 0xda, 0x5b, 0x78, 0xc7, 0xb9, 0xa3, 0x72, 0x95, 0x00, 0x75, + 0xf5, 0x15, 0x4e, 0x49, 0xe8, 0x91, 0x48, 0x7f, 0x9a, 0x50, 0x86, 0xfd, + 0x00, 0xa8, 0x8c, 0xcc, 0x1f, 0x73, 0x21, 0x7f, 0xad, 0x48, 0xfc, 0x47, + 0x9d, 0xd9, 0xaa, 0xaf, 0x33, 0xee, 0xe5, 0xb3, 0x47, 0x2f, 0x91, 0x56, + 0x2c, 0x2c, 0xab, 0x90, 0x41, 0xd8, 0x0f, 0xde, 0x04, 0xd4, 0x8e, 0x43, + 0xb0, 0x10, 0x80, 0xc4, 0x0c, 0x9c, 0xd5, 0x50, 0xca, 0xe7, 0x07, 0xe5, + 0x3d, 0xb8, 0xa4, 0x7f, 0x32, 0x16, 0x20, 0xb7, 0xe4, 0x28, 0xe5, 0xb8, + 0xac, 0xc9, 0xa5, 0x0c, 0x54, 0x6f, 0x21, 0x7e, 0x82, 0x94, 0x22, 0xa2, + 0xe4, 0x23, 0x90, 0x7b, 0x93, 0x55, 0xc4, 0x83, 0x6e, 0x49, 0x23, 0xf0, + 0xa9, 0x04, 0x9f, 0x27, 0x00, 0x9f, 0x7a, 0x4e, 0x2c, 0x56, 0x7d, 0xc7, + 0x14, 0x28, 0x77, 0x16, 0x0a, 0x0f, 0xa5, 0x40, 0xe8, 0xae, 0x73, 0xbb, + 0x9c, 0xf5, 0xa7, 0xb3, 0x16, 0xe7, 0x04, 0xfb, 0x01, 0x4e, 0x47, 0x3b, + 0x71, 0xe5, 0x30, 0x1f, 0x4a, 0x6b, 0x9a, 0xc3, 0x49, 0x8a, 0xd6, 0xcc, + 0x88, 0x36, 0xc9, 0x92, 0x7d, 0x29, 0xaf, 0x6d, 0x88, 0xc0, 0x3d, 0x7d, + 0x49, 0xa9, 0xfc, 0xf7, 0x65, 0xc0, 0x52, 0x31, 0xeb, 0x48, 0x55, 0xdc, + 0xe5, 0xe5, 0x41, 0xf8, 0xd4, 0x73, 0x4b, 0xa8, 0x9d, 0xd6, 0xe5, 0x76, + 0xb6, 0x1b, 0x78, 0x3c, 0x8f, 0x4a, 0x54, 0x49, 0x00, 0xe1, 0x82, 0x8f, + 0x7a, 0x95, 0xe3, 0x2b, 0xd0, 0x96, 0x3e, 0xc6, 0xa0, 0x65, 0x63, 0xfe, + 0xcd, 0x69, 0xcc, 0xda, 0xb0, 0xec, 0x99, 0x3a, 0x38, 0x4f, 0x99, 0x99, + 0x3e, 0xbb, 0x69, 0x19, 0x96, 0x46, 0xca, 0xb0, 0x07, 0xd4, 0x55, 0x5f, + 0x28, 0x91, 0x83, 0x25, 0x35, 0x1e, 0x15, 0xf9, 0x76, 0xb3, 0x37, 0xe5, + 0x4f, 0x91, 0x6e, 0x84, 0xa3, 0x12, 0xf6, 0x11, 0x06, 0x58, 0x2b, 0x1a, + 0x46, 0x9f, 0xe5, 0xc2, 0x71, 0xec, 0x2a, 0x23, 0x82, 0xa3, 0xa0, 0xa8, + 0x59, 0xb6, 0x1e, 0xaa, 0x45, 0x4d, 0x93, 0x0e, 0x54, 0x48, 0xe8, 0xd2, + 0x72, 0xc4, 0xe6, 0x9c, 0x37, 0x8e, 0x32, 0x48, 0xf7, 0xa8, 0x23, 0x72, + 0xd9, 0x61, 0x80, 0xa3, 0xde, 0xa7, 0x52, 0x85, 0x72, 0x26, 0x15, 0x4e, + 0x2c, 0x6e, 0xc3, 0x08, 0x75, 0x3f, 0x31, 0x14, 0x6d, 0xcf, 0x71, 0x4c, + 0x69, 0x14, 0x67, 0x90, 0xd9, 0xef, 0x4a, 0x49, 0x91, 0x00, 0x40, 0x78, + 0xf7, 0xc5, 0x3e, 0x57, 0xd4, 0x68, 0x0a, 0xe1, 0xb0, 0x58, 0x01, 0x52, + 0xa9, 0xb7, 0x0a, 0x03, 0xb9, 0x63, 0xed, 0x54, 0xd9, 0x64, 0x2d, 0x86, + 0x38, 0x3e, 0xa4, 0xd0, 0x62, 0xc7, 0x52, 0x49, 0x3e, 0xf4, 0xfd, 0x9d, + 0xfa, 0x81, 0x6c, 0xcb, 0x6b, 0x82, 0x0b, 0x9c, 0xfd, 0x28, 0x81, 0x61, + 0x67, 0x3f, 0xbd, 0x24, 0x1a, 0xac, 0xab, 0xb5, 0x71, 0xfc, 0xf9, 0xa4, + 0x5c, 0x27, 0x20, 0x1f, 0xca, 0x87, 0x1e, 0xcc, 0x4d, 0x3e, 0xe5, 0xeb, + 0xa8, 0xa1, 0x75, 0x0a, 0x0e, 0x31, 0xfd, 0xda, 0xa4, 0xf6, 0x64, 0xfd, + 0xc7, 0xe3, 0xd0, 0xd2, 0x89, 0x93, 0xfd, 0xa1, 0x4e, 0x6b, 0xa5, 0x51, + 0x80, 0xac, 0xde, 0xf5, 0x31, 0x52, 0x5b, 0x13, 0x18, 0xb5, 0xd4, 0x85, + 0x2c, 0x9c, 0xe4, 0x93, 0x9f, 0xc6, 0x97, 0xc9, 0x6e, 0x14, 0x1c, 0x53, + 0xd2, 0x72, 0xd9, 0xc2, 0x7e, 0x62, 0x94, 0x48, 0x8c, 0x73, 0xb0, 0x0a, + 0xab, 0xcb, 0xa9, 0x76, 0x23, 0x30, 0xc8, 0xa8, 0x7e, 0x60, 0x3e, 0xa6, + 0xab, 0x4a, 0xcf, 0x19, 0x03, 0x78, 0x6f, 0xa5, 0x5c, 0xc2, 0x13, 0x9d, + 0xa3, 0x3f, 0x5a, 0x86, 0x45, 0xf9, 0xbe, 0x54, 0x1f, 0x85, 0x54, 0x5f, + 0x71, 0x95, 0x3e, 0xd0, 0xdd, 0x30, 0x68, 0xf3, 0x65, 0xfe, 0xe9, 0xc7, + 0xbd, 0x4a, 0x11, 0x81, 0xc9, 0x4e, 0x95, 0x65, 0x24, 0x3d, 0x7c, 0x90, + 0x7e, 0xb5, 0x6e, 0x49, 0x6c, 0x89, 0x65, 0x2f, 0x32, 0x4f, 0xee, 0xfe, + 0x94, 0xe1, 0x39, 0xe8, 0x49, 0xad, 0x3c, 0x45, 0x2a, 0xe1, 0xd1, 0x90, + 0xfb, 0x1a, 0x68, 0xd3, 0xe0, 0x60, 0x70, 0x49, 0xfa, 0x1a, 0x8f, 0x69, + 0x1e, 0xa8, 0x14, 0xbb, 0x94, 0x05, 0xc8, 0xa7, 0xf9, 0xe1, 0xbb, 0x54, + 0xed, 0x65, 0x02, 0xa9, 0xdb, 0xbc, 0x9f, 0x7a, 0x8e, 0x38, 0x0a, 0x9c, + 0x85, 0xc8, 0xf4, 0xa7, 0x78, 0x95, 0x70, 0x31, 0xbe, 0xd0, 0xc4, 0x61, + 0x4d, 0x47, 0xb1, 0xc9, 0xeb, 0xc5, 0x4e, 0xd1, 0xb2, 0x8c, 0x82, 0x40, + 0xf4, 0xa5, 0x0e, 0x00, 0xc1, 0x23, 0xf1, 0x14, 0xaf, 0xd8, 0x12, 0x21, + 0x08, 0x54, 0xf3, 0x8a, 0x90, 0x00, 0x46, 0x33, 0xcd, 0x24, 0x98, 0x38, + 0xc3, 0x03, 0xf8, 0x54, 0x7d, 0x3a, 0x11, 0x46, 0xe2, 0x68, 0x91, 0x91, + 0xff, 0x00, 0x85, 0x81, 0xfa, 0x8a, 0x89, 0x91, 0x86, 0xd2, 0x70, 0x41, + 0xeb, 0xed, 0x4e, 0xf9, 0xcf, 0xa5, 0x38, 0xa3, 0xa8, 0x1b, 0x94, 0x73, + 0x4d, 0x3b, 0x09, 0x08, 0x62, 0xb6, 0x61, 0xd5, 0x81, 0xfc, 0xea, 0x26, + 0x86, 0x3f, 0xe1, 0xcf, 0xe3, 0x56, 0xd6, 0xd8, 0xb2, 0xe4, 0xe0, 0x54, + 0x8b, 0x62, 0xec, 0xb9, 0x0c, 0x31, 0x4b, 0x9e, 0xdd, 0x45, 0xb1, 0x9c, + 0x51, 0x47, 0xf0, 0x8f, 0xc2, 0x9a, 0x1f, 0x66, 0x40, 0x18, 0xcd, 0x68, + 0xfd, 0x8c, 0x0f, 0xbc, 0x5b, 0x34, 0xd3, 0x67, 0x1e, 0xdc, 0xf3, 0x4d, + 0x54, 0x43, 0xe6, 0x45, 0x01, 0x92, 0x3a, 0xd1, 0xc5, 0x5d, 0x5b, 0x48, + 0xff, 0x00, 0xbc, 0x41, 0xfa, 0x1a, 0x53, 0x6f, 0x1a, 0xf5, 0x2f, 0x9f, + 0x65, 0xa7, 0xce, 0x87, 0xcc, 0x53, 0x0c, 0x40, 0xe1, 0x7f, 0x1a, 0x5c, + 0x39, 0x39, 0xc1, 0x26, 0xad, 0xf9, 0x23, 0x1f, 0x29, 0x93, 0x1f, 0x4c, + 0x52, 0xf9, 0x05, 0xf0, 0x39, 0xc7, 0xb9, 0xa5, 0xce, 0x85, 0x74, 0x54, + 0x64, 0x94, 0xf4, 0x5c, 0x0f, 0xad, 0x22, 0x07, 0x56, 0xe5, 0xb9, 0xf4, + 0xcd, 0x5d, 0x36, 0x85, 0x41, 0xc1, 0xcf, 0xe3, 0x50, 0xe0, 0xa9, 0xe8, + 0xa4, 0x8a, 0x39, 0xae, 0x17, 0x17, 0xce, 0x01, 0x70, 0x59, 0x86, 0x3b, + 0x03, 0x57, 0x2d, 0x6f, 0xa1, 0x54, 0x31, 0x4b, 0x13, 0x32, 0x9e, 0xf9, + 0xc9, 0xaa, 0x79, 0xdc, 0x79, 0x5a, 0x76, 0x78, 0xfb, 0xbc, 0x54, 0x4a, + 0x29, 0xab, 0x30, 0x69, 0x32, 0xd3, 0x5c, 0x2a, 0xb1, 0xf2, 0x62, 0x50, + 0x07, 0x42, 0x47, 0x35, 0x1b, 0xdc, 0x37, 0x25, 0x99, 0x81, 0xee, 0x31, + 0xc5, 0x42, 0xac, 0x14, 0xe7, 0x6e, 0x7f, 0x1a, 0x9c, 0x4b, 0x18, 0xfe, + 0x0c, 0xfd, 0x5a, 0xa6, 0xc9, 0x74, 0x0b, 0x10, 0x89, 0x7e, 0x5e, 0x00, + 0x23, 0xdc, 0x54, 0x24, 0x6f, 0x27, 0x9d, 0xbf, 0x4a, 0xb1, 0x23, 0xab, + 0x1f, 0x95, 0x15, 0x7e, 0x86, 0xa2, 0xc9, 0x19, 0x18, 0x1f, 0x80, 0xab, + 0x41, 0xa1, 0x09, 0xce, 0x71, 0xe6, 0x1f, 0xca, 0x94, 0x21, 0x3d, 0x5c, + 0xfe, 0x55, 0x29, 0x0a, 0xa0, 0x31, 0x5c, 0x83, 0xdb, 0x34, 0x07, 0x42, + 0x7e, 0xee, 0x07, 0xd4, 0xd5, 0x5f, 0x40, 0xbb, 0x21, 0xf2, 0x09, 0xe4, + 0x36, 0x69, 0x04, 0x4c, 0xa7, 0x8c, 0xfe, 0x75, 0x64, 0x32, 0x63, 0xee, + 0xd0, 0x15, 0x0f, 0x25, 0x40, 0xa3, 0x9d, 0x85, 0xc6, 0x47, 0x02, 0xaf, + 0xcd, 0x26, 0x71, 0xec, 0x6a, 0x74, 0x8a, 0x06, 0xe9, 0x24, 0x8a, 0x7d, + 0xc5, 0x1b, 0x93, 0x1f, 0xfd, 0x6a, 0x5f, 0x30, 0x63, 0x8c, 0x56, 0x6d, + 0xb6, 0x16, 0x03, 0x6d, 0x0b, 0xf0, 0xb3, 0x60, 0xff, 0x00, 0xb5, 0x51, + 0x9b, 0x74, 0x52, 0x72, 0xe0, 0x91, 0xe9, 0x52, 0x12, 0x33, 0xce, 0x39, + 0xa6, 0xf4, 0xe8, 0x28, 0x4e, 0x5d, 0xc7, 0xaf, 0x71, 0x3f, 0x76, 0x17, + 0x18, 0xa6, 0x0d, 0xa0, 0xe2, 0xa4, 0x09, 0xbc, 0x67, 0x6b, 0x50, 0x09, + 0x88, 0x70, 0x08, 0xfc, 0x2a, 0x95, 0xba, 0x85, 0x84, 0xf3, 0x63, 0x07, + 0x04, 0x9a, 0x41, 0x24, 0x6e, 0xf8, 0x56, 0xc7, 0xd6, 0xa4, 0x32, 0x92, + 0xb8, 0x28, 0x0d, 0x00, 0xa9, 0x1f, 0x74, 0x0f, 0xc2, 0xa9, 0xf2, 0x5b, + 0x41, 0x28, 0x4b, 0xb9, 0x22, 0xc0, 0x48, 0x24, 0x95, 0x61, 0xed, 0xcd, + 0x36, 0x28, 0x22, 0xdc, 0xcc, 0xf1, 0x9c, 0x0e, 0xdd, 0x29, 0xd1, 0xb8, + 0x1c, 0x06, 0xc5, 0x48, 0xec, 0x98, 0xc9, 0x74, 0x3f, 0x5c, 0xd6, 0x6a, + 0xfb, 0x20, 0x69, 0x96, 0x63, 0x78, 0x11, 0x72, 0xb8, 0x4f, 0x62, 0x6a, + 0x39, 0x7c, 0x89, 0x54, 0x94, 0x74, 0x07, 0xd4, 0x0a, 0xa6, 0xb3, 0x67, + 0xb7, 0x1e, 0xd5, 0x3c, 0x5e, 0x43, 0x29, 0x12, 0x16, 0x53, 0xeb, 0x8c, + 0x8a, 0x95, 0x4b, 0x51, 0x72, 0xb5, 0xa9, 0x5c, 0x32, 0xed, 0x03, 0x6a, + 0xe6, 0x9e, 0xad, 0x8e, 0xc3, 0x1f, 0x5a, 0xb2, 0x34, 0x9b, 0xf0, 0x3f, + 0xe3, 0xca, 0x73, 0xff, 0x00, 0x6c, 0x1b, 0xfc, 0x29, 0x7f, 0xb3, 0x75, + 0x11, 0xff, 0x00, 0x2e, 0x13, 0xff, 0x00, 0xdf, 0x96, 0xff, 0x00, 0x0a, + 0xd1, 0xd3, 0x97, 0x66, 0x3e, 0x72, 0x05, 0x3f, 0xee, 0xfe, 0x74, 0x1f, + 0x97, 0xb0, 0xab, 0x02, 0xc3, 0x50, 0x1d, 0x74, 0xeb, 0x8f, 0xfb, 0xf2, + 0xdf, 0xe1, 0x4f, 0x16, 0x9a, 0x80, 0xff, 0x00, 0x98, 0x64, 0xff, 0x00, + 0xf7, 0xe5, 0xbf, 0xc2, 0xa7, 0xd9, 0xcf, 0xf9, 0x58, 0x73, 0x95, 0xa3, + 0x21, 0xdb, 0x69, 0x1c, 0x7b, 0xd3, 0xa4, 0xb7, 0x4e, 0xa0, 0x8f, 0xa6, + 0x6a, 0x7f, 0xb3, 0x6a, 0x43, 0xee, 0xe9, 0xb3, 0x0f, 0xfb, 0x62, 0xdf, + 0xe1, 0x49, 0xf6, 0x5d, 0x5b, 0x3f, 0xf1, 0xe5, 0x71, 0xff, 0x00, 0x7e, + 0x1b, 0xfc, 0x29, 0xfb, 0x39, 0xf4, 0x8b, 0x0e, 0x62, 0x90, 0xb7, 0x43, + 0xc1, 0x93, 0x69, 0xf7, 0x26, 0x86, 0x88, 0xa7, 0x2a, 0x43, 0x0f, 0x6a, + 0xbf, 0xf6, 0x4d, 0x47, 0xbd, 0x8d, 0xce, 0x7f, 0xeb, 0x83, 0x7f, 0x85, + 0x34, 0xd9, 0xea, 0x7d, 0xac, 0x6e, 0x3f, 0xef, 0xc3, 0x7f, 0x85, 0x1c, + 0x95, 0x3f, 0x94, 0x39, 0x8a, 0x49, 0xe6, 0x1e, 0xa3, 0x15, 0x32, 0xcb, + 0x22, 0x8c, 0x09, 0x88, 0xc7, 0xd2, 0xa7, 0xfb, 0x0e, 0xa4, 0x7a, 0xd8, + 0xdc, 0xff, 0x00, 0xdf, 0x96, 0xff, 0x00, 0x0a, 0x61, 0xd2, 0x75, 0x02, + 0x73, 0xf6, 0x3b, 0x8f, 0xfb, 0xf2, 0xdf, 0xe1, 0x4f, 0x92, 0x5d, 0x62, + 0x3e, 0x65, 0xdc, 0x85, 0xee, 0xd5, 0xbe, 0x57, 0x32, 0x31, 0xf5, 0xa4, + 0x3b, 0x76, 0xee, 0xf3, 0x32, 0x3d, 0x32, 0x2a, 0x7f, 0xec, 0x8d, 0x43, + 0xfe, 0x7c, 0xee, 0x3f, 0xef, 0xcb, 0x7f, 0x85, 0x3d, 0x74, 0xab, 0xf1, + 0xd6, 0xc6, 0xe3, 0xfe, 0xfd, 0x37, 0xf8, 0x53, 0x50, 0x7d, 0x98, 0x73, + 0x2e, 0xe5, 0x06, 0x96, 0x30, 0x0e, 0xd5, 0x70, 0x7d, 0x48, 0xaa, 0x6e, + 0xee, 0x0f, 0x00, 0x63, 0xe9, 0x5b, 0x9f, 0xd9, 0x57, 0xf9, 0xff, 0x00, + 0x8f, 0x1b, 0x9f, 0xfb, 0xf6, 0x7f, 0xc2, 0xa4, 0xfe, 0xcb, 0xba, 0x23, + 0xe6, 0xd3, 0xae, 0x8f, 0xfd, 0xb3, 0x3f, 0xe1, 0x56, 0x93, 0x5d, 0x05, + 0x75, 0xdc, 0xe7, 0x51, 0xa5, 0x77, 0xc7, 0x22, 0xae, 0xc5, 0x6b, 0x2b, + 0x2e, 0x4c, 0x8f, 0xf8, 0x03, 0x5a, 0x27, 0x48, 0xbc, 0xcf, 0xcb, 0xa7, + 0xdc, 0x8f, 0xfb, 0x66, 0xdf, 0xe1, 0x4a, 0x34, 0xbd, 0x40, 0x7f, 0xcb, + 0x8d, 0xc7, 0xfd, 0xfb, 0x6a, 0x99, 0x39, 0x3d, 0x90, 0x73, 0x79, 0x95, + 0xe2, 0xd3, 0xbc, 0xfc, 0x2a, 0x99, 0xf3, 0x52, 0x7f, 0x65, 0x4d, 0x6c, + 0xe0, 0x9b, 0xb1, 0x08, 0xee, 0x5d, 0xf9, 0xfc, 0x85, 0x4d, 0xfd, 0x9f, + 0xa9, 0x8e, 0x96, 0x57, 0x23, 0xfe, 0xd9, 0xb5, 0x30, 0xe9, 0xba, 0xa1, + 0x3f, 0xf1, 0xe3, 0x70, 0x7e, 0xb1, 0x37, 0xf8, 0x52, 0x8f, 0x3a, 0xe8, + 0xc5, 0xcd, 0xe6, 0x2d, 0xc4, 0xa2, 0x34, 0x0a, 0x97, 0xb2, 0x4e, 0x7f, + 0xdd, 0xc0, 0xfd, 0x6b, 0x34, 0xab, 0x17, 0xff, 0x00, 0x56, 0xc7, 0x3d, + 0xf1, 0x5a, 0x5f, 0xd9, 0xda, 0xa7, 0x4f, 0xb0, 0xdc, 0x7f, 0xdf, 0xa6, + 0xff, 0x00, 0x0a, 0x0e, 0x95, 0xa9, 0x1f, 0xf9, 0x74, 0xb9, 0x1f, 0xf6, + 0xc9, 0xa8, 0x7c, 0xef, 0xec, 0x8d, 0xce, 0xe5, 0x11, 0x08, 0xc8, 0x69, + 0x33, 0x8f, 0x61, 0x4d, 0x31, 0x80, 0xc7, 0xcb, 0x39, 0x07, 0xb1, 0xad, + 0x01, 0xa4, 0xea, 0x23, 0xfe, 0x5d, 0xae, 0xbf, 0xef, 0xd1, 0xff, 0x00, + 0x0a, 0x3f, 0xb2, 0xb5, 0x1c, 0xff, 0x00, 0xc7, 0xa5, 0xd7, 0xfd, 0xfa, + 0x3f, 0xe1, 0x4b, 0x96, 0x7d, 0x85, 0x75, 0xdc, 0xa6, 0xac, 0xeb, 0xc1, + 0x45, 0xa3, 0xcb, 0x77, 0x19, 0x08, 0xbf, 0x4a, 0xb9, 0xfd, 0x97, 0xa9, + 0x7f, 0xcf, 0x95, 0xc7, 0xe3, 0x11, 0xff, 0x00, 0x0a, 0x4f, 0xec, 0xbd, + 0x4f, 0xfe, 0x7c, 0xee, 0x07, 0xfd, 0xb2, 0x6f, 0xf0, 0xa3, 0x92, 0x5d, + 0xbf, 0x31, 0xf3, 0x2e, 0xe5, 0x25, 0x89, 0xb7, 0x72, 0x31, 0xfa, 0xd2, + 0xb7, 0x4c, 0x6c, 0x6f, 0xad, 0x5c, 0xfe, 0xcc, 0xd4, 0xff, 0x00, 0xe7, + 0xd6, 0xeb, 0xfe, 0xfd, 0x1f, 0xf0, 0xa0, 0x69, 0x9a, 0xa7, 0x7b, 0x4b, + 0x92, 0x3f, 0xeb, 0x91, 0xff, 0x00, 0x0a, 0x39, 0x24, 0xf7, 0x5f, 0x98, + 0xf9, 0xd1, 0x45, 0x11, 0x89, 0xee, 0x3f, 0x0a, 0x94, 0x85, 0x8c, 0x7c, + 0xdf, 0x37, 0xd6, 0xaf, 0x0d, 0x3a, 0xf4, 0x7f, 0xcc, 0x3e, 0xec, 0x9f, + 0xf7, 0x4f, 0xf8, 0x50, 0x6c, 0xf5, 0x3e, 0xd6, 0x37, 0x18, 0xf7, 0x88, + 0x9f, 0xe9, 0x43, 0x84, 0xbb, 0x30, 0xe7, 0x5d, 0xca, 0x4a, 0xc8, 0x7a, + 0x2a, 0x8f, 0xc6, 0x9e, 0x01, 0x52, 0x4e, 0x01, 0x1e, 0x95, 0x75, 0x2d, + 0x75, 0x31, 0xf7, 0xac, 0xee, 0x3f, 0xef, 0xc9, 0xff, 0x00, 0x0a, 0x9b, + 0xc9, 0xd4, 0x00, 0xe2, 0xc6, 0xe0, 0xff, 0x00, 0xdb, 0x13, 0xfe, 0x15, + 0x3e, 0xce, 0x7d, 0x98, 0x39, 0x45, 0xf5, 0x32, 0x9e, 0x67, 0x03, 0x11, + 0xc6, 0x07, 0xbe, 0x0d, 0x35, 0x19, 0xdb, 0x82, 0xe0, 0x7b, 0x1a, 0xbd, + 0x25, 0xae, 0xa6, 0xc7, 0xfe, 0x41, 0xf3, 0x7f, 0xdf, 0x96, 0xff, 0x00, + 0x0a, 0x88, 0x69, 0xda, 0x86, 0x72, 0xd6, 0x17, 0x1f, 0xf7, 0xe5, 0xaa, + 0x95, 0x19, 0x76, 0x17, 0xbb, 0xdc, 0x83, 0x08, 0x0f, 0x3b, 0x33, 0x4f, + 0xcc, 0x4a, 0xb9, 0xf9, 0x49, 0xa9, 0xff, 0x00, 0xb3, 0xef, 0xbf, 0xe7, + 0xc2, 0xe7, 0xfe, 0xfc, 0xb7, 0xf8, 0x51, 0xf6, 0x3d, 0x48, 0x7d, 0xdb, + 0x2b, 0x9f, 0xfb, 0xf2, 0x7f, 0xc2, 0x8f, 0x61, 0x2e, 0xc2, 0xba, 0xee, + 0x54, 0x5f, 0x94, 0x9d, 0x91, 0x06, 0xcf, 0x53, 0x8c, 0xd3, 0x3c, 0x8c, + 0xb6, 0x7c, 0xb1, 0xf4, 0xab, 0xcb, 0x6b, 0xaa, 0x8f, 0xf9, 0x72, 0x9f, + 0xfe, 0xfc, 0xb7, 0xf8, 0x53, 0x8d, 0xa6, 0xa4, 0x7a, 0xd8, 0x4f, 0xff, + 0x00, 0x7e, 0x5b, 0xfc, 0x28, 0xf6, 0x75, 0x3b, 0x0a, 0xe5, 0x42, 0x8c, + 0x91, 0xe1, 0x61, 0x43, 0x55, 0x99, 0x18, 0xf1, 0xe5, 0x63, 0xe9, 0x5a, + 0x06, 0xcb, 0x53, 0xed, 0x65, 0x72, 0x3f, 0xed, 0x8b, 0x7f, 0x85, 0x37, + 0xec, 0x3a, 0x9f, 0xfc, 0xf9, 0xdd, 0x7f, 0xdf, 0x86, 0xff, 0x00, 0x0a, + 0x39, 0x2a, 0x76, 0xfc, 0xc7, 0x72, 0x9c, 0x76, 0x92, 0x39, 0xee, 0x07, + 0xbd, 0x4e, 0x6d, 0x76, 0x8c, 0x33, 0x9f, 0xc2, 0xa6, 0x16, 0x3a, 0x98, + 0x39, 0xfb, 0x25, 0xdf, 0xe1, 0x0b, 0x7f, 0x85, 0x39, 0xac, 0xb5, 0x16, + 0x18, 0x36, 0x97, 0xbf, 0xf7, 0xe8, 0xff, 0x00, 0x85, 0x2f, 0x67, 0x51, + 0xf4, 0x15, 0xdf, 0x72, 0xb6, 0xd8, 0x57, 0x8c, 0xb9, 0xa4, 0xdd, 0x6e, + 0x3a, 0xb3, 0x8f, 0xc4, 0xd4, 0xff, 0x00, 0xd9, 0xb7, 0xff, 0x00, 0xf3, + 0xe7, 0x79, 0xf8, 0xc2, 0xdf, 0xe1, 0x49, 0xfd, 0x99, 0x7a, 0x4f, 0x36, + 0x57, 0x9f, 0xf7, 0xe5, 0xbf, 0xc2, 0xab, 0xd9, 0x4f, 0xcc, 0x3e, 0x63, + 0x17, 0xec, 0xe7, 0xa3, 0x39, 0xfc, 0x6a, 0x50, 0xd0, 0xfa, 0x13, 0xf8, + 0x51, 0xfd, 0x9d, 0x76, 0x3f, 0xe6, 0x1f, 0x7a, 0x7f, 0xed, 0x93, 0x7f, + 0x85, 0x28, 0xb2, 0xbf, 0x1f, 0xf3, 0x0f, 0xbc, 0x1f, 0xf6, 0xc9, 0xbf, + 0xc2, 0xa5, 0xd0, 0x97, 0x61, 0x35, 0xe6, 0x2b, 0x32, 0xc8, 0x36, 0xf3, + 0x4c, 0x92, 0xdf, 0x6a, 0xe7, 0x2c, 0xbf, 0x43, 0x52, 0x0b, 0x3b, 0xef, + 0xf9, 0xf0, 0xbd, 0x1f, 0xf6, 0xc9, 0xbf, 0xc2, 0x83, 0x69, 0x7e, 0x47, + 0x36, 0x37, 0xc7, 0xfe, 0xd9, 0x37, 0xf8, 0x52, 0xf6, 0x13, 0x5d, 0x09, + 0xe5, 0x46, 0x73, 0x6d, 0x52, 0x48, 0x69, 0x18, 0xfb, 0xd2, 0x0b, 0x81, + 0xd3, 0x0e, 0x0f, 0xb5, 0x5e, 0x36, 0x17, 0xe7, 0xfe, 0x5c, 0x6f, 0x7f, + 0xef, 0xd3, 0x7f, 0x85, 0x28, 0xd3, 0xaf, 0x7b, 0xd9, 0xde, 0xff, 0x00, + 0xdf, 0x93, 0xfe, 0x15, 0x5e, 0xca, 0x5d, 0x62, 0xc7, 0xa1, 0x41, 0xa5, + 0x62, 0x38, 0x73, 0xf4, 0xa6, 0x89, 0x66, 0xfe, 0xf8, 0xc7, 0xb8, 0xad, + 0x1f, 0xec, 0xcb, 0xb3, 0xff, 0x00, 0x2e, 0x57, 0xbf, 0xf7, 0xe5, 0xbf, + 0xc2, 0x97, 0xfb, 0x2e, 0xf4, 0xff, 0x00, 0xcb, 0xad, 0xdf, 0xe3, 0x03, + 0x7f, 0x85, 0x3e, 0x47, 0xfc, 0xbf, 0x81, 0x5c, 0xcb, 0xb1, 0x47, 0xcd, + 0x66, 0x1c, 0xb6, 0x3f, 0x0a, 0x6e, 0xd6, 0xea, 0x19, 0x4f, 0xe0, 0x6b, + 0x44, 0x69, 0x77, 0x83, 0xfe, 0x5d, 0x6e, 0x7f, 0xef, 0xc3, 0x7f, 0x85, + 0x3b, 0xfb, 0x3e, 0xfc, 0x74, 0xb4, 0xb9, 0xff, 0x00, 0xbf, 0x0d, 0xfe, + 0x14, 0x72, 0x3f, 0xe5, 0x7f, 0x71, 0x5c, 0xe8, 0xcf, 0xcb, 0xe3, 0xe6, + 0x51, 0x8f, 0x6a, 0x6a, 0xec, 0x27, 0xef, 0x15, 0xad, 0x13, 0x63, 0xa8, + 0x91, 0x8f, 0xb2, 0x5c, 0xff, 0x00, 0xdf, 0x96, 0xff, 0x00, 0x0a, 0x81, + 0xb4, 0x5b, 0xc7, 0x39, 0x36, 0x57, 0x5f, 0xf7, 0xe9, 0xbf, 0xc2, 0x8f, + 0x67, 0xe4, 0xfe, 0xe0, 0xe7, 0x44, 0x5b, 0xe3, 0x45, 0xc1, 0x75, 0x3f, + 0x8d, 0x0a, 0xf0, 0x1e, 0xd8, 0xf7, 0xab, 0x09, 0xa2, 0x5c, 0x0e, 0xba, + 0x7d, 0xc7, 0xfd, 0xfa, 0x6f, 0xf0, 0xa7, 0x7f, 0x63, 0x5c, 0x76, 0xd3, + 0xe7, 0xff, 0x00, 0xbf, 0x4d, 0x4b, 0xd9, 0xbe, 0xcc, 0x9e, 0x64, 0x55, + 0x63, 0x1e, 0x38, 0x3f, 0xad, 0x27, 0xda, 0x11, 0x46, 0xd2, 0xe6, 0xac, + 0x9d, 0x2a, 0xf8, 0x7d, 0xdb, 0x09, 0x7f, 0xef, 0xcb, 0x53, 0x4e, 0x93, + 0xa9, 0x1f, 0xf9, 0x73, 0x9b, 0xfe, 0xfc, 0xb7, 0xf8, 0x51, 0xec, 0x9f, + 0x66, 0x3b, 0xa6, 0x54, 0x76, 0x49, 0x06, 0x0b, 0x1f, 0xce, 0xa3, 0x54, + 0x8f, 0xfb, 0xed, 0xf9, 0xd5, 0xe1, 0xa4, 0xea, 0x43, 0xa5, 0x9c, 0xdf, + 0xf7, 0xe5, 0xbf, 0xc2, 0x97, 0xfb, 0x33, 0x53, 0xef, 0x63, 0x2f, 0xfd, + 0xf9, 0x6f, 0xf0, 0xa7, 0xec, 0xe4, 0xb6, 0x4c, 0x7c, 0xc9, 0x10, 0x46, + 0x8b, 0x8f, 0x95, 0x87, 0xfd, 0xf4, 0x69, 0xfb, 0xb0, 0xdf, 0x7c, 0x1f, + 0x6c, 0xd4, 0x87, 0x4c, 0xd4, 0xbf, 0xe7, 0xc6, 0x5f, 0xfb, 0xf4, 0xd4, + 0xc3, 0xa5, 0xea, 0x3d, 0xf4, 0xf9, 0xbf, 0xef, 0xcb, 0x52, 0xf6, 0x52, + 0xec, 0xc3, 0x9d, 0x06, 0x77, 0x1e, 0x71, 0x49, 0x81, 0xc0, 0x54, 0x07, + 0xdc, 0xd2, 0xff, 0x00, 0x66, 0x6a, 0x04, 0x60, 0xd9, 0x5c, 0x8f, 0xa4, + 0x2d, 0x47, 0xf6, 0x4d, 0xf7, 0xfc, 0xfa, 0xdd, 0xff, 0x00, 0xdf, 0x96, + 0xff, 0x00, 0x0a, 0x15, 0x29, 0xf6, 0xfc, 0x04, 0xe4, 0x9f, 0x52, 0x5f, + 0x99, 0x47, 0x0a, 0x08, 0xa8, 0x65, 0x06, 0x41, 0x82, 0x00, 0xfa, 0x50, + 0x74, 0xbd, 0x40, 0xf4, 0xb5, 0xba, 0x1f, 0xf6, 0xc5, 0xff, 0x00, 0xc2, + 0x90, 0x69, 0x3a, 0x97, 0xfc, 0xfb, 0xdd, 0x0f, 0xfb, 0x62, 0xdf, 0xe1, + 0x4f, 0xd8, 0xcb, 0xb7, 0xe0, 0xc5, 0xee, 0xf7, 0x23, 0x5b, 0x65, 0x51, + 0x92, 0xcd, 0x9a, 0x61, 0x83, 0x2d, 0x9d, 0xa4, 0xd5, 0x95, 0xd2, 0x35, + 0x2e, 0xf0, 0x5c, 0x9f, 0xfb, 0x62, 0xdf, 0xe1, 0x4e, 0x1a, 0x36, 0xa0, + 0x7a, 0xc1, 0x75, 0xff, 0x00, 0x7e, 0x9b, 0xfc, 0x29, 0xf2, 0x4f, 0xfa, + 0x45, 0x73, 0x2e, 0xe4, 0x52, 0xef, 0x30, 0x04, 0x18, 0x0a, 0x3b, 0x62, + 0xab, 0xa9, 0x03, 0x82, 0x8b, 0x9f, 0x53, 0x9a, 0xd0, 0x1a, 0x1d, 0xe9, + 0xeb, 0x0d, 0xd7, 0xfd, 0xfb, 0x6f, 0xf0, 0xa7, 0x0d, 0x16, 0xec, 0x7f, + 0xcb, 0xb5, 0xc9, 0xfa, 0xc6, 0xdf, 0xe1, 0x49, 0xc6, 0x7d, 0x53, 0x25, + 0xc9, 0x15, 0xa3, 0x61, 0xb7, 0x04, 0xa1, 0xfa, 0x0a, 0x64, 0x85, 0x0f, + 0x18, 0x5a, 0xba, 0x34, 0x8b, 0xb1, 0xff, 0x00, 0x2e, 0x77, 0x07, 0xfe, + 0xd9, 0xb7, 0xf8, 0x50, 0x74, 0xab, 0xae, 0xf6, 0x17, 0x1f, 0xf7, 0xe9, + 0xbf, 0xc2, 0xa5, 0x42, 0x5d, 0x9f, 0xdc, 0x2b, 0xa2, 0x86, 0xf8, 0xd0, + 0x73, 0x12, 0x9f, 0xc6, 0x95, 0x67, 0x8c, 0xff, 0x00, 0xcb, 0x1e, 0x3d, + 0xaa, 0xef, 0xf6, 0x65, 0xd8, 0xe9, 0xa7, 0x5c, 0x7f, 0xdf, 0xa6, 0xff, + 0x00, 0x0a, 0x5f, 0xec, 0xfb, 0xc1, 0xff, 0x00, 0x30, 0xdb, 0x8f, 0xfb, + 0xf4, 0xdf, 0xe1, 0x4f, 0xd9, 0x49, 0xf4, 0x61, 0x72, 0x98, 0x9a, 0x1c, + 0xe3, 0xc9, 0xa7, 0xf9, 0xb0, 0x9f, 0xf9, 0x66, 0x2a, 0x73, 0x61, 0x79, + 0xff, 0x00, 0x40, 0xbb, 0x83, 0xff, 0x00, 0x6c, 0x9b, 0xfc, 0x29, 0x3e, + 0xc1, 0x7d, 0xff, 0x00, 0x40, 0xa9, 0xff, 0x00, 0xef, 0xd3, 0x7f, 0x85, + 0x2f, 0x61, 0x2f, 0xe5, 0x63, 0xd3, 0xb7, 0xe2, 0x40, 0xcd, 0x17, 0x5f, + 0x28, 0x7e, 0x74, 0xc6, 0x78, 0xf1, 0x8f, 0x2c, 0x7e, 0x75, 0x6f, 0xec, + 0x17, 0xdf, 0xf4, 0x0b, 0x9f, 0xfe, 0xfd, 0x37, 0xf8, 0x52, 0x1d, 0x3e, + 0xf8, 0xff, 0x00, 0xcc, 0x2e, 0xe0, 0x7f, 0xdb, 0x26, 0xff, 0x00, 0x0a, + 0xa5, 0x46, 0x5f, 0xca, 0xc3, 0x4e, 0xdf, 0x89, 0x47, 0xcd, 0x44, 0xff, + 0x00, 0x96, 0x48, 0x07, 0xbd, 0x35, 0xe7, 0x8d, 0xba, 0x04, 0xab, 0xe3, + 0x4b, 0xbd, 0x3d, 0x74, 0xfb, 0x9f, 0xfb, 0xf2, 0xdf, 0xe1, 0x4e, 0xfe, + 0xcc, 0xbc, 0x1f, 0xf3, 0x0e, 0xb8, 0xff, 0x00, 0xbf, 0x2d, 0xfe, 0x14, + 0xfd, 0x94, 0xbf, 0x95, 0x81, 0x9e, 0xb2, 0x29, 0x5c, 0x7c, 0x9f, 0x9d, + 0x0b, 0x19, 0x0d, 0x95, 0x31, 0x8f, 0xc7, 0x35, 0xa1, 0xfd, 0x9b, 0x7d, + 0xdb, 0x4f, 0xb8, 0x1f, 0xf6, 0xc9, 0xbf, 0xc2, 0x97, 0xfb, 0x3b, 0x50, + 0xff, 0x00, 0x9f, 0x1b, 0x8f, 0xfb, 0xf2, 0xdf, 0xe1, 0x4b, 0x92, 0xa7, + 0x66, 0x1e, 0xf1, 0x54, 0x2e, 0x57, 0xe6, 0x92, 0x31, 0x9f, 0x40, 0x2a, + 0x23, 0x64, 0x87, 0x95, 0x94, 0x7e, 0x75, 0x75, 0xb4, 0xdd, 0x4c, 0xf4, + 0xb3, 0xb8, 0x1f, 0xf6, 0xc4, 0xff, 0x00, 0x85, 0x30, 0xe9, 0x7a, 0x99, + 0x1c, 0xdb, 0x5c, 0x8f, 0xa4, 0x0d, 0xfe, 0x14, 0x7b, 0x3a, 0xaf, 0xb8, + 0xbd, 0xee, 0xe5, 0x56, 0xb4, 0x01, 0x70, 0x27, 0xe7, 0xde, 0x9a, 0x2d, + 0xa4, 0x45, 0xff, 0x00, 0x5c, 0xa7, 0xfe, 0x03, 0x9a, 0xb0, 0x74, 0x7d, + 0x47, 0x39, 0xfb, 0x2d, 0xd9, 0xff, 0x00, 0xb6, 0x2d, 0xfe, 0x14, 0x9f, + 0xd9, 0x3a, 0x9f, 0xfc, 0xf9, 0x5d, 0xff, 0x00, 0xdf, 0xa6, 0xff, 0x00, + 0x0a, 0x6a, 0x9d, 0x45, 0xff, 0x00, 0x0c, 0x1e, 0xf7, 0x72, 0x93, 0xc6, + 0x00, 0x3b, 0xa5, 0x62, 0x7d, 0x94, 0x8a, 0x6c, 0x71, 0xc8, 0xcd, 0xf2, + 0x4f, 0x20, 0xfd, 0x2b, 0x43, 0xfb, 0x23, 0x52, 0xcf, 0x36, 0x57, 0x5f, + 0xf7, 0xe9, 0xbf, 0xc2, 0xa6, 0x5d, 0x33, 0x53, 0x03, 0x8b, 0x2b, 0x9f, + 0xfb, 0xf2, 0xdf, 0xe1, 0x4f, 0x96, 0xa7, 0x61, 0xeb, 0xdc, 0xce, 0xfb, + 0x2d, 0xd6, 0x72, 0x25, 0x2d, 0xec, 0x4d, 0x4a, 0x3c, 0xf4, 0x4c, 0x79, + 0x40, 0xfd, 0x1a, 0xaf, 0x7f, 0x67, 0x6a, 0x9f, 0xf3, 0xe7, 0x73, 0xff, + 0x00, 0x7e, 0x9b, 0xfc, 0x28, 0x3a, 0x6e, 0xa8, 0x7f, 0xe5, 0xce, 0xe7, + 0xfe, 0xfd, 0x37, 0xf8, 0x54, 0x38, 0x55, 0x7b, 0xa1, 0x34, 0xdf, 0x53, + 0x2a, 0x44, 0x94, 0x8e, 0x63, 0x61, 0xff, 0x00, 0x02, 0xcd, 0x2c, 0x61, + 0x00, 0xf9, 0xd7, 0x9f, 0x6a, 0xd2, 0xfe, 0xc9, 0xd5, 0x0f, 0xfc, 0xb9, + 0x5c, 0x7f, 0xdf, 0xb6, 0xff, 0x00, 0x0a, 0x51, 0xa2, 0x6a, 0x47, 0xfe, + 0x5c, 0xe7, 0xff, 0x00, 0xbf, 0x4d, 0xfe, 0x14, 0xfd, 0x9d, 0x4b, 0x5a, + 0xc5, 0x2f, 0x52, 0x8a, 0xb4, 0x43, 0xee, 0xa0, 0xcf, 0xb8, 0xcd, 0x4b, + 0xe6, 0x82, 0x30, 0x16, 0x31, 0xff, 0x00, 0x00, 0xab, 0x3f, 0xd8, 0x5a, + 0x9f, 0xfc, 0xf9, 0xcd, 0xff, 0x00, 0x7e, 0xdb, 0xfc, 0x29, 0x46, 0x85, + 0xaa, 0x0e, 0x96, 0x53, 0x7f, 0xdf, 0x07, 0xfc, 0x28, 0xf6, 0x53, 0xec, + 0xc2, 0xcb, 0xb9, 0x4d, 0xa2, 0xdf, 0xd5, 0x93, 0xfe, 0xf9, 0xc5, 0x30, + 0xda, 0x31, 0xe0, 0x4c, 0x2b, 0x43, 0xfb, 0x0f, 0x56, 0x3f, 0xf2, 0xe5, + 0x2f, 0xfd, 0xf0, 0x7f, 0xc2, 0x9c, 0x34, 0x4d, 0x58, 0x0c, 0x7d, 0x8e, + 0x5f, 0xfb, 0xe4, 0xff, 0x00, 0x85, 0x25, 0x4e, 0xa7, 0x6f, 0xc0, 0x2d, + 0xe6, 0x64, 0xb5, 0xac, 0x8b, 0xd6, 0x5f, 0xd6, 0xa1, 0x61, 0x24, 0x7d, + 0x19, 0xab, 0x64, 0xf8, 0x7f, 0x52, 0x27, 0x26, 0xce, 0x5f, 0xfb, 0xe4, + 0xd3, 0x4e, 0x81, 0xa8, 0x8f, 0xf9, 0x71, 0x9b, 0xf0, 0x8c, 0xff, 0x00, + 0x85, 0x52, 0x84, 0xfa, 0xa0, 0xb7, 0x99, 0x90, 0x24, 0x9b, 0xb3, 0xb5, + 0x3f, 0xce, 0xb8, 0x51, 0xcf, 0x3f, 0x51, 0x5a, 0x3f, 0xd8, 0x5a, 0x88, + 0xff, 0x00, 0x97, 0x1b, 0x8f, 0xfb, 0xf6, 0x7f, 0xc2, 0x90, 0xe8, 0xda, + 0x8f, 0xfc, 0xf8, 0x5d, 0x7f, 0xdf, 0xa6, 0xff, 0x00, 0x0a, 0x7c, 0x92, + 0xfe, 0x50, 0xb4, 0x4a, 0x2b, 0x3b, 0x31, 0xf9, 0x90, 0x7e, 0x66, 0x9e, + 0x4a, 0xb7, 0x5d, 0xc3, 0xe8, 0x6a, 0xd1, 0xd1, 0xb5, 0x1f, 0xf9, 0xf0, + 0xba, 0xff, 0x00, 0xbf, 0x4d, 0xfe, 0x14, 0x7f, 0x62, 0xea, 0x7f, 0xf3, + 0xe1, 0x77, 0xff, 0x00, 0x7e, 0x8f, 0xf8, 0x54, 0xfb, 0x29, 0x76, 0x0b, + 0x47, 0xb9, 0x57, 0x0b, 0x8f, 0xbe, 0xc3, 0xeb, 0x48, 0x50, 0x76, 0x98, + 0x7e, 0x55, 0x64, 0xe8, 0xba, 0x9f, 0xfd, 0x03, 0xee, 0xbf, 0xef, 0xd3, + 0x7f, 0x85, 0x30, 0xe8, 0xba, 0xa7, 0xfd, 0x03, 0xee, 0xbf, 0xef, 0xd3, + 0x7f, 0x85, 0x3f, 0x65, 0x2e, 0xc1, 0x65, 0xdc, 0xaf, 0xe5, 0x92, 0x7f, + 0xd6, 0xad, 0x20, 0x88, 0xe7, 0xef, 0xa7, 0xe7, 0x56, 0x86, 0x8f, 0xaa, + 0xff, 0x00, 0xd0, 0x3e, 0xeb, 0xfe, 0xfd, 0x37, 0xf8, 0x52, 0xae, 0x91, + 0xaa, 0x29, 0xc8, 0xd3, 0xee, 0x81, 0xff, 0x00, 0xae, 0x2d, 0xfe, 0x14, + 0xfd, 0x9c, 0xfb, 0x07, 0xcc, 0xab, 0xe4, 0x73, 0xf7, 0x93, 0x3f, 0x5a, + 0x0c, 0x32, 0x1f, 0xf9, 0x68, 0x98, 0xfa, 0xd5, 0xd3, 0xa7, 0x6a, 0xcc, + 0x30, 0xda, 0x7d, 0xd1, 0xff, 0x00, 0xb6, 0x2d, 0xfe, 0x15, 0x1f, 0xf6, + 0x46, 0xa4, 0x4f, 0xfc, 0x83, 0xee, 0xbf, 0xef, 0xcb, 0x7f, 0x85, 0x1c, + 0x93, 0x5d, 0x3f, 0x00, 0xf9, 0x95, 0x0d, 0xa4, 0xa7, 0x9f, 0x31, 0x40, + 0xa5, 0x6b, 0x42, 0x07, 0x12, 0x21, 0xfc, 0x6a, 0xef, 0xf6, 0x56, 0xa4, + 0x46, 0x0d, 0x85, 0xd6, 0x3f, 0xeb, 0x8b, 0x7f, 0x85, 0x38, 0x69, 0x37, + 0xd8, 0xe7, 0x4f, 0xbb, 0xff, 0x00, 0xbf, 0x2d, 0xfe, 0x14, 0xb9, 0x6a, + 0x76, 0xfc, 0x03, 0x5e, 0xe5, 0x24, 0x83, 0x6e, 0x37, 0x3a, 0xe3, 0xd8, + 0xd4, 0xc6, 0x28, 0x08, 0xfb, 0xdf, 0xad, 0x4f, 0xfd, 0x91, 0x7b, 0xff, + 0x00, 0x3e, 0x17, 0x7f, 0xf7, 0xe1, 0xbf, 0xc2, 0x8f, 0xec, 0x9b, 0xc1, + 0xff, 0x00, 0x30, 0xfb, 0xbf, 0xfb, 0xf2, 0xdf, 0xe1, 0x52, 0xe1, 0x3e, + 0xcf, 0xee, 0x1d, 0xfc, 0xca, 0x6d, 0x68, 0x09, 0xe2, 0x50, 0x69, 0x45, + 0xb7, 0x18, 0xf3, 0x46, 0x7f, 0xdd, 0xab, 0x83, 0x4b, 0xbc, 0x1f, 0xf3, + 0x0f, 0xbc, 0xff, 0x00, 0xbf, 0x2d, 0xfe, 0x14, 0xbf, 0xd9, 0xb7, 0x9f, + 0xf3, 0xe1, 0x79, 0xff, 0x00, 0x7e, 0x5b, 0xfc, 0x28, 0xe5, 0xa9, 0xd9, + 0xfd, 0xc1, 0x75, 0xdc, 0xaa, 0x2d, 0xbf, 0xe9, 0xa2, 0xd2, 0x8b, 0x71, + 0x9e, 0x64, 0x53, 0x56, 0x86, 0x99, 0x77, 0xdf, 0x4f, 0xbc, 0xff, 0x00, + 0xbf, 0x4d, 0xfe, 0x14, 0xf1, 0xa6, 0x5c, 0x7f, 0xd0, 0x3a, 0xf3, 0xfe, + 0xfd, 0xb7, 0xf8, 0x54, 0xb8, 0x54, 0xec, 0xfe, 0xe0, 0xba, 0x2a, 0x08, + 0x22, 0x1f, 0x79, 0x85, 0x2a, 0xc5, 0x6e, 0x0f, 0xde, 0xfd, 0x2a, 0xc9, + 0xd3, 0x2e, 0x8f, 0x4d, 0x3e, 0xeb, 0xfe, 0xfd, 0x37, 0xf8, 0x53, 0x0e, + 0x93, 0x7c, 0x7a, 0x59, 0x5d, 0x7f, 0xdf, 0x96, 0xff, 0x00, 0x0a, 0x5e, + 0xce, 0x6f, 0xa3, 0x17, 0xcc, 0x8d, 0x9a, 0x35, 0xfb, 0x88, 0x1f, 0xea, + 0x29, 0xc9, 0x22, 0x7f, 0x14, 0x0a, 0x28, 0xfe, 0xc8, 0xd4, 0x3f, 0xe7, + 0xd2, 0xeb, 0xfe, 0xfc, 0xb7, 0xf8, 0x51, 0xfd, 0x93, 0xa8, 0xff, 0x00, + 0xcf, 0x9d, 0xd7, 0xfd, 0xfa, 0x6f, 0xf0, 0xa3, 0xd8, 0xcb, 0xb3, 0x1e, + 0x83, 0xcc, 0x90, 0xe7, 0x85, 0xc7, 0xb0, 0x14, 0xc6, 0xda, 0xdd, 0x11, + 0xb1, 0xed, 0x8a, 0x06, 0x93, 0xa8, 0x8f, 0xf9, 0x71, 0xb9, 0x3f, 0xf6, + 0xc9, 0xbf, 0xc2, 0x9c, 0x34, 0xdd, 0x50, 0x74, 0xb1, 0xb8, 0xff, 0x00, + 0xbf, 0x4d, 0xfe, 0x14, 0x7b, 0x29, 0xf4, 0x42, 0xd3, 0xb9, 0x1a, 0xc7, + 0x14, 0x6e, 0x1d, 0x95, 0xb2, 0x3b, 0x16, 0x14, 0xc2, 0x21, 0x92, 0x42, + 0x72, 0xc3, 0x3e, 0xac, 0x31, 0x52, 0xb6, 0x95, 0xaa, 0x37, 0x5b, 0x2b, + 0x8f, 0xfb, 0xf4, 0xdf, 0xe1, 0x4d, 0x3a, 0x2e, 0xa5, 0xff, 0x00, 0x3e, + 0x77, 0x1f, 0xf7, 0xe9, 0xbf, 0xc2, 0xab, 0xd9, 0xcc, 0x2f, 0xe6, 0x27, + 0xd9, 0x54, 0xf4, 0x9d, 0x00, 0xf7, 0x34, 0xd7, 0x8e, 0x38, 0xc7, 0x32, + 0x23, 0x7d, 0x29, 0xdf, 0xd8, 0xda, 0xa6, 0x7f, 0xe3, 0xce, 0xe3, 0xfe, + 0xfc, 0xb7, 0xf8, 0x52, 0xff, 0x00, 0x62, 0xea, 0x07, 0xad, 0x9d, 0xc7, + 0xfd, 0xf9, 0x6a, 0x3d, 0x94, 0xff, 0x00, 0xa4, 0x17, 0xf3, 0x20, 0x59, + 0x20, 0x4f, 0xe1, 0x63, 0x48, 0xd7, 0x03, 0x05, 0x51, 0x02, 0x83, 0x56, + 0x3f, 0xb1, 0x35, 0x0f, 0xf9, 0xf5, 0xb8, 0xff, 0x00, 0xbf, 0x0d, 0x40, + 0xd1, 0x2f, 0xc7, 0x3f, 0x64, 0xb8, 0xff, 0x00, 0xbf, 0x0d, 0x55, 0xec, + 0x9f, 0x66, 0x17, 0x47, 0xff, 0xd9 +}; +unsigned int papermill_jpg_len = 89754; diff --git a/assets/hdr/09_pisa.h b/assets/hdr/09_pisa.h new file mode 100644 index 0000000..405e7d8 --- /dev/null +++ b/assets/hdr/09_pisa.h @@ -0,0 +1,3419 @@ +unsigned char pisa_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x4b, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x31, 0x33, + 0x3a, 0x34, 0x30, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x34, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, + 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, + 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, + 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, + 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, + 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, + 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xe2, 0xc1, 0x4c, 0x74, 0x14, 0x7c, 0x9e, 0x82, 0xa8, 0x7d, + 0x92, 0x0c, 0x7f, 0xc7, 0xe4, 0x9f, 0x91, 0xa3, 0xec, 0x90, 0x7f, 0xcf, + 0xec, 0x9f, 0x91, 0xad, 0x3f, 0xb4, 0x69, 0xf6, 0x33, 0xfa, 0x9c, 0xbb, + 0x97, 0xfe, 0x4f, 0x41, 0x4b, 0xf2, 0x7a, 0x0f, 0xca, 0xb3, 0xfe, 0xcb, + 0x07, 0xfc, 0xfe, 0xc9, 0xf9, 0x51, 0xf6, 0x58, 0x3f, 0xe7, 0xf6, 0x4f, + 0xca, 0x9f, 0xf6, 0x8d, 0x3e, 0xc1, 0xf5, 0x39, 0x77, 0x34, 0x3e, 0x4f, + 0x41, 0x47, 0xc9, 0xe8, 0x2a, 0x87, 0xd9, 0x61, 0xff, 0x00, 0x9f, 0xd7, + 0xfc, 0xa8, 0xfb, 0x2a, 0x76, 0xbd, 0x6f, 0xca, 0x8f, 0xed, 0x1a, 0x7d, + 0x98, 0x7d, 0x4e, 0x7d, 0xcb, 0xf8, 0x4f, 0x41, 0x46, 0x17, 0xd0, 0x55, + 0x0f, 0xb2, 0x1e, 0xd7, 0xc2, 0x8f, 0xb2, 0x3f, 0x6b, 0xf5, 0xfc, 0xe9, + 0xff, 0x00, 0x68, 0xd2, 0xec, 0x2f, 0xa9, 0xcf, 0xb9, 0x7f, 0x0b, 0xe8, + 0x29, 0x70, 0xbe, 0x83, 0xf2, 0xac, 0xef, 0xb2, 0x4d, 0xda, 0xf9, 0x3f, + 0x3a, 0x3e, 0xcb, 0x77, 0xfc, 0x37, 0x88, 0x7f, 0x3a, 0x7f, 0xda, 0x14, + 0x85, 0xf5, 0x3a, 0x86, 0x8e, 0x17, 0xd0, 0x7e, 0x54, 0x6d, 0x5f, 0x41, + 0x59, 0xdf, 0x66, 0xd4, 0x07, 0x49, 0xe3, 0x3f, 0x8d, 0x27, 0x93, 0xa9, + 0x0f, 0xf9, 0x69, 0x19, 0xfc, 0x45, 0x3f, 0xaf, 0xd1, 0x17, 0xd5, 0x2a, + 0x1a, 0x5b, 0x57, 0xd0, 0x7e, 0x54, 0x6d, 0x5f, 0xee, 0x8f, 0xca, 0xb3, + 0x76, 0xea, 0x63, 0xf8, 0x54, 0xfd, 0x08, 0xa0, 0xbe, 0xa6, 0xbf, 0xf2, + 0xc3, 0x3f, 0x85, 0x52, 0xc6, 0xd1, 0x7d, 0x45, 0xf5, 0x5a, 0x9d, 0x8d, + 0x2d, 0xab, 0xfd, 0xd1, 0xf9, 0x51, 0xb5, 0x7f, 0xba, 0x3f, 0x2a, 0xcb, + 0xfb, 0x5d, 0xf2, 0xfd, 0xeb, 0x73, 0xf9, 0x51, 0xfd, 0xa5, 0x32, 0xfd, + 0xe8, 0x08, 0xaa, 0x58, 0xba, 0x2f, 0xa9, 0x2f, 0x0f, 0x53, 0xb1, 0xa9, + 0xb5, 0x7f, 0xba, 0x3f, 0x2a, 0x36, 0xaf, 0xf7, 0x47, 0xe5, 0x59, 0x63, + 0x56, 0xc7, 0xde, 0x88, 0x8a, 0x7a, 0xea, 0xf1, 0xf7, 0x56, 0x15, 0x6a, + 0xbd, 0x37, 0xb3, 0x25, 0xd1, 0x9a, 0xe8, 0x69, 0x6d, 0x5f, 0xee, 0x8f, + 0xca, 0x8d, 0xab, 0xfd, 0xd1, 0xf9, 0x55, 0x15, 0xd5, 0x2d, 0xcf, 0xf1, + 0x11, 0xf8, 0x54, 0xab, 0x7f, 0x03, 0x7f, 0xcb, 0x41, 0x5a, 0x29, 0xc5, + 0xf5, 0x25, 0xc2, 0x48, 0xb3, 0xb5, 0x7f, 0xba, 0x3f, 0x2a, 0x36, 0xaf, + 0xf7, 0x47, 0xe5, 0x4c, 0x59, 0xe3, 0x6f, 0xba, 0xea, 0x7f, 0x1a, 0x7e, + 0xe0, 0x69, 0xdd, 0x13, 0x66, 0x1b, 0x57, 0xfb, 0xa3, 0xf2, 0xa3, 0x6a, + 0xff, 0x00, 0x74, 0x7e, 0x54, 0xb9, 0xa5, 0xa6, 0x03, 0x76, 0x2f, 0xf7, + 0x47, 0xe5, 0x46, 0xd5, 0xfe, 0xe8, 0xfc, 0xa9, 0xd4, 0xb8, 0xa0, 0x06, + 0x6c, 0x5f, 0x41, 0xf9, 0x51, 0xb1, 0x7f, 0xba, 0x3f, 0x2a, 0x7e, 0x28, + 0xc5, 0x00, 0x33, 0x62, 0xff, 0x00, 0x74, 0x7e, 0x54, 0x6c, 0x5f, 0xee, + 0x8f, 0xca, 0x9f, 0x8a, 0x31, 0x40, 0x0c, 0xd8, 0xbf, 0xdd, 0x1f, 0x95, + 0x1b, 0x17, 0xfb, 0xa3, 0xf2, 0xa9, 0x31, 0x46, 0x28, 0x02, 0x3d, 0x8b, + 0xe8, 0x3f, 0x2a, 0x36, 0x2f, 0xf7, 0x47, 0xe5, 0x52, 0x62, 0x8c, 0x50, + 0x03, 0x36, 0x2f, 0xf7, 0x47, 0xe5, 0x46, 0xc5, 0xfe, 0xe8, 0xfc, 0xa9, + 0xf8, 0xa3, 0x14, 0x00, 0xcd, 0x8b, 0xfd, 0xd1, 0xf9, 0x51, 0xb1, 0x7f, + 0xba, 0x3f, 0x2a, 0x7e, 0x29, 0x71, 0x40, 0x11, 0xec, 0x5f, 0xee, 0x8f, + 0xca, 0x8d, 0x8b, 0xfd, 0xd1, 0xf9, 0x54, 0x98, 0xa3, 0x14, 0x01, 0x1e, + 0xc1, 0xfd, 0xd1, 0xf9, 0x51, 0xb1, 0x7f, 0xba, 0x3f, 0x2a, 0x93, 0x14, + 0x62, 0x80, 0x23, 0xd8, 0xbf, 0xdd, 0x1f, 0x95, 0x1b, 0x17, 0xfb, 0xa3, + 0xf2, 0xa9, 0x31, 0x46, 0xda, 0x00, 0x8f, 0x62, 0xff, 0x00, 0x74, 0x7e, + 0x54, 0x6c, 0x5f, 0xee, 0x8f, 0xca, 0xa4, 0xc5, 0x1b, 0x68, 0x02, 0x3d, + 0x8b, 0xfd, 0xd1, 0xf9, 0x51, 0xb1, 0x7f, 0xba, 0x3f, 0x2a, 0x93, 0x14, + 0x62, 0x81, 0x11, 0xec, 0x5f, 0xee, 0x8f, 0xca, 0x8d, 0x8b, 0xfd, 0xd1, + 0xf9, 0x54, 0x98, 0xa3, 0x6d, 0x00, 0x47, 0xb1, 0x7f, 0xba, 0x3f, 0x2a, + 0x36, 0x2f, 0xf7, 0x47, 0xe5, 0x52, 0x62, 0x8c, 0x50, 0x04, 0x7b, 0x17, + 0xfb, 0xa3, 0xf2, 0xa3, 0x62, 0xff, 0x00, 0x74, 0x7e, 0x55, 0x26, 0x28, + 0xc5, 0x00, 0x47, 0xb1, 0x7f, 0xba, 0x3f, 0x2a, 0x36, 0x2f, 0xf7, 0x47, + 0xe5, 0x52, 0x62, 0x8c, 0x50, 0x04, 0x7b, 0x17, 0xfb, 0xa3, 0xf2, 0xa3, + 0x62, 0xff, 0x00, 0x74, 0x7e, 0x55, 0x26, 0x28, 0xc5, 0x00, 0x47, 0xb1, + 0x7f, 0xba, 0x3f, 0x2a, 0x36, 0x2f, 0xf7, 0x47, 0xe5, 0x4f, 0xc5, 0x18, + 0xa0, 0x06, 0x6c, 0x5f, 0xee, 0x8f, 0xca, 0x8d, 0x8b, 0xfd, 0xd1, 0xf9, + 0x53, 0xf1, 0x46, 0x28, 0x01, 0x9b, 0x17, 0xfb, 0xa3, 0xf2, 0xa4, 0xd8, + 0xbf, 0xdd, 0x1f, 0x95, 0x49, 0x8a, 0x31, 0x40, 0x11, 0xec, 0x5f, 0xee, + 0x8f, 0xca, 0x8d, 0x8b, 0xfd, 0xd1, 0xf9, 0x54, 0x98, 0xa3, 0x14, 0x01, + 0x1e, 0xc5, 0xfe, 0xe8, 0xfc, 0xa8, 0xd8, 0xbf, 0xdd, 0x1f, 0x95, 0x3f, + 0x14, 0x62, 0x81, 0x8c, 0xd8, 0xbf, 0xdd, 0x1f, 0x95, 0x1b, 0x17, 0xfb, + 0xa3, 0xf2, 0xa7, 0xe2, 0x8a, 0x00, 0x66, 0xc5, 0xfe, 0xe8, 0xfc, 0xa8, + 0xd8, 0xbf, 0xdd, 0x1f, 0x95, 0x3f, 0x14, 0x94, 0xc0, 0x6e, 0xc5, 0xfe, + 0xe8, 0xfc, 0xa8, 0xd8, 0xbe, 0x83, 0xf2, 0xa7, 0x51, 0x40, 0x0d, 0xda, + 0xbe, 0x83, 0xf2, 0xa3, 0x6a, 0xff, 0x00, 0x74, 0x7e, 0x54, 0xea, 0x4a, + 0x00, 0x4d, 0xab, 0xfd, 0xd1, 0xf9, 0x51, 0xb5, 0x7f, 0xba, 0x3f, 0x2a, + 0x5c, 0x51, 0x40, 0x0d, 0xda, 0xbf, 0xdd, 0x1f, 0x95, 0x1b, 0x57, 0xfb, + 0xa3, 0xf2, 0xa7, 0x51, 0x40, 0x86, 0xed, 0x5f, 0xee, 0x8f, 0xca, 0x8d, + 0xab, 0xfd, 0xd1, 0xf9, 0x53, 0xa8, 0xa0, 0x06, 0xed, 0x5f, 0xee, 0x8f, + 0xca, 0x8d, 0xab, 0xfd, 0xd1, 0xf9, 0x52, 0xd1, 0x40, 0x09, 0xb5, 0x7f, + 0xba, 0x3f, 0x2a, 0x36, 0xaf, 0xf7, 0x47, 0xe5, 0x4b, 0x45, 0x00, 0x26, + 0xd5, 0xfe, 0xe8, 0xfc, 0xa8, 0xda, 0xbf, 0xdd, 0x1f, 0x95, 0x2d, 0x25, + 0x00, 0x1b, 0x57, 0xfb, 0xa3, 0xf2, 0xa3, 0x6a, 0xff, 0x00, 0x74, 0x7e, + 0x54, 0x51, 0x40, 0x06, 0xd5, 0xfe, 0xe8, 0xfc, 0xa8, 0xda, 0xbf, 0xdd, + 0x1f, 0x95, 0x14, 0x50, 0x01, 0xb5, 0x7f, 0xba, 0x3f, 0x2a, 0x36, 0xaf, + 0xf7, 0x47, 0xe5, 0x45, 0x14, 0x00, 0x6d, 0x5f, 0xee, 0x8f, 0xca, 0x8d, + 0xab, 0xfd, 0xd1, 0xf9, 0x52, 0x51, 0x40, 0x06, 0xd5, 0xfe, 0xe8, 0xfc, + 0xa8, 0xc2, 0xff, 0x00, 0x74, 0x7e, 0x54, 0x66, 0x8c, 0xd0, 0x01, 0xb5, + 0x7d, 0x07, 0xe5, 0x4b, 0x85, 0xf4, 0x1f, 0x95, 0x26, 0x68, 0xcd, 0x00, + 0x18, 0x5f, 0xee, 0x8f, 0xca, 0x8c, 0x2f, 0xf7, 0x47, 0xe5, 0x45, 0x19, + 0xa0, 0x03, 0x0b, 0xe8, 0x3f, 0x2a, 0x30, 0xbf, 0xdd, 0x1f, 0x95, 0x14, + 0x99, 0xa0, 0x05, 0xc2, 0xff, 0x00, 0x74, 0x7e, 0x54, 0x61, 0x7d, 0x07, + 0xe5, 0x49, 0x9a, 0x37, 0x0a, 0x06, 0x2e, 0x17, 0xd0, 0x7e, 0x54, 0x61, + 0x7d, 0x07, 0xe5, 0x4d, 0xde, 0x29, 0xa6, 0x55, 0x1d, 0xe9, 0x68, 0x16, + 0x64, 0x98, 0x5f, 0x41, 0xf9, 0x51, 0x85, 0xf4, 0x1f, 0x95, 0x40, 0x6e, + 0x50, 0x75, 0x61, 0x51, 0xb5, 0xfc, 0x2b, 0xd5, 0xc5, 0x27, 0x28, 0xa1, + 0xf2, 0xb6, 0x5b, 0xc2, 0xfa, 0x0f, 0xca, 0x8c, 0x2f, 0xa0, 0xfc, 0xaa, + 0x81, 0xd4, 0xe2, 0xec, 0x73, 0xf4, 0x14, 0xc3, 0xa9, 0xa9, 0xe8, 0xac, + 0x7f, 0x0a, 0x87, 0x5a, 0x9a, 0xdd, 0x94, 0xa9, 0xc9, 0xec, 0x8d, 0x2c, + 0x2f, 0xf7, 0x47, 0xe5, 0x46, 0x17, 0xd0, 0x7e, 0x55, 0x99, 0xfd, 0xa2, + 0xdd, 0xa2, 0x6a, 0x4f, 0xb6, 0xdc, 0x37, 0xdd, 0x84, 0xd6, 0x6f, 0x15, + 0x45, 0x7d, 0xa2, 0xd6, 0x1e, 0xa3, 0xe8, 0x6a, 0x61, 0x7d, 0x07, 0xe5, + 0x46, 0x17, 0xd0, 0x7e, 0x55, 0x98, 0x26, 0xbe, 0x7f, 0xbb, 0x6e, 0x7f, + 0x5a, 0x78, 0x5d, 0x49, 0xba, 0x42, 0x47, 0xe1, 0x50, 0xf1, 0xb4, 0x57, + 0x52, 0x96, 0x16, 0xaf, 0x63, 0x43, 0x0b, 0xe8, 0x28, 0xc2, 0xfa, 0x0a, + 0xa0, 0x2d, 0xf5, 0x46, 0xfe, 0x10, 0x3e, 0xb4, 0xef, 0xb1, 0x6a, 0x7d, + 0xd9, 0x05, 0x2f, 0xaf, 0xd1, 0xee, 0x3f, 0xaa, 0x54, 0xec, 0x5d, 0xf9, + 0x7d, 0x07, 0xe5, 0x47, 0xcb, 0xe8, 0x3f, 0x2a, 0xa5, 0xf6, 0x1b, 0xfe, + 0xf3, 0xc6, 0x3f, 0xe0, 0x54, 0x9f, 0x61, 0xba, 0xef, 0x7b, 0x18, 0xff, + 0x00, 0x81, 0x54, 0xff, 0x00, 0x68, 0x52, 0x1f, 0xd4, 0xea, 0x17, 0xbe, + 0x5f, 0x41, 0x49, 0xf2, 0x7a, 0x0a, 0xa5, 0xf6, 0x19, 0xbb, 0xdf, 0xa7, + 0xe7, 0x47, 0xd8, 0x5f, 0xbd, 0xf8, 0xa5, 0xfd, 0xa3, 0x4b, 0xb3, 0x1f, + 0xd4, 0xe7, 0xdc, 0xbd, 0xf2, 0x7a, 0x0a, 0x4f, 0x93, 0xd0, 0x55, 0x2f, + 0xb1, 0x7a, 0xdf, 0xd2, 0x7d, 0x89, 0x3b, 0xdf, 0xb7, 0xe5, 0x4b, 0xfb, + 0x46, 0x9f, 0x66, 0x3f, 0xa9, 0x4f, 0xb9, 0x7b, 0xe4, 0xf4, 0x14, 0x65, + 0x3d, 0x05, 0x51, 0xfb, 0x1c, 0x5d, 0xef, 0x9f, 0xf2, 0xa4, 0xfb, 0x1c, + 0x3f, 0xf3, 0xfa, 0xff, 0x00, 0x95, 0x1f, 0xda, 0x34, 0xfb, 0x30, 0xfa, + 0x94, 0xfb, 0x97, 0xf2, 0x9e, 0x8b, 0x41, 0xd9, 0x83, 0xc0, 0xaa, 0x1f, + 0x63, 0x83, 0xfe, 0x7f, 0x5f, 0xf2, 0x34, 0x1b, 0x38, 0x3f, 0xe7, 0xf2, + 0x4f, 0xc8, 0xd2, 0xfe, 0xd1, 0xa7, 0xd9, 0x87, 0xd4, 0xa5, 0xdc, 0xf4, + 0xe1, 0xe1, 0x0d, 0x2f, 0x68, 0xf9, 0x47, 0xe7, 0x47, 0xfc, 0x21, 0xfa, + 0x5f, 0xf7, 0x47, 0xe7, 0x5a, 0x43, 0x47, 0xb5, 0xda, 0x39, 0x93, 0xa7, + 0xf7, 0xcd, 0x2f, 0xf6, 0x35, 0xb7, 0xac, 0xbf, 0xf7, 0xd9, 0xaf, 0x97, + 0xf6, 0xaf, 0xf9, 0x8f, 0xa3, 0xf6, 0x4b, 0xf9, 0x51, 0x97, 0xff, 0x00, + 0x08, 0x66, 0x98, 0x7f, 0x84, 0x7e, 0x74, 0xd3, 0xe0, 0x9d, 0x30, 0xf6, + 0xfd, 0x6b, 0x5b, 0xfb, 0x1a, 0xdf, 0xfb, 0xf2, 0xff, 0x00, 0xdf, 0x66, + 0x8f, 0xec, 0x78, 0x87, 0x49, 0x66, 0x1f, 0xf0, 0x33, 0x47, 0xb5, 0x7f, + 0xcc, 0x1e, 0xc9, 0x7f, 0x29, 0x8c, 0x7c, 0x0b, 0xa7, 0x1f, 0x51, 0xf8, + 0xd3, 0x0f, 0x80, 0xec, 0x3b, 0x33, 0x7e, 0x75, 0xb6, 0x74, 0x95, 0x3d, + 0x2e, 0xa7, 0x5f, 0xa3, 0xd4, 0x4f, 0xa4, 0x64, 0xe7, 0xfb, 0x42, 0xe0, + 0x7d, 0x5e, 0x85, 0x5a, 0x5f, 0xcc, 0x27, 0x4a, 0x3f, 0xca, 0x60, 0xcb, + 0xe0, 0x4b, 0x50, 0x3e, 0x5d, 0xec, 0x7e, 0xb5, 0x4a, 0x5f, 0x03, 0x8c, + 0x1d, 0x91, 0x49, 0x9f, 0xf7, 0x85, 0x75, 0x3f, 0xd9, 0x33, 0x03, 0x95, + 0xd5, 0x25, 0x1f, 0x88, 0xa6, 0x4b, 0x69, 0x79, 0x6e, 0xbb, 0x8e, 0xac, + 0xd8, 0xff, 0x00, 0x68, 0x0a, 0xa5, 0x5a, 0x7d, 0xc9, 0x74, 0x61, 0x6d, + 0x63, 0xf8, 0x9c, 0x1d, 0xd7, 0x83, 0xf5, 0x28, 0xdb, 0xf7, 0x56, 0xcc, + 0x47, 0xa9, 0x71, 0x54, 0x64, 0xf0, 0xde, 0xad, 0x18, 0x27, 0xec, 0xcc, + 0x71, 0xe8, 0x73, 0x5d, 0x46, 0xa5, 0xe2, 0xb9, 0x34, 0xf6, 0x31, 0xad, + 0xea, 0x4e, 0xe3, 0xf8, 0x42, 0x56, 0x5f, 0xfc, 0x26, 0xd7, 0x4e, 0x72, + 0xca, 0x8b, 0xf8, 0x56, 0xe9, 0xd5, 0xdd, 0xd8, 0xe6, 0x6a, 0x8e, 0xc9, + 0xb3, 0x9f, 0x36, 0x57, 0x51, 0xbe, 0xd9, 0x11, 0xd0, 0xfb, 0xd4, 0xc7, + 0x4d, 0xbe, 0x55, 0xdd, 0xb5, 0xb0, 0x7a, 0x11, 0x5b, 0x6d, 0xe2, 0x4b, + 0x6b, 0xb1, 0x8b, 0x94, 0x4c, 0xf7, 0x21, 0x6a, 0x6b, 0x5d, 0x66, 0xca, + 0x1e, 0x12, 0xe0, 0x15, 0xfe, 0xeb, 0x0a, 0xdf, 0xa1, 0x92, 0xe5, 0x7a, + 0x33, 0x9a, 0x68, 0x2f, 0x53, 0xa8, 0x7a, 0x66, 0xeb, 0xb5, 0xec, 0xdf, + 0x95, 0x76, 0x12, 0x6a, 0x36, 0x37, 0x0a, 0x46, 0x23, 0xc9, 0xee, 0x08, + 0xcd, 0x64, 0x3a, 0xc8, 0x19, 0xb6, 0xba, 0xb2, 0x67, 0x2b, 0x93, 0xcd, + 0x55, 0x88, 0x6e, 0xcc, 0xc8, 0x17, 0xb7, 0x4b, 0xc1, 0xcf, 0xf2, 0xa7, + 0x0d, 0x46, 0x6e, 0xea, 0x1b, 0xf5, 0xab, 0xce, 0xd2, 0x83, 0xcc, 0x21, + 0x87, 0xb0, 0x15, 0x19, 0x92, 0x13, 0xfe, 0xb2, 0xdf, 0x1f, 0x85, 0x16, + 0x17, 0x39, 0x07, 0xf6, 0x82, 0x1f, 0xf5, 0x96, 0xea, 0x47, 0xba, 0x0a, + 0x3e, 0xd3, 0x61, 0x27, 0x0f, 0x6b, 0x1e, 0x3d, 0xb2, 0x0d, 0x4c, 0x22, + 0xb2, 0x7f, 0xe1, 0x2b, 0x9f, 0x4a, 0x0e, 0x9d, 0x0c, 0xa7, 0x11, 0xcd, + 0xcf, 0xa1, 0xe6, 0x8b, 0x0d, 0x48, 0x87, 0xc8, 0xd2, 0xa6, 0xfe, 0x09, + 0x23, 0xff, 0x00, 0x75, 0x81, 0xa6, 0xb6, 0x91, 0x62, 0xfc, 0xc7, 0x76, + 0x53, 0xd9, 0xd7, 0xfc, 0x29, 0xd2, 0x69, 0x12, 0xaf, 0x2a, 0x15, 0x87, + 0xb7, 0x15, 0x5d, 0xad, 0xa7, 0x8b, 0xb4, 0x8b, 0xf8, 0x64, 0x7e, 0x94, + 0xd3, 0x92, 0xd8, 0x1d, 0x9e, 0xe0, 0x7c, 0x3d, 0x74, 0x79, 0xb7, 0x9e, + 0x39, 0x7d, 0x95, 0xc1, 0x35, 0x5a, 0x5b, 0x5d, 0x4e, 0xd0, 0xfc, 0xcb, + 0x20, 0xc5, 0x4e, 0x25, 0x9d, 0x0f, 0x66, 0xfa, 0x75, 0xab, 0x31, 0x6b, + 0x13, 0xc7, 0x85, 0x32, 0xb8, 0x03, 0xf8, 0x5f, 0xe6, 0x1f, 0x91, 0xad, + 0x15, 0x7a, 0x91, 0xea, 0x4b, 0xa7, 0x07, 0xd0, 0xcd, 0x4d, 0x4e, 0xea, + 0x2e, 0x1f, 0x9f, 0xa8, 0xab, 0x31, 0x6b, 0x6b, 0xc0, 0x91, 0x31, 0xee, + 0x2b, 0x4f, 0xed, 0x96, 0x77, 0x43, 0x17, 0x56, 0x71, 0xb7, 0xfb, 0x71, + 0x70, 0x7f, 0x2a, 0x8a, 0x4d, 0x06, 0xc2, 0xf4, 0x66, 0xca, 0xe8, 0x07, + 0x3f, 0xf2, 0xce, 0x4e, 0x0d, 0x6f, 0x0c, 0x6c, 0xd6, 0xe6, 0x52, 0xc3, + 0x45, 0xec, 0x3a, 0x1b, 0xe8, 0x26, 0xfb, 0xb2, 0x0c, 0xfa, 0x1a, 0xb2, + 0x0e, 0x7a, 0x73, 0x5c, 0xdd, 0xe6, 0x8f, 0x77, 0x62, 0xc7, 0x7a, 0x30, + 0xc7, 0x7e, 0xd5, 0x1c, 0x1a, 0x9d, 0xcd, 0xa3, 0x05, 0x63, 0x95, 0xf4, + 0x35, 0xdb, 0x4f, 0x19, 0x19, 0x6e, 0x73, 0x4f, 0x0c, 0xd6, 0xc7, 0x53, + 0x4b, 0x8a, 0xa3, 0x67, 0xa9, 0xc1, 0x74, 0x00, 0xce, 0xd7, 0xf4, 0x35, + 0xa0, 0x05, 0x75, 0xc6, 0x6a, 0x4a, 0xe8, 0xe6, 0x94, 0x5a, 0xdc, 0x4c, + 0x51, 0x8a, 0x70, 0x14, 0xb8, 0xaa, 0xb9, 0x23, 0x31, 0x4b, 0x8a, 0x7e, + 0x28, 0xc5, 0x17, 0x01, 0x98, 0xa3, 0x14, 0xfc, 0x52, 0xe2, 0x8b, 0x80, + 0xcc, 0x51, 0x8a, 0x7e, 0xda, 0x31, 0x45, 0xc0, 0x66, 0x28, 0xc5, 0x3f, + 0x6d, 0x2e, 0x29, 0x5c, 0x64, 0x78, 0xa3, 0x15, 0x26, 0x28, 0xdb, 0x4e, + 0xe0, 0x47, 0x8a, 0x5c, 0x53, 0xf6, 0xd1, 0xb6, 0x8b, 0x88, 0x66, 0x28, + 0xdb, 0x52, 0x6d, 0xa3, 0x14, 0x5c, 0x64, 0x78, 0xa3, 0x6d, 0x49, 0xb6, + 0x8c, 0x51, 0x71, 0x11, 0xed, 0xa3, 0x6d, 0x49, 0xb6, 0x8d, 0xb4, 0x5c, + 0x08, 0xf6, 0xd1, 0xb6, 0xa4, 0xdb, 0x46, 0xda, 0x2e, 0x04, 0x78, 0xa3, + 0x15, 0x26, 0x28, 0xdb, 0x40, 0x11, 0x62, 0x97, 0x14, 0xfc, 0x51, 0xb6, + 0x80, 0x23, 0xc5, 0x18, 0xa9, 0x36, 0xd1, 0x8a, 0x00, 0x8f, 0x14, 0x62, + 0xa4, 0xc5, 0x18, 0xa0, 0x08, 0xf1, 0x46, 0x29, 0xf8, 0xa3, 0x14, 0x05, + 0x88, 0xf1, 0x46, 0x2a, 0x4c, 0x52, 0x6d, 0xa0, 0x06, 0x62, 0x8c, 0x53, + 0xf1, 0x46, 0x29, 0x81, 0x1e, 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x81, 0x0c, + 0xc5, 0x26, 0x2a, 0x4c, 0x52, 0x62, 0x80, 0x19, 0x8a, 0x31, 0x4f, 0xc5, + 0x26, 0x28, 0x01, 0x98, 0xa3, 0x14, 0xfc, 0x52, 0x62, 0x80, 0x1b, 0x8a, + 0x4c, 0x53, 0xf1, 0x49, 0x8a, 0x06, 0x37, 0x14, 0x62, 0x9d, 0x8a, 0x4c, + 0x50, 0x21, 0xb4, 0x53, 0xb1, 0x45, 0x30, 0x1b, 0x45, 0x2d, 0x25, 0x00, + 0x25, 0x14, 0xb8, 0xa2, 0x80, 0x12, 0x92, 0x96, 0x8a, 0x00, 0x4a, 0x4a, + 0x5a, 0x28, 0x01, 0x28, 0xa2, 0x8a, 0x00, 0x28, 0xa4, 0xa2, 0x80, 0x0a, + 0x28, 0xa4, 0xa0, 0x05, 0xa2, 0x92, 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, + 0x28, 0xa4, 0xa2, 0x80, 0x16, 0x8a, 0x4a, 0x28, 0x00, 0xa3, 0x34, 0x84, + 0xe2, 0xa2, 0x69, 0x29, 0x36, 0x34, 0xae, 0x4a, 0x5c, 0x0a, 0x8d, 0xa5, + 0xc5, 0x67, 0xcf, 0xa8, 0x22, 0x12, 0xa9, 0xf3, 0xb7, 0xb5, 0x55, 0x2f, + 0x71, 0x70, 0x7e, 0x66, 0x20, 0x7a, 0x0a, 0xe5, 0xab, 0x8b, 0x85, 0x3d, + 0xd9, 0xbd, 0x3a, 0x12, 0x9e, 0xc6, 0x94, 0xb7, 0xb1, 0x47, 0xf7, 0x9c, + 0x67, 0xd2, 0xab, 0x36, 0xa2, 0x4f, 0xfa, 0xb8, 0xc9, 0xf7, 0x3c, 0x53, + 0xad, 0x74, 0x79, 0xa6, 0xe4, 0x21, 0xc7, 0xa9, 0xab, 0xc2, 0xc2, 0xca, + 0xd4, 0x7f, 0xa4, 0x4f, 0xb9, 0x87, 0xf0, 0xa7, 0x35, 0xc1, 0x3c, 0xc2, + 0x6f, 0xe0, 0x47, 0x64, 0x70, 0x69, 0x7c, 0x4c, 0xca, 0x37, 0x17, 0x32, + 0x1e, 0x08, 0x5f, 0xa7, 0x34, 0xf4, 0xb4, 0xbc, 0x9f, 0xfe, 0x7a, 0x1f, + 0xd2, 0xb4, 0x8d, 0xf5, 0xbc, 0x3c, 0x41, 0x6c, 0xa3, 0xdd, 0xf9, 0xa8, + 0xdb, 0x50, 0xb9, 0x97, 0x85, 0x62, 0x07, 0xa2, 0x0c, 0x57, 0x2c, 0xb1, + 0x35, 0x65, 0xbc, 0x8d, 0x55, 0x1a, 0x6b, 0x64, 0x42, 0xba, 0x1c, 0xc4, + 0x66, 0x52, 0xaa, 0x3f, 0xda, 0x6a, 0x91, 0x74, 0xcb, 0x48, 0xff, 0x00, + 0xd6, 0x5c, 0xae, 0x7f, 0xd9, 0x19, 0xa6, 0xaa, 0x4d, 0x2b, 0x72, 0x72, + 0x4f, 0xbe, 0x4d, 0x59, 0x4b, 0x06, 0xea, 0xe8, 0xff, 0x00, 0x95, 0x62, + 0xe6, 0xde, 0xec, 0xd5, 0x45, 0x74, 0x44, 0x62, 0x2d, 0x35, 0x3b, 0x48, + 0xe6, 0x9e, 0x25, 0xb3, 0x5f, 0xb9, 0x66, 0x0f, 0xd4, 0xd6, 0x95, 0x96, + 0x8a, 0xd7, 0x0c, 0x00, 0xb7, 0x90, 0x8f, 0x50, 0xb9, 0xae, 0xa6, 0xcb, + 0xc2, 0x10, 0x15, 0x0d, 0x22, 0x30, 0xf6, 0x61, 0x8a, 0xca, 0x55, 0x62, + 0xb7, 0x66, 0xd1, 0xa3, 0x39, 0x6c, 0x70, 0xcb, 0x76, 0x7f, 0xe5, 0x9d, + 0xa4, 0x63, 0xfe, 0x03, 0x52, 0x09, 0xef, 0x5b, 0xee, 0x44, 0x17, 0xe8, + 0x95, 0xe9, 0x90, 0xf8, 0x6e, 0xc2, 0x20, 0x3f, 0x74, 0xa7, 0xeb, 0xcd, + 0x5a, 0x5d, 0x3e, 0xc2, 0x01, 0xf7, 0x11, 0x40, 0xf5, 0xc5, 0x66, 0xf1, + 0x31, 0xe8, 0x69, 0xf5, 0x69, 0x75, 0x67, 0x96, 0xac, 0x1a, 0xac, 0xc3, + 0x85, 0x7f, 0xc0, 0x54, 0xc9, 0xa3, 0x6b, 0x12, 0xf6, 0x93, 0xf1, 0x26, + 0xbd, 0x29, 0xaf, 0x34, 0xbb, 0x7e, 0xb2, 0xc2, 0x08, 0xec, 0x0e, 0x6a, + 0x06, 0xd7, 0xf4, 0xd5, 0x38, 0x4d, 0xce, 0x7f, 0xd9, 0x8c, 0xd2, 0xf6, + 0xf2, 0x7b, 0x44, 0x7e, 0xc2, 0x0b, 0x79, 0x1c, 0x1a, 0xf8, 0x5f, 0x55, + 0x93, 0xef, 0x6e, 0x1f, 0x53, 0x56, 0x13, 0xc1, 0x57, 0xed, 0xd5, 0xeb, + 0xb4, 0x1a, 0xe8, 0x6e, 0x22, 0xb1, 0xb8, 0x6f, 0xf8, 0x0e, 0x29, 0xe3, + 0x51, 0xbe, 0x7f, 0xb9, 0xa7, 0x37, 0xfc, 0x09, 0xb1, 0x49, 0xd6, 0xa9, + 0xd8, 0x6a, 0x8d, 0x33, 0x8f, 0x4f, 0x02, 0x5c, 0x9f, 0xbf, 0x26, 0x2a, + 0x75, 0xf0, 0x0b, 0x1e, 0xb3, 0x57, 0x54, 0x27, 0xd5, 0x9c, 0xf1, 0x6b, + 0x12, 0xfd, 0x5e, 0x9f, 0xff, 0x00, 0x13, 0x53, 0xff, 0x00, 0x3c, 0x17, + 0xf3, 0x35, 0x0e, 0xb4, 0xfc, 0x8b, 0x54, 0x29, 0xf6, 0x67, 0x30, 0xbe, + 0x01, 0x41, 0xf7, 0xa6, 0xcd, 0x4c, 0xbe, 0x04, 0xb6, 0xee, 0xe6, 0xba, + 0x1f, 0x2b, 0x53, 0x6e, 0xb7, 0x31, 0x2f, 0xd1, 0x29, 0x86, 0xca, 0xfd, + 0xbe, 0xf6, 0xa2, 0xc3, 0xfd, 0xd4, 0x02, 0x97, 0xb6, 0x97, 0x72, 0xbd, + 0x8c, 0x3f, 0x94, 0xc5, 0x1e, 0x04, 0xb3, 0xee, 0xe6, 0x9e, 0x3c, 0x0d, + 0x60, 0x3a, 0xb1, 0xad, 0x71, 0xa5, 0xce, 0x7e, 0xfe, 0xa1, 0x39, 0xfa, + 0x71, 0x4b, 0xfd, 0x93, 0xeb, 0x79, 0x70, 0x7f, 0xe0, 0x74, 0xbd, 0xb4, + 0xbf, 0x98, 0x3d, 0x8c, 0x7f, 0x94, 0xca, 0x1e, 0x09, 0xd3, 0xc7, 0xa9, + 0xfc, 0x69, 0xc3, 0xc1, 0x9a, 0x68, 0xed, 0xfa, 0xd6, 0x9f, 0xf6, 0x44, + 0x7d, 0xee, 0x2e, 0x0f, 0xfd, 0xb4, 0x34, 0xbf, 0xd8, 0xd6, 0xfd, 0xe4, + 0x98, 0xff, 0x00, 0xc0, 0xcd, 0x1e, 0xd5, 0xff, 0x00, 0x30, 0xfd, 0x92, + 0xfe, 0x53, 0x33, 0xfe, 0x10, 0xed, 0x30, 0x76, 0x1f, 0x9d, 0x0d, 0xe1, + 0x0d, 0x2f, 0x69, 0xf9, 0x47, 0x4f, 0x5a, 0xd3, 0xfe, 0xc7, 0xb5, 0xfe, + 0xf4, 0x9f, 0xf7, 0xd9, 0xa1, 0xb4, 0x8b, 0x5d, 0xa7, 0x99, 0x3a, 0x7f, + 0x7c, 0xd1, 0xed, 0x5f, 0xf3, 0x07, 0xb2, 0x5f, 0xca, 0x8d, 0x01, 0xd0, + 0x52, 0xd5, 0x75, 0xb9, 0x83, 0x68, 0xcc, 0xd1, 0xf4, 0xfe, 0xf0, 0xa7, + 0x7d, 0xaa, 0x0f, 0xf9, 0xec, 0x9f, 0xf7, 0xd0, 0xac, 0x2c, 0xcd, 0xee, + 0xbb, 0x93, 0x51, 0xf8, 0x54, 0x42, 0xe2, 0x23, 0xd2, 0x54, 0x3f, 0x8d, + 0x3b, 0xcc, 0x43, 0xfc, 0x43, 0xf3, 0xa4, 0x1a, 0x0f, 0xc0, 0x3d, 0xa9, + 0xa6, 0x24, 0x3d, 0x54, 0x50, 0x18, 0x7a, 0xd3, 0xb7, 0x0a, 0x00, 0x88, + 0xda, 0x40, 0xdd, 0x63, 0x15, 0x56, 0x6d, 0x16, 0xc2, 0x7f, 0xf5, 0x90, + 0x03, 0x5a, 0x19, 0x14, 0x64, 0x53, 0xbb, 0x0b, 0x23, 0x9e, 0x97, 0xc1, + 0x9a, 0x2c, 0xb9, 0xcd, 0xa8, 0x04, 0xfa, 0x1c, 0x56, 0x6d, 0xd7, 0xc3, + 0xeb, 0x16, 0x04, 0xdb, 0xe5, 0x0f, 0x6f, 0x9a, 0xbb, 0x12, 0x69, 0x43, + 0x0a, 0xa8, 0xd4, 0x92, 0xea, 0x44, 0xa9, 0x41, 0xad, 0x51, 0xe5, 0xd7, + 0x7e, 0x10, 0x96, 0xc7, 0x05, 0x8a, 0xba, 0x13, 0x8c, 0xfa, 0x56, 0x3e, + 0xa5, 0xa0, 0x4b, 0x6e, 0x86, 0x54, 0x03, 0xe5, 0x19, 0xc2, 0x9c, 0xd7, + 0xae, 0xdf, 0xdb, 0x25, 0xc4, 0x0c, 0xac, 0xb9, 0x04, 0x57, 0x2b, 0x25, + 0xa7, 0x99, 0x1b, 0xc6, 0xc3, 0x2c, 0x87, 0x69, 0xcf, 0x71, 0x5d, 0xf4, + 0x2a, 0xf3, 0x6e, 0x70, 0x62, 0x28, 0xdb, 0x44, 0x79, 0xfe, 0x9e, 0x37, + 0xb6, 0x48, 0xe9, 0xd4, 0x1a, 0xe8, 0xce, 0x88, 0x9e, 0x4a, 0xcc, 0x8c, + 0x70, 0xc3, 0x20, 0x8e, 0x05, 0x62, 0x5f, 0xc0, 0xda, 0x56, 0xa9, 0x91, + 0xfe, 0xad, 0xce, 0x45, 0x77, 0x1e, 0x1c, 0xbb, 0x4b, 0x9b, 0x33, 0x11, + 0xc1, 0x2b, 0xc8, 0xae, 0x99, 0xae, 0x5d, 0x56, 0xc7, 0x35, 0x37, 0xcc, + 0xac, 0xf7, 0x47, 0x3c, 0x74, 0xc9, 0xd7, 0x94, 0x97, 0x3f, 0x53, 0xc7, + 0xeb, 0x4c, 0x64, 0xbd, 0x88, 0x7c, 0xc8, 0xae, 0x3d, 0x59, 0x71, 0x5d, + 0x1e, 0xb1, 0x1b, 0xc3, 0x6b, 0x2c, 0xd0, 0x84, 0x0e, 0xa3, 0x3f, 0x76, + 0xb0, 0x17, 0x54, 0x61, 0xa7, 0x9b, 0x81, 0x96, 0x65, 0x3f, 0x30, 0xa1, + 0x6a, 0x29, 0x35, 0x16, 0xca, 0xed, 0x70, 0xc0, 0x7e, 0xf6, 0xcc, 0x11, + 0xea, 0xa3, 0x35, 0x00, 0x96, 0x0f, 0x33, 0x20, 0x14, 0x3e, 0x99, 0xc1, + 0xfd, 0x6a, 0xcc, 0x5a, 0xfd, 0x94, 0xdc, 0x4a, 0x80, 0x1f, 0xa5, 0x5a, + 0x09, 0x61, 0x78, 0x31, 0x1c, 0x8b, 0xcf, 0x63, 0xcd, 0x3b, 0x0a, 0xe9, + 0xec, 0x53, 0x32, 0xe7, 0x25, 0x25, 0xda, 0x7a, 0x8c, 0xf1, 0x4a, 0x2e, + 0x66, 0x1f, 0x7d, 0x43, 0x8f, 0x5a, 0x92, 0x4d, 0x1b, 0x6e, 0x4c, 0x44, + 0x8f, 0xf7, 0x0f, 0x5f, 0xc2, 0xa9, 0x3d, 0xb5, 0xc4, 0x04, 0x80, 0x37, + 0x7a, 0xe3, 0xe5, 0x6f, 0xcb, 0xa5, 0x01, 0x6b, 0x6c, 0x5c, 0xcd, 0xbd, + 0xd7, 0xc8, 0xe8, 0x03, 0x1e, 0x06, 0xe1, 0xfd, 0x6a, 0xad, 0xc6, 0x94, + 0xf8, 0xf9, 0x30, 0x47, 0xa3, 0x73, 0xfa, 0xf5, 0xa1, 0x6e, 0xe3, 0x57, + 0x5f, 0x32, 0x33, 0xbc, 0x76, 0x3f, 0x29, 0xff, 0x00, 0xeb, 0xd6, 0xe3, + 0x5e, 0x5a, 0xdd, 0x35, 0xb4, 0xc8, 0x3f, 0x7b, 0x1f, 0xca, 0xea, 0xdc, + 0x12, 0x2a, 0x5b, 0x68, 0xa8, 0xeb, 0xa3, 0x39, 0x09, 0x2d, 0x25, 0x87, + 0x92, 0x0a, 0x7b, 0xf5, 0x14, 0xdf, 0x36, 0x48, 0xf1, 0xe6, 0x2f, 0x1d, + 0x88, 0xaf, 0x5e, 0x8b, 0xc3, 0xda, 0x3e, 0xa7, 0x68, 0x93, 0x1b, 0x61, + 0x97, 0x5e, 0x70, 0x4f, 0x06, 0xb3, 0xf5, 0x3f, 0x05, 0xda, 0x3c, 0x24, + 0x43, 0x18, 0x40, 0x3a, 0x32, 0x7f, 0x51, 0x58, 0x46, 0xbc, 0x64, 0xec, + 0xf4, 0x3a, 0x25, 0x87, 0x94, 0x55, 0xd1, 0xc2, 0x5a, 0x6b, 0x13, 0x46, + 0xa1, 0x1f, 0x17, 0x10, 0x77, 0x49, 0x39, 0xc7, 0xd0, 0xd5, 0x89, 0x74, + 0x5b, 0x0d, 0x66, 0x26, 0x93, 0x4f, 0x6d, 0x93, 0x01, 0x96, 0x81, 0xfa, + 0xfe, 0x1e, 0xb5, 0x5b, 0x53, 0xd0, 0x6e, 0xf4, 0xc9, 0x0b, 0x04, 0x25, + 0x3f, 0xbc, 0x3a, 0x55, 0x28, 0x27, 0x74, 0x91, 0x5e, 0x36, 0x31, 0xca, + 0xa7, 0x20, 0x83, 0x5b, 0x5d, 0xa3, 0x1b, 0x77, 0x32, 0xee, 0xac, 0x2e, + 0x34, 0xf9, 0x4a, 0xb2, 0x15, 0x20, 0xd6, 0xa6, 0x95, 0xab, 0xe4, 0x88, + 0x67, 0x6f, 0x60, 0xd5, 0xd3, 0x41, 0x35, 0xaf, 0x89, 0x2d, 0xfe, 0xcd, + 0x74, 0x12, 0x3b, 0xe0, 0x3e, 0x57, 0xe8, 0x24, 0xff, 0x00, 0xeb, 0xd7, + 0x19, 0xab, 0x69, 0x53, 0xe9, 0x97, 0x4c, 0xac, 0xa4, 0x60, 0xd7, 0x55, + 0x1c, 0x43, 0x8b, 0x31, 0xa9, 0x49, 0x49, 0x1d, 0x60, 0xc1, 0x19, 0x14, + 0xb8, 0xac, 0x8d, 0x13, 0x50, 0xf3, 0xe3, 0xf2, 0x24, 0x3f, 0x3a, 0xf4, + 0x3e, 0xa2, 0xb6, 0xb1, 0x5e, 0xc5, 0x3a, 0x8a, 0x71, 0xba, 0x3c, 0xc9, + 0xc1, 0xc1, 0xd9, 0x8d, 0xc5, 0x18, 0xa7, 0xe2, 0x97, 0x6d, 0x59, 0x03, + 0x31, 0x46, 0x29, 0xfb, 0x69, 0x76, 0xd0, 0x03, 0x31, 0x46, 0x29, 0xfb, + 0x69, 0x76, 0xd0, 0x04, 0x78, 0xa3, 0x15, 0x2e, 0xda, 0x36, 0xd0, 0x04, + 0x78, 0xa3, 0x15, 0x26, 0xda, 0x5d, 0xb4, 0x01, 0x16, 0xda, 0x36, 0xd4, + 0xbb, 0x68, 0xdb, 0x40, 0x11, 0xed, 0xa3, 0x6d, 0x49, 0xb6, 0x8d, 0xb4, + 0x01, 0x1e, 0xda, 0x36, 0xd4, 0xbb, 0x68, 0xdb, 0x40, 0x11, 0x6d, 0xa3, + 0x6d, 0x4b, 0xb6, 0x8d, 0xb4, 0x01, 0x16, 0xda, 0x36, 0xd4, 0xbb, 0x68, + 0xdb, 0x40, 0x11, 0x6d, 0xa3, 0x6d, 0x4b, 0xb6, 0x8d, 0xb4, 0x01, 0x0e, + 0xda, 0x36, 0xd4, 0xbb, 0x68, 0xdb, 0x40, 0x11, 0x6d, 0xa3, 0x6d, 0x4b, + 0xb6, 0x93, 0x6d, 0x00, 0x47, 0x8a, 0x4d, 0xb5, 0x2e, 0xda, 0x36, 0xd0, + 0x04, 0x5b, 0x68, 0xdb, 0x52, 0x6d, 0xa3, 0x6d, 0x17, 0x02, 0x2c, 0x51, + 0x8a, 0x93, 0x14, 0x6d, 0xa7, 0x70, 0x22, 0xdb, 0x46, 0xda, 0x93, 0x6d, + 0x18, 0xa2, 0xe0, 0x47, 0x8a, 0x4c, 0x54, 0x98, 0xa3, 0x6d, 0x17, 0x02, + 0x3c, 0x52, 0x62, 0xa4, 0xc5, 0x18, 0xa2, 0xe2, 0x23, 0xc5, 0x26, 0x2a, + 0x4c, 0x52, 0x62, 0x98, 0x11, 0xe2, 0x8c, 0x54, 0x98, 0xa4, 0xc5, 0x17, + 0x02, 0x3c, 0x52, 0x62, 0xa4, 0xc5, 0x26, 0x28, 0x01, 0x98, 0xa4, 0xc5, + 0x3f, 0x14, 0x62, 0x80, 0x19, 0x8a, 0x4c, 0x53, 0xb1, 0x46, 0x29, 0x80, + 0xcc, 0x51, 0x8a, 0x76, 0x29, 0x31, 0x40, 0x86, 0xd2, 0x53, 0xb1, 0x49, + 0x8a, 0x00, 0x4a, 0x4a, 0x5c, 0x51, 0x40, 0x0d, 0xa2, 0x96, 0x92, 0x98, + 0x09, 0x45, 0x2d, 0x25, 0x00, 0x25, 0x14, 0xb4, 0x94, 0x00, 0x52, 0x52, + 0xd1, 0x40, 0x09, 0x45, 0x14, 0x50, 0x02, 0x51, 0x4b, 0x45, 0x02, 0x12, + 0x8a, 0x5a, 0x4a, 0x00, 0x29, 0x09, 0xc0, 0xcd, 0x2d, 0x45, 0x2b, 0x80, + 0x09, 0x27, 0x00, 0x52, 0x6c, 0x68, 0x64, 0xb2, 0xaa, 0x29, 0x66, 0x38, + 0x02, 0xb2, 0x26, 0xb9, 0x92, 0xed, 0xf6, 0xc7, 0x90, 0x9f, 0xa9, 0xa6, + 0x5c, 0xce, 0xd7, 0x72, 0xed, 0x5c, 0xf9, 0x79, 0xe3, 0xde, 0xb4, 0xb4, + 0xdd, 0x34, 0xca, 0xfb, 0x72, 0x00, 0x1c, 0x92, 0x6b, 0xc9, 0xc5, 0xe3, + 0x3e, 0xcc, 0x0f, 0x47, 0x0f, 0x86, 0xbe, 0xb2, 0x20, 0xb2, 0xd3, 0x24, + 0x9d, 0x80, 0x45, 0xcf, 0xbd, 0x6a, 0xed, 0xb3, 0xd3, 0xb8, 0x61, 0xe7, + 0x4c, 0x3b, 0x0e, 0x82, 0x92, 0xe6, 0xf7, 0xc9, 0x43, 0x6f, 0x6d, 0x85, + 0x41, 0xc1, 0x71, 0xd4, 0xd6, 0x70, 0x56, 0x93, 0x24, 0x1c, 0x2f, 0x76, + 0x35, 0xe6, 0x6f, 0xb9, 0xdd, 0x74, 0xb4, 0x89, 0x62, 0xe7, 0x53, 0x9e, + 0x6f, 0x94, 0xb6, 0xd4, 0xfe, 0xe2, 0x70, 0x2a, 0xb0, 0x57, 0x63, 0xfd, + 0xdc, 0xfe, 0x75, 0x76, 0xda, 0xc1, 0xa4, 0x23, 0x0a, 0x54, 0x1f, 0xe2, + 0x3d, 0x4d, 0x5d, 0x09, 0x67, 0x64, 0xe1, 0x49, 0xdd, 0x21, 0x3d, 0xb9, + 0x34, 0x12, 0xec, 0xb7, 0x28, 0x41, 0x60, 0xee, 0x41, 0xd9, 0x8f, 0x77, + 0xff, 0x00, 0x0a, 0xb8, 0x2d, 0x6d, 0xa0, 0xff, 0x00, 0x5f, 0x2e, 0x4f, + 0xf7, 0x47, 0xf8, 0x0a, 0xb1, 0xa9, 0x6f, 0x89, 0x10, 0x46, 0xe7, 0x0d, + 0xd9, 0x7b, 0xd6, 0x72, 0x5b, 0xbb, 0xe4, 0x96, 0x54, 0x03, 0xa9, 0x63, + 0x54, 0x97, 0x72, 0x39, 0xdb, 0xf8, 0x51, 0xb3, 0x64, 0x60, 0x91, 0x09, + 0x85, 0x40, 0x0a, 0x79, 0x06, 0xb6, 0x44, 0xd6, 0x16, 0x71, 0x87, 0x79, + 0xa3, 0x0c, 0x47, 0x42, 0x79, 0xae, 0x3a, 0x32, 0x23, 0xdc, 0xb0, 0xb4, + 0x92, 0x93, 0xc1, 0xdb, 0xc2, 0xd4, 0xa9, 0x67, 0x3c, 0xe7, 0x96, 0x09, + 0xec, 0x83, 0x26, 0xa5, 0xa4, 0x5c, 0x65, 0x33, 0xb2, 0x8f, 0xc5, 0xd6, + 0x96, 0x6a, 0x7c, 0xa8, 0x5a, 0x41, 0xf4, 0xda, 0x2a, 0x23, 0xe3, 0x79, + 0xa7, 0x6c, 0x46, 0xb1, 0x44, 0xa7, 0xb9, 0xf9, 0xb1, 0x5c, 0x80, 0xd1, + 0xae, 0xa5, 0x98, 0x86, 0x76, 0x20, 0x7a, 0x83, 0x5a, 0xfa, 0x77, 0x84, + 0xe6, 0xba, 0x7d, 0xa3, 0x3f, 0x52, 0x71, 0x8a, 0xc2, 0x70, 0x86, 0xed, + 0x1d, 0x10, 0x95, 0x47, 0xa5, 0xce, 0x9a, 0xda, 0x59, 0x35, 0x3c, 0x6f, + 0xd6, 0x53, 0x9f, 0xe1, 0x43, 0x83, 0x5a, 0x31, 0xf8, 0x7e, 0xd1, 0xf0, + 0x65, 0x9a, 0x59, 0x8f, 0xbb, 0x54, 0x1a, 0x7f, 0x83, 0xec, 0x2d, 0x00, + 0x69, 0x37, 0xcc, 0xff, 0x00, 0xed, 0x1e, 0x2b, 0x76, 0x28, 0x63, 0x85, + 0x42, 0x46, 0xa1, 0x54, 0x76, 0x15, 0xc7, 0x2a, 0x8f, 0xec, 0x9d, 0xb0, + 0xa6, 0xbe, 0xd2, 0x2a, 0x47, 0xa3, 0x58, 0x47, 0xd2, 0xdd, 0x49, 0xf5, + 0x3c, 0xd5, 0xa4, 0xb6, 0x86, 0x31, 0xf2, 0xc4, 0x83, 0xf0, 0xa9, 0x71, + 0x46, 0x3d, 0xeb, 0x37, 0x26, 0xf7, 0x35, 0x49, 0x2d, 0x84, 0x00, 0x0e, + 0x80, 0x0a, 0x5a, 0x29, 0x29, 0x00, 0x52, 0x52, 0xd1, 0x8a, 0x06, 0x27, + 0xe1, 0x47, 0xe1, 0x4b, 0x45, 0x00, 0x27, 0xe1, 0x45, 0x04, 0xd2, 0x64, + 0xd0, 0x02, 0xd2, 0xd3, 0x33, 0x49, 0xb8, 0x7a, 0x8f, 0xce, 0x80, 0x24, + 0xa4, 0x6f, 0xba, 0x7e, 0x94, 0xc2, 0xea, 0x3f, 0x89, 0x7f, 0x3a, 0x8d, + 0xee, 0x22, 0x0a, 0x73, 0x2a, 0x0e, 0x3f, 0xbd, 0x46, 0xa1, 0x74, 0x70, + 0x6b, 0x6b, 0x7d, 0xb0, 0x03, 0x63, 0x21, 0xe3, 0xd5, 0xbf, 0xc2, 0x83, + 0x69, 0x75, 0xdf, 0x4f, 0x90, 0xfd, 0x0b, 0x7f, 0x85, 0x7a, 0x02, 0xfd, + 0xd1, 0xc7, 0x6a, 0x76, 0x2b, 0x7f, 0xac, 0x4b, 0xb1, 0xcd, 0xf5, 0x68, + 0xf7, 0x3c, 0xeb, 0xec, 0xd7, 0x23, 0xfe, 0x5c, 0x27, 0x1f, 0x42, 0x7f, + 0xc2, 0x95, 0x16, 0xe1, 0x0f, 0x36, 0xd7, 0x2b, 0xff, 0x00, 0x02, 0xaf, + 0x44, 0xc7, 0xb5, 0x26, 0xd0, 0x7b, 0x0a, 0x7f, 0x58, 0x7d, 0x83, 0xea, + 0xcb, 0xb9, 0xc1, 0xad, 0xcc, 0xb1, 0xf5, 0x5b, 0xa5, 0xf7, 0xcd, 0x28, + 0xd4, 0xe5, 0x4e, 0x93, 0xdd, 0x2f, 0xd4, 0x13, 0x5d, 0xd9, 0x8e, 0x33, + 0xd5, 0x07, 0xe5, 0x4c, 0x36, 0xb6, 0xed, 0xf7, 0xa1, 0x43, 0xff, 0x00, + 0x01, 0xa7, 0xf5, 0x85, 0xd6, 0x22, 0xfa, 0xb3, 0xe9, 0x23, 0x8b, 0x5d, + 0x76, 0xe1, 0x7a, 0x5f, 0x11, 0xfe, 0xf2, 0xd5, 0x84, 0xf1, 0x0d, 0xe0, + 0xfb, 0xb7, 0x10, 0xb8, 0xf7, 0xae, 0x9a, 0x4d, 0x2a, 0xc6, 0x4f, 0xbd, + 0x6d, 0x1f, 0xe0, 0x2a, 0xa4, 0xbe, 0x1d, 0xd3, 0xa4, 0xff, 0x00, 0x96, + 0x38, 0xfa, 0x1a, 0x7e, 0xd6, 0x93, 0xde, 0x22, 0xf6, 0x35, 0x56, 0xd2, + 0x33, 0x17, 0xc4, 0xb7, 0x43, 0xef, 0xc1, 0x1b, 0xff, 0x00, 0xba, 0xd5, + 0x66, 0x3f, 0x14, 0xc7, 0x9f, 0xde, 0xda, 0xc8, 0xbe, 0xe3, 0x9a, 0x6c, + 0x9e, 0x11, 0xb2, 0x6f, 0xf5, 0x6f, 0x22, 0x1f, 0x63, 0x55, 0x9b, 0xc2, + 0x73, 0xc7, 0xcc, 0x37, 0x87, 0xe8, 0xd4, 0x5e, 0x83, 0x0b, 0x57, 0x46, + 0xb4, 0x7e, 0x23, 0xd3, 0x66, 0x1b, 0x4c, 0x8c, 0x87, 0xfd, 0xa1, 0x54, + 0x2e, 0x9e, 0xd5, 0xa7, 0xf3, 0x61, 0x99, 0x58, 0x3f, 0x04, 0x66, 0xb3, + 0x25, 0xf0, 0xfe, 0xa5, 0x11, 0xcf, 0x95, 0x1c, 0xa0, 0x77, 0x15, 0x4a, + 0x68, 0x27, 0x8b, 0x3e, 0x75, 0xac, 0xb1, 0xe3, 0xba, 0xd5, 0xd3, 0x8c, + 0x13, 0xbc, 0x59, 0x9d, 0x49, 0x54, 0x6a, 0xd2, 0x45, 0x1f, 0x15, 0xd9, + 0x79, 0xb6, 0xde, 0x72, 0x60, 0xec, 0x39, 0x3f, 0x4a, 0xab, 0xe1, 0x1b, + 0xe3, 0x1d, 0xda, 0x46, 0x5b, 0xbe, 0x2b, 0x53, 0x72, 0xc8, 0xa5, 0x1a, + 0x5c, 0x83, 0xd4, 0x38, 0xa6, 0xda, 0xd8, 0x41, 0x1d, 0xc8, 0x92, 0x18, + 0xd4, 0x38, 0x39, 0xca, 0x35, 0x76, 0xf3, 0x5e, 0x3c, 0xac, 0xe3, 0xe5, + 0xb4, 0xf9, 0x8e, 0x93, 0x50, 0x85, 0xa5, 0x85, 0xd4, 0x63, 0x0c, 0x31, + 0xcd, 0x70, 0x5a, 0x74, 0x24, 0xcf, 0x71, 0x6a, 0xd8, 0xe0, 0x90, 0x6b, + 0xba, 0xfb, 0x70, 0x68, 0xf6, 0xca, 0x85, 0x70, 0x3a, 0xe2, 0xb8, 0xf9, + 0xe0, 0x96, 0x2d, 0x7e, 0x4b, 0x88, 0x91, 0x8c, 0x0d, 0xc9, 0x2b, 0xfa, + 0xd1, 0x17, 0xa5, 0x89, 0xa8, 0xb5, 0xb9, 0xc9, 0x5c, 0xc4, 0x61, 0xb8, + 0x92, 0x36, 0xea, 0xad, 0x8a, 0x6a, 0x4d, 0x24, 0x64, 0x15, 0x72, 0x08, + 0xf7, 0xad, 0x2d, 0x76, 0x2d, 0x97, 0xde, 0x68, 0x1c, 0x4a, 0xb9, 0xfc, + 0x7a, 0x56, 0x5f, 0x18, 0xad, 0xd6, 0xa7, 0x31, 0xab, 0x67, 0xad, 0xdd, + 0xc0, 0x79, 0x72, 0xc3, 0xb8, 0x35, 0xd2, 0xc5, 0xaa, 0x43, 0x35, 0xba, + 0x35, 0xca, 0x0d, 0xa4, 0x75, 0xf4, 0xae, 0x1d, 0x32, 0x0f, 0x15, 0xb5, + 0x13, 0x97, 0xd2, 0x5c, 0x13, 0xfc, 0x24, 0x54, 0xb4, 0x8a, 0x53, 0x69, + 0x1d, 0x14, 0x96, 0x76, 0xd7, 0x51, 0xfe, 0xed, 0x91, 0xd4, 0xf6, 0x6e, + 0x47, 0xe7, 0xda, 0xb3, 0x67, 0xd3, 0xe6, 0xb6, 0x3f, 0xb9, 0xc9, 0x1f, + 0xf3, 0xcd, 0xff, 0x00, 0xa1, 0xae, 0x76, 0xdb, 0x50, 0xb9, 0xb4, 0x60, + 0x63, 0x90, 0x8a, 0xe9, 0xb4, 0xed, 0x7e, 0x3b, 0xb0, 0x21, 0xb9, 0x0b, + 0xcf, 0xb7, 0x06, 0x93, 0x56, 0x35, 0x53, 0x52, 0x2d, 0x68, 0xfe, 0x25, + 0xbc, 0xd3, 0xa6, 0x08, 0xac, 0xc4, 0x0e, 0xb0, 0xc8, 0x79, 0xfc, 0x3d, + 0x6b, 0xd0, 0xf4, 0x7d, 0x7e, 0xd3, 0x56, 0x8c, 0x6c, 0x60, 0x92, 0x8e, + 0xb1, 0x93, 0xcd, 0x79, 0xed, 0xe6, 0x9d, 0x15, 0xc6, 0x70, 0x37, 0x2e, + 0x32, 0x0f, 0xf1, 0x0f, 0xa5, 0x64, 0xf9, 0xb3, 0x69, 0xf7, 0x08, 0xde, + 0x71, 0xca, 0x91, 0xb6, 0x55, 0x3c, 0x8f, 0xa8, 0xae, 0x6a, 0xb4, 0x23, + 0x35, 0x75, 0xb9, 0xd3, 0x4a, 0xbc, 0xa0, 0xec, 0xf6, 0x3d, 0x7e, 0xf7, + 0x4d, 0x86, 0xe9, 0x18, 0x6c, 0x5c, 0x9e, 0xaa, 0x7a, 0x1a, 0xf3, 0x8f, + 0x11, 0x78, 0x59, 0xad, 0xd9, 0xae, 0x2d, 0x54, 0x85, 0x1d, 0x53, 0xb8, + 0xae, 0xdf, 0x41, 0xf1, 0x0a, 0xea, 0x11, 0xc7, 0x04, 0xe3, 0x13, 0x91, + 0xf7, 0x87, 0xdd, 0x6a, 0xd6, 0xb9, 0xb5, 0x4b, 0x94, 0x21, 0x94, 0x67, + 0x18, 0xe7, 0xbd, 0x73, 0xc2, 0xa4, 0xa9, 0x3e, 0x59, 0x9d, 0x33, 0xa7, + 0x1a, 0x8b, 0x9a, 0x07, 0x85, 0x24, 0x8c, 0x8e, 0x39, 0x2a, 0xea, 0x78, + 0x22, 0xba, 0x50, 0xf1, 0xf8, 0x93, 0x4b, 0x68, 0xa5, 0xc7, 0xdb, 0xe1, + 0x5c, 0xe7, 0xfb, 0xe3, 0xd6, 0x9d, 0xe2, 0xaf, 0x0f, 0x1b, 0x16, 0x79, + 0xe0, 0x53, 0xe5, 0x13, 0x92, 0x3f, 0xba, 0x6b, 0x9a, 0xb1, 0xbe, 0x96, + 0xce, 0xea, 0x39, 0xe3, 0x38, 0x92, 0x33, 0x9f, 0xad, 0x76, 0x27, 0xd5, + 0x1c, 0x6f, 0xb3, 0x33, 0x98, 0x49, 0xa6, 0xde, 0x86, 0xc1, 0x0c, 0x8d, + 0x5d, 0x95, 0xb4, 0xab, 0x73, 0x6e, 0x92, 0xa1, 0xc8, 0x61, 0x9a, 0xcd, + 0xf1, 0x25, 0x9a, 0x5d, 0xdb, 0xa6, 0xa3, 0x6e, 0xbf, 0x24, 0xa3, 0x3c, + 0x76, 0x3d, 0xc5, 0x41, 0xe1, 0x9b, 0xad, 0xcb, 0x25, 0xb1, 0x3f, 0x77, + 0xe6, 0x5f, 0xeb, 0x5e, 0x86, 0x0e, 0xad, 0xa5, 0xca, 0xfa, 0x9c, 0x58, + 0x9a, 0x77, 0x8d, 0xd1, 0xd0, 0x62, 0x97, 0x14, 0xec, 0x52, 0xe2, 0xbd, + 0x53, 0xcf, 0x19, 0x8a, 0x5d, 0xb4, 0xfc, 0x52, 0xe2, 0x80, 0x19, 0xb6, + 0x97, 0x14, 0xfc, 0x52, 0xed, 0xa0, 0x08, 0xf6, 0xd2, 0xed, 0xa9, 0x36, + 0xd1, 0xb6, 0x80, 0x23, 0xdb, 0x4b, 0xb6, 0xa4, 0xdb, 0x4b, 0xb6, 0x81, + 0x91, 0x6d, 0xa3, 0x6d, 0x4b, 0xb6, 0x97, 0x6d, 0x02, 0x21, 0xdb, 0x4b, + 0xb6, 0xa5, 0xdb, 0x46, 0xda, 0x00, 0x8b, 0x6d, 0x1b, 0x6a, 0x5d, 0xb4, + 0xbb, 0x68, 0x19, 0x0e, 0xda, 0x36, 0xd4, 0xdb, 0x68, 0xd9, 0x40, 0x10, + 0xed, 0xa3, 0x6d, 0x4d, 0xb2, 0x8d, 0xb4, 0x01, 0x0e, 0xda, 0x36, 0xd4, + 0xbb, 0x68, 0xdb, 0x48, 0x08, 0xb6, 0xd2, 0x6d, 0xa9, 0xb6, 0xd1, 0xb6, + 0x80, 0x21, 0xdb, 0x46, 0xda, 0x97, 0x6d, 0x1b, 0x68, 0x02, 0x1d, 0xb4, + 0x6d, 0xa9, 0x76, 0xd1, 0xb6, 0x98, 0x10, 0xed, 0xa3, 0x6d, 0x4b, 0xb6, + 0x93, 0x6d, 0x00, 0x45, 0xb6, 0x93, 0x6d, 0x4d, 0xb6, 0x93, 0x6d, 0x02, + 0x22, 0xdb, 0x49, 0xb6, 0xa6, 0xdb, 0x49, 0xb6, 0x80, 0x22, 0xdb, 0x49, + 0xb6, 0xa5, 0xdb, 0x49, 0xb6, 0x80, 0x22, 0xdb, 0x49, 0x8a, 0x97, 0x6d, + 0x26, 0xda, 0x00, 0x8b, 0x14, 0x62, 0xa4, 0xc5, 0x26, 0x28, 0x11, 0x1e, + 0x29, 0x31, 0x52, 0x6d, 0xa4, 0xc5, 0x00, 0x47, 0x8a, 0x4c, 0x54, 0x84, + 0x52, 0x11, 0x4c, 0x08, 0xf1, 0x49, 0x8a, 0x93, 0x14, 0xdc, 0x50, 0x03, + 0x31, 0x49, 0x8a, 0x7e, 0x29, 0x31, 0x40, 0x0c, 0xc5, 0x26, 0x29, 0xf8, + 0xa4, 0xc5, 0x30, 0x19, 0x8a, 0x4a, 0x79, 0x14, 0xd2, 0x28, 0x01, 0xb8, + 0xa4, 0xa7, 0x11, 0x49, 0x8a, 0x62, 0x1b, 0x49, 0x4e, 0xc5, 0x25, 0x00, + 0x25, 0x25, 0x3a, 0x92, 0x98, 0x0d, 0xa2, 0x96, 0x92, 0x81, 0x05, 0x25, + 0x2d, 0x14, 0x00, 0x94, 0x94, 0xb4, 0x50, 0x02, 0x51, 0x50, 0xdd, 0x5c, + 0xfd, 0x9a, 0x26, 0x72, 0xb9, 0xc0, 0xcd, 0x52, 0x83, 0x53, 0x9e, 0xe1, + 0xb6, 0xc5, 0x6c, 0x18, 0xfb, 0x35, 0x65, 0x52, 0xbd, 0x3a, 0x7f, 0x1b, + 0xb1, 0xac, 0x28, 0xce, 0x7f, 0x0a, 0x34, 0xe8, 0xc5, 0x57, 0xce, 0xa2, + 0x3a, 0xe9, 0xef, 0xf9, 0xff, 0x00, 0xf5, 0xa9, 0x0c, 0xd7, 0x6b, 0xf7, + 0xac, 0x65, 0x15, 0x9f, 0xd7, 0x28, 0x7f, 0x31, 0x7f, 0x55, 0xad, 0xfc, + 0xa5, 0x86, 0xe0, 0x56, 0x3e, 0xa7, 0x70, 0x78, 0x81, 0x4f, 0x5e, 0x5b, + 0x1e, 0x95, 0x75, 0xaf, 0x24, 0x38, 0x0d, 0x6d, 0x22, 0xf3, 0xde, 0xb3, + 0xd6, 0xdd, 0xe4, 0xbf, 0x6d, 0xfc, 0xfc, 0xd5, 0xcf, 0x89, 0xc5, 0xc3, + 0x91, 0xf2, 0x3b, 0x9a, 0xd1, 0xc3, 0x4f, 0x99, 0x73, 0x22, 0xc6, 0x99, + 0xa6, 0xbc, 0xee, 0x0e, 0xde, 0x3f, 0x90, 0xab, 0xf7, 0x53, 0x08, 0x41, + 0x82, 0x0c, 0x6d, 0x1d, 0x5b, 0xd6, 0xac, 0xdc, 0x4c, 0x2c, 0x6d, 0x56, + 0xde, 0x13, 0x89, 0x18, 0x65, 0xd8, 0x7a, 0x7a, 0x55, 0x2b, 0x2b, 0x73, + 0x77, 0x38, 0x01, 0x49, 0x19, 0xe0, 0x7a, 0x9a, 0xf1, 0x2f, 0xd5, 0x9e, + 0xa5, 0xbe, 0xca, 0x1b, 0x6b, 0x6c, 0xf7, 0x0d, 0xb9, 0xa2, 0x76, 0x1f, + 0xc2, 0x8a, 0x39, 0x6a, 0xd7, 0xb1, 0xd1, 0x6e, 0x66, 0xb9, 0x55, 0x9a, + 0xd6, 0x44, 0x39, 0xe3, 0x29, 0xf2, 0xad, 0x76, 0xda, 0x0e, 0x82, 0xb6, + 0xd1, 0xac, 0x92, 0x28, 0xf3, 0x0f, 0x5f, 0x6a, 0xd1, 0xd5, 0x2f, 0x20, + 0xb0, 0xb6, 0x28, 0x31, 0xe6, 0xb8, 0xc2, 0xaf, 0x7a, 0xc1, 0xd6, 0xd7, + 0x96, 0x27, 0x42, 0xa2, 0x94, 0x79, 0xa4, 0x70, 0x5a, 0xde, 0x9d, 0x3d, + 0x95, 0xa8, 0x58, 0x9b, 0x2c, 0xc7, 0xa2, 0x75, 0xc5, 0x73, 0xb1, 0xc1, + 0x87, 0xcc, 0xa4, 0xe4, 0x73, 0x8f, 0xf1, 0xae, 0x87, 0x55, 0xd5, 0xb0, + 0x4a, 0x82, 0x4c, 0x8d, 0xc6, 0x7b, 0xfe, 0x15, 0x93, 0x05, 0x84, 0x97, + 0x2c, 0x0c, 0x83, 0x00, 0x9c, 0x88, 0xc7, 0xf5, 0xae, 0xb5, 0x74, 0x8e, + 0x2e, 0x54, 0xe5, 0x72, 0x33, 0x73, 0x2c, 0xcf, 0x88, 0x54, 0xb1, 0x1c, + 0x6e, 0xec, 0x3f, 0x1a, 0xb1, 0x06, 0x9c, 0xf3, 0x90, 0x64, 0xfd, 0xe7, + 0x3d, 0x7a, 0x28, 0xab, 0xb3, 0x35, 0x96, 0x95, 0x00, 0x6b, 0x86, 0x5d, + 0xdd, 0xa3, 0x15, 0x81, 0x7b, 0xe2, 0x4b, 0x8b, 0x86, 0x29, 0x00, 0xf2, + 0x63, 0xed, 0x8e, 0xb4, 0xd2, 0x6c, 0x4e, 0x51, 0x89, 0xd1, 0xa5, 0xbd, + 0xac, 0x03, 0x05, 0x83, 0xb0, 0x19, 0x2a, 0xbd, 0x05, 0x6c, 0x58, 0xda, + 0xac, 0x91, 0xac, 0xaa, 0xcb, 0xb3, 0xb0, 0x41, 0xc5, 0x71, 0x9e, 0x19, + 0xb8, 0x2f, 0xa8, 0x4a, 0x24, 0x6c, 0x96, 0x43, 0xc9, 0x35, 0xde, 0xe9, + 0x0e, 0xa6, 0xc1, 0x40, 0x20, 0xe3, 0x23, 0x8f, 0xad, 0x44, 0xd5, 0x8a, + 0xa7, 0x3b, 0xb2, 0xec, 0x10, 0xc6, 0x4b, 0x10, 0x8b, 0xbb, 0xd4, 0x0e, + 0x6a, 0xd5, 0x99, 0xf2, 0x6e, 0x50, 0xe7, 0x00, 0xf1, 0x51, 0xc2, 0xa0, + 0x1c, 0x8e, 0x38, 0xa0, 0x1c, 0x48, 0x0e, 0x7b, 0xd6, 0x2d, 0x5d, 0x34, + 0x74, 0x27, 0x66, 0x99, 0xbb, 0x48, 0x45, 0x30, 0x4a, 0xa1, 0x03, 0x33, + 0x00, 0x31, 0xdc, 0xd5, 0x2b, 0x9d, 0x6e, 0xc6, 0xdb, 0x86, 0x98, 0x33, + 0x7a, 0x2f, 0x35, 0xe7, 0xa8, 0xb7, 0xb2, 0x3d, 0x17, 0x24, 0xb7, 0x66, + 0x81, 0xa6, 0xd7, 0x39, 0x71, 0xe2, 0x69, 0x9b, 0x22, 0xda, 0xd4, 0xe3, + 0xfb, 0xd2, 0x56, 0x6b, 0xeb, 0x37, 0x52, 0x12, 0x66, 0xbd, 0x58, 0xbf, + 0xd9, 0x43, 0x5a, 0xaa, 0x13, 0x66, 0x52, 0xc4, 0x41, 0x1d, 0xae, 0x45, + 0x44, 0xf7, 0x10, 0xc7, 0xf7, 0xe6, 0x45, 0xfa, 0xb5, 0x71, 0x0d, 0xa8, + 0x83, 0xc2, 0xcd, 0x34, 0xc7, 0xeb, 0x8a, 0x72, 0x41, 0xa9, 0x5c, 0xf3, + 0x0d, 0xae, 0x07, 0xa9, 0x53, 0xfd, 0x6a, 0xbe, 0xae, 0x97, 0xc4, 0xc9, + 0x58, 0x89, 0x3f, 0x86, 0x27, 0x59, 0x3e, 0xab, 0x69, 0x04, 0x65, 0xcc, + 0xaa, 0xf8, 0xec, 0x87, 0x26, 0xb3, 0xe5, 0xf1, 0x19, 0x19, 0xf2, 0xad, + 0x58, 0x8f, 0x56, 0x38, 0xac, 0x91, 0xe1, 0xcd, 0x5e, 0xe3, 0xfd, 0x64, + 0xeb, 0x12, 0x9e, 0xc0, 0xd5, 0x98, 0xbc, 0x14, 0x84, 0x83, 0x3d, 0xe3, + 0xb9, 0xf7, 0xc9, 0xfe, 0xb4, 0x94, 0x68, 0xc7, 0x77, 0x70, 0x6e, 0xb4, + 0xb6, 0x56, 0x1b, 0x2f, 0x8a, 0x6e, 0x72, 0x40, 0x5b, 0x64, 0xfa, 0xbe, + 0x6a, 0xb9, 0xf1, 0x15, 0xdb, 0x1c, 0x9b, 0xd8, 0x40, 0xf4, 0x51, 0x9a, + 0xd8, 0x8b, 0xc2, 0x7a, 0x7c, 0x7d, 0x77, 0x31, 0xfc, 0x05, 0x5a, 0x4f, + 0x0f, 0xe9, 0xa9, 0xff, 0x00, 0x2e, 0xe0, 0xfd, 0x49, 0x34, 0xfd, 0xa5, + 0x25, 0xb2, 0x0f, 0x67, 0x55, 0xee, 0xce, 0x65, 0xb5, 0xc9, 0x5b, 0xef, + 0x5e, 0x4c, 0x7f, 0xdd, 0x43, 0x51, 0xbe, 0xaa, 0xe5, 0x78, 0x92, 0xf1, + 0x8f, 0xd7, 0x15, 0xd9, 0x26, 0x97, 0x63, 0x1f, 0xdd, 0xb5, 0x8b, 0xfe, + 0xf9, 0x15, 0x32, 0xdb, 0xc2, 0xbf, 0x76, 0x24, 0x1f, 0x45, 0xa5, 0xed, + 0xd7, 0x48, 0x8f, 0xea, 0xef, 0xac, 0x8e, 0x00, 0xdf, 0xdc, 0xb1, 0xe1, + 0x6e, 0x4f, 0xd5, 0xa9, 0x44, 0xd7, 0xae, 0x38, 0xb7, 0x9c, 0xfe, 0x26, + 0xbb, 0xf2, 0x8b, 0xd9, 0x47, 0xe5, 0x4a, 0x07, 0xb0, 0xa5, 0xf5, 0x87, + 0xd8, 0x3e, 0xaa, 0xbb, 0x9e, 0x7c, 0x46, 0xa2, 0xc3, 0xfe, 0x3d, 0x27, + 0xfc, 0xcf, 0xf8, 0x53, 0x4d, 0xbd, 0xfb, 0x29, 0xff, 0x00, 0x42, 0x97, + 0xff, 0x00, 0x1e, 0xff, 0x00, 0x0a, 0xf4, 0x3c, 0x7b, 0x52, 0x36, 0x36, + 0x9f, 0xa5, 0x1f, 0x58, 0x97, 0x61, 0xfd, 0x56, 0x3d, 0xc1, 0x7e, 0xe8, + 0xfa, 0x53, 0xb3, 0x4d, 0x5f, 0xba, 0x3e, 0x94, 0xb5, 0xce, 0x74, 0x8b, + 0x46, 0x69, 0x33, 0x49, 0x9a, 0x00, 0x7d, 0x14, 0xcc, 0xd2, 0xe4, 0xd0, + 0x21, 0xf4, 0x62, 0x99, 0x9a, 0x5c, 0xd3, 0x01, 0xe0, 0x0a, 0x4c, 0x52, + 0x06, 0xf6, 0xa3, 0x34, 0x00, 0xe1, 0x41, 0x45, 0x61, 0x82, 0xa0, 0xfd, + 0x69, 0x01, 0xe6, 0x96, 0x98, 0x8a, 0x93, 0xe9, 0x36, 0x37, 0x39, 0xf3, + 0x2d, 0x90, 0x9f, 0x50, 0x30, 0x6b, 0x2e, 0xe3, 0xc2, 0x76, 0xaf, 0x93, + 0x04, 0x8f, 0x13, 0x7e, 0x75, 0xd0, 0x75, 0xa5, 0xab, 0x8c, 0xe5, 0x1d, + 0x99, 0x12, 0xa7, 0x19, 0x6e, 0x8e, 0x3a, 0x7d, 0x03, 0x54, 0xb5, 0x46, + 0x30, 0x4a, 0x26, 0x03, 0xa2, 0x9e, 0x7f, 0x9d, 0x63, 0x48, 0xd7, 0x10, + 0x48, 0x45, 0xd5, 0xb3, 0xc4, 0xdd, 0xf0, 0x32, 0x3f, 0x2a, 0xf4, 0xba, + 0x8e, 0x6b, 0x68, 0x6e, 0x13, 0x6c, 0xd1, 0x2b, 0x83, 0xea, 0x2b, 0x78, + 0xe2, 0x64, 0xb7, 0x30, 0x96, 0x16, 0x2f, 0x63, 0xcc, 0x2e, 0x6c, 0xa0, + 0xd4, 0x23, 0x1e, 0x62, 0xab, 0x81, 0xd0, 0x83, 0x82, 0x2b, 0x06, 0xf3, + 0xc3, 0x8d, 0x19, 0x2d, 0x03, 0xe4, 0x7a, 0x35, 0x7a, 0x85, 0xef, 0x84, + 0xe0, 0x97, 0x2d, 0x69, 0x21, 0x85, 0xbf, 0xba, 0x79, 0x15, 0x83, 0x75, + 0xa7, 0x5f, 0x69, 0xdf, 0xeb, 0xe2, 0xdf, 0x18, 0xfe, 0x21, 0xc8, 0xfc, + 0xeb, 0xae, 0x9e, 0x22, 0x2c, 0xe3, 0xa9, 0x86, 0x6b, 0x74, 0x79, 0xac, + 0xd6, 0xf2, 0xdb, 0x3e, 0xd9, 0x51, 0x94, 0xfb, 0x8e, 0xb5, 0xb5, 0xa5, + 0x6d, 0x9a, 0xc6, 0x48, 0xd8, 0x64, 0x03, 0xfc, 0xeb, 0xa5, 0x7b, 0x2b, + 0x4b, 0xe4, 0xda, 0x36, 0x86, 0x3f, 0xc0, 0xfd, 0x2b, 0x3f, 0xfb, 0x18, + 0xe9, 0xed, 0x29, 0x8c, 0x11, 0xbc, 0x70, 0xa7, 0xa6, 0x7d, 0x8d, 0x6f, + 0xcc, 0x99, 0xcb, 0x2a, 0x6d, 0x6c, 0x71, 0x92, 0x47, 0xb2, 0x46, 0x03, + 0xb1, 0xa9, 0xad, 0x9b, 0x6c, 0xc8, 0xd9, 0xc1, 0x0c, 0x2a, 0x6b, 0xc8, + 0xb6, 0xde, 0x48, 0x84, 0x15, 0x6c, 0xf4, 0x35, 0x02, 0xa1, 0x56, 0xe4, + 0x73, 0x9a, 0xb7, 0xaa, 0x33, 0x5a, 0x33, 0xbe, 0xba, 0x0c, 0xb3, 0x5a, + 0x4a, 0xb9, 0x2b, 0x32, 0x10, 0x54, 0xf4, 0xcf, 0x6a, 0xb8, 0xfe, 0x02, + 0x9f, 0x52, 0xb8, 0x59, 0x67, 0x99, 0x22, 0x8c, 0x8c, 0xe4, 0x0c, 0xb5, + 0x52, 0x69, 0xb7, 0xe9, 0xfa, 0x73, 0x15, 0x23, 0x6b, 0xa8, 0xdc, 0x7a, + 0x1c, 0x8a, 0xf4, 0x9b, 0x46, 0xdd, 0x67, 0x0b, 0x7a, 0xa0, 0xfe, 0x55, + 0xc3, 0x88, 0x9c, 0xa2, 0x95, 0x8f, 0x4f, 0x0d, 0x08, 0xc9, 0xbb, 0x9c, + 0xaa, 0xf8, 0x39, 0xb4, 0xc8, 0x7c, 0xcb, 0x3b, 0xb9, 0x5d, 0xd7, 0x9c, + 0x37, 0xf3, 0x15, 0xb1, 0xa4, 0xea, 0xe6, 0xe9, 0x8d, 0xb5, 0xc8, 0x09, + 0x72, 0xbf, 0x93, 0x0f, 0x51, 0x5b, 0x15, 0xcf, 0xeb, 0xda, 0x5b, 0xe5, + 0x6f, 0xec, 0xfe, 0x59, 0xa3, 0x3b, 0x88, 0x15, 0xcc, 0xa5, 0xce, 0xb9, + 0x64, 0x74, 0xb8, 0xf2, 0x7b, 0xd1, 0x30, 0xfc, 0x75, 0x63, 0x34, 0x97, + 0x56, 0xc6, 0x1b, 0x89, 0x11, 0x26, 0x05, 0x5d, 0x03, 0x70, 0x71, 0x5e, + 0x73, 0x77, 0x03, 0xc1, 0x33, 0x02, 0x3e, 0x64, 0xeb, 0xee, 0x3d, 0x6b, + 0xd2, 0x3c, 0x4b, 0x7f, 0xf6, 0xed, 0x12, 0xc6, 0xe8, 0x02, 0x92, 0xac, + 0xbb, 0x58, 0x7a, 0x1c, 0x73, 0x5c, 0x9e, 0xa9, 0x07, 0xda, 0x2d, 0xd6, + 0xe9, 0x17, 0x2e, 0x9f, 0x78, 0x7a, 0xfa, 0xd7, 0x6d, 0x0b, 0xf2, 0x59, + 0x9c, 0x35, 0xda, 0xe7, 0xd0, 0x66, 0x87, 0x2f, 0xda, 0xe0, 0x9b, 0x4e, + 0x73, 0x95, 0x70, 0x5e, 0x3c, 0xff, 0x00, 0x78, 0x56, 0x2d, 0xa9, 0x3a, + 0x6e, 0xbe, 0xaa, 0xdc, 0x0d, 0xfb, 0x4f, 0xd0, 0xd4, 0x96, 0xb2, 0xbd, + 0x9d, 0xec, 0x72, 0xc6, 0x71, 0xb5, 0x83, 0xa9, 0xf6, 0xab, 0x9e, 0x2a, + 0xb7, 0x55, 0xb9, 0x8a, 0xf6, 0x1f, 0xb9, 0x28, 0x0e, 0x31, 0x5b, 0xc2, + 0x5c, 0xae, 0xe6, 0x32, 0x57, 0x47, 0x4a, 0x05, 0x2e, 0x29, 0x96, 0x92, + 0x79, 0xf6, 0x70, 0x4d, 0xfd, 0xf4, 0x07, 0xf1, 0xa9, 0x80, 0xaf, 0xa0, + 0x8b, 0xba, 0x4c, 0xf2, 0x24, 0xac, 0xec, 0x26, 0x29, 0x71, 0x4e, 0x02, + 0x9c, 0x16, 0xa8, 0x91, 0x98, 0xa5, 0xdb, 0x4f, 0x0b, 0x4e, 0x0b, 0x40, + 0xc8, 0xf6, 0xd2, 0xed, 0xa9, 0x02, 0xd3, 0xb6, 0xd2, 0x02, 0x2d, 0xb4, + 0xbb, 0x6a, 0x5d, 0xb4, 0xbb, 0x68, 0x02, 0x2d, 0xb4, 0x6d, 0xa9, 0xb6, + 0xd2, 0xed, 0xa2, 0xc0, 0x43, 0xb6, 0x8d, 0xb5, 0x3e, 0xda, 0x36, 0x50, + 0x04, 0x3b, 0x68, 0xdb, 0x53, 0x6c, 0xa5, 0xd9, 0x40, 0x10, 0x6d, 0xa3, + 0x6d, 0x4f, 0xb2, 0x93, 0x65, 0x03, 0x21, 0xdb, 0x46, 0xda, 0x9b, 0x6d, + 0x1b, 0x69, 0x01, 0x0e, 0xda, 0x4d, 0x95, 0x3e, 0xca, 0x4d, 0xb4, 0x01, + 0x0e, 0xda, 0x36, 0xd4, 0xdb, 0x68, 0xdb, 0x40, 0x10, 0x6d, 0xa3, 0x6d, + 0x4d, 0xb6, 0x8d, 0xb4, 0x01, 0x06, 0xda, 0x4d, 0xb5, 0x63, 0x6d, 0x26, + 0xda, 0x00, 0x83, 0x6d, 0x26, 0xda, 0x9f, 0x6d, 0x26, 0xda, 0x04, 0x41, + 0xb6, 0x93, 0x6d, 0x4f, 0xb6, 0x93, 0x6d, 0x30, 0x20, 0xdb, 0x46, 0xda, + 0x9b, 0x6d, 0x21, 0x5a, 0x00, 0x87, 0x6d, 0x26, 0xda, 0x9b, 0x6d, 0x34, + 0x8a, 0x04, 0x45, 0x8a, 0x4d, 0xb5, 0x2e, 0xda, 0x69, 0x14, 0x01, 0x11, + 0x5a, 0x4c, 0x54, 0xb8, 0xa6, 0xe2, 0x80, 0x23, 0xc5, 0x37, 0x15, 0x29, + 0x14, 0x84, 0x50, 0x04, 0x44, 0x52, 0x11, 0x52, 0x91, 0x4d, 0x22, 0x98, + 0x88, 0xf1, 0x4d, 0xc5, 0x48, 0x45, 0x26, 0x28, 0x02, 0x32, 0x29, 0xa4, + 0x54, 0x84, 0x52, 0x11, 0x40, 0x11, 0x91, 0x49, 0x8a, 0x90, 0x8a, 0x69, + 0x14, 0x08, 0x66, 0x29, 0x31, 0x4f, 0xc5, 0x21, 0x14, 0xc0, 0x8f, 0x14, + 0x98, 0xa7, 0x91, 0x4d, 0x22, 0x80, 0x1b, 0x49, 0x8a, 0x76, 0x29, 0x31, + 0x4c, 0x06, 0xd2, 0x53, 0xa9, 0x28, 0x01, 0xb4, 0x94, 0xea, 0x4a, 0x62, + 0x12, 0x92, 0x9d, 0x46, 0x28, 0x01, 0xb4, 0x52, 0xd1, 0x8a, 0x00, 0xcf, + 0xd5, 0x78, 0xb3, 0x93, 0xfd, 0xd3, 0x47, 0x87, 0x17, 0x6b, 0x19, 0x07, + 0x6e, 0xf4, 0xba, 0xb0, 0xff, 0x00, 0x42, 0x7f, 0xa5, 0x2e, 0x8e, 0x0c, + 0x5a, 0x74, 0xf2, 0x74, 0xf9, 0x4d, 0x78, 0xf9, 0x96, 0xe9, 0x1e, 0x96, + 0x0b, 0x66, 0xc9, 0xbf, 0xb6, 0x35, 0x27, 0x9c, 0xac, 0x77, 0x72, 0x8d, + 0xcd, 0xc0, 0xcd, 0x6a, 0x44, 0x3c, 0x44, 0xe9, 0xbe, 0x39, 0x1e, 0x45, + 0xfa, 0x03, 0x58, 0xda, 0x5c, 0x26, 0x6b, 0xe5, 0xf6, 0xaf, 0x42, 0x88, + 0x18, 0x20, 0x5d, 0xa7, 0x18, 0x5e, 0x31, 0x5e, 0x53, 0x47, 0xa1, 0x1f, + 0x33, 0x94, 0x79, 0x35, 0xe5, 0x18, 0x92, 0xd9, 0x48, 0xf7, 0x88, 0x1a, + 0xcf, 0x9a, 0x4b, 0xcf, 0x30, 0x3c, 0x96, 0x6a, 0x18, 0x75, 0xc4, 0x78, + 0xcd, 0x76, 0x0d, 0x7b, 0x72, 0x3a, 0x4c, 0x7f, 0x3a, 0x87, 0xed, 0xb7, + 0x73, 0x48, 0xa8, 0x04, 0x6c, 0x18, 0xe3, 0x2f, 0x8a, 0x9b, 0xd8, 0xae, + 0x5b, 0xe8, 0x70, 0xf2, 0x33, 0xc9, 0x2e, 0x1c, 0x1d, 0xcc, 0x79, 0xcd, + 0x77, 0xbe, 0x11, 0xd1, 0x54, 0xaa, 0xdc, 0x30, 0xff, 0x00, 0x77, 0xda, + 0x92, 0x4d, 0x02, 0x4b, 0xc6, 0x76, 0x9d, 0xa0, 0x01, 0x06, 0x47, 0x94, + 0x06, 0x73, 0x5d, 0x5e, 0x91, 0x1c, 0x76, 0xba, 0x52, 0xb1, 0xc2, 0xae, + 0x32, 0xc6, 0xb1, 0xab, 0x55, 0x5a, 0xd1, 0x37, 0xa3, 0x45, 0xa7, 0x79, + 0x13, 0xde, 0x5d, 0xc3, 0xa7, 0x5a, 0x99, 0x1f, 0xa0, 0xe0, 0x01, 0xd4, + 0x9a, 0xf3, 0xbd, 0x7b, 0x5b, 0x79, 0xef, 0x58, 0xc4, 0xbf, 0xbe, 0x7e, + 0x02, 0x8f, 0xe1, 0x15, 0x3f, 0x88, 0xbc, 0x44, 0xb7, 0x32, 0x3b, 0xa1, + 0xca, 0x26, 0x44, 0x4b, 0xeb, 0xef, 0x58, 0xba, 0x3d, 0xb7, 0xdb, 0xa4, + 0x69, 0x3e, 0x66, 0x73, 0xcb, 0x13, 0xd7, 0xf0, 0xad, 0x28, 0x52, 0x50, + 0x5c, 0xcf, 0x73, 0x1a, 0xd5, 0x5d, 0x47, 0x65, 0xb1, 0x25, 0x8e, 0x9e, + 0xce, 0xc6, 0x59, 0x5b, 0x2d, 0xfc, 0x4e, 0x7b, 0x7d, 0x29, 0xf2, 0xeb, + 0x10, 0x43, 0x73, 0x1d, 0x9d, 0xae, 0x19, 0x99, 0x80, 0x66, 0xf4, 0xaa, + 0xfe, 0x24, 0xbc, 0x9e, 0xce, 0xde, 0x38, 0x22, 0x5f, 0x2d, 0x1f, 0x23, + 0x23, 0xad, 0x73, 0x7a, 0x73, 0x13, 0x7f, 0x09, 0xcf, 0xf1, 0x8a, 0xeb, + 0x4b, 0x4b, 0x9c, 0x72, 0x9e, 0xbc, 0xa8, 0xd2, 0xf1, 0x54, 0x4b, 0x15, + 0xec, 0x64, 0x1c, 0xee, 0x4c, 0x9a, 0xc0, 0xcd, 0x74, 0x9e, 0x2c, 0x4f, + 0x9e, 0xd9, 0xc7, 0x42, 0x08, 0xae, 0x74, 0x0a, 0xb5, 0xb1, 0x89, 0xb5, + 0xe1, 0x72, 0x06, 0xb0, 0x81, 0xba, 0x10, 0x47, 0xe9, 0x5e, 0x91, 0xa4, + 0xc7, 0x14, 0x56, 0xcf, 0xb0, 0x01, 0xf3, 0x9e, 0x82, 0xbc, 0xdf, 0x40, + 0xb7, 0x9b, 0xed, 0xe9, 0x30, 0x52, 0x10, 0x75, 0x63, 0x5d, 0xdd, 0xba, + 0xcc, 0x90, 0xbb, 0x89, 0x3c, 0xb8, 0xc9, 0xcb, 0x33, 0x1a, 0xc6, 0x76, + 0xb9, 0xd1, 0x49, 0x35, 0xa9, 0xab, 0x2d, 0xe4, 0x36, 0xf8, 0xde, 0xf8, + 0x3d, 0xc0, 0xe4, 0xd5, 0x37, 0xbe, 0x9e, 0x7c, 0x9b, 0x78, 0x76, 0xaf, + 0xf7, 0xdf, 0x8a, 0xcd, 0x7b, 0xc8, 0x8b, 0x6d, 0xb4, 0x80, 0xcf, 0x29, + 0xfe, 0x36, 0xe9, 0x9f, 0xeb, 0x57, 0xed, 0xb4, 0x0d, 0x53, 0x52, 0x01, + 0xaf, 0x24, 0xf2, 0xa3, 0xfe, 0xef, 0x4c, 0x0f, 0x61, 0x58, 0xca, 0x71, + 0x86, 0xe7, 0x54, 0x69, 0xca, 0x7b, 0x14, 0xae, 0xaf, 0xb0, 0x48, 0x9e, + 0xfd, 0xa6, 0x6f, 0xf9, 0xe7, 0x17, 0x20, 0x52, 0x5a, 0xad, 0xcd, 0xd1, + 0x1f, 0x62, 0xb3, 0x62, 0x7f, 0xbc, 0xc3, 0x3f, 0xaf, 0x4a, 0xeb, 0x2c, + 0xfc, 0x35, 0xa7, 0xd9, 0x80, 0x4c, 0x7e, 0x6b, 0xfa, 0xbf, 0x3f, 0xa5, + 0x6a, 0xaa, 0x2a, 0x00, 0xaa, 0xa1, 0x40, 0xec, 0x05, 0x73, 0x4a, 0xbf, + 0xf2, 0xa3, 0xa6, 0x38, 0x7f, 0xe6, 0x67, 0x25, 0x17, 0x86, 0x6f, 0x6e, + 0x70, 0xd7, 0x97, 0x01, 0x01, 0xfe, 0x15, 0xe6, 0xb4, 0xad, 0xfc, 0x2d, + 0xa6, 0xc3, 0xcb, 0xa3, 0x4a, 0x7f, 0xda, 0x3f, 0xe1, 0x5b, 0x94, 0x0a, + 0xc5, 0xd4, 0x9b, 0xdd, 0x9b, 0xc6, 0x94, 0x23, 0xb2, 0x2b, 0x43, 0x65, + 0x6b, 0x6e, 0x31, 0x0c, 0x11, 0xa7, 0xd1, 0x6a, 0x7c, 0x62, 0x9d, 0x48, + 0x6b, 0x32, 0xc4, 0xa2, 0x8a, 0x33, 0x40, 0xc5, 0xa4, 0xcd, 0x14, 0x94, + 0x00, 0x66, 0x8c, 0xd2, 0x77, 0xa2, 0x90, 0x05, 0x14, 0x84, 0xd2, 0x66, + 0x8b, 0x8c, 0x76, 0x69, 0x8d, 0xf7, 0x4f, 0xd2, 0x9d, 0x48, 0xdf, 0x74, + 0xfd, 0x28, 0x01, 0xa0, 0x8d, 0x83, 0xe9, 0x46, 0x69, 0x07, 0xdd, 0x1f, + 0x4a, 0x5a, 0x40, 0x2e, 0x68, 0xa2, 0x98, 0x4e, 0x0d, 0x00, 0x3e, 0x80, + 0x69, 0x01, 0xe2, 0x8a, 0x00, 0x76, 0x68, 0xa4, 0xcd, 0x28, 0xa6, 0x03, + 0x87, 0x4a, 0x5a, 0x68, 0xcd, 0x2d, 0x02, 0x14, 0x75, 0xa7, 0x74, 0xa6, + 0x83, 0x4a, 0x69, 0x88, 0x01, 0xe6, 0x9f, 0x9a, 0x8b, 0xa5, 0x3c, 0x50, + 0x98, 0x0e, 0xa7, 0x53, 0x01, 0xa7, 0x66, 0xa8, 0x07, 0x0a, 0x0a, 0x86, + 0x04, 0x30, 0xc8, 0x3d, 0x8d, 0x02, 0x97, 0xbd, 0x32, 0x4c, 0x0d, 0x43, + 0xc3, 0x36, 0xd7, 0x05, 0xa4, 0xb7, 0xc4, 0x32, 0x7a, 0x0f, 0xba, 0x7f, + 0xc2, 0xb9, 0xd9, 0xe1, 0xbe, 0xd3, 0x18, 0xc5, 0x75, 0x11, 0x9a, 0x12, + 0x7a, 0x37, 0x3f, 0xf7, 0xc9, 0xaf, 0x40, 0xef, 0x51, 0xcb, 0x0c, 0x73, + 0xc4, 0xd1, 0xca, 0x8a, 0xe8, 0x7a, 0x82, 0x2b, 0x68, 0x56, 0x94, 0x74, + 0x7a, 0xa3, 0x1a, 0x94, 0x23, 0x2d, 0x56, 0x8c, 0xf3, 0x3b, 0xbd, 0x32, + 0xcf, 0x54, 0x80, 0xbc, 0x3f, 0x3e, 0x3a, 0x8e, 0x8e, 0x86, 0xb9, 0x6b, + 0xcd, 0x3e, 0x6b, 0x27, 0xf9, 0xc6, 0xf8, 0xb3, 0xc3, 0x81, 0xd3, 0xeb, + 0x5e, 0x97, 0xaa, 0xf8, 0x55, 0xa2, 0x90, 0xde, 0x69, 0xac, 0xc1, 0x80, + 0xfb, 0x83, 0xaf, 0xff, 0x00, 0x5e, 0xb0, 0xfc, 0xc8, 0xef, 0x09, 0xb7, + 0xba, 0x45, 0x8a, 0xe7, 0xa6, 0x48, 0xf9, 0x5f, 0xff, 0x00, 0xaf, 0x5d, + 0xf4, 0xea, 0xa9, 0x2d, 0x0f, 0x3e, 0xad, 0x16, 0x9e, 0xa1, 0x1f, 0xef, + 0xbc, 0x37, 0x6a, 0xe3, 0x92, 0x8e, 0xa7, 0xfa, 0x57, 0xa0, 0x69, 0x4f, + 0xbf, 0x4c, 0xb7, 0x6f, 0xf6, 0x6b, 0xcf, 0x59, 0x05, 0xa6, 0x9b, 0x2d, + 0xaa, 0x2b, 0x2e, 0x30, 0x54, 0x03, 0x9e, 0xf5, 0xde, 0xe8, 0xa7, 0x1a, + 0x54, 0x20, 0x74, 0x03, 0x15, 0x86, 0x27, 0xe1, 0x47, 0x46, 0x17, 0xe2, + 0x68, 0xd0, 0xea, 0x28, 0xea, 0x30, 0x7a, 0x52, 0xd2, 0x1e, 0x2b, 0x88, + 0xed, 0x38, 0x7f, 0x16, 0x69, 0x12, 0x43, 0x19, 0x78, 0x58, 0x8b, 0x72, + 0xfb, 0xf6, 0xf6, 0x06, 0xb9, 0x7b, 0x69, 0x41, 0x24, 0x1c, 0x6c, 0x6f, + 0x94, 0xfb, 0x1a, 0xf5, 0x3b, 0xc9, 0x6c, 0xa6, 0x8a, 0x5b, 0x6b, 0x99, + 0xe2, 0x4e, 0x30, 0x43, 0xb0, 0x18, 0xaf, 0x36, 0xbc, 0xb6, 0x86, 0xd2, + 0xfa, 0x45, 0x85, 0x91, 0xe2, 0x76, 0xe0, 0xa9, 0xc8, 0xcd, 0x7a, 0x18, + 0x79, 0xb9, 0x2b, 0x33, 0xce, 0xc4, 0xd3, 0x4a, 0x5c, 0xc8, 0xe7, 0x2f, + 0x60, 0x30, 0x4c, 0xcb, 0x8e, 0x11, 0xb8, 0xfa, 0x1a, 0xbd, 0x38, 0xfb, + 0x77, 0x86, 0x08, 0x3c, 0xbd, 0xb3, 0x63, 0xfe, 0x02, 0x7a, 0x7f, 0x5a, + 0xee, 0x7c, 0x51, 0xa4, 0x47, 0x73, 0xe1, 0xd8, 0xe7, 0x8e, 0x30, 0x1d, + 0x63, 0x0f, 0xc0, 0xf6, 0xe6, 0xb8, 0x6d, 0x11, 0xbc, 0xc6, 0xb8, 0xb4, + 0x63, 0xc4, 0xb1, 0x95, 0xfc, 0x47, 0x22, 0xb4, 0x84, 0xf9, 0xb5, 0x22, + 0x50, 0xe5, 0xd0, 0xd0, 0xf0, 0xe4, 0x9e, 0x76, 0x87, 0x10, 0xef, 0x13, + 0x94, 0x3f, 0xcf, 0xfa, 0xd6, 0xb0, 0x15, 0xcf, 0x78, 0x49, 0xb6, 0x9b, + 0xfb, 0x53, 0xd5, 0x58, 0x38, 0x1f, 0xa1, 0xae, 0x94, 0x2d, 0x7b, 0xf8, + 0x59, 0x73, 0x52, 0x47, 0x91, 0x5e, 0x36, 0x9b, 0x1a, 0x16, 0x9c, 0x16, + 0x9c, 0x16, 0x9c, 0x16, 0xba, 0x0c, 0x46, 0x01, 0x4e, 0x0b, 0x4e, 0x0b, + 0x4e, 0x0b, 0x40, 0x0d, 0x0b, 0x4e, 0xdb, 0x4e, 0x0b, 0x4e, 0x0b, 0x40, + 0x86, 0x05, 0xa7, 0x05, 0xa7, 0x85, 0xa7, 0x85, 0xa0, 0x64, 0x5b, 0x69, + 0xdb, 0x2a, 0x50, 0xb4, 0xe0, 0x94, 0x01, 0x0e, 0xca, 0x36, 0x54, 0xe1, + 0x29, 0xdb, 0x28, 0x02, 0xbe, 0xca, 0x36, 0x55, 0x8d, 0x94, 0x6c, 0xa0, + 0x0a, 0xfb, 0x28, 0xd9, 0x56, 0x36, 0x51, 0xb2, 0x90, 0x15, 0xf6, 0x52, + 0x6c, 0xab, 0x3b, 0x28, 0xd9, 0x40, 0x15, 0xb6, 0x52, 0x6c, 0xab, 0x3b, + 0x28, 0xd9, 0x40, 0x15, 0xb6, 0x51, 0xb2, 0xac, 0x6c, 0xa3, 0x65, 0x00, + 0x56, 0xd9, 0x46, 0xca, 0xb1, 0xb2, 0x8d, 0x94, 0x01, 0x5b, 0x6d, 0x1b, + 0x2a, 0xc6, 0xca, 0x4d, 0x94, 0x0c, 0xaf, 0xb2, 0x93, 0x65, 0x58, 0xd9, + 0x49, 0xb2, 0x81, 0x15, 0xb6, 0x51, 0xb2, 0xac, 0x14, 0xa6, 0x94, 0xa6, + 0x05, 0x72, 0xb4, 0x9b, 0x6a, 0x72, 0x94, 0xd2, 0xb4, 0x01, 0x01, 0x5a, + 0x69, 0x5a, 0x9c, 0xad, 0x34, 0xad, 0x00, 0x40, 0x56, 0x90, 0xad, 0x4c, + 0x56, 0x9a, 0x56, 0x80, 0x21, 0x2b, 0x4d, 0x22, 0xa6, 0x2b, 0x4d, 0x2b, + 0x40, 0x88, 0x48, 0xa4, 0x22, 0xa5, 0x22, 0x9a, 0x45, 0x00, 0x44, 0x45, + 0x26, 0x2a, 0x42, 0x29, 0x08, 0xa0, 0x08, 0x88, 0xa4, 0x22, 0xa4, 0xc5, + 0x34, 0x8a, 0x04, 0x46, 0x45, 0x34, 0x8a, 0x93, 0x14, 0x84, 0x50, 0x04, + 0x64, 0x53, 0x71, 0x52, 0x53, 0x48, 0xa0, 0x06, 0x53, 0x48, 0xa9, 0x31, + 0x4d, 0x22, 0x81, 0x0c, 0x22, 0x9a, 0x45, 0x48, 0x45, 0x37, 0x14, 0xc0, + 0x66, 0x29, 0x31, 0x4f, 0x22, 0x9a, 0x45, 0x00, 0x34, 0xd3, 0x48, 0xa7, + 0xe2, 0x93, 0x14, 0xc0, 0x66, 0x28, 0xc5, 0x3b, 0x14, 0x98, 0xa0, 0x43, + 0x68, 0xa7, 0x62, 0x93, 0x14, 0xc0, 0x4c, 0x51, 0x8a, 0x5c, 0x51, 0x8a, + 0x00, 0xcf, 0xd5, 0xb8, 0xb1, 0x73, 0xed, 0x4d, 0xd3, 0xdd, 0x9b, 0x46, + 0x94, 0x60, 0x01, 0xc7, 0xf3, 0xa7, 0xeb, 0x03, 0xfe, 0x25, 0xef, 0x4c, + 0xb5, 0xc2, 0x68, 0x43, 0xd5, 0x9e, 0xbc, 0x7c, 0xcb, 0xe2, 0x47, 0xa7, + 0x82, 0xf8, 0x59, 0x77, 0x40, 0x85, 0xa4, 0xbd, 0xc8, 0xce, 0x01, 0xae, + 0xde, 0x56, 0x2a, 0xac, 0x32, 0x06, 0x06, 0x39, 0x38, 0xfe, 0x55, 0xcc, + 0xf8, 0x6e, 0x3d, 0x90, 0xc9, 0x37, 0xa0, 0x26, 0xb4, 0xe3, 0x86, 0xee, + 0x58, 0xda, 0x59, 0x2e, 0x4c, 0x21, 0x86, 0x70, 0x71, 0x5e, 0x59, 0xde, + 0x4a, 0xc3, 0xfd, 0xb5, 0xff, 0x00, 0xbe, 0xea, 0x9c, 0x9e, 0x58, 0xba, + 0x8b, 0x7c, 0x6f, 0x29, 0xcf, 0x0a, 0xbc, 0xe7, 0xf2, 0xa9, 0xfc, 0xbb, + 0x90, 0x3e, 0x5b, 0xb4, 0x7f, 0xa8, 0x15, 0x09, 0xfb, 0x74, 0x6e, 0x1d, + 0x44, 0x5b, 0x87, 0x42, 0xa3, 0x9a, 0xcd, 0xea, 0x8d, 0x13, 0xb3, 0x3a, + 0x0d, 0x3b, 0xc8, 0x31, 0x5c, 0x32, 0x5a, 0xc9, 0x6e, 0xc1, 0x79, 0xdc, + 0x4f, 0x3f, 0x9d, 0x47, 0x3d, 0xe3, 0x5f, 0x59, 0x5b, 0xe9, 0x96, 0xa7, + 0x25, 0xff, 0x00, 0xd6, 0x91, 0xd8, 0x67, 0xa5, 0x64, 0x8f, 0x12, 0xde, + 0xdb, 0xc1, 0x34, 0x33, 0x47, 0xe7, 0x33, 0x03, 0xb7, 0x1c, 0xed, 0xfa, + 0xd6, 0xef, 0x84, 0x2c, 0x76, 0xd8, 0xfd, 0xb6, 0x45, 0x3b, 0xe5, 0xe7, + 0x9a, 0xe6, 0xe5, 0x70, 0xbc, 0xa5, 0xf2, 0x3a, 0x54, 0x95, 0x46, 0xa3, + 0x1d, 0xba, 0x96, 0x87, 0x85, 0x34, 0x83, 0x6e, 0xa9, 0x2d, 0x9a, 0x33, + 0x01, 0xc9, 0xe4, 0x1a, 0x82, 0xdb, 0xc3, 0x56, 0xba, 0x53, 0x9b, 0x9b, + 0x70, 0x50, 0x92, 0x7e, 0x4c, 0xe4, 0x01, 0x5d, 0x18, 0xe4, 0xd4, 0x17, + 0xc7, 0x16, 0xc7, 0xeb, 0x51, 0x4e, 0x72, 0xe6, 0xdc, 0xba, 0x91, 0x5c, + 0xaf, 0x43, 0xca, 0x7c, 0x7e, 0x00, 0x9e, 0x0e, 0x83, 0x93, 0x5c, 0x9e, + 0x9a, 0x37, 0x6a, 0x10, 0xfa, 0x6f, 0x15, 0xd6, 0xf8, 0xf1, 0x49, 0x78, + 0x4b, 0x80, 0x0e, 0xe3, 0x8c, 0x7a, 0x57, 0x29, 0xa6, 0xe4, 0xea, 0x30, + 0x85, 0x19, 0xc3, 0x66, 0xbd, 0x68, 0xfc, 0x27, 0x86, 0xfe, 0x26, 0x6e, + 0xf8, 0xa0, 0xab, 0xc3, 0x68, 0x17, 0x96, 0xc9, 0xe2, 0x9b, 0xa4, 0xf8, + 0x7c, 0xc8, 0x16, 0x5b, 0x84, 0xce, 0x7a, 0x27, 0xf8, 0xd6, 0xdc, 0x36, + 0x30, 0xce, 0xcb, 0x23, 0x85, 0x26, 0x31, 0xf7, 0xcf, 0x45, 0xab, 0xb6, + 0x90, 0x4f, 0x7d, 0x2f, 0x91, 0x64, 0xa4, 0x21, 0xfb, 0xd2, 0x54, 0x4a, + 0xa2, 0x48, 0xda, 0x95, 0x26, 0xdf, 0x99, 0x06, 0xf8, 0x6c, 0x00, 0x8e, + 0x38, 0x56, 0x79, 0xfa, 0x2a, 0x81, 0x80, 0xbf, 0x5a, 0xd4, 0xb0, 0xf0, + 0xf5, 0xee, 0xa7, 0x89, 0xb5, 0x09, 0x0a, 0xc7, 0xd4, 0x28, 0xe0, 0x7e, + 0x03, 0xfc, 0x6b, 0x7f, 0x4c, 0xd0, 0x2d, 0x6c, 0x30, 0xec, 0xa2, 0x49, + 0x7d, 0x4f, 0x6a, 0xd7, 0xe8, 0x2b, 0x86, 0x78, 0x86, 0xf4, 0x81, 0xe8, + 0xd3, 0xc3, 0x25, 0xac, 0xf5, 0x29, 0x59, 0x69, 0x76, 0x96, 0x2b, 0x88, + 0xa2, 0x1b, 0xbf, 0xbc, 0x79, 0x35, 0x73, 0x34, 0x51, 0x5c, 0xcd, 0xdc, + 0xea, 0x48, 0x33, 0x48, 0x4d, 0x14, 0x94, 0x86, 0x14, 0x67, 0x9a, 0x4a, + 0x33, 0x48, 0x05, 0xcd, 0x21, 0xa2, 0x8a, 0x06, 0x25, 0x00, 0xf3, 0x46, + 0x45, 0x26, 0x69, 0x00, 0xb9, 0xa4, 0xa0, 0xd2, 0x50, 0x30, 0xa2, 0x8a, + 0x4c, 0xd0, 0x00, 0x68, 0xa2, 0x8a, 0x40, 0x14, 0xd6, 0x3f, 0x29, 0xfa, + 0x53, 0xa9, 0xaf, 0xf7, 0x4f, 0xd2, 0x80, 0x05, 0xfb, 0xa3, 0xe9, 0x41, + 0xa4, 0x5f, 0xba, 0x3e, 0x94, 0xb9, 0xa0, 0x61, 0x8e, 0x29, 0xb8, 0xa7, + 0x66, 0x90, 0x9a, 0x00, 0x31, 0xc5, 0x27, 0x34, 0xe0, 0x68, 0xa0, 0x04, + 0x1c, 0x8a, 0x51, 0x4b, 0xda, 0x8a, 0x04, 0x00, 0xd3, 0xb3, 0x9a, 0x4a, + 0x5c, 0x53, 0x01, 0x45, 0x29, 0xa6, 0x8e, 0x29, 0xc6, 0x98, 0x8c, 0x5d, + 0x62, 0xee, 0x5b, 0x49, 0xa3, 0x78, 0xd8, 0x80, 0x70, 0x31, 0xf8, 0xd2, + 0xc3, 0xae, 0x6d, 0x9b, 0xc9, 0x99, 0x79, 0xf5, 0x15, 0x0f, 0x88, 0xb1, + 0xb1, 0x3e, 0x84, 0xfe, 0x44, 0x56, 0x3d, 0xdb, 0x18, 0xf5, 0x04, 0x20, + 0x67, 0x75, 0x76, 0xd2, 0xa7, 0x19, 0xc1, 0x5d, 0x1c, 0x35, 0x6a, 0x4a, + 0x13, 0x76, 0x67, 0x65, 0x15, 0xdc, 0x32, 0xfd, 0xd6, 0xc1, 0xf4, 0x35, + 0x60, 0x57, 0x14, 0xd7, 0x17, 0x40, 0xca, 0x6d, 0xd0, 0x3e, 0xc7, 0xe5, + 0x49, 0xe7, 0x18, 0xed, 0x56, 0x2d, 0x3c, 0x45, 0xe5, 0xb0, 0x49, 0x77, + 0x44, 0xdf, 0xdd, 0x90, 0x71, 0xf9, 0xd4, 0x4b, 0x0f, 0x6f, 0x85, 0x97, + 0x1c, 0x4d, 0xfe, 0x24, 0x75, 0xf9, 0xa5, 0xcd, 0x67, 0x5b, 0x6a, 0x70, + 0xce, 0x06, 0x48, 0x19, 0xef, 0x9e, 0x2a, 0xf8, 0x20, 0x8c, 0x83, 0x91, + 0x58, 0x34, 0xe3, 0xa3, 0x3a, 0x14, 0x94, 0xb5, 0x43, 0x81, 0xa5, 0xed, + 0x4d, 0x06, 0x94, 0x1a, 0x06, 0x2d, 0x62, 0xeb, 0x7e, 0x1d, 0x83, 0x54, + 0x43, 0x24, 0x60, 0x47, 0x72, 0x39, 0x0c, 0x07, 0x0d, 0xf5, 0xad, 0x9a, + 0x70, 0xa7, 0x19, 0x38, 0xbb, 0xa2, 0x65, 0x15, 0x25, 0x66, 0x79, 0xc6, + 0xe7, 0xb7, 0x91, 0xad, 0x2f, 0x63, 0x2b, 0x22, 0x71, 0xb8, 0xd7, 0x4b, + 0xe1, 0xed, 0x4d, 0x3c, 0xa5, 0xb3, 0x9b, 0xe5, 0x90, 0x72, 0x87, 0xb3, + 0x0a, 0xd1, 0xd5, 0xf4, 0x6b, 0x7d, 0x56, 0xdc, 0xa4, 0x80, 0x2c, 0x80, + 0x7c, 0xae, 0x3a, 0x8f, 0xfe, 0xb5, 0x70, 0xa6, 0x39, 0xf4, 0xeb, 0x8f, + 0xb1, 0x5d, 0x12, 0x85, 0x0f, 0xee, 0xe4, 0xf4, 0xf4, 0xe7, 0xd2, 0xbb, + 0x14, 0x95, 0x68, 0xf2, 0xbd, 0xce, 0x37, 0x17, 0x46, 0x5c, 0xcb, 0x63, + 0xd3, 0x28, 0xac, 0x7d, 0x0f, 0x57, 0xfb, 0x74, 0x66, 0x09, 0x8e, 0x2e, + 0x23, 0xeb, 0xfe, 0xd0, 0xf5, 0xad, 0x8a, 0xe4, 0x71, 0x71, 0x76, 0x67, + 0x5c, 0x64, 0xa4, 0xae, 0x8e, 0x1f, 0xe2, 0x06, 0x97, 0x1c, 0xb1, 0x41, + 0x7c, 0xaa, 0xc6, 0x45, 0x05, 0x08, 0x5f, 0xe2, 0xf4, 0xae, 0x4a, 0xce, + 0x33, 0x69, 0x6a, 0x91, 0x5c, 0xf2, 0x1f, 0xe6, 0x46, 0x1f, 0xc2, 0xdd, + 0xc5, 0x7a, 0x17, 0x8e, 0x13, 0x7f, 0x86, 0x67, 0x1e, 0x84, 0x1a, 0xe2, + 0xee, 0xad, 0x4b, 0xe9, 0xea, 0x23, 0x5f, 0xba, 0x03, 0x28, 0xfc, 0x3a, + 0x7e, 0x55, 0xe8, 0x61, 0xb5, 0x86, 0xa7, 0x06, 0x25, 0x5a, 0x67, 0xa3, + 0x5a, 0xac, 0x77, 0xba, 0x0c, 0x4a, 0x08, 0x65, 0x31, 0x01, 0xfa, 0x73, + 0x5e, 0x45, 0x73, 0x13, 0x69, 0x3e, 0x20, 0x2b, 0xd3, 0x64, 0x99, 0xfd, + 0x6b, 0xb4, 0xf8, 0x7f, 0xa8, 0x4a, 0xff, 0x00, 0x6b, 0xb0, 0x96, 0x42, + 0xc0, 0x0d, 0xf1, 0x93, 0xd8, 0x57, 0x1b, 0xe2, 0x01, 0x72, 0x6f, 0xe4, + 0x7b, 0x97, 0x0f, 0x20, 0x6e, 0x18, 0x0c, 0x71, 0x9c, 0x7f, 0x85, 0x2a, + 0x51, 0x71, 0x94, 0xa2, 0x15, 0x25, 0xcd, 0x18, 0xc8, 0x9f, 0x4a, 0x5f, + 0xb3, 0x78, 0xc6, 0xe6, 0x0f, 0xe1, 0x9a, 0x36, 0x3f, 0xd6, 0xba, 0x70, + 0xb5, 0xcb, 0x2c, 0x85, 0x35, 0xed, 0x1a, 0xec, 0x74, 0x99, 0x42, 0x37, + 0xf2, 0x35, 0xd6, 0xed, 0xe4, 0xd7, 0xbb, 0x81, 0x7e, 0xe3, 0x47, 0x91, + 0x8b, 0x5e, 0xf2, 0x63, 0x42, 0xd3, 0x82, 0xd3, 0x82, 0xd3, 0x82, 0xd7, + 0x79, 0xc8, 0x34, 0x2d, 0x38, 0x2d, 0x3c, 0x2d, 0x3c, 0x2d, 0x20, 0x23, + 0x0b, 0x4f, 0x0b, 0x52, 0x05, 0xa7, 0x84, 0xa0, 0x08, 0x82, 0xd3, 0xc2, + 0xd4, 0x81, 0x29, 0xe1, 0x28, 0x02, 0x20, 0x94, 0xe0, 0xb5, 0x28, 0x4a, + 0x78, 0x4a, 0x00, 0x84, 0x25, 0x3b, 0x65, 0x4c, 0x12, 0x9d, 0xb2, 0x80, + 0x20, 0xd9, 0x4b, 0xb2, 0xac, 0x6c, 0xa5, 0xd9, 0x40, 0x15, 0xb6, 0x51, + 0xb2, 0xac, 0xf9, 0x74, 0x6c, 0xa0, 0x0a, 0xde, 0x5d, 0x1e, 0x5d, 0x59, + 0xf2, 0xe8, 0xd9, 0x40, 0x15, 0x7c, 0xba, 0x36, 0x55, 0x9f, 0x2e, 0x8d, + 0x94, 0x01, 0x57, 0xcb, 0xa3, 0xcb, 0xab, 0x5b, 0x29, 0x3c, 0xba, 0x43, + 0x2a, 0xec, 0xa4, 0xd9, 0x56, 0xfc, 0xba, 0x4f, 0x2e, 0x98, 0x15, 0x76, + 0x52, 0x6c, 0xab, 0x5e, 0x5d, 0x27, 0x97, 0x48, 0x0a, 0xa5, 0x29, 0xa5, + 0x2a, 0xde, 0xca, 0x69, 0x4a, 0x60, 0x55, 0x29, 0x4c, 0x29, 0x56, 0x8a, + 0x53, 0x4a, 0x50, 0x05, 0x52, 0x94, 0xc2, 0xb5, 0x68, 0xa5, 0x46, 0x56, + 0x81, 0x15, 0xca, 0xd3, 0x0a, 0xd5, 0x82, 0xb4, 0xc2, 0xb4, 0x01, 0x01, + 0x5a, 0x61, 0x15, 0x39, 0x5a, 0x69, 0x5a, 0x00, 0x80, 0x8a, 0x69, 0x15, + 0x31, 0x14, 0xd2, 0x29, 0x81, 0x09, 0x5a, 0x61, 0x15, 0x31, 0x14, 0xd2, + 0xb4, 0x01, 0x09, 0x14, 0xd2, 0x2a, 0x62, 0xb4, 0xc2, 0x29, 0x01, 0x11, + 0x14, 0x84, 0x54, 0x84, 0x53, 0x48, 0xa0, 0x08, 0xc8, 0xa6, 0x91, 0x52, + 0x11, 0x4d, 0x22, 0x98, 0x88, 0xc8, 0xa6, 0x91, 0x52, 0x11, 0x4d, 0x22, + 0x80, 0x18, 0x45, 0x37, 0x15, 0x26, 0x29, 0xa4, 0x50, 0x21, 0x84, 0x53, + 0x48, 0xa9, 0x31, 0x48, 0x45, 0x00, 0x46, 0x45, 0x34, 0x8a, 0x90, 0x8a, + 0x42, 0x28, 0x02, 0x32, 0x29, 0x31, 0x4f, 0x22, 0x90, 0x8a, 0x62, 0x19, + 0x8a, 0x4c, 0x53, 0xf1, 0x49, 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3f, 0x14, + 0x62, 0x80, 0x19, 0x8a, 0x5c, 0x53, 0xb1, 0x46, 0x28, 0x03, 0x33, 0x5a, + 0xe3, 0x4e, 0x6f, 0xa8, 0xfe, 0x75, 0x16, 0x42, 0x68, 0xb6, 0xc3, 0xb9, + 0x24, 0xd4, 0xfa, 0xd8, 0xff, 0x00, 0x89, 0x73, 0x7d, 0x47, 0xf3, 0xa8, + 0x2e, 0x06, 0x34, 0xeb, 0x45, 0xff, 0x00, 0x64, 0x9a, 0xf1, 0xf3, 0x1f, + 0x8d, 0x1e, 0x9e, 0x0b, 0xe0, 0x67, 0x41, 0xa0, 0x49, 0x33, 0xda, 0x6c, + 0x48, 0xc0, 0x8d, 0xb0, 0xa4, 0xe7, 0x9e, 0x4d, 0x74, 0x52, 0x91, 0x12, + 0x38, 0xdc, 0xa8, 0x07, 0x03, 0x77, 0x35, 0x81, 0xa0, 0xee, 0x58, 0xe0, + 0x85, 0x7a, 0xb1, 0x04, 0xfd, 0x2b, 0xa0, 0xb9, 0x2d, 0x0c, 0x6e, 0xaa, + 0x63, 0x42, 0x4f, 0xf1, 0x73, 0x5e, 0x5b, 0x3d, 0x05, 0xd0, 0xa6, 0x40, + 0x7e, 0xf6, 0xef, 0xfa, 0x54, 0x22, 0xcb, 0xcd, 0xbb, 0x8f, 0xcc, 0x7f, + 0x2a, 0x1f, 0xe2, 0xf2, 0xde, 0x9e, 0x5a, 0x43, 0xd5, 0x21, 0x7f, 0xd2, + 0xa1, 0x8e, 0xda, 0x3b, 0x8b, 0xf8, 0xfc, 0xf5, 0xf2, 0x61, 0xc1, 0x0c, + 0x51, 0xab, 0x29, 0x3d, 0x19, 0xac, 0x7e, 0x24, 0x6e, 0xd9, 0xd8, 0x58, + 0xc3, 0x63, 0x76, 0xd6, 0xf3, 0x79, 0xd9, 0x1f, 0x36, 0xec, 0x64, 0x1a, + 0xdf, 0xd2, 0xc0, 0x5d, 0x2a, 0xdc, 0x0e, 0x3e, 0x4a, 0xc1, 0xb7, 0xb2, + 0xb3, 0xb5, 0xd3, 0xee, 0x9a, 0xd2, 0xe1, 0xa4, 0x0c, 0x3e, 0x6c, 0x9c, + 0x91, 0x5b, 0xba, 0x67, 0xfc, 0x82, 0xed, 0xbf, 0xdc, 0x15, 0xc4, 0xdd, + 0xd7, 0xcc, 0xed, 0x4b, 0x5f, 0x91, 0x70, 0x55, 0x7b, 0xff, 0x00, 0xf8, + 0xf6, 0x3f, 0x5a, 0x9c, 0x55, 0x6d, 0x40, 0x81, 0x6c, 0xc4, 0x9c, 0x01, + 0x4e, 0x9f, 0xc4, 0x85, 0x53, 0xe1, 0x67, 0x95, 0x78, 0xe8, 0xbd, 0xc6, + 0xa1, 0x6f, 0x6d, 0x08, 0x2f, 0x26, 0xd2, 0x4a, 0x8e, 0xd4, 0xdd, 0x2f, + 0x47, 0x4b, 0x6b, 0x4d, 0xec, 0x42, 0x92, 0x33, 0x23, 0x91, 0xcf, 0xd0, + 0x56, 0xf5, 0xcc, 0x30, 0x3d, 0xec, 0xb7, 0xae, 0x00, 0x18, 0xc1, 0x63, + 0xdc, 0x0a, 0xb5, 0xa5, 0xe9, 0x13, 0x6b, 0x17, 0x0b, 0x71, 0x36, 0x63, + 0xb4, 0x5f, 0xba, 0x9d, 0x33, 0x5e, 0x94, 0xea, 0x72, 0xc7, 0x53, 0xcc, + 0xa5, 0x4b, 0x9a, 0x5a, 0x6e, 0x41, 0xa4, 0x69, 0x53, 0x6a, 0x8e, 0x01, + 0x43, 0x1d, 0xa2, 0x9f, 0xce, 0xbb, 0x8b, 0x5b, 0x48, 0x2c, 0xe1, 0x11, + 0xc2, 0x81, 0x40, 0xfd, 0x6a, 0x58, 0x61, 0x8e, 0x08, 0x84, 0x71, 0xa8, + 0x55, 0x51, 0x80, 0x05, 0x2d, 0x79, 0xd5, 0x2a, 0x39, 0xbd, 0x4f, 0x4a, + 0x9d, 0x35, 0x05, 0x64, 0x19, 0xe6, 0x8e, 0xd4, 0x87, 0xad, 0x2f, 0x6a, + 0xcc, 0xd0, 0x4a, 0x0d, 0x26, 0x69, 0x09, 0xc0, 0xa4, 0x30, 0xcd, 0x25, + 0x56, 0xfb, 0x6c, 0x5e, 0x70, 0x89, 0x5b, 0x73, 0x13, 0x8e, 0x2a, 0xd5, + 0x0d, 0x3e, 0xa0, 0x9a, 0x7b, 0x06, 0x68, 0xa4, 0xa2, 0x81, 0x88, 0x68, + 0xa3, 0x34, 0x94, 0x86, 0x14, 0x52, 0x51, 0x40, 0x0b, 0x49, 0x45, 0x14, + 0x00, 0x94, 0x1a, 0x33, 0x45, 0x21, 0x85, 0x14, 0x1a, 0x4c, 0xd0, 0x03, + 0xa9, 0xaf, 0xf7, 0x4f, 0xd2, 0x8c, 0xd2, 0x37, 0xdd, 0x3f, 0x4a, 0x00, + 0x6a, 0xb0, 0xda, 0x3e, 0x94, 0xec, 0x8a, 0xca, 0x4b, 0xe0, 0x54, 0x73, + 0xda, 0xa5, 0x17, 0xab, 0xeb, 0x4f, 0x95, 0x8a, 0xe8, 0xbf, 0x9a, 0x53, + 0x54, 0x45, 0xda, 0x9e, 0xf5, 0x22, 0xdc, 0x02, 0x3a, 0xd1, 0x60, 0xb9, + 0x64, 0x1a, 0x71, 0x22, 0xaa, 0x89, 0x86, 0x7a, 0xd3, 0xc4, 0xb9, 0xa5, + 0x61, 0x93, 0x03, 0x4a, 0x0d, 0x47, 0xba, 0x95, 0x58, 0x1a, 0x00, 0x93, + 0x34, 0xa1, 0xa9, 0x9d, 0xe9, 0xc2, 0x81, 0x0e, 0xcf, 0x34, 0xec, 0xd3, + 0x29, 0xd4, 0xc0, 0xc2, 0xf1, 0x0f, 0xca, 0xd0, 0x37, 0xb3, 0x0f, 0xd2, + 0xb1, 0x27, 0x70, 0xf3, 0x42, 0xcc, 0x3b, 0x02, 0x2b, 0x6f, 0xc4, 0x40, + 0xf9, 0x50, 0xb8, 0xe4, 0x2b, 0x9c, 0xfe, 0x46, 0xb0, 0x1c, 0xee, 0x8e, + 0xdd, 0xb1, 0xd5, 0x56, 0xbd, 0x0c, 0x3f, 0xc0, 0x79, 0xd8, 0x85, 0xef, + 0x9a, 0x76, 0x4c, 0x1a, 0xf2, 0x75, 0x03, 0x90, 0x01, 0x35, 0x66, 0x7b, + 0x48, 0x6e, 0x57, 0x6c, 0x91, 0x86, 0x1f, 0x4a, 0xa3, 0x62, 0xc0, 0x6a, + 0x93, 0x0f, 0x54, 0x53, 0x5a, 0x6e, 0x76, 0xf2, 0x2a, 0xe5, 0xb9, 0x9a, + 0xd8, 0xc7, 0x6d, 0x32, 0xe2, 0xc9, 0x8b, 0xd9, 0x4a, 0x76, 0xf7, 0x8d, + 0xba, 0x54, 0xf6, 0x9e, 0x22, 0x6b, 0x59, 0x56, 0x2b, 0xa0, 0xd0, 0x9e, + 0x9f, 0x37, 0xdd, 0x3f, 0x8d, 0x50, 0x1e, 0x29, 0x80, 0x6a, 0x72, 0x5a, + 0x31, 0xc0, 0x8c, 0x90, 0xc5, 0xbd, 0x6b, 0x5d, 0x92, 0xd3, 0x52, 0x83, + 0xe6, 0x0a, 0xea, 0x68, 0x92, 0xd2, 0xd2, 0x41, 0x19, 0x75, 0x8b, 0x37, + 0xad, 0xaf, 0xe1, 0xb8, 0x00, 0x86, 0x00, 0x9f, 0x7e, 0xb5, 0x70, 0x57, + 0x05, 0xf6, 0x1b, 0xcd, 0x2d, 0x8b, 0xd9, 0xb9, 0x96, 0x11, 0xcf, 0x94, + 0xdd, 0xbe, 0x95, 0xb7, 0xa5, 0x78, 0x86, 0x3b, 0x8f, 0xdd, 0xc9, 0x95, + 0x90, 0x75, 0x46, 0xea, 0x2b, 0x9e, 0x74, 0x7a, 0xc4, 0xea, 0x85, 0x7e, + 0x92, 0x3a, 0x2a, 0x50, 0x69, 0x89, 0x22, 0x48, 0xa1, 0x94, 0x82, 0x0d, + 0x3a, 0xb9, 0xcd, 0xc7, 0xe6, 0xb3, 0x35, 0x9d, 0x22, 0x3d, 0x56, 0xd4, + 0xae, 0x00, 0x99, 0x7e, 0xe3, 0x7f, 0x4a, 0xd2, 0xa5, 0x15, 0x49, 0xb4, + 0xee, 0x84, 0xd2, 0x6a, 0xcc, 0xf3, 0x88, 0x5e, 0x7b, 0x1b, 0xac, 0x36, + 0x52, 0xe6, 0x03, 0xc6, 0x7b, 0x8f, 0x4a, 0xef, 0x74, 0xeb, 0xe8, 0xf5, + 0x0b, 0x34, 0x9e, 0x3e, 0xe3, 0xe6, 0x1e, 0x86, 0xb3, 0x7c, 0x41, 0xa3, + 0xfd, 0xb6, 0x13, 0x71, 0x00, 0xc5, 0xc2, 0x0e, 0xdf, 0xc4, 0x3d, 0x2b, + 0x0f, 0x45, 0xd4, 0xfe, 0xc3, 0x78, 0x0b, 0x36, 0x22, 0x90, 0xed, 0x91, + 0x7f, 0xba, 0x7d, 0x6b, 0xa1, 0xfe, 0xf2, 0x37, 0x5b, 0xa3, 0x99, 0x5e, + 0x94, 0xac, 0xf6, 0x66, 0xdf, 0x8c, 0x06, 0xef, 0x0b, 0xde, 0x7b, 0x2e, + 0x6b, 0x83, 0xd1, 0xae, 0xc4, 0xd6, 0xc2, 0xdd, 0x9b, 0x2c, 0xa3, 0x20, + 0x9e, 0xf5, 0xdf, 0x78, 0xaf, 0x0d, 0xe1, 0x6b, 0xf2, 0x39, 0x1e, 0x5e, + 0x6b, 0xc8, 0xf4, 0xeb, 0x8f, 0x22, 0xea, 0x19, 0x0f, 0x40, 0xbc, 0xd7, + 0x4e, 0x15, 0x5e, 0x9b, 0x39, 0xf1, 0x6e, 0xd5, 0x13, 0x3a, 0x7d, 0x0e, + 0xec, 0xe9, 0x1e, 0x21, 0x5e, 0x31, 0x1b, 0x36, 0x0f, 0xfb, 0xad, 0xfe, + 0x06, 0xa8, 0xf8, 0x89, 0x0c, 0x8f, 0x3b, 0x0e, 0xa9, 0x33, 0x2f, 0xe1, + 0x9a, 0xd3, 0x4d, 0x22, 0xf3, 0x55, 0x95, 0x26, 0xb3, 0x89, 0x5a, 0x25, + 0xfb, 0xd2, 0x6e, 0xc6, 0x3d, 0x87, 0xad, 0x32, 0xc3, 0x4c, 0x3a, 0xa4, + 0xd7, 0xb6, 0xb7, 0x0e, 0xc1, 0xc0, 0x67, 0xc8, 0xee, 0x41, 0xad, 0x2f, + 0x1e, 0x66, 0xcc, 0xed, 0x2e, 0x54, 0xba, 0x1c, 0xdc, 0x92, 0x13, 0xa5, + 0x59, 0xca, 0x3e, 0xf5, 0xbd, 0xc0, 0xe7, 0xd0, 0x1c, 0x1a, 0xef, 0x98, + 0x06, 0x72, 0x47, 0x43, 0x5c, 0x07, 0x96, 0x57, 0x4e, 0xbf, 0xb7, 0x3f, + 0x7a, 0x32, 0x1f, 0xf2, 0x3f, 0xfd, 0x7a, 0xef, 0x2c, 0x9b, 0xcd, 0xb1, + 0xb6, 0x93, 0xbb, 0x44, 0xa4, 0xfe, 0x55, 0xe9, 0xe5, 0xef, 0x56, 0x8e, + 0x0c, 0x62, 0xd1, 0x32, 0x40, 0xb4, 0xf0, 0xb4, 0xe0, 0xb4, 0xf0, 0xb5, + 0xea, 0x1c, 0x03, 0x42, 0xd3, 0xc2, 0xd3, 0xc2, 0xd3, 0xd5, 0x68, 0x01, + 0xa1, 0x69, 0xe1, 0x29, 0xc1, 0x6a, 0x45, 0x5a, 0x43, 0x1a, 0x12, 0x9c, + 0x12, 0xa4, 0x54, 0xa9, 0x02, 0x50, 0x04, 0x41, 0x29, 0xe1, 0x2a, 0x61, + 0x1d, 0x3c, 0x25, 0x00, 0x42, 0x12, 0x9c, 0x23, 0xab, 0x02, 0x3a, 0x78, + 0x8e, 0x90, 0x15, 0xbc, 0xba, 0x70, 0x8e, 0xac, 0x88, 0xa9, 0xc2, 0x2a, + 0x2e, 0x05, 0x5f, 0x2a, 0x8f, 0x2a, 0xae, 0x08, 0xa9, 0x7c, 0xaa, 0x2e, + 0x32, 0x97, 0x95, 0x47, 0x95, 0x57, 0x3c, 0xbf, 0x6a, 0x3c, 0xba, 0x04, + 0x52, 0xf2, 0xa8, 0xf2, 0xea, 0xe7, 0x97, 0x49, 0xe5, 0xd0, 0x05, 0x3f, + 0x2e, 0x93, 0xcb, 0xab, 0xbe, 0x55, 0x27, 0x95, 0xed, 0x40, 0x14, 0xfc, + 0xba, 0x4f, 0x2e, 0xae, 0x79, 0x74, 0x9e, 0x5f, 0xb5, 0x00, 0x54, 0xf2, + 0xe9, 0xa6, 0x3a, 0xb9, 0xe5, 0xd3, 0x4c, 0x74, 0x5c, 0x65, 0x32, 0x94, + 0xc2, 0x95, 0x70, 0xc7, 0x4c, 0x31, 0xd0, 0x22, 0x99, 0x4a, 0x61, 0x4a, + 0xb8, 0x52, 0xa3, 0x29, 0x40, 0x15, 0x0a, 0x54, 0x65, 0x6a, 0xd9, 0x4a, + 0x8d, 0x92, 0x98, 0x15, 0x19, 0x69, 0x85, 0x6a, 0xd3, 0x25, 0x46, 0x56, + 0x80, 0x2b, 0x15, 0xa8, 0xca, 0xd5, 0x92, 0xb4, 0xc2, 0xb4, 0x01, 0x58, + 0xad, 0x30, 0x8a, 0xb0, 0x56, 0x98, 0x56, 0x80, 0x20, 0x22, 0x9a, 0x45, + 0x4c, 0x56, 0x98, 0x45, 0x30, 0x21, 0x22, 0x98, 0x45, 0x4e, 0x45, 0x30, + 0x8a, 0x00, 0x84, 0x8a, 0x61, 0x15, 0x31, 0x14, 0xc2, 0x28, 0x02, 0x22, + 0x29, 0xa4, 0x54, 0xa4, 0x53, 0x48, 0xa0, 0x44, 0x44, 0x53, 0x48, 0xa9, + 0x48, 0xa6, 0x91, 0x40, 0x11, 0xe2, 0x9a, 0x45, 0x48, 0x45, 0x21, 0x14, + 0x08, 0x8f, 0x14, 0x98, 0xa7, 0x91, 0x49, 0x8a, 0x60, 0x46, 0x45, 0x21, + 0x15, 0x21, 0x14, 0x84, 0x50, 0x04, 0x78, 0xa6, 0x91, 0x52, 0x11, 0x49, + 0x8a, 0x04, 0x47, 0x8a, 0x31, 0x4f, 0x22, 0x93, 0x14, 0x00, 0xcc, 0x51, + 0x8a, 0x7e, 0x28, 0xc5, 0x00, 0x33, 0x14, 0x62, 0x9f, 0x8a, 0x31, 0x40, + 0x19, 0x9a, 0xd2, 0x6e, 0xd3, 0x9b, 0x1e, 0xa3, 0xf9, 0xd4, 0x17, 0x4a, + 0x44, 0x36, 0xa9, 0x83, 0x9f, 0x2c, 0x71, 0x56, 0xf5, 0x75, 0xcd, 0x89, + 0x1d, 0x3e, 0x61, 0xfc, 0xe8, 0x85, 0x1a, 0xe3, 0x57, 0xb7, 0x87, 0x3f, + 0x75, 0x57, 0xf9, 0x57, 0x8b, 0x98, 0xbf, 0xde, 0x2f, 0x43, 0xd5, 0xc0, + 0xaf, 0x70, 0xdc, 0xd0, 0x6d, 0x9a, 0x4d, 0x4e, 0x30, 0x43, 0x2a, 0xa4, + 0x79, 0x3d, 0xab, 0x52, 0xf1, 0x97, 0x63, 0xe6, 0xdc, 0xcd, 0xf3, 0x77, + 0xed, 0xf9, 0xd5, 0xed, 0x1e, 0xd7, 0x17, 0x77, 0x92, 0x10, 0x3e, 0x44, + 0x0b, 0x9a, 0xa9, 0x79, 0x1c, 0x92, 0xac, 0x87, 0xcd, 0x11, 0x60, 0xf6, + 0x19, 0xaf, 0x2d, 0x4a, 0xed, 0x9e, 0x83, 0x8d, 0x92, 0x33, 0x03, 0x5b, + 0x33, 0x7c, 0xd6, 0x92, 0x21, 0xff, 0x00, 0x64, 0x7f, 0x85, 0x44, 0x96, + 0xdf, 0x6c, 0xd4, 0xe2, 0xb7, 0x82, 0x49, 0x61, 0x8d, 0x81, 0xc9, 0x6c, + 0xf0, 0x7f, 0x1a, 0xb3, 0xe5, 0xdc, 0xc7, 0xf7, 0x66, 0x8d, 0x8f, 0xba, + 0xd4, 0x0d, 0x79, 0x76, 0xb7, 0x49, 0x00, 0x84, 0x49, 0x23, 0x0c, 0x8d, + 0x87, 0x9a, 0x99, 0x6d, 0xa1, 0x51, 0xdd, 0x5d, 0x5c, 0xde, 0x83, 0x47, + 0x93, 0x4c, 0xd3, 0xaf, 0x49, 0x9c, 0x48, 0x5d, 0x73, 0x9c, 0x57, 0x43, + 0xa5, 0xff, 0x00, 0xc8, 0x2a, 0xdb, 0xfe, 0xb9, 0x8f, 0xe5, 0x5c, 0xa5, + 0x8b, 0xde, 0xae, 0x99, 0x7f, 0xf6, 0xa5, 0x91, 0x17, 0x1f, 0x28, 0x7e, + 0xd5, 0xd5, 0xe9, 0x9f, 0xf2, 0x0a, 0xb5, 0xff, 0x00, 0xae, 0x6b, 0xfc, + 0xab, 0x8a, 0x5b, 0x6a, 0xfa, 0x9d, 0xcb, 0xc9, 0x5b, 0x42, 0xcd, 0x61, + 0xeb, 0xf7, 0x9b, 0x95, 0x6d, 0x23, 0x6e, 0x4f, 0x2e, 0x41, 0xe8, 0x2b, + 0x4a, 0xfe, 0xf1, 0x6c, 0xad, 0x1e, 0x56, 0x3c, 0x81, 0xf2, 0x8f, 0x53, + 0x5c, 0x54, 0x46, 0x6d, 0x56, 0xe9, 0xad, 0x62, 0x05, 0x9d, 0xcf, 0xef, + 0x64, 0xfe, 0x62, 0xb4, 0xa1, 0x15, 0x7e, 0x77, 0xb2, 0x31, 0xaf, 0x27, + 0xf0, 0x47, 0x76, 0x59, 0xd3, 0xb4, 0xf6, 0xd6, 0x2e, 0x80, 0xc1, 0x16, + 0x51, 0x1e, 0x4f, 0xf7, 0xcd, 0x76, 0xb0, 0xc4, 0x90, 0xc4, 0x23, 0x8d, + 0x40, 0x55, 0xe0, 0x01, 0x50, 0xd9, 0x59, 0xc5, 0x63, 0x6a, 0x90, 0x44, + 0x30, 0x14, 0x75, 0xf5, 0xab, 0x22, 0xa6, 0xa5, 0x47, 0x37, 0x73, 0x4a, + 0x74, 0xd4, 0x23, 0x60, 0x34, 0xd2, 0x69, 0x4d, 0x34, 0xf0, 0x6b, 0x23, + 0x44, 0x21, 0xeb, 0x4b, 0xda, 0x98, 0xee, 0xa8, 0x37, 0x31, 0xc0, 0x15, + 0x8b, 0xa9, 0xeb, 0x91, 0xdb, 0xc6, 0x70, 0xdb, 0x47, 0xaf, 0x73, 0x55, + 0x08, 0x39, 0xbb, 0x22, 0x67, 0x52, 0x30, 0x5a, 0x9a, 0x57, 0x37, 0xb1, + 0x5b, 0x8e, 0x4e, 0x5b, 0xd0, 0x56, 0x59, 0xbd, 0x7b, 0xc6, 0xe5, 0xbf, + 0x77, 0xe8, 0xa7, 0x8a, 0xc1, 0x66, 0xbd, 0xd5, 0x33, 0xc3, 0x41, 0x0b, + 0x75, 0x27, 0xef, 0x1a, 0xd2, 0xb4, 0x8a, 0x3b, 0x38, 0x16, 0x25, 0xce, + 0xd5, 0xe0, 0x7b, 0xd7, 0x4c, 0x69, 0x46, 0x3e, 0x6c, 0xe5, 0x95, 0x59, + 0x4b, 0xc9, 0x17, 0x63, 0x51, 0x1d, 0xdc, 0x64, 0x0e, 0x32, 0x2b, 0x68, + 0x9e, 0x4d, 0x60, 0xb3, 0x7c, 0xe9, 0xd7, 0x15, 0xb8, 0xa7, 0xe5, 0x15, + 0x8d, 0x7e, 0x86, 0xd8, 0x7e, 0xa2, 0xe6, 0x96, 0x93, 0xbd, 0x21, 0xac, + 0x0e, 0x91, 0x68, 0x34, 0x76, 0xa4, 0xa0, 0x00, 0xd2, 0x66, 0x82, 0xc0, + 0x53, 0x0b, 0xa8, 0xef, 0x40, 0x12, 0x13, 0x49, 0x9a, 0x85, 0xa7, 0x02, + 0xa3, 0x37, 0x23, 0xd6, 0x80, 0x2c, 0x9a, 0x4c, 0xd5, 0x43, 0x74, 0x3d, + 0x6a, 0x36, 0xbb, 0x1e, 0xb4, 0x59, 0x85, 0xcb, 0xe4, 0xd2, 0x6e, 0x15, + 0x9c, 0x6f, 0x07, 0xad, 0x34, 0xde, 0x0f, 0x5a, 0x39, 0x58, 0x73, 0x23, + 0x4f, 0x22, 0x91, 0x98, 0x6d, 0x3f, 0x4a, 0xcc, 0xfb, 0x68, 0xf5, 0xa4, + 0x6b, 0xd1, 0xb4, 0xf3, 0xda, 0x9f, 0x2b, 0x17, 0x32, 0x39, 0x85, 0xd4, + 0x78, 0x1c, 0xd4, 0xab, 0x7f, 0xef, 0x5c, 0xc2, 0xce, 0xc3, 0xbd, 0x48, + 0x2e, 0x9b, 0xd6, 0xbd, 0x1f, 0x62, 0x8f, 0x3f, 0xda, 0xb3, 0xa9, 0x5d, + 0x43, 0xde, 0xa6, 0x5d, 0x40, 0x7f, 0x7a, 0xb9, 0x45, 0xba, 0x3e, 0xb5, + 0x2a, 0xde, 0x1f, 0x5a, 0x97, 0x40, 0xa5, 0x59, 0x9d, 0x62, 0xdf, 0x8c, + 0xf5, 0xab, 0x31, 0xde, 0xfb, 0xd7, 0x1e, 0xb7, 0xc4, 0x1e, 0xb5, 0x66, + 0x3b, 0xf3, 0xeb, 0x59, 0xba, 0x05, 0xaa, 0xc7, 0x5c, 0xb7, 0x80, 0xf7, + 0xa9, 0x92, 0xe4, 0x7a, 0xd7, 0x29, 0x1e, 0xa1, 0xef, 0x56, 0xa3, 0xbf, + 0xcf, 0x7a, 0xca, 0x54, 0x8d, 0x55, 0x53, 0xa9, 0x59, 0x83, 0x77, 0xa9, + 0x56, 0x41, 0x9e, 0xb5, 0xcf, 0x43, 0x7b, 0xef, 0x57, 0x23, 0xbc, 0x07, + 0xbd, 0x66, 0xe0, 0xd1, 0xa2, 0x9a, 0x66, 0xc8, 0x61, 0x4f, 0xce, 0x45, + 0x67, 0x25, 0xd0, 0x38, 0xe6, 0xac, 0x24, 0xd9, 0x15, 0x05, 0xdc, 0xce, + 0xf1, 0x02, 0x93, 0x68, 0x8d, 0x9e, 0x15, 0xc1, 0x35, 0xce, 0x7f, 0xcb, + 0xbc, 0x1f, 0xee, 0xd7, 0x4b, 0xae, 0x65, 0xb4, 0xf2, 0x47, 0x40, 0xc0, + 0x91, 0xed, 0x9a, 0xe6, 0x09, 0xff, 0x00, 0x43, 0x84, 0x8e, 0xc4, 0xff, + 0x00, 0x3a, 0xef, 0xc3, 0x7c, 0x07, 0x06, 0x27, 0xe3, 0x2e, 0xda, 0x12, + 0x35, 0x62, 0x4f, 0x78, 0x85, 0x6b, 0x39, 0xf9, 0x6b, 0x26, 0x23, 0xfe, + 0x9b, 0x03, 0x1f, 0xee, 0x56, 0x94, 0x87, 0x8a, 0xd6, 0x5b, 0x98, 0xad, + 0x8f, 0x37, 0xd7, 0x2c, 0xa0, 0x4d, 0x4a, 0xf6, 0xe1, 0x49, 0x69, 0x4c, + 0x84, 0x6d, 0x53, 0xc2, 0xfb, 0x9a, 0xad, 0xa7, 0xeb, 0x7a, 0x86, 0x9f, + 0x3a, 0xc7, 0x1e, 0xe9, 0x63, 0xc6, 0x46, 0x3b, 0x56, 0x96, 0xb1, 0x68, + 0x13, 0x54, 0xbb, 0x9a, 0x49, 0x7c, 0xb8, 0x9b, 0x82, 0x98, 0xc9, 0x62, + 0x7d, 0x3f, 0x2a, 0xc9, 0x96, 0x55, 0x0e, 0xd6, 0xd1, 0xaa, 0xc6, 0x84, + 0x7c, 0xa4, 0x7f, 0x17, 0xd6, 0xba, 0xec, 0x9a, 0xd4, 0xe5, 0xbb, 0x4c, + 0xef, 0x74, 0x7f, 0x14, 0xda, 0xdf, 0xa8, 0x57, 0x60, 0xb2, 0x7a, 0x56, + 0x8d, 0xee, 0x97, 0x05, 0xef, 0xef, 0x22, 0x3b, 0x26, 0x1c, 0xab, 0xa7, + 0x5a, 0xf2, 0x8f, 0xb3, 0x7d, 0x94, 0xb4, 0xc6, 0x46, 0x13, 0x71, 0x85, + 0x53, 0xc0, 0xfa, 0xd7, 0x43, 0xa2, 0x78, 0xbe, 0xe2, 0xdd, 0xc2, 0x5d, + 0xab, 0x14, 0x53, 0xb4, 0xbe, 0x38, 0x35, 0x84, 0xe8, 0xdb, 0x54, 0x6d, + 0x1a, 0xb7, 0xd1, 0x9d, 0x95, 0x9e, 0xa9, 0x75, 0xa6, 0xce, 0x21, 0xbd, + 0x18, 0x1d, 0x04, 0x83, 0xee, 0xb7, 0xd6, 0xba, 0xbb, 0x5b, 0xb8, 0xee, + 0x63, 0x05, 0x48, 0xcf, 0xa5, 0x73, 0xb6, 0xf7, 0x36, 0x7a, 0xbd, 0xb1, + 0x03, 0x6b, 0xab, 0x0e, 0x86, 0xaa, 0xff, 0x00, 0xa4, 0xe8, 0x72, 0x86, + 0x52, 0xd2, 0x5a, 0x7a, 0xf5, 0x29, 0xff, 0x00, 0xd6, 0xae, 0x69, 0xd3, + 0x52, 0xf5, 0x3a, 0x29, 0xd4, 0x70, 0xf4, 0x3b, 0x3c, 0xd3, 0x81, 0xac, + 0xfb, 0x1d, 0x4a, 0x2b, 0xd8, 0x95, 0x91, 0xc1, 0x24, 0x70, 0x47, 0x7a, + 0xba, 0x2b, 0x91, 0xa7, 0x17, 0x66, 0x76, 0x26, 0xa4, 0xae, 0x87, 0x13, + 0x8a, 0xf2, 0xdf, 0x88, 0x21, 0xf4, 0xbd, 0x62, 0x0b, 0x8b, 0x51, 0xb5, + 0x5d, 0x77, 0x38, 0x1d, 0xcd, 0x7a, 0x4d, 0xf4, 0xef, 0x6d, 0x67, 0x24, + 0xc8, 0x9b, 0xca, 0x0d, 0xdb, 0x7d, 0x45, 0x79, 0x97, 0x8d, 0xf5, 0x4b, + 0x5d, 0x52, 0x4b, 0x79, 0x21, 0x6c, 0xaf, 0x95, 0x86, 0x07, 0xb1, 0xcf, + 0x4a, 0xe8, 0xc2, 0xa7, 0xcf, 0x7e, 0x87, 0x3e, 0x2a, 0xdc, 0x96, 0xea, + 0x2a, 0xf8, 0xfe, 0xdf, 0x50, 0xd0, 0x27, 0xd3, 0x2e, 0x2d, 0xda, 0x27, + 0x68, 0x76, 0xa4, 0x85, 0xb2, 0x09, 0xae, 0x51, 0x0a, 0xe2, 0x3e, 0x83, + 0xe5, 0xe6, 0xb1, 0xe4, 0x4d, 0xc8, 0xc1, 0x48, 0x18, 0xe6, 0xac, 0x5b, + 0xda, 0x4d, 0x31, 0xc6, 0xec, 0x05, 0x19, 0x24, 0xd7, 0xa6, 0xa9, 0xc6, + 0x0b, 0xdd, 0x3c, 0xc9, 0xce, 0x55, 0x3e, 0x23, 0xd5, 0x7c, 0x31, 0xe2, + 0xfd, 0x17, 0x4b, 0xd1, 0x12, 0x0b, 0xab, 0x90, 0xb3, 0xa9, 0x39, 0x50, + 0xa4, 0x9a, 0xce, 0x83, 0xc6, 0x3a, 0x45, 0x9f, 0x88, 0x66, 0xb9, 0x8e, + 0x39, 0xde, 0x09, 0x14, 0xaf, 0xca, 0x9e, 0xb5, 0xc9, 0x8d, 0x08, 0x2f, + 0x86, 0x8e, 0xb1, 0xe7, 0x72, 0x27, 0xf2, 0x7c, 0xb0, 0x3d, 0xba, 0xe6, + 0xa8, 0x5b, 0xe1, 0xae, 0x22, 0x1e, 0xac, 0x05, 0x60, 0xa9, 0xc5, 0xb6, + 0xd7, 0x53, 0x77, 0x39, 0x59, 0x27, 0xd0, 0xdd, 0xfb, 0x4c, 0x57, 0x7a, + 0xa5, 0xe3, 0x44, 0x85, 0x23, 0xb8, 0x47, 0xc2, 0xb7, 0x51, 0xc6, 0x6b, + 0xad, 0xf0, 0xeb, 0xf9, 0xda, 0x05, 0x9b, 0x1e, 0xa1, 0x36, 0x9f, 0xc0, + 0xe2, 0xb8, 0xeb, 0xf8, 0x46, 0x95, 0xa8, 0xf2, 0x43, 0x28, 0x73, 0xd0, + 0xf5, 0x15, 0xd2, 0xf8, 0x36, 0xee, 0x29, 0xb4, 0x20, 0xbb, 0x80, 0x31, + 0xc8, 0xca, 0x41, 0x3e, 0xf9, 0xfe, 0xb5, 0xe9, 0xe0, 0x34, 0x9b, 0x47, + 0x0e, 0x2f, 0xe0, 0x3a, 0x20, 0xb4, 0xf5, 0x5a, 0x6c, 0x72, 0xc5, 0x23, + 0x6d, 0x49, 0x11, 0x9b, 0xd0, 0x1a, 0xb0, 0xa9, 0x5e, 0xb1, 0xe7, 0x0d, + 0x0b, 0x52, 0x04, 0xa7, 0x85, 0xa9, 0x15, 0x28, 0x01, 0x81, 0x6a, 0x45, + 0x5a, 0x7a, 0xa5, 0x4a, 0xa9, 0x40, 0x11, 0xaa, 0x54, 0xaa, 0x94, 0xf5, + 0x4a, 0x95, 0x52, 0x90, 0xc6, 0x2a, 0x54, 0x82, 0x3a, 0x91, 0x52, 0xa4, + 0x54, 0xa4, 0x04, 0x42, 0x3a, 0x90, 0x47, 0x53, 0x04, 0xa7, 0xaa, 0x52, + 0x02, 0x21, 0x15, 0x38, 0x45, 0x56, 0x02, 0x53, 0xc2, 0x52, 0xb8, 0xca, + 0xfe, 0x55, 0x2f, 0x97, 0x56, 0x42, 0x7b, 0x51, 0xb2, 0x8b, 0x81, 0x57, + 0xcb, 0xa4, 0xf2, 0xaa, 0xe6, 0xca, 0x36, 0x51, 0x70, 0x29, 0xf9, 0x34, + 0x9e, 0x4d, 0x5d, 0xd9, 0x49, 0xb2, 0x8b, 0x81, 0x4f, 0xca, 0xa0, 0xc5, + 0x57, 0x0a, 0x53, 0x4a, 0x51, 0x70, 0x29, 0x98, 0xa9, 0xa6, 0x2f, 0x6a, + 0xbb, 0xb2, 0x9a, 0x63, 0xa2, 0xe0, 0x52, 0x31, 0xfb, 0x53, 0x0c, 0x75, + 0x78, 0xc7, 0x51, 0x98, 0xe8, 0xb8, 0x14, 0x8a, 0x53, 0x1a, 0x3a, 0xba, + 0xd1, 0xd4, 0x6d, 0x1d, 0x30, 0x29, 0x32, 0x54, 0x4c, 0x95, 0x78, 0xa5, + 0x44, 0xc9, 0x40, 0x14, 0x99, 0x2a, 0x32, 0x95, 0x75, 0x92, 0xa2, 0x64, + 0xa6, 0x22, 0x93, 0x25, 0x46, 0xc9, 0x57, 0x19, 0x2a, 0x26, 0x4a, 0x60, + 0x53, 0x64, 0xa8, 0xca, 0xd5, 0xb2, 0x95, 0x1b, 0x2d, 0x00, 0x55, 0x2b, + 0x51, 0x95, 0xab, 0x2c, 0xb5, 0x19, 0x5a, 0x04, 0x57, 0x2b, 0x51, 0x95, + 0xab, 0x25, 0x6a, 0x36, 0x5a, 0x60, 0x57, 0x22, 0x98, 0x45, 0x4e, 0x56, + 0x98, 0x45, 0x00, 0x40, 0x56, 0x9a, 0x45, 0x4c, 0x45, 0x30, 0x8a, 0x00, + 0x84, 0x8a, 0x61, 0x15, 0x31, 0x14, 0xd2, 0x29, 0x81, 0x09, 0x14, 0xd2, + 0x2a, 0x52, 0x29, 0xa4, 0x50, 0x22, 0x3c, 0x53, 0x48, 0xa9, 0x08, 0xa4, + 0x22, 0x80, 0x23, 0xc5, 0x26, 0x29, 0xe4, 0x52, 0x11, 0x40, 0x88, 0xf1, + 0x49, 0x8a, 0x90, 0x8a, 0x4c, 0x53, 0x02, 0x3c, 0x52, 0x62, 0xa4, 0xc5, + 0x26, 0x28, 0x02, 0x3c, 0x52, 0x62, 0xa5, 0xc5, 0x37, 0x14, 0x00, 0xcc, + 0x52, 0x62, 0xa4, 0xc5, 0x18, 0xa4, 0x03, 0x31, 0x46, 0x29, 0xf8, 0xa5, + 0xc5, 0x31, 0x19, 0xba, 0xb5, 0xbc, 0xf7, 0x16, 0x81, 0x60, 0x5d, 0xce, + 0x18, 0x1c, 0x67, 0x1d, 0xea, 0x1b, 0x3f, 0xb6, 0x5b, 0x6a, 0xe2, 0xed, + 0xed, 0x4f, 0x96, 0x00, 0x1f, 0x78, 0x71, 0xc5, 0x6c, 0xe2, 0xa2, 0xbb, + 0x6f, 0x2e, 0xd6, 0x46, 0x1d, 0x71, 0x5c, 0x98, 0x9c, 0x3d, 0x39, 0xa7, + 0x39, 0x74, 0x47, 0x56, 0x1e, 0xb4, 0xe2, 0xd4, 0x51, 0xd2, 0x78, 0x77, + 0x56, 0x4b, 0xcb, 0x6b, 0xd4, 0x44, 0x63, 0x21, 0x25, 0xcb, 0x7b, 0x55, + 0x4b, 0xcf, 0xb2, 0xac, 0x64, 0x5d, 0x3e, 0x4e, 0x78, 0x26, 0x9d, 0xe1, + 0x28, 0x04, 0x1a, 0x7d, 0xd4, 0x80, 0x7d, 0xe8, 0xc0, 0x27, 0xde, 0x99, + 0x3c, 0xf1, 0xdb, 0x40, 0x54, 0x46, 0xce, 0x0b, 0x7f, 0x0a, 0xe6, 0xbe, + 0x66, 0x2a, 0xce, 0x47, 0xbd, 0x27, 0xa4, 0x6e, 0x54, 0x11, 0xd8, 0x30, + 0xf9, 0x27, 0x2b, 0xf4, 0x90, 0xd4, 0xb6, 0x91, 0x47, 0x6b, 0x7d, 0x1d, + 0xd2, 0xcc, 0xd2, 0x32, 0x70, 0x03, 0x11, 0x55, 0xde, 0xe6, 0xc2, 0x4f, + 0xbe, 0xaa, 0x3f, 0xde, 0x4c, 0x54, 0x16, 0xf6, 0xd0, 0x5e, 0xea, 0xf1, + 0x5b, 0xc4, 0xe5, 0x63, 0x65, 0x24, 0x94, 0x34, 0xa7, 0x6e, 0x57, 0x7d, + 0x87, 0x0b, 0xf3, 0x2e, 0x5d, 0xce, 0xa4, 0xea, 0xd1, 0xea, 0x5a, 0x6d, + 0xea, 0x84, 0x2a, 0xd1, 0x82, 0x08, 0x35, 0xbb, 0xa6, 0x90, 0x34, 0x9b, + 0x52, 0x78, 0x02, 0x25, 0xfe, 0x55, 0xcd, 0x9d, 0x2d, 0x74, 0x8d, 0x36, + 0xf0, 0xac, 0x8d, 0x27, 0x98, 0xbd, 0xc5, 0x5e, 0xbc, 0xbd, 0x16, 0xfe, + 0x1e, 0xb5, 0x84, 0x36, 0xd6, 0x92, 0x25, 0xc9, 0xf4, 0x5c, 0x73, 0x5c, + 0x69, 0x29, 0x69, 0x1d, 0xae, 0x76, 0x4a, 0x4e, 0x3a, 0xcb, 0x7b, 0x19, + 0x3a, 0xfe, 0xa4, 0xd7, 0x77, 0x1e, 0x54, 0x39, 0x20, 0x1d, 0x91, 0x81, + 0xdc, 0xfa, 0xd7, 0x41, 0xe1, 0xfd, 0x1d, 0x74, 0xab, 0x10, 0x08, 0xcc, + 0xcf, 0xcb, 0x9f, 0xe9, 0x58, 0xde, 0x1b, 0xd3, 0xc5, 0xe5, 0xd1, 0xbf, + 0x95, 0x7f, 0x77, 0x1f, 0x11, 0x83, 0x5d, 0x79, 0xe9, 0x57, 0x56, 0x56, + 0xf7, 0x16, 0xc8, 0x8a, 0x51, 0x7f, 0x1b, 0xdd, 0x85, 0x28, 0x3d, 0x69, + 0xb9, 0x02, 0xa9, 0x5c, 0xdf, 0xa4, 0x20, 0xf3, 0x58, 0xad, 0x4d, 0x9e, + 0x85, 0xb6, 0x95, 0x57, 0x8c, 0xf3, 0x55, 0xa7, 0xbb, 0x48, 0x97, 0x73, + 0x1f, 0xa0, 0xac, 0x69, 0x75, 0x5c, 0x12, 0x41, 0xc9, 0xfe, 0x55, 0x8b, + 0x35, 0xf5, 0xc6, 0xa5, 0x31, 0x86, 0xd9, 0x8e, 0xce, 0x8f, 0x2f, 0xf4, + 0x15, 0xb4, 0x28, 0xb9, 0x6a, 0xf6, 0x30, 0x9d, 0x65, 0x1d, 0x16, 0xe5, + 0xed, 0x4b, 0x5a, 0x69, 0xa4, 0xf2, 0x60, 0xfd, 0xe4, 0x9f, 0xdd, 0x1d, + 0x17, 0xeb, 0x50, 0x5b, 0x69, 0xc4, 0xb0, 0x9e, 0xe9, 0x8c, 0x8f, 0xd7, + 0x07, 0xa0, 0xa9, 0x6d, 0xed, 0xad, 0xec, 0x22, 0xc9, 0xc6, 0x7a, 0xb3, + 0x1e, 0xf5, 0xcf, 0xeb, 0x9e, 0x29, 0x48, 0x43, 0x45, 0x6d, 0xf3, 0x30, + 0xec, 0x2b, 0xae, 0x31, 0xbe, 0x91, 0xd8, 0xe4, 0x94, 0xac, 0xef, 0x2d, + 0xce, 0xb3, 0x82, 0xa3, 0x6e, 0x31, 0x42, 0x60, 0xb1, 0x06, 0xb3, 0x34, + 0x19, 0xe4, 0xb8, 0xd0, 0x6d, 0xe6, 0x94, 0x11, 0x23, 0x02, 0x4e, 0x7e, + 0xb5, 0x7c, 0xbe, 0x15, 0x8e, 0x70, 0x69, 0x35, 0x6d, 0x07, 0x7b, 0xea, + 0x58, 0x94, 0xfc, 0xcb, 0x5b, 0x51, 0x9c, 0xc6, 0xbf, 0x4a, 0xe7, 0x9a, + 0x5c, 0xc6, 0xa7, 0x3c, 0x83, 0x5b, 0x51, 0xcc, 0x16, 0x08, 0xf9, 0xe7, + 0x68, 0xae, 0x6a, 0xeb, 0x44, 0x75, 0x61, 0xde, 0xac, 0xb0, 0x7a, 0xd0, + 0x5c, 0x0a, 0xa5, 0x25, 0xd8, 0x1d, 0xea, 0xa4, 0xb7, 0xc0, 0x77, 0xae, + 0x75, 0x16, 0x74, 0xb9, 0x24, 0x69, 0xb5, 0xc2, 0x8a, 0x85, 0xef, 0x00, + 0xef, 0x58, 0x92, 0xea, 0x00, 0x77, 0xaa, 0x52, 0xea, 0x5c, 0xf5, 0xad, + 0x15, 0x26, 0xcc, 0xdd, 0x54, 0x8d, 0xe9, 0x2f, 0x47, 0xad, 0x57, 0x7b, + 0xf0, 0x3b, 0xd7, 0x3b, 0x2e, 0xa3, 0xef, 0x55, 0x24, 0xd4, 0x49, 0xef, + 0x5a, 0x46, 0x83, 0x32, 0x75, 0xd1, 0xd2, 0x3e, 0xa2, 0x3d, 0x6a, 0xb3, + 0x6a, 0x3e, 0xf5, 0xce, 0x3d, 0xf9, 0x3d, 0xea, 0x06, 0xbd, 0x3e, 0xb5, + 0xb2, 0xc3, 0x99, 0xba, 0xe7, 0x4c, 0xda, 0x8f, 0x1d, 0x6a, 0x16, 0xd4, + 0xbd, 0xeb, 0x9b, 0x37, 0x6f, 0xeb, 0x4c, 0x37, 0x2c, 0x7b, 0xd5, 0xaa, + 0x04, 0x7b, 0x66, 0x74, 0x67, 0x51, 0xf7, 0xa6, 0x9d, 0x47, 0xde, 0xb9, + 0xdf, 0x3d, 0xbd, 0x68, 0xf3, 0xdb, 0xd6, 0x9f, 0xb1, 0x42, 0xf6, 0xac, + 0xe8, 0x7f, 0xb4, 0x7d, 0xe9, 0x4e, 0xa5, 0xc1, 0xe6, 0xb9, 0xdf, 0x39, + 0xbd, 0x68, 0x33, 0x36, 0x3a, 0xd1, 0xec, 0x50, 0x7b, 0x56, 0x57, 0x07, + 0x8a, 0x50, 0xd4, 0x9d, 0xa8, 0xe9, 0x5d, 0x06, 0x23, 0xf7, 0x11, 0x4a, + 0x1c, 0xd3, 0x28, 0xa0, 0x09, 0x3c, 0xc3, 0xeb, 0x4e, 0x59, 0x88, 0xef, + 0x50, 0xe0, 0xd2, 0x85, 0x34, 0xac, 0x82, 0xec, 0xb4, 0xb7, 0x24, 0x77, + 0xa9, 0x92, 0xe8, 0x8e, 0xf5, 0x43, 0x61, 0xa5, 0x01, 0x85, 0x4b, 0x8a, + 0x29, 0x36, 0x6c, 0x45, 0x7c, 0x47, 0x7a, 0xbd, 0x15, 0xf7, 0xbd, 0x73, + 0x8a, 0xcc, 0x2a, 0x64, 0x99, 0x85, 0x44, 0xa9, 0x26, 0x5a, 0xa8, 0xd1, + 0xd7, 0x5b, 0xdf, 0x6e, 0xef, 0x5a, 0x50, 0x5d, 0x03, 0xde, 0xb8, 0xc8, + 0x2e, 0x48, 0xef, 0x5a, 0xb6, 0xb7, 0x44, 0xe3, 0x9a, 0xe5, 0x9d, 0x2b, + 0x1d, 0x10, 0xab, 0x73, 0x7b, 0x53, 0x9c, 0x7f, 0x67, 0x49, 0xdf, 0xa7, + 0xf3, 0xae, 0x6d, 0x8e, 0x2c, 0x57, 0xd9, 0x8f, 0xf3, 0xad, 0x1b, 0xd9, + 0xb7, 0x69, 0xf2, 0x03, 0xe9, 0x9a, 0xc6, 0x67, 0xcd, 0x89, 0xf6, 0x73, + 0xfc, 0xeb, 0x5c, 0x3a, 0xb2, 0x31, 0xc4, 0xbf, 0x78, 0xd5, 0x83, 0x2f, + 0x2d, 0xb1, 0x1c, 0xfc, 0xb5, 0xa6, 0xc7, 0xe5, 0xac, 0x6b, 0x29, 0x0a, + 0xcb, 0x6f, 0xdc, 0x10, 0x45, 0x6c, 0xb8, 0xf9, 0x4d, 0x69, 0x23, 0x38, + 0xec, 0x70, 0x3a, 0xdc, 0x52, 0xc9, 0xe2, 0x09, 0xa1, 0x54, 0x66, 0x59, + 0x54, 0x12, 0x47, 0xf0, 0xf1, 0xd6, 0xa8, 0xbb, 0x47, 0x69, 0x13, 0xc3, + 0x0b, 0x09, 0x6e, 0x15, 0x7f, 0xd6, 0x15, 0xed, 0xdc, 0x2d, 0x6a, 0xf8, + 0x82, 0x72, 0xba, 0x8c, 0xf0, 0x2a, 0xec, 0xde, 0xa0, 0xee, 0x07, 0xef, + 0x1c, 0x74, 0xac, 0x68, 0x90, 0x79, 0x6b, 0x73, 0x72, 0xac, 0xa5, 0x54, + 0xed, 0x5c, 0xfd, 0xe1, 0xdb, 0x35, 0xd9, 0x1d, 0x91, 0xca, 0xf7, 0x22, + 0x82, 0x20, 0xea, 0x67, 0xb8, 0x3b, 0x21, 0x23, 0x04, 0x11, 0xcb, 0x7d, + 0x28, 0x6c, 0xdd, 0x8f, 0x2a, 0x28, 0xc2, 0xa2, 0x92, 0x31, 0x9e, 0x14, + 0x7a, 0xd1, 0x3b, 0x4d, 0x7d, 0x39, 0x00, 0xfe, 0xe8, 0xae, 0x47, 0xa2, + 0x0a, 0x7b, 0xc9, 0x98, 0xc5, 0xb4, 0x40, 0x9c, 0x36, 0xd6, 0x20, 0x72, + 0x7d, 0x0d, 0x51, 0x23, 0xac, 0xb5, 0x0b, 0x9d, 0x1a, 0x74, 0x16, 0xce, + 0xf2, 0x01, 0x8c, 0x82, 0x7a, 0xfb, 0x8a, 0xf4, 0x3d, 0x1f, 0xc4, 0x36, + 0xda, 0xbc, 0x01, 0x1c, 0x81, 0x26, 0x30, 0x54, 0xd7, 0x9b, 0x36, 0xcb, + 0x70, 0x23, 0x5f, 0x9e, 0x5c, 0xed, 0x73, 0x8f, 0xd0, 0x51, 0x18, 0x7b, + 0x33, 0xe7, 0x41, 0x26, 0x2e, 0x77, 0x7d, 0xd0, 0x7f, 0x4a, 0xca, 0x74, + 0x94, 0xb6, 0x34, 0x8d, 0x47, 0x13, 0xd2, 0xe5, 0xb7, 0x9b, 0x4a, 0x90, + 0xdc, 0xd9, 0x82, 0xd0, 0xe7, 0x2f, 0x10, 0xed, 0xee, 0x2b, 0xa2, 0xd2, + 0xb5, 0x48, 0xf5, 0x08, 0x81, 0x52, 0x09, 0xc7, 0xf9, 0xfc, 0x6b, 0x8f, + 0xf0, 0xae, 0xbf, 0x26, 0xb1, 0x13, 0x41, 0x32, 0x61, 0xe3, 0x1c, 0x93, + 0x56, 0x3c, 0x25, 0x29, 0x1e, 0x21, 0xd5, 0x23, 0xcf, 0x02, 0x6c, 0x01, + 0xe9, 0xd6, 0xb8, 0xea, 0xd3, 0xbc, 0x5d, 0xfa, 0x1d, 0x74, 0xaa, 0x5a, + 0x4a, 0xdd, 0x4e, 0xe1, 0x86, 0x78, 0x35, 0xe4, 0x9e, 0x3d, 0xd2, 0x7e, + 0xc3, 0x7a, 0xef, 0x12, 0x62, 0x19, 0x86, 0xe5, 0xc7, 0xaf, 0x71, 0x5e, + 0xb8, 0x6b, 0x83, 0xf8, 0x90, 0xb9, 0xb5, 0xb3, 0xfa, 0xb7, 0xf4, 0xac, + 0x30, 0xd2, 0x6a, 0xa2, 0x5d, 0xce, 0x8c, 0x44, 0x53, 0xa6, 0x79, 0x2e, + 0xe3, 0xb3, 0x18, 0xc6, 0x69, 0xf0, 0x4d, 0x3c, 0x59, 0xc3, 0x91, 0x91, + 0x8f, 0xad, 0x31, 0x94, 0x87, 0xe3, 0xd6, 0xac, 0x26, 0x4e, 0x2b, 0xd6, + 0x7a, 0x1e, 0x4a, 0xd4, 0x95, 0x6f, 0x6e, 0xfe, 0xc2, 0xd6, 0x7e, 0x63, + 0xfd, 0x9d, 0x9f, 0x79, 0x4e, 0xd9, 0xf5, 0xa8, 0xb6, 0xbe, 0x33, 0xb4, + 0xfe, 0x75, 0x30, 0x24, 0x75, 0x35, 0xa1, 0xa4, 0x58, 0x8d, 0x46, 0xe8, + 0xc4, 0x5c, 0xe4, 0x23, 0x36, 0x3e, 0x83, 0x35, 0x05, 0xd8, 0xce, 0x0e, + 0xc5, 0x66, 0xf3, 0x43, 0x19, 0x00, 0xce, 0x58, 0xf3, 0x49, 0x65, 0x0c, + 0x8f, 0x20, 0x48, 0x95, 0x8b, 0x39, 0xe8, 0x0f, 0x53, 0x56, 0xf5, 0x03, + 0x19, 0xbd, 0xdc, 0xa3, 0xe4, 0x78, 0xfe, 0x62, 0x07, 0x7a, 0x34, 0xa3, + 0xb7, 0x55, 0xb6, 0xda, 0x7f, 0xe5, 0xa8, 0xc1, 0xfc, 0x6a, 0xd6, 0x9b, + 0x13, 0x6b, 0x9d, 0x27, 0x85, 0x15, 0x6d, 0xf5, 0x6b, 0x49, 0x06, 0x47, + 0x9c, 0x24, 0x89, 0xc6, 0x7b, 0x8e, 0x6b, 0xd1, 0x95, 0x2b, 0xce, 0xa3, + 0x8d, 0xb4, 0xfd, 0x67, 0x61, 0x38, 0x30, 0x5e, 0xaf, 0xe4, 0xdc, 0x1a, + 0xf4, 0xc4, 0x5c, 0x80, 0x6b, 0xd4, 0xc0, 0xca, 0xf0, 0x67, 0x06, 0x2e, + 0x36, 0x9a, 0x1a, 0xa9, 0x52, 0xaa, 0x53, 0xd5, 0x2a, 0x55, 0x4a, 0xed, + 0x39, 0x48, 0xd5, 0x2a, 0x55, 0x4a, 0x7a, 0xa5, 0x4a, 0xa9, 0x48, 0x08, + 0xd5, 0x2a, 0x55, 0x4a, 0x91, 0x52, 0xa5, 0x58, 0xe9, 0x5c, 0x08, 0xd5, + 0x2a, 0x55, 0x4a, 0x91, 0x63, 0xa9, 0x42, 0xfb, 0x54, 0xdc, 0x64, 0x42, + 0x3a, 0x90, 0x26, 0x2a, 0x40, 0xb4, 0xed, 0xb4, 0x80, 0x60, 0x5a, 0x70, + 0x5a, 0x7e, 0xda, 0x70, 0x5e, 0x28, 0x18, 0xcd, 0xb4, 0xbb, 0x69, 0xe1, + 0x69, 0x71, 0x48, 0x63, 0x36, 0xd1, 0xb6, 0x9f, 0x8a, 0x5c, 0x50, 0x04, + 0x5b, 0x68, 0xdb, 0x52, 0xe2, 0x8d, 0xb4, 0x01, 0x0e, 0xda, 0x4d, 0x95, + 0x36, 0xda, 0x0a, 0xd0, 0x22, 0x0d, 0xb4, 0x85, 0x6a, 0x7d, 0xb4, 0x9b, + 0x68, 0x02, 0x02, 0x94, 0xc2, 0x95, 0x60, 0xad, 0x34, 0xad, 0x00, 0x56, + 0x68, 0xea, 0x26, 0x8e, 0xae, 0x15, 0xa6, 0x32, 0x53, 0x02, 0x8b, 0x27, + 0xb5, 0x46, 0xc9, 0x57, 0x59, 0x2a, 0x26, 0x4a, 0x77, 0x02, 0x93, 0x25, + 0x44, 0xc9, 0x57, 0x59, 0x2a, 0x26, 0x4a, 0x60, 0x52, 0x64, 0xa8, 0x59, + 0x2a, 0xeb, 0x25, 0x44, 0xc9, 0x4c, 0x45, 0x26, 0x4a, 0x89, 0x92, 0xae, + 0x32, 0x54, 0x4c, 0xb4, 0xc0, 0xa6, 0xc9, 0x51, 0xb2, 0xd5, 0xb6, 0x5a, + 0x89, 0x96, 0x81, 0x15, 0x4a, 0xd4, 0x6c, 0xb5, 0x65, 0x96, 0xa3, 0x2b, + 0x4c, 0x0a, 0xc5, 0x6a, 0x32, 0xb5, 0x65, 0x96, 0xa3, 0x2b, 0x40, 0x15, + 0xc8, 0xa6, 0x15, 0xa9, 0xca, 0xd3, 0x08, 0xa6, 0x22, 0x02, 0x29, 0x85, + 0x6a, 0x72, 0x29, 0x84, 0x50, 0x04, 0x24, 0x53, 0x08, 0xa9, 0xc8, 0xa6, + 0x11, 0x40, 0x10, 0x91, 0x48, 0x45, 0x4a, 0x56, 0x9a, 0x56, 0x98, 0x88, + 0x88, 0xa4, 0xc5, 0x48, 0x56, 0x93, 0x14, 0x01, 0x1e, 0x29, 0x31, 0x52, + 0x62, 0x93, 0x14, 0x01, 0x1e, 0x28, 0xc5, 0x3f, 0x14, 0x62, 0x80, 0x23, + 0xc5, 0x26, 0xda, 0x93, 0x14, 0x62, 0x81, 0x11, 0xe2, 0x8d, 0xb4, 0xfc, + 0x52, 0xed, 0xa0, 0x08, 0xf6, 0xd1, 0x8a, 0x93, 0x6d, 0x1b, 0x69, 0x80, + 0xd0, 0x2a, 0xae, 0xa2, 0x0f, 0xd8, 0x9c, 0x0e, 0xf8, 0x15, 0x77, 0x6d, + 0x32, 0xe2, 0xd9, 0xae, 0x61, 0x31, 0xa1, 0xe7, 0x21, 0xba, 0x75, 0xc7, + 0x35, 0x95, 0x75, 0xfb, 0xa9, 0x7a, 0x1a, 0xd1, 0xfe, 0x22, 0x37, 0x7c, + 0x3c, 0xab, 0xfd, 0x8f, 0x72, 0x0f, 0x1b, 0x53, 0x9a, 0xa0, 0x75, 0x1b, + 0x75, 0x89, 0x95, 0x06, 0xec, 0x9a, 0x5b, 0x2b, 0x8f, 0xb3, 0xe8, 0x77, + 0x87, 0x90, 0x4b, 0x6d, 0xac, 0xa4, 0x82, 0xef, 0x61, 0x99, 0xad, 0x55, + 0xd5, 0xb9, 0x1d, 0x2b, 0xe5, 0x12, 0xd5, 0x9f, 0x43, 0x27, 0x74, 0xac, + 0x5d, 0x37, 0x76, 0xed, 0xd4, 0x0f, 0xe7, 0x4d, 0x49, 0xa0, 0x8e, 0x41, + 0x2c, 0x5b, 0x51, 0xc7, 0x46, 0x1c, 0x1a, 0xa4, 0x64, 0xc1, 0xc4, 0x96, + 0x44, 0x1f, 0x6c, 0xd4, 0x72, 0xc9, 0x6e, 0x3f, 0xe5, 0x94, 0x91, 0xd1, + 0x61, 0x73, 0x33, 0x72, 0xd7, 0x51, 0x9a, 0xf7, 0x4a, 0xbf, 0x49, 0x9c, + 0x31, 0x43, 0xb5, 0x49, 0xef, 0x51, 0x4a, 0x65, 0xbf, 0x6b, 0x6b, 0x34, + 0xe6, 0x47, 0x55, 0x43, 0x8e, 0xca, 0x2b, 0x9a, 0xb9, 0xbb, 0x48, 0xc6, + 0xc4, 0x95, 0xb0, 0x70, 0xdf, 0x91, 0xae, 0xff, 0x00, 0xc2, 0xb6, 0x41, + 0xe1, 0xfe, 0xd1, 0x90, 0x7c, 0xce, 0x30, 0x9e, 0xc2, 0xb1, 0x9a, 0x54, + 0xa2, 0xda, 0xea, 0x6d, 0x09, 0x3a, 0xad, 0x27, 0xd0, 0xdf, 0xb3, 0xb6, + 0x4b, 0x3b, 0x58, 0xe0, 0x8c, 0x61, 0x50, 0x63, 0xeb, 0x52, 0xb1, 0xc5, + 0x3a, 0xb3, 0x75, 0x3b, 0xf4, 0xb5, 0x8c, 0xf3, 0xcd, 0x71, 0xa4, 0xd9, + 0xdb, 0x7b, 0x11, 0x6a, 0x5a, 0x92, 0x5b, 0xa1, 0x1b, 0xb9, 0xae, 0x2e, + 0xf7, 0x59, 0x69, 0x26, 0x21, 0x5b, 0xf1, 0xcf, 0x4a, 0xa5, 0xae, 0x6b, + 0x25, 0x99, 0xb0, 0xd5, 0x91, 0xa7, 0x23, 0xea, 0x53, 0xe0, 0xe4, 0x43, + 0x9e, 0x7f, 0xda, 0xaf, 0x46, 0x8e, 0x1d, 0x46, 0x3c, 0xd2, 0x3c, 0xfa, + 0xb8, 0x87, 0x29, 0x72, 0xc4, 0xe8, 0x6d, 0xa3, 0x9b, 0x53, 0xf9, 0x10, + 0x95, 0xb7, 0xfe, 0x27, 0xee, 0xff, 0x00, 0xfd, 0x6a, 0xd6, 0x79, 0x6d, + 0xf4, 0xab, 0x6c, 0xfc, 0xa8, 0xaa, 0x2a, 0xbc, 0xfa, 0x95, 0xae, 0x8b, + 0x60, 0x32, 0x54, 0x10, 0x38, 0x15, 0xc8, 0x5c, 0xdc, 0xdd, 0xeb, 0xf3, + 0x06, 0xdf, 0xb6, 0x11, 0xf3, 0x79, 0x7d, 0xd9, 0x6b, 0x48, 0xc5, 0xc9, + 0xea, 0x63, 0x29, 0x28, 0xed, 0xb9, 0x26, 0xa7, 0xe2, 0x19, 0xb5, 0x29, + 0x9e, 0x1b, 0x77, 0x31, 0xc4, 0xa3, 0xe6, 0x7c, 0x74, 0xaa, 0xd6, 0xba, + 0x74, 0x96, 0xe1, 0x1d, 0xa5, 0x27, 0x27, 0x7b, 0xca, 0xbd, 0x2a, 0xc5, + 0xb4, 0x50, 0xa1, 0x58, 0x67, 0x5c, 0x1c, 0x6f, 0x67, 0xc0, 0x1b, 0x40, + 0xe8, 0x0d, 0x48, 0x5e, 0x6b, 0x5c, 0xf9, 0x7b, 0x4b, 0xdc, 0x36, 0x4a, + 0x9e, 0x54, 0xad, 0x6e, 0x92, 0x4b, 0x43, 0x3d, 0xce, 0xa7, 0x45, 0xbc, + 0x33, 0x69, 0x4a, 0xee, 0x00, 0xe4, 0x80, 0x05, 0x49, 0x73, 0x71, 0xb5, + 0x4f, 0x3d, 0x45, 0x63, 0xd8, 0x5e, 0x45, 0xf6, 0x36, 0x11, 0xae, 0xc0, + 0xae, 0x46, 0x01, 0xe3, 0xf0, 0xa8, 0x75, 0x0b, 0xfd, 0xa0, 0x73, 0x58, + 0xf2, 0x7b, 0xc6, 0x9c, 0xfe, 0xe9, 0xac, 0xd7, 0x80, 0x44, 0xbc, 0xf4, + 0xad, 0x15, 0xd4, 0x87, 0x90, 0x9c, 0xff, 0x00, 0x0d, 0x70, 0xf2, 0x6a, + 0x39, 0x4c, 0x83, 0x56, 0x63, 0xd4, 0x0b, 0x5b, 0xaf, 0x3d, 0xaa, 0x2a, + 0xd1, 0xba, 0x2e, 0x8d, 0x6b, 0x33, 0xa3, 0x9b, 0x52, 0xeb, 0xf3, 0x55, + 0x09, 0xb5, 0x2f, 0x7a, 0xc6, 0x7b, 0x96, 0x6e, 0xf5, 0x09, 0x76, 0x6e, + 0xa6, 0xa6, 0x34, 0x52, 0x2e, 0x55, 0x5b, 0x34, 0x65, 0xbf, 0x27, 0xbd, + 0x55, 0x7b, 0xb6, 0x27, 0xad, 0x56, 0x34, 0x95, 0xaa, 0x82, 0x46, 0x6e, + 0x4d, 0x92, 0x34, 0xce, 0xdd, 0xe9, 0x85, 0x8f, 0xad, 0x26, 0x69, 0x2a, + 0xac, 0x21, 0x73, 0x45, 0x25, 0x14, 0xc4, 0x29, 0xa4, 0xcd, 0x14, 0x82, + 0x80, 0x16, 0x93, 0x34, 0x66, 0x90, 0x9a, 0x43, 0x17, 0x34, 0x84, 0xf1, + 0x45, 0x07, 0xa5, 0x00, 0x19, 0xe2, 0x8e, 0xb4, 0x8a, 0x09, 0xc5, 0x4e, + 0x91, 0xe6, 0x86, 0xec, 0x09, 0x11, 0xaa, 0x13, 0x53, 0x2c, 0x04, 0xd5, + 0x98, 0xa1, 0xf6, 0xab, 0x71, 0xdb, 0x67, 0xb5, 0x67, 0x2a, 0x96, 0x2d, + 0x40, 0xa2, 0x96, 0xd9, 0xa9, 0x45, 0xaf, 0xb5, 0x69, 0x25, 0xb7, 0xb5, + 0x59, 0x4b, 0x5f, 0x6a, 0xc9, 0xd5, 0x34, 0x54, 0xcc, 0x71, 0x68, 0x7d, + 0x29, 0xdf, 0x63, 0xf6, 0xad, 0xc5, 0xb5, 0xf6, 0xa9, 0x05, 0x9f, 0xb5, + 0x4f, 0xb5, 0x2f, 0xd9, 0x1c, 0xff, 0x00, 0xd8, 0xfd, 0xa9, 0x45, 0x9f, + 0xb5, 0x6f, 0xfd, 0x8f, 0xda, 0x81, 0x68, 0x33, 0xd2, 0x97, 0xb6, 0x0f, + 0x62, 0x63, 0xc7, 0x69, 0x8e, 0xd5, 0x76, 0x08, 0x0a, 0x9a, 0xd1, 0x5b, + 0x41, 0xd7, 0x15, 0x3a, 0x5a, 0xfb, 0x54, 0x3a, 0xb7, 0x34, 0x8d, 0x2b, + 0x14, 0xa7, 0x4f, 0xf4, 0x49, 0x33, 0xd3, 0x69, 0xac, 0x30, 0x31, 0x63, + 0x20, 0xf4, 0x73, 0x5d, 0x55, 0xc4, 0x3b, 0x2d, 0x64, 0x24, 0x70, 0x14, + 0xd7, 0x36, 0xc1, 0x16, 0xd5, 0xc1, 0x3c, 0x6f, 0xe4, 0xd6, 0xb8, 0x77, + 0x74, 0xcc, 0x31, 0x2a, 0xcd, 0x16, 0xec, 0xfa, 0xdb, 0x1f, 0x73, 0x5b, + 0x8d, 0xf7, 0x0d, 0x73, 0xb6, 0x8e, 0xa1, 0xad, 0x94, 0x37, 0x1b, 0x8f, + 0x35, 0xd0, 0xbb, 0x0c, 0x63, 0xbd, 0x6b, 0x23, 0x28, 0xbd, 0x0e, 0x4b, + 0x5d, 0xb5, 0x88, 0xea, 0x3f, 0x69, 0x9d, 0x77, 0x6c, 0x4f, 0x95, 0x41, + 0xfb, 0xdf, 0x5a, 0xe7, 0x2e, 0x4b, 0xdd, 0x5c, 0x24, 0x91, 0x8d, 0xd9, + 0x1b, 0x58, 0x67, 0x81, 0x8e, 0xb5, 0xbd, 0xe2, 0x51, 0x32, 0xea, 0x71, + 0x05, 0x4d, 0xdb, 0x97, 0x18, 0xf5, 0x15, 0x8f, 0x2f, 0x95, 0x6e, 0x7e, + 0xcf, 0x1f, 0x0d, 0x22, 0xf2, 0xc7, 0xd7, 0xb0, 0xae, 0xb8, 0x7c, 0x28, + 0xe5, 0x96, 0xec, 0xab, 0x2e, 0x23, 0xb7, 0x36, 0xd0, 0xf5, 0x20, 0x3e, + 0x73, 0xf7, 0x8f, 0xa5, 0x3d, 0x14, 0x5a, 0xc3, 0xc9, 0x02, 0xe1, 0x9b, + 0x6b, 0x10, 0x7e, 0xee, 0x45, 0x39, 0x10, 0xdb, 0x5a, 0x79, 0x93, 0x46, + 0x1a, 0x50, 0x0f, 0x96, 0x0f, 0x61, 0xea, 0x69, 0x91, 0x28, 0x7d, 0xf7, + 0x2e, 0x72, 0xac, 0xc3, 0x60, 0x23, 0x39, 0x38, 0xaa, 0x10, 0xcd, 0x9f, + 0x65, 0x0b, 0x23, 0xff, 0x00, 0xae, 0x71, 0x81, 0xcf, 0x4f, 0x7a, 0x46, + 0x0f, 0x0c, 0x04, 0xf3, 0xf6, 0x87, 0x18, 0x5e, 0xff, 0x00, 0xe4, 0x9a, + 0x92, 0x3c, 0x9d, 0xd3, 0x4a, 0x01, 0x5c, 0x63, 0x69, 0xee, 0xc3, 0xa5, + 0x31, 0x89, 0x10, 0x1b, 0x8c, 0x8f, 0x31, 0x87, 0xca, 0xa4, 0x7a, 0x77, + 0xa6, 0x84, 0xce, 0x87, 0xc0, 0x04, 0xad, 0xe5, 0xd2, 0xb2, 0xed, 0x38, + 0xc1, 0x1e, 0x95, 0xd1, 0xf8, 0x76, 0x1f, 0x23, 0xc5, 0x7a, 0x88, 0x0c, + 0x08, 0x66, 0x0d, 0xf4, 0xe2, 0xb9, 0x7f, 0x02, 0x49, 0xbb, 0x51, 0xb8, + 0x38, 0x23, 0x70, 0xe9, 0xe9, 0x5d, 0x56, 0x88, 0x36, 0x78, 0xd6, 0xf5, + 0x4f, 0x75, 0x53, 0xfa, 0x57, 0x25, 0x7d, 0xa5, 0xe8, 0x75, 0x50, 0xde, + 0x27, 0x6f, 0xda, 0xb8, 0x6f, 0x88, 0xac, 0x7e, 0xcd, 0x6c, 0x0c, 0x6d, + 0xb4, 0x12, 0x77, 0xf6, 0xfa, 0x57, 0x75, 0xda, 0xb9, 0x9f, 0x1c, 0x44, + 0x24, 0xf0, 0xdc, 0xb9, 0x00, 0xed, 0x60, 0x79, 0xaf, 0x3a, 0x83, 0xb5, + 0x44, 0x7a, 0x35, 0x95, 0xe9, 0xb3, 0xc4, 0x64, 0xfb, 0xc7, 0xd7, 0x35, + 0x2c, 0x60, 0x81, 0x9c, 0xd5, 0x8b, 0x1d, 0x32, 0x6d, 0x52, 0xf9, 0x6c, + 0xe0, 0xc7, 0x98, 0xe7, 0x8c, 0x9c, 0x57, 0x4a, 0xde, 0x01, 0xd4, 0xa2, + 0x89, 0xd8, 0xbc, 0x44, 0xa6, 0x78, 0xc9, 0xe6, 0xbd, 0x99, 0xc9, 0x2d, + 0x0f, 0x1e, 0x11, 0x67, 0x2d, 0x9a, 0xd0, 0xd1, 0x65, 0x11, 0x6a, 0x2a, + 0x4c, 0xde, 0x50, 0x2a, 0xc3, 0x76, 0x71, 0xdb, 0xa5, 0x52, 0x0a, 0x06, + 0xf4, 0x60, 0x43, 0xa1, 0xc1, 0x06, 0xad, 0xe9, 0x56, 0xb0, 0xdd, 0x5d, + 0x95, 0x94, 0xb7, 0xca, 0xa5, 0x86, 0x07, 0xa5, 0x42, 0xdc, 0xa2, 0x2e, + 0x57, 0xcd, 0x89, 0xb9, 0x28, 0xc4, 0x73, 0xde, 0x97, 0x4e, 0x07, 0xfb, + 0x4a, 0xdc, 0xed, 0xc7, 0xef, 0x57, 0xf9, 0xd3, 0x8c, 0xd1, 0x5e, 0xea, + 0xed, 0xb1, 0x08, 0x57, 0xc0, 0xc1, 0xf6, 0xa6, 0x59, 0x31, 0x5d, 0x46, + 0x16, 0x27, 0x81, 0x28, 0xef, 0xef, 0x54, 0xfb, 0x89, 0x3e, 0x87, 0x5f, + 0xe2, 0x27, 0x3f, 0xf0, 0x91, 0x5f, 0x0d, 0xa1, 0x4b, 0x46, 0x0a, 0xe0, + 0xf5, 0xdb, 0x83, 0x9f, 0xd2, 0xbd, 0x22, 0xcd, 0xbc, 0xeb, 0x48, 0x65, + 0xfe, 0xfa, 0x06, 0xfd, 0x2b, 0x8e, 0xd4, 0xf4, 0x39, 0x75, 0x9b, 0xe5, + 0xbc, 0xb3, 0xc1, 0x25, 0xf6, 0xb0, 0x63, 0x81, 0xb3, 0x1f, 0xfd, 0x7a, + 0xec, 0xf4, 0xcb, 0x59, 0x2d, 0x34, 0xeb, 0x7b, 0x79, 0x18, 0x33, 0xc6, + 0x81, 0x49, 0x1e, 0xd5, 0xdf, 0x97, 0x29, 0x28, 0xb6, 0xf6, 0x38, 0xf1, + 0xcd, 0x39, 0x22, 0xc2, 0xa5, 0x4a, 0xa9, 0x4e, 0x54, 0xa9, 0x55, 0x2b, + 0xd2, 0x38, 0x46, 0x2a, 0x54, 0xaa, 0x94, 0xf5, 0x4a, 0x99, 0x52, 0xa6, + 0xe0, 0x31, 0x52, 0xa5, 0x55, 0xa7, 0x05, 0xa7, 0x85, 0xa4, 0x02, 0x01, + 0x4f, 0x02, 0x94, 0x2d, 0x38, 0x2d, 0x22, 0x80, 0x2d, 0x38, 0x2d, 0x28, + 0x14, 0xec, 0x52, 0x18, 0xdc, 0x53, 0x80, 0xa5, 0xc5, 0x38, 0x0a, 0x00, + 0x6e, 0x28, 0xdb, 0x4f, 0xc5, 0x18, 0xa0, 0x06, 0x62, 0x97, 0x14, 0xfc, + 0x52, 0xe2, 0x90, 0x11, 0xe2, 0x8c, 0x54, 0x98, 0xa4, 0xc5, 0x00, 0x33, + 0x14, 0x62, 0x9f, 0x8a, 0x31, 0x40, 0x11, 0x91, 0x49, 0x8a, 0x93, 0x14, + 0x6d, 0xa0, 0x08, 0xb1, 0x4d, 0xdb, 0x53, 0x62, 0x9a, 0x45, 0x00, 0x42, + 0x56, 0x98, 0x56, 0xa7, 0x22, 0x9a, 0x45, 0x30, 0x2b, 0x95, 0xa8, 0xd9, + 0x2a, 0xc9, 0x5a, 0x61, 0x5a, 0x04, 0x54, 0x64, 0xa8, 0x99, 0x2a, 0xe9, + 0x5a, 0x89, 0x92, 0x9d, 0xc0, 0xa2, 0xc9, 0x50, 0xb2, 0x55, 0xe6, 0x4a, + 0x85, 0x92, 0x9d, 0xc4, 0x51, 0x64, 0xa8, 0x59, 0x2a, 0xf3, 0x25, 0x42, + 0xc9, 0x54, 0x05, 0x26, 0x4a, 0x89, 0x96, 0xae, 0x32, 0x54, 0x2c, 0x94, + 0xc4, 0x54, 0x65, 0xa8, 0x99, 0x6a, 0xdb, 0x2d, 0x44, 0xcb, 0x4c, 0x0a, + 0x8c, 0xb5, 0x19, 0x5a, 0xb4, 0xcb, 0x51, 0xb2, 0xd0, 0x22, 0xb3, 0x2d, + 0x46, 0x56, 0xac, 0x95, 0xa8, 0xd9, 0x69, 0x81, 0x5c, 0xad, 0x30, 0x8a, + 0x9c, 0xad, 0x30, 0xad, 0x30, 0x21, 0x22, 0x98, 0x45, 0x4c, 0x56, 0x9a, + 0x56, 0x81, 0x10, 0x91, 0x4d, 0x22, 0xa6, 0x2b, 0x4d, 0x2b, 0x40, 0x10, + 0x95, 0xa4, 0x2b, 0x52, 0x95, 0xa4, 0x2b, 0x4c, 0x08, 0x76, 0xd1, 0x8a, + 0x97, 0x6d, 0x26, 0xda, 0x00, 0x8b, 0x14, 0x98, 0xa9, 0x76, 0xd2, 0x6d, + 0xa0, 0x44, 0x78, 0xa4, 0xc5, 0x4b, 0x8a, 0x69, 0x65, 0x5e, 0xac, 0x07, + 0xe3, 0x40, 0xc6, 0x62, 0x8c, 0x53, 0xd4, 0xab, 0x8c, 0xa9, 0x04, 0x7b, + 0x53, 0xb6, 0xd0, 0x22, 0x3d, 0xb4, 0xbb, 0x69, 0xfb, 0x69, 0x76, 0xd3, + 0x01, 0x9b, 0x6a, 0xc5, 0x99, 0xd9, 0x70, 0xa7, 0x07, 0xd3, 0x8a, 0x8f, + 0x6d, 0x4f, 0x6d, 0xf2, 0xcc, 0x1b, 0xd2, 0xb1, 0xc4, 0x7f, 0x0a, 0x5e, + 0x8c, 0xd7, 0x0f, 0xfc, 0x58, 0xfa, 0x95, 0x87, 0xcd, 0x2b, 0xc5, 0xfc, + 0x26, 0x63, 0x9f, 0xce, 0xa6, 0xba, 0xd4, 0x16, 0x08, 0x95, 0x56, 0x29, + 0x24, 0x04, 0xf5, 0x45, 0xc8, 0x15, 0x0c, 0x32, 0x2a, 0xdc, 0x4a, 0x4e, + 0x0e, 0x5d, 0xa9, 0x8f, 0xac, 0x5a, 0x43, 0x19, 0x8d, 0x9d, 0x54, 0x93, + 0xc5, 0x7c, 0xb5, 0xae, 0x7b, 0xc9, 0x90, 0xb6, 0xa7, 0x09, 0xea, 0x1d, + 0x7f, 0xde, 0x52, 0x29, 0x3e, 0xd9, 0x6d, 0x26, 0x7f, 0x78, 0x9f, 0x8d, + 0x3c, 0x5f, 0x5a, 0x4a, 0x38, 0x95, 0x0f, 0xe3, 0x55, 0xed, 0xad, 0xed, + 0xef, 0x7c, 0x43, 0x1c, 0x32, 0x2a, 0xb4, 0x45, 0x33, 0x81, 0x51, 0x27, + 0xca, 0x9b, 0x66, 0x91, 0x4e, 0x4d, 0x45, 0x12, 0x69, 0x96, 0x36, 0xf7, + 0x5a, 0x65, 0xfc, 0xb2, 0xc2, 0xae, 0xca, 0xc7, 0x69, 0xef, 0x5e, 0x81, + 0xa4, 0xc6, 0xb1, 0x69, 0x16, 0x88, 0xa3, 0x00, 0x44, 0xbc, 0x7e, 0x15, + 0x8c, 0xda, 0x65, 0xb5, 0x86, 0x95, 0x72, 0xb6, 0xe0, 0xa8, 0x61, 0x92, + 0x2b, 0x66, 0xc5, 0xc2, 0x69, 0x36, 0xcc, 0xdd, 0x04, 0x4b, 0xfc, 0xab, + 0x86, 0x53, 0xe7, 0x57, 0xf3, 0x3b, 0xa3, 0x1e, 0x4d, 0x3c, 0x87, 0xdd, + 0xdc, 0xad, 0xb4, 0x25, 0x89, 0xaf, 0x3c, 0xd7, 0xb5, 0x83, 0x33, 0xbe, + 0xd3, 0xc0, 0xad, 0x3f, 0x11, 0xeb, 0x25, 0xd8, 0xc5, 0x1b, 0x57, 0x1f, + 0x72, 0x73, 0x0b, 0x93, 0xdc, 0x57, 0x5e, 0x1a, 0x8f, 0xda, 0x67, 0x2e, + 0x22, 0xad, 0xf4, 0x46, 0x1c, 0xd2, 0x3d, 0xf4, 0xe7, 0x93, 0xb0, 0x1e, + 0x7d, 0xeb, 0x56, 0x3d, 0x4a, 0x1d, 0x2e, 0xd7, 0x20, 0x8d, 0xd8, 0xe0, + 0x56, 0x6c, 0x60, 0xf9, 0x27, 0x1c, 0x7b, 0xd5, 0x18, 0x91, 0xcd, 0xd6, + 0xf9, 0x0e, 0xf5, 0x07, 0xa1, 0x1d, 0xab, 0xd3, 0x94, 0x2e, 0x8f, 0x32, + 0x32, 0x36, 0x23, 0x5b, 0x9d, 0x46, 0x4f, 0xb5, 0x4c, 0xc1, 0xd7, 0x20, + 0x04, 0xc6, 0x76, 0x93, 0xeb, 0xf8, 0x56, 0xaa, 0x43, 0x0c, 0x91, 0x86, + 0x80, 0x14, 0x19, 0x19, 0x03, 0x82, 0xaa, 0x3f, 0xa5, 0x57, 0xb5, 0x63, + 0x6c, 0xa9, 0x3a, 0x00, 0xc8, 0x47, 0xdd, 0xec, 0x49, 0xec, 0x7f, 0x0a, + 0x91, 0xe6, 0x11, 0xc8, 0xf2, 0xdb, 0xe0, 0x2f, 0x11, 0xa8, 0x3c, 0xf7, + 0xe4, 0x56, 0x76, 0x35, 0xb8, 0xe7, 0x92, 0x3b, 0xdf, 0x95, 0xca, 0xc7, + 0x3c, 0xa7, 0x82, 0x3f, 0x8d, 0x47, 0x63, 0xfe, 0x7b, 0x55, 0x49, 0xaf, + 0x7c, 0x99, 0x25, 0xdc, 0xa7, 0xc9, 0x1f, 0x22, 0xa6, 0x39, 0x5e, 0xd9, + 0x15, 0x5a, 0xee, 0xe1, 0x7f, 0x79, 0x3c, 0x47, 0x8c, 0x79, 0x61, 0x47, + 0xf0, 0xd5, 0x09, 0xaf, 0x37, 0xed, 0x49, 0x09, 0x25, 0x07, 0x0c, 0x4f, + 0x5f, 0x63, 0x54, 0xa2, 0x43, 0x91, 0xb5, 0x6f, 0x2a, 0x41, 0x6d, 0x84, + 0x93, 0x70, 0xce, 0x6a, 0x85, 0xf5, 0xc9, 0x94, 0x8e, 0x7a, 0x55, 0x3b, + 0x59, 0x49, 0x8d, 0xf2, 0x79, 0x2d, 0x93, 0x43, 0xfc, 0xc6, 0xa9, 0x45, + 0x26, 0x4b, 0x95, 0xd0, 0xe0, 0xc4, 0xa7, 0x5a, 0xd3, 0xb4, 0x39, 0x81, + 0x6b, 0x2d, 0x3e, 0xe9, 0x06, 0xb4, 0x6c, 0x8f, 0xfa, 0x38, 0xa5, 0x55, + 0x68, 0x3a, 0x2f, 0x52, 0xc9, 0xa2, 0x83, 0x49, 0x5c, 0xe7, 0x48, 0x51, + 0x49, 0x45, 0x00, 0x14, 0x52, 0x1a, 0x28, 0x00, 0xa2, 0x8a, 0x4a, 0x06, + 0x2d, 0x14, 0x52, 0x50, 0x00, 0x68, 0xa2, 0x92, 0x80, 0x0a, 0x0f, 0x4a, + 0x29, 0x3b, 0x50, 0x04, 0xf1, 0x26, 0x6a, 0xec, 0x51, 0xe6, 0xa0, 0x85, + 0x78, 0x15, 0x7e, 0x15, 0xac, 0xa6, 0xcd, 0x22, 0x89, 0xe1, 0x87, 0xda, + 0xb4, 0x21, 0x83, 0xda, 0xa3, 0x81, 0x6b, 0x4a, 0x04, 0xae, 0x59, 0xc8, + 0xe9, 0x84, 0x46, 0x25, 0xb8, 0xf4, 0xab, 0x31, 0xdb, 0x66, 0xac, 0x47, + 0x18, 0xc0, 0xab, 0x51, 0xc6, 0x2b, 0x07, 0x23, 0xa1, 0x44, 0xaa, 0xb6, + 0xc3, 0xd2, 0x9e, 0x20, 0x00, 0xd5, 0xdf, 0x2b, 0x8a, 0x36, 0x80, 0x79, + 0xa8, 0x72, 0x2d, 0x44, 0xad, 0xf6, 0x71, 0x8a, 0x4f, 0xb3, 0x0f, 0x4a, + 0xbc, 0x14, 0x1a, 0x76, 0xca, 0x57, 0x0b, 0x14, 0x16, 0x1c, 0x0c, 0x62, + 0xa4, 0x58, 0x47, 0x6a, 0xb3, 0xe5, 0xf7, 0xc5, 0x37, 0x66, 0x0e, 0x45, + 0x2b, 0x8e, 0xc5, 0x79, 0xa2, 0xcc, 0x0e, 0xa4, 0x75, 0x53, 0x5c, 0x8c, + 0xd1, 0x03, 0x6d, 0x70, 0xbe, 0x8f, 0xfd, 0x05, 0x76, 0xf2, 0x0c, 0xc4, + 0xdc, 0x76, 0xae, 0x35, 0xc6, 0x62, 0xba, 0x1f, 0xed, 0x0f, 0xe5, 0x5d, + 0x98, 0x57, 0xb9, 0xc5, 0x8b, 0x5b, 0x10, 0x58, 0xc6, 0xbe, 0x45, 0xaa, + 0x7a, 0xc9, 0xd7, 0xf0, 0xad, 0xe3, 0xc7, 0x04, 0x7e, 0x35, 0x81, 0x6d, + 0x9f, 0xb1, 0x44, 0xe0, 0xe0, 0xa4, 0x9f, 0xd2, 0xb7, 0x83, 0x02, 0x80, + 0xfa, 0x8a, 0xea, 0x67, 0x2a, 0x47, 0x3b, 0xe2, 0x28, 0xa4, 0x49, 0x85, + 0xc0, 0xc9, 0x0c, 0x9b, 0x3e, 0x95, 0xcc, 0xc5, 0x02, 0xba, 0x79, 0xb7, + 0x2a, 0xd8, 0x5e, 0x47, 0xbf, 0xb5, 0x7a, 0x24, 0x81, 0x59, 0x76, 0xb0, + 0x0c, 0xa7, 0xb1, 0x15, 0x97, 0x77, 0xa5, 0xda, 0xdc, 0xc7, 0xb4, 0x28, + 0x4e, 0x73, 0xc5, 0x6f, 0x0a, 0x8a, 0xd6, 0x30, 0x94, 0x1d, 0xee, 0x71, + 0x6c, 0x1e, 0xe1, 0xc4, 0xc1, 0x81, 0x01, 0x76, 0xb8, 0x3d, 0x80, 0xa7, + 0xfc, 0x97, 0x0e, 0xd6, 0xea, 0x7c, 0xb8, 0xd7, 0x05, 0x4f, 0xb6, 0x39, + 0xad, 0x2b, 0xdd, 0x15, 0xe0, 0x89, 0xbc, 0x9f, 0x9b, 0x77, 0x0d, 0x8e, + 0xbe, 0xd5, 0x98, 0x16, 0x5b, 0x58, 0x15, 0x59, 0x72, 0xe3, 0x05, 0xc6, + 0x39, 0x23, 0xd2, 0xb6, 0x4d, 0x33, 0x31, 0x18, 0x9b, 0x86, 0xda, 0x49, + 0xf2, 0x80, 0xc8, 0x23, 0xa8, 0xc5, 0x47, 0x20, 0x1b, 0x5a, 0xe1, 0xd7, + 0x28, 0x83, 0x28, 0xa3, 0x8e, 0x47, 0xf9, 0xfd, 0x29, 0xec, 0x36, 0x31, + 0x86, 0x0c, 0xef, 0x24, 0x36, 0x0f, 0x19, 0xf6, 0xa4, 0x99, 0x14, 0x63, + 0xe6, 0x0a, 0x88, 0x37, 0x1c, 0x9c, 0x86, 0x1d, 0xea, 0x84, 0x6a, 0xf8, + 0x22, 0x70, 0xfa, 0xbc, 0xcc, 0x32, 0x43, 0xf3, 0x5d, 0x66, 0x94, 0xd8, + 0xf1, 0xc5, 0xd9, 0xff, 0x00, 0x61, 0x6b, 0x91, 0xf0, 0x59, 0x5f, 0xed, + 0xb9, 0x02, 0x81, 0xb4, 0x93, 0x8c, 0x57, 0x5d, 0xa7, 0x61, 0x7c, 0x6f, + 0x3f, 0xbc, 0x4b, 0x5c, 0x95, 0xfe, 0xd7, 0xa1, 0xd5, 0x43, 0x78, 0xfa, + 0x9d, 0xc0, 0x3c, 0x56, 0x07, 0x8c, 0x86, 0x7c, 0x39, 0x70, 0x3e, 0x9f, + 0xce, 0xb7, 0xc5, 0x73, 0x5e, 0x33, 0x2c, 0x34, 0x59, 0x47, 0x63, 0x8c, + 0xfe, 0x75, 0xe5, 0xd2, 0xf8, 0xd1, 0xe9, 0x54, 0xf8, 0x19, 0xe6, 0xfe, + 0x0e, 0x31, 0x2f, 0x8b, 0x20, 0x13, 0x60, 0x21, 0x2c, 0x33, 0xe9, 0x5e, + 0xbf, 0x74, 0xa1, 0x2d, 0xdc, 0xb6, 0x32, 0xab, 0xd4, 0x77, 0x1d, 0xab, + 0xc3, 0xf4, 0xeb, 0xcf, 0xec, 0xfd, 0x65, 0x2e, 0x31, 0x90, 0x8c, 0x73, + 0xf4, 0xae, 0x9f, 0x50, 0xf1, 0xd1, 0x86, 0x4b, 0x68, 0x14, 0xee, 0x86, + 0x4e, 0x18, 0xfa, 0x2d, 0x7b, 0x33, 0xa6, 0xe4, 0xd3, 0x47, 0x91, 0x19, + 0xa8, 0xab, 0x33, 0x27, 0xc4, 0x1a, 0x69, 0xb3, 0xb9, 0x12, 0x85, 0xf9, + 0x65, 0x2d, 0xf3, 0x0e, 0xfc, 0xd5, 0x2d, 0x25, 0xb6, 0xdd, 0x49, 0xef, + 0x1b, 0x0f, 0xd2, 0xb6, 0xf5, 0xab, 0x8b, 0x56, 0xd0, 0x21, 0x82, 0x1c, + 0x65, 0x66, 0x2c, 0x39, 0xc9, 0xc1, 0x19, 0xfe, 0xb5, 0xce, 0xd9, 0xb9, + 0x4b, 0x9f, 0x97, 0xb8, 0x22, 0x92, 0xdc, 0x1e, 0xc6, 0x62, 0x3c, 0xb1, + 0xce, 0x5a, 0x35, 0xcb, 0x72, 0x05, 0x5f, 0xb0, 0x56, 0x79, 0xe0, 0x27, + 0xab, 0x38, 0xfe, 0x74, 0xba, 0x3f, 0x92, 0xb7, 0x72, 0xc9, 0x20, 0xcb, + 0x46, 0x85, 0x90, 0x7f, 0xb4, 0x0d, 0x3a, 0xd4, 0xe6, 0xf2, 0x36, 0x27, + 0x1f, 0xbc, 0x07, 0x1f, 0x8d, 0x5b, 0x26, 0x27, 0xb6, 0xe8, 0x56, 0xcf, + 0x6f, 0x24, 0xd0, 0xc8, 0x72, 0x43, 0xb1, 0x1c, 0x76, 0xc0, 0xc5, 0x6f, + 0xac, 0x75, 0xc9, 0xea, 0xfe, 0x23, 0xb1, 0xd2, 0x5d, 0x5c, 0x5c, 0xab, + 0x33, 0x04, 0x8d, 0x95, 0x7a, 0x86, 0x24, 0x67, 0x3f, 0x85, 0x76, 0x50, + 0xe2, 0x48, 0x95, 0xd4, 0xe5, 0x58, 0x02, 0x0d, 0x7a, 0x58, 0x19, 0xde, + 0x8a, 0x38, 0x71, 0xb1, 0xb5, 0x56, 0x22, 0xc7, 0x52, 0xaa, 0x54, 0x8a, + 0x95, 0x20, 0x5a, 0xeb, 0xb9, 0xc9, 0x61, 0x81, 0x31, 0x4f, 0x0b, 0x4f, + 0x0b, 0x4e, 0x0b, 0x45, 0xc7, 0x61, 0xa1, 0x6a, 0x40, 0xb4, 0xa1, 0x69, + 0xe0, 0x52, 0x18, 0xd0, 0x29, 0xd8, 0xa5, 0x02, 0x9c, 0x05, 0x20, 0x10, + 0x0a, 0x50, 0x29, 0xc0, 0x52, 0x81, 0x40, 0xc0, 0x0a, 0x5c, 0x52, 0x81, + 0x4f, 0x03, 0x8a, 0x9b, 0x80, 0xcc, 0x51, 0x8a, 0x79, 0x14, 0x98, 0xa0, + 0x63, 0x71, 0x4b, 0x8a, 0x5c, 0x52, 0xe2, 0x80, 0x1b, 0x8a, 0x31, 0x4e, + 0xc5, 0x2e, 0x28, 0x01, 0x98, 0xa4, 0xc5, 0x49, 0x8a, 0x4c, 0x50, 0x03, + 0x31, 0x41, 0xa9, 0x36, 0xd1, 0xb2, 0x8b, 0x85, 0x88, 0x69, 0x31, 0x53, + 0x14, 0xa6, 0x95, 0xa2, 0xe2, 0x21, 0x22, 0x90, 0x8a, 0x94, 0xad, 0x26, + 0xda, 0x2e, 0x04, 0x25, 0x69, 0x85, 0x6a, 0xc6, 0xda, 0x42, 0x94, 0x5c, + 0x2c, 0x56, 0x2b, 0x4c, 0x2b, 0x56, 0x0a, 0xd3, 0x4a, 0xd3, 0xb8, 0xec, + 0x54, 0x64, 0xa8, 0x59, 0x2a, 0xf1, 0x4a, 0x89, 0xa3, 0xa7, 0x71, 0x58, + 0xcf, 0x64, 0xa8, 0x59, 0x2a, 0xfb, 0xa5, 0x40, 0xc9, 0x4d, 0x31, 0x14, + 0x1d, 0x2a, 0x16, 0x4a, 0xbc, 0xc9, 0x50, 0xb2, 0x55, 0x5c, 0x45, 0x16, + 0x4a, 0x89, 0x92, 0xae, 0xb2, 0x54, 0x2c, 0x95, 0x57, 0x11, 0x4d, 0x96, + 0xa2, 0x65, 0xab, 0x8c, 0x95, 0x13, 0x25, 0x31, 0x15, 0x0a, 0xd4, 0x65, + 0x6a, 0xd3, 0x25, 0x46, 0x56, 0x98, 0x15, 0x8a, 0xd4, 0x65, 0x6a, 0xc9, + 0x5a, 0x61, 0x5a, 0x62, 0x2b, 0x15, 0xa6, 0x95, 0xab, 0x05, 0x69, 0x85, + 0x68, 0x02, 0xb9, 0x5a, 0x69, 0x5a, 0x99, 0x80, 0x51, 0x92, 0x40, 0x1e, + 0xf5, 0x99, 0x7b, 0xae, 0xe9, 0xb6, 0x20, 0xf9, 0xb7, 0x2b, 0xbb, 0xfb, + 0xab, 0xc9, 0xa4, 0xe4, 0xa3, 0xab, 0x63, 0x51, 0x72, 0xd9, 0x16, 0xf6, + 0xd2, 0x62, 0xb9, 0x89, 0xfc, 0x5f, 0x24, 0xd2, 0x6c, 0xd3, 0xec, 0x5e, + 0x4f, 0x76, 0xff, 0x00, 0x0a, 0x7c, 0x3a, 0x67, 0x8c, 0x75, 0xaf, 0xb9, + 0x0b, 0xc1, 0x19, 0xef, 0x8d, 0x83, 0xf3, 0x35, 0xc9, 0x57, 0x30, 0xa1, + 0x4f, 0xa9, 0xd5, 0x4f, 0x07, 0x56, 0x7d, 0x0d, 0xe9, 0x67, 0x82, 0x05, + 0xcc, 0xb2, 0xa2, 0x0f, 0x73, 0x8a, 0xcc, 0xb8, 0xf1, 0x26, 0x97, 0x06, + 0x7f, 0x7f, 0xbc, 0xfa, 0x20, 0xcd, 0x5a, 0xb3, 0xf8, 0x57, 0x79, 0x3b, + 0x87, 0xd4, 0xb5, 0x0f, 0xa8, 0x5c, 0xb1, 0xae, 0x9a, 0xc7, 0xe1, 0xb6, + 0x83, 0x6b, 0x82, 0xf1, 0x3c, 0xc7, 0xfd, 0xb6, 0xe3, 0xf4, 0xaf, 0x3a, + 0xa6, 0x74, 0xbe, 0xc2, 0x3b, 0x21, 0x95, 0xbf, 0xb4, 0xcf, 0x3c, 0x97, + 0xc5, 0xdb, 0xce, 0x2d, 0x6c, 0xa4, 0x7f, 0x42, 0xdc, 0x53, 0x52, 0xf7, + 0xc4, 0xba, 0x81, 0xff, 0x00, 0x44, 0xb0, 0x60, 0x0f, 0xf7, 0x63, 0x26, + 0xbd, 0x56, 0xee, 0xdb, 0x44, 0xf0, 0xed, 0xba, 0xcb, 0xf6, 0x08, 0x94, + 0x13, 0x80, 0x55, 0x01, 0x3f, 0x9d, 0x26, 0x95, 0xe2, 0x38, 0x35, 0x3b, + 0xe1, 0x6d, 0x05, 0xb9, 0x40, 0x01, 0xc9, 0x35, 0xc9, 0x3c, 0xcf, 0x13, + 0x35, 0x78, 0xec, 0x74, 0x47, 0x05, 0x42, 0x0f, 0x96, 0x4f, 0x53, 0xcd, + 0x23, 0xf0, 0xb7, 0x8c, 0xaf, 0xbe, 0xf7, 0x99, 0x18, 0x3e, 0xac, 0x16, + 0xb3, 0xb5, 0xbf, 0x09, 0xea, 0x9a, 0x74, 0x32, 0xbd, 0xdd, 0xd1, 0x2e, + 0xb8, 0x25, 0x03, 0x93, 0xc1, 0xef, 0x5e, 0xfb, 0x8c, 0x57, 0x07, 0xe3, + 0x30, 0x1a, 0x4b, 0xb0, 0x47, 0xf0, 0xc6, 0x3f, 0x9d, 0x73, 0xc7, 0x17, + 0x5a, 0x72, 0xd5, 0x9d, 0x0f, 0x0d, 0x4a, 0x2b, 0x44, 0x79, 0x9f, 0x84, + 0x75, 0x76, 0xb5, 0xbd, 0x6d, 0x3e, 0xe5, 0xce, 0xc9, 0x0f, 0xc8, 0x58, + 0xf4, 0x3e, 0x95, 0xde, 0xed, 0xaf, 0x2f, 0xd5, 0xec, 0xde, 0xde, 0x61, + 0x3c, 0x5c, 0x32, 0x9c, 0x82, 0x3b, 0x57, 0x7b, 0xe1, 0xbd, 0x59, 0x75, + 0x7d, 0x2d, 0x24, 0x24, 0x79, 0xc9, 0xf2, 0xc8, 0x3d, 0xeb, 0xe9, 0x30, + 0x35, 0xfd, 0xa4, 0x39, 0x5e, 0xe8, 0xf0, 0xb1, 0x74, 0x79, 0x25, 0x74, + 0x6a, 0x6d, 0xa5, 0xdb, 0x52, 0x05, 0xa5, 0xdb, 0x5d, 0xe7, 0x19, 0x1e, + 0xda, 0x9e, 0xd8, 0x01, 0x30, 0x27, 0xb5, 0x37, 0x6d, 0x3e, 0x36, 0x54, + 0x6c, 0xb0, 0xc8, 0x15, 0x86, 0x27, 0xf8, 0x32, 0xf4, 0x66, 0xd8, 0x7f, + 0xe2, 0xc7, 0xd4, 0xcb, 0x31, 0x16, 0x37, 0xf3, 0x01, 0xc4, 0x11, 0xb3, + 0x7e, 0x24, 0xd7, 0x0e, 0x97, 0x4e, 0xe5, 0x8b, 0x60, 0xf3, 0xde, 0xbb, + 0xfb, 0xf0, 0x60, 0xf0, 0xa6, 0xa5, 0x70, 0xbc, 0x19, 0x5c, 0x25, 0x79, + 0x97, 0x96, 0x5b, 0x9f, 0x30, 0x83, 0xed, 0x5f, 0x37, 0x43, 0x55, 0x26, + 0x7b, 0x75, 0xbd, 0xd7, 0x14, 0x69, 0xad, 0xca, 0x0f, 0xbd, 0x1a, 0xfe, + 0x55, 0xa5, 0xa7, 0xea, 0x31, 0xda, 0xdc, 0x09, 0xe2, 0x1b, 0x64, 0x1d, + 0xf3, 0x5c, 0xc9, 0x49, 0x07, 0x49, 0x4f, 0xe3, 0x4b, 0x18, 0xb9, 0x2c, + 0x42, 0x1d, 0xd4, 0xe5, 0x4e, 0x2d, 0x6a, 0x28, 0xcd, 0xa7, 0xa1, 0xea, + 0x7a, 0x76, 0xbe, 0x75, 0x1d, 0x2a, 0xe4, 0xcf, 0x80, 0x57, 0x20, 0x63, + 0xbd, 0x5a, 0xbe, 0xd6, 0x56, 0x0d, 0x0e, 0xda, 0x34, 0x6f, 0x98, 0xc6, + 0x3f, 0x95, 0x79, 0xc5, 0xb5, 0xe4, 0xf6, 0xba, 0x6c, 0xaa, 0x72, 0xa4, + 0xf5, 0xab, 0xb1, 0xde, 0x3d, 0xcd, 0xac, 0x25, 0xcf, 0x45, 0x00, 0x57, + 0x24, 0x70, 0xea, 0xf7, 0xe9, 0x73, 0xae, 0x55, 0xdd, 0xad, 0xd6, 0xc4, + 0xd2, 0xca, 0xd2, 0xb9, 0x76, 0x39, 0x26, 0xab, 0xcf, 0xcc, 0x2f, 0xf4, + 0xa9, 0x07, 0x4a, 0x8a, 0x63, 0xfb, 0xa7, 0xfa, 0x57, 0x4a, 0xdc, 0xe6, + 0x7b, 0x19, 0x49, 0xfe, 0xa9, 0xaa, 0xa4, 0x2c, 0x12, 0x62, 0xcd, 0xca, + 0x93, 0xb4, 0x8a, 0xb2, 0x87, 0xf7, 0x2f, 0xf8, 0xd6, 0x7f, 0x99, 0xe5, + 0xca, 0x4b, 0x7d, 0xd3, 0xc6, 0x2b, 0xb6, 0xda, 0x1c, 0x69, 0xea, 0x6e, + 0x45, 0x73, 0xf6, 0x66, 0xda, 0xc7, 0x74, 0x2c, 0x37, 0xff, 0x00, 0x85, + 0x56, 0x7b, 0xbf, 0xb3, 0x48, 0xc8, 0x0e, 0xe5, 0xc7, 0xe7, 0x9e, 0xf5, + 0x9e, 0xd7, 0x44, 0x27, 0x97, 0x9e, 0x3a, 0x8a, 0xa8, 0x66, 0x66, 0xc8, + 0x26, 0xa5, 0x40, 0xb7, 0x22, 0x79, 0xae, 0x48, 0x7e, 0x1b, 0x81, 0xfa, + 0xd5, 0x63, 0xba, 0x41, 0xed, 0xde, 0x9b, 0x1f, 0xcc, 0x98, 0x63, 0xce, + 0x7b, 0xfa, 0xd2, 0xa6, 0xef, 0x98, 0x7a, 0x9c, 0x1a, 0xbb, 0x24, 0x67, + 0x76, 0xcb, 0x96, 0x44, 0xec, 0x6c, 0xd5, 0x92, 0x78, 0x35, 0x5a, 0xd3, + 0x0b, 0xb9, 0x45, 0x58, 0x20, 0x9a, 0x5d, 0x46, 0x2a, 0xf7, 0x35, 0xa1, + 0x62, 0x7f, 0x71, 0xf8, 0xd6, 0x70, 0x3c, 0xd5, 0xfb, 0x13, 0xfb, 0xa3, + 0xf5, 0xac, 0xea, 0xec, 0x69, 0x47, 0xe2, 0x2e, 0x50, 0x69, 0x28, 0x35, + 0xcc, 0x74, 0x89, 0x45, 0x14, 0x50, 0x00, 0x68, 0xa2, 0x92, 0x80, 0x0a, + 0x28, 0xa2, 0x81, 0x85, 0x21, 0xa5, 0xcd, 0x27, 0x53, 0x40, 0x05, 0x14, + 0x1a, 0x05, 0x00, 0x14, 0x62, 0x8a, 0x55, 0xa0, 0x0b, 0xd0, 0x74, 0x15, + 0xa3, 0x08, 0xe9, 0x59, 0xd0, 0x1e, 0x05, 0x69, 0x40, 0x7a, 0x57, 0x3c, + 0xcd, 0xa0, 0x68, 0xdb, 0x8e, 0x95, 0xa9, 0x00, 0xac, 0xd8, 0x3a, 0x0a, + 0xd3, 0x83, 0x8a, 0xe4, 0x99, 0xd7, 0x02, 0xf4, 0x63, 0x8a, 0xb2, 0x8b, + 0x55, 0x63, 0x6a, 0xb4, 0xad, 0x58, 0x33, 0x74, 0x4a, 0x3a, 0x53, 0x59, + 0x69, 0x41, 0xa7, 0x67, 0x22, 0x91, 0x44, 0x4b, 0x9c, 0xd3, 0xc3, 0x1a, + 0x70, 0xc5, 0x04, 0x03, 0x48, 0x2e, 0x38, 0x4a, 0x58, 0x6d, 0xcf, 0x4a, + 0x6e, 0x28, 0x08, 0x3a, 0xd2, 0xed, 0x38, 0xa6, 0x21, 0x1c, 0x02, 0xa4, + 0x0f, 0x4a, 0xe2, 0xe4, 0x04, 0x35, 0xda, 0xfa, 0x11, 0xfc, 0xab, 0xb4, + 0xda, 0x71, 0x5c, 0xb4, 0xd6, 0xd2, 0x43, 0x7b, 0x70, 0xf2, 0x42, 0xe6, + 0x27, 0x3d, 0x40, 0xae, 0xac, 0x2b, 0xd5, 0x9c, 0x98, 0xa5, 0xa2, 0x33, + 0xac, 0x61, 0x69, 0x2c, 0xca, 0x8e, 0x08, 0x90, 0x30, 0xcf, 0x7a, 0xd3, + 0x8e, 0x46, 0xc0, 0x57, 0x8c, 0x83, 0xeb, 0x49, 0xe5, 0x41, 0xb4, 0x14, + 0x62, 0x83, 0xdc, 0x62, 0x81, 0x14, 0xa3, 0x94, 0x90, 0x30, 0xfa, 0xd7, + 0x5f, 0x31, 0xc9, 0x60, 0x2d, 0xc1, 0xc1, 0x38, 0xaa, 0xd2, 0x39, 0x53, + 0xe9, 0x53, 0x49, 0x23, 0xa0, 0x21, 0xe3, 0xeb, 0xdf, 0x15, 0x55, 0xe6, + 0x42, 0x30, 0x78, 0xad, 0x22, 0xd1, 0x9c, 0xae, 0x41, 0x24, 0xf8, 0xeb, + 0x54, 0xe4, 0x30, 0xbb, 0xe5, 0x91, 0x49, 0xe9, 0x9a, 0x7d, 0xce, 0xd2, + 0x09, 0x43, 0x9a, 0xc6, 0x9a, 0xe0, 0xa3, 0xf5, 0xad, 0xa3, 0x1b, 0x98, + 0xb6, 0x5b, 0x9b, 0x4b, 0x47, 0xfd, 0xe4, 0x5f, 0x33, 0x8e, 0x54, 0x1f, + 0xf1, 0xac, 0xdb, 0xbb, 0x39, 0xa0, 0x81, 0x62, 0x74, 0xc8, 0x62, 0x41, + 0x38, 0xe4, 0x03, 0x5a, 0x76, 0x57, 0x9b, 0x88, 0xe7, 0x35, 0xbd, 0x12, + 0x47, 0x74, 0x9b, 0x24, 0x50, 0xca, 0x46, 0x0d, 0x3e, 0x77, 0x1d, 0xc1, + 0x46, 0xfb, 0x1c, 0xd7, 0x82, 0xa3, 0x48, 0xf5, 0xa9, 0x51, 0x73, 0x85, + 0x07, 0x04, 0xd7, 0x5b, 0x60, 0x7f, 0xe2, 0xb6, 0x97, 0xfe, 0xb9, 0x2f, + 0xf3, 0xaa, 0xb6, 0x1e, 0x1f, 0x8b, 0x4e, 0xbf, 0x7b, 0xbb, 0x77, 0x6f, + 0x98, 0x7d, 0xc3, 0x52, 0xe9, 0xd2, 0xab, 0xf8, 0xce, 0x4e, 0xa1, 0xbc, + 0xb5, 0xc8, 0xac, 0x2a, 0xbb, 0xf3, 0x3f, 0x23, 0x7a, 0x4a, 0xce, 0x2b, + 0xcc, 0xef, 0x47, 0x5a, 0xc3, 0xf1, 0x7a, 0x06, 0xf0, 0xf5, 0xcb, 0x77, + 0x50, 0x0f, 0xeb, 0x5b, 0x63, 0xa5, 0x63, 0xf8, 0xac, 0x67, 0xc3, 0x77, + 0x9f, 0xee, 0x8f, 0xe6, 0x2b, 0xcc, 0xa7, 0xf1, 0xa3, 0xd3, 0xa9, 0xf0, + 0x33, 0xc4, 0x40, 0xdf, 0x7d, 0xb7, 0xd5, 0xf1, 0x55, 0x35, 0xb8, 0x4c, + 0x37, 0x31, 0xa1, 0xcf, 0x4e, 0x95, 0x7e, 0xd8, 0x13, 0xac, 0xc4, 0xa0, + 0x67, 0x32, 0x0e, 0x2a, 0xcf, 0x8d, 0x62, 0x89, 0x2e, 0xad, 0x9e, 0x31, + 0xd4, 0x10, 0x7d, 0x6b, 0xde, 0x8c, 0xac, 0xec, 0x78, 0x52, 0x8d, 0xd5, + 0xcc, 0xbb, 0x4b, 0x89, 0x25, 0x8b, 0x0c, 0xc4, 0x80, 0x2b, 0x47, 0x49, + 0x01, 0xf5, 0x14, 0x53, 0xde, 0xb2, 0xac, 0x7e, 0xe3, 0xd6, 0xae, 0x90, + 0x71, 0xa9, 0xc5, 0xf5, 0xa8, 0x97, 0xc4, 0xcb, 0x8e, 0xc6, 0x74, 0x72, + 0xc9, 0x0d, 0xc3, 0xf9, 0x63, 0x93, 0x90, 0x7e, 0x95, 0x62, 0x19, 0x08, + 0xb9, 0x8c, 0xb7, 0x1f, 0x38, 0xfe, 0x75, 0x0b, 0xfc, 0xb7, 0xb2, 0xa8, + 0xfe, 0xf1, 0xa6, 0x12, 0x43, 0xe4, 0xf5, 0xcf, 0xad, 0x36, 0xb5, 0x42, + 0x4e, 0xc9, 0x9d, 0x4f, 0x8c, 0x90, 0xbc, 0x2d, 0x7b, 0x1a, 0x80, 0x0c, + 0xa1, 0x4b, 0x0e, 0xe4, 0x56, 0xcc, 0x1e, 0x3e, 0xd4, 0x2c, 0x7c, 0x49, + 0xa6, 0xd9, 0xc7, 0x20, 0x7b, 0x46, 0x82, 0x25, 0x78, 0x88, 0xc0, 0x04, + 0x8e, 0xb5, 0xc9, 0x6a, 0x9a, 0x96, 0xfd, 0x11, 0xad, 0x24, 0x66, 0xdc, + 0x27, 0x0c, 0x33, 0xe9, 0x8a, 0xc7, 0xfb, 0x6c, 0x92, 0x6a, 0x90, 0x4e, + 0xc8, 0x0f, 0x94, 0xa9, 0x9c, 0x1e, 0xa1, 0x7d, 0xcd, 0x74, 0x51, 0x6e, + 0x0a, 0xc8, 0xc2, 0xb2, 0x52, 0x77, 0x3e, 0xa1, 0xd2, 0x35, 0x7b, 0x7d, + 0x5d, 0x27, 0xf2, 0x72, 0x1e, 0x09, 0x0c, 0x72, 0x29, 0xec, 0x45, 0x69, + 0x85, 0xaf, 0x1b, 0xf8, 0x49, 0xe2, 0x19, 0x2e, 0x7c, 0x4d, 0xa9, 0x59, + 0x31, 0x26, 0x2b, 0xac, 0xce, 0xbb, 0xcf, 0xcc, 0x08, 0xff, 0x00, 0xeb, + 0x57, 0xb4, 0x85, 0xaf, 0x42, 0x32, 0xe6, 0x57, 0x38, 0xa5, 0x1b, 0x3b, + 0x0c, 0x0b, 0x4f, 0x0b, 0x49, 0x34, 0xb1, 0x5b, 0x40, 0xf3, 0xcc, 0xe1, + 0x22, 0x8d, 0x4b, 0x33, 0x1e, 0x80, 0x0a, 0xe6, 0x47, 0xc4, 0x7f, 0x09, + 0x9f, 0xf9, 0x8b, 0x47, 0xf5, 0xda, 0xdf, 0xe1, 0x43, 0x92, 0x5b, 0x82, + 0x8b, 0x7b, 0x1d, 0x48, 0x14, 0xe0, 0xb5, 0xc9, 0xcd, 0xf1, 0x2b, 0xc2, + 0xb1, 0xdb, 0xb4, 0x89, 0xaa, 0xc4, 0xec, 0x3a, 0x20, 0x04, 0x13, 0xcf, + 0xd2, 0xb4, 0xad, 0x7c, 0x67, 0xe1, 0xab, 0xb2, 0x04, 0x3a, 0xd5, 0x9b, + 0x1f, 0x43, 0x26, 0x3f, 0x9d, 0x2e, 0x74, 0xfa, 0x87, 0x2c, 0xbb, 0x1b, + 0x9b, 0x69, 0x71, 0x5c, 0xa7, 0x88, 0xfe, 0x20, 0x68, 0xde, 0x1e, 0x36, + 0xac, 0xd7, 0x31, 0x5c, 0x24, 0xac, 0x77, 0xf9, 0x0e, 0x18, 0xaa, 0x81, + 0xd7, 0x03, 0xde, 0xba, 0x9b, 0x39, 0xe3, 0xbd, 0xb5, 0x86, 0xe6, 0x23, + 0x98, 0xe5, 0x40, 0xeb, 0xf4, 0x23, 0x34, 0x73, 0x26, 0x0e, 0x2d, 0x12, + 0x01, 0x4b, 0x8a, 0x94, 0x2d, 0x04, 0x05, 0x19, 0x27, 0x14, 0x5c, 0x2c, + 0x30, 0x0a, 0x77, 0x6a, 0x7e, 0xde, 0x28, 0xdb, 0x4a, 0xe3, 0xb1, 0x1e, + 0x28, 0xc5, 0x49, 0xb6, 0x9d, 0xb0, 0xd1, 0x70, 0xb1, 0x16, 0xda, 0x5d, + 0xb5, 0x2e, 0xc3, 0x4a, 0x12, 0x8e, 0x61, 0xd8, 0x87, 0x6d, 0x1b, 0x6a, + 0x7f, 0x2f, 0xda, 0x93, 0x65, 0x2e, 0x60, 0xb1, 0x0e, 0x29, 0x71, 0x52, + 0x6d, 0xa4, 0xdb, 0x45, 0xc5, 0x61, 0xa0, 0x52, 0xe2, 0x9d, 0xb6, 0x8c, + 0x51, 0x70, 0x19, 0xb7, 0xda, 0x9a, 0x56, 0xa5, 0xc5, 0x26, 0x28, 0xb8, + 0x11, 0x6d, 0xa3, 0x68, 0xa9, 0x48, 0xa4, 0x2b, 0x45, 0xc2, 0xc4, 0x45, + 0x29, 0xa5, 0x6a, 0x5c, 0x52, 0x60, 0xd1, 0x71, 0x90, 0x14, 0xa6, 0x15, + 0xab, 0x1b, 0x69, 0xa5, 0x69, 0xdc, 0x2c, 0x57, 0x22, 0xa3, 0x61, 0x56, + 0x0a, 0xd4, 0x65, 0x68, 0xb8, 0x8a, 0xae, 0x95, 0x03, 0xa5, 0x5d, 0x65, + 0xa8, 0x5d, 0x2a, 0x93, 0x13, 0x45, 0x17, 0x4a, 0x81, 0x92, 0xaf, 0x3a, + 0x54, 0x0c, 0x95, 0x69, 0x92, 0x52, 0x64, 0xa8, 0x59, 0x2a, 0xe3, 0xae, + 0x3a, 0xf4, 0xaa, 0xad, 0x2c, 0x5b, 0x88, 0xf3, 0x17, 0x3f, 0x5a, 0x77, + 0x0b, 0x10, 0x32, 0x54, 0x2c, 0x95, 0x75, 0x97, 0x23, 0x23, 0xa5, 0x43, + 0xb7, 0x23, 0x38, 0xaa, 0xb8, 0xac, 0x53, 0x64, 0xa8, 0x99, 0x2a, 0xeb, + 0x25, 0x44, 0xc9, 0x81, 0x4e, 0xe2, 0xb1, 0x4c, 0xa5, 0x46, 0xca, 0x07, + 0x5a, 0xc8, 0xd4, 0xbc, 0x4e, 0x90, 0x5c, 0x9b, 0x4b, 0x1b, 0x39, 0xee, + 0xee, 0xbf, 0xba, 0xaa, 0x40, 0x1f, 0x8d, 0x47, 0x1f, 0x86, 0x7c, 0x4f, + 0xaf, 0x61, 0xb5, 0x0b, 0xb4, 0xd3, 0xed, 0xdb, 0xfe, 0x59, 0x45, 0xf7, + 0xb1, 0x5c, 0xb5, 0xf1, 0xd4, 0x68, 0xe8, 0xde, 0xa7, 0x45, 0x2c, 0x1d, + 0x5a, 0xbb, 0x2d, 0x09, 0x75, 0x1d, 0x77, 0x4d, 0xd3, 0x81, 0xf3, 0xee, + 0x17, 0x77, 0xf7, 0x17, 0x93, 0x58, 0x0f, 0xe2, 0x7d, 0x43, 0x52, 0x93, + 0xca, 0xd1, 0xf4, 0xc9, 0x64, 0xcf, 0x47, 0x65, 0xcf, 0xe9, 0x5d, 0xbe, + 0x9f, 0xf0, 0xef, 0x43, 0xb0, 0x50, 0xd2, 0x44, 0xd7, 0x32, 0xe4, 0x65, + 0xe5, 0x39, 0xfd, 0x2a, 0xce, 0xb5, 0xa9, 0xc5, 0xe1, 0xef, 0x2a, 0xde, + 0xd2, 0xde, 0x18, 0xc3, 0xae, 0x46, 0x14, 0x0c, 0x73, 0x8a, 0xf2, 0xe7, + 0x9a, 0xd4, 0xa8, 0xf9, 0x69, 0x2b, 0x1e, 0x84, 0x72, 0xfa, 0x74, 0xd7, + 0x35, 0x46, 0x71, 0x10, 0x78, 0x2b, 0xc5, 0x1a, 0xd3, 0x07, 0xd4, 0x6e, + 0xc5, 0xb4, 0x67, 0xf8, 0x77, 0x7f, 0x41, 0x5b, 0x56, 0x1f, 0x0f, 0x7c, + 0x3d, 0x65, 0x2a, 0x2d, 0xdd, 0xcb, 0x5c, 0xce, 0xc7, 0x01, 0x4b, 0x60, + 0x13, 0xf4, 0x15, 0xde, 0xdb, 0xb9, 0x7b, 0x48, 0xdd, 0xb9, 0x66, 0x40, + 0x4f, 0xd7, 0x15, 0xc0, 0xe9, 0xce, 0x64, 0xf1, 0x34, 0x59, 0x3f, 0xf2, + 0xd8, 0x9f, 0xd6, 0xbc, 0xff, 0x00, 0x69, 0x56, 0xb5, 0xdc, 0xe5, 0xb1, + 0xd6, 0xe3, 0x0a, 0x49, 0x72, 0xad, 0xce, 0xca, 0xd7, 0x47, 0xd3, 0xb4, + 0xc8, 0x89, 0xb5, 0xb3, 0x86, 0x3d, 0xa3, 0xa8, 0x5e, 0x7f, 0x3a, 0xe7, + 0x23, 0xf1, 0x3d, 0xdd, 0xce, 0xa6, 0x96, 0xc8, 0xa9, 0x1a, 0x17, 0x2a, + 0x70, 0x2b, 0xb0, 0xba, 0xe2, 0xd6, 0x43, 0xfe, 0xc9, 0xae, 0x0f, 0x4d, + 0xd1, 0xaf, 0xc6, 0xa8, 0x97, 0x06, 0x06, 0xd9, 0xe6, 0x64, 0xe4, 0x63, + 0x8c, 0xd6, 0x54, 0x94, 0x75, 0x72, 0x34, 0xac, 0xe6, 0xb9, 0x54, 0x0e, + 0xfc, 0x74, 0xa7, 0x0a, 0x4e, 0xd4, 0xb5, 0x89, 0xd0, 0x72, 0x7e, 0x3a, + 0x39, 0xb1, 0xb7, 0x4f, 0x57, 0x35, 0x8d, 0xe0, 0xd5, 0x29, 0xac, 0xe4, + 0x8c, 0x64, 0x1e, 0xbf, 0x4a, 0xee, 0x2f, 0x74, 0xfb, 0x6b, 0xe6, 0x43, + 0x70, 0x9b, 0xf6, 0xf4, 0x19, 0xe2, 0x92, 0xdf, 0x4d, 0xb3, 0xb6, 0x60, + 0xd1, 0x40, 0x8a, 0x47, 0x43, 0x5b, 0x2a, 0xa9, 0x43, 0x94, 0xe7, 0x95, + 0x17, 0x2a, 0xaa, 0x77, 0x2e, 0xd7, 0x01, 0xe3, 0x13, 0xfe, 0x93, 0x76, + 0x3f, 0xeb, 0x9f, 0xf2, 0x35, 0xdf, 0xe6, 0xbc, 0xef, 0xc6, 0x2e, 0x3e, + 0xd9, 0x78, 0x3f, 0xda, 0x8b, 0xf9, 0x1a, 0x9a, 0x5f, 0x11, 0xb4, 0xf6, + 0x38, 0x4b, 0xd8, 0x56, 0x68, 0xd9, 0x48, 0xac, 0x7d, 0x17, 0x51, 0x6f, + 0x0f, 0xeb, 0x80, 0xbe, 0x7e, 0xcf, 0x29, 0xda, 0xe3, 0xd3, 0xde, 0xb7, + 0x27, 0x3f, 0x23, 0x7d, 0x2b, 0x23, 0x52, 0xb7, 0xb3, 0xb8, 0xd2, 0x20, + 0x92, 0x12, 0xe6, 0xe3, 0x07, 0xcc, 0x2d, 0xd3, 0xf0, 0xaf, 0x5e, 0x85, + 0x47, 0x4e, 0x4a, 0x48, 0xf3, 0x6b, 0xd3, 0x53, 0x8b, 0x4c, 0xf4, 0xf4, + 0x2a, 0xe8, 0x19, 0x4e, 0x41, 0x19, 0x04, 0x53, 0xf6, 0x9a, 0xe6, 0x7c, + 0x0d, 0xa9, 0x4b, 0x79, 0xa5, 0x9b, 0x4b, 0x85, 0x61, 0x2d, 0xbf, 0x00, + 0xb0, 0xfb, 0xcb, 0xda, 0xba, 0xc0, 0x95, 0xf4, 0x50, 0x97, 0x32, 0xb9, + 0xe0, 0xc9, 0x72, 0xbb, 0x11, 0x6c, 0xa6, 0x5c, 0x2e, 0xdb, 0x69, 0x0e, + 0x76, 0xe0, 0x75, 0xab, 0x21, 0x6a, 0x1b, 0xc4, 0xdd, 0x07, 0x97, 0xde, + 0x42, 0x14, 0x56, 0x58, 0x96, 0x95, 0x19, 0x3f, 0x23, 0x5c, 0x3a, 0x6e, + 0xac, 0x57, 0x98, 0xba, 0xed, 0xbc, 0x69, 0xe0, 0x17, 0xdd, 0xc7, 0xca, + 0x24, 0xfc, 0x49, 0xaf, 0x20, 0x32, 0x37, 0xf0, 0xa1, 0x23, 0xd6, 0xbd, + 0x8f, 0xc6, 0xec, 0xb6, 0xde, 0x17, 0x16, 0xfd, 0x88, 0x0b, 0xf9, 0x57, + 0x8f, 0x86, 0x00, 0x1e, 0x71, 0x5f, 0x35, 0x83, 0xbb, 0xa6, 0xdf, 0x99, + 0xee, 0xe2, 0xec, 0xaa, 0x24, 0x88, 0x4c, 0xac, 0x3a, 0xa3, 0x0a, 0xb3, + 0x63, 0x30, 0xf3, 0x18, 0x9e, 0x3e, 0xb5, 0x09, 0x61, 0xeb, 0x4d, 0x27, + 0x8a, 0xdd, 0xc7, 0x99, 0x58, 0xc1, 0x4b, 0x95, 0xdc, 0xd5, 0xb9, 0x70, + 0xd6, 0xcf, 0x83, 0x9e, 0x2a, 0xc5, 0x81, 0xff, 0x00, 0x43, 0x8b, 0xe9, + 0x59, 0x31, 0x13, 0xf6, 0x37, 0xe6, 0xb4, 0xf4, 0xf3, 0xfe, 0x85, 0x1f, + 0xd2, 0xb2, 0xb5, 0x91, 0xad, 0xee, 0xee, 0x5d, 0x07, 0x8a, 0x64, 0x87, + 0x31, 0xb7, 0xd2, 0x9d, 0xda, 0xab, 0x4c, 0xe5, 0x66, 0x08, 0x3a, 0x15, + 0x24, 0xd2, 0x4a, 0xec, 0x6f, 0x63, 0x3d, 0x3f, 0xd5, 0xbf, 0xe3, 0x58, + 0xf7, 0x04, 0x87, 0x39, 0xe8, 0x7b, 0xd6, 0xba, 0x7d, 0xc7, 0xfc, 0x6b, + 0x1e, 0xe7, 0xfd, 0x61, 0x53, 0xd0, 0xd7, 0x74, 0x4e, 0x19, 0x11, 0x72, + 0xc3, 0x07, 0xa8, 0xa4, 0x6f, 0x9d, 0x32, 0x3a, 0xe7, 0x9a, 0x51, 0x9d, + 0xa0, 0xf7, 0x15, 0x34, 0x70, 0xc9, 0x21, 0xca, 0x2d, 0x30, 0x1a, 0x98, + 0x64, 0xdd, 0xdf, 0xa6, 0x6a, 0x48, 0x55, 0xdd, 0xc8, 0x0a, 0x7e, 0xb5, + 0x66, 0x2b, 0x45, 0x8c, 0x72, 0x73, 0xed, 0x56, 0x00, 0x0a, 0x30, 0x05, + 0x20, 0x21, 0x82, 0x13, 0x16, 0x4b, 0x10, 0x49, 0xa9, 0x5b, 0xa5, 0x29, + 0xa4, 0x20, 0xf7, 0x34, 0x86, 0x34, 0x63, 0x35, 0xa1, 0x61, 0xfe, 0xad, + 0xbe, 0xb5, 0x9d, 0x8c, 0x3d, 0x5f, 0xd3, 0xce, 0x55, 0xfe, 0xb5, 0x9d, + 0x5f, 0x84, 0xba, 0x5f, 0x11, 0x77, 0x34, 0x52, 0x50, 0x2b, 0x94, 0xeb, + 0x16, 0x93, 0x34, 0x52, 0x1a, 0x00, 0x33, 0x46, 0x68, 0xa4, 0xa0, 0x62, + 0xd2, 0x51, 0x46, 0x28, 0x00, 0xa2, 0x8a, 0x4a, 0x00, 0x5c, 0xd2, 0x51, + 0x45, 0x00, 0x14, 0xe5, 0xa6, 0xd3, 0xd6, 0x80, 0x2e, 0x41, 0xd0, 0x56, + 0x8c, 0x07, 0xa5, 0x66, 0x42, 0x78, 0x15, 0x7e, 0x17, 0xac, 0x26, 0x8d, + 0xa2, 0x6b, 0x40, 0x7a, 0x56, 0x8c, 0x2d, 0x59, 0x10, 0xbd, 0x5f, 0x8a, + 0x4a, 0xe5, 0x92, 0x3a, 0x60, 0xcd, 0x58, 0x9a, 0xad, 0x23, 0x56, 0x64, + 0x72, 0x55, 0x94, 0x97, 0x8a, 0xc1, 0xa3, 0x74, 0xcb, 0xc1, 0xa9, 0xe1, + 0xaa, 0x9a, 0xcb, 0x52, 0x89, 0x2a, 0x6c, 0x5d, 0xcb, 0x00, 0xd3, 0x85, + 0x57, 0x12, 0x53, 0xc4, 0x94, 0x01, 0x60, 0x53, 0x85, 0x44, 0x8f, 0x91, + 0x4e, 0xdd, 0x40, 0x0f, 0x14, 0x84, 0x0e, 0x84, 0x67, 0xeb, 0x40, 0xa5, + 0x24, 0x62, 0x81, 0x10, 0xbd, 0x9d, 0xbc, 0x83, 0xe6, 0x89, 0x4f, 0xe1, + 0x55, 0x64, 0xd2, 0x2d, 0x9f, 0x95, 0xca, 0x93, 0xe8, 0x6a, 0xfe, 0x78, + 0xa5, 0x1d, 0x2a, 0x94, 0xe4, 0xb6, 0x64, 0x3a, 0x71, 0x7b, 0xa3, 0x16, + 0x5d, 0x1d, 0x82, 0x61, 0x65, 0x63, 0x8f, 0x53, 0x58, 0xb7, 0x9a, 0x74, + 0xe9, 0x93, 0xb3, 0x22, 0xbb, 0x17, 0xe4, 0x55, 0x1b, 0x95, 0xe2, 0xba, + 0x21, 0x5e, 0x4b, 0x73, 0x09, 0xe1, 0xe2, 0xcf, 0x3b, 0xbd, 0x89, 0xd3, + 0x24, 0x02, 0x31, 0x58, 0x17, 0x52, 0x48, 0xa7, 0x19, 0xcd, 0x7a, 0x0e, + 0xa1, 0x0a, 0xb0, 0x39, 0x50, 0x6b, 0x96, 0xbd, 0xb2, 0x89, 0xd8, 0xf1, + 0x8a, 0xf4, 0x28, 0xd5, 0x4f, 0x73, 0xcf, 0xab, 0x45, 0xad, 0x8c, 0x7b, + 0x29, 0xa4, 0x49, 0x01, 0xe4, 0x57, 0x5f, 0xa6, 0xde, 0x64, 0x2e, 0x46, + 0x6b, 0x26, 0xcf, 0x4a, 0xdc, 0x46, 0xd2, 0x0d, 0x6f, 0xda, 0xe9, 0x32, + 0x28, 0x07, 0x61, 0xfa, 0x8a, 0xaa, 0x95, 0x22, 0xc9, 0x85, 0x39, 0x23, + 0x6a, 0x09, 0x03, 0xf2, 0x3f, 0x1a, 0xcb, 0xb1, 0x42, 0x9e, 0x36, 0x99, + 0xb1, 0xf7, 0x91, 0x48, 0x35, 0x7e, 0x38, 0x65, 0x84, 0x73, 0xd3, 0xde, + 0xa7, 0xb4, 0x8a, 0x35, 0xbf, 0x49, 0x4a, 0x62, 0x42, 0x40, 0xcf, 0xb5, + 0x73, 0xc9, 0xab, 0x33, 0xa2, 0x09, 0xdd, 0x1d, 0x38, 0x07, 0xd2, 0xb2, + 0x3c, 0x55, 0xff, 0x00, 0x22, 0xdd, 0xe7, 0xfb, 0xa3, 0xf9, 0xd6, 0xb8, + 0x6a, 0xc8, 0xf1, 0x4f, 0x3e, 0x1c, 0xbc, 0xff, 0x00, 0x74, 0x7f, 0x3a, + 0xf3, 0xe9, 0xfc, 0x68, 0xef, 0xa9, 0xf0, 0xb3, 0xc6, 0x6c, 0x46, 0x7c, + 0x41, 0x06, 0x58, 0x2e, 0x25, 0x07, 0x26, 0xa7, 0xf1, 0xd3, 0x2b, 0xea, + 0x71, 0xb0, 0xc0, 0x3b, 0x7e, 0x6f, 0xad, 0x56, 0xb4, 0x5d, 0xda, 0xec, + 0x23, 0x70, 0x5f, 0xde, 0x0e, 0x4d, 0x5c, 0xf1, 0xe1, 0x43, 0xa8, 0xc4, + 0x40, 0xc3, 0x05, 0xc3, 0x7a, 0xd7, 0xb8, 0xbe, 0x34, 0x78, 0xbf, 0x65, + 0x98, 0x16, 0x3f, 0x75, 0xeb, 0x57, 0x49, 0x01, 0xb5, 0x48, 0x47, 0x4c, + 0x9a, 0xc9, 0xb1, 0xc6, 0xd7, 0xad, 0x2d, 0x31, 0xf6, 0x6a, 0x50, 0x9f, + 0xf6, 0xa8, 0x97, 0xc4, 0xc2, 0x3b, 0x15, 0x6f, 0x7f, 0x77, 0xa8, 0xdc, + 0x7b, 0x3b, 0x7f, 0x3a, 0xa8, 0x18, 0x9e, 0x4d, 0x5e, 0xd4, 0x3f, 0xe4, + 0x2d, 0x72, 0x3f, 0xe9, 0xa3, 0x7f, 0x3a, 0xa2, 0xdf, 0x2b, 0xe1, 0x4e, + 0x45, 0x5a, 0xe8, 0x43, 0x25, 0xd4, 0x24, 0x12, 0x45, 0xb8, 0x7f, 0x78, + 0x7f, 0x2a, 0x8a, 0xd2, 0x35, 0x7b, 0x94, 0x69, 0x65, 0x11, 0x20, 0x53, + 0x97, 0x61, 0x91, 0xd3, 0xa7, 0xe3, 0x53, 0x6a, 0x91, 0x79, 0x51, 0x27, + 0x1f, 0x2b, 0xe1, 0xb3, 0x55, 0x20, 0x28, 0x46, 0x24, 0x62, 0xa8, 0x41, + 0x04, 0xf5, 0xc5, 0x6b, 0x1d, 0xd1, 0x8c, 0x8e, 0xbf, 0xe1, 0x44, 0x8c, + 0x9e, 0x3d, 0xb3, 0x0b, 0x83, 0xb8, 0x30, 0xe5, 0xb1, 0xc6, 0x2b, 0xe9, + 0x90, 0xb5, 0xf3, 0x2f, 0xc2, 0xbb, 0x15, 0xbd, 0xf1, 0xed, 0x84, 0x52, + 0x15, 0xc4, 0x7b, 0xa4, 0xe9, 0x9d, 0xd8, 0x15, 0xf5, 0x02, 0x8c, 0xb1, + 0x18, 0x3c, 0x7b, 0x57, 0x5d, 0x27, 0x68, 0x9c, 0xd5, 0x16, 0xa7, 0x0b, + 0xf1, 0x49, 0x35, 0x47, 0xf0, 0x7c, 0xd1, 0xe9, 0xea, 0x3c, 0x92, 0x41, + 0xba, 0x7d, 0xd8, 0x21, 0x33, 0xd0, 0x0e, 0xf5, 0xe1, 0xf0, 0x40, 0x8b, + 0x0a, 0xae, 0x3a, 0x57, 0xd1, 0x7e, 0x3b, 0x0a, 0xbe, 0x09, 0xd5, 0x37, + 0x90, 0x07, 0x95, 0xc6, 0x7d, 0x72, 0x2b, 0xe7, 0x78, 0xd8, 0x6c, 0xe4, + 0xf7, 0xae, 0x3c, 0x66, 0xad, 0x1d, 0xd8, 0x3f, 0x85, 0x95, 0x8b, 0xa7, + 0xda, 0x7c, 0x9f, 0x2c, 0x7d, 0x6a, 0x66, 0xb4, 0x88, 0x8e, 0x51, 0x7f, + 0x2a, 0x67, 0x93, 0x1f, 0x9d, 0xe6, 0xef, 0xf9, 0xaa, 0xc6, 0x46, 0x3e, + 0xf0, 0xae, 0x69, 0x5b, 0x4b, 0x1d, 0x4a, 0xfa, 0xdc, 0xcf, 0x9e, 0x0b, + 0x64, 0x90, 0x23, 0x47, 0xc9, 0xe9, 0x8a, 0xbf, 0x0c, 0xd7, 0x96, 0x4a, + 0x1a, 0xde, 0xfe, 0xee, 0x10, 0x9d, 0x02, 0x4c, 0xc0, 0x0f, 0xc3, 0x35, + 0x04, 0xf6, 0xc6, 0x59, 0x55, 0xc3, 0x81, 0x8e, 0xd5, 0x34, 0x81, 0x9a, + 0x22, 0xa3, 0x19, 0x22, 0xad, 0x3b, 0x5a, 0xcc, 0x8e, 0x5b, 0xde, 0xe8, + 0xd4, 0xb7, 0xf1, 0x8f, 0x8a, 0x50, 0x03, 0x07, 0x88, 0x2f, 0x08, 0x1d, + 0x99, 0x83, 0x0f, 0xd4, 0x55, 0xdf, 0xf8, 0x58, 0x5e, 0x2b, 0x6b, 0xc8, + 0x66, 0x93, 0x50, 0x8a, 0x53, 0x16, 0x3e, 0x46, 0x8c, 0x00, 0xd8, 0x39, + 0xe7, 0x15, 0xcd, 0x5a, 0x44, 0xd0, 0xc6, 0x55, 0xbd, 0x7b, 0x54, 0x6a, + 0x8c, 0x2f, 0x7c, 0xc2, 0xa7, 0x6d, 0x68, 0xa7, 0x2b, 0xbb, 0x48, 0xcd, + 0xd3, 0x8d, 0x95, 0xe2, 0x7a, 0xa5, 0x9f, 0xc6, 0x9b, 0xf4, 0x6c, 0x5f, + 0x68, 0x91, 0x3a, 0x7a, 0xc1, 0x29, 0x07, 0xf5, 0xae, 0x8a, 0xc3, 0xe3, + 0x0f, 0x87, 0xae, 0x14, 0x0b, 0xb8, 0x2f, 0x2d, 0x18, 0x9c, 0x1d, 0xd1, + 0xef, 0x03, 0xf1, 0x5a, 0xf1, 0x6d, 0xc3, 0x69, 0xaa, 0xd6, 0x8d, 0xb8, + 0xb8, 0x62, 0x4f, 0x3c, 0x66, 0xaa, 0x35, 0xaa, 0x5a, 0xe4, 0x4a, 0x85, + 0x3b, 0xd8, 0xfa, 0x72, 0xc3, 0xc5, 0xfe, 0x1c, 0xd4, 0x47, 0xfa, 0x36, + 0xb3, 0x66, 0xc4, 0x72, 0x55, 0xa4, 0x0a, 0x7f, 0x23, 0x8a, 0xdb, 0x85, + 0xe3, 0x9e, 0x31, 0x24, 0x52, 0x2c, 0x88, 0x7a, 0x32, 0x1c, 0x83, 0xf8, + 0xd7, 0xc9, 0x17, 0x2e, 0x23, 0x91, 0x06, 0xd5, 0x21, 0x8f, 0x35, 0xee, + 0x9e, 0x05, 0xf1, 0x47, 0x85, 0x34, 0x1f, 0x0b, 0xda, 0x5b, 0xcd, 0x79, + 0x15, 0xb5, 0xd1, 0x8f, 0x7c, 0xa0, 0xa1, 0xcb, 0x1c, 0x9f, 0x41, 0xcd, + 0x6d, 0x0a, 0xae, 0x5b, 0x98, 0xce, 0x8f, 0x2e, 0xc7, 0xa5, 0x08, 0xf3, + 0x52, 0x08, 0xc5, 0x52, 0xd2, 0x75, 0xad, 0x37, 0x5a, 0xb3, 0x17, 0x7a, + 0x75, 0xdc, 0x73, 0xc3, 0xdc, 0xa9, 0xc1, 0x1f, 0x50, 0x79, 0x1f, 0x8d, + 0x71, 0x1f, 0x14, 0x3c, 0x51, 0x75, 0xa5, 0x68, 0x96, 0xb7, 0x1a, 0x2e, + 0xb4, 0xb0, 0x4f, 0x2c, 0xbb, 0x4c, 0x71, 0x84, 0x72, 0xc9, 0x82, 0x72, + 0x32, 0x0e, 0x30, 0x40, 0xfc, 0xe9, 0x4e, 0xa5, 0x82, 0x14, 0xae, 0xce, + 0xa7, 0xc5, 0x9e, 0x21, 0x83, 0xc2, 0xba, 0x1b, 0xea, 0x73, 0xc0, 0xd3, + 0x46, 0xae, 0xa9, 0xb1, 0x58, 0x29, 0xe7, 0xeb, 0x5e, 0x45, 0xa9, 0xfc, + 0x73, 0xbd, 0x70, 0xeb, 0xa7, 0xe9, 0xd6, 0xf0, 0xff, 0x00, 0x75, 0xa4, + 0x63, 0x21, 0xfe, 0x82, 0xb8, 0x0d, 0x57, 0x59, 0xd5, 0x35, 0x8f, 0x9b, + 0x53, 0xd4, 0xae, 0xae, 0xc0, 0x39, 0x0b, 0x24, 0x84, 0xa8, 0x3e, 0xcb, + 0xd0, 0x56, 0x7a, 0x46, 0x80, 0x90, 0x10, 0x0a, 0xc5, 0xd7, 0x7d, 0x0d, + 0xd5, 0x08, 0xf5, 0x3d, 0x47, 0x47, 0xf8, 0xe5, 0x70, 0xbb, 0x63, 0xd5, + 0xb4, 0xa1, 0x30, 0xc7, 0x32, 0xdb, 0x9d, 0xa7, 0xf2, 0x3c, 0x57, 0x79, + 0xa5, 0x7c, 0x4e, 0xf0, 0xa6, 0xaa, 0xe1, 0x17, 0x51, 0xfb, 0x34, 0x87, + 0xf8, 0x6e, 0x50, 0xa7, 0x3f, 0x5e, 0x9f, 0xad, 0x7c, 0xec, 0x00, 0x1d, + 0xaa, 0x03, 0x20, 0x8d, 0x53, 0xe5, 0x07, 0x73, 0xe0, 0xe6, 0xaa, 0x35, + 0xe6, 0xc5, 0x3a, 0x10, 0xb5, 0xcf, 0xae, 0xe0, 0x9a, 0x0b, 0xa8, 0xc4, + 0x96, 0xf3, 0x47, 0x32, 0x1e, 0x8d, 0x1b, 0x06, 0x1f, 0x98, 0xa9, 0x36, + 0x9a, 0xf9, 0x3e, 0xdf, 0x52, 0xba, 0xd2, 0xee, 0xa3, 0xfb, 0x15, 0xdd, + 0xc5, 0xb4, 0x84, 0xe4, 0x18, 0x64, 0x2b, 0xcf, 0xe1, 0x5d, 0x7e, 0x93, + 0xf1, 0x63, 0xc4, 0xb6, 0x1f, 0x2c, 0xb7, 0x30, 0xdf, 0xc4, 0xa7, 0x04, + 0x5c, 0x27, 0xcd, 0xff, 0x00, 0x7d, 0x0c, 0x1a, 0xd1, 0x62, 0x17, 0x54, + 0x63, 0x2c, 0x3b, 0xe8, 0xcf, 0xa0, 0x76, 0xd1, 0xb6, 0xbc, 0xdb, 0x4a, + 0xf8, 0xcf, 0xa5, 0x4e, 0x15, 0x75, 0x4b, 0x1b, 0x8b, 0x46, 0xc7, 0x2f, + 0x1f, 0xef, 0x13, 0x3f, 0xce, 0xbd, 0x16, 0xc2, 0xfe, 0xd7, 0x53, 0xb2, + 0x8e, 0xf2, 0xd2, 0x42, 0xf0, 0x48, 0x32, 0xac, 0x54, 0xae, 0x47, 0xe3, + 0x5a, 0x2a, 0x8a, 0x5b, 0x18, 0xca, 0x9c, 0xa3, 0xba, 0x24, 0xd9, 0x4d, + 0xdb, 0x52, 0xab, 0x23, 0x8c, 0xa3, 0xab, 0x0f, 0x63, 0x9a, 0x76, 0xca, + 0xae, 0x62, 0x6c, 0x57, 0x2b, 0x49, 0xb6, 0xac, 0x14, 0xa4, 0xd9, 0x47, + 0x30, 0x58, 0xaf, 0xb6, 0x93, 0x6d, 0x58, 0x29, 0x4d, 0x2b, 0x47, 0x30, + 0xec, 0x56, 0x2b, 0x51, 0xb2, 0xd5, 0xb2, 0x95, 0x19, 0x4a, 0x7c, 0xc1, + 0x62, 0x9b, 0x25, 0x31, 0x92, 0xad, 0xb2, 0x54, 0x4c, 0xb5, 0x4a, 0x42, + 0xb1, 0x49, 0xe3, 0xa8, 0x1a, 0x3a, 0xd0, 0x65, 0xe3, 0x26, 0xb8, 0x1f, + 0x14, 0x78, 0xe0, 0x59, 0xdc, 0x1d, 0x33, 0x44, 0x8b, 0xed, 0x9a, 0x8f, + 0x43, 0xb7, 0x95, 0x8f, 0xea, 0x68, 0x95, 0x55, 0x05, 0x79, 0x30, 0x8d, + 0x37, 0x37, 0x68, 0x9a, 0x3e, 0x27, 0x6f, 0x27, 0x45, 0x99, 0xf7, 0x15, + 0xc7, 0x75, 0x38, 0x35, 0xe2, 0xaa, 0x6f, 0x6e, 0x2f, 0x3c, 0x98, 0xa5, + 0x95, 0xe5, 0x3f, 0x74, 0x06, 0xfe, 0x7e, 0x82, 0xb4, 0xfc, 0x41, 0xae, + 0x6b, 0xb3, 0xcb, 0xf6, 0x5d, 0x4a, 0xeb, 0x24, 0x00, 0xc5, 0x23, 0xf9, + 0x54, 0x67, 0x9a, 0xe7, 0xd5, 0xca, 0xb6, 0xe0, 0x70, 0xde, 0xa2, 0xbc, + 0xfa, 0xd8, 0xae, 0x67, 0x78, 0x1e, 0x85, 0x1c, 0x37, 0x2a, 0xf7, 0xce, + 0xbe, 0xe3, 0xc5, 0xba, 0xce, 0x86, 0xb1, 0xe9, 0xee, 0x6d, 0xe5, 0x74, + 0x41, 0x96, 0x5c, 0xb7, 0xe7, 0x55, 0xa3, 0xf1, 0xee, 0xb5, 0x13, 0xc7, + 0x24, 0x89, 0x04, 0x91, 0x9e, 0xb1, 0x81, 0x83, 0x5c, 0xc9, 0x90, 0xb1, + 0xc9, 0x39, 0x34, 0xdd, 0xd5, 0x9a, 0xc5, 0x56, 0x5d, 0x4d, 0x5e, 0x1e, + 0x93, 0xe8, 0x7a, 0xa6, 0x8f, 0xe3, 0x4d, 0x2f, 0x55, 0x2b, 0x1b, 0xb1, + 0xb6, 0xb8, 0x3c, 0x6c, 0x93, 0xbf, 0xd0, 0xd7, 0x42, 0x54, 0x11, 0x91, + 0xd2, 0xbc, 0x36, 0xde, 0x77, 0xb6, 0xb9, 0x4b, 0x88, 0x48, 0x59, 0x50, + 0xe5, 0x5b, 0x00, 0xfe, 0x86, 0xbd, 0x0b, 0x4d, 0xf8, 0x81, 0x60, 0x6c, + 0xd1, 0x2f, 0xc3, 0xc7, 0x3a, 0x80, 0x09, 0xc7, 0x0c, 0x7d, 0x7d, 0xab, + 0xd0, 0xc3, 0xe2, 0xd4, 0xd5, 0xa7, 0xa3, 0x38, 0x2b, 0xe1, 0x5c, 0x35, + 0x86, 0xa8, 0xeb, 0xed, 0xe1, 0x4f, 0xb6, 0xc2, 0x76, 0x2e, 0x4b, 0x1e, + 0x71, 0xec, 0x6a, 0x9e, 0xb1, 0x78, 0xf1, 0xf8, 0x86, 0xc2, 0xd8, 0x39, + 0x0a, 0xf2, 0xa8, 0x2b, 0xeb, 0xd6, 0xb1, 0xa3, 0xf1, 0xd6, 0x9a, 0xf7, + 0xd0, 0x1b, 0x62, 0x65, 0x00, 0x9d, 0xe3, 0xa1, 0x03, 0x1d, 0x6b, 0xa8, + 0xb4, 0xbb, 0xd2, 0x35, 0x76, 0x49, 0xe3, 0x29, 0x24, 0xca, 0xdb, 0x80, + 0x6e, 0x19, 0x4d, 0x79, 0x78, 0xe7, 0xfb, 0xf7, 0x3b, 0x69, 0x63, 0xbf, + 0x08, 0xaf, 0x45, 0x43, 0xad, 0xcd, 0x59, 0x0f, 0x03, 0xea, 0x2b, 0x96, + 0xf1, 0x37, 0x86, 0xe7, 0xd7, 0x6f, 0xe1, 0x91, 0x64, 0xf2, 0xd2, 0x25, + 0xc0, 0x3e, 0xf9, 0xae, 0x9a, 0x47, 0x1c, 0x0c, 0x8e, 0xb5, 0x56, 0xe3, + 0x55, 0xb6, 0xb6, 0x7f, 0x2d, 0xd8, 0xef, 0xfe, 0xe8, 0x52, 0x4d, 0x79, + 0xb0, 0x93, 0x8b, 0xbc, 0x4f, 0x42, 0x71, 0x52, 0x8d, 0xa4, 0x59, 0x86, + 0x33, 0x1d, 0xaa, 0x44, 0xc7, 0xe6, 0x54, 0x0a, 0x48, 0xfa, 0x55, 0x2b, + 0x7d, 0x16, 0xc6, 0xda, 0x51, 0x22, 0x45, 0x99, 0x01, 0xc8, 0x62, 0x79, + 0xcd, 0x5a, 0x32, 0xb1, 0x84, 0xc8, 0x13, 0x07, 0x19, 0xc3, 0x56, 0x4c, + 0x1a, 0x95, 0xd5, 0xcd, 0xe2, 0x42, 0x5a, 0x38, 0x81, 0x3c, 0x85, 0x19, + 0x3f, 0xad, 0x25, 0xcc, 0xef, 0x60, 0x97, 0x2a, 0xb5, 0xcd, 0xe2, 0x78, + 0xa8, 0xda, 0x58, 0xe3, 0xfb, 0xce, 0xab, 0xf5, 0x35, 0x05, 0xe8, 0xc5, + 0x8c, 0xc4, 0xb3, 0x70, 0xa7, 0x90, 0x71, 0x5c, 0x5e, 0x93, 0x79, 0x15, + 0xe6, 0xad, 0x0a, 0x6c, 0x67, 0xc9, 0x04, 0x97, 0x39, 0xef, 0x4e, 0x14, + 0xdc, 0xd3, 0x6b, 0xa0, 0xa7, 0x51, 0x41, 0xa4, 0xfa, 0x9d, 0xee, 0xf0, + 0x57, 0x23, 0x9f, 0xa5, 0x19, 0x63, 0xdb, 0xf3, 0xa3, 0xa0, 0xc5, 0x15, + 0x91, 0xa1, 0x95, 0xaa, 0x6a, 0xd2, 0x69, 0xce, 0xab, 0xf6, 0x72, 0xe1, + 0x87, 0x04, 0x30, 0xc5, 0x52, 0xb6, 0xd4, 0xee, 0xf5, 0x49, 0x4c, 0x08, + 0x12, 0x15, 0x23, 0x96, 0x0d, 0x92, 0x07, 0xb7, 0xbd, 0x63, 0x7c, 0x43, + 0x9d, 0xe2, 0x5b, 0x51, 0x1b, 0x95, 0x24, 0xf3, 0x8a, 0x83, 0xe1, 0xd3, + 0x34, 0x92, 0x5c, 0xb3, 0x31, 0x63, 0xef, 0x5d, 0x2a, 0x8a, 0xf6, 0x3e, + 0xd0, 0xe7, 0x75, 0x9f, 0xb6, 0xf6, 0x67, 0x79, 0x14, 0x46, 0x38, 0xd5, + 0x4c, 0x8c, 0xe5, 0x46, 0x32, 0xc7, 0x93, 0x5e, 0x7f, 0xe2, 0xef, 0xf8, + 0xfd, 0xbd, 0xe7, 0xf8, 0xe3, 0xff, 0x00, 0xd0, 0x4d, 0x7a, 0x2e, 0x6b, + 0xce, 0x3c, 0x5c, 0x7f, 0xd3, 0xef, 0x7f, 0xeb, 0xa4, 0x7f, 0xfa, 0x0d, + 0x67, 0x47, 0xe2, 0x36, 0xa9, 0xf0, 0x9c, 0x7c, 0xc3, 0x72, 0x91, 0xea, + 0x2b, 0x2c, 0x44, 0x62, 0x92, 0xce, 0x22, 0x7f, 0xe5, 0xa7, 0xe7, 0x5a, + 0x92, 0x1a, 0x80, 0x46, 0xb2, 0x5c, 0x40, 0x4f, 0x50, 0xe0, 0x8f, 0xce, + 0xbd, 0x7a, 0x2f, 0x54, 0x79, 0xd5, 0x96, 0x8c, 0xf4, 0x98, 0xe2, 0x55, + 0x51, 0x85, 0x03, 0x8e, 0xc2, 0xa4, 0x0b, 0x52, 0x22, 0x7c, 0xa3, 0xe9, + 0x4f, 0x09, 0x5f, 0x44, 0x99, 0xf3, 0xe4, 0x41, 0x28, 0x31, 0xa7, 0x99, + 0x11, 0x71, 0x9c, 0x48, 0xb8, 0xfa, 0xe6, 0xa7, 0x09, 0x4b, 0x8d, 0xaf, + 0x19, 0xff, 0x00, 0x6c, 0x56, 0x18, 0xbf, 0xe0, 0x4f, 0xd1, 0x9d, 0x18, + 0x4f, 0xe3, 0xc3, 0xd4, 0xe6, 0xfe, 0x24, 0xdd, 0x7f, 0xa3, 0x45, 0x6e, + 0xa7, 0xe6, 0xc6, 0xe3, 0xed, 0x9a, 0xf2, 0xc7, 0x89, 0x59, 0x41, 0x39, + 0xcf, 0xd6, 0xbb, 0x3f, 0x17, 0x5f, 0x1b, 0xbd, 0x46, 0xfe, 0x42, 0x7e, + 0x54, 0x21, 0x57, 0xe8, 0x2b, 0x8b, 0x69, 0x0e, 0xd0, 0x02, 0x93, 0xef, + 0x5e, 0x0e, 0x1a, 0x3c, 0xb4, 0x92, 0x3d, 0x6c, 0x4c, 0xb9, 0xaa, 0x36, + 0x33, 0xca, 0x1d, 0x99, 0xbf, 0x3a, 0x74, 0x70, 0x34, 0x8e, 0x55, 0x5c, + 0xfe, 0x34, 0xcf, 0x30, 0xff, 0x00, 0x70, 0xd5, 0x8b, 0x39, 0x14, 0x48, + 0x49, 0xe3, 0xeb, 0x57, 0x2d, 0xb4, 0x33, 0x86, 0xaf, 0x52, 0xc0, 0x85, + 0xa2, 0xb4, 0x70, 0x4e, 0x4d, 0x5f, 0xd3, 0xbf, 0xe3, 0xca, 0x3c, 0xfa, + 0x54, 0x05, 0x83, 0xc6, 0x70, 0x73, 0x56, 0xed, 0xb8, 0x88, 0x0f, 0x73, + 0x59, 0x5f, 0x43, 0x6b, 0x6a, 0x59, 0xed, 0x55, 0x27, 0xff, 0x00, 0x8f, + 0xa8, 0xff, 0x00, 0xdd, 0x35, 0x68, 0x74, 0xaa, 0xb7, 0x1f, 0xf1, 0xf5, + 0x17, 0xfb, 0xa6, 0x88, 0xee, 0x39, 0x6c, 0x51, 0x88, 0x8d, 0x92, 0x03, + 0xea, 0x6b, 0x2e, 0x68, 0xda, 0x59, 0x19, 0x14, 0x56, 0x92, 0x1e, 0x5c, + 0x7b, 0xd2, 0x85, 0x03, 0xa0, 0xae, 0xb4, 0xec, 0x71, 0x35, 0x72, 0xa4, + 0x36, 0x81, 0x7e, 0x66, 0xe4, 0xf7, 0x1d, 0xaa, 0xc8, 0x5c, 0x0c, 0x01, + 0xc5, 0x38, 0x90, 0x38, 0xa6, 0x17, 0xf5, 0x38, 0xa0, 0x07, 0x62, 0x90, + 0xe0, 0x75, 0xa8, 0x4c, 0xdc, 0xfc, 0xa3, 0x34, 0x98, 0x76, 0xe7, 0x38, + 0xa0, 0x09, 0x4b, 0x81, 0x51, 0xb4, 0x84, 0x9e, 0x05, 0x38, 0x43, 0x93, + 0xdc, 0x9a, 0x9d, 0x2d, 0x1c, 0xe3, 0x0b, 0x52, 0xe5, 0x6d, 0xca, 0x51, + 0xbe, 0xc5, 0x74, 0xce, 0x72, 0x45, 0x5f, 0xb1, 0xfe, 0x3a, 0x05, 0x89, + 0xfe, 0x26, 0xab, 0x11, 0x40, 0xb1, 0x7d, 0xdc, 0xf3, 0x59, 0x4e, 0x69, + 0xab, 0x1b, 0x42, 0x0d, 0x3b, 0x92, 0x51, 0x45, 0x2d, 0x60, 0x6e, 0x21, + 0x34, 0x94, 0xb4, 0x94, 0x0c, 0x4c, 0x51, 0x4b, 0x49, 0x40, 0x05, 0x14, + 0x50, 0x68, 0x00, 0xa4, 0xa2, 0x8c, 0xd0, 0x01, 0x45, 0x21, 0xa3, 0x34, + 0x00, 0xb4, 0xe1, 0x4c, 0xa7, 0x0a, 0x00, 0x9e, 0x26, 0xc6, 0x2a, 0xec, + 0x4f, 0x59, 0xd1, 0xb7, 0x4a, 0xb7, 0x1b, 0x56, 0x72, 0x45, 0xc5, 0x9a, + 0x71, 0x3e, 0x2a, 0xf4, 0x72, 0x56, 0x4c, 0x72, 0x55, 0xa8, 0xe5, 0xac, + 0x25, 0x13, 0x68, 0xc8, 0xd7, 0x49, 0x6a, 0x74, 0x9b, 0xde, 0xb2, 0x92, + 0x5f, 0x7a, 0x9d, 0x66, 0xac, 0x5c, 0x4d, 0x94, 0xcd, 0x45, 0x96, 0xa6, + 0x59, 0x6b, 0x29, 0x66, 0xf7, 0xa9, 0x56, 0x6f, 0x7a, 0x87, 0x12, 0xd4, + 0xcd, 0x21, 0x2d, 0x3c, 0x4b, 0x59, 0xa2, 0x71, 0xeb, 0x52, 0x24, 0xdc, + 0xf5, 0xa9, 0x71, 0x2d, 0x48, 0xd5, 0x49, 0x6a, 0x51, 0x27, 0xbd, 0x66, + 0x2c, 0xde, 0xf5, 0x2a, 0x4d, 0x9e, 0xf5, 0x3c, 0xa3, 0xb9, 0xa2, 0x24, + 0xa0, 0xbd, 0x52, 0x13, 0x0f, 0x5a, 0x53, 0x37, 0xbd, 0x2b, 0x0e, 0xe5, + 0xb0, 0xfc, 0x75, 0xa7, 0xac, 0x95, 0x9e, 0xb3, 0x7b, 0xd4, 0x82, 0x61, + 0x8a, 0x2c, 0x17, 0x2e, 0x17, 0xe2, 0xa9, 0x5c, 0x37, 0x06, 0x94, 0xcd, + 0xc7, 0x5a, 0xa9, 0x3c, 0xdc, 0x55, 0xc5, 0x11, 0x26, 0x66, 0xde, 0x60, + 0xe6, 0xb9, 0xcb, 0xc1, 0x86, 0xad, 0xdb, 0xa9, 0x41, 0x06, 0xb0, 0x6e, + 0xdb, 0x26, 0xbb, 0xa8, 0x9c, 0x35, 0x4b, 0xda, 0x68, 0xc9, 0x15, 0xd8, + 0x69, 0xc0, 0x6d, 0xae, 0x37, 0x4c, 0x6e, 0x45, 0x75, 0xfa, 0x7b, 0x8c, + 0x01, 0x59, 0x57, 0x36, 0xa1, 0xb1, 0xb8, 0x61, 0x8e, 0x48, 0xf0, 0xc8, + 0x0f, 0xe1, 0x55, 0x8d, 0x84, 0x22, 0x45, 0x75, 0x1b, 0x48, 0x3d, 0xaa, + 0xc2, 0xc8, 0x3c, 0xaa, 0x03, 0x65, 0x6b, 0x97, 0x99, 0xad, 0x8e, 0x8e, + 0x54, 0xfa, 0x0f, 0xac, 0x7f, 0x13, 0x73, 0xa0, 0x5e, 0x0f, 0xf6, 0x2b, + 0x57, 0x7f, 0x6a, 0xc8, 0xf1, 0x10, 0xce, 0x83, 0x79, 0xcf, 0xf0, 0x51, + 0x0f, 0x89, 0x04, 0xfe, 0x16, 0x78, 0xcd, 0xba, 0x19, 0x35, 0xb8, 0x94, + 0x10, 0x09, 0x90, 0x72, 0x4e, 0x05, 0x5e, 0xf1, 0xe9, 0x5f, 0xb7, 0x43, + 0xfd, 0xe0, 0xb8, 0x35, 0x9c, 0x88, 0xd2, 0x6a, 0xf1, 0x22, 0x63, 0x71, + 0x71, 0x8c, 0x9c, 0x56, 0x8f, 0x8f, 0x99, 0x5a, 0xea, 0x01, 0xfc, 0x6a, + 0xbc, 0xd7, 0xba, 0xbe, 0x24, 0x78, 0x9f, 0x65, 0x9c, 0xed, 0x8f, 0xdd, + 0x7a, 0xd0, 0xb1, 0x38, 0xbf, 0x87, 0xfd, 0xe1, 0x59, 0xd6, 0x3f, 0x71, + 0xea, 0xfd, 0x97, 0xfc, 0x7f, 0xc3, 0xfe, 0xf0, 0xa2, 0x5f, 0x13, 0x12, + 0xd8, 0x4d, 0x53, 0x8d, 0x66, 0xeb, 0xfe, 0xba, 0x1a, 0xcf, 0x73, 0x87, + 0xc2, 0xf4, 0xab, 0xfa, 0xb1, 0x1f, 0xdb, 0x37, 0x3f, 0xef, 0x9a, 0xcf, + 0x7f, 0xbf, 0xf2, 0xf4, 0xad, 0x17, 0x42, 0x5f, 0x52, 0xf6, 0xb0, 0xc0, + 0xd8, 0xdb, 0xf3, 0xd2, 0xab, 0x69, 0xc9, 0x03, 0x7f, 0xc7, 0xc3, 0x05, + 0x0c, 0xa7, 0x6f, 0xa5, 0x17, 0x81, 0xa6, 0x8c, 0x20, 0xf6, 0xfe, 0x55, + 0x0d, 0xbe, 0x97, 0x71, 0x70, 0xa7, 0x6b, 0x2a, 0x81, 0xeb, 0x5a, 0x46, + 0xc6, 0x72, 0x4d, 0x9e, 0x91, 0xf0, 0x83, 0x48, 0xd4, 0x61, 0xf1, 0x85, + 0xbd, 0xd8, 0x81, 0x84, 0x6a, 0x8c, 0xac, 0x71, 0xc0, 0x07, 0xd7, 0xf0, + 0xaf, 0xa2, 0xe5, 0x68, 0xad, 0xe2, 0x69, 0x66, 0x91, 0x23, 0x8d, 0x7a, + 0xb3, 0x9c, 0x01, 0xf8, 0xd7, 0xcf, 0xff, 0x00, 0x0d, 0xf5, 0xdb, 0x1f, + 0x0b, 0x65, 0xf5, 0x07, 0xb9, 0x67, 0x40, 0x76, 0xac, 0x47, 0x2a, 0x73, + 0xeb, 0x57, 0xbe, 0x26, 0xfc, 0x47, 0x8f, 0x5b, 0xd2, 0xad, 0xf4, 0xfd, + 0x28, 0x4f, 0x14, 0x6e, 0xe4, 0xdc, 0x6e, 0x18, 0xdc, 0x07, 0x41, 0xf9, + 0xd6, 0xbc, 0xfc, 0xa8, 0xcb, 0xd9, 0xb9, 0x33, 0x57, 0xe2, 0x7f, 0x8f, + 0x13, 0x12, 0xf8, 0x7e, 0xce, 0x34, 0x92, 0x29, 0x55, 0x4b, 0xce, 0x18, + 0x30, 0x23, 0xd0, 0x57, 0x94, 0x20, 0x0c, 0x01, 0x35, 0x9d, 0x1a, 0x26, + 0xff, 0x00, 0x31, 0x99, 0xf7, 0x7b, 0xd5, 0x88, 0xa7, 0x45, 0x00, 0x17, + 0x39, 0xfa, 0x57, 0x2d, 0x56, 0xe4, 0xee, 0x76, 0x52, 0x4a, 0x0a, 0xc3, + 0x0b, 0x62, 0xf7, 0x68, 0x3c, 0x66, 0xb4, 0xb8, 0xac, 0xec, 0x42, 0x65, + 0xf3, 0x3c, 0xc3, 0x9c, 0xd5, 0x8f, 0xb4, 0xa7, 0xf7, 0xea, 0x67, 0xad, + 0xac, 0x5c, 0x74, 0xbd, 0xc8, 0xae, 0xa4, 0x31, 0xdc, 0x2a, 0x8e, 0xf5, + 0x6a, 0x53, 0xb6, 0x02, 0x41, 0xc1, 0x03, 0xad, 0x54, 0x99, 0x63, 0x9a, + 0x40, 0xfe, 0x68, 0x18, 0xa7, 0xcf, 0x70, 0x9e, 0x49, 0x5d, 0xeb, 0xc8, + 0xa7, 0xa6, 0x81, 0xdd, 0x92, 0x59, 0xc8, 0x65, 0x8c, 0xb1, 0x62, 0x79, + 0xc5, 0x20, 0x9d, 0x8d, 0xcf, 0x95, 0x9e, 0x3e, 0x95, 0x5e, 0xc6, 0x65, + 0x48, 0xb6, 0xee, 0x1d, 0x7d, 0x69, 0xe1, 0x08, 0xbb, 0xf3, 0x77, 0x2e, + 0x3d, 0x33, 0x4d, 0xa4, 0xa4, 0xee, 0x4a, 0x6d, 0xa4, 0x5e, 0x2c, 0x55, + 0x7a, 0xe6, 0xa2, 0x82, 0xe3, 0xcd, 0xdd, 0xf2, 0x81, 0x8a, 0x42, 0xff, + 0x00, 0x2f, 0xff, 0x00, 0x5e, 0xa0, 0xb4, 0x0d, 0x1e, 0xfd, 0xc3, 0xa9, + 0xcd, 0x4a, 0x4a, 0xc5, 0x3b, 0xdd, 0x13, 0x4b, 0x24, 0x61, 0x97, 0x7a, + 0x9c, 0x9e, 0x94, 0xcb, 0x89, 0xa4, 0x2a, 0x7e, 0xf2, 0xa2, 0xff, 0x00, + 0x10, 0x3d, 0x2a, 0x2b, 0xa2, 0xcd, 0x2c, 0x65, 0x41, 0x20, 0x1e, 0x6a, + 0x95, 0xfd, 0xf4, 0xea, 0xc6, 0x28, 0xc7, 0xc8, 0x7a, 0xf1, 0x54, 0x93, + 0xd2, 0xc4, 0xc9, 0xad, 0x6e, 0x68, 0x45, 0x73, 0x35, 0xb4, 0x6d, 0xe4, + 0xdc, 0x4c, 0x81, 0xc6, 0x1b, 0x6c, 0x84, 0x6e, 0x1e, 0xfe, 0xb5, 0x14, + 0x32, 0x13, 0x23, 0x1c, 0xd5, 0x08, 0xee, 0xa4, 0x68, 0xb0, 0xcb, 0xc8, + 0xa9, 0xa0, 0x72, 0x39, 0x61, 0xd6, 0x9b, 0x8b, 0x14, 0x64, 0x8d, 0x0d, + 0xe7, 0xd6, 0x8d, 0xc7, 0xd6, 0xa9, 0x32, 0xb4, 0xb3, 0xa3, 0x83, 0x85, + 0x5e, 0xa2, 0xac, 0x17, 0xc0, 0xc9, 0xa9, 0x71, 0x2d, 0x48, 0x98, 0xf2, + 0x39, 0x34, 0xd8, 0xa1, 0x59, 0x23, 0x52, 0xc4, 0xf0, 0x72, 0x29, 0xa1, + 0xc6, 0x2a, 0x23, 0x3b, 0xc6, 0x60, 0x55, 0x38, 0x0c, 0xd8, 0x34, 0x2b, + 0x83, 0x6b, 0xa9, 0x65, 0x95, 0x64, 0x99, 0x1f, 0xcc, 0xf9, 0x93, 0xa0, + 0xa6, 0x35, 0xbb, 0x79, 0x32, 0x2a, 0x9c, 0x97, 0x6c, 0xf5, 0xa2, 0x4b, + 0x8d, 0xb7, 0x31, 0xc7, 0xb0, 0x61, 0x81, 0x27, 0x35, 0x12, 0xde, 0x44, + 0x59, 0x81, 0x8c, 0x8d, 0xbe, 0x87, 0xde, 0xad, 0x5c, 0x89, 0x72, 0xf5, + 0x2d, 0x4a, 0xcc, 0x1e, 0x2d, 0xa4, 0xe0, 0x67, 0x77, 0xe5, 0x5d, 0x8c, + 0x9e, 0x2d, 0xf1, 0xbe, 0xb9, 0xa0, 0x45, 0xa7, 0x40, 0xc4, 0x40, 0x00, + 0x89, 0x4c, 0x09, 0xb1, 0xdd, 0x40, 0xfc, 0xcf, 0x4e, 0xd5, 0xc8, 0x19, + 0x63, 0x4c, 0x21, 0x39, 0x2d, 0x9c, 0x57, 0xa2, 0x6b, 0x5f, 0x17, 0x3e, + 0xc9, 0x05, 0x8c, 0x3e, 0x1d, 0x86, 0x28, 0x63, 0xb7, 0xb7, 0x55, 0xdd, + 0x2c, 0x20, 0x9d, 0xd8, 0x19, 0x00, 0x53, 0xa6, 0x67, 0x59, 0x1c, 0x0c, + 0x3a, 0x97, 0x88, 0xfc, 0x2b, 0xaa, 0xc0, 0xd1, 0x5e, 0xdc, 0xc1, 0x2a, + 0x90, 0xdb, 0x5c, 0xb0, 0x03, 0x3d, 0x41, 0x07, 0xda, 0xbe, 0x8b, 0xf0, + 0xa7, 0x8f, 0xb4, 0xbd, 0x7a, 0xd5, 0xa3, 0x9a, 0xf2, 0xda, 0x2b, 0xc8, + 0x42, 0xf9, 0x80, 0xc8, 0x02, 0xb1, 0x23, 0xa8, 0xcd, 0x7c, 0xe7, 0xe2, + 0x4f, 0x17, 0x5f, 0x78, 0x9e, 0xe3, 0xce, 0xd4, 0x19, 0x0b, 0x80, 0x06, + 0x51, 0x70, 0x38, 0x18, 0xce, 0x2b, 0x9f, 0x46, 0x48, 0x9b, 0x21, 0x89, + 0xad, 0x35, 0x4f, 0x43, 0x1e, 0x5e, 0xe7, 0xda, 0xd0, 0xdc, 0xdb, 0xdc, + 0x7f, 0xa9, 0x9e, 0x39, 0x3f, 0xdc, 0x70, 0x7f, 0x95, 0x49, 0x8a, 0xf8, + 0xe3, 0x49, 0xd7, 0x6f, 0x74, 0xbb, 0xf8, 0xae, 0x6c, 0x6e, 0x66, 0x85, + 0xd1, 0xb2, 0x36, 0x39, 0x19, 0x1e, 0x95, 0xed, 0x7a, 0x47, 0xc6, 0xe8, + 0xe5, 0x99, 0x13, 0x54, 0xd1, 0xa7, 0x86, 0x2d, 0xbf, 0x34, 0xb0, 0x9d, + 0xfc, 0xfd, 0x29, 0xdd, 0x87, 0x21, 0xeb, 0x98, 0xa6, 0x32, 0x92, 0x47, + 0x24, 0x60, 0xfe, 0x75, 0x9d, 0xa1, 0x78, 0x93, 0x4c, 0xf1, 0x25, 0xab, + 0x5c, 0x69, 0xb3, 0x34, 0x88, 0xb8, 0x0c, 0x19, 0x0a, 0x95, 0x3e, 0x87, + 0x35, 0xaa, 0x71, 0x4b, 0x9c, 0x5c, 0x84, 0x45, 0x69, 0xa5, 0x45, 0x4a, + 0x6b, 0x9a, 0xf1, 0x86, 0xb9, 0x73, 0xa4, 0x69, 0x6c, 0xf6, 0x0d, 0x6e, + 0x27, 0x27, 0x96, 0x95, 0xc7, 0xc8, 0x3d, 0x76, 0xf5, 0x34, 0xf9, 0xc3, + 0x90, 0xdd, 0x64, 0xac, 0x7d, 0x57, 0x5d, 0xd2, 0x74, 0x7f, 0xf8, 0xfe, + 0xbd, 0x8e, 0x16, 0xc6, 0x76, 0x93, 0xcf, 0xe5, 0x5e, 0x1b, 0xa9, 0xf8, + 0xd3, 0xc5, 0xf7, 0xd7, 0x7e, 0x57, 0xf6, 0xbc, 0xb1, 0xa1, 0xfe, 0x28, + 0x10, 0x20, 0xae, 0x9b, 0x40, 0xd3, 0xae, 0x35, 0x8b, 0x28, 0x2e, 0x35, + 0x86, 0x6b, 0xc6, 0x53, 0xf2, 0xbb, 0x1e, 0x59, 0xb3, 0xdf, 0xd4, 0x54, + 0x4e, 0xbf, 0x2a, 0xb9, 0xa4, 0x68, 0xdd, 0x9a, 0x1a, 0xff, 0x00, 0x89, + 0xb5, 0x5d, 0x79, 0x56, 0xcb, 0x45, 0x86, 0x5b, 0x5b, 0x49, 0x73, 0xbe, + 0xf2, 0x4e, 0x09, 0x5f, 0xf6, 0x45, 0x61, 0xc2, 0x74, 0xff, 0x00, 0x0e, + 0x45, 0x24, 0x16, 0xe8, 0xcd, 0x36, 0xd2, 0xf2, 0x4c, 0x46, 0x59, 0x8f, + 0xd6, 0xba, 0x3d, 0x56, 0x0b, 0xc4, 0x9a, 0x28, 0x22, 0x50, 0x8b, 0xb4, + 0x16, 0x3e, 0x9c, 0x8e, 0x3f, 0x2c, 0xd7, 0x13, 0xe2, 0x56, 0x83, 0x4e, + 0x3b, 0x52, 0x76, 0x79, 0xdf, 0x3b, 0xc6, 0x7a, 0x0c, 0xe7, 0xfa, 0xd7, + 0x9f, 0x3a, 0x8e, 0xb4, 0xed, 0x27, 0xf2, 0x3b, 0xe1, 0x4d, 0x52, 0x85, + 0xe2, 0x8c, 0x1f, 0x14, 0x1f, 0x33, 0x5b, 0x91, 0x83, 0x13, 0xf2, 0xaf, + 0xf2, 0x15, 0x8f, 0x8f, 0x7a, 0x96, 0xe2, 0x67, 0x9e, 0x77, 0x92, 0x43, + 0x96, 0x35, 0x15, 0x2d, 0xb4, 0x2a, 0xf7, 0xd4, 0x31, 0xef, 0x50, 0x99, + 0xc7, 0x98, 0xe9, 0x8e, 0x54, 0x64, 0xd4, 0xa4, 0xf1, 0x50, 0x18, 0x80, + 0x79, 0x1f, 0x27, 0x2c, 0x31, 0x57, 0x0b, 0x37, 0xef, 0x11, 0x3b, 0xdb, + 0x42, 0x29, 0x27, 0x32, 0x45, 0xb9, 0x09, 0x03, 0xd6, 0x92, 0x28, 0xd6, + 0x44, 0xde, 0xcc, 0x5b, 0x1e, 0xa6, 0xa1, 0x95, 0x4c, 0x16, 0xa5, 0x41, + 0xc9, 0x1d, 0xe8, 0x46, 0x22, 0xc6, 0x4a, 0xda, 0x2b, 0x4d, 0x0c, 0x65, + 0x27, 0x7d, 0x4d, 0x6d, 0x21, 0xe3, 0xfb, 0x43, 0x32, 0x80, 0xbb, 0x54, + 0xf4, 0x3c, 0xd3, 0xed, 0xb5, 0x97, 0x7d, 0x5e, 0x36, 0x8a, 0x59, 0x82, + 0x6e, 0xe3, 0x9c, 0x62, 0xa9, 0x68, 0xe0, 0xee, 0xb9, 0x20, 0x73, 0x82, + 0x05, 0x45, 0xa6, 0xdb, 0x4c, 0xb7, 0xb1, 0x16, 0x8d, 0x80, 0x04, 0xe4, + 0xe3, 0xa5, 0x68, 0xe2, 0xb5, 0x33, 0x4d, 0xe8, 0x7b, 0x9f, 0x86, 0xaf, + 0xb5, 0x1b, 0xbb, 0x78, 0x9a, 0x6d, 0x92, 0x42, 0x49, 0x01, 0xc9, 0xf9, + 0x85, 0x6b, 0x5f, 0x2d, 0xb4, 0x1e, 0x64, 0xd7, 0x17, 0x50, 0xc6, 0xd2, + 0x0d, 0xa8, 0x8e, 0x06, 0x49, 0xf6, 0xac, 0xdf, 0x09, 0x8c, 0x68, 0x36, + 0xdc, 0x75, 0x76, 0x3f, 0xce, 0xb7, 0x6f, 0x61, 0xb6, 0xbd, 0xd2, 0xe6, + 0xb6, 0x92, 0xd1, 0x24, 0x95, 0xa3, 0x28, 0x92, 0x49, 0xce, 0xc3, 0x9c, + 0x86, 0x1e, 0x87, 0x38, 0xfc, 0xab, 0xcc, 0x52, 0x8c, 0x6a, 0x3b, 0xe8, + 0x7a, 0x56, 0x6e, 0x9a, 0xea, 0x04, 0x6e, 0x84, 0xaf, 0xa8, 0xc5, 0x66, + 0x5b, 0xe9, 0x66, 0xdf, 0x57, 0x69, 0xc7, 0x09, 0x93, 0x81, 0xf5, 0x2f, + 0xfe, 0x14, 0x0b, 0x9b, 0x88, 0x23, 0x0a, 0xf2, 0xc6, 0xdb, 0x46, 0x09, + 0x3c, 0x66, 0xa1, 0xd4, 0x75, 0x14, 0x1a, 0xb4, 0x06, 0x19, 0x39, 0x30, + 0x86, 0xdb, 0xbf, 0x23, 0x9c, 0xff, 0x00, 0x8d, 0x2a, 0x49, 0xa8, 0x48, + 0x73, 0xe5, 0x6d, 0x5c, 0xd5, 0xd4, 0x70, 0x34, 0xf9, 0x89, 0xe9, 0xb4, + 0xd7, 0x0b, 0xe1, 0x98, 0xf1, 0xab, 0x44, 0xd8, 0xe3, 0x68, 0xc7, 0xe6, + 0x6b, 0xb1, 0x8a, 0x66, 0xbe, 0x53, 0x04, 0xbb, 0x42, 0x11, 0xc9, 0x53, + 0xcd, 0x3a, 0x2d, 0x2e, 0xc2, 0xd9, 0xd5, 0x92, 0x30, 0x19, 0x7a, 0x1d, + 0xd5, 0x30, 0xaa, 0xa1, 0x09, 0x45, 0xf5, 0x15, 0x4a, 0x6e, 0x72, 0x8c, + 0x97, 0x43, 0x42, 0x97, 0x35, 0x11, 0x9a, 0x31, 0xd6, 0x45, 0x1f, 0x8d, + 0x37, 0xed, 0x30, 0xff, 0x00, 0xcf, 0x45, 0xfc, 0xeb, 0x9c, 0xe8, 0x38, + 0xaf, 0x1f, 0x41, 0x35, 0xd5, 0xc5, 0xaa, 0x43, 0x1b, 0x3e, 0xde, 0x4e, + 0x07, 0x4a, 0x3c, 0x07, 0x67, 0x71, 0x64, 0xf3, 0x2d, 0xc4, 0x4c, 0x85, + 0xfa, 0x64, 0x57, 0x66, 0x6e, 0xa0, 0xee, 0xc3, 0x3f, 0x4a, 0x43, 0x79, + 0x6e, 0x3f, 0x8f, 0xf4, 0xad, 0xbd, 0xb4, 0xbd, 0x9f, 0xb3, 0xb1, 0x87, + 0xb1, 0x5e, 0xd7, 0xda, 0x5c, 0xb1, 0x5e, 0x6d, 0xe2, 0xe3, 0xfe, 0x9f, + 0x79, 0xff, 0x00, 0x5d, 0x13, 0xff, 0x00, 0x41, 0xae, 0xff, 0x00, 0xed, + 0xd0, 0x7f, 0x7f, 0xf4, 0x35, 0xe6, 0xde, 0x29, 0xb8, 0x49, 0x75, 0x0b, + 0x9d, 0x87, 0x39, 0x94, 0x7f, 0xe8, 0x22, 0x8a, 0x29, 0xf3, 0x17, 0x51, + 0xab, 0x1c, 0xc5, 0xc1, 0xfd, 0xd3, 0xfd, 0x2a, 0xb5, 0x94, 0xdf, 0xbc, + 0xb4, 0x0e, 0x79, 0x67, 0x1c, 0xfe, 0x35, 0x35, 0xd3, 0x62, 0x07, 0xfa, + 0x1a, 0xc6, 0x33, 0x65, 0x60, 0x51, 0x9c, 0x81, 0x9c, 0x8a, 0xf5, 0xa8, + 0xbb, 0x1e, 0x7d, 0x63, 0xdc, 0x11, 0x7e, 0x41, 0xf4, 0xaa, 0x77, 0x77, + 0x17, 0xb0, 0x5c, 0x44, 0xb0, 0x5a, 0x89, 0xa3, 0x76, 0xc3, 0x36, 0xec, + 0x6d, 0xae, 0x77, 0xc2, 0xbe, 0x25, 0xf3, 0x50, 0xda, 0x5f, 0x48, 0xa3, + 0x62, 0xe5, 0x65, 0x66, 0xc6, 0x47, 0xa1, 0xae, 0xa2, 0x1d, 0x5b, 0x4f, + 0x9f, 0x1e, 0x5d, 0xdc, 0x4c, 0x49, 0xc0, 0x01, 0xb9, 0x35, 0xec, 0xaa, + 0xb1, 0x92, 0xbd, 0xcf, 0x19, 0xd2, 0x94, 0x5d, 0xad, 0x72, 0x60, 0xd2, + 0x0f, 0xbd, 0x17, 0xfd, 0xf2, 0x73, 0x49, 0x2b, 0x2b, 0x2a, 0x9c, 0x91, + 0x86, 0x19, 0x15, 0x1c, 0xf7, 0xc6, 0x3f, 0x96, 0x28, 0x5d, 0xdb, 0xe9, + 0xc5, 0x51, 0x96, 0xe6, 0xe7, 0xcc, 0x0d, 0x3a, 0x28, 0x07, 0xa0, 0x53, + 0x9c, 0x7d, 0x6b, 0x8f, 0x17, 0x8c, 0xa7, 0xc8, 0xe0, 0x9d, 0xdb, 0x3a, + 0xb0, 0xb8, 0x5a, 0x9c, 0xea, 0x6d, 0x59, 0x23, 0xcf, 0xb5, 0x49, 0x96, + 0x49, 0xaf, 0x8f, 0x04, 0x17, 0xc0, 0xae, 0x74, 0xf0, 0x82, 0xb5, 0x6e, + 0x37, 0xbc, 0x17, 0x6c, 0x9c, 0x93, 0x21, 0xfe, 0x75, 0x8c, 0xd1, 0xb3, + 0x00, 0x77, 0x91, 0xed, 0x5c, 0x90, 0x56, 0x89, 0xd1, 0x3d, 0x64, 0x38, + 0x9a, 0x3b, 0x54, 0x5e, 0x53, 0x67, 0x89, 0x3f, 0x4a, 0x74, 0x71, 0x48, + 0xec, 0x54, 0x37, 0x4a, 0x6d, 0xd8, 0x49, 0x5d, 0x97, 0x6d, 0x5b, 0xf7, + 0x07, 0xeb, 0x5a, 0x96, 0xc7, 0xf7, 0x7f, 0x89, 0xac, 0xd8, 0x62, 0x68, + 0xa0, 0x21, 0xba, 0xd6, 0x8d, 0xb7, 0xfa, 0xaf, 0xc4, 0xd7, 0x3b, 0x3a, + 0x16, 0xc5, 0xa0, 0x6a, 0xb5, 0xc0, 0xff, 0x00, 0x48, 0x88, 0xfb, 0x11, + 0xfa, 0x55, 0x81, 0x50, 0x5c, 0x7f, 0xae, 0x8b, 0xea, 0x7f, 0x95, 0x11, + 0xdc, 0x25, 0xb1, 0x98, 0x3e, 0x56, 0x72, 0x7d, 0x69, 0xad, 0x28, 0xed, + 0x4f, 0x31, 0x97, 0x66, 0xe4, 0xe7, 0x3d, 0x00, 0xa9, 0xa3, 0xb0, 0x91, + 0xb9, 0x38, 0x51, 0x5d, 0x2e, 0x49, 0x6e, 0x73, 0x28, 0xb7, 0xb1, 0x4f, + 0x73, 0x37, 0x6c, 0x52, 0x88, 0x4b, 0x1c, 0x60, 0x9a, 0xd5, 0x8e, 0xc6, + 0x34, 0x19, 0x6f, 0x98, 0xd5, 0x85, 0x8d, 0x54, 0x7c, 0xaa, 0x05, 0x66, + 0xea, 0xae, 0x86, 0x8a, 0x97, 0x73, 0x2e, 0x3b, 0x29, 0x1b, 0xb6, 0xd1, + 0xef, 0x56, 0x92, 0xc1, 0x07, 0x2c, 0x49, 0xab, 0x94, 0x95, 0x9b, 0xa9, + 0x26, 0x68, 0xa9, 0xc5, 0x11, 0xac, 0x48, 0x9f, 0x75, 0x45, 0x2d, 0x38, + 0xd3, 0x6a, 0x19, 0x68, 0x29, 0x28, 0xa5, 0xa4, 0x31, 0x28, 0xa5, 0xa4, + 0xa0, 0x02, 0x9b, 0x4e, 0xa6, 0xf7, 0xa0, 0x02, 0x92, 0x96, 0x92, 0x81, + 0x85, 0x14, 0x51, 0x40, 0x09, 0x45, 0x14, 0x50, 0x02, 0x51, 0x45, 0x14, + 0xc0, 0x05, 0x28, 0xa4, 0xa5, 0xed, 0x40, 0x0a, 0xa6, 0xac, 0x23, 0xd5, + 0x50, 0x69, 0xea, 0xd8, 0xa4, 0xd0, 0xd3, 0x2f, 0xa4, 0x95, 0x61, 0x25, + 0xac, 0xd5, 0x7a, 0x95, 0x64, 0xac, 0xdc, 0x4b, 0x4c, 0xd3, 0x59, 0x7d, + 0xea, 0x55, 0x9a, 0xb2, 0xc4, 0xbe, 0xf4, 0xf1, 0x37, 0xbd, 0x66, 0xe0, + 0x5a, 0x91, 0xac, 0xb7, 0x1e, 0xf5, 0x20, 0x9f, 0xde, 0xb2, 0x56, 0x6f, + 0x7a, 0x90, 0x4f, 0x53, 0xc8, 0x52, 0x99, 0xaa, 0x27, 0xf7, 0xa9, 0x52, + 0x7c, 0x77, 0xac, 0x81, 0x3f, 0xbd, 0x4a, 0xb3, 0xd4, 0xf2, 0x14, 0xaa, + 0x1a, 0xeb, 0x3f, 0xbd, 0x4a, 0xb3, 0xe0, 0xf5, 0xac, 0x65, 0xb8, 0xf7, + 0xa7, 0x8b, 0x8f, 0x7a, 0x97, 0x4c, 0xa5, 0x50, 0xda, 0xfb, 0x47, 0xbd, + 0x38, 0xcf, 0x91, 0xd6, 0xb1, 0x7e, 0xd3, 0xef, 0x4b, 0xf6, 0xaf, 0x7a, + 0x5e, 0xcc, 0x7e, 0xd0, 0xd7, 0x17, 0x18, 0xef, 0x4a, 0x2e, 0x71, 0xde, + 0xb1, 0xfe, 0xd5, 0xcf, 0x5a, 0x43, 0x75, 0xcf, 0x5a, 0x5e, 0xcc, 0x3d, + 0xa1, 0xb4, 0xd7, 0x1f, 0x2f, 0x5a, 0xa9, 0x3d, 0xc7, 0x1d, 0x6a, 0x89, + 0xba, 0xe3, 0xad, 0x57, 0x96, 0xe3, 0x3d, 0xea, 0xe3, 0x4c, 0x89, 0x54, + 0x1f, 0x71, 0x36, 0x41, 0xac, 0x99, 0xdf, 0x2d, 0x53, 0x4d, 0x3e, 0x73, + 0xcd, 0x50, 0x91, 0xf2, 0x6b, 0xaa, 0x11, 0xb1, 0xcd, 0x37, 0x73, 0x56, + 0xc6, 0x4d, 0xa4, 0x57, 0x4d, 0x65, 0x72, 0x06, 0x39, 0xae, 0x36, 0xda, + 0x5d, 0xb8, 0xad, 0x7b, 0x6b, 0xbd, 0xbd, 0xeb, 0x2a, 0xb0, 0xb9, 0xad, + 0x29, 0xd8, 0xec, 0x56, 0xec, 0x6d, 0xc6, 0x6b, 0x9f, 0xd7, 0xbc, 0x61, + 0x36, 0x8b, 0x75, 0x1c, 0x31, 0xc2, 0x92, 0x2b, 0x2e, 0x72, 0x6a, 0x31, + 0xa8, 0x60, 0x75, 0xac, 0xdd, 0x56, 0xda, 0xd7, 0x50, 0x74, 0x96, 0x60, + 0x4b, 0x02, 0x17, 0xaf, 0x6c, 0xd6, 0x10, 0xa7, 0x14, 0xfd, 0xe5, 0xa1, + 0xb4, 0xea, 0x37, 0x1f, 0x75, 0xea, 0x6d, 0x69, 0x7e, 0x20, 0xba, 0xbc, + 0xbe, 0x8c, 0x34, 0xa8, 0x11, 0xc8, 0x25, 0x31, 0xd0, 0x11, 0x5b, 0x1a, + 0xe9, 0x0d, 0xa1, 0xdd, 0xff, 0x00, 0xd7, 0x33, 0x5c, 0xd6, 0x99, 0xf6, + 0x5b, 0x7d, 0x42, 0x60, 0xb1, 0xaf, 0xc8, 0xa9, 0xb4, 0x91, 0xc8, 0xe2, + 0xb4, 0xf5, 0x4b, 0xd0, 0xfa, 0x45, 0xca, 0xe7, 0xac, 0x66, 0xa6, 0x69, + 0x73, 0xae, 0x55, 0x62, 0xe2, 0xdf, 0x23, 0xbb, 0x3c, 0x9c, 0xab, 0x3e, + 0xa7, 0x1a, 0xa0, 0xcb, 0x17, 0x18, 0x02, 0xb6, 0x7c, 0x69, 0x34, 0x3e, + 0x61, 0x59, 0x01, 0xf3, 0x0c, 0x40, 0x2f, 0x1d, 0x0e, 0x6b, 0x0e, 0x4c, + 0xfd, 0xbd, 0x36, 0xe7, 0x3b, 0x86, 0x31, 0x5a, 0x5e, 0x33, 0xb9, 0x59, + 0xde, 0x00, 0x0f, 0xcc, 0x17, 0x9a, 0xf6, 0x17, 0xc4, 0x8f, 0x21, 0xec, + 0xcc, 0x0b, 0x13, 0xf2, 0xbd, 0x5d, 0xb4, 0x60, 0xb7, 0xb0, 0xb1, 0xe8, + 0x18, 0x55, 0x0b, 0x3e, 0x03, 0x55, 0x85, 0x6d, 0x92, 0x2b, 0x7a, 0x1a, + 0x6d, 0x7b, 0xc4, 0x27, 0xee, 0x93, 0xea, 0xce, 0xaf, 0xac, 0x5c, 0x32, + 0xf4, 0x2d, 0x9a, 0xce, 0x76, 0x1b, 0x8e, 0x3a, 0x54, 0x97, 0x12, 0x79, + 0x97, 0x32, 0x3f, 0xa9, 0xaa, 0x79, 0x26, 0xb4, 0x51, 0xd1, 0x10, 0xe4, + 0x69, 0x81, 0x82, 0xa7, 0xb1, 0x03, 0xf9, 0x56, 0x8d, 0x87, 0x11, 0xb6, + 0x71, 0x82, 0x6b, 0x24, 0x96, 0x92, 0xde, 0x22, 0x78, 0xc5, 0x33, 0xed, + 0x33, 0x46, 0xb8, 0x47, 0x20, 0x13, 0xda, 0x85, 0xa4, 0xae, 0x56, 0xe8, + 0xea, 0x21, 0x2a, 0x37, 0x67, 0x1d, 0x6a, 0xad, 0xf8, 0xc8, 0x56, 0xcf, + 0x00, 0xd6, 0x0b, 0xdc, 0xcb, 0x9d, 0xdb, 0xd8, 0x1f, 0x5c, 0xd5, 0xcb, + 0x8b, 0x87, 0x6b, 0x5b, 0x72, 0xcd, 0x92, 0x47, 0x3c, 0xd0, 0xfd, 0xe4, + 0x52, 0xd1, 0x8f, 0xce, 0x17, 0xa7, 0x06, 0xa2, 0x24, 0x6e, 0x3c, 0x52, + 0x2b, 0x2e, 0x71, 0x9f, 0xd6, 0x93, 0x39, 0x27, 0x91, 0x51, 0xe8, 0x3b, + 0x89, 0xbc, 0xf9, 0xbb, 0x78, 0xc5, 0x3e, 0xa0, 0xff, 0x00, 0x96, 0xbf, + 0x7b, 0x9a, 0x98, 0x90, 0x07, 0x51, 0x54, 0xc4, 0x98, 0xc7, 0x90, 0xa4, + 0x88, 0xa0, 0x67, 0x34, 0x4c, 0x40, 0x42, 0x48, 0xe0, 0x52, 0x38, 0x05, + 0xc1, 0x2c, 0x3d, 0xa9, 0x93, 0x9d, 0xd0, 0xb2, 0x0e, 0x58, 0xd3, 0xb5, + 0xc5, 0x70, 0xb7, 0x64, 0x70, 0x48, 0x1d, 0x2a, 0xc6, 0x79, 0xaa, 0x76, + 0x40, 0xc4, 0xac, 0x1c, 0x63, 0x26, 0xa6, 0xcf, 0xef, 0x4f, 0xcc, 0x29, + 0xb5, 0x66, 0x24, 0xf4, 0x27, 0xcf, 0x1d, 0x4d, 0x35, 0x65, 0x2d, 0x9c, + 0x13, 0x4d, 0x2f, 0xf2, 0xf1, 0x8a, 0x86, 0x37, 0xd8, 0x0e, 0x4e, 0x69, + 0x24, 0x53, 0x64, 0xed, 0x31, 0x07, 0x06, 0x43, 0xf9, 0xd3, 0x4a, 0xef, + 0x3c, 0x9c, 0xd5, 0x67, 0x95, 0x49, 0x24, 0xe2, 0xac, 0x47, 0x2a, 0x9c, + 0x72, 0x29, 0xca, 0x36, 0xd4, 0x4a, 0x57, 0x1e, 0xb0, 0x81, 0xde, 0x9c, + 0x14, 0x0e, 0xd4, 0x19, 0x14, 0x77, 0xa6, 0xf9, 0xab, 0xd7, 0x35, 0x9e, + 0xa5, 0x68, 0x3e, 0x23, 0x94, 0x27, 0x18, 0xe6, 0xa4, 0x0a, 0x36, 0xf2, + 0x6a, 0xbb, 0x4a, 0x9b, 0x07, 0x23, 0x93, 0x4f, 0xf3, 0x17, 0xca, 0x20, + 0xb7, 0x38, 0xa6, 0xae, 0xc2, 0xe8, 0x98, 0x32, 0x95, 0xe1, 0xaa, 0x44, + 0xd8, 0x62, 0x52, 0xc0, 0x12, 0x3a, 0x56, 0x3a, 0x4e, 0xcc, 0xdc, 0x9c, + 0x54, 0xe5, 0x8e, 0x62, 0xf9, 0xb3, 0x8f, 0x7a, 0x6d, 0x6a, 0x25, 0x3d, + 0x36, 0x26, 0x92, 0x0b, 0xaf, 0x34, 0xbe, 0x18, 0xfa, 0x10, 0x7a, 0x54, + 0x5e, 0x4c, 0xca, 0x4f, 0xee, 0xdc, 0x67, 0xaf, 0x14, 0xad, 0xaa, 0xcb, + 0x1b, 0xed, 0xd8, 0x08, 0xf5, 0xa7, 0xae, 0xb1, 0x2b, 0x70, 0xb0, 0x64, + 0xf6, 0xc1, 0xad, 0x22, 0xf4, 0xd8, 0xca, 0x5b, 0xee, 0x4f, 0x10, 0x96, + 0x62, 0x24, 0x90, 0x11, 0xb0, 0x1c, 0x0c, 0x63, 0x35, 0x4a, 0x43, 0x86, + 0x01, 0xf7, 0x72, 0x4e, 0x3d, 0xab, 0x52, 0x0d, 0x63, 0x68, 0x46, 0x68, + 0x14, 0xf7, 0xce, 0x6a, 0xe4, 0xfa, 0xdc, 0x17, 0x69, 0x89, 0xb4, 0xf8, + 0x9b, 0x23, 0xae, 0xdc, 0x1a, 0x5a, 0x6e, 0x57, 0xbc, 0xcc, 0x42, 0xb1, + 0xa4, 0x61, 0x98, 0x64, 0x52, 0xc4, 0x91, 0xc8, 0x40, 0xd8, 0x39, 0x6d, + 0xb4, 0xb7, 0x4d, 0x6f, 0x70, 0x17, 0xec, 0xe8, 0xd0, 0xa6, 0x70, 0x57, + 0x39, 0x15, 0x04, 0x73, 0x4b, 0x16, 0x08, 0x74, 0xe0, 0xf7, 0x14, 0xb9, + 0x5f, 0x70, 0xe6, 0x2e, 0x7d, 0x9e, 0x31, 0x71, 0xe4, 0xec, 0xed, 0x9c, + 0xd4, 0xaa, 0x24, 0xb5, 0x3e, 0x64, 0x32, 0x32, 0x90, 0x3e, 0xb5, 0x4b, + 0xfb, 0x46, 0x40, 0xf9, 0x60, 0x85, 0xaa, 0xd0, 0xba, 0x46, 0x8b, 0xe7, + 0x20, 0x1c, 0x73, 0x45, 0x9d, 0xf4, 0x0b, 0xab, 0x1e, 0xfd, 0xf0, 0x66, + 0xea, 0x27, 0xf0, 0xac, 0xc0, 0xce, 0xaf, 0x39, 0xb8, 0x66, 0x71, 0x9e, + 0x47, 0x03, 0xb5, 0x7a, 0x47, 0x99, 0xef, 0x5f, 0x1d, 0x5b, 0xea, 0xb7, + 0x16, 0x83, 0x7d, 0x94, 0xf2, 0x42, 0xea, 0xd9, 0xdd, 0x13, 0x90, 0x4f, + 0xe5, 0x5d, 0x15, 0x87, 0xc4, 0x8f, 0x13, 0x5a, 0xdd, 0xc3, 0x34, 0xba, + 0xa4, 0xf3, 0x24, 0x6e, 0x0b, 0x44, 0xed, 0xc3, 0x8f, 0x43, 0x53, 0x2a, + 0x72, 0x6e, 0xe8, 0xa4, 0xe3, 0xd4, 0xfa, 0x6e, 0xfa, 0x75, 0x4b, 0x0b, + 0x87, 0x60, 0x59, 0x56, 0x36, 0x24, 0x03, 0x83, 0xd3, 0xd6, 0xbe, 0x60, + 0xb9, 0x9a, 0x65, 0xd5, 0xee, 0x66, 0x37, 0x0e, 0xe1, 0xa4, 0x60, 0xaa, + 0xcc, 0x48, 0x51, 0x9f, 0x7a, 0xf4, 0xe9, 0xfe, 0x31, 0x68, 0xd7, 0x5a, + 0x78, 0x88, 0x41, 0x70, 0xb3, 0x4c, 0x9b, 0x5f, 0x70, 0xc0, 0x4c, 0x8e, + 0x79, 0xef, 0x5e, 0x51, 0x71, 0x79, 0x6d, 0x25, 0xf4, 0x8f, 0x18, 0x2c, + 0x8c, 0xcc, 0x54, 0xd1, 0x4d, 0x3b, 0xea, 0x29, 0xd9, 0x6c, 0x68, 0x2c, + 0xae, 0xdb, 0x40, 0x60, 0x01, 0xe3, 0xa7, 0xb5, 0x7a, 0x57, 0x84, 0x2e, + 0xe1, 0xb5, 0xb0, 0x8e, 0x36, 0x6c, 0xb8, 0x4e, 0x87, 0xae, 0x49, 0x35, + 0xe4, 0xcb, 0x78, 0x44, 0x82, 0x31, 0x13, 0x6f, 0x03, 0x38, 0xcd, 0x6e, + 0xe9, 0xd7, 0x57, 0x0b, 0x68, 0xd7, 0x8d, 0x70, 0xb0, 0xf5, 0x55, 0x04, + 0xe4, 0x92, 0x3b, 0x62, 0xa2, 0xb4, 0x6f, 0x1d, 0x4b, 0xa5, 0x2b, 0x3d, + 0x0e, 0xcb, 0xc4, 0xde, 0x25, 0xfb, 0x1d, 0xd4, 0x4c, 0xc9, 0x94, 0x62, + 0xc0, 0x80, 0x7d, 0x0e, 0x2b, 0xca, 0xb5, 0x8b, 0xab, 0xab, 0xbb, 0xb9, + 0xa6, 0x61, 0xb4, 0x39, 0x0c, 0x07, 0x5e, 0x33, 0x9c, 0x56, 0xb6, 0xbb, + 0xab, 0x45, 0xa8, 0xc9, 0x01, 0x9d, 0xd9, 0x2e, 0x62, 0xca, 0xbe, 0x38, + 0x52, 0x33, 0xd7, 0x1e, 0xb5, 0x76, 0xea, 0xc6, 0xd8, 0x69, 0xa6, 0x55, + 0xf9, 0xc4, 0x60, 0x15, 0x97, 0xa6, 0xe0, 0x7d, 0xab, 0x9e, 0x9b, 0x8c, + 0x35, 0x37, 0x9a, 0x94, 0xd5, 0x8e, 0x54, 0x3e, 0xf7, 0x38, 0xeb, 0x9e, + 0x94, 0xa4, 0x36, 0x33, 0x83, 0x4b, 0x75, 0x36, 0x97, 0xe7, 0x38, 0xfd, + 0xe9, 0x6c, 0xf5, 0x07, 0xf9, 0x55, 0x22, 0xfa, 0x7e, 0x79, 0x49, 0xcf, + 0xb6, 0xea, 0xd5, 0x51, 0x8b, 0xd5, 0xb3, 0x37, 0x55, 0xad, 0x12, 0x2c, + 0x17, 0x1e, 0xa2, 0xa8, 0x5d, 0xce, 0xcb, 0x2a, 0x04, 0x27, 0x07, 0xae, + 0x29, 0xf7, 0x92, 0x58, 0xb4, 0x71, 0x2d, 0xa4, 0x4e, 0xb2, 0x13, 0xf3, + 0xb3, 0x9c, 0xfe, 0x55, 0x59, 0xdd, 0x55, 0xb0, 0x57, 0x91, 0xc5, 0x0a, + 0x9a, 0x8b, 0xbe, 0xe2, 0x95, 0x46, 0xd1, 0x66, 0x42, 0xac, 0x98, 0x3c, + 0x8a, 0x54, 0x68, 0x95, 0x71, 0x8e, 0x3d, 0x2a, 0x9e, 0x77, 0x1c, 0x0a, + 0x87, 0x7f, 0x38, 0xc1, 0xab, 0x8c, 0x6c, 0x4b, 0x91, 0xbd, 0x67, 0x72, + 0xa9, 0x23, 0x04, 0x4c, 0xf1, 0xda, 0xb4, 0x12, 0xea, 0x4c, 0xe4, 0x46, + 0x05, 0x73, 0x96, 0x4e, 0x62, 0x72, 0x73, 0xd6, 0xae, 0xd9, 0xce, 0xef, + 0x31, 0x25, 0xc9, 0x1c, 0xf1, 0x57, 0xca, 0x99, 0x3c, 0xc7, 0xa4, 0xe8, + 0x9e, 0x30, 0xfb, 0x16, 0x9f, 0x6f, 0x6d, 0x22, 0x28, 0xf2, 0xc9, 0xe7, + 0xd6, 0xba, 0x2b, 0x3f, 0x13, 0x8d, 0x48, 0x32, 0xc5, 0x22, 0xab, 0x0e, + 0xc6, 0xbc, 0x9d, 0x58, 0x16, 0x53, 0x9a, 0x4d, 0x3a, 0xea, 0x68, 0xb5, + 0x26, 0x78, 0xe6, 0x61, 0x87, 0x03, 0x19, 0xe3, 0x15, 0xcd, 0x2c, 0x2c, + 0x65, 0x76, 0x8e, 0x88, 0xe2, 0x25, 0x1b, 0x26, 0x7a, 0x35, 0xf6, 0x9d, + 0x3d, 0xd3, 0xb3, 0x2d, 0xc4, 0xa8, 0x84, 0xfc, 0xc5, 0x1c, 0x8c, 0x56, + 0x72, 0xf8, 0x5b, 0xce, 0x6d, 0xe6, 0xfe, 0xee, 0x49, 0x17, 0xb9, 0x93, + 0x15, 0xb3, 0x25, 0xe3, 0xb6, 0x86, 0xd3, 0x26, 0x3c, 0xd6, 0x00, 0x2f, + 0x3d, 0xcd, 0x1a, 0x44, 0x17, 0x30, 0xcc, 0x52, 0x79, 0x37, 0x83, 0xfc, + 0x45, 0x81, 0xc9, 0xae, 0x65, 0xcd, 0xca, 0xcd, 0xe4, 0xe3, 0xcc, 0x87, + 0x58, 0xe9, 0xc9, 0xa7, 0xa7, 0x99, 0xf6, 0x89, 0x09, 0x03, 0xa4, 0x8d, + 0x9a, 0xd2, 0x8e, 0x50, 0x7a, 0xb8, 0xe7, 0xd2, 0xb9, 0x3f, 0x1e, 0xd9, + 0xea, 0x33, 0x59, 0x45, 0x2d, 0x8c, 0x84, 0x47, 0x16, 0x7c, 0xdd, 0xaf, + 0x8e, 0x2b, 0x23, 0xc1, 0x31, 0xde, 0x7d, 0xb8, 0x2d, 0xdc, 0x8e, 0x77, + 0xae, 0xf4, 0xcb, 0x67, 0x8f, 0xf2, 0x28, 0x8d, 0x27, 0x38, 0x73, 0xb6, + 0x39, 0x54, 0x50, 0x92, 0x85, 0x8f, 0x48, 0x0d, 0xbb, 0x39, 0xe4, 0x7b, + 0xd2, 0x60, 0x63, 0x1f, 0xae, 0x2a, 0x85, 0xfe, 0xa1, 0xfd, 0x9e, 0x9f, + 0x34, 0x65, 0x87, 0xb5, 0x63, 0xbf, 0x8b, 0xa2, 0x43, 0x86, 0x8d, 0x80, + 0xac, 0xe1, 0x4e, 0x52, 0x5a, 0x17, 0x29, 0xc5, 0x3d, 0x4e, 0x92, 0x4b, + 0x88, 0x62, 0x20, 0x3c, 0x8a, 0x1b, 0xdc, 0xd1, 0x05, 0xc4, 0x72, 0xe5, + 0x51, 0xd4, 0xf1, 0xce, 0x39, 0xaf, 0x33, 0xd6, 0x3c, 0x4c, 0x93, 0x78, + 0x82, 0xca, 0x4e, 0x44, 0x4a, 0xe0, 0x3a, 0xfa, 0x8a, 0xb5, 0xe1, 0x9f, + 0x14, 0x46, 0x86, 0x76, 0x94, 0xb1, 0xf9, 0xdb, 0x1e, 0xc3, 0x3c, 0x56, + 0xef, 0x0e, 0xf9, 0x2e, 0x63, 0xed, 0xd7, 0x35, 0x8f, 0x48, 0xe0, 0x2e, + 0x33, 0xf2, 0xe3, 0xae, 0x2b, 0xcd, 0xfc, 0x40, 0xf9, 0xbe, 0x9c, 0xff, + 0x00, 0xd3, 0x62, 0x3f, 0x41, 0x5d, 0x1f, 0xfc, 0x25, 0x96, 0xd8, 0xe4, + 0x1d, 0xb8, 0xe9, 0x9a, 0xe2, 0xaf, 0xf5, 0x15, 0xbd, 0xb8, 0x9d, 0xd3, + 0x38, 0x33, 0x33, 0x0f, 0xd2, 0xa6, 0x9d, 0x39, 0x2d, 0x59, 0x72, 0x9a, + 0x7b, 0x14, 0x2e, 0x89, 0x68, 0x5c, 0x0e, 0xa4, 0x56, 0x54, 0x70, 0x38, + 0xc3, 0xb6, 0xdd, 0xa3, 0x81, 0x5a, 0x37, 0x0e, 0x44, 0x4e, 0x47, 0x50, + 0x2a, 0x94, 0x93, 0xe2, 0x14, 0xc8, 0xe5, 0x86, 0x6b, 0xae, 0x99, 0xcf, + 0x52, 0xc6, 0xa6, 0x9b, 0x6b, 0x1d, 0xd4, 0xd2, 0xee, 0x42, 0xc5, 0x53, + 0x20, 0x0e, 0xf5, 0xd1, 0xc5, 0xa0, 0x59, 0xee, 0x72, 0xaa, 0x7e, 0x55, + 0x04, 0x30, 0x63, 0xd6, 0xb8, 0x7f, 0xed, 0x99, 0x74, 0xdf, 0xdf, 0x41, + 0xd5, 0xc6, 0x33, 0x56, 0x6d, 0x3c, 0x49, 0x7f, 0x70, 0x85, 0x84, 0xee, + 0xb8, 0xe3, 0x19, 0xa9, 0xab, 0x4e, 0x72, 0xbb, 0x43, 0xa5, 0x52, 0x11, + 0xd1, 0x9e, 0xb5, 0x71, 0xa7, 0x45, 0x67, 0xa6, 0x44, 0x23, 0x0e, 0xf2, + 0x34, 0x7c, 0x12, 0xe7, 0x39, 0xc5, 0x70, 0x93, 0x6a, 0x93, 0x59, 0x49, + 0x2a, 0xc8, 0xb3, 0x24, 0x99, 0xdb, 0xb6, 0x57, 0xc9, 0xe7, 0xb8, 0xa9, + 0xbf, 0xe1, 0x2d, 0xbd, 0x48, 0xad, 0xd6, 0x67, 0x0e, 0x80, 0x73, 0x91, + 0xce, 0x29, 0xde, 0x21, 0x96, 0xc3, 0x50, 0xb3, 0xb6, 0xbc, 0x82, 0x25, + 0xf3, 0xa4, 0x6c, 0x33, 0x67, 0x93, 0x81, 0xe9, 0x50, 0xa0, 0xe1, 0x3e, + 0x59, 0x75, 0x34, 0xe7, 0x52, 0xa7, 0x78, 0x1c, 0xd2, 0xb7, 0xfa, 0x14, + 0xe4, 0xf7, 0x6c, 0xd6, 0x4b, 0x48, 0xaa, 0x00, 0x27, 0x9a, 0xd8, 0x74, + 0x68, 0x6c, 0xa4, 0x0e, 0xa3, 0xe6, 0x3d, 0x0d, 0x63, 0xb2, 0xa9, 0x19, + 0xc0, 0xae, 0xb8, 0xec, 0xce, 0x09, 0x6e, 0x86, 0xf9, 0x8b, 0xea, 0x2a, + 0x6b, 0x46, 0x06, 0x46, 0xe6, 0xa0, 0xd8, 0xbe, 0x82, 0x80, 0xa0, 0x1e, + 0x38, 0xa1, 0xc6, 0xea, 0xc0, 0xa5, 0x67, 0x73, 0x58, 0x9c, 0xc6, 0x6a, + 0xd5, 0xb1, 0xfd, 0xdf, 0xe2, 0x6b, 0x32, 0xd9, 0x89, 0xb7, 0x39, 0xad, + 0x1b, 0x53, 0xfb, 0xbf, 0xc6, 0xb9, 0xda, 0x3a, 0x2f, 0x72, 0xd8, 0xa8, + 0x27, 0xff, 0x00, 0x8f, 0x98, 0x07, 0xb9, 0xa9, 0x41, 0xa8, 0x27, 0xff, + 0x00, 0x8f, 0x98, 0x3e, 0xa6, 0x85, 0xb8, 0xde, 0xc5, 0x95, 0x45, 0x5e, + 0x80, 0x0a, 0x78, 0xa6, 0xe6, 0x94, 0x54, 0x8c, 0x53, 0x49, 0x45, 0x25, + 0x00, 0x29, 0xa4, 0xcd, 0x06, 0x9b, 0x9a, 0x60, 0x29, 0xa6, 0xd2, 0xd2, + 0x52, 0x18, 0x94, 0x51, 0x48, 0x29, 0x00, 0xb4, 0x51, 0x49, 0x4c, 0x02, + 0x9b, 0xde, 0x9d, 0x4d, 0xa4, 0x01, 0x45, 0x14, 0x50, 0x02, 0x52, 0xd1, + 0x45, 0x30, 0x12, 0x8a, 0x28, 0xa0, 0x62, 0x52, 0x52, 0xd1, 0x40, 0x00, + 0xa2, 0x8a, 0x0f, 0x4a, 0x00, 0x41, 0xd2, 0x9c, 0x0d, 0x34, 0x74, 0xa3, + 0x34, 0x08, 0x78, 0x34, 0xe0, 0xd5, 0x1e, 0x68, 0xdd, 0x45, 0x87, 0x72, + 0x60, 0xf4, 0xa1, 0xea, 0xbe, 0xea, 0x5d, 0xd4, 0x58, 0x2e, 0x5a, 0x12, + 0x53, 0xc4, 0xb5, 0x48, 0x3d, 0x2f, 0x99, 0x4b, 0x94, 0x7c, 0xc5, 0xe1, + 0x2d, 0x3c, 0x4d, 0x59, 0xfe, 0x65, 0x28, 0x92, 0x97, 0x20, 0x73, 0x1a, + 0x22, 0x7f, 0x7a, 0x70, 0x9f, 0xde, 0xb3, 0xbc, 0xc3, 0x47, 0x98, 0x69, + 0x72, 0x0f, 0x98, 0xd1, 0xfb, 0x47, 0xbd, 0x34, 0xdc, 0x7b, 0xd5, 0x0f, + 0x30, 0xd2, 0x17, 0x34, 0x72, 0x07, 0x31, 0xa1, 0xf6, 0x9f, 0x7a, 0x4f, + 0xb4, 0xfb, 0xd6, 0x7e, 0xf3, 0x46, 0xe3, 0x47, 0x22, 0x17, 0x31, 0xa3, + 0xf6, 0x9e, 0x3a, 0xd4, 0x6d, 0x71, 0x9e, 0xf5, 0x4b, 0x71, 0xa3, 0x75, + 0x35, 0x04, 0x2e, 0x62, 0x66, 0x93, 0x35, 0x19, 0x34, 0xdc, 0xd3, 0x49, + 0xab, 0xb0, 0x89, 0x56, 0x4d, 0xa6, 0xa7, 0x5b, 0xa2, 0xbd, 0xea, 0x98, + 0xa0, 0xf1, 0x49, 0xab, 0x82, 0x76, 0x2f, 0x7d, 0xb4, 0xfa, 0xd0, 0xf7, + 0xbf, 0x27, 0x5e, 0xe2, 0xa8, 0x66, 0x99, 0x21, 0xf9, 0x6a, 0x79, 0x11, + 0x5c, 0xcc, 0xd2, 0x87, 0x51, 0xdb, 0x7b, 0x23, 0x6e, 0xea, 0xa2, 0xa6, + 0xb9, 0xd5, 0x37, 0xdb, 0x48, 0x9b, 0xba, 0xa9, 0x15, 0x80, 0x0e, 0x2e, + 0x0f, 0x3f, 0xc2, 0x29, 0x5d, 0xb8, 0xa1, 0xd2, 0x57, 0x40, 0xaa, 0x3b, + 0x19, 0x97, 0x4f, 0xb6, 0xe0, 0x30, 0x3d, 0x39, 0xa6, 0x6a, 0xf7, 0xdf, + 0x6a, 0x58, 0xc9, 0xe7, 0x03, 0x19, 0xa6, 0xde, 0x38, 0xf3, 0xf1, 0x55, + 0x25, 0x06, 0x54, 0xda, 0xa7, 0x9c, 0xf4, 0xae, 0xd8, 0x46, 0xe9, 0x1c, + 0x53, 0x95, 0x9b, 0x1d, 0x66, 0xf9, 0x0d, 0x56, 0x18, 0xf1, 0x55, 0x6d, + 0xd0, 0xa2, 0xf2, 0x7a, 0xd4, 0xd5, 0x2d, 0x7b, 0xc3, 0x5f, 0x09, 0x13, + 0x1c, 0x31, 0xa6, 0x2b, 0x15, 0xe0, 0x1a, 0x74, 0x90, 0xbb, 0xc8, 0x4a, + 0x9e, 0x29, 0xcb, 0x1e, 0x14, 0x67, 0x93, 0x5b, 0x28, 0x99, 0x5c, 0x6c, + 0x92, 0x33, 0xc7, 0xb7, 0x3d, 0x3a, 0x54, 0x31, 0x16, 0x24, 0x8a, 0xb3, + 0xb4, 0x7f, 0x76, 0x98, 0x54, 0xee, 0xf9, 0x53, 0x02, 0x86, 0x9d, 0x86, + 0x99, 0x33, 0x11, 0xb3, 0x15, 0x0a, 0xaf, 0x98, 0xe4, 0x74, 0x51, 0xfa, + 0xd4, 0xc7, 0x1b, 0x29, 0x63, 0x8f, 0x2a, 0x08, 0x15, 0x14, 0x8b, 0x98, + 0xcf, 0x29, 0x68, 0xf2, 0x87, 0xa9, 0xa9, 0x82, 0x1c, 0xf4, 0x34, 0xbb, + 0x71, 0x5b, 0x10, 0x41, 0xe4, 0x8f, 0x53, 0x47, 0x93, 0xf5, 0xa9, 0xf1, + 0x46, 0x28, 0x02, 0xbf, 0x93, 0xf5, 0xfc, 0xe9, 0x7c, 0xa1, 0x53, 0xe3, + 0xda, 0x8d, 0xb4, 0xee, 0x04, 0x1e, 0x48, 0xf7, 0xa3, 0xc8, 0x1d, 0x79, + 0xab, 0x18, 0xf6, 0xa5, 0xda, 0x28, 0xb8, 0xac, 0x57, 0xf2, 0x17, 0xde, + 0x8f, 0xb3, 0xa5, 0x59, 0x0b, 0x4b, 0x8a, 0x02, 0xc5, 0x6f, 0xb3, 0x47, + 0x4a, 0x2d, 0x94, 0x74, 0x24, 0x7d, 0x0d, 0x58, 0xdb, 0x46, 0xda, 0x62, + 0xb1, 0x08, 0x88, 0x83, 0xf7, 0xc9, 0xfa, 0xd2, 0x18, 0x33, 0xfc, 0x58, + 0xa9, 0xf6, 0xd1, 0x8a, 0x56, 0x43, 0xd4, 0xac, 0x6d, 0xc9, 0x18, 0xdd, + 0x4d, 0x6b, 0x56, 0x61, 0x8d, 0xfc, 0x55, 0xba, 0x4a, 0x2c, 0x83, 0x52, + 0x98, 0xb2, 0x3f, 0xde, 0xa7, 0x7d, 0x8d, 0xff, 0x00, 0xbf, 0xf4, 0xab, + 0x79, 0xa3, 0x22, 0x8b, 0x21, 0x58, 0xa9, 0xf6, 0x26, 0xf5, 0xcf, 0xbd, + 0x06, 0xcd, 0x89, 0xe0, 0xed, 0x1e, 0xd5, 0x73, 0x34, 0x6e, 0xa2, 0xc8, + 0x2c, 0x55, 0x16, 0x92, 0x01, 0x8d, 0xd9, 0xfa, 0xd0, 0x2c, 0xe5, 0x27, + 0x99, 0x4e, 0x3d, 0x2a, 0xde, 0xea, 0x03, 0xfb, 0xd1, 0x68, 0xf6, 0x0d, + 0x4a, 0xcb, 0x64, 0xe3, 0x8f, 0x37, 0x8c, 0xd3, 0xfe, 0xc5, 0x9e, 0xb3, + 0x1f, 0xca, 0xa6, 0xdd, 0xf5, 0xa4, 0xcf, 0xbd, 0x35, 0x64, 0x16, 0x63, + 0x0d, 0x90, 0x62, 0x09, 0x9f, 0xff, 0x00, 0x1d, 0xa4, 0x3a, 0x74, 0x67, + 0x3f, 0xbd, 0x3c, 0xfb, 0x54, 0x9b, 0xbd, 0xe8, 0xdd, 0x4e, 0xe8, 0x56, + 0x62, 0xc7, 0xa6, 0x42, 0x71, 0x99, 0x5b, 0xf0, 0xab, 0xa3, 0x4b, 0xb7, + 0x74, 0x01, 0x5d, 0xc1, 0xf5, 0xdd, 0x55, 0x16, 0x5c, 0x54, 0xab, 0x74, + 0x45, 0x26, 0xc7, 0x62, 0xc5, 0xcd, 0x8c, 0xb2, 0xa2, 0xaa, 0xe0, 0x6d, + 0x18, 0x04, 0x54, 0x36, 0xb6, 0xb2, 0xda, 0xdd, 0xc5, 0x24, 0xb1, 0xb4, + 0xb1, 0x21, 0xf9, 0x90, 0x77, 0x14, 0xa2, 0xe8, 0xe3, 0xa9, 0xa0, 0xdc, + 0xb7, 0x67, 0x6f, 0xce, 0x96, 0xa3, 0x2c, 0x3d, 0xc3, 0x2b, 0xb4, 0x89, + 0x13, 0xa9, 0x63, 0xd0, 0x8e, 0x95, 0x1c, 0x77, 0x53, 0x34, 0xac, 0xcd, + 0x16, 0xe0, 0xcd, 0xb8, 0x8f, 0x4a, 0x8b, 0xed, 0x52, 0x8e, 0x92, 0x9a, + 0x72, 0xdf, 0xdc, 0xa1, 0xca, 0xc9, 0xcf, 0xd2, 0xb3, 0x71, 0x7a, 0x97, + 0xcc, 0x9d, 0x87, 0x82, 0xd7, 0x3a, 0x82, 0x62, 0x0f, 0x98, 0xbf, 0x71, + 0xd7, 0x9a, 0xdd, 0xd5, 0x75, 0x43, 0x04, 0x72, 0xd9, 0x27, 0xcc, 0x86, + 0xdd, 0x40, 0xda, 0x38, 0x0c, 0x0f, 0x5a, 0xc0, 0x1a, 0xa5, 0xc2, 0x9c, + 0x90, 0x8c, 0x7d, 0x48, 0xa0, 0xea, 0xcc, 0x49, 0x2d, 0x0a, 0x92, 0x57, + 0x69, 0xc1, 0xed, 0x58, 0x4e, 0x8b, 0x91, 0xaa, 0xab, 0x62, 0xbe, 0x9d, + 0x6e, 0xba, 0x8e, 0xab, 0x14, 0x12, 0x48, 0x54, 0x4a, 0xe0, 0x33, 0x05, + 0xc9, 0x19, 0x3e, 0x95, 0x2d, 0xde, 0x9e, 0x6d, 0xb5, 0x29, 0xec, 0xdb, + 0x22, 0x48, 0xf8, 0xc3, 0x0c, 0x64, 0xe6, 0x9d, 0x63, 0xa9, 0x45, 0x61, + 0x7a, 0x97, 0x70, 0x44, 0xc9, 0x2a, 0x72, 0x0e, 0x69, 0xb2, 0xdf, 0xa5, + 0xc5, 0xd4, 0xb7, 0x72, 0xb3, 0x99, 0xdf, 0xa9, 0x3c, 0xd5, 0x72, 0x34, + 0x4d, 0xd1, 0x52, 0x58, 0x12, 0x14, 0x8d, 0xe5, 0x7d, 0xa5, 0xfe, 0x65, + 0x5c, 0x75, 0x15, 0x4e, 0x76, 0xde, 0xfb, 0xfa, 0x73, 0x4f, 0x95, 0x1a, + 0x67, 0x04, 0xb9, 0xc2, 0x8c, 0x00, 0x4f, 0x4a, 0x99, 0xa2, 0x8d, 0xe0, + 0x45, 0x07, 0x0c, 0xbd, 0x49, 0xef, 0x4e, 0xd6, 0xb6, 0x82, 0xdf, 0xa9, + 0x4d, 0x64, 0x21, 0x89, 0x34, 0xc3, 0x21, 0x19, 0xf4, 0x35, 0x75, 0x6d, + 0x63, 0x3c, 0xf9, 0x83, 0xf2, 0xa7, 0xc7, 0xa6, 0xac, 0xe4, 0x95, 0x71, + 0xc7, 0x73, 0x4b, 0x6d, 0xc2, 0xcf, 0xb9, 0x56, 0x09, 0x72, 0xac, 0x46, + 0x3e, 0x51, 0xd0, 0x9e, 0x4d, 0x49, 0x67, 0x3f, 0x95, 0x33, 0x39, 0x6f, + 0x94, 0xf6, 0xf4, 0xab, 0x0b, 0xa4, 0x30, 0x6f, 0x92, 0x74, 0xcf, 0xd6, + 0x93, 0xfb, 0x1e, 0xe1, 0x4f, 0x12, 0x29, 0xaa, 0xba, 0x15, 0x99, 0x7e, + 0x2b, 0xc4, 0x7c, 0x60, 0xd5, 0x68, 0x9a, 0xe6, 0x3b, 0xd3, 0x28, 0xce, + 0xc2, 0xd9, 0xc5, 0x24, 0x5a, 0x4d, 0xd2, 0x3e, 0xe0, 0xcb, 0xf9, 0xd5, + 0xa8, 0xec, 0xae, 0x91, 0xb9, 0x0a, 0x7f, 0xe0, 0x54, 0x26, 0xbb, 0x83, + 0xbb, 0xe8, 0x6a, 0x5e, 0x6b, 0xb7, 0x51, 0xe9, 0x6d, 0x10, 0x90, 0x81, + 0xc6, 0x31, 0x5a, 0xfe, 0x03, 0xd7, 0x67, 0xbe, 0xbd, 0x6b, 0x79, 0xa4, + 0x3b, 0x80, 0xc8, 0x2c, 0x6b, 0x93, 0x9b, 0x4f, 0xbb, 0x95, 0x19, 0x59, + 0x46, 0x0f, 0x4f, 0x9a, 0xb5, 0xfc, 0x33, 0x69, 0xfd, 0x8b, 0x7a, 0xb7, + 0x77, 0x0e, 0x8d, 0x1b, 0x0d, 0xa5, 0x54, 0xf2, 0x2b, 0x29, 0x42, 0x3c, + 0xad, 0x23, 0x45, 0x39, 0x73, 0x23, 0xd3, 0xfc, 0x47, 0x19, 0x93, 0x45, + 0x9a, 0x38, 0x13, 0x73, 0xb8, 0xe0, 0x0a, 0xe6, 0xfc, 0x3b, 0x6d, 0x79, + 0x69, 0x7a, 0x8f, 0x79, 0x0e, 0xd4, 0x0a, 0x11, 0x48, 0x19, 0xc0, 0xad, + 0x09, 0xbc, 0x47, 0x66, 0xda, 0x74, 0x8c, 0xb7, 0x0b, 0x91, 0xc2, 0x80, + 0x79, 0x3f, 0x81, 0xab, 0x7a, 0x76, 0xab, 0x6f, 0x79, 0x0a, 0x1f, 0x33, + 0x69, 0xc7, 0x21, 0x88, 0xc8, 0xae, 0x38, 0xc6, 0x51, 0x83, 0x47, 0x54, + 0x9c, 0x65, 0x24, 0xef, 0xb1, 0xa7, 0x70, 0x23, 0xd8, 0x4c, 0xa0, 0x10, + 0x7d, 0x6b, 0x97, 0xf1, 0x2d, 0x85, 0x98, 0xb4, 0xf3, 0xa2, 0x03, 0x76, + 0x7b, 0x0a, 0xd1, 0xd7, 0x65, 0xc5, 0xb1, 0x58, 0xe6, 0xdc, 0x48, 0xcf, + 0x5a, 0xf3, 0xfd, 0x5b, 0x5b, 0xb9, 0x54, 0x30, 0x6d, 0x75, 0x45, 0xc0, + 0x39, 0x3d, 0x4d, 0x14, 0x69, 0x4b, 0x74, 0x3a, 0xb5, 0x63, 0xd4, 0xe6, + 0xb5, 0x29, 0x9b, 0xed, 0xaa, 0xd1, 0x8c, 0xed, 0x39, 0xce, 0x3b, 0xd5, + 0x9d, 0x19, 0xf0, 0x8e, 0x0f, 0x0c, 0x4e, 0x70, 0x68, 0xf3, 0xe2, 0x6e, + 0x58, 0x28, 0xc9, 0xef, 0x56, 0x50, 0x22, 0x8d, 0xea, 0x00, 0xaf, 0x45, + 0xa7, 0x6b, 0x58, 0xf3, 0xf4, 0xe6, 0xbd, 0xcb, 0xac, 0xdc, 0x1e, 0x47, + 0x4e, 0x95, 0x4e, 0xd8, 0xf0, 0xff, 0x00, 0xef, 0x1a, 0x73, 0x5c, 0x0d, + 0xad, 0xc9, 0xce, 0x2a, 0xa4, 0x53, 0x6c, 0x89, 0x5b, 0xb3, 0x13, 0xde, + 0xb2, 0x94, 0x1d, 0x8d, 0xa1, 0x25, 0x72, 0x7b, 0xb7, 0x0b, 0x03, 0xe4, + 0xf5, 0x15, 0x49, 0xcf, 0xc9, 0x17, 0xfb, 0x86, 0x92, 0xe6, 0x5d, 0xd2, + 0x23, 0x63, 0x20, 0x75, 0xa6, 0xc9, 0x38, 0xe3, 0xa6, 0x29, 0xc2, 0x0c, + 0xaa, 0x92, 0x29, 0x5f, 0xe4, 0xdb, 0x44, 0x00, 0x34, 0x58, 0x33, 0x45, + 0x13, 0x02, 0xa7, 0x19, 0xf4, 0xa7, 0xcb, 0x38, 0xdb, 0x82, 0xc3, 0x83, + 0x51, 0x7d, 0xa6, 0x4f, 0x3f, 0x29, 0x26, 0x14, 0x77, 0x5a, 0xe8, 0x50, + 0xd2, 0xcc, 0xe6, 0x6f, 0x53, 0x72, 0xe5, 0xbf, 0x77, 0x16, 0x48, 0x20, + 0xaf, 0x4a, 0xaf, 0x61, 0x39, 0x33, 0x08, 0xc9, 0x38, 0xdd, 0xc0, 0xac, + 0xc3, 0x7b, 0x33, 0x1c, 0x33, 0x33, 0xe3, 0xb9, 0xab, 0x1a, 0x71, 0xcd, + 0xcc, 0x64, 0x82, 0x1b, 0x75, 0x4c, 0xe3, 0xbb, 0x08, 0xcb, 0x64, 0x8e, + 0x8b, 0x51, 0x05, 0xad, 0x4e, 0x2b, 0x9e, 0x77, 0x65, 0xe0, 0x2f, 0x4a, + 0xd5, 0xd5, 0x27, 0x70, 0x00, 0x43, 0xc0, 0x1c, 0x8a, 0xc8, 0x2e, 0xc7, + 0xaa, 0x9a, 0xca, 0x0a, 0xd1, 0x2e, 0xa3, 0xbc, 0x86, 0x99, 0x1b, 0xfb, + 0xa6, 0x90, 0xc8, 0x7f, 0xbb, 0x4b, 0x93, 0xfd, 0xd3, 0x4d, 0x24, 0xff, + 0x00, 0x74, 0xfe, 0x75, 0x44, 0x17, 0xed, 0x8f, 0xee, 0x0d, 0x69, 0xda, + 0x9f, 0x90, 0xfd, 0x6b, 0x9f, 0x49, 0x1d, 0x3e, 0xe8, 0x22, 0xb6, 0xac, + 0x24, 0xdf, 0x19, 0x3e, 0xf5, 0x8c, 0xe3, 0x63, 0x78, 0x4a, 0xe8, 0xbe, + 0x0d, 0x41, 0x71, 0xff, 0x00, 0x1f, 0x30, 0x7d, 0x4d, 0x4c, 0x0d, 0x41, + 0x71, 0xfe, 0xba, 0x0f, 0xad, 0x4a, 0xdc, 0xb7, 0xb1, 0x6e, 0x80, 0x69, + 0x29, 0x45, 0x41, 0x42, 0x9a, 0x4c, 0xd2, 0x9a, 0x6d, 0x00, 0x29, 0x34, + 0x94, 0x1e, 0x94, 0x94, 0xc0, 0x0d, 0x25, 0x2d, 0x25, 0x20, 0x13, 0x34, + 0x03, 0x41, 0x14, 0x94, 0x0c, 0x75, 0x25, 0x14, 0x94, 0x00, 0x52, 0x52, + 0xd2, 0x1a, 0x00, 0x33, 0x45, 0x14, 0x50, 0x01, 0x49, 0x45, 0x14, 0x00, + 0x51, 0x45, 0x25, 0x00, 0x14, 0x51, 0x45, 0x00, 0x14, 0x87, 0xa5, 0x2d, + 0x21, 0xe9, 0x40, 0x09, 0xda, 0x8a, 0x4e, 0xd4, 0x53, 0x01, 0x69, 0x33, + 0x45, 0x25, 0x02, 0x16, 0x92, 0x92, 0x8a, 0x60, 0x2e, 0x69, 0x69, 0xa2, + 0x96, 0x80, 0x17, 0x34, 0xa2, 0x92, 0x94, 0x50, 0x03, 0xa9, 0x73, 0x48, + 0x28, 0xa0, 0x07, 0x66, 0x93, 0x34, 0x94, 0x52, 0x01, 0x68, 0xa4, 0xcd, + 0x19, 0xa0, 0x05, 0xa2, 0x9b, 0x4b, 0x40, 0x0b, 0x9e, 0x29, 0x33, 0x41, + 0xe9, 0x4d, 0x26, 0x80, 0x1d, 0x9a, 0x46, 0x34, 0x83, 0x39, 0xa4, 0x2d, + 0x14, 0x63, 0x32, 0xc8, 0x17, 0x3d, 0x87, 0x26, 0xaa, 0x31, 0x6f, 0x61, + 0x39, 0x25, 0xb8, 0x13, 0x4c, 0x90, 0xe1, 0x32, 0x4d, 0x34, 0x33, 0x4a, + 0x0b, 0x27, 0x09, 0x9e, 0xa7, 0xad, 0x29, 0x45, 0x54, 0xc9, 0xcb, 0x37, + 0xa9, 0xaa, 0x54, 0xdf, 0x52, 0x1d, 0x55, 0xd0, 0x80, 0x31, 0x79, 0xce, + 0xc1, 0x9f, 0x96, 0xa4, 0x11, 0xe4, 0x65, 0xce, 0x7d, 0xaa, 0x38, 0xe4, + 0x09, 0x36, 0x4f, 0xf7, 0x2a, 0x29, 0xef, 0x80, 0x42, 0x17, 0xef, 0x1a, + 0xd5, 0x41, 0x23, 0x27, 0x36, 0xcc, 0xed, 0x49, 0x87, 0xda, 0x46, 0xd1, + 0xc0, 0x15, 0x52, 0x32, 0xd9, 0x2d, 0x56, 0x99, 0x77, 0xb6, 0xe6, 0x3c, + 0xd1, 0xb3, 0xd2, 0xae, 0xf6, 0x22, 0xd7, 0x21, 0x57, 0xda, 0x31, 0x8a, + 0x90, 0x38, 0x20, 0x9c, 0x52, 0xe2, 0x80, 0x33, 0x51, 0x6b, 0x97, 0x71, + 0x03, 0xf1, 0x4e, 0xda, 0x71, 0x4e, 0x0b, 0xed, 0x4e, 0x02, 0xb4, 0x52, + 0xb2, 0xb1, 0x0d, 0x5d, 0xdc, 0x66, 0xde, 0x9c, 0x52, 0x92, 0x00, 0x3c, + 0x53, 0xf0, 0x45, 0x3f, 0x60, 0xf6, 0xa2, 0xed, 0x8e, 0xc5, 0x42, 0x6a, + 0x58, 0x58, 0x90, 0x41, 0xe9, 0xda, 0x9c, 0xd0, 0x8e, 0xa0, 0x52, 0xa7, + 0x1d, 0x29, 0x25, 0xca, 0x0d, 0xdc, 0x7e, 0xed, 0xbd, 0x47, 0x14, 0x70, + 0xdd, 0x29, 0xe0, 0x06, 0x1c, 0x8a, 0x63, 0x21, 0x5e, 0x57, 0x38, 0xaa, + 0xb8, 0x58, 0x4e, 0x07, 0x14, 0xb9, 0x14, 0xdc, 0xe7, 0xad, 0x27, 0xe1, + 0x4e, 0xe1, 0x61, 0xfb, 0xa8, 0xc8, 0xa6, 0x60, 0xf6, 0xa3, 0x9e, 0xf4, + 0x5c, 0x2c, 0x3f, 0x3e, 0x94, 0x66, 0x9a, 0x29, 0x79, 0xa7, 0x70, 0xb0, + 0xbb, 0xa8, 0xdd, 0xed, 0x45, 0x26, 0x07, 0xad, 0x17, 0x15, 0x85, 0xcd, + 0x26, 0x69, 0x38, 0xf5, 0xa4, 0x24, 0x51, 0x70, 0xb0, 0xed, 0xc6, 0x93, + 0x26, 0x9b, 0xbb, 0xda, 0x93, 0x71, 0xa2, 0xe1, 0x61, 0xf9, 0xa4, 0xcd, + 0x33, 0x27, 0xd6, 0x8a, 0x2e, 0x16, 0x1f, 0x9a, 0x33, 0x4c, 0xe6, 0x94, + 0x66, 0x8b, 0x85, 0x87, 0x6e, 0xa5, 0xe6, 0x9b, 0x93, 0x45, 0x01, 0x61, + 0x7e, 0xa7, 0x34, 0xb9, 0xa4, 0xa2, 0x8b, 0x85, 0x85, 0xc9, 0xa3, 0x34, + 0x94, 0x67, 0x34, 0x5c, 0x05, 0xe6, 0x8a, 0x6e, 0x7d, 0x29, 0x78, 0xc5, + 0x00, 0x3b, 0xf1, 0xa4, 0x07, 0x9a, 0x42, 0x73, 0x4e, 0x1c, 0x0a, 0x40, + 0x29, 0x34, 0xdd, 0xc6, 0x82, 0x69, 0xb9, 0xa7, 0x70, 0xb0, 0xbb, 0x8d, + 0x1b, 0x8d, 0x26, 0x69, 0x28, 0xb8, 0x58, 0x5d, 0xe6, 0x90, 0xb5, 0x25, + 0x25, 0x2b, 0x85, 0x85, 0xdd, 0x46, 0xea, 0x4c, 0x52, 0x62, 0x8b, 0x85, + 0x87, 0x66, 0x8c, 0xd2, 0x62, 0x8a, 0x2e, 0x31, 0xd9, 0xa5, 0x0c, 0xc3, + 0xa1, 0xa6, 0x52, 0x82, 0x69, 0x01, 0x2a, 0xb3, 0x03, 0x90, 0x70, 0x69, + 0xfb, 0xdc, 0xff, 0x00, 0x11, 0xa8, 0x01, 0xa5, 0x0c, 0x6a, 0x59, 0x48, + 0xb0, 0x19, 0xfb, 0x31, 0xfc, 0xe9, 0xe2, 0x49, 0x3f, 0xbe, 0x7f, 0x3a, + 0xac, 0x18, 0xd2, 0x87, 0x35, 0x2d, 0x0e, 0xe5, 0xaf, 0x3a, 0x5e, 0xee, + 0x4f, 0xe3, 0x41, 0x96, 0x46, 0xfe, 0x22, 0x2a, 0xb8, 0x7a, 0x5f, 0x33, + 0xde, 0x95, 0x8a, 0xb9, 0x27, 0xef, 0x01, 0x24, 0x39, 0xe6, 0xa5, 0x49, + 0xae, 0x17, 0xa4, 0x86, 0xab, 0xf9, 0xb4, 0xa2, 0x53, 0x4a, 0xc0, 0x59, + 0x6b, 0x8b, 0xa6, 0x1c, 0xca, 0xc7, 0xf1, 0x35, 0x0c, 0x8d, 0x2c, 0x83, + 0xe7, 0x25, 0x8f, 0xb9, 0xa6, 0xf9, 0xa6, 0x9a, 0x64, 0xa1, 0x2b, 0x03, + 0x1a, 0x43, 0x7f, 0x74, 0x52, 0xef, 0x93, 0x18, 0xc1, 0xc5, 0x1b, 0xe9, + 0x37, 0x1a, 0xab, 0xb2, 0x6c, 0x86, 0x99, 0x25, 0xe7, 0xb6, 0x6a, 0x2f, + 0xde, 0x00, 0x00, 0x3c, 0x0e, 0x95, 0x31, 0x39, 0xed, 0x4d, 0x23, 0x34, + 0xf7, 0xdc, 0x56, 0xb6, 0xc4, 0x25, 0xa4, 0x3d, 0x5b, 0xf4, 0xa8, 0x5d, + 0x19, 0xba, 0xb3, 0x55, 0xad, 0xa3, 0xd6, 0x8d, 0x95, 0x4a, 0xc8, 0x4d, + 0xb6, 0x51, 0xfb, 0x38, 0x3e, 0xa6, 0x9c, 0xb6, 0xfe, 0x95, 0x70, 0x20, + 0xa9, 0x15, 0x01, 0x19, 0x35, 0x6a, 0x44, 0xd8, 0xae, 0xb6, 0xc1, 0x70, + 0x5c, 0xf5, 0xec, 0x2a, 0xed, 0xa4, 0xa9, 0x13, 0x2a, 0x85, 0xe3, 0x3d, + 0x4d, 0x46, 0x40, 0xa0, 0x7c, 0xb8, 0xe9, 0x4a, 0x4e, 0xe2, 0x2c, 0xea, + 0x27, 0xe7, 0x3c, 0xf7, 0xaa, 0x19, 0xad, 0x4b, 0x98, 0x16, 0x68, 0x63, + 0x24, 0x90, 0xd8, 0xed, 0xde, 0xaa, 0x7d, 0x90, 0x77, 0x73, 0x59, 0xb1, + 0x95, 0x09, 0xa4, 0xcd, 0x5b, 0x36, 0xd1, 0x74, 0x0e, 0xd4, 0xc6, 0xb6, + 0x50, 0x47, 0x2d, 0xcd, 0x02, 0x2b, 0x13, 0xc5, 0x69, 0xe9, 0x6f, 0x98, + 0xcd, 0x54, 0x6b, 0x78, 0x80, 0xe3, 0x77, 0x4f, 0x5a, 0x9b, 0x4a, 0x8f, + 0xe5, 0x6c, 0x3f, 0x46, 0xc5, 0x4c, 0xe3, 0x74, 0x54, 0x25, 0x67, 0xa9, + 0xb4, 0xa6, 0xa1, 0xb8, 0xff, 0x00, 0x5d, 0x0f, 0xfb, 0xd4, 0xa1, 0x99, + 0x3e, 0xf0, 0xe3, 0xd4, 0x54, 0x53, 0xb8, 0x69, 0x22, 0x20, 0xff, 0x00, + 0x15, 0x62, 0xa2, 0xd3, 0xd4, 0xe8, 0xba, 0x6b, 0x42, 0xf5, 0x2e, 0x69, + 0x9b, 0xa9, 0xd9, 0xa8, 0x2c, 0x76, 0x69, 0xb4, 0xb4, 0x86, 0x80, 0x16, + 0x92, 0x8a, 0x4a, 0x00, 0x5a, 0x4a, 0x0d, 0x25, 0x20, 0x0a, 0x4a, 0x29, + 0x33, 0x40, 0xc7, 0x52, 0x51, 0x45, 0x00, 0x14, 0x51, 0x49, 0x40, 0x05, + 0x14, 0x52, 0x50, 0x01, 0x45, 0x14, 0x99, 0xa0, 0x05, 0xa4, 0xa2, 0x8a, + 0x00, 0x29, 0x33, 0x41, 0x34, 0x94, 0xc0, 0x5c, 0xd2, 0x1e, 0x94, 0x52, + 0x50, 0x01, 0x45, 0x25, 0x14, 0xc4, 0x14, 0x51, 0x9a, 0x6d, 0x00, 0x2e, + 0x68, 0xa4, 0xa2, 0x98, 0x85, 0xa5, 0xa6, 0xd2, 0xd0, 0x02, 0xd2, 0xd3, + 0x73, 0x4e, 0x14, 0x86, 0x3a, 0x96, 0x9b, 0x9a, 0x5c, 0xd0, 0x02, 0xd1, + 0x9a, 0x6e, 0x68, 0xa4, 0x01, 0x9a, 0x5c, 0xf1, 0x49, 0x43, 0x32, 0xa8, + 0xf9, 0x88, 0x1f, 0x5a, 0x00, 0x07, 0x34, 0xfe, 0xd5, 0x5f, 0xed, 0x0a, + 0x4e, 0x22, 0x56, 0x73, 0xec, 0x38, 0xa4, 0x3e, 0x69, 0xfb, 0xee, 0x23, + 0x1e, 0x83, 0x93, 0x56, 0xa0, 0xd9, 0x2e, 0x69, 0x13, 0x33, 0xaa, 0xf2, + 0xc4, 0x01, 0xef, 0x55, 0xe5, 0xba, 0x51, 0xf7, 0x41, 0x3e, 0xe7, 0x81, + 0x4e, 0x64, 0x40, 0xbb, 0x93, 0x2c, 0x7d, 0x4f, 0x35, 0x8f, 0x3c, 0xfb, + 0x5b, 0xe6, 0x24, 0xe4, 0xe0, 0x56, 0x91, 0xa5, 0xdc, 0xca, 0x55, 0x7b, + 0x17, 0x24, 0xbb, 0x76, 0x1f, 0x7b, 0x1f, 0xee, 0xf1, 0x55, 0x1a, 0x70, + 0x0e, 0x33, 0xc9, 0xe9, 0x55, 0x9e, 0x56, 0x26, 0x55, 0x1d, 0x02, 0xf1, + 0x4d, 0x8c, 0x6e, 0x68, 0xf3, 0xe9, 0x5a, 0xda, 0xc6, 0x4d, 0xdf, 0x73, + 0x6e, 0xd2, 0x42, 0x60, 0x0a, 0x4f, 0x07, 0x9a, 0x96, 0x59, 0x95, 0x63, + 0x24, 0xb0, 0x15, 0x9c, 0x93, 0x88, 0xd7, 0x00, 0xe4, 0xfa, 0x54, 0x2e, + 0xee, 0xed, 0xf3, 0x1c, 0xd3, 0xb0, 0xae, 0x3a, 0x4b, 0x83, 0x23, 0x61, + 0x78, 0xe3, 0x19, 0xa6, 0x2a, 0x7a, 0xd1, 0x81, 0xfd, 0xda, 0x77, 0x14, + 0x98, 0xd2, 0x02, 0xbc, 0x71, 0x4d, 0x2b, 0x8a, 0x76, 0x33, 0xdc, 0xd1, + 0xd0, 0x52, 0x28, 0x8b, 0x6d, 0x3b, 0x18, 0xa7, 0xf1, 0x8a, 0x51, 0x83, + 0xd6, 0x80, 0x10, 0x75, 0xe4, 0x53, 0xb3, 0xcf, 0x02, 0x97, 0x68, 0x3d, + 0x05, 0x3b, 0x00, 0x26, 0x71, 0x93, 0x40, 0x0c, 0xc3, 0x1e, 0xb4, 0x9b, + 0x1b, 0xd2, 0x9e, 0x09, 0xeb, 0x81, 0x4e, 0x56, 0x24, 0xed, 0xe9, 0x40, + 0xc8, 0x4e, 0xe5, 0x1d, 0xe9, 0xca, 0x38, 0xcd, 0x48, 0x57, 0x92, 0x0b, + 0x53, 0x02, 0x28, 0x3c, 0x93, 0x54, 0xb5, 0x13, 0x1e, 0xa4, 0x02, 0x2a, + 0x5f, 0x94, 0xf4, 0xa8, 0xca, 0x01, 0xc8, 0xe9, 0xef, 0x51, 0xb2, 0xb2, + 0xf2, 0x33, 0x8a, 0x43, 0x25, 0x31, 0x83, 0x51, 0x90, 0x54, 0xfa, 0xd2, + 0x07, 0x23, 0xa9, 0xa5, 0xe0, 0xf3, 0x9a, 0x60, 0x34, 0xe6, 0x93, 0x26, + 0x9d, 0x4d, 0x22, 0x81, 0x0d, 0x24, 0xd2, 0x65, 0xa9, 0x69, 0x0d, 0x17, + 0x00, 0xcf, 0xbd, 0x14, 0x94, 0x53, 0x10, 0xa0, 0x66, 0x97, 0x6f, 0xbd, + 0x37, 0x22, 0x8c, 0xd3, 0x01, 0xc4, 0x53, 0x68, 0xcd, 0x19, 0xa5, 0x70, + 0x0c, 0x67, 0xbd, 0x2e, 0x31, 0x4d, 0xa7, 0x63, 0x23, 0xad, 0x30, 0x0c, + 0x8a, 0x29, 0xbc, 0x8e, 0x86, 0x9f, 0xb8, 0xe3, 0x90, 0x28, 0x00, 0xc0, + 0xa2, 0x8f, 0xad, 0x1c, 0x50, 0x01, 0x46, 0x68, 0xc5, 0x34, 0xfb, 0x50, + 0x03, 0xba, 0x52, 0x67, 0x34, 0x9c, 0xd2, 0xf3, 0x48, 0x02, 0x8a, 0x29, + 0x28, 0x01, 0xea, 0x3b, 0xd2, 0xe6, 0x90, 0x10, 0x3b, 0x51, 0x91, 0x4c, + 0x03, 0x34, 0xdc, 0xd2, 0xe4, 0x51, 0xc5, 0x00, 0x25, 0x14, 0x52, 0xf1, + 0x40, 0x09, 0x49, 0x4e, 0xe2, 0x90, 0x81, 0xeb, 0x40, 0x09, 0x8a, 0x28, + 0x34, 0x94, 0x80, 0x28, 0xc5, 0x14, 0xb4, 0x0c, 0x4c, 0x52, 0xe2, 0x8f, + 0xc2, 0x8c, 0x52, 0x01, 0x71, 0x4b, 0x8a, 0x4a, 0x29, 0x0c, 0x5c, 0x51, + 0xf8, 0xd1, 0x9f, 0x6a, 0x5e, 0x28, 0x01, 0x29, 0x68, 0xc5, 0x18, 0x34, + 0x00, 0xb9, 0xa5, 0xa4, 0xc5, 0x1c, 0x52, 0x18, 0xfa, 0x29, 0x99, 0xf4, + 0xa4, 0xc9, 0xa0, 0x09, 0x28, 0xa6, 0x64, 0xd1, 0xba, 0x80, 0x1d, 0x49, + 0x49, 0xba, 0x93, 0xad, 0x31, 0x0b, 0x91, 0x4a, 0x39, 0xa6, 0xe0, 0x53, + 0x95, 0x49, 0x34, 0xc4, 0x3d, 0x54, 0xe7, 0xda, 0x9e, 0x5c, 0x28, 0xe8, + 0x28, 0x2d, 0x81, 0x8c, 0x54, 0x64, 0x02, 0x79, 0x34, 0xc4, 0x3b, 0x2b, + 0xed, 0x4d, 0x23, 0x23, 0x14, 0xdc, 0x80, 0x7d, 0x68, 0xdc, 0x29, 0x5c, + 0x56, 0x26, 0x33, 0xbe, 0xc0, 0xa5, 0x8f, 0x1d, 0x29, 0x8d, 0x3b, 0xe3, + 0x82, 0x4f, 0xe1, 0x51, 0xef, 0xfa, 0x51, 0xc7, 0x7a, 0x56, 0x01, 0x56, + 0x66, 0x1c, 0x90, 0x0d, 0x0f, 0x34, 0x8d, 0xec, 0x3d, 0xa8, 0xda, 0x29, + 0x3a, 0x76, 0xa7, 0x60, 0x18, 0x58, 0xf4, 0x2d, 0xc5, 0x4f, 0x67, 0x3f, + 0xd9, 0xd8, 0x8e, 0xa8, 0x4e, 0x6a, 0x2d, 0xa3, 0xd2, 0x93, 0x0a, 0x0f, + 0x14, 0xf4, 0x24, 0xdc, 0x49, 0xd2, 0x45, 0xca, 0x90, 0x69, 0x65, 0x54, + 0x68, 0xc3, 0x6d, 0xc1, 0xdc, 0x39, 0x1d, 0x6b, 0x16, 0x39, 0x19, 0x1b, + 0x20, 0x9a, 0xba, 0x97, 0x65, 0xd4, 0x2b, 0x71, 0xf3, 0x0a, 0x9b, 0x0e, + 0xe6, 0x82, 0xab, 0x91, 0x95, 0x21, 0xfd, 0x8f, 0x06, 0x97, 0xcd, 0x01, + 0xb0, 0xf9, 0x53, 0xef, 0x4f, 0x89, 0x57, 0x6f, 0x07, 0x9f, 0x5a, 0x86, + 0x72, 0xe0, 0x10, 0x4e, 0x41, 0x1d, 0x6b, 0x37, 0x4d, 0x33, 0x45, 0x51, + 0xa2, 0xc0, 0x6c, 0x8a, 0x33, 0x58, 0xb1, 0x4e, 0xe8, 0x4e, 0xd7, 0x23, + 0xf1, 0xab, 0x51, 0xdf, 0x10, 0x70, 0xea, 0x0f, 0xb8, 0xac, 0xdd, 0x26, + 0x8d, 0x55, 0x48, 0xb2, 0xf8, 0x39, 0xa5, 0xa8, 0x52, 0xe2, 0x37, 0x1c, + 0x36, 0x3d, 0x8f, 0x15, 0x20, 0x35, 0x99, 0x63, 0xa9, 0xb4, 0xb9, 0xa6, + 0xb3, 0x50, 0x31, 0x69, 0x29, 0x7b, 0x52, 0x50, 0x02, 0xd1, 0x45, 0x14, + 0x80, 0x4a, 0x28, 0xa2, 0x81, 0x85, 0x36, 0x96, 0x92, 0x80, 0x0a, 0x4a, + 0x5c, 0xd2, 0x1a, 0x60, 0x14, 0x66, 0x93, 0x34, 0x99, 0xa0, 0x05, 0x34, + 0x94, 0x51, 0x40, 0x0b, 0x49, 0x45, 0x06, 0x81, 0x09, 0xda, 0x93, 0x34, + 0x81, 0xb3, 0x46, 0x69, 0x80, 0x13, 0x46, 0x69, 0xa6, 0x96, 0x81, 0x06, + 0x68, 0xa2, 0x8a, 0x60, 0x14, 0xb4, 0xda, 0x46, 0x9a, 0x35, 0xea, 0xeb, + 0xf9, 0xd0, 0x03, 0xc7, 0x34, 0xe1, 0x55, 0xc5, 0xca, 0x7f, 0x08, 0x66, + 0xfa, 0x0a, 0x70, 0x79, 0xdf, 0xee, 0x40, 0x47, 0xbb, 0x1c, 0x53, 0xe5, + 0x64, 0xf3, 0x24, 0x4f, 0x9a, 0x33, 0x81, 0xcd, 0x46, 0x2d, 0xee, 0x1f, + 0xef, 0xca, 0xa8, 0x3f, 0xd9, 0x14, 0xef, 0xb1, 0x44, 0x3e, 0xfb, 0xb3, + 0x9f, 0x73, 0x54, 0xa9, 0xb2, 0x5d, 0x54, 0x34, 0xdc, 0x44, 0xbc, 0x16, + 0xc9, 0xf6, 0xe6, 0x90, 0x4b, 0x2b, 0xff, 0x00, 0xab, 0x81, 0x8f, 0xb9, + 0xe2, 0xad, 0xa2, 0x45, 0x18, 0x1b, 0x11, 0x47, 0xe1, 0x4e, 0x66, 0x22, + 0xad, 0x53, 0x44, 0x3a, 0xac, 0xaa, 0xb6, 0xf7, 0x12, 0x7f, 0xac, 0x91, + 0x50, 0x7a, 0x28, 0xa7, 0x7d, 0x86, 0x25, 0x6c, 0xb6, 0x5c, 0x8f, 0xef, + 0x1a, 0x94, 0x48, 0x33, 0xef, 0x4a, 0x64, 0xcf, 0x6a, 0x7c, 0xa9, 0x6c, + 0x4f, 0x33, 0x7b, 0x90, 0x48, 0xfb, 0x46, 0x14, 0x01, 0x50, 0xac, 0x6d, + 0x21, 0xf9, 0x9a, 0xa5, 0x65, 0x05, 0xf2, 0x4f, 0x14, 0xe0, 0x54, 0x0c, + 0xf4, 0xab, 0x20, 0x6b, 0xed, 0x82, 0x2d, 0xa3, 0xb8, 0xae, 0x7e, 0xe8, + 0x13, 0x2a, 0x70, 0x71, 0x9a, 0xd2, 0xbb, 0xba, 0x4d, 0xf8, 0x0d, 0x9c, + 0x76, 0x15, 0x9f, 0x23, 0x99, 0x0f, 0xa5, 0x52, 0x13, 0x22, 0xdb, 0xb6, + 0x57, 0x27, 0x90, 0xdc, 0x53, 0x82, 0xe0, 0x60, 0x1e, 0x07, 0x6a, 0x71, + 0x00, 0x81, 0xeb, 0xde, 0x94, 0x47, 0x9f, 0x6a, 0x77, 0x41, 0x61, 0x07, + 0xd2, 0x9e, 0x07, 0x7a, 0x36, 0x90, 0x29, 0x71, 0xe9, 0x52, 0xd9, 0x49, + 0x0e, 0x5d, 0xa4, 0x77, 0xa4, 0x38, 0xed, 0x9a, 0x0e, 0x47, 0x5e, 0x29, + 0xb9, 0xe6, 0x90, 0xc0, 0x13, 0x4f, 0x04, 0x0e, 0xd9, 0x34, 0xd1, 0xd3, + 0x34, 0x99, 0x18, 0xa9, 0x19, 0x26, 0xe0, 0x4f, 0x23, 0x8a, 0x09, 0x4e, + 0xc2, 0xa3, 0xed, 0xc5, 0x1c, 0xd0, 0x32, 0x50, 0xc3, 0x3c, 0x74, 0xa7, + 0x11, 0xc7, 0xca, 0x4f, 0xd2, 0xa1, 0xc1, 0xa7, 0x8c, 0x91, 0xc8, 0xa0, + 0x04, 0x2d, 0x9e, 0xf4, 0xbb, 0x8f, 0xad, 0x38, 0x11, 0xd3, 0x03, 0x34, + 0xbc, 0x0a, 0x60, 0x30, 0x31, 0x27, 0xad, 0x1c, 0xf5, 0xcd, 0x3b, 0x23, + 0xd2, 0x97, 0x72, 0xe6, 0x84, 0xed, 0xa8, 0x35, 0x70, 0x57, 0xe3, 0xa9, + 0xe2, 0x8d, 0xdd, 0x7f, 0x95, 0x01, 0x86, 0xec, 0x60, 0xd3, 0x8e, 0x4f, + 0x50, 0x68, 0x7d, 0xc1, 0x76, 0x1a, 0xc9, 0x95, 0xc8, 0xa8, 0x88, 0x2b, + 0x56, 0x10, 0x1e, 0x41, 0xe2, 0x9a, 0xc9, 0xd7, 0x14, 0x0c, 0x87, 0x34, + 0x71, 0x41, 0x52, 0x0d, 0x27, 0x6a, 0x62, 0x14, 0x81, 0x8a, 0x4a, 0x28, + 0xc5, 0x31, 0x08, 0x71, 0x49, 0x8a, 0x75, 0x04, 0x50, 0x03, 0x31, 0x46, + 0x29, 0xd8, 0xa0, 0x50, 0x03, 0x70, 0x68, 0xc5, 0x3e, 0x8a, 0x62, 0x1b, + 0x4b, 0x9a, 0x5c, 0x52, 0x74, 0xa0, 0x04, 0xa5, 0xa4, 0xcf, 0xa5, 0x1d, + 0xa8, 0x01, 0x7a, 0xd2, 0x64, 0x0a, 0x37, 0x7a, 0x52, 0x50, 0x30, 0xcf, + 0xad, 0x28, 0xa2, 0x8c, 0xd2, 0x01, 0xd4, 0x67, 0x14, 0x9c, 0x1a, 0x4d, + 0xaa, 0x69, 0x88, 0x71, 0xa4, 0x18, 0x1c, 0xd1, 0x81, 0xd0, 0x1a, 0x4c, + 0x1a, 0x06, 0x2e, 0x68, 0xa3, 0xf0, 0xa2, 0x90, 0x0b, 0x8a, 0x31, 0x49, + 0x83, 0x49, 0x92, 0x28, 0xb8, 0x0b, 0xb7, 0xda, 0x93, 0x14, 0x02, 0x69, + 0xc4, 0x13, 0xda, 0x8b, 0x85, 0x86, 0xe0, 0x52, 0xe0, 0x52, 0x91, 0xeb, + 0x40, 0xc7, 0xa7, 0xe9, 0x40, 0x0d, 0xc0, 0xa3, 0x15, 0x26, 0x01, 0xa4, + 0xc0, 0xa0, 0x06, 0x63, 0xda, 0x8a, 0x76, 0x28, 0xa0, 0x06, 0xd2, 0xd1, + 0x8a, 0x29, 0x0c, 0x28, 0x1c, 0xd1, 0x9a, 0x28, 0x01, 0x71, 0x49, 0x46, + 0x28, 0xa0, 0x05, 0xcd, 0x1b, 0xa9, 0x29, 0x71, 0x40, 0x06, 0x69, 0x7a, + 0xd1, 0x8a, 0x5a, 0x00, 0x4c, 0x51, 0x8a, 0x5a, 0x4e, 0x68, 0x00, 0xc5, + 0x26, 0x68, 0x26, 0x9a, 0x4d, 0x20, 0x17, 0x22, 0x9c, 0x39, 0xa8, 0xc9, + 0xa5, 0x19, 0x34, 0xc0, 0x98, 0x26, 0x4d, 0x49, 0x8c, 0x0c, 0x0a, 0x6a, + 0x65, 0x57, 0x26, 0x82, 0xc2, 0x81, 0x0d, 0x3c, 0x71, 0x9a, 0x0a, 0x8c, + 0x67, 0x22, 0x91, 0xb2, 0x79, 0xcd, 0x47, 0xb5, 0x89, 0xa1, 0xbb, 0x00, + 0xa7, 0x1e, 0xb4, 0x60, 0x7a, 0xe6, 0x93, 0x6d, 0x18, 0xc5, 0x02, 0x0a, + 0x08, 0x3e, 0xf4, 0xbc, 0x76, 0xa5, 0xe9, 0x4c, 0x43, 0x70, 0x71, 0x4e, + 0xc9, 0x14, 0x84, 0x93, 0xd0, 0xd3, 0x49, 0x3d, 0x33, 0x9a, 0x57, 0x01, + 0xfc, 0x9c, 0xd2, 0x1e, 0x9f, 0xfd, 0x6a, 0x4d, 0xd4, 0x16, 0x24, 0x62, + 0x9d, 0xc5, 0x61, 0x46, 0x31, 0x4b, 0xee, 0x0d, 0x47, 0x96, 0xc6, 0x31, + 0x8a, 0x51, 0xba, 0xa8, 0x45, 0x98, 0xae, 0xe5, 0x8b, 0xee, 0xb9, 0xc7, + 0xa1, 0xab, 0xa6, 0xf9, 0x26, 0x80, 0x8e, 0x8f, 0xe8, 0x6b, 0x2b, 0xa7, + 0x06, 0x93, 0x27, 0xb0, 0xa5, 0x60, 0x1b, 0x23, 0x32, 0x79, 0x84, 0x76, + 0x20, 0xd4, 0x8b, 0x39, 0xdc, 0xd9, 0xe7, 0x03, 0x22, 0xa3, 0x63, 0xb9, + 0x70, 0x7a, 0x7a, 0x53, 0x70, 0x37, 0x31, 0xc6, 0x01, 0x5c, 0x62, 0x86, + 0x84, 0x6e, 0xda, 0x30, 0x92, 0xc9, 0x32, 0xa1, 0xb3, 0xea, 0x2a, 0xc0, + 0xb6, 0x07, 0xee, 0x33, 0x46, 0x7d, 0x33, 0xc5, 0x51, 0xd3, 0xa4, 0x06, + 0xd1, 0x11, 0x8e, 0x18, 0x56, 0x8a, 0xbb, 0x60, 0x12, 0x7a, 0x56, 0x6d, + 0x77, 0x34, 0x4f, 0xb0, 0xd3, 0x1d, 0xca, 0x76, 0x59, 0x07, 0xb7, 0x06, + 0xa3, 0x33, 0x05, 0x3f, 0xbc, 0x56, 0x4f, 0xa8, 0xab, 0x48, 0xe6, 0x9d, + 0xbf, 0x70, 0xc3, 0x0a, 0x87, 0x04, 0xcd, 0x15, 0x46, 0x8a, 0xca, 0xea, + 0xc3, 0xe5, 0x60, 0x7e, 0x94, 0xbc, 0xd4, 0x8d, 0x6b, 0x6f, 0x27, 0x25, + 0x00, 0x3e, 0xa3, 0x8a, 0x61, 0xb2, 0x20, 0xfe, 0xee, 0x76, 0x5f, 0x63, + 0xcd, 0x47, 0xb3, 0xec, 0x5a, 0xaa, 0xba, 0x8b, 0x49, 0x9a, 0x61, 0x86, + 0xed, 0x3a, 0x04, 0x90, 0x7b, 0x1c, 0x53, 0x0c, 0x92, 0x2f, 0xdf, 0xb7, + 0x90, 0x7b, 0x81, 0x9a, 0x97, 0x09, 0x22, 0x94, 0xe2, 0xc9, 0xe9, 0x2a, + 0x11, 0x73, 0x17, 0x76, 0xda, 0x7d, 0xc6, 0x29, 0xe2, 0x44, 0x6e, 0x8c, + 0x0f, 0xe3, 0x53, 0x66, 0x55, 0xd0, 0xec, 0xf3, 0x49, 0x9a, 0x3b, 0xd0, + 0x68, 0x00, 0xea, 0x29, 0x0d, 0x14, 0x50, 0x03, 0x49, 0xe6, 0x8a, 0x3b, + 0x52, 0x50, 0x02, 0xe6, 0x8c, 0xd2, 0x51, 0x9a, 0x00, 0x5c, 0xd0, 0x69, + 0x28, 0x27, 0x8a, 0x00, 0xac, 0x27, 0x63, 0xd2, 0x09, 0x3f, 0x2a, 0x5f, + 0x36, 0x5e, 0xd6, 0xef, 0xf8, 0xd5, 0xdd, 0xe3, 0x1d, 0x29, 0x37, 0x0a, + 0xdb, 0x91, 0x18, 0x7b, 0x46, 0x53, 0xdf, 0x70, 0x7f, 0xe5, 0x86, 0x3e, + 0xad, 0x47, 0xfa, 0x49, 0xfe, 0x14, 0x1f, 0x8d, 0x5a, 0x24, 0x1a, 0x6e, + 0xee, 0x7a, 0x53, 0xe4, 0x42, 0xe7, 0x64, 0x1e, 0x55, 0xc3, 0x75, 0x95, + 0x47, 0xd0, 0x52, 0x8b, 0x57, 0x3f, 0x7a, 0x76, 0x3f, 0x4e, 0x2a, 0x66, + 0x62, 0x47, 0x14, 0x8b, 0x9f, 0x5a, 0xa5, 0x14, 0x27, 0x36, 0x31, 0x6c, + 0xa2, 0xfe, 0x36, 0x66, 0xfa, 0xb5, 0x4e, 0x96, 0xd6, 0xe9, 0xd2, 0x35, + 0xfc, 0xa9, 0x98, 0x26, 0xa5, 0x51, 0x8a, 0x76, 0x26, 0xe3, 0xbe, 0x51, + 0xd0, 0x01, 0x4d, 0x3b, 0xbb, 0x71, 0x52, 0x01, 0x9a, 0x50, 0x00, 0xaa, + 0xb0, 0xae, 0x57, 0x3b, 0xc1, 0xe4, 0xd0, 0x09, 0x26, 0xa7, 0x2a, 0x0f, + 0x34, 0xcc, 0x00, 0x68, 0xb0, 0x87, 0x2f, 0x1d, 0x69, 0x5c, 0x82, 0x31, + 0xd2, 0x98, 0xd2, 0xa4, 0x60, 0x92, 0x6a, 0xac, 0x97, 0xd1, 0x2f, 0x52, + 0x09, 0xec, 0x05, 0x3b, 0x01, 0x64, 0x94, 0x5e, 0x86, 0xa3, 0x32, 0xa0, + 0x05, 0x8b, 0x01, 0x59, 0x53, 0x5c, 0x49, 0x29, 0x24, 0x70, 0x0f, 0x61, + 0x50, 0x65, 0x89, 0x39, 0x26, 0x80, 0x34, 0x25, 0xd4, 0x11, 0x78, 0x41, + 0xb8, 0xd5, 0x39, 0xaf, 0x24, 0x9c, 0x6d, 0xc8, 0x03, 0xd0, 0x54, 0x3d, + 0x4f, 0x4f, 0xc6, 0x9c, 0x00, 0x07, 0x91, 0x45, 0xc2, 0xc0, 0x17, 0x3d, + 0x86, 0x68, 0x29, 0x8a, 0x7e, 0x47, 0x6a, 0x6b, 0x1a, 0x57, 0x1d, 0x86, + 0xa9, 0xc7, 0x5c, 0x53, 0x83, 0x82, 0x69, 0x84, 0xd2, 0x6e, 0xfc, 0xe9, + 0x0c, 0x79, 0xfa, 0xe2, 0x93, 0xe6, 0xc5, 0x32, 0x9c, 0xa3, 0xde, 0x81, + 0x8b, 0xf3, 0x77, 0xa9, 0x55, 0x51, 0x87, 0x3c, 0x1a, 0x8b, 0x71, 0xce, + 0x33, 0x9a, 0x93, 0x18, 0xa4, 0xc1, 0x0d, 0x28, 0x31, 0xd6, 0x93, 0x6d, + 0x3b, 0xa8, 0xa3, 0xa5, 0x03, 0x00, 0xb8, 0xa3, 0xa7, 0x5c, 0xd3, 0xb7, + 0x60, 0x71, 0x4a, 0x5b, 0x1d, 0x45, 0x00, 0x33, 0x2d, 0xda, 0x94, 0x1f, + 0x5a, 0x32, 0x4f, 0x4a, 0x46, 0xeb, 0x40, 0x01, 0x6a, 0x4c, 0x92, 0x69, + 0x08, 0xa5, 0x18, 0x3d, 0x69, 0x80, 0xa3, 0xad, 0x38, 0x60, 0x13, 0xcd, + 0x30, 0x81, 0xda, 0x94, 0xf4, 0x14, 0x5c, 0x09, 0x03, 0x28, 0xfe, 0x2a, + 0x77, 0x9a, 0xa7, 0xad, 0x40, 0x3d, 0xc5, 0x2f, 0x7a, 0x48, 0x09, 0xbc, + 0xc0, 0x3d, 0x69, 0xc2, 0x40, 0xdc, 0x0e, 0x0f, 0xf3, 0xaa, 0xf9, 0xc9, + 0xe2, 0x94, 0x06, 0xa0, 0x2e, 0x4e, 0xd1, 0x86, 0x19, 0x1d, 0x6a, 0x06, + 0x4c, 0x1a, 0x99, 0x5c, 0x60, 0x06, 0xeb, 0xeb, 0x4e, 0x2a, 0x1b, 0xaf, + 0x5a, 0x68, 0x65, 0x4c, 0x52, 0xd4, 0x8c, 0x98, 0x34, 0xc2, 0x29, 0x88, + 0x6e, 0x69, 0x69, 0x31, 0x46, 0x71, 0x40, 0x0b, 0x49, 0x4b, 0x9a, 0x43, + 0xcd, 0x31, 0x05, 0x14, 0x98, 0x34, 0x94, 0x5c, 0x76, 0x02, 0xde, 0x94, + 0x9f, 0x5a, 0x5c, 0x52, 0x62, 0x90, 0x0b, 0xc5, 0x26, 0x33, 0x46, 0x29, + 0x69, 0x88, 0x4c, 0x52, 0xe2, 0x96, 0x97, 0x14, 0x00, 0xcf, 0xc2, 0x96, + 0x97, 0x14, 0x50, 0x02, 0x51, 0x9a, 0x28, 0xc5, 0x00, 0x21, 0x34, 0x66, + 0x92, 0x8c, 0x52, 0x18, 0xa0, 0x9a, 0x32, 0x68, 0xa3, 0x14, 0xc4, 0x19, + 0xa2, 0x92, 0x8a, 0x40, 0x2e, 0x69, 0xd9, 0xf7, 0xa6, 0xd1, 0x40, 0xc7, + 0xe4, 0x9a, 0x33, 0x4d, 0x04, 0xd1, 0x40, 0x0f, 0xcd, 0x26, 0x69, 0x28, + 0xc1, 0xa0, 0x05, 0x06, 0x96, 0x90, 0x2d, 0x2e, 0x3d, 0xe8, 0x00, 0xa4, + 0xa5, 0xdb, 0x4b, 0x8a, 0x00, 0x6d, 0x14, 0xec, 0x50, 0x40, 0xa0, 0x06, + 0xe2, 0x97, 0x14, 0xb8, 0xa7, 0x00, 0x06, 0x73, 0x40, 0x0d, 0xc5, 0x26, + 0x69, 0xc5, 0x86, 0x38, 0x34, 0xcc, 0xd2, 0xba, 0x1d, 0x83, 0x34, 0xa2, + 0x93, 0x34, 0xb9, 0xa6, 0x20, 0xa2, 0x8a, 0x01, 0xa0, 0x04, 0x2b, 0x9e, + 0x69, 0x84, 0x1a, 0x96, 0x8c, 0x50, 0x04, 0x60, 0x64, 0xf4, 0xa9, 0x55, + 0x76, 0x8c, 0x9a, 0x7a, 0x80, 0x06, 0x4d, 0x23, 0x1c, 0xd0, 0x21, 0x0b, + 0xfa, 0x8a, 0x4d, 0xc3, 0xd2, 0x91, 0x8d, 0x34, 0x0e, 0x2a, 0xb4, 0xb5, + 0xc9, 0xea, 0x3c, 0x73, 0xde, 0x94, 0x81, 0xeb, 0x51, 0xfe, 0x34, 0x98, + 0xf7, 0xa8, 0x28, 0x79, 0x1e, 0xf4, 0xc3, 0x9c, 0xf4, 0xa3, 0x34, 0xa1, + 0xf1, 0xd4, 0x51, 0x70, 0xb0, 0x84, 0x91, 0xd0, 0x66, 0x9a, 0x59, 0xcf, + 0x61, 0x52, 0xee, 0x14, 0x6e, 0x5a, 0x77, 0x15, 0x88, 0x58, 0x31, 0xe9, + 0xc5, 0x2e, 0x31, 0x4f, 0x66, 0x14, 0xd2, 0xd4, 0x00, 0xdc, 0x73, 0x4e, + 0x02, 0x9a, 0x4d, 0x01, 0xb1, 0x45, 0x84, 0x48, 0x01, 0x14, 0x87, 0x20, + 0xf5, 0xa6, 0x6e, 0x3e, 0xb4, 0x03, 0xba, 0xa8, 0x43, 0xdb, 0x1c, 0x60, + 0xe6, 0x9b, 0xcf, 0x63, 0x4a, 0x10, 0x91, 0xc5, 0x1b, 0x5b, 0x39, 0x27, + 0x14, 0x00, 0x99, 0x3e, 0x94, 0x9b, 0x8e, 0x71, 0x8a, 0x95, 0x94, 0x2f, + 0x3d, 0xa9, 0xbb, 0x87, 0x6a, 0x04, 0x3a, 0x29, 0x1e, 0x3c, 0x63, 0xa7, + 0xbd, 0x5e, 0x8a, 0xfb, 0x18, 0xdf, 0xd2, 0xb3, 0xf2, 0x28, 0xcf, 0x61, + 0xd2, 0x8b, 0x20, 0xbb, 0x37, 0xe1, 0xb8, 0x8e, 0x40, 0x36, 0xb0, 0x35, + 0x60, 0x1c, 0x8e, 0xd5, 0xcc, 0xab, 0x6c, 0x39, 0x5e, 0x0d, 0x5b, 0x87, + 0x50, 0x92, 0x3e, 0x18, 0xe4, 0x52, 0xb0, 0xee, 0x6e, 0x0e, 0x94, 0x9b, + 0x8e, 0x71, 0x54, 0xa3, 0xd4, 0x23, 0x6c, 0x03, 0xc1, 0xa9, 0xc4, 0x99, + 0x39, 0x04, 0x62, 0xa5, 0xa1, 0xa6, 0x59, 0x0d, 0x4f, 0x0d, 0xc5, 0x40, + 0x1b, 0x34, 0xe0, 0xc6, 0x90, 0xee, 0x3d, 0xd1, 0x58, 0x72, 0xa0, 0xfe, + 0x15, 0x5d, 0xac, 0xed, 0xdb, 0xac, 0x60, 0x7d, 0x38, 0xa9, 0xb2, 0x7d, + 0x69, 0xb9, 0x34, 0xac, 0x3b, 0x90, 0x1b, 0x08, 0xbf, 0x82, 0x49, 0x17, + 0xe8, 0xd4, 0xd3, 0x67, 0x28, 0xfb, 0xb7, 0x2d, 0xff, 0x00, 0x02, 0x5c, + 0xd5, 0x9c, 0xf1, 0x4a, 0x08, 0xdb, 0xef, 0x4a, 0xc9, 0x8f, 0x99, 0x94, + 0xbc, 0x9b, 0x91, 0xd2, 0x48, 0xdb, 0xea, 0x31, 0x4d, 0x22, 0xe8, 0x7f, + 0xcb, 0x34, 0x6f, 0xa3, 0x55, 0xce, 0x4f, 0x34, 0xa0, 0x73, 0xcd, 0x1c, + 0x88, 0x7e, 0xd1, 0x94, 0x77, 0x5c, 0x77, 0xb7, 0x27, 0xe8, 0xc2, 0x93, + 0xcd, 0x94, 0x75, 0xb6, 0x93, 0xf0, 0xad, 0x0e, 0x01, 0xa0, 0x9a, 0x5c, + 0x88, 0x7e, 0xd1, 0x99, 0xe6, 0x67, 0x1d, 0x6d, 0xe5, 0xff, 0x00, 0xbe, + 0x69, 0x3e, 0xd0, 0x7f, 0xe7, 0x8c, 0xbf, 0xf7, 0xcd, 0x5e, 0x69, 0x48, + 0xa6, 0xf9, 0xf9, 0xea, 0x28, 0xf6, 0x68, 0x3d, 0xab, 0x29, 0x1b, 0x9f, + 0xfa, 0x63, 0x2f, 0xfd, 0xf3, 0x48, 0x6e, 0x7f, 0xe9, 0x8c, 0xbf, 0xf7, + 0xcd, 0x68, 0xee, 0x05, 0x72, 0x6a, 0x32, 0xe0, 0xf6, 0xa5, 0xc8, 0x83, + 0xda, 0x31, 0xb8, 0x18, 0xf7, 0xa4, 0x35, 0x19, 0x90, 0x52, 0xef, 0x5c, + 0x75, 0xad, 0xac, 0x65, 0x71, 0xdc, 0x0a, 0x09, 0x15, 0x19, 0x95, 0x72, + 0x31, 0xc8, 0xa6, 0xb4, 0xca, 0x0f, 0x51, 0x45, 0x85, 0x72, 0x42, 0x45, + 0x28, 0x35, 0x59, 0xae, 0x90, 0x7f, 0x10, 0xa8, 0xda, 0xf5, 0x3d, 0x69, + 0xd8, 0x0b, 0xc0, 0xfa, 0xd3, 0xc3, 0x0a, 0xcc, 0x6d, 0x45, 0x17, 0xa2, + 0x92, 0x6a, 0x33, 0xa8, 0xc8, 0x7e, 0xea, 0x81, 0x45, 0x80, 0xd8, 0xf3, + 0x00, 0x1c, 0xd5, 0x69, 0xef, 0xa3, 0x88, 0x1c, 0xb7, 0xe1, 0x59, 0x4f, + 0x73, 0x34, 0x9d, 0x5f, 0xf0, 0xa8, 0x4a, 0xe7, 0xaf, 0x34, 0xc9, 0x6c, + 0xbc, 0x75, 0x6e, 0x70, 0x01, 0xfc, 0x6a, 0x37, 0xd4, 0xa5, 0x7e, 0x98, + 0x51, 0x54, 0xd6, 0x10, 0x0e, 0x6a, 0x52, 0xa3, 0x1d, 0x38, 0xa4, 0x97, + 0x70, 0x57, 0x11, 0xa4, 0x92, 0x43, 0x96, 0x62, 0x69, 0x31, 0x9e, 0x69, + 0xca, 0xbc, 0x52, 0xe3, 0x9e, 0x94, 0xee, 0x3b, 0x08, 0x09, 0xf5, 0xa4, + 0xc9, 0x34, 0xe6, 0x1d, 0xb3, 0x4d, 0xea, 0x6a, 0x4a, 0x1c, 0x28, 0xcf, + 0x3d, 0x28, 0xe3, 0xe9, 0x47, 0x14, 0x58, 0x03, 0x3c, 0x74, 0xa4, 0xce, + 0x3b, 0xd2, 0x1e, 0xb4, 0xd3, 0xeb, 0x48, 0x60, 0x7f, 0x23, 0x45, 0x03, + 0xad, 0x38, 0x0c, 0xd0, 0x31, 0xb9, 0xe6, 0x81, 0x4f, 0xc6, 0x05, 0x26, + 0x29, 0x00, 0x2f, 0xde, 0xa9, 0x48, 0xef, 0x4c, 0x5c, 0x29, 0xf5, 0xa9, + 0x37, 0x83, 0xc5, 0x17, 0x18, 0x64, 0x01, 0x4d, 0x39, 0xc6, 0x69, 0xad, + 0xc9, 0xe0, 0xf1, 0x40, 0xe3, 0xad, 0x31, 0x0f, 0x00, 0xe3, 0x34, 0x9f, + 0x5a, 0x19, 0x87, 0xf0, 0xe7, 0x1e, 0xf4, 0xd0, 0x79, 0xa0, 0x63, 0xb3, + 0x81, 0x4b, 0xef, 0x49, 0x9f, 0x6a, 0x05, 0x2b, 0x00, 0xb8, 0xf5, 0xa0, + 0x6d, 0x27, 0x91, 0x48, 0x46, 0x28, 0x14, 0x20, 0x24, 0xc2, 0x7b, 0x52, + 0x1c, 0x03, 0xc5, 0x32, 0x94, 0x1c, 0x53, 0x10, 0xe0, 0x32, 0x47, 0x14, + 0x8d, 0x90, 0x71, 0x41, 0x39, 0x14, 0xac, 0x0f, 0x06, 0x81, 0x91, 0x81, + 0xd7, 0x34, 0xf4, 0xce, 0x4d, 0x34, 0xe0, 0xd2, 0x03, 0x80, 0x72, 0x4e, + 0x7d, 0x6b, 0x4b, 0xa9, 0x2b, 0x19, 0xd9, 0xa7, 0x72, 0x5f, 0x5a, 0x76, + 0xfd, 0xaa, 0x07, 0xeb, 0x50, 0xac, 0x9e, 0xa6, 0x9e, 0x1f, 0x8e, 0x9c, + 0x7b, 0xd6, 0x76, 0x66, 0x97, 0x44, 0x99, 0xc8, 0xe7, 0x9a, 0x8d, 0x97, + 0x14, 0x21, 0x2a, 0x31, 0xdb, 0xda, 0x9c, 0x7a, 0x7b, 0x53, 0x49, 0xda, + 0xe1, 0x72, 0x23, 0x8e, 0xd4, 0x86, 0x95, 0x87, 0xa5, 0x25, 0x20, 0x12, + 0x96, 0x8c, 0x51, 0x4c, 0x04, 0xa3, 0x14, 0xbf, 0x4a, 0x4a, 0x00, 0x4c, + 0x51, 0x4b, 0x46, 0x28, 0x01, 0x28, 0xc5, 0x2e, 0x28, 0xe9, 0x40, 0x06, + 0x28, 0xc5, 0x1d, 0x68, 0xa6, 0x20, 0xa4, 0x27, 0x9a, 0x5a, 0x4c, 0x52, + 0x01, 0x33, 0xed, 0x41, 0xa2, 0x81, 0xcd, 0x03, 0x0c, 0x51, 0x8a, 0x5c, + 0x51, 0xd2, 0x80, 0x13, 0x14, 0x62, 0x94, 0xd2, 0x53, 0x00, 0xc5, 0x26, + 0x29, 0x7f, 0x0a, 0x29, 0x00, 0x62, 0x8a, 0x5a, 0x28, 0x00, 0xa3, 0x14, + 0x66, 0x8c, 0xd0, 0x02, 0x81, 0x4e, 0xcd, 0x33, 0x34, 0xe0, 0xa0, 0xf7, + 0xa0, 0x05, 0x38, 0xf5, 0xa0, 0x73, 0xd2, 0x83, 0xb5, 0x46, 0x48, 0xa4, + 0xf3, 0xd4, 0x74, 0x52, 0x68, 0x6e, 0xc0, 0x3b, 0x1e, 0xd4, 0x84, 0x13, + 0x4c, 0xf3, 0x18, 0x9c, 0xe7, 0x8a, 0x37, 0x1f, 0x5a, 0x57, 0x1d, 0x87, + 0x80, 0x01, 0xc1, 0x20, 0x52, 0xb3, 0xa0, 0xf7, 0x35, 0x16, 0x28, 0xf6, + 0xa2, 0xe0, 0x2e, 0xe2, 0x69, 0x09, 0x3d, 0xcd, 0x2e, 0x0f, 0x6a, 0x3e, + 0xb5, 0x36, 0x18, 0x82, 0x8a, 0x5f, 0xa5, 0x14, 0x80, 0x05, 0x2d, 0x00, + 0x52, 0xd3, 0x40, 0x03, 0x1d, 0x3a, 0x52, 0x11, 0x83, 0xc1, 0xa7, 0x60, + 0xf7, 0xa3, 0x15, 0x48, 0x91, 0x05, 0x3f, 0x8c, 0x50, 0x16, 0x94, 0xe0, + 0x0e, 0x69, 0x80, 0x85, 0xb3, 0xdf, 0xa5, 0x34, 0xd2, 0xe1, 0x4f, 0x4a, + 0x6f, 0x43, 0xf7, 0xa8, 0xb0, 0x84, 0x3d, 0x69, 0x72, 0x68, 0xc8, 0x50, + 0x69, 0x03, 0xe7, 0xa2, 0x9a, 0x1b, 0x10, 0xbb, 0xb1, 0xdb, 0x34, 0x60, + 0x91, 0xd2, 0x9a, 0x49, 0x34, 0xf5, 0x63, 0x82, 0x48, 0xa8, 0x6c, 0x63, + 0x76, 0x11, 0x48, 0x45, 0x48, 0x40, 0x2d, 0xf4, 0xa6, 0x18, 0xf3, 0xdc, + 0xd0, 0x80, 0x6d, 0x1c, 0x53, 0x4a, 0x30, 0x27, 0x93, 0x8a, 0x02, 0x37, + 0xa9, 0xaa, 0x42, 0x1c, 0x40, 0xf5, 0xa6, 0x11, 0x41, 0x43, 0xfd, 0xe2, + 0x28, 0x29, 0x8f, 0x5c, 0xd3, 0xb8, 0x06, 0x69, 0x76, 0x92, 0x29, 0x02, + 0x60, 0xd3, 0xb1, 0xe8, 0x68, 0xb8, 0x58, 0x6f, 0x4e, 0x82, 0x95, 0x40, + 0x1d, 0x07, 0xd6, 0x81, 0xd6, 0x94, 0x80, 0x39, 0xa2, 0xe2, 0xb0, 0xa0, + 0xf3, 0xd7, 0x14, 0xed, 0xdc, 0xf1, 0xc8, 0xf7, 0xa8, 0xc9, 0xc7, 0x38, + 0xa0, 0x1d, 0xdd, 0x05, 0x3b, 0x85, 0x89, 0x49, 0xdd, 0xd4, 0x9f, 0xa5, + 0x23, 0xfd, 0xde, 0x98, 0x3d, 0xb1, 0x4c, 0xdd, 0xdb, 0xa5, 0x3d, 0x09, + 0x6e, 0x09, 0xa6, 0x22, 0x2c, 0x93, 0xf5, 0xa5, 0xdd, 0xed, 0x4e, 0x74, + 0x0a, 0x72, 0x29, 0x99, 0x14, 0x00, 0xa5, 0xf3, 0xc6, 0x49, 0xa0, 0x7b, + 0x52, 0x7e, 0x14, 0xa0, 0x30, 0x1c, 0xd1, 0x71, 0x58, 0x5c, 0x9c, 0xd4, + 0xf1, 0x49, 0x22, 0x1f, 0xbe, 0x40, 0xa8, 0x85, 0x2e, 0xfc, 0x51, 0x70, + 0xb1, 0x7d, 0x2f, 0x98, 0x11, 0xc8, 0xfc, 0x6a, 0xec, 0x57, 0xd1, 0x30, + 0xf9, 0x8e, 0x08, 0xac, 0x12, 0xde, 0xf4, 0xaa, 0x41, 0x19, 0xe6, 0x8b, + 0x20, 0x3a, 0x41, 0x3c, 0x6e, 0x3e, 0x56, 0x06, 0x9d, 0x90, 0x7a, 0x1a, + 0xe6, 0x7c, 0xd6, 0x5e, 0x8c, 0x45, 0x48, 0x97, 0x72, 0xa7, 0x47, 0x34, + 0x58, 0x2e, 0x74, 0x24, 0x9f, 0x4c, 0xd0, 0x0f, 0xb5, 0x63, 0x2e, 0xa9, + 0x20, 0x23, 0x70, 0x06, 0xa6, 0x5d, 0x51, 0x4f, 0xde, 0x52, 0x29, 0x58, + 0x77, 0x35, 0x28, 0x26, 0xa8, 0xa6, 0xa3, 0x13, 0x11, 0xc9, 0xa9, 0xbe, + 0xd7, 0x11, 0xe3, 0x70, 0xe6, 0x8b, 0x01, 0x60, 0x9a, 0x4e, 0xd5, 0x17, + 0x9a, 0xb8, 0xe0, 0x82, 0x69, 0xbe, 0x7e, 0x47, 0x03, 0x9a, 0x56, 0x1d, + 0xc9, 0x18, 0x53, 0x76, 0x8e, 0xc6, 0x82, 0xc0, 0x0e, 0x4d, 0x33, 0x7a, + 0xf7, 0xa2, 0xc1, 0x71, 0xe5, 0x8a, 0x8e, 0x69, 0x9b, 0x81, 0xe9, 0x4d, + 0x32, 0x29, 0xa3, 0x7a, 0xe0, 0xf1, 0x4b, 0x94, 0x2e, 0x63, 0x1b, 0x89, + 0x31, 0xd6, 0x9b, 0xe6, 0xc8, 0x7f, 0x8a, 0x9b, 0x46, 0x2a, 0xb9, 0x85, + 0x61, 0xde, 0x63, 0xe3, 0x39, 0x35, 0x1b, 0x33, 0x9e, 0x58, 0x9a, 0x78, + 0xcf, 0x4a, 0x4e, 0x01, 0xc5, 0x34, 0xc5, 0x61, 0xa0, 0x73, 0x4d, 0x2a, + 0x7b, 0xd4, 0x98, 0xe7, 0x3d, 0xe8, 0x20, 0x13, 0xd6, 0x86, 0xc2, 0xc3, + 0x02, 0xd3, 0xc2, 0xf1, 0x48, 0x01, 0xa9, 0x55, 0x3d, 0x69, 0x5c, 0x2c, + 0x33, 0x14, 0x54, 0xa5, 0x78, 0xf4, 0xa8, 0xf9, 0x07, 0x14, 0x00, 0x80, + 0xfa, 0xd3, 0x87, 0x3d, 0xe9, 0x0a, 0xe4, 0xd2, 0xaa, 0x81, 0xda, 0x95, + 0xec, 0x52, 0x41, 0x93, 0xdc, 0x53, 0xd4, 0x86, 0xe0, 0x75, 0xa6, 0xe4, + 0x03, 0xc9, 0xcd, 0x1b, 0xc6, 0x47, 0xf3, 0xa5, 0x71, 0xd8, 0x56, 0x52, + 0x01, 0xcd, 0x35, 0x54, 0x83, 0xc0, 0xfc, 0x69, 0x77, 0x64, 0xe4, 0xf3, + 0x41, 0x97, 0xda, 0x98, 0x85, 0x64, 0xee, 0x7a, 0xd3, 0x4b, 0x05, 0x1d, + 0x69, 0xad, 0x23, 0x30, 0xc6, 0x38, 0xa6, 0x64, 0x63, 0xa7, 0x34, 0x0c, + 0x7f, 0x5e, 0x71, 0x46, 0x78, 0xc1, 0xa4, 0x5a, 0x75, 0x26, 0x02, 0x0d, + 0xa3, 0xa7, 0x5a, 0x70, 0x04, 0x8a, 0x6e, 0x40, 0xe9, 0x46, 0xf2, 0x3b, + 0xd2, 0x18, 0xfe, 0x3a, 0x1c, 0x8a, 0x42, 0x33, 0xdc, 0x52, 0x09, 0x07, + 0x7e, 0x69, 0x18, 0x83, 0xd3, 0x8a, 0x00, 0x4a, 0x70, 0x38, 0x53, 0x48, + 0x12, 0x94, 0x9c, 0xe1, 0x7d, 0x28, 0x01, 0x30, 0x0f, 0x39, 0xa0, 0x71, + 0xd0, 0xd3, 0xfc, 0xb1, 0x8c, 0xe6, 0x9b, 0x82, 0x3d, 0xe8, 0x00, 0xed, + 0x4a, 0x33, 0x4a, 0xbc, 0x76, 0xa7, 0x63, 0x9a, 0x34, 0x18, 0x80, 0x11, + 0xcd, 0x19, 0x24, 0xd2, 0x16, 0xe7, 0x06, 0x9d, 0xde, 0x90, 0x06, 0xe0, + 0x46, 0x28, 0x5c, 0x83, 0xc1, 0xa6, 0xe4, 0x7a, 0x52, 0xf4, 0x23, 0x06, + 0x81, 0x8f, 0xc0, 0xcf, 0x5a, 0x56, 0x00, 0x0e, 0xb4, 0xd2, 0x7b, 0xd2, + 0x1e, 0x99, 0x34, 0xd0, 0x83, 0xe8, 0x69, 0x33, 0x9e, 0x09, 0x34, 0x0e, + 0x69, 0xfb, 0x38, 0xa7, 0x61, 0x5c, 0x60, 0xe2, 0x94, 0x81, 0x8c, 0xe3, + 0x3e, 0xd4, 0xbc, 0x83, 0xd2, 0x94, 0xe3, 0xf1, 0xa3, 0x6d, 0x50, 0x5a, + 0xe2, 0x85, 0x52, 0x32, 0x29, 0xb8, 0x1b, 0xb0, 0x69, 0x99, 0xd8, 0x73, + 0xc9, 0x1f, 0xca, 0x94, 0xc8, 0x09, 0xe0, 0xd7, 0x4f, 0x32, 0x9c, 0x6e, + 0x8e, 0x74, 0x9c, 0x65, 0xa9, 0x28, 0xc0, 0xed, 0x4e, 0x1d, 0x32, 0x3f, + 0x2a, 0x81, 0x58, 0x8f, 0xbd, 0x4b, 0xe6, 0x1e, 0xdd, 0x2b, 0x95, 0xde, + 0xe7, 0x4a, 0xb0, 0xf3, 0xb4, 0xf4, 0x3f, 0x85, 0x30, 0x8a, 0x32, 0x09, + 0xe9, 0xcd, 0x48, 0x08, 0x61, 0x83, 0xd6, 0x84, 0xc6, 0x45, 0x9a, 0x4a, + 0x79, 0x5c, 0x53, 0x48, 0xa6, 0x21, 0x31, 0x46, 0x29, 0x71, 0x46, 0x0d, + 0x00, 0x26, 0x28, 0xa5, 0xa4, 0xa6, 0x01, 0x45, 0x18, 0xa3, 0x14, 0x00, + 0x94, 0x94, 0xea, 0x38, 0xa0, 0x06, 0xd2, 0x73, 0x52, 0xe0, 0x53, 0x71, + 0x40, 0x0d, 0xc5, 0x00, 0x53, 0x80, 0xa3, 0x18, 0xa0, 0x04, 0xa2, 0x96, + 0x8a, 0x00, 0x4a, 0x00, 0xa5, 0xa2, 0x80, 0x10, 0xe6, 0x93, 0x14, 0xec, + 0x52, 0x50, 0x02, 0x62, 0x8c, 0x52, 0xd1, 0x40, 0x05, 0x26, 0x29, 0x68, + 0xa0, 0x04, 0xef, 0x46, 0x70, 0xc3, 0xd2, 0x96, 0x83, 0xcd, 0x08, 0x18, + 0xf0, 0x72, 0x3d, 0xaa, 0x16, 0x5c, 0x1e, 0x01, 0xc5, 0x01, 0x8a, 0xb6, + 0x3b, 0x54, 0xe3, 0x04, 0x53, 0x68, 0x49, 0x95, 0xf0, 0x29, 0x7b, 0x75, + 0xa7, 0x3a, 0x15, 0x3c, 0x74, 0xa4, 0x02, 0xa4, 0xa1, 0x39, 0xa5, 0xc9, + 0xa5, 0xc1, 0xa5, 0x09, 0xeb, 0x48, 0x06, 0xe6, 0x97, 0x39, 0xa7, 0x00, + 0x05, 0x07, 0x39, 0xe9, 0x8a, 0x60, 0x33, 0xe9, 0x45, 0x49, 0xb0, 0x9a, + 0x36, 0xa0, 0x3c, 0xfe, 0x54, 0xb9, 0x42, 0xe2, 0x28, 0x03, 0x3c, 0x1a, + 0x93, 0x70, 0x03, 0x02, 0x98, 0x49, 0x61, 0xc0, 0xc0, 0x14, 0xa1, 0x6a, + 0x96, 0x82, 0x00, 0x09, 0x34, 0xf0, 0x00, 0xfa, 0xd1, 0xc0, 0x1c, 0xf1, + 0x40, 0x07, 0x6f, 0x1d, 0x3d, 0xe9, 0x5c, 0x03, 0x38, 0xe9, 0x4d, 0x34, + 0xa7, 0x81, 0xc5, 0x46, 0x4e, 0x29, 0x89, 0xb0, 0x27, 0x1f, 0x8d, 0x34, + 0x1d, 0xd8, 0x38, 0xa5, 0x2e, 0x4f, 0x18, 0xa3, 0x91, 0xc0, 0xeb, 0x4d, + 0xbb, 0x2b, 0x09, 0x20, 0xe3, 0xf0, 0xa4, 0x69, 0x08, 0x1c, 0x0c, 0x53, + 0xf1, 0x81, 0x4c, 0x38, 0xe4, 0xe2, 0xb3, 0x6c, 0xa4, 0x37, 0x2c, 0x4f, + 0x27, 0xaf, 0xa5, 0x38, 0x12, 0x07, 0x34, 0x9d, 0x31, 0x8c, 0x62, 0x9a, + 0xd2, 0x90, 0x7a, 0x64, 0x54, 0xda, 0xe0, 0xd1, 0x28, 0x70, 0x0f, 0x20, + 0xd1, 0xbb, 0xe6, 0xa8, 0x04, 0xb9, 0xe3, 0xbd, 0x4e, 0xa7, 0x8e, 0x45, + 0x52, 0x15, 0x84, 0xcf, 0x07, 0x9a, 0x6e, 0x79, 0xa5, 0xcf, 0x14, 0x80, + 0xd5, 0x00, 0xa4, 0x53, 0x69, 0x69, 0x0e, 0x29, 0x88, 0x4f, 0xc6, 0x97, + 0x18, 0xe4, 0x52, 0x71, 0x4e, 0x18, 0x23, 0x14, 0x80, 0x69, 0x3e, 0xf4, + 0xa0, 0x02, 0x3a, 0xd0, 0x16, 0x8c, 0x73, 0x9a, 0x10, 0x09, 0xdf, 0xda, + 0x8e, 0x9d, 0x28, 0xe7, 0xb0, 0x26, 0x80, 0xa4, 0xf5, 0x38, 0xa0, 0x05, + 0x3c, 0xf5, 0xa4, 0xc8, 0x1d, 0x33, 0x9a, 0x71, 0xdb, 0x8e, 0xbc, 0xd2, + 0x12, 0x31, 0x8c, 0x53, 0xb8, 0x58, 0x02, 0x92, 0x3a, 0x7e, 0x74, 0xf3, + 0x18, 0xed, 0x4c, 0x0e, 0x56, 0x97, 0x79, 0xc5, 0x3b, 0x8a, 0xc0, 0x72, + 0xa3, 0xfc, 0x28, 0xdc, 0x48, 0xa1, 0x5b, 0xd6, 0x82, 0x54, 0x9a, 0x00, + 0x32, 0x69, 0x87, 0x3d, 0xe9, 0xe7, 0x0b, 0xd4, 0xd4, 0x6d, 0x20, 0x5e, + 0x68, 0x0b, 0x0e, 0xc6, 0x7a, 0x52, 0x90, 0x47, 0xb8, 0xa6, 0x89, 0x32, + 0xbb, 0x87, 0x4a, 0x5d, 0xdc, 0x50, 0x2b, 0x0d, 0xc9, 0xdd, 0xc8, 0xa7, + 0x91, 0x8f, 0x4a, 0x69, 0x39, 0x1c, 0xd2, 0x70, 0x7b, 0xd1, 0x70, 0xb0, + 0xec, 0x81, 0x40, 0x23, 0x3c, 0xd2, 0x01, 0xef, 0x4b, 0xb7, 0x9a, 0x02, + 0xc3, 0x95, 0x80, 0xcf, 0x1c, 0xd1, 0xc3, 0x75, 0xa3, 0x22, 0x90, 0x1c, + 0x9c, 0x52, 0xb8, 0x0a, 0x92, 0x34, 0x64, 0x10, 0xc4, 0x62, 0x9c, 0x2e, + 0x24, 0xdd, 0x9d, 0xc4, 0x54, 0x67, 0x8e, 0x29, 0x3b, 0xd3, 0xb8, 0x13, + 0x9b, 0x87, 0xfe, 0xf9, 0xa0, 0x5c, 0xb8, 0xef, 0x50, 0x75, 0xa0, 0xf3, + 0x4d, 0x30, 0xb1, 0x39, 0xba, 0x90, 0x77, 0xa4, 0xfb, 0x54, 0x87, 0xbd, + 0x43, 0xd7, 0xb5, 0x18, 0xc7, 0x4a, 0x2e, 0x21, 0x57, 0x93, 0x8a, 0x70, + 0xc0, 0x3d, 0x79, 0xa5, 0xda, 0x3b, 0x52, 0x60, 0x66, 0xa3, 0x42, 0x85, + 0x3c, 0x73, 0x49, 0xd4, 0x67, 0xd6, 0x9a, 0x7a, 0xf2, 0x71, 0x4e, 0x0b, + 0xc6, 0x03, 0x02, 0x28, 0x01, 0x9c, 0xd3, 0xb6, 0xf7, 0xa1, 0x81, 0x1d, + 0xa8, 0x19, 0xcf, 0x5a, 0x2e, 0x03, 0xd3, 0x03, 0xad, 0x4b, 0x9a, 0xae, + 0xcb, 0x9e, 0x49, 0x39, 0xa6, 0x82, 0xc3, 0x8c, 0x9a, 0x36, 0x02, 0xc3, + 0x31, 0xed, 0x4c, 0xea, 0x33, 0xd2, 0x85, 0x24, 0xf5, 0xa4, 0xdd, 0x83, + 0x90, 0x3f, 0x3a, 0x77, 0x01, 0x73, 0x81, 0xef, 0x4d, 0xdc, 0x4f, 0x73, + 0x40, 0x07, 0xa0, 0xeb, 0x47, 0x6e, 0x6a, 0x1a, 0xb1, 0x43, 0x4f, 0xad, + 0x38, 0x75, 0xeb, 0x41, 0xf4, 0xc5, 0x3c, 0x27, 0xcb, 0x9e, 0x29, 0x5c, + 0x04, 0x53, 0xf3, 0x7b, 0x52, 0x96, 0x0a, 0x7a, 0x0a, 0x67, 0x34, 0x63, + 0xd7, 0xf3, 0xa2, 0xe3, 0x06, 0xc1, 0x1c, 0x75, 0xa6, 0x01, 0xcf, 0x34, + 0xe0, 0x45, 0x1c, 0x1e, 0x94, 0xd3, 0x15, 0x85, 0x51, 0xf8, 0x52, 0x91, + 0x9e, 0xf4, 0x87, 0x34, 0x67, 0x8a, 0xa0, 0x1a, 0x69, 0x33, 0x9a, 0x52, + 0x73, 0x49, 0xd2, 0x92, 0x00, 0xa7, 0xa4, 0x65, 0xb9, 0x3d, 0x29, 0x14, + 0x66, 0x9e, 0x5b, 0x00, 0x01, 0xda, 0x8b, 0x80, 0x92, 0x1e, 0x78, 0x34, + 0xcc, 0x9e, 0xf4, 0xa7, 0x93, 0x46, 0x30, 0x29, 0x0c, 0x50, 0xc7, 0xf0, + 0xa3, 0x75, 0x20, 0xa5, 0xc5, 0x30, 0x1e, 0x18, 0x11, 0x81, 0x49, 0x9e, + 0x39, 0x22, 0x99, 0x8a, 0x5c, 0x0a, 0x40, 0x3b, 0xe5, 0x3d, 0xe9, 0xc3, + 0x2b, 0xef, 0x4c, 0x51, 0xed, 0x4e, 0x3c, 0xd2, 0x01, 0x70, 0x29, 0x38, + 0xa6, 0x9e, 0x0f, 0x4a, 0x33, 0xeb, 0x4c, 0x07, 0x67, 0x19, 0x14, 0x09, + 0x0a, 0xd2, 0x6e, 0x18, 0xe6, 0x93, 0x8a, 0x00, 0x53, 0x29, 0xce, 0x7b, + 0xd3, 0x83, 0x93, 0xfc, 0x55, 0x1f, 0x14, 0xb9, 0xe6, 0x98, 0x12, 0x6e, + 0xf7, 0xa4, 0xc8, 0xfc, 0x69, 0xbd, 0x85, 0x04, 0x52, 0xea, 0x02, 0x90, + 0x4d, 0x37, 0x0c, 0x0f, 0x41, 0x8a, 0x77, 0x6a, 0x32, 0x4d, 0x34, 0x03, + 0x0e, 0x08, 0xc6, 0x4d, 0x28, 0xe3, 0xad, 0x04, 0x60, 0xe7, 0xad, 0x39, + 0x46, 0xe5, 0xeb, 0x9c, 0xd6, 0xf1, 0x8a, 0x9a, 0x31, 0x94, 0xb9, 0x18, + 0x75, 0xa3, 0x9a, 0x4c, 0x6d, 0x38, 0xa7, 0x71, 0x8a, 0xc6, 0x51, 0x69, + 0xd8, 0xd5, 0x49, 0x35, 0x72, 0x45, 0x6c, 0xf5, 0xa5, 0x28, 0x08, 0xc8, + 0x3f, 0x95, 0x45, 0x4f, 0x53, 0x83, 0x9e, 0x95, 0x29, 0x8e, 0xc2, 0x15, + 0xc5, 0x03, 0x35, 0x26, 0x43, 0x7b, 0x1f, 0x6a, 0x42, 0x08, 0x39, 0xc7, + 0x1e, 0xa2, 0xa8, 0x06, 0x62, 0x97, 0x6d, 0x3a, 0x96, 0x80, 0x23, 0xdb, + 0x8e, 0xd4, 0x98, 0xa9, 0xa9, 0xa7, 0xe9, 0x4c, 0x08, 0xb1, 0x46, 0x2a, + 0x5c, 0x52, 0x15, 0xa0, 0x08, 0xe9, 0x40, 0xcd, 0x3b, 0x6d, 0x18, 0xa0, + 0x06, 0xe2, 0x8d, 0xb4, 0xfa, 0x28, 0x01, 0xbb, 0x68, 0xdb, 0x52, 0x71, + 0x48, 0x71, 0x40, 0x11, 0xe2, 0x8a, 0x75, 0x14, 0x00, 0xdc, 0x52, 0x1a, + 0x79, 0x14, 0x98, 0xa0, 0x06, 0x62, 0x8c, 0x53, 0xb1, 0x4b, 0x8a, 0x00, + 0x6e, 0x31, 0x49, 0x8a, 0x76, 0x28, 0xa0, 0x06, 0xd2, 0x62, 0x9d, 0x8a, + 0x31, 0x40, 0x0c, 0x65, 0xa2, 0x36, 0xc3, 0x1a, 0x79, 0x19, 0x14, 0xcc, + 0x63, 0xa5, 0x31, 0x12, 0x32, 0x6e, 0x03, 0x92, 0x33, 0x4d, 0x31, 0x91, + 0xc8, 0xfc, 0xa9, 0xea, 0x78, 0xeb, 0x40, 0x3e, 0xf4, 0x86, 0x47, 0x87, + 0x27, 0xa5, 0x3c, 0x21, 0xea, 0x4d, 0x3c, 0xb2, 0x81, 0xd7, 0x34, 0xcd, + 0xe4, 0xf4, 0x14, 0xac, 0x80, 0x5e, 0x16, 0x9a, 0x58, 0x1e, 0x9c, 0xd2, + 0xed, 0xcd, 0x38, 0x28, 0x1d, 0x69, 0x80, 0xdf, 0x99, 0x86, 0x29, 0x42, + 0x81, 0xf5, 0xa5, 0xc6, 0x78, 0x1d, 0x3d, 0xa8, 0x3f, 0x20, 0xe4, 0xe2, + 0x8b, 0x80, 0xbc, 0x0f, 0xad, 0x34, 0x91, 0x9c, 0x77, 0xf4, 0xa6, 0xf2, + 0xdd, 0x3e, 0x51, 0x4b, 0x1a, 0x6c, 0x6c, 0x92, 0x4d, 0x45, 0xee, 0x03, + 0x82, 0xe7, 0x93, 0x4a, 0x4f, 0x6a, 0x19, 0xc6, 0x7a, 0x81, 0xf5, 0xa8, + 0x59, 0xf2, 0x4e, 0x0f, 0x4a, 0xb4, 0x84, 0xdd, 0x89, 0x7a, 0x8a, 0x68, + 0x2b, 0x92, 0x33, 0x9a, 0x60, 0x62, 0x78, 0xcf, 0x34, 0xaa, 0xa0, 0x51, + 0xe4, 0x2d, 0xc5, 0x0a, 0x31, 0xc0, 0xfc, 0x69, 0x42, 0xa8, 0x39, 0xcf, + 0x34, 0xa4, 0x9a, 0x40, 0x69, 0x0c, 0x76, 0x33, 0xde, 0x93, 0x66, 0x7d, + 0x29, 0x37, 0x60, 0x51, 0xb8, 0x52, 0x01, 0x0c, 0x62, 0x9b, 0xe5, 0x2f, + 0x70, 0x4d, 0x3f, 0x7f, 0x14, 0x9b, 0xe8, 0x18, 0xc0, 0x8a, 0xbd, 0x16, + 0x9c, 0x3e, 0x9c, 0x52, 0xef, 0xa0, 0x3d, 0x02, 0x1a, 0x06, 0x47, 0x4a, + 0x40, 0xa7, 0xd2, 0xa5, 0x0d, 0x9e, 0x31, 0x48, 0xcd, 0xb5, 0x79, 0xa0, + 0x08, 0xca, 0x90, 0x7a, 0x53, 0x4f, 0x34, 0xa4, 0x9e, 0xa4, 0xf3, 0x4d, + 0xe4, 0xd1, 0x70, 0x13, 0x02, 0x94, 0x36, 0xd1, 0x81, 0x8a, 0x4f, 0xc6, + 0x81, 0xd6, 0x8b, 0x80, 0xa5, 0xc9, 0x3e, 0x94, 0x85, 0x8d, 0x04, 0x52, + 0x03, 0x9e, 0x28, 0x01, 0x43, 0x10, 0x7a, 0xd2, 0x96, 0x0d, 0xed, 0x4d, + 0x38, 0x07, 0xd6, 0x8c, 0xf1, 0x8a, 0x62, 0x1e, 0x3e, 0x6a, 0x42, 0x7b, + 0x66, 0x91, 0x38, 0xa7, 0x1c, 0x76, 0x04, 0xd0, 0x03, 0x70, 0x68, 0xe7, + 0x14, 0xf4, 0x47, 0x07, 0x3d, 0xbd, 0x29, 0x7c, 0xb1, 0x9e, 0x68, 0x01, + 0x98, 0x3d, 0x71, 0x4b, 0x9e, 0xe0, 0x53, 0xf0, 0x00, 0xc5, 0x46, 0x53, + 0xde, 0x8b, 0x85, 0x86, 0x9d, 0xde, 0x95, 0x1b, 0x2e, 0xe1, 0x83, 0x56, + 0x14, 0x62, 0x97, 0x6a, 0x93, 0x45, 0xc2, 0xc5, 0x64, 0x1b, 0x06, 0x3b, + 0x53, 0xf9, 0x35, 0x23, 0x44, 0x3a, 0x8a, 0x6e, 0xc2, 0x3b, 0x53, 0xb8, + 0x86, 0xe3, 0x26, 0x8c, 0x0a, 0x76, 0x31, 0xcd, 0x34, 0x9a, 0x00, 0x72, + 0xe3, 0x3c, 0xd3, 0xc8, 0x04, 0x71, 0x51, 0x6e, 0x34, 0x0f, 0xad, 0x16, + 0x01, 0xde, 0x5e, 0x7b, 0xd1, 0x82, 0x3a, 0x1a, 0x6e, 0xef, 0x73, 0x4e, + 0xdd, 0xe9, 0x40, 0x0a, 0x14, 0x9e, 0xb4, 0x84, 0x0c, 0xd0, 0x1c, 0xe2, + 0x90, 0x92, 0x4d, 0x00, 0x3f, 0xef, 0x60, 0x71, 0xc5, 0x2f, 0x20, 0x7a, + 0xd3, 0x7a, 0x0a, 0x03, 0xd2, 0x01, 0x72, 0x31, 0xd3, 0xad, 0x21, 0x14, + 0x85, 0xa9, 0xc3, 0x07, 0xad, 0x17, 0x0b, 0x0c, 0x2e, 0x45, 0x1b, 0xb8, + 0xcd, 0x30, 0xf1, 0xdf, 0x9a, 0x5c, 0x66, 0x95, 0xc0, 0x4c, 0xe4, 0xfa, + 0xd4, 0x91, 0x1c, 0x12, 0x1b, 0x8a, 0x66, 0x31, 0x4a, 0x68, 0xb8, 0x12, + 0x99, 0x14, 0x92, 0xb4, 0xc8, 0xb2, 0xcc, 0x4f, 0x6a, 0x42, 0x39, 0xf4, + 0xa4, 0x1b, 0x93, 0x91, 0xd3, 0xd2, 0x80, 0x64, 0x92, 0x9c, 0x0e, 0x0d, + 0x35, 0x09, 0x3c, 0x77, 0xa7, 0x1c, 0x38, 0x07, 0x22, 0x97, 0xcb, 0xc7, + 0x34, 0x0c, 0x70, 0x53, 0x8e, 0x28, 0x11, 0x1f, 0x5a, 0x78, 0x00, 0x0a, + 0x37, 0x80, 0x30, 0x28, 0x01, 0xbb, 0x40, 0x3f, 0x7a, 0x8c, 0x0c, 0xe7, + 0x22, 0x98, 0xc8, 0x58, 0xe7, 0xfa, 0xd2, 0x08, 0xb9, 0xeb, 0x40, 0x0e, + 0xc8, 0x00, 0xd2, 0x9d, 0xc0, 0x0c, 0x01, 0x49, 0xb7, 0x1d, 0xa9, 0xc7, + 0x27, 0x19, 0xe9, 0x52, 0xd0, 0xd0, 0xcd, 0xc4, 0xf0, 0x69, 0x0d, 0x18, + 0xe4, 0x81, 0x40, 0xa2, 0xc0, 0x21, 0x1c, 0xd0, 0x06, 0x29, 0xc0, 0x52, + 0x96, 0x18, 0xe9, 0x4c, 0x06, 0x82, 0x68, 0xea, 0x39, 0xa5, 0x38, 0xa6, + 0xe6, 0x81, 0x8b, 0xb2, 0x80, 0xa6, 0x93, 0x26, 0x94, 0x35, 0x17, 0x10, + 0xa1, 0x78, 0xa4, 0xda, 0x71, 0xef, 0x4a, 0x71, 0xf4, 0x34, 0x67, 0xdb, + 0x34, 0xae, 0x30, 0xcf, 0xb5, 0x06, 0x94, 0x90, 0xdd, 0x78, 0x34, 0x87, + 0x03, 0xbd, 0x17, 0x01, 0x29, 0x72, 0x7a, 0x1a, 0x30, 0x0f, 0x7a, 0x31, + 0xdb, 0x14, 0xee, 0x00, 0x58, 0x1e, 0x94, 0xb9, 0xe3, 0xde, 0x93, 0x3e, + 0xc2, 0x85, 0xeb, 0xcf, 0x4a, 0x00, 0x53, 0x95, 0x1f, 0x5a, 0x69, 0x6a, + 0x56, 0x3b, 0x89, 0xf4, 0x14, 0x98, 0xf5, 0xa1, 0x77, 0x00, 0xe4, 0xd2, + 0x81, 0xcd, 0x34, 0x0e, 0x69, 0xc3, 0xad, 0x3b, 0x08, 0x76, 0x29, 0x36, + 0xd3, 0x81, 0xed, 0x4b, 0xc1, 0xa0, 0x63, 0x42, 0x8a, 0x3a, 0x53, 0xb6, + 0x8c, 0x66, 0x9b, 0x8a, 0x40, 0x19, 0x34, 0x52, 0x9a, 0x50, 0xa7, 0x03, + 0x38, 0x14, 0x98, 0x09, 0xd2, 0x93, 0xb5, 0x3b, 0x07, 0xd3, 0x34, 0x9f, + 0x85, 0x17, 0x18, 0x84, 0xe2, 0x90, 0x1d, 0xa7, 0x3d, 0xbd, 0x29, 0x71, + 0x40, 0x00, 0x0e, 0x6a, 0xa3, 0x37, 0x17, 0x74, 0x4c, 0xa2, 0xa4, 0xac, + 0xc3, 0xcd, 0xdf, 0xc0, 0x07, 0xf1, 0x14, 0xc0, 0x79, 0xe4, 0x8a, 0x7f, + 0x7e, 0xb5, 0x1b, 0x60, 0x9f, 0x4f, 0x7a, 0xd1, 0xd4, 0x73, 0x76, 0x64, + 0x28, 0x28, 0x2d, 0x09, 0x87, 0x4c, 0xd2, 0xe7, 0x8a, 0x88, 0x10, 0x78, + 0x03, 0x27, 0xd6, 0x9e, 0x3a, 0x60, 0xd4, 0x4e, 0x2a, 0x3b, 0x15, 0x19, + 0x5c, 0x70, 0x3d, 0xc1, 0xa7, 0xac, 0x9d, 0xb3, 0xcd, 0x46, 0x09, 0xe9, + 0x4a, 0x07, 0x3c, 0xd6, 0x65, 0x92, 0x72, 0x7a, 0x9c, 0x7d, 0x29, 0x7a, + 0x7b, 0xd3, 0x40, 0x2a, 0x78, 0x6e, 0x3d, 0x29, 0xdb, 0x73, 0xd3, 0x8a, + 0xa4, 0xc2, 0xc2, 0xe4, 0x11, 0x49, 0xc1, 0xa0, 0x86, 0x51, 0xcf, 0x3f, + 0x4a, 0x6e, 0xe5, 0x3c, 0x67, 0x06, 0x9d, 0xc4, 0x3f, 0x14, 0x11, 0x4c, + 0x1b, 0x87, 0x46, 0x07, 0xeb, 0x4b, 0xb8, 0x8e, 0xa3, 0xf2, 0xa7, 0x70, + 0x17, 0x14, 0x52, 0x19, 0x05, 0x1b, 0xc1, 0xa2, 0xe3, 0xb0, 0x52, 0x52, + 0xe7, 0x34, 0x71, 0x45, 0xc4, 0x25, 0x14, 0xb8, 0xf7, 0xa6, 0x9c, 0x66, + 0x9d, 0xc0, 0x28, 0xcf, 0x34, 0x71, 0x49, 0x8f, 0x4a, 0x00, 0x5a, 0x28, + 0xc5, 0x18, 0xa0, 0x02, 0x8e, 0xd4, 0xb8, 0xa4, 0x34, 0x00, 0x52, 0x62, + 0x96, 0x97, 0x14, 0x00, 0xda, 0x29, 0xd8, 0xe2, 0x93, 0x14, 0x00, 0x98, + 0xa3, 0x14, 0xec, 0x64, 0x74, 0xa4, 0x23, 0x1d, 0x68, 0x01, 0x31, 0x46, + 0xda, 0x51, 0xcf, 0x4a, 0x09, 0x3d, 0xa8, 0x00, 0xd9, 0xde, 0x8e, 0x05, + 0x21, 0x6c, 0x0c, 0x74, 0xa6, 0x89, 0x50, 0x67, 0x27, 0x9a, 0x6f, 0x41, + 0x5c, 0x7f, 0x5a, 0x37, 0x00, 0x39, 0x35, 0x19, 0x76, 0x76, 0xc0, 0xe0, + 0x51, 0xb3, 0x15, 0x17, 0x63, 0xd0, 0x77, 0x9a, 0x4f, 0x08, 0x31, 0xef, + 0x4d, 0x39, 0xea, 0x4e, 0x4d, 0x19, 0xe3, 0x14, 0x84, 0xd2, 0x00, 0xc9, + 0xa4, 0x2e, 0x47, 0x43, 0x93, 0x4d, 0xdd, 0x9e, 0x94, 0xdc, 0xe7, 0x1d, + 0x3e, 0xb5, 0xa4, 0x60, 0xf4, 0xba, 0x25, 0xc9, 0x74, 0x1c, 0xa7, 0x2c, + 0x4b, 0x50, 0x40, 0x27, 0x03, 0xf4, 0xa6, 0xae, 0xe3, 0x9f, 0x4f, 0x5a, + 0x78, 0x18, 0xad, 0x27, 0x51, 0x25, 0x64, 0x65, 0x18, 0x36, 0xee, 0xc7, + 0x21, 0xdb, 0xef, 0x4e, 0xdc, 0x3d, 0x29, 0x94, 0xb5, 0xcf, 0xb9, 0xb8, + 0xec, 0x8e, 0xd4, 0x67, 0x8e, 0x94, 0xda, 0x29, 0x00, 0xa5, 0x73, 0x8a, + 0x36, 0xf3, 0x47, 0x1e, 0xb4, 0xb8, 0xf4, 0x34, 0x5d, 0x80, 0x98, 0x02, + 0x90, 0x9e, 0x7a, 0x50, 0x73, 0xd2, 0x93, 0x23, 0xbd, 0x2b, 0x80, 0x84, + 0xf3, 0xc5, 0x2e, 0x38, 0xa3, 0x70, 0xed, 0x4a, 0x18, 0x0e, 0xd4, 0x5c, + 0x03, 0x04, 0x73, 0x9a, 0x69, 0x39, 0x39, 0x27, 0x8e, 0xd4, 0xfe, 0xb4, + 0x84, 0x03, 0xde, 0x9d, 0xc0, 0x8c, 0xe4, 0x9a, 0x31, 0x4e, 0xc0, 0x1c, + 0x67, 0xf4, 0xa0, 0xf4, 0xeb, 0x4c, 0x06, 0xe2, 0x9b, 0x8a, 0x7f, 0xf2, + 0xa0, 0x90, 0x3b, 0x50, 0x21, 0xbf, 0x5a, 0x02, 0xe7, 0x9a, 0x5e, 0xfc, + 0x8a, 0x5c, 0x8c, 0x50, 0x03, 0x36, 0x9f, 0x4a, 0x5e, 0xdd, 0x29, 0xc0, + 0xd2, 0xe2, 0x9d, 0xc2, 0xc3, 0x40, 0x03, 0x93, 0x52, 0x06, 0x51, 0xd2, + 0xa3, 0x23, 0x9a, 0x69, 0x53, 0xd6, 0x8b, 0x01, 0x29, 0x92, 0xa3, 0xde, + 0x49, 0x3c, 0xd3, 0x45, 0x2d, 0x20, 0x17, 0x71, 0x23, 0x93, 0x49, 0xbc, + 0x81, 0xd6, 0x90, 0xd0, 0x07, 0xb5, 0x00, 0x2f, 0x98, 0x68, 0x04, 0xe7, + 0xe6, 0x06, 0x80, 0xb8, 0x6c, 0xd3, 0x8e, 0x48, 0xa0, 0x09, 0x14, 0x7a, + 0x1a, 0x52, 0x42, 0xf5, 0x35, 0x0a, 0xbe, 0xd1, 0x8c, 0xd4, 0x6c, 0xc5, + 0x8d, 0x34, 0x82, 0xe3, 0x9d, 0xcb, 0x1e, 0x3a, 0x53, 0x7a, 0xf5, 0xa4, + 0xa0, 0x93, 0x54, 0x48, 0xe0, 0x29, 0x73, 0xc5, 0x37, 0x34, 0x13, 0xe8, + 0x28, 0x00, 0x3c, 0xd1, 0x9f, 0x4a, 0x40, 0x0d, 0x28, 0x5f, 0x5a, 0x00, + 0x4e, 0x7f, 0x1a, 0x90, 0x29, 0x23, 0x27, 0x8a, 0x11, 0x49, 0x39, 0xa9, + 0x48, 0xc8, 0xc0, 0xa4, 0xd8, 0xd2, 0x20, 0x62, 0x7b, 0x53, 0x46, 0x6a, + 0x76, 0x4c, 0xd4, 0x44, 0x60, 0xf3, 0x45, 0xc5, 0x61, 0x33, 0x4a, 0x0e, + 0x0d, 0x29, 0x39, 0x3c, 0x52, 0x51, 0x70, 0xb0, 0xed, 0xbc, 0xd2, 0x8c, + 0x0a, 0x6e, 0xf3, 0x9a, 0x71, 0x97, 0xb6, 0x2a, 0x46, 0x04, 0x1e, 0xa0, + 0x52, 0x60, 0x96, 0xc1, 0xe2, 0x94, 0x39, 0xef, 0x48, 0x4e, 0x68, 0x13, + 0x06, 0x18, 0x3d, 0x69, 0x32, 0x14, 0xd1, 0xdb, 0x1d, 0xe8, 0x8c, 0x0e, + 0xb8, 0xe7, 0xde, 0x80, 0x1c, 0x11, 0x9b, 0x04, 0x0e, 0x47, 0x35, 0x21, + 0x90, 0xf7, 0x5c, 0x50, 0x1b, 0x14, 0x38, 0xe0, 0xe7, 0x34, 0xc6, 0x20, + 0x72, 0x3a, 0x7e, 0x54, 0x87, 0x39, 0xc8, 0xe4, 0x54, 0x0a, 0xf9, 0x73, + 0x83, 0x8a, 0x98, 0x82, 0xbc, 0xf6, 0x3d, 0xa9, 0xb4, 0xd0, 0xae, 0x2e, + 0x49, 0xa5, 0x52, 0x69, 0x37, 0x67, 0xa5, 0x3b, 0x73, 0x01, 0xc2, 0x8a, + 0x8b, 0x94, 0x87, 0x67, 0x14, 0x16, 0xe4, 0x6d, 0xa6, 0x8d, 0xbf, 0xc6, + 0x79, 0xa4, 0x2c, 0x28, 0xb8, 0xc7, 0x8c, 0x31, 0xe7, 0x02, 0x98, 0x54, + 0xaf, 0xd2, 0x9a, 0x58, 0x63, 0xd7, 0xe9, 0x4d, 0xf3, 0x5f, 0xa0, 0x1f, + 0x9d, 0x0a, 0xe2, 0xd0, 0x7e, 0x68, 0x38, 0xfc, 0x29, 0xbb, 0x8f, 0x71, + 0x40, 0x3e, 0xc6, 0x80, 0x1d, 0xd7, 0xa5, 0x04, 0x71, 0xc9, 0x14, 0x84, + 0x8e, 0xd4, 0x84, 0x63, 0x9a, 0x00, 0x5c, 0xa8, 0xf7, 0x34, 0x85, 0xfd, + 0xa8, 0xe8, 0x29, 0xf6, 0x76, 0x92, 0x5f, 0xde, 0xc7, 0x6d, 0x18, 0x24, + 0xb1, 0x19, 0xaa, 0x84, 0x39, 0xa5, 0x64, 0x17, 0x3a, 0x2f, 0x09, 0xe8, + 0x51, 0xea, 0x2b, 0x2d, 0xcd, 0xe4, 0x7b, 0xe2, 0xe8, 0xa0, 0xd6, 0xff, + 0x00, 0xfc, 0x22, 0x5a, 0x6b, 0xc8, 0xc3, 0xc9, 0xda, 0xbd, 0x8a, 0xb5, + 0x6c, 0x59, 0x59, 0x7d, 0x86, 0xc6, 0x2b, 0x68, 0x42, 0xfc, 0xa3, 0x9c, + 0xf7, 0xa9, 0x63, 0x85, 0x96, 0x40, 0xcc, 0x8a, 0x3d, 0xc1, 0xae, 0xeb, + 0x25, 0xa2, 0x22, 0xc9, 0xee, 0x72, 0xb2, 0xf8, 0x3e, 0xcf, 0xed, 0x1b, + 0x11, 0x6e, 0x02, 0xff, 0x00, 0x7b, 0x77, 0x14, 0x93, 0x78, 0x2e, 0xdd, + 0x08, 0xdb, 0x34, 0xc7, 0x3e, 0x83, 0x35, 0xd8, 0x49, 0x95, 0x52, 0x42, + 0xee, 0x3e, 0x82, 0xab, 0xa7, 0x98, 0x92, 0x92, 0x44, 0x84, 0x1e, 0x83, + 0x8c, 0x0a, 0x5c, 0xab, 0xb0, 0xac, 0x79, 0xd6, 0xbd, 0xa3, 0x26, 0x8d, + 0x34, 0x68, 0xb3, 0x34, 0x9b, 0xc6, 0x79, 0x1d, 0x2b, 0x29, 0x48, 0x2d, + 0x8c, 0xf1, 0x5d, 0x0f, 0x8d, 0x64, 0xdf, 0xaa, 0xaa, 0xff, 0x00, 0x75, + 0x45, 0x73, 0x60, 0xe0, 0x7d, 0x6b, 0x9e, 0xbc, 0x52, 0x92, 0x48, 0xa8, + 0x16, 0xc2, 0x47, 0xd4, 0xe3, 0xf3, 0xa3, 0x6a, 0x00, 0x46, 0x05, 0x54, + 0x07, 0x3e, 0xb4, 0xb9, 0x24, 0x90, 0x2b, 0x12, 0xf4, 0x26, 0x31, 0xa7, + 0xf7, 0xb1, 0x49, 0xe5, 0xa7, 0x77, 0xe2, 0xa2, 0xce, 0x0d, 0x2e, 0x73, + 0x4c, 0x07, 0x95, 0x8c, 0x74, 0x24, 0xd3, 0x81, 0x4e, 0xb8, 0xa8, 0x72, + 0x0f, 0x4e, 0xb4, 0xa4, 0x8e, 0x84, 0x50, 0x04, 0xb9, 0x8f, 0xa8, 0x1d, + 0x29, 0x0c, 0x8b, 0xfd, 0xca, 0x67, 0x41, 0xc0, 0xeb, 0xef, 0x48, 0x7a, + 0x0e, 0x39, 0xa0, 0x07, 0xef, 0x1e, 0x94, 0x06, 0xcf, 0x18, 0xa6, 0xf3, + 0x8e, 0x68, 0xe8, 0x28, 0x00, 0x2c, 0x16, 0x82, 0xf9, 0xa4, 0xf9, 0x78, + 0x25, 0x69, 0x4b, 0x0e, 0xc2, 0x81, 0x13, 0x46, 0xca, 0xc3, 0x6f, 0x4a, + 0x8d, 0xd5, 0x94, 0xe2, 0x85, 0xe3, 0x93, 0x53, 0x2e, 0x25, 0x8c, 0x64, + 0xfc, 0xd4, 0x9a, 0x1a, 0x21, 0x18, 0xc5, 0x1c, 0x1a, 0x69, 0x25, 0x09, + 0x05, 0x48, 0xa3, 0x79, 0x22, 0xa4, 0x05, 0x38, 0xcf, 0x14, 0x9b, 0x69, + 0x55, 0xbb, 0x10, 0x29, 0x5b, 0x1d, 0x4d, 0x00, 0x03, 0x8e, 0xd4, 0xfe, + 0x3a, 0xd4, 0x59, 0x07, 0xa5, 0x00, 0x13, 0x45, 0xc0, 0x56, 0x75, 0x0d, + 0x8c, 0xd4, 0x8b, 0xc9, 0xa8, 0xd6, 0x3d, 0xbc, 0xe3, 0x9a, 0x91, 0x46, + 0xe3, 0xe9, 0x4d, 0xea, 0x08, 0x7b, 0x65, 0x47, 0x38, 0xc5, 0x2a, 0xb8, + 0xc5, 0x31, 0xb2, 0x38, 0x3c, 0x8a, 0x69, 0x1e, 0x80, 0xd0, 0xd0, 0xee, + 0x4f, 0xbc, 0x77, 0xa0, 0xec, 0x6e, 0xc3, 0x35, 0x18, 0x0c, 0x7d, 0x29, + 0xd8, 0x38, 0xe4, 0x53, 0x57, 0x07, 0x60, 0xf2, 0xc1, 0xe9, 0xc5, 0x37, + 0xcb, 0x65, 0xe8, 0x69, 0x48, 0xcf, 0x41, 0x8a, 0x72, 0xae, 0x39, 0x62, + 0x7e, 0x82, 0x92, 0xb8, 0xb4, 0x19, 0x96, 0xee, 0x33, 0x46, 0xe4, 0xe8, + 0x45, 0x49, 0xf2, 0x67, 0xee, 0xfe, 0xb4, 0xd6, 0xc1, 0xef, 0x81, 0x57, + 0xa8, 0xb4, 0x13, 0xe5, 0xed, 0x48, 0x40, 0x5e, 0x73, 0xc5, 0x1b, 0x01, + 0xef, 0xfa, 0x53, 0x7c, 0xb0, 0xdc, 0x1c, 0xfe, 0x74, 0xae, 0xfb, 0x0c, + 0x03, 0x06, 0xe9, 0x4f, 0xf2, 0xd8, 0x76, 0xa6, 0x05, 0x00, 0x81, 0x8c, + 0x7b, 0xd3, 0xcb, 0x7f, 0xb7, 0x42, 0x7d, 0xc0, 0x42, 0x0f, 0xa5, 0x26, + 0x1b, 0xd0, 0xd3, 0xb7, 0x0f, 0xef, 0x51, 0xbc, 0x7a, 0xd3, 0xba, 0x0d, + 0x46, 0xf3, 0xe8, 0x68, 0xe7, 0xbe, 0x69, 0xdb, 0x81, 0x18, 0xcd, 0x05, + 0x87, 0x72, 0x28, 0xba, 0x0d, 0x44, 0x02, 0x97, 0x19, 0xed, 0x49, 0xbc, + 0x77, 0x6a, 0x0b, 0xa8, 0xfe, 0x2a, 0x2e, 0x83, 0x51, 0x70, 0x28, 0x3c, + 0xd4, 0x66, 0x51, 0xe8, 0x4d, 0x27, 0x9d, 0xfe, 0xc5, 0x17, 0x02, 0x5e, + 0x31, 0x46, 0x47, 0x6a, 0x8f, 0x7b, 0x1e, 0xd8, 0xa3, 0x2d, 0x9f, 0xbd, + 0x4a, 0xe0, 0x38, 0x97, 0xdd, 0x91, 0xc0, 0xa3, 0x3e, 0xac, 0x29, 0x8d, + 0xd3, 0x92, 0x69, 0xa3, 0x14, 0x6a, 0x03, 0xcb, 0x2f, 0xb9, 0x34, 0x79, + 0x8f, 0x8e, 0x00, 0x14, 0xda, 0x4c, 0xf3, 0x4a, 0xc1, 0x71, 0x08, 0x05, + 0xb2, 0xe4, 0x9c, 0xd4, 0x9b, 0x40, 0x3c, 0x63, 0x15, 0x19, 0x23, 0x3d, + 0x69, 0xa6, 0x4d, 0xa7, 0xe5, 0x35, 0xbd, 0x39, 0xdb, 0x46, 0x63, 0x52, + 0x17, 0xd4, 0x98, 0x81, 0xd7, 0xa5, 0x26, 0xef, 0x5e, 0x47, 0xad, 0x31, + 0x64, 0xdd, 0xc6, 0x29, 0xcd, 0x8e, 0x0f, 0x4c, 0x56, 0xd2, 0x82, 0x9a, + 0xd0, 0xc9, 0x4d, 0xc5, 0xea, 0x0d, 0xf2, 0xd3, 0x19, 0x58, 0xf7, 0x14, + 0x6e, 0x56, 0x3c, 0x9c, 0xd3, 0x32, 0x33, 0x80, 0x4e, 0x2b, 0x35, 0x08, + 0xc5, 0x5e, 0x45, 0xb9, 0xca, 0x4e, 0xd1, 0x1a, 0x08, 0xe4, 0x63, 0x35, + 0x20, 0x50, 0x79, 0xa7, 0x2a, 0x81, 0xd3, 0xbd, 0x2f, 0x7a, 0xc2, 0x52, + 0xd7, 0x43, 0x64, 0xb4, 0xd4, 0x4e, 0x9c, 0x0a, 0x3e, 0xb4, 0xb8, 0xa5, + 0x2b, 0x52, 0x50, 0xde, 0xf4, 0x77, 0xa5, 0x3c, 0x0c, 0x52, 0x73, 0x48, + 0x05, 0xa5, 0xa6, 0x7b, 0x50, 0xa3, 0x07, 0xad, 0x00, 0x3f, 0x14, 0x03, + 0x80, 0x69, 0x05, 0x23, 0x1e, 0x38, 0xa4, 0xc0, 0x4c, 0x9e, 0x69, 0xb4, + 0xee, 0xdc, 0xd2, 0x50, 0x20, 0xc5, 0x14, 0x72, 0x7b, 0x50, 0x05, 0x03, + 0x14, 0x13, 0x41, 0x34, 0x1a, 0x4a, 0x00, 0x01, 0xcf, 0x7a, 0x38, 0xa5, + 0xfc, 0x28, 0xc7, 0x18, 0xe6, 0x80, 0x13, 0xf0, 0xa4, 0x26, 0x97, 0x9f, + 0xca, 0x90, 0xf5, 0xa6, 0x02, 0x51, 0xd6, 0x94, 0x9c, 0x8e, 0x82, 0x8e, + 0x9d, 0xa8, 0x00, 0xa5, 0x06, 0x9b, 0xde, 0x80, 0x0d, 0x00, 0x3c, 0x8e, + 0x38, 0xa6, 0x95, 0x34, 0x67, 0x14, 0xbb, 0xa9, 0xdc, 0x2c, 0x33, 0x6f, + 0xad, 0x07, 0x38, 0xa5, 0x3d, 0x69, 0x09, 0xc9, 0xe9, 0x40, 0x84, 0xe9, + 0x4e, 0x1e, 0xd4, 0xa3, 0x69, 0x1c, 0xfe, 0x94, 0x9d, 0xa8, 0x01, 0xc4, + 0xf1, 0xcd, 0x30, 0x92, 0x45, 0x1c, 0x52, 0xe2, 0x9a, 0x01, 0x85, 0x69, + 0xa4, 0x54, 0xd8, 0x04, 0x53, 0x48, 0x14, 0xc5, 0x62, 0x3a, 0x4c, 0x82, + 0x7d, 0xea, 0x4c, 0x52, 0x6d, 0xa0, 0x06, 0xe3, 0x9a, 0x07, 0x1c, 0x9a, + 0x36, 0xf1, 0xeb, 0x4b, 0x8a, 0x04, 0x02, 0x9c, 0x3d, 0xe8, 0x0a, 0x69, + 0xc0, 0x71, 0x8c, 0xd2, 0x6c, 0x63, 0x94, 0xe3, 0x85, 0xc9, 0xa7, 0x6e, + 0x3e, 0x98, 0xa3, 0x20, 0x0a, 0x69, 0x90, 0x74, 0xa4, 0x31, 0xad, 0xb8, + 0xd2, 0x6d, 0x34, 0x6f, 0x39, 0xeb, 0xc5, 0x2e, 0xec, 0x8c, 0xd0, 0x21, + 0x9b, 0x48, 0xa5, 0x0a, 0x73, 0x9c, 0x53, 0x8b, 0x00, 0x3a, 0xd1, 0xbc, + 0xd0, 0x03, 0x71, 0x41, 0x04, 0x52, 0x09, 0x01, 0x1c, 0x0a, 0x42, 0xe6, + 0x81, 0x0e, 0x1c, 0xd2, 0x13, 0xcf, 0x06, 0x98, 0x18, 0x9f, 0xad, 0x18, + 0xe7, 0x34, 0x00, 0xf0, 0x70, 0x7f, 0xc2, 0x9c, 0x77, 0x03, 0xc0, 0xe0, + 0xd4, 0x7d, 0xa9, 0x1a, 0xe0, 0x22, 0x90, 0x68, 0x48, 0x2e, 0x38, 0xc8, + 0x50, 0x13, 0x81, 0x55, 0xa5, 0xbb, 0x66, 0x5c, 0x0e, 0x2a, 0x29, 0x67, + 0x67, 0xe3, 0xb5, 0x43, 0x5b, 0x46, 0x36, 0x13, 0x77, 0x1e, 0x1d, 0x81, + 0xeb, 0x57, 0x62, 0xbb, 0xc2, 0xe0, 0x9c, 0xfb, 0x56, 0x7d, 0x2d, 0x56, + 0xfb, 0x88, 0xd7, 0x57, 0x56, 0xe5, 0x48, 0x04, 0xf6, 0x34, 0xe2, 0x49, + 0xc7, 0x35, 0x94, 0xb2, 0x90, 0xd9, 0x27, 0x35, 0x66, 0x3b, 0x90, 0x4e, + 0x1b, 0xf0, 0x35, 0x94, 0xa9, 0xf5, 0x43, 0x52, 0xb6, 0xe5, 0xbe, 0xe7, + 0x22, 0x9a, 0x49, 0xe4, 0x01, 0x9a, 0x40, 0xe0, 0xf1, 0x9a, 0x76, 0x07, + 0x4e, 0xf5, 0x9d, 0xac, 0x56, 0xfb, 0x0d, 0x41, 0x8a, 0x78, 0xc1, 0xa6, + 0xf2, 0x0f, 0x5a, 0x09, 0x60, 0xb4, 0x01, 0x26, 0xce, 0x39, 0xa6, 0xec, + 0x60, 0x78, 0x3c, 0x7b, 0xd2, 0xa9, 0x25, 0x46, 0x69, 0x70, 0x7d, 0x69, + 0x5c, 0xa1, 0x38, 0x23, 0x05, 0x4e, 0x7d, 0xa9, 0x31, 0x81, 0xc1, 0x3f, + 0x8d, 0x2e, 0x31, 0xd2, 0x97, 0x38, 0x18, 0x34, 0xd3, 0x11, 0x1b, 0x96, + 0xe1, 0x40, 0xc9, 0x3d, 0x05, 0x77, 0x5e, 0x13, 0xd2, 0x56, 0xc2, 0xdb, + 0xed, 0xb3, 0xa1, 0x32, 0x38, 0xf9, 0x78, 0xcd, 0x70, 0xe0, 0x98, 0xe4, + 0x0e, 0xa7, 0x91, 0xea, 0x2b, 0x72, 0xdf, 0xc5, 0x9a, 0xa5, 0xba, 0x2a, + 0x86, 0x46, 0x51, 0xc6, 0x08, 0xae, 0x8a, 0x53, 0x84, 0x57, 0x9b, 0x0b, + 0x5f, 0x73, 0xd2, 0x62, 0x95, 0x64, 0x5d, 0xc3, 0x23, 0xeb, 0x52, 0x6e, + 0x5f, 0x51, 0x5c, 0x1c, 0x3e, 0x3a, 0xb9, 0x50, 0x04, 0xd6, 0x88, 0xdf, + 0xee, 0xd5, 0xd8, 0xfc, 0x71, 0x6a, 0xfc, 0x49, 0x66, 0xeb, 0xf4, 0x35, + 0xb2, 0x9c, 0x7b, 0x87, 0x2b, 0x3a, 0xd2, 0xeb, 0xea, 0x28, 0xca, 0xfa, + 0xd7, 0x2e, 0x3c, 0x61, 0xa5, 0xb7, 0x55, 0x95, 0x7f, 0x0a, 0x90, 0x78, + 0xab, 0x4a, 0x23, 0x89, 0x1c, 0x1f, 0x71, 0x4f, 0x99, 0x77, 0x0e, 0x46, + 0x72, 0x5e, 0x28, 0x97, 0xce, 0xd7, 0x65, 0xc7, 0x40, 0x71, 0x59, 0x15, + 0x6b, 0x50, 0x9b, 0xed, 0x37, 0xd2, 0xca, 0x0e, 0x43, 0x12, 0x6a, 0xb7, + 0x18, 0xe6, 0xb9, 0xeb, 0xb4, 0xe7, 0xa1, 0x31, 0xd1, 0x0b, 0x8c, 0xfa, + 0xd2, 0x67, 0xb7, 0x34, 0x63, 0x9e, 0xa6, 0x9c, 0x06, 0x4f, 0x15, 0x89, + 0x42, 0x60, 0xf7, 0xa7, 0x2a, 0x1f, 0x5f, 0xce, 0x9c, 0x38, 0x6f, 0x9b, + 0xb7, 0x4a, 0x46, 0xcb, 0x1e, 0x07, 0x14, 0x5c, 0x04, 0xc2, 0x8e, 0x68, + 0xc8, 0xcf, 0x1c, 0xd2, 0xfa, 0x73, 0x4d, 0xc7, 0x3d, 0x68, 0x18, 0xb9, + 0xcf, 0x6a, 0x5c, 0x9c, 0xf6, 0xa6, 0x93, 0x81, 0xcf, 0x4a, 0x06, 0x3a, + 0xd0, 0x03, 0xf1, 0x91, 0xcf, 0x26, 0x91, 0xb8, 0x6c, 0x72, 0x05, 0x26, + 0x71, 0x8c, 0x8a, 0x78, 0x61, 0xde, 0x90, 0x11, 0x91, 0xdc, 0xd2, 0x8e, + 0x40, 0xc5, 0x3c, 0xe0, 0xf1, 0x8a, 0x8d, 0xbe, 0x51, 0xb8, 0x03, 0x9a, + 0x13, 0x01, 0x72, 0x49, 0xa0, 0xb1, 0x56, 0x04, 0x11, 0x46, 0x37, 0x26, + 0xe1, 0x4d, 0x23, 0x72, 0xf3, 0x54, 0x49, 0x63, 0x72, 0xc8, 0x30, 0xfc, + 0x7d, 0x2a, 0x17, 0x8d, 0xa1, 0x6e, 0x79, 0x07, 0xa1, 0xa6, 0x00, 0x41, + 0xa9, 0x92, 0x5c, 0x0d, 0xaf, 0xca, 0xd2, 0xb0, 0xee, 0x30, 0x0c, 0x9e, + 0x94, 0xac, 0xad, 0xd8, 0x54, 0xbb, 0x41, 0x1b, 0xa3, 0x20, 0xe3, 0xb5, + 0x20, 0x98, 0x63, 0x2d, 0x52, 0x90, 0x0c, 0xd8, 0x40, 0xe6, 0x9e, 0xbd, + 0x3a, 0x54, 0x13, 0x5d, 0x20, 0x1c, 0x13, 0x52, 0xc1, 0x32, 0xc8, 0xa3, + 0x1c, 0x9a, 0xbe, 0x5d, 0x2e, 0x2b, 0x93, 0x02, 0x47, 0xa5, 0x23, 0x0c, + 0xf4, 0xc6, 0x69, 0xad, 0xb9, 0x58, 0x0e, 0xb9, 0xa9, 0x02, 0x93, 0xe8, + 0x29, 0x79, 0x0f, 0x72, 0x30, 0xdb, 0x4f, 0x34, 0x06, 0x04, 0x92, 0x1a, + 0xa6, 0x00, 0x01, 0x8c, 0x03, 0x49, 0xb4, 0x0e, 0xc2, 0x8b, 0x30, 0x10, + 0x26, 0x4e, 0x73, 0x4a, 0xcc, 0x23, 0x5c, 0x96, 0xfc, 0x2a, 0x36, 0x90, + 0x37, 0xca, 0xa3, 0xf1, 0xa6, 0xe3, 0xbf, 0x5f, 0xad, 0x3b, 0x00, 0xf0, + 0xcc, 0xdf, 0x36, 0x3e, 0x82, 0x97, 0x70, 0xfc, 0x69, 0x9e, 0x67, 0x63, + 0xc5, 0x35, 0x9f, 0x8e, 0x29, 0x88, 0x79, 0x6c, 0x53, 0x43, 0x13, 0x4c, + 0xc9, 0x3c, 0x9e, 0x94, 0xe5, 0xc7, 0x6e, 0x94, 0x0c, 0x70, 0xc9, 0xef, + 0x4e, 0x09, 0x9e, 0xb4, 0x2f, 0x4a, 0x6c, 0x8e, 0x40, 0xe3, 0x8f, 0x4a, + 0x00, 0x46, 0x65, 0xdf, 0x80, 0x38, 0x14, 0x6e, 0x1d, 0x85, 0x34, 0x70, + 0xbc, 0xd2, 0x73, 0x52, 0x31, 0xdf, 0x5a, 0x30, 0x3d, 0x29, 0x08, 0x22, + 0x93, 0x9a, 0x2e, 0x1a, 0x0b, 0x85, 0xa3, 0x6a, 0xd2, 0x60, 0xf7, 0xa0, + 0x8f, 0x6a, 0x00, 0x5f, 0x97, 0xb0, 0x14, 0x0c, 0x76, 0x14, 0xd0, 0xb4, + 0xa7, 0x02, 0x9a, 0xbb, 0x0d, 0x00, 0x9c, 0x1c, 0x51, 0x9a, 0x61, 0x24, + 0xf4, 0x14, 0x9b, 0xb9, 0xe6, 0x9f, 0x24, 0x85, 0xcc, 0x87, 0xe4, 0xe6, + 0x97, 0xaf, 0x7e, 0x69, 0x99, 0xe7, 0xbd, 0x01, 0x49, 0xf5, 0xab, 0x54, + 0xdb, 0x25, 0xcd, 0x22, 0x42, 0x77, 0x0c, 0x77, 0xa8, 0xf3, 0x8e, 0x0d, + 0x3f, 0x69, 0xc7, 0x07, 0x9a, 0x88, 0xc8, 0x43, 0x9d, 0xe3, 0xf1, 0xaa, + 0xf6, 0x2e, 0x3b, 0x91, 0xed, 0x53, 0xd8, 0x52, 0xfc, 0x70, 0x46, 0x69, + 0x03, 0x31, 0xee, 0x29, 0xc0, 0xee, 0xec, 0x31, 0x51, 0xba, 0x0e, 0xc4, + 0x55, 0x7b, 0x34, 0xb5, 0xdc, 0x5e, 0xd2, 0xee, 0xc1, 0xce, 0x47, 0xad, + 0x2b, 0x46, 0xc1, 0x49, 0xa4, 0x51, 0x82, 0x30, 0x31, 0x4f, 0xda, 0x79, + 0xdc, 0x7f, 0x5a, 0x87, 0x2b, 0x6c, 0x5a, 0x5d, 0xc4, 0x04, 0x22, 0x81, + 0x91, 0x9a, 0x69, 0xcb, 0x80, 0x69, 0xe1, 0x00, 0xe4, 0x01, 0x4e, 0x0b, + 0xc7, 0x5a, 0x1d, 0x46, 0xf4, 0x42, 0x54, 0xed, 0xab, 0x23, 0x08, 0x07, + 0x24, 0x64, 0xd3, 0xc7, 0x4a, 0x76, 0x29, 0x86, 0xb3, 0x6e, 0xe6, 0x82, + 0xe4, 0x8a, 0x5c, 0xd3, 0x32, 0x7d, 0x29, 0xd9, 0xa4, 0x03, 0xbb, 0x75, + 0xa3, 0x71, 0xa4, 0x14, 0x74, 0xa5, 0x60, 0x17, 0x3e, 0xa3, 0x06, 0x98, + 0x73, 0xeb, 0x4e, 0xdf, 0x90, 0x71, 0x48, 0x58, 0x1e, 0xa3, 0x8a, 0x2c, + 0x17, 0x14, 0x74, 0xe2, 0x8e, 0x94, 0x8a, 0xc0, 0x1e, 0x29, 0x0b, 0x0f, + 0x5a, 0x2c, 0x2b, 0x8e, 0x34, 0xcc, 0x1c, 0xfa, 0xd2, 0x96, 0x04, 0xfd, + 0xea, 0x3a, 0x52, 0xb0, 0xdb, 0xd0, 0x52, 0x71, 0xda, 0x93, 0x70, 0xa0, + 0xb6, 0xef, 0x6a, 0x31, 0x40, 0xae, 0x2e, 0x73, 0xde, 0x94, 0x70, 0x73, + 0x8c, 0xd3, 0x0a, 0x9a, 0x5a, 0x45, 0x5c, 0x56, 0x39, 0x27, 0x03, 0x02, + 0x93, 0xb6, 0x45, 0x00, 0x52, 0xe2, 0x90, 0x06, 0x73, 0x46, 0x47, 0xa9, + 0xa3, 0x14, 0x60, 0x66, 0x98, 0x07, 0x6a, 0x6d, 0x38, 0xe2, 0x92, 0x80, + 0x10, 0x52, 0x60, 0xd3, 0x8d, 0x19, 0x3d, 0x33, 0x4c, 0x06, 0xd2, 0xd2, + 0x52, 0xe6, 0x80, 0x02, 0xb9, 0xc7, 0x6a, 0x0f, 0x5c, 0x75, 0xa4, 0xce, + 0x29, 0x33, 0x40, 0x0b, 0xcf, 0xa5, 0x18, 0xcd, 0x19, 0xe9, 0x48, 0x4d, + 0x00, 0x04, 0x52, 0x74, 0xa5, 0xce, 0x0e, 0x4d, 0x21, 0x1c, 0xf1, 0x40, + 0x87, 0x64, 0x1a, 0x3e, 0x5f, 0x53, 0x4c, 0xc9, 0x07, 0xa5, 0x2f, 0xe1, + 0x4c, 0x07, 0x63, 0x8e, 0xb4, 0xc3, 0xbb, 0x3d, 0x38, 0xa4, 0x18, 0xf7, + 0xa7, 0x67, 0xd2, 0x80, 0x0c, 0x9c, 0x52, 0x67, 0x8e, 0x46, 0x69, 0xd9, + 0xc8, 0xe6, 0x93, 0x1c, 0xd1, 0x70, 0x13, 0x3c, 0xe2, 0x9c, 0x00, 0x14, + 0x98, 0x34, 0xc3, 0xbf, 0x38, 0xed, 0x40, 0x89, 0x73, 0x9a, 0x08, 0xe3, + 0x3d, 0xe9, 0xb8, 0x0a, 0x3a, 0xd3, 0x77, 0x1c, 0xd0, 0x03, 0xb7, 0x52, + 0x67, 0x34, 0x70, 0x7b, 0x52, 0x13, 0x83, 0xe9, 0x40, 0x0e, 0xcf, 0x14, + 0x98, 0x3e, 0xb4, 0x66, 0x8d, 0xd4, 0x00, 0x51, 0xd2, 0x8a, 0x5c, 0x8e, + 0xf4, 0x08, 0x8f, 0x18, 0x14, 0x03, 0x91, 0xe9, 0x4e, 0xc7, 0x7a, 0x63, + 0x4a, 0xab, 0x92, 0x4d, 0x3d, 0xc0, 0x7a, 0xfa, 0xe2, 0x9a, 0xc4, 0x2f, + 0x53, 0x55, 0xde, 0xe7, 0xfb, 0xb5, 0x03, 0x48, 0xcd, 0xd4, 0xd5, 0x28, + 0x3e, 0xa2, 0xb9, 0x3c, 0x93, 0xf1, 0x81, 0x55, 0xcb, 0x16, 0x3c, 0xd2, + 0x52, 0x56, 0x89, 0x24, 0x20, 0xa2, 0x96, 0x92, 0x98, 0x05, 0x2d, 0x14, + 0x50, 0x01, 0x45, 0x25, 0x14, 0x01, 0x32, 0xcc, 0x40, 0xc1, 0xfc, 0xea, + 0x78, 0xae, 0xbb, 0x1c, 0x1a, 0xa7, 0x49, 0x49, 0xa4, 0xf7, 0x15, 0xad, + 0xb1, 0xaa, 0xb3, 0x21, 0xeb, 0xc5, 0x3c, 0xf3, 0x82, 0x0e, 0x6b, 0x28, + 0x48, 0xc3, 0xbf, 0x1e, 0x94, 0xf5, 0x9d, 0x97, 0xa1, 0xc5, 0x43, 0xa7, + 0xd8, 0xa5, 0x27, 0xd4, 0xd3, 0xdc, 0xc4, 0x8f, 0x96, 0x90, 0xc8, 0x47, + 0xf0, 0xd5, 0x25, 0xbb, 0x6e, 0xfc, 0xd4, 0xa9, 0x72, 0x8d, 0xd6, 0xa3, + 0x91, 0xa1, 0xf3, 0x16, 0x7c, 0xc1, 0x8e, 0x46, 0x29, 0x41, 0xcf, 0x71, + 0x51, 0x07, 0x46, 0x1f, 0x78, 0x52, 0xa9, 0x0b, 0xd4, 0xd4, 0xd8, 0xab, + 0x93, 0x6d, 0x07, 0xfc, 0x69, 0x70, 0x9f, 0x53, 0x51, 0xee, 0x27, 0xa1, + 0xe2, 0x80, 0x7b, 0x74, 0x14, 0x00, 0xf3, 0xd7, 0x8a, 0x42, 0x71, 0x4b, + 0x9e, 0x38, 0xa0, 0x02, 0xe7, 0xa5, 0x00, 0x0a, 0x72, 0x69, 0x5b, 0xe4, + 0xe3, 0xbd, 0x12, 0x61, 0x06, 0x07, 0x5a, 0x8b, 0x71, 0xcf, 0x3c, 0xd0, + 0x90, 0x36, 0x3b, 0xde, 0x94, 0x62, 0x90, 0x63, 0x19, 0xc5, 0x19, 0xfa, + 0x53, 0x10, 0xa7, 0xad, 0x03, 0x20, 0xf1, 0xd6, 0x9b, 0x9e, 0x69, 0x73, + 0xe9, 0x40, 0x0a, 0x80, 0xb3, 0x1d, 0xc7, 0x04, 0x76, 0xa7, 0x9e, 0x3b, + 0xd3, 0x09, 0xf5, 0xe3, 0x1d, 0x08, 0xa1, 0x4e, 0x7d, 0xe9, 0x58, 0x6a, + 0xc8, 0x53, 0xc9, 0xe3, 0x9a, 0x52, 0xb4, 0x9c, 0x0f, 0x5a, 0x09, 0x07, + 0xa7, 0x4a, 0x00, 0x09, 0xc7, 0x6a, 0x4e, 0x48, 0xe9, 0x91, 0x48, 0x19, + 0x41, 0xc1, 0xa3, 0xcc, 0x51, 0xd0, 0xf1, 0xf5, 0xa6, 0x93, 0x7d, 0x05, + 0x74, 0x3f, 0x03, 0x3c, 0xf1, 0x41, 0x60, 0xbd, 0x41, 0xcd, 0x26, 0xf5, + 0xf5, 0xa4, 0x32, 0x2e, 0x3a, 0xd2, 0x18, 0xfe, 0x30, 0x0d, 0x35, 0x98, + 0x85, 0xa6, 0x34, 0xa5, 0xb8, 0x51, 0xc7, 0xbd, 0x30, 0xba, 0xaf, 0x24, + 0xe4, 0xd3, 0xe5, 0x62, 0xe6, 0x5d, 0x09, 0x40, 0xdb, 0x18, 0xcd, 0x34, + 0x9c, 0x9e, 0xa7, 0x15, 0x0b, 0xce, 0x33, 0xd4, 0xd4, 0x2f, 0x72, 0xab, + 0xd2, 0xad, 0x41, 0xb2, 0x5c, 0x92, 0xd0, 0xb5, 0xc0, 0x24, 0xf2, 0x69, + 0xbb, 0x87, 0x52, 0x70, 0x07, 0xad, 0x54, 0x37, 0x67, 0x04, 0x01, 0x50, + 0xb4, 0xce, 0xdd, 0x4f, 0x15, 0xa2, 0x82, 0x5b, 0x93, 0x76, 0xcb, 0x86, + 0xf7, 0x61, 0x38, 0x1c, 0xd4, 0x12, 0xdd, 0xb4, 0x83, 0x03, 0x8a, 0xaf, + 0x45, 0x1c, 0xa8, 0x62, 0x96, 0x2d, 0xd4, 0xe6, 0xac, 0x5b, 0xcf, 0xb0, + 0xe0, 0x9a, 0xab, 0x4b, 0x54, 0x98, 0x9a, 0x36, 0x62, 0x9c, 0x1e, 0x09, + 0xe4, 0x55, 0x85, 0x99, 0x48, 0xac, 0x24, 0x94, 0xaf, 0x07, 0xa5, 0x5b, + 0x8a, 0x7c, 0xe3, 0x9e, 0x2b, 0x39, 0x43, 0xaa, 0x1a, 0x95, 0xb4, 0x66, + 0xa7, 0x9d, 0xc6, 0x00, 0xa8, 0xd9, 0x98, 0xf5, 0x6f, 0xc2, 0xa1, 0x59, + 0x80, 0x14, 0x79, 0xbb, 0xf9, 0xdb, 0x51, 0x6b, 0x15, 0x7b, 0x92, 0x12, + 0x00, 0xa4, 0x1e, 0xdd, 0x2a, 0x3d, 0xc4, 0x9a, 0x5c, 0xe0, 0x71, 0x48, + 0x77, 0x25, 0xc5, 0x26, 0x48, 0xa4, 0x19, 0xf4, 0xa7, 0x60, 0xe3, 0x9a, + 0x02, 0xe2, 0x73, 0xe9, 0x4e, 0x07, 0x14, 0x00, 0x3b, 0x9a, 0x07, 0x06, + 0x81, 0x8e, 0x2c, 0x7b, 0x1c, 0x54, 0x44, 0x6f, 0x93, 0x76, 0x78, 0x14, + 0xb2, 0x3e, 0x06, 0xd0, 0x79, 0xa8, 0xf6, 0xe0, 0x50, 0xdf, 0x41, 0x2d, + 0xc7, 0x8f, 0xbc, 0x70, 0x69, 0xc0, 0xf6, 0xed, 0x51, 0x72, 0x0f, 0x14, + 0xa0, 0xe7, 0xaf, 0xe9, 0x48, 0xa2, 0x5c, 0x0c, 0xd2, 0x15, 0xe6, 0x98, + 0x09, 0x3c, 0x0c, 0xd3, 0x81, 0x23, 0xad, 0x02, 0x02, 0x40, 0xa4, 0x57, + 0x07, 0xb7, 0xe7, 0x48, 0x4e, 0x7a, 0xf4, 0xa6, 0xf7, 0xe2, 0x8b, 0x81, + 0x28, 0x38, 0x14, 0xc2, 0xfe, 0xb9, 0xfa, 0x52, 0x73, 0x8a, 0x70, 0x35, + 0x51, 0x97, 0x2b, 0xbd, 0x85, 0x28, 0xf3, 0x2b, 0x00, 0x64, 0xeb, 0x8c, + 0x52, 0x33, 0x83, 0xd3, 0xf9, 0x52, 0x9f, 0xcc, 0xd3, 0x49, 0xc7, 0x38, + 0xad, 0x7e, 0xb0, 0xed, 0xb1, 0x97, 0xb0, 0x57, 0xbd, 0xc0, 0x71, 0xeb, + 0x4e, 0x24, 0xe3, 0xa7, 0xeb, 0x49, 0xb8, 0x62, 0x93, 0x3e, 0xd5, 0x3e, + 0xda, 0x5d, 0x0a, 0xf6, 0x51, 0x7b, 0x8b, 0xf3, 0x63, 0xa8, 0x14, 0xd6, + 0x52, 0xc3, 0x0c, 0x4d, 0x3b, 0x27, 0x18, 0xa4, 0x35, 0x2e, 0xa4, 0xdf, + 0x51, 0xaa, 0x70, 0x5d, 0x04, 0x23, 0x6f, 0x6c, 0xd1, 0xdb, 0x8a, 0x50, + 0x4d, 0x2f, 0xcb, 0xeb, 0x51, 0x76, 0x5d, 0x90, 0xda, 0x39, 0xa5, 0x38, + 0xef, 0xd2, 0x8f, 0x97, 0x14, 0xc0, 0x43, 0x9a, 0x33, 0xc7, 0x5a, 0x38, + 0xa0, 0xe2, 0x81, 0x06, 0x73, 0x46, 0x78, 0xe0, 0xe4, 0xd2, 0xe7, 0xd0, + 0x52, 0x63, 0xbe, 0x30, 0x68, 0x00, 0xeb, 0x40, 0x1c, 0xf5, 0xa4, 0xe4, + 0x76, 0xcd, 0x2a, 0x9a, 0x00, 0x70, 0x18, 0xea, 0x28, 0x7c, 0x63, 0xad, + 0x1d, 0x47, 0x5a, 0x69, 0x18, 0xa0, 0x04, 0x53, 0xc7, 0x14, 0x99, 0x3d, + 0xe9, 0xfb, 0x80, 0xe6, 0x9a, 0x58, 0x13, 0xd2, 0x81, 0x08, 0x48, 0xa3, + 0x00, 0x8c, 0x9a, 0x0a, 0x8c, 0xd1, 0xd0, 0x50, 0x00, 0x63, 0x6d, 0xa1, + 0xb6, 0x9d, 0xa7, 0xbe, 0x29, 0x39, 0x34, 0x81, 0xdc, 0x7d, 0xd2, 0x40, + 0xa5, 0xc1, 0x3c, 0xb1, 0xa1, 0x82, 0x03, 0xcf, 0x4a, 0x09, 0x0a, 0xb9, + 0x27, 0x9a, 0x63, 0xc8, 0xa8, 0x38, 0x22, 0xa9, 0xcb, 0x70, 0x5f, 0xa1, + 0xa6, 0xa3, 0x71, 0x36, 0x5b, 0x5b, 0x95, 0x2d, 0x86, 0xe2, 0xa6, 0x56, + 0xdc, 0x32, 0x3a, 0x56, 0x3e, 0x4e, 0x6a, 0x54, 0xb8, 0x74, 0xef, 0xc5, + 0x54, 0xa9, 0xae, 0x80, 0x9b, 0x35, 0x33, 0x4b, 0x9c, 0x0a, 0xa5, 0x1d, + 0xd8, 0xcf, 0xcd, 0x56, 0x04, 0xaa, 0xe3, 0x83, 0x59, 0x38, 0xb4, 0x5a, + 0x91, 0x31, 0x3b, 0x80, 0xc5, 0x30, 0x9f, 0x6a, 0x01, 0x20, 0x8c, 0x1a, + 0x0e, 0x49, 0xe2, 0x90, 0x31, 0x09, 0xc8, 0xa5, 0x14, 0x99, 0xed, 0x48, + 0x4f, 0x3c, 0x50, 0x02, 0x92, 0x7d, 0x29, 0x0a, 0x90, 0x73, 0x4a, 0x32, + 0x68, 0xce, 0x29, 0x80, 0x99, 0xa3, 0x34, 0xbb, 0x81, 0xa6, 0xf4, 0xa0, + 0x05, 0xa2, 0x9b, 0x4b, 0xbb, 0xb5, 0x00, 0x2f, 0x5a, 0x4a, 0x5c, 0xe0, + 0xf5, 0xa6, 0x33, 0xed, 0x3f, 0xe1, 0x40, 0x0e, 0x3c, 0xf6, 0xa6, 0x80, + 0x54, 0xd2, 0xa9, 0xcd, 0x1d, 0xf8, 0xa6, 0x20, 0xc9, 0x27, 0x20, 0x8a, + 0x6c, 0x8c, 0x78, 0xcf, 0x4f, 0x6a, 0x52, 0x84, 0xf3, 0xcd, 0x2e, 0x38, + 0xa0, 0x06, 0xa9, 0x18, 0xef, 0x4f, 0xfa, 0x52, 0x03, 0x8a, 0x06, 0x37, + 0x50, 0x31, 0x73, 0x8a, 0x28, 0x0a, 0x4e, 0x69, 0x42, 0x91, 0xda, 0x90, + 0x87, 0x67, 0xe5, 0xc6, 0x29, 0x84, 0x81, 0x48, 0xe4, 0x8e, 0x94, 0xdc, + 0x9e, 0xf4, 0xd0, 0xee, 0x29, 0xc1, 0x19, 0xeb, 0x48, 0x08, 0xa0, 0xf5, + 0xe2, 0x9b, 0xdf, 0x02, 0x82, 0x47, 0x9f, 0xad, 0x21, 0xa5, 0x1c, 0x53, + 0x80, 0xc8, 0xa0, 0x64, 0x7c, 0xf6, 0xcd, 0x00, 0x35, 0x48, 0x00, 0xa5, + 0x38, 0x14, 0x5c, 0x2c, 0x30, 0xe4, 0x76, 0xa8, 0xf0, 0x09, 0xef, 0x53, + 0x75, 0x3d, 0xb1, 0x4d, 0xdb, 0x42, 0x61, 0x63, 0x3d, 0xa6, 0x91, 0xba, + 0xb1, 0xa6, 0x75, 0xa2, 0x8a, 0xe8, 0xb1, 0x02, 0x51, 0x45, 0x2d, 0x00, + 0x25, 0x2d, 0x25, 0x14, 0x00, 0x51, 0x45, 0x14, 0x00, 0xb4, 0x94, 0x52, + 0xd0, 0x01, 0x49, 0x4b, 0x49, 0x40, 0x05, 0x14, 0xb4, 0x94, 0x00, 0x51, + 0x45, 0x14, 0x00, 0xb4, 0x52, 0x52, 0xd0, 0x01, 0xb8, 0x8e, 0xf4, 0xf1, + 0x2b, 0x8e, 0xf5, 0x1d, 0x14, 0x01, 0x32, 0xdc, 0xc8, 0xbd, 0x0d, 0x4c, + 0xb7, 0xcc, 0x07, 0x28, 0x0d, 0x54, 0xa2, 0xa5, 0xc5, 0x30, 0xb9, 0x74, + 0x5f, 0x2e, 0x79, 0x8b, 0x3f, 0x8d, 0x3f, 0xfb, 0x4c, 0x01, 0xc4, 0x78, + 0xfc, 0x6b, 0x3e, 0x92, 0x97, 0x24, 0x47, 0x76, 0x5e, 0xfb, 0x70, 0x24, + 0xe5, 0x4d, 0x21, 0xbd, 0x5f, 0xee, 0x9a, 0xa5, 0x4b, 0x4f, 0x91, 0x05, + 0xcb, 0xa2, 0xf5, 0x7d, 0x0d, 0x2f, 0xdb, 0x53, 0x3c, 0x86, 0xaa, 0x34, + 0x94, 0xb9, 0x10, 0x5c, 0xbf, 0xf6, 0xd4, 0xf4, 0x6a, 0x0d, 0xea, 0x63, + 0xa3, 0x55, 0x1a, 0x28, 0xe4, 0x41, 0x72, 0xf7, 0xdb, 0x97, 0xd0, 0xd1, + 0xf6, 0xe4, 0xfe, 0xe9, 0xaa, 0x14, 0xb4, 0x72, 0x20, 0xb9, 0x7c, 0xea, + 0x08, 0x07, 0x08, 0x6a, 0x31, 0x7b, 0xcf, 0x2a, 0x6a, 0xa5, 0x14, 0xd4, + 0x52, 0x06, 0xee, 0x5c, 0xfb, 0x68, 0xc9, 0xf9, 0x29, 0x9f, 0x6b, 0xff, + 0x00, 0x60, 0x55, 0x5a, 0x29, 0xdb, 0x5b, 0x88, 0xb5, 0xf6, 0xc6, 0xfe, + 0xed, 0x21, 0xbb, 0x62, 0x73, 0xb7, 0xf5, 0xaa, 0xf4, 0x53, 0x15, 0x91, + 0x33, 0x5c, 0xb1, 0xe8, 0xa0, 0x53, 0x0c, 0xce, 0x7b, 0xe2, 0x99, 0x45, + 0x3b, 0xb0, 0xb2, 0x02, 0xc5, 0xba, 0x92, 0x69, 0x29, 0x68, 0xa4, 0x31, + 0x28, 0xa5, 0xa2, 0x80, 0x0a, 0x4a, 0x29, 0x68, 0x00, 0xa2, 0x92, 0x96, + 0x80, 0x0a, 0x15, 0x8a, 0x9c, 0x8a, 0x29, 0x28, 0x02, 0xca, 0x4c, 0x09, + 0xe7, 0x8a, 0xb8, 0x8e, 0x0d, 0x65, 0xd3, 0x92, 0x46, 0x43, 0xc1, 0xa1, + 0xa4, 0xf7, 0x26, 0xcd, 0x6c, 0x6a, 0x86, 0x07, 0x8a, 0x78, 0xe3, 0xb6, + 0x6b, 0x39, 0x6e, 0xbd, 0x46, 0x0f, 0xad, 0x59, 0x8e, 0xe9, 0x47, 0x52, + 0x2a, 0x1c, 0x3b, 0x0d, 0x4b, 0xb9, 0x6c, 0x12, 0x69, 0xfb, 0x4f, 0x73, + 0x51, 0xa4, 0xc8, 0xdd, 0x08, 0xa9, 0x77, 0xae, 0x2a, 0x6d, 0x62, 0xee, + 0x1b, 0x45, 0x32, 0x47, 0x0b, 0xc0, 0xeb, 0x48, 0xce, 0x0f, 0x08, 0x39, + 0xf5, 0xa4, 0x58, 0xc8, 0xed, 0xf8, 0xd4, 0xb6, 0x02, 0x22, 0xe0, 0xfc, + 0xdc, 0x93, 0x4e, 0x23, 0x9a, 0x71, 0x00, 0x53, 0x18, 0xe0, 0xfd, 0xe1, + 0x52, 0x30, 0x66, 0xf6, 0xa8, 0xc9, 0x3d, 0x71, 0x4f, 0x24, 0xfa, 0xd2, + 0x53, 0xb8, 0x08, 0x1c, 0x9e, 0xd8, 0xa7, 0x6e, 0x5f, 0x5a, 0x4a, 0x43, + 0xd7, 0xa5, 0x01, 0x71, 0x7e, 0x5f, 0x5a, 0x4c, 0x71, 0x9a, 0x51, 0xd3, + 0xd2, 0x83, 0x93, 0xc5, 0x30, 0x0c, 0xd2, 0x64, 0xe7, 0x34, 0xbd, 0xba, + 0x52, 0x12, 0x3a, 0x77, 0xa0, 0x2e, 0x28, 0x39, 0x3e, 0x94, 0xa4, 0x91, + 0xc5, 0x21, 0x1c, 0x52, 0x60, 0x1a, 0x2c, 0x17, 0x0a, 0x37, 0x63, 0xa5, + 0x26, 0xdf, 0x4a, 0x02, 0x83, 0xd7, 0x14, 0x58, 0x2e, 0x2e, 0xe3, 0xeb, + 0xc5, 0x05, 0x81, 0xef, 0x48, 0x50, 0x76, 0xa4, 0x22, 0x95, 0x82, 0xe3, + 0xfe, 0x86, 0x93, 0x1c, 0x53, 0x42, 0xf3, 0x4e, 0xea, 0x28, 0xb0, 0x5c, + 0x5c, 0xfb, 0x52, 0x60, 0x1e, 0x94, 0x98, 0x27, 0xa1, 0xa7, 0x84, 0x00, + 0x64, 0xd3, 0xb0, 0xae, 0x34, 0x82, 0x39, 0xea, 0x29, 0xa0, 0x8f, 0x5a, + 0x9b, 0x83, 0xde, 0x91, 0xa3, 0xcf, 0x6a, 0x00, 0x8c, 0x7b, 0x50, 0x4b, + 0x1a, 0x52, 0x9e, 0x86, 0x8e, 0x56, 0x80, 0x13, 0x9a, 0x02, 0xfa, 0x9a, + 0x37, 0xe4, 0x74, 0xa5, 0xc9, 0xe9, 0x4a, 0xe0, 0x03, 0x8a, 0x0b, 0x67, + 0x8a, 0x90, 0x21, 0x23, 0x25, 0x80, 0xf6, 0xa6, 0x34, 0x60, 0x7f, 0x17, + 0x34, 0xae, 0x08, 0x66, 0x45, 0x2f, 0xe1, 0x4a, 0xbb, 0x45, 0x05, 0xf1, + 0xd7, 0x18, 0xa2, 0xec, 0x00, 0x29, 0x34, 0xbb, 0x40, 0x15, 0x5e, 0x4b, + 0x95, 0x5f, 0xba, 0xc0, 0xd5, 0x77, 0xbc, 0x63, 0xc0, 0x3c, 0x55, 0x28, + 0x36, 0x2b, 0xa2, 0xeb, 0x3a, 0x27, 0xd6, 0xab, 0xcb, 0x79, 0x81, 0x85, + 0x02, 0xa9, 0x34, 0x8c, 0xc7, 0x92, 0x69, 0xb5, 0xa2, 0x82, 0x42, 0xd4, + 0x73, 0x39, 0x73, 0x92, 0x69, 0xb4, 0x94, 0xb5, 0x60, 0x25, 0x14, 0x51, + 0x40, 0x05, 0x38, 0x39, 0x53, 0xc1, 0xa4, 0xa2, 0x80, 0x27, 0x5b, 0x96, + 0x1d, 0x4d, 0x4c, 0x2f, 0x05, 0x52, 0xa2, 0xa5, 0xc1, 0x31, 0xdd, 0x9a, + 0x4b, 0x32, 0x37, 0x39, 0xa7, 0xe4, 0x1a, 0xca, 0xc9, 0xf5, 0xa7, 0x89, + 0x9d, 0x7a, 0x1a, 0x87, 0x4f, 0xb0, 0xf9, 0x8d, 0x2c, 0x9c, 0xd1, 0x9a, + 0xa2, 0xb7, 0x6e, 0x3a, 0xf3, 0x52, 0x7d, 0xac, 0x11, 0xc8, 0xa9, 0xe4, + 0x61, 0xcc, 0x5a, 0xc8, 0x34, 0xd2, 0x71, 0xd8, 0xd5, 0x71, 0x76, 0xbe, + 0x98, 0xa7, 0xfd, 0xa5, 0x0f, 0x7a, 0x5c, 0xad, 0x0e, 0xe4, 0xbb, 0xbd, + 0x14, 0xd3, 0xb1, 0x91, 0xdb, 0xe9, 0x51, 0x89, 0x14, 0xf7, 0xa5, 0xf3, + 0x17, 0xd6, 0x96, 0xa0, 0x98, 0xec, 0x2f, 0xb5, 0x26, 0xde, 0x72, 0x29, + 0x37, 0x8f, 0x51, 0x4b, 0xbb, 0x8a, 0x35, 0x1e, 0x83, 0xbb, 0x52, 0x52, + 0x03, 0x9e, 0xf4, 0xec, 0x0f, 0xef, 0x50, 0x21, 0x06, 0x71, 0x49, 0xdf, + 0xad, 0x3b, 0xa7, 0x7a, 0x4f, 0x97, 0xae, 0x68, 0x00, 0xea, 0x3a, 0xd2, + 0x80, 0x3d, 0x71, 0x4d, 0x04, 0x1e, 0x9d, 0x29, 0x0e, 0xde, 0xe7, 0xf5, + 0xa0, 0x09, 0xb7, 0x63, 0xa5, 0x37, 0x79, 0xa8, 0xb7, 0xc6, 0x3a, 0xb7, + 0xeb, 0x4c, 0x33, 0x46, 0xbf, 0xc7, 0x45, 0x82, 0xe4, 0x84, 0x9c, 0xd3, + 0x37, 0x54, 0x66, 0xe1, 0x73, 0xd4, 0x9f, 0xa5, 0x34, 0xdc, 0xa8, 0x1c, + 0x29, 0x35, 0x6a, 0x2c, 0x57, 0x26, 0x14, 0xe0, 0x32, 0x7a, 0x9a, 0xaa, + 0x6e, 0x8f, 0x65, 0x14, 0xdf, 0xb4, 0xc9, 0xdb, 0x03, 0xf0, 0xa7, 0xc8, + 0xc5, 0x72, 0xf8, 0xa5, 0xca, 0x8e, 0xb5, 0x9a, 0x66, 0x90, 0xff, 0x00, + 0x11, 0xa6, 0x96, 0x27, 0xa9, 0x34, 0x7b, 0x36, 0x3e, 0x63, 0x45, 0xa4, + 0x8c, 0x75, 0x61, 0x4c, 0x37, 0x71, 0x81, 0xd7, 0x3f, 0x4a, 0xa1, 0x49, + 0x4f, 0xd9, 0xa1, 0x5c, 0xb6, 0xd7, 0x6b, 0xd9, 0x0d, 0x30, 0xdd, 0x3f, + 0x60, 0x05, 0x57, 0xa5, 0xaa, 0x50, 0x41, 0x70, 0xa2, 0x8a, 0x4a, 0xa1, + 0x0b, 0x45, 0x14, 0x94, 0x00, 0x52, 0xd1, 0x49, 0x40, 0x05, 0x2d, 0x25, + 0x14, 0x00, 0x51, 0x45, 0x2d, 0x00, 0x25, 0x2d, 0x14, 0x94, 0x00, 0x51, + 0x4b, 0x49, 0x40, 0x05, 0x14, 0xb4, 0x50, 0x01, 0x49, 0x45, 0x2d, 0x00, + 0x14, 0x52, 0x51, 0x40, 0x05, 0x2d, 0x14, 0x94, 0x00, 0xb4, 0x94, 0xb4, + 0x94, 0x00, 0xb4, 0x94, 0x51, 0x40, 0x05, 0x2d, 0x14, 0x94, 0x00, 0xb4, + 0x94, 0x52, 0xd0, 0x01, 0x45, 0x14, 0x50, 0x02, 0x52, 0xd2, 0x51, 0x40, + 0x05, 0x14, 0xb4, 0x50, 0x01, 0x45, 0x14, 0x50, 0x02, 0x51, 0x45, 0x14, + 0x00, 0x52, 0xd1, 0x45, 0x00, 0x14, 0x94, 0x52, 0xd0, 0x01, 0x49, 0x45, + 0x2d, 0x00, 0x25, 0x14, 0x52, 0xd0, 0x01, 0x49, 0x45, 0x2d, 0x00, 0x25, + 0x14, 0x52, 0xd0, 0x02, 0x52, 0xd2, 0x51, 0x40, 0x12, 0x2c, 0xac, 0xbe, + 0x87, 0xeb, 0x52, 0x8b, 0xa2, 0x3d, 0x47, 0xd0, 0xd5, 0x7a, 0x28, 0x7a, + 0x8a, 0xc5, 0xd5, 0xbc, 0x18, 0xe4, 0x9a, 0x7a, 0xdc, 0xff, 0x00, 0xb5, + 0xfa, 0xd6, 0x7d, 0x15, 0x3c, 0xb1, 0xec, 0x16, 0x6b, 0x66, 0x6a, 0xac, + 0xca, 0x4f, 0xdf, 0x14, 0xec, 0x83, 0xe8, 0x6b, 0x22, 0x94, 0x33, 0x0e, + 0x84, 0x8a, 0x9f, 0x66, 0x87, 0x76, 0x6b, 0x64, 0x8e, 0xd4, 0xa0, 0x93, + 0xdb, 0x15, 0x92, 0x25, 0x90, 0x74, 0x73, 0xf9, 0xd3, 0xc5, 0xcc, 0xc3, + 0xf8, 0xcd, 0x2f, 0x66, 0x3b, 0xb3, 0x57, 0x14, 0x12, 0x2b, 0x2f, 0xed, + 0x73, 0x0f, 0xe3, 0xfd, 0x28, 0xfb, 0x5c, 0xb9, 0xe4, 0x8f, 0xca, 0x97, + 0x23, 0x0b, 0x9a, 0x78, 0x3d, 0x8d, 0x38, 0x60, 0x75, 0xeb, 0x59, 0x62, + 0xf2, 0x41, 0xd8, 0x53, 0x85, 0xec, 0x9e, 0x8b, 0x4f, 0x96, 0x41, 0x73, + 0x45, 0x8e, 0x69, 0x02, 0xd6, 0x78, 0xbe, 0x71, 0xd5, 0x41, 0xa5, 0xfb, + 0x73, 0xff, 0x00, 0x74, 0x51, 0xcb, 0x20, 0x34, 0x36, 0x9c, 0x52, 0x55, + 0x1f, 0xb7, 0xb6, 0x3e, 0xe8, 0xfc, 0xe9, 0x3e, 0xdc, 0xdf, 0xdd, 0xa3, + 0x96, 0x5d, 0x82, 0xe5, 0xfe, 0x4d, 0x21, 0xc8, 0xaa, 0x3f, 0x6d, 0x71, + 0xda, 0x8f, 0xb6, 0xb7, 0x75, 0xfd, 0x68, 0xe5, 0x62, 0xb9, 0x7f, 0x70, + 0xa4, 0x27, 0x35, 0x43, 0xed, 0x8d, 0xfd, 0xd1, 0x49, 0xf6, 0xb6, 0x3f, + 0xc2, 0x28, 0xe5, 0x90, 0xee, 0x68, 0x67, 0x07, 0xad, 0x3b, 0x7a, 0x01, + 0xc7, 0x5a, 0xcd, 0xfb, 0x63, 0xff, 0x00, 0x75, 0x68, 0xfb, 0x63, 0xff, + 0x00, 0x75, 0x68, 0xe5, 0x90, 0x5c, 0xd0, 0xde, 0x3d, 0xe9, 0x0b, 0xfd, + 0x6b, 0x3b, 0xed, 0x52, 0x7b, 0x52, 0xfd, 0xb2, 0x6f, 0x51, 0xf9, 0x51, + 0xc8, 0xc2, 0xe6, 0x80, 0x27, 0xd2, 0x97, 0x7b, 0x8e, 0x80, 0xd6, 0x6f, + 0xda, 0xa6, 0xfe, 0xff, 0x00, 0xe9, 0x49, 0xf6, 0x99, 0x8f, 0xf1, 0x9a, + 0x39, 0x18, 0x5c, 0xd3, 0xc9, 0x3d, 0x4e, 0x28, 0x38, 0xf5, 0xcd, 0x65, + 0x79, 0xb2, 0x7f, 0x7d, 0xbf, 0x3a, 0x69, 0x76, 0x3d, 0x58, 0x9f, 0xc6, + 0x8f, 0x66, 0x17, 0x35, 0xb2, 0xa3, 0xd0, 0x50, 0x6e, 0x23, 0x4e, 0xeb, + 0x59, 0x19, 0x3e, 0xb4, 0x53, 0xf6, 0x62, 0x34, 0x9a, 0xf6, 0x31, 0xd2, + 0xa2, 0x6b, 0xef, 0x4c, 0xd5, 0x1a, 0x5a, 0x6a, 0x08, 0x77, 0x64, 0xed, + 0x76, 0xe6, 0xa2, 0x69, 0x19, 0xba, 0x9a, 0x6d, 0x25, 0x52, 0x49, 0x08, + 0x5a, 0x28, 0xa4, 0xa6, 0x01, 0x45, 0x14, 0xb4, 0x00, 0x94, 0x52, 0xd1, + 0x40, 0x09, 0x45, 0x2d, 0x14, 0x00, 0x94, 0x51, 0x45, 0x00, 0x14, 0xb4, + 0x94, 0x50, 0x01, 0x45, 0x2d, 0x14, 0x00, 0x52, 0x51, 0x4b, 0x40, 0x05, + 0x14, 0x94, 0x50, 0x02, 0xe4, 0xd1, 0x93, 0xea, 0x68, 0xa4, 0xa0, 0x07, + 0x6e, 0x39, 0xce, 0x68, 0xde, 0xde, 0xb4, 0x94, 0x50, 0x03, 0xbc, 0xc7, + 0xcf, 0x53, 0x4b, 0xe7, 0x49, 0xfd, 0xea, 0x8e, 0x96, 0x95, 0x90, 0x0e, + 0xf3, 0x5f, 0xfb, 0xc6, 0x8f, 0x31, 0xff, 0x00, 0xbc, 0x69, 0x94, 0x51, + 0x64, 0x03, 0xb7, 0x37, 0xf7, 0x8d, 0x26, 0x4f, 0xad, 0x25, 0x2d, 0x30, + 0x12, 0x8a, 0x28, 0xa0, 0x02, 0x96, 0x8a, 0x28, 0x00, 0xa4, 0xa2, 0x96, + 0x80, 0x12, 0x96, 0x8a, 0x4a, 0x00, 0x5a, 0x29, 0x28, 0xa0, 0x05, 0xa2, + 0x8a, 0x28, 0x00, 0xa4, 0xa5, 0xa4, 0xa0, 0x02, 0x96, 0x92, 0x8a, 0x00, + 0x28, 0xa5, 0xa2, 0x80, 0x12, 0x8a, 0x5a, 0x4a, 0x00, 0x28, 0xa2, 0x8a, + 0x00, 0x5a, 0x4a, 0x29, 0x68, 0x01, 0x29, 0x69, 0x29, 0x68, 0x01, 0x29, + 0x69, 0x28, 0xa0, 0x02, 0x96, 0x92, 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, + 0x5a, 0x4a, 0x5a, 0x28, 0x01, 0x29, 0x68, 0xa2, 0x80, 0x12, 0x96, 0x92, + 0x8a, 0x00, 0x28, 0xa5, 0xa2, 0x80, 0x0a, 0x4a, 0x28, 0xa0, 0x02, 0x96, + 0x92, 0x8a, 0x00, 0x5a, 0x28, 0xa4, 0xa0, 0x05, 0xa2, 0x8a, 0x28, 0x01, + 0x28, 0xa2, 0x8a, 0x00, 0x29, 0x69, 0x29, 0x68, 0x00, 0xa4, 0xa2, 0x8a, + 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x5a, 0x4a, 0x5a, 0x4a, 0x00, 0x5a, 0x29, + 0x29, 0x68, 0x01, 0x28, 0xa2, 0x8a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x5a, + 0x29, 0x29, 0x68, 0x01, 0x28, 0xa2, 0x8a, 0x00, 0x5a, 0x4a, 0x5a, 0x28, + 0x00, 0xa4, 0xa2, 0x8a, 0x00, 0x5a, 0x4a, 0x28, 0xa0, 0x02, 0x8a, 0x5a, + 0x4a, 0x00, 0x29, 0x69, 0x29, 0x68, 0x00, 0xa4, 0xa5, 0xa2, 0x80, 0x12, + 0x8a, 0x28, 0xa0, 0x05, 0xa4, 0xa2, 0x8a, 0x00, 0x5a, 0x4a, 0x28, 0xa0, + 0x02, 0x96, 0x92, 0x8a, 0x00, 0x5a, 0x28, 0xa2, 0x80, 0x0a, 0x4a, 0x5a, + 0x4a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x5a, 0x4a, 0x29, 0x68, 0x00, 0xa2, + 0x8a, 0x4a, 0x00, 0x5a, 0x29, 0x28, 0xa0, 0x02, 0x96, 0x92, 0x8a, 0x00, + 0x28, 0xa2, 0x96, 0x80, 0x12, 0x96, 0x8a, 0x4a, 0x00, 0x5a, 0x29, 0x28, + 0xa0, 0x05, 0xa2, 0x92, 0x96, 0x80, 0x0a, 0x28, 0xa4, 0xa0, 0x02, 0x96, + 0x8a, 0x28, 0x00, 0xa4, 0xa5, 0xa2, 0x80, 0x12, 0x8a, 0x5a, 0x4a, 0x00, + 0x28, 0xa2, 0x8a, 0x00, 0x5a, 0x4a, 0x5a, 0x4a, 0x00, 0x28, 0xa2, 0x8a, + 0x00, 0x29, 0x69, 0x29, 0x68, 0x01, 0x29, 0x68, 0xa4, 0xa0, 0x05, 0xa4, + 0xa5, 0xa4, 0xa0, 0x05, 0xa4, 0xa2, 0x8a, 0x00, 0x5a, 0x4a, 0x5a, 0x28, + 0x01, 0x28, 0xa5, 0xa4, 0xa0, 0x02, 0x8a, 0x28, 0xa0, 0x05, 0xa2, 0x8a, + 0x28, 0x00, 0xa4, 0xa7, 0x6c, 0x7f, 0xee, 0x9f, 0xca, 0x8d, 0x8f, 0xfd, + 0xd6, 0xfc, 0xa9, 0xd9, 0x85, 0xc4, 0xa2, 0x97, 0x63, 0xff, 0x00, 0x75, + 0xbf, 0x2a, 0x36, 0x3f, 0xf7, 0x5b, 0xf2, 0xa2, 0xcc, 0x2e, 0x36, 0x96, + 0x97, 0x63, 0xff, 0x00, 0x75, 0xbf, 0x2a, 0x36, 0x3f, 0xf7, 0x5b, 0xf2, + 0xa2, 0xcc, 0x2e, 0x36, 0x8a, 0x76, 0xc7, 0xfe, 0xeb, 0x7e, 0x54, 0x6c, + 0x7f, 0xee, 0x9f, 0xca, 0x8b, 0x30, 0xb8, 0xda, 0x5a, 0x5d, 0x8f, 0xfd, + 0xd6, 0xfc, 0xa8, 0xd8, 0xff, 0x00, 0xdd, 0x6f, 0xca, 0x8b, 0x30, 0xb8, + 0x94, 0x52, 0xec, 0x7f, 0xee, 0x9f, 0xca, 0x8d, 0x8f, 0xfd, 0xd6, 0xfc, + 0xa8, 0xb3, 0x0b, 0x89, 0x45, 0x2e, 0xc7, 0xfe, 0xeb, 0x7e, 0x54, 0x6c, + 0x7f, 0xee, 0xb7, 0xe5, 0x45, 0x98, 0x5c, 0x6d, 0x2d, 0x2e, 0xc7, 0xfe, + 0xeb, 0x7e, 0x54, 0x6c, 0x7f, 0xee, 0xb7, 0xe5, 0x45, 0x98, 0x5c, 0x4a, + 0x4a, 0x76, 0xc7, 0xfe, 0xeb, 0x7e, 0x54, 0x6c, 0x7f, 0xee, 0xb7, 0xe5, + 0x45, 0x98, 0x5c, 0x6d, 0x2d, 0x2e, 0xc7, 0xfe, 0xe3, 0x7e, 0x54, 0x6c, + 0x7f, 0xee, 0xb7, 0xe5, 0x45, 0x98, 0x5c, 0x6d, 0x2d, 0x2e, 0xc7, 0xfe, + 0xeb, 0x7e, 0x54, 0x6c, 0x7f, 0xee, 0xb7, 0xe5, 0x45, 0x98, 0x5c, 0x6d, + 0x14, 0xed, 0x8f, 0xfd, 0xd6, 0xfc, 0xa8, 0xd8, 0xff, 0x00, 0xdd, 0x6f, + 0xca, 0x8b, 0x30, 0xb8, 0x94, 0x94, 0xed, 0x8f, 0xfd, 0xd6, 0xfc, 0xa8, + 0xd8, 0xff, 0x00, 0xdd, 0x6f, 0xca, 0x8b, 0x30, 0xb8, 0xda, 0x5a, 0x5d, + 0x8f, 0xfd, 0xc6, 0xfc, 0xa8, 0xd8, 0xff, 0x00, 0xdd, 0x6f, 0xca, 0x8b, + 0x30, 0xb8, 0x94, 0x94, 0xed, 0x8f, 0xfd, 0xd6, 0xfc, 0xa8, 0xd8, 0xff, + 0x00, 0xdd, 0x6f, 0xca, 0x8b, 0x30, 0xb8, 0x94, 0x94, 0xed, 0x8f, 0xfd, + 0xc6, 0xfc, 0xa8, 0xd8, 0xff, 0x00, 0xdc, 0x6f, 0xca, 0x8b, 0x30, 0xb8, + 0xda, 0x29, 0xdb, 0x1f, 0xfb, 0xad, 0xf9, 0x51, 0xb1, 0xff, 0x00, 0xba, + 0xdf, 0x95, 0x16, 0x61, 0x71, 0x29, 0x29, 0xdb, 0x1f, 0xfb, 0xad, 0xf9, + 0x51, 0xb1, 0xff, 0x00, 0xba, 0x7f, 0x2a, 0x2c, 0xc2, 0xe2, 0x52, 0x53, + 0xb6, 0x3f, 0xf7, 0x5b, 0xf2, 0xa3, 0x63, 0xff, 0x00, 0x75, 0xbf, 0x2a, + 0x2c, 0xc2, 0xe3, 0x69, 0x69, 0x76, 0x3f, 0xf7, 0x5b, 0xf2, 0xa3, 0x63, + 0xff, 0x00, 0x71, 0xbf, 0x2a, 0x2c, 0xc2, 0xe3, 0x68, 0xa7, 0x6c, 0x7f, + 0xee, 0xb7, 0xe5, 0x46, 0xc7, 0xfe, 0xe3, 0x7e, 0x54, 0x59, 0x85, 0xc6, + 0xd1, 0x4e, 0xd8, 0xff, 0x00, 0xdd, 0x6f, 0xca, 0x8d, 0x8f, 0xfd, 0xd6, + 0xfc, 0xa8, 0xb3, 0x0b, 0x8d, 0xa5, 0xa5, 0xd8, 0xff, 0x00, 0xdd, 0x3f, + 0x95, 0x1b, 0x1f, 0xfb, 0xad, 0xf9, 0x51, 0x66, 0x17, 0x12, 0x8a, 0x5d, + 0x8f, 0xfd, 0xd6, 0xfc, 0xa8, 0xd8, 0xff, 0x00, 0xdd, 0x6f, 0xca, 0x8b, + 0x30, 0xb8, 0xda, 0x29, 0xdb, 0x1f, 0xfb, 0xad, 0xf9, 0x51, 0xb1, 0xff, + 0x00, 0xba, 0xdf, 0x95, 0x16, 0x61, 0x71, 0xb4, 0xb4, 0xbb, 0x1f, 0xfb, + 0xad, 0xf9, 0x51, 0xb1, 0xff, 0x00, 0xba, 0xdf, 0x95, 0x16, 0x61, 0x71, + 0x29, 0x29, 0xdb, 0x1f, 0xfb, 0xad, 0xf9, 0x51, 0xb1, 0xff, 0x00, 0xba, + 0xdf, 0x95, 0x16, 0x61, 0x71, 0x28, 0xa5, 0xd8, 0xff, 0x00, 0xdd, 0x6f, + 0xca, 0x8d, 0x8f, 0xfd, 0xd6, 0xfc, 0xa8, 0xb3, 0x0b, 0x8d, 0xa2, 0x9d, + 0xb1, 0xff, 0x00, 0xba, 0xdf, 0x95, 0x1b, 0x1f, 0xfb, 0xa7, 0xf2, 0xa2, + 0xcc, 0x2e, 0x25, 0x25, 0x3b, 0x63, 0xff, 0x00, 0x75, 0xbf, 0x2a, 0x36, + 0x3f, 0xf7, 0x5b, 0xf2, 0xa2, 0xcc, 0x2e, 0x36, 0x8a, 0x76, 0xc7, 0xfe, + 0xeb, 0x7e, 0x54, 0x6c, 0x7f, 0xee, 0x37, 0xe5, 0x45, 0x98, 0x5c, 0x6d, + 0x2d, 0x2e, 0xc7, 0xfe, 0xeb, 0x7e, 0x54, 0x6c, 0x7f, 0xee, 0xb7, 0xe5, + 0x45, 0x98, 0x5c, 0x4a, 0x29, 0x76, 0x3f, 0xf7, 0x5b, 0xf2, 0xa3, 0x63, + 0xff, 0x00, 0x75, 0xbf, 0x2a, 0x2c, 0xc2, 0xe3, 0x68, 0xa7, 0x6c, 0x7f, + 0xee, 0xb7, 0xe5, 0x46, 0xc7, 0xfe, 0xeb, 0x7e, 0x54, 0x59, 0x85, 0xc6, + 0xd2, 0xd2, 0xec, 0x7f, 0xee, 0xb7, 0xe5, 0x46, 0xc7, 0xfe, 0xeb, 0x7e, + 0x54, 0x59, 0x85, 0xc4, 0xa4, 0xa7, 0x6c, 0x7f, 0xee, 0xb7, 0xe5, 0x46, + 0xc7, 0xfe, 0xeb, 0x7e, 0x54, 0x59, 0x85, 0xc4, 0xa4, 0xa7, 0x6c, 0x7f, + 0xee, 0xb7, 0xe5, 0x46, 0xc7, 0xfe, 0xeb, 0x7e, 0x54, 0x59, 0x85, 0xc4, + 0xa2, 0x97, 0x63, 0xff, 0x00, 0x75, 0xbf, 0x2a, 0x36, 0x3f, 0xf7, 0x5b, + 0xf2, 0xa2, 0xcc, 0x2e, 0x25, 0x25, 0x3b, 0x63, 0xff, 0x00, 0x75, 0xbf, + 0x2a, 0x36, 0x3f, 0xf7, 0x5b, 0xf2, 0xa2, 0xcc, 0x2e, 0x25, 0x25, 0x3b, + 0x63, 0xff, 0x00, 0x75, 0xbf, 0x2a, 0x36, 0x3f, 0xf7, 0x5b, 0xf2, 0xa2, + 0xcc, 0x2e, 0x25, 0x14, 0xbb, 0x1f, 0xfb, 0xad, 0xf9, 0x51, 0xb1, 0xff, + 0x00, 0xba, 0xdf, 0x95, 0x16, 0x61, 0x71, 0x29, 0x29, 0xdb, 0x1f, 0xfb, + 0xad, 0xf9, 0x51, 0xb1, 0xff, 0x00, 0xba, 0xdf, 0x95, 0x16, 0x61, 0x71, + 0xb4, 0xb4, 0xbb, 0x1f, 0xfb, 0xad, 0xf9, 0x51, 0xb1, 0xff, 0x00, 0xba, + 0xdf, 0x95, 0x16, 0x61, 0x71, 0xb4, 0xb4, 0xbb, 0x1f, 0xfb, 0xad, 0xf9, + 0x51, 0xb1, 0xff, 0x00, 0xba, 0xdf, 0x95, 0x16, 0x61, 0x71, 0xb4, 0x53, + 0xb6, 0x3f, 0xf7, 0x5b, 0xf2, 0xa3, 0x63, 0xff, 0x00, 0x71, 0xbf, 0x2a, + 0x2c, 0xc2, 0xe2, 0x51, 0x4b, 0xb1, 0xff, 0x00, 0xba, 0xdf, 0x95, 0x1b, + 0x1f, 0xfb, 0xad, 0xf9, 0x51, 0x66, 0x17, 0x1b, 0x45, 0x3b, 0x63, 0xff, + 0x00, 0x75, 0xbf, 0x2a, 0x36, 0x3f, 0xf7, 0x5b, 0xf2, 0xa2, 0xcc, 0x2e, + 0x36, 0x96, 0x97, 0x63, 0xff, 0x00, 0x75, 0xbf, 0x2a, 0x36, 0x3f, 0xf7, + 0x5b, 0xf2, 0xa2, 0xcc, 0x2e, 0x36, 0x96, 0x97, 0x63, 0xff, 0x00, 0x75, + 0xbf, 0x2a, 0x36, 0x3f, 0xf7, 0x5b, 0xf2, 0xa2, 0xcc, 0x2e, 0x25, 0x25, + 0x3b, 0x63, 0xff, 0x00, 0x75, 0xbf, 0x2a, 0x36, 0x3f, 0xf7, 0x5b, 0xf2, + 0xa2, 0xcc, 0x2e, 0x25, 0x25, 0x3b, 0x63, 0xff, 0x00, 0x75, 0xbf, 0x2a, + 0x36, 0x3f, 0xf7, 0x1b, 0xf2, 0xa2, 0xcc, 0x2e, 0x25, 0x25, 0x3b, 0x63, + 0xff, 0x00, 0x75, 0xbf, 0x2a, 0x36, 0x3f, 0xf7, 0x5b, 0xf2, 0xa2, 0xcc, + 0x2e, 0x25, 0x25, 0x3b, 0x63, 0xff, 0x00, 0x74, 0xfe, 0x54, 0x79, 0x6f, + 0xfd, 0xd6, 0xfc, 0xa8, 0xb3, 0x0b, 0x8d, 0xa5, 0xa5, 0xd8, 0xff, 0x00, + 0xdd, 0x6f, 0xca, 0x8d, 0x8f, 0xfd, 0xd6, 0xfc, 0xa8, 0xb3, 0x0b, 0x8d, + 0xa2, 0x9d, 0xb1, 0xff, 0x00, 0xba, 0xdf, 0x95, 0x1b, 0x1f, 0xfb, 0xad, + 0xf9, 0x51, 0x66, 0x17, 0x12, 0x8a, 0x5d, 0x8f, 0xfd, 0xd6, 0xfc, 0xa8, + 0xd8, 0xff, 0x00, 0xdd, 0x6f, 0xca, 0x8b, 0x30, 0xb8, 0xda, 0x29, 0xdb, + 0x1f, 0xfb, 0xad, 0xf9, 0x51, 0xb1, 0xff, 0x00, 0xba, 0xdf, 0x95, 0x16, + 0x61, 0x71, 0x29, 0x29, 0xdb, 0x1f, 0xfb, 0xad, 0xf9, 0x51, 0xb1, 0xff, + 0x00, 0xba, 0xdf, 0x95, 0x16, 0x61, 0x71, 0xb4, 0xb4, 0xbb, 0x1f, 0xfb, + 0xad, 0xf9, 0x51, 0xb1, 0xff, 0x00, 0xba, 0xdf, 0x95, 0x16, 0x61, 0x71, + 0xb4, 0x53, 0xb6, 0x3f, 0xf7, 0x5b, 0xf2, 0xa3, 0x63, 0xff, 0x00, 0x75, + 0xbf, 0x2a, 0x2c, 0xc2, 0xe3, 0x68, 0xa7, 0x6c, 0x7f, 0xee, 0xb7, 0xe5, + 0x46, 0xc7, 0xfe, 0xeb, 0x7e, 0x54, 0x59, 0x85, 0xc6, 0xd2, 0xd2, 0xec, + 0x7f, 0xee, 0x37, 0xe5, 0x46, 0xc7, 0xfe, 0xe3, 0x7e, 0x54, 0x59, 0x85, + 0xc6, 0xd2, 0xd2, 0xec, 0x7f, 0xee, 0xb7, 0xe5, 0x46, 0xc7, 0xfe, 0xeb, + 0x7e, 0x54, 0x59, 0x85, 0xc6, 0xd2, 0xd2, 0xec, 0x7f, 0xee, 0x9f, 0xca, + 0x8d, 0x8f, 0xfd, 0xd6, 0xfc, 0xa8, 0xb3, 0x0b, 0x9f, 0xff, 0xd9 +}; +unsigned int pisa_jpg_len = 40991; diff --git a/assets/hdr/chromatic.hdr b/assets/hdr/chromatic.hdr new file mode 100644 index 0000000..c66e3d3 Binary files /dev/null and b/assets/hdr/chromatic.hdr differ diff --git a/assets/hdr/chromatic.jpg b/assets/hdr/chromatic.jpg new file mode 100644 index 0000000..b4d64cb Binary files /dev/null and b/assets/hdr/chromatic.jpg differ diff --git a/assets/hdr/directional.hdr b/assets/hdr/directional.hdr new file mode 100644 index 0000000..dff889d Binary files /dev/null and b/assets/hdr/directional.hdr differ diff --git a/assets/hdr/directional.jpg b/assets/hdr/directional.jpg new file mode 100644 index 0000000..3b47875 Binary files /dev/null and b/assets/hdr/directional.jpg differ diff --git a/assets/hdr/doge2.hdr b/assets/hdr/doge2.hdr new file mode 100644 index 0000000..b4db456 Binary files /dev/null and b/assets/hdr/doge2.hdr differ diff --git a/assets/hdr/doge2.jpg b/assets/hdr/doge2.jpg new file mode 100644 index 0000000..914a012 Binary files /dev/null and b/assets/hdr/doge2.jpg differ diff --git a/assets/hdr/ennis.hdr b/assets/hdr/ennis.hdr new file mode 100644 index 0000000..97851d0 Binary files /dev/null and b/assets/hdr/ennis.hdr differ diff --git a/assets/hdr/ennis.jpg b/assets/hdr/ennis.jpg new file mode 100644 index 0000000..1f9cb9a Binary files /dev/null and b/assets/hdr/ennis.jpg differ diff --git a/assets/hdr/field.hdr b/assets/hdr/field.hdr new file mode 100644 index 0000000..781ecad Binary files /dev/null and b/assets/hdr/field.hdr differ diff --git a/assets/hdr/field.jpg b/assets/hdr/field.jpg new file mode 100644 index 0000000..cd0e92b Binary files /dev/null and b/assets/hdr/field.jpg differ diff --git a/assets/hdr/footprint_court.hdr b/assets/hdr/footprint_court.hdr new file mode 100644 index 0000000..a30e148 Binary files /dev/null and b/assets/hdr/footprint_court.hdr differ diff --git a/assets/hdr/footprint_court.jpg b/assets/hdr/footprint_court.jpg new file mode 100644 index 0000000..837cac2 Binary files /dev/null and b/assets/hdr/footprint_court.jpg differ diff --git a/assets/hdr/golden_gate_hills.hdr b/assets/hdr/golden_gate_hills.hdr new file mode 100644 index 0000000..03efe40 Binary files /dev/null and b/assets/hdr/golden_gate_hills.hdr differ diff --git a/assets/hdr/golden_gate_hills.jpg b/assets/hdr/golden_gate_hills.jpg new file mode 100644 index 0000000..52f1ef7 Binary files /dev/null and b/assets/hdr/golden_gate_hills.jpg differ diff --git a/assets/hdr/helipad.hdr b/assets/hdr/helipad.hdr new file mode 100644 index 0000000..45e9a81 Binary files /dev/null and b/assets/hdr/helipad.hdr differ diff --git a/assets/hdr/helipad.jpg b/assets/hdr/helipad.jpg new file mode 100644 index 0000000..3a88d7b Binary files /dev/null and b/assets/hdr/helipad.jpg differ diff --git a/assets/hdr/neutral.hdr b/assets/hdr/neutral.hdr new file mode 100644 index 0000000..050cb95 Binary files /dev/null and b/assets/hdr/neutral.hdr differ diff --git a/assets/hdr/neutral.jpg b/assets/hdr/neutral.jpg new file mode 100644 index 0000000..5736a22 Binary files /dev/null and b/assets/hdr/neutral.jpg differ diff --git a/assets/hdr/papermill.hdr b/assets/hdr/papermill.hdr new file mode 100644 index 0000000..e05476a Binary files /dev/null and b/assets/hdr/papermill.hdr differ diff --git a/assets/hdr/papermill.jpg b/assets/hdr/papermill.jpg new file mode 100644 index 0000000..be0ce77 Binary files /dev/null and b/assets/hdr/papermill.jpg differ diff --git a/assets/hdr/pisa.hdr b/assets/hdr/pisa.hdr new file mode 100644 index 0000000..117bb0e Binary files /dev/null and b/assets/hdr/pisa.hdr differ diff --git a/assets/hdr/pisa.jpg b/assets/hdr/pisa.jpg new file mode 100644 index 0000000..5f161c6 Binary files /dev/null and b/assets/hdr/pisa.jpg differ diff --git a/assets/window_icon_32px.png b/assets/window_icon_32px.png new file mode 100644 index 0000000..bcc2797 Binary files /dev/null and b/assets/window_icon_32px.png differ diff --git a/env/EXAMPLE_gltf-view.desktop b/env/EXAMPLE_gltf-view.desktop new file mode 100644 index 0000000..5ef3c0a --- /dev/null +++ b/env/EXAMPLE_gltf-view.desktop @@ -0,0 +1,7 @@ +[Desktop Entry] +Type=Application +Name=LVGL glTF Viewer +Exec=/home/pi/Desktop/lv_gltf_viewer/run.sh %f +Categories=Graphics +Terminal=false +X-KeepTerminal=false diff --git a/gltf_loader.c b/gltf_loader.c deleted file mode 100644 index 52514d4..0000000 --- a/gltf_loader.c +++ /dev/null @@ -1,402 +0,0 @@ -#include "lvgl/lvgl.h" - -#include -#include - -#include "lvgl/src/drivers/glfw/lv_opengles_debug.h" /* GL_CALL */ - -#define JSMN_STRICT -#define JSMN_STATIC -#include "lib/jsmn/jsmn.h" - -#include "lib/b64/b64.h" - -#include /* exit, strtoul, atof */ -#include /* fabsf, fmaxf */ -#include /* perror, file IO */ - -#define BUFFER_URI_START "data:application/octet-stream;base64," - -#define STRINGIFY(x) #x - -typedef struct { - float * vertex_array; - uint32_t vertex_count; - float vertex_max[3]; - float vertex_min[3]; - uint16_t * index_array; - uint32_t index_count; -} gltf_data_t; - -static jsmntok_t * search_obj(const char * json, const char * search_str, jsmntok_t * obj_tok, jsmntok_t * past_end_tok) { - LV_ASSERT(obj_tok->type == JSMN_OBJECT); - jsmntok_t * tok = obj_tok + 1; - int search_str_len = lv_strlen(search_str); - while(tok < past_end_tok) { - LV_ASSERT(tok->type == JSMN_STRING); - jsmntok_t * value_tok = tok + 1; - int key_len = tok->end - tok->start; - if(key_len == search_str_len && 0 == lv_memcmp(search_str, json + tok->start, search_str_len)) { - return value_tok; - } - tok += 2; - while(tok < past_end_tok && tok->start < value_tok->end) { - tok++; - }; - } - return NULL; -} - -static jsmntok_t * array_index(uint32_t index, jsmntok_t * array_tok, jsmntok_t * past_end_tok) -{ - LV_ASSERT(array_tok->type == JSMN_ARRAY); - jsmntok_t * tok = array_tok + 1; - while(tok < past_end_tok && tok->start < array_tok->end) { - jsmntok_t * element_token = tok; - if(index-- == 0) { - return element_token; - } - tok++; - while(tok < past_end_tok && tok->start < element_token->end) { - tok++; - }; - } - return NULL; -} - -static jsmntok_t * unwrap(jsmntok_t * x) { - LV_ASSERT(x); - return x; -} - -static gltf_data_t * load_gltf(const char * gltf_path) -{ - gltf_data_t * data = lv_malloc(sizeof(gltf_data_t)); - - FILE * f = fopen(gltf_path, "r"); - if(f == NULL) { - perror("fopen"); - LV_LOG_ERROR("could not open '%s'", gltf_path); - exit(1); - } - - fseek(f, 0, SEEK_END); - int gltf_json_len = ftell(f); - fseek(f, 0, SEEK_SET); - - char * gltf_json = lv_malloc(gltf_json_len); - fread(gltf_json, 1, gltf_json_len, f); - fclose(f); - - jsmntok_t * tokens = NULL; - int token_count; - - int token_max = 1024; - while(1) { - tokens = lv_malloc(token_max * sizeof(jsmntok_t)); - jsmn_parser parser; - jsmn_init(&parser); - token_count = jsmn_parse(&parser, gltf_json, gltf_json_len, tokens, token_max); - if(token_count >= 0) { - break; - } - LV_ASSERT(token_count == JSMN_ERROR_NOMEM); - token_max *= 2; - lv_free(tokens); - } - - LV_ASSERT(token_count > 0 && tokens[0].type == JSMN_OBJECT); - - jsmntok_t * past_end_token = tokens + token_count; - - jsmntok_t * asset = unwrap(search_obj(gltf_json, "asset", tokens, past_end_token)); - jsmntok_t * version = unwrap(search_obj(gltf_json, "version", asset, past_end_token)); - int version_len = version->end - version->start; - char * version_str = gltf_json + version->start; - if(version_len != 3 || 0 != lv_memcmp(gltf_json + version->start, "2.0", 3)) { - LV_LOG_ERROR("gltf version '%.*s' not supported. Only 2.0 supported.", version_len, version_str); - exit(1); - } - - jsmntok_t * buffers = unwrap(search_obj(gltf_json, "buffers", tokens, past_end_token)); - LV_ASSERT(buffers->type == JSMN_ARRAY); - jsmntok_t * buffer0 = buffers + 1; - LV_ASSERT(buffer0->type == JSMN_OBJECT); - jsmntok_t * uri = unwrap(search_obj(gltf_json, "uri", buffer0, past_end_token)); - uint32_t uri_len = uri->end - uri->start; - LV_ASSERT(uri_len >= sizeof(BUFFER_URI_START) - 1); - LV_ASSERT(0 == lv_memcmp(BUFFER_URI_START, gltf_json + uri->start, sizeof(BUFFER_URI_START) - 1)); - char * b64 = gltf_json + (uri->start + (sizeof(BUFFER_URI_START) - 1)); - uint32_t b64_len = uri_len - (sizeof(BUFFER_URI_START) - 1); - - uint32_t decoded_len = B64_REV(b64_len); - uint8_t * decoded = lv_malloc(decoded_len); - - b64Decode(decoded, (uint8_t *) b64, b64_len); - - jsmntok_t * byteLength = unwrap(search_obj(gltf_json, "byteLength", buffer0, past_end_token)); - LV_ASSERT(strtoul(gltf_json + byteLength->start, NULL, 10) <= decoded_len); - - jsmntok_t * meshes = unwrap(search_obj(gltf_json, "meshes", tokens, past_end_token)); - jsmntok_t * meshes0 = unwrap(array_index(0, meshes, past_end_token)); - jsmntok_t * primitives = unwrap(search_obj(gltf_json, "primitives", meshes0, past_end_token)); - jsmntok_t * primitives0 = unwrap(array_index(0, primitives, past_end_token)); - jsmntok_t * mode = search_obj(gltf_json, "mode", primitives0, past_end_token); - LV_ASSERT(mode == NULL || strtoul(gltf_json + mode->start, NULL, 10) == 4); /* triangles mode */ - jsmntok_t * indices = unwrap(search_obj(gltf_json, "indices", primitives0, past_end_token)); - uint32_t indices_accessor_index = strtoul(gltf_json + indices->start, NULL, 10); - jsmntok_t * attributes = unwrap(search_obj(gltf_json, "attributes", primitives0, past_end_token)); - jsmntok_t * position = unwrap(search_obj(gltf_json, "POSITION", attributes, past_end_token)); - uint32_t vertices_accessor_index = strtoul(gltf_json + position->start, NULL, 10); - - jsmntok_t * accessors = unwrap(search_obj(gltf_json, "accessors", tokens, past_end_token)); - jsmntok_t * accessor; - jsmntok_t * accessor_bufferview; - jsmntok_t * accessor_component_type; - jsmntok_t * accessor_count; - jsmntok_t * accessor_type; - - accessor = unwrap(array_index(vertices_accessor_index, accessors, past_end_token)); - accessor_bufferview = unwrap(search_obj(gltf_json, "bufferView", accessor, past_end_token)); - uint32_t vertices_bufferview_index = strtoul(gltf_json + accessor_bufferview->start, NULL, 10); - accessor_component_type = unwrap(search_obj(gltf_json, "componentType", accessor, past_end_token)); - LV_ASSERT(strtoul(gltf_json + accessor_component_type->start, NULL, 10) == 5126); - accessor_count = unwrap(search_obj(gltf_json, "count", accessor, past_end_token)); - data->vertex_count = strtoul(gltf_json + accessor_count->start, NULL, 10); - jsmntok_t * accessor_max = unwrap(search_obj(gltf_json, "max", accessor, past_end_token)); - data->vertex_max[0] = atof(gltf_json + unwrap(array_index(0, accessor_max, past_end_token))->start); - data->vertex_max[1] = atof(gltf_json + unwrap(array_index(1, accessor_max, past_end_token))->start); - data->vertex_max[2] = atof(gltf_json + unwrap(array_index(2, accessor_max, past_end_token))->start); - jsmntok_t * accessor_min = unwrap(search_obj(gltf_json, "min", accessor, past_end_token)); - data->vertex_min[0] = atof(gltf_json + unwrap(array_index(0, accessor_min, past_end_token))->start); - data->vertex_min[1] = atof(gltf_json + unwrap(array_index(1, accessor_min, past_end_token))->start); - data->vertex_min[2] = atof(gltf_json + unwrap(array_index(2, accessor_min, past_end_token))->start); - accessor_type = unwrap(search_obj(gltf_json, "type", accessor, past_end_token)); - LV_ASSERT(accessor_type->end - accessor_type->start == 4 && 0 == lv_memcmp("VEC3", gltf_json + accessor_type->start, 4)); - - accessor = unwrap(array_index(indices_accessor_index, accessors, past_end_token)); - accessor_bufferview = unwrap(search_obj(gltf_json, "bufferView", accessor, past_end_token)); - uint32_t indices_bufferview_index = strtoul(gltf_json + accessor_bufferview->start, NULL, 10); - accessor_component_type = unwrap(search_obj(gltf_json, "componentType", accessor, past_end_token)); - LV_ASSERT(strtoul(gltf_json + accessor_component_type->start, NULL, 10) == 5123); - accessor_count = unwrap(search_obj(gltf_json, "count", accessor, past_end_token)); - data->index_count = strtoul(gltf_json + accessor_count->start, NULL, 10); - accessor_type = unwrap(search_obj(gltf_json, "type", accessor, past_end_token)); - LV_ASSERT(accessor_type->end - accessor_type->start == 6 && 0 == lv_memcmp("SCALAR", gltf_json + accessor_type->start, 6)); - - jsmntok_t * bufferviews = unwrap(search_obj(gltf_json, "bufferViews", tokens, past_end_token)); - jsmntok_t * bufferview; - jsmntok_t * bufferview_buffer; - jsmntok_t * bufferview_bytelength; - jsmntok_t * bufferview_byteoffset; - uint32_t length; - uint32_t offset; - - bufferview = unwrap(array_index(vertices_bufferview_index, bufferviews, past_end_token)); - bufferview_buffer = unwrap(search_obj(gltf_json, "buffer", bufferview, past_end_token)); - LV_ASSERT(strtoul(gltf_json + bufferview_buffer->start, NULL, 10) == 0); - bufferview_bytelength = unwrap(search_obj(gltf_json, "byteLength", bufferview, past_end_token)); - length = strtoul(gltf_json + bufferview_bytelength->start, NULL, 10); - bufferview_byteoffset = unwrap(search_obj(gltf_json, "byteOffset", bufferview, past_end_token)); - offset = strtoul(gltf_json + bufferview_byteoffset->start, NULL, 10); - data->vertex_array = lv_malloc(length); - lv_memcpy(data->vertex_array, decoded + offset, length); - - bufferview = unwrap(array_index(indices_bufferview_index, bufferviews, past_end_token)); - bufferview_buffer = unwrap(search_obj(gltf_json, "buffer", bufferview, past_end_token)); - LV_ASSERT(strtoul(gltf_json + bufferview_buffer->start, NULL, 10) == 0); - bufferview_bytelength = unwrap(search_obj(gltf_json, "byteLength", bufferview, past_end_token)); - length = strtoul(gltf_json + bufferview_bytelength->start, NULL, 10); - bufferview_byteoffset = unwrap(search_obj(gltf_json, "byteOffset", bufferview, past_end_token)); - offset = strtoul(gltf_json + bufferview_byteoffset->start, NULL, 10); - data->index_array = lv_malloc(length); - lv_memcpy(data->index_array, decoded + offset, length); - - lv_free(decoded); - lv_free(tokens); - lv_free(gltf_json); - - return data; -} - -static void free_gltf_data(gltf_data_t * gltf_data) -{ - lv_free(gltf_data->index_array); - lv_free(gltf_data->vertex_array); - lv_free(gltf_data); -} - -unsigned int render_gltf_model_to_opengl_texture(const char * gltf_path, uint32_t texture_w, - uint32_t texture_h, lv_color_t color) -{ - unsigned int texture; - - gltf_data_t * gltf_data = load_gltf(gltf_path); - - GL_CALL(glGenTextures(1, &texture)); - GL_CALL(glBindTexture(GL_TEXTURE_2D, texture)); - GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)); - GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)); - GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); - GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); - GL_CALL(glPixelStorei(GL_UNPACK_ALIGNMENT, 1)); - - GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, texture_w, texture_h, 0, GL_BGRA, GL_UNSIGNED_BYTE, NULL)); - - GL_CALL(glGenerateMipmap(GL_TEXTURE_2D)); - GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 20)); - GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST_MIPMAP_NEAREST)); - - GL_CALL(glBindTexture(GL_TEXTURE_2D, texture)); - - unsigned int renderbuffer; - GL_CALL(glGenRenderbuffers(1, &renderbuffer)); - GL_CALL(glBindRenderbuffer(GL_RENDERBUFFER, renderbuffer)); - GL_CALL(glRenderbufferStorage(GL_RENDERBUFFER, GL_DEPTH_COMPONENT24, texture_w, texture_h)); - - unsigned framebuffer; - GL_CALL(glGenFramebuffers(1, &framebuffer)); - GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, framebuffer)); - - GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, texture, 0)); - GL_CALL(glFramebufferRenderbuffer(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_RENDERBUFFER, renderbuffer)); - - /* normalize */ - float * tp = gltf_data->vertex_array; - unsigned tpl = gltf_data->vertex_count * 3; - float scale_factor = 1.1f * fmaxf(fabsf(gltf_data->vertex_min[0]), - fmaxf(fabsf(gltf_data->vertex_min[1]), - fmaxf(fabsf(gltf_data->vertex_min[2]), - fmaxf(fabsf(gltf_data->vertex_max[0]), - fmaxf(fabsf(gltf_data->vertex_max[1]), - fabsf(gltf_data->vertex_max[2])))))); - float scale_factor_neg = -scale_factor; - for(unsigned i = 0; i < tpl; i++) { - if(i % 3 == 1) tp[i] /= scale_factor_neg; /* flip y coordinate */ - else tp[i] /= scale_factor; - } - - static const char *vertexShaderCode = - "#version 300 es\n" - STRINGIFY( - precision lowp float; - in vec3 pos; - out float zpos; - void main() { - gl_Position = vec4(pos, 1.0); - zpos = pos.z; - } - ); - - static const char *fragmentShaderCode = - "#version 300 es\n" - STRINGIFY( - precision lowp float; - uniform vec4 color; - in float zpos; - out vec4 color_out; - void main() { - float z2 = -(zpos * 0.5f - 0.5f); - color_out = vec4(z2, z2, z2, 1.0f) * color; - } - ); - - GL_CALL(glViewport(0, 0, texture_w, texture_h)); - - int shader_compiled; - - unsigned int program; - GL_CALL(program = glCreateProgram()); - - unsigned int vert; - GL_CALL(vert = glCreateShader(GL_VERTEX_SHADER)); - GL_CALL(glShaderSource(vert, 1, &vertexShaderCode, NULL)); - GL_CALL(glCompileShader(vert)); - - GL_CALL(glGetShaderiv(vert, GL_COMPILE_STATUS, &shader_compiled)); - if (!shader_compiled) - { - GLchar InfoLog[512]; - GL_CALL(glGetShaderInfoLog(vert, sizeof(InfoLog), NULL, InfoLog)); - LV_LOG_ERROR("%s", InfoLog); - return 1; - } - - unsigned int frag; - GL_CALL(frag = glCreateShader(GL_FRAGMENT_SHADER)); - GL_CALL(glShaderSource(frag, 1, &fragmentShaderCode, NULL)); - GL_CALL(glCompileShader(frag)); - - GL_CALL(glGetShaderiv(frag, GL_COMPILE_STATUS, &shader_compiled)); - if (!shader_compiled) - { - GLchar InfoLog[512]; - GL_CALL(glGetShaderInfoLog(frag, sizeof(InfoLog), NULL, InfoLog)); - LV_LOG_ERROR("%s", InfoLog); - return 1; - } - - GL_CALL(glAttachShader(program, frag)); - GL_CALL(glAttachShader(program, vert)); - GL_CALL(glLinkProgram(program)); - GL_CALL(glUseProgram(program)); - - unsigned int vbo; - GL_CALL(glGenBuffers(1, &vbo)); - GL_CALL(glBindBuffer(GL_ARRAY_BUFFER, vbo)); - GL_CALL(glBufferData(GL_ARRAY_BUFFER, gltf_data->vertex_count * (3 * sizeof(float)), gltf_data->vertex_array, GL_STATIC_DRAW)); - - int pos_loc; - GL_CALL(pos_loc = glGetAttribLocation(program, "pos")); - - GL_CALL(glEnableVertexAttribArray(pos_loc)); - GL_CALL(glBindBuffer(GL_ARRAY_BUFFER, vbo)); - GL_CALL(glVertexAttribPointer(pos_loc, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), NULL)); - - int color_loc; - GL_CALL(color_loc = glGetUniformLocation(program, "color")); - - GL_CALL(glUniform4f(color_loc, - ((float) color.red) / 255.0f, - ((float) color.green) / 255.0f, - ((float) color.blue) / 255.0f, - 1.0)); - - unsigned int ebo; - GL_CALL(glGenBuffers(1, &ebo)); - GL_CALL(glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ebo)); - GL_CALL(glBufferData(GL_ELEMENT_ARRAY_BUFFER, gltf_data->index_count * sizeof(uint16_t), gltf_data->index_array, GL_STATIC_DRAW)); - GL_CALL(glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ebo)); - - GL_CALL(glEnable(GL_DEPTH_TEST)); - GL_CALL(glDepthFunc(GL_LESS)); - - GL_CALL(glClearColor(0.0f, 0.0f, 0.0f, 0.0f)); - GL_CALL(glClearDepth(1.0f)); - GL_CALL(glDepthMask(true)); - GL_CALL(glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)); - - GL_CALL(glDrawElements(GL_TRIANGLES, gltf_data->index_count, GL_UNSIGNED_SHORT, 0)); - - GL_CALL(glDisable(GL_DEPTH_TEST)); - - GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, 0)); - GL_CALL(glBindTexture(GL_TEXTURE_2D, 0)); - GL_CALL(glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0)); - GL_CALL(glBindBuffer(GL_ARRAY_BUFFER, 0)); - GL_CALL(glBindRenderbuffer(GL_RENDERBUFFER, 0)); - GL_CALL(glUseProgram(0)); - - /* delete everything except the texture */ - GL_CALL(glDeleteBuffers(1, &ebo)); - GL_CALL(glDeleteBuffers(1, &vbo)); - GL_CALL(glDeleteRenderbuffers(1, &renderbuffer)); - GL_CALL(glDeleteFramebuffers(1, &framebuffer)); - GL_CALL(glDeleteProgram(program)); - GL_CALL(glDeleteShader(vert)); - GL_CALL(glDeleteShader(frag)); - - free_gltf_data(gltf_data); - - return texture; -} diff --git a/gltf_loader.h b/gltf_loader.h deleted file mode 100644 index d6aa869..0000000 --- a/gltf_loader.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef GLTF_LOADER_H -#define GLTF_LOADER_H - -#ifdef __cplusplus -extern "C" { -#endif - -#include "lvgl/lvgl.h" - -unsigned int render_gltf_model_to_opengl_texture(const char * gltf_path, uint32_t texture_w, - uint32_t texture_h, lv_color_t color); - -#ifdef __cplusplus -} /*extern "C"*/ -#endif - -#endif /*GLTF_LOADER_H*/ diff --git a/gltfs/abstract_2-_torus_knot.glb b/gltfs/abstract_2-_torus_knot.glb new file mode 100644 index 0000000..835319f Binary files /dev/null and b/gltfs/abstract_2-_torus_knot.glb differ diff --git a/gltfs/logo1.glb b/gltfs/logo1.glb new file mode 100644 index 0000000..5300ce7 Binary files /dev/null and b/gltfs/logo1.glb differ diff --git a/gltfs/permalinks.txt b/gltfs/permalinks.txt deleted file mode 100644 index 9a193dc..0000000 --- a/gltfs/permalinks.txt +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/KhronosGroup/Vulkan-Samples-Assets/blob/8db8ce9c528330f0b1261b07531b009732b08731/scenes/teapot.gltf -https://github.com/KhronosGroup/Vulkan-Samples-Assets/blob/8db8ce9c528330f0b1261b07531b009732b08731/scenes/torusknot.gltf diff --git a/gltfs/support_assets.glb b/gltfs/support_assets.glb new file mode 100644 index 0000000..fd5d8c3 Binary files /dev/null and b/gltfs/support_assets.glb differ diff --git a/gltfs/teapot.gltf b/gltfs/teapot.gltf index 5facd1e..94071ea 100644 --- a/gltfs/teapot.gltf +++ b/gltfs/teapot.gltf @@ -60,7 +60,12 @@ "materials" : [ { "name" : "Material", - "pbrMetallicRoughness" : {} + "doubleSided" : true, + "pbrMetallicRoughness" : { + "baseColorFactor" : [ 1.0, 0.1, 0.15, 1.0 ], + "roughnessFactor" : 0.05, + "metallicFactor" : 0.01 + } } ], "meshes" : [ @@ -82,6 +87,7 @@ { "mesh" : 0, "name" : "Teapot", + "rotation" : [ 0, 0.8660254, 0, 0.5 ], "scale" : [ 10, 10, diff --git a/gltfs/torusknot.gltf b/gltfs/torusknot.gltf index 655c1cd..372cab4 100644 --- a/gltfs/torusknot.gltf +++ b/gltfs/torusknot.gltf @@ -67,11 +67,24 @@ "uri" : "data:application/octet-stream;base64,bPM1P2gHNL/iAXE8bU02P2OBMb/CEeE9wulgPyWpkr6HocM+vMtdP2Thsb5vobc+n4lPP4zBRT4bew0/lUVKP5ORyT023Ro/D68HPz2bHj8oNRQ/A28BPwgXBD9iATE/x7HjPcQlYj/SEek+bPG1PZgRTD8y4Rg/WbmsvtW3aj+1YVo+aPWzvr2ZXj9jnbE+Zvsyv2u3NT9doa69Z1Uzv22tNj88AZ47wZFgv0GtoD50+bm+u29dv3m5vD5dSa6+pPdRv1d5K74YCQy/mVFMvzOxmb0yBxm/FBMKvzbfGr8s8RW/B7sDv/+1/75lazK/wXHgvcT9Yb/U3em+bgG3vZbZSr81eRq/Z5WzPtVrar+RoUi+csG4Pr11Xr9bWa2+bU02P2OBMb/CEeE9bPM1P2gHNL/iAXE8bt82P1gtLL+M2UU+zVlmP9DZZ75+5b4+sa1YPxt5jT7SEek+JWsSP2lhND+uBdc+MbEYPuYBcz8cwY0+QYGgvuWPcj/+AX89ZUkyv2WFMj9bUS2+y5llvwothT5uGbe+tjFbvwAtgL7PWee+KYsUv2QhMr+xpdi+JNkRvuj/c78RqYi+Vh2rPuITcb85YRy9bt82P1gtLL+M2UU+b4M3P0u3Jb8JjYQ+2j9tP3bJOr5QGag+yDdkP1DBpz5AMaA+QNUfP4ARQD+9kV4+kblIPvVxej8RcYg9I5WRvugPdD+eAc+9Y3sxv1uvLT/xsXi+2M1rv8OBYT5JUaS+zYFmvzY5m74/rZ++Qvsgv3+TP7+wAVi+cEE4vveJe7944Tu9QWGgPuIRcb/3cfs9b4M3P0u3Jb8JjYQ+cPc3Pz+ZH787tZ0+561zP1bZKr4HmYM+3utuP1NFqT4fcQ8+WCssP3ttPT+FgUK86DF0Puo1dT9I4SO+CWWEvturbT8RlYi+Yvswv1DPJz83kZu+45Vxv6TRUT4K7YS+4uFwvzo9nb4juRG+WYMsv3oPPb9Swag8v4Ffvuuxdb9q8TQ+KvWUPtVHar8eyY4+cPc3Pz+ZH787tZ0+cUM4PzVPGr9hSbA+76V3P3dhO75nYTM+62l1PyFhkD43YRu9Z3kzP1jrKz/reXW+DYWGPsYhYz+EGcK+9tl6vr+lXz+uPde+Yh8xv0N3IT9o4bO+6kF1v71ZXj5/eT++7hd3vwrhhL4DgQE9aB80v1W9Kr/28Xo++Ol7vsdHY7+OGcc+G2GNPrrdXL+y0dg+cUM4PzVPGr9hSbA+cZk4PyzhFb97pb0+8DV4P8uRZb6S4cg97P91P41hRj6UQUq+aM8zPx4zDz/DWeG+DD2GPo+fRz8jhxG/+1l9vplRTD8ZoQy/ZPsxvzdRGz+LTcW+7PV1vwLVgD7cMe6973F3v2WZMr6BUUA+aX00vxzbDb/FleI++7F9vpDTR78m5xI/G0mNPpWDSr8YwQs/cZk4PyzhFb97pb0+chU5PyVZEr+NmcY+65t1Px9Vj74UAQo94v1wP1ehqz1PSae+W40tP7Ix2T4zrxm/6Ul0Pk9zJz9vvze/D1GHvm7JNj9M9SW/Z1EzvywFFj+hidC+6MVzvzTBmT7DYWG95UtyvxrhjL1DcaE+XAsuv64917400Rk/zZlmvlABKL9xWTg/KWmUPmwDNr9IASQ/chU5PyVZEr+NmcY+c6M5PyDND7+Y5cs+4XdwP19dr74WQYu8z4lnPxgBDL2zrdm+RCMiPyFdkD5xezi/lBlKPg1DBj+oBVS/KkGVvkNjIT9wKzi/ab80vyT/ET+u7da+3h9vv27Btj5eAa+70s1ov3OhOT2nrdM+RXUivx9Jj75xaTg/ejk9vg43B7+oJ1Q/QuGgPkOFIb9rlTU/c6M5PyDND7+Y5cs+dBE6Px1hDr+dTc4+0jVpP6Ix0b7KwWS9tY9aPzupHb79of6+JscSPx9xDz6dpU6/JskSPpeFyz7QA2i/TaWmvhorDT+Jn0S/bO01vx9lDz+07dm+0Vdov61F1j4QQQg9uNlbv0whJj7yyfg+JvUSvx25Dr6djU4/DXkGvpw1zr7Q42c/YiGxPhwZDr+Do0E/dBE6Px1hDr+dTc4+dBM6Pxw1Dr+duc4+wNNfP+mt9L5Zoay9lVdKPxmljL4YKwy/APL/PkABILm7tV2/Q3GhPRl9jD7rV3W/dXm6vumh9D6Zo0y/bY82vxw3Dj+26dq+v2lfv/D19z73oXs9l7dLvyDJjz4TVwk/AAsAvyABkLm7q10/EiGJvSABkL7qD3U/iCHEPvAJ+L6TVUk/dBM6Pxw1Dr+duc4+c1U5Px9lD7+cIc4+qOtTPxozDb+iMdG9bYc2P5ety74ozRO/pgXTPiDRD77Nc2a/3AFuOzthHT7683y/oXXQvqIl0T6iH1G/bV02vx1hDj+2Gdu+qAFUvxwPDj9C8aA9cBk4v5z1zT4iCRE/pgnTvhwRDj7Ng2Y/DgEHPE2RJr75k3w/s43ZPq1R1r6bd00/c1U5Px9lD7+cIc4+b3E3PyT/Eb+blc0+isdEP0NrIb+3odu9PUkePw1ZBr8swxW/OjmdPiGVkL7Rp2i/WYGsvRbBCj3+736/0vHovl9Vrz6lbVK/ahs1vyDNDz+3kdu+i4VFv0N3IT9SEak9QDUgvw4PBz8mDRM/O02dvh7ljj7S5Wg/igHFPXehO739iX4/43HxPm7Ntr6dZ04/b3E3PyT/Eb+blc0+aPUzPywHFr+dSc4+Y4ExP27XNr+GAcO9AX0AP0+PJ78huxC/ctE4PrNx2b7GG2O/gYlAvllRrL31gXq/BUsCvx9Jjz6hYVC/ZYsyvyVZEj+6Pd2+Zjczv2zvNT8cMY49Bg0Dv1DFJz8cKQ4/dOk5vq211j7Hs2M/mUlMPhexiz30PXo/DA8GPzTRmb6YE0w/aPUzPywHFr+dSc4+XWsuPzdVG7+jmdE+M2EZP5lhTL/u4Xa9caG4Po+9R78G0wK/4EHwPB9TD7+o+VO/PaWevo25Rr7dRW6/JOMRv8uBZT6VYUq/XW0uvyzjFT/C3eC+OX0cv5VnSj8ZoQw9gNW/vo99Rz8BlwA/DAEGvRt7DT+qLVU/R6WjPmThMT7ddW4/KbsUPwLpgL6MI0Y/XWsuPzdVG7+jmdE+TW8mP0N/Ib+yzdg+8uX4Pr+1X78YAQw7ktlIPsY7Y7+rUdW+JjETvlgFLL90+zm/yt3kviF9kL6zS1m/RbMiv3dpOz6AAUC/UXkovzVVGj/O6ea+A3EBv7m/XD+0wdm8vMFdvsbdYj+jrdE+F2kLPlVLKj947zs/0VXoPgl5hD61SVo/SA0kP72RXr55ezw/TW8mP0N/Ib+yzdg+ONEbP1DdJ7/JseQ+cC24Ptu5bb90Abo9LsGWPOtDdb8lZZK+T2Gnvnt1Pb8tcRa/La0Wv1JBqb562zy/Ztsyv1YRKz5kFTK/QUUgvz+lHz/fqe++jbXGvtQ1aj/HkeO9iWFEvetZdT8gBZA+QgWhPnmxPD8yHRk/L5UXPzrlnD5+yT4/ZU8yP6QhUr5gATA/ONEbP1DdJ7/JseQ+HYMOP1zDLb/qLfU+1XlqPugVdL+RsUg+QXkgvvVter8WCQu+AVkAv4ABQL+62dy+b5s3v0+Vp747ex2/f2s/v3Y5Oz5HZyO/Kh8Vv0zPJT/3afu+Di2HvuIZcT+qAVW+AbkAPvd9ez8bWQ0++Xn8Pn99Pz/HaeM+cBU4Pzb5mj5AISA/egM9P8T5Yb5GJSM/HYMOP1zDLb/qLfU++h39PmWdMr8JtQQ/ovHQPeWRcr82EZs+Q22hvubrcr8/gR88TYUmv2g9NL8k2ZG+o1lRvxoljb4DUwG/jMtFv9F5aD4wwxe/DDEGv1lNLD8LjwW/FMEJvuI1cT86BZ2+M6WZPugxdD9wAbi7T40nP2Q1Mj8u/ZY+o5tRPwDifz4JTwQ/hAdCPwt9hb4yExk/+h39PmWdMr8JtQQ/sYHYPmzNNb8gFxA/FMGJvNWxar+ZScw+zb3mvsQFYr8OwQY+iVlEvz1vHr9bWS2+xVdiv4oBRb609dm+ihlFvyb5kj4k4xG/ztXmvmOhMT8fuw+/ggHBu9WZaj+a4cy+zAHmPsVDYj8LgQW+jaVGPzb/Gj9qATU+xCliP1YZKz7AFeA+gbtAP0L5oL4oBRQ/sYHYPmzNNb8gFxA/YtGwPm7DNr847Rs/AYkAvr2PXr/prfQ+IPcPv5jtS7/G+WI+tB9avwjlA7968by91j9rv5Dxx72HmcO+fUs+v2Q1sj4kORK/eCG8vmgrND83oxu/0NHnPb2ZXj/sGfa+IjURP5b9Sj/IwWO+uVdcP/+x/z6UEco91aFqPzFxmD2SLck+dBM6P3oRvb4oOxQ/YtGwPm7DNr847Rs/EtGIPmorNb9PbSc/xkFjvqAHUL8U8Qk/TuMmv2g1NL8hTZA+0h1pv6QN0r6UQUq93P9tv+wB9rt5iby+Z5czv5lNzD4uIxe/ItGQvmdFMz9Qxye/vPFdPp+RTz8WLQu/UZsoP2VxMj8iFZG+1tlqP5TNyT7CwWA92hVtP6WBUryCBcE+YPUvP6rR1L4xeRg/EtGIPmorNb9PbSc/jjlHPmI5Mb9k4TE/N4GbvoGrQL8rjxU/caU4vzthHb9HWaM+5tdyv0I1ob76wfy82stsvxoxjT1/Ub++T28nv7793j49Ux6/pOFRvl+FLz9mzzK/Nt2aPn+lPz8uBRe/dVE6PzYrGz9ILaS+6BF0PzNpmT4hgRA92MFrP2IRsb2FjcI+SX8kP8zp5b4+7R4/jjlHPmI5Mb9k4TE/D3kHPleZK7926zo/ehG9vmO5Mb88JR4/jNNFvxL1CL9e0a4+8sV4v+D5b76qwdS806VpvwjZAz6Nica+OOMbv9WJ6j5MxSW/HskOvlQFKj94BTy/ejG9PmF5MD8/gR+/ji9HPw7DBj9fda++84t5P8VhYj7mwfI80ZloPyWpEr6S3cg+M4sZP+Ax8L5M7yU/D3kHPleZK7926zo/VOGpPUo3Jb+FY0I/rXnWvkghJL9JmyQ/njFPv99J775sFbY++C18v1zpLb64Ady8zANmv2IhMT6dic6+JB8Sv+GF8D5ZYyy/aXG0vUjVIz+HZ0O/rbnWPkbtIj9LtyW/oDNQP9dx6z5tfba++Z98P0bBIj7qwfQ8ygllP3rxPL6gQdA+IEEQP+oN9b5ZXSw/VOGpPUo3Jb+FY0I/gME/PT7fHr+RX0g/0X3ovjFtGL9Tqyk/q4dVv6Yl0753hbs+/At+v+ux9b3Pgee8xstiv6NZUT6qIdW+FbEKv+bN8j5jpzG/osFQvTzFHT+SK0m/0ZXoPi9vFz9Vgyq/rDdWP6Ah0D54wbu+/UV+P8mR5D35gfw8xO9hP7VZWr6tidY+Ei8JP+1F9r5jnzE/gME/PT7fHr+RX0g/dMG5PDItGb+aBU0/6VX0vh7RDr9c0S0/s5FZv3oBvb6BfcA+/gd/v1GRqL3EQeK8wWVgv9DhZz6zadm+C5UFv+YF8z5rcTW/rsHWvDFfGD+bmU2/6DH0PhwbDj9dcS6/tAFaP3bZuj6BocC+/iF/PzhBnD3owfM8v61fP91xbr61ndo+CVsEP+uR9b5rfTU/dMG5PDItGb+aBU0/DAEGPCmFFL+hfVA/9237vg9FB79jSTE/uPVbv1gBrL6LhcU+/4t/v7thXb2MwcW8vt9ev/AJeD62Odu+BXcCv+WJ8j5w3Te/dYE6vCj3Ez+i4VC/9gn7Pg7RBj9kxTG/uDNcP1WVqj6LscW+/5d/P5mBTD2mAdM8vUteP/mpfL64Qdw+A3MBP+lZ9L5w+Tc/DAEGPCmFFL+hfVA/CAGEOiIXEb+m51I//gX/vgOdAb9oMzQ/ujFdvz4ln76Vuco+ANJ/vwohBb0kQZK8vBdevwVJgj61vdq+AuMAv+Vl8j5yAzm/BgGDuyLBED+mI1O//WX+PgNlAT9plTS/u0VdPz1lnj6W+cq+ANZ/P+uB9Tw2QZs8u6ddPwjVg763nds+AA8AP+ed875yMTk/CAGEOiIXEb+m51I/YAGwuh77Dr+pV1Q/AC0Av/dF+75tiTY/u69dvyt5lb6g4c8+APR/v/IBebw2ARu8vNNdvxD1hz6xXdi+AVUAv+dl8z5yEzm/iAHEuh7RDj+pc1S//33/PvY5+z5u2Ta/u59dPytJlT6gQdC+APZ/P8uBZTxJgSQ8u4NdPxLdiL6yEdk+/03/Pugh9L5zTTk/YAGwuh77Dr+pV1Q/cAG4uhw5Dr+q2VQ/AUUAv+wp9r5wMzg/vMldvxwNjr6pldQ+AACAvwAAAAAAAACAvMldvxwNjj6pldS+AUUAv+wp9j5wMzi/cAG4uhw5Dj+q2VS//3H/Pu2B9j5xdzi/u5tdPx1ljj6qHdW+AACAPwAAAAAAAACAu5tdPx1hjr6qHdU+/3H/Pu2B9r5xdzg/cAG4uhw5Dr+q2VQ/iAHEuh7RDr+pc1Q/AVUAv+dh875yEzk/vNNdvxD1h76xXdg+APR/v/OBeTw2ARs8u61dvyt9lT6g4c++ACsAv/dJ+z5tiTa/YAGwuh77Dj+pV1S//03/Pugl9D5zTTm/u4VdPxLdiD6yEdm+APZ/P8uBZbxIASS8u59dPytJlb6gQdA+/33/PvY5+75u2TY/iAHEuh7RDr+pc1Q/CgGFuyG/EL+mI1M/AucAv+Vh8r5yAzk/vBlevwVFgr61udo+ANJ/vwthBT0kAZI8ui9dvz4tnz6Vvcq+/v3+vgOhAT9oNTS/GAGMOiIXET+m51K/ABEAP+ed8z5yLzm/u6ldPwjRgz63mdu+ANZ/P+uB9bw2wZq8u0NdPz1hnr6WAcs+/WH+PgNjAb9plzQ/CgGFuyG/EL+mI1M/eYE8vCj1E7+i4VA/BX8Cv+WF8r5w2Tc/vuNev/Dxd762Lds+/4t/v7zhXT2KAcU8uPFbv1gNrD6LjcW+9137vg9JBz9jSzG/EAEIPCmHFD+hfVC/A3sBP+lV9D5w9ze/vU9eP/mZfD64Ndy+/5d/P5mhTL2kAdK8uC9cP1WZqr6LvcU+9v36Pg7PBr9kyzE/eYE8vCj1E7+i4VA/sEHYvDFbGL+bm00/C6EFv+b58r5rbzU/wWtgv9DBZ76zWdk+/gV/v1LxqD3CQeE8s4tZv3oVvT6BicC+6EH0vh7XDj9c0y2/dkG7PDIvGT+aBU2/CWUEP+uJ9T5reTW/v7NfP91Zbj61idq+/iF/PzlhnL3kQfK8tPtZP3bZur6BvcA+6B30PhwZDr9dey4/sEHYvDFbGL+bm00/pCFSvTu/Hb+SL0k/FsUKv+W58r5jnTE/xtdiv6IhUb6qAdU+/Al+v+wx9j3LgeU8q3tVv6dF0z53obu+0VHovjF1GD9TsSm/gkFBPT7fHj+RXUi/E0MJP+wx9j5jlzG/xPlhP7QhWj6tada+/UV+P8rx5L30Afq8rC1WP6Ap0L546bs+0W3oPi9vF79Vkyo/pCFSvTu/Hb+SL0k/a2G1vUjLI7+Ha0M/JDcSv+Fp8L5ZWSw/zA9mv2LZML6dYc4++Ct8v1xBLj6zgdk8nh9Pv99x7z5sMba+rEHWvkgtJD9JoSS/VtGqPUo1JT+FYUK/IVkQP+rx9D5ZUyy/yhVlP3mpPD6gGdC++Z18P0b5Ir7iQfG8oCVQP9d5675ttbY+rYnWPkbnIr9MyyU/a2G1vUjLI7+Ha0M/HkEPvlT1Kb94DTw/OP0bv9Vh6r5LuyU/07FpvwdxA76NYcY+8b94v+FxcD6kQdI8i7tFvxIPCT9e7a6+es28vmTHMT88Kx6/EAkIPleXKz925zq/M6cZP+AN8D5M4SW/0adoPyVZEj6Rqci+84l5P8WRYr7cQe68jiFHPw2/Br9gxa8+ev28PmFtML8/nR8/HkEPvlT1Kb94DTw/paFSvl9vL79m1TI/T5cnv77B3r48Px4/2tlsvxgBjL1+Fb8+5styv0OFoT7yQfk8cYE4vzuBHT9HfaO+NiGbvoG3QD8rlxW/kPFHPmIvMT9k4TG/SaMkP8up5T4+3x6/2NFrP2Dhrz2FUcK+6At0PzOZmb4bYQ29dDc6PzYtG79JoaQ+NYmaPn+ZP78uKxc/paFSvl9vL79m1TI/IiWRvmYpM79Q1Sc/Z7czv5gJzL4uFRc/3AduvwwBBjx5Ybw+0glpv6Vl0j6SQUk9Tbkmv2lZND8hWZC+xXlivqATUD8U8wm/EjGJPmodNT9PaSe/YBUwP6mN1D4xbRi/2iNtP5OBSTyCwcC+1tlqP5Tdyb65oVy9UY8oP2VbMr8jtZE+u3ldPp9zT78XZQs/IiWRvmYpM79Q1Sc/eXW8vmgJNL83sRs/fWk+v2Thsb4kKxI/1kFrv5OByT2HfcM+tANavwgXBD96wbw9IMUPv5gRTD/G8WK+/2H/vb2ZXj/pqfS+Yi2xPm2vNj847Ru/dC86P3m9vD4oMRS/1a9qPzOhmb2S3ci+uWNcP/+t/76O8ca9IjsRP5bXSr/LqWU+zhHnPb1zXr/trfY+eXW8vmgJNL83sRs/zg3nvmN/Mb8gzw8/ii1FvyWlkr4k3RE/xUtiv4zBRT60+dk+iDFEvz2dHj9bkS0+zU3mvsQlYj8NeQa+BgGDvNW3aj+YMcy+ss3YPmu3NT8gFxC/gtFAP0GpoD4o/xO/xD9iP1eJK76/od++jt9GPzblGr9lcTK+zYXmPsQBYr8RoQg+egG9u9Vtar+brc0+zg3nvmN/Mb8gzw8/DUUGv1gtLL8LowU/jNdFv9DZZ74wwxc/o0NRvxt5jT4DYQE/TVEmv2lhND8kFZI+QvGgvuYBcz8wARi8pZHSPeWPcj829Zq++1n9PmWFMj8JuwS/hBVCPwothT4yERm/pMVRPwAtgL4I+wO/UBkoP2QfMr8q9ZS+NtmaPuj9c79LgSU8EjkJvuITcb88+Z0+DUUGv1gtLL8LowU/KicVv0u3Jb/3kfs+f2k/v3bJOr5HbyM/b3k3v1DBpz47lx0/ABsAv4ARQD+6Md0+P3kfvvVxej8XsQs+1jFrPugPdD+RYUi+HZUOP1uvLT/qOfW+eg89P8OBYT5GISO/cWU4PzY5m74/tR+//YH+Pn+VP7/C0eC+CtEEPveJe78QEQi+DaGGvuIRcb+u6VY+KicVv0u3Jb/3kfs+QUcgvz+ZH7/gye8+ZtMyv1bZKr5kITI/LYUWv1NFqT56+zw/TuWmvnttPT8tnxY/PYGePOo1dT8ltZI+cXm4PturbT9zcbm9ONsbP1DPJz/JveS+ZVkyP6TRUT5g/S+/MP8XPzo9nb59Yz6/R12jPnoPPb8wCRi/aMEzveuxdb8cBY6+jCXGvtVHar/NYeY9QUcgvz+ZH7/gye8+UXcovzVPGr/OAec+Rakiv3dhO76AC0A/yZXkviFhkD6zY1k/JVkSvljrKz90HTo/k6lJPsYhYz+rjdU+8h35Pr+lXz8AAQC7TXMmP0N3IT+y1di+SBckP71ZXj55dTy/0hHpPgrhhL60B1q/HukOPlW/Kr93Wzu/tuFavsdHY7+hodC+AjsBv7rdXL/BgeA8UXcovzVPGr/OAec+XWsuvyzhFb/C6eA+JNsRv8uRZb6VZUo/PWmevo1hRj7dU24/64H1PB4zDz+oD1Q/cvG4Po+fRz8G5QI/M3UZP5lRTD/uQXc9XW0uPzdRGz+jndG+KsMUPwLVgD6MH0a/SCmkPmWZMr7dVW6/94H7vBzbDb+q81S/fgG/vpDTR78BYQC/OVkcv5WDSr8WAQu9XWsuvyzhFb/C6eA+ZYkyvyVZEr+7Rd0+BUUCvx9Vj76hY1A/gDlAvlehqz31h3o/c0k5PrIx2T7GJWM/AZcAP09zJz8iwxA/Y48xP27JNj+GEcM9aPUzPywFFj+dTc6+DBcGPzTBmT6YEUy/mvFMPhrhjL30MXq/csE4vq49177Ho2O/BtMCv1ABKL8cGQ6/ZiMzv2wDNr8c4Y29ZYkyvyVZEr+7Rd0+ahs1vyDND7+3lds+0unovl9dr76lbVI/WBGsvRgBDL3+734/O2WdPiFdkD7Rp2g/PVsePw1DBj8sxRU/is9EP0NjIT+3ods9b3E3PyT/ET+bmc2+433xPm7Btj6dZ06/jPHFPXOhOT39h36/OvWcvh9Jj77S5Wi/QBMgvw43B78mDRO/i3lFv0OFIb9S8ai9ahs1vyDND7+3lds+bV02vx1hDr+2Hds+oW3QvqIx0b6iHVE/9AF6OzupHb7673w/piXTPh9xDz7Nb2Y/bZM2P5eFyz4oyRM/qPFTPxotDT+iMdE9c1U5Px9lDz+cJc6+s5XZPq1F1j6beU2/GYEMPEwhJj75l3y/psnSvh25Dr7Ni2a/cAM4v5w1zr4iDxG/qPtTvxwZDr9C8aC9bV02vx1hDr+2Hds+bY02vxw1Dr+27do+dXG6vumt9L6ZoUw/Q7GhPRmhjL7rUXU/AAUAP0ABILm7r10/lWFKPxmBjD4YJQw/wNdfP+ml9D5Zkaw9dBM6Pxw3Dj+dvc6+iCnEPvD19z6TWUm/EaGIvSDJjz7qGXW/AOb/viABkLm7uV2/l6dLvyABkL4TYQm/v2Vfv/AJ+L74wXu9bY02vxw1Dr+27do+bO01vx9lD7+07dk+TZ2mvhozDb+Jm0Q/JukSPpety77Q+Wc/JtESPyDRD76dmU4/tZdaPzthHT79kf4+0jlpP6Il0T7JoWQ9dA86Px1hDj+dUc6+YimxPhwPDj+DqUG/DDEGvpz1zT7Q82e/Jt8SvxwRDj6do06/uMtbv02RJr7y6fi+0VNov61R1r4RgQi9bO01vx9lD7+07dk+ab80vyT/Eb+u7dY+KjmVvkNrIb9wJTg/lDlKPg1ZBr+o9VM/RC0iPyGRkL5xaTg/z5FnPxbBCj2zldk+4XlwP19Vrz4WwYo8c6E5PyDNDz+Y5cu+QumgPkN3IT9roTW/evk8vg4NBz+pR1S/RV0ivx7hjj5xkTi/0b9ov3ehO72o3dO+3h1vv27Ntr5YAaw7ab80vyT/Eb+u7dY+Z08zvywHFr+hjdA+D0mHvm7XNr9M6SU/6WF0Pk+PJ79vpTc/W5MtP7Nx2b4zkRk/4gNxP1lRrL1OIac+6511Px9Jjz4VYQq9chM5PyVZEj+Nnca+KW2UPmztNT9IFyS/zVlmvlDFJz9xkzi/XPMtv62x1j40Gxq/5D9yvxexiz1EyaG+6MNzvzTRmb7CAWE9Z08zvywHFr+hjdA+ZPcxvzdVG7+LTcU++0l9vplhTL8Ziww/DUWGPo+9R78jXRE/aNEzPx9TD7/C/eA+7AF2P425Rr6UwUk+8DV4P8uBZT6SMcm9cZU4PyzlFT97rb2+GkGNPpVnSj8Y6wu/+5l9vo99Rz8nXRO/aW00vxt7DT/HseO+72t3v2TZMT6DeUG+7PN1vwLpgL7c4e09ZPcxvzdVG7+LTcU+Yhkxv0N/Ib9o4bM+9sl6vr+1X7+uAdc+DYWGPsY7Y7+DocE+Z3czP1gFLL/peXQ+62d1PyF9kL4xoRg976F3P3dpOz5nkTO+cDs4PzVVGj9hWbC+GjmNPrm/XD+zZdm++Ul8vsbbYj+S4ci+aC80v1VJKj/+IX++7iF3vwl5hD4RoQi96kF1v72RXr5/UT8+Yhkxv0N/Ib9o4bM+Yu8wv1DdJ783iZs+CV2Evtu5bb8QQYg+6CF0PutDdb9FuSI+WCEsP3t1Pb9fgS883uVuP1JBqb4gORC+56dzP1YRKz4HsYO+cOk3Pz+lHz88xZ2+KaGUPtQ1aj8fpY++wuFgvutZdT91kTq+Wtssv3mxPD+1gdq84gVxvzrlnD4fgQ8+45Vxv6QhUr4K1YQ+Yu8wv1DdJ783iZs+Y20xv1zDLb/xgXg+I4WRvugVdL+bcc09kalIPvVter8W4Yq9QM0fP4ABQL+/uV++yC9kP0+Vp75BiaC+2jltP3Y5Oz5QJai+b203P0zPJT8JkYS+QNWfPuIZcT/+Mf+9dsk6vvd9ez9HYSM9Q5khv397Pz+k4VE+zbdmvzb5mj49tZ4+2Mtrv8T5Yb5IOaQ+Y20xv1zDLb/xgXg+ZDcyv2WdMr9a+Sw+QWmgvuWRcr8CIYG9MbkYPubtcr8dSY6+JWkSP2g9NL+vfde+satYPxoljb7TSem+zVNmP9FxaD5+1b6+bsM2P1lLLD+LuUW+VXGqPuI1cT8toRY9KaEUvugxdD8NeYY+KikVv2Q5Mj+trdY+t2NbvwDqfz7NueY+y5Vlvwt5hb5u/bY+ZDcyv2WdMr9a+Sw+Zukyv2zNNb9boa09WZmsvtWxar+2MVu+yAHkPcQHYr/Them+D7UHPz1vHr8pXxS/n41PP4oJRb4bhQ2/wuVgPyb1kj6HgcO+bC82P2OhMT/BseC9ZvGyPtWZaj+PoUc+ybHkvcVDYj/Rkeg+FYMKvzb/Gj8rZxU/pB1Sv1YZKz4Y1Qs/wY1gv0L5oL50zbk+Zukyv2zNNb9boa09Zj0zv27DNr9mAbO7aMGzvr2PXr9kAbK+bbG2PZjtS78yDRm/A4UBPwjlA79iFzG/lVNKP5Dxx7021Rq/vMddP2Q1sj5vYbe+bNM1P2grND/TgWm8cCW4Pr2bXj9aOa0+dVG6vZb9Sj80ORo/CAsEv/+x/z5kMTI/mW9MvzFxmD0y5Rg/u2ldv3oRvb5cDa4+Zj0zv27DNr9mAbO7ZjEzv2otNb+IwcO9bBW2vqAHUL/ZXey+UMGnPWg1NL9pmzS//g3/PqQJ0r6HjUO/kadIP+oB9bs+9R6/ubFcP5lRzD5A4Z++a4E1P2dFMz9Tkak9c4m5Pp+PTz/XVes+WPGrvWVtMj9tTzY/A5kBv5TByT6JXUQ/lB9Kv6eBU7w6Dx0/uAVcv6rZ1L4xRZg+ZjEzv2otNb+IwcO9Zvcyv2I5Mb9uOTe+a021voGpQL8cHQ6/WaGsPTthHb+Rv0i/AEEAP0I1ob6dXU6/kjtJPxoxjT06Px2/utNcP7793j4HuYO+ahc1P1+FLz9gwS8+cCW4Pn+pPz8djQ4/YXGwvTYxGz+VY0o/BNsBvzNxmT6e104/lB9Kv2LxsL03hxs/uONbv8zl5b74+Xs+Zvcyv2I5Mb9uOTe+Zs0yv1ebK78AQYC+Z12zvmO5Mb9C8yC/dMG5PRL1CL+uB1e/BCkCP+D5b76oHVS/ls1KPwjhAz4xsxi/u4FdP9WJ6j6hYVC+aas0P1QFKj/5cXw+a6W1PmF3MD9DryE/egG9vQ2/Bj+xX1g/B1kDv8VRYj6pUVQ/l0dLvyW5Er4uNxc/uXlcv+A18L6Q+Uc+Zs0yv1ebK78AQYC+ZvUyv0o3Jb87mZ2+ZN2xvkghJL9eKy+/jAHGPd9J777C9WC/CAsEP1zpLb6u9Va/mXFMP2IpMT4njxO/vVteP+GF8D5DYSG+aYE0P0jVIz85UZw+Z6mzPkbtIj9g1y8/kaHIvddx6z7E72E/CvEEv0bBIj6u81Y/mbNMv3rxPL4lSRI/u2ddv+oN9b42+Ro+ZvUyv0o3Jb87mZ2+Z4czvz7fHr9nlbO+Y6WxvjFtGL9zfzm/mWHMPaYl077QzWe/C0kFP+ux9b2xY1i/m69NP6NZUT4eIw+/vjFfP+bN8j71Ufq9ab80PzzHHT9ljbI+Zg2zPi9xFz909zk/nWHOvaAl0D7RdWg/DPcFv8mx5D2xQ1g/nN1Nv7VRWr4cCQ4/vWtev+xB9r7g8e89Z4czvz7fHr9nlbO+aXU0vzIvGb+G+cK+Zt2yvh7RDr+BtUC/l3HLPXoBvb7Zi2y/C6UFP1GRqL2zUVm/nVlOP9DhZz4Y+Qu/wO1fP+YF8z6Poce9a2c1PzFfGD+E+cE+aAm0PhwZDj+C90A/mbHMvXbVuj7a9Ww/DCsGvzgxnD2yI1k/nYFOv915br4WDQs/v1lfv+uV9b5+8b49aXU0vzIvGb+G+cK+a501vymFFL+a2cy+a121vg9FB7+Lg0W/h5HDPVgBrL7g32+/Ch8FP7uBXb20N1q/nV1OP/AJeD4UNQq/wXVgP+WJ8j5Rcai9bVk2Pyj3Ez+Y0cs+bWG2Pg7RBj+Ll0U/iPHDvVWZqj7gHXA/C4MFv5mBTD20C1o/nYVOv/mpfL4Tcwk/wA1gv+lZ9L5C8aA9a501vymFFL+a2cy+bsc2vyIXEb+lcdK+cZm4vgOfAb+Rh0i/bXG2PT4ln77kPXK/CN8DPwohBb22QVu/nMVNPwVJgj4Tpwm/wa1gP+Vl8j4y4Zi9b103PyLBED+jWdE+c5G5PgNlAT+Rc0g/bPG1vT1lnj7lX3I/CB8Ev+uB9Ty2IVs/nO1NvwjVg74SDQk/wWlgv+ed874lYZI9bsc2vyIXEb+lcdK+b7c3vx77Dr+q8dS+ePm7vvdF+76VRUq/TZGmPSt5lb7o83O/BBMCP/OBeby5c1y/mZtMPxD1hz4UAwq/wXNgP+dl8z4q0ZS9cC84Px7TDj+oxdM+evW8PvY5+z6UD0o/ShGlvStJlT7o/3M/BDUCv8uBZTy5YVw/msFMvxLdiL4TkQk/wU1gv+gh9L4eMY89b7c3vx77Dr+q8dS+cCc4vxw5Dr+redW+fsW+vuwp9r6WL0u/LbGWPRwNjr7qOXW/AP7/PgAAAAC7s12/lvFKPxwNjj4W7Qq/v6dfP+wp9j4w4Ze9cYM4Pxw5Dj+oNdQ+gMm/Pu2B9j6W10o/KCGUvR1ljj7qMXU/AP7/vgAAAAC7sV0/lhVLvx1hjr4Vowo/v51fv+2B9r4mAZM9cCc4vxw5Dr+redW+cMs3vx7RDr+qHdW+gDnAvudh876XrUu/FMGJPRD1h77sM3a/9737PvOBeTy+316/kttIPyt9lT4YAwy/vCleP/dJ+z484Z29cBE4Px77Dj+nudM+g0nBPugl9D6WM0s/DCGGvRLdiD7sG3Y/94H7vsoBZby+814/kv9IvytFlb4Y3Qs/vDlev/Y5+74zoZk9cMs3vx7RDr+qHdW+bVU2vyG/EL+q8dS+f4m/vuVh8r6YI0y/BbGCPQVFgr7uB3e/8On3PgthBT3A01+/jWFGPz4tnz4a3Qy/uM9bPwOhAT9FgaK9bYM2PyIXET+nYdM+ga3APued8z6XgUs/+OF7vQjRgz7u3XY/73H3vuuB9bzA+18/jYlGvz1lnr4a3ww/uP1bvwNjAb8+0Z49bVU2vyG/EL+q8dS+Z2szvyj1E7+s/dW+ePG7vuWF8r6a70y/CEGEPfDxd77w03e/6t30PrzBXT3BY2C/h4VDP1gNrD4aFQ2/sWNYPw9JBz9DkaG9Z38zPymHFD+oLdQ+eiW9PulV9D6YHUw/+sF8vfmZfD7vk3c/6DX0vpmhTL3BoWA/h7dDv1WZqr4aPw0/sbdYvw7PBr88QZ49Z2szvyj1E7+s/dW+Xa0uvzFbGL+zTdm+aZ20vub58r6dcU6/IsGQPdDBZ77xsXi/5tHyPlLhqD3BYWC/gCVAP3oVvT4ZQwy/p5lTPx7XDj8u0Za9XZ8uPzIvGT+uKdc+bOm1PuuJ9T6bZU0/E7GJvd1Zbj7xXXg/5AXyvjlhnL3BvWA/gXNAv3bZur4ZmQw/qCFUvxwZDr8nsZM9Xa0uvzFbGL+zTdm+T6snvzu/Hb/A6d++UuWovuW58r6i+1C/U1GpPaIhUb7zs3m/45XxPuwx9j2/l1+/ePs7P6ZB0z4U+wm/mglNPzF1GD/4IXy9T3snPz7fHj+7Rd0+VVmqPuw19j6fqU8/QhGhvbQpWj7zTXk/4bnwvsrh5L3AHWA/eXU8v6Al0L4VgQo/nNVNvy9tF7/s4XU9T6snvzu/Hb/A6d++POUdv0jNI7/Vseq+MUmYvuFp8L6qzVS/m1HNPWLRML721Xq/4WXwPlxBLj68x12/bXU2P99x7z4M0QW/iCNEP0grJD9OQSe9O6kdP0o1JT/PXec+NB2aPurx9D6mLVM/h3HDvXmhPD71a3o/343vvkYBI769i14/bjE3v9d5674NkwY/ijdFv0bpIr9A4R89POUdv0jNI7/Vseq+IvMQv1T1Kb/0Gfq+BhGDvtVd6r609Vm/75H3PQdxA774+3u/213tPuFxcD61tVq/XZ0uPxIPCT/+Af++cC04P2THMT9VgSq8ItsQP1eXKz/s0fU+C6mFPuAN8D6wAVg/13HrvSVREj73p3s/2aHsvsWZYr6401s/X60vvw7BBr8BgQA/c3s5v2FtML8CAQE8IvMQv1T1Kb/0Gfq+AYsAv19vL78OBQe/qgFVvr7F3r7AQWC/HbEOPhgRjL3643y/y0nlPkOFoT6sK1a/RgsjPzuBHT/c1e2+UVUoP4G3QD/ngfM8Ag0BP2IvMT8IOwQ/uhFdPsut5T68A14/DgkHvmDxrz36zXw/ybnkvjORmb6wxVc/SWUkvzYrG7/gPfA+U48pv3+XP78VgQq9AYsAv19vL78OBQe/tCHavmYpM78mwxK/SPEjvpgJzL7OLWe/LMEVPguBBTz6O32/pj3TPqVl0j6gHVC/JN8RP2lZND+xmdi+KMcTP6ATUD8/cZ89u13dPmodNT8eGw8/YNkvPqmN1D7Js2Q/GWkMvpQBSjz7jX0/pvXSvpTZyb6lSVI/J2ETv2VbMr+2Gds+KWcUv59zT79c4a29tCHavmYpM78mwxK/X3GvvmgJNL8/cx+/9gH7vWTlsb7c+22/COEDPpOByT35m3y/YiWxPggXBD+RmUi/5AnyPpgRTD+BScC+6M3zPr2ZXj8MCQY+a3m1Pm2vNj81rRo/GvkMPnm9vD7XV2s/5vHyvTOhmb37dX0/Y02xvv+t/76XTUs/6bH0vpbXSr+EHcI+5YXyvr1zXr8lmRK+X3GvvmgJNL8/cx+/C4mFvmN/Mb9Y9Su/vNHdvSWlkr7nsXO/LCGWPYzJRT71eXq/5BFyPj2dHj9/mz+/W2WtPsQlYj9M0aW+avG0PtW3aj98AT4+Gi2NPmu1NT9M7SU//BH+PUGloD7i+3A/BEGCvVeJK7742Xs/5jFzvjblGr+FiUI/XW2uvsQDYr9LeaU+YaGwvtVtar+m0VK+C4mFvmN/Mb9Y9Su/hWlCvlgtLL9uGTe/BBECvtDhZ77uN3e/2kHtvBt1jT7s63W/PjGfPWlfND9pjzS/UikpPuYBcz8SAYm+r7lXPuWRcj/sGXY+nXFOPmWFMj9gDzA/HAkOPgoxhT7pnXQ/LYEWPQApgL7vqXc/OXGcvWQdMr9u0zY/SOEjvuj7c78HjYM+mglNvuITcb8VYYq+hWlCvlgtLL9uGTe/E2kJvku3Jb+AEUC/b1E3vnbJOr7vfXe/ZvEyvlDBpz7br22//MH9vYARQD9MPya/SuEkvfVzej+g8U++wMFfPegPdD8w9Zc+F5ELPluvLT9yyzg/dvk6PsOBYT7rS3U/cXE4PjY5m77fi28/DuEGPn+VP79NaSY/nMFNPfeLe79uCTc+nOFNveIRcb9VVaq+E2kJvku3Jb+AEUC/e4G9vT+XH7+Nv0a/A7WBvlbZKr7o73O/Ys2wvlNFqT7C12C/Y22xvnttPT8nkxO/CAGEvuo1dT8DiQG+oVHQvdurbT9u8bY+UvGoPVDPJz+AKUA/+vF8PqTRUT7lc3I/ZMWxPjo9nb7G02I/a6W1PnoPPb8mwxI/DDmGPuuxdb+cIc49ibHEPdVHar+RZci+e4G9vT+XH7+Nv0a/+aF8vTVPGr+XpUu/VPWpvndhO77a42y/Bh8DvyFhkD6frU+/HuMOv1jrKz/zefm+113rvsYhYz83oRu972F3vr+lXz+wPdg+VaEqPUN3IT+NXUY/RVWiPr1ZXj7ZVWw/BY0CPwrhhL6k8VE/IWMQP1W/Kr/yPfk+12XrPsdHY78xgZg81CFqPrrfXL/O2ea++aF8vTVPGr+XpUu/RuEivSzhFb+fR0+/mbXMvsuRZb7Hg2O/Tskmv41hRj54wzu/d3s7vx4zDz+Owca+P5cfv4+fRz/UIWo9aDm0vplRTD/1Vfo+x4FjPDdRGz+XdUs/hWHCPgLVgD7I5WM/S1slP2WZMr58Pz4/eVs8PxzbDb+PUcc+Pu8eP5DTR78oIZS9V2WrPpWDSr8GDwO/RuEivSzhFb+fR0+/okHRvCVZEr+k71G/zanmvh9Vj76yA1m/gu9Av1ehqz1O4Sa/uN9bv7Ix2T4m6ZK+e6s9v09zJz846Rs+uMnbvm7JNj8bkw0/SAEkuywFFj+fbU8/t13bPjTBmT60KVo/fg0/PxrhjL1TeSk/uDtcP649174noZM+eXk8P1ABKL9S+Si+pN3RPmwDNr8lQxK/okHRvCVZEr+k71G/IsGQvCDND7+nvVO/8AX4vl9dr76cE06/pAdSvxgBDL0kGRK/4tVwvyFdkD6BsUC+ouFQvw1DBj/yAXk+6V30vkNjIT85txw/WAEsvCT/ET+lQ1I/2sHsPm7Btj6gxU8/oA9QP3OhOT0psRQ/4u9wPx9Jj76E8UE+n2NPPw43B78ENYK+1BHqPkOFIb9BdSC/IsGQvCDND7+nvVO/2YFsvB1hDr+pt1S/Av0Av6Ix0b6G0UK/t4tbvzupHb72Pfu++Vl8vx9xDz59Ub69t0dbv5eFyz5Rcag+AZ0AvxotDT9VeSo/s4FZvB9lDz+oCVQ/7hn3Pq1F1j6K80Q/s6dZP0whJj4AMwA/+Vt8Px25Dr6A8b89s6FZP5w1zr5bqa2+7tX2PhwZDr9bhS2/2YFsvB1hDr+pt1S/wgFhvBw1Dr+q1VS/BZsCv+mt9L5uDTe/vY9evxmhjL6lSdK+AACAv0ABILmAAcA4vY9evxmBjD6lYdI+BZsCv+mh9D5uETc/wgFhvBw3Dj+q01Q/9aX6PvD19z5znTk/us1cPyDJjz6vgdc+AP5/PyABkLnAAWA5us1cPyABkL6vWde+9aX6PvAJ+L5zmTm/wgFhvBw1Dr+q1VS/tAFavB9lD7+oCVS/AZ0AvxozDb9Vcyq/t0Nbv5ety75RWai++VV8vyDRD75+wb49t4dbvzthHT73Ufs+Av0Av6Il0T6G1UI/2AFsvB1hDj+ptVQ/7tn2PhwPDj9biy0/s6dZP5z1zT5c1a0++WN8PxwRDj5+8b69s61ZP02RJr4AHwC/7hn3Pq1R1r6K70S/tAFavB9lD7+oCVS/WYEsvCT/Eb+lQ1K/6VX0vkNrIb85rxy/otdQvw1ZBr/ywXi+4slwvyGVkL6C+UA+pP9RvxbBCj0kJRI/8P33vl9Vrz6cFU4/IYGQvCDNDz+nvVM/1CHqPkN3IT9BfSA/n3VPPw4PBz8FcYI+4gVxPx7hjj6DUUG+oB9QP3ehO70pmRS/2sXsPm7Ntr6gwU+/WYEsvCT/Eb+lQ1K/TAEmuywHFr+fbU+/t7nbvm7XNr8biQ2/e5c9v0+PJ783oRu+uMlbv7Nx2b4mEZM+gt9Av1lRrL1O8SY/zaHmvh9Jjz6yB1k/ogHRvCVZEj+k71E/pAHSPmzvNT8lURI/eaU8P1DFJz9ToSk+uW9cP62x1j4mMZO+fi0/Pxexiz1TWSm/t2XbPjTRmb60I1q/TAEmuywHFr+fbU+/xgFjPDdVG7+Xc0u/aBm0vplhTL/0Ofq+P3Ufv4+9R7/RgWi9d1U7vx9TD7+O9cY+Ta8mv425Rr540zs/maXMvsuBZT7Hh2M/RYEivSzjFT+fRU8/V7WrPpVnSj8GIQM/P1EfP499Rz8sMZY9es88Pxt7DT+Nqca+S5klP2ThMT58FT6/hXHCPgLpgL7I32O/xgFjPDdVG7+Xc0u/VYEqPUN/Ib+NV0a/7vl2vr+1X7+wGdi+1vXqvsY7Y787YR09HakOv1gFLL/ztfk+BvcCvyF9kL6gwU8/VN2pvndpOz7a52w/+AF8vTVVGj+XoUs/11FrPrm/XD/OAec+2g3tPsbbYj8awYy8I1URP1VJKj/xTfi+BvcCPwl5hD6jv1G/RWWiPr2RXr7ZT2y/VYEqPUN/Ib+NV0a/UvGoPVDdJ7+AHUC/njHPvdu5bb9uwba+B32DvutDdb8EEQI+YuGwvnt1Pb8nsxM/YW2wvlJBqb7C62A/A5mBvlYRKz7o73M/ehG9vT+lHz+Nt0Y/kVHIPdQ1aj+Rhcg+EgWJPutZdT+W8cq9cbG4PnmxPD8lSRK/Zt2yPjrlnD7Fq2K/+hF9PqQpUr7lbXK/UvGoPVDdJ7+AHUC/F6ELPlzDLb9xtzi/xEFiPegVdL8vtZe+QaEgvfVter+hgVA+96H7vYABQL9NXSY/ZUkyvk+Vp77bv20/bjE3vnY5Oz7veXc/EjkJvkzPJT+A/z8/ikFFveIZcT9VUao+0AFoPfd9ez9sKTa+G2kNPn99Pz9MLSa/dYk6Pjb5mj7fe2+/dhk7PsT5Yb7rQ3W/F6ELPlzDLb9xtzi/nZlOPmWdMr9g9S+/sVlYPuWRcr/riXW+VBkqPubtcr8TSYk+QuGgPWg9NL9pqzQ/1AHqvBoljb7s93U/BBkCvtF5aD7uLXc/hEFCvllNLD9u/zY/lgFLvuI1cT8UMYo+PZEevugzdD8HlYO+JgGTvWQ5Mj9u1za/OYEcPQDqfz7vrXe/HDEOPgt9hb7pkXS/nZlOPmWdMr9g9S+/G1GNPmzPNb9MySW/ajW1PtWzar97UT2+W7mtPsQFYr9MKaY+5YlyPj1tHr9/uT8/LDGWPYr5RL71g3o/vXHevSb9kj7noXM/C5GFvmOjMT9YzSs/YPmvvtWXaj+kAVI+WuGsvsQ7Yj9M4aW+4Zlwvjb3Gj+FrUK/AWGAvVYBKz7443u//YH+PUIBob7i6XC/G1GNPmzPNb9MySW/a6m1Pm7BNr81iRq/6An0Pr2NXr8LYQW+5EHyPpjtS7+BlcA+Yj2xPgjnA7+Rs0g/B7kDPpAByL35oXw/+MH7vWQxsj7c620/X3mvvmgpND8/TR8/5BHyvr2bXj8k0RE+6MnzvpYDSz+FhcK+YZGwvv+9/z6Xb0u/45HxvTGhmD37fX2/G1ENPnoJvb7XQ2u/a6m1Pm7BNr81iRq/u5HdPmorNb8e9w6/KN8TP6AHUL88IZ69JO0RP2g3NL+y5dg+pjXTPqQN0r6gNVA/K2kVPuwB9rv6P30/SWEkvplNzD7OGWc/tDXavmdFMz8lmxI/KUkUv5+PTz9YMaw9JiMTv2VvMj+3gdu+pYXSvpTJyT6laVK/GNELvqWBUrz7k32/YEEwPqrR1L7Jn2S/u5HdPmorNb8e9w6/AiUBP2I5Mb8IFQS/UWUoP4GpQL/cQe68Rg8jPzthHb/cHe4+yi3lPkI5ob6sQVY/HDkOPhoxjT365Xw/q4FVvr793j7AK2A/AZsAv1+FLz8O2wY/U38pv3+nPz8PYQc9SD8kvzYvGz/hmfC+yWnkvjNtmT6w4Ve/DYEGvmLxsL36z3y/u4ldPszl5b687V2/AiUBP2I5Mb8IFQS/IvEQP1ebK7/rkfW+cDk4P2O5Mb9ngTM8XZsuPxL1CL/+Pf8+2jntPuD5b762x1o/7bH2PQjhAz74+3s/B0WDvtWJ6j604Vk/Iv8Qv1QFKj/00fk+c3E5v2F3MD8XgQu8X5Mvvw2/Bj8BpwC/2WXsvsVRYj646Vu/1YHqvSW5Er73pXu/DN2FPuA18L6w71e/IvEQP1ebK7/rkfW+O7kdP0o3Jb/OLee+iCtEP0ghJL9S4Sg9bXE2P99J774M6QU/4UXwPlzpLb681V0/maHMPWIhMT721Xo/MXWYvuGF8D6pvVQ/PO8dv0jVIz/Vfeo+ijFFv0btIj9EwSG9bh83v9d16z4Nrwa/313vvkbJIj69mV6/hbHCvXrpPL71a3q/NUmaPuoJ9b6mHVO/O7kdP0o3Jb/OLee+T4cnPz7fHr+6Jd2+mg9NPzFtGL/6QX09ePc7P6Yl074UCQo/44HxPuux9b2/n18/UuGoPaNZUT7zsXk/UgGpvubN8j6i71A/T7EnvzzFHT/Axd8+nNFNvy9xFz/uIXe9eWk8v6Ah0D4Vkwq/4Znwvsmh5D3AJ2C/QZGgvbVRWr7zTXm/VXWqPu1F9r6fn0+/T4cnPz7fHr+6Jd2+XacuPzIvGb+uEde+p51TPx7RDr8uMZc9gCNAP3oBvb4ZTQw/5sHyPlGRqL3BZ2A/IWGQPdDhZz7xr3g/abG0vuYF8z6daU4/XbMuvzFfGD+yNdk+qB9UvxwZDj8oIZS9gWtAv3bVuj4ZpQy/5O3xvjgxnD3Cw2C/E1GJvd15br7xXXi/bAG2PuuR9b6bXU2/XacuPzIvGb+uEde+Z4MzPymFFL+oIdS+sWVYPw9FB79EwaE9h4NDP1gBrL4aGw0/6tX0PrthXb3BZWA/CBGEPfAJeD7w0Xc/ePm7vuWJ8j6a60w/Z28zvyj3Ez+s7dU+sbdYvw7RBj89gZ69h7NDv1WZqj4bRQ2/6Cn0vpmBTD3BpWC/+EF8vfmpfL7vk3e/ejG9PulZ9L6YGUy/Z4MzPymFFL+oIdS+bYU2PyIXEb+nXdO+uNFbPwOdAb9FkaI9jWFGPz4ln74a3ww/8OX3PgohBb3A018/BaGCPQVJgj7uB3c/f5G/vuVl8j6YIUw/bVU2vyLBED+q7dQ+uP1bvwNlAT8+4Z69jYdGvz1lnj4a4Qy/72n3vuuB9TzA+1+/96F7vQjVg77u3Xa/gbXAPued876Xf0u/bYU2PyIXEb+nXdO+cBE4Px77Dr+nudO+vCteP/dF+7484Z09kttIPyt5lb4YAww/+MH7PvIBeby+314/FMGJPRD1hz7sM3Y/gDnAvudl8z6XrUs/cMs3vx7RDj+qHdU+vDlev/Y5+z4zoZm9kv1IvytJlT4Y3wu/94H7vsuBZTy+816/DBGGvRLdiL7sG3a/g0nBPugh9L6WM0u/cBE4Px77Dr+nudO+cYM4Pxw5Dr+oNdS+v6dfP+wp9r4w4Zc9lvFKPxwNjr4W7Qo/AP7/PgAAAAC7sV0/LsGWPRwNjj7qN3U/fsW+vuwp9j6WL0s/cCU4vxw5Dj+redU+v51fv+2B9j4mAZO9lhVLvx1ljj4Vowq/AP7/vgAAAAC7s12/KCGUvR1hjr7qMXW/gMm/Pu2B9r6W2Uq/cYM4Pxw5Dr+oNdS+cC84Px7RDr+oxdO+wXNgP+dh874q0ZQ9mZtMPxD1h74UAwo/BBMCP/OBeTy5c1w/TZGmPSt9lT7o83M/ePm7vvdJ+z6VRUo/b7c3vx77Dj+q8dQ+wU1gv+gh9D4eMY+9msFMvxLdiD4Tkwm/BDMCv8uBZby5YVy/SgGlvStJlb7o/3O/evW8PvY5+76UD0q/cC84Px7RDr+oxdO+b183PyG/EL+jVdG+wa1gP+Vh8r4y8Zg9nMNNPwVFgr4TqQk/CN0DPwthBT23Q1s/bWG2PT4tnz7kO3I/cZ24vgOhAT+RhUg/bsk2vyIZET+lbdI+wWlgv+ed8z4lgZK9nOtNvwjRgz4SDwm/CB0Ev+uB9by2I1u/bNG1vT1hnr7lX3K/c5m5PgNjAb+Rc0i/b183PyG/EL+jVdG+bV82Pyj1E7+Yxcu+wXdgP+WF8r5Rsag9nVtOP/Dxd74UOwo/ChsFP7zhXT20OVo/h2HDPVgNrD7g3W8/a2W1vg9JBz+Lf0U/a581vymHFD+azcw+wA9gv+lV9D5CMaG9nYNOv/mZfD4TeQm/C3sFv5rBTL20D1q/h7HDvVWZqr7gH3C/bXG2Pg7PBr+Lk0W/bV82Pyj1E7+Yxcu+a3E1PzFbGL+E4cG+wO9fP+b58r6QEcg9nVNOP9DBZ74YBQw/C5sFP1LxqD2zVVk/liHLPXoVvT7ZiWw/ZvGyvh7XDj+BrUA/aXs0vzIvGT+G3cI+v1tfv+uJ9T5/Yb+9nXtOv91Zbj4WGQu/DB8GvzlhnL2yK1m/mDHMvXbdur7a92y/aCW0PhwZDr+C8UC/a3E1PzFbGL+E4cG+ass0Pzu/Hb9lcbK+vjNfP+W58r724fo9m6lNP6IhUb4eMQ8/Cj0FP+wx9j2xaVg/mPHLPadF0z7QyWc/Y72xvjF1GD9zczk/Z48zvz7fHj9ncbM+vW1ev+w19j7hgfC9nNVNv7QpWj4cGQ6/DOcFv8rh5L2xS1i/m7HNvaAp0L7Rd2i/ZjWzPi9tF7907zm/ass0Pzu/Hb9lcbK+aZM0P0jNI784JZy+vV1eP+Fp8L5E0SE+mWdMP2LRML4npRM/CPkDP1xBLj6u+1Y/i1HFPd9x7z7C62A/ZAWyvkgtJD9eFy8/ZgMzv0o1JT87YZ0+u2ldv+rx9D43YRu+madMv3mpPD4lXxK/CtcEv0YBI76u/1a/j5HHvdd5677E72G/aOWzPkbnIr9gyy+/aZM0P0jNI784JZy+asU0P1T3Kb/4+Xu+u4VdP9Vh6r6i6VA+lb9KPwdxA74yyxg/BBECP+F5cD6oI1Q/cvG4PRIPCT+u+VY/Z42zvmTHMT9C1SA/Zt8yv1eXKz8A+n8+uXtcv+AN8D6RgUi+ljdLvyVREj4vURe/BjcDv8WZYr6pYVS/d5G7vQ7BBr+xY1i/bPm1PmFvML9DoyG/asU0P1T3Kb/4+Xu+ajM1P19vL79fUS++utdcP77F3r4I/YM+ki1JPxgRjL07VR0/ACkAP0OFoT6dXU4/WMGrPTuBHT+Rp0g/a4G1voG5QD8c+Q0/Zgkzv2IxMT9tkTY+uOdbv8ux5T75iXy+lA1Kv2ABsD03oxu/A68BvzONmb6e7U6/XaGuvTYnG7+VcUq/cY24Pn+VP78dhw6/ajM1P19vL79fUS++a6M1P2YpM79RUai9ubNcP5gFzL5APaA+kZNIPw2BBjw+DR8//s3+PqVp0j6Hh0M/TbGmPWlZND9peTQ/bVW2vqATUD/YAew+Z0kzv2obNT+FUcI9uA1cv6mF1D4xkZi+lAlKv5GBSDw6LR2/A10Bv5Tpyb6Je0S/U1GpvWVhMr9tYza/dBW6Pp91T7/WQeu+a6M1P2YpM79RUai9bPM1P2gHNL/iAXE8vMtdP2Thsb5vobc+lUVKP5ORyT023Ro/A28BPwgXBD9iATE/bPG1PZgRTD8y4Rg/aPWzvr2ZXj9jnbE+Z1Uzv22tNj88AZ47u29dv3m5vD5dSa6+mVFMvzOxmb0yBxm/B7sDv/+1/75lazK/bgG3vZbZSr81eRq/csG4Pr11Xr9bWa2+bPM1P2gHNL/iAXE8AAAAAAAAgD8jhwg8AACAPyOHCDywqmo/AAAAALCqaj8jhwg8UFVVPwAAAABQVVU/I4cIPAAAQD8AAAAAAABAPyOHCDywqio/AAAAALCqKj8jhwg8UFUVPwAAAABQVRU/I4cIPAAAAD8AAAAAAAAAPyOHCDxgVdU+AAAAAGBV1T4jhwg8oKqqPgAAAACgqqo+I4cIPAAAgD4AAAAAAACAPiOHCDzAqio+AAAAAMCqKj4jhwg8gKqqPQAAAACAqqo9I4cIPAAAAAAAAAAAAAAAADuJiDwAAIA/O4mIPLCqaj87iYg8UFVVPzuJiDwAAEA/O4mIPLCqKj87iYg8UFUVPzuJiDwAAAA/O4mIPGBV1T47iYg8oKqqPjuJiDwAAIA+O4mIPMCqKj47iYg8gKqqPTuJiDwAAAAAzczMPAAAgD/NzMw8sKpqP83MzDxQVVU/zczMPAAAQD/NzMw8sKoqP83MzDxQVRU/zczMPAAAAD/NzMw8YFXVPs3MzDygqqo+zczMPAAAgD7NzMw8wKoqPs3MzDyAqqo9zczMPAAAAAAviAg9AACAPy+ICD2wqmo/L4gIPVBVVT8viAg9AABAPy+ICD2wqio/L4gIPVBVFT8viAg9AAAAPy+ICD1gVdU+L4gIPaCqqj4viAg9AACAPi+ICD3Aqio+L4gIPYCqqj0viAg9AAAAAASrKj0AAIA/BKsqPbCqaj8Eqyo9UFVVPwSrKj0AAEA/BKsqPbCqKj8Eqyo9UFUVPwSrKj0AAAA/BKsqPWBV1T4Eqyo9oKqqPgSrKj0AAIA+BKsqPcCqKj4Eqyo9gKqqPQSrKj0AAAAAzcxMPQAAgD/NzEw9sKpqP83MTD1QVVU/zcxMPQAAQD/NzEw9sKoqP83MTD1QVRU/zcxMPQAAAD/NzEw9YFXVPs3MTD2gqqo+zcxMPQAAgD7NzEw9wKoqPs3MTD2Aqqo9zcxMPQAAAACV7m49AACAP5Xubj2wqmo/le5uPVBVVT+V7m49AABAP5Xubj2wqio/le5uPVBVFT+V7m49AAAAP5Xubj1gVdU+le5uPaCqqj6V7m49AACAPpXubj3Aqio+le5uPYCqqj2V7m49AAAAALWIiD0AAIA/tYiIPbCqaj+1iIg9UFVVP7WIiD0AAEA/tYiIPbCqKj+1iIg9UFUVP7WIiD0AAAA/tYiIPWBV1T61iIg9oKqqPrWIiD0AAIA+tYiIPcCqKj61iIg9gKqqPbWIiD0AAAAAmpmZPQAAgD+amZk9sKpqP5qZmT1QVVU/mpmZPQAAQD+amZk9sKoqP5qZmT1QVRU/mpmZPQAAAD+amZk9YFXVPpqZmT2gqqo+mpmZPQAAgD6amZk9wKoqPpqZmT2Aqqo9mpmZPQAAAAB+qqo9AACAP36qqj2wqmo/fqqqPVBVVT9+qqo9AABAP36qqj2wqio/fqqqPVBVFT9+qqo9AAAAP36qqj1gVdU+fqqqPaCqqj5+qqo9AACAPn6qqj3Aqio+fqqqPYCqqj1+qqo9AAAAAOi7uz0AAIA/6Lu7PbCqaj/ou7s9UFVVP+i7uz0AAEA/6Lu7PbCqKj/ou7s9UFUVP+i7uz0AAAA/6Lu7PWBV1T7ou7s9oKqqPui7uz0AAIA+6Lu7PcCqKj7ou7s9gKqqPei7uz0AAAAAzczMPQAAgD/NzMw9sKpqP83MzD1QVVU/zczMPQAAQD/NzMw9sKoqP83MzD1QVRU/zczMPQAAAD/NzMw9YFXVPs3MzD2gqqo+zczMPQAAgD7NzMw9wKoqPs3MzD2Aqqo9zczMPQAAAACx3d09AACAP7Hd3T2wqmo/sd3dPVBVVT+x3d09AABAP7Hd3T2wqio/sd3dPVBVFT+x3d09AAAAP7Hd3T1gVdU+sd3dPaCqqj6x3d09AACAPrHd3T3Aqio+sd3dPYCqqj2x3d09AAAAABzv7j0AAIA/HO/uPbCqaj8c7+49UFVVPxzv7j0AAEA/HO/uPbCqKj8c7+49UFUVPxzv7j0AAAA/HO/uPWBV1T4c7+49oKqqPhzv7j0AAIA+HO/uPcCqKj4c7+49gKqqPRzv7j0AAAAAAAAAPgAAgD8AAAA+sKpqPwAAAD5QVVU/AAAAPgAAQD8AAAA+sKoqPwAAAD5QVRU/AAAAPgAAAD8AAAA+YFXVPgAAAD6gqqo+AAAAPgAAgD4AAAA+wKoqPgAAAD6Aqqo9AAAAPgAAAAByiAg+AACAP3KICD6wqmo/cogIPlBVVT9yiAg+AABAP3KICD6wqio/cogIPlBVFT9yiAg+AAAAP3KICD5gVdU+cogIPqCqqj5yiAg+AACAPnKICD7Aqio+cogIPoCqqj1yiAg+AAAAACcRET4AAIA/JxERPrCqaj8nERE+UFVVPycRET4AAEA/JxERPrCqKj8nERE+UFUVPycRET4AAAA/JxERPmBV1T4nERE+oKqqPicRET4AAIA+JxERPsCqKj4nERE+gKqqPScRET4AAAAAmpkZPgAAgD+amRk+sKpqP5qZGT5QVVU/mpkZPgAAQD+amRk+sKoqP5qZGT5QVRU/mpkZPgAAAD+amRk+YFXVPpqZGT6gqqo+mpkZPgAAgD6amRk+wKoqPpqZGT6Aqqo9mpkZPgAAAAAMIiI+AACAPwwiIj6wqmo/DCIiPlBVVT8MIiI+AABAPwwiIj6wqio/DCIiPlBVFT8MIiI+AAAAPwwiIj5gVdU+DCIiPqCqqj4MIiI+AACAPgwiIj7Aqio+DCIiPoCqqj0MIiI+AAAAAMGqKj4AAIA/waoqPrCqaj/Bqio+UFVVP8GqKj4AAEA/waoqPrCqKj/Bqio+UFUVP8GqKj4AAAA/waoqPmBV1T7Bqio+oKqqPsGqKj4AAIA+waoqPsCqKj7Bqio+gKqqPcGqKj4AAAAAMzMzPgAAgD8zMzM+sKpqPzMzMz5QVVU/MzMzPgAAQD8zMzM+sKoqPzMzMz5QVRU/MzMzPgAAAD8zMzM+YFXVPjMzMz6gqqo+MzMzPgAAgD4zMzM+wKoqPjMzMz6Aqqo9MzMzPgAAAACluzs+AACAP6W7Oz6wqmo/pbs7PlBVVT+luzs+AABAP6W7Oz6wqio/pbs7PlBVFT+luzs+AAAAP6W7Oz5gVdU+pbs7PqCqqj6luzs+AACAPqW7Oz7Aqio+pbs7PoCqqj2luzs+AAAAAFtERD4AAIA/W0REPrCqaj9bREQ+UFVVP1tERD4AAEA/W0REPrCqKj9bREQ+UFUVP1tERD4AAAA/W0REPmBV1T5bREQ+oKqqPltERD4AAIA+W0REPsCqKj5bREQ+gKqqPVtERD4AAAAAzcxMPgAAgD/NzEw+sKpqP83MTD5QVVU/zcxMPgAAQD/NzEw+sKoqP83MTD5QVRU/zcxMPgAAAD/NzEw+YFXVPs3MTD6gqqo+zcxMPgAAgD7NzEw+wKoqPs3MTD6Aqqo9zcxMPgAAAAA/VVU+AACAPz9VVT6wqmo/P1VVPlBVVT8/VVU+AABAPz9VVT6wqio/P1VVPlBVFT8/VVU+AAAAPz9VVT5gVdU+P1VVPqCqqj4/VVU+AACAPj9VVT7Aqio+P1VVPoCqqj0/VVU+AAAAAPTdXT4AAIA/9N1dPrCqaj/03V0+UFVVP/TdXT4AAEA/9N1dPrCqKj/03V0+UFUVP/TdXT4AAAA/9N1dPmBV1T703V0+oKqqPvTdXT4AAIA+9N1dPsCqKj703V0+gKqqPfTdXT4AAAAAZmZmPgAAgD9mZmY+sKpqP2ZmZj5QVVU/ZmZmPgAAQD9mZmY+sKoqP2ZmZj5QVRU/ZmZmPgAAAD9mZmY+YFXVPmZmZj6gqqo+ZmZmPgAAgD5mZmY+wKoqPmZmZj6Aqqo9ZmZmPgAAAADZ7m4+AACAP9nubj6wqmo/2e5uPlBVVT/Z7m4+AABAP9nubj6wqio/2e5uPlBVFT/Z7m4+AAAAP9nubj5gVdU+2e5uPqCqqj7Z7m4+AACAPtnubj7Aqio+2e5uPoCqqj3Z7m4+AAAAAI53dz4AAIA/jnd3PrCqaj+Od3c+UFVVP453dz4AAEA/jnd3PrCqKj+Od3c+UFUVP453dz4AAAA/jnd3PmBV1T6Od3c+oKqqPo53dz4AAIA+jnd3PsCqKj6Od3c+gKqqPY53dz4AAAAAAACAPgAAgD8AAIA+sKpqPwAAgD5QVVU/AACAPgAAQD8AAIA+sKoqPwAAgD5QVRU/AACAPgAAAD8AAIA+YFXVPgAAgD6gqqo+AACAPgAAgD4AAIA+wKoqPgAAgD6Aqqo9AACAPgAAAAA5RIQ+AACAPzlEhD6wqmo/OUSEPlBVVT85RIQ+AABAPzlEhD6wqio/OUSEPlBVFT85RIQ+AAAAPzlEhD5gVdU+OUSEPqCqqj45RIQ+AACAPjlEhD7Aqio+OUSEPoCqqj05RIQ+AAAAAJSIiD4AAIA/lIiIPrCqaj+UiIg+UFVVP5SIiD4AAEA/lIiIPrCqKj+UiIg+UFUVP5SIiD4AAAA/lIiIPmBV1T6UiIg+oKqqPpSIiD4AAIA+lIiIPsCqKj6UiIg+gKqqPZSIiD4AAAAAzcyMPgAAgD/NzIw+sKpqP83MjD5QVVU/zcyMPgAAQD/NzIw+sKoqP83MjD5QVRU/zcyMPgAAAD/NzIw+YFXVPs3MjD6gqqo+zcyMPgAAgD7NzIw+wKoqPs3MjD6Aqqo9zcyMPgAAAAAGEZE+AACAPwYRkT6wqmo/BhGRPlBVVT8GEZE+AABAPwYRkT6wqio/BhGRPlBVFT8GEZE+AAAAPwYRkT5gVdU+BhGRPqCqqj4GEZE+AACAPgYRkT7Aqio+BhGRPoCqqj0GEZE+AAAAAGFVlT4AAIA/YVWVPrCqaj9hVZU+UFVVP2FVlT4AAEA/YVWVPrCqKj9hVZU+UFUVP2FVlT4AAAA/YVWVPmBV1T5hVZU+oKqqPmFVlT4AAIA+YVWVPsCqKj5hVZU+gKqqPWFVlT4AAAAAmpmZPgAAgD+amZk+sKpqP5qZmT5QVVU/mpmZPgAAQD+amZk+sKoqP5qZmT5QVRU/mpmZPgAAAD+amZk+YFXVPpqZmT6gqqo+mpmZPgAAgD6amZk+wKoqPpqZmT6Aqqo9mpmZPgAAAADT3Z0+AACAP9PdnT6wqmo/092dPlBVVT/T3Z0+AABAP9PdnT6wqio/092dPlBVFT/T3Z0+AAAAP9PdnT5gVdU+092dPqCqqj7T3Z0+AACAPtPdnT7Aqio+092dPoCqqj3T3Z0+AAAAAAwioj4AAIA/DCKiPrCqaj8MIqI+UFVVPwwioj4AAEA/DCKiPrCqKj8MIqI+UFUVPwwioj4AAAA/DCKiPmBV1T4MIqI+oKqqPgwioj4AAIA+DCKiPsCqKj4MIqI+gKqqPQwioj4AAAAAZmamPgAAgD9mZqY+sKpqP2Zmpj5QVVU/ZmamPgAAQD9mZqY+sKoqP2Zmpj5QVRU/ZmamPgAAAD9mZqY+YFXVPmZmpj6gqqo+ZmamPgAAgD5mZqY+wKoqPmZmpj6Aqqo9ZmamPgAAAACfqqo+AACAP5+qqj6wqmo/n6qqPlBVVT+fqqo+AABAP5+qqj6wqio/n6qqPlBVFT+fqqo+AAAAP5+qqj5gVdU+n6qqPqCqqj6fqqo+AACAPp+qqj7Aqio+n6qqPoCqqj2fqqo+AAAAANnurj4AAIA/2e6uPrCqaj/Z7q4+UFVVP9nurj4AAEA/2e6uPrCqKj/Z7q4+UFUVP9nurj4AAAA/2e6uPmBV1T7Z7q4+oKqqPtnurj4AAIA+2e6uPsCqKj7Z7q4+gKqqPdnurj4AAAAAMzOzPgAAgD8zM7M+sKpqPzMzsz5QVVU/MzOzPgAAQD8zM7M+sKoqPzMzsz5QVRU/MzOzPgAAAD8zM7M+YFXVPjMzsz6gqqo+MzOzPgAAgD4zM7M+wKoqPjMzsz6Aqqo9MzOzPgAAAABsd7c+AACAP2x3tz6wqmo/bHe3PlBVVT9sd7c+AABAP2x3tz6wqio/bHe3PlBVFT9sd7c+AAAAP2x3tz5gVdU+bHe3PqCqqj5sd7c+AACAPmx3tz7Aqio+bHe3PoCqqj1sd7c+AAAAAKW7uz4AAIA/pbu7PrCqaj+lu7s+UFVVP6W7uz4AAEA/pbu7PrCqKj+lu7s+UFUVP6W7uz4AAAA/pbu7PmBV1T6lu7s+oKqqPqW7uz4AAIA+pbu7PsCqKj6lu7s+gKqqPaW7uz4AAAAAAADAPgAAgD8AAMA+sKpqPwAAwD5QVVU/AADAPgAAQD8AAMA+sKoqPwAAwD5QVRU/AADAPgAAAD8AAMA+YFXVPgAAwD6gqqo+AADAPgAAgD4AAMA+wKoqPgAAwD6Aqqo9AADAPgAAAAA5RMQ+AACAPzlExD6wqmo/OUTEPlBVVT85RMQ+AABAPzlExD6wqio/OUTEPlBVFT85RMQ+AAAAPzlExD5gVdU+OUTEPqCqqj45RMQ+AACAPjlExD7Aqio+OUTEPoCqqj05RMQ+AAAAAHKIyD4AAIA/cojIPrCqaj9yiMg+UFVVP3KIyD4AAEA/cojIPrCqKj9yiMg+UFUVP3KIyD4AAAA/cojIPmBV1T5yiMg+oKqqPnKIyD4AAIA+cojIPsCqKj5yiMg+gKqqPXKIyD4AAAAAzczMPgAAgD/NzMw+sKpqP83MzD5QVVU/zczMPgAAQD/NzMw+sKoqP83MzD5QVRU/zczMPgAAAD/NzMw+YFXVPs3MzD6gqqo+zczMPgAAgD7NzMw+wKoqPs3MzD6Aqqo9zczMPgAAAAAGEdE+AACAPwYR0T6wqmo/BhHRPlBVVT8GEdE+AABAPwYR0T6wqio/BhHRPlBVFT8GEdE+AAAAPwYR0T5gVdU+BhHRPqCqqj4GEdE+AACAPgYR0T7Aqio+BhHRPoCqqj0GEdE+AAAAAD9V1T4AAIA/P1XVPrCqaj8/VdU+UFVVPz9V1T4AAEA/P1XVPrCqKj8/VdU+UFUVPz9V1T4AAAA/P1XVPmBV1T4/VdU+oKqqPj9V1T4AAIA+P1XVPsCqKj4/VdU+gKqqPT9V1T4AAAAAmpnZPgAAgD+amdk+sKpqP5qZ2T5QVVU/mpnZPgAAQD+amdk+sKoqP5qZ2T5QVRU/mpnZPgAAAD+amdk+YFXVPpqZ2T6gqqo+mpnZPgAAgD6amdk+wKoqPpqZ2T6Aqqo9mpnZPgAAAADT3d0+AACAP9Pd3T6wqmo/093dPlBVVT/T3d0+AABAP9Pd3T6wqio/093dPlBVFT/T3d0+AAAAP9Pd3T5gVdU+093dPqCqqj7T3d0+AACAPtPd3T7Aqio+093dPoCqqj3T3d0+AAAAAAwi4j4AAIA/DCLiPrCqaj8MIuI+UFVVPwwi4j4AAEA/DCLiPrCqKj8MIuI+UFUVPwwi4j4AAAA/DCLiPmBV1T4MIuI+oKqqPgwi4j4AAIA+DCLiPsCqKj4MIuI+gKqqPQwi4j4AAAAAZmbmPgAAgD9mZuY+sKpqP2Zm5j5QVVU/ZmbmPgAAQD9mZuY+sKoqP2Zm5j5QVRU/ZmbmPgAAAD9mZuY+YFXVPmZm5j6gqqo+ZmbmPgAAgD5mZuY+wKoqPmZm5j6Aqqo9ZmbmPgAAAACfquo+AACAP5+q6j6wqmo/n6rqPlBVVT+fquo+AABAP5+q6j6wqio/n6rqPlBVFT+fquo+AAAAP5+q6j5gVdU+n6rqPqCqqj6fquo+AACAPp+q6j7Aqio+n6rqPoCqqj2fquo+AAAAANnu7j4AAIA/2e7uPrCqaj/Z7u4+UFVVP9nu7j4AAEA/2e7uPrCqKj/Z7u4+UFUVP9nu7j4AAAA/2e7uPmBV1T7Z7u4+oKqqPtnu7j4AAIA+2e7uPsCqKj7Z7u4+gKqqPdnu7j4AAAAAMzPzPgAAgD8zM/M+sKpqPzMz8z5QVVU/MzPzPgAAQD8zM/M+sKoqPzMz8z5QVRU/MzPzPgAAAD8zM/M+YFXVPjMz8z6gqqo+MzPzPgAAgD4zM/M+wKoqPjMz8z6Aqqo9MzPzPgAAAABsd/c+AACAP2x39z6wqmo/bHf3PlBVVT9sd/c+AABAP2x39z6wqio/bHf3PlBVFT9sd/c+AAAAP2x39z5gVdU+bHf3PqCqqj5sd/c+AACAPmx39z7Aqio+bHf3PoCqqj1sd/c+AAAAAKW7+z4AAIA/pbv7PrCqaj+lu/s+UFVVP6W7+z4AAEA/pbv7PrCqKj+lu/s+UFUVP6W7+z4AAAA/pbv7PmBV1T6lu/s+oKqqPqW7+z4AAIA+pbv7PsCqKj6lu/s+gKqqPaW7+z4AAAAAAAAAPwAAgD8AAAA/sKpqPwAAAD9QVVU/AAAAPwAAQD8AAAA/sKoqPwAAAD9QVRU/AAAAPwAAAD8AAAA/YFXVPgAAAD+gqqo+AAAAPwAAgD4AAAA/wKoqPgAAAD+Aqqo9AAAAPwAAAAAdIgI/AACAPx0iAj+wqmo/HSICP1BVVT8dIgI/AABAPx0iAj+wqio/HSICP1BVFT8dIgI/AAAAPx0iAj9gVdU+HSICP6Cqqj4dIgI/AACAPh0iAj/Aqio+HSICP4Cqqj0dIgI/AAAAADlEBD8AAIA/OUQEP7Cqaj85RAQ/UFVVPzlEBD8AAEA/OUQEP7CqKj85RAQ/UFUVPzlEBD8AAAA/OUQEP2BV1T45RAQ/oKqqPjlEBD8AAIA+OUQEP8CqKj45RAQ/gKqqPTlEBD8AAAAAZmYGPwAAgD9mZgY/sKpqP2ZmBj9QVVU/ZmYGPwAAQD9mZgY/sKoqP2ZmBj9QVRU/ZmYGPwAAAD9mZgY/YFXVPmZmBj+gqqo+ZmYGPwAAgD5mZgY/wKoqPmZmBj+Aqqo9ZmYGPwAAAACDiAg/AACAP4OICD+wqmo/g4gIP1BVVT+DiAg/AABAP4OICD+wqio/g4gIP1BVFT+DiAg/AAAAP4OICD9gVdU+g4gIP6Cqqj6DiAg/AACAPoOICD/Aqio+g4gIP4Cqqj2DiAg/AAAAAJ+qCj8AAIA/n6oKP7Cqaj+fqgo/UFVVP5+qCj8AAEA/n6oKP7CqKj+fqgo/UFUVP5+qCj8AAAA/n6oKP2BV1T6fqgo/oKqqPp+qCj8AAIA+n6oKP8CqKj6fqgo/gKqqPZ+qCj8AAAAAzcwMPwAAgD/NzAw/sKpqP83MDD9QVVU/zcwMPwAAQD/NzAw/sKoqP83MDD9QVRU/zcwMPwAAAD/NzAw/YFXVPs3MDD+gqqo+zcwMPwAAgD7NzAw/wKoqPs3MDD+Aqqo9zcwMPwAAAADp7g4/AACAP+nuDj+wqmo/6e4OP1BVVT/p7g4/AABAP+nuDj+wqio/6e4OP1BVFT/p7g4/AAAAP+nuDj9gVdU+6e4OP6Cqqj7p7g4/AACAPunuDj/Aqio+6e4OP4Cqqj3p7g4/AAAAAAYRET8AAIA/BhERP7Cqaj8GERE/UFVVPwYRET8AAEA/BhERP7CqKj8GERE/UFUVPwYRET8AAAA/BhERP2BV1T4GERE/oKqqPgYRET8AAIA+BhERP8CqKj4GERE/gKqqPQYRET8AAAAAMzMTPwAAgD8zMxM/sKpqPzMzEz9QVVU/MzMTPwAAQD8zMxM/sKoqPzMzEz9QVRU/MzMTPwAAAD8zMxM/YFXVPjMzEz+gqqo+MzMTPwAAgD4zMxM/wKoqPjMzEz+Aqqo9MzMTPwAAAABQVRU/AACAP1BVFT+wqmo/UFUVP1BVVT9QVRU/AABAP1BVFT+wqio/UFUVP1BVFT9QVRU/AAAAP1BVFT9gVdU+UFUVP6Cqqj5QVRU/AACAPlBVFT/Aqio+UFUVP4Cqqj1QVRU/AAAAAGx3Fz8AAIA/bHcXP7Cqaj9sdxc/UFVVP2x3Fz8AAEA/bHcXP7CqKj9sdxc/UFUVP2x3Fz8AAAA/bHcXP2BV1T5sdxc/oKqqPmx3Fz8AAIA+bHcXP8CqKj5sdxc/gKqqPWx3Fz8AAAAAiZkZPwAAgD+JmRk/sKpqP4mZGT9QVVU/iZkZPwAAQD+JmRk/sKoqP4mZGT9QVRU/iZkZPwAAAD+JmRk/YFXVPomZGT+gqqo+iZkZPwAAgD6JmRk/wKoqPomZGT+Aqqo9iZkZPwAAAAC2uxs/AACAP7a7Gz+wqmo/trsbP1BVVT+2uxs/AABAP7a7Gz+wqio/trsbP1BVFT+2uxs/AAAAP7a7Gz9gVdU+trsbP6Cqqj62uxs/AACAPra7Gz/Aqio+trsbP4Cqqj22uxs/AAAAANPdHT8AAIA/090dP7Cqaj/T3R0/UFVVP9PdHT8AAEA/090dP7CqKj/T3R0/UFUVP9PdHT8AAAA/090dP2BV1T7T3R0/oKqqPtPdHT8AAIA+090dP8CqKj7T3R0/gKqqPdPdHT8AAAAA7/8fPwAAgD/v/x8/sKpqP+//Hz9QVVU/7/8fPwAAQD/v/x8/sKoqP+//Hz9QVRU/7/8fPwAAAD/v/x8/YFXVPu//Hz+gqqo+7/8fPwAAgD7v/x8/wKoqPu//Hz+Aqqo97/8fPwAAAAAdIiI/AACAPx0iIj+wqmo/HSIiP1BVVT8dIiI/AABAPx0iIj+wqio/HSIiP1BVFT8dIiI/AAAAPx0iIj9gVdU+HSIiP6Cqqj4dIiI/AACAPh0iIj/Aqio+HSIiP4Cqqj0dIiI/AAAAADlEJD8AAIA/OUQkP7Cqaj85RCQ/UFVVPzlEJD8AAEA/OUQkP7CqKj85RCQ/UFUVPzlEJD8AAAA/OUQkP2BV1T45RCQ/oKqqPjlEJD8AAIA+OUQkP8CqKj45RCQ/gKqqPTlEJD8AAAAAVmYmPwAAgD9WZiY/sKpqP1ZmJj9QVVU/VmYmPwAAQD9WZiY/sKoqP1ZmJj9QVRU/VmYmPwAAAD9WZiY/YFXVPlZmJj+gqqo+VmYmPwAAgD5WZiY/wKoqPlZmJj+Aqqo9VmYmPwAAAACDiCg/AACAP4OIKD+wqmo/g4goP1BVVT+DiCg/AABAP4OIKD+wqio/g4goP1BVFT+DiCg/AAAAP4OIKD9gVdU+g4goP6Cqqj6DiCg/AACAPoOIKD/Aqio+g4goP4Cqqj2DiCg/AAAAAJ+qKj8AAIA/n6oqP7Cqaj+fqio/UFVVP5+qKj8AAEA/n6oqP7CqKj+fqio/UFUVP5+qKj8AAAA/n6oqP2BV1T6fqio/oKqqPp+qKj8AAIA+n6oqP8CqKj6fqio/gKqqPZ+qKj8AAAAAzcwsPwAAgD/NzCw/sKpqP83MLD9QVVU/zcwsPwAAQD/NzCw/sKoqP83MLD9QVRU/zcwsPwAAAD/NzCw/YFXVPs3MLD+gqqo+zcwsPwAAgD7NzCw/wKoqPs3MLD+Aqqo9zcwsPwAAAADp7i4/AACAP+nuLj+wqmo/6e4uP1BVVT/p7i4/AABAP+nuLj+wqio/6e4uP1BVFT/p7i4/AAAAP+nuLj9gVdU+6e4uP6Cqqj7p7i4/AACAPunuLj/Aqio+6e4uP4Cqqj3p7i4/AAAAAAYRMT8AAIA/BhExP7Cqaj8GETE/UFVVPwYRMT8AAEA/BhExP7CqKj8GETE/UFUVPwYRMT8AAAA/BhExP2BV1T4GETE/oKqqPgYRMT8AAIA+BhExP8CqKj4GETE/gKqqPQYRMT8AAAAAMzMzPwAAgD8zMzM/sKpqPzMzMz9QVVU/MzMzPwAAQD8zMzM/sKoqPzMzMz9QVRU/MzMzPwAAAD8zMzM/YFXVPjMzMz+gqqo+MzMzPwAAgD4zMzM/wKoqPjMzMz+Aqqo9MzMzPwAAAABQVTU/AACAP1BVNT+wqmo/UFU1P1BVVT9QVTU/AABAP1BVNT+wqio/UFU1P1BVFT9QVTU/AAAAP1BVNT9gVdU+UFU1P6Cqqj5QVTU/AACAPlBVNT/Aqio+UFU1P4Cqqj1QVTU/AAAAAGx3Nz8AAIA/bHc3P7Cqaj9sdzc/UFVVP2x3Nz8AAEA/bHc3P7CqKj9sdzc/UFUVP2x3Nz8AAAA/bHc3P2BV1T5sdzc/oKqqPmx3Nz8AAIA+bHc3P8CqKj5sdzc/gKqqPWx3Nz8AAAAAmpk5PwAAgD+amTk/sKpqP5qZOT9QVVU/mpk5PwAAQD+amTk/sKoqP5qZOT9QVRU/mpk5PwAAAD+amTk/YFXVPpqZOT+gqqo+mpk5PwAAgD6amTk/wKoqPpqZOT+Aqqo9mpk5PwAAAAC2uzs/AACAP7a7Oz+wqmo/trs7P1BVVT+2uzs/AABAP7a7Oz+wqio/trs7P1BVFT+2uzs/AAAAP7a7Oz9gVdU+trs7P6Cqqj62uzs/AACAPra7Oz/Aqio+trs7P4Cqqj22uzs/AAAAANPdPT8AAIA/0909P7Cqaj/T3T0/UFVVP9PdPT8AAEA/0909P7CqKj/T3T0/UFUVP9PdPT8AAAA/0909P2BV1T7T3T0/oKqqPtPdPT8AAIA+0909P8CqKj7T3T0/gKqqPdPdPT8AAAAAAABAPwAAgD8AAEA/sKpqPwAAQD9QVVU/AABAPwAAQD8AAEA/sKoqPwAAQD9QVRU/AABAPwAAAD8AAEA/YFXVPgAAQD+gqqo+AABAPwAAgD4AAEA/wKoqPgAAQD+Aqqo9AABAPwAAAAAdIkI/AACAPx0iQj+wqmo/HSJCP1BVVT8dIkI/AABAPx0iQj+wqio/HSJCP1BVFT8dIkI/AAAAPx0iQj9gVdU+HSJCP6Cqqj4dIkI/AACAPh0iQj/Aqio+HSJCP4Cqqj0dIkI/AAAAAEpERD8AAIA/SkREP7Cqaj9KREQ/UFVVP0pERD8AAEA/SkREP7CqKj9KREQ/UFUVP0pERD8AAAA/SkREP2BV1T5KREQ/oKqqPkpERD8AAIA+SkREP8CqKj5KREQ/gKqqPUpERD8AAAAAZmZGPwAAgD9mZkY/sKpqP2ZmRj9QVVU/ZmZGPwAAQD9mZkY/sKoqP2ZmRj9QVRU/ZmZGPwAAAD9mZkY/YFXVPmZmRj+gqqo+ZmZGPwAAgD5mZkY/wKoqPmZmRj+Aqqo9ZmZGPwAAAACDiEg/AACAP4OISD+wqmo/g4hIP1BVVT+DiEg/AABAP4OISD+wqio/g4hIP1BVFT+DiEg/AAAAP4OISD9gVdU+g4hIP6Cqqj6DiEg/AACAPoOISD/Aqio+g4hIP4Cqqj2DiEg/AAAAALCqSj8AAIA/sKpKP7Cqaj+wqko/UFVVP7CqSj8AAEA/sKpKP7CqKj+wqko/UFUVP7CqSj8AAAA/sKpKP2BV1T6wqko/oKqqPrCqSj8AAIA+sKpKP8CqKj6wqko/gKqqPbCqSj8AAAAAzcxMPwAAgD/NzEw/sKpqP83MTD9QVVU/zcxMPwAAQD/NzEw/sKoqP83MTD9QVRU/zcxMPwAAAD/NzEw/YFXVPs3MTD+gqqo+zcxMPwAAgD7NzEw/wKoqPs3MTD+Aqqo9zcxMPwAAAADp7k4/AACAP+nuTj+wqmo/6e5OP1BVVT/p7k4/AABAP+nuTj+wqio/6e5OP1BVFT/p7k4/AAAAP+nuTj9gVdU+6e5OP6Cqqj7p7k4/AACAPunuTj/Aqio+6e5OP4Cqqj3p7k4/AAAAABcRUT8AAIA/FxFRP7Cqaj8XEVE/UFVVPxcRUT8AAEA/FxFRP7CqKj8XEVE/UFUVPxcRUT8AAAA/FxFRP2BV1T4XEVE/oKqqPhcRUT8AAIA+FxFRP8CqKj4XEVE/gKqqPRcRUT8AAAAAMzNTPwAAgD8zM1M/sKpqPzMzUz9QVVU/MzNTPwAAQD8zM1M/sKoqPzMzUz9QVRU/MzNTPwAAAD8zM1M/YFXVPjMzUz+gqqo+MzNTPwAAgD4zM1M/wKoqPjMzUz+Aqqo9MzNTPwAAAABQVVU/AACAP1BVVT+wqmo/UFVVP1BVVT9QVVU/AABAP1BVVT+wqio/UFVVP1BVFT9QVVU/AAAAP1BVVT9gVdU+UFVVP6Cqqj5QVVU/AACAPlBVVT/Aqio+UFVVP4Cqqj1QVVU/AAAAAH13Vz8AAIA/fXdXP7Cqaj99d1c/UFVVP313Vz8AAEA/fXdXP7CqKj99d1c/UFUVP313Vz8AAAA/fXdXP2BV1T59d1c/oKqqPn13Vz8AAIA+fXdXP8CqKj59d1c/gKqqPX13Vz8AAAAAmplZPwAAgD+amVk/sKpqP5qZWT9QVVU/mplZPwAAQD+amVk/sKoqP5qZWT9QVRU/mplZPwAAAD+amVk/YFXVPpqZWT+gqqo+mplZPwAAgD6amVk/wKoqPpqZWT+Aqqo9mplZPwAAAADHu1s/AACAP8e7Wz+wqmo/x7tbP1BVVT/Hu1s/AABAP8e7Wz+wqio/x7tbP1BVFT/Hu1s/AAAAP8e7Wz9gVdU+x7tbP6Cqqj7Hu1s/AACAPse7Wz/Aqio+x7tbP4Cqqj3Hu1s/AAAAAOPdXT8AAIA/491dP7Cqaj/j3V0/UFVVP+PdXT8AAEA/491dP7CqKj/j3V0/UFUVP+PdXT8AAAA/491dP2BV1T7j3V0/oKqqPuPdXT8AAIA+491dP8CqKj7j3V0/gKqqPePdXT8AAAAAAABgPwAAgD8AAGA/sKpqPwAAYD9QVVU/AABgPwAAQD8AAGA/sKoqPwAAYD9QVRU/AABgPwAAAD8AAGA/YFXVPgAAYD+gqqo+AABgPwAAgD4AAGA/wKoqPgAAYD+Aqqo9AABgPwAAAAAtImI/AACAPy0iYj+wqmo/LSJiP1BVVT8tImI/AABAPy0iYj+wqio/LSJiP1BVFT8tImI/AAAAPy0iYj9gVdU+LSJiP6Cqqj4tImI/AACAPi0iYj/Aqio+LSJiP4Cqqj0tImI/AAAAAEpEZD8AAIA/SkRkP7Cqaj9KRGQ/UFVVP0pEZD8AAEA/SkRkP7CqKj9KRGQ/UFUVP0pEZD8AAAA/SkRkP2BV1T5KRGQ/oKqqPkpEZD8AAIA+SkRkP8CqKj5KRGQ/gKqqPUpEZD8AAAAAZmZmPwAAgD9mZmY/sKpqP2ZmZj9QVVU/ZmZmPwAAQD9mZmY/sKoqP2ZmZj9QVRU/ZmZmPwAAAD9mZmY/YFXVPmZmZj+gqqo+ZmZmPwAAgD5mZmY/wKoqPmZmZj+Aqqo9ZmZmPwAAAACUiGg/AACAP5SIaD+wqmo/lIhoP1BVVT+UiGg/AABAP5SIaD+wqio/lIhoP1BVFT+UiGg/AAAAP5SIaD9gVdU+lIhoP6Cqqj6UiGg/AACAPpSIaD/Aqio+lIhoP4Cqqj2UiGg/AAAAALCqaj8AAIA/sKpqP7Cqaj+wqmo/UFVVP7Cqaj8AAEA/sKpqP7CqKj+wqmo/UFUVP7Cqaj8AAAA/sKpqP2BV1T6wqmo/oKqqPrCqaj8AAIA+sKpqP8CqKj6wqmo/gKqqPbCqaj8AAAAAzcxsPwAAgD/NzGw/sKpqP83MbD9QVVU/zcxsPwAAQD/NzGw/sKoqP83MbD9QVRU/zcxsPwAAAD/NzGw/YFXVPs3MbD+gqqo+zcxsPwAAgD7NzGw/wKoqPs3MbD+Aqqo9zcxsPwAAAAD67m4/AACAP/rubj+wqmo/+u5uP1BVVT/67m4/AABAP/rubj+wqio/+u5uP1BVFT/67m4/AAAAP/rubj9gVdU++u5uP6Cqqj767m4/AACAPvrubj/Aqio++u5uP4Cqqj367m4/AAAAABcRcT8AAIA/FxFxP7Cqaj8XEXE/UFVVPxcRcT8AAEA/FxFxP7CqKj8XEXE/UFUVPxcRcT8AAAA/FxFxP2BV1T4XEXE/oKqqPhcRcT8AAIA+FxFxP8CqKj4XEXE/gKqqPRcRcT8AAAAARDNzPwAAgD9EM3M/sKpqP0Qzcz9QVVU/RDNzPwAAQD9EM3M/sKoqP0Qzcz9QVRU/RDNzPwAAAD9EM3M/YFXVPkQzcz+gqqo+RDNzPwAAgD5EM3M/wKoqPkQzcz+Aqqo9RDNzPwAAAABhVXU/AACAP2FVdT+wqmo/YVV1P1BVVT9hVXU/AABAP2FVdT+wqio/YVV1P1BVFT9hVXU/AAAAP2FVdT9gVdU+YVV1P6Cqqj5hVXU/AACAPmFVdT/Aqio+YVV1P4Cqqj1hVXU/AAAAAH13dz8AAIA/fXd3P7Cqaj99d3c/UFVVP313dz8AAEA/fXd3P7CqKj99d3c/UFUVP313dz8AAAA/fXd3P2BV1T59d3c/oKqqPn13dz8AAIA+fXd3P8CqKj59d3c/gKqqPX13dz8AAAAAqpl5PwAAgD+qmXk/sKpqP6qZeT9QVVU/qpl5PwAAQD+qmXk/sKoqP6qZeT9QVRU/qpl5PwAAAD+qmXk/YFXVPqqZeT+gqqo+qpl5PwAAgD6qmXk/wKoqPqqZeT+Aqqo9qpl5PwAAAADHu3s/AACAP8e7ez+wqmo/x7t7P1BVVT/Hu3s/AABAP8e7ez+wqio/x7t7P1BVFT/Hu3s/AAAAP8e7ez9gVdU+x7t7P6Cqqj7Hu3s/AACAPse7ez/Aqio+x7t7P4Cqqj3Hu3s/AAAAAOPdfT8AAIA/4919P7Cqaj/j3X0/UFVVP+PdfT8AAEA/4919P7CqKj/j3X0/UFUVP+PdfT8AAAA/4919P2BV1T7j3X0/oKqqPuPdfT8AAIA+4919P8CqKj7j3X0/gKqqPePdfT8AAAAACACAPwAAgD8IAIA/sKpqPwgAgD9QVVU/CACAPwAAQD8IAIA/sKoqPwgAgD9QVRU/CACAPwAAAD8IAIA/YFXVPggAgD+gqqo+CACAPwAAgD4IAIA/wKoqPggAgD+Aqqo9CACAPwAAAAA8k3pB7X/kQInSXjsntINBJ6L8QCjVOr9tAIxBhvIkQSUfcz+e/YRBafITQaPnBUCZ84hB/VlTQXL7AUBrf4FBB+E+QV+2Z0DLvXZBXhh9QdFaDkA4fWdB4opnQWW3hUDJy01BIn+LQWsqvT8y1T5BVYWBQap+Z0DWCSJBmQ2NQb9+CLyV6xNBCQGFQSuHBUD4Yv5A0cyCQY4D67/tf+RAPJN6QcLBXrvbMd1AMPheQdb+YMDqr8VAyuBYQZ/nBcAoZelAupAwQT8Zk8C5qNNALfItQVa2Z8D72w9BWNIGQfFImcD4VQVBUkgFQWO3hcD6zThB5NjZQCVmgcD9/S1BFZHTQKp+Z8Dwj2RBBJ/TQJ+uI8Ca51hBQKLFQC+HBcAntINBJ6L8QCjVOr88k3pB7X/kQInSXjsPyIlBXaEHQa0w2b8WGJNBxTYyQebmD7/PzZBBcSBjQV71gLxShoNBnKGGQU35UL4GoV1BZKqSQczPib/+cTBBE3GSQS2UGcDvmgtBBQWGQUVkdMDA9fFApHRhQXOBnsDaHvtA9oowQVv9r8BlHhhBMWgGQYb2qcADikFBP63cQF8KjsAKuW5BfZLdQHtoR8APyIlBXaEHQa0w2b+8Oo9BSqYMQbpmPMCez5lB+Tg5QVSsHsAKd5hB+glrQaiNIsBUjYtBEmCKQYoAR8CBEG1BIpeVQWgggcBTEz5B3yiUQQ83osBWuhZBb3eGQYbmvcCTkAFBMFxgQbvDzMC6QQRBMIsuQRHTysAlFR5BBtUEQZ6ZuMBLH0hBy83cQH/5msB3HHdBz4biQLDFc8C8Oo9BSqYMQbpmPMAJoJNBvpMLQb6Ij8AKXp9BgGA3QeZ1mMBi355BCgBoQaPKrsADRpJBhjWIQSaLzMBO5HlBh+aSQZ++6cCNNUlBqDWRQfuR/sAmix9B5ZaDQVu4AsEiDwhBCmFbQZCD/MBvDAlBgMEqQdUu5sAuPyJBfVYCQVBuyMDk5kxB8+jZQNo6q8CllX1BbazgQHlnlsAJoJNBvpMLQb6Ij8C6ZJZBcpgCQQWJycDzzKJBYMcqQX+/6cBBxqJBLiJYQZatCcFwUpZBwoF+QfqaHcGqx4BB8s6JQQBRK8FA109BReeIQScjL8EazyRB3o95QVgLKMGm/gtB8GBRQRrwF8EJDAxBIgYkQUQiA8Gq8yRBHE37QL5p3sAyCVBB1xTRQLH9wsCk4IBBhbPUQGJZu8C6ZJZBcpgCQQWJycAu1pZBNlbgQLgHBcEzO6NBz6YSQQ86H8GiKKNBSEc7QZAyPMF1o5ZBtSlfQf0tVMF+BoFBmrB0QUa/YMGZOFBBUhd2QVyIXsHOIyVBwf1iQSMhTsHEWQxBDYJAQc3uM8HlfgxBluEXQUz2FsE+iSVBUP7nQL71/cAqw1BBhPC8QCjT5MDHS4FBEiO6QP1A6cAu1pZBNlbgQLgHBcEWPJRBfu6mQHG2JsHm/Z9B/m/eQLneSMEcZ59B93YSQekrbMEioJJBcsIzQUCUg8HXKnpBmC5KQaxMicFFGUlBVLlPQdW2hcFqMR9BguZCQVGRc8HMrQdBxCUnQQtpUcFe2whBzeYDQdobLsFQaSJBojbFQEIfE8G9fk1BV16YQGmuB8FOkH5B2kiNQBjaDsEWPJRBfu6mQHG2JsHGA45BnkUzQDVJR8H1p5hBzCqDQG1bb8HHMpdBVMO+QDiji8E6CIpBa3T8QAgsmsHiXmlBKtsVQShjn8FqwTlBt+8fQd3imcE1+hFBaMQZQXwki8GsY/lAagAFQcA2bsFjOP9ATWjOQL5LRsFK8RlBNbeQQB06KcHbokRBlupCQNvLHsFTQHRBX5gaQHLMKcHGA45BnkUzQDVJR8Es9INBgv33vbTRY8HYHo1Bw+8+P5kNiMG2iopB9u0RQN2encFQ0XlBN0OCQDvVrMGrv09BV2i0QDWdscE1JiJBpfbRQNWuqsGpefpAwwLTQIrlmcHyztVA1ES3QMzAg8F3H+BA0iuGQA9fXMHYUwtBK78ZQFPyPcF8ZTVBu9NVP11iNMHz/mJBnfa0vR4/QsEs9INBgv33vbTRY8FWrGxBWOFVwNeDecFUcXtBgGM5wDlSlMF6pHNB1nHWv6LxqsHWXFdBy9qmu1mQusFELi5B21DVP+r+vsGkIQNBExA5QFMNt8HYf8NAWOFVQHvcpMHc9aVAhGM5QC5MjcGOj7VA3nHWP4lZbcHUHu5AkuumOxscTsH6PSBBylDVv/c+RcGaSktBDhA5wCMiVcFWrGxBWOFVwNeDecH+7ktB/QXTwKAtg8Fgf1ZBDiPSwJqPm8H4qUtBB7K0wLbGssHqVS5BcpaCwICawsH8XgZB4XoSwEzNxsEZ9bxARiZAvxw/vsEMsoJAFMz4Pcw6q8GSIltAxxDAPdPYksEXPINACoZTv25Dd8Ew5L1ArRgZwNmbV8EF6QZBWOWFwD82T8F1zS5BAB63wJxSYMH+7ktB/QXTwKAtg8GEAChB4McZwerHhMHelS1BgwcgwThgncEaQx9B6QAWwVa+tMG63gBBlcf8wF+fxMH6GrVA3we/wBjCyMEOT1pAXU6DwNIKwMFUqvQ/uTczwGzPrMF6/8c/LjkawB83lMHHSh1Ak1NCwAGyecEgbotABGSQwO/vWcGbENhAuiPOwHyqUcEHAhBBne4EwQYZY8GEAChB4McZwerHhMGUUgNB3+pCwYPSgcHY9AJBsNFPwSnsmcHrKOFAa1RKwYz0sMHzO6JAm+szwb+/wMFD/jNAa5gSwWISxcEFbV4/lJHewO/DvMFPzXW+weWmwC0OqsFoXl6+IBiNwIj0kcF2bm4/qRKYwEjYdcGSdTlASeTEwONBVsGW96RAUsUDwZycTcEZKeNA8xQnwYE5XsGUUgNB3+pCwYPSgcHB1b9AcwNjwdERdsGg+7BAAS92wabEkcGc3oJA6dN0wUTip8GzswNAME9fwbt0t8Hysqa842Q7weBPvMFSRcu/nbQSwZomtcG6aQ7Az0rgwCDko8H5auG/tPO5wGMojcHC26O+4am8wIwVbsERHNs/U7PnwJvwTsEhj3JA9MMXwVA6RcE0cqtAOXRAwd2MU8HB1b9AcwNjwdERdsHvWHxA+ZZ5wTS7YsF1dD5AP/GIwQi9hcFzD5s/qtyJwUBKmsHBrGC/Vp1+wYWDqcE50S7AgjZYwZJUr8Gpn3bAAc8qwWouqsH3WHzAVpECwT9ym8F+dD7ApovUwNISh8GMD5u/9N3QwDILZcGOrGA/7BX7wKeYRsEt0S5AyfEjwYv2OsGhn3ZASVlRwdtCRcHvWHxA+ZZ5wTS7YsFIiQVAkpqDwQaAS8EfoBc/yzuRwQ7IbcH0iL+/fO2SwTBXicHjqmfAbzuIwe8nmMGQsKbAlwZowQBen8Ek07rAC2A3wbsKncEC2KrAZowLwaLNkcHHDnbA5pPgwJ+pgMGTxOC/Ic3ZwOhsXMH3ILw+qUoCwWvLPsHBdPo/7boqwUlfMMGNfyVAeWFbwdEFNcFIiQVAkpqDwQaAS8FYkdk+/HqGwUr4McHul8e/WSqUwUcKTcFSRHvAIZaVwRFpbcFqUMHA3VyKwRw0hcEtzurA3ABrwVohjsFf/e7Amy85wfAXj8H3vszAL58MwcrVh8HoP43A7YDiwJiZdMF0BwPAyNHcwM46VMGUoYo9a9sEwaU7N8Ewoa4/RpQuwShhJcH/Xb8/h2Vgwf1zI8FYkdk+/HqGwUr4McHFxYe/5geGwdVmF8E+e1zAPm6SwT3iK8HEJMDAmqKSwSNkSMFh2gDB9JaGwQ9JZcErrhDBGgtjwQHTesETUAvBHycywUKegcGTYOTAmZsHwZBEfMFoFJjA1p3dwCjJZ8GGWgzAYMzcwENHS8GkqBO+fH0GwVhiLsGDUlg/R6AwwWXYGMEmcQI/Q4RhweFuEMHFxYe/5geGwdVmF8E08xjAQM6CwbWV+cCqD6LA1AeNwUFMDMH5BvfAs3OLwcNHJsGiTRrBTfx8wR3HQ8FEJiXBPUBTwe3iXMFjJRnBAOIkweDgasG+BPPAaZz8wDABasGxbp3AGrbTwMt/WsHE7hDAmAbawEqEQMFRMa6+ZO4GwfAEI8E346w+caowwR/pCcG0ONO+sAhfwVbW98A08xjAQM6CwbWV+cCnr2TAPJN6wSzVxcDK+83ADvmEwUWp3sBzpxHBg3eBwS0+CMEmui3B92pnwVr6JsFWsDPBYcU+weVMQ8EP8SHBc+ITwQSfVcFhe/rA63/kwAYIWcFt157AK8LFwPudTMGiCBPAWMjTwHG0M8FN9wq/OmgFwUX4FMEJUS6+zA0uwXVL8cBMxKO/u/BYwTGnzMCnr2TAPJN6wSzVxcDpbZPA9thrwf28lMCTj/LAXz12wcyWqsDZKyPBErlrwc2Q3MCjKTzBdB1PwW+jDsHfjj3B4hQowQ6xLcHW+ybB2hQBwS4fQ8EF+vzAKyHJwMwvScFe2J3AWli0wORCPsF9IBTA9GDJwOVFJcFIpUC/FkwBwd7qBMFuUSq/qFQowX66y8B64ATArlRPwTzeoMDpbZPA9thrwf28lMBPea/AbFJaweYDTsDkIwjBCVVgwbwheMD1vTDBHf5SwVOUr8DGqUbBq+A1wcC+88CpB0TB2skQwScmG8E+jCnBk1PbwOmzMsEfoPzAzNOrwPU4OsGk0ZvAjs6fwIKxL8EEOxXAZ3y6wMjvFcH1Lna/Srf0wCS158BWKJC/dXIfwZMnpcDWATLAhpJCwR4YbMBPea/AbFJaweYDTsCDTsbAI99GwYKP879y0xPB1E9JwWmnJMCN/zrBOOk5wQXth8CMLE7BvcscwTVTz8ATN0jBEonzwFCyCsHityrBu2y0wH2tI8GdLPvAiCuNwIzpK8E91JnAJ0qIwKMxIcES+BbAWxenwPxkBsEeiJS/UFLhwMljxcDXM8S/W7ATwbqkfsCpFljAiD4zwQK4GsCDTsbAI99GwYKP879UH9jAm0IywbjIMb9/tBzBCPIxwT7Psb+zkELB1ychwb06SMBAf1PBv2MEwZ1LrsC19krB37XGwB8e98BtQCvB086NwNOIFcFht/nAJ6NawEwdHsG1bZjAceVbwPL/EsGcahnAFoePwFZW7sDQYKu/Rw/JwBoopMASpe+/cpAFwS6rNsCkq3bA+gMiwTyInb9UH9jAm0IywbjIMb/KX+XAKhgdwWSx1T7nMCPBYLsawdV4mb5NAEjBbRAJwa/qBcAaQVfBdKbZwDtfj8AD3UzBrimbwKFb2sDPnCvBu9FOwHDpB8Gm0vjABoQYwL+4EMGm0JfAJ/chwG4/BcGyYxzA+aJowBQh0cD5wL6/4MuswDG3hMDM8AjAo0jrwC3r5r/L+IbAu4QPwR1xCL7KX+XAKhgdwWSx1T7ttu7Aws0HwQ4yuT+htyfBmPIDwf+XNz+0yEvBj3vjwNl6jr+y5FnBYCCswB5uY8DEQ07Bh1FhwB1pvsCXAyzB0QcCwPIn9cAvo/jAstenvySkA8Hb6pfAA7HGv8bu78BtkR/AvysswBJdtcDhQs6/EXGNwHaJTsAipRXAqejIwGyVVL/lUo/Aho34wD1hYT/ttu7Aws0HwQ4yuT/p3/TA51DlwAcmGkAYsirBV2nbwFrX1j84TU7BgU22wMV0Mb7ytlvBvt1/wKGhKcA0V0/B170NwBrcosDKfizBzT5TvxXE2sDXB/nAkndOvuON7cCQg5jAZtoCv7gw1sCemiLAg9zVvzvvmsBk59m/hqtXwCpUF8Ckch7AtOWkwLpNmD0l6pTAyFzRwNEk6T/p3/TA51DlwAcmGkAtifjAGam7wB4yVEDgeSzBWRSwwKEvJkBJ2U/BmGiKwDgRPT9s6FzByHspwDRl4b9/J1DBDKxrvylsh8BYAS3BLQfKPl5mwMAHwvnAtOhxP5ID1MB1V5nAs0IVP1YCvcBIMSXAQxsYv66MgcBs6eG/NlwRwPJExr9i+CPA/+x/wAsNbD96SJjAdAyqwLH3LEAtifjAGam7wB4yVEDDVPrA49SSwGzChUCWXC3Bm9eFwJnUXkBfp1DBgxY/wC6p0D/elV3BsMuov6/qYL8JsVDBQWO+PpnTV8BSbS3BCAXRP0/ZpcBqe/rAFRwIQMdlusADF5rAC0PcP6gNpMDeAifAbCMGP1KbUcDBkea/oE+Sv00wRL8v3CbAEFo1wLUZ3T9/9ZnAFgiDwONrYkDDVPrA49SSwGzChUAz0frAueJVwM1poEBbmy3BlzY5wHrtikD041DBotPVv9JuIEAdzl3BQ+MJOjSAtzn041DBWvHVP+1kIMBcmy3B/z45QK/qisA10frATOJVQPBpoMCxa5rALzY5QKLtisD+tCfA2NLVPyJvIMCtGOi/4C0Quo/8wbn2tCfALPLVv5lkIECpa5rAaD85wIfqikAz0frAueJVwM1poEAifPrA3SIIwIBjukCWbS3BcvzQv1zapUAgsVDBRfK9vrbbV0DElV3By/OoPyIaYT8ap1DBAis/QHGQ0L86XC3BRN+FQB3LXsANVPrA2teSQG7AhcAG9ZnAiAWDQJhuYsDg2ybAI0s1QDQr3b+bkua/8iWSPzv+Qz/qAyfAjngGv1COUUCzF5rAWmPcv5wIpEAifPrA3SIIwIBjukDlxPnA8xtyvy7/00B7Ai3B6gbKvtBkwEAHKFDB+N5rP85th0A26FzBtJEpQKt24T9j2E/BJ3WKQBniPL+JeCzBFR+wQAskJsBVhvjAFK+7QOkpVMBHRpjABwyqQDD1LMBa9iPAdt9/QMUcbL8x6+G/gEURQCMyxj/bNCXAlrMXP3eGgUAfWpnA1JsVvzv8vEDlxPnA8xtyvy7/00C2DvnAsDtNPs2G7UCRgSzBvjJTPye/2kCVWE/BQswNQJjaokCNtlvBnPl/QDOmKUAqS07BX162QNUiMj7srirBknjbQAq71r8O2fTAXFrlQHYYGsCm5JTA413RQFUS6b87bR7AGt6kQMECmL2r6tm/3o5XQOROF0DXoiLAcJfVP3fpmkDhiZjASl0CP1Ip1kC2DvnAsDtNPs2G7UBervjAsKmnP7GfA0EICCzBLQcCQDQh9UDfRU7BWmdhQElmvkDm41nBhTOsQMFxY0A7xUvBx5HjQIqSjj9osifBOfwDQcFUN7/Lq+7ATtMHQbYPub8ZSo/AcY34QP0tYb/UnBXAXd3IQDepVD9mSc6/hV2NQCOFTkBanx/Ai/4rQMtWtUBP9ZfAX2LGPwjm70BervjAsKmnP7GfA0EK5vjAPGYYQESyEEF1pCvB0NFOQH/jB0GR4EzBlzibQPRT2kCcP1fBK8DZQMZdj0Ar+kfBOB8JQej0BUDHJyPBHcgaQREdmj51TOXAZx8dQWjn1L6W6YbAgoQPQXriCT694gjAWDnrQHAI5z8Yzb6/xrGsQEe4hEBKfBzAAmdoQJkb0UDp4pfAacMhQB46BUEK5vjAPGYYQESyEEHf0PnAwoVaQKgVHkEgSivBRtKNQNiBFUHB+krBecrGQC0V90CSfFPB13MEQQhKrkADiELBZTkhQQ9HSEAkqBzBTQAyQREAsj/oBdjAwEkyQTFAMj8ShXbAEAIiQZi+nT8Ohe+/9YUFQU28NkCKdqu/t+7IQEwppEB2jRnAm2OPQMpP7kB3hpjAj6tbQKj5EkHf0PnAwoVaQKgVHkG4S/vAiB6NQL3gK0HuwirB4nW0QG6mI0GrOkjB4aXzQN+uCkG6J07BFeAcQVhVz0Cd8zrBB/45QZL3h0CawxPBf19JQY/HJECDL8bAcuVGQXzU8z/A6lfAxTkzQXTTGkCYF8S/x6ETQa+xfkAUr5S/RSnhQD1hxUD2JxfAYe2mQIJfBkH+85nAbyqIQGcpIUG4S/vAiB6NQL3gK0GsyvzAGcirQBotOkFTminB5WPbQPiqMkHICkTBzt0QQYEiG0EcoUbBDfs1Qe7D80DWqzDB1BdTQYukr0AtDQjBKmdgQXZPeEDhTq/AFlhaQYsyTkDRyTHAMopCQRA7bED1D5C/V14fQXMupUCduna/MoL0QIiv50C2gxXAo0i6QHTnFUEq/5vA8amfQN6lL0GsyvzAGcirQBotOkEYJv3ADRvJQFkjSUE0CCfBzyABQeYYQ0FGjj3BoSwoQZqyLUE9HDzBnDpPQV6sDkFAFSPBy9NrQZms3EAeXPLAfE52QQG1qkAFQpPA29trQXjVlEBorwTAk0hPQVvqoECBXCq/wjwoQfK2y0D2fEG/yC4BQbXhBEEpexTALivJQMY3JUH0C57AyjW0QJIzPkEYJv3ADRvJQFkjSUEgqvrAxX/kQHL6WEH7+iHBF/ITQRicVUEsqjPBieA+QWFVQ0GQpS3BVYpnQe8LJ0H4iRHBFoWBQR5UCEHgvs3A4QCFQQ3S3kCgUmTAKpN6QeHvxUDRdaO/9+BYQZOszEBh4i++h/ItQQY68UBCQgy/vEgFQXLmFEHtfhPAxZHTQEOeM0GFFJ/AlqLFQFqJTEEgqvrAxX/kQHL6WEE0MPPAPKL8QDT0aUGmKRnB2PIkQRDkakHvFyXBe1pTQWX1XEGQMBrB5Rh9QeDjQ0H7vvbAVX+LQRZnJkEnzaHArA2NQbVlDEHYnBjAvcyCQS2v+UBftdK+wPdeQXTP90DgE6s+HpAwQWbWCUG617G+tNEGQejnIkFBfxHA3tfZQLNkQEFysZ3Afp7TQBRmWkE0MPPAPKL8QDT0aUGTiuTAWqEHQdk3fEGOTgvBqzYyQW+igUGQlhDBRyBjQSfuekEKswDBg6GGQbFvZUG+y7/ATKqSQd2LSEFU5FvAAnGSQWIALEFPH4e//gSGQUZzF0GwVQI/qHRhQUBmEEHQ1VY/DoswQfi8GEERih2+UGgGQWw7LkFFDQ3Ad63cQEAfS0E1YJjAn5LdQLyqZ0GTiuTAWqEHQdk3fEHy4MzAO6YMQbbQh0EY6u7A5Tg5QQwfj0HfiurA5QlrQboyjkEs78DAC2CKQRJLhUE6enrAH5eVQdGVbUEPYca/4iiUQdUpTUEJqds+dneGQScCMkHlDr8/RFxgQXxlI0EIkq0/Q4suQR8+JUHLaGQ9E9UEQW4NN0F40gPA083cQL8NVEEVjo3AxIbiQLt5dEHy4MzAO6YMQbbQh0Ft8qrAxJMLQeTJkUGWs7rAimA3QcgSnUGRX6bAGgBoQapvn0GW0WbAkDWIQXY+mEGD3L2/k+aSQYZsiUFkBho/sjWRQdzkbUHgvAVA7paDQTiHS0ExPyVAFWFbQXD1NEFaLvk/h8EqQao7MEEfTbU+gVYCQRGePkFYc+K/9+jZQPFBXEGLqXbAcazgQBCbgEFt8qrAxJMLQeTJkUFagXzAcZgCQbRvm0FgV3bAa8cqQSw1qkHUKy7ASiJYQc5ir0HrVF2/74F+QWWVqUF6qZw/Ds+JQfZamkFcAT9AY+eIQRTIhUHHf3xAFZB5QQbAYkHSVXZAG2FRQRQ1RUFJKi5APAYkQdDZOkHCTl0/L037QKF0RkGGrJy/0xTRQH7pZEHmAj/Ae7PUQKAHh0FagXzAcZgCQbRvm0EjhQ7AjFbgQL3io0EUs8q/76YSQUErtUH2mTO8YEc7QU9ZvEG8dARAzClfQWeAt0HBOINAtrB0QQntp0EgN7FAeRd2QZ3LkUGJ4r9A8/1iQWAUdkHATKtASoJAQVmDU0GR83FA2uEXQTonRUF9ltk/3P7nQAnZTkE7jKm+BvG8QMT/bUGSXOK/fyO6QE4hjUEjhQ7AjFbgQL3io0Fq+Ha+UO+mQJANqkFhbl8/LHHeQC3GvEEfgDRApncSQeAWxUEVjKJAHcMzQUfFwEGscuFAIS9KQaD5sEGSDANBqblPQWnvmUG8VgNBnuZCQQ7TgUHqB+NAsSUnQeM0XkGotaRAouYDQXuTTUFG0zhAVjbFQK02VkFhGGw/TF6YQPrNdUHGbWS+OEmNQDPxkUFq+Ha+UO+mQJANqkG8kvQ/BkYzQFTPrEEziFpA/CqDQBgLwEE3UrVAoMO+QKnCyEE0AAFB73T8QBSgxEFkYR9BjdsVQf++tEHHqC1BOPAfQaZgnUHoAihB/MQZQQDIhEE08w9BAQEFQXoYY0FL2NdAYGnOQFepUUEZKotAEbiQQH/uWUF0zxxAxOtCQKaweUHDY8c/E5kaQKs2lEG8kvQ/BkYzQFTPrEEOr4JAyLf3vfQ6q0F4Dr1Arfw+P6A9vkFgdgZBzPERQJXKxkGrcS5BJkWCQEqXwkGUwktB+2m0QN/DskEsjlZBxvfRQOiNm0Hv70tBSQPTQIgtg0E+wC5B1kS3QLlVYEEa0QZBhiuGQM47T0Gdq71AkL4ZQGOiV0HKCYNAidNVPzZJd0Ey5VpAKNe0vZLakkEOr4JAyLf3vfQ6q0Hpf8NAl+FVwHjcpEGRLQNBv2I5wOEJt0HVQi5Bzm3Wv/n4vkF1dFdBoG6gu4eJukHBuHNB2ljVP8brqkHEfHtBSRQ5QOtOlEHMq2xBFeVVQCSEeUEvPktBQWY5QFQpVUHtKCBB2nTWPyBLRUGa7u1ALXqnOwUqTkEAZrVAzlHVv4RlbUH73aVAwxA5wJ1PjUHpf8NAl+FVwHjcpEG3evpAEAXTwDrlmUGUMCJBEiLSwECpqkEK0U9BBbG0wOSTsUH55HlBcpWCwLPKrEEHk4pB/3gSwPiVnUFjI41BQx9Av8EIiEGz84NBdv/4PcXSY0Eu9GJBA0HAPbhKQkG4UzVBRYBTv3B1NEHIPwtBMxcZwNEHPkFl/d9AjOSFwERxXEHzu9VAJh23wNnFg0G3evpAEAXTwDrlmUFG+xFBXscZwWEji0E6yjlBTAcgwVramUEIbWlB7gAWwZJVn0EOEIpB48f8wAkdmkE+OZdBJwi/wOCWi0FPq5hBU06DwLxOb0EXA45BoDYzwP1LR0E8N3RB6zYawAreKUFtlERBXVBCwJrnHkFa4RlBJmKQwKtYKUHvHf9A4iHOwPlkRkGsVflA2u0Ewf1DbkFG+xFBXscZwWEji0GEMh9BqupCwUWNc0GNH0lBidFPwdiqhUGYNHpBR1RKwfo5iUFspZJBbuszweV/g0Fka59BLJgSweEKbEECAKBB5JDewE7OSEFzO5RB4uSmwCK7JkHgiX5BJBeNwLnyDkHWdE1BpRGYwHXUB0GTXiJBWOPEwJ1IE0Gk0ghB7MQDwYU9LkFmqQdBphQnwRd6UUGEMh9BqupCwUWNc0HbJCVBogNjweEZTkF8O1BBDS92wWRnXkF2CIFBwNN0wYiNYEFspZZBzU5fweP4U0EQKqNBT2Q7wWwIPEG2O6NB8LMSwUMmH0Gi1ZZBgkngwKgPBUFSSoFBrPK5wEmE6UAyv1BBQam8wAA45UBJhSVBJ7PnwEph/kD+ewxBDsQXwRshF0GxWAxBbXRAwUMDNEHbJCVBogNjweEZTkHOzyRB3JZ5wWMAKEHD1U9BLfGIwWv5LkEIxoBBldyJwcATK0FZUJZBJp1+wbdaHUFIxKJBTjZYwZ97CUGey6JBzc4qwR+T6UBnZJZBJJECwUOgyUBt4YBBTovUwDSuu0CPDFBBq93QwId5w0Ds9yRBrxX7wJjr3kAOEAxBrvEjweRUA0FeAQxBMFlRwfQGGEHOzyRB3JZ5wWMAKEFkix9BfpqDwdSpAkHWL0lBtjuRwVEz/kAs2nlBae2SweM36UAaQJJBYDuIwZ8AzEA62p5BhgZowZlhrkAHW59BBWA3waxKmED8n5NBaIwLwRanj0CJm31B7pPgwGvHlkAy8UxBI83ZwNvCq0ApSyJBokoCwRz6yEDoFglB2boqwSKZ5kBOFQhBW2FbwRCw/EBkix9BfpqDwdSpAkE0uhZB+XqGwby/vUB9Cz5BVyqUwVjUoUAXA21BIpaVwWOcgECkhYtB4FyKwfT8RUBzcJhB5wBrwWPUIUDny5lBpS85wVRvHkDoOo9BN58Mwa62PECJJHdB84DiwHGNdEDwLEhBxNHcwK5+m0C+JB5BZtsEwZccuUAhTwRBPZQuweIwy0A1mAFBfmVgwWvjzEA0uhZB+XqGwby/vUCimgtB0AeGwQsIdEBuajBBRm6SwQrYGEBAlF1BwKKSwR79hz8Pf4NBMJeGwaZ9Qz6ix5BBogtjwWzM6zurFJNBlicywcx8Dz9VyIlB5JsHwWzt2T/gwG5B753dwLsmSEAOl0FBA8zcwBmAjkAxLRhBIn0GwXZjqkATOPtA3Z8wwXJEsEDtA/JA6oNhwc2PnkCimgtB0AeGwQsIdECoYv5ASc6CwVZF6j9jBCJB6QeNwc/4vrqLwk1B1HOLwSmXvr9Ds3ZBnPx8wRb2DsAg74hBjUBTwcJRAsD0/YtBP+IkwfcGc79etINBt5z8wENZPD+ulWRBNbbTwNdQJECH1zhBhwbawEjCgUDP5g9BTu4GwYmXmUCld+lAXaowwWFFk0BNPN1AqQhfwcL6YECoYv5ASc6CwVZF6j85gORAYpN6wY/fW7tz6RNBIPmEwWkcBsBl0T5BlHeBwUkSaMDOeGdBGWtnwX/shcCEfYFBhcU+wXfaZ8CO/IRBmOITwbq7BcBik3pBOYDkwJ2fYjsN6lhBfMLFwBUeBkAbAi5BqsjTwPkTaECyWgVBY2gFwVnthUDusNNA9g0uwS/cZ0DGtMVA4/BYwXu9BUA5gORAYpN6wY/fW7vqhspA8thrwQZH1b98ggZB/zx2wViOecDJGDFBfLhrwYZXrMAYnVlB3BxPwSpEt8ArNHVBfBQowb6fmsB0eXxBzxQBwfktPMA6em1B5iHJwMcRD782O0xBy1m0wL5M1j/qpCFBzmLJwBdHSkAzQfJABk0BwWQgYEAME7tAZVUowZXXJkB2iKxAElVPwUQYNz/qhspA8thrwQZH1b/48bBAvlJawSXpSMCMlfNAeFVgwaDDrcAIZiRBlf5SwXNV2sAo4ExBG+E1wck43sChYGhBMcoQwe1iuMD2iG9B/FPbwGfuZcAubmBB69OrwCk+gr9kHD9Bec6fwBX+oj8kgRRBO3y6wLGiKkAIDthALrf0wF5pMkAVDaFAgHIfwVt7zT9mvJJAtJJCwfVmEL/48bBAvlJawSXpSMAP45dA5N5GwV5NjcCbINtAZk9JwXbi1sAiXBhByOg5wdXt/8Bp3UBBdsscwQtw/cCzOVxBGInzwPkT0MA0HGNBcG20wBUBhMCqrFNB2CyNwJBmtr/mDTJB00uIwKHbXz8SQgdBDRmnwKoNCkCXgb1AsVPhwBcSBUAAyYZAwrATwexnKT/yB3JAlj4zwZqX278P45dA5N5GwV5NjcCqnX5AsEIywZsOsMAmNMNAGfIxwQcy+cB8ogxB8CchwS94D8HNODVB5WMEwU2WC8H0fFBBTrbGwGP748CcIFdBaM+NwDYUk8BaXEdBg6RawJuS6L+zaSVB3uZbwDXs7z6WwvRAwIePwGv00j/ylaNA1A/JwG3lsz9DG1pAppAFwUz7Rr6gjD9AGwQiwQg+LsCqnX5AsEIywZsOsMB5Pk5A1hgdwb5QzcB2f6tAKLwawVXtCsFq/gBBKhEJwRx3HMFLtSlBkafZwKySFsGQ+0RBQyqbwGOo9cBTgktBu9FOwJdVocDpiTtBG4MYwC+KDcDNWRlBy/UhwC9rYj07NtxAvqFowJFhkz96yIpAn8uswDF8SD/edyhA70jrwDxrc7/IXA5AKoUPwWuAZcB5Pk5A1hgdwb5QzcD5hR5AjM0HwcHi5cBi2JNAivIDwUv8FsHToupA7HvjwJ6TJ8F2MB5BNiGswEpFIMHClTlB/FNhwHUGA8EbKkBBmgoCwG5ar8AvKjBB8Nynvz5cJ8B/3w1B+rTGv6GEub6I9MRAyywswOqyLD/jbGZAGXGNwPA2Xz5cr/E/UejIwLsPzr+JDL0/BI34wGk2isD5hR5AjM0HwcHi5cDGwt4/g1HlwHya+sDEXXhAYGrbwOJAIcFQG9NAzU62wGtGMcG6lRJBZeB/wNcSKcEbMS5BGsANwLvYCsEW+jRBw0RTvwZjvcBAHyVBv4BOvn7HQcAp4AJBONkCv7DjR7/n065A6NrVv2fTYT5/hzlAn6pXwKCIlb74M5Y/deWkwHyZC8AX2D8/7FzRwCwbnsDGwt4/g1HlwHya+sAaioE/Jqm7wNYkBsE6CElAYhSwwF0kKsH2YbtAumiKwBnpOcG52gZBZ3wpwGY5McG2tyJBPrBrvxxpEsGo0ClBpPvJPsNzy8C4PhpB9OFxP2yTXMDbW/BA4jsVP6Yqmb8EfplASyEYv+ElWL4RVQ5AX10RwJIEQb/uCPc+t+1/wE2CK8B2Uh89ngyqwJcfr8AaioE/Jqm7wNYkBsFkPZU+WNWSwArWDcErwBlAitiFwCD9McHweqNAFRk/wGq9QcG77/VAStGov3beOMEyExdBEk++PsLAGcF5hx5BZQHRP3F12cBhVQ9BOxsIQO9yd8CGHttAPUPcPyqtzb+sg4RAgSYGP6xVH7+CO8g/mE2Sv26ilr9/+US+T1k1wPzHR8Dggii/EgiDwBHwvcBkPZU+WNWSwArWDcFIMdi+5+NVwMC1FMH+K9U/cjc5wGAUOcHsa4tArtTVv1j1SMG4y91ATisFOnIXQMH2KwtB7fDVP+jaIMHT9BJBpz45QMM858B2KgRBteFVQL0BicDbhsVAPzU5QPiIAMDey15AStDVPygKgr8WMWg/yAgouk35yL+QMFy/SfXVv8puYcA5X6y/2UA5wHAwy8BIMdi+5+NVwMC1FMHRspC/KSMIwGQPG8GeXW4/sf3Qv/anP8FtcmZAqfq9vuW2T8HnN8VA8fCoP63uRsFZz/1AWik/QLSpJ8HS6gZBbt6FQNOR9MCV//BAG9eSQAXqlcAtB69A9QSDQMFxGcBZMzNAZko1QAFssr89X3M+MSWSP7yt+L/h8cO/FHkGv7ZqecCOBQLAjWPcv+5218DRspC/KSMIwGQPG8GR1Oq/1SJyv/UmIcHjqEw+4xvKvrjtRcF/wDVA2NJrP/8fVsHUGKxA0o4pQMtmTcGrS+RADnSKQH4YLsHTafRAgh6wQIiYAMG0IdhADq+7QOgvosBIB5dAcgyqQMNEMcCkGAVAteB/QE334L8NxOq+mUYRQHRgE8A0vg3AObUXP89MiMCL+i3AYp4Vv7xM48CR1Oq/1SJyv/UmIcGbWSLAnDRNPvA5J8GSege/hzNTP88UTME9ngRA0cwNQNRHXMFmQJJAIvp/QMx7U8HfeMlAcF62QCgMNMGuLNlATXjbQEJlBsG3Jr1AslnlQDSFrcB80nlA5lzRQOmeR8A/q6Y/8NykQNTSBsDfGZm/k4xXQOsCKsDn/TrAq5PVP7vgk8CIZVrAcVgCP4Yu78CbWSLAnDRNPvA5J8ELR0/AKqmnP1N+LcGvB6G/pwYCQP1DUsEvh6U/c2ZhQMA8YsEcz25A5jKsQAYhWcFo56xABJHjQJhhOcGPi7tA0vsDQTOAC8G2Z59A79IHQQaQt8A5DEBA1Iz4QGMJXMBwJuY+7tzIQFsmHMBljf6/RF2NQD6VQMBrRmrATP4rQHXJn8Bjx4PAE2LGPz2M+8ALR0/AKqmnP1N+LcE2W3zABmgYQFUfNMGN7v6/3dNOQB6XWMFAo/w+XDmbQPgCaMEkKjZAXcDZQBBBXsFC+I1A8h4JQbjuPcEo0ZpAfMcaQQi1D8EDXXxAiB4dQavtv8Aw8v4/koMPQTP8bcC0lPy+uTfrQMtMMMBOKDbAuLCsQGFUV8Bc943AYmZoQN1OrMBE0JrAN8QhQB5hBME2W3zABmgYQFUfNMH15ZTAFoRaQGQ3O8HOUS/Ar9GNQEsYX8EC8K++MMrGQEiObcEBNPI/1HMEQWi5YsGynldAdjkhQaqAQcGSPGxAXgAyQeTKEsF2bTFAwEkyQVQ4xsBozVs/7wEiQQ/tfMDfwMS/r4UFQRYVQ8BweHHA5+3IQJBobsCR/qfApmKPQMKlucCFTbLAm6lbQKSIC8H15ZTAFoRaQGQ3O8G3DKzA6R2NQO7AQsEgX2HArnW0QIS1ZcFY5p+/CabzQLi+csH/zFQ/RuAcQVheZsGyZgpAOf45QVjlQ8HU0hhAll9JQWOQFMGkNLk/WuVGQWEcysCX/9C+eTkzQTUzhMDniyvATKETQZZBVMApWZjAFyjhQInhgsDl8sLAMeymQILTx8D4KMrAdCmIQLY+E8G3DKzA6R2NQO7AQsHJEsTAD8irQHiMSsFf3IvAQWPbQKI2bMGkURHAO90QQT9Yd8HHnMe+U/o1Qb71aMESg0Q/GhdTQd3pRMEGSGQ/mGZgQTXdFMHgLVC9xVdaQXJfy8AMW+e/LIpCQR4LiMCcFHrAlF4fQcWPY8BWObnA94L0QN+MjsCHQ97Aa0m6QJyk1sAlPOLAaaqfQPZeG8HJEsTAD8irQHiMSsEOz93A5RrJQEEvUsGi46rAryABQb4zcsGvmV7AciwoQVYCe8HACOy/YTpPQek+asH0NGC/jdNrQV1nRMEIO1W/QE52QXOfE8FnCt2/qNtrQZ/yycAHXFTAbkhPQaXpicDOxKXArDwoQeWYcMB1D9rAvC4BQUjTmcALC/nAIivJQF6C5cBGavrAtzW0QBiJI8EOz93A5RrJQEEvUsFIfPrAk3/kQJAHWcH8ANDAA/ITQXQVd8EVqp7AduA+QdZCfcELYGfAQYpnQf7nacGVLTXADIWBQY80QsEKMDTA1QCFQdPLEMFcq2TAD5N6QQTWxcD40JzA1+BYQT26icDfJ87AZfItQei+esDuIfnAmkgFQSEVpMCWHQnBhJHTQPp788D5XAnBW6LFQLomK8FIfPrAk3/kQJAHWcG0zw3BK6L8QPdHXsEArf3A0PIkQaUWesH1nNnAcVpTQUx0fcEDGbnA1hh9QQ96Z8GI16TASn+LQXgLPsH+RaLAoA2NQY5CDMGQFLLAscyCQZ7svsD5BtDAqPdeQURPh8ABF/TACJAwQfCTgMB6TQrBpNEGQWiIrMA3bhTBxdfZQJNl/8D9thXBa57TQLR7McG0zw3BK6L8QPdHXsFhSyHBHKEHQZoRYcES4hrBUjYyQetGesE8BRHB6B9jQbWuesFmWQbBW6GGQSgtYsEbdfvAN6qSQUFTN8EL8PLAA3GSQWOcBcEFbPXAFQWGQWW1tMBRHwHB9HRhQcFKgsAn/ArBYIswQSl7gcD9pxXBkGgGQUF+ssDWRh7BsK3cQAYZBMFeiSLBeZLdQObPNcFhSyHBHKEHQZoRYcGjBDjBUKYMQeSHYMHNKTzB/zg5QReTdsFIqDvB/wlrQRbCc8HJojbBE2CKQQ/WWMHCcS7BIZeVQbgFLcEZRyXB3iiUQfUc+MCXlx3BbXeGQU0epsBtchnBLFxgQcMPdMDy8xnBLYsuQcVTf8Bx+R7BBNUEQe+BtcB4KifBzc3cQE6RBsEhVTDB1YbiQIqIN8GjBDjBUKYMQeSHYMFUxlHBA5QLQdbPW8F+YWHB4GA3QSDrbcEbjmrBcQBoQYp6Z8HZ1mrBsTWIQdE3SsE9KGLBouaSQRP6HcHQ1VLBrTWRQRs43cCW+kDB1paDQdCdkcBsXzHBz2BbQXDOWsDQMijBP8EqQcGQdMAR6ifBTFYCQdXNtMCtmDDB0+jZQKakBsEZ6z/Bo6zgQKsCNsFUxlHBA5QLQdbPW8EIqW3BeZgCQfwaUsEbAoTBVccqQbaKX8HwAI3BHyJYQTEYVcH6Z4/BvYF+QRKQNcFskorB+c6JQUNlCcG+l3/BWueIQdXauMD17mPBIZB5QXzUasDIk0nBRWFRQZgVNcAbljfBfAYkQaDfXsAHyDLBvk37QA2ArsAlczzBTxXRQNVqA8E9AFLByLPUQK1iMMEIqW3BeZgCQfwaUsF6BYXB1lbgQBu+QsHjj5bBLacSQcscS8EKEqPBp0c7QWKAPMHqMafBCypfQR3TGsGY1KHB37B0QRc23sAPapTBghd2QS4eisCWioLB3f1iQbjNH8BaAGLBHIJAQd+l/L8N/EjBouEXQY/EOMBMvEDBev7nQM+8n8DwdkvB0PC8QPEs98AATGbBhyO6QG+iJcF6BYXB1lbgQBu+QsEzTpLBWO+mQBplLcF/+abBzHDeQBSuMMFZ97XBTHcSQUUCHsFlQ7vBs8IzQdDE9MBLcrXBwS5KQVO0nsAME6bBb7lPQUzFIcAZRJHBmOZCQR6ngL+aMXnB4CUnQYO+TL/pNVvB+eYDQb69+7/OnVDBJjfFQCMvhsAAQFzBB1+YQKM/3MB9/nrBqkmNQKgIFcEzTpLBWO+mQBplLcH5TJ3B6UUzQH5VEsEF+bPBziqDQMG6EMFjh8TBVMO+QMN99MBqiMrBlXT8QFDQqcA/YMTBYNsVQVXfKsA5tbPBE/AfQTl7376v/pzB5cQZQaSJSz+kUobB+gAFQdPdMT+JiGvBamnOQA3gNb99hl/BKriQQOXSQsDR1mvB++tCQBnKtcBulobBLZkaQBJC/cD5TJ3B6UUzQH5VEsEaoKTBJuD3vYpI5cCvYrzBz/g+P6DA2MAlxs3BRfERQK2vpMC6IdTBGUWCQGISLsBRwc3BGGq0QKRyE75RWrzB9ffRQPYL8j9wlqTBaAPTQFG/NUDc04zBzkS3QHmvHEDJ4HbBRSuGQG02Uj+gKWrBnb0ZQLt+zb9x6nbBjs5VP0vNhcA33IzBrAK1vd3rxsAaoKTBJuD3vYpI5cAiNqfBh+FVwDFqoMCCT7/BKGM5wJ7eisDO89DBxm/Wv8U6IMDiaNfBYHKjuz7oWTvO89DBN1XVP/aYIECCT7/BZhI5QIv5ikAiNqfBduNVQIxpoEDDHI/BG2U5QP3dikDt8HrBrHPWP4I5IEDEBm7BAmGnOxf0Xrvq8HrBSFHVvzmaIMDAHI/BcxA5wC36isAiNqfBh+FVwDFqoMBPlqTBkgXTwGa8NcAaWLzB5iLSwMiY8b+gvc3BELK0wGh6GT6PHdTBkJaCwJV/LkCiws3BB3sSwNndpEDGYLzBfSVAv8/Z2EBToKTBk+H4PdhF5UCJ3ozBhzbAPdnNxkAG8nbB0H9Tv9abhUAmMmrB8BYZwHufzD/+53bBhOSFwH2xU7/a1YzBWB23wFTkHMBPlqTBkgXTwGa8NcAc/pzBXscZwXJuS78WsLPBiQcgwUp94T70V8TBbQEWwZFHK0A2f8rBQ8n8wEoKqkDEf8TBrwm/wO2t9EAK9bPBwE+DwGbHEEG6TZ3BxTgzwD1TEkHAm4bBETgawNog/UDE52vBf1BCwOiUtUBAmV/B1mGQwMhcQkAjmGvBaiHOwB1WND/KVobBre0EwfuwMr8c/pzBXscZwXJuS7+IQpHBAutCwXvAgD8eCqbB+NFPwfoLIkBtZLXBv1RKwRLrnkBWNLvB4eszwSwA9UAp67XBjJgSwTwaHkF886bBc5HewNq5MEEAUJLBOOWmwHZhLUHWEHvBTheNwIn2FEE3XFzBvhGYwP8H3EBlvFDBeOPEwOXyhUC8TlvBD8UDwVn6+j8VPnnB4xQnwbH6Sz+IQpHBAutCwXvAgD/kh4LBXANjwb7eH0DCXJTBxC52wVtDikBJwKHBltN0weFt3kAVHKfB205fwcnwGkGRAKPBomQ7wdaXPEF+h5bBf7QSwbInS0FyCIXB5krgwHy5QkEqZ2bBF/S5wICPJUEZoEvBb6q8wHf09kCC6EDB47PnwMeAn0CJH0nBKsQXwVplOECtEWLBTHRAwctL/D/kh4LBXANjwb7eH0AD5mPB+5Z5wVfsakCZcn/BTvGIwRsCuUDEdorBxdyJwUmBCUGwSo/BlZ1+we2sNUHm6YzBtzZYwR4uVUGH94PBH88qwcuTX0GOsm3BVpECwcIUUkH4JVLBZ4vUwMpOMEEJqzzBid3QwJJOA0EwAzPBcBX7wNhFrkDCxDfBlfEjweiGXkB/qUnBK1lRwTDwNEAD5mPB+5Z5wVfsakBc7UDBpZqDwa6tkUBMqVLB3juRwY9e3UBx6GHBie2SwW0THkHylGrBcjuIwXdQSkHTW2rBjwZowd6LZ0FkTGHB8V83wXbwbUEi1FHBQ4wLwbzHW0EyGEDBo5PgwErvNUEN2TDB98zZwCeLBkGMLCjBpUoCwTmctECqZSjB+7oqwc9KdEAYdTHBmWFbwWe4WkBc7UDBpZqDwa6tkUCnhh3B+nqGwYcxpkBnGCXBWCqUwc9A+EDlMS7BI5aVwSEbLUHxYjbB4FyKwTXpWEGjeTvB5wBrwdXNc0HtGDzBpi85wUWUdkEhFjjBN58MwSx+YEFhhDDB84DiwIp2N0HjaifBxtHcwM97BkHXOR/BZtsEwXdbtUAmIxrBPpQuwWgkf0DagxnBf2VgwZ4KdECnhh3B+nqGwYcxpkBWRPXA1AeGwZnLtED/l/LAPW6SwRytBUFvBPvAqqKSwR1lN0HpIwbBEJeGwVo7YkEB4RDBXAtjwXC1ekHe2BrBVycywV5EekG9XyHBuJsHwXQGYUHotSLBy53dwCa/NUGxfx7BFMzcwCUHBEEA3hXBPX0Gwc5hskDpIAvBAaAwwaBtgUALKQHBBYRhwcBPgkBWRPXA1AeGwZnLtEDa5bHAVM6CwRgHv0Bz9qHAsAeNwdBTDEGYfKTAYXOLwSAcPkEpy7jAeft8waSFZ0EwcdnAbj9TwbV3fUEpr/3AauEkwfcQekGG5w3B/Jv8wLo6XkE53xXBibbTwHdqMUEnnBTBwgfawFBE/0DfdArBKu8GwUVxrEC3Q/TANKswwSCNgEDABdDANglfwZhah0Da5bHAVM6CwRgHv0CwVGTALpN6wVDvxUDNsDPAOfmEwfDaEEEeqDTA03eBwRlCQkFV+GbAs2tnwVPwaUEfk57ABcY+wb1DfUEsDdDAzOITwbAOd0F4qPrA0n/kwPL6WEE1fQnBSMHFwKoXK0FiPwnB3sbTwAVh80CoVvnAYmcFwY4EpEC2P87ADw0uwW+7ekCoxZzASPBYwdLHiUCwVGTALpN6wVDvxUBnZNy/7NhrwYcLykAOoFO/Qz12wZStE0HluV6/5bhrwV9zREFljuu/Ph1PwZxFakGwjl7AqhQowewBe0HN+KrArBQBwVgsckFR+d3A7CDJwNsiUkFpnvrAP1i0wAx7I0EyO/nA+GDJwH1q5UDVLtrAI0wBwQbGmUAZy6XAtlQowcOacEBIM1TAtVRPwYn4iUBnZNy/7NhrwYcLykCnrjy9e1JawSt3y0BDjmU/MFVgwVbqFEGEf0U/Sv5SwcD0REGUwMa+y+A1wXr7aEE9YRHA3MkQwUtXd0G894vATlPbwEUvbEF3OsTAP9OrwKyASkGfZeLA082fwOxRG0HHY97AoHu6wASP1kDSR7nAnLb0wJGBjkB9BnrAPHIfwdmTY0B88Oa/cZJCwfYZiECnrjy9e1JawSt3y0C3t7k/m95GwRYwykAWExlArk5Jwd2aFEFLlApAu+c5wajtQ0ExB1U/RcocwURiZkF3D6C/5IbzwDe9ckF5kWHA02u0wACvZUEbLqzAEyyNwCq3QkG6ScrA7EuIwFc0E0FXCsPA0hmnwBrDx0AXYZjAvVThwOLZgkCreCvAMLETwe1HVECOd8++uT4zwWRAhEC3t7k/m95GwRYwykDsoDFAm0IywQBHxkAFa2xA7PExwZHSEkGIu1dAnSchwaSGQUHBOvI/aWMEwRa8YkEVqbC+FrXGwPWMbUFjfS/ADM6NwFUTX0EyAJXA3KFawCMwO0E/ZbLAl+RbwBKBC0GADajA6IaPwAKauUDhfHHATQ/JwDVebkDElMS/hZAFwbUaQ0B5d1w/CgQiwSoBfUDsoDFAm0IywQBHxkAbgXxANRgdwdz2v0AX4ppAkLsawYa5D0F7A45AqBAJwejxPUEOLzZAyKbZwBxCXkHsMvw+sCmbwJgBaEFFKf+/5dBOwLSTWEEbgHzAWoIYwM4aNEGX4ZrA7fQhwLhcBEH9Ao7AjKBowKxIrEAXLjbAy8qswIdQV0BSK/y+40frwI9SMEAsK/8/kIQPwRgKbkAbgXxANRgdwdz2v0AydZ9AL80HwZSVt0AtmLtAGPIDwciCC0G376xA4XrjwE5jOUGV0m5AECCswGghWUHScaU/oFFhwLc7YkHCM6G/VwgCwNJBUkGiYk/A6Ninv517LUFM1IPAmrHGvz6H+0CwV2rAaysswDXGn0DAlf6/hHCNwP+TQEBCduY+x+fIwLsqHECSIUBAa4z4wEUSXEAydZ9AL80HwZSVt0BzL71A0FDlwJKHrUDSNdlAW2nbwBNmBkHxf8lAf022wGMMNEF4Q5JAbt1/wGR7U0GqmgRAEr0NwOVGXEEMrAe/nzlTv50TTEGDayLAT1xOvs44J0FGeFrAqtICvwwt70CJDDvAx9jVv2vgk0A1J5m/76lXwNEEKkBGsaY/JuWkwMfWBkBV3nlAfVzRwN+jR0BzL71A0FDlwJKHrUDCJthA9qi7wE0wokAkcPRA0xOwwEKYAEGJUeRAtGeKwNcXLkGkHKxAbHkpwO5lTUHwwTVAwqFrvyofVkFQVkw+DRrKPibtRUFw6eq/+u9xP84mIUGBBy7A9kYVP2ZN40BLyg3ABRoYvz5OiEBHBOu+eVwRwBtkE0DKFgVAdO1/wFD+4D+tCZdAlQyqwDBHMUDCJthA9qi7wE0wokCRAfFAQ9SSwKPplUAE7QZB7daFwBWQ9EDx1P1AGhU/wGKoJ0E0PcVA58iov0TtRkGJeWZAvW2+Pse1T0GAZG4/ZAfRP3CnP0Eju5C/IR0IQJwPG0GEDgLA8kTcP8h410DACMS/5SYGPy5weUCzsXI+202Sv065+D/1KzNAGVk1wB11sj8vBq9AiQeDwOdzGUCRAfFAQ9SSwKPplUBgKgRBQ+JVwNIBiUAH9hJBTDY5wFw750AgLgtB4dLVv6fZIEHO0N1A1uUUOvoVQEFlcItArvPVPw70SEGTNtU/nkA5QJwTOUFRL9i+S+RVQLi1FEEOaay/XDg5QOYxy0DBU1y/AtfVP+9zYUC8B2g/BTbnuToFyT+9wl5Ahe/Vv5QUgj8fhMVAjj45wAWMAEBgKgRBQ+JVwNIBiUCaVA9B1SEIwHV2d0DMhx5BafzQv7x12UCHFBdBxve9viLAGUG08/VAH/KoPzfdOEEmf6NAnSo/QOa7QUHSxhlAg9+FQL37MUFLVpU+p9iSQCjVDUH9hyi/2QaDQNLvvUA3T0W+d041QJfKR0B8K8g/5CySP22slj9rf4RAXWwGv+xtHz8oG9tAB1/cvyy4zT+aVA9B1SEIwHV2d0CUPRpBexRyv9icXEB/0ClBAP7JvqV2y0CTuCJB3+BrPz9pEkFk3AZBxZEpQDI4MUECZrtALHWKQN/mOUGdD0lAQx+wQLUhKkGBk4E/kK+7QHYiBkHLhB894QyqQLIcr0Du7fY+0uF/QLaBK0ByTg5ARUgRQKQXQT/9eZlAy74XP+qyWD4yWPBA/5EVv54/mT+UPRpBexRyv9icXED5HSVBoUpNPnfaQUB/+TRBKT1TPylqvUBeMS5BOdANQCjaCkHHlhJBSP5/QL0RKUFxHtNApGC2QBNDMUFvZHhAW3rbQDM8IUF1zd4/ZFvlQO2Q+kCC4j8/Fl7RQAMUnkBEMpY/nt2kQLSTC0B3gzlAM41XQPiqlT7Z0K5AZJTVP2AAYb6I3gJB/1oCP+AtSD/5HSVBoUpNPnfaQUAcKTBBAKunP3h7J0AsKUBB1QgCQApnr0A4lTlB9WlhQI8JA0F4MB5BKzWsQFdEIEH5o+pAiJPjQOGOJ0Fc2pNACP0DQQT1FkGYih5A7tMHQQXT5UCxFL0/Mo74QLspikBGtPE/pd3IQJD2zT8ebWZAdF2NQA3+Xr6G88RALv4rQBJoLL+S3g1BPWLGPy9ruj4cKTBBAKunP3h7J0BWiTtBCmkYQK+zDUB5gUtB+tNOQElmoUCs+kRBSTmbQI6w9UCetClBg8DZQF6RFkEm/gBBRx8JQcRwHEHrf6tAKMgaQaLjCkE1QU5Ahh8dQc87zUCmYA5AyoQPQbdeZUDdeyhASTrrQMgocz8GyopAErOsQLpoSL/0NtxADmpoQJgvk7+qWRlBhsYhQF/SWL1WiTtBCmkYQK+zDUA+XEdBGodaQBMM6T+VH1dBldONQFQsk0BNe1BBUczGQL4G5ED9NjVB5HQEQRGUC0EEoQxBaDohQZtuD0G6MsNAHgEyQU0V+UCunn5AREoyQfrvr0BTkT9AQAIiQVoNLkBwIlpA4oUFQV2IRT7WmaNATu7IQI3Us7/FxfRAR2OPQOuo0r+LaiVBsKtbQEIl7r4+XEdBGodaQBMM6T/9rFNBHx+NQFQBtz9iG2NB7Ha0QAgehED6N1xBUKfzQGIf0EBG20BB7uAcQctm/UAtWhhB4/45QWHS/0AqHttAQGBJQRe81kDF4pdAAuZGQVAmjUD2C3JAHTozQX0i2z/JzIZA66ETQcXFKb8vhr1ATinhQEsABcAvRAdBYe2mQHfXCcBJDzJBpCqIQKyrXr/9rFNBHx+NQFQBtz+ybmBBccmrQIzygj/8iG9B+WTbQJ4pZkAtYGhBMN4QQQppuEBi30xBR/s1QbMl3kArZSRB9RdTQTgu2kAtlPNAR2dgQbSSrUBc8bBAQlhaQQCOSEDLvJJAgIpCQaN2Dz9jDqFAzF4fQZqVzb/3D9hAa4P0QCBEMsAyghRBDkq6QDJVKsBGHT9BZ6ufQFw8or+ybmBBccmrQIzygj+yem1BdBvJQEnXED+oeXxBkSEBQd9vPEAVNHVB2C0oQQqgmkDInFlBEDxPQaMjt0BbGDFBNNVrQc0erEAYggZBlU92QcQKeUB9hspAdNxrQchh1D+QiKxAnkhPQZIkOL+2E7tAWDwoQV7ZJsBMQvJAIC4BQZPgX8CSpSFB9inJQPHWScDVO0xBMTW0QDRI1b+yem1BdBvJQEnXED88k3pB7X/kQInSXjue/YRBafITQaPnBUBrf4FBB+E+QV+2Z0A4fWdB4opnQWW3hUAy1T5BVYWBQap+Z0CV6xNBCQGFQSuHBUDtf+RAPJN6QcLBXrvqr8VAyuBYQZ/nBcC5qNNALfItQVa2Z8D4VQVBUkgFQWO3hcD9/S1BFZHTQKp+Z8Ca51hBQKLFQC+HBcA8k3pB7X/kQInSXjsAAAEAAgAAAAIAAwADAAIABAADAAQABQAFAAQABgAFAAYABwAHAAYACAAHAAgACQAJAAgACgAJAAoACwALAAoADAALAAwADQANAAwADgANAA4ADwAPAA4AEAAPABAAEQARABAAEgARABIAEwATABIAFAATABQAFQAVABQAFgAVABYAFwAXABYAGAAXABgAGQABABoAGwABABsAAgACABsAHAACABwABAAEABwAHQAEAB0ABgAGAB0AHgAGAB4ACAAIAB4AHwAIAB8ACgAKAB8AIAAKACAADAAMACAAIQAMACEADgAOACEAIgAOACIAEAAQACIAIwAQACMAEgASACMAJAASACQAFAAUACQAJQAUACUAFgAWACUAJgAWACYAGAAaACcAKAAaACgAGwAbACgAKQAbACkAHAAcACkAKgAcACoAHQAdACoAKwAdACsAHgAeACsALAAeACwAHwAfACwALQAfAC0AIAAgAC0ALgAgAC4AIQAhAC4ALwAhAC8AIgAiAC8AMAAiADAAIwAjADAAMQAjADEAJAAkADEAMgAkADIAJQAlADIAMwAlADMAJgAnADQANQAnADUAKAAoADUANgAoADYAKQApADYANwApADcAKgAqADcAOAAqADgAKwArADgAOQArADkALAAsADkAOgAsADoALQAtADoAOwAtADsALgAuADsAPAAuADwALwAvADwAPQAvAD0AMAAwAD0APgAwAD4AMQAxAD4APwAxAD8AMgAyAD8AQAAyAEAAMwA0AEEAQgA0AEIANQA1AEIAQwA1AEMANgA2AEMARAA2AEQANwA3AEQARQA3AEUAOAA4AEUARgA4AEYAOQA5AEYARwA5AEcAOgA6AEcASAA6AEgAOwA7AEgASQA7AEkAPAA8AEkASgA8AEoAPQA9AEoASwA9AEsAPgA+AEsATAA+AEwAPwA/AEwATQA/AE0AQABBAE4ATwBBAE8AQgBCAE8AUABCAFAAQwBDAFAAUQBDAFEARABEAFEAUgBEAFIARQBFAFIAUwBFAFMARgBGAFMAVABGAFQARwBHAFQAVQBHAFUASABIAFUAVgBIAFYASQBJAFYAVwBJAFcASgBKAFcAWABKAFgASwBLAFgAWQBLAFkATABMAFkAWgBMAFoATQBOAFsAXABOAFwATwBPAFwAXQBPAF0AUABQAF0AXgBQAF4AUQBRAF4AXwBRAF8AUgBSAF8AYABSAGAAUwBTAGAAYQBTAGEAVABUAGEAYgBUAGIAVQBVAGIAYwBVAGMAVgBWAGMAZABWAGQAVwBXAGQAZQBXAGUAWABYAGUAZgBYAGYAWQBZAGYAZwBZAGcAWgBbAGgAaQBbAGkAXABcAGkAagBcAGoAXQBdAGoAawBdAGsAXgBeAGsAbABeAGwAXwBfAGwAbQBfAG0AYABgAG0AbgBgAG4AYQBhAG4AbwBhAG8AYgBiAG8AcABiAHAAYwBjAHAAcQBjAHEAZABkAHEAcgBkAHIAZQBlAHIAcwBlAHMAZgBmAHMAdABmAHQAZwBoAHUAdgBoAHYAaQBpAHYAdwBpAHcAagBqAHcAeABqAHgAawBrAHgAeQBrAHkAbABsAHkAegBsAHoAbQBtAHoAewBtAHsAbgBuAHsAfABuAHwAbwBvAHwAfQBvAH0AcABwAH0AfgBwAH4AcQBxAH4AfwBxAH8AcgByAH8AgAByAIAAcwBzAIAAgQBzAIEAdAB1AIIAgwB1AIMAdgB2AIMAhAB2AIQAdwB3AIQAhQB3AIUAeAB4AIUAhgB4AIYAeQB5AIYAhwB5AIcAegB6AIcAiAB6AIgAewB7AIgAiQB7AIkAfAB8AIkAigB8AIoAfQB9AIoAiwB9AIsAfgB+AIsAjAB+AIwAfwB/AIwAjQB/AI0AgACAAI0AjgCAAI4AgQCCAI8AkACCAJAAgwCDAJAAkQCDAJEAhACEAJEAkgCEAJIAhQCFAJIAkwCFAJMAhgCGAJMAlACGAJQAhwCHAJQAlQCHAJUAiACIAJUAlgCIAJYAiQCJAJYAlwCJAJcAigCKAJcAmACKAJgAiwCLAJgAmQCLAJkAjACMAJkAmgCMAJoAjQCNAJoAmwCNAJsAjgCPAJwAnQCPAJ0AkACQAJ0AngCQAJ4AkQCRAJ4AnwCRAJ8AkgCSAJ8AoACSAKAAkwCTAKAAoQCTAKEAlACUAKEAogCUAKIAlQCVAKIAowCVAKMAlgCWAKMApACWAKQAlwCXAKQApQCXAKUAmACYAKUApgCYAKYAmQCZAKYApwCZAKcAmgCaAKcAqACaAKgAmwCcAKkAqgCcAKoAnQCdAKoAqwCdAKsAngCeAKsArACeAKwAnwCfAKwArQCfAK0AoACgAK0ArgCgAK4AoQChAK4ArwChAK8AogCiAK8AsACiALAAowCjALAAsQCjALEApACkALEAsgCkALIApQClALIAswClALMApgCmALMAtACmALQApwCnALQAtQCnALUAqACpALYAtwCpALcAqgCqALcAuACqALgAqwCrALgAuQCrALkArACsALkAugCsALoArQCtALoAuwCtALsArgCuALsAvACuALwArwCvALwAvQCvAL0AsACwAL0AvgCwAL4AsQCxAL4AvwCxAL8AsgCyAL8AwACyAMAAswCzAMAAwQCzAMEAtAC0AMEAwgC0AMIAtQC2AMMAxAC2AMQAtwC3AMQAxQC3AMUAuAC4AMUAxgC4AMYAuQC5AMYAxwC5AMcAugC6AMcAyAC6AMgAuwC7AMgAyQC7AMkAvAC8AMkAygC8AMoAvQC9AMoAywC9AMsAvgC+AMsAzAC+AMwAvwC/AMwAzQC/AM0AwADAAM0AzgDAAM4AwQDBAM4AzwDBAM8AwgDDANAA0QDDANEAxADEANEA0gDEANIAxQDFANIA0wDFANMAxgDGANMA1ADGANQAxwDHANQA1QDHANUAyADIANUA1gDIANYAyQDJANYA1wDJANcAygDKANcA2ADKANgAywDLANgA2QDLANkAzADMANkA2gDMANoAzQDNANoA2wDNANsAzgDOANsA3ADOANwAzwDQAN0A3gDQAN4A0QDRAN4A3wDRAN8A0gDSAN8A4ADSAOAA0wDTAOAA4QDTAOEA1ADUAOEA4gDUAOIA1QDVAOIA4wDVAOMA1gDWAOMA5ADWAOQA1wDXAOQA5QDXAOUA2ADYAOUA5gDYAOYA2QDZAOYA5wDZAOcA2gDaAOcA6ADaAOgA2wDbAOgA6QDbAOkA3ADdAOoA6wDdAOsA3gDeAOsA7ADeAOwA3wDfAOwA7QDfAO0A4ADgAO0A7gDgAO4A4QDhAO4A7wDhAO8A4gDiAO8A8ADiAPAA4wDjAPAA8QDjAPEA5ADkAPEA8gDkAPIA5QDlAPIA8wDlAPMA5gDmAPMA9ADmAPQA5wDnAPQA9QDnAPUA6ADoAPUA9gDoAPYA6QDqAPcA+ADqAPgA6wDrAPgA+QDrAPkA7ADsAPkA+gDsAPoA7QDtAPoA+wDtAPsA7gDuAPsA/ADuAPwA7wDvAPwA/QDvAP0A8ADwAP0A/gDwAP4A8QDxAP4A/wDxAP8A8gDyAP8AAAHyAAAB8wDzAAABAQHzAAEB9AD0AAEBAgH0AAIB9QD1AAIBAwH1AAMB9gD3AAQBBQH3AAUB+AD4AAUBBgH4AAYB+QD5AAYBBwH5AAcB+gD6AAcBCAH6AAgB+wD7AAgBCQH7AAkB/AD8AAkBCgH8AAoB/QD9AAoBCwH9AAsB/gD+AAsBDAH+AAwB/wD/AAwBDQH/AA0BAAEAAQ0BDgEAAQ4BAQEBAQ4BDwEBAQ8BAgECAQ8BEAECARABAwEEAREBEgEEARIBBQEFARIBEwEFARMBBgEGARMBFAEGARQBBwEHARQBFQEHARUBCAEIARUBFgEIARYBCQEJARYBFwEJARcBCgEKARcBGAEKARgBCwELARgBGQELARkBDAEMARkBGgEMARoBDQENARoBGwENARsBDgEOARsBHAEOARwBDwEPARwBHQEPAR0BEAERAR4BHwERAR8BEgESAR8BIAESASABEwETASABIQETASEBFAEUASEBIgEUASIBFQEVASIBIwEVASMBFgEWASMBJAEWASQBFwEXASQBJQEXASUBGAEYASUBJgEYASYBGQEZASYBJwEZAScBGgEaAScBKAEaASgBGwEbASgBKQEbASkBHAEcASkBKgEcASoBHQEeASsBLAEeASwBHwEfASwBLQEfAS0BIAEgAS0BLgEgAS4BIQEhAS4BLwEhAS8BIgEiAS8BMAEiATABIwEjATABMQEjATEBJAEkATEBMgEkATIBJQElATIBMwElATMBJgEmATMBNAEmATQBJwEnATQBNQEnATUBKAEoATUBNgEoATYBKQEpATYBNwEpATcBKgErATgBOQErATkBLAEsATkBOgEsAToBLQEtAToBOwEtATsBLgEuATsBPAEuATwBLwEvATwBPQEvAT0BMAEwAT0BPgEwAT4BMQExAT4BPwExAT8BMgEyAT8BQAEyAUABMwEzAUABQQEzAUEBNAE0AUEBQgE0AUIBNQE1AUIBQwE1AUMBNgE2AUMBRAE2AUQBNwE4AUUBRgE4AUYBOQE5AUYBRwE5AUcBOgE6AUcBSAE6AUgBOwE7AUgBSQE7AUkBPAE8AUkBSgE8AUoBPQE9AUoBSwE9AUsBPgE+AUsBTAE+AUwBPwE/AUwBTQE/AU0BQAFAAU0BTgFAAU4BQQFBAU4BTwFBAU8BQgFCAU8BUAFCAVABQwFDAVABUQFDAVEBRAFFAVIBUwFFAVMBRgFGAVMBVAFGAVQBRwFHAVQBVQFHAVUBSAFIAVUBVgFIAVYBSQFJAVYBVwFJAVcBSgFKAVcBWAFKAVgBSwFLAVgBWQFLAVkBTAFMAVkBWgFMAVoBTQFNAVoBWwFNAVsBTgFOAVsBXAFOAVwBTwFPAVwBXQFPAV0BUAFQAV0BXgFQAV4BUQFSAV8BYAFSAWABUwFTAWABYQFTAWEBVAFUAWEBYgFUAWIBVQFVAWIBYwFVAWMBVgFWAWMBZAFWAWQBVwFXAWQBZQFXAWUBWAFYAWUBZgFYAWYBWQFZAWYBZwFZAWcBWgFaAWcBaAFaAWgBWwFbAWgBaQFbAWkBXAFcAWkBagFcAWoBXQFdAWoBawFdAWsBXgFfAWwBbQFfAW0BYAFgAW0BbgFgAW4BYQFhAW4BbwFhAW8BYgFiAW8BcAFiAXABYwFjAXABcQFjAXEBZAFkAXEBcgFkAXIBZQFlAXIBcwFlAXMBZgFmAXMBdAFmAXQBZwFnAXQBdQFnAXUBaAFoAXUBdgFoAXYBaQFpAXYBdwFpAXcBagFqAXcBeAFqAXgBawFsAXkBegFsAXoBbQFtAXoBewFtAXsBbgFuAXsBfAFuAXwBbwFvAXwBfQFvAX0BcAFwAX0BfgFwAX4BcQFxAX4BfwFxAX8BcgFyAX8BgAFyAYABcwFzAYABgQFzAYEBdAF0AYEBggF0AYIBdQF1AYIBgwF1AYMBdgF2AYMBhAF2AYQBdwF3AYQBhQF3AYUBeAF5AYYBhwF5AYcBegF6AYcBiAF6AYgBewF7AYgBiQF7AYkBfAF8AYkBigF8AYoBfQF9AYoBiwF9AYsBfgF+AYsBjAF+AYwBfwF/AYwBjQF/AY0BgAGAAY0BjgGAAY4BgQGBAY4BjwGBAY8BggGCAY8BkAGCAZABgwGDAZABkQGDAZEBhAGEAZEBkgGEAZIBhQGGAZMBlAGGAZQBhwGHAZQBlQGHAZUBiAGIAZUBlgGIAZYBiQGJAZYBlwGJAZcBigGKAZcBmAGKAZgBiwGLAZgBmQGLAZkBjAGMAZkBmgGMAZoBjQGNAZoBmwGNAZsBjgGOAZsBnAGOAZwBjwGPAZwBnQGPAZ0BkAGQAZ0BngGQAZ4BkQGRAZ4BnwGRAZ8BkgGTAaABoQGTAaEBlAGUAaEBogGUAaIBlQGVAaIBowGVAaMBlgGWAaMBpAGWAaQBlwGXAaQBpQGXAaUBmAGYAaUBpgGYAaYBmQGZAaYBpwGZAacBmgGaAacBqAGaAagBmwGbAagBqQGbAakBnAGcAakBqgGcAaoBnQGdAaoBqwGdAasBngGeAasBrAGeAawBnwGgAa0BrgGgAa4BoQGhAa4BrwGhAa8BogGiAa8BsAGiAbABowGjAbABsQGjAbEBpAGkAbEBsgGkAbIBpQGlAbIBswGlAbMBpgGmAbMBtAGmAbQBpwGnAbQBtQGnAbUBqAGoAbUBtgGoAbYBqQGpAbYBtwGpAbcBqgGqAbcBuAGqAbgBqwGrAbgBuQGrAbkBrAGtAboBuwGtAbsBrgGuAbsBvAGuAbwBrwGvAbwBvQGvAb0BsAGwAb0BvgGwAb4BsQGxAb4BvwGxAb8BsgGyAb8BwAGyAcABswGzAcABwQGzAcEBtAG0AcEBwgG0AcIBtQG1AcIBwwG1AcMBtgG2AcMBxAG2AcQBtwG3AcQBxQG3AcUBuAG4AcUBxgG4AcYBuQG6AccByAG6AcgBuwG7AcgByQG7AckBvAG8AckBygG8AcoBvQG9AcoBywG9AcsBvgG+AcsBzAG+AcwBvwG/AcwBzQG/Ac0BwAHAAc0BzgHAAc4BwQHBAc4BzwHBAc8BwgHCAc8B0AHCAdABwwHDAdAB0QHDAdEBxAHEAdEB0gHEAdIBxQHFAdIB0wHFAdMBxgHHAdQB1QHHAdUByAHIAdUB1gHIAdYByQHJAdYB1wHJAdcBygHKAdcB2AHKAdgBywHLAdgB2QHLAdkBzAHMAdkB2gHMAdoBzQHNAdoB2wHNAdsBzgHOAdsB3AHOAdwBzwHPAdwB3QHPAd0B0AHQAd0B3gHQAd4B0QHRAd4B3wHRAd8B0gHSAd8B4AHSAeAB0wHUAeEB4gHUAeIB1QHVAeIB4wHVAeMB1gHWAeMB5AHWAeQB1wHXAeQB5QHXAeUB2AHYAeUB5gHYAeYB2QHZAeYB5wHZAecB2gHaAecB6AHaAegB2wHbAegB6QHbAekB3AHcAekB6gHcAeoB3QHdAeoB6wHdAesB3gHeAesB7AHeAewB3wHfAewB7QHfAe0B4AHhAe4B7wHhAe8B4gHiAe8B8AHiAfAB4wHjAfAB8QHjAfEB5AHkAfEB8gHkAfIB5QHlAfIB8wHlAfMB5gHmAfMB9AHmAfQB5wHnAfQB9QHnAfUB6AHoAfUB9gHoAfYB6QHpAfYB9wHpAfcB6gHqAfcB+AHqAfgB6wHrAfgB+QHrAfkB7AHsAfkB+gHsAfoB7QHuAfsB/AHuAfwB7wHvAfwB/QHvAf0B8AHwAf0B/gHwAf4B8QHxAf4B/wHxAf8B8gHyAf8BAALyAQAC8wHzAQACAQLzAQEC9AH0AQECAgL0AQIC9QH1AQICAwL1AQMC9gH2AQMCBAL2AQQC9wH3AQQCBQL3AQUC+AH4AQUCBgL4AQYC+QH5AQYCBwL5AQcC+gH7AQgCCQL7AQkC/AH8AQkCCgL8AQoC/QH9AQoCCwL9AQsC/gH+AQsCDAL+AQwC/wH/AQwCDQL/AQ0CAAIAAg0CDgIAAg4CAQIBAg4CDwIBAg8CAgICAg8CEAICAhACAwIDAhACEQIDAhECBAIEAhECEgIEAhICBQIFAhICEwIFAhMCBgIGAhMCFAIGAhQCBwIIAhUCFgIIAhYCCQIJAhYCFwIJAhcCCgIKAhcCGAIKAhgCCwILAhgCGQILAhkCDAIMAhkCGgIMAhoCDQINAhoCGwINAhsCDgIOAhsCHAIOAhwCDwIPAhwCHQIPAh0CEAIQAh0CHgIQAh4CEQIRAh4CHwIRAh8CEgISAh8CIAISAiACEwITAiACIQITAiECFAIVAiICIwIVAiMCFgIWAiMCJAIWAiQCFwIXAiQCJQIXAiUCGAIYAiUCJgIYAiYCGQIZAiYCJwIZAicCGgIaAicCKAIaAigCGwIbAigCKQIbAikCHAIcAikCKgIcAioCHQIdAioCKwIdAisCHgIeAisCLAIeAiwCHwIfAiwCLQIfAi0CIAIgAi0CLgIgAi4CIQIiAi8CMAIiAjACIwIjAjACMQIjAjECJAIkAjECMgIkAjICJQIlAjICMwIlAjMCJgImAjMCNAImAjQCJwInAjQCNQInAjUCKAIoAjUCNgIoAjYCKQIpAjYCNwIpAjcCKgIqAjcCOAIqAjgCKwIrAjgCOQIrAjkCLAIsAjkCOgIsAjoCLQItAjoCOwItAjsCLgIvAjwCPQIvAj0CMAIwAj0CPgIwAj4CMQIxAj4CPwIxAj8CMgIyAj8CQAIyAkACMwIzAkACQQIzAkECNAI0AkECQgI0AkICNQI1AkICQwI1AkMCNgI2AkMCRAI2AkQCNwI3AkQCRQI3AkUCOAI4AkUCRgI4AkYCOQI5AkYCRwI5AkcCOgI6AkcCSAI6AkgCOwI8AkkCSgI8AkoCPQI9AkoCSwI9AksCPgI+AksCTAI+AkwCPwI/AkwCTQI/Ak0CQAJAAk0CTgJAAk4CQQJBAk4CTwJBAk8CQgJCAk8CUAJCAlACQwJDAlACUQJDAlECRAJEAlECUgJEAlICRQJFAlICUwJFAlMCRgJGAlMCVAJGAlQCRwJHAlQCVQJHAlUCSAJJAlYCVwJJAlcCSgJKAlcCWAJKAlgCSwJLAlgCWQJLAlkCTAJMAlkCWgJMAloCTQJNAloCWwJNAlsCTgJOAlsCXAJOAlwCTwJPAlwCXQJPAl0CUAJQAl0CXgJQAl4CUQJRAl4CXwJRAl8CUgJSAl8CYAJSAmACUwJTAmACYQJTAmECVAJUAmECYgJUAmICVQJWAmMCZAJWAmQCVwJXAmQCZQJXAmUCWAJYAmUCZgJYAmYCWQJZAmYCZwJZAmcCWgJaAmcCaAJaAmgCWwJbAmgCaQJbAmkCXAJcAmkCagJcAmoCXQJdAmoCawJdAmsCXgJeAmsCbAJeAmwCXwJfAmwCbQJfAm0CYAJgAm0CbgJgAm4CYQJhAm4CbwJhAm8CYgJjAnACcQJjAnECZAJkAnECcgJkAnICZQJlAnICcwJlAnMCZgJmAnMCdAJmAnQCZwJnAnQCdQJnAnUCaAJoAnUCdgJoAnYCaQJpAnYCdwJpAncCagJqAncCeAJqAngCawJrAngCeQJrAnkCbAJsAnkCegJsAnoCbQJtAnoCewJtAnsCbgJuAnsCfAJuAnwCbwJwAn0CfgJwAn4CcQJxAn4CfwJxAn8CcgJyAn8CgAJyAoACcwJzAoACgQJzAoECdAJ0AoECggJ0AoICdQJ1AoICgwJ1AoMCdgJ2AoMChAJ2AoQCdwJ3AoQChQJ3AoUCeAJ4AoUChgJ4AoYCeQJ5AoYChwJ5AocCegJ6AocCiAJ6AogCewJ7AogCiQJ7AokCfAJ9AooCiwJ9AosCfgJ+AosCjAJ+AowCfwJ/AowCjQJ/Ao0CgAKAAo0CjgKAAo4CgQKBAo4CjwKBAo8CggKCAo8CkAKCApACgwKDApACkQKDApEChAKEApECkgKEApIChQKFApICkwKFApMChgKGApMClAKGApQChwKHApQClQKHApUCiAKIApUClgKIApYCiQKKApcCmAKKApgCiwKLApgCmQKLApkCjAKMApkCmgKMApoCjQKNApoCmwKNApsCjgKOApsCnAKOApwCjwKPApwCnQKPAp0CkAKQAp0CngKQAp4CkQKRAp4CnwKRAp8CkgKSAp8CoAKSAqACkwKTAqACoQKTAqEClAKUAqECogKUAqIClQKVAqICowKVAqMClgKXAqQCpQKXAqUCmAKYAqUCpgKYAqYCmQKZAqYCpwKZAqcCmgKaAqcCqAKaAqgCmwKbAqgCqQKbAqkCnAKcAqkCqgKcAqoCnQKdAqoCqwKdAqsCngKeAqsCrAKeAqwCnwKfAqwCrQKfAq0CoAKgAq0CrgKgAq4CoQKhAq4CrwKhAq8CogKiAq8CsAKiArACowKkArECsgKkArICpQKlArICswKlArMCpgKmArMCtAKmArQCpwKnArQCtQKnArUCqAKoArUCtgKoArYCqQKpArYCtwKpArcCqgKqArcCuAKqArgCqwKrArgCuQKrArkCrAKsArkCugKsAroCrQKtAroCuwKtArsCrgKuArsCvAKuArwCrwKvArwCvQKvAr0CsAKxAr4CvwKxAr8CsgKyAr8CwAKyAsACswKzAsACwQKzAsECtAK0AsECwgK0AsICtQK1AsICwwK1AsMCtgK2AsMCxAK2AsQCtwK3AsQCxQK3AsUCuAK4AsUCxgK4AsYCuQK5AsYCxwK5AscCugK6AscCyAK6AsgCuwK7AsgCyQK7AskCvAK8AskCygK8AsoCvQK+AssCzAK+AswCvwK/AswCzQK/As0CwALAAs0CzgLAAs4CwQLBAs4CzwLBAs8CwgLCAs8C0ALCAtACwwLDAtAC0QLDAtECxALEAtEC0gLEAtICxQLFAtIC0wLFAtMCxgLGAtMC1ALGAtQCxwLHAtQC1QLHAtUCyALIAtUC1gLIAtYCyQLJAtYC1wLJAtcCygLLAtgC2QLLAtkCzALMAtkC2gLMAtoCzQLNAtoC2wLNAtsCzgLOAtsC3ALOAtwCzwLPAtwC3QLPAt0C0ALQAt0C3gLQAt4C0QLRAt4C3wLRAt8C0gLSAt8C4ALSAuAC0wLTAuAC4QLTAuEC1ALUAuEC4gLUAuIC1QLVAuIC4wLVAuMC1gLWAuMC5ALWAuQC1wLYAuUC5gLYAuYC2QLZAuYC5wLZAucC2gLaAucC6ALaAugC2wLbAugC6QLbAukC3ALcAukC6gLcAuoC3QLdAuoC6wLdAusC3gLeAusC7ALeAuwC3wLfAuwC7QLfAu0C4ALgAu0C7gLgAu4C4QLhAu4C7wLhAu8C4gLiAu8C8ALiAvAC4wLjAvAC8QLjAvEC5ALlAvIC8wLlAvMC5gLmAvMC9ALmAvQC5wLnAvQC9QLnAvUC6ALoAvUC9gLoAvYC6QLpAvYC9wLpAvcC6gLqAvcC+ALqAvgC6wLrAvgC+QLrAvkC7ALsAvkC+gLsAvoC7QLtAvoC+wLtAvsC7gLuAvsC/ALuAvwC7wLvAvwC/QLvAv0C8ALwAv0C/gLwAv4C8QLyAv8CAAPyAgAD8wLzAgADAQPzAgED9AL0AgEDAgP0AgID9QL1AgIDAwP1AgMD9gL2AgMDBAP2AgQD9wL3AgQDBQP3AgUD+AL4AgUDBgP4AgYD+QL5AgYDBwP5AgcD+gL6AgcDCAP6AggD+wL7AggDCQP7AgkD/AL8AgkDCgP8AgoD/QL9AgoDCwP9AgsD/gL/AgwDDQP/Ag0DAAMAAw0DDgMAAw4DAQMBAw4DDwMBAw8DAgMCAw8DEAMCAxADAwMDAxADEQMDAxEDBAMEAxEDEgMEAxIDBQMFAxIDEwMFAxMDBgMGAxMDFAMGAxQDBwMHAxQDFQMHAxUDCAMIAxUDFgMIAxYDCQMJAxYDFwMJAxcDCgMKAxcDGAMKAxgDCwMMAxkDGgMMAxoDDQMNAxoDGwMNAxsDDgMOAxsDHAMOAxwDDwMPAxwDHQMPAx0DEAMQAx0DHgMQAx4DEQMRAx4DHwMRAx8DEgMSAx8DIAMSAyADEwMTAyADIQMTAyEDFAMUAyEDIgMUAyIDFQMVAyIDIwMVAyMDFgMWAyMDJAMWAyQDFwMXAyQDJQMXAyUDGAMZAyYDJwMZAycDGgMaAycDKAMaAygDGwMbAygDKQMbAykDHAMcAykDKgMcAyoDHQMdAyoDKwMdAysDHgMeAysDLAMeAywDHwMfAywDLQMfAy0DIAMgAy0DLgMgAy4DIQMhAy4DLwMhAy8DIgMiAy8DMAMiAzADIwMjAzADMQMjAzEDJAMkAzEDMgMkAzIDJQMmAzMDNAMmAzQDJwMnAzQDNQMnAzUDKAMoAzUDNgMoAzYDKQMpAzYDNwMpAzcDKgMqAzcDOAMqAzgDKwMrAzgDOQMrAzkDLAMsAzkDOgMsAzoDLQMtAzoDOwMtAzsDLgMuAzsDPAMuAzwDLwMvAzwDPQMvAz0DMAMwAz0DPgMwAz4DMQMxAz4DPwMxAz8DMgMzA0ADQQMzA0EDNAM0A0EDQgM0A0IDNQM1A0IDQwM1A0MDNgM2A0MDRAM2A0QDNwM3A0QDRQM3A0UDOAM4A0UDRgM4A0YDOQM5A0YDRwM5A0cDOgM6A0cDSAM6A0gDOwM7A0gDSQM7A0kDPAM8A0kDSgM8A0oDPQM9A0oDSwM9A0sDPgM+A0sDTAM+A0wDPwNAA00DTgNAA04DQQNBA04DTwNBA08DQgNCA08DUANCA1ADQwNDA1ADUQNDA1EDRANEA1EDUgNEA1IDRQNFA1IDUwNFA1MDRgNGA1MDVANGA1QDRwNHA1QDVQNHA1UDSANIA1UDVgNIA1YDSQNJA1YDVwNJA1cDSgNKA1cDWANKA1gDSwNLA1gDWQNLA1kDTANNA1oDWwNNA1sDTgNOA1sDXANOA1wDTwNPA1wDXQNPA10DUANQA10DXgNQA14DUQNRA14DXwNRA18DUgNSA18DYANSA2ADUwNTA2ADYQNTA2EDVANUA2EDYgNUA2IDVQNVA2IDYwNVA2MDVgNWA2MDZANWA2QDVwNXA2QDZQNXA2UDWANYA2UDZgNYA2YDWQNaA2cDaANaA2gDWwNbA2gDaQNbA2kDXANcA2kDagNcA2oDXQNdA2oDawNdA2sDXgNeA2sDbANeA2wDXwNfA2wDbQNfA20DYANgA20DbgNgA24DYQNhA24DbwNhA28DYgNiA28DcANiA3ADYwNjA3ADcQNjA3EDZANkA3EDcgNkA3IDZQNlA3IDcwNlA3MDZgNnA3QDdQNnA3UDaANoA3UDdgNoA3YDaQNpA3YDdwNpA3cDagNqA3cDeANqA3gDawNrA3gDeQNrA3kDbANsA3kDegNsA3oDbQNtA3oDewNtA3sDbgNuA3sDfANuA3wDbwNvA3wDfQNvA30DcANwA30DfgNwA34DcQNxA34DfwNxA38DcgNyA38DgANyA4ADcwN0A4EDggN0A4IDdQN1A4IDgwN1A4MDdgN2A4MDhAN2A4QDdwN3A4QDhQN3A4UDeAN4A4UDhgN4A4YDeQN5A4YDhwN5A4cDegN6A4cDiAN6A4gDewN7A4gDiQN7A4kDfAN8A4kDigN8A4oDfQN9A4oDiwN9A4sDfgN+A4sDjAN+A4wDfwN/A4wDjQN/A40DgAOBA44DjwOBA48DggOCA48DkAOCA5ADgwODA5ADkQODA5EDhAOEA5EDkgOEA5IDhQOFA5IDkwOFA5MDhgOGA5MDlAOGA5QDhwOHA5QDlQOHA5UDiAOIA5UDlgOIA5YDiQOJA5YDlwOJA5cDigOKA5cDmAOKA5gDiwOLA5gDmQOLA5kDjAOMA5kDmgOMA5oDjQOOA5sDnAOOA5wDjwOPA5wDnQOPA50DkAOQA50DngOQA54DkQORA54DnwORA58DkgOSA58DoAOSA6ADkwOTA6ADoQOTA6EDlAOUA6EDogOUA6IDlQOVA6IDowOVA6MDlgOWA6MDpAOWA6QDlwOXA6QDpQOXA6UDmAOYA6UDpgOYA6YDmQOZA6YDpwOZA6cDmgObA6gDqQObA6kDnAOcA6kDqgOcA6oDnQOdA6oDqwOdA6sDngOeA6sDrAOeA6wDnwOfA6wDrQOfA60DoAOgA60DrgOgA64DoQOhA64DrwOhA68DogOiA68DsAOiA7ADowOjA7ADsQOjA7EDpAOkA7EDsgOkA7IDpQOlA7IDswOlA7MDpgOmA7MDtAOmA7QDpwOoA7UDtgOoA7YDqQOpA7YDtwOpA7cDqgOqA7cDuAOqA7gDqwOrA7gDuQOrA7kDrAOsA7kDugOsA7oDrQOtA7oDuwOtA7sDrgOuA7sDvAOuA7wDrwOvA7wDvQOvA70DsAOwA70DvgOwA74DsQOxA74DvwOxA78DsgOyA78DwAOyA8ADswOzA8ADwQOzA8EDtAO1A8IDwwO1A8MDtgO2A8MDxAO2A8QDtwO3A8QDxQO3A8UDuAO4A8UDxgO4A8YDuQO5A8YDxwO5A8cDugO6A8cDyAO6A8gDuwO7A8gDyQO7A8kDvAO8A8kDygO8A8oDvQO9A8oDywO9A8sDvgO+A8sDzAO+A8wDvwO/A8wDzQO/A80DwAPAA80DzgPAA84DwQPCA88D0APCA9ADwwPDA9AD0QPDA9EDxAPEA9ED0gPEA9IDxQPFA9ID0wPFA9MDxgPGA9MD1APGA9QDxwPHA9QD1QPHA9UDyAPIA9UD1gPIA9YDyQPJA9YD1wPJA9cDygPKA9cD2APKA9gDywPLA9gD2QPLA9kDzAPMA9kD2gPMA9oDzQPNA9oD2wPNA9sDzgPPA9wD3QPPA90D0APQA90D3gPQA94D0QPRA94D3wPRA98D0gPSA98D4APSA+AD0wPTA+AD4QPTA+ED1APUA+ED4gPUA+ID1QPVA+ID4wPVA+MD1gPWA+MD5APWA+QD1wPXA+QD5QPXA+UD2APYA+UD5gPYA+YD2QPZA+YD5wPZA+cD2gPaA+cD6APaA+gD2wPcA+kD6gPcA+oD3QPdA+oD6wPdA+sD3gPeA+sD7APeA+wD3wPfA+wD7QPfA+0D4APgA+0D7gPgA+4D4QPhA+4D7wPhA+8D4gPiA+8D8APiA/AD4wPjA/AD8QPjA/ED5APkA/ED8gPkA/ID5QPlA/ID8wPlA/MD5gPmA/MD9APmA/QD5wPnA/QD9QPnA/UD6APpA/YD9wPpA/cD6gPqA/cD+APqA/gD6wPrA/gD+QPrA/kD7APsA/kD+gPsA/oD7QPtA/oD+wPtA/sD7gPuA/sD/APuA/wD7wPvA/wD/QPvA/0D8APwA/0D/gPwA/4D8QPxA/4D/wPxA/8D8gPyA/8DAATyAwAE8wPzAwAEAQTzAwEE9AP0AwEEAgT0AwIE9QP2AwMEBAT2AwQE9wP3AwQEBQT3AwUE+AP4AwUEBgT4AwYE+QP5AwYEBwT5AwcE+gP6AwcECAT6AwgE+wP7AwgECQT7AwkE/AP8AwkECgT8AwoE/QP9AwoECwT9AwsE/gP+AwsEDAT+AwwE/wP/AwwEDQT/Aw0EAAQABA0EDgQABA4EAQQBBA4EDwQBBA8EAgQDBBAEEQQDBBEEBAQEBBEEEgQEBBIEBQQFBBIEEwQFBBMEBgQGBBMEFAQGBBQEBwQHBBQEFQQHBBUECAQIBBUEFgQIBBYECQQJBBYEFwQJBBcECgQKBBcEGAQKBBgECwQLBBgEGQQLBBkEDAQMBBkEGgQMBBoEDQQNBBoEGwQNBBsEDgQOBBsEHAQOBBwEDwQQBB0EHgQQBB4EEQQRBB4EHwQRBB8EEgQSBB8EIAQSBCAEEwQTBCAEIQQTBCEEFAQUBCEEIgQUBCIEFQQVBCIEIwQVBCMEFgQWBCMEJAQWBCQEFwQXBCQEJQQXBCUEGAQYBCUEJgQYBCYEGQQZBCYEJwQZBCcEGgQaBCcEKAQaBCgEGwQbBCgEKQQbBCkEHAQdBCoEKwQdBCsEHgQeBCsELAQeBCwEHwQfBCwELQQfBC0EIAQgBC0ELgQgBC4EIQQhBC4ELwQhBC8EIgQiBC8EMAQiBDAEIwQjBDAEMQQjBDEEJAQkBDEEMgQkBDIEJQQlBDIEMwQlBDMEJgQmBDMENAQmBDQEJwQnBDQENQQnBDUEKAQoBDUENgQoBDYEKQQqBDcEOAQqBDgEKwQrBDgEOQQrBDkELAQsBDkEOgQsBDoELQQtBDoEOwQtBDsELgQuBDsEPAQuBDwELwQvBDwEPQQvBD0EMAQwBD0EPgQwBD4EMQQxBD4EPwQxBD8EMgQyBD8EQAQyBEAEMwQzBEAEQQQzBEEENAQ0BEEEQgQ0BEIENQQ1BEIEQwQ1BEMENgQ3BEQERQQ3BEUEOAQ4BEUERgQ4BEYEOQQ5BEYERwQ5BEcEOgQ6BEcESAQ6BEgEOwQ7BEgESQQ7BEkEPAQ8BEkESgQ8BEoEPQQ9BEoESwQ9BEsEPgQ+BEsETAQ+BEwEPwQ/BEwETQQ/BE0EQARABE0ETgRABE4EQQRBBE4ETwRBBE8EQgRCBE8EUARCBFAEQwREBFEEUgREBFIERQRFBFIEUwRFBFMERgRGBFMEVARGBFQERwRHBFQEVQRHBFUESARIBFUEVgRIBFYESQRJBFYEVwRJBFcESgRKBFcEWARKBFgESwRLBFgEWQRLBFkETARMBFkEWgRMBFoETQRNBFoEWwRNBFsETgROBFsEXAROBFwETwRPBFwEXQRPBF0EUARRBF4EXwRRBF8EUgRSBF8EYARSBGAEUwRTBGAEYQRTBGEEVARUBGEEYgRUBGIEVQRVBGIEYwRVBGMEVgRWBGMEZARWBGQEVwRXBGQEZQRXBGUEWARYBGUEZgRYBGYEWQRZBGYEZwRZBGcEWgRaBGcEaARaBGgEWwRbBGgEaQRbBGkEXARcBGkEagRcBGoEXQReBGsEbAReBGwEXwRfBGwEbQRfBG0EYARgBG0EbgRgBG4EYQRhBG4EbwRhBG8EYgRiBG8EcARiBHAEYwRjBHAEcQRjBHEEZARkBHEEcgRkBHIEZQRlBHIEcwRlBHMEZgRmBHMEdARmBHQEZwRnBHQEdQRnBHUEaARoBHUEdgRoBHYEaQRpBHYEdwRpBHcEagRrBHgEeQRrBHkEbARsBHkEegRsBHoEbQRtBHoEewRtBHsEbgRuBHsEfARuBHwEbwRvBHwEfQRvBH0EcARwBH0EfgRwBH4EcQRxBH4EfwRxBH8EcgRyBH8EgARyBIAEcwRzBIAEgQRzBIEEdAR0BIEEggR0BIIEdQR1BIIEgwR1BIMEdgR2BIMEhAR2BIQEdwR4BIUEhgR4BIYEeQR5BIYEhwR5BIcEegR6BIcEiAR6BIgEewR7BIgEiQR7BIkEfAR8BIkEigR8BIoEfQR9BIoEiwR9BIsEfgR+BIsEjAR+BIwEfwR/BIwEjQR/BI0EgASABI0EjgSABI4EgQSBBI4EjwSBBI8EggSCBI8EkASCBJAEgwSDBJAEkQSDBJEEhASFBJIEkwSFBJMEhgSGBJMElASGBJQEhwSHBJQElQSHBJUEiASIBJUElgSIBJYEiQSJBJYElwSJBJcEigSKBJcEmASKBJgEiwSLBJgEmQSLBJkEjASMBJkEmgSMBJoEjQSNBJoEmwSNBJsEjgSOBJsEnASOBJwEjwSPBJwEnQSPBJ0EkASQBJ0EngSQBJ4EkQSSBJ8EoASSBKAEkwSTBKAEoQSTBKEElASUBKEEogSUBKIElQSVBKIEowSVBKMElgSWBKMEpASWBKQElwSXBKQEpQSXBKUEmASYBKUEpgSYBKYEmQSZBKYEpwSZBKcEmgSaBKcEqASaBKgEmwSbBKgEqQSbBKkEnAScBKkEqgScBKoEnQSdBKoEqwSdBKsEngSfBKwErQSfBK0EoASgBK0ErgSgBK4EoQShBK4ErwShBK8EogSiBK8EsASiBLAEowSjBLAEsQSjBLEEpASkBLEEsgSkBLIEpQSlBLIEswSlBLMEpgSmBLMEtASmBLQEpwSnBLQEtQSnBLUEqASoBLUEtgSoBLYEqQSpBLYEtwSpBLcEqgSqBLcEuASqBLgEqwSsBLkEugSsBLoErQStBLoEuwStBLsErgSuBLsEvASuBLwErwSvBLwEvQSvBL0EsASwBL0EvgSwBL4EsQSxBL4EvwSxBL8EsgSyBL8EwASyBMAEswSzBMAEwQSzBMEEtAS0BMEEwgS0BMIEtQS1BMIEwwS1BMMEtgS2BMMExAS2BMQEtwS3BMQExQS3BMUEuAS5BMYExwS5BMcEugS6BMcEyAS6BMgEuwS7BMgEyQS7BMkEvAS8BMkEygS8BMoEvQS9BMoEywS9BMsEvgS+BMsEzAS+BMwEvwS/BMwEzQS/BM0EwATABM0EzgTABM4EwQTBBM4EzwTBBM8EwgTCBM8E0ATCBNAEwwTDBNAE0QTDBNEExATEBNEE0gTEBNIExQTGBNME1ATGBNQExwTHBNQE1QTHBNUEyATIBNUE1gTIBNYEyQTJBNYE1wTJBNcEygTKBNcE2ATKBNgEywTLBNgE2QTLBNkEzATMBNkE2gTMBNoEzQTNBNoE2wTNBNsEzgTOBNsE3ATOBNwEzwTPBNwE3QTPBN0E0ATQBN0E3gTQBN4E0QTRBN4E3wTRBN8E0gTTBOAE4QTTBOEE1ATUBOEE4gTUBOIE1QTVBOIE4wTVBOME1gTWBOME5ATWBOQE1wTXBOQE5QTXBOUE2ATYBOUE5gTYBOYE2QTZBOYE5wTZBOcE2gTaBOcE6ATaBOgE2wTbBOgE6QTbBOkE3ATcBOkE6gTcBOoE3QTdBOoE6wTdBOsE3gTeBOsE7ATeBOwE3wTgBO0E7gTgBO4E4QThBO4E7wThBO8E4gTiBO8E8ATiBPAE4wTjBPAE8QTjBPEE5ATkBPEE8gTkBPIE5QTlBPIE8wTlBPME5gTmBPME9ATmBPQE5wTnBPQE9QTnBPUE6AToBPUE9gToBPYE6QTpBPYE9wTpBPcE6gTqBPcE+ATqBPgE6wTrBPgE+QTrBPkE7ATtBPoE+wTtBPsE7gTuBPsE/ATuBPwE7wTvBPwE/QTvBP0E8ATwBP0E/gTwBP4E8QTxBP4E/wTxBP8E8gTyBP8EAAXyBAAF8wTzBAAFAQXzBAEF9AT0BAEFAgX0BAIF9QT1BAIFAwX1BAMF9gT2BAMFBAX2BAQF9wT3BAQFBQX3BAUF+AT4BAUFBgX4BAYF+QT6BAcFCAX6BAgF+wT7BAgFCQX7BAkF/AT8BAkFCgX8BAoF/QT9BAoFCwX9BAsF/gT+BAsFDAX+BAwF/wT/BAwFDQX/BA0FAAUABQ0FDgUABQ4FAQUBBQ4FDwUBBQ8FAgUCBQ8FEAUCBRAFAwUDBRAFEQUDBREFBAUEBREFEgUEBRIFBQUFBRIFEwUFBRMFBgUHBRQFFQUHBRUFCAUIBRUFFgUIBRYFCQUJBRYFFwUJBRcFCgUKBRcFGAUKBRgFCwULBRgFGQULBRkFDAUMBRkFGgUMBRoFDQUNBRoFGwUNBRsFDgUOBRsFHAUOBRwFDwUPBRwFHQUPBR0FEAUQBR0FHgUQBR4FEQURBR4FHwURBR8FEgUSBR8FIAUSBSAFEwUUBSEFIgUUBSIFFQUVBSIFIwUVBSMFFgUWBSMFJAUWBSQFFwUXBSQFJQUXBSUFGAUYBSUFJgUYBSYFGQUZBSYFJwUZBScFGgUaBScFKAUaBSgFGwUbBSgFKQUbBSkFHAUcBSkFKgUcBSoFHQUdBSoFKwUdBSsFHgUeBSsFLAUeBSwFHwUfBSwFLQUfBS0FIAUhBS4FLwUhBS8FIgUiBS8FMAUiBTAFIwUjBTAFMQUjBTEFJAUkBTEFMgUkBTIFJQUlBTIFMwUlBTMFJgUmBTMFNAUmBTQFJwUnBTQFNQUnBTUFKAUoBTUFNgUoBTYFKQUpBTYFNwUpBTcFKgUqBTcFOAUqBTgFKwUrBTgFOQUrBTkFLAUsBTkFOgUsBToFLQUuBTsFPAUuBTwFLwUvBTwFPQUvBT0FMAUwBT0FPgUwBT4FMQUxBT4FPwUxBT8FMgUyBT8FQAUyBUAFMwUzBUAFQQUzBUEFNAU0BUEFQgU0BUIFNQU1BUIFQwU1BUMFNgU2BUMFRAU2BUQFNwU3BUQFRQU3BUUFOAU4BUUFRgU4BUYFOQU5BUYFRwU5BUcFOgU7BUgFSQU7BUkFPAU8BUkFSgU8BUoFPQU9BUoFSwU9BUsFPgU+BUsFTAU+BUwFPwU/BUwFTQU/BU0FQAVABU0FTgVABU4FQQVBBU4FTwVBBU8FQgVCBU8FUAVCBVAFQwVDBVAFUQVDBVEFRAVEBVEFUgVEBVIFRQVFBVIFUwVFBVMFRgVGBVMFVAVGBVQFRwVIBVUFVgVIBVYFSQVJBVYFVwVJBVcFSgVKBVcFWAVKBVgFSwVLBVgFWQVLBVkFTAVMBVkFWgVMBVoFTQVNBVoFWwVNBVsFTgVOBVsFXAVOBVwFTwVPBVwFXQVPBV0FUAVQBV0FXgVQBV4FUQVRBV4FXwVRBV8FUgVSBV8FYAVSBWAFUwVTBWAFYQVTBWEFVAVVBWIFYwVVBWMFVgVWBWMFZAVWBWQFVwVXBWQFZQVXBWUFWAVYBWUFZgVYBWYFWQVZBWYFZwVZBWcFWgVaBWcFaAVaBWgFWwVbBWgFaQVbBWkFXAVcBWkFagVcBWoFXQVdBWoFawVdBWsFXgVeBWsFbAVeBWwFXwVfBWwFbQVfBW0FYAVgBW0FbgVgBW4FYQViBW8FcAViBXAFYwVjBXAFcQVjBXEFZAVkBXEFcgVkBXIFZQVlBXIFcwVlBXMFZgVmBXMFdAVmBXQFZwVnBXQFdQVnBXUFaAVoBXUFdgVoBXYFaQVpBXYFdwVpBXcFagVqBXcFeAVqBXgFawVrBXgFeQVrBXkFbAVsBXkFegVsBXoFbQVtBXoFewVtBXsFbgVvBXwFfQVvBX0FcAVwBX0FfgVwBX4FcQVxBX4FfwVxBX8FcgVyBX8FgAVyBYAFcwVzBYAFgQVzBYEFdAV0BYEFggV0BYIFdQV1BYIFgwV1BYMFdgV2BYMFhAV2BYQFdwV3BYQFhQV3BYUFeAV4BYUFhgV4BYYFeQV5BYYFhwV5BYcFegV6BYcFiAV6BYgFewV8BYkFigV8BYoFfQV9BYoFiwV9BYsFfgV+BYsFjAV+BYwFfwV/BYwFjQV/BY0FgAWABY0FjgWABY4FgQWBBY4FjwWBBY8FggWCBY8FkAWCBZAFgwWDBZAFkQWDBZEFhAWEBZEFkgWEBZIFhQWFBZIFkwWFBZMFhgWGBZMFlAWGBZQFhwWHBZQFlQWHBZUFiAWJBZYFlwWJBZcFigWKBZcFmAWKBZgFiwWLBZgFmQWLBZkFjAWMBZkFmgWMBZoFjQWNBZoFmwWNBZsFjgWOBZsFnAWOBZwFjwWPBZwFnQWPBZ0FkAWQBZ0FngWQBZ4FkQWRBZ4FnwWRBZ8FkgWSBZ8FoAWSBaAFkwWTBaAFoQWTBaEFlAWUBaEFogWUBaIFlQWWBaMFpAWWBaQFlwWXBaQFpQWXBaUFmAWYBaUFpgWYBaYFmQWZBaYFpwWZBacFmgWaBacFqAWaBagFmwWbBagFqQWbBakFnAWcBakFqgWcBaoFnQWdBaoFqwWdBasFngWeBasFrAWeBawFnwWfBawFrQWfBa0FoAWgBa0FrgWgBa4FoQWhBa4FrwWhBa8FogWjBbAFsQWjBbEFpAWkBbEFsgWkBbIFpQWlBbIFswWlBbMFpgWmBbMFtAWmBbQFpwWnBbQFtQWnBbUFqAWoBbUFtgWoBbYFqQWpBbYFtwWpBbcFqgWqBbcFuAWqBbgFqwWrBbgFuQWrBbkFrAWsBbkFugWsBboFrQWtBboFuwWtBbsFrgWuBbsFvAWuBbwFrwWwBb0FvgWwBb4FsQWxBb4FvwWxBb8FsgWyBb8FwAWyBcAFswWzBcAFwQWzBcEFtAW0BcEFwgW0BcIFtQW1BcIFwwW1BcMFtgW2BcMFxAW2BcQFtwW3BcQFxQW3BcUFuAW4BcUFxgW4BcYFuQW5BcYFxwW5BccFugW6BccFyAW6BcgFuwW7BcgFyQW7BckFvAW9BcoFywW9BcsFvgW+BcsFzAW+BcwFvwW/BcwFzQW/Bc0FwAXABc0FzgXABc4FwQXBBc4FzwXBBc8FwgXCBc8F0AXCBdAFwwXDBdAF0QXDBdEFxAXEBdEF0gXEBdIFxQXFBdIF0wXFBdMFxgXGBdMF1AXGBdQFxwXHBdQF1QXHBdUFyAXIBdUF1gXIBdYFyQXKBdcF2AXKBdgFywXLBdgF2QXLBdkFzAXMBdkF2gXMBdoFzQXNBdoF2wXNBdsFzgXOBdsF3AXOBdwFzwXPBdwF3QXPBd0F0AXQBd0F3gXQBd4F0QXRBd4F3wXRBd8F0gXSBd8F4AXSBeAF0wXTBeAF4QXTBeEF1AXUBeEF4gXUBeIF1QXVBeIF4wXVBeMF1gXXBeQF5QXXBeUF2AXYBeUF5gXYBeYF2QXZBeYF5wXZBecF2gXaBecF6AXaBegF2wXbBegF6QXbBekF3AXcBekF6gXcBeoF3QXdBeoF6wXdBesF3gXeBesF7AXeBewF3wXfBewF7QXfBe0F4AXgBe0F7gXgBe4F4QXhBe4F7wXhBe8F4gXiBe8F8AXiBfAF4wXkBfEF8gXkBfIF5QXlBfIF8wXlBfMF5gXmBfMF9AXmBfQF5wXnBfQF9QXnBfUF6AXoBfUF9gXoBfYF6QXpBfYF9wXpBfcF6gXqBfcF+AXqBfgF6wXrBfgF+QXrBfkF7AXsBfkF+gXsBfoF7QXtBfoF+wXtBfsF7gXuBfsF/AXuBfwF7wXvBfwF/QXvBf0F8AXxBf4F/wXxBf8F8gXyBf8FAAbyBQAG8wXzBQAGAQbzBQEG9AX0BQEGAgb0BQIG9QX1BQIGAwb1BQMG9gX2BQMGBAb2BQQG9wX3BQQGBQb3BQUG+AX4BQUGBgb4BQYG+QX5BQYGBwb5BQcG+gX6BQcGCAb6BQgG+wX7BQgGCQb7BQkG/AX8BQkGCgb8BQoG/QX+BQsGDAb+BQwG/wX/BQwGDQb/BQ0GAAYABg0GDgYABg4GAQYBBg4GDwYBBg8GAgYCBg8GEAYCBhAGAwYDBhAGEQYDBhEGBAYEBhEGEgYEBhIGBQYFBhIGEwYFBhMGBgYGBhMGFAYGBhQGBwYHBhQGFQYHBhUGCAYIBhUGFgYIBhYGCQYJBhYGFwYJBhcGCgYLBhgGGQYLBhkGDAYMBhkGGgYMBhoGDQYNBhoGGwYNBhsGDgYOBhsGHAYOBhwGDwYPBhwGHQYPBh0GEAYQBh0GHgYQBh4GEQYRBh4GHwYRBh8GEgYSBh8GIAYSBiAGEwYTBiAGIQYTBiEGFAYUBiEGIgYUBiIGFQYVBiIGIwYVBiMGFgYWBiMGJAYWBiQGFwY=" } ], - "extensions" : {}, + "extensionsUsed" : [ + "KHR_materials_clearcoat" + ], "materials" : [ { "name" : "Material", - "pbrMetallicRoughness" : {} + "pbrMetallicRoughness" : { + + "baseColorFactor" : [ 0.1294, 0.5882, 0.9529, 1.0 ], + "metallicFactor" : 1.0, + "roughnessFactor" : 0.75 + }, + "extensions": { + "KHR_materials_clearcoat": { + "clearcoatFactor": 1, + "clearcoatRoughnessFactor": 0 + } + } } ], "meshes" : [ diff --git a/lib/b64 b/lib/b64 deleted file mode 160000 index 53257df..0000000 --- a/lib/b64 +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 53257dfd51377540bd5dd95db1c52c26a0b7b91b diff --git a/lib/jsmn b/lib/jsmn deleted file mode 160000 index 25647e6..0000000 --- a/lib/jsmn +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 25647e692c7906b96ffd2b05ca54c097948e879c diff --git a/lib/lv_gltf/data/deps/stb_image/stb_image.cpp b/lib/lv_gltf/data/deps/stb_image/stb_image.cpp new file mode 100644 index 0000000..463bd40 --- /dev/null +++ b/lib/lv_gltf/data/deps/stb_image/stb_image.cpp @@ -0,0 +1,4 @@ +#include "glpch.h" + +#define STB_IMAGE_IMPLEMENTATION +#include "stb_image.h" \ No newline at end of file diff --git a/lib/lv_gltf/data/deps/stb_image/stb_image.h b/lib/lv_gltf/data/deps/stb_image/stb_image.h new file mode 100644 index 0000000..9eedabe --- /dev/null +++ b/lib/lv_gltf/data/deps/stb_image/stb_image.h @@ -0,0 +1,7988 @@ +/* stb_image - v2.30 - public domain image loader - http://nothings.org/stb + no warranty implied; use at your own risk + + Do this: + #define STB_IMAGE_IMPLEMENTATION + before you include this file in *one* C or C++ file to create the implementation. + + // i.e. it should look like this: + #include ... + #include ... + #include ... + #define STB_IMAGE_IMPLEMENTATION + #include "stb_image.h" + + You can #define STBI_ASSERT(x) before the #include to avoid using assert.h. + And #define STBI_MALLOC, STBI_REALLOC, and STBI_FREE to avoid using malloc,realloc,free + + + QUICK NOTES: + Primarily of interest to game developers and other people who can + avoid problematic images and only need the trivial interface + + JPEG baseline & progressive (12 bpc/arithmetic not supported, same as stock IJG lib) + PNG 1/2/4/8/16-bit-per-channel + + TGA (not sure what subset, if a subset) + BMP non-1bpp, non-RLE + PSD (composited view only, no extra channels, 8/16 bit-per-channel) + + GIF (*comp always reports as 4-channel) + HDR (radiance rgbE format) + PIC (Softimage PIC) + PNM (PPM and PGM binary only) + + Animated GIF still needs a proper API, but here's one way to do it: + http://gist.github.com/urraka/685d9a6340b26b830d49 + + - decode from memory or through FILE (define STBI_NO_STDIO to remove code) + - decode from arbitrary I/O callbacks + - SIMD acceleration on x86/x64 (SSE2) and ARM (NEON) + + Full documentation under "DOCUMENTATION" below. + + +LICENSE + + See end of file for license information. + +RECENT REVISION HISTORY: + + 2.30 (2024-05-31) avoid erroneous gcc warning + 2.29 (2023-05-xx) optimizations + 2.28 (2023-01-29) many error fixes, security errors, just tons of stuff + 2.27 (2021-07-11) document stbi_info better, 16-bit PNM support, bug fixes + 2.26 (2020-07-13) many minor fixes + 2.25 (2020-02-02) fix warnings + 2.24 (2020-02-02) fix warnings; thread-local failure_reason and flip_vertically + 2.23 (2019-08-11) fix clang static analysis warning + 2.22 (2019-03-04) gif fixes, fix warnings + 2.21 (2019-02-25) fix typo in comment + 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs + 2.19 (2018-02-11) fix warning + 2.18 (2018-01-30) fix warnings + 2.17 (2018-01-29) bugfix, 1-bit BMP, 16-bitness query, fix warnings + 2.16 (2017-07-23) all functions have 16-bit variants; optimizations; bugfixes + 2.15 (2017-03-18) fix png-1,2,4; all Imagenet JPGs; no runtime SSE detection on GCC + 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs + 2.13 (2016-12-04) experimental 16-bit API, only for PNG so far; fixes + 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes + 2.11 (2016-04-02) 16-bit PNGS; enable SSE2 in non-gcc x64 + RGB-format JPEG; remove white matting in PSD; + allocate large structures on the stack; + correct channel count for PNG & BMP + 2.10 (2016-01-22) avoid warning introduced in 2.09 + 2.09 (2016-01-16) 16-bit TGA; comments in PNM files; STBI_REALLOC_SIZED + + See end of file for full revision history. + + + ============================ Contributors ========================= + + Image formats Extensions, features + Sean Barrett (jpeg, png, bmp) Jetro Lauha (stbi_info) + Nicolas Schulz (hdr, psd) Martin "SpartanJ" Golini (stbi_info) + Jonathan Dummer (tga) James "moose2000" Brown (iPhone PNG) + Jean-Marc Lienher (gif) Ben "Disch" Wenger (io callbacks) + Tom Seddon (pic) Omar Cornut (1/2/4-bit PNG) + Thatcher Ulrich (psd) Nicolas Guillemot (vertical flip) + Ken Miller (pgm, ppm) Richard Mitton (16-bit PSD) + github:urraka (animated gif) Junggon Kim (PNM comments) + Christopher Forseth (animated gif) Daniel Gibson (16-bit TGA) + socks-the-fox (16-bit PNG) + Jeremy Sawicki (handle all ImageNet JPGs) + Optimizations & bugfixes Mikhail Morozov (1-bit BMP) + Fabian "ryg" Giesen Anael Seghezzi (is-16-bit query) + Arseny Kapoulkine Simon Breuss (16-bit PNM) + John-Mark Allen + Carmelo J Fdez-Aguera + + Bug & warning fixes + Marc LeBlanc David Woo Guillaume George Martins Mozeiko + Christpher Lloyd Jerry Jansson Joseph Thomson Blazej Dariusz Roszkowski + Phil Jordan Dave Moore Roy Eltham + Hayaki Saito Nathan Reed Won Chun + Luke Graham Johan Duparc Nick Verigakis the Horde3D community + Thomas Ruf Ronny Chevalier github:rlyeh + Janez Zemva John Bartholomew Michal Cichon github:romigrou + Jonathan Blow Ken Hamada Tero Hanninen github:svdijk + Eugene Golushkov Laurent Gomila Cort Stratton github:snagar + Aruelien Pocheville Sergio Gonzalez Thibault Reuille github:Zelex + Cass Everitt Ryamond Barbiero github:grim210 + Paul Du Bois Engin Manap Aldo Culquicondor github:sammyhw + Philipp Wiesemann Dale Weiler Oriol Ferrer Mesia github:phprus + Josh Tobin Neil Bickford Matthew Gregan github:poppolopoppo + Julian Raschke Gregory Mullen Christian Floisand github:darealshinji + Baldur Karlsson Kevin Schmidt JR Smith github:Michaelangel007 + Brad Weinberger Matvey Cherevko github:mosra + Luca Sas Alexander Veselov Zack Middleton [reserved] + Ryan C. Gordon [reserved] [reserved] + DO NOT ADD YOUR NAME HERE + + Jacko Dirks + + To add your name to the credits, pick a random blank space in the middle and fill it. + 80% of merge conflicts on stb PRs are due to people adding their name at the end + of the credits. +*/ + +#ifndef STBI_INCLUDE_STB_IMAGE_H +#define STBI_INCLUDE_STB_IMAGE_H + +// DOCUMENTATION +// +// Limitations: +// - no 12-bit-per-channel JPEG +// - no JPEGs with arithmetic coding +// - GIF always returns *comp=4 +// +// Basic usage (see HDR discussion below for HDR usage): +// int x,y,n; +// unsigned char *data = stbi_load(filename, &x, &y, &n, 0); +// // ... process data if not NULL ... +// // ... x = width, y = height, n = # 8-bit components per pixel ... +// // ... replace '0' with '1'..'4' to force that many components per pixel +// // ... but 'n' will always be the number that it would have been if you said 0 +// stbi_image_free(data); +// +// Standard parameters: +// int *x -- outputs image width in pixels +// int *y -- outputs image height in pixels +// int *channels_in_file -- outputs # of image components in image file +// int desired_channels -- if non-zero, # of image components requested in result +// +// The return value from an image loader is an 'unsigned char *' which points +// to the pixel data, or NULL on an allocation failure or if the image is +// corrupt or invalid. The pixel data consists of *y scanlines of *x pixels, +// with each pixel consisting of N interleaved 8-bit components; the first +// pixel pointed to is top-left-most in the image. There is no padding between +// image scanlines or between pixels, regardless of format. The number of +// components N is 'desired_channels' if desired_channels is non-zero, or +// *channels_in_file otherwise. If desired_channels is non-zero, +// *channels_in_file has the number of components that _would_ have been +// output otherwise. E.g. if you set desired_channels to 4, you will always +// get RGBA output, but you can check *channels_in_file to see if it's trivially +// opaque because e.g. there were only 3 channels in the source image. +// +// An output image with N components has the following components interleaved +// in this order in each pixel: +// +// N=#comp components +// 1 grey +// 2 grey, alpha +// 3 red, green, blue +// 4 red, green, blue, alpha +// +// If image loading fails for any reason, the return value will be NULL, +// and *x, *y, *channels_in_file will be unchanged. The function +// stbi_failure_reason() can be queried for an extremely brief, end-user +// unfriendly explanation of why the load failed. Define STBI_NO_FAILURE_STRINGS +// to avoid compiling these strings at all, and STBI_FAILURE_USERMSG to get slightly +// more user-friendly ones. +// +// Paletted PNG, BMP, GIF, and PIC images are automatically depalettized. +// +// To query the width, height and component count of an image without having to +// decode the full file, you can use the stbi_info family of functions: +// +// int x,y,n,ok; +// ok = stbi_info(filename, &x, &y, &n); +// // returns ok=1 and sets x, y, n if image is a supported format, +// // 0 otherwise. +// +// Note that stb_image pervasively uses ints in its public API for sizes, +// including sizes of memory buffers. This is now part of the API and thus +// hard to change without causing breakage. As a result, the various image +// loaders all have certain limits on image size; these differ somewhat +// by format but generally boil down to either just under 2GB or just under +// 1GB. When the decoded image would be larger than this, stb_image decoding +// will fail. +// +// Additionally, stb_image will reject image files that have any of their +// dimensions set to a larger value than the configurable STBI_MAX_DIMENSIONS, +// which defaults to 2**24 = 16777216 pixels. Due to the above memory limit, +// the only way to have an image with such dimensions load correctly +// is for it to have a rather extreme aspect ratio. Either way, the +// assumption here is that such larger images are likely to be malformed +// or malicious. If you do need to load an image with individual dimensions +// larger than that, and it still fits in the overall size limit, you can +// #define STBI_MAX_DIMENSIONS on your own to be something larger. +// +// =========================================================================== +// +// UNICODE: +// +// If compiling for Windows and you wish to use Unicode filenames, compile +// with +// #define STBI_WINDOWS_UTF8 +// and pass utf8-encoded filenames. Call stbi_convert_wchar_to_utf8 to convert +// Windows wchar_t filenames to utf8. +// +// =========================================================================== +// +// Philosophy +// +// stb libraries are designed with the following priorities: +// +// 1. easy to use +// 2. easy to maintain +// 3. good performance +// +// Sometimes I let "good performance" creep up in priority over "easy to maintain", +// and for best performance I may provide less-easy-to-use APIs that give higher +// performance, in addition to the easy-to-use ones. Nevertheless, it's important +// to keep in mind that from the standpoint of you, a client of this library, +// all you care about is #1 and #3, and stb libraries DO NOT emphasize #3 above all. +// +// Some secondary priorities arise directly from the first two, some of which +// provide more explicit reasons why performance can't be emphasized. +// +// - Portable ("ease of use") +// - Small source code footprint ("easy to maintain") +// - No dependencies ("ease of use") +// +// =========================================================================== +// +// I/O callbacks +// +// I/O callbacks allow you to read from arbitrary sources, like packaged +// files or some other source. Data read from callbacks are processed +// through a small internal buffer (currently 128 bytes) to try to reduce +// overhead. +// +// The three functions you must define are "read" (reads some bytes of data), +// "skip" (skips some bytes of data), "eof" (reports if the stream is at the end). +// +// =========================================================================== +// +// SIMD support +// +// The JPEG decoder will try to automatically use SIMD kernels on x86 when +// supported by the compiler. For ARM Neon support, you must explicitly +// request it. +// +// (The old do-it-yourself SIMD API is no longer supported in the current +// code.) +// +// On x86, SSE2 will automatically be used when available based on a run-time +// test; if not, the generic C versions are used as a fall-back. On ARM targets, +// the typical path is to have separate builds for NEON and non-NEON devices +// (at least this is true for iOS and Android). Therefore, the NEON support is +// toggled by a build flag: define STBI_NEON to get NEON loops. +// +// If for some reason you do not want to use any of SIMD code, or if +// you have issues compiling it, you can disable it entirely by +// defining STBI_NO_SIMD. +// +// =========================================================================== +// +// HDR image support (disable by defining STBI_NO_HDR) +// +// stb_image supports loading HDR images in general, and currently the Radiance +// .HDR file format specifically. You can still load any file through the existing +// interface; if you attempt to load an HDR file, it will be automatically remapped +// to LDR, assuming gamma 2.2 and an arbitrary scale factor defaulting to 1; +// both of these constants can be reconfigured through this interface: +// +// stbi_hdr_to_ldr_gamma(2.2f); +// stbi_hdr_to_ldr_scale(1.0f); +// +// (note, do not use _inverse_ constants; stbi_image will invert them +// appropriately). +// +// Additionally, there is a new, parallel interface for loading files as +// (linear) floats to preserve the full dynamic range: +// +// float *data = stbi_loadf(filename, &x, &y, &n, 0); +// +// If you load LDR images through this interface, those images will +// be promoted to floating point values, run through the inverse of +// constants corresponding to the above: +// +// stbi_ldr_to_hdr_scale(1.0f); +// stbi_ldr_to_hdr_gamma(2.2f); +// +// Finally, given a filename (or an open file or memory block--see header +// file for details) containing image data, you can query for the "most +// appropriate" interface to use (that is, whether the image is HDR or +// not), using: +// +// stbi_is_hdr(char *filename); +// +// =========================================================================== +// +// iPhone PNG support: +// +// We optionally support converting iPhone-formatted PNGs (which store +// premultiplied BGRA) back to RGB, even though they're internally encoded +// differently. To enable this conversion, call +// stbi_convert_iphone_png_to_rgb(1). +// +// Call stbi_set_unpremultiply_on_load(1) as well to force a divide per +// pixel to remove any premultiplied alpha *only* if the image file explicitly +// says there's premultiplied data (currently only happens in iPhone images, +// and only if iPhone convert-to-rgb processing is on). +// +// =========================================================================== +// +// ADDITIONAL CONFIGURATION +// +// - You can suppress implementation of any of the decoders to reduce +// your code footprint by #defining one or more of the following +// symbols before creating the implementation. +// +// STBI_NO_JPEG +// STBI_NO_PNG +// STBI_NO_BMP +// STBI_NO_PSD +// STBI_NO_TGA +// STBI_NO_GIF +// STBI_NO_HDR +// STBI_NO_PIC +// STBI_NO_PNM (.ppm and .pgm) +// +// - You can request *only* certain decoders and suppress all other ones +// (this will be more forward-compatible, as addition of new decoders +// doesn't require you to disable them explicitly): +// +// STBI_ONLY_JPEG +// STBI_ONLY_PNG +// STBI_ONLY_BMP +// STBI_ONLY_PSD +// STBI_ONLY_TGA +// STBI_ONLY_GIF +// STBI_ONLY_HDR +// STBI_ONLY_PIC +// STBI_ONLY_PNM (.ppm and .pgm) +// +// - If you use STBI_NO_PNG (or _ONLY_ without PNG), and you still +// want the zlib decoder to be available, #define STBI_SUPPORT_ZLIB +// +// - If you define STBI_MAX_DIMENSIONS, stb_image will reject images greater +// than that size (in either width or height) without further processing. +// This is to let programs in the wild set an upper bound to prevent +// denial-of-service attacks on untrusted data, as one could generate a +// valid image of gigantic dimensions and force stb_image to allocate a +// huge block of memory and spend disproportionate time decoding it. By +// default this is set to (1 << 24), which is 16777216, but that's still +// very big. + +#ifndef STBI_NO_STDIO +#include +#endif // STBI_NO_STDIO + +#define STBI_VERSION 1 + +enum +{ + STBI_default = 0, // only used for desired_channels + + STBI_grey = 1, + STBI_grey_alpha = 2, + STBI_rgb = 3, + STBI_rgb_alpha = 4 +}; + +#include +typedef unsigned char stbi_uc; +typedef unsigned short stbi_us; + +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef STBIDEF +#ifdef STB_IMAGE_STATIC +#define STBIDEF static +#else +#define STBIDEF extern +#endif +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// PRIMARY API - works on images of any type +// + +// +// load image by filename, open file, or memory buffer +// + +typedef struct +{ + int (*read) (void *user,char *data,int size); // fill 'data' with 'size' bytes. return number of bytes actually read + void (*skip) (void *user,int n); // skip the next 'n' bytes, or 'unget' the last -n bytes if negative + int (*eof) (void *user); // returns nonzero if we are at end of file/data +} stbi_io_callbacks; + +//////////////////////////////////// +// +// 8-bits-per-channel interface +// + +STBIDEF stbi_uc *stbi_load_from_memory (stbi_uc const *buffer, int len , int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk , void *user, int *x, int *y, int *channels_in_file, int desired_channels); + +#ifndef STBI_NO_STDIO +STBIDEF stbi_uc *stbi_load (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_uc *stbi_load_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); +// for stbi_load_from_file, file pointer is left pointing immediately after image +#endif + +#ifndef STBI_NO_GIF +STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp); +#endif + +#ifdef STBI_WINDOWS_UTF8 +STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input); +#endif + +//////////////////////////////////// +// +// 16-bits-per-channel interface +// + +STBIDEF stbi_us *stbi_load_16_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels); + +#ifndef STBI_NO_STDIO +STBIDEF stbi_us *stbi_load_16 (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); +STBIDEF stbi_us *stbi_load_from_file_16(FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); +#endif + +//////////////////////////////////// +// +// float-per-channel interface +// +#ifndef STBI_NO_LINEAR + STBIDEF float *stbi_loadf_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels); + STBIDEF float *stbi_loadf_from_callbacks (stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels); + + #ifndef STBI_NO_STDIO + STBIDEF float *stbi_loadf (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels); + STBIDEF float *stbi_loadf_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels); + #endif +#endif + +#ifndef STBI_NO_HDR + STBIDEF void stbi_hdr_to_ldr_gamma(float gamma); + STBIDEF void stbi_hdr_to_ldr_scale(float scale); +#endif // STBI_NO_HDR + +#ifndef STBI_NO_LINEAR + STBIDEF void stbi_ldr_to_hdr_gamma(float gamma); + STBIDEF void stbi_ldr_to_hdr_scale(float scale); +#endif // STBI_NO_LINEAR + +// stbi_is_hdr is always defined, but always returns false if STBI_NO_HDR +STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user); +STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len); +#ifndef STBI_NO_STDIO +STBIDEF int stbi_is_hdr (char const *filename); +STBIDEF int stbi_is_hdr_from_file(FILE *f); +#endif // STBI_NO_STDIO + + +// get a VERY brief reason for failure +// on most compilers (and ALL modern mainstream compilers) this is threadsafe +STBIDEF const char *stbi_failure_reason (void); + +// free the loaded image -- this is just free() +STBIDEF void stbi_image_free (void *retval_from_stbi_load); + +// get image dimensions & components without fully decoding +STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp); +STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp); +STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len); +STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *clbk, void *user); + +#ifndef STBI_NO_STDIO +STBIDEF int stbi_info (char const *filename, int *x, int *y, int *comp); +STBIDEF int stbi_info_from_file (FILE *f, int *x, int *y, int *comp); +STBIDEF int stbi_is_16_bit (char const *filename); +STBIDEF int stbi_is_16_bit_from_file(FILE *f); +#endif + + + +// for image formats that explicitly notate that they have premultiplied alpha, +// we just return the colors as stored in the file. set this flag to force +// unpremultiplication. results are undefined if the unpremultiply overflow. +STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply); + +// indicate whether we should process iphone images back to canonical format, +// or just pass them through "as-is" +STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert); + +// flip the image vertically, so the first pixel in the output array is the bottom left +STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip); + +// as above, but only applies to images loaded on the thread that calls the function +// this function is only available if your compiler supports thread-local variables; +// calling it will fail to link if your compiler doesn't +STBIDEF void stbi_set_unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply); +STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert); +STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip); + +// ZLIB client - used by PNG, available for other purposes + +STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen); +STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header); +STBIDEF char *stbi_zlib_decode_malloc(const char *buffer, int len, int *outlen); +STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, const char *ibuffer, int ilen); + +STBIDEF char *stbi_zlib_decode_noheader_malloc(const char *buffer, int len, int *outlen); +STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen); + + +#ifdef __cplusplus +} +#endif + +// +// +//// end header file ///////////////////////////////////////////////////// +#endif // STBI_INCLUDE_STB_IMAGE_H + +#ifdef STB_IMAGE_IMPLEMENTATION + +#if defined(STBI_ONLY_JPEG) || defined(STBI_ONLY_PNG) || defined(STBI_ONLY_BMP) \ + || defined(STBI_ONLY_TGA) || defined(STBI_ONLY_GIF) || defined(STBI_ONLY_PSD) \ + || defined(STBI_ONLY_HDR) || defined(STBI_ONLY_PIC) || defined(STBI_ONLY_PNM) \ + || defined(STBI_ONLY_ZLIB) + #ifndef STBI_ONLY_JPEG + #define STBI_NO_JPEG + #endif + #ifndef STBI_ONLY_PNG + #define STBI_NO_PNG + #endif + #ifndef STBI_ONLY_BMP + #define STBI_NO_BMP + #endif + #ifndef STBI_ONLY_PSD + #define STBI_NO_PSD + #endif + #ifndef STBI_ONLY_TGA + #define STBI_NO_TGA + #endif + #ifndef STBI_ONLY_GIF + #define STBI_NO_GIF + #endif + #ifndef STBI_ONLY_HDR + #define STBI_NO_HDR + #endif + #ifndef STBI_ONLY_PIC + #define STBI_NO_PIC + #endif + #ifndef STBI_ONLY_PNM + #define STBI_NO_PNM + #endif +#endif + +#if defined(STBI_NO_PNG) && !defined(STBI_SUPPORT_ZLIB) && !defined(STBI_NO_ZLIB) +#define STBI_NO_ZLIB +#endif + + +#include +#include // ptrdiff_t on osx +#include +#include +#include + +#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) +#include // ldexp, pow +#endif + +#ifndef STBI_NO_STDIO +#include +#endif + +#ifndef STBI_ASSERT +#include +#define STBI_ASSERT(x) assert(x) +#endif + +#ifdef __cplusplus +#define STBI_EXTERN extern "C" +#else +#define STBI_EXTERN extern +#endif + + +#ifndef _MSC_VER + #ifdef __cplusplus + #define stbi_inline inline + #else + #define stbi_inline + #endif +#else + #define stbi_inline __forceinline +#endif + +#ifndef STBI_NO_THREAD_LOCALS + #if defined(__cplusplus) && __cplusplus >= 201103L + #define STBI_THREAD_LOCAL thread_local + #elif defined(__GNUC__) && __GNUC__ < 5 + #define STBI_THREAD_LOCAL __thread + #elif defined(_MSC_VER) + #define STBI_THREAD_LOCAL __declspec(thread) + #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__) + #define STBI_THREAD_LOCAL _Thread_local + #endif + + #ifndef STBI_THREAD_LOCAL + #if defined(__GNUC__) + #define STBI_THREAD_LOCAL __thread + #endif + #endif +#endif + +#if defined(_MSC_VER) || defined(__SYMBIAN32__) +typedef unsigned short stbi__uint16; +typedef signed short stbi__int16; +typedef unsigned int stbi__uint32; +typedef signed int stbi__int32; +#else +#include +typedef uint16_t stbi__uint16; +typedef int16_t stbi__int16; +typedef uint32_t stbi__uint32; +typedef int32_t stbi__int32; +#endif + +// should produce compiler error if size is wrong +typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1]; + +#ifdef _MSC_VER +#define STBI_NOTUSED(v) (void)(v) +#else +#define STBI_NOTUSED(v) (void)sizeof(v) +#endif + +#ifdef _MSC_VER +#define STBI_HAS_LROTL +#endif + +#ifdef STBI_HAS_LROTL + #define stbi_lrot(x,y) _lrotl(x,y) +#else + #define stbi_lrot(x,y) (((x) << (y)) | ((x) >> (-(y) & 31))) +#endif + +#if defined(STBI_MALLOC) && defined(STBI_FREE) && (defined(STBI_REALLOC) || defined(STBI_REALLOC_SIZED)) +// ok +#elif !defined(STBI_MALLOC) && !defined(STBI_FREE) && !defined(STBI_REALLOC) && !defined(STBI_REALLOC_SIZED) +// ok +#else +#error "Must define all or none of STBI_MALLOC, STBI_FREE, and STBI_REALLOC (or STBI_REALLOC_SIZED)." +#endif + +#ifndef STBI_MALLOC +#define STBI_MALLOC(sz) malloc(sz) +#define STBI_REALLOC(p,newsz) realloc(p,newsz) +#define STBI_FREE(p) free(p) +#endif + +#ifndef STBI_REALLOC_SIZED +#define STBI_REALLOC_SIZED(p,oldsz,newsz) STBI_REALLOC(p,newsz) +#endif + +// x86/x64 detection +#if defined(__x86_64__) || defined(_M_X64) +#define STBI__X64_TARGET +#elif defined(__i386) || defined(_M_IX86) +#define STBI__X86_TARGET +#endif + +#if defined(__GNUC__) && defined(STBI__X86_TARGET) && !defined(__SSE2__) && !defined(STBI_NO_SIMD) +// gcc doesn't support sse2 intrinsics unless you compile with -msse2, +// which in turn means it gets to use SSE2 everywhere. This is unfortunate, +// but previous attempts to provide the SSE2 functions with runtime +// detection caused numerous issues. The way architecture extensions are +// exposed in GCC/Clang is, sadly, not really suited for one-file libs. +// New behavior: if compiled with -msse2, we use SSE2 without any +// detection; if not, we don't use it at all. +#define STBI_NO_SIMD +#endif + +#if defined(__MINGW32__) && defined(STBI__X86_TARGET) && !defined(STBI_MINGW_ENABLE_SSE2) && !defined(STBI_NO_SIMD) +// Note that __MINGW32__ doesn't actually mean 32-bit, so we have to avoid STBI__X64_TARGET +// +// 32-bit MinGW wants ESP to be 16-byte aligned, but this is not in the +// Windows ABI and VC++ as well as Windows DLLs don't maintain that invariant. +// As a result, enabling SSE2 on 32-bit MinGW is dangerous when not +// simultaneously enabling "-mstackrealign". +// +// See https://github.com/nothings/stb/issues/81 for more information. +// +// So default to no SSE2 on 32-bit MinGW. If you've read this far and added +// -mstackrealign to your build settings, feel free to #define STBI_MINGW_ENABLE_SSE2. +#define STBI_NO_SIMD +#endif + +#if !defined(STBI_NO_SIMD) && (defined(STBI__X86_TARGET) || defined(STBI__X64_TARGET)) +#define STBI_SSE2 +#include + +#ifdef _MSC_VER + +#if _MSC_VER >= 1400 // not VC6 +#include // __cpuid +static int stbi__cpuid3(void) +{ + int info[4]; + __cpuid(info,1); + return info[3]; +} +#else +static int stbi__cpuid3(void) +{ + int res; + __asm { + mov eax,1 + cpuid + mov res,edx + } + return res; +} +#endif + +#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name + +#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) +static int stbi__sse2_available(void) +{ + int info3 = stbi__cpuid3(); + return ((info3 >> 26) & 1) != 0; +} +#endif + +#else // assume GCC-style if not VC++ +#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16))) + +#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2) +static int stbi__sse2_available(void) +{ + // If we're even attempting to compile this on GCC/Clang, that means + // -msse2 is on, which means the compiler is allowed to use SSE2 + // instructions at will, and so are we. + return 1; +} +#endif + +#endif +#endif + +// ARM NEON +#if defined(STBI_NO_SIMD) && defined(STBI_NEON) +#undef STBI_NEON +#endif + +#ifdef STBI_NEON +#include +#ifdef _MSC_VER +#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name +#else +#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16))) +#endif +#endif + +#ifndef STBI_SIMD_ALIGN +#define STBI_SIMD_ALIGN(type, name) type name +#endif + +#ifndef STBI_MAX_DIMENSIONS +#define STBI_MAX_DIMENSIONS (1 << 24) +#endif + +/////////////////////////////////////////////// +// +// stbi__context struct and start_xxx functions + +// stbi__context structure is our basic context used by all images, so it +// contains all the IO context, plus some basic image information +typedef struct +{ + stbi__uint32 img_x, img_y; + int img_n, img_out_n; + + stbi_io_callbacks io; + void *io_user_data; + + int read_from_callbacks; + int buflen; + stbi_uc buffer_start[128]; + int callback_already_read; + + stbi_uc *img_buffer, *img_buffer_end; + stbi_uc *img_buffer_original, *img_buffer_original_end; +} stbi__context; + + +static void stbi__refill_buffer(stbi__context *s); + +// initialize a memory-decode context +static void stbi__start_mem(stbi__context *s, stbi_uc const *buffer, int len) +{ + s->io.read = NULL; + s->read_from_callbacks = 0; + s->callback_already_read = 0; + s->img_buffer = s->img_buffer_original = (stbi_uc *) buffer; + s->img_buffer_end = s->img_buffer_original_end = (stbi_uc *) buffer+len; +} + +// initialize a callback-based context +static void stbi__start_callbacks(stbi__context *s, stbi_io_callbacks *c, void *user) +{ + s->io = *c; + s->io_user_data = user; + s->buflen = sizeof(s->buffer_start); + s->read_from_callbacks = 1; + s->callback_already_read = 0; + s->img_buffer = s->img_buffer_original = s->buffer_start; + stbi__refill_buffer(s); + s->img_buffer_original_end = s->img_buffer_end; +} + +#ifndef STBI_NO_STDIO + +static int stbi__stdio_read(void *user, char *data, int size) +{ + return (int) fread(data,1,size,(FILE*) user); +} + +static void stbi__stdio_skip(void *user, int n) +{ + int ch; + fseek((FILE*) user, n, SEEK_CUR); + ch = fgetc((FILE*) user); /* have to read a byte to reset feof()'s flag */ + if (ch != EOF) { + ungetc(ch, (FILE *) user); /* push byte back onto stream if valid. */ + } +} + +static int stbi__stdio_eof(void *user) +{ + return feof((FILE*) user) || ferror((FILE *) user); +} + +static stbi_io_callbacks stbi__stdio_callbacks = +{ + stbi__stdio_read, + stbi__stdio_skip, + stbi__stdio_eof, +}; + +static void stbi__start_file(stbi__context *s, FILE *f) +{ + stbi__start_callbacks(s, &stbi__stdio_callbacks, (void *) f); +} + +//static void stop_file(stbi__context *s) { } + +#endif // !STBI_NO_STDIO + +static void stbi__rewind(stbi__context *s) +{ + // conceptually rewind SHOULD rewind to the beginning of the stream, + // but we just rewind to the beginning of the initial buffer, because + // we only use it after doing 'test', which only ever looks at at most 92 bytes + s->img_buffer = s->img_buffer_original; + s->img_buffer_end = s->img_buffer_original_end; +} + +enum +{ + STBI_ORDER_RGB, + STBI_ORDER_BGR +}; + +typedef struct +{ + int bits_per_channel; + int num_channels; + int channel_order; +} stbi__result_info; + +#ifndef STBI_NO_JPEG +static int stbi__jpeg_test(stbi__context *s); +static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PNG +static int stbi__png_test(stbi__context *s); +static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp); +static int stbi__png_is16(stbi__context *s); +#endif + +#ifndef STBI_NO_BMP +static int stbi__bmp_test(stbi__context *s); +static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_TGA +static int stbi__tga_test(stbi__context *s); +static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PSD +static int stbi__psd_test(stbi__context *s); +static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc); +static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp); +static int stbi__psd_is16(stbi__context *s); +#endif + +#ifndef STBI_NO_HDR +static int stbi__hdr_test(stbi__context *s); +static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PIC +static int stbi__pic_test(stbi__context *s); +static void *stbi__pic_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_GIF +static int stbi__gif_test(stbi__context *s); +static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp); +static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp); +#endif + +#ifndef STBI_NO_PNM +static int stbi__pnm_test(stbi__context *s); +static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri); +static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp); +static int stbi__pnm_is16(stbi__context *s); +#endif + +static +#ifdef STBI_THREAD_LOCAL +STBI_THREAD_LOCAL +#endif +const char *stbi__g_failure_reason; + +STBIDEF const char *stbi_failure_reason(void) +{ + return stbi__g_failure_reason; +} + +#ifndef STBI_NO_FAILURE_STRINGS +static int stbi__err(const char *str) +{ + stbi__g_failure_reason = str; + return 0; +} +#endif + +static void *stbi__malloc(size_t size) +{ + return STBI_MALLOC(size); +} + +// stb_image uses ints pervasively, including for offset calculations. +// therefore the largest decoded image size we can support with the +// current code, even on 64-bit targets, is INT_MAX. this is not a +// significant limitation for the intended use case. +// +// we do, however, need to make sure our size calculations don't +// overflow. hence a few helper functions for size calculations that +// multiply integers together, making sure that they're non-negative +// and no overflow occurs. + +// return 1 if the sum is valid, 0 on overflow. +// negative terms are considered invalid. +static int stbi__addsizes_valid(int a, int b) +{ + if (b < 0) return 0; + // now 0 <= b <= INT_MAX, hence also + // 0 <= INT_MAX - b <= INTMAX. + // And "a + b <= INT_MAX" (which might overflow) is the + // same as a <= INT_MAX - b (no overflow) + return a <= INT_MAX - b; +} + +// returns 1 if the product is valid, 0 on overflow. +// negative factors are considered invalid. +static int stbi__mul2sizes_valid(int a, int b) +{ + if (a < 0 || b < 0) return 0; + if (b == 0) return 1; // mul-by-0 is always safe + // portable way to check for no overflows in a*b + return a <= INT_MAX/b; +} + +#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR) +// returns 1 if "a*b + add" has no negative terms/factors and doesn't overflow +static int stbi__mad2sizes_valid(int a, int b, int add) +{ + return stbi__mul2sizes_valid(a, b) && stbi__addsizes_valid(a*b, add); +} +#endif + +// returns 1 if "a*b*c + add" has no negative terms/factors and doesn't overflow +static int stbi__mad3sizes_valid(int a, int b, int c, int add) +{ + return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) && + stbi__addsizes_valid(a*b*c, add); +} + +// returns 1 if "a*b*c*d + add" has no negative terms/factors and doesn't overflow +#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM) +static int stbi__mad4sizes_valid(int a, int b, int c, int d, int add) +{ + return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) && + stbi__mul2sizes_valid(a*b*c, d) && stbi__addsizes_valid(a*b*c*d, add); +} +#endif + +#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR) +// mallocs with size overflow checking +static void *stbi__malloc_mad2(int a, int b, int add) +{ + if (!stbi__mad2sizes_valid(a, b, add)) return NULL; + return stbi__malloc(a*b + add); +} +#endif + +static void *stbi__malloc_mad3(int a, int b, int c, int add) +{ + if (!stbi__mad3sizes_valid(a, b, c, add)) return NULL; + return stbi__malloc(a*b*c + add); +} + +#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM) +static void *stbi__malloc_mad4(int a, int b, int c, int d, int add) +{ + if (!stbi__mad4sizes_valid(a, b, c, d, add)) return NULL; + return stbi__malloc(a*b*c*d + add); +} +#endif + +// returns 1 if the sum of two signed ints is valid (between -2^31 and 2^31-1 inclusive), 0 on overflow. +static int stbi__addints_valid(int a, int b) +{ + if ((a >= 0) != (b >= 0)) return 1; // a and b have different signs, so no overflow + if (a < 0 && b < 0) return a >= INT_MIN - b; // same as a + b >= INT_MIN; INT_MIN - b cannot overflow since b < 0. + return a <= INT_MAX - b; +} + +// returns 1 if the product of two ints fits in a signed short, 0 on overflow. +static int stbi__mul2shorts_valid(int a, int b) +{ + if (b == 0 || b == -1) return 1; // multiplication by 0 is always 0; check for -1 so SHRT_MIN/b doesn't overflow + if ((a >= 0) == (b >= 0)) return a <= SHRT_MAX/b; // product is positive, so similar to mul2sizes_valid + if (b < 0) return a <= SHRT_MIN / b; // same as a * b >= SHRT_MIN + return a >= SHRT_MIN / b; +} + +// stbi__err - error +// stbi__errpf - error returning pointer to float +// stbi__errpuc - error returning pointer to unsigned char + +#ifdef STBI_NO_FAILURE_STRINGS + #define stbi__err(x,y) 0 +#elif defined(STBI_FAILURE_USERMSG) + #define stbi__err(x,y) stbi__err(y) +#else + #define stbi__err(x,y) stbi__err(x) +#endif + +#define stbi__errpf(x,y) ((float *)(size_t) (stbi__err(x,y)?NULL:NULL)) +#define stbi__errpuc(x,y) ((unsigned char *)(size_t) (stbi__err(x,y)?NULL:NULL)) + +STBIDEF void stbi_image_free(void *retval_from_stbi_load) +{ + STBI_FREE(retval_from_stbi_load); +} + +#ifndef STBI_NO_LINEAR +static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp); +#endif + +#ifndef STBI_NO_HDR +static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp); +#endif + +static int stbi__vertically_flip_on_load_global = 0; + +STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip) +{ + stbi__vertically_flip_on_load_global = flag_true_if_should_flip; +} + +#ifndef STBI_THREAD_LOCAL +#define stbi__vertically_flip_on_load stbi__vertically_flip_on_load_global +#else +static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set; + +STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip) +{ + stbi__vertically_flip_on_load_local = flag_true_if_should_flip; + stbi__vertically_flip_on_load_set = 1; +} + +#define stbi__vertically_flip_on_load (stbi__vertically_flip_on_load_set \ + ? stbi__vertically_flip_on_load_local \ + : stbi__vertically_flip_on_load_global) +#endif // STBI_THREAD_LOCAL + +static void *stbi__load_main(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc) +{ + memset(ri, 0, sizeof(*ri)); // make sure it's initialized if we add new fields + ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed + ri->channel_order = STBI_ORDER_RGB; // all current input & output are this, but this is here so we can add BGR order + ri->num_channels = 0; + + // test the formats with a very explicit header first (at least a FOURCC + // or distinctive magic number first) + #ifndef STBI_NO_PNG + if (stbi__png_test(s)) return stbi__png_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_BMP + if (stbi__bmp_test(s)) return stbi__bmp_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_GIF + if (stbi__gif_test(s)) return stbi__gif_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_PSD + if (stbi__psd_test(s)) return stbi__psd_load(s,x,y,comp,req_comp, ri, bpc); + #else + STBI_NOTUSED(bpc); + #endif + #ifndef STBI_NO_PIC + if (stbi__pic_test(s)) return stbi__pic_load(s,x,y,comp,req_comp, ri); + #endif + + // then the formats that can end up attempting to load with just 1 or 2 + // bytes matching expectations; these are prone to false positives, so + // try them later + #ifndef STBI_NO_JPEG + if (stbi__jpeg_test(s)) return stbi__jpeg_load(s,x,y,comp,req_comp, ri); + #endif + #ifndef STBI_NO_PNM + if (stbi__pnm_test(s)) return stbi__pnm_load(s,x,y,comp,req_comp, ri); + #endif + + #ifndef STBI_NO_HDR + if (stbi__hdr_test(s)) { + float *hdr = stbi__hdr_load(s, x,y,comp,req_comp, ri); + return stbi__hdr_to_ldr(hdr, *x, *y, req_comp ? req_comp : *comp); + } + #endif + + #ifndef STBI_NO_TGA + // test tga last because it's a crappy test! + if (stbi__tga_test(s)) + return stbi__tga_load(s,x,y,comp,req_comp, ri); + #endif + + return stbi__errpuc("unknown image type", "Image not of any known type, or corrupt"); +} + +static stbi_uc *stbi__convert_16_to_8(stbi__uint16 *orig, int w, int h, int channels) +{ + int i; + int img_len = w * h * channels; + stbi_uc *reduced; + + reduced = (stbi_uc *) stbi__malloc(img_len); + if (reduced == NULL) return stbi__errpuc("outofmem", "Out of memory"); + + for (i = 0; i < img_len; ++i) + reduced[i] = (stbi_uc)((orig[i] >> 8) & 0xFF); // top half of each byte is sufficient approx of 16->8 bit scaling + + STBI_FREE(orig); + return reduced; +} + +static stbi__uint16 *stbi__convert_8_to_16(stbi_uc *orig, int w, int h, int channels) +{ + int i; + int img_len = w * h * channels; + stbi__uint16 *enlarged; + + enlarged = (stbi__uint16 *) stbi__malloc(img_len*2); + if (enlarged == NULL) return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory"); + + for (i = 0; i < img_len; ++i) + enlarged[i] = (stbi__uint16)((orig[i] << 8) + orig[i]); // replicate to high and low byte, maps 0->0, 255->0xffff + + STBI_FREE(orig); + return enlarged; +} + +static void stbi__vertical_flip(void *image, int w, int h, int bytes_per_pixel) +{ + int row; + size_t bytes_per_row = (size_t)w * bytes_per_pixel; + stbi_uc temp[2048]; + stbi_uc *bytes = (stbi_uc *)image; + + for (row = 0; row < (h>>1); row++) { + stbi_uc *row0 = bytes + row*bytes_per_row; + stbi_uc *row1 = bytes + (h - row - 1)*bytes_per_row; + // swap row0 with row1 + size_t bytes_left = bytes_per_row; + while (bytes_left) { + size_t bytes_copy = (bytes_left < sizeof(temp)) ? bytes_left : sizeof(temp); + memcpy(temp, row0, bytes_copy); + memcpy(row0, row1, bytes_copy); + memcpy(row1, temp, bytes_copy); + row0 += bytes_copy; + row1 += bytes_copy; + bytes_left -= bytes_copy; + } + } +} + +#ifndef STBI_NO_GIF +static void stbi__vertical_flip_slices(void *image, int w, int h, int z, int bytes_per_pixel) +{ + int slice; + int slice_size = w * h * bytes_per_pixel; + + stbi_uc *bytes = (stbi_uc *)image; + for (slice = 0; slice < z; ++slice) { + stbi__vertical_flip(bytes, w, h, bytes_per_pixel); + bytes += slice_size; + } +} +#endif + +static unsigned char *stbi__load_and_postprocess_8bit(stbi__context *s, int *x, int *y, int *comp, int req_comp) +{ + stbi__result_info ri; + void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 8); + + if (result == NULL) + return NULL; + + // it is the responsibility of the loaders to make sure we get either 8 or 16 bit. + STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); + + if (ri.bits_per_channel != 8) { + result = stbi__convert_16_to_8((stbi__uint16 *) result, *x, *y, req_comp == 0 ? *comp : req_comp); + ri.bits_per_channel = 8; + } + + // @TODO: move stbi__convert_format to here + + if (stbi__vertically_flip_on_load) { + int channels = req_comp ? req_comp : *comp; + stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi_uc)); + } + + return (unsigned char *) result; +} + +static stbi__uint16 *stbi__load_and_postprocess_16bit(stbi__context *s, int *x, int *y, int *comp, int req_comp) +{ + stbi__result_info ri; + void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 16); + + if (result == NULL) + return NULL; + + // it is the responsibility of the loaders to make sure we get either 8 or 16 bit. + STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16); + + if (ri.bits_per_channel != 16) { + result = stbi__convert_8_to_16((stbi_uc *) result, *x, *y, req_comp == 0 ? *comp : req_comp); + ri.bits_per_channel = 16; + } + + // @TODO: move stbi__convert_format16 to here + // @TODO: special case RGB-to-Y (and RGBA-to-YA) for 8-bit-to-16-bit case to keep more precision + + if (stbi__vertically_flip_on_load) { + int channels = req_comp ? req_comp : *comp; + stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi__uint16)); + } + + return (stbi__uint16 *) result; +} + +#if !defined(STBI_NO_HDR) && !defined(STBI_NO_LINEAR) +static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp) +{ + if (stbi__vertically_flip_on_load && result != NULL) { + int channels = req_comp ? req_comp : *comp; + stbi__vertical_flip(result, *x, *y, channels * sizeof(float)); + } +} +#endif + +#ifndef STBI_NO_STDIO + +#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8) +STBI_EXTERN __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int cp, unsigned long flags, const char *str, int cbmb, wchar_t *widestr, int cchwide); +STBI_EXTERN __declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, const wchar_t *widestr, int cchwide, char *str, int cbmb, const char *defchar, int *used_default); +#endif + +#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8) +STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input) +{ + return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL); +} +#endif + +static FILE *stbi__fopen(char const *filename, char const *mode) +{ + FILE *f; +#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8) + wchar_t wMode[64]; + wchar_t wFilename[1024]; + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, filename, -1, wFilename, sizeof(wFilename)/sizeof(*wFilename))) + return 0; + + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, mode, -1, wMode, sizeof(wMode)/sizeof(*wMode))) + return 0; + +#if defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != _wfopen_s(&f, wFilename, wMode)) + f = 0; +#else + f = _wfopen(wFilename, wMode); +#endif + +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != fopen_s(&f, filename, mode)) + f=0; +#else + f = fopen(filename, mode); +#endif + return f; +} + + +STBIDEF stbi_uc *stbi_load(char const *filename, int *x, int *y, int *comp, int req_comp) +{ + FILE *f = stbi__fopen(filename, "rb"); + unsigned char *result; + if (!f) return stbi__errpuc("can't fopen", "Unable to open file"); + result = stbi_load_from_file(f,x,y,comp,req_comp); + fclose(f); + return result; +} + +STBIDEF stbi_uc *stbi_load_from_file(FILE *f, int *x, int *y, int *comp, int req_comp) +{ + unsigned char *result; + stbi__context s; + stbi__start_file(&s,f); + result = stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); + if (result) { + // need to 'unget' all the characters in the IO buffer + fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR); + } + return result; +} + +STBIDEF stbi__uint16 *stbi_load_from_file_16(FILE *f, int *x, int *y, int *comp, int req_comp) +{ + stbi__uint16 *result; + stbi__context s; + stbi__start_file(&s,f); + result = stbi__load_and_postprocess_16bit(&s,x,y,comp,req_comp); + if (result) { + // need to 'unget' all the characters in the IO buffer + fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR); + } + return result; +} + +STBIDEF stbi_us *stbi_load_16(char const *filename, int *x, int *y, int *comp, int req_comp) +{ + FILE *f = stbi__fopen(filename, "rb"); + stbi__uint16 *result; + if (!f) return (stbi_us *) stbi__errpuc("can't fopen", "Unable to open file"); + result = stbi_load_from_file_16(f,x,y,comp,req_comp); + fclose(f); + return result; +} + + +#endif //!STBI_NO_STDIO + +STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels); +} + +STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *)clbk, user); + return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels); +} + +STBIDEF stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); +} + +STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); + return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp); +} + +#ifndef STBI_NO_GIF +STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp) +{ + unsigned char *result; + stbi__context s; + stbi__start_mem(&s,buffer,len); + + result = (unsigned char*) stbi__load_gif_main(&s, delays, x, y, z, comp, req_comp); + if (stbi__vertically_flip_on_load) { + stbi__vertical_flip_slices( result, *x, *y, *z, *comp ); + } + + return result; +} +#endif + +#ifndef STBI_NO_LINEAR +static float *stbi__loadf_main(stbi__context *s, int *x, int *y, int *comp, int req_comp) +{ + unsigned char *data; + #ifndef STBI_NO_HDR + if (stbi__hdr_test(s)) { + stbi__result_info ri; + float *hdr_data = stbi__hdr_load(s,x,y,comp,req_comp, &ri); + if (hdr_data) + stbi__float_postprocess(hdr_data,x,y,comp,req_comp); + return hdr_data; + } + #endif + data = stbi__load_and_postprocess_8bit(s, x, y, comp, req_comp); + if (data) + return stbi__ldr_to_hdr(data, *x, *y, req_comp ? req_comp : *comp); + return stbi__errpf("unknown image type", "Image not of any known type, or corrupt"); +} + +STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__loadf_main(&s,x,y,comp,req_comp); +} + +STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); + return stbi__loadf_main(&s,x,y,comp,req_comp); +} + +#ifndef STBI_NO_STDIO +STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *comp, int req_comp) +{ + float *result; + FILE *f = stbi__fopen(filename, "rb"); + if (!f) return stbi__errpf("can't fopen", "Unable to open file"); + result = stbi_loadf_from_file(f,x,y,comp,req_comp); + fclose(f); + return result; +} + +STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp) +{ + stbi__context s; + stbi__start_file(&s,f); + return stbi__loadf_main(&s,x,y,comp,req_comp); +} +#endif // !STBI_NO_STDIO + +#endif // !STBI_NO_LINEAR + +// these is-hdr-or-not is defined independent of whether STBI_NO_LINEAR is +// defined, for API simplicity; if STBI_NO_LINEAR is defined, it always +// reports false! + +STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len) +{ + #ifndef STBI_NO_HDR + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__hdr_test(&s); + #else + STBI_NOTUSED(buffer); + STBI_NOTUSED(len); + return 0; + #endif +} + +#ifndef STBI_NO_STDIO +STBIDEF int stbi_is_hdr (char const *filename) +{ + FILE *f = stbi__fopen(filename, "rb"); + int result=0; + if (f) { + result = stbi_is_hdr_from_file(f); + fclose(f); + } + return result; +} + +STBIDEF int stbi_is_hdr_from_file(FILE *f) +{ + #ifndef STBI_NO_HDR + long pos = ftell(f); + int res; + stbi__context s; + stbi__start_file(&s,f); + res = stbi__hdr_test(&s); + fseek(f, pos, SEEK_SET); + return res; + #else + STBI_NOTUSED(f); + return 0; + #endif +} +#endif // !STBI_NO_STDIO + +STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user) +{ + #ifndef STBI_NO_HDR + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user); + return stbi__hdr_test(&s); + #else + STBI_NOTUSED(clbk); + STBI_NOTUSED(user); + return 0; + #endif +} + +#ifndef STBI_NO_LINEAR +static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f; + +STBIDEF void stbi_ldr_to_hdr_gamma(float gamma) { stbi__l2h_gamma = gamma; } +STBIDEF void stbi_ldr_to_hdr_scale(float scale) { stbi__l2h_scale = scale; } +#endif + +static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f; + +STBIDEF void stbi_hdr_to_ldr_gamma(float gamma) { stbi__h2l_gamma_i = 1/gamma; } +STBIDEF void stbi_hdr_to_ldr_scale(float scale) { stbi__h2l_scale_i = 1/scale; } + + +////////////////////////////////////////////////////////////////////////////// +// +// Common code used by all image loaders +// + +enum +{ + STBI__SCAN_load=0, + STBI__SCAN_type, + STBI__SCAN_header +}; + +static void stbi__refill_buffer(stbi__context *s) +{ + int n = (s->io.read)(s->io_user_data,(char*)s->buffer_start,s->buflen); + s->callback_already_read += (int) (s->img_buffer - s->img_buffer_original); + if (n == 0) { + // at end of file, treat same as if from memory, but need to handle case + // where s->img_buffer isn't pointing to safe memory, e.g. 0-byte file + s->read_from_callbacks = 0; + s->img_buffer = s->buffer_start; + s->img_buffer_end = s->buffer_start+1; + *s->img_buffer = 0; + } else { + s->img_buffer = s->buffer_start; + s->img_buffer_end = s->buffer_start + n; + } +} + +stbi_inline static stbi_uc stbi__get8(stbi__context *s) +{ + if (s->img_buffer < s->img_buffer_end) + return *s->img_buffer++; + if (s->read_from_callbacks) { + stbi__refill_buffer(s); + return *s->img_buffer++; + } + return 0; +} + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_HDR) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) +// nothing +#else +stbi_inline static int stbi__at_eof(stbi__context *s) +{ + if (s->io.read) { + if (!(s->io.eof)(s->io_user_data)) return 0; + // if feof() is true, check if buffer = end + // special case: we've only got the special 0 character at the end + if (s->read_from_callbacks == 0) return 1; + } + + return s->img_buffer >= s->img_buffer_end; +} +#endif + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) +// nothing +#else +static void stbi__skip(stbi__context *s, int n) +{ + if (n == 0) return; // already there! + if (n < 0) { + s->img_buffer = s->img_buffer_end; + return; + } + if (s->io.read) { + int blen = (int) (s->img_buffer_end - s->img_buffer); + if (blen < n) { + s->img_buffer = s->img_buffer_end; + (s->io.skip)(s->io_user_data, n - blen); + return; + } + } + s->img_buffer += n; +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_TGA) && defined(STBI_NO_HDR) && defined(STBI_NO_PNM) +// nothing +#else +static int stbi__getn(stbi__context *s, stbi_uc *buffer, int n) +{ + if (s->io.read) { + int blen = (int) (s->img_buffer_end - s->img_buffer); + if (blen < n) { + int res, count; + + memcpy(buffer, s->img_buffer, blen); + + count = (s->io.read)(s->io_user_data, (char*) buffer + blen, n - blen); + res = (count == (n-blen)); + s->img_buffer = s->img_buffer_end; + return res; + } + } + + if (s->img_buffer+n <= s->img_buffer_end) { + memcpy(buffer, s->img_buffer, n); + s->img_buffer += n; + return 1; + } else + return 0; +} +#endif + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) +// nothing +#else +static int stbi__get16be(stbi__context *s) +{ + int z = stbi__get8(s); + return (z << 8) + stbi__get8(s); +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) +// nothing +#else +static stbi__uint32 stbi__get32be(stbi__context *s) +{ + stbi__uint32 z = stbi__get16be(s); + return (z << 16) + stbi__get16be(s); +} +#endif + +#if defined(STBI_NO_BMP) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) +// nothing +#else +static int stbi__get16le(stbi__context *s) +{ + int z = stbi__get8(s); + return z + (stbi__get8(s) << 8); +} +#endif + +#ifndef STBI_NO_BMP +static stbi__uint32 stbi__get32le(stbi__context *s) +{ + stbi__uint32 z = stbi__get16le(s); + z += (stbi__uint32)stbi__get16le(s) << 16; + return z; +} +#endif + +#define STBI__BYTECAST(x) ((stbi_uc) ((x) & 255)) // truncate int to byte without warnings + +#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) +// nothing +#else +////////////////////////////////////////////////////////////////////////////// +// +// generic converter from built-in img_n to req_comp +// individual types do this automatically as much as possible (e.g. jpeg +// does all cases internally since it needs to colorspace convert anyway, +// and it never has alpha, so very few cases ). png can automatically +// interleave an alpha=255 channel, but falls back to this for other cases +// +// assume data buffer is malloced, so malloc a new one and free that one +// only failure mode is malloc failing + +static stbi_uc stbi__compute_y(int r, int g, int b) +{ + return (stbi_uc) (((r*77) + (g*150) + (29*b)) >> 8); +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) +// nothing +#else +static unsigned char *stbi__convert_format(unsigned char *data, int img_n, int req_comp, unsigned int x, unsigned int y) +{ + int i,j; + unsigned char *good; + + if (req_comp == img_n) return data; + STBI_ASSERT(req_comp >= 1 && req_comp <= 4); + + good = (unsigned char *) stbi__malloc_mad3(req_comp, x, y, 0); + if (good == NULL) { + STBI_FREE(data); + return stbi__errpuc("outofmem", "Out of memory"); + } + + for (j=0; j < (int) y; ++j) { + unsigned char *src = data + j * x * img_n ; + unsigned char *dest = good + j * x * req_comp; + + #define STBI__COMBO(a,b) ((a)*8+(b)) + #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) + // convert source image with img_n components to one with req_comp components; + // avoid switch per pixel, so use switch per scanline and massive macros + switch (STBI__COMBO(img_n, req_comp)) { + STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=255; } break; + STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=255; } break; + STBI__CASE(2,1) { dest[0]=src[0]; } break; + STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break; + STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=255; } break; + STBI__CASE(3,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break; + STBI__CASE(3,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = 255; } break; + STBI__CASE(4,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break; + STBI__CASE(4,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = src[3]; } break; + STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break; + default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return stbi__errpuc("unsupported", "Unsupported format conversion"); + } + #undef STBI__CASE + } + + STBI_FREE(data); + return good; +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) +// nothing +#else +static stbi__uint16 stbi__compute_y_16(int r, int g, int b) +{ + return (stbi__uint16) (((r*77) + (g*150) + (29*b)) >> 8); +} +#endif + +#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) +// nothing +#else +static stbi__uint16 *stbi__convert_format16(stbi__uint16 *data, int img_n, int req_comp, unsigned int x, unsigned int y) +{ + int i,j; + stbi__uint16 *good; + + if (req_comp == img_n) return data; + STBI_ASSERT(req_comp >= 1 && req_comp <= 4); + + good = (stbi__uint16 *) stbi__malloc(req_comp * x * y * 2); + if (good == NULL) { + STBI_FREE(data); + return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory"); + } + + for (j=0; j < (int) y; ++j) { + stbi__uint16 *src = data + j * x * img_n ; + stbi__uint16 *dest = good + j * x * req_comp; + + #define STBI__COMBO(a,b) ((a)*8+(b)) + #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) + // convert source image with img_n components to one with req_comp components; + // avoid switch per pixel, so use switch per scanline and massive macros + switch (STBI__COMBO(img_n, req_comp)) { + STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=0xffff; } break; + STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=0xffff; } break; + STBI__CASE(2,1) { dest[0]=src[0]; } break; + STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break; + STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break; + STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=0xffff; } break; + STBI__CASE(3,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break; + STBI__CASE(3,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = 0xffff; } break; + STBI__CASE(4,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break; + STBI__CASE(4,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = src[3]; } break; + STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break; + default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return (stbi__uint16*) stbi__errpuc("unsupported", "Unsupported format conversion"); + } + #undef STBI__CASE + } + + STBI_FREE(data); + return good; +} +#endif + +#ifndef STBI_NO_LINEAR +static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp) +{ + int i,k,n; + float *output; + if (!data) return NULL; + output = (float *) stbi__malloc_mad4(x, y, comp, sizeof(float), 0); + if (output == NULL) { STBI_FREE(data); return stbi__errpf("outofmem", "Out of memory"); } + // compute number of non-alpha components + if (comp & 1) n = comp; else n = comp-1; + for (i=0; i < x*y; ++i) { + for (k=0; k < n; ++k) { + output[i*comp + k] = (float) (pow(data[i*comp+k]/255.0f, stbi__l2h_gamma) * stbi__l2h_scale); + } + } + if (n < comp) { + for (i=0; i < x*y; ++i) { + output[i*comp + n] = data[i*comp + n]/255.0f; + } + } + STBI_FREE(data); + return output; +} +#endif + +#ifndef STBI_NO_HDR +#define stbi__float2int(x) ((int) (x)) +static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp) +{ + int i,k,n; + stbi_uc *output; + if (!data) return NULL; + output = (stbi_uc *) stbi__malloc_mad3(x, y, comp, 0); + if (output == NULL) { STBI_FREE(data); return stbi__errpuc("outofmem", "Out of memory"); } + // compute number of non-alpha components + if (comp & 1) n = comp; else n = comp-1; + for (i=0; i < x*y; ++i) { + for (k=0; k < n; ++k) { + float z = (float) pow(data[i*comp+k]*stbi__h2l_scale_i, stbi__h2l_gamma_i) * 255 + 0.5f; + if (z < 0) z = 0; + if (z > 255) z = 255; + output[i*comp + k] = (stbi_uc) stbi__float2int(z); + } + if (k < comp) { + float z = data[i*comp+k] * 255 + 0.5f; + if (z < 0) z = 0; + if (z > 255) z = 255; + output[i*comp + k] = (stbi_uc) stbi__float2int(z); + } + } + STBI_FREE(data); + return output; +} +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// "baseline" JPEG/JFIF decoder +// +// simple implementation +// - doesn't support delayed output of y-dimension +// - simple interface (only one output format: 8-bit interleaved RGB) +// - doesn't try to recover corrupt jpegs +// - doesn't allow partial loading, loading multiple at once +// - still fast on x86 (copying globals into locals doesn't help x86) +// - allocates lots of intermediate memory (full size of all components) +// - non-interleaved case requires this anyway +// - allows good upsampling (see next) +// high-quality +// - upsampled channels are bilinearly interpolated, even across blocks +// - quality integer IDCT derived from IJG's 'slow' +// performance +// - fast huffman; reasonable integer IDCT +// - some SIMD kernels for common paths on targets with SSE2/NEON +// - uses a lot of intermediate memory, could cache poorly + +#ifndef STBI_NO_JPEG + +// huffman decoding acceleration +#define FAST_BITS 9 // larger handles more cases; smaller stomps less cache + +typedef struct +{ + stbi_uc fast[1 << FAST_BITS]; + // weirdly, repacking this into AoS is a 10% speed loss, instead of a win + stbi__uint16 code[256]; + stbi_uc values[256]; + stbi_uc size[257]; + unsigned int maxcode[18]; + int delta[17]; // old 'firstsymbol' - old 'firstcode' +} stbi__huffman; + +typedef struct +{ + stbi__context *s; + stbi__huffman huff_dc[4]; + stbi__huffman huff_ac[4]; + stbi__uint16 dequant[4][64]; + stbi__int16 fast_ac[4][1 << FAST_BITS]; + +// sizes for components, interleaved MCUs + int img_h_max, img_v_max; + int img_mcu_x, img_mcu_y; + int img_mcu_w, img_mcu_h; + +// definition of jpeg image component + struct + { + int id; + int h,v; + int tq; + int hd,ha; + int dc_pred; + + int x,y,w2,h2; + stbi_uc *data; + void *raw_data, *raw_coeff; + stbi_uc *linebuf; + short *coeff; // progressive only + int coeff_w, coeff_h; // number of 8x8 coefficient blocks + } img_comp[4]; + + stbi__uint32 code_buffer; // jpeg entropy-coded buffer + int code_bits; // number of valid bits + unsigned char marker; // marker seen while filling entropy buffer + int nomore; // flag if we saw a marker so must stop + + int progressive; + int spec_start; + int spec_end; + int succ_high; + int succ_low; + int eob_run; + int jfif; + int app14_color_transform; // Adobe APP14 tag + int rgb; + + int scan_n, order[4]; + int restart_interval, todo; + +// kernels + void (*idct_block_kernel)(stbi_uc *out, int out_stride, short data[64]); + void (*YCbCr_to_RGB_kernel)(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step); + stbi_uc *(*resample_row_hv_2_kernel)(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs); +} stbi__jpeg; + +static int stbi__build_huffman(stbi__huffman *h, int *count) +{ + int i,j,k=0; + unsigned int code; + // build size list for each symbol (from JPEG spec) + for (i=0; i < 16; ++i) { + for (j=0; j < count[i]; ++j) { + h->size[k++] = (stbi_uc) (i+1); + if(k >= 257) return stbi__err("bad size list","Corrupt JPEG"); + } + } + h->size[k] = 0; + + // compute actual symbols (from jpeg spec) + code = 0; + k = 0; + for(j=1; j <= 16; ++j) { + // compute delta to add to code to compute symbol id + h->delta[j] = k - code; + if (h->size[k] == j) { + while (h->size[k] == j) + h->code[k++] = (stbi__uint16) (code++); + if (code-1 >= (1u << j)) return stbi__err("bad code lengths","Corrupt JPEG"); + } + // compute largest code + 1 for this size, preshifted as needed later + h->maxcode[j] = code << (16-j); + code <<= 1; + } + h->maxcode[j] = 0xffffffff; + + // build non-spec acceleration table; 255 is flag for not-accelerated + memset(h->fast, 255, 1 << FAST_BITS); + for (i=0; i < k; ++i) { + int s = h->size[i]; + if (s <= FAST_BITS) { + int c = h->code[i] << (FAST_BITS-s); + int m = 1 << (FAST_BITS-s); + for (j=0; j < m; ++j) { + h->fast[c+j] = (stbi_uc) i; + } + } + } + return 1; +} + +// build a table that decodes both magnitude and value of small ACs in +// one go. +static void stbi__build_fast_ac(stbi__int16 *fast_ac, stbi__huffman *h) +{ + int i; + for (i=0; i < (1 << FAST_BITS); ++i) { + stbi_uc fast = h->fast[i]; + fast_ac[i] = 0; + if (fast < 255) { + int rs = h->values[fast]; + int run = (rs >> 4) & 15; + int magbits = rs & 15; + int len = h->size[fast]; + + if (magbits && len + magbits <= FAST_BITS) { + // magnitude code followed by receive_extend code + int k = ((i << len) & ((1 << FAST_BITS) - 1)) >> (FAST_BITS - magbits); + int m = 1 << (magbits - 1); + if (k < m) k += (~0U << magbits) + 1; + // if the result is small enough, we can fit it in fast_ac table + if (k >= -128 && k <= 127) + fast_ac[i] = (stbi__int16) ((k * 256) + (run * 16) + (len + magbits)); + } + } + } +} + +static void stbi__grow_buffer_unsafe(stbi__jpeg *j) +{ + do { + unsigned int b = j->nomore ? 0 : stbi__get8(j->s); + if (b == 0xff) { + int c = stbi__get8(j->s); + while (c == 0xff) c = stbi__get8(j->s); // consume fill bytes + if (c != 0) { + j->marker = (unsigned char) c; + j->nomore = 1; + return; + } + } + j->code_buffer |= b << (24 - j->code_bits); + j->code_bits += 8; + } while (j->code_bits <= 24); +} + +// (1 << n) - 1 +static const stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535}; + +// decode a jpeg huffman value from the bitstream +stbi_inline static int stbi__jpeg_huff_decode(stbi__jpeg *j, stbi__huffman *h) +{ + unsigned int temp; + int c,k; + + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + + // look at the top FAST_BITS and determine what symbol ID it is, + // if the code is <= FAST_BITS + c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); + k = h->fast[c]; + if (k < 255) { + int s = h->size[k]; + if (s > j->code_bits) + return -1; + j->code_buffer <<= s; + j->code_bits -= s; + return h->values[k]; + } + + // naive test is to shift the code_buffer down so k bits are + // valid, then test against maxcode. To speed this up, we've + // preshifted maxcode left so that it has (16-k) 0s at the + // end; in other words, regardless of the number of bits, it + // wants to be compared against something shifted to have 16; + // that way we don't need to shift inside the loop. + temp = j->code_buffer >> 16; + for (k=FAST_BITS+1 ; ; ++k) + if (temp < h->maxcode[k]) + break; + if (k == 17) { + // error! code not found + j->code_bits -= 16; + return -1; + } + + if (k > j->code_bits) + return -1; + + // convert the huffman code to the symbol id + c = ((j->code_buffer >> (32 - k)) & stbi__bmask[k]) + h->delta[k]; + if(c < 0 || c >= 256) // symbol id out of bounds! + return -1; + STBI_ASSERT((((j->code_buffer) >> (32 - h->size[c])) & stbi__bmask[h->size[c]]) == h->code[c]); + + // convert the id to a symbol + j->code_bits -= k; + j->code_buffer <<= k; + return h->values[c]; +} + +// bias[n] = (-1<code_bits < n) stbi__grow_buffer_unsafe(j); + if (j->code_bits < n) return 0; // ran out of bits from stream, return 0s intead of continuing + + sgn = j->code_buffer >> 31; // sign bit always in MSB; 0 if MSB clear (positive), 1 if MSB set (negative) + k = stbi_lrot(j->code_buffer, n); + j->code_buffer = k & ~stbi__bmask[n]; + k &= stbi__bmask[n]; + j->code_bits -= n; + return k + (stbi__jbias[n] & (sgn - 1)); +} + +// get some unsigned bits +stbi_inline static int stbi__jpeg_get_bits(stbi__jpeg *j, int n) +{ + unsigned int k; + if (j->code_bits < n) stbi__grow_buffer_unsafe(j); + if (j->code_bits < n) return 0; // ran out of bits from stream, return 0s intead of continuing + k = stbi_lrot(j->code_buffer, n); + j->code_buffer = k & ~stbi__bmask[n]; + k &= stbi__bmask[n]; + j->code_bits -= n; + return k; +} + +stbi_inline static int stbi__jpeg_get_bit(stbi__jpeg *j) +{ + unsigned int k; + if (j->code_bits < 1) stbi__grow_buffer_unsafe(j); + if (j->code_bits < 1) return 0; // ran out of bits from stream, return 0s intead of continuing + k = j->code_buffer; + j->code_buffer <<= 1; + --j->code_bits; + return k & 0x80000000; +} + +// given a value that's at position X in the zigzag stream, +// where does it appear in the 8x8 matrix coded as row-major? +static const stbi_uc stbi__jpeg_dezigzag[64+15] = +{ + 0, 1, 8, 16, 9, 2, 3, 10, + 17, 24, 32, 25, 18, 11, 4, 5, + 12, 19, 26, 33, 40, 48, 41, 34, + 27, 20, 13, 6, 7, 14, 21, 28, + 35, 42, 49, 56, 57, 50, 43, 36, + 29, 22, 15, 23, 30, 37, 44, 51, + 58, 59, 52, 45, 38, 31, 39, 46, + 53, 60, 61, 54, 47, 55, 62, 63, + // let corrupt input sample past end + 63, 63, 63, 63, 63, 63, 63, 63, + 63, 63, 63, 63, 63, 63, 63 +}; + +// decode one 64-entry block-- +static int stbi__jpeg_decode_block(stbi__jpeg *j, short data[64], stbi__huffman *hdc, stbi__huffman *hac, stbi__int16 *fac, int b, stbi__uint16 *dequant) +{ + int diff,dc,k; + int t; + + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + t = stbi__jpeg_huff_decode(j, hdc); + if (t < 0 || t > 15) return stbi__err("bad huffman code","Corrupt JPEG"); + + // 0 all the ac values now so we can do it 32-bits at a time + memset(data,0,64*sizeof(data[0])); + + diff = t ? stbi__extend_receive(j, t) : 0; + if (!stbi__addints_valid(j->img_comp[b].dc_pred, diff)) return stbi__err("bad delta","Corrupt JPEG"); + dc = j->img_comp[b].dc_pred + diff; + j->img_comp[b].dc_pred = dc; + if (!stbi__mul2shorts_valid(dc, dequant[0])) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + data[0] = (short) (dc * dequant[0]); + + // decode AC components, see JPEG spec + k = 1; + do { + unsigned int zig; + int c,r,s; + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); + r = fac[c]; + if (r) { // fast-AC path + k += (r >> 4) & 15; // run + s = r & 15; // combined length + if (s > j->code_bits) return stbi__err("bad huffman code", "Combined length longer than code bits available"); + j->code_buffer <<= s; + j->code_bits -= s; + // decode into unzigzag'd location + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) ((r >> 8) * dequant[zig]); + } else { + int rs = stbi__jpeg_huff_decode(j, hac); + if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); + s = rs & 15; + r = rs >> 4; + if (s == 0) { + if (rs != 0xf0) break; // end block + k += 16; + } else { + k += r; + // decode into unzigzag'd location + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) (stbi__extend_receive(j,s) * dequant[zig]); + } + } + } while (k < 64); + return 1; +} + +static int stbi__jpeg_decode_block_prog_dc(stbi__jpeg *j, short data[64], stbi__huffman *hdc, int b) +{ + int diff,dc; + int t; + if (j->spec_end != 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + + if (j->succ_high == 0) { + // first scan for DC coefficient, must be first + memset(data,0,64*sizeof(data[0])); // 0 all the ac values now + t = stbi__jpeg_huff_decode(j, hdc); + if (t < 0 || t > 15) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + diff = t ? stbi__extend_receive(j, t) : 0; + + if (!stbi__addints_valid(j->img_comp[b].dc_pred, diff)) return stbi__err("bad delta", "Corrupt JPEG"); + dc = j->img_comp[b].dc_pred + diff; + j->img_comp[b].dc_pred = dc; + if (!stbi__mul2shorts_valid(dc, 1 << j->succ_low)) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + data[0] = (short) (dc * (1 << j->succ_low)); + } else { + // refinement scan for DC coefficient + if (stbi__jpeg_get_bit(j)) + data[0] += (short) (1 << j->succ_low); + } + return 1; +} + +// @OPTIMIZE: store non-zigzagged during the decode passes, +// and only de-zigzag when dequantizing +static int stbi__jpeg_decode_block_prog_ac(stbi__jpeg *j, short data[64], stbi__huffman *hac, stbi__int16 *fac) +{ + int k; + if (j->spec_start == 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG"); + + if (j->succ_high == 0) { + int shift = j->succ_low; + + if (j->eob_run) { + --j->eob_run; + return 1; + } + + k = j->spec_start; + do { + unsigned int zig; + int c,r,s; + if (j->code_bits < 16) stbi__grow_buffer_unsafe(j); + c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1); + r = fac[c]; + if (r) { // fast-AC path + k += (r >> 4) & 15; // run + s = r & 15; // combined length + if (s > j->code_bits) return stbi__err("bad huffman code", "Combined length longer than code bits available"); + j->code_buffer <<= s; + j->code_bits -= s; + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) ((r >> 8) * (1 << shift)); + } else { + int rs = stbi__jpeg_huff_decode(j, hac); + if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); + s = rs & 15; + r = rs >> 4; + if (s == 0) { + if (r < 15) { + j->eob_run = (1 << r); + if (r) + j->eob_run += stbi__jpeg_get_bits(j, r); + --j->eob_run; + break; + } + k += 16; + } else { + k += r; + zig = stbi__jpeg_dezigzag[k++]; + data[zig] = (short) (stbi__extend_receive(j,s) * (1 << shift)); + } + } + } while (k <= j->spec_end); + } else { + // refinement scan for these AC coefficients + + short bit = (short) (1 << j->succ_low); + + if (j->eob_run) { + --j->eob_run; + for (k = j->spec_start; k <= j->spec_end; ++k) { + short *p = &data[stbi__jpeg_dezigzag[k]]; + if (*p != 0) + if (stbi__jpeg_get_bit(j)) + if ((*p & bit)==0) { + if (*p > 0) + *p += bit; + else + *p -= bit; + } + } + } else { + k = j->spec_start; + do { + int r,s; + int rs = stbi__jpeg_huff_decode(j, hac); // @OPTIMIZE see if we can use the fast path here, advance-by-r is so slow, eh + if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG"); + s = rs & 15; + r = rs >> 4; + if (s == 0) { + if (r < 15) { + j->eob_run = (1 << r) - 1; + if (r) + j->eob_run += stbi__jpeg_get_bits(j, r); + r = 64; // force end of block + } else { + // r=15 s=0 should write 16 0s, so we just do + // a run of 15 0s and then write s (which is 0), + // so we don't have to do anything special here + } + } else { + if (s != 1) return stbi__err("bad huffman code", "Corrupt JPEG"); + // sign bit + if (stbi__jpeg_get_bit(j)) + s = bit; + else + s = -bit; + } + + // advance by r + while (k <= j->spec_end) { + short *p = &data[stbi__jpeg_dezigzag[k++]]; + if (*p != 0) { + if (stbi__jpeg_get_bit(j)) + if ((*p & bit)==0) { + if (*p > 0) + *p += bit; + else + *p -= bit; + } + } else { + if (r == 0) { + *p = (short) s; + break; + } + --r; + } + } + } while (k <= j->spec_end); + } + } + return 1; +} + +// take a -128..127 value and stbi__clamp it and convert to 0..255 +stbi_inline static stbi_uc stbi__clamp(int x) +{ + // trick to use a single test to catch both cases + if ((unsigned int) x > 255) { + if (x < 0) return 0; + if (x > 255) return 255; + } + return (stbi_uc) x; +} + +#define stbi__f2f(x) ((int) (((x) * 4096 + 0.5))) +#define stbi__fsh(x) ((x) * 4096) + +// derived from jidctint -- DCT_ISLOW +#define STBI__IDCT_1D(s0,s1,s2,s3,s4,s5,s6,s7) \ + int t0,t1,t2,t3,p1,p2,p3,p4,p5,x0,x1,x2,x3; \ + p2 = s2; \ + p3 = s6; \ + p1 = (p2+p3) * stbi__f2f(0.5411961f); \ + t2 = p1 + p3*stbi__f2f(-1.847759065f); \ + t3 = p1 + p2*stbi__f2f( 0.765366865f); \ + p2 = s0; \ + p3 = s4; \ + t0 = stbi__fsh(p2+p3); \ + t1 = stbi__fsh(p2-p3); \ + x0 = t0+t3; \ + x3 = t0-t3; \ + x1 = t1+t2; \ + x2 = t1-t2; \ + t0 = s7; \ + t1 = s5; \ + t2 = s3; \ + t3 = s1; \ + p3 = t0+t2; \ + p4 = t1+t3; \ + p1 = t0+t3; \ + p2 = t1+t2; \ + p5 = (p3+p4)*stbi__f2f( 1.175875602f); \ + t0 = t0*stbi__f2f( 0.298631336f); \ + t1 = t1*stbi__f2f( 2.053119869f); \ + t2 = t2*stbi__f2f( 3.072711026f); \ + t3 = t3*stbi__f2f( 1.501321110f); \ + p1 = p5 + p1*stbi__f2f(-0.899976223f); \ + p2 = p5 + p2*stbi__f2f(-2.562915447f); \ + p3 = p3*stbi__f2f(-1.961570560f); \ + p4 = p4*stbi__f2f(-0.390180644f); \ + t3 += p1+p4; \ + t2 += p2+p3; \ + t1 += p2+p4; \ + t0 += p1+p3; + +static void stbi__idct_block(stbi_uc *out, int out_stride, short data[64]) +{ + int i,val[64],*v=val; + stbi_uc *o; + short *d = data; + + // columns + for (i=0; i < 8; ++i,++d, ++v) { + // if all zeroes, shortcut -- this avoids dequantizing 0s and IDCTing + if (d[ 8]==0 && d[16]==0 && d[24]==0 && d[32]==0 + && d[40]==0 && d[48]==0 && d[56]==0) { + // no shortcut 0 seconds + // (1|2|3|4|5|6|7)==0 0 seconds + // all separate -0.047 seconds + // 1 && 2|3 && 4|5 && 6|7: -0.047 seconds + int dcterm = d[0]*4; + v[0] = v[8] = v[16] = v[24] = v[32] = v[40] = v[48] = v[56] = dcterm; + } else { + STBI__IDCT_1D(d[ 0],d[ 8],d[16],d[24],d[32],d[40],d[48],d[56]) + // constants scaled things up by 1<<12; let's bring them back + // down, but keep 2 extra bits of precision + x0 += 512; x1 += 512; x2 += 512; x3 += 512; + v[ 0] = (x0+t3) >> 10; + v[56] = (x0-t3) >> 10; + v[ 8] = (x1+t2) >> 10; + v[48] = (x1-t2) >> 10; + v[16] = (x2+t1) >> 10; + v[40] = (x2-t1) >> 10; + v[24] = (x3+t0) >> 10; + v[32] = (x3-t0) >> 10; + } + } + + for (i=0, v=val, o=out; i < 8; ++i,v+=8,o+=out_stride) { + // no fast case since the first 1D IDCT spread components out + STBI__IDCT_1D(v[0],v[1],v[2],v[3],v[4],v[5],v[6],v[7]) + // constants scaled things up by 1<<12, plus we had 1<<2 from first + // loop, plus horizontal and vertical each scale by sqrt(8) so together + // we've got an extra 1<<3, so 1<<17 total we need to remove. + // so we want to round that, which means adding 0.5 * 1<<17, + // aka 65536. Also, we'll end up with -128 to 127 that we want + // to encode as 0..255 by adding 128, so we'll add that before the shift + x0 += 65536 + (128<<17); + x1 += 65536 + (128<<17); + x2 += 65536 + (128<<17); + x3 += 65536 + (128<<17); + // tried computing the shifts into temps, or'ing the temps to see + // if any were out of range, but that was slower + o[0] = stbi__clamp((x0+t3) >> 17); + o[7] = stbi__clamp((x0-t3) >> 17); + o[1] = stbi__clamp((x1+t2) >> 17); + o[6] = stbi__clamp((x1-t2) >> 17); + o[2] = stbi__clamp((x2+t1) >> 17); + o[5] = stbi__clamp((x2-t1) >> 17); + o[3] = stbi__clamp((x3+t0) >> 17); + o[4] = stbi__clamp((x3-t0) >> 17); + } +} + +#ifdef STBI_SSE2 +// sse2 integer IDCT. not the fastest possible implementation but it +// produces bit-identical results to the generic C version so it's +// fully "transparent". +static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) +{ + // This is constructed to match our regular (generic) integer IDCT exactly. + __m128i row0, row1, row2, row3, row4, row5, row6, row7; + __m128i tmp; + + // dot product constant: even elems=x, odd elems=y + #define dct_const(x,y) _mm_setr_epi16((x),(y),(x),(y),(x),(y),(x),(y)) + + // out(0) = c0[even]*x + c0[odd]*y (c0, x, y 16-bit, out 32-bit) + // out(1) = c1[even]*x + c1[odd]*y + #define dct_rot(out0,out1, x,y,c0,c1) \ + __m128i c0##lo = _mm_unpacklo_epi16((x),(y)); \ + __m128i c0##hi = _mm_unpackhi_epi16((x),(y)); \ + __m128i out0##_l = _mm_madd_epi16(c0##lo, c0); \ + __m128i out0##_h = _mm_madd_epi16(c0##hi, c0); \ + __m128i out1##_l = _mm_madd_epi16(c0##lo, c1); \ + __m128i out1##_h = _mm_madd_epi16(c0##hi, c1) + + // out = in << 12 (in 16-bit, out 32-bit) + #define dct_widen(out, in) \ + __m128i out##_l = _mm_srai_epi32(_mm_unpacklo_epi16(_mm_setzero_si128(), (in)), 4); \ + __m128i out##_h = _mm_srai_epi32(_mm_unpackhi_epi16(_mm_setzero_si128(), (in)), 4) + + // wide add + #define dct_wadd(out, a, b) \ + __m128i out##_l = _mm_add_epi32(a##_l, b##_l); \ + __m128i out##_h = _mm_add_epi32(a##_h, b##_h) + + // wide sub + #define dct_wsub(out, a, b) \ + __m128i out##_l = _mm_sub_epi32(a##_l, b##_l); \ + __m128i out##_h = _mm_sub_epi32(a##_h, b##_h) + + // butterfly a/b, add bias, then shift by "s" and pack + #define dct_bfly32o(out0, out1, a,b,bias,s) \ + { \ + __m128i abiased_l = _mm_add_epi32(a##_l, bias); \ + __m128i abiased_h = _mm_add_epi32(a##_h, bias); \ + dct_wadd(sum, abiased, b); \ + dct_wsub(dif, abiased, b); \ + out0 = _mm_packs_epi32(_mm_srai_epi32(sum_l, s), _mm_srai_epi32(sum_h, s)); \ + out1 = _mm_packs_epi32(_mm_srai_epi32(dif_l, s), _mm_srai_epi32(dif_h, s)); \ + } + + // 8-bit interleave step (for transposes) + #define dct_interleave8(a, b) \ + tmp = a; \ + a = _mm_unpacklo_epi8(a, b); \ + b = _mm_unpackhi_epi8(tmp, b) + + // 16-bit interleave step (for transposes) + #define dct_interleave16(a, b) \ + tmp = a; \ + a = _mm_unpacklo_epi16(a, b); \ + b = _mm_unpackhi_epi16(tmp, b) + + #define dct_pass(bias,shift) \ + { \ + /* even part */ \ + dct_rot(t2e,t3e, row2,row6, rot0_0,rot0_1); \ + __m128i sum04 = _mm_add_epi16(row0, row4); \ + __m128i dif04 = _mm_sub_epi16(row0, row4); \ + dct_widen(t0e, sum04); \ + dct_widen(t1e, dif04); \ + dct_wadd(x0, t0e, t3e); \ + dct_wsub(x3, t0e, t3e); \ + dct_wadd(x1, t1e, t2e); \ + dct_wsub(x2, t1e, t2e); \ + /* odd part */ \ + dct_rot(y0o,y2o, row7,row3, rot2_0,rot2_1); \ + dct_rot(y1o,y3o, row5,row1, rot3_0,rot3_1); \ + __m128i sum17 = _mm_add_epi16(row1, row7); \ + __m128i sum35 = _mm_add_epi16(row3, row5); \ + dct_rot(y4o,y5o, sum17,sum35, rot1_0,rot1_1); \ + dct_wadd(x4, y0o, y4o); \ + dct_wadd(x5, y1o, y5o); \ + dct_wadd(x6, y2o, y5o); \ + dct_wadd(x7, y3o, y4o); \ + dct_bfly32o(row0,row7, x0,x7,bias,shift); \ + dct_bfly32o(row1,row6, x1,x6,bias,shift); \ + dct_bfly32o(row2,row5, x2,x5,bias,shift); \ + dct_bfly32o(row3,row4, x3,x4,bias,shift); \ + } + + __m128i rot0_0 = dct_const(stbi__f2f(0.5411961f), stbi__f2f(0.5411961f) + stbi__f2f(-1.847759065f)); + __m128i rot0_1 = dct_const(stbi__f2f(0.5411961f) + stbi__f2f( 0.765366865f), stbi__f2f(0.5411961f)); + __m128i rot1_0 = dct_const(stbi__f2f(1.175875602f) + stbi__f2f(-0.899976223f), stbi__f2f(1.175875602f)); + __m128i rot1_1 = dct_const(stbi__f2f(1.175875602f), stbi__f2f(1.175875602f) + stbi__f2f(-2.562915447f)); + __m128i rot2_0 = dct_const(stbi__f2f(-1.961570560f) + stbi__f2f( 0.298631336f), stbi__f2f(-1.961570560f)); + __m128i rot2_1 = dct_const(stbi__f2f(-1.961570560f), stbi__f2f(-1.961570560f) + stbi__f2f( 3.072711026f)); + __m128i rot3_0 = dct_const(stbi__f2f(-0.390180644f) + stbi__f2f( 2.053119869f), stbi__f2f(-0.390180644f)); + __m128i rot3_1 = dct_const(stbi__f2f(-0.390180644f), stbi__f2f(-0.390180644f) + stbi__f2f( 1.501321110f)); + + // rounding biases in column/row passes, see stbi__idct_block for explanation. + __m128i bias_0 = _mm_set1_epi32(512); + __m128i bias_1 = _mm_set1_epi32(65536 + (128<<17)); + + // load + row0 = _mm_load_si128((const __m128i *) (data + 0*8)); + row1 = _mm_load_si128((const __m128i *) (data + 1*8)); + row2 = _mm_load_si128((const __m128i *) (data + 2*8)); + row3 = _mm_load_si128((const __m128i *) (data + 3*8)); + row4 = _mm_load_si128((const __m128i *) (data + 4*8)); + row5 = _mm_load_si128((const __m128i *) (data + 5*8)); + row6 = _mm_load_si128((const __m128i *) (data + 6*8)); + row7 = _mm_load_si128((const __m128i *) (data + 7*8)); + + // column pass + dct_pass(bias_0, 10); + + { + // 16bit 8x8 transpose pass 1 + dct_interleave16(row0, row4); + dct_interleave16(row1, row5); + dct_interleave16(row2, row6); + dct_interleave16(row3, row7); + + // transpose pass 2 + dct_interleave16(row0, row2); + dct_interleave16(row1, row3); + dct_interleave16(row4, row6); + dct_interleave16(row5, row7); + + // transpose pass 3 + dct_interleave16(row0, row1); + dct_interleave16(row2, row3); + dct_interleave16(row4, row5); + dct_interleave16(row6, row7); + } + + // row pass + dct_pass(bias_1, 17); + + { + // pack + __m128i p0 = _mm_packus_epi16(row0, row1); // a0a1a2a3...a7b0b1b2b3...b7 + __m128i p1 = _mm_packus_epi16(row2, row3); + __m128i p2 = _mm_packus_epi16(row4, row5); + __m128i p3 = _mm_packus_epi16(row6, row7); + + // 8bit 8x8 transpose pass 1 + dct_interleave8(p0, p2); // a0e0a1e1... + dct_interleave8(p1, p3); // c0g0c1g1... + + // transpose pass 2 + dct_interleave8(p0, p1); // a0c0e0g0... + dct_interleave8(p2, p3); // b0d0f0h0... + + // transpose pass 3 + dct_interleave8(p0, p2); // a0b0c0d0... + dct_interleave8(p1, p3); // a4b4c4d4... + + // store + _mm_storel_epi64((__m128i *) out, p0); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p0, 0x4e)); out += out_stride; + _mm_storel_epi64((__m128i *) out, p2); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p2, 0x4e)); out += out_stride; + _mm_storel_epi64((__m128i *) out, p1); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p1, 0x4e)); out += out_stride; + _mm_storel_epi64((__m128i *) out, p3); out += out_stride; + _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p3, 0x4e)); + } + +#undef dct_const +#undef dct_rot +#undef dct_widen +#undef dct_wadd +#undef dct_wsub +#undef dct_bfly32o +#undef dct_interleave8 +#undef dct_interleave16 +#undef dct_pass +} + +#endif // STBI_SSE2 + +#ifdef STBI_NEON + +// NEON integer IDCT. should produce bit-identical +// results to the generic C version. +static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64]) +{ + int16x8_t row0, row1, row2, row3, row4, row5, row6, row7; + + int16x4_t rot0_0 = vdup_n_s16(stbi__f2f(0.5411961f)); + int16x4_t rot0_1 = vdup_n_s16(stbi__f2f(-1.847759065f)); + int16x4_t rot0_2 = vdup_n_s16(stbi__f2f( 0.765366865f)); + int16x4_t rot1_0 = vdup_n_s16(stbi__f2f( 1.175875602f)); + int16x4_t rot1_1 = vdup_n_s16(stbi__f2f(-0.899976223f)); + int16x4_t rot1_2 = vdup_n_s16(stbi__f2f(-2.562915447f)); + int16x4_t rot2_0 = vdup_n_s16(stbi__f2f(-1.961570560f)); + int16x4_t rot2_1 = vdup_n_s16(stbi__f2f(-0.390180644f)); + int16x4_t rot3_0 = vdup_n_s16(stbi__f2f( 0.298631336f)); + int16x4_t rot3_1 = vdup_n_s16(stbi__f2f( 2.053119869f)); + int16x4_t rot3_2 = vdup_n_s16(stbi__f2f( 3.072711026f)); + int16x4_t rot3_3 = vdup_n_s16(stbi__f2f( 1.501321110f)); + +#define dct_long_mul(out, inq, coeff) \ + int32x4_t out##_l = vmull_s16(vget_low_s16(inq), coeff); \ + int32x4_t out##_h = vmull_s16(vget_high_s16(inq), coeff) + +#define dct_long_mac(out, acc, inq, coeff) \ + int32x4_t out##_l = vmlal_s16(acc##_l, vget_low_s16(inq), coeff); \ + int32x4_t out##_h = vmlal_s16(acc##_h, vget_high_s16(inq), coeff) + +#define dct_widen(out, inq) \ + int32x4_t out##_l = vshll_n_s16(vget_low_s16(inq), 12); \ + int32x4_t out##_h = vshll_n_s16(vget_high_s16(inq), 12) + +// wide add +#define dct_wadd(out, a, b) \ + int32x4_t out##_l = vaddq_s32(a##_l, b##_l); \ + int32x4_t out##_h = vaddq_s32(a##_h, b##_h) + +// wide sub +#define dct_wsub(out, a, b) \ + int32x4_t out##_l = vsubq_s32(a##_l, b##_l); \ + int32x4_t out##_h = vsubq_s32(a##_h, b##_h) + +// butterfly a/b, then shift using "shiftop" by "s" and pack +#define dct_bfly32o(out0,out1, a,b,shiftop,s) \ + { \ + dct_wadd(sum, a, b); \ + dct_wsub(dif, a, b); \ + out0 = vcombine_s16(shiftop(sum_l, s), shiftop(sum_h, s)); \ + out1 = vcombine_s16(shiftop(dif_l, s), shiftop(dif_h, s)); \ + } + +#define dct_pass(shiftop, shift) \ + { \ + /* even part */ \ + int16x8_t sum26 = vaddq_s16(row2, row6); \ + dct_long_mul(p1e, sum26, rot0_0); \ + dct_long_mac(t2e, p1e, row6, rot0_1); \ + dct_long_mac(t3e, p1e, row2, rot0_2); \ + int16x8_t sum04 = vaddq_s16(row0, row4); \ + int16x8_t dif04 = vsubq_s16(row0, row4); \ + dct_widen(t0e, sum04); \ + dct_widen(t1e, dif04); \ + dct_wadd(x0, t0e, t3e); \ + dct_wsub(x3, t0e, t3e); \ + dct_wadd(x1, t1e, t2e); \ + dct_wsub(x2, t1e, t2e); \ + /* odd part */ \ + int16x8_t sum15 = vaddq_s16(row1, row5); \ + int16x8_t sum17 = vaddq_s16(row1, row7); \ + int16x8_t sum35 = vaddq_s16(row3, row5); \ + int16x8_t sum37 = vaddq_s16(row3, row7); \ + int16x8_t sumodd = vaddq_s16(sum17, sum35); \ + dct_long_mul(p5o, sumodd, rot1_0); \ + dct_long_mac(p1o, p5o, sum17, rot1_1); \ + dct_long_mac(p2o, p5o, sum35, rot1_2); \ + dct_long_mul(p3o, sum37, rot2_0); \ + dct_long_mul(p4o, sum15, rot2_1); \ + dct_wadd(sump13o, p1o, p3o); \ + dct_wadd(sump24o, p2o, p4o); \ + dct_wadd(sump23o, p2o, p3o); \ + dct_wadd(sump14o, p1o, p4o); \ + dct_long_mac(x4, sump13o, row7, rot3_0); \ + dct_long_mac(x5, sump24o, row5, rot3_1); \ + dct_long_mac(x6, sump23o, row3, rot3_2); \ + dct_long_mac(x7, sump14o, row1, rot3_3); \ + dct_bfly32o(row0,row7, x0,x7,shiftop,shift); \ + dct_bfly32o(row1,row6, x1,x6,shiftop,shift); \ + dct_bfly32o(row2,row5, x2,x5,shiftop,shift); \ + dct_bfly32o(row3,row4, x3,x4,shiftop,shift); \ + } + + // load + row0 = vld1q_s16(data + 0*8); + row1 = vld1q_s16(data + 1*8); + row2 = vld1q_s16(data + 2*8); + row3 = vld1q_s16(data + 3*8); + row4 = vld1q_s16(data + 4*8); + row5 = vld1q_s16(data + 5*8); + row6 = vld1q_s16(data + 6*8); + row7 = vld1q_s16(data + 7*8); + + // add DC bias + row0 = vaddq_s16(row0, vsetq_lane_s16(1024, vdupq_n_s16(0), 0)); + + // column pass + dct_pass(vrshrn_n_s32, 10); + + // 16bit 8x8 transpose + { +// these three map to a single VTRN.16, VTRN.32, and VSWP, respectively. +// whether compilers actually get this is another story, sadly. +#define dct_trn16(x, y) { int16x8x2_t t = vtrnq_s16(x, y); x = t.val[0]; y = t.val[1]; } +#define dct_trn32(x, y) { int32x4x2_t t = vtrnq_s32(vreinterpretq_s32_s16(x), vreinterpretq_s32_s16(y)); x = vreinterpretq_s16_s32(t.val[0]); y = vreinterpretq_s16_s32(t.val[1]); } +#define dct_trn64(x, y) { int16x8_t x0 = x; int16x8_t y0 = y; x = vcombine_s16(vget_low_s16(x0), vget_low_s16(y0)); y = vcombine_s16(vget_high_s16(x0), vget_high_s16(y0)); } + + // pass 1 + dct_trn16(row0, row1); // a0b0a2b2a4b4a6b6 + dct_trn16(row2, row3); + dct_trn16(row4, row5); + dct_trn16(row6, row7); + + // pass 2 + dct_trn32(row0, row2); // a0b0c0d0a4b4c4d4 + dct_trn32(row1, row3); + dct_trn32(row4, row6); + dct_trn32(row5, row7); + + // pass 3 + dct_trn64(row0, row4); // a0b0c0d0e0f0g0h0 + dct_trn64(row1, row5); + dct_trn64(row2, row6); + dct_trn64(row3, row7); + +#undef dct_trn16 +#undef dct_trn32 +#undef dct_trn64 + } + + // row pass + // vrshrn_n_s32 only supports shifts up to 16, we need + // 17. so do a non-rounding shift of 16 first then follow + // up with a rounding shift by 1. + dct_pass(vshrn_n_s32, 16); + + { + // pack and round + uint8x8_t p0 = vqrshrun_n_s16(row0, 1); + uint8x8_t p1 = vqrshrun_n_s16(row1, 1); + uint8x8_t p2 = vqrshrun_n_s16(row2, 1); + uint8x8_t p3 = vqrshrun_n_s16(row3, 1); + uint8x8_t p4 = vqrshrun_n_s16(row4, 1); + uint8x8_t p5 = vqrshrun_n_s16(row5, 1); + uint8x8_t p6 = vqrshrun_n_s16(row6, 1); + uint8x8_t p7 = vqrshrun_n_s16(row7, 1); + + // again, these can translate into one instruction, but often don't. +#define dct_trn8_8(x, y) { uint8x8x2_t t = vtrn_u8(x, y); x = t.val[0]; y = t.val[1]; } +#define dct_trn8_16(x, y) { uint16x4x2_t t = vtrn_u16(vreinterpret_u16_u8(x), vreinterpret_u16_u8(y)); x = vreinterpret_u8_u16(t.val[0]); y = vreinterpret_u8_u16(t.val[1]); } +#define dct_trn8_32(x, y) { uint32x2x2_t t = vtrn_u32(vreinterpret_u32_u8(x), vreinterpret_u32_u8(y)); x = vreinterpret_u8_u32(t.val[0]); y = vreinterpret_u8_u32(t.val[1]); } + + // sadly can't use interleaved stores here since we only write + // 8 bytes to each scan line! + + // 8x8 8-bit transpose pass 1 + dct_trn8_8(p0, p1); + dct_trn8_8(p2, p3); + dct_trn8_8(p4, p5); + dct_trn8_8(p6, p7); + + // pass 2 + dct_trn8_16(p0, p2); + dct_trn8_16(p1, p3); + dct_trn8_16(p4, p6); + dct_trn8_16(p5, p7); + + // pass 3 + dct_trn8_32(p0, p4); + dct_trn8_32(p1, p5); + dct_trn8_32(p2, p6); + dct_trn8_32(p3, p7); + + // store + vst1_u8(out, p0); out += out_stride; + vst1_u8(out, p1); out += out_stride; + vst1_u8(out, p2); out += out_stride; + vst1_u8(out, p3); out += out_stride; + vst1_u8(out, p4); out += out_stride; + vst1_u8(out, p5); out += out_stride; + vst1_u8(out, p6); out += out_stride; + vst1_u8(out, p7); + +#undef dct_trn8_8 +#undef dct_trn8_16 +#undef dct_trn8_32 + } + +#undef dct_long_mul +#undef dct_long_mac +#undef dct_widen +#undef dct_wadd +#undef dct_wsub +#undef dct_bfly32o +#undef dct_pass +} + +#endif // STBI_NEON + +#define STBI__MARKER_none 0xff +// if there's a pending marker from the entropy stream, return that +// otherwise, fetch from the stream and get a marker. if there's no +// marker, return 0xff, which is never a valid marker value +static stbi_uc stbi__get_marker(stbi__jpeg *j) +{ + stbi_uc x; + if (j->marker != STBI__MARKER_none) { x = j->marker; j->marker = STBI__MARKER_none; return x; } + x = stbi__get8(j->s); + if (x != 0xff) return STBI__MARKER_none; + while (x == 0xff) + x = stbi__get8(j->s); // consume repeated 0xff fill bytes + return x; +} + +// in each scan, we'll have scan_n components, and the order +// of the components is specified by order[] +#define STBI__RESTART(x) ((x) >= 0xd0 && (x) <= 0xd7) + +// after a restart interval, stbi__jpeg_reset the entropy decoder and +// the dc prediction +static void stbi__jpeg_reset(stbi__jpeg *j) +{ + j->code_bits = 0; + j->code_buffer = 0; + j->nomore = 0; + j->img_comp[0].dc_pred = j->img_comp[1].dc_pred = j->img_comp[2].dc_pred = j->img_comp[3].dc_pred = 0; + j->marker = STBI__MARKER_none; + j->todo = j->restart_interval ? j->restart_interval : 0x7fffffff; + j->eob_run = 0; + // no more than 1<<31 MCUs if no restart_interal? that's plenty safe, + // since we don't even allow 1<<30 pixels +} + +static int stbi__parse_entropy_coded_data(stbi__jpeg *z) +{ + stbi__jpeg_reset(z); + if (!z->progressive) { + if (z->scan_n == 1) { + int i,j; + STBI_SIMD_ALIGN(short, data[64]); + int n = z->order[0]; + // non-interleaved data, we just need to process one block at a time, + // in trivial scanline order + // number of blocks to do just depends on how many actual "pixels" this + // component has, independent of interleaved MCU blocking and such + int w = (z->img_comp[n].x+7) >> 3; + int h = (z->img_comp[n].y+7) >> 3; + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) { + int ha = z->img_comp[n].ha; + if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0; + z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data); + // every data block is an MCU, so countdown the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + // if it's NOT a restart, then just bail, so we get corrupt data + // rather than no data + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } else { // interleaved + int i,j,k,x,y; + STBI_SIMD_ALIGN(short, data[64]); + for (j=0; j < z->img_mcu_y; ++j) { + for (i=0; i < z->img_mcu_x; ++i) { + // scan an interleaved mcu... process scan_n components in order + for (k=0; k < z->scan_n; ++k) { + int n = z->order[k]; + // scan out an mcu's worth of this component; that's just determined + // by the basic H and V specified for the component + for (y=0; y < z->img_comp[n].v; ++y) { + for (x=0; x < z->img_comp[n].h; ++x) { + int x2 = (i*z->img_comp[n].h + x)*8; + int y2 = (j*z->img_comp[n].v + y)*8; + int ha = z->img_comp[n].ha; + if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0; + z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*y2+x2, z->img_comp[n].w2, data); + } + } + } + // after all interleaved components, that's an interleaved MCU, + // so now count down the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } + } else { + if (z->scan_n == 1) { + int i,j; + int n = z->order[0]; + // non-interleaved data, we just need to process one block at a time, + // in trivial scanline order + // number of blocks to do just depends on how many actual "pixels" this + // component has, independent of interleaved MCU blocking and such + int w = (z->img_comp[n].x+7) >> 3; + int h = (z->img_comp[n].y+7) >> 3; + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) { + short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w); + if (z->spec_start == 0) { + if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n)) + return 0; + } else { + int ha = z->img_comp[n].ha; + if (!stbi__jpeg_decode_block_prog_ac(z, data, &z->huff_ac[ha], z->fast_ac[ha])) + return 0; + } + // every data block is an MCU, so countdown the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } else { // interleaved + int i,j,k,x,y; + for (j=0; j < z->img_mcu_y; ++j) { + for (i=0; i < z->img_mcu_x; ++i) { + // scan an interleaved mcu... process scan_n components in order + for (k=0; k < z->scan_n; ++k) { + int n = z->order[k]; + // scan out an mcu's worth of this component; that's just determined + // by the basic H and V specified for the component + for (y=0; y < z->img_comp[n].v; ++y) { + for (x=0; x < z->img_comp[n].h; ++x) { + int x2 = (i*z->img_comp[n].h + x); + int y2 = (j*z->img_comp[n].v + y); + short *data = z->img_comp[n].coeff + 64 * (x2 + y2 * z->img_comp[n].coeff_w); + if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n)) + return 0; + } + } + } + // after all interleaved components, that's an interleaved MCU, + // so now count down the restart interval + if (--z->todo <= 0) { + if (z->code_bits < 24) stbi__grow_buffer_unsafe(z); + if (!STBI__RESTART(z->marker)) return 1; + stbi__jpeg_reset(z); + } + } + } + return 1; + } + } +} + +static void stbi__jpeg_dequantize(short *data, stbi__uint16 *dequant) +{ + int i; + for (i=0; i < 64; ++i) + data[i] *= dequant[i]; +} + +static void stbi__jpeg_finish(stbi__jpeg *z) +{ + if (z->progressive) { + // dequantize and idct the data + int i,j,n; + for (n=0; n < z->s->img_n; ++n) { + int w = (z->img_comp[n].x+7) >> 3; + int h = (z->img_comp[n].y+7) >> 3; + for (j=0; j < h; ++j) { + for (i=0; i < w; ++i) { + short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w); + stbi__jpeg_dequantize(data, z->dequant[z->img_comp[n].tq]); + z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data); + } + } + } + } +} + +static int stbi__process_marker(stbi__jpeg *z, int m) +{ + int L; + switch (m) { + case STBI__MARKER_none: // no marker found + return stbi__err("expected marker","Corrupt JPEG"); + + case 0xDD: // DRI - specify restart interval + if (stbi__get16be(z->s) != 4) return stbi__err("bad DRI len","Corrupt JPEG"); + z->restart_interval = stbi__get16be(z->s); + return 1; + + case 0xDB: // DQT - define quantization table + L = stbi__get16be(z->s)-2; + while (L > 0) { + int q = stbi__get8(z->s); + int p = q >> 4, sixteen = (p != 0); + int t = q & 15,i; + if (p != 0 && p != 1) return stbi__err("bad DQT type","Corrupt JPEG"); + if (t > 3) return stbi__err("bad DQT table","Corrupt JPEG"); + + for (i=0; i < 64; ++i) + z->dequant[t][stbi__jpeg_dezigzag[i]] = (stbi__uint16)(sixteen ? stbi__get16be(z->s) : stbi__get8(z->s)); + L -= (sixteen ? 129 : 65); + } + return L==0; + + case 0xC4: // DHT - define huffman table + L = stbi__get16be(z->s)-2; + while (L > 0) { + stbi_uc *v; + int sizes[16],i,n=0; + int q = stbi__get8(z->s); + int tc = q >> 4; + int th = q & 15; + if (tc > 1 || th > 3) return stbi__err("bad DHT header","Corrupt JPEG"); + for (i=0; i < 16; ++i) { + sizes[i] = stbi__get8(z->s); + n += sizes[i]; + } + if(n > 256) return stbi__err("bad DHT header","Corrupt JPEG"); // Loop over i < n would write past end of values! + L -= 17; + if (tc == 0) { + if (!stbi__build_huffman(z->huff_dc+th, sizes)) return 0; + v = z->huff_dc[th].values; + } else { + if (!stbi__build_huffman(z->huff_ac+th, sizes)) return 0; + v = z->huff_ac[th].values; + } + for (i=0; i < n; ++i) + v[i] = stbi__get8(z->s); + if (tc != 0) + stbi__build_fast_ac(z->fast_ac[th], z->huff_ac + th); + L -= n; + } + return L==0; + } + + // check for comment block or APP blocks + if ((m >= 0xE0 && m <= 0xEF) || m == 0xFE) { + L = stbi__get16be(z->s); + if (L < 2) { + if (m == 0xFE) + return stbi__err("bad COM len","Corrupt JPEG"); + else + return stbi__err("bad APP len","Corrupt JPEG"); + } + L -= 2; + + if (m == 0xE0 && L >= 5) { // JFIF APP0 segment + static const unsigned char tag[5] = {'J','F','I','F','\0'}; + int ok = 1; + int i; + for (i=0; i < 5; ++i) + if (stbi__get8(z->s) != tag[i]) + ok = 0; + L -= 5; + if (ok) + z->jfif = 1; + } else if (m == 0xEE && L >= 12) { // Adobe APP14 segment + static const unsigned char tag[6] = {'A','d','o','b','e','\0'}; + int ok = 1; + int i; + for (i=0; i < 6; ++i) + if (stbi__get8(z->s) != tag[i]) + ok = 0; + L -= 6; + if (ok) { + stbi__get8(z->s); // version + stbi__get16be(z->s); // flags0 + stbi__get16be(z->s); // flags1 + z->app14_color_transform = stbi__get8(z->s); // color transform + L -= 6; + } + } + + stbi__skip(z->s, L); + return 1; + } + + return stbi__err("unknown marker","Corrupt JPEG"); +} + +// after we see SOS +static int stbi__process_scan_header(stbi__jpeg *z) +{ + int i; + int Ls = stbi__get16be(z->s); + z->scan_n = stbi__get8(z->s); + if (z->scan_n < 1 || z->scan_n > 4 || z->scan_n > (int) z->s->img_n) return stbi__err("bad SOS component count","Corrupt JPEG"); + if (Ls != 6+2*z->scan_n) return stbi__err("bad SOS len","Corrupt JPEG"); + for (i=0; i < z->scan_n; ++i) { + int id = stbi__get8(z->s), which; + int q = stbi__get8(z->s); + for (which = 0; which < z->s->img_n; ++which) + if (z->img_comp[which].id == id) + break; + if (which == z->s->img_n) return 0; // no match + z->img_comp[which].hd = q >> 4; if (z->img_comp[which].hd > 3) return stbi__err("bad DC huff","Corrupt JPEG"); + z->img_comp[which].ha = q & 15; if (z->img_comp[which].ha > 3) return stbi__err("bad AC huff","Corrupt JPEG"); + z->order[i] = which; + } + + { + int aa; + z->spec_start = stbi__get8(z->s); + z->spec_end = stbi__get8(z->s); // should be 63, but might be 0 + aa = stbi__get8(z->s); + z->succ_high = (aa >> 4); + z->succ_low = (aa & 15); + if (z->progressive) { + if (z->spec_start > 63 || z->spec_end > 63 || z->spec_start > z->spec_end || z->succ_high > 13 || z->succ_low > 13) + return stbi__err("bad SOS", "Corrupt JPEG"); + } else { + if (z->spec_start != 0) return stbi__err("bad SOS","Corrupt JPEG"); + if (z->succ_high != 0 || z->succ_low != 0) return stbi__err("bad SOS","Corrupt JPEG"); + z->spec_end = 63; + } + } + + return 1; +} + +static int stbi__free_jpeg_components(stbi__jpeg *z, int ncomp, int why) +{ + int i; + for (i=0; i < ncomp; ++i) { + if (z->img_comp[i].raw_data) { + STBI_FREE(z->img_comp[i].raw_data); + z->img_comp[i].raw_data = NULL; + z->img_comp[i].data = NULL; + } + if (z->img_comp[i].raw_coeff) { + STBI_FREE(z->img_comp[i].raw_coeff); + z->img_comp[i].raw_coeff = 0; + z->img_comp[i].coeff = 0; + } + if (z->img_comp[i].linebuf) { + STBI_FREE(z->img_comp[i].linebuf); + z->img_comp[i].linebuf = NULL; + } + } + return why; +} + +static int stbi__process_frame_header(stbi__jpeg *z, int scan) +{ + stbi__context *s = z->s; + int Lf,p,i,q, h_max=1,v_max=1,c; + Lf = stbi__get16be(s); if (Lf < 11) return stbi__err("bad SOF len","Corrupt JPEG"); // JPEG + p = stbi__get8(s); if (p != 8) return stbi__err("only 8-bit","JPEG format not supported: 8-bit only"); // JPEG baseline + s->img_y = stbi__get16be(s); if (s->img_y == 0) return stbi__err("no header height", "JPEG format not supported: delayed height"); // Legal, but we don't handle it--but neither does IJG + s->img_x = stbi__get16be(s); if (s->img_x == 0) return stbi__err("0 width","Corrupt JPEG"); // JPEG requires + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + c = stbi__get8(s); + if (c != 3 && c != 1 && c != 4) return stbi__err("bad component count","Corrupt JPEG"); + s->img_n = c; + for (i=0; i < c; ++i) { + z->img_comp[i].data = NULL; + z->img_comp[i].linebuf = NULL; + } + + if (Lf != 8+3*s->img_n) return stbi__err("bad SOF len","Corrupt JPEG"); + + z->rgb = 0; + for (i=0; i < s->img_n; ++i) { + static const unsigned char rgb[3] = { 'R', 'G', 'B' }; + z->img_comp[i].id = stbi__get8(s); + if (s->img_n == 3 && z->img_comp[i].id == rgb[i]) + ++z->rgb; + q = stbi__get8(s); + z->img_comp[i].h = (q >> 4); if (!z->img_comp[i].h || z->img_comp[i].h > 4) return stbi__err("bad H","Corrupt JPEG"); + z->img_comp[i].v = q & 15; if (!z->img_comp[i].v || z->img_comp[i].v > 4) return stbi__err("bad V","Corrupt JPEG"); + z->img_comp[i].tq = stbi__get8(s); if (z->img_comp[i].tq > 3) return stbi__err("bad TQ","Corrupt JPEG"); + } + + if (scan != STBI__SCAN_load) return 1; + + if (!stbi__mad3sizes_valid(s->img_x, s->img_y, s->img_n, 0)) return stbi__err("too large", "Image too large to decode"); + + for (i=0; i < s->img_n; ++i) { + if (z->img_comp[i].h > h_max) h_max = z->img_comp[i].h; + if (z->img_comp[i].v > v_max) v_max = z->img_comp[i].v; + } + + // check that plane subsampling factors are integer ratios; our resamplers can't deal with fractional ratios + // and I've never seen a non-corrupted JPEG file actually use them + for (i=0; i < s->img_n; ++i) { + if (h_max % z->img_comp[i].h != 0) return stbi__err("bad H","Corrupt JPEG"); + if (v_max % z->img_comp[i].v != 0) return stbi__err("bad V","Corrupt JPEG"); + } + + // compute interleaved mcu info + z->img_h_max = h_max; + z->img_v_max = v_max; + z->img_mcu_w = h_max * 8; + z->img_mcu_h = v_max * 8; + // these sizes can't be more than 17 bits + z->img_mcu_x = (s->img_x + z->img_mcu_w-1) / z->img_mcu_w; + z->img_mcu_y = (s->img_y + z->img_mcu_h-1) / z->img_mcu_h; + + for (i=0; i < s->img_n; ++i) { + // number of effective pixels (e.g. for non-interleaved MCU) + z->img_comp[i].x = (s->img_x * z->img_comp[i].h + h_max-1) / h_max; + z->img_comp[i].y = (s->img_y * z->img_comp[i].v + v_max-1) / v_max; + // to simplify generation, we'll allocate enough memory to decode + // the bogus oversized data from using interleaved MCUs and their + // big blocks (e.g. a 16x16 iMCU on an image of width 33); we won't + // discard the extra data until colorspace conversion + // + // img_mcu_x, img_mcu_y: <=17 bits; comp[i].h and .v are <=4 (checked earlier) + // so these muls can't overflow with 32-bit ints (which we require) + z->img_comp[i].w2 = z->img_mcu_x * z->img_comp[i].h * 8; + z->img_comp[i].h2 = z->img_mcu_y * z->img_comp[i].v * 8; + z->img_comp[i].coeff = 0; + z->img_comp[i].raw_coeff = 0; + z->img_comp[i].linebuf = NULL; + z->img_comp[i].raw_data = stbi__malloc_mad2(z->img_comp[i].w2, z->img_comp[i].h2, 15); + if (z->img_comp[i].raw_data == NULL) + return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory")); + // align blocks for idct using mmx/sse + z->img_comp[i].data = (stbi_uc*) (((size_t) z->img_comp[i].raw_data + 15) & ~15); + if (z->progressive) { + // w2, h2 are multiples of 8 (see above) + z->img_comp[i].coeff_w = z->img_comp[i].w2 / 8; + z->img_comp[i].coeff_h = z->img_comp[i].h2 / 8; + z->img_comp[i].raw_coeff = stbi__malloc_mad3(z->img_comp[i].w2, z->img_comp[i].h2, sizeof(short), 15); + if (z->img_comp[i].raw_coeff == NULL) + return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory")); + z->img_comp[i].coeff = (short*) (((size_t) z->img_comp[i].raw_coeff + 15) & ~15); + } + } + + return 1; +} + +// use comparisons since in some cases we handle more than one case (e.g. SOF) +#define stbi__DNL(x) ((x) == 0xdc) +#define stbi__SOI(x) ((x) == 0xd8) +#define stbi__EOI(x) ((x) == 0xd9) +#define stbi__SOF(x) ((x) == 0xc0 || (x) == 0xc1 || (x) == 0xc2) +#define stbi__SOS(x) ((x) == 0xda) + +#define stbi__SOF_progressive(x) ((x) == 0xc2) + +static int stbi__decode_jpeg_header(stbi__jpeg *z, int scan) +{ + int m; + z->jfif = 0; + z->app14_color_transform = -1; // valid values are 0,1,2 + z->marker = STBI__MARKER_none; // initialize cached marker to empty + m = stbi__get_marker(z); + if (!stbi__SOI(m)) return stbi__err("no SOI","Corrupt JPEG"); + if (scan == STBI__SCAN_type) return 1; + m = stbi__get_marker(z); + while (!stbi__SOF(m)) { + if (!stbi__process_marker(z,m)) return 0; + m = stbi__get_marker(z); + while (m == STBI__MARKER_none) { + // some files have extra padding after their blocks, so ok, we'll scan + if (stbi__at_eof(z->s)) return stbi__err("no SOF", "Corrupt JPEG"); + m = stbi__get_marker(z); + } + } + z->progressive = stbi__SOF_progressive(m); + if (!stbi__process_frame_header(z, scan)) return 0; + return 1; +} + +static stbi_uc stbi__skip_jpeg_junk_at_end(stbi__jpeg *j) +{ + // some JPEGs have junk at end, skip over it but if we find what looks + // like a valid marker, resume there + while (!stbi__at_eof(j->s)) { + stbi_uc x = stbi__get8(j->s); + while (x == 0xff) { // might be a marker + if (stbi__at_eof(j->s)) return STBI__MARKER_none; + x = stbi__get8(j->s); + if (x != 0x00 && x != 0xff) { + // not a stuffed zero or lead-in to another marker, looks + // like an actual marker, return it + return x; + } + // stuffed zero has x=0 now which ends the loop, meaning we go + // back to regular scan loop. + // repeated 0xff keeps trying to read the next byte of the marker. + } + } + return STBI__MARKER_none; +} + +// decode image to YCbCr format +static int stbi__decode_jpeg_image(stbi__jpeg *j) +{ + int m; + for (m = 0; m < 4; m++) { + j->img_comp[m].raw_data = NULL; + j->img_comp[m].raw_coeff = NULL; + } + j->restart_interval = 0; + if (!stbi__decode_jpeg_header(j, STBI__SCAN_load)) return 0; + m = stbi__get_marker(j); + while (!stbi__EOI(m)) { + if (stbi__SOS(m)) { + if (!stbi__process_scan_header(j)) return 0; + if (!stbi__parse_entropy_coded_data(j)) return 0; + if (j->marker == STBI__MARKER_none ) { + j->marker = stbi__skip_jpeg_junk_at_end(j); + // if we reach eof without hitting a marker, stbi__get_marker() below will fail and we'll eventually return 0 + } + m = stbi__get_marker(j); + if (STBI__RESTART(m)) + m = stbi__get_marker(j); + } else if (stbi__DNL(m)) { + int Ld = stbi__get16be(j->s); + stbi__uint32 NL = stbi__get16be(j->s); + if (Ld != 4) return stbi__err("bad DNL len", "Corrupt JPEG"); + if (NL != j->s->img_y) return stbi__err("bad DNL height", "Corrupt JPEG"); + m = stbi__get_marker(j); + } else { + if (!stbi__process_marker(j, m)) return 1; + m = stbi__get_marker(j); + } + } + if (j->progressive) + stbi__jpeg_finish(j); + return 1; +} + +// static jfif-centered resampling (across block boundaries) + +typedef stbi_uc *(*resample_row_func)(stbi_uc *out, stbi_uc *in0, stbi_uc *in1, + int w, int hs); + +#define stbi__div4(x) ((stbi_uc) ((x) >> 2)) + +static stbi_uc *resample_row_1(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + STBI_NOTUSED(out); + STBI_NOTUSED(in_far); + STBI_NOTUSED(w); + STBI_NOTUSED(hs); + return in_near; +} + +static stbi_uc* stbi__resample_row_v_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate two samples vertically for every one in input + int i; + STBI_NOTUSED(hs); + for (i=0; i < w; ++i) + out[i] = stbi__div4(3*in_near[i] + in_far[i] + 2); + return out; +} + +static stbi_uc* stbi__resample_row_h_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate two samples horizontally for every one in input + int i; + stbi_uc *input = in_near; + + if (w == 1) { + // if only one sample, can't do any interpolation + out[0] = out[1] = input[0]; + return out; + } + + out[0] = input[0]; + out[1] = stbi__div4(input[0]*3 + input[1] + 2); + for (i=1; i < w-1; ++i) { + int n = 3*input[i]+2; + out[i*2+0] = stbi__div4(n+input[i-1]); + out[i*2+1] = stbi__div4(n+input[i+1]); + } + out[i*2+0] = stbi__div4(input[w-2]*3 + input[w-1] + 2); + out[i*2+1] = input[w-1]; + + STBI_NOTUSED(in_far); + STBI_NOTUSED(hs); + + return out; +} + +#define stbi__div16(x) ((stbi_uc) ((x) >> 4)) + +static stbi_uc *stbi__resample_row_hv_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate 2x2 samples for every one in input + int i,t0,t1; + if (w == 1) { + out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2); + return out; + } + + t1 = 3*in_near[0] + in_far[0]; + out[0] = stbi__div4(t1+2); + for (i=1; i < w; ++i) { + t0 = t1; + t1 = 3*in_near[i]+in_far[i]; + out[i*2-1] = stbi__div16(3*t0 + t1 + 8); + out[i*2 ] = stbi__div16(3*t1 + t0 + 8); + } + out[w*2-1] = stbi__div4(t1+2); + + STBI_NOTUSED(hs); + + return out; +} + +#if defined(STBI_SSE2) || defined(STBI_NEON) +static stbi_uc *stbi__resample_row_hv_2_simd(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // need to generate 2x2 samples for every one in input + int i=0,t0,t1; + + if (w == 1) { + out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2); + return out; + } + + t1 = 3*in_near[0] + in_far[0]; + // process groups of 8 pixels for as long as we can. + // note we can't handle the last pixel in a row in this loop + // because we need to handle the filter boundary conditions. + for (; i < ((w-1) & ~7); i += 8) { +#if defined(STBI_SSE2) + // load and perform the vertical filtering pass + // this uses 3*x + y = 4*x + (y - x) + __m128i zero = _mm_setzero_si128(); + __m128i farb = _mm_loadl_epi64((__m128i *) (in_far + i)); + __m128i nearb = _mm_loadl_epi64((__m128i *) (in_near + i)); + __m128i farw = _mm_unpacklo_epi8(farb, zero); + __m128i nearw = _mm_unpacklo_epi8(nearb, zero); + __m128i diff = _mm_sub_epi16(farw, nearw); + __m128i nears = _mm_slli_epi16(nearw, 2); + __m128i curr = _mm_add_epi16(nears, diff); // current row + + // horizontal filter works the same based on shifted vers of current + // row. "prev" is current row shifted right by 1 pixel; we need to + // insert the previous pixel value (from t1). + // "next" is current row shifted left by 1 pixel, with first pixel + // of next block of 8 pixels added in. + __m128i prv0 = _mm_slli_si128(curr, 2); + __m128i nxt0 = _mm_srli_si128(curr, 2); + __m128i prev = _mm_insert_epi16(prv0, t1, 0); + __m128i next = _mm_insert_epi16(nxt0, 3*in_near[i+8] + in_far[i+8], 7); + + // horizontal filter, polyphase implementation since it's convenient: + // even pixels = 3*cur + prev = cur*4 + (prev - cur) + // odd pixels = 3*cur + next = cur*4 + (next - cur) + // note the shared term. + __m128i bias = _mm_set1_epi16(8); + __m128i curs = _mm_slli_epi16(curr, 2); + __m128i prvd = _mm_sub_epi16(prev, curr); + __m128i nxtd = _mm_sub_epi16(next, curr); + __m128i curb = _mm_add_epi16(curs, bias); + __m128i even = _mm_add_epi16(prvd, curb); + __m128i odd = _mm_add_epi16(nxtd, curb); + + // interleave even and odd pixels, then undo scaling. + __m128i int0 = _mm_unpacklo_epi16(even, odd); + __m128i int1 = _mm_unpackhi_epi16(even, odd); + __m128i de0 = _mm_srli_epi16(int0, 4); + __m128i de1 = _mm_srli_epi16(int1, 4); + + // pack and write output + __m128i outv = _mm_packus_epi16(de0, de1); + _mm_storeu_si128((__m128i *) (out + i*2), outv); +#elif defined(STBI_NEON) + // load and perform the vertical filtering pass + // this uses 3*x + y = 4*x + (y - x) + uint8x8_t farb = vld1_u8(in_far + i); + uint8x8_t nearb = vld1_u8(in_near + i); + int16x8_t diff = vreinterpretq_s16_u16(vsubl_u8(farb, nearb)); + int16x8_t nears = vreinterpretq_s16_u16(vshll_n_u8(nearb, 2)); + int16x8_t curr = vaddq_s16(nears, diff); // current row + + // horizontal filter works the same based on shifted vers of current + // row. "prev" is current row shifted right by 1 pixel; we need to + // insert the previous pixel value (from t1). + // "next" is current row shifted left by 1 pixel, with first pixel + // of next block of 8 pixels added in. + int16x8_t prv0 = vextq_s16(curr, curr, 7); + int16x8_t nxt0 = vextq_s16(curr, curr, 1); + int16x8_t prev = vsetq_lane_s16(t1, prv0, 0); + int16x8_t next = vsetq_lane_s16(3*in_near[i+8] + in_far[i+8], nxt0, 7); + + // horizontal filter, polyphase implementation since it's convenient: + // even pixels = 3*cur + prev = cur*4 + (prev - cur) + // odd pixels = 3*cur + next = cur*4 + (next - cur) + // note the shared term. + int16x8_t curs = vshlq_n_s16(curr, 2); + int16x8_t prvd = vsubq_s16(prev, curr); + int16x8_t nxtd = vsubq_s16(next, curr); + int16x8_t even = vaddq_s16(curs, prvd); + int16x8_t odd = vaddq_s16(curs, nxtd); + + // undo scaling and round, then store with even/odd phases interleaved + uint8x8x2_t o; + o.val[0] = vqrshrun_n_s16(even, 4); + o.val[1] = vqrshrun_n_s16(odd, 4); + vst2_u8(out + i*2, o); +#endif + + // "previous" value for next iter + t1 = 3*in_near[i+7] + in_far[i+7]; + } + + t0 = t1; + t1 = 3*in_near[i] + in_far[i]; + out[i*2] = stbi__div16(3*t1 + t0 + 8); + + for (++i; i < w; ++i) { + t0 = t1; + t1 = 3*in_near[i]+in_far[i]; + out[i*2-1] = stbi__div16(3*t0 + t1 + 8); + out[i*2 ] = stbi__div16(3*t1 + t0 + 8); + } + out[w*2-1] = stbi__div4(t1+2); + + STBI_NOTUSED(hs); + + return out; +} +#endif + +static stbi_uc *stbi__resample_row_generic(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs) +{ + // resample with nearest-neighbor + int i,j; + STBI_NOTUSED(in_far); + for (i=0; i < w; ++i) + for (j=0; j < hs; ++j) + out[i*hs+j] = in_near[i]; + return out; +} + +// this is a reduced-precision calculation of YCbCr-to-RGB introduced +// to make sure the code produces the same results in both SIMD and scalar +#define stbi__float2fixed(x) (((int) ((x) * 4096.0f + 0.5f)) << 8) +static void stbi__YCbCr_to_RGB_row(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step) +{ + int i; + for (i=0; i < count; ++i) { + int y_fixed = (y[i] << 20) + (1<<19); // rounding + int r,g,b; + int cr = pcr[i] - 128; + int cb = pcb[i] - 128; + r = y_fixed + cr* stbi__float2fixed(1.40200f); + g = y_fixed + (cr*-stbi__float2fixed(0.71414f)) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); + b = y_fixed + cb* stbi__float2fixed(1.77200f); + r >>= 20; + g >>= 20; + b >>= 20; + if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; } + if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; } + if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; } + out[0] = (stbi_uc)r; + out[1] = (stbi_uc)g; + out[2] = (stbi_uc)b; + out[3] = 255; + out += step; + } +} + +#if defined(STBI_SSE2) || defined(STBI_NEON) +static void stbi__YCbCr_to_RGB_simd(stbi_uc *out, stbi_uc const *y, stbi_uc const *pcb, stbi_uc const *pcr, int count, int step) +{ + int i = 0; + +#ifdef STBI_SSE2 + // step == 3 is pretty ugly on the final interleave, and i'm not convinced + // it's useful in practice (you wouldn't use it for textures, for example). + // so just accelerate step == 4 case. + if (step == 4) { + // this is a fairly straightforward implementation and not super-optimized. + __m128i signflip = _mm_set1_epi8(-0x80); + __m128i cr_const0 = _mm_set1_epi16( (short) ( 1.40200f*4096.0f+0.5f)); + __m128i cr_const1 = _mm_set1_epi16( - (short) ( 0.71414f*4096.0f+0.5f)); + __m128i cb_const0 = _mm_set1_epi16( - (short) ( 0.34414f*4096.0f+0.5f)); + __m128i cb_const1 = _mm_set1_epi16( (short) ( 1.77200f*4096.0f+0.5f)); + __m128i y_bias = _mm_set1_epi8((char) (unsigned char) 128); + __m128i xw = _mm_set1_epi16(255); // alpha channel + + for (; i+7 < count; i += 8) { + // load + __m128i y_bytes = _mm_loadl_epi64((__m128i *) (y+i)); + __m128i cr_bytes = _mm_loadl_epi64((__m128i *) (pcr+i)); + __m128i cb_bytes = _mm_loadl_epi64((__m128i *) (pcb+i)); + __m128i cr_biased = _mm_xor_si128(cr_bytes, signflip); // -128 + __m128i cb_biased = _mm_xor_si128(cb_bytes, signflip); // -128 + + // unpack to short (and left-shift cr, cb by 8) + __m128i yw = _mm_unpacklo_epi8(y_bias, y_bytes); + __m128i crw = _mm_unpacklo_epi8(_mm_setzero_si128(), cr_biased); + __m128i cbw = _mm_unpacklo_epi8(_mm_setzero_si128(), cb_biased); + + // color transform + __m128i yws = _mm_srli_epi16(yw, 4); + __m128i cr0 = _mm_mulhi_epi16(cr_const0, crw); + __m128i cb0 = _mm_mulhi_epi16(cb_const0, cbw); + __m128i cb1 = _mm_mulhi_epi16(cbw, cb_const1); + __m128i cr1 = _mm_mulhi_epi16(crw, cr_const1); + __m128i rws = _mm_add_epi16(cr0, yws); + __m128i gwt = _mm_add_epi16(cb0, yws); + __m128i bws = _mm_add_epi16(yws, cb1); + __m128i gws = _mm_add_epi16(gwt, cr1); + + // descale + __m128i rw = _mm_srai_epi16(rws, 4); + __m128i bw = _mm_srai_epi16(bws, 4); + __m128i gw = _mm_srai_epi16(gws, 4); + + // back to byte, set up for transpose + __m128i brb = _mm_packus_epi16(rw, bw); + __m128i gxb = _mm_packus_epi16(gw, xw); + + // transpose to interleave channels + __m128i t0 = _mm_unpacklo_epi8(brb, gxb); + __m128i t1 = _mm_unpackhi_epi8(brb, gxb); + __m128i o0 = _mm_unpacklo_epi16(t0, t1); + __m128i o1 = _mm_unpackhi_epi16(t0, t1); + + // store + _mm_storeu_si128((__m128i *) (out + 0), o0); + _mm_storeu_si128((__m128i *) (out + 16), o1); + out += 32; + } + } +#endif + +#ifdef STBI_NEON + // in this version, step=3 support would be easy to add. but is there demand? + if (step == 4) { + // this is a fairly straightforward implementation and not super-optimized. + uint8x8_t signflip = vdup_n_u8(0x80); + int16x8_t cr_const0 = vdupq_n_s16( (short) ( 1.40200f*4096.0f+0.5f)); + int16x8_t cr_const1 = vdupq_n_s16( - (short) ( 0.71414f*4096.0f+0.5f)); + int16x8_t cb_const0 = vdupq_n_s16( - (short) ( 0.34414f*4096.0f+0.5f)); + int16x8_t cb_const1 = vdupq_n_s16( (short) ( 1.77200f*4096.0f+0.5f)); + + for (; i+7 < count; i += 8) { + // load + uint8x8_t y_bytes = vld1_u8(y + i); + uint8x8_t cr_bytes = vld1_u8(pcr + i); + uint8x8_t cb_bytes = vld1_u8(pcb + i); + int8x8_t cr_biased = vreinterpret_s8_u8(vsub_u8(cr_bytes, signflip)); + int8x8_t cb_biased = vreinterpret_s8_u8(vsub_u8(cb_bytes, signflip)); + + // expand to s16 + int16x8_t yws = vreinterpretq_s16_u16(vshll_n_u8(y_bytes, 4)); + int16x8_t crw = vshll_n_s8(cr_biased, 7); + int16x8_t cbw = vshll_n_s8(cb_biased, 7); + + // color transform + int16x8_t cr0 = vqdmulhq_s16(crw, cr_const0); + int16x8_t cb0 = vqdmulhq_s16(cbw, cb_const0); + int16x8_t cr1 = vqdmulhq_s16(crw, cr_const1); + int16x8_t cb1 = vqdmulhq_s16(cbw, cb_const1); + int16x8_t rws = vaddq_s16(yws, cr0); + int16x8_t gws = vaddq_s16(vaddq_s16(yws, cb0), cr1); + int16x8_t bws = vaddq_s16(yws, cb1); + + // undo scaling, round, convert to byte + uint8x8x4_t o; + o.val[0] = vqrshrun_n_s16(rws, 4); + o.val[1] = vqrshrun_n_s16(gws, 4); + o.val[2] = vqrshrun_n_s16(bws, 4); + o.val[3] = vdup_n_u8(255); + + // store, interleaving r/g/b/a + vst4_u8(out, o); + out += 8*4; + } + } +#endif + + for (; i < count; ++i) { + int y_fixed = (y[i] << 20) + (1<<19); // rounding + int r,g,b; + int cr = pcr[i] - 128; + int cb = pcb[i] - 128; + r = y_fixed + cr* stbi__float2fixed(1.40200f); + g = y_fixed + cr*-stbi__float2fixed(0.71414f) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000); + b = y_fixed + cb* stbi__float2fixed(1.77200f); + r >>= 20; + g >>= 20; + b >>= 20; + if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; } + if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; } + if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; } + out[0] = (stbi_uc)r; + out[1] = (stbi_uc)g; + out[2] = (stbi_uc)b; + out[3] = 255; + out += step; + } +} +#endif + +// set up the kernels +static void stbi__setup_jpeg(stbi__jpeg *j) +{ + j->idct_block_kernel = stbi__idct_block; + j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_row; + j->resample_row_hv_2_kernel = stbi__resample_row_hv_2; + +#ifdef STBI_SSE2 + if (stbi__sse2_available()) { + j->idct_block_kernel = stbi__idct_simd; + j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd; + j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd; + } +#endif + +#ifdef STBI_NEON + j->idct_block_kernel = stbi__idct_simd; + j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd; + j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd; +#endif +} + +// clean up the temporary component buffers +static void stbi__cleanup_jpeg(stbi__jpeg *j) +{ + stbi__free_jpeg_components(j, j->s->img_n, 0); +} + +typedef struct +{ + resample_row_func resample; + stbi_uc *line0,*line1; + int hs,vs; // expansion factor in each axis + int w_lores; // horizontal pixels pre-expansion + int ystep; // how far through vertical expansion we are + int ypos; // which pre-expansion row we're on +} stbi__resample; + +// fast 0..255 * 0..255 => 0..255 rounded multiplication +static stbi_uc stbi__blinn_8x8(stbi_uc x, stbi_uc y) +{ + unsigned int t = x*y + 128; + return (stbi_uc) ((t + (t >>8)) >> 8); +} + +static stbi_uc *load_jpeg_image(stbi__jpeg *z, int *out_x, int *out_y, int *comp, int req_comp) +{ + int n, decode_n, is_rgb; + z->s->img_n = 0; // make stbi__cleanup_jpeg safe + + // validate req_comp + if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error"); + + // load a jpeg image from whichever source, but leave in YCbCr format + if (!stbi__decode_jpeg_image(z)) { stbi__cleanup_jpeg(z); return NULL; } + + // determine actual number of components to generate + n = req_comp ? req_comp : z->s->img_n >= 3 ? 3 : 1; + + is_rgb = z->s->img_n == 3 && (z->rgb == 3 || (z->app14_color_transform == 0 && !z->jfif)); + + if (z->s->img_n == 3 && n < 3 && !is_rgb) + decode_n = 1; + else + decode_n = z->s->img_n; + + // nothing to do if no components requested; check this now to avoid + // accessing uninitialized coutput[0] later + if (decode_n <= 0) { stbi__cleanup_jpeg(z); return NULL; } + + // resample and color-convert + { + int k; + unsigned int i,j; + stbi_uc *output; + stbi_uc *coutput[4] = { NULL, NULL, NULL, NULL }; + + stbi__resample res_comp[4]; + + for (k=0; k < decode_n; ++k) { + stbi__resample *r = &res_comp[k]; + + // allocate line buffer big enough for upsampling off the edges + // with upsample factor of 4 + z->img_comp[k].linebuf = (stbi_uc *) stbi__malloc(z->s->img_x + 3); + if (!z->img_comp[k].linebuf) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); } + + r->hs = z->img_h_max / z->img_comp[k].h; + r->vs = z->img_v_max / z->img_comp[k].v; + r->ystep = r->vs >> 1; + r->w_lores = (z->s->img_x + r->hs-1) / r->hs; + r->ypos = 0; + r->line0 = r->line1 = z->img_comp[k].data; + + if (r->hs == 1 && r->vs == 1) r->resample = resample_row_1; + else if (r->hs == 1 && r->vs == 2) r->resample = stbi__resample_row_v_2; + else if (r->hs == 2 && r->vs == 1) r->resample = stbi__resample_row_h_2; + else if (r->hs == 2 && r->vs == 2) r->resample = z->resample_row_hv_2_kernel; + else r->resample = stbi__resample_row_generic; + } + + // can't error after this so, this is safe + output = (stbi_uc *) stbi__malloc_mad3(n, z->s->img_x, z->s->img_y, 1); + if (!output) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); } + + // now go ahead and resample + for (j=0; j < z->s->img_y; ++j) { + stbi_uc *out = output + n * z->s->img_x * j; + for (k=0; k < decode_n; ++k) { + stbi__resample *r = &res_comp[k]; + int y_bot = r->ystep >= (r->vs >> 1); + coutput[k] = r->resample(z->img_comp[k].linebuf, + y_bot ? r->line1 : r->line0, + y_bot ? r->line0 : r->line1, + r->w_lores, r->hs); + if (++r->ystep >= r->vs) { + r->ystep = 0; + r->line0 = r->line1; + if (++r->ypos < z->img_comp[k].y) + r->line1 += z->img_comp[k].w2; + } + } + if (n >= 3) { + stbi_uc *y = coutput[0]; + if (z->s->img_n == 3) { + if (is_rgb) { + for (i=0; i < z->s->img_x; ++i) { + out[0] = y[i]; + out[1] = coutput[1][i]; + out[2] = coutput[2][i]; + out[3] = 255; + out += n; + } + } else { + z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); + } + } else if (z->s->img_n == 4) { + if (z->app14_color_transform == 0) { // CMYK + for (i=0; i < z->s->img_x; ++i) { + stbi_uc m = coutput[3][i]; + out[0] = stbi__blinn_8x8(coutput[0][i], m); + out[1] = stbi__blinn_8x8(coutput[1][i], m); + out[2] = stbi__blinn_8x8(coutput[2][i], m); + out[3] = 255; + out += n; + } + } else if (z->app14_color_transform == 2) { // YCCK + z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); + for (i=0; i < z->s->img_x; ++i) { + stbi_uc m = coutput[3][i]; + out[0] = stbi__blinn_8x8(255 - out[0], m); + out[1] = stbi__blinn_8x8(255 - out[1], m); + out[2] = stbi__blinn_8x8(255 - out[2], m); + out += n; + } + } else { // YCbCr + alpha? Ignore the fourth channel for now + z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n); + } + } else + for (i=0; i < z->s->img_x; ++i) { + out[0] = out[1] = out[2] = y[i]; + out[3] = 255; // not used if n==3 + out += n; + } + } else { + if (is_rgb) { + if (n == 1) + for (i=0; i < z->s->img_x; ++i) + *out++ = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]); + else { + for (i=0; i < z->s->img_x; ++i, out += 2) { + out[0] = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]); + out[1] = 255; + } + } + } else if (z->s->img_n == 4 && z->app14_color_transform == 0) { + for (i=0; i < z->s->img_x; ++i) { + stbi_uc m = coutput[3][i]; + stbi_uc r = stbi__blinn_8x8(coutput[0][i], m); + stbi_uc g = stbi__blinn_8x8(coutput[1][i], m); + stbi_uc b = stbi__blinn_8x8(coutput[2][i], m); + out[0] = stbi__compute_y(r, g, b); + out[1] = 255; + out += n; + } + } else if (z->s->img_n == 4 && z->app14_color_transform == 2) { + for (i=0; i < z->s->img_x; ++i) { + out[0] = stbi__blinn_8x8(255 - coutput[0][i], coutput[3][i]); + out[1] = 255; + out += n; + } + } else { + stbi_uc *y = coutput[0]; + if (n == 1) + for (i=0; i < z->s->img_x; ++i) out[i] = y[i]; + else + for (i=0; i < z->s->img_x; ++i) { *out++ = y[i]; *out++ = 255; } + } + } + } + stbi__cleanup_jpeg(z); + *out_x = z->s->img_x; + *out_y = z->s->img_y; + if (comp) *comp = z->s->img_n >= 3 ? 3 : 1; // report original components, not output + return output; + } +} + +static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + unsigned char* result; + stbi__jpeg* j = (stbi__jpeg*) stbi__malloc(sizeof(stbi__jpeg)); + if (!j) return stbi__errpuc("outofmem", "Out of memory"); + memset(j, 0, sizeof(stbi__jpeg)); + STBI_NOTUSED(ri); + j->s = s; + stbi__setup_jpeg(j); + result = load_jpeg_image(j, x,y,comp,req_comp); + STBI_FREE(j); + return result; +} + +static int stbi__jpeg_test(stbi__context *s) +{ + int r; + stbi__jpeg* j = (stbi__jpeg*)stbi__malloc(sizeof(stbi__jpeg)); + if (!j) return stbi__err("outofmem", "Out of memory"); + memset(j, 0, sizeof(stbi__jpeg)); + j->s = s; + stbi__setup_jpeg(j); + r = stbi__decode_jpeg_header(j, STBI__SCAN_type); + stbi__rewind(s); + STBI_FREE(j); + return r; +} + +static int stbi__jpeg_info_raw(stbi__jpeg *j, int *x, int *y, int *comp) +{ + if (!stbi__decode_jpeg_header(j, STBI__SCAN_header)) { + stbi__rewind( j->s ); + return 0; + } + if (x) *x = j->s->img_x; + if (y) *y = j->s->img_y; + if (comp) *comp = j->s->img_n >= 3 ? 3 : 1; + return 1; +} + +static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp) +{ + int result; + stbi__jpeg* j = (stbi__jpeg*) (stbi__malloc(sizeof(stbi__jpeg))); + if (!j) return stbi__err("outofmem", "Out of memory"); + memset(j, 0, sizeof(stbi__jpeg)); + j->s = s; + result = stbi__jpeg_info_raw(j, x, y, comp); + STBI_FREE(j); + return result; +} +#endif + +// public domain zlib decode v0.2 Sean Barrett 2006-11-18 +// simple implementation +// - all input must be provided in an upfront buffer +// - all output is written to a single output buffer (can malloc/realloc) +// performance +// - fast huffman + +#ifndef STBI_NO_ZLIB + +// fast-way is faster to check than jpeg huffman, but slow way is slower +#define STBI__ZFAST_BITS 9 // accelerate all cases in default tables +#define STBI__ZFAST_MASK ((1 << STBI__ZFAST_BITS) - 1) +#define STBI__ZNSYMS 288 // number of symbols in literal/length alphabet + +// zlib-style huffman encoding +// (jpegs packs from left, zlib from right, so can't share code) +typedef struct +{ + stbi__uint16 fast[1 << STBI__ZFAST_BITS]; + stbi__uint16 firstcode[16]; + int maxcode[17]; + stbi__uint16 firstsymbol[16]; + stbi_uc size[STBI__ZNSYMS]; + stbi__uint16 value[STBI__ZNSYMS]; +} stbi__zhuffman; + +stbi_inline static int stbi__bitreverse16(int n) +{ + n = ((n & 0xAAAA) >> 1) | ((n & 0x5555) << 1); + n = ((n & 0xCCCC) >> 2) | ((n & 0x3333) << 2); + n = ((n & 0xF0F0) >> 4) | ((n & 0x0F0F) << 4); + n = ((n & 0xFF00) >> 8) | ((n & 0x00FF) << 8); + return n; +} + +stbi_inline static int stbi__bit_reverse(int v, int bits) +{ + STBI_ASSERT(bits <= 16); + // to bit reverse n bits, reverse 16 and shift + // e.g. 11 bits, bit reverse and shift away 5 + return stbi__bitreverse16(v) >> (16-bits); +} + +static int stbi__zbuild_huffman(stbi__zhuffman *z, const stbi_uc *sizelist, int num) +{ + int i,k=0; + int code, next_code[16], sizes[17]; + + // DEFLATE spec for generating codes + memset(sizes, 0, sizeof(sizes)); + memset(z->fast, 0, sizeof(z->fast)); + for (i=0; i < num; ++i) + ++sizes[sizelist[i]]; + sizes[0] = 0; + for (i=1; i < 16; ++i) + if (sizes[i] > (1 << i)) + return stbi__err("bad sizes", "Corrupt PNG"); + code = 0; + for (i=1; i < 16; ++i) { + next_code[i] = code; + z->firstcode[i] = (stbi__uint16) code; + z->firstsymbol[i] = (stbi__uint16) k; + code = (code + sizes[i]); + if (sizes[i]) + if (code-1 >= (1 << i)) return stbi__err("bad codelengths","Corrupt PNG"); + z->maxcode[i] = code << (16-i); // preshift for inner loop + code <<= 1; + k += sizes[i]; + } + z->maxcode[16] = 0x10000; // sentinel + for (i=0; i < num; ++i) { + int s = sizelist[i]; + if (s) { + int c = next_code[s] - z->firstcode[s] + z->firstsymbol[s]; + stbi__uint16 fastv = (stbi__uint16) ((s << 9) | i); + z->size [c] = (stbi_uc ) s; + z->value[c] = (stbi__uint16) i; + if (s <= STBI__ZFAST_BITS) { + int j = stbi__bit_reverse(next_code[s],s); + while (j < (1 << STBI__ZFAST_BITS)) { + z->fast[j] = fastv; + j += (1 << s); + } + } + ++next_code[s]; + } + } + return 1; +} + +// zlib-from-memory implementation for PNG reading +// because PNG allows splitting the zlib stream arbitrarily, +// and it's annoying structurally to have PNG call ZLIB call PNG, +// we require PNG read all the IDATs and combine them into a single +// memory buffer + +typedef struct +{ + stbi_uc *zbuffer, *zbuffer_end; + int num_bits; + int hit_zeof_once; + stbi__uint32 code_buffer; + + char *zout; + char *zout_start; + char *zout_end; + int z_expandable; + + stbi__zhuffman z_length, z_distance; +} stbi__zbuf; + +stbi_inline static int stbi__zeof(stbi__zbuf *z) +{ + return (z->zbuffer >= z->zbuffer_end); +} + +stbi_inline static stbi_uc stbi__zget8(stbi__zbuf *z) +{ + return stbi__zeof(z) ? 0 : *z->zbuffer++; +} + +static void stbi__fill_bits(stbi__zbuf *z) +{ + do { + if (z->code_buffer >= (1U << z->num_bits)) { + z->zbuffer = z->zbuffer_end; /* treat this as EOF so we fail. */ + return; + } + z->code_buffer |= (unsigned int) stbi__zget8(z) << z->num_bits; + z->num_bits += 8; + } while (z->num_bits <= 24); +} + +stbi_inline static unsigned int stbi__zreceive(stbi__zbuf *z, int n) +{ + unsigned int k; + if (z->num_bits < n) stbi__fill_bits(z); + k = z->code_buffer & ((1 << n) - 1); + z->code_buffer >>= n; + z->num_bits -= n; + return k; +} + +static int stbi__zhuffman_decode_slowpath(stbi__zbuf *a, stbi__zhuffman *z) +{ + int b,s,k; + // not resolved by fast table, so compute it the slow way + // use jpeg approach, which requires MSbits at top + k = stbi__bit_reverse(a->code_buffer, 16); + for (s=STBI__ZFAST_BITS+1; ; ++s) + if (k < z->maxcode[s]) + break; + if (s >= 16) return -1; // invalid code! + // code size is s, so: + b = (k >> (16-s)) - z->firstcode[s] + z->firstsymbol[s]; + if (b >= STBI__ZNSYMS) return -1; // some data was corrupt somewhere! + if (z->size[b] != s) return -1; // was originally an assert, but report failure instead. + a->code_buffer >>= s; + a->num_bits -= s; + return z->value[b]; +} + +stbi_inline static int stbi__zhuffman_decode(stbi__zbuf *a, stbi__zhuffman *z) +{ + int b,s; + if (a->num_bits < 16) { + if (stbi__zeof(a)) { + if (!a->hit_zeof_once) { + // This is the first time we hit eof, insert 16 extra padding btis + // to allow us to keep going; if we actually consume any of them + // though, that is invalid data. This is caught later. + a->hit_zeof_once = 1; + a->num_bits += 16; // add 16 implicit zero bits + } else { + // We already inserted our extra 16 padding bits and are again + // out, this stream is actually prematurely terminated. + return -1; + } + } else { + stbi__fill_bits(a); + } + } + b = z->fast[a->code_buffer & STBI__ZFAST_MASK]; + if (b) { + s = b >> 9; + a->code_buffer >>= s; + a->num_bits -= s; + return b & 511; + } + return stbi__zhuffman_decode_slowpath(a, z); +} + +static int stbi__zexpand(stbi__zbuf *z, char *zout, int n) // need to make room for n bytes +{ + char *q; + unsigned int cur, limit, old_limit; + z->zout = zout; + if (!z->z_expandable) return stbi__err("output buffer limit","Corrupt PNG"); + cur = (unsigned int) (z->zout - z->zout_start); + limit = old_limit = (unsigned) (z->zout_end - z->zout_start); + if (UINT_MAX - cur < (unsigned) n) return stbi__err("outofmem", "Out of memory"); + while (cur + n > limit) { + if(limit > UINT_MAX / 2) return stbi__err("outofmem", "Out of memory"); + limit *= 2; + } + q = (char *) STBI_REALLOC_SIZED(z->zout_start, old_limit, limit); + STBI_NOTUSED(old_limit); + if (q == NULL) return stbi__err("outofmem", "Out of memory"); + z->zout_start = q; + z->zout = q + cur; + z->zout_end = q + limit; + return 1; +} + +static const int stbi__zlength_base[31] = { + 3,4,5,6,7,8,9,10,11,13, + 15,17,19,23,27,31,35,43,51,59, + 67,83,99,115,131,163,195,227,258,0,0 }; + +static const int stbi__zlength_extra[31]= +{ 0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0 }; + +static const int stbi__zdist_base[32] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193, +257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0}; + +static const int stbi__zdist_extra[32] = +{ 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13}; + +static int stbi__parse_huffman_block(stbi__zbuf *a) +{ + char *zout = a->zout; + for(;;) { + int z = stbi__zhuffman_decode(a, &a->z_length); + if (z < 256) { + if (z < 0) return stbi__err("bad huffman code","Corrupt PNG"); // error in huffman codes + if (zout >= a->zout_end) { + if (!stbi__zexpand(a, zout, 1)) return 0; + zout = a->zout; + } + *zout++ = (char) z; + } else { + stbi_uc *p; + int len,dist; + if (z == 256) { + a->zout = zout; + if (a->hit_zeof_once && a->num_bits < 16) { + // The first time we hit zeof, we inserted 16 extra zero bits into our bit + // buffer so the decoder can just do its speculative decoding. But if we + // actually consumed any of those bits (which is the case when num_bits < 16), + // the stream actually read past the end so it is malformed. + return stbi__err("unexpected end","Corrupt PNG"); + } + return 1; + } + if (z >= 286) return stbi__err("bad huffman code","Corrupt PNG"); // per DEFLATE, length codes 286 and 287 must not appear in compressed data + z -= 257; + len = stbi__zlength_base[z]; + if (stbi__zlength_extra[z]) len += stbi__zreceive(a, stbi__zlength_extra[z]); + z = stbi__zhuffman_decode(a, &a->z_distance); + if (z < 0 || z >= 30) return stbi__err("bad huffman code","Corrupt PNG"); // per DEFLATE, distance codes 30 and 31 must not appear in compressed data + dist = stbi__zdist_base[z]; + if (stbi__zdist_extra[z]) dist += stbi__zreceive(a, stbi__zdist_extra[z]); + if (zout - a->zout_start < dist) return stbi__err("bad dist","Corrupt PNG"); + if (len > a->zout_end - zout) { + if (!stbi__zexpand(a, zout, len)) return 0; + zout = a->zout; + } + p = (stbi_uc *) (zout - dist); + if (dist == 1) { // run of one byte; common in images. + stbi_uc v = *p; + if (len) { do *zout++ = v; while (--len); } + } else { + if (len) { do *zout++ = *p++; while (--len); } + } + } + } +} + +static int stbi__compute_huffman_codes(stbi__zbuf *a) +{ + static const stbi_uc length_dezigzag[19] = { 16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15 }; + stbi__zhuffman z_codelength; + stbi_uc lencodes[286+32+137];//padding for maximum single op + stbi_uc codelength_sizes[19]; + int i,n; + + int hlit = stbi__zreceive(a,5) + 257; + int hdist = stbi__zreceive(a,5) + 1; + int hclen = stbi__zreceive(a,4) + 4; + int ntot = hlit + hdist; + + memset(codelength_sizes, 0, sizeof(codelength_sizes)); + for (i=0; i < hclen; ++i) { + int s = stbi__zreceive(a,3); + codelength_sizes[length_dezigzag[i]] = (stbi_uc) s; + } + if (!stbi__zbuild_huffman(&z_codelength, codelength_sizes, 19)) return 0; + + n = 0; + while (n < ntot) { + int c = stbi__zhuffman_decode(a, &z_codelength); + if (c < 0 || c >= 19) return stbi__err("bad codelengths", "Corrupt PNG"); + if (c < 16) + lencodes[n++] = (stbi_uc) c; + else { + stbi_uc fill = 0; + if (c == 16) { + c = stbi__zreceive(a,2)+3; + if (n == 0) return stbi__err("bad codelengths", "Corrupt PNG"); + fill = lencodes[n-1]; + } else if (c == 17) { + c = stbi__zreceive(a,3)+3; + } else if (c == 18) { + c = stbi__zreceive(a,7)+11; + } else { + return stbi__err("bad codelengths", "Corrupt PNG"); + } + if (ntot - n < c) return stbi__err("bad codelengths", "Corrupt PNG"); + memset(lencodes+n, fill, c); + n += c; + } + } + if (n != ntot) return stbi__err("bad codelengths","Corrupt PNG"); + if (!stbi__zbuild_huffman(&a->z_length, lencodes, hlit)) return 0; + if (!stbi__zbuild_huffman(&a->z_distance, lencodes+hlit, hdist)) return 0; + return 1; +} + +static int stbi__parse_uncompressed_block(stbi__zbuf *a) +{ + stbi_uc header[4]; + int len,nlen,k; + if (a->num_bits & 7) + stbi__zreceive(a, a->num_bits & 7); // discard + // drain the bit-packed data into header + k = 0; + while (a->num_bits > 0) { + header[k++] = (stbi_uc) (a->code_buffer & 255); // suppress MSVC run-time check + a->code_buffer >>= 8; + a->num_bits -= 8; + } + if (a->num_bits < 0) return stbi__err("zlib corrupt","Corrupt PNG"); + // now fill header the normal way + while (k < 4) + header[k++] = stbi__zget8(a); + len = header[1] * 256 + header[0]; + nlen = header[3] * 256 + header[2]; + if (nlen != (len ^ 0xffff)) return stbi__err("zlib corrupt","Corrupt PNG"); + if (a->zbuffer + len > a->zbuffer_end) return stbi__err("read past buffer","Corrupt PNG"); + if (a->zout + len > a->zout_end) + if (!stbi__zexpand(a, a->zout, len)) return 0; + memcpy(a->zout, a->zbuffer, len); + a->zbuffer += len; + a->zout += len; + return 1; +} + +static int stbi__parse_zlib_header(stbi__zbuf *a) +{ + int cmf = stbi__zget8(a); + int cm = cmf & 15; + /* int cinfo = cmf >> 4; */ + int flg = stbi__zget8(a); + if (stbi__zeof(a)) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec + if ((cmf*256+flg) % 31 != 0) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec + if (flg & 32) return stbi__err("no preset dict","Corrupt PNG"); // preset dictionary not allowed in png + if (cm != 8) return stbi__err("bad compression","Corrupt PNG"); // DEFLATE required for png + // window = 1 << (8 + cinfo)... but who cares, we fully buffer output + return 1; +} + +static const stbi_uc stbi__zdefault_length[STBI__ZNSYMS] = +{ + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, + 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, + 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8 +}; +static const stbi_uc stbi__zdefault_distance[32] = +{ + 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5 +}; +/* +Init algorithm: +{ + int i; // use <= to match clearly with spec + for (i=0; i <= 143; ++i) stbi__zdefault_length[i] = 8; + for ( ; i <= 255; ++i) stbi__zdefault_length[i] = 9; + for ( ; i <= 279; ++i) stbi__zdefault_length[i] = 7; + for ( ; i <= 287; ++i) stbi__zdefault_length[i] = 8; + + for (i=0; i <= 31; ++i) stbi__zdefault_distance[i] = 5; +} +*/ + +static int stbi__parse_zlib(stbi__zbuf *a, int parse_header) +{ + int final, type; + if (parse_header) + if (!stbi__parse_zlib_header(a)) return 0; + a->num_bits = 0; + a->code_buffer = 0; + a->hit_zeof_once = 0; + do { + final = stbi__zreceive(a,1); + type = stbi__zreceive(a,2); + if (type == 0) { + if (!stbi__parse_uncompressed_block(a)) return 0; + } else if (type == 3) { + return 0; + } else { + if (type == 1) { + // use fixed code lengths + if (!stbi__zbuild_huffman(&a->z_length , stbi__zdefault_length , STBI__ZNSYMS)) return 0; + if (!stbi__zbuild_huffman(&a->z_distance, stbi__zdefault_distance, 32)) return 0; + } else { + if (!stbi__compute_huffman_codes(a)) return 0; + } + if (!stbi__parse_huffman_block(a)) return 0; + } + } while (!final); + return 1; +} + +static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, int parse_header) +{ + a->zout_start = obuf; + a->zout = obuf; + a->zout_end = obuf + olen; + a->z_expandable = exp; + + return stbi__parse_zlib(a, parse_header); +} + +STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen) +{ + stbi__zbuf a; + char *p = (char *) stbi__malloc(initial_size); + if (p == NULL) return NULL; + a.zbuffer = (stbi_uc *) buffer; + a.zbuffer_end = (stbi_uc *) buffer + len; + if (stbi__do_zlib(&a, p, initial_size, 1, 1)) { + if (outlen) *outlen = (int) (a.zout - a.zout_start); + return a.zout_start; + } else { + STBI_FREE(a.zout_start); + return NULL; + } +} + +STBIDEF char *stbi_zlib_decode_malloc(char const *buffer, int len, int *outlen) +{ + return stbi_zlib_decode_malloc_guesssize(buffer, len, 16384, outlen); +} + +STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header) +{ + stbi__zbuf a; + char *p = (char *) stbi__malloc(initial_size); + if (p == NULL) return NULL; + a.zbuffer = (stbi_uc *) buffer; + a.zbuffer_end = (stbi_uc *) buffer + len; + if (stbi__do_zlib(&a, p, initial_size, 1, parse_header)) { + if (outlen) *outlen = (int) (a.zout - a.zout_start); + return a.zout_start; + } else { + STBI_FREE(a.zout_start); + return NULL; + } +} + +STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, char const *ibuffer, int ilen) +{ + stbi__zbuf a; + a.zbuffer = (stbi_uc *) ibuffer; + a.zbuffer_end = (stbi_uc *) ibuffer + ilen; + if (stbi__do_zlib(&a, obuffer, olen, 0, 1)) + return (int) (a.zout - a.zout_start); + else + return -1; +} + +STBIDEF char *stbi_zlib_decode_noheader_malloc(char const *buffer, int len, int *outlen) +{ + stbi__zbuf a; + char *p = (char *) stbi__malloc(16384); + if (p == NULL) return NULL; + a.zbuffer = (stbi_uc *) buffer; + a.zbuffer_end = (stbi_uc *) buffer+len; + if (stbi__do_zlib(&a, p, 16384, 1, 0)) { + if (outlen) *outlen = (int) (a.zout - a.zout_start); + return a.zout_start; + } else { + STBI_FREE(a.zout_start); + return NULL; + } +} + +STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen) +{ + stbi__zbuf a; + a.zbuffer = (stbi_uc *) ibuffer; + a.zbuffer_end = (stbi_uc *) ibuffer + ilen; + if (stbi__do_zlib(&a, obuffer, olen, 0, 0)) + return (int) (a.zout - a.zout_start); + else + return -1; +} +#endif + +// public domain "baseline" PNG decoder v0.10 Sean Barrett 2006-11-18 +// simple implementation +// - only 8-bit samples +// - no CRC checking +// - allocates lots of intermediate memory +// - avoids problem of streaming data between subsystems +// - avoids explicit window management +// performance +// - uses stb_zlib, a PD zlib implementation with fast huffman decoding + +#ifndef STBI_NO_PNG +typedef struct +{ + stbi__uint32 length; + stbi__uint32 type; +} stbi__pngchunk; + +static stbi__pngchunk stbi__get_chunk_header(stbi__context *s) +{ + stbi__pngchunk c; + c.length = stbi__get32be(s); + c.type = stbi__get32be(s); + return c; +} + +static int stbi__check_png_header(stbi__context *s) +{ + static const stbi_uc png_sig[8] = { 137,80,78,71,13,10,26,10 }; + int i; + for (i=0; i < 8; ++i) + if (stbi__get8(s) != png_sig[i]) return stbi__err("bad png sig","Not a PNG"); + return 1; +} + +typedef struct +{ + stbi__context *s; + stbi_uc *idata, *expanded, *out; + int depth; +} stbi__png; + + +enum { + STBI__F_none=0, + STBI__F_sub=1, + STBI__F_up=2, + STBI__F_avg=3, + STBI__F_paeth=4, + // synthetic filter used for first scanline to avoid needing a dummy row of 0s + STBI__F_avg_first +}; + +static stbi_uc first_row_filter[5] = +{ + STBI__F_none, + STBI__F_sub, + STBI__F_none, + STBI__F_avg_first, + STBI__F_sub // Paeth with b=c=0 turns out to be equivalent to sub +}; + +static int stbi__paeth(int a, int b, int c) +{ + // This formulation looks very different from the reference in the PNG spec, but is + // actually equivalent and has favorable data dependencies and admits straightforward + // generation of branch-free code, which helps performance significantly. + int thresh = c*3 - (a + b); + int lo = a < b ? a : b; + int hi = a < b ? b : a; + int t0 = (hi <= thresh) ? lo : c; + int t1 = (thresh <= lo) ? hi : t0; + return t1; +} + +static const stbi_uc stbi__depth_scale_table[9] = { 0, 0xff, 0x55, 0, 0x11, 0,0,0, 0x01 }; + +// adds an extra all-255 alpha channel +// dest == src is legal +// img_n must be 1 or 3 +static void stbi__create_png_alpha_expand8(stbi_uc *dest, stbi_uc *src, stbi__uint32 x, int img_n) +{ + int i; + // must process data backwards since we allow dest==src + if (img_n == 1) { + for (i=x-1; i >= 0; --i) { + dest[i*2+1] = 255; + dest[i*2+0] = src[i]; + } + } else { + STBI_ASSERT(img_n == 3); + for (i=x-1; i >= 0; --i) { + dest[i*4+3] = 255; + dest[i*4+2] = src[i*3+2]; + dest[i*4+1] = src[i*3+1]; + dest[i*4+0] = src[i*3+0]; + } + } +} + +// create the png data from post-deflated data +static int stbi__create_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__uint32 raw_len, int out_n, stbi__uint32 x, stbi__uint32 y, int depth, int color) +{ + int bytes = (depth == 16 ? 2 : 1); + stbi__context *s = a->s; + stbi__uint32 i,j,stride = x*out_n*bytes; + stbi__uint32 img_len, img_width_bytes; + stbi_uc *filter_buf; + int all_ok = 1; + int k; + int img_n = s->img_n; // copy it into a local for later + + int output_bytes = out_n*bytes; + int filter_bytes = img_n*bytes; + int width = x; + + STBI_ASSERT(out_n == s->img_n || out_n == s->img_n+1); + a->out = (stbi_uc *) stbi__malloc_mad3(x, y, output_bytes, 0); // extra bytes to write off the end into + if (!a->out) return stbi__err("outofmem", "Out of memory"); + + // note: error exits here don't need to clean up a->out individually, + // stbi__do_png always does on error. + if (!stbi__mad3sizes_valid(img_n, x, depth, 7)) return stbi__err("too large", "Corrupt PNG"); + img_width_bytes = (((img_n * x * depth) + 7) >> 3); + if (!stbi__mad2sizes_valid(img_width_bytes, y, img_width_bytes)) return stbi__err("too large", "Corrupt PNG"); + img_len = (img_width_bytes + 1) * y; + + // we used to check for exact match between raw_len and img_len on non-interlaced PNGs, + // but issue #276 reported a PNG in the wild that had extra data at the end (all zeros), + // so just check for raw_len < img_len always. + if (raw_len < img_len) return stbi__err("not enough pixels","Corrupt PNG"); + + // Allocate two scan lines worth of filter workspace buffer. + filter_buf = (stbi_uc *) stbi__malloc_mad2(img_width_bytes, 2, 0); + if (!filter_buf) return stbi__err("outofmem", "Out of memory"); + + // Filtering for low-bit-depth images + if (depth < 8) { + filter_bytes = 1; + width = img_width_bytes; + } + + for (j=0; j < y; ++j) { + // cur/prior filter buffers alternate + stbi_uc *cur = filter_buf + (j & 1)*img_width_bytes; + stbi_uc *prior = filter_buf + (~j & 1)*img_width_bytes; + stbi_uc *dest = a->out + stride*j; + int nk = width * filter_bytes; + int filter = *raw++; + + // check filter type + if (filter > 4) { + all_ok = stbi__err("invalid filter","Corrupt PNG"); + break; + } + + // if first row, use special filter that doesn't sample previous row + if (j == 0) filter = first_row_filter[filter]; + + // perform actual filtering + switch (filter) { + case STBI__F_none: + memcpy(cur, raw, nk); + break; + case STBI__F_sub: + memcpy(cur, raw, filter_bytes); + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + cur[k-filter_bytes]); + break; + case STBI__F_up: + for (k = 0; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + prior[k]); + break; + case STBI__F_avg: + for (k = 0; k < filter_bytes; ++k) + cur[k] = STBI__BYTECAST(raw[k] + (prior[k]>>1)); + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k-filter_bytes])>>1)); + break; + case STBI__F_paeth: + for (k = 0; k < filter_bytes; ++k) + cur[k] = STBI__BYTECAST(raw[k] + prior[k]); // prior[k] == stbi__paeth(0,prior[k],0) + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes], prior[k], prior[k-filter_bytes])); + break; + case STBI__F_avg_first: + memcpy(cur, raw, filter_bytes); + for (k = filter_bytes; k < nk; ++k) + cur[k] = STBI__BYTECAST(raw[k] + (cur[k-filter_bytes] >> 1)); + break; + } + + raw += nk; + + // expand decoded bits in cur to dest, also adding an extra alpha channel if desired + if (depth < 8) { + stbi_uc scale = (color == 0) ? stbi__depth_scale_table[depth] : 1; // scale grayscale values to 0..255 range + stbi_uc *in = cur; + stbi_uc *out = dest; + stbi_uc inb = 0; + stbi__uint32 nsmp = x*img_n; + + // expand bits to bytes first + if (depth == 4) { + for (i=0; i < nsmp; ++i) { + if ((i & 1) == 0) inb = *in++; + *out++ = scale * (inb >> 4); + inb <<= 4; + } + } else if (depth == 2) { + for (i=0; i < nsmp; ++i) { + if ((i & 3) == 0) inb = *in++; + *out++ = scale * (inb >> 6); + inb <<= 2; + } + } else { + STBI_ASSERT(depth == 1); + for (i=0; i < nsmp; ++i) { + if ((i & 7) == 0) inb = *in++; + *out++ = scale * (inb >> 7); + inb <<= 1; + } + } + + // insert alpha=255 values if desired + if (img_n != out_n) + stbi__create_png_alpha_expand8(dest, dest, x, img_n); + } else if (depth == 8) { + if (img_n == out_n) + memcpy(dest, cur, x*img_n); + else + stbi__create_png_alpha_expand8(dest, cur, x, img_n); + } else if (depth == 16) { + // convert the image data from big-endian to platform-native + stbi__uint16 *dest16 = (stbi__uint16*)dest; + stbi__uint32 nsmp = x*img_n; + + if (img_n == out_n) { + for (i = 0; i < nsmp; ++i, ++dest16, cur += 2) + *dest16 = (cur[0] << 8) | cur[1]; + } else { + STBI_ASSERT(img_n+1 == out_n); + if (img_n == 1) { + for (i = 0; i < x; ++i, dest16 += 2, cur += 2) { + dest16[0] = (cur[0] << 8) | cur[1]; + dest16[1] = 0xffff; + } + } else { + STBI_ASSERT(img_n == 3); + for (i = 0; i < x; ++i, dest16 += 4, cur += 6) { + dest16[0] = (cur[0] << 8) | cur[1]; + dest16[1] = (cur[2] << 8) | cur[3]; + dest16[2] = (cur[4] << 8) | cur[5]; + dest16[3] = 0xffff; + } + } + } + } + } + + STBI_FREE(filter_buf); + if (!all_ok) return 0; + + return 1; +} + +static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stbi__uint32 image_data_len, int out_n, int depth, int color, int interlaced) +{ + int bytes = (depth == 16 ? 2 : 1); + int out_bytes = out_n * bytes; + stbi_uc *final; + int p; + if (!interlaced) + return stbi__create_png_image_raw(a, image_data, image_data_len, out_n, a->s->img_x, a->s->img_y, depth, color); + + // de-interlacing + final = (stbi_uc *) stbi__malloc_mad3(a->s->img_x, a->s->img_y, out_bytes, 0); + if (!final) return stbi__err("outofmem", "Out of memory"); + for (p=0; p < 7; ++p) { + int xorig[] = { 0,4,0,2,0,1,0 }; + int yorig[] = { 0,0,4,0,2,0,1 }; + int xspc[] = { 8,8,4,4,2,2,1 }; + int yspc[] = { 8,8,8,4,4,2,2 }; + int i,j,x,y; + // pass1_x[4] = 0, pass1_x[5] = 1, pass1_x[12] = 1 + x = (a->s->img_x - xorig[p] + xspc[p]-1) / xspc[p]; + y = (a->s->img_y - yorig[p] + yspc[p]-1) / yspc[p]; + if (x && y) { + stbi__uint32 img_len = ((((a->s->img_n * x * depth) + 7) >> 3) + 1) * y; + if (!stbi__create_png_image_raw(a, image_data, image_data_len, out_n, x, y, depth, color)) { + STBI_FREE(final); + return 0; + } + for (j=0; j < y; ++j) { + for (i=0; i < x; ++i) { + int out_y = j*yspc[p]+yorig[p]; + int out_x = i*xspc[p]+xorig[p]; + memcpy(final + out_y*a->s->img_x*out_bytes + out_x*out_bytes, + a->out + (j*x+i)*out_bytes, out_bytes); + } + } + STBI_FREE(a->out); + image_data += img_len; + image_data_len -= img_len; + } + } + a->out = final; + + return 1; +} + +static int stbi__compute_transparency(stbi__png *z, stbi_uc tc[3], int out_n) +{ + stbi__context *s = z->s; + stbi__uint32 i, pixel_count = s->img_x * s->img_y; + stbi_uc *p = z->out; + + // compute color-based transparency, assuming we've + // already got 255 as the alpha value in the output + STBI_ASSERT(out_n == 2 || out_n == 4); + + if (out_n == 2) { + for (i=0; i < pixel_count; ++i) { + p[1] = (p[0] == tc[0] ? 0 : 255); + p += 2; + } + } else { + for (i=0; i < pixel_count; ++i) { + if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) + p[3] = 0; + p += 4; + } + } + return 1; +} + +static int stbi__compute_transparency16(stbi__png *z, stbi__uint16 tc[3], int out_n) +{ + stbi__context *s = z->s; + stbi__uint32 i, pixel_count = s->img_x * s->img_y; + stbi__uint16 *p = (stbi__uint16*) z->out; + + // compute color-based transparency, assuming we've + // already got 65535 as the alpha value in the output + STBI_ASSERT(out_n == 2 || out_n == 4); + + if (out_n == 2) { + for (i = 0; i < pixel_count; ++i) { + p[1] = (p[0] == tc[0] ? 0 : 65535); + p += 2; + } + } else { + for (i = 0; i < pixel_count; ++i) { + if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2]) + p[3] = 0; + p += 4; + } + } + return 1; +} + +static int stbi__expand_png_palette(stbi__png *a, stbi_uc *palette, int len, int pal_img_n) +{ + stbi__uint32 i, pixel_count = a->s->img_x * a->s->img_y; + stbi_uc *p, *temp_out, *orig = a->out; + + p = (stbi_uc *) stbi__malloc_mad2(pixel_count, pal_img_n, 0); + if (p == NULL) return stbi__err("outofmem", "Out of memory"); + + // between here and free(out) below, exitting would leak + temp_out = p; + + if (pal_img_n == 3) { + for (i=0; i < pixel_count; ++i) { + int n = orig[i]*4; + p[0] = palette[n ]; + p[1] = palette[n+1]; + p[2] = palette[n+2]; + p += 3; + } + } else { + for (i=0; i < pixel_count; ++i) { + int n = orig[i]*4; + p[0] = palette[n ]; + p[1] = palette[n+1]; + p[2] = palette[n+2]; + p[3] = palette[n+3]; + p += 4; + } + } + STBI_FREE(a->out); + a->out = temp_out; + + STBI_NOTUSED(len); + + return 1; +} + +static int stbi__unpremultiply_on_load_global = 0; +static int stbi__de_iphone_flag_global = 0; + +STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply) +{ + stbi__unpremultiply_on_load_global = flag_true_if_should_unpremultiply; +} + +STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert) +{ + stbi__de_iphone_flag_global = flag_true_if_should_convert; +} + +#ifndef STBI_THREAD_LOCAL +#define stbi__unpremultiply_on_load stbi__unpremultiply_on_load_global +#define stbi__de_iphone_flag stbi__de_iphone_flag_global +#else +static STBI_THREAD_LOCAL int stbi__unpremultiply_on_load_local, stbi__unpremultiply_on_load_set; +static STBI_THREAD_LOCAL int stbi__de_iphone_flag_local, stbi__de_iphone_flag_set; + +STBIDEF void stbi_set_unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply) +{ + stbi__unpremultiply_on_load_local = flag_true_if_should_unpremultiply; + stbi__unpremultiply_on_load_set = 1; +} + +STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert) +{ + stbi__de_iphone_flag_local = flag_true_if_should_convert; + stbi__de_iphone_flag_set = 1; +} + +#define stbi__unpremultiply_on_load (stbi__unpremultiply_on_load_set \ + ? stbi__unpremultiply_on_load_local \ + : stbi__unpremultiply_on_load_global) +#define stbi__de_iphone_flag (stbi__de_iphone_flag_set \ + ? stbi__de_iphone_flag_local \ + : stbi__de_iphone_flag_global) +#endif // STBI_THREAD_LOCAL + +static void stbi__de_iphone(stbi__png *z) +{ + stbi__context *s = z->s; + stbi__uint32 i, pixel_count = s->img_x * s->img_y; + stbi_uc *p = z->out; + + if (s->img_out_n == 3) { // convert bgr to rgb + for (i=0; i < pixel_count; ++i) { + stbi_uc t = p[0]; + p[0] = p[2]; + p[2] = t; + p += 3; + } + } else { + STBI_ASSERT(s->img_out_n == 4); + if (stbi__unpremultiply_on_load) { + // convert bgr to rgb and unpremultiply + for (i=0; i < pixel_count; ++i) { + stbi_uc a = p[3]; + stbi_uc t = p[0]; + if (a) { + stbi_uc half = a / 2; + p[0] = (p[2] * 255 + half) / a; + p[1] = (p[1] * 255 + half) / a; + p[2] = ( t * 255 + half) / a; + } else { + p[0] = p[2]; + p[2] = t; + } + p += 4; + } + } else { + // convert bgr to rgb + for (i=0; i < pixel_count; ++i) { + stbi_uc t = p[0]; + p[0] = p[2]; + p[2] = t; + p += 4; + } + } + } +} + +#define STBI__PNG_TYPE(a,b,c,d) (((unsigned) (a) << 24) + ((unsigned) (b) << 16) + ((unsigned) (c) << 8) + (unsigned) (d)) + +static int stbi__parse_png_file(stbi__png *z, int scan, int req_comp) +{ + stbi_uc palette[1024], pal_img_n=0; + stbi_uc has_trans=0, tc[3]={0}; + stbi__uint16 tc16[3]; + stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0; + int first=1,k,interlace=0, color=0, is_iphone=0; + stbi__context *s = z->s; + + z->expanded = NULL; + z->idata = NULL; + z->out = NULL; + + if (!stbi__check_png_header(s)) return 0; + + if (scan == STBI__SCAN_type) return 1; + + for (;;) { + stbi__pngchunk c = stbi__get_chunk_header(s); + switch (c.type) { + case STBI__PNG_TYPE('C','g','B','I'): + is_iphone = 1; + stbi__skip(s, c.length); + break; + case STBI__PNG_TYPE('I','H','D','R'): { + int comp,filter; + if (!first) return stbi__err("multiple IHDR","Corrupt PNG"); + first = 0; + if (c.length != 13) return stbi__err("bad IHDR len","Corrupt PNG"); + s->img_x = stbi__get32be(s); + s->img_y = stbi__get32be(s); + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + z->depth = stbi__get8(s); if (z->depth != 1 && z->depth != 2 && z->depth != 4 && z->depth != 8 && z->depth != 16) return stbi__err("1/2/4/8/16-bit only","PNG not supported: 1/2/4/8/16-bit only"); + color = stbi__get8(s); if (color > 6) return stbi__err("bad ctype","Corrupt PNG"); + if (color == 3 && z->depth == 16) return stbi__err("bad ctype","Corrupt PNG"); + if (color == 3) pal_img_n = 3; else if (color & 1) return stbi__err("bad ctype","Corrupt PNG"); + comp = stbi__get8(s); if (comp) return stbi__err("bad comp method","Corrupt PNG"); + filter= stbi__get8(s); if (filter) return stbi__err("bad filter method","Corrupt PNG"); + interlace = stbi__get8(s); if (interlace>1) return stbi__err("bad interlace method","Corrupt PNG"); + if (!s->img_x || !s->img_y) return stbi__err("0-pixel image","Corrupt PNG"); + if (!pal_img_n) { + s->img_n = (color & 2 ? 3 : 1) + (color & 4 ? 1 : 0); + if ((1 << 30) / s->img_x / s->img_n < s->img_y) return stbi__err("too large", "Image too large to decode"); + } else { + // if paletted, then pal_n is our final components, and + // img_n is # components to decompress/filter. + s->img_n = 1; + if ((1 << 30) / s->img_x / 4 < s->img_y) return stbi__err("too large","Corrupt PNG"); + } + // even with SCAN_header, have to scan to see if we have a tRNS + break; + } + + case STBI__PNG_TYPE('P','L','T','E'): { + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (c.length > 256*3) return stbi__err("invalid PLTE","Corrupt PNG"); + pal_len = c.length / 3; + if (pal_len * 3 != c.length) return stbi__err("invalid PLTE","Corrupt PNG"); + for (i=0; i < pal_len; ++i) { + palette[i*4+0] = stbi__get8(s); + palette[i*4+1] = stbi__get8(s); + palette[i*4+2] = stbi__get8(s); + palette[i*4+3] = 255; + } + break; + } + + case STBI__PNG_TYPE('t','R','N','S'): { + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (z->idata) return stbi__err("tRNS after IDAT","Corrupt PNG"); + if (pal_img_n) { + if (scan == STBI__SCAN_header) { s->img_n = 4; return 1; } + if (pal_len == 0) return stbi__err("tRNS before PLTE","Corrupt PNG"); + if (c.length > pal_len) return stbi__err("bad tRNS len","Corrupt PNG"); + pal_img_n = 4; + for (i=0; i < c.length; ++i) + palette[i*4+3] = stbi__get8(s); + } else { + if (!(s->img_n & 1)) return stbi__err("tRNS with alpha","Corrupt PNG"); + if (c.length != (stbi__uint32) s->img_n*2) return stbi__err("bad tRNS len","Corrupt PNG"); + has_trans = 1; + // non-paletted with tRNS = constant alpha. if header-scanning, we can stop now. + if (scan == STBI__SCAN_header) { ++s->img_n; return 1; } + if (z->depth == 16) { + for (k = 0; k < s->img_n && k < 3; ++k) // extra loop test to suppress false GCC warning + tc16[k] = (stbi__uint16)stbi__get16be(s); // copy the values as-is + } else { + for (k = 0; k < s->img_n && k < 3; ++k) + tc[k] = (stbi_uc)(stbi__get16be(s) & 255) * stbi__depth_scale_table[z->depth]; // non 8-bit images will be larger + } + } + break; + } + + case STBI__PNG_TYPE('I','D','A','T'): { + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (pal_img_n && !pal_len) return stbi__err("no PLTE","Corrupt PNG"); + if (scan == STBI__SCAN_header) { + // header scan definitely stops at first IDAT + if (pal_img_n) + s->img_n = pal_img_n; + return 1; + } + if (c.length > (1u << 30)) return stbi__err("IDAT size limit", "IDAT section larger than 2^30 bytes"); + if ((int)(ioff + c.length) < (int)ioff) return 0; + if (ioff + c.length > idata_limit) { + stbi__uint32 idata_limit_old = idata_limit; + stbi_uc *p; + if (idata_limit == 0) idata_limit = c.length > 4096 ? c.length : 4096; + while (ioff + c.length > idata_limit) + idata_limit *= 2; + STBI_NOTUSED(idata_limit_old); + p = (stbi_uc *) STBI_REALLOC_SIZED(z->idata, idata_limit_old, idata_limit); if (p == NULL) return stbi__err("outofmem", "Out of memory"); + z->idata = p; + } + if (!stbi__getn(s, z->idata+ioff,c.length)) return stbi__err("outofdata","Corrupt PNG"); + ioff += c.length; + break; + } + + case STBI__PNG_TYPE('I','E','N','D'): { + stbi__uint32 raw_len, bpl; + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if (scan != STBI__SCAN_load) return 1; + if (z->idata == NULL) return stbi__err("no IDAT","Corrupt PNG"); + // initial guess for decoded data size to avoid unnecessary reallocs + bpl = (s->img_x * z->depth + 7) / 8; // bytes per line, per component + raw_len = bpl * s->img_y * s->img_n /* pixels */ + s->img_y /* filter mode per row */; + z->expanded = (stbi_uc *) stbi_zlib_decode_malloc_guesssize_headerflag((char *) z->idata, ioff, raw_len, (int *) &raw_len, !is_iphone); + if (z->expanded == NULL) return 0; // zlib should set error + STBI_FREE(z->idata); z->idata = NULL; + if ((req_comp == s->img_n+1 && req_comp != 3 && !pal_img_n) || has_trans) + s->img_out_n = s->img_n+1; + else + s->img_out_n = s->img_n; + if (!stbi__create_png_image(z, z->expanded, raw_len, s->img_out_n, z->depth, color, interlace)) return 0; + if (has_trans) { + if (z->depth == 16) { + if (!stbi__compute_transparency16(z, tc16, s->img_out_n)) return 0; + } else { + if (!stbi__compute_transparency(z, tc, s->img_out_n)) return 0; + } + } + if (is_iphone && stbi__de_iphone_flag && s->img_out_n > 2) + stbi__de_iphone(z); + if (pal_img_n) { + // pal_img_n == 3 or 4 + s->img_n = pal_img_n; // record the actual colors we had + s->img_out_n = pal_img_n; + if (req_comp >= 3) s->img_out_n = req_comp; + if (!stbi__expand_png_palette(z, palette, pal_len, s->img_out_n)) + return 0; + } else if (has_trans) { + // non-paletted image with tRNS -> source image has (constant) alpha + ++s->img_n; + } + STBI_FREE(z->expanded); z->expanded = NULL; + // end of PNG chunk, read and skip CRC + stbi__get32be(s); + return 1; + } + + default: + // if critical, fail + if (first) return stbi__err("first not IHDR", "Corrupt PNG"); + if ((c.type & (1 << 29)) == 0) { + #ifndef STBI_NO_FAILURE_STRINGS + // not threadsafe + static char invalid_chunk[] = "XXXX PNG chunk not known"; + invalid_chunk[0] = STBI__BYTECAST(c.type >> 24); + invalid_chunk[1] = STBI__BYTECAST(c.type >> 16); + invalid_chunk[2] = STBI__BYTECAST(c.type >> 8); + invalid_chunk[3] = STBI__BYTECAST(c.type >> 0); + #endif + return stbi__err(invalid_chunk, "PNG not supported: unknown PNG chunk type"); + } + stbi__skip(s, c.length); + break; + } + // end of PNG chunk, read and skip CRC + stbi__get32be(s); + } +} + +static void *stbi__do_png(stbi__png *p, int *x, int *y, int *n, int req_comp, stbi__result_info *ri) +{ + void *result=NULL; + if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error"); + if (stbi__parse_png_file(p, STBI__SCAN_load, req_comp)) { + if (p->depth <= 8) + ri->bits_per_channel = 8; + else if (p->depth == 16) + ri->bits_per_channel = 16; + else + return stbi__errpuc("bad bits_per_channel", "PNG not supported: unsupported color depth"); + result = p->out; + p->out = NULL; + if (req_comp && req_comp != p->s->img_out_n) { + if (ri->bits_per_channel == 8) + result = stbi__convert_format((unsigned char *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y); + else + result = stbi__convert_format16((stbi__uint16 *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y); + p->s->img_out_n = req_comp; + if (result == NULL) return result; + } + *x = p->s->img_x; + *y = p->s->img_y; + if (n) *n = p->s->img_n; + } + STBI_FREE(p->out); p->out = NULL; + STBI_FREE(p->expanded); p->expanded = NULL; + STBI_FREE(p->idata); p->idata = NULL; + + return result; +} + +static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi__png p; + p.s = s; + return stbi__do_png(&p, x,y,comp,req_comp, ri); +} + +static int stbi__png_test(stbi__context *s) +{ + int r; + r = stbi__check_png_header(s); + stbi__rewind(s); + return r; +} + +static int stbi__png_info_raw(stbi__png *p, int *x, int *y, int *comp) +{ + if (!stbi__parse_png_file(p, STBI__SCAN_header, 0)) { + stbi__rewind( p->s ); + return 0; + } + if (x) *x = p->s->img_x; + if (y) *y = p->s->img_y; + if (comp) *comp = p->s->img_n; + return 1; +} + +static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp) +{ + stbi__png p; + p.s = s; + return stbi__png_info_raw(&p, x, y, comp); +} + +static int stbi__png_is16(stbi__context *s) +{ + stbi__png p; + p.s = s; + if (!stbi__png_info_raw(&p, NULL, NULL, NULL)) + return 0; + if (p.depth != 16) { + stbi__rewind(p.s); + return 0; + } + return 1; +} +#endif + +// Microsoft/Windows BMP image + +#ifndef STBI_NO_BMP +static int stbi__bmp_test_raw(stbi__context *s) +{ + int r; + int sz; + if (stbi__get8(s) != 'B') return 0; + if (stbi__get8(s) != 'M') return 0; + stbi__get32le(s); // discard filesize + stbi__get16le(s); // discard reserved + stbi__get16le(s); // discard reserved + stbi__get32le(s); // discard data offset + sz = stbi__get32le(s); + r = (sz == 12 || sz == 40 || sz == 56 || sz == 108 || sz == 124); + return r; +} + +static int stbi__bmp_test(stbi__context *s) +{ + int r = stbi__bmp_test_raw(s); + stbi__rewind(s); + return r; +} + + +// returns 0..31 for the highest set bit +static int stbi__high_bit(unsigned int z) +{ + int n=0; + if (z == 0) return -1; + if (z >= 0x10000) { n += 16; z >>= 16; } + if (z >= 0x00100) { n += 8; z >>= 8; } + if (z >= 0x00010) { n += 4; z >>= 4; } + if (z >= 0x00004) { n += 2; z >>= 2; } + if (z >= 0x00002) { n += 1;/* >>= 1;*/ } + return n; +} + +static int stbi__bitcount(unsigned int a) +{ + a = (a & 0x55555555) + ((a >> 1) & 0x55555555); // max 2 + a = (a & 0x33333333) + ((a >> 2) & 0x33333333); // max 4 + a = (a + (a >> 4)) & 0x0f0f0f0f; // max 8 per 4, now 8 bits + a = (a + (a >> 8)); // max 16 per 8 bits + a = (a + (a >> 16)); // max 32 per 8 bits + return a & 0xff; +} + +// extract an arbitrarily-aligned N-bit value (N=bits) +// from v, and then make it 8-bits long and fractionally +// extend it to full full range. +static int stbi__shiftsigned(unsigned int v, int shift, int bits) +{ + static unsigned int mul_table[9] = { + 0, + 0xff/*0b11111111*/, 0x55/*0b01010101*/, 0x49/*0b01001001*/, 0x11/*0b00010001*/, + 0x21/*0b00100001*/, 0x41/*0b01000001*/, 0x81/*0b10000001*/, 0x01/*0b00000001*/, + }; + static unsigned int shift_table[9] = { + 0, 0,0,1,0,2,4,6,0, + }; + if (shift < 0) + v <<= -shift; + else + v >>= shift; + STBI_ASSERT(v < 256); + v >>= (8-bits); + STBI_ASSERT(bits >= 0 && bits <= 8); + return (int) ((unsigned) v * mul_table[bits]) >> shift_table[bits]; +} + +typedef struct +{ + int bpp, offset, hsz; + unsigned int mr,mg,mb,ma, all_a; + int extra_read; +} stbi__bmp_data; + +static int stbi__bmp_set_mask_defaults(stbi__bmp_data *info, int compress) +{ + // BI_BITFIELDS specifies masks explicitly, don't override + if (compress == 3) + return 1; + + if (compress == 0) { + if (info->bpp == 16) { + info->mr = 31u << 10; + info->mg = 31u << 5; + info->mb = 31u << 0; + } else if (info->bpp == 32) { + info->mr = 0xffu << 16; + info->mg = 0xffu << 8; + info->mb = 0xffu << 0; + info->ma = 0xffu << 24; + info->all_a = 0; // if all_a is 0 at end, then we loaded alpha channel but it was all 0 + } else { + // otherwise, use defaults, which is all-0 + info->mr = info->mg = info->mb = info->ma = 0; + } + return 1; + } + return 0; // error +} + +static void *stbi__bmp_parse_header(stbi__context *s, stbi__bmp_data *info) +{ + int hsz; + if (stbi__get8(s) != 'B' || stbi__get8(s) != 'M') return stbi__errpuc("not BMP", "Corrupt BMP"); + stbi__get32le(s); // discard filesize + stbi__get16le(s); // discard reserved + stbi__get16le(s); // discard reserved + info->offset = stbi__get32le(s); + info->hsz = hsz = stbi__get32le(s); + info->mr = info->mg = info->mb = info->ma = 0; + info->extra_read = 14; + + if (info->offset < 0) return stbi__errpuc("bad BMP", "bad BMP"); + + if (hsz != 12 && hsz != 40 && hsz != 56 && hsz != 108 && hsz != 124) return stbi__errpuc("unknown BMP", "BMP type not supported: unknown"); + if (hsz == 12) { + s->img_x = stbi__get16le(s); + s->img_y = stbi__get16le(s); + } else { + s->img_x = stbi__get32le(s); + s->img_y = stbi__get32le(s); + } + if (stbi__get16le(s) != 1) return stbi__errpuc("bad BMP", "bad BMP"); + info->bpp = stbi__get16le(s); + if (hsz != 12) { + int compress = stbi__get32le(s); + if (compress == 1 || compress == 2) return stbi__errpuc("BMP RLE", "BMP type not supported: RLE"); + if (compress >= 4) return stbi__errpuc("BMP JPEG/PNG", "BMP type not supported: unsupported compression"); // this includes PNG/JPEG modes + if (compress == 3 && info->bpp != 16 && info->bpp != 32) return stbi__errpuc("bad BMP", "bad BMP"); // bitfields requires 16 or 32 bits/pixel + stbi__get32le(s); // discard sizeof + stbi__get32le(s); // discard hres + stbi__get32le(s); // discard vres + stbi__get32le(s); // discard colorsused + stbi__get32le(s); // discard max important + if (hsz == 40 || hsz == 56) { + if (hsz == 56) { + stbi__get32le(s); + stbi__get32le(s); + stbi__get32le(s); + stbi__get32le(s); + } + if (info->bpp == 16 || info->bpp == 32) { + if (compress == 0) { + stbi__bmp_set_mask_defaults(info, compress); + } else if (compress == 3) { + info->mr = stbi__get32le(s); + info->mg = stbi__get32le(s); + info->mb = stbi__get32le(s); + info->extra_read += 12; + // not documented, but generated by photoshop and handled by mspaint + if (info->mr == info->mg && info->mg == info->mb) { + // ?!?!? + return stbi__errpuc("bad BMP", "bad BMP"); + } + } else + return stbi__errpuc("bad BMP", "bad BMP"); + } + } else { + // V4/V5 header + int i; + if (hsz != 108 && hsz != 124) + return stbi__errpuc("bad BMP", "bad BMP"); + info->mr = stbi__get32le(s); + info->mg = stbi__get32le(s); + info->mb = stbi__get32le(s); + info->ma = stbi__get32le(s); + if (compress != 3) // override mr/mg/mb unless in BI_BITFIELDS mode, as per docs + stbi__bmp_set_mask_defaults(info, compress); + stbi__get32le(s); // discard color space + for (i=0; i < 12; ++i) + stbi__get32le(s); // discard color space parameters + if (hsz == 124) { + stbi__get32le(s); // discard rendering intent + stbi__get32le(s); // discard offset of profile data + stbi__get32le(s); // discard size of profile data + stbi__get32le(s); // discard reserved + } + } + } + return (void *) 1; +} + + +static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi_uc *out; + unsigned int mr=0,mg=0,mb=0,ma=0, all_a; + stbi_uc pal[256][4]; + int psize=0,i,j,width; + int flip_vertically, pad, target; + stbi__bmp_data info; + STBI_NOTUSED(ri); + + info.all_a = 255; + if (stbi__bmp_parse_header(s, &info) == NULL) + return NULL; // error code already set + + flip_vertically = ((int) s->img_y) > 0; + s->img_y = abs((int) s->img_y); + + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + mr = info.mr; + mg = info.mg; + mb = info.mb; + ma = info.ma; + all_a = info.all_a; + + if (info.hsz == 12) { + if (info.bpp < 24) + psize = (info.offset - info.extra_read - 24) / 3; + } else { + if (info.bpp < 16) + psize = (info.offset - info.extra_read - info.hsz) >> 2; + } + if (psize == 0) { + // accept some number of extra bytes after the header, but if the offset points either to before + // the header ends or implies a large amount of extra data, reject the file as malformed + int bytes_read_so_far = s->callback_already_read + (int)(s->img_buffer - s->img_buffer_original); + int header_limit = 1024; // max we actually read is below 256 bytes currently. + int extra_data_limit = 256*4; // what ordinarily goes here is a palette; 256 entries*4 bytes is its max size. + if (bytes_read_so_far <= 0 || bytes_read_so_far > header_limit) { + return stbi__errpuc("bad header", "Corrupt BMP"); + } + // we established that bytes_read_so_far is positive and sensible. + // the first half of this test rejects offsets that are either too small positives, or + // negative, and guarantees that info.offset >= bytes_read_so_far > 0. this in turn + // ensures the number computed in the second half of the test can't overflow. + if (info.offset < bytes_read_so_far || info.offset - bytes_read_so_far > extra_data_limit) { + return stbi__errpuc("bad offset", "Corrupt BMP"); + } else { + stbi__skip(s, info.offset - bytes_read_so_far); + } + } + + if (info.bpp == 24 && ma == 0xff000000) + s->img_n = 3; + else + s->img_n = ma ? 4 : 3; + if (req_comp && req_comp >= 3) // we can directly decode 3 or 4 + target = req_comp; + else + target = s->img_n; // if they want monochrome, we'll post-convert + + // sanity-check size + if (!stbi__mad3sizes_valid(target, s->img_x, s->img_y, 0)) + return stbi__errpuc("too large", "Corrupt BMP"); + + out = (stbi_uc *) stbi__malloc_mad3(target, s->img_x, s->img_y, 0); + if (!out) return stbi__errpuc("outofmem", "Out of memory"); + if (info.bpp < 16) { + int z=0; + if (psize == 0 || psize > 256) { STBI_FREE(out); return stbi__errpuc("invalid", "Corrupt BMP"); } + for (i=0; i < psize; ++i) { + pal[i][2] = stbi__get8(s); + pal[i][1] = stbi__get8(s); + pal[i][0] = stbi__get8(s); + if (info.hsz != 12) stbi__get8(s); + pal[i][3] = 255; + } + stbi__skip(s, info.offset - info.extra_read - info.hsz - psize * (info.hsz == 12 ? 3 : 4)); + if (info.bpp == 1) width = (s->img_x + 7) >> 3; + else if (info.bpp == 4) width = (s->img_x + 1) >> 1; + else if (info.bpp == 8) width = s->img_x; + else { STBI_FREE(out); return stbi__errpuc("bad bpp", "Corrupt BMP"); } + pad = (-width)&3; + if (info.bpp == 1) { + for (j=0; j < (int) s->img_y; ++j) { + int bit_offset = 7, v = stbi__get8(s); + for (i=0; i < (int) s->img_x; ++i) { + int color = (v>>bit_offset)&0x1; + out[z++] = pal[color][0]; + out[z++] = pal[color][1]; + out[z++] = pal[color][2]; + if (target == 4) out[z++] = 255; + if (i+1 == (int) s->img_x) break; + if((--bit_offset) < 0) { + bit_offset = 7; + v = stbi__get8(s); + } + } + stbi__skip(s, pad); + } + } else { + for (j=0; j < (int) s->img_y; ++j) { + for (i=0; i < (int) s->img_x; i += 2) { + int v=stbi__get8(s),v2=0; + if (info.bpp == 4) { + v2 = v & 15; + v >>= 4; + } + out[z++] = pal[v][0]; + out[z++] = pal[v][1]; + out[z++] = pal[v][2]; + if (target == 4) out[z++] = 255; + if (i+1 == (int) s->img_x) break; + v = (info.bpp == 8) ? stbi__get8(s) : v2; + out[z++] = pal[v][0]; + out[z++] = pal[v][1]; + out[z++] = pal[v][2]; + if (target == 4) out[z++] = 255; + } + stbi__skip(s, pad); + } + } + } else { + int rshift=0,gshift=0,bshift=0,ashift=0,rcount=0,gcount=0,bcount=0,acount=0; + int z = 0; + int easy=0; + stbi__skip(s, info.offset - info.extra_read - info.hsz); + if (info.bpp == 24) width = 3 * s->img_x; + else if (info.bpp == 16) width = 2*s->img_x; + else /* bpp = 32 and pad = 0 */ width=0; + pad = (-width) & 3; + if (info.bpp == 24) { + easy = 1; + } else if (info.bpp == 32) { + if (mb == 0xff && mg == 0xff00 && mr == 0x00ff0000 && ma == 0xff000000) + easy = 2; + } + if (!easy) { + if (!mr || !mg || !mb) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); } + // right shift amt to put high bit in position #7 + rshift = stbi__high_bit(mr)-7; rcount = stbi__bitcount(mr); + gshift = stbi__high_bit(mg)-7; gcount = stbi__bitcount(mg); + bshift = stbi__high_bit(mb)-7; bcount = stbi__bitcount(mb); + ashift = stbi__high_bit(ma)-7; acount = stbi__bitcount(ma); + if (rcount > 8 || gcount > 8 || bcount > 8 || acount > 8) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); } + } + for (j=0; j < (int) s->img_y; ++j) { + if (easy) { + for (i=0; i < (int) s->img_x; ++i) { + unsigned char a; + out[z+2] = stbi__get8(s); + out[z+1] = stbi__get8(s); + out[z+0] = stbi__get8(s); + z += 3; + a = (easy == 2 ? stbi__get8(s) : 255); + all_a |= a; + if (target == 4) out[z++] = a; + } + } else { + int bpp = info.bpp; + for (i=0; i < (int) s->img_x; ++i) { + stbi__uint32 v = (bpp == 16 ? (stbi__uint32) stbi__get16le(s) : stbi__get32le(s)); + unsigned int a; + out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mr, rshift, rcount)); + out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mg, gshift, gcount)); + out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mb, bshift, bcount)); + a = (ma ? stbi__shiftsigned(v & ma, ashift, acount) : 255); + all_a |= a; + if (target == 4) out[z++] = STBI__BYTECAST(a); + } + } + stbi__skip(s, pad); + } + } + + // if alpha channel is all 0s, replace with all 255s + if (target == 4 && all_a == 0) + for (i=4*s->img_x*s->img_y-1; i >= 0; i -= 4) + out[i] = 255; + + if (flip_vertically) { + stbi_uc t; + for (j=0; j < (int) s->img_y>>1; ++j) { + stbi_uc *p1 = out + j *s->img_x*target; + stbi_uc *p2 = out + (s->img_y-1-j)*s->img_x*target; + for (i=0; i < (int) s->img_x*target; ++i) { + t = p1[i]; p1[i] = p2[i]; p2[i] = t; + } + } + } + + if (req_comp && req_comp != target) { + out = stbi__convert_format(out, target, req_comp, s->img_x, s->img_y); + if (out == NULL) return out; // stbi__convert_format frees input on failure + } + + *x = s->img_x; + *y = s->img_y; + if (comp) *comp = s->img_n; + return out; +} +#endif + +// Targa Truevision - TGA +// by Jonathan Dummer +#ifndef STBI_NO_TGA +// returns STBI_rgb or whatever, 0 on error +static int stbi__tga_get_comp(int bits_per_pixel, int is_grey, int* is_rgb16) +{ + // only RGB or RGBA (incl. 16bit) or grey allowed + if (is_rgb16) *is_rgb16 = 0; + switch(bits_per_pixel) { + case 8: return STBI_grey; + case 16: if(is_grey) return STBI_grey_alpha; + // fallthrough + case 15: if(is_rgb16) *is_rgb16 = 1; + return STBI_rgb; + case 24: // fallthrough + case 32: return bits_per_pixel/8; + default: return 0; + } +} + +static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp) +{ + int tga_w, tga_h, tga_comp, tga_image_type, tga_bits_per_pixel, tga_colormap_bpp; + int sz, tga_colormap_type; + stbi__get8(s); // discard Offset + tga_colormap_type = stbi__get8(s); // colormap type + if( tga_colormap_type > 1 ) { + stbi__rewind(s); + return 0; // only RGB or indexed allowed + } + tga_image_type = stbi__get8(s); // image type + if ( tga_colormap_type == 1 ) { // colormapped (paletted) image + if (tga_image_type != 1 && tga_image_type != 9) { + stbi__rewind(s); + return 0; + } + stbi__skip(s,4); // skip index of first colormap entry and number of entries + sz = stbi__get8(s); // check bits per palette color entry + if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) { + stbi__rewind(s); + return 0; + } + stbi__skip(s,4); // skip image x and y origin + tga_colormap_bpp = sz; + } else { // "normal" image w/o colormap - only RGB or grey allowed, +/- RLE + if ( (tga_image_type != 2) && (tga_image_type != 3) && (tga_image_type != 10) && (tga_image_type != 11) ) { + stbi__rewind(s); + return 0; // only RGB or grey allowed, +/- RLE + } + stbi__skip(s,9); // skip colormap specification and image x/y origin + tga_colormap_bpp = 0; + } + tga_w = stbi__get16le(s); + if( tga_w < 1 ) { + stbi__rewind(s); + return 0; // test width + } + tga_h = stbi__get16le(s); + if( tga_h < 1 ) { + stbi__rewind(s); + return 0; // test height + } + tga_bits_per_pixel = stbi__get8(s); // bits per pixel + stbi__get8(s); // ignore alpha bits + if (tga_colormap_bpp != 0) { + if((tga_bits_per_pixel != 8) && (tga_bits_per_pixel != 16)) { + // when using a colormap, tga_bits_per_pixel is the size of the indexes + // I don't think anything but 8 or 16bit indexes makes sense + stbi__rewind(s); + return 0; + } + tga_comp = stbi__tga_get_comp(tga_colormap_bpp, 0, NULL); + } else { + tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3) || (tga_image_type == 11), NULL); + } + if(!tga_comp) { + stbi__rewind(s); + return 0; + } + if (x) *x = tga_w; + if (y) *y = tga_h; + if (comp) *comp = tga_comp; + return 1; // seems to have passed everything +} + +static int stbi__tga_test(stbi__context *s) +{ + int res = 0; + int sz, tga_color_type; + stbi__get8(s); // discard Offset + tga_color_type = stbi__get8(s); // color type + if ( tga_color_type > 1 ) goto errorEnd; // only RGB or indexed allowed + sz = stbi__get8(s); // image type + if ( tga_color_type == 1 ) { // colormapped (paletted) image + if (sz != 1 && sz != 9) goto errorEnd; // colortype 1 demands image type 1 or 9 + stbi__skip(s,4); // skip index of first colormap entry and number of entries + sz = stbi__get8(s); // check bits per palette color entry + if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd; + stbi__skip(s,4); // skip image x and y origin + } else { // "normal" image w/o colormap + if ( (sz != 2) && (sz != 3) && (sz != 10) && (sz != 11) ) goto errorEnd; // only RGB or grey allowed, +/- RLE + stbi__skip(s,9); // skip colormap specification and image x/y origin + } + if ( stbi__get16le(s) < 1 ) goto errorEnd; // test width + if ( stbi__get16le(s) < 1 ) goto errorEnd; // test height + sz = stbi__get8(s); // bits per pixel + if ( (tga_color_type == 1) && (sz != 8) && (sz != 16) ) goto errorEnd; // for colormapped images, bpp is size of an index + if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd; + + res = 1; // if we got this far, everything's good and we can return 1 instead of 0 + +errorEnd: + stbi__rewind(s); + return res; +} + +// read 16bit value and convert to 24bit RGB +static void stbi__tga_read_rgb16(stbi__context *s, stbi_uc* out) +{ + stbi__uint16 px = (stbi__uint16)stbi__get16le(s); + stbi__uint16 fiveBitMask = 31; + // we have 3 channels with 5bits each + int r = (px >> 10) & fiveBitMask; + int g = (px >> 5) & fiveBitMask; + int b = px & fiveBitMask; + // Note that this saves the data in RGB(A) order, so it doesn't need to be swapped later + out[0] = (stbi_uc)((r * 255)/31); + out[1] = (stbi_uc)((g * 255)/31); + out[2] = (stbi_uc)((b * 255)/31); + + // some people claim that the most significant bit might be used for alpha + // (possibly if an alpha-bit is set in the "image descriptor byte") + // but that only made 16bit test images completely translucent.. + // so let's treat all 15 and 16bit TGAs as RGB with no alpha. +} + +static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + // read in the TGA header stuff + int tga_offset = stbi__get8(s); + int tga_indexed = stbi__get8(s); + int tga_image_type = stbi__get8(s); + int tga_is_RLE = 0; + int tga_palette_start = stbi__get16le(s); + int tga_palette_len = stbi__get16le(s); + int tga_palette_bits = stbi__get8(s); + int tga_x_origin = stbi__get16le(s); + int tga_y_origin = stbi__get16le(s); + int tga_width = stbi__get16le(s); + int tga_height = stbi__get16le(s); + int tga_bits_per_pixel = stbi__get8(s); + int tga_comp, tga_rgb16=0; + int tga_inverted = stbi__get8(s); + // int tga_alpha_bits = tga_inverted & 15; // the 4 lowest bits - unused (useless?) + // image data + unsigned char *tga_data; + unsigned char *tga_palette = NULL; + int i, j; + unsigned char raw_data[4] = {0}; + int RLE_count = 0; + int RLE_repeating = 0; + int read_next_pixel = 1; + STBI_NOTUSED(ri); + STBI_NOTUSED(tga_x_origin); // @TODO + STBI_NOTUSED(tga_y_origin); // @TODO + + if (tga_height > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (tga_width > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + // do a tiny bit of precessing + if ( tga_image_type >= 8 ) + { + tga_image_type -= 8; + tga_is_RLE = 1; + } + tga_inverted = 1 - ((tga_inverted >> 5) & 1); + + // If I'm paletted, then I'll use the number of bits from the palette + if ( tga_indexed ) tga_comp = stbi__tga_get_comp(tga_palette_bits, 0, &tga_rgb16); + else tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3), &tga_rgb16); + + if(!tga_comp) // shouldn't really happen, stbi__tga_test() should have ensured basic consistency + return stbi__errpuc("bad format", "Can't find out TGA pixelformat"); + + // tga info + *x = tga_width; + *y = tga_height; + if (comp) *comp = tga_comp; + + if (!stbi__mad3sizes_valid(tga_width, tga_height, tga_comp, 0)) + return stbi__errpuc("too large", "Corrupt TGA"); + + tga_data = (unsigned char*)stbi__malloc_mad3(tga_width, tga_height, tga_comp, 0); + if (!tga_data) return stbi__errpuc("outofmem", "Out of memory"); + + // skip to the data's starting position (offset usually = 0) + stbi__skip(s, tga_offset ); + + if ( !tga_indexed && !tga_is_RLE && !tga_rgb16 ) { + for (i=0; i < tga_height; ++i) { + int row = tga_inverted ? tga_height -i - 1 : i; + stbi_uc *tga_row = tga_data + row*tga_width*tga_comp; + stbi__getn(s, tga_row, tga_width * tga_comp); + } + } else { + // do I need to load a palette? + if ( tga_indexed) + { + if (tga_palette_len == 0) { /* you have to have at least one entry! */ + STBI_FREE(tga_data); + return stbi__errpuc("bad palette", "Corrupt TGA"); + } + + // any data to skip? (offset usually = 0) + stbi__skip(s, tga_palette_start ); + // load the palette + tga_palette = (unsigned char*)stbi__malloc_mad2(tga_palette_len, tga_comp, 0); + if (!tga_palette) { + STBI_FREE(tga_data); + return stbi__errpuc("outofmem", "Out of memory"); + } + if (tga_rgb16) { + stbi_uc *pal_entry = tga_palette; + STBI_ASSERT(tga_comp == STBI_rgb); + for (i=0; i < tga_palette_len; ++i) { + stbi__tga_read_rgb16(s, pal_entry); + pal_entry += tga_comp; + } + } else if (!stbi__getn(s, tga_palette, tga_palette_len * tga_comp)) { + STBI_FREE(tga_data); + STBI_FREE(tga_palette); + return stbi__errpuc("bad palette", "Corrupt TGA"); + } + } + // load the data + for (i=0; i < tga_width * tga_height; ++i) + { + // if I'm in RLE mode, do I need to get a RLE stbi__pngchunk? + if ( tga_is_RLE ) + { + if ( RLE_count == 0 ) + { + // yep, get the next byte as a RLE command + int RLE_cmd = stbi__get8(s); + RLE_count = 1 + (RLE_cmd & 127); + RLE_repeating = RLE_cmd >> 7; + read_next_pixel = 1; + } else if ( !RLE_repeating ) + { + read_next_pixel = 1; + } + } else + { + read_next_pixel = 1; + } + // OK, if I need to read a pixel, do it now + if ( read_next_pixel ) + { + // load however much data we did have + if ( tga_indexed ) + { + // read in index, then perform the lookup + int pal_idx = (tga_bits_per_pixel == 8) ? stbi__get8(s) : stbi__get16le(s); + if ( pal_idx >= tga_palette_len ) { + // invalid index + pal_idx = 0; + } + pal_idx *= tga_comp; + for (j = 0; j < tga_comp; ++j) { + raw_data[j] = tga_palette[pal_idx+j]; + } + } else if(tga_rgb16) { + STBI_ASSERT(tga_comp == STBI_rgb); + stbi__tga_read_rgb16(s, raw_data); + } else { + // read in the data raw + for (j = 0; j < tga_comp; ++j) { + raw_data[j] = stbi__get8(s); + } + } + // clear the reading flag for the next pixel + read_next_pixel = 0; + } // end of reading a pixel + + // copy data + for (j = 0; j < tga_comp; ++j) + tga_data[i*tga_comp+j] = raw_data[j]; + + // in case we're in RLE mode, keep counting down + --RLE_count; + } + // do I need to invert the image? + if ( tga_inverted ) + { + for (j = 0; j*2 < tga_height; ++j) + { + int index1 = j * tga_width * tga_comp; + int index2 = (tga_height - 1 - j) * tga_width * tga_comp; + for (i = tga_width * tga_comp; i > 0; --i) + { + unsigned char temp = tga_data[index1]; + tga_data[index1] = tga_data[index2]; + tga_data[index2] = temp; + ++index1; + ++index2; + } + } + } + // clear my palette, if I had one + if ( tga_palette != NULL ) + { + STBI_FREE( tga_palette ); + } + } + + // swap RGB - if the source data was RGB16, it already is in the right order + if (tga_comp >= 3 && !tga_rgb16) + { + unsigned char* tga_pixel = tga_data; + for (i=0; i < tga_width * tga_height; ++i) + { + unsigned char temp = tga_pixel[0]; + tga_pixel[0] = tga_pixel[2]; + tga_pixel[2] = temp; + tga_pixel += tga_comp; + } + } + + // convert to target component count + if (req_comp && req_comp != tga_comp) + tga_data = stbi__convert_format(tga_data, tga_comp, req_comp, tga_width, tga_height); + + // the things I do to get rid of an error message, and yet keep + // Microsoft's C compilers happy... [8^( + tga_palette_start = tga_palette_len = tga_palette_bits = + tga_x_origin = tga_y_origin = 0; + STBI_NOTUSED(tga_palette_start); + // OK, done + return tga_data; +} +#endif + +// ************************************************************************************************* +// Photoshop PSD loader -- PD by Thatcher Ulrich, integration by Nicolas Schulz, tweaked by STB + +#ifndef STBI_NO_PSD +static int stbi__psd_test(stbi__context *s) +{ + int r = (stbi__get32be(s) == 0x38425053); + stbi__rewind(s); + return r; +} + +static int stbi__psd_decode_rle(stbi__context *s, stbi_uc *p, int pixelCount) +{ + int count, nleft, len; + + count = 0; + while ((nleft = pixelCount - count) > 0) { + len = stbi__get8(s); + if (len == 128) { + // No-op. + } else if (len < 128) { + // Copy next len+1 bytes literally. + len++; + if (len > nleft) return 0; // corrupt data + count += len; + while (len) { + *p = stbi__get8(s); + p += 4; + len--; + } + } else if (len > 128) { + stbi_uc val; + // Next -len+1 bytes in the dest are replicated from next source byte. + // (Interpret len as a negative 8-bit int.) + len = 257 - len; + if (len > nleft) return 0; // corrupt data + val = stbi__get8(s); + count += len; + while (len) { + *p = val; + p += 4; + len--; + } + } + } + + return 1; +} + +static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc) +{ + int pixelCount; + int channelCount, compression; + int channel, i; + int bitdepth; + int w,h; + stbi_uc *out; + STBI_NOTUSED(ri); + + // Check identifier + if (stbi__get32be(s) != 0x38425053) // "8BPS" + return stbi__errpuc("not PSD", "Corrupt PSD image"); + + // Check file type version. + if (stbi__get16be(s) != 1) + return stbi__errpuc("wrong version", "Unsupported version of PSD image"); + + // Skip 6 reserved bytes. + stbi__skip(s, 6 ); + + // Read the number of channels (R, G, B, A, etc). + channelCount = stbi__get16be(s); + if (channelCount < 0 || channelCount > 16) + return stbi__errpuc("wrong channel count", "Unsupported number of channels in PSD image"); + + // Read the rows and columns of the image. + h = stbi__get32be(s); + w = stbi__get32be(s); + + if (h > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (w > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + // Make sure the depth is 8 bits. + bitdepth = stbi__get16be(s); + if (bitdepth != 8 && bitdepth != 16) + return stbi__errpuc("unsupported bit depth", "PSD bit depth is not 8 or 16 bit"); + + // Make sure the color mode is RGB. + // Valid options are: + // 0: Bitmap + // 1: Grayscale + // 2: Indexed color + // 3: RGB color + // 4: CMYK color + // 7: Multichannel + // 8: Duotone + // 9: Lab color + if (stbi__get16be(s) != 3) + return stbi__errpuc("wrong color format", "PSD is not in RGB color format"); + + // Skip the Mode Data. (It's the palette for indexed color; other info for other modes.) + stbi__skip(s,stbi__get32be(s) ); + + // Skip the image resources. (resolution, pen tool paths, etc) + stbi__skip(s, stbi__get32be(s) ); + + // Skip the reserved data. + stbi__skip(s, stbi__get32be(s) ); + + // Find out if the data is compressed. + // Known values: + // 0: no compression + // 1: RLE compressed + compression = stbi__get16be(s); + if (compression > 1) + return stbi__errpuc("bad compression", "PSD has an unknown compression format"); + + // Check size + if (!stbi__mad3sizes_valid(4, w, h, 0)) + return stbi__errpuc("too large", "Corrupt PSD"); + + // Create the destination image. + + if (!compression && bitdepth == 16 && bpc == 16) { + out = (stbi_uc *) stbi__malloc_mad3(8, w, h, 0); + ri->bits_per_channel = 16; + } else + out = (stbi_uc *) stbi__malloc(4 * w*h); + + if (!out) return stbi__errpuc("outofmem", "Out of memory"); + pixelCount = w*h; + + // Initialize the data to zero. + //memset( out, 0, pixelCount * 4 ); + + // Finally, the image data. + if (compression) { + // RLE as used by .PSD and .TIFF + // Loop until you get the number of unpacked bytes you are expecting: + // Read the next source byte into n. + // If n is between 0 and 127 inclusive, copy the next n+1 bytes literally. + // Else if n is between -127 and -1 inclusive, copy the next byte -n+1 times. + // Else if n is 128, noop. + // Endloop + + // The RLE-compressed data is preceded by a 2-byte data count for each row in the data, + // which we're going to just skip. + stbi__skip(s, h * channelCount * 2 ); + + // Read the RLE data by channel. + for (channel = 0; channel < 4; channel++) { + stbi_uc *p; + + p = out+channel; + if (channel >= channelCount) { + // Fill this channel with default data. + for (i = 0; i < pixelCount; i++, p += 4) + *p = (channel == 3 ? 255 : 0); + } else { + // Read the RLE data. + if (!stbi__psd_decode_rle(s, p, pixelCount)) { + STBI_FREE(out); + return stbi__errpuc("corrupt", "bad RLE data"); + } + } + } + + } else { + // We're at the raw image data. It's each channel in order (Red, Green, Blue, Alpha, ...) + // where each channel consists of an 8-bit (or 16-bit) value for each pixel in the image. + + // Read the data by channel. + for (channel = 0; channel < 4; channel++) { + if (channel >= channelCount) { + // Fill this channel with default data. + if (bitdepth == 16 && bpc == 16) { + stbi__uint16 *q = ((stbi__uint16 *) out) + channel; + stbi__uint16 val = channel == 3 ? 65535 : 0; + for (i = 0; i < pixelCount; i++, q += 4) + *q = val; + } else { + stbi_uc *p = out+channel; + stbi_uc val = channel == 3 ? 255 : 0; + for (i = 0; i < pixelCount; i++, p += 4) + *p = val; + } + } else { + if (ri->bits_per_channel == 16) { // output bpc + stbi__uint16 *q = ((stbi__uint16 *) out) + channel; + for (i = 0; i < pixelCount; i++, q += 4) + *q = (stbi__uint16) stbi__get16be(s); + } else { + stbi_uc *p = out+channel; + if (bitdepth == 16) { // input bpc + for (i = 0; i < pixelCount; i++, p += 4) + *p = (stbi_uc) (stbi__get16be(s) >> 8); + } else { + for (i = 0; i < pixelCount; i++, p += 4) + *p = stbi__get8(s); + } + } + } + } + } + + // remove weird white matte from PSD + if (channelCount >= 4) { + if (ri->bits_per_channel == 16) { + for (i=0; i < w*h; ++i) { + stbi__uint16 *pixel = (stbi__uint16 *) out + 4*i; + if (pixel[3] != 0 && pixel[3] != 65535) { + float a = pixel[3] / 65535.0f; + float ra = 1.0f / a; + float inv_a = 65535.0f * (1 - ra); + pixel[0] = (stbi__uint16) (pixel[0]*ra + inv_a); + pixel[1] = (stbi__uint16) (pixel[1]*ra + inv_a); + pixel[2] = (stbi__uint16) (pixel[2]*ra + inv_a); + } + } + } else { + for (i=0; i < w*h; ++i) { + unsigned char *pixel = out + 4*i; + if (pixel[3] != 0 && pixel[3] != 255) { + float a = pixel[3] / 255.0f; + float ra = 1.0f / a; + float inv_a = 255.0f * (1 - ra); + pixel[0] = (unsigned char) (pixel[0]*ra + inv_a); + pixel[1] = (unsigned char) (pixel[1]*ra + inv_a); + pixel[2] = (unsigned char) (pixel[2]*ra + inv_a); + } + } + } + } + + // convert to desired output format + if (req_comp && req_comp != 4) { + if (ri->bits_per_channel == 16) + out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, 4, req_comp, w, h); + else + out = stbi__convert_format(out, 4, req_comp, w, h); + if (out == NULL) return out; // stbi__convert_format frees input on failure + } + + if (comp) *comp = 4; + *y = h; + *x = w; + + return out; +} +#endif + +// ************************************************************************************************* +// Softimage PIC loader +// by Tom Seddon +// +// See http://softimage.wiki.softimage.com/index.php/INFO:_PIC_file_format +// See http://ozviz.wasp.uwa.edu.au/~pbourke/dataformats/softimagepic/ + +#ifndef STBI_NO_PIC +static int stbi__pic_is4(stbi__context *s,const char *str) +{ + int i; + for (i=0; i<4; ++i) + if (stbi__get8(s) != (stbi_uc)str[i]) + return 0; + + return 1; +} + +static int stbi__pic_test_core(stbi__context *s) +{ + int i; + + if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) + return 0; + + for(i=0;i<84;++i) + stbi__get8(s); + + if (!stbi__pic_is4(s,"PICT")) + return 0; + + return 1; +} + +typedef struct +{ + stbi_uc size,type,channel; +} stbi__pic_packet; + +static stbi_uc *stbi__readval(stbi__context *s, int channel, stbi_uc *dest) +{ + int mask=0x80, i; + + for (i=0; i<4; ++i, mask>>=1) { + if (channel & mask) { + if (stbi__at_eof(s)) return stbi__errpuc("bad file","PIC file too short"); + dest[i]=stbi__get8(s); + } + } + + return dest; +} + +static void stbi__copyval(int channel,stbi_uc *dest,const stbi_uc *src) +{ + int mask=0x80,i; + + for (i=0;i<4; ++i, mask>>=1) + if (channel&mask) + dest[i]=src[i]; +} + +static stbi_uc *stbi__pic_load_core(stbi__context *s,int width,int height,int *comp, stbi_uc *result) +{ + int act_comp=0,num_packets=0,y,chained; + stbi__pic_packet packets[10]; + + // this will (should...) cater for even some bizarre stuff like having data + // for the same channel in multiple packets. + do { + stbi__pic_packet *packet; + + if (num_packets==sizeof(packets)/sizeof(packets[0])) + return stbi__errpuc("bad format","too many packets"); + + packet = &packets[num_packets++]; + + chained = stbi__get8(s); + packet->size = stbi__get8(s); + packet->type = stbi__get8(s); + packet->channel = stbi__get8(s); + + act_comp |= packet->channel; + + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (reading packets)"); + if (packet->size != 8) return stbi__errpuc("bad format","packet isn't 8bpp"); + } while (chained); + + *comp = (act_comp & 0x10 ? 4 : 3); // has alpha channel? + + for(y=0; ytype) { + default: + return stbi__errpuc("bad format","packet has bad compression type"); + + case 0: {//uncompressed + int x; + + for(x=0;xchannel,dest)) + return 0; + break; + } + + case 1://Pure RLE + { + int left=width, i; + + while (left>0) { + stbi_uc count,value[4]; + + count=stbi__get8(s); + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pure read count)"); + + if (count > left) + count = (stbi_uc) left; + + if (!stbi__readval(s,packet->channel,value)) return 0; + + for(i=0; ichannel,dest,value); + left -= count; + } + } + break; + + case 2: {//Mixed RLE + int left=width; + while (left>0) { + int count = stbi__get8(s), i; + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (mixed read count)"); + + if (count >= 128) { // Repeated + stbi_uc value[4]; + + if (count==128) + count = stbi__get16be(s); + else + count -= 127; + if (count > left) + return stbi__errpuc("bad file","scanline overrun"); + + if (!stbi__readval(s,packet->channel,value)) + return 0; + + for(i=0;ichannel,dest,value); + } else { // Raw + ++count; + if (count>left) return stbi__errpuc("bad file","scanline overrun"); + + for(i=0;ichannel,dest)) + return 0; + } + left-=count; + } + break; + } + } + } + } + + return result; +} + +static void *stbi__pic_load(stbi__context *s,int *px,int *py,int *comp,int req_comp, stbi__result_info *ri) +{ + stbi_uc *result; + int i, x,y, internal_comp; + STBI_NOTUSED(ri); + + if (!comp) comp = &internal_comp; + + for (i=0; i<92; ++i) + stbi__get8(s); + + x = stbi__get16be(s); + y = stbi__get16be(s); + + if (y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pic header)"); + if (!stbi__mad3sizes_valid(x, y, 4, 0)) return stbi__errpuc("too large", "PIC image too large to decode"); + + stbi__get32be(s); //skip `ratio' + stbi__get16be(s); //skip `fields' + stbi__get16be(s); //skip `pad' + + // intermediate buffer is RGBA + result = (stbi_uc *) stbi__malloc_mad3(x, y, 4, 0); + if (!result) return stbi__errpuc("outofmem", "Out of memory"); + memset(result, 0xff, x*y*4); + + if (!stbi__pic_load_core(s,x,y,comp, result)) { + STBI_FREE(result); + result=0; + } + *px = x; + *py = y; + if (req_comp == 0) req_comp = *comp; + result=stbi__convert_format(result,4,req_comp,x,y); + + return result; +} + +static int stbi__pic_test(stbi__context *s) +{ + int r = stbi__pic_test_core(s); + stbi__rewind(s); + return r; +} +#endif + +// ************************************************************************************************* +// GIF loader -- public domain by Jean-Marc Lienher -- simplified/shrunk by stb + +#ifndef STBI_NO_GIF +typedef struct +{ + stbi__int16 prefix; + stbi_uc first; + stbi_uc suffix; +} stbi__gif_lzw; + +typedef struct +{ + int w,h; + stbi_uc *out; // output buffer (always 4 components) + stbi_uc *background; // The current "background" as far as a gif is concerned + stbi_uc *history; + int flags, bgindex, ratio, transparent, eflags; + stbi_uc pal[256][4]; + stbi_uc lpal[256][4]; + stbi__gif_lzw codes[8192]; + stbi_uc *color_table; + int parse, step; + int lflags; + int start_x, start_y; + int max_x, max_y; + int cur_x, cur_y; + int line_size; + int delay; +} stbi__gif; + +static int stbi__gif_test_raw(stbi__context *s) +{ + int sz; + if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') return 0; + sz = stbi__get8(s); + if (sz != '9' && sz != '7') return 0; + if (stbi__get8(s) != 'a') return 0; + return 1; +} + +static int stbi__gif_test(stbi__context *s) +{ + int r = stbi__gif_test_raw(s); + stbi__rewind(s); + return r; +} + +static void stbi__gif_parse_colortable(stbi__context *s, stbi_uc pal[256][4], int num_entries, int transp) +{ + int i; + for (i=0; i < num_entries; ++i) { + pal[i][2] = stbi__get8(s); + pal[i][1] = stbi__get8(s); + pal[i][0] = stbi__get8(s); + pal[i][3] = transp == i ? 0 : 255; + } +} + +static int stbi__gif_header(stbi__context *s, stbi__gif *g, int *comp, int is_info) +{ + stbi_uc version; + if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') + return stbi__err("not GIF", "Corrupt GIF"); + + version = stbi__get8(s); + if (version != '7' && version != '9') return stbi__err("not GIF", "Corrupt GIF"); + if (stbi__get8(s) != 'a') return stbi__err("not GIF", "Corrupt GIF"); + + stbi__g_failure_reason = ""; + g->w = stbi__get16le(s); + g->h = stbi__get16le(s); + g->flags = stbi__get8(s); + g->bgindex = stbi__get8(s); + g->ratio = stbi__get8(s); + g->transparent = -1; + + if (g->w > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + if (g->h > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)"); + + if (comp != 0) *comp = 4; // can't actually tell whether it's 3 or 4 until we parse the comments + + if (is_info) return 1; + + if (g->flags & 0x80) + stbi__gif_parse_colortable(s,g->pal, 2 << (g->flags & 7), -1); + + return 1; +} + +static int stbi__gif_info_raw(stbi__context *s, int *x, int *y, int *comp) +{ + stbi__gif* g = (stbi__gif*) stbi__malloc(sizeof(stbi__gif)); + if (!g) return stbi__err("outofmem", "Out of memory"); + if (!stbi__gif_header(s, g, comp, 1)) { + STBI_FREE(g); + stbi__rewind( s ); + return 0; + } + if (x) *x = g->w; + if (y) *y = g->h; + STBI_FREE(g); + return 1; +} + +static void stbi__out_gif_code(stbi__gif *g, stbi__uint16 code) +{ + stbi_uc *p, *c; + int idx; + + // recurse to decode the prefixes, since the linked-list is backwards, + // and working backwards through an interleaved image would be nasty + if (g->codes[code].prefix >= 0) + stbi__out_gif_code(g, g->codes[code].prefix); + + if (g->cur_y >= g->max_y) return; + + idx = g->cur_x + g->cur_y; + p = &g->out[idx]; + g->history[idx / 4] = 1; + + c = &g->color_table[g->codes[code].suffix * 4]; + if (c[3] > 128) { // don't render transparent pixels; + p[0] = c[2]; + p[1] = c[1]; + p[2] = c[0]; + p[3] = c[3]; + } + g->cur_x += 4; + + if (g->cur_x >= g->max_x) { + g->cur_x = g->start_x; + g->cur_y += g->step; + + while (g->cur_y >= g->max_y && g->parse > 0) { + g->step = (1 << g->parse) * g->line_size; + g->cur_y = g->start_y + (g->step >> 1); + --g->parse; + } + } +} + +static stbi_uc *stbi__process_gif_raster(stbi__context *s, stbi__gif *g) +{ + stbi_uc lzw_cs; + stbi__int32 len, init_code; + stbi__uint32 first; + stbi__int32 codesize, codemask, avail, oldcode, bits, valid_bits, clear; + stbi__gif_lzw *p; + + lzw_cs = stbi__get8(s); + if (lzw_cs > 12) return NULL; + clear = 1 << lzw_cs; + first = 1; + codesize = lzw_cs + 1; + codemask = (1 << codesize) - 1; + bits = 0; + valid_bits = 0; + for (init_code = 0; init_code < clear; init_code++) { + g->codes[init_code].prefix = -1; + g->codes[init_code].first = (stbi_uc) init_code; + g->codes[init_code].suffix = (stbi_uc) init_code; + } + + // support no starting clear code + avail = clear+2; + oldcode = -1; + + len = 0; + for(;;) { + if (valid_bits < codesize) { + if (len == 0) { + len = stbi__get8(s); // start new block + if (len == 0) + return g->out; + } + --len; + bits |= (stbi__int32) stbi__get8(s) << valid_bits; + valid_bits += 8; + } else { + stbi__int32 code = bits & codemask; + bits >>= codesize; + valid_bits -= codesize; + // @OPTIMIZE: is there some way we can accelerate the non-clear path? + if (code == clear) { // clear code + codesize = lzw_cs + 1; + codemask = (1 << codesize) - 1; + avail = clear + 2; + oldcode = -1; + first = 0; + } else if (code == clear + 1) { // end of stream code + stbi__skip(s, len); + while ((len = stbi__get8(s)) > 0) + stbi__skip(s,len); + return g->out; + } else if (code <= avail) { + if (first) { + return stbi__errpuc("no clear code", "Corrupt GIF"); + } + + if (oldcode >= 0) { + p = &g->codes[avail++]; + if (avail > 8192) { + return stbi__errpuc("too many codes", "Corrupt GIF"); + } + + p->prefix = (stbi__int16) oldcode; + p->first = g->codes[oldcode].first; + p->suffix = (code == avail) ? p->first : g->codes[code].first; + } else if (code == avail) + return stbi__errpuc("illegal code in raster", "Corrupt GIF"); + + stbi__out_gif_code(g, (stbi__uint16) code); + + if ((avail & codemask) == 0 && avail <= 0x0FFF) { + codesize++; + codemask = (1 << codesize) - 1; + } + + oldcode = code; + } else { + return stbi__errpuc("illegal code in raster", "Corrupt GIF"); + } + } + } +} + +// this function is designed to support animated gifs, although stb_image doesn't support it +// two back is the image from two frames ago, used for a very specific disposal format +static stbi_uc *stbi__gif_load_next(stbi__context *s, stbi__gif *g, int *comp, int req_comp, stbi_uc *two_back) +{ + int dispose; + int first_frame; + int pi; + int pcount; + STBI_NOTUSED(req_comp); + + // on first frame, any non-written pixels get the background colour (non-transparent) + first_frame = 0; + if (g->out == 0) { + if (!stbi__gif_header(s, g, comp,0)) return 0; // stbi__g_failure_reason set by stbi__gif_header + if (!stbi__mad3sizes_valid(4, g->w, g->h, 0)) + return stbi__errpuc("too large", "GIF image is too large"); + pcount = g->w * g->h; + g->out = (stbi_uc *) stbi__malloc(4 * pcount); + g->background = (stbi_uc *) stbi__malloc(4 * pcount); + g->history = (stbi_uc *) stbi__malloc(pcount); + if (!g->out || !g->background || !g->history) + return stbi__errpuc("outofmem", "Out of memory"); + + // image is treated as "transparent" at the start - ie, nothing overwrites the current background; + // background colour is only used for pixels that are not rendered first frame, after that "background" + // color refers to the color that was there the previous frame. + memset(g->out, 0x00, 4 * pcount); + memset(g->background, 0x00, 4 * pcount); // state of the background (starts transparent) + memset(g->history, 0x00, pcount); // pixels that were affected previous frame + first_frame = 1; + } else { + // second frame - how do we dispose of the previous one? + dispose = (g->eflags & 0x1C) >> 2; + pcount = g->w * g->h; + + if ((dispose == 3) && (two_back == 0)) { + dispose = 2; // if I don't have an image to revert back to, default to the old background + } + + if (dispose == 3) { // use previous graphic + for (pi = 0; pi < pcount; ++pi) { + if (g->history[pi]) { + memcpy( &g->out[pi * 4], &two_back[pi * 4], 4 ); + } + } + } else if (dispose == 2) { + // restore what was changed last frame to background before that frame; + for (pi = 0; pi < pcount; ++pi) { + if (g->history[pi]) { + memcpy( &g->out[pi * 4], &g->background[pi * 4], 4 ); + } + } + } else { + // This is a non-disposal case eithe way, so just + // leave the pixels as is, and they will become the new background + // 1: do not dispose + // 0: not specified. + } + + // background is what out is after the undoing of the previou frame; + memcpy( g->background, g->out, 4 * g->w * g->h ); + } + + // clear my history; + memset( g->history, 0x00, g->w * g->h ); // pixels that were affected previous frame + + for (;;) { + int tag = stbi__get8(s); + switch (tag) { + case 0x2C: /* Image Descriptor */ + { + stbi__int32 x, y, w, h; + stbi_uc *o; + + x = stbi__get16le(s); + y = stbi__get16le(s); + w = stbi__get16le(s); + h = stbi__get16le(s); + if (((x + w) > (g->w)) || ((y + h) > (g->h))) + return stbi__errpuc("bad Image Descriptor", "Corrupt GIF"); + + g->line_size = g->w * 4; + g->start_x = x * 4; + g->start_y = y * g->line_size; + g->max_x = g->start_x + w * 4; + g->max_y = g->start_y + h * g->line_size; + g->cur_x = g->start_x; + g->cur_y = g->start_y; + + // if the width of the specified rectangle is 0, that means + // we may not see *any* pixels or the image is malformed; + // to make sure this is caught, move the current y down to + // max_y (which is what out_gif_code checks). + if (w == 0) + g->cur_y = g->max_y; + + g->lflags = stbi__get8(s); + + if (g->lflags & 0x40) { + g->step = 8 * g->line_size; // first interlaced spacing + g->parse = 3; + } else { + g->step = g->line_size; + g->parse = 0; + } + + if (g->lflags & 0x80) { + stbi__gif_parse_colortable(s,g->lpal, 2 << (g->lflags & 7), g->eflags & 0x01 ? g->transparent : -1); + g->color_table = (stbi_uc *) g->lpal; + } else if (g->flags & 0x80) { + g->color_table = (stbi_uc *) g->pal; + } else + return stbi__errpuc("missing color table", "Corrupt GIF"); + + o = stbi__process_gif_raster(s, g); + if (!o) return NULL; + + // if this was the first frame, + pcount = g->w * g->h; + if (first_frame && (g->bgindex > 0)) { + // if first frame, any pixel not drawn to gets the background color + for (pi = 0; pi < pcount; ++pi) { + if (g->history[pi] == 0) { + g->pal[g->bgindex][3] = 255; // just in case it was made transparent, undo that; It will be reset next frame if need be; + memcpy( &g->out[pi * 4], &g->pal[g->bgindex], 4 ); + } + } + } + + return o; + } + + case 0x21: // Comment Extension. + { + int len; + int ext = stbi__get8(s); + if (ext == 0xF9) { // Graphic Control Extension. + len = stbi__get8(s); + if (len == 4) { + g->eflags = stbi__get8(s); + g->delay = 10 * stbi__get16le(s); // delay - 1/100th of a second, saving as 1/1000ths. + + // unset old transparent + if (g->transparent >= 0) { + g->pal[g->transparent][3] = 255; + } + if (g->eflags & 0x01) { + g->transparent = stbi__get8(s); + if (g->transparent >= 0) { + g->pal[g->transparent][3] = 0; + } + } else { + // don't need transparent + stbi__skip(s, 1); + g->transparent = -1; + } + } else { + stbi__skip(s, len); + break; + } + } + while ((len = stbi__get8(s)) != 0) { + stbi__skip(s, len); + } + break; + } + + case 0x3B: // gif stream termination code + return (stbi_uc *) s; // using '1' causes warning on some compilers + + default: + return stbi__errpuc("unknown code", "Corrupt GIF"); + } + } +} + +static void *stbi__load_gif_main_outofmem(stbi__gif *g, stbi_uc *out, int **delays) +{ + STBI_FREE(g->out); + STBI_FREE(g->history); + STBI_FREE(g->background); + + if (out) STBI_FREE(out); + if (delays && *delays) STBI_FREE(*delays); + return stbi__errpuc("outofmem", "Out of memory"); +} + +static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp) +{ + if (stbi__gif_test(s)) { + int layers = 0; + stbi_uc *u = 0; + stbi_uc *out = 0; + stbi_uc *two_back = 0; + stbi__gif g; + int stride; + int out_size = 0; + int delays_size = 0; + + STBI_NOTUSED(out_size); + STBI_NOTUSED(delays_size); + + memset(&g, 0, sizeof(g)); + if (delays) { + *delays = 0; + } + + do { + u = stbi__gif_load_next(s, &g, comp, req_comp, two_back); + if (u == (stbi_uc *) s) u = 0; // end of animated gif marker + + if (u) { + *x = g.w; + *y = g.h; + ++layers; + stride = g.w * g.h * 4; + + if (out) { + void *tmp = (stbi_uc*) STBI_REALLOC_SIZED( out, out_size, layers * stride ); + if (!tmp) + return stbi__load_gif_main_outofmem(&g, out, delays); + else { + out = (stbi_uc*) tmp; + out_size = layers * stride; + } + + if (delays) { + int *new_delays = (int*) STBI_REALLOC_SIZED( *delays, delays_size, sizeof(int) * layers ); + if (!new_delays) + return stbi__load_gif_main_outofmem(&g, out, delays); + *delays = new_delays; + delays_size = layers * sizeof(int); + } + } else { + out = (stbi_uc*)stbi__malloc( layers * stride ); + if (!out) + return stbi__load_gif_main_outofmem(&g, out, delays); + out_size = layers * stride; + if (delays) { + *delays = (int*) stbi__malloc( layers * sizeof(int) ); + if (!*delays) + return stbi__load_gif_main_outofmem(&g, out, delays); + delays_size = layers * sizeof(int); + } + } + memcpy( out + ((layers - 1) * stride), u, stride ); + if (layers >= 2) { + two_back = out - 2 * stride; + } + + if (delays) { + (*delays)[layers - 1U] = g.delay; + } + } + } while (u != 0); + + // free temp buffer; + STBI_FREE(g.out); + STBI_FREE(g.history); + STBI_FREE(g.background); + + // do the final conversion after loading everything; + if (req_comp && req_comp != 4) + out = stbi__convert_format(out, 4, req_comp, layers * g.w, g.h); + + *z = layers; + return out; + } else { + return stbi__errpuc("not GIF", "Image was not as a gif type."); + } +} + +static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi_uc *u = 0; + stbi__gif g; + memset(&g, 0, sizeof(g)); + STBI_NOTUSED(ri); + + u = stbi__gif_load_next(s, &g, comp, req_comp, 0); + if (u == (stbi_uc *) s) u = 0; // end of animated gif marker + if (u) { + *x = g.w; + *y = g.h; + + // moved conversion to after successful load so that the same + // can be done for multiple frames. + if (req_comp && req_comp != 4) + u = stbi__convert_format(u, 4, req_comp, g.w, g.h); + } else if (g.out) { + // if there was an error and we allocated an image buffer, free it! + STBI_FREE(g.out); + } + + // free buffers needed for multiple frame loading; + STBI_FREE(g.history); + STBI_FREE(g.background); + + return u; +} + +static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp) +{ + return stbi__gif_info_raw(s,x,y,comp); +} +#endif + +// ************************************************************************************************* +// Radiance RGBE HDR loader +// originally by Nicolas Schulz +#ifndef STBI_NO_HDR +static int stbi__hdr_test_core(stbi__context *s, const char *signature) +{ + int i; + for (i=0; signature[i]; ++i) + if (stbi__get8(s) != signature[i]) + return 0; + stbi__rewind(s); + return 1; +} + +static int stbi__hdr_test(stbi__context* s) +{ + int r = stbi__hdr_test_core(s, "#?RADIANCE\n"); + stbi__rewind(s); + if(!r) { + r = stbi__hdr_test_core(s, "#?RGBE\n"); + stbi__rewind(s); + } + return r; +} + +#define STBI__HDR_BUFLEN 1024 +static char *stbi__hdr_gettoken(stbi__context *z, char *buffer) +{ + int len=0; + char c = '\0'; + + c = (char) stbi__get8(z); + + while (!stbi__at_eof(z) && c != '\n') { + buffer[len++] = c; + if (len == STBI__HDR_BUFLEN-1) { + // flush to end of line + while (!stbi__at_eof(z) && stbi__get8(z) != '\n') + ; + break; + } + c = (char) stbi__get8(z); + } + + buffer[len] = 0; + return buffer; +} + +static void stbi__hdr_convert(float *output, stbi_uc *input, int req_comp) +{ + if ( input[3] != 0 ) { + float f1; + // Exponent + f1 = (float) ldexp(1.0f, input[3] - (int)(128 + 8)); + if (req_comp <= 2) + output[0] = (input[0] + input[1] + input[2]) * f1 / 3; + else { + output[0] = input[0] * f1; + output[1] = input[1] * f1; + output[2] = input[2] * f1; + } + if (req_comp == 2) output[1] = 1; + if (req_comp == 4) output[3] = 1; + } else { + switch (req_comp) { + case 4: output[3] = 1; /* fallthrough */ + case 3: output[0] = output[1] = output[2] = 0; + break; + case 2: output[1] = 1; /* fallthrough */ + case 1: output[0] = 0; + break; + } + } +} + +static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + char buffer[STBI__HDR_BUFLEN]; + char *token; + int valid = 0; + int width, height; + stbi_uc *scanline; + float *hdr_data; + int len; + unsigned char count, value; + int i, j, k, c1,c2, z; + const char *headerToken; + STBI_NOTUSED(ri); + + // Check identifier + headerToken = stbi__hdr_gettoken(s,buffer); + if (strcmp(headerToken, "#?RADIANCE") != 0 && strcmp(headerToken, "#?RGBE") != 0) + return stbi__errpf("not HDR", "Corrupt HDR image"); + + // Parse header + for(;;) { + token = stbi__hdr_gettoken(s,buffer); + if (token[0] == 0) break; + if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1; + } + + if (!valid) return stbi__errpf("unsupported format", "Unsupported HDR format"); + + // Parse width and height + // can't use sscanf() if we're not using stdio! + token = stbi__hdr_gettoken(s,buffer); + if (strncmp(token, "-Y ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format"); + token += 3; + height = (int) strtol(token, &token, 10); + while (*token == ' ') ++token; + if (strncmp(token, "+X ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format"); + token += 3; + width = (int) strtol(token, NULL, 10); + + if (height > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)"); + if (width > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)"); + + *x = width; + *y = height; + + if (comp) *comp = 3; + if (req_comp == 0) req_comp = 3; + + if (!stbi__mad4sizes_valid(width, height, req_comp, sizeof(float), 0)) + return stbi__errpf("too large", "HDR image is too large"); + + // Read data + hdr_data = (float *) stbi__malloc_mad4(width, height, req_comp, sizeof(float), 0); + if (!hdr_data) + return stbi__errpf("outofmem", "Out of memory"); + + // Load image data + // image data is stored as some number of sca + if ( width < 8 || width >= 32768) { + // Read flat data + for (j=0; j < height; ++j) { + for (i=0; i < width; ++i) { + stbi_uc rgbe[4]; + main_decode_loop: + stbi__getn(s, rgbe, 4); + stbi__hdr_convert(hdr_data + j * width * req_comp + i * req_comp, rgbe, req_comp); + } + } + } else { + // Read RLE-encoded data + scanline = NULL; + + for (j = 0; j < height; ++j) { + c1 = stbi__get8(s); + c2 = stbi__get8(s); + len = stbi__get8(s); + if (c1 != 2 || c2 != 2 || (len & 0x80)) { + // not run-length encoded, so we have to actually use THIS data as a decoded + // pixel (note this can't be a valid pixel--one of RGB must be >= 128) + stbi_uc rgbe[4]; + rgbe[0] = (stbi_uc) c1; + rgbe[1] = (stbi_uc) c2; + rgbe[2] = (stbi_uc) len; + rgbe[3] = (stbi_uc) stbi__get8(s); + stbi__hdr_convert(hdr_data, rgbe, req_comp); + i = 1; + j = 0; + STBI_FREE(scanline); + goto main_decode_loop; // yes, this makes no sense + } + len <<= 8; + len |= stbi__get8(s); + if (len != width) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("invalid decoded scanline length", "corrupt HDR"); } + if (scanline == NULL) { + scanline = (stbi_uc *) stbi__malloc_mad2(width, 4, 0); + if (!scanline) { + STBI_FREE(hdr_data); + return stbi__errpf("outofmem", "Out of memory"); + } + } + + for (k = 0; k < 4; ++k) { + int nleft; + i = 0; + while ((nleft = width - i) > 0) { + count = stbi__get8(s); + if (count > 128) { + // Run + value = stbi__get8(s); + count -= 128; + if ((count == 0) || (count > nleft)) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); } + for (z = 0; z < count; ++z) + scanline[i++ * 4 + k] = value; + } else { + // Dump + if ((count == 0) || (count > nleft)) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); } + for (z = 0; z < count; ++z) + scanline[i++ * 4 + k] = stbi__get8(s); + } + } + } + for (i=0; i < width; ++i) + stbi__hdr_convert(hdr_data+(j*width + i)*req_comp, scanline + i*4, req_comp); + } + if (scanline) + STBI_FREE(scanline); + } + + return hdr_data; +} + +static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp) +{ + char buffer[STBI__HDR_BUFLEN]; + char *token; + int valid = 0; + int dummy; + + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + + if (stbi__hdr_test(s) == 0) { + stbi__rewind( s ); + return 0; + } + + for(;;) { + token = stbi__hdr_gettoken(s,buffer); + if (token[0] == 0) break; + if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1; + } + + if (!valid) { + stbi__rewind( s ); + return 0; + } + token = stbi__hdr_gettoken(s,buffer); + if (strncmp(token, "-Y ", 3)) { + stbi__rewind( s ); + return 0; + } + token += 3; + *y = (int) strtol(token, &token, 10); + while (*token == ' ') ++token; + if (strncmp(token, "+X ", 3)) { + stbi__rewind( s ); + return 0; + } + token += 3; + *x = (int) strtol(token, NULL, 10); + *comp = 3; + return 1; +} +#endif // STBI_NO_HDR + +#ifndef STBI_NO_BMP +static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp) +{ + void *p; + stbi__bmp_data info; + + info.all_a = 255; + p = stbi__bmp_parse_header(s, &info); + if (p == NULL) { + stbi__rewind( s ); + return 0; + } + if (x) *x = s->img_x; + if (y) *y = s->img_y; + if (comp) { + if (info.bpp == 24 && info.ma == 0xff000000) + *comp = 3; + else + *comp = info.ma ? 4 : 3; + } + return 1; +} +#endif + +#ifndef STBI_NO_PSD +static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp) +{ + int channelCount, dummy, depth; + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + if (stbi__get32be(s) != 0x38425053) { + stbi__rewind( s ); + return 0; + } + if (stbi__get16be(s) != 1) { + stbi__rewind( s ); + return 0; + } + stbi__skip(s, 6); + channelCount = stbi__get16be(s); + if (channelCount < 0 || channelCount > 16) { + stbi__rewind( s ); + return 0; + } + *y = stbi__get32be(s); + *x = stbi__get32be(s); + depth = stbi__get16be(s); + if (depth != 8 && depth != 16) { + stbi__rewind( s ); + return 0; + } + if (stbi__get16be(s) != 3) { + stbi__rewind( s ); + return 0; + } + *comp = 4; + return 1; +} + +static int stbi__psd_is16(stbi__context *s) +{ + int channelCount, depth; + if (stbi__get32be(s) != 0x38425053) { + stbi__rewind( s ); + return 0; + } + if (stbi__get16be(s) != 1) { + stbi__rewind( s ); + return 0; + } + stbi__skip(s, 6); + channelCount = stbi__get16be(s); + if (channelCount < 0 || channelCount > 16) { + stbi__rewind( s ); + return 0; + } + STBI_NOTUSED(stbi__get32be(s)); + STBI_NOTUSED(stbi__get32be(s)); + depth = stbi__get16be(s); + if (depth != 16) { + stbi__rewind( s ); + return 0; + } + return 1; +} +#endif + +#ifndef STBI_NO_PIC +static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp) +{ + int act_comp=0,num_packets=0,chained,dummy; + stbi__pic_packet packets[10]; + + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + + if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) { + stbi__rewind(s); + return 0; + } + + stbi__skip(s, 88); + + *x = stbi__get16be(s); + *y = stbi__get16be(s); + if (stbi__at_eof(s)) { + stbi__rewind( s); + return 0; + } + if ( (*x) != 0 && (1 << 28) / (*x) < (*y)) { + stbi__rewind( s ); + return 0; + } + + stbi__skip(s, 8); + + do { + stbi__pic_packet *packet; + + if (num_packets==sizeof(packets)/sizeof(packets[0])) + return 0; + + packet = &packets[num_packets++]; + chained = stbi__get8(s); + packet->size = stbi__get8(s); + packet->type = stbi__get8(s); + packet->channel = stbi__get8(s); + act_comp |= packet->channel; + + if (stbi__at_eof(s)) { + stbi__rewind( s ); + return 0; + } + if (packet->size != 8) { + stbi__rewind( s ); + return 0; + } + } while (chained); + + *comp = (act_comp & 0x10 ? 4 : 3); + + return 1; +} +#endif + +// ************************************************************************************************* +// Portable Gray Map and Portable Pixel Map loader +// by Ken Miller +// +// PGM: http://netpbm.sourceforge.net/doc/pgm.html +// PPM: http://netpbm.sourceforge.net/doc/ppm.html +// +// Known limitations: +// Does not support comments in the header section +// Does not support ASCII image data (formats P2 and P3) + +#ifndef STBI_NO_PNM + +static int stbi__pnm_test(stbi__context *s) +{ + char p, t; + p = (char) stbi__get8(s); + t = (char) stbi__get8(s); + if (p != 'P' || (t != '5' && t != '6')) { + stbi__rewind( s ); + return 0; + } + return 1; +} + +static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri) +{ + stbi_uc *out; + STBI_NOTUSED(ri); + + ri->bits_per_channel = stbi__pnm_info(s, (int *)&s->img_x, (int *)&s->img_y, (int *)&s->img_n); + if (ri->bits_per_channel == 0) + return 0; + + if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)"); + + *x = s->img_x; + *y = s->img_y; + if (comp) *comp = s->img_n; + + if (!stbi__mad4sizes_valid(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0)) + return stbi__errpuc("too large", "PNM too large"); + + out = (stbi_uc *) stbi__malloc_mad4(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0); + if (!out) return stbi__errpuc("outofmem", "Out of memory"); + if (!stbi__getn(s, out, s->img_n * s->img_x * s->img_y * (ri->bits_per_channel / 8))) { + STBI_FREE(out); + return stbi__errpuc("bad PNM", "PNM file truncated"); + } + + if (req_comp && req_comp != s->img_n) { + if (ri->bits_per_channel == 16) { + out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, s->img_n, req_comp, s->img_x, s->img_y); + } else { + out = stbi__convert_format(out, s->img_n, req_comp, s->img_x, s->img_y); + } + if (out == NULL) return out; // stbi__convert_format frees input on failure + } + return out; +} + +static int stbi__pnm_isspace(char c) +{ + return c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r'; +} + +static void stbi__pnm_skip_whitespace(stbi__context *s, char *c) +{ + for (;;) { + while (!stbi__at_eof(s) && stbi__pnm_isspace(*c)) + *c = (char) stbi__get8(s); + + if (stbi__at_eof(s) || *c != '#') + break; + + while (!stbi__at_eof(s) && *c != '\n' && *c != '\r' ) + *c = (char) stbi__get8(s); + } +} + +static int stbi__pnm_isdigit(char c) +{ + return c >= '0' && c <= '9'; +} + +static int stbi__pnm_getinteger(stbi__context *s, char *c) +{ + int value = 0; + + while (!stbi__at_eof(s) && stbi__pnm_isdigit(*c)) { + value = value*10 + (*c - '0'); + *c = (char) stbi__get8(s); + if((value > 214748364) || (value == 214748364 && *c > '7')) + return stbi__err("integer parse overflow", "Parsing an integer in the PPM header overflowed a 32-bit int"); + } + + return value; +} + +static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp) +{ + int maxv, dummy; + char c, p, t; + + if (!x) x = &dummy; + if (!y) y = &dummy; + if (!comp) comp = &dummy; + + stbi__rewind(s); + + // Get identifier + p = (char) stbi__get8(s); + t = (char) stbi__get8(s); + if (p != 'P' || (t != '5' && t != '6')) { + stbi__rewind(s); + return 0; + } + + *comp = (t == '6') ? 3 : 1; // '5' is 1-component .pgm; '6' is 3-component .ppm + + c = (char) stbi__get8(s); + stbi__pnm_skip_whitespace(s, &c); + + *x = stbi__pnm_getinteger(s, &c); // read width + if(*x == 0) + return stbi__err("invalid width", "PPM image header had zero or overflowing width"); + stbi__pnm_skip_whitespace(s, &c); + + *y = stbi__pnm_getinteger(s, &c); // read height + if (*y == 0) + return stbi__err("invalid width", "PPM image header had zero or overflowing width"); + stbi__pnm_skip_whitespace(s, &c); + + maxv = stbi__pnm_getinteger(s, &c); // read max value + if (maxv > 65535) + return stbi__err("max value > 65535", "PPM image supports only 8-bit and 16-bit images"); + else if (maxv > 255) + return 16; + else + return 8; +} + +static int stbi__pnm_is16(stbi__context *s) +{ + if (stbi__pnm_info(s, NULL, NULL, NULL) == 16) + return 1; + return 0; +} +#endif + +static int stbi__info_main(stbi__context *s, int *x, int *y, int *comp) +{ + #ifndef STBI_NO_JPEG + if (stbi__jpeg_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PNG + if (stbi__png_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_GIF + if (stbi__gif_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_BMP + if (stbi__bmp_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PSD + if (stbi__psd_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PIC + if (stbi__pic_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_PNM + if (stbi__pnm_info(s, x, y, comp)) return 1; + #endif + + #ifndef STBI_NO_HDR + if (stbi__hdr_info(s, x, y, comp)) return 1; + #endif + + // test tga last because it's a crappy test! + #ifndef STBI_NO_TGA + if (stbi__tga_info(s, x, y, comp)) + return 1; + #endif + return stbi__err("unknown image type", "Image not of any known type, or corrupt"); +} + +static int stbi__is_16_main(stbi__context *s) +{ + #ifndef STBI_NO_PNG + if (stbi__png_is16(s)) return 1; + #endif + + #ifndef STBI_NO_PSD + if (stbi__psd_is16(s)) return 1; + #endif + + #ifndef STBI_NO_PNM + if (stbi__pnm_is16(s)) return 1; + #endif + return 0; +} + +#ifndef STBI_NO_STDIO +STBIDEF int stbi_info(char const *filename, int *x, int *y, int *comp) +{ + FILE *f = stbi__fopen(filename, "rb"); + int result; + if (!f) return stbi__err("can't fopen", "Unable to open file"); + result = stbi_info_from_file(f, x, y, comp); + fclose(f); + return result; +} + +STBIDEF int stbi_info_from_file(FILE *f, int *x, int *y, int *comp) +{ + int r; + stbi__context s; + long pos = ftell(f); + stbi__start_file(&s, f); + r = stbi__info_main(&s,x,y,comp); + fseek(f,pos,SEEK_SET); + return r; +} + +STBIDEF int stbi_is_16_bit(char const *filename) +{ + FILE *f = stbi__fopen(filename, "rb"); + int result; + if (!f) return stbi__err("can't fopen", "Unable to open file"); + result = stbi_is_16_bit_from_file(f); + fclose(f); + return result; +} + +STBIDEF int stbi_is_16_bit_from_file(FILE *f) +{ + int r; + stbi__context s; + long pos = ftell(f); + stbi__start_file(&s, f); + r = stbi__is_16_main(&s); + fseek(f,pos,SEEK_SET); + return r; +} +#endif // !STBI_NO_STDIO + +STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__info_main(&s,x,y,comp); +} + +STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *user, int *x, int *y, int *comp) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user); + return stbi__info_main(&s,x,y,comp); +} + +STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len) +{ + stbi__context s; + stbi__start_mem(&s,buffer,len); + return stbi__is_16_main(&s); +} + +STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *c, void *user) +{ + stbi__context s; + stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user); + return stbi__is_16_main(&s); +} + +#endif // STB_IMAGE_IMPLEMENTATION + +/* + revision history: + 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs + 2.19 (2018-02-11) fix warning + 2.18 (2018-01-30) fix warnings + 2.17 (2018-01-29) change sbti__shiftsigned to avoid clang -O2 bug + 1-bit BMP + *_is_16_bit api + avoid warnings + 2.16 (2017-07-23) all functions have 16-bit variants; + STBI_NO_STDIO works again; + compilation fixes; + fix rounding in unpremultiply; + optimize vertical flip; + disable raw_len validation; + documentation fixes + 2.15 (2017-03-18) fix png-1,2,4 bug; now all Imagenet JPGs decode; + warning fixes; disable run-time SSE detection on gcc; + uniform handling of optional "return" values; + thread-safe initialization of zlib tables + 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs + 2.13 (2016-11-29) add 16-bit API, only supported for PNG right now + 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes + 2.11 (2016-04-02) allocate large structures on the stack + remove white matting for transparent PSD + fix reported channel count for PNG & BMP + re-enable SSE2 in non-gcc 64-bit + support RGB-formatted JPEG + read 16-bit PNGs (only as 8-bit) + 2.10 (2016-01-22) avoid warning introduced in 2.09 by STBI_REALLOC_SIZED + 2.09 (2016-01-16) allow comments in PNM files + 16-bit-per-pixel TGA (not bit-per-component) + info() for TGA could break due to .hdr handling + info() for BMP to shares code instead of sloppy parse + can use STBI_REALLOC_SIZED if allocator doesn't support realloc + code cleanup + 2.08 (2015-09-13) fix to 2.07 cleanup, reading RGB PSD as RGBA + 2.07 (2015-09-13) fix compiler warnings + partial animated GIF support + limited 16-bpc PSD support + #ifdef unused functions + bug with < 92 byte PIC,PNM,HDR,TGA + 2.06 (2015-04-19) fix bug where PSD returns wrong '*comp' value + 2.05 (2015-04-19) fix bug in progressive JPEG handling, fix warning + 2.04 (2015-04-15) try to re-enable SIMD on MinGW 64-bit + 2.03 (2015-04-12) extra corruption checking (mmozeiko) + stbi_set_flip_vertically_on_load (nguillemot) + fix NEON support; fix mingw support + 2.02 (2015-01-19) fix incorrect assert, fix warning + 2.01 (2015-01-17) fix various warnings; suppress SIMD on gcc 32-bit without -msse2 + 2.00b (2014-12-25) fix STBI_MALLOC in progressive JPEG + 2.00 (2014-12-25) optimize JPG, including x86 SSE2 & NEON SIMD (ryg) + progressive JPEG (stb) + PGM/PPM support (Ken Miller) + STBI_MALLOC,STBI_REALLOC,STBI_FREE + GIF bugfix -- seemingly never worked + STBI_NO_*, STBI_ONLY_* + 1.48 (2014-12-14) fix incorrectly-named assert() + 1.47 (2014-12-14) 1/2/4-bit PNG support, both direct and paletted (Omar Cornut & stb) + optimize PNG (ryg) + fix bug in interlaced PNG with user-specified channel count (stb) + 1.46 (2014-08-26) + fix broken tRNS chunk (colorkey-style transparency) in non-paletted PNG + 1.45 (2014-08-16) + fix MSVC-ARM internal compiler error by wrapping malloc + 1.44 (2014-08-07) + various warning fixes from Ronny Chevalier + 1.43 (2014-07-15) + fix MSVC-only compiler problem in code changed in 1.42 + 1.42 (2014-07-09) + don't define _CRT_SECURE_NO_WARNINGS (affects user code) + fixes to stbi__cleanup_jpeg path + added STBI_ASSERT to avoid requiring assert.h + 1.41 (2014-06-25) + fix search&replace from 1.36 that messed up comments/error messages + 1.40 (2014-06-22) + fix gcc struct-initialization warning + 1.39 (2014-06-15) + fix to TGA optimization when req_comp != number of components in TGA; + fix to GIF loading because BMP wasn't rewinding (whoops, no GIFs in my test suite) + add support for BMP version 5 (more ignored fields) + 1.38 (2014-06-06) + suppress MSVC warnings on integer casts truncating values + fix accidental rename of 'skip' field of I/O + 1.37 (2014-06-04) + remove duplicate typedef + 1.36 (2014-06-03) + convert to header file single-file library + if de-iphone isn't set, load iphone images color-swapped instead of returning NULL + 1.35 (2014-05-27) + various warnings + fix broken STBI_SIMD path + fix bug where stbi_load_from_file no longer left file pointer in correct place + fix broken non-easy path for 32-bit BMP (possibly never used) + TGA optimization by Arseny Kapoulkine + 1.34 (unknown) + use STBI_NOTUSED in stbi__resample_row_generic(), fix one more leak in tga failure case + 1.33 (2011-07-14) + make stbi_is_hdr work in STBI_NO_HDR (as specified), minor compiler-friendly improvements + 1.32 (2011-07-13) + support for "info" function for all supported filetypes (SpartanJ) + 1.31 (2011-06-20) + a few more leak fixes, bug in PNG handling (SpartanJ) + 1.30 (2011-06-11) + added ability to load files via callbacks to accomidate custom input streams (Ben Wenger) + removed deprecated format-specific test/load functions + removed support for installable file formats (stbi_loader) -- would have been broken for IO callbacks anyway + error cases in bmp and tga give messages and don't leak (Raymond Barbiero, grisha) + fix inefficiency in decoding 32-bit BMP (David Woo) + 1.29 (2010-08-16) + various warning fixes from Aurelien Pocheville + 1.28 (2010-08-01) + fix bug in GIF palette transparency (SpartanJ) + 1.27 (2010-08-01) + cast-to-stbi_uc to fix warnings + 1.26 (2010-07-24) + fix bug in file buffering for PNG reported by SpartanJ + 1.25 (2010-07-17) + refix trans_data warning (Won Chun) + 1.24 (2010-07-12) + perf improvements reading from files on platforms with lock-heavy fgetc() + minor perf improvements for jpeg + deprecated type-specific functions so we'll get feedback if they're needed + attempt to fix trans_data warning (Won Chun) + 1.23 fixed bug in iPhone support + 1.22 (2010-07-10) + removed image *writing* support + stbi_info support from Jetro Lauha + GIF support from Jean-Marc Lienher + iPhone PNG-extensions from James Brown + warning-fixes from Nicolas Schulz and Janez Zemva (i.stbi__err. Janez (U+017D)emva) + 1.21 fix use of 'stbi_uc' in header (reported by jon blow) + 1.20 added support for Softimage PIC, by Tom Seddon + 1.19 bug in interlaced PNG corruption check (found by ryg) + 1.18 (2008-08-02) + fix a threading bug (local mutable static) + 1.17 support interlaced PNG + 1.16 major bugfix - stbi__convert_format converted one too many pixels + 1.15 initialize some fields for thread safety + 1.14 fix threadsafe conversion bug + header-file-only version (#define STBI_HEADER_FILE_ONLY before including) + 1.13 threadsafe + 1.12 const qualifiers in the API + 1.11 Support installable IDCT, colorspace conversion routines + 1.10 Fixes for 64-bit (don't use "unsigned long") + optimized upsampling by Fabian "ryg" Giesen + 1.09 Fix format-conversion for PSD code (bad global variables!) + 1.08 Thatcher Ulrich's PSD code integrated by Nicolas Schulz + 1.07 attempt to fix C++ warning/errors again + 1.06 attempt to fix C++ warning/errors again + 1.05 fix TGA loading to return correct *comp and use good luminance calc + 1.04 default float alpha is 1, not 255; use 'void *' for stbi_image_free + 1.03 bugfixes to STBI_NO_STDIO, STBI_NO_HDR + 1.02 support for (subset of) HDR files, float interface for preferred access to them + 1.01 fix bug: possible bug in handling right-side up bmps... not sure + fix bug: the stbi__bmp_load() and stbi__tga_load() functions didn't work at all + 1.00 interface to zlib that skips zlib header + 0.99 correct handling of alpha in palette + 0.98 TGA loader by lonesock; dynamically add loaders (untested) + 0.97 jpeg errors on too large a file; also catch another malloc failure + 0.96 fix detection of invalid v value - particleman@mollyrocket forum + 0.95 during header scan, seek to markers in case of padding + 0.94 STBI_NO_STDIO to disable stdio usage; rename all #defines the same + 0.93 handle jpegtran output; verbose errors + 0.92 read 4,8,16,24,32-bit BMP files of several formats + 0.91 output 24-bit Windows 3.0 BMP files + 0.90 fix a few more warnings; bump version number to approach 1.0 + 0.61 bugfixes due to Marc LeBlanc, Christopher Lloyd + 0.60 fix compiling as c++ + 0.59 fix warnings: merge Dave Moore's -Wall fixes + 0.58 fix bug: zlib uncompressed mode len/nlen was wrong endian + 0.57 fix bug: jpg last huffman symbol before marker was >9 bits but less than 16 available + 0.56 fix bug: zlib uncompressed mode len vs. nlen + 0.55 fix bug: restart_interval not initialized to 0 + 0.54 allow NULL for 'int *comp' + 0.53 fix bug in png 3->4; speedup png decoding + 0.52 png handles req_comp=3,4 directly; minor cleanup; jpeg comments + 0.51 obey req_comp requests, 1-component jpegs return as 1-component, + on 'test' only check type, not whether we support this variant + 0.50 (2006-11-19) + first released version +*/ + + +/* +------------------------------------------------------------------------------ +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/lib/lv_gltf/data/deps/stb_image/stb_image_resize.h b/lib/lv_gltf/data/deps/stb_image/stb_image_resize.h new file mode 100644 index 0000000..3cd2eb0 --- /dev/null +++ b/lib/lv_gltf/data/deps/stb_image/stb_image_resize.h @@ -0,0 +1,2634 @@ +/* stb_image_resize - v0.97 - public domain image resizing + by Jorge L Rodriguez (@VinoBS) - 2014 + http://github.com/nothings/stb + + Written with emphasis on usability, portability, and efficiency. (No + SIMD or threads, so it be easily outperformed by libs that use those.) + Only scaling and translation is supported, no rotations or shears. + Easy API downsamples w/Mitchell filter, upsamples w/cubic interpolation. + + COMPILING & LINKING + In one C/C++ file that #includes this file, do this: + #define STB_IMAGE_RESIZE_IMPLEMENTATION + before the #include. That will create the implementation in that file. + + QUICKSTART + stbir_resize_uint8( input_pixels , in_w , in_h , 0, + output_pixels, out_w, out_h, 0, num_channels) + stbir_resize_float(...) + stbir_resize_uint8_srgb( input_pixels , in_w , in_h , 0, + output_pixels, out_w, out_h, 0, + num_channels , alpha_chan , 0) + stbir_resize_uint8_srgb_edgemode( + input_pixels , in_w , in_h , 0, + output_pixels, out_w, out_h, 0, + num_channels , alpha_chan , 0, STBIR_EDGE_CLAMP) + // WRAP/REFLECT/ZERO + + FULL API + See the "header file" section of the source for API documentation. + + ADDITIONAL DOCUMENTATION + + SRGB & FLOATING POINT REPRESENTATION + The sRGB functions presume IEEE floating point. If you do not have + IEEE floating point, define STBIR_NON_IEEE_FLOAT. This will use + a slower implementation. + + MEMORY ALLOCATION + The resize functions here perform a single memory allocation using + malloc. To control the memory allocation, before the #include that + triggers the implementation, do: + + #define STBIR_MALLOC(size,context) ... + #define STBIR_FREE(ptr,context) ... + + Each resize function makes exactly one call to malloc/free, so to use + temp memory, store the temp memory in the context and return that. + + ASSERT + Define STBIR_ASSERT(boolval) to override assert() and not use assert.h + + OPTIMIZATION + Define STBIR_SATURATE_INT to compute clamp values in-range using + integer operations instead of float operations. This may be faster + on some platforms. + + DEFAULT FILTERS + For functions which don't provide explicit control over what filters + to use, you can change the compile-time defaults with + + #define STBIR_DEFAULT_FILTER_UPSAMPLE STBIR_FILTER_something + #define STBIR_DEFAULT_FILTER_DOWNSAMPLE STBIR_FILTER_something + + See stbir_filter in the header-file section for the list of filters. + + NEW FILTERS + A number of 1D filter kernels are used. For a list of + supported filters see the stbir_filter enum. To add a new filter, + write a filter function and add it to stbir__filter_info_table. + + PROGRESS + For interactive use with slow resize operations, you can install + a progress-report callback: + + #define STBIR_PROGRESS_REPORT(val) some_func(val) + + The parameter val is a float which goes from 0 to 1 as progress is made. + + For example: + + static void my_progress_report(float progress); + #define STBIR_PROGRESS_REPORT(val) my_progress_report(val) + + #define STB_IMAGE_RESIZE_IMPLEMENTATION + #include "stb_image_resize.h" + + static void my_progress_report(float progress) + { + printf("Progress: %f%%\n", progress*100); + } + + MAX CHANNELS + If your image has more than 64 channels, define STBIR_MAX_CHANNELS + to the max you'll have. + + ALPHA CHANNEL + Most of the resizing functions provide the ability to control how + the alpha channel of an image is processed. The important things + to know about this: + + 1. The best mathematically-behaved version of alpha to use is + called "premultiplied alpha", in which the other color channels + have had the alpha value multiplied in. If you use premultiplied + alpha, linear filtering (such as image resampling done by this + library, or performed in texture units on GPUs) does the "right + thing". While premultiplied alpha is standard in the movie CGI + industry, it is still uncommon in the videogame/real-time world. + + If you linearly filter non-premultiplied alpha, strange effects + occur. (For example, the 50/50 average of 99% transparent bright green + and 1% transparent black produces 50% transparent dark green when + non-premultiplied, whereas premultiplied it produces 50% + transparent near-black. The former introduces green energy + that doesn't exist in the source image.) + + 2. Artists should not edit premultiplied-alpha images; artists + want non-premultiplied alpha images. Thus, art tools generally output + non-premultiplied alpha images. + + 3. You will get best results in most cases by converting images + to premultiplied alpha before processing them mathematically. + + 4. If you pass the flag STBIR_FLAG_ALPHA_PREMULTIPLIED, the + resizer does not do anything special for the alpha channel; + it is resampled identically to other channels. This produces + the correct results for premultiplied-alpha images, but produces + less-than-ideal results for non-premultiplied-alpha images. + + 5. If you do not pass the flag STBIR_FLAG_ALPHA_PREMULTIPLIED, + then the resizer weights the contribution of input pixels + based on their alpha values, or, equivalently, it multiplies + the alpha value into the color channels, resamples, then divides + by the resultant alpha value. Input pixels which have alpha=0 do + not contribute at all to output pixels unless _all_ of the input + pixels affecting that output pixel have alpha=0, in which case + the result for that pixel is the same as it would be without + STBIR_FLAG_ALPHA_PREMULTIPLIED. However, this is only true for + input images in integer formats. For input images in float format, + input pixels with alpha=0 have no effect, and output pixels + which have alpha=0 will be 0 in all channels. (For float images, + you can manually achieve the same result by adding a tiny epsilon + value to the alpha channel of every image, and then subtracting + or clamping it at the end.) + + 6. You can suppress the behavior described in #5 and make + all-0-alpha pixels have 0 in all channels by #defining + STBIR_NO_ALPHA_EPSILON. + + 7. You can separately control whether the alpha channel is + interpreted as linear or affected by the colorspace. By default + it is linear; you almost never want to apply the colorspace. + (For example, graphics hardware does not apply sRGB conversion + to the alpha channel.) + + CONTRIBUTORS + Jorge L Rodriguez: Implementation + Sean Barrett: API design, optimizations + Aras Pranckevicius: bugfix + Nathan Reed: warning fixes + + REVISIONS + 0.97 (2020-02-02) fixed warning + 0.96 (2019-03-04) fixed warnings + 0.95 (2017-07-23) fixed warnings + 0.94 (2017-03-18) fixed warnings + 0.93 (2017-03-03) fixed bug with certain combinations of heights + 0.92 (2017-01-02) fix integer overflow on large (>2GB) images + 0.91 (2016-04-02) fix warnings; fix handling of subpixel regions + 0.90 (2014-09-17) first released version + + LICENSE + See end of file for license information. + + TODO + Don't decode all of the image data when only processing a partial tile + Don't use full-width decode buffers when only processing a partial tile + When processing wide images, break processing into tiles so data fits in L1 cache + Installable filters? + Resize that respects alpha test coverage + (Reference code: FloatImage::alphaTestCoverage and FloatImage::scaleAlphaToCoverage: + https://code.google.com/p/nvidia-texture-tools/source/browse/trunk/src/nvimage/FloatImage.cpp ) +*/ + +#ifndef STBIR_INCLUDE_STB_IMAGE_RESIZE_H +#define STBIR_INCLUDE_STB_IMAGE_RESIZE_H + +#ifdef _MSC_VER +typedef unsigned char stbir_uint8; +typedef unsigned short stbir_uint16; +typedef unsigned int stbir_uint32; +#else +#include +typedef uint8_t stbir_uint8; +typedef uint16_t stbir_uint16; +typedef uint32_t stbir_uint32; +#endif + +#ifndef STBIRDEF +#ifdef STB_IMAGE_RESIZE_STATIC +#define STBIRDEF static +#else +#ifdef __cplusplus +#define STBIRDEF extern "C" +#else +#define STBIRDEF extern +#endif +#endif +#endif + +////////////////////////////////////////////////////////////////////////////// +// +// Easy-to-use API: +// +// * "input pixels" points to an array of image data with 'num_channels' channels (e.g. RGB=3, RGBA=4) +// * input_w is input image width (x-axis), input_h is input image height (y-axis) +// * stride is the offset between successive rows of image data in memory, in bytes. you can +// specify 0 to mean packed continuously in memory +// * alpha channel is treated identically to other channels. +// * colorspace is linear or sRGB as specified by function name +// * returned result is 1 for success or 0 in case of an error. +// #define STBIR_ASSERT() to trigger an assert on parameter validation errors. +// * Memory required grows approximately linearly with input and output size, but with +// discontinuities at input_w == output_w and input_h == output_h. +// * These functions use a "default" resampling filter defined at compile time. To change the filter, +// you can change the compile-time defaults by #defining STBIR_DEFAULT_FILTER_UPSAMPLE +// and STBIR_DEFAULT_FILTER_DOWNSAMPLE, or you can use the medium-complexity API. + +STBIRDEF int stbir_resize_uint8( const unsigned char *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + unsigned char *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels); + +STBIRDEF int stbir_resize_float( const float *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + float *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels); + + +// The following functions interpret image data as gamma-corrected sRGB. +// Specify STBIR_ALPHA_CHANNEL_NONE if you have no alpha channel, +// or otherwise provide the index of the alpha channel. Flags value +// of 0 will probably do the right thing if you're not sure what +// the flags mean. + +#define STBIR_ALPHA_CHANNEL_NONE -1 + +// Set this flag if your texture has premultiplied alpha. Otherwise, stbir will +// use alpha-weighted resampling (effectively premultiplying, resampling, +// then unpremultiplying). +#define STBIR_FLAG_ALPHA_PREMULTIPLIED (1 << 0) +// The specified alpha channel should be handled as gamma-corrected value even +// when doing sRGB operations. +#define STBIR_FLAG_ALPHA_USES_COLORSPACE (1 << 1) + +STBIRDEF int stbir_resize_uint8_srgb(const unsigned char *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + unsigned char *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags); + + +typedef enum +{ + STBIR_EDGE_CLAMP = 1, + STBIR_EDGE_REFLECT = 2, + STBIR_EDGE_WRAP = 3, + STBIR_EDGE_ZERO = 4, +} stbir_edge; + +// This function adds the ability to specify how requests to sample off the edge of the image are handled. +STBIRDEF int stbir_resize_uint8_srgb_edgemode(const unsigned char *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + unsigned char *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_wrap_mode); + +////////////////////////////////////////////////////////////////////////////// +// +// Medium-complexity API +// +// This extends the easy-to-use API as follows: +// +// * Alpha-channel can be processed separately +// * If alpha_channel is not STBIR_ALPHA_CHANNEL_NONE +// * Alpha channel will not be gamma corrected (unless flags&STBIR_FLAG_GAMMA_CORRECT) +// * Filters will be weighted by alpha channel (unless flags&STBIR_FLAG_ALPHA_PREMULTIPLIED) +// * Filter can be selected explicitly +// * uint16 image type +// * sRGB colorspace available for all types +// * context parameter for passing to STBIR_MALLOC + +typedef enum +{ + STBIR_FILTER_DEFAULT = 0, // use same filter type that easy-to-use API chooses + STBIR_FILTER_BOX = 1, // A trapezoid w/1-pixel wide ramps, same result as box for integer scale ratios + STBIR_FILTER_TRIANGLE = 2, // On upsampling, produces same results as bilinear texture filtering + STBIR_FILTER_CUBICBSPLINE = 3, // The cubic b-spline (aka Mitchell-Netrevalli with B=1,C=0), gaussian-esque + STBIR_FILTER_CATMULLROM = 4, // An interpolating cubic spline + STBIR_FILTER_MITCHELL = 5, // Mitchell-Netrevalli filter with B=1/3, C=1/3 +} stbir_filter; + +typedef enum +{ + STBIR_COLORSPACE_LINEAR, + STBIR_COLORSPACE_SRGB, + + STBIR_MAX_COLORSPACES, +} stbir_colorspace; + +// The following functions are all identical except for the type of the image data + +STBIRDEF int stbir_resize_uint8_generic( const unsigned char *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + unsigned char *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_wrap_mode, stbir_filter filter, stbir_colorspace space, + void *alloc_context); + +STBIRDEF int stbir_resize_uint16_generic(const stbir_uint16 *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + stbir_uint16 *output_pixels , int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_wrap_mode, stbir_filter filter, stbir_colorspace space, + void *alloc_context); + +STBIRDEF int stbir_resize_float_generic( const float *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + float *output_pixels , int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_wrap_mode, stbir_filter filter, stbir_colorspace space, + void *alloc_context); + + + +////////////////////////////////////////////////////////////////////////////// +// +// Full-complexity API +// +// This extends the medium API as follows: +// +// * uint32 image type +// * not typesafe +// * separate filter types for each axis +// * separate edge modes for each axis +// * can specify scale explicitly for subpixel correctness +// * can specify image source tile using texture coordinates + +typedef enum +{ + STBIR_TYPE_UINT8 , + STBIR_TYPE_UINT16, + STBIR_TYPE_UINT32, + STBIR_TYPE_FLOAT , + + STBIR_MAX_TYPES +} stbir_datatype; + +STBIRDEF int stbir_resize( const void *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + void *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + stbir_datatype datatype, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_mode_horizontal, stbir_edge edge_mode_vertical, + stbir_filter filter_horizontal, stbir_filter filter_vertical, + stbir_colorspace space, void *alloc_context); + +STBIRDEF int stbir_resize_subpixel(const void *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + void *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + stbir_datatype datatype, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_mode_horizontal, stbir_edge edge_mode_vertical, + stbir_filter filter_horizontal, stbir_filter filter_vertical, + stbir_colorspace space, void *alloc_context, + float x_scale, float y_scale, + float x_offset, float y_offset); + +STBIRDEF int stbir_resize_region( const void *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + void *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + stbir_datatype datatype, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_mode_horizontal, stbir_edge edge_mode_vertical, + stbir_filter filter_horizontal, stbir_filter filter_vertical, + stbir_colorspace space, void *alloc_context, + float s0, float t0, float s1, float t1); +// (s0, t0) & (s1, t1) are the top-left and bottom right corner (uv addressing style: [0, 1]x[0, 1]) of a region of the input image to use. + +// +// +//// end header file ///////////////////////////////////////////////////// +#endif // STBIR_INCLUDE_STB_IMAGE_RESIZE_H + + + + + +#ifdef STB_IMAGE_RESIZE_IMPLEMENTATION + +#ifndef STBIR_ASSERT +#include +#define STBIR_ASSERT(x) assert(x) +#endif + +// For memset +#include + +#include + +#ifndef STBIR_MALLOC +#include +// use comma operator to evaluate c, to avoid "unused parameter" warnings +#define STBIR_MALLOC(size,c) ((void)(c), malloc(size)) +#define STBIR_FREE(ptr,c) ((void)(c), free(ptr)) +#endif + +#ifndef _MSC_VER +#ifdef __cplusplus +#define stbir__inline inline +#else +#define stbir__inline +#endif +#else +#define stbir__inline __forceinline +#endif + + +// should produce compiler error if size is wrong +typedef unsigned char stbir__validate_uint32[sizeof(stbir_uint32) == 4 ? 1 : -1]; + +#ifdef _MSC_VER +#define STBIR__NOTUSED(v) (void)(v) +#else +#define STBIR__NOTUSED(v) (void)sizeof(v) +#endif + +#define STBIR__ARRAY_SIZE(a) (sizeof((a))/sizeof((a)[0])) + +#ifndef STBIR_DEFAULT_FILTER_UPSAMPLE +#define STBIR_DEFAULT_FILTER_UPSAMPLE STBIR_FILTER_CATMULLROM +#endif + +#ifndef STBIR_DEFAULT_FILTER_DOWNSAMPLE +#define STBIR_DEFAULT_FILTER_DOWNSAMPLE STBIR_FILTER_MITCHELL +#endif + +#ifndef STBIR_PROGRESS_REPORT +#define STBIR_PROGRESS_REPORT(float_0_to_1) +#endif + +#ifndef STBIR_MAX_CHANNELS +#define STBIR_MAX_CHANNELS 64 +#endif + +#if STBIR_MAX_CHANNELS > 65536 +#error "Too many channels; STBIR_MAX_CHANNELS must be no more than 65536." +// because we store the indices in 16-bit variables +#endif + +// This value is added to alpha just before premultiplication to avoid +// zeroing out color values. It is equivalent to 2^-80. If you don't want +// that behavior (it may interfere if you have floating point images with +// very small alpha values) then you can define STBIR_NO_ALPHA_EPSILON to +// disable it. +#ifndef STBIR_ALPHA_EPSILON +#define STBIR_ALPHA_EPSILON ((float)1 / (1 << 20) / (1 << 20) / (1 << 20) / (1 << 20)) +#endif + + + +#ifdef _MSC_VER +#define STBIR__UNUSED_PARAM(v) (void)(v) +#else +#define STBIR__UNUSED_PARAM(v) (void)sizeof(v) +#endif + +// must match stbir_datatype +static unsigned char stbir__type_size[] = { + 1, // STBIR_TYPE_UINT8 + 2, // STBIR_TYPE_UINT16 + 4, // STBIR_TYPE_UINT32 + 4, // STBIR_TYPE_FLOAT +}; + +// Kernel function centered at 0 +typedef float (stbir__kernel_fn)(float x, float scale); +typedef float (stbir__support_fn)(float scale); + +typedef struct +{ + stbir__kernel_fn* kernel; + stbir__support_fn* support; +} stbir__filter_info; + +// When upsampling, the contributors are which source pixels contribute. +// When downsampling, the contributors are which destination pixels are contributed to. +typedef struct +{ + int n0; // First contributing pixel + int n1; // Last contributing pixel +} stbir__contributors; + +typedef struct +{ + const void* input_data; + int input_w; + int input_h; + int input_stride_bytes; + + void* output_data; + int output_w; + int output_h; + int output_stride_bytes; + + float s0, t0, s1, t1; + + float horizontal_shift; // Units: output pixels + float vertical_shift; // Units: output pixels + float horizontal_scale; + float vertical_scale; + + int channels; + int alpha_channel; + stbir_uint32 flags; + stbir_datatype type; + stbir_filter horizontal_filter; + stbir_filter vertical_filter; + stbir_edge edge_horizontal; + stbir_edge edge_vertical; + stbir_colorspace colorspace; + + stbir__contributors* horizontal_contributors; + float* horizontal_coefficients; + + stbir__contributors* vertical_contributors; + float* vertical_coefficients; + + int decode_buffer_pixels; + float* decode_buffer; + + float* horizontal_buffer; + + // cache these because ceil/floor are inexplicably showing up in profile + int horizontal_coefficient_width; + int vertical_coefficient_width; + int horizontal_filter_pixel_width; + int vertical_filter_pixel_width; + int horizontal_filter_pixel_margin; + int vertical_filter_pixel_margin; + int horizontal_num_contributors; + int vertical_num_contributors; + + int ring_buffer_length_bytes; // The length of an individual entry in the ring buffer. The total number of ring buffers is stbir__get_filter_pixel_width(filter) + int ring_buffer_num_entries; // Total number of entries in the ring buffer. + int ring_buffer_first_scanline; + int ring_buffer_last_scanline; + int ring_buffer_begin_index; // first_scanline is at this index in the ring buffer + float* ring_buffer; + + float* encode_buffer; // A temporary buffer to store floats so we don't lose precision while we do multiply-adds. + + int horizontal_contributors_size; + int horizontal_coefficients_size; + int vertical_contributors_size; + int vertical_coefficients_size; + int decode_buffer_size; + int horizontal_buffer_size; + int ring_buffer_size; + int encode_buffer_size; +} stbir__info; + + +static const float stbir__max_uint8_as_float = 255.0f; +static const float stbir__max_uint16_as_float = 65535.0f; +static const double stbir__max_uint32_as_float = 4294967295.0; + + +static stbir__inline int stbir__min(int a, int b) +{ + return a < b ? a : b; +} + +static stbir__inline float stbir__saturate(float x) +{ + if (x < 0) + return 0; + + if (x > 1) + return 1; + + return x; +} + +#ifdef STBIR_SATURATE_INT +static stbir__inline stbir_uint8 stbir__saturate8(int x) +{ + if ((unsigned int) x <= 255) + return x; + + if (x < 0) + return 0; + + return 255; +} + +static stbir__inline stbir_uint16 stbir__saturate16(int x) +{ + if ((unsigned int) x <= 65535) + return x; + + if (x < 0) + return 0; + + return 65535; +} +#endif + +static float stbir__srgb_uchar_to_linear_float[256] = { + 0.000000f, 0.000304f, 0.000607f, 0.000911f, 0.001214f, 0.001518f, 0.001821f, 0.002125f, 0.002428f, 0.002732f, 0.003035f, + 0.003347f, 0.003677f, 0.004025f, 0.004391f, 0.004777f, 0.005182f, 0.005605f, 0.006049f, 0.006512f, 0.006995f, 0.007499f, + 0.008023f, 0.008568f, 0.009134f, 0.009721f, 0.010330f, 0.010960f, 0.011612f, 0.012286f, 0.012983f, 0.013702f, 0.014444f, + 0.015209f, 0.015996f, 0.016807f, 0.017642f, 0.018500f, 0.019382f, 0.020289f, 0.021219f, 0.022174f, 0.023153f, 0.024158f, + 0.025187f, 0.026241f, 0.027321f, 0.028426f, 0.029557f, 0.030713f, 0.031896f, 0.033105f, 0.034340f, 0.035601f, 0.036889f, + 0.038204f, 0.039546f, 0.040915f, 0.042311f, 0.043735f, 0.045186f, 0.046665f, 0.048172f, 0.049707f, 0.051269f, 0.052861f, + 0.054480f, 0.056128f, 0.057805f, 0.059511f, 0.061246f, 0.063010f, 0.064803f, 0.066626f, 0.068478f, 0.070360f, 0.072272f, + 0.074214f, 0.076185f, 0.078187f, 0.080220f, 0.082283f, 0.084376f, 0.086500f, 0.088656f, 0.090842f, 0.093059f, 0.095307f, + 0.097587f, 0.099899f, 0.102242f, 0.104616f, 0.107023f, 0.109462f, 0.111932f, 0.114435f, 0.116971f, 0.119538f, 0.122139f, + 0.124772f, 0.127438f, 0.130136f, 0.132868f, 0.135633f, 0.138432f, 0.141263f, 0.144128f, 0.147027f, 0.149960f, 0.152926f, + 0.155926f, 0.158961f, 0.162029f, 0.165132f, 0.168269f, 0.171441f, 0.174647f, 0.177888f, 0.181164f, 0.184475f, 0.187821f, + 0.191202f, 0.194618f, 0.198069f, 0.201556f, 0.205079f, 0.208637f, 0.212231f, 0.215861f, 0.219526f, 0.223228f, 0.226966f, + 0.230740f, 0.234551f, 0.238398f, 0.242281f, 0.246201f, 0.250158f, 0.254152f, 0.258183f, 0.262251f, 0.266356f, 0.270498f, + 0.274677f, 0.278894f, 0.283149f, 0.287441f, 0.291771f, 0.296138f, 0.300544f, 0.304987f, 0.309469f, 0.313989f, 0.318547f, + 0.323143f, 0.327778f, 0.332452f, 0.337164f, 0.341914f, 0.346704f, 0.351533f, 0.356400f, 0.361307f, 0.366253f, 0.371238f, + 0.376262f, 0.381326f, 0.386430f, 0.391573f, 0.396755f, 0.401978f, 0.407240f, 0.412543f, 0.417885f, 0.423268f, 0.428691f, + 0.434154f, 0.439657f, 0.445201f, 0.450786f, 0.456411f, 0.462077f, 0.467784f, 0.473532f, 0.479320f, 0.485150f, 0.491021f, + 0.496933f, 0.502887f, 0.508881f, 0.514918f, 0.520996f, 0.527115f, 0.533276f, 0.539480f, 0.545725f, 0.552011f, 0.558340f, + 0.564712f, 0.571125f, 0.577581f, 0.584078f, 0.590619f, 0.597202f, 0.603827f, 0.610496f, 0.617207f, 0.623960f, 0.630757f, + 0.637597f, 0.644480f, 0.651406f, 0.658375f, 0.665387f, 0.672443f, 0.679543f, 0.686685f, 0.693872f, 0.701102f, 0.708376f, + 0.715694f, 0.723055f, 0.730461f, 0.737911f, 0.745404f, 0.752942f, 0.760525f, 0.768151f, 0.775822f, 0.783538f, 0.791298f, + 0.799103f, 0.806952f, 0.814847f, 0.822786f, 0.830770f, 0.838799f, 0.846873f, 0.854993f, 0.863157f, 0.871367f, 0.879622f, + 0.887923f, 0.896269f, 0.904661f, 0.913099f, 0.921582f, 0.930111f, 0.938686f, 0.947307f, 0.955974f, 0.964686f, 0.973445f, + 0.982251f, 0.991102f, 1.0f +}; + +static float stbir__srgb_to_linear(float f) +{ + if (f <= 0.04045f) + return f / 12.92f; + else + return (float)pow((f + 0.055f) / 1.055f, 2.4f); +} + +static float stbir__linear_to_srgb(float f) +{ + if (f <= 0.0031308f) + return f * 12.92f; + else + return 1.055f * (float)pow(f, 1 / 2.4f) - 0.055f; +} + +#ifndef STBIR_NON_IEEE_FLOAT +// From https://gist.github.com/rygorous/2203834 + +typedef union +{ + stbir_uint32 u; + float f; +} stbir__FP32; + +static const stbir_uint32 fp32_to_srgb8_tab4[104] = { + 0x0073000d, 0x007a000d, 0x0080000d, 0x0087000d, 0x008d000d, 0x0094000d, 0x009a000d, 0x00a1000d, + 0x00a7001a, 0x00b4001a, 0x00c1001a, 0x00ce001a, 0x00da001a, 0x00e7001a, 0x00f4001a, 0x0101001a, + 0x010e0033, 0x01280033, 0x01410033, 0x015b0033, 0x01750033, 0x018f0033, 0x01a80033, 0x01c20033, + 0x01dc0067, 0x020f0067, 0x02430067, 0x02760067, 0x02aa0067, 0x02dd0067, 0x03110067, 0x03440067, + 0x037800ce, 0x03df00ce, 0x044600ce, 0x04ad00ce, 0x051400ce, 0x057b00c5, 0x05dd00bc, 0x063b00b5, + 0x06970158, 0x07420142, 0x07e30130, 0x087b0120, 0x090b0112, 0x09940106, 0x0a1700fc, 0x0a9500f2, + 0x0b0f01cb, 0x0bf401ae, 0x0ccb0195, 0x0d950180, 0x0e56016e, 0x0f0d015e, 0x0fbc0150, 0x10630143, + 0x11070264, 0x1238023e, 0x1357021d, 0x14660201, 0x156601e9, 0x165a01d3, 0x174401c0, 0x182401af, + 0x18fe0331, 0x1a9602fe, 0x1c1502d2, 0x1d7e02ad, 0x1ed4028d, 0x201a0270, 0x21520256, 0x227d0240, + 0x239f0443, 0x25c003fe, 0x27bf03c4, 0x29a10392, 0x2b6a0367, 0x2d1d0341, 0x2ebe031f, 0x304d0300, + 0x31d105b0, 0x34a80555, 0x37520507, 0x39d504c5, 0x3c37048b, 0x3e7c0458, 0x40a8042a, 0x42bd0401, + 0x44c20798, 0x488e071e, 0x4c1c06b6, 0x4f76065d, 0x52a50610, 0x55ac05cc, 0x5892058f, 0x5b590559, + 0x5e0c0a23, 0x631c0980, 0x67db08f6, 0x6c55087f, 0x70940818, 0x74a007bd, 0x787d076c, 0x7c330723, +}; + +static stbir_uint8 stbir__linear_to_srgb_uchar(float in) +{ + static const stbir__FP32 almostone = { 0x3f7fffff }; // 1-eps + static const stbir__FP32 minval = { (127-13) << 23 }; + stbir_uint32 tab,bias,scale,t; + stbir__FP32 f; + + // Clamp to [2^(-13), 1-eps]; these two values map to 0 and 1, respectively. + // The tests are carefully written so that NaNs map to 0, same as in the reference + // implementation. + if (!(in > minval.f)) // written this way to catch NaNs + in = minval.f; + if (in > almostone.f) + in = almostone.f; + + // Do the table lookup and unpack bias, scale + f.f = in; + tab = fp32_to_srgb8_tab4[(f.u - minval.u) >> 20]; + bias = (tab >> 16) << 9; + scale = tab & 0xffff; + + // Grab next-highest mantissa bits and perform linear interpolation + t = (f.u >> 12) & 0xff; + return (unsigned char) ((bias + scale*t) >> 16); +} + +#else +// sRGB transition values, scaled by 1<<28 +static int stbir__srgb_offset_to_linear_scaled[256] = +{ + 0, 40738, 122216, 203693, 285170, 366648, 448125, 529603, + 611080, 692557, 774035, 855852, 942009, 1033024, 1128971, 1229926, + 1335959, 1447142, 1563542, 1685229, 1812268, 1944725, 2082664, 2226148, + 2375238, 2529996, 2690481, 2856753, 3028870, 3206888, 3390865, 3580856, + 3776916, 3979100, 4187460, 4402049, 4622919, 4850123, 5083710, 5323731, + 5570236, 5823273, 6082892, 6349140, 6622065, 6901714, 7188133, 7481369, + 7781466, 8088471, 8402427, 8723380, 9051372, 9386448, 9728650, 10078021, + 10434603, 10798439, 11169569, 11548036, 11933879, 12327139, 12727857, 13136073, + 13551826, 13975156, 14406100, 14844697, 15290987, 15745007, 16206795, 16676389, + 17153826, 17639142, 18132374, 18633560, 19142734, 19659934, 20185196, 20718552, + 21260042, 21809696, 22367554, 22933648, 23508010, 24090680, 24681686, 25281066, + 25888850, 26505076, 27129772, 27762974, 28404716, 29055026, 29713942, 30381490, + 31057708, 31742624, 32436272, 33138682, 33849884, 34569912, 35298800, 36036568, + 36783260, 37538896, 38303512, 39077136, 39859796, 40651528, 41452360, 42262316, + 43081432, 43909732, 44747252, 45594016, 46450052, 47315392, 48190064, 49074096, + 49967516, 50870356, 51782636, 52704392, 53635648, 54576432, 55526772, 56486700, + 57456236, 58435408, 59424248, 60422780, 61431036, 62449032, 63476804, 64514376, + 65561776, 66619028, 67686160, 68763192, 69850160, 70947088, 72053992, 73170912, + 74297864, 75434880, 76581976, 77739184, 78906536, 80084040, 81271736, 82469648, + 83677792, 84896192, 86124888, 87363888, 88613232, 89872928, 91143016, 92423512, + 93714432, 95015816, 96327688, 97650056, 98982952, 100326408, 101680440, 103045072, + 104420320, 105806224, 107202800, 108610064, 110028048, 111456776, 112896264, 114346544, + 115807632, 117279552, 118762328, 120255976, 121760536, 123276016, 124802440, 126339832, + 127888216, 129447616, 131018048, 132599544, 134192112, 135795792, 137410592, 139036528, + 140673648, 142321952, 143981456, 145652208, 147334208, 149027488, 150732064, 152447968, + 154175200, 155913792, 157663776, 159425168, 161197984, 162982240, 164777968, 166585184, + 168403904, 170234160, 172075968, 173929344, 175794320, 177670896, 179559120, 181458992, + 183370528, 185293776, 187228736, 189175424, 191133888, 193104112, 195086128, 197079968, + 199085648, 201103184, 203132592, 205173888, 207227120, 209292272, 211369392, 213458480, + 215559568, 217672656, 219797792, 221934976, 224084240, 226245600, 228419056, 230604656, + 232802400, 235012320, 237234432, 239468736, 241715280, 243974080, 246245120, 248528464, + 250824112, 253132064, 255452368, 257785040, 260130080, 262487520, 264857376, 267239664, +}; + +static stbir_uint8 stbir__linear_to_srgb_uchar(float f) +{ + int x = (int) (f * (1 << 28)); // has headroom so you don't need to clamp + int v = 0; + int i; + + // Refine the guess with a short binary search. + i = v + 128; if (x >= stbir__srgb_offset_to_linear_scaled[i]) v = i; + i = v + 64; if (x >= stbir__srgb_offset_to_linear_scaled[i]) v = i; + i = v + 32; if (x >= stbir__srgb_offset_to_linear_scaled[i]) v = i; + i = v + 16; if (x >= stbir__srgb_offset_to_linear_scaled[i]) v = i; + i = v + 8; if (x >= stbir__srgb_offset_to_linear_scaled[i]) v = i; + i = v + 4; if (x >= stbir__srgb_offset_to_linear_scaled[i]) v = i; + i = v + 2; if (x >= stbir__srgb_offset_to_linear_scaled[i]) v = i; + i = v + 1; if (x >= stbir__srgb_offset_to_linear_scaled[i]) v = i; + + return (stbir_uint8) v; +} +#endif + +static float stbir__filter_trapezoid(float x, float scale) +{ + float halfscale = scale / 2; + float t = 0.5f + halfscale; + STBIR_ASSERT(scale <= 1); + + x = (float)fabs(x); + + if (x >= t) + return 0; + else + { + float r = 0.5f - halfscale; + if (x <= r) + return 1; + else + return (t - x) / scale; + } +} + +static float stbir__support_trapezoid(float scale) +{ + STBIR_ASSERT(scale <= 1); + return 0.5f + scale / 2; +} + +static float stbir__filter_triangle(float x, float s) +{ + STBIR__UNUSED_PARAM(s); + + x = (float)fabs(x); + + if (x <= 1.0f) + return 1 - x; + else + return 0; +} + +static float stbir__filter_cubic(float x, float s) +{ + STBIR__UNUSED_PARAM(s); + + x = (float)fabs(x); + + if (x < 1.0f) + return (4 + x*x*(3*x - 6))/6; + else if (x < 2.0f) + return (8 + x*(-12 + x*(6 - x)))/6; + + return (0.0f); +} + +static float stbir__filter_catmullrom(float x, float s) +{ + STBIR__UNUSED_PARAM(s); + + x = (float)fabs(x); + + if (x < 1.0f) + return 1 - x*x*(2.5f - 1.5f*x); + else if (x < 2.0f) + return 2 - x*(4 + x*(0.5f*x - 2.5f)); + + return (0.0f); +} + +static float stbir__filter_mitchell(float x, float s) +{ + STBIR__UNUSED_PARAM(s); + + x = (float)fabs(x); + + if (x < 1.0f) + return (16 + x*x*(21 * x - 36))/18; + else if (x < 2.0f) + return (32 + x*(-60 + x*(36 - 7*x)))/18; + + return (0.0f); +} + +static float stbir__support_zero(float s) +{ + STBIR__UNUSED_PARAM(s); + return 0; +} + +static float stbir__support_one(float s) +{ + STBIR__UNUSED_PARAM(s); + return 1; +} + +static float stbir__support_two(float s) +{ + STBIR__UNUSED_PARAM(s); + return 2; +} + +static stbir__filter_info stbir__filter_info_table[] = { + { NULL, stbir__support_zero }, + { stbir__filter_trapezoid, stbir__support_trapezoid }, + { stbir__filter_triangle, stbir__support_one }, + { stbir__filter_cubic, stbir__support_two }, + { stbir__filter_catmullrom, stbir__support_two }, + { stbir__filter_mitchell, stbir__support_two }, +}; + +stbir__inline static int stbir__use_upsampling(float ratio) +{ + return ratio > 1; +} + +stbir__inline static int stbir__use_width_upsampling(stbir__info* stbir_info) +{ + return stbir__use_upsampling(stbir_info->horizontal_scale); +} + +stbir__inline static int stbir__use_height_upsampling(stbir__info* stbir_info) +{ + return stbir__use_upsampling(stbir_info->vertical_scale); +} + +// This is the maximum number of input samples that can affect an output sample +// with the given filter +static int stbir__get_filter_pixel_width(stbir_filter filter, float scale) +{ + STBIR_ASSERT(filter != 0); + STBIR_ASSERT(filter < STBIR__ARRAY_SIZE(stbir__filter_info_table)); + + if (stbir__use_upsampling(scale)) + return (int)ceil(stbir__filter_info_table[filter].support(1/scale) * 2); + else + return (int)ceil(stbir__filter_info_table[filter].support(scale) * 2 / scale); +} + +// This is how much to expand buffers to account for filters seeking outside +// the image boundaries. +static int stbir__get_filter_pixel_margin(stbir_filter filter, float scale) +{ + return stbir__get_filter_pixel_width(filter, scale) / 2; +} + +static int stbir__get_coefficient_width(stbir_filter filter, float scale) +{ + if (stbir__use_upsampling(scale)) + return (int)ceil(stbir__filter_info_table[filter].support(1 / scale) * 2); + else + return (int)ceil(stbir__filter_info_table[filter].support(scale) * 2); +} + +static int stbir__get_contributors(float scale, stbir_filter filter, int input_size, int output_size) +{ + if (stbir__use_upsampling(scale)) + return output_size; + else + return (input_size + stbir__get_filter_pixel_margin(filter, scale) * 2); +} + +static int stbir__get_total_horizontal_coefficients(stbir__info* info) +{ + return info->horizontal_num_contributors + * stbir__get_coefficient_width (info->horizontal_filter, info->horizontal_scale); +} + +static int stbir__get_total_vertical_coefficients(stbir__info* info) +{ + return info->vertical_num_contributors + * stbir__get_coefficient_width (info->vertical_filter, info->vertical_scale); +} + +static stbir__contributors* stbir__get_contributor(stbir__contributors* contributors, int n) +{ + return &contributors[n]; +} + +// For perf reasons this code is duplicated in stbir__resample_horizontal_upsample/downsample, +// if you change it here change it there too. +static float* stbir__get_coefficient(float* coefficients, stbir_filter filter, float scale, int n, int c) +{ + int width = stbir__get_coefficient_width(filter, scale); + return &coefficients[width*n + c]; +} + +static int stbir__edge_wrap_slow(stbir_edge edge, int n, int max) +{ + switch (edge) + { + case STBIR_EDGE_ZERO: + return 0; // we'll decode the wrong pixel here, and then overwrite with 0s later + + case STBIR_EDGE_CLAMP: + if (n < 0) + return 0; + + if (n >= max) + return max - 1; + + return n; // NOTREACHED + + case STBIR_EDGE_REFLECT: + { + if (n < 0) + { + if (n < max) + return -n; + else + return max - 1; + } + + if (n >= max) + { + int max2 = max * 2; + if (n >= max2) + return 0; + else + return max2 - n - 1; + } + + return n; // NOTREACHED + } + + case STBIR_EDGE_WRAP: + if (n >= 0) + return (n % max); + else + { + int m = (-n) % max; + + if (m != 0) + m = max - m; + + return (m); + } + // NOTREACHED + + default: + STBIR_ASSERT(!"Unimplemented edge type"); + return 0; + } +} + +stbir__inline static int stbir__edge_wrap(stbir_edge edge, int n, int max) +{ + // avoid per-pixel switch + if (n >= 0 && n < max) + return n; + return stbir__edge_wrap_slow(edge, n, max); +} + +// What input pixels contribute to this output pixel? +static void stbir__calculate_sample_range_upsample(int n, float out_filter_radius, float scale_ratio, float out_shift, int* in_first_pixel, int* in_last_pixel, float* in_center_of_out) +{ + float out_pixel_center = (float)n + 0.5f; + float out_pixel_influence_lowerbound = out_pixel_center - out_filter_radius; + float out_pixel_influence_upperbound = out_pixel_center + out_filter_radius; + + float in_pixel_influence_lowerbound = (out_pixel_influence_lowerbound + out_shift) / scale_ratio; + float in_pixel_influence_upperbound = (out_pixel_influence_upperbound + out_shift) / scale_ratio; + + *in_center_of_out = (out_pixel_center + out_shift) / scale_ratio; + *in_first_pixel = (int)(floor(in_pixel_influence_lowerbound + 0.5)); + *in_last_pixel = (int)(floor(in_pixel_influence_upperbound - 0.5)); +} + +// What output pixels does this input pixel contribute to? +static void stbir__calculate_sample_range_downsample(int n, float in_pixels_radius, float scale_ratio, float out_shift, int* out_first_pixel, int* out_last_pixel, float* out_center_of_in) +{ + float in_pixel_center = (float)n + 0.5f; + float in_pixel_influence_lowerbound = in_pixel_center - in_pixels_radius; + float in_pixel_influence_upperbound = in_pixel_center + in_pixels_radius; + + float out_pixel_influence_lowerbound = in_pixel_influence_lowerbound * scale_ratio - out_shift; + float out_pixel_influence_upperbound = in_pixel_influence_upperbound * scale_ratio - out_shift; + + *out_center_of_in = in_pixel_center * scale_ratio - out_shift; + *out_first_pixel = (int)(floor(out_pixel_influence_lowerbound + 0.5)); + *out_last_pixel = (int)(floor(out_pixel_influence_upperbound - 0.5)); +} + +static void stbir__calculate_coefficients_upsample(stbir_filter filter, float scale, int in_first_pixel, int in_last_pixel, float in_center_of_out, stbir__contributors* contributor, float* coefficient_group) +{ + int i; + float total_filter = 0; + float filter_scale; + + STBIR_ASSERT(in_last_pixel - in_first_pixel <= (int)ceil(stbir__filter_info_table[filter].support(1/scale) * 2)); // Taken directly from stbir__get_coefficient_width() which we can't call because we don't know if we're horizontal or vertical. + + contributor->n0 = in_first_pixel; + contributor->n1 = in_last_pixel; + + STBIR_ASSERT(contributor->n1 >= contributor->n0); + + for (i = 0; i <= in_last_pixel - in_first_pixel; i++) + { + float in_pixel_center = (float)(i + in_first_pixel) + 0.5f; + coefficient_group[i] = stbir__filter_info_table[filter].kernel(in_center_of_out - in_pixel_center, 1 / scale); + + // If the coefficient is zero, skip it. (Don't do the <0 check here, we want the influence of those outside pixels.) + if (i == 0 && !coefficient_group[i]) + { + contributor->n0 = ++in_first_pixel; + i--; + continue; + } + + total_filter += coefficient_group[i]; + } + + // NOTE(fg): Not actually true in general, nor is there any reason to expect it should be. + // It would be true in exact math but is at best approximately true in floating-point math, + // and it would not make sense to try and put actual bounds on this here because it depends + // on the image aspect ratio which can get pretty extreme. + //STBIR_ASSERT(stbir__filter_info_table[filter].kernel((float)(in_last_pixel + 1) + 0.5f - in_center_of_out, 1/scale) == 0); + + //STBIR_ASSERT(total_filter > 0.9); + STBIR_ASSERT(total_filter < 1.1f); // Make sure it's not way off. + + // Make sure the sum of all coefficients is 1. + filter_scale = 1 / total_filter; + + for (i = 0; i <= in_last_pixel - in_first_pixel; i++) + coefficient_group[i] *= filter_scale; + + for (i = in_last_pixel - in_first_pixel; i >= 0; i--) + { + if (coefficient_group[i]) + break; + + // This line has no weight. We can skip it. + contributor->n1 = contributor->n0 + i - 1; + } +} + +static void stbir__calculate_coefficients_downsample(stbir_filter filter, float scale_ratio, int out_first_pixel, int out_last_pixel, float out_center_of_in, stbir__contributors* contributor, float* coefficient_group) +{ + int i; + + STBIR_ASSERT(out_last_pixel - out_first_pixel <= (int)ceil(stbir__filter_info_table[filter].support(scale_ratio) * 2)); // Taken directly from stbir__get_coefficient_width() which we can't call because we don't know if we're horizontal or vertical. + + contributor->n0 = out_first_pixel; + contributor->n1 = out_last_pixel; + + STBIR_ASSERT(contributor->n1 >= contributor->n0); + + for (i = 0; i <= out_last_pixel - out_first_pixel; i++) + { + float out_pixel_center = (float)(i + out_first_pixel) + 0.5f; + float x = out_pixel_center - out_center_of_in; + coefficient_group[i] = stbir__filter_info_table[filter].kernel(x, scale_ratio) * scale_ratio; + } + + // NOTE(fg): Not actually true in general, nor is there any reason to expect it should be. + // It would be true in exact math but is at best approximately true in floating-point math, + // and it would not make sense to try and put actual bounds on this here because it depends + // on the image aspect ratio which can get pretty extreme. + //STBIR_ASSERT(stbir__filter_info_table[filter].kernel((float)(out_last_pixel + 1) + 0.5f - out_center_of_in, scale_ratio) == 0); + + for (i = out_last_pixel - out_first_pixel; i >= 0; i--) + { + if (coefficient_group[i]) + break; + + // This line has no weight. We can skip it. + contributor->n1 = contributor->n0 + i - 1; + } +} + +static void stbir__normalize_downsample_coefficients(stbir__contributors* contributors, float* coefficients, stbir_filter filter, float scale_ratio, int input_size, int output_size) +{ + int num_contributors = stbir__get_contributors(scale_ratio, filter, input_size, output_size); + int num_coefficients = stbir__get_coefficient_width(filter, scale_ratio); + int i, j; + int skip; + + for (i = 0; i < output_size; i++) + { + float scale; + float total = 0; + + for (j = 0; j < num_contributors; j++) + { + if (i >= contributors[j].n0 && i <= contributors[j].n1) + { + float coefficient = *stbir__get_coefficient(coefficients, filter, scale_ratio, j, i - contributors[j].n0); + total += coefficient; + } + else if (i < contributors[j].n0) + break; + } + + STBIR_ASSERT(total > 0.9f); + STBIR_ASSERT(total < 1.1f); + + scale = 1 / total; + + for (j = 0; j < num_contributors; j++) + { + if (i >= contributors[j].n0 && i <= contributors[j].n1) + *stbir__get_coefficient(coefficients, filter, scale_ratio, j, i - contributors[j].n0) *= scale; + else if (i < contributors[j].n0) + break; + } + } + + // Optimize: Skip zero coefficients and contributions outside of image bounds. + // Do this after normalizing because normalization depends on the n0/n1 values. + for (j = 0; j < num_contributors; j++) + { + int range, max, width; + + skip = 0; + while (*stbir__get_coefficient(coefficients, filter, scale_ratio, j, skip) == 0) + skip++; + + contributors[j].n0 += skip; + + while (contributors[j].n0 < 0) + { + contributors[j].n0++; + skip++; + } + + range = contributors[j].n1 - contributors[j].n0 + 1; + max = stbir__min(num_coefficients, range); + + width = stbir__get_coefficient_width(filter, scale_ratio); + for (i = 0; i < max; i++) + { + if (i + skip >= width) + break; + + *stbir__get_coefficient(coefficients, filter, scale_ratio, j, i) = *stbir__get_coefficient(coefficients, filter, scale_ratio, j, i + skip); + } + + continue; + } + + // Using min to avoid writing into invalid pixels. + for (i = 0; i < num_contributors; i++) + contributors[i].n1 = stbir__min(contributors[i].n1, output_size - 1); +} + +// Each scan line uses the same kernel values so we should calculate the kernel +// values once and then we can use them for every scan line. +static void stbir__calculate_filters(stbir__contributors* contributors, float* coefficients, stbir_filter filter, float scale_ratio, float shift, int input_size, int output_size) +{ + int n; + int total_contributors = stbir__get_contributors(scale_ratio, filter, input_size, output_size); + + if (stbir__use_upsampling(scale_ratio)) + { + float out_pixels_radius = stbir__filter_info_table[filter].support(1 / scale_ratio) * scale_ratio; + + // Looping through out pixels + for (n = 0; n < total_contributors; n++) + { + float in_center_of_out; // Center of the current out pixel in the in pixel space + int in_first_pixel, in_last_pixel; + + stbir__calculate_sample_range_upsample(n, out_pixels_radius, scale_ratio, shift, &in_first_pixel, &in_last_pixel, &in_center_of_out); + + stbir__calculate_coefficients_upsample(filter, scale_ratio, in_first_pixel, in_last_pixel, in_center_of_out, stbir__get_contributor(contributors, n), stbir__get_coefficient(coefficients, filter, scale_ratio, n, 0)); + } + } + else + { + float in_pixels_radius = stbir__filter_info_table[filter].support(scale_ratio) / scale_ratio; + + // Looping through in pixels + for (n = 0; n < total_contributors; n++) + { + float out_center_of_in; // Center of the current out pixel in the in pixel space + int out_first_pixel, out_last_pixel; + int n_adjusted = n - stbir__get_filter_pixel_margin(filter, scale_ratio); + + stbir__calculate_sample_range_downsample(n_adjusted, in_pixels_radius, scale_ratio, shift, &out_first_pixel, &out_last_pixel, &out_center_of_in); + + stbir__calculate_coefficients_downsample(filter, scale_ratio, out_first_pixel, out_last_pixel, out_center_of_in, stbir__get_contributor(contributors, n), stbir__get_coefficient(coefficients, filter, scale_ratio, n, 0)); + } + + stbir__normalize_downsample_coefficients(contributors, coefficients, filter, scale_ratio, input_size, output_size); + } +} + +static float* stbir__get_decode_buffer(stbir__info* stbir_info) +{ + // The 0 index of the decode buffer starts after the margin. This makes + // it okay to use negative indexes on the decode buffer. + return &stbir_info->decode_buffer[stbir_info->horizontal_filter_pixel_margin * stbir_info->channels]; +} + +#define STBIR__DECODE(type, colorspace) ((int)(type) * (STBIR_MAX_COLORSPACES) + (int)(colorspace)) + +static void stbir__decode_scanline(stbir__info* stbir_info, int n) +{ + int c; + int channels = stbir_info->channels; + int alpha_channel = stbir_info->alpha_channel; + int type = stbir_info->type; + int colorspace = stbir_info->colorspace; + int input_w = stbir_info->input_w; + size_t input_stride_bytes = stbir_info->input_stride_bytes; + float* decode_buffer = stbir__get_decode_buffer(stbir_info); + stbir_edge edge_horizontal = stbir_info->edge_horizontal; + stbir_edge edge_vertical = stbir_info->edge_vertical; + size_t in_buffer_row_offset = stbir__edge_wrap(edge_vertical, n, stbir_info->input_h) * input_stride_bytes; + const void* input_data = (char *) stbir_info->input_data + in_buffer_row_offset; + int max_x = input_w + stbir_info->horizontal_filter_pixel_margin; + int decode = STBIR__DECODE(type, colorspace); + + int x = -stbir_info->horizontal_filter_pixel_margin; + + // special handling for STBIR_EDGE_ZERO because it needs to return an item that doesn't appear in the input, + // and we want to avoid paying overhead on every pixel if not STBIR_EDGE_ZERO + if (edge_vertical == STBIR_EDGE_ZERO && (n < 0 || n >= stbir_info->input_h)) + { + for (; x < max_x; x++) + for (c = 0; c < channels; c++) + decode_buffer[x*channels + c] = 0; + return; + } + + switch (decode) + { + case STBIR__DECODE(STBIR_TYPE_UINT8, STBIR_COLORSPACE_LINEAR): + for (; x < max_x; x++) + { + int decode_pixel_index = x * channels; + int input_pixel_index = stbir__edge_wrap(edge_horizontal, x, input_w) * channels; + for (c = 0; c < channels; c++) + decode_buffer[decode_pixel_index + c] = ((float)((const unsigned char*)input_data)[input_pixel_index + c]) / stbir__max_uint8_as_float; + } + break; + + case STBIR__DECODE(STBIR_TYPE_UINT8, STBIR_COLORSPACE_SRGB): + for (; x < max_x; x++) + { + int decode_pixel_index = x * channels; + int input_pixel_index = stbir__edge_wrap(edge_horizontal, x, input_w) * channels; + for (c = 0; c < channels; c++) + decode_buffer[decode_pixel_index + c] = stbir__srgb_uchar_to_linear_float[((const unsigned char*)input_data)[input_pixel_index + c]]; + + if (!(stbir_info->flags&STBIR_FLAG_ALPHA_USES_COLORSPACE)) + decode_buffer[decode_pixel_index + alpha_channel] = ((float)((const unsigned char*)input_data)[input_pixel_index + alpha_channel]) / stbir__max_uint8_as_float; + } + break; + + case STBIR__DECODE(STBIR_TYPE_UINT16, STBIR_COLORSPACE_LINEAR): + for (; x < max_x; x++) + { + int decode_pixel_index = x * channels; + int input_pixel_index = stbir__edge_wrap(edge_horizontal, x, input_w) * channels; + for (c = 0; c < channels; c++) + decode_buffer[decode_pixel_index + c] = ((float)((const unsigned short*)input_data)[input_pixel_index + c]) / stbir__max_uint16_as_float; + } + break; + + case STBIR__DECODE(STBIR_TYPE_UINT16, STBIR_COLORSPACE_SRGB): + for (; x < max_x; x++) + { + int decode_pixel_index = x * channels; + int input_pixel_index = stbir__edge_wrap(edge_horizontal, x, input_w) * channels; + for (c = 0; c < channels; c++) + decode_buffer[decode_pixel_index + c] = stbir__srgb_to_linear(((float)((const unsigned short*)input_data)[input_pixel_index + c]) / stbir__max_uint16_as_float); + + if (!(stbir_info->flags&STBIR_FLAG_ALPHA_USES_COLORSPACE)) + decode_buffer[decode_pixel_index + alpha_channel] = ((float)((const unsigned short*)input_data)[input_pixel_index + alpha_channel]) / stbir__max_uint16_as_float; + } + break; + + case STBIR__DECODE(STBIR_TYPE_UINT32, STBIR_COLORSPACE_LINEAR): + for (; x < max_x; x++) + { + int decode_pixel_index = x * channels; + int input_pixel_index = stbir__edge_wrap(edge_horizontal, x, input_w) * channels; + for (c = 0; c < channels; c++) + decode_buffer[decode_pixel_index + c] = (float)(((double)((const unsigned int*)input_data)[input_pixel_index + c]) / stbir__max_uint32_as_float); + } + break; + + case STBIR__DECODE(STBIR_TYPE_UINT32, STBIR_COLORSPACE_SRGB): + for (; x < max_x; x++) + { + int decode_pixel_index = x * channels; + int input_pixel_index = stbir__edge_wrap(edge_horizontal, x, input_w) * channels; + for (c = 0; c < channels; c++) + decode_buffer[decode_pixel_index + c] = stbir__srgb_to_linear((float)(((double)((const unsigned int*)input_data)[input_pixel_index + c]) / stbir__max_uint32_as_float)); + + if (!(stbir_info->flags&STBIR_FLAG_ALPHA_USES_COLORSPACE)) + decode_buffer[decode_pixel_index + alpha_channel] = (float)(((double)((const unsigned int*)input_data)[input_pixel_index + alpha_channel]) / stbir__max_uint32_as_float); + } + break; + + case STBIR__DECODE(STBIR_TYPE_FLOAT, STBIR_COLORSPACE_LINEAR): + for (; x < max_x; x++) + { + int decode_pixel_index = x * channels; + int input_pixel_index = stbir__edge_wrap(edge_horizontal, x, input_w) * channels; + for (c = 0; c < channels; c++) + decode_buffer[decode_pixel_index + c] = ((const float*)input_data)[input_pixel_index + c]; + } + break; + + case STBIR__DECODE(STBIR_TYPE_FLOAT, STBIR_COLORSPACE_SRGB): + for (; x < max_x; x++) + { + int decode_pixel_index = x * channels; + int input_pixel_index = stbir__edge_wrap(edge_horizontal, x, input_w) * channels; + for (c = 0; c < channels; c++) + decode_buffer[decode_pixel_index + c] = stbir__srgb_to_linear(((const float*)input_data)[input_pixel_index + c]); + + if (!(stbir_info->flags&STBIR_FLAG_ALPHA_USES_COLORSPACE)) + decode_buffer[decode_pixel_index + alpha_channel] = ((const float*)input_data)[input_pixel_index + alpha_channel]; + } + + break; + + default: + STBIR_ASSERT(!"Unknown type/colorspace/channels combination."); + break; + } + + if (!(stbir_info->flags & STBIR_FLAG_ALPHA_PREMULTIPLIED)) + { + for (x = -stbir_info->horizontal_filter_pixel_margin; x < max_x; x++) + { + int decode_pixel_index = x * channels; + + // If the alpha value is 0 it will clobber the color values. Make sure it's not. + float alpha = decode_buffer[decode_pixel_index + alpha_channel]; +#ifndef STBIR_NO_ALPHA_EPSILON + if (stbir_info->type != STBIR_TYPE_FLOAT) { + alpha += STBIR_ALPHA_EPSILON; + decode_buffer[decode_pixel_index + alpha_channel] = alpha; + } +#endif + for (c = 0; c < channels; c++) + { + if (c == alpha_channel) + continue; + + decode_buffer[decode_pixel_index + c] *= alpha; + } + } + } + + if (edge_horizontal == STBIR_EDGE_ZERO) + { + for (x = -stbir_info->horizontal_filter_pixel_margin; x < 0; x++) + { + for (c = 0; c < channels; c++) + decode_buffer[x*channels + c] = 0; + } + for (x = input_w; x < max_x; x++) + { + for (c = 0; c < channels; c++) + decode_buffer[x*channels + c] = 0; + } + } +} + +static float* stbir__get_ring_buffer_entry(float* ring_buffer, int index, int ring_buffer_length) +{ + return &ring_buffer[index * ring_buffer_length]; +} + +static float* stbir__add_empty_ring_buffer_entry(stbir__info* stbir_info, int n) +{ + int ring_buffer_index; + float* ring_buffer; + + stbir_info->ring_buffer_last_scanline = n; + + if (stbir_info->ring_buffer_begin_index < 0) + { + ring_buffer_index = stbir_info->ring_buffer_begin_index = 0; + stbir_info->ring_buffer_first_scanline = n; + } + else + { + ring_buffer_index = (stbir_info->ring_buffer_begin_index + (stbir_info->ring_buffer_last_scanline - stbir_info->ring_buffer_first_scanline)) % stbir_info->ring_buffer_num_entries; + STBIR_ASSERT(ring_buffer_index != stbir_info->ring_buffer_begin_index); + } + + ring_buffer = stbir__get_ring_buffer_entry(stbir_info->ring_buffer, ring_buffer_index, stbir_info->ring_buffer_length_bytes / sizeof(float)); + memset(ring_buffer, 0, stbir_info->ring_buffer_length_bytes); + + return ring_buffer; +} + + +static void stbir__resample_horizontal_upsample(stbir__info* stbir_info, float* output_buffer) +{ + int x, k; + int output_w = stbir_info->output_w; + int channels = stbir_info->channels; + float* decode_buffer = stbir__get_decode_buffer(stbir_info); + stbir__contributors* horizontal_contributors = stbir_info->horizontal_contributors; + float* horizontal_coefficients = stbir_info->horizontal_coefficients; + int coefficient_width = stbir_info->horizontal_coefficient_width; + + for (x = 0; x < output_w; x++) + { + int n0 = horizontal_contributors[x].n0; + int n1 = horizontal_contributors[x].n1; + + int out_pixel_index = x * channels; + int coefficient_group = coefficient_width * x; + int coefficient_counter = 0; + + STBIR_ASSERT(n1 >= n0); + STBIR_ASSERT(n0 >= -stbir_info->horizontal_filter_pixel_margin); + STBIR_ASSERT(n1 >= -stbir_info->horizontal_filter_pixel_margin); + STBIR_ASSERT(n0 < stbir_info->input_w + stbir_info->horizontal_filter_pixel_margin); + STBIR_ASSERT(n1 < stbir_info->input_w + stbir_info->horizontal_filter_pixel_margin); + + switch (channels) { + case 1: + for (k = n0; k <= n1; k++) + { + int in_pixel_index = k * 1; + float coefficient = horizontal_coefficients[coefficient_group + coefficient_counter++]; + STBIR_ASSERT(coefficient != 0); + output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; + } + break; + case 2: + for (k = n0; k <= n1; k++) + { + int in_pixel_index = k * 2; + float coefficient = horizontal_coefficients[coefficient_group + coefficient_counter++]; + STBIR_ASSERT(coefficient != 0); + output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; + output_buffer[out_pixel_index + 1] += decode_buffer[in_pixel_index + 1] * coefficient; + } + break; + case 3: + for (k = n0; k <= n1; k++) + { + int in_pixel_index = k * 3; + float coefficient = horizontal_coefficients[coefficient_group + coefficient_counter++]; + STBIR_ASSERT(coefficient != 0); + output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; + output_buffer[out_pixel_index + 1] += decode_buffer[in_pixel_index + 1] * coefficient; + output_buffer[out_pixel_index + 2] += decode_buffer[in_pixel_index + 2] * coefficient; + } + break; + case 4: + for (k = n0; k <= n1; k++) + { + int in_pixel_index = k * 4; + float coefficient = horizontal_coefficients[coefficient_group + coefficient_counter++]; + STBIR_ASSERT(coefficient != 0); + output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; + output_buffer[out_pixel_index + 1] += decode_buffer[in_pixel_index + 1] * coefficient; + output_buffer[out_pixel_index + 2] += decode_buffer[in_pixel_index + 2] * coefficient; + output_buffer[out_pixel_index + 3] += decode_buffer[in_pixel_index + 3] * coefficient; + } + break; + default: + for (k = n0; k <= n1; k++) + { + int in_pixel_index = k * channels; + float coefficient = horizontal_coefficients[coefficient_group + coefficient_counter++]; + int c; + STBIR_ASSERT(coefficient != 0); + for (c = 0; c < channels; c++) + output_buffer[out_pixel_index + c] += decode_buffer[in_pixel_index + c] * coefficient; + } + break; + } + } +} + +static void stbir__resample_horizontal_downsample(stbir__info* stbir_info, float* output_buffer) +{ + int x, k; + int input_w = stbir_info->input_w; + int channels = stbir_info->channels; + float* decode_buffer = stbir__get_decode_buffer(stbir_info); + stbir__contributors* horizontal_contributors = stbir_info->horizontal_contributors; + float* horizontal_coefficients = stbir_info->horizontal_coefficients; + int coefficient_width = stbir_info->horizontal_coefficient_width; + int filter_pixel_margin = stbir_info->horizontal_filter_pixel_margin; + int max_x = input_w + filter_pixel_margin * 2; + + STBIR_ASSERT(!stbir__use_width_upsampling(stbir_info)); + + switch (channels) { + case 1: + for (x = 0; x < max_x; x++) + { + int n0 = horizontal_contributors[x].n0; + int n1 = horizontal_contributors[x].n1; + + int in_x = x - filter_pixel_margin; + int in_pixel_index = in_x * 1; + int max_n = n1; + int coefficient_group = coefficient_width * x; + + for (k = n0; k <= max_n; k++) + { + int out_pixel_index = k * 1; + float coefficient = horizontal_coefficients[coefficient_group + k - n0]; + output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; + } + } + break; + + case 2: + for (x = 0; x < max_x; x++) + { + int n0 = horizontal_contributors[x].n0; + int n1 = horizontal_contributors[x].n1; + + int in_x = x - filter_pixel_margin; + int in_pixel_index = in_x * 2; + int max_n = n1; + int coefficient_group = coefficient_width * x; + + for (k = n0; k <= max_n; k++) + { + int out_pixel_index = k * 2; + float coefficient = horizontal_coefficients[coefficient_group + k - n0]; + output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; + output_buffer[out_pixel_index + 1] += decode_buffer[in_pixel_index + 1] * coefficient; + } + } + break; + + case 3: + for (x = 0; x < max_x; x++) + { + int n0 = horizontal_contributors[x].n0; + int n1 = horizontal_contributors[x].n1; + + int in_x = x - filter_pixel_margin; + int in_pixel_index = in_x * 3; + int max_n = n1; + int coefficient_group = coefficient_width * x; + + for (k = n0; k <= max_n; k++) + { + int out_pixel_index = k * 3; + float coefficient = horizontal_coefficients[coefficient_group + k - n0]; + output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; + output_buffer[out_pixel_index + 1] += decode_buffer[in_pixel_index + 1] * coefficient; + output_buffer[out_pixel_index + 2] += decode_buffer[in_pixel_index + 2] * coefficient; + } + } + break; + + case 4: + for (x = 0; x < max_x; x++) + { + int n0 = horizontal_contributors[x].n0; + int n1 = horizontal_contributors[x].n1; + + int in_x = x - filter_pixel_margin; + int in_pixel_index = in_x * 4; + int max_n = n1; + int coefficient_group = coefficient_width * x; + + for (k = n0; k <= max_n; k++) + { + int out_pixel_index = k * 4; + float coefficient = horizontal_coefficients[coefficient_group + k - n0]; + output_buffer[out_pixel_index + 0] += decode_buffer[in_pixel_index + 0] * coefficient; + output_buffer[out_pixel_index + 1] += decode_buffer[in_pixel_index + 1] * coefficient; + output_buffer[out_pixel_index + 2] += decode_buffer[in_pixel_index + 2] * coefficient; + output_buffer[out_pixel_index + 3] += decode_buffer[in_pixel_index + 3] * coefficient; + } + } + break; + + default: + for (x = 0; x < max_x; x++) + { + int n0 = horizontal_contributors[x].n0; + int n1 = horizontal_contributors[x].n1; + + int in_x = x - filter_pixel_margin; + int in_pixel_index = in_x * channels; + int max_n = n1; + int coefficient_group = coefficient_width * x; + + for (k = n0; k <= max_n; k++) + { + int c; + int out_pixel_index = k * channels; + float coefficient = horizontal_coefficients[coefficient_group + k - n0]; + for (c = 0; c < channels; c++) + output_buffer[out_pixel_index + c] += decode_buffer[in_pixel_index + c] * coefficient; + } + } + break; + } +} + +static void stbir__decode_and_resample_upsample(stbir__info* stbir_info, int n) +{ + // Decode the nth scanline from the source image into the decode buffer. + stbir__decode_scanline(stbir_info, n); + + // Now resample it into the ring buffer. + if (stbir__use_width_upsampling(stbir_info)) + stbir__resample_horizontal_upsample(stbir_info, stbir__add_empty_ring_buffer_entry(stbir_info, n)); + else + stbir__resample_horizontal_downsample(stbir_info, stbir__add_empty_ring_buffer_entry(stbir_info, n)); + + // Now it's sitting in the ring buffer ready to be used as source for the vertical sampling. +} + +static void stbir__decode_and_resample_downsample(stbir__info* stbir_info, int n) +{ + // Decode the nth scanline from the source image into the decode buffer. + stbir__decode_scanline(stbir_info, n); + + memset(stbir_info->horizontal_buffer, 0, stbir_info->output_w * stbir_info->channels * sizeof(float)); + + // Now resample it into the horizontal buffer. + if (stbir__use_width_upsampling(stbir_info)) + stbir__resample_horizontal_upsample(stbir_info, stbir_info->horizontal_buffer); + else + stbir__resample_horizontal_downsample(stbir_info, stbir_info->horizontal_buffer); + + // Now it's sitting in the horizontal buffer ready to be distributed into the ring buffers. +} + +// Get the specified scan line from the ring buffer. +static float* stbir__get_ring_buffer_scanline(int get_scanline, float* ring_buffer, int begin_index, int first_scanline, int ring_buffer_num_entries, int ring_buffer_length) +{ + int ring_buffer_index = (begin_index + (get_scanline - first_scanline)) % ring_buffer_num_entries; + return stbir__get_ring_buffer_entry(ring_buffer, ring_buffer_index, ring_buffer_length); +} + + +static void stbir__encode_scanline(stbir__info* stbir_info, int num_pixels, void *output_buffer, float *encode_buffer, int channels, int alpha_channel, int decode) +{ + int x; + int n; + int num_nonalpha; + stbir_uint16 nonalpha[STBIR_MAX_CHANNELS]; + + if (!(stbir_info->flags&STBIR_FLAG_ALPHA_PREMULTIPLIED)) + { + for (x=0; x < num_pixels; ++x) + { + int pixel_index = x*channels; + + float alpha = encode_buffer[pixel_index + alpha_channel]; + float reciprocal_alpha = alpha ? 1.0f / alpha : 0; + + // unrolling this produced a 1% slowdown upscaling a large RGBA linear-space image on my machine - stb + for (n = 0; n < channels; n++) + if (n != alpha_channel) + encode_buffer[pixel_index + n] *= reciprocal_alpha; + + // We added in a small epsilon to prevent the color channel from being deleted with zero alpha. + // Because we only add it for integer types, it will automatically be discarded on integer + // conversion, so we don't need to subtract it back out (which would be problematic for + // numeric precision reasons). + } + } + + // build a table of all channels that need colorspace correction, so + // we don't perform colorspace correction on channels that don't need it. + for (x = 0, num_nonalpha = 0; x < channels; ++x) + { + if (x != alpha_channel || (stbir_info->flags & STBIR_FLAG_ALPHA_USES_COLORSPACE)) + { + nonalpha[num_nonalpha++] = (stbir_uint16)x; + } + } + + #define STBIR__ROUND_INT(f) ((int) ((f)+0.5)) + #define STBIR__ROUND_UINT(f) ((stbir_uint32) ((f)+0.5)) + + #ifdef STBIR__SATURATE_INT + #define STBIR__ENCODE_LINEAR8(f) stbir__saturate8 (STBIR__ROUND_INT((f) * stbir__max_uint8_as_float )) + #define STBIR__ENCODE_LINEAR16(f) stbir__saturate16(STBIR__ROUND_INT((f) * stbir__max_uint16_as_float)) + #else + #define STBIR__ENCODE_LINEAR8(f) (unsigned char ) STBIR__ROUND_INT(stbir__saturate(f) * stbir__max_uint8_as_float ) + #define STBIR__ENCODE_LINEAR16(f) (unsigned short) STBIR__ROUND_INT(stbir__saturate(f) * stbir__max_uint16_as_float) + #endif + + switch (decode) + { + case STBIR__DECODE(STBIR_TYPE_UINT8, STBIR_COLORSPACE_LINEAR): + for (x=0; x < num_pixels; ++x) + { + int pixel_index = x*channels; + + for (n = 0; n < channels; n++) + { + int index = pixel_index + n; + ((unsigned char*)output_buffer)[index] = STBIR__ENCODE_LINEAR8(encode_buffer[index]); + } + } + break; + + case STBIR__DECODE(STBIR_TYPE_UINT8, STBIR_COLORSPACE_SRGB): + for (x=0; x < num_pixels; ++x) + { + int pixel_index = x*channels; + + for (n = 0; n < num_nonalpha; n++) + { + int index = pixel_index + nonalpha[n]; + ((unsigned char*)output_buffer)[index] = stbir__linear_to_srgb_uchar(encode_buffer[index]); + } + + if (!(stbir_info->flags & STBIR_FLAG_ALPHA_USES_COLORSPACE)) + ((unsigned char *)output_buffer)[pixel_index + alpha_channel] = STBIR__ENCODE_LINEAR8(encode_buffer[pixel_index+alpha_channel]); + } + break; + + case STBIR__DECODE(STBIR_TYPE_UINT16, STBIR_COLORSPACE_LINEAR): + for (x=0; x < num_pixels; ++x) + { + int pixel_index = x*channels; + + for (n = 0; n < channels; n++) + { + int index = pixel_index + n; + ((unsigned short*)output_buffer)[index] = STBIR__ENCODE_LINEAR16(encode_buffer[index]); + } + } + break; + + case STBIR__DECODE(STBIR_TYPE_UINT16, STBIR_COLORSPACE_SRGB): + for (x=0; x < num_pixels; ++x) + { + int pixel_index = x*channels; + + for (n = 0; n < num_nonalpha; n++) + { + int index = pixel_index + nonalpha[n]; + ((unsigned short*)output_buffer)[index] = (unsigned short)STBIR__ROUND_INT(stbir__linear_to_srgb(stbir__saturate(encode_buffer[index])) * stbir__max_uint16_as_float); + } + + if (!(stbir_info->flags&STBIR_FLAG_ALPHA_USES_COLORSPACE)) + ((unsigned short*)output_buffer)[pixel_index + alpha_channel] = STBIR__ENCODE_LINEAR16(encode_buffer[pixel_index + alpha_channel]); + } + + break; + + case STBIR__DECODE(STBIR_TYPE_UINT32, STBIR_COLORSPACE_LINEAR): + for (x=0; x < num_pixels; ++x) + { + int pixel_index = x*channels; + + for (n = 0; n < channels; n++) + { + int index = pixel_index + n; + ((unsigned int*)output_buffer)[index] = (unsigned int)STBIR__ROUND_UINT(((double)stbir__saturate(encode_buffer[index])) * stbir__max_uint32_as_float); + } + } + break; + + case STBIR__DECODE(STBIR_TYPE_UINT32, STBIR_COLORSPACE_SRGB): + for (x=0; x < num_pixels; ++x) + { + int pixel_index = x*channels; + + for (n = 0; n < num_nonalpha; n++) + { + int index = pixel_index + nonalpha[n]; + ((unsigned int*)output_buffer)[index] = (unsigned int)STBIR__ROUND_UINT(((double)stbir__linear_to_srgb(stbir__saturate(encode_buffer[index]))) * stbir__max_uint32_as_float); + } + + if (!(stbir_info->flags&STBIR_FLAG_ALPHA_USES_COLORSPACE)) + ((unsigned int*)output_buffer)[pixel_index + alpha_channel] = (unsigned int)STBIR__ROUND_INT(((double)stbir__saturate(encode_buffer[pixel_index + alpha_channel])) * stbir__max_uint32_as_float); + } + break; + + case STBIR__DECODE(STBIR_TYPE_FLOAT, STBIR_COLORSPACE_LINEAR): + for (x=0; x < num_pixels; ++x) + { + int pixel_index = x*channels; + + for (n = 0; n < channels; n++) + { + int index = pixel_index + n; + ((float*)output_buffer)[index] = encode_buffer[index]; + } + } + break; + + case STBIR__DECODE(STBIR_TYPE_FLOAT, STBIR_COLORSPACE_SRGB): + for (x=0; x < num_pixels; ++x) + { + int pixel_index = x*channels; + + for (n = 0; n < num_nonalpha; n++) + { + int index = pixel_index + nonalpha[n]; + ((float*)output_buffer)[index] = stbir__linear_to_srgb(encode_buffer[index]); + } + + if (!(stbir_info->flags&STBIR_FLAG_ALPHA_USES_COLORSPACE)) + ((float*)output_buffer)[pixel_index + alpha_channel] = encode_buffer[pixel_index + alpha_channel]; + } + break; + + default: + STBIR_ASSERT(!"Unknown type/colorspace/channels combination."); + break; + } +} + +static void stbir__resample_vertical_upsample(stbir__info* stbir_info, int n) +{ + int x, k; + int output_w = stbir_info->output_w; + stbir__contributors* vertical_contributors = stbir_info->vertical_contributors; + float* vertical_coefficients = stbir_info->vertical_coefficients; + int channels = stbir_info->channels; + int alpha_channel = stbir_info->alpha_channel; + int type = stbir_info->type; + int colorspace = stbir_info->colorspace; + int ring_buffer_entries = stbir_info->ring_buffer_num_entries; + void* output_data = stbir_info->output_data; + float* encode_buffer = stbir_info->encode_buffer; + int decode = STBIR__DECODE(type, colorspace); + int coefficient_width = stbir_info->vertical_coefficient_width; + int coefficient_counter; + int contributor = n; + + float* ring_buffer = stbir_info->ring_buffer; + int ring_buffer_begin_index = stbir_info->ring_buffer_begin_index; + int ring_buffer_first_scanline = stbir_info->ring_buffer_first_scanline; + int ring_buffer_length = stbir_info->ring_buffer_length_bytes/sizeof(float); + + int n0,n1, output_row_start; + int coefficient_group = coefficient_width * contributor; + + n0 = vertical_contributors[contributor].n0; + n1 = vertical_contributors[contributor].n1; + + output_row_start = n * stbir_info->output_stride_bytes; + + STBIR_ASSERT(stbir__use_height_upsampling(stbir_info)); + + memset(encode_buffer, 0, output_w * sizeof(float) * channels); + + // I tried reblocking this for better cache usage of encode_buffer + // (using x_outer, k, x_inner), but it lost speed. -- stb + + coefficient_counter = 0; + switch (channels) { + case 1: + for (k = n0; k <= n1; k++) + { + int coefficient_index = coefficient_counter++; + float* ring_buffer_entry = stbir__get_ring_buffer_scanline(k, ring_buffer, ring_buffer_begin_index, ring_buffer_first_scanline, ring_buffer_entries, ring_buffer_length); + float coefficient = vertical_coefficients[coefficient_group + coefficient_index]; + for (x = 0; x < output_w; ++x) + { + int in_pixel_index = x * 1; + encode_buffer[in_pixel_index + 0] += ring_buffer_entry[in_pixel_index + 0] * coefficient; + } + } + break; + case 2: + for (k = n0; k <= n1; k++) + { + int coefficient_index = coefficient_counter++; + float* ring_buffer_entry = stbir__get_ring_buffer_scanline(k, ring_buffer, ring_buffer_begin_index, ring_buffer_first_scanline, ring_buffer_entries, ring_buffer_length); + float coefficient = vertical_coefficients[coefficient_group + coefficient_index]; + for (x = 0; x < output_w; ++x) + { + int in_pixel_index = x * 2; + encode_buffer[in_pixel_index + 0] += ring_buffer_entry[in_pixel_index + 0] * coefficient; + encode_buffer[in_pixel_index + 1] += ring_buffer_entry[in_pixel_index + 1] * coefficient; + } + } + break; + case 3: + for (k = n0; k <= n1; k++) + { + int coefficient_index = coefficient_counter++; + float* ring_buffer_entry = stbir__get_ring_buffer_scanline(k, ring_buffer, ring_buffer_begin_index, ring_buffer_first_scanline, ring_buffer_entries, ring_buffer_length); + float coefficient = vertical_coefficients[coefficient_group + coefficient_index]; + for (x = 0; x < output_w; ++x) + { + int in_pixel_index = x * 3; + encode_buffer[in_pixel_index + 0] += ring_buffer_entry[in_pixel_index + 0] * coefficient; + encode_buffer[in_pixel_index + 1] += ring_buffer_entry[in_pixel_index + 1] * coefficient; + encode_buffer[in_pixel_index + 2] += ring_buffer_entry[in_pixel_index + 2] * coefficient; + } + } + break; + case 4: + for (k = n0; k <= n1; k++) + { + int coefficient_index = coefficient_counter++; + float* ring_buffer_entry = stbir__get_ring_buffer_scanline(k, ring_buffer, ring_buffer_begin_index, ring_buffer_first_scanline, ring_buffer_entries, ring_buffer_length); + float coefficient = vertical_coefficients[coefficient_group + coefficient_index]; + for (x = 0; x < output_w; ++x) + { + int in_pixel_index = x * 4; + encode_buffer[in_pixel_index + 0] += ring_buffer_entry[in_pixel_index + 0] * coefficient; + encode_buffer[in_pixel_index + 1] += ring_buffer_entry[in_pixel_index + 1] * coefficient; + encode_buffer[in_pixel_index + 2] += ring_buffer_entry[in_pixel_index + 2] * coefficient; + encode_buffer[in_pixel_index + 3] += ring_buffer_entry[in_pixel_index + 3] * coefficient; + } + } + break; + default: + for (k = n0; k <= n1; k++) + { + int coefficient_index = coefficient_counter++; + float* ring_buffer_entry = stbir__get_ring_buffer_scanline(k, ring_buffer, ring_buffer_begin_index, ring_buffer_first_scanline, ring_buffer_entries, ring_buffer_length); + float coefficient = vertical_coefficients[coefficient_group + coefficient_index]; + for (x = 0; x < output_w; ++x) + { + int in_pixel_index = x * channels; + int c; + for (c = 0; c < channels; c++) + encode_buffer[in_pixel_index + c] += ring_buffer_entry[in_pixel_index + c] * coefficient; + } + } + break; + } + stbir__encode_scanline(stbir_info, output_w, (char *) output_data + output_row_start, encode_buffer, channels, alpha_channel, decode); +} + +static void stbir__resample_vertical_downsample(stbir__info* stbir_info, int n) +{ + int x, k; + int output_w = stbir_info->output_w; + stbir__contributors* vertical_contributors = stbir_info->vertical_contributors; + float* vertical_coefficients = stbir_info->vertical_coefficients; + int channels = stbir_info->channels; + int ring_buffer_entries = stbir_info->ring_buffer_num_entries; + float* horizontal_buffer = stbir_info->horizontal_buffer; + int coefficient_width = stbir_info->vertical_coefficient_width; + int contributor = n + stbir_info->vertical_filter_pixel_margin; + + float* ring_buffer = stbir_info->ring_buffer; + int ring_buffer_begin_index = stbir_info->ring_buffer_begin_index; + int ring_buffer_first_scanline = stbir_info->ring_buffer_first_scanline; + int ring_buffer_length = stbir_info->ring_buffer_length_bytes/sizeof(float); + int n0,n1; + + n0 = vertical_contributors[contributor].n0; + n1 = vertical_contributors[contributor].n1; + + STBIR_ASSERT(!stbir__use_height_upsampling(stbir_info)); + + for (k = n0; k <= n1; k++) + { + int coefficient_index = k - n0; + int coefficient_group = coefficient_width * contributor; + float coefficient = vertical_coefficients[coefficient_group + coefficient_index]; + + float* ring_buffer_entry = stbir__get_ring_buffer_scanline(k, ring_buffer, ring_buffer_begin_index, ring_buffer_first_scanline, ring_buffer_entries, ring_buffer_length); + + switch (channels) { + case 1: + for (x = 0; x < output_w; x++) + { + int in_pixel_index = x * 1; + ring_buffer_entry[in_pixel_index + 0] += horizontal_buffer[in_pixel_index + 0] * coefficient; + } + break; + case 2: + for (x = 0; x < output_w; x++) + { + int in_pixel_index = x * 2; + ring_buffer_entry[in_pixel_index + 0] += horizontal_buffer[in_pixel_index + 0] * coefficient; + ring_buffer_entry[in_pixel_index + 1] += horizontal_buffer[in_pixel_index + 1] * coefficient; + } + break; + case 3: + for (x = 0; x < output_w; x++) + { + int in_pixel_index = x * 3; + ring_buffer_entry[in_pixel_index + 0] += horizontal_buffer[in_pixel_index + 0] * coefficient; + ring_buffer_entry[in_pixel_index + 1] += horizontal_buffer[in_pixel_index + 1] * coefficient; + ring_buffer_entry[in_pixel_index + 2] += horizontal_buffer[in_pixel_index + 2] * coefficient; + } + break; + case 4: + for (x = 0; x < output_w; x++) + { + int in_pixel_index = x * 4; + ring_buffer_entry[in_pixel_index + 0] += horizontal_buffer[in_pixel_index + 0] * coefficient; + ring_buffer_entry[in_pixel_index + 1] += horizontal_buffer[in_pixel_index + 1] * coefficient; + ring_buffer_entry[in_pixel_index + 2] += horizontal_buffer[in_pixel_index + 2] * coefficient; + ring_buffer_entry[in_pixel_index + 3] += horizontal_buffer[in_pixel_index + 3] * coefficient; + } + break; + default: + for (x = 0; x < output_w; x++) + { + int in_pixel_index = x * channels; + + int c; + for (c = 0; c < channels; c++) + ring_buffer_entry[in_pixel_index + c] += horizontal_buffer[in_pixel_index + c] * coefficient; + } + break; + } + } +} + +static void stbir__buffer_loop_upsample(stbir__info* stbir_info) +{ + int y; + float scale_ratio = stbir_info->vertical_scale; + float out_scanlines_radius = stbir__filter_info_table[stbir_info->vertical_filter].support(1/scale_ratio) * scale_ratio; + + STBIR_ASSERT(stbir__use_height_upsampling(stbir_info)); + + for (y = 0; y < stbir_info->output_h; y++) + { + float in_center_of_out = 0; // Center of the current out scanline in the in scanline space + int in_first_scanline = 0, in_last_scanline = 0; + + stbir__calculate_sample_range_upsample(y, out_scanlines_radius, scale_ratio, stbir_info->vertical_shift, &in_first_scanline, &in_last_scanline, &in_center_of_out); + + STBIR_ASSERT(in_last_scanline - in_first_scanline + 1 <= stbir_info->ring_buffer_num_entries); + + if (stbir_info->ring_buffer_begin_index >= 0) + { + // Get rid of whatever we don't need anymore. + while (in_first_scanline > stbir_info->ring_buffer_first_scanline) + { + if (stbir_info->ring_buffer_first_scanline == stbir_info->ring_buffer_last_scanline) + { + // We just popped the last scanline off the ring buffer. + // Reset it to the empty state. + stbir_info->ring_buffer_begin_index = -1; + stbir_info->ring_buffer_first_scanline = 0; + stbir_info->ring_buffer_last_scanline = 0; + break; + } + else + { + stbir_info->ring_buffer_first_scanline++; + stbir_info->ring_buffer_begin_index = (stbir_info->ring_buffer_begin_index + 1) % stbir_info->ring_buffer_num_entries; + } + } + } + + // Load in new ones. + if (stbir_info->ring_buffer_begin_index < 0) + stbir__decode_and_resample_upsample(stbir_info, in_first_scanline); + + while (in_last_scanline > stbir_info->ring_buffer_last_scanline) + stbir__decode_and_resample_upsample(stbir_info, stbir_info->ring_buffer_last_scanline + 1); + + // Now all buffers should be ready to write a row of vertical sampling. + stbir__resample_vertical_upsample(stbir_info, y); + + STBIR_PROGRESS_REPORT((float)y / stbir_info->output_h); + } +} + +static void stbir__empty_ring_buffer(stbir__info* stbir_info, int first_necessary_scanline) +{ + int output_stride_bytes = stbir_info->output_stride_bytes; + int channels = stbir_info->channels; + int alpha_channel = stbir_info->alpha_channel; + int type = stbir_info->type; + int colorspace = stbir_info->colorspace; + int output_w = stbir_info->output_w; + void* output_data = stbir_info->output_data; + int decode = STBIR__DECODE(type, colorspace); + + float* ring_buffer = stbir_info->ring_buffer; + int ring_buffer_length = stbir_info->ring_buffer_length_bytes/sizeof(float); + + if (stbir_info->ring_buffer_begin_index >= 0) + { + // Get rid of whatever we don't need anymore. + while (first_necessary_scanline > stbir_info->ring_buffer_first_scanline) + { + if (stbir_info->ring_buffer_first_scanline >= 0 && stbir_info->ring_buffer_first_scanline < stbir_info->output_h) + { + int output_row_start = stbir_info->ring_buffer_first_scanline * output_stride_bytes; + float* ring_buffer_entry = stbir__get_ring_buffer_entry(ring_buffer, stbir_info->ring_buffer_begin_index, ring_buffer_length); + stbir__encode_scanline(stbir_info, output_w, (char *) output_data + output_row_start, ring_buffer_entry, channels, alpha_channel, decode); + STBIR_PROGRESS_REPORT((float)stbir_info->ring_buffer_first_scanline / stbir_info->output_h); + } + + if (stbir_info->ring_buffer_first_scanline == stbir_info->ring_buffer_last_scanline) + { + // We just popped the last scanline off the ring buffer. + // Reset it to the empty state. + stbir_info->ring_buffer_begin_index = -1; + stbir_info->ring_buffer_first_scanline = 0; + stbir_info->ring_buffer_last_scanline = 0; + break; + } + else + { + stbir_info->ring_buffer_first_scanline++; + stbir_info->ring_buffer_begin_index = (stbir_info->ring_buffer_begin_index + 1) % stbir_info->ring_buffer_num_entries; + } + } + } +} + +static void stbir__buffer_loop_downsample(stbir__info* stbir_info) +{ + int y; + float scale_ratio = stbir_info->vertical_scale; + int output_h = stbir_info->output_h; + float in_pixels_radius = stbir__filter_info_table[stbir_info->vertical_filter].support(scale_ratio) / scale_ratio; + int pixel_margin = stbir_info->vertical_filter_pixel_margin; + int max_y = stbir_info->input_h + pixel_margin; + + STBIR_ASSERT(!stbir__use_height_upsampling(stbir_info)); + + for (y = -pixel_margin; y < max_y; y++) + { + float out_center_of_in; // Center of the current out scanline in the in scanline space + int out_first_scanline, out_last_scanline; + + stbir__calculate_sample_range_downsample(y, in_pixels_radius, scale_ratio, stbir_info->vertical_shift, &out_first_scanline, &out_last_scanline, &out_center_of_in); + + STBIR_ASSERT(out_last_scanline - out_first_scanline + 1 <= stbir_info->ring_buffer_num_entries); + + if (out_last_scanline < 0 || out_first_scanline >= output_h) + continue; + + stbir__empty_ring_buffer(stbir_info, out_first_scanline); + + stbir__decode_and_resample_downsample(stbir_info, y); + + // Load in new ones. + if (stbir_info->ring_buffer_begin_index < 0) + stbir__add_empty_ring_buffer_entry(stbir_info, out_first_scanline); + + while (out_last_scanline > stbir_info->ring_buffer_last_scanline) + stbir__add_empty_ring_buffer_entry(stbir_info, stbir_info->ring_buffer_last_scanline + 1); + + // Now the horizontal buffer is ready to write to all ring buffer rows. + stbir__resample_vertical_downsample(stbir_info, y); + } + + stbir__empty_ring_buffer(stbir_info, stbir_info->output_h); +} + +static void stbir__setup(stbir__info *info, int input_w, int input_h, int output_w, int output_h, int channels) +{ + info->input_w = input_w; + info->input_h = input_h; + info->output_w = output_w; + info->output_h = output_h; + info->channels = channels; +} + +static void stbir__calculate_transform(stbir__info *info, float s0, float t0, float s1, float t1, float *transform) +{ + info->s0 = s0; + info->t0 = t0; + info->s1 = s1; + info->t1 = t1; + + if (transform) + { + info->horizontal_scale = transform[0]; + info->vertical_scale = transform[1]; + info->horizontal_shift = transform[2]; + info->vertical_shift = transform[3]; + } + else + { + info->horizontal_scale = ((float)info->output_w / info->input_w) / (s1 - s0); + info->vertical_scale = ((float)info->output_h / info->input_h) / (t1 - t0); + + info->horizontal_shift = s0 * info->output_w / (s1 - s0); + info->vertical_shift = t0 * info->output_h / (t1 - t0); + } +} + +static void stbir__choose_filter(stbir__info *info, stbir_filter h_filter, stbir_filter v_filter) +{ + if (h_filter == 0) + h_filter = stbir__use_upsampling(info->horizontal_scale) ? STBIR_DEFAULT_FILTER_UPSAMPLE : STBIR_DEFAULT_FILTER_DOWNSAMPLE; + if (v_filter == 0) + v_filter = stbir__use_upsampling(info->vertical_scale) ? STBIR_DEFAULT_FILTER_UPSAMPLE : STBIR_DEFAULT_FILTER_DOWNSAMPLE; + info->horizontal_filter = h_filter; + info->vertical_filter = v_filter; +} + +static stbir_uint32 stbir__calculate_memory(stbir__info *info) +{ + int pixel_margin = stbir__get_filter_pixel_margin(info->horizontal_filter, info->horizontal_scale); + int filter_height = stbir__get_filter_pixel_width(info->vertical_filter, info->vertical_scale); + + info->horizontal_num_contributors = stbir__get_contributors(info->horizontal_scale, info->horizontal_filter, info->input_w, info->output_w); + info->vertical_num_contributors = stbir__get_contributors(info->vertical_scale , info->vertical_filter , info->input_h, info->output_h); + + // One extra entry because floating point precision problems sometimes cause an extra to be necessary. + info->ring_buffer_num_entries = filter_height + 1; + + info->horizontal_contributors_size = info->horizontal_num_contributors * sizeof(stbir__contributors); + info->horizontal_coefficients_size = stbir__get_total_horizontal_coefficients(info) * sizeof(float); + info->vertical_contributors_size = info->vertical_num_contributors * sizeof(stbir__contributors); + info->vertical_coefficients_size = stbir__get_total_vertical_coefficients(info) * sizeof(float); + info->decode_buffer_size = (info->input_w + pixel_margin * 2) * info->channels * sizeof(float); + info->horizontal_buffer_size = info->output_w * info->channels * sizeof(float); + info->ring_buffer_size = info->output_w * info->channels * info->ring_buffer_num_entries * sizeof(float); + info->encode_buffer_size = info->output_w * info->channels * sizeof(float); + + STBIR_ASSERT(info->horizontal_filter != 0); + STBIR_ASSERT(info->horizontal_filter < STBIR__ARRAY_SIZE(stbir__filter_info_table)); // this now happens too late + STBIR_ASSERT(info->vertical_filter != 0); + STBIR_ASSERT(info->vertical_filter < STBIR__ARRAY_SIZE(stbir__filter_info_table)); // this now happens too late + + if (stbir__use_height_upsampling(info)) + // The horizontal buffer is for when we're downsampling the height and we + // can't output the result of sampling the decode buffer directly into the + // ring buffers. + info->horizontal_buffer_size = 0; + else + // The encode buffer is to retain precision in the height upsampling method + // and isn't used when height downsampling. + info->encode_buffer_size = 0; + + return info->horizontal_contributors_size + info->horizontal_coefficients_size + + info->vertical_contributors_size + info->vertical_coefficients_size + + info->decode_buffer_size + info->horizontal_buffer_size + + info->ring_buffer_size + info->encode_buffer_size; +} + +static int stbir__resize_allocated(stbir__info *info, + const void* input_data, int input_stride_in_bytes, + void* output_data, int output_stride_in_bytes, + int alpha_channel, stbir_uint32 flags, stbir_datatype type, + stbir_edge edge_horizontal, stbir_edge edge_vertical, stbir_colorspace colorspace, + void* tempmem, size_t tempmem_size_in_bytes) +{ + size_t memory_required = stbir__calculate_memory(info); + + int width_stride_input = input_stride_in_bytes ? input_stride_in_bytes : info->channels * info->input_w * stbir__type_size[type]; + int width_stride_output = output_stride_in_bytes ? output_stride_in_bytes : info->channels * info->output_w * stbir__type_size[type]; + +#ifdef STBIR_DEBUG_OVERWRITE_TEST +#define OVERWRITE_ARRAY_SIZE 8 + unsigned char overwrite_output_before_pre[OVERWRITE_ARRAY_SIZE]; + unsigned char overwrite_tempmem_before_pre[OVERWRITE_ARRAY_SIZE]; + unsigned char overwrite_output_after_pre[OVERWRITE_ARRAY_SIZE]; + unsigned char overwrite_tempmem_after_pre[OVERWRITE_ARRAY_SIZE]; + + size_t begin_forbidden = width_stride_output * (info->output_h - 1) + info->output_w * info->channels * stbir__type_size[type]; + memcpy(overwrite_output_before_pre, &((unsigned char*)output_data)[-OVERWRITE_ARRAY_SIZE], OVERWRITE_ARRAY_SIZE); + memcpy(overwrite_output_after_pre, &((unsigned char*)output_data)[begin_forbidden], OVERWRITE_ARRAY_SIZE); + memcpy(overwrite_tempmem_before_pre, &((unsigned char*)tempmem)[-OVERWRITE_ARRAY_SIZE], OVERWRITE_ARRAY_SIZE); + memcpy(overwrite_tempmem_after_pre, &((unsigned char*)tempmem)[tempmem_size_in_bytes], OVERWRITE_ARRAY_SIZE); +#endif + + STBIR_ASSERT(info->channels >= 0); + STBIR_ASSERT(info->channels <= STBIR_MAX_CHANNELS); + + if (info->channels < 0 || info->channels > STBIR_MAX_CHANNELS) + return 0; + + STBIR_ASSERT(info->horizontal_filter < STBIR__ARRAY_SIZE(stbir__filter_info_table)); + STBIR_ASSERT(info->vertical_filter < STBIR__ARRAY_SIZE(stbir__filter_info_table)); + + if (info->horizontal_filter >= STBIR__ARRAY_SIZE(stbir__filter_info_table)) + return 0; + if (info->vertical_filter >= STBIR__ARRAY_SIZE(stbir__filter_info_table)) + return 0; + + if (alpha_channel < 0) + flags |= STBIR_FLAG_ALPHA_USES_COLORSPACE | STBIR_FLAG_ALPHA_PREMULTIPLIED; + + if (!(flags&STBIR_FLAG_ALPHA_USES_COLORSPACE) || !(flags&STBIR_FLAG_ALPHA_PREMULTIPLIED)) { + STBIR_ASSERT(alpha_channel >= 0 && alpha_channel < info->channels); + } + + if (alpha_channel >= info->channels) + return 0; + + STBIR_ASSERT(tempmem); + + if (!tempmem) + return 0; + + STBIR_ASSERT(tempmem_size_in_bytes >= memory_required); + + if (tempmem_size_in_bytes < memory_required) + return 0; + + memset(tempmem, 0, tempmem_size_in_bytes); + + info->input_data = input_data; + info->input_stride_bytes = width_stride_input; + + info->output_data = output_data; + info->output_stride_bytes = width_stride_output; + + info->alpha_channel = alpha_channel; + info->flags = flags; + info->type = type; + info->edge_horizontal = edge_horizontal; + info->edge_vertical = edge_vertical; + info->colorspace = colorspace; + + info->horizontal_coefficient_width = stbir__get_coefficient_width (info->horizontal_filter, info->horizontal_scale); + info->vertical_coefficient_width = stbir__get_coefficient_width (info->vertical_filter , info->vertical_scale ); + info->horizontal_filter_pixel_width = stbir__get_filter_pixel_width (info->horizontal_filter, info->horizontal_scale); + info->vertical_filter_pixel_width = stbir__get_filter_pixel_width (info->vertical_filter , info->vertical_scale ); + info->horizontal_filter_pixel_margin = stbir__get_filter_pixel_margin(info->horizontal_filter, info->horizontal_scale); + info->vertical_filter_pixel_margin = stbir__get_filter_pixel_margin(info->vertical_filter , info->vertical_scale ); + + info->ring_buffer_length_bytes = info->output_w * info->channels * sizeof(float); + info->decode_buffer_pixels = info->input_w + info->horizontal_filter_pixel_margin * 2; + +#define STBIR__NEXT_MEMPTR(current, newtype) (newtype*)(((unsigned char*)current) + current##_size) + + info->horizontal_contributors = (stbir__contributors *) tempmem; + info->horizontal_coefficients = STBIR__NEXT_MEMPTR(info->horizontal_contributors, float); + info->vertical_contributors = STBIR__NEXT_MEMPTR(info->horizontal_coefficients, stbir__contributors); + info->vertical_coefficients = STBIR__NEXT_MEMPTR(info->vertical_contributors, float); + info->decode_buffer = STBIR__NEXT_MEMPTR(info->vertical_coefficients, float); + + if (stbir__use_height_upsampling(info)) + { + info->horizontal_buffer = NULL; + info->ring_buffer = STBIR__NEXT_MEMPTR(info->decode_buffer, float); + info->encode_buffer = STBIR__NEXT_MEMPTR(info->ring_buffer, float); + + STBIR_ASSERT((size_t)STBIR__NEXT_MEMPTR(info->encode_buffer, unsigned char) == (size_t)tempmem + tempmem_size_in_bytes); + } + else + { + info->horizontal_buffer = STBIR__NEXT_MEMPTR(info->decode_buffer, float); + info->ring_buffer = STBIR__NEXT_MEMPTR(info->horizontal_buffer, float); + info->encode_buffer = NULL; + + STBIR_ASSERT((size_t)STBIR__NEXT_MEMPTR(info->ring_buffer, unsigned char) == (size_t)tempmem + tempmem_size_in_bytes); + } + +#undef STBIR__NEXT_MEMPTR + + // This signals that the ring buffer is empty + info->ring_buffer_begin_index = -1; + + stbir__calculate_filters(info->horizontal_contributors, info->horizontal_coefficients, info->horizontal_filter, info->horizontal_scale, info->horizontal_shift, info->input_w, info->output_w); + stbir__calculate_filters(info->vertical_contributors, info->vertical_coefficients, info->vertical_filter, info->vertical_scale, info->vertical_shift, info->input_h, info->output_h); + + STBIR_PROGRESS_REPORT(0); + + if (stbir__use_height_upsampling(info)) + stbir__buffer_loop_upsample(info); + else + stbir__buffer_loop_downsample(info); + + STBIR_PROGRESS_REPORT(1); + +#ifdef STBIR_DEBUG_OVERWRITE_TEST + STBIR_ASSERT(memcmp(overwrite_output_before_pre, &((unsigned char*)output_data)[-OVERWRITE_ARRAY_SIZE], OVERWRITE_ARRAY_SIZE) == 0); + STBIR_ASSERT(memcmp(overwrite_output_after_pre, &((unsigned char*)output_data)[begin_forbidden], OVERWRITE_ARRAY_SIZE) == 0); + STBIR_ASSERT(memcmp(overwrite_tempmem_before_pre, &((unsigned char*)tempmem)[-OVERWRITE_ARRAY_SIZE], OVERWRITE_ARRAY_SIZE) == 0); + STBIR_ASSERT(memcmp(overwrite_tempmem_after_pre, &((unsigned char*)tempmem)[tempmem_size_in_bytes], OVERWRITE_ARRAY_SIZE) == 0); +#endif + + return 1; +} + + +static int stbir__resize_arbitrary( + void *alloc_context, + const void* input_data, int input_w, int input_h, int input_stride_in_bytes, + void* output_data, int output_w, int output_h, int output_stride_in_bytes, + float s0, float t0, float s1, float t1, float *transform, + int channels, int alpha_channel, stbir_uint32 flags, stbir_datatype type, + stbir_filter h_filter, stbir_filter v_filter, + stbir_edge edge_horizontal, stbir_edge edge_vertical, stbir_colorspace colorspace) +{ + stbir__info info; + int result; + size_t memory_required; + void* extra_memory; + + stbir__setup(&info, input_w, input_h, output_w, output_h, channels); + stbir__calculate_transform(&info, s0,t0,s1,t1,transform); + stbir__choose_filter(&info, h_filter, v_filter); + memory_required = stbir__calculate_memory(&info); + extra_memory = STBIR_MALLOC(memory_required, alloc_context); + + if (!extra_memory) + return 0; + + result = stbir__resize_allocated(&info, input_data, input_stride_in_bytes, + output_data, output_stride_in_bytes, + alpha_channel, flags, type, + edge_horizontal, edge_vertical, + colorspace, extra_memory, memory_required); + + STBIR_FREE(extra_memory, alloc_context); + + return result; +} + +STBIRDEF int stbir_resize_uint8( const unsigned char *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + unsigned char *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels) +{ + return stbir__resize_arbitrary(NULL, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + 0,0,1,1,NULL,num_channels,-1,0, STBIR_TYPE_UINT8, STBIR_FILTER_DEFAULT, STBIR_FILTER_DEFAULT, + STBIR_EDGE_CLAMP, STBIR_EDGE_CLAMP, STBIR_COLORSPACE_LINEAR); +} + +STBIRDEF int stbir_resize_float( const float *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + float *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels) +{ + return stbir__resize_arbitrary(NULL, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + 0,0,1,1,NULL,num_channels,-1,0, STBIR_TYPE_FLOAT, STBIR_FILTER_DEFAULT, STBIR_FILTER_DEFAULT, + STBIR_EDGE_CLAMP, STBIR_EDGE_CLAMP, STBIR_COLORSPACE_LINEAR); +} + +STBIRDEF int stbir_resize_uint8_srgb(const unsigned char *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + unsigned char *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags) +{ + return stbir__resize_arbitrary(NULL, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + 0,0,1,1,NULL,num_channels,alpha_channel,flags, STBIR_TYPE_UINT8, STBIR_FILTER_DEFAULT, STBIR_FILTER_DEFAULT, + STBIR_EDGE_CLAMP, STBIR_EDGE_CLAMP, STBIR_COLORSPACE_SRGB); +} + +STBIRDEF int stbir_resize_uint8_srgb_edgemode(const unsigned char *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + unsigned char *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_wrap_mode) +{ + return stbir__resize_arbitrary(NULL, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + 0,0,1,1,NULL,num_channels,alpha_channel,flags, STBIR_TYPE_UINT8, STBIR_FILTER_DEFAULT, STBIR_FILTER_DEFAULT, + edge_wrap_mode, edge_wrap_mode, STBIR_COLORSPACE_SRGB); +} + +STBIRDEF int stbir_resize_uint8_generic( const unsigned char *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + unsigned char *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_wrap_mode, stbir_filter filter, stbir_colorspace space, + void *alloc_context) +{ + return stbir__resize_arbitrary(alloc_context, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + 0,0,1,1,NULL,num_channels,alpha_channel,flags, STBIR_TYPE_UINT8, filter, filter, + edge_wrap_mode, edge_wrap_mode, space); +} + +STBIRDEF int stbir_resize_uint16_generic(const stbir_uint16 *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + stbir_uint16 *output_pixels , int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_wrap_mode, stbir_filter filter, stbir_colorspace space, + void *alloc_context) +{ + return stbir__resize_arbitrary(alloc_context, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + 0,0,1,1,NULL,num_channels,alpha_channel,flags, STBIR_TYPE_UINT16, filter, filter, + edge_wrap_mode, edge_wrap_mode, space); +} + + +STBIRDEF int stbir_resize_float_generic( const float *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + float *output_pixels , int output_w, int output_h, int output_stride_in_bytes, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_wrap_mode, stbir_filter filter, stbir_colorspace space, + void *alloc_context) +{ + return stbir__resize_arbitrary(alloc_context, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + 0,0,1,1,NULL,num_channels,alpha_channel,flags, STBIR_TYPE_FLOAT, filter, filter, + edge_wrap_mode, edge_wrap_mode, space); +} + + +STBIRDEF int stbir_resize( const void *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + void *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + stbir_datatype datatype, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_mode_horizontal, stbir_edge edge_mode_vertical, + stbir_filter filter_horizontal, stbir_filter filter_vertical, + stbir_colorspace space, void *alloc_context) +{ + return stbir__resize_arbitrary(alloc_context, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + 0,0,1,1,NULL,num_channels,alpha_channel,flags, datatype, filter_horizontal, filter_vertical, + edge_mode_horizontal, edge_mode_vertical, space); +} + + +STBIRDEF int stbir_resize_subpixel(const void *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + void *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + stbir_datatype datatype, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_mode_horizontal, stbir_edge edge_mode_vertical, + stbir_filter filter_horizontal, stbir_filter filter_vertical, + stbir_colorspace space, void *alloc_context, + float x_scale, float y_scale, + float x_offset, float y_offset) +{ + float transform[4]; + transform[0] = x_scale; + transform[1] = y_scale; + transform[2] = x_offset; + transform[3] = y_offset; + return stbir__resize_arbitrary(alloc_context, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + 0,0,1,1,transform,num_channels,alpha_channel,flags, datatype, filter_horizontal, filter_vertical, + edge_mode_horizontal, edge_mode_vertical, space); +} + +STBIRDEF int stbir_resize_region( const void *input_pixels , int input_w , int input_h , int input_stride_in_bytes, + void *output_pixels, int output_w, int output_h, int output_stride_in_bytes, + stbir_datatype datatype, + int num_channels, int alpha_channel, int flags, + stbir_edge edge_mode_horizontal, stbir_edge edge_mode_vertical, + stbir_filter filter_horizontal, stbir_filter filter_vertical, + stbir_colorspace space, void *alloc_context, + float s0, float t0, float s1, float t1) +{ + return stbir__resize_arbitrary(alloc_context, input_pixels, input_w, input_h, input_stride_in_bytes, + output_pixels, output_w, output_h, output_stride_in_bytes, + s0,t0,s1,t1,NULL,num_channels,alpha_channel,flags, datatype, filter_horizontal, filter_vertical, + edge_mode_horizontal, edge_mode_vertical, space); +} + +#endif // STB_IMAGE_RESIZE_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. +------------------------------------------------------------------------------ +*/ \ No newline at end of file diff --git a/lib/lv_gltf/data/deps/stb_image/stb_image_write.h b/lib/lv_gltf/data/deps/stb_image/stb_image_write.h new file mode 100644 index 0000000..dd20cfb --- /dev/null +++ b/lib/lv_gltf/data/deps/stb_image/stb_image_write.h @@ -0,0 +1,1745 @@ +/* stb_image_write - v1.16 - public domain - http://nothings.org/stb + writes out PNG/BMP/TGA/JPEG/HDR images to C stdio - Sean Barrett 2010-2015 + no warranty implied; use at your own risk + + Before #including, + + #define STB_IMAGE_WRITE_IMPLEMENTATION + + in the file that you want to have the implementation. + + Will probably not work correctly with strict-aliasing optimizations. + +ABOUT: + + This header file is a library for writing images to C stdio or a callback. + + The PNG output is not optimal; it is 20-50% larger than the file + written by a decent optimizing implementation; though providing a custom + zlib compress function (see STBIW_ZLIB_COMPRESS) can mitigate that. + This library is designed for source code compactness and simplicity, + not optimal image file size or run-time performance. + +BUILDING: + + You can #define STBIW_ASSERT(x) before the #include to avoid using assert.h. + You can #define STBIW_MALLOC(), STBIW_REALLOC(), and STBIW_FREE() to replace + malloc,realloc,free. + You can #define STBIW_MEMMOVE() to replace memmove() + You can #define STBIW_ZLIB_COMPRESS to use a custom zlib-style compress function + for PNG compression (instead of the builtin one), it must have the following signature: + unsigned char * my_compress(unsigned char *data, int data_len, int *out_len, int quality); + The returned data will be freed with STBIW_FREE() (free() by default), + so it must be heap allocated with STBIW_MALLOC() (malloc() by default), + +UNICODE: + + If compiling for Windows and you wish to use Unicode filenames, compile + with + #define STBIW_WINDOWS_UTF8 + and pass utf8-encoded filenames. Call stbiw_convert_wchar_to_utf8 to convert + Windows wchar_t filenames to utf8. + +USAGE: + + There are five functions, one for each image file format: + + int stbi_write_png(char const *filename, int w, int h, int comp, const void *data, int stride_in_bytes); + int stbi_write_bmp(char const *filename, int w, int h, int comp, const void *data); + int stbi_write_tga(char const *filename, int w, int h, int comp, const void *data); + int stbi_write_jpg(char const *filename, int w, int h, int comp, const void *data, int quality); + int stbi_write_hdr(char const *filename, int w, int h, int comp, const float *data); + + void stbi_flip_vertically_on_write(int flag); // flag is non-zero to flip data vertically + + There are also five equivalent functions that use an arbitrary write function. You are + expected to open/close your file-equivalent before and after calling these: + + int stbi_write_png_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data, int stride_in_bytes); + int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); + int stbi_write_tga_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); + int stbi_write_hdr_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const float *data); + int stbi_write_jpg_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int quality); + + where the callback is: + void stbi_write_func(void *context, void *data, int size); + + You can configure it with these global variables: + int stbi_write_tga_with_rle; // defaults to true; set to 0 to disable RLE + int stbi_write_png_compression_level; // defaults to 8; set to higher for more compression + int stbi_write_force_png_filter; // defaults to -1; set to 0..5 to force a filter mode + + + You can define STBI_WRITE_NO_STDIO to disable the file variant of these + functions, so the library will not use stdio.h at all. However, this will + also disable HDR writing, because it requires stdio for formatted output. + + Each function returns 0 on failure and non-0 on success. + + The functions create an image file defined by the parameters. The image + is a rectangle of pixels stored from left-to-right, top-to-bottom. + Each pixel contains 'comp' channels of data stored interleaved with 8-bits + per channel, in the following order: 1=Y, 2=YA, 3=RGB, 4=RGBA. (Y is + monochrome color.) The rectangle is 'w' pixels wide and 'h' pixels tall. + The *data pointer points to the first byte of the top-left-most pixel. + For PNG, "stride_in_bytes" is the distance in bytes from the first byte of + a row of pixels to the first byte of the next row of pixels. + + PNG creates output files with the same number of components as the input. + The BMP format expands Y to RGB in the file format and does not + output alpha. + + PNG supports writing rectangles of data even when the bytes storing rows of + data are not consecutive in memory (e.g. sub-rectangles of a larger image), + by supplying the stride between the beginning of adjacent rows. The other + formats do not. (Thus you cannot write a native-format BMP through the BMP + writer, both because it is in BGR order and because it may have padding + at the end of the line.) + + PNG allows you to set the deflate compression level by setting the global + variable 'stbi_write_png_compression_level' (it defaults to 8). + + HDR expects linear float data. Since the format is always 32-bit rgb(e) + data, alpha (if provided) is discarded, and for monochrome data it is + replicated across all three channels. + + TGA supports RLE or non-RLE compressed data. To use non-RLE-compressed + data, set the global variable 'stbi_write_tga_with_rle' to 0. + + JPEG does ignore alpha channels in input data; quality is between 1 and 100. + Higher quality looks better but results in a bigger image. + JPEG baseline (no JPEG progressive). + +CREDITS: + + + Sean Barrett - PNG/BMP/TGA + Baldur Karlsson - HDR + Jean-Sebastien Guay - TGA monochrome + Tim Kelsey - misc enhancements + Alan Hickman - TGA RLE + Emmanuel Julien - initial file IO callback implementation + Jon Olick - original jo_jpeg.cpp code + Daniel Gibson - integrate JPEG, allow external zlib + Aarni Koskela - allow choosing PNG filter + + bugfixes: + github:Chribba + Guillaume Chereau + github:jry2 + github:romigrou + Sergio Gonzalez + Jonas Karlsson + Filip Wasil + Thatcher Ulrich + github:poppolopoppo + Patrick Boettcher + github:xeekworx + Cap Petschulat + Simon Rodriguez + Ivan Tikhonov + github:ignotion + Adam Schackart + Andrew Kensler + +LICENSE + + See end of file for license information. + +*/ + +#ifndef INCLUDE_STB_IMAGE_WRITE_H +#define INCLUDE_STB_IMAGE_WRITE_H + +#include + +// if STB_IMAGE_WRITE_STATIC causes problems, try defining STBIWDEF to 'inline' or 'static inline' +#ifndef STBIWDEF +#ifdef STB_IMAGE_WRITE_STATIC +#define STBIWDEF static +#else +#ifdef __cplusplus +#define STBIWDEF extern "C" +#else +#define STBIWDEF extern +#endif +#endif +#endif + +#ifndef STB_IMAGE_WRITE_STATIC // C++ forbids static forward declarations +STBIWDEF int stbi_write_tga_with_rle; +STBIWDEF int stbi_write_png_compression_level; +STBIWDEF int stbi_write_force_png_filter; +#endif + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_png(char const *filename, int w, int h, int comp, const void *data, int stride_in_bytes); +STBIWDEF int stbi_write_bmp(char const *filename, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_tga(char const *filename, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_hdr(char const *filename, int w, int h, int comp, const float *data); +STBIWDEF int stbi_write_jpg(char const *filename, int x, int y, int comp, const void *data, int quality); + +#ifdef STBIW_WINDOWS_UTF8 +STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input); +#endif +#endif + +typedef void stbi_write_func(void *context, void *data, int size); + +STBIWDEF int stbi_write_png_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data, int stride_in_bytes); +STBIWDEF int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_tga_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const void *data); +STBIWDEF int stbi_write_hdr_to_func(stbi_write_func *func, void *context, int w, int h, int comp, const float *data); +STBIWDEF int stbi_write_jpg_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int quality); + +STBIWDEF void stbi_flip_vertically_on_write(int flip_boolean); + +#endif//INCLUDE_STB_IMAGE_WRITE_H + +#ifdef STB_IMAGE_WRITE_IMPLEMENTATION + +#ifdef _WIN32 + #ifndef _CRT_SECURE_NO_WARNINGS + #define _CRT_SECURE_NO_WARNINGS + #endif + #ifndef _CRT_NONSTDC_NO_DEPRECATE + #define _CRT_NONSTDC_NO_DEPRECATE + #endif +#endif + +#ifndef STBI_WRITE_NO_STDIO +#include +#endif // STBI_WRITE_NO_STDIO + +#include +#include +#include +#include + +#if defined(STBIW_MALLOC) && defined(STBIW_FREE) && (defined(STBIW_REALLOC) || defined(STBIW_REALLOC_SIZED)) +// ok +#elif !defined(STBIW_MALLOC) && !defined(STBIW_FREE) && !defined(STBIW_REALLOC) && !defined(STBIW_REALLOC_SIZED) +// ok +#else +#error "Must define all or none of STBIW_MALLOC, STBIW_FREE, and STBIW_REALLOC (or STBIW_REALLOC_SIZED)." +#endif + +#ifndef STBIW_MALLOC +#define STBIW_MALLOC(sz) malloc(sz) +#define STBIW_REALLOC(p,newsz) realloc(p,newsz) +#define STBIW_FREE(p) free(p) +#endif + +#ifndef STBIW_REALLOC_SIZED +#define STBIW_REALLOC_SIZED(p,oldsz,newsz) STBIW_REALLOC(p,newsz) +#endif + + +#ifndef STBIW_MEMMOVE +#define STBIW_MEMMOVE(a,b,sz) memmove(a,b,sz) +#endif + + +#ifndef STBIW_ASSERT +#include +#define STBIW_ASSERT(x) assert(x) +#endif + +#define STBIW_UCHAR(x) (unsigned char) ((x) & 0xff) + +#ifdef STB_IMAGE_WRITE_STATIC +static int stbi_write_png_compression_level = 8; +static int stbi_write_tga_with_rle = 1; +static int stbi_write_force_png_filter = -1; +#else +int stbi_write_png_compression_level = 8; +int stbi_write_tga_with_rle = 1; +int stbi_write_force_png_filter = -1; +#endif + +static int stbi__flip_vertically_on_write = 0; + +STBIWDEF void stbi_flip_vertically_on_write(int flag) +{ + stbi__flip_vertically_on_write = flag; +} + +typedef struct +{ + stbi_write_func *func; + void *context; + unsigned char buffer[64]; + int buf_used; +} stbi__write_context; + +#define STBI_WRITE_CONTEXT_INIT(func_ptr, ctx_ptr) { \ + (func_ptr), \ + (ctx_ptr), \ + {0}, \ + 0 \ +} +// initialize a callback-based context +static void stbi__start_write_callbacks(stbi__write_context *s, stbi_write_func *c, void *context) +{ + s->func = c; + s->context = context; +} + +#ifndef STBI_WRITE_NO_STDIO + +static void stbi__stdio_write(void *context, void *data, int size) +{ + fwrite(data,1,size,(FILE*) context); +} + +#if defined(_WIN32) && defined(STBIW_WINDOWS_UTF8) +#ifdef __cplusplus +#define STBIW_EXTERN extern "C" +#else +#define STBIW_EXTERN extern +#endif +STBIW_EXTERN __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int cp, unsigned long flags, const char *str, int cbmb, wchar_t *widestr, int cchwide); +STBIW_EXTERN __declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, const wchar_t *widestr, int cchwide, char *str, int cbmb, const char *defchar, int *used_default); + +STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input) +{ + return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL); +} +#endif + +static FILE *stbiw__fopen(char const *filename, char const *mode) +{ + FILE *f; +#if defined(_WIN32) && defined(STBIW_WINDOWS_UTF8) + wchar_t wMode[64]; + wchar_t wFilename[1024]; + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, filename, -1, wFilename, sizeof(wFilename)/sizeof(*wFilename))) + return 0; + + if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, mode, -1, wMode, sizeof(wMode)/sizeof(*wMode))) + return 0; + +#if defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != _wfopen_s(&f, wFilename, wMode)) + f = 0; +#else + f = _wfopen(wFilename, wMode); +#endif + +#elif defined(_MSC_VER) && _MSC_VER >= 1400 + if (0 != fopen_s(&f, filename, mode)) + f=0; +#else + f = fopen(filename, mode); +#endif + return f; +} + +static int stbi__start_write_file(stbi__write_context *s, const char *filename) +{ + FILE *f = stbiw__fopen(filename, "wb"); + stbi__start_write_callbacks(s, stbi__stdio_write, (void *) f); + return f != NULL; +} + +static void stbi__end_write_file(stbi__write_context *s) +{ + fclose((FILE *)s->context); +} + +#endif // !STBI_WRITE_NO_STDIO + +typedef unsigned int stbiw_uint32; +typedef int stb_image_write_test[sizeof(stbiw_uint32)==4 ? 1 : -1]; + +static void stbiw__writefv(stbi__write_context *s, const char *fmt, va_list v) +{ + while (*fmt) { + switch (*fmt++) { + case ' ': break; + case '1': { unsigned char x = STBIW_UCHAR(va_arg(v, int)); + s->func(s->context,&x,1); + break; } + case '2': { int x = va_arg(v,int); + unsigned char b[2]; + b[0] = STBIW_UCHAR(x); + b[1] = STBIW_UCHAR(x>>8); + s->func(s->context,b,2); + break; } + case '4': { stbiw_uint32 x = va_arg(v,int); + unsigned char b[4]; + b[0]=STBIW_UCHAR(x); + b[1]=STBIW_UCHAR(x>>8); + b[2]=STBIW_UCHAR(x>>16); + b[3]=STBIW_UCHAR(x>>24); + s->func(s->context,b,4); + break; } + default: + STBIW_ASSERT(0); + return; + } + } +} + +static void stbiw__writef(stbi__write_context *s, const char *fmt, ...) +{ + va_list v; + va_start(v, fmt); + stbiw__writefv(s, fmt, v); + va_end(v); +} + +static void stbiw__write_flush(stbi__write_context *s) +{ + if (s->buf_used) { + s->func(s->context, &s->buffer, s->buf_used); + s->buf_used = 0; + } +} + +static void stbiw__putc(stbi__write_context *s, unsigned char c) +{ + s->func(s->context, &c, 1); +} + +static void stbiw__write1(stbi__write_context *s, unsigned char a) +{ + if ((size_t)s->buf_used + 1 > sizeof(s->buffer)) + stbiw__write_flush(s); + s->buffer[s->buf_used++] = a; +} + +static void stbiw__write3(stbi__write_context *s, unsigned char a, unsigned char b, unsigned char c) +{ + int n; + if ((size_t)s->buf_used + 3 > sizeof(s->buffer)) + stbiw__write_flush(s); + n = s->buf_used; + s->buf_used = n+3; + s->buffer[n+0] = a; + s->buffer[n+1] = b; + s->buffer[n+2] = c; +} + +static void stbiw__write_pixel(stbi__write_context *s, int rgb_dir, int comp, int write_alpha, int expand_mono, unsigned char *d) +{ + unsigned char bg[3] = { 255, 0, 255}, px[3]; + int k; + + if (write_alpha < 0) + stbiw__write1(s, d[comp - 1]); + + switch (comp) { + case 2: // 2 pixels = mono + alpha, alpha is written separately, so same as 1-channel case + case 1: + if (expand_mono) + stbiw__write3(s, d[0], d[0], d[0]); // monochrome bmp + else + stbiw__write1(s, d[0]); // monochrome TGA + break; + case 4: + if (!write_alpha) { + // composite against pink background + for (k = 0; k < 3; ++k) + px[k] = bg[k] + ((d[k] - bg[k]) * d[3]) / 255; + stbiw__write3(s, px[1 - rgb_dir], px[1], px[1 + rgb_dir]); + break; + } + /* FALLTHROUGH */ + case 3: + stbiw__write3(s, d[1 - rgb_dir], d[1], d[1 + rgb_dir]); + break; + } + if (write_alpha > 0) + stbiw__write1(s, d[comp - 1]); +} + +static void stbiw__write_pixels(stbi__write_context *s, int rgb_dir, int vdir, int x, int y, int comp, void *data, int write_alpha, int scanline_pad, int expand_mono) +{ + stbiw_uint32 zero = 0; + int i,j, j_end; + + if (y <= 0) + return; + + if (stbi__flip_vertically_on_write) + vdir *= -1; + + if (vdir < 0) { + j_end = -1; j = y-1; + } else { + j_end = y; j = 0; + } + + for (; j != j_end; j += vdir) { + for (i=0; i < x; ++i) { + unsigned char *d = (unsigned char *) data + (j*x+i)*comp; + stbiw__write_pixel(s, rgb_dir, comp, write_alpha, expand_mono, d); + } + stbiw__write_flush(s); + s->func(s->context, &zero, scanline_pad); + } +} + +static int stbiw__outfile(stbi__write_context *s, int rgb_dir, int vdir, int x, int y, int comp, int expand_mono, void *data, int alpha, int pad, const char *fmt, ...) +{ + if (y < 0 || x < 0) { + return 0; + } else { + va_list v; + va_start(v, fmt); + stbiw__writefv(s, fmt, v); + va_end(v); + stbiw__write_pixels(s,rgb_dir,vdir,x,y,comp,data,alpha,pad, expand_mono); + return 1; + } +} + +static int stbi_write_bmp_core(stbi__write_context *s, int x, int y, int comp, const void *data) +{ + if (comp != 4) { + // write RGB bitmap + int pad = (-x*3) & 3; + return stbiw__outfile(s,-1,-1,x,y,comp,1,(void *) data,0,pad, + "11 4 22 4" "4 44 22 444444", + 'B', 'M', 14+40+(x*3+pad)*y, 0,0, 14+40, // file header + 40, x,y, 1,24, 0,0,0,0,0,0); // bitmap header + } else { + // RGBA bitmaps need a v4 header + // use BI_BITFIELDS mode with 32bpp and alpha mask + // (straight BI_RGB with alpha mask doesn't work in most readers) + return stbiw__outfile(s,-1,-1,x,y,comp,1,(void *)data,1,0, + "11 4 22 4" "4 44 22 444444 4444 4 444 444 444 444", + 'B', 'M', 14+108+x*y*4, 0, 0, 14+108, // file header + 108, x,y, 1,32, 3,0,0,0,0,0, 0xff0000,0xff00,0xff,0xff000000u, 0, 0,0,0, 0,0,0, 0,0,0, 0,0,0); // bitmap V4 header + } +} + +STBIWDEF int stbi_write_bmp_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data) +{ +// stbi__write_context s = { 0 }; + + stbi__write_context s = STBI_WRITE_CONTEXT_INIT(NULL, NULL); + stbi__start_write_callbacks(&s, func, context); + return stbi_write_bmp_core(&s, x, y, comp, data); +} + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_bmp(char const *filename, int x, int y, int comp, const void *data) +{ +// stbi__write_context s = { 0 }; + stbi__write_context s = STBI_WRITE_CONTEXT_INIT(NULL, NULL); + + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_bmp_core(&s, x, y, comp, data); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif //!STBI_WRITE_NO_STDIO + +static int stbi_write_tga_core(stbi__write_context *s, int x, int y, int comp, void *data) +{ + int has_alpha = (comp == 2 || comp == 4); + int colorbytes = has_alpha ? comp-1 : comp; + int format = colorbytes < 2 ? 3 : 2; // 3 color channels (RGB/RGBA) = 2, 1 color channel (Y/YA) = 3 + + if (y < 0 || x < 0) + return 0; + + if (!stbi_write_tga_with_rle) { + return stbiw__outfile(s, -1, -1, x, y, comp, 0, (void *) data, has_alpha, 0, + "111 221 2222 11", 0, 0, format, 0, 0, 0, 0, 0, x, y, (colorbytes + has_alpha) * 8, has_alpha * 8); + } else { + int i,j,k; + int jend, jdir; + + stbiw__writef(s, "111 221 2222 11", 0,0,format+8, 0,0,0, 0,0,x,y, (colorbytes + has_alpha) * 8, has_alpha * 8); + + if (stbi__flip_vertically_on_write) { + j = 0; + jend = y; + jdir = 1; + } else { + j = y-1; + jend = -1; + jdir = -1; + } + for (; j != jend; j += jdir) { + unsigned char *row = (unsigned char *) data + j * x * comp; + int len; + + for (i = 0; i < x; i += len) { + unsigned char *begin = row + i * comp; + int diff = 1; + len = 1; + + if (i < x - 1) { + ++len; + diff = memcmp(begin, row + (i + 1) * comp, comp); + if (diff) { + const unsigned char *prev = begin; + for (k = i + 2; k < x && len < 128; ++k) { + if (memcmp(prev, row + k * comp, comp)) { + prev += comp; + ++len; + } else { + --len; + break; + } + } + } else { + for (k = i + 2; k < x && len < 128; ++k) { + if (!memcmp(begin, row + k * comp, comp)) { + ++len; + } else { + break; + } + } + } + } + + if (diff) { + unsigned char header = STBIW_UCHAR(len - 1); + stbiw__write1(s, header); + for (k = 0; k < len; ++k) { + stbiw__write_pixel(s, -1, comp, has_alpha, 0, begin + k * comp); + } + } else { + unsigned char header = STBIW_UCHAR(len - 129); + stbiw__write1(s, header); + stbiw__write_pixel(s, -1, comp, has_alpha, 0, begin); + } + } + } + stbiw__write_flush(s); + } + return 1; +} + +STBIWDEF int stbi_write_tga_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data) +{ +// stbi__write_context s = { 0 }; + stbi__write_context s = STBI_WRITE_CONTEXT_INIT(NULL, NULL); + + stbi__start_write_callbacks(&s, func, context); + return stbi_write_tga_core(&s, x, y, comp, (void *) data); +} + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_tga(char const *filename, int x, int y, int comp, const void *data) +{ +// stbi__write_context s = { 0 }; + stbi__write_context s = STBI_WRITE_CONTEXT_INIT(NULL, NULL); + + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_tga_core(&s, x, y, comp, (void *) data); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif + +// ************************************************************************************************* +// Radiance RGBE HDR writer +// by Baldur Karlsson + +#define stbiw__max(a, b) ((a) > (b) ? (a) : (b)) + +#ifndef STBI_WRITE_NO_STDIO + +static void stbiw__linear_to_rgbe(unsigned char *rgbe, float *linear) +{ + int exponent; + float maxcomp = stbiw__max(linear[0], stbiw__max(linear[1], linear[2])); + + if (maxcomp < 1e-32f) { + rgbe[0] = rgbe[1] = rgbe[2] = rgbe[3] = 0; + } else { + float normalize = (float) frexp(maxcomp, &exponent) * 256.0f/maxcomp; + + rgbe[0] = (unsigned char)(linear[0] * normalize); + rgbe[1] = (unsigned char)(linear[1] * normalize); + rgbe[2] = (unsigned char)(linear[2] * normalize); + rgbe[3] = (unsigned char)(exponent + 128); + } +} + +static void stbiw__write_run_data(stbi__write_context *s, int length, unsigned char databyte) +{ + unsigned char lengthbyte = STBIW_UCHAR(length+128); + STBIW_ASSERT(length+128 <= 255); + s->func(s->context, &lengthbyte, 1); + s->func(s->context, &databyte, 1); +} + +static void stbiw__write_dump_data(stbi__write_context *s, int length, unsigned char *data) +{ + unsigned char lengthbyte = STBIW_UCHAR(length); + STBIW_ASSERT(length <= 128); // inconsistent with spec but consistent with official code + s->func(s->context, &lengthbyte, 1); + s->func(s->context, data, length); +} + +static void stbiw__write_hdr_scanline(stbi__write_context *s, int width, int ncomp, unsigned char *scratch, float *scanline) +{ + unsigned char scanlineheader[4] = { 2, 2, 0, 0 }; + unsigned char rgbe[4]; + float linear[3]; + int x; + + scanlineheader[2] = (width&0xff00)>>8; + scanlineheader[3] = (width&0x00ff); + + /* skip RLE for images too small or large */ + if (width < 8 || width >= 32768) { + for (x=0; x < width; x++) { + switch (ncomp) { + case 4: /* fallthrough */ + case 3: linear[2] = scanline[x*ncomp + 2]; + linear[1] = scanline[x*ncomp + 1]; + linear[0] = scanline[x*ncomp + 0]; + break; + default: + linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; + break; + } + stbiw__linear_to_rgbe(rgbe, linear); + s->func(s->context, rgbe, 4); + } + } else { + int c,r; + /* encode into scratch buffer */ + for (x=0; x < width; x++) { + switch(ncomp) { + case 4: /* fallthrough */ + case 3: linear[2] = scanline[x*ncomp + 2]; + linear[1] = scanline[x*ncomp + 1]; + linear[0] = scanline[x*ncomp + 0]; + break; + default: + linear[0] = linear[1] = linear[2] = scanline[x*ncomp + 0]; + break; + } + stbiw__linear_to_rgbe(rgbe, linear); + scratch[x + width*0] = rgbe[0]; + scratch[x + width*1] = rgbe[1]; + scratch[x + width*2] = rgbe[2]; + scratch[x + width*3] = rgbe[3]; + } + + s->func(s->context, scanlineheader, 4); + + /* RLE each component separately */ + for (c=0; c < 4; c++) { + unsigned char *comp = &scratch[width*c]; + + x = 0; + while (x < width) { + // find first run + r = x; + while (r+2 < width) { + if (comp[r] == comp[r+1] && comp[r] == comp[r+2]) + break; + ++r; + } + if (r+2 >= width) + r = width; + // dump up to first run + while (x < r) { + int len = r-x; + if (len > 128) len = 128; + stbiw__write_dump_data(s, len, &comp[x]); + x += len; + } + // if there's a run, output it + if (r+2 < width) { // same test as what we break out of in search loop, so only true if we break'd + // find next byte after run + while (r < width && comp[r] == comp[x]) + ++r; + // output run up to r + while (x < r) { + int len = r-x; + if (len > 127) len = 127; + stbiw__write_run_data(s, len, comp[x]); + x += len; + } + } + } + } + } +} + +static int stbi_write_hdr_core(stbi__write_context *s, int x, int y, int comp, float *data) +{ + if (y <= 0 || x <= 0 || data == NULL) + return 0; + else { + // Each component is stored separately. Allocate scratch space for full output scanline. + unsigned char *scratch = (unsigned char *) STBIW_MALLOC(x*4); + int i, len; + char buffer[128]; + char header[] = "#?RADIANCE\n# Written by stb_image_write.h\nFORMAT=32-bit_rle_rgbe\n"; + s->func(s->context, header, sizeof(header)-1); + +#ifdef __STDC_LIB_EXT1__ + len = sprintf_s(buffer, sizeof(buffer), "EXPOSURE= 1.0000000000000\n\n-Y %d +X %d\n", y, x); +#else + len = sprintf(buffer, "EXPOSURE= 1.0000000000000\n\n-Y %d +X %d\n", y, x); +#endif + s->func(s->context, buffer, len); + + for(i=0; i < y; i++) + stbiw__write_hdr_scanline(s, x, comp, scratch, data + comp*x*(stbi__flip_vertically_on_write ? y-1-i : i)); + STBIW_FREE(scratch); + return 1; + } +} + +STBIWDEF int stbi_write_hdr_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const float *data) +{ +// stbi__write_context s = { 0 }; + stbi__write_context s = STBI_WRITE_CONTEXT_INIT(NULL, NULL); + + stbi__start_write_callbacks(&s, func, context); + return stbi_write_hdr_core(&s, x, y, comp, (float *) data); +} + +STBIWDEF int stbi_write_hdr(char const *filename, int x, int y, int comp, const float *data) +{ +// stbi__write_context s = { 0 }; + stbi__write_context s = STBI_WRITE_CONTEXT_INIT(NULL, NULL); + + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_hdr_core(&s, x, y, comp, (float *) data); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif // STBI_WRITE_NO_STDIO + + +////////////////////////////////////////////////////////////////////////////// +// +// PNG writer +// + +#ifndef STBIW_ZLIB_COMPRESS +// stretchy buffer; stbiw__sbpush() == vector<>::push_back() -- stbiw__sbcount() == vector<>::size() +#define stbiw__sbraw(a) ((int *) (void *) (a) - 2) +#define stbiw__sbm(a) stbiw__sbraw(a)[0] +#define stbiw__sbn(a) stbiw__sbraw(a)[1] + +#define stbiw__sbneedgrow(a,n) ((a)==0 || stbiw__sbn(a)+n >= stbiw__sbm(a)) +#define stbiw__sbmaybegrow(a,n) (stbiw__sbneedgrow(a,(n)) ? stbiw__sbgrow(a,n) : 0) +#define stbiw__sbgrow(a,n) stbiw__sbgrowf((void **) &(a), (n), sizeof(*(a))) + +#define stbiw__sbpush(a, v) (stbiw__sbmaybegrow(a,1), (a)[stbiw__sbn(a)++] = (v)) +#define stbiw__sbcount(a) ((a) ? stbiw__sbn(a) : 0) +#define stbiw__sbfree(a) ((a) ? STBIW_FREE(stbiw__sbraw(a)),0 : 0) + +static void *stbiw__sbgrowf(void **arr, int increment, int itemsize) +{ + int m = *arr ? 2*stbiw__sbm(*arr)+increment : increment+1; + void *p = STBIW_REALLOC_SIZED(*arr ? stbiw__sbraw(*arr) : 0, *arr ? (stbiw__sbm(*arr)*itemsize + sizeof(int)*2) : 0, itemsize * m + sizeof(int)*2); + STBIW_ASSERT(p); + if (p) { + if (!*arr) ((int *) p)[1] = 0; + *arr = (void *) ((int *) p + 2); + stbiw__sbm(*arr) = m; + } + return *arr; +} + +static unsigned char *stbiw__zlib_flushf(unsigned char *data, unsigned int *bitbuffer, int *bitcount) +{ + while (*bitcount >= 8) { + stbiw__sbpush(data, STBIW_UCHAR(*bitbuffer)); + *bitbuffer >>= 8; + *bitcount -= 8; + } + return data; +} + +static int stbiw__zlib_bitrev(int code, int codebits) +{ + int res=0; + while (codebits--) { + res = (res << 1) | (code & 1); + code >>= 1; + } + return res; +} + +static unsigned int stbiw__zlib_countm(unsigned char *a, unsigned char *b, int limit) +{ + int i; + for (i=0; i < limit && i < 258; ++i) + if (a[i] != b[i]) break; + return i; +} + +static unsigned int stbiw__zhash(unsigned char *data) +{ + stbiw_uint32 hash = data[0] + (data[1] << 8) + (data[2] << 16); + hash ^= hash << 3; + hash += hash >> 5; + hash ^= hash << 4; + hash += hash >> 17; + hash ^= hash << 25; + hash += hash >> 6; + return hash; +} + +#define stbiw__zlib_flush() (out = stbiw__zlib_flushf(out, &bitbuf, &bitcount)) +#define stbiw__zlib_add(code,codebits) \ + (bitbuf |= (code) << bitcount, bitcount += (codebits), stbiw__zlib_flush()) +#define stbiw__zlib_huffa(b,c) stbiw__zlib_add(stbiw__zlib_bitrev(b,c),c) +// default huffman tables +#define stbiw__zlib_huff1(n) stbiw__zlib_huffa(0x30 + (n), 8) +#define stbiw__zlib_huff2(n) stbiw__zlib_huffa(0x190 + (n)-144, 9) +#define stbiw__zlib_huff3(n) stbiw__zlib_huffa(0 + (n)-256,7) +#define stbiw__zlib_huff4(n) stbiw__zlib_huffa(0xc0 + (n)-280,8) +#define stbiw__zlib_huff(n) ((n) <= 143 ? stbiw__zlib_huff1(n) : (n) <= 255 ? stbiw__zlib_huff2(n) : (n) <= 279 ? stbiw__zlib_huff3(n) : stbiw__zlib_huff4(n)) +#define stbiw__zlib_huffb(n) ((n) <= 143 ? stbiw__zlib_huff1(n) : stbiw__zlib_huff2(n)) + +#define stbiw__ZHASH 16384 + +#endif // STBIW_ZLIB_COMPRESS + +STBIWDEF unsigned char * stbi_zlib_compress(unsigned char *data, int data_len, int *out_len, int quality) +{ +#ifdef STBIW_ZLIB_COMPRESS + // user provided a zlib compress implementation, use that + return STBIW_ZLIB_COMPRESS(data, data_len, out_len, quality); +#else // use builtin + static unsigned short lengthc[] = { 3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258, 259 }; + static unsigned char lengtheb[]= { 0,0,0,0,0,0,0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0 }; + static unsigned short distc[] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577, 32768 }; + static unsigned char disteb[] = { 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13 }; + unsigned int bitbuf=0; + int i,j, bitcount=0; + unsigned char *out = NULL; + unsigned char ***hash_table = (unsigned char***) STBIW_MALLOC(stbiw__ZHASH * sizeof(unsigned char**)); + if (hash_table == NULL) + return NULL; + if (quality < 5) quality = 5; + + stbiw__sbpush(out, 0x78); // DEFLATE 32K window + stbiw__sbpush(out, 0x5e); // FLEVEL = 1 + stbiw__zlib_add(1,1); // BFINAL = 1 + stbiw__zlib_add(1,2); // BTYPE = 1 -- fixed huffman + + for (i=0; i < stbiw__ZHASH; ++i) + hash_table[i] = NULL; + + i=0; + while (i < data_len-3) { + // hash next 3 bytes of data to be compressed + int h = stbiw__zhash(data+i)&(stbiw__ZHASH-1), best=3; + unsigned char *bestloc = 0; + unsigned char **hlist = hash_table[h]; + int n = stbiw__sbcount(hlist); + for (j=0; j < n; ++j) { + if (hlist[j]-data > i-32768) { // if entry lies within window + int d = stbiw__zlib_countm(hlist[j], data+i, data_len-i); + if (d >= best) { best=d; bestloc=hlist[j]; } + } + } + // when hash table entry is too long, delete half the entries + if (hash_table[h] && stbiw__sbn(hash_table[h]) == 2*quality) { + STBIW_MEMMOVE(hash_table[h], hash_table[h]+quality, sizeof(hash_table[h][0])*quality); + stbiw__sbn(hash_table[h]) = quality; + } + stbiw__sbpush(hash_table[h],data+i); + + if (bestloc) { + // "lazy matching" - check match at *next* byte, and if it's better, do cur byte as literal + h = stbiw__zhash(data+i+1)&(stbiw__ZHASH-1); + hlist = hash_table[h]; + n = stbiw__sbcount(hlist); + for (j=0; j < n; ++j) { + if (hlist[j]-data > i-32767) { + int e = stbiw__zlib_countm(hlist[j], data+i+1, data_len-i-1); + if (e > best) { // if next match is better, bail on current match + bestloc = NULL; + break; + } + } + } + } + + if (bestloc) { + int d = (int) (data+i - bestloc); // distance back + STBIW_ASSERT(d <= 32767 && best <= 258); + for (j=0; best > lengthc[j+1]-1; ++j); + stbiw__zlib_huff(j+257); + if (lengtheb[j]) stbiw__zlib_add(best - lengthc[j], lengtheb[j]); + for (j=0; d > distc[j+1]-1; ++j); + stbiw__zlib_add(stbiw__zlib_bitrev(j,5),5); + if (disteb[j]) stbiw__zlib_add(d - distc[j], disteb[j]); + i += best; + } else { + stbiw__zlib_huffb(data[i]); + ++i; + } + } + // write out final bytes + for (;i < data_len; ++i) + stbiw__zlib_huffb(data[i]); + stbiw__zlib_huff(256); // end of block + // pad with 0 bits to byte boundary + while (bitcount) + stbiw__zlib_add(0,1); + + for (i=0; i < stbiw__ZHASH; ++i) + (void) stbiw__sbfree(hash_table[i]); + STBIW_FREE(hash_table); + + // store uncompressed instead if compression was worse + if (stbiw__sbn(out) > data_len + 2 + ((data_len+32766)/32767)*5) { + stbiw__sbn(out) = 2; // truncate to DEFLATE 32K window and FLEVEL = 1 + for (j = 0; j < data_len;) { + int blocklen = data_len - j; + if (blocklen > 32767) blocklen = 32767; + stbiw__sbpush(out, data_len - j == blocklen); // BFINAL = ?, BTYPE = 0 -- no compression + stbiw__sbpush(out, STBIW_UCHAR(blocklen)); // LEN + stbiw__sbpush(out, STBIW_UCHAR(blocklen >> 8)); + stbiw__sbpush(out, STBIW_UCHAR(~blocklen)); // NLEN + stbiw__sbpush(out, STBIW_UCHAR(~blocklen >> 8)); + memcpy(out+stbiw__sbn(out), data+j, blocklen); + stbiw__sbn(out) += blocklen; + j += blocklen; + } + } + + { + // compute adler32 on input + unsigned int s1=1, s2=0; + int blocklen = (int) (data_len % 5552); + j=0; + while (j < data_len) { + for (i=0; i < blocklen; ++i) { s1 += data[j+i]; s2 += s1; } + s1 %= 65521; s2 %= 65521; + j += blocklen; + blocklen = 5552; + } + stbiw__sbpush(out, STBIW_UCHAR(s2 >> 8)); + stbiw__sbpush(out, STBIW_UCHAR(s2)); + stbiw__sbpush(out, STBIW_UCHAR(s1 >> 8)); + stbiw__sbpush(out, STBIW_UCHAR(s1)); + } + *out_len = stbiw__sbn(out); + // make returned pointer freeable + STBIW_MEMMOVE(stbiw__sbraw(out), out, *out_len); + return (unsigned char *) stbiw__sbraw(out); +#endif // STBIW_ZLIB_COMPRESS +} + +static unsigned int stbiw__crc32(unsigned char *buffer, int len) +{ +#ifdef STBIW_CRC32 + return STBIW_CRC32(buffer, len); +#else + static unsigned int crc_table[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 + }; + + unsigned int crc = ~0u; + int i; + for (i=0; i < len; ++i) + crc = (crc >> 8) ^ crc_table[buffer[i] ^ (crc & 0xff)]; + return ~crc; +#endif +} + +#define stbiw__wpng4(o,a,b,c,d) ((o)[0]=STBIW_UCHAR(a),(o)[1]=STBIW_UCHAR(b),(o)[2]=STBIW_UCHAR(c),(o)[3]=STBIW_UCHAR(d),(o)+=4) +#define stbiw__wp32(data,v) stbiw__wpng4(data, (v)>>24,(v)>>16,(v)>>8,(v)); +#define stbiw__wptag(data,s) stbiw__wpng4(data, s[0],s[1],s[2],s[3]) + +static void stbiw__wpcrc(unsigned char **data, int len) +{ + unsigned int crc = stbiw__crc32(*data - len - 4, len+4); + stbiw__wp32(*data, crc); +} + +static unsigned char stbiw__paeth(int a, int b, int c) +{ + int p = a + b - c, pa = abs(p-a), pb = abs(p-b), pc = abs(p-c); + if (pa <= pb && pa <= pc) return STBIW_UCHAR(a); + if (pb <= pc) return STBIW_UCHAR(b); + return STBIW_UCHAR(c); +} + +// @OPTIMIZE: provide an option that always forces left-predict or paeth predict +static void stbiw__encode_png_line(unsigned char *pixels, int stride_bytes, int width, int height, int y, int n, int filter_type, signed char *line_buffer) +{ + static int mapping[] = { 0,1,2,3,4 }; + static int firstmap[] = { 0,1,0,5,6 }; + int *mymap = (y != 0) ? mapping : firstmap; + int i; + int type = mymap[filter_type]; + unsigned char *z = pixels + stride_bytes * (stbi__flip_vertically_on_write ? height-1-y : y); + int signed_stride = stbi__flip_vertically_on_write ? -stride_bytes : stride_bytes; + + if (type==0) { + memcpy(line_buffer, z, width*n); + return; + } + + // first loop isn't optimized since it's just one pixel + for (i = 0; i < n; ++i) { + switch (type) { + case 1: line_buffer[i] = z[i]; break; + case 2: line_buffer[i] = z[i] - z[i-signed_stride]; break; + case 3: line_buffer[i] = z[i] - (z[i-signed_stride]>>1); break; + case 4: line_buffer[i] = (signed char) (z[i] - stbiw__paeth(0,z[i-signed_stride],0)); break; + case 5: line_buffer[i] = z[i]; break; + case 6: line_buffer[i] = z[i]; break; + } + } + switch (type) { + case 1: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - z[i-n]; break; + case 2: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - z[i-signed_stride]; break; + case 3: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - ((z[i-n] + z[i-signed_stride])>>1); break; + case 4: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], z[i-signed_stride], z[i-signed_stride-n]); break; + case 5: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - (z[i-n]>>1); break; + case 6: for (i=n; i < width*n; ++i) line_buffer[i] = z[i] - stbiw__paeth(z[i-n], 0,0); break; + } +} + +STBIWDEF unsigned char *stbi_write_png_to_mem(const unsigned char *pixels, int stride_bytes, int x, int y, int n, int *out_len) +{ + int force_filter = stbi_write_force_png_filter; + int ctype[5] = { -1, 0, 4, 2, 6 }; + unsigned char sig[8] = { 137,80,78,71,13,10,26,10 }; + unsigned char *out,*o, *filt, *zlib; + signed char *line_buffer; + int j,zlen; + + if (stride_bytes == 0) + stride_bytes = x * n; + + if (force_filter >= 5) { + force_filter = -1; + } + + filt = (unsigned char *) STBIW_MALLOC((x*n+1) * y); if (!filt) return 0; + line_buffer = (signed char *) STBIW_MALLOC(x * n); if (!line_buffer) { STBIW_FREE(filt); return 0; } + for (j=0; j < y; ++j) { + int filter_type; + if (force_filter > -1) { + filter_type = force_filter; + stbiw__encode_png_line((unsigned char*)(pixels), stride_bytes, x, y, j, n, force_filter, line_buffer); + } else { // Estimate the best filter by running through all of them: + int best_filter = 0, best_filter_val = 0x7fffffff, est, i; + for (filter_type = 0; filter_type < 5; filter_type++) { + stbiw__encode_png_line((unsigned char*)(pixels), stride_bytes, x, y, j, n, filter_type, line_buffer); + + // Estimate the entropy of the line using this filter; the less, the better. + est = 0; + for (i = 0; i < x*n; ++i) { + est += abs((signed char) line_buffer[i]); + } + if (est < best_filter_val) { + best_filter_val = est; + best_filter = filter_type; + } + } + if (filter_type != best_filter) { // If the last iteration already got us the best filter, don't redo it + stbiw__encode_png_line((unsigned char*)(pixels), stride_bytes, x, y, j, n, best_filter, line_buffer); + filter_type = best_filter; + } + } + // when we get here, filter_type contains the filter type, and line_buffer contains the data + filt[j*(x*n+1)] = (unsigned char) filter_type; + STBIW_MEMMOVE(filt+j*(x*n+1)+1, line_buffer, x*n); + } + STBIW_FREE(line_buffer); + zlib = stbi_zlib_compress(filt, y*( x*n+1), &zlen, stbi_write_png_compression_level); + STBIW_FREE(filt); + if (!zlib) return 0; + + // each tag requires 12 bytes of overhead + out = (unsigned char *) STBIW_MALLOC(8 + 12+13 + 12+zlen + 12); + if (!out) return 0; + *out_len = 8 + 12+13 + 12+zlen + 12; + + o=out; + STBIW_MEMMOVE(o,sig,8); o+= 8; + stbiw__wp32(o, 13); // header length + stbiw__wptag(o, "IHDR"); + stbiw__wp32(o, x); + stbiw__wp32(o, y); + *o++ = 8; + *o++ = STBIW_UCHAR(ctype[n]); + *o++ = 0; + *o++ = 0; + *o++ = 0; + stbiw__wpcrc(&o,13); + + stbiw__wp32(o, zlen); + stbiw__wptag(o, "IDAT"); + STBIW_MEMMOVE(o, zlib, zlen); + o += zlen; + STBIW_FREE(zlib); + stbiw__wpcrc(&o, zlen); + + stbiw__wp32(o,0); + stbiw__wptag(o, "IEND"); + stbiw__wpcrc(&o,0); + + STBIW_ASSERT(o == out + *out_len); + + return out; +} + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_png(char const *filename, int x, int y, int comp, const void *data, int stride_bytes) +{ + FILE *f; + int len; + unsigned char *png = stbi_write_png_to_mem((const unsigned char *) data, stride_bytes, x, y, comp, &len); + if (png == NULL) return 0; + + f = stbiw__fopen(filename, "wb"); + if (!f) { STBIW_FREE(png); return 0; } + fwrite(png, 1, len, f); + fclose(f); + STBIW_FREE(png); + return 1; +} +#endif + +STBIWDEF int stbi_write_png_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int stride_bytes) +{ + int len; + unsigned char *png = stbi_write_png_to_mem((const unsigned char *) data, stride_bytes, x, y, comp, &len); + if (png == NULL) return 0; + func(context, png, len); + STBIW_FREE(png); + return 1; +} + + +/* *************************************************************************** + * + * JPEG writer + * + * This is based on Jon Olick's jo_jpeg.cpp: + * public domain Simple, Minimalistic JPEG writer - http://www.jonolick.com/code.html + */ + +static const unsigned char stbiw__jpg_ZigZag[] = { 0,1,5,6,14,15,27,28,2,4,7,13,16,26,29,42,3,8,12,17,25,30,41,43,9,11,18, + 24,31,40,44,53,10,19,23,32,39,45,52,54,20,22,33,38,46,51,55,60,21,34,37,47,50,56,59,61,35,36,48,49,57,58,62,63 }; + +static void stbiw__jpg_writeBits(stbi__write_context *s, int *bitBufP, int *bitCntP, const unsigned short *bs) { + int bitBuf = *bitBufP, bitCnt = *bitCntP; + bitCnt += bs[1]; + bitBuf |= bs[0] << (24 - bitCnt); + while(bitCnt >= 8) { + unsigned char c = (bitBuf >> 16) & 255; + stbiw__putc(s, c); + if(c == 255) { + stbiw__putc(s, 0); + } + bitBuf <<= 8; + bitCnt -= 8; + } + *bitBufP = bitBuf; + *bitCntP = bitCnt; +} + +static void stbiw__jpg_DCT(float *d0p, float *d1p, float *d2p, float *d3p, float *d4p, float *d5p, float *d6p, float *d7p) { + float d0 = *d0p, d1 = *d1p, d2 = *d2p, d3 = *d3p, d4 = *d4p, d5 = *d5p, d6 = *d6p, d7 = *d7p; + float z1, z2, z3, z4, z5, z11, z13; + + float tmp0 = d0 + d7; + float tmp7 = d0 - d7; + float tmp1 = d1 + d6; + float tmp6 = d1 - d6; + float tmp2 = d2 + d5; + float tmp5 = d2 - d5; + float tmp3 = d3 + d4; + float tmp4 = d3 - d4; + + // Even part + float tmp10 = tmp0 + tmp3; // phase 2 + float tmp13 = tmp0 - tmp3; + float tmp11 = tmp1 + tmp2; + float tmp12 = tmp1 - tmp2; + + d0 = tmp10 + tmp11; // phase 3 + d4 = tmp10 - tmp11; + + z1 = (tmp12 + tmp13) * 0.707106781f; // c4 + d2 = tmp13 + z1; // phase 5 + d6 = tmp13 - z1; + + // Odd part + tmp10 = tmp4 + tmp5; // phase 2 + tmp11 = tmp5 + tmp6; + tmp12 = tmp6 + tmp7; + + // The rotator is modified from fig 4-8 to avoid extra negations. + z5 = (tmp10 - tmp12) * 0.382683433f; // c6 + z2 = tmp10 * 0.541196100f + z5; // c2-c6 + z4 = tmp12 * 1.306562965f + z5; // c2+c6 + z3 = tmp11 * 0.707106781f; // c4 + + z11 = tmp7 + z3; // phase 5 + z13 = tmp7 - z3; + + *d5p = z13 + z2; // phase 6 + *d3p = z13 - z2; + *d1p = z11 + z4; + *d7p = z11 - z4; + + *d0p = d0; *d2p = d2; *d4p = d4; *d6p = d6; +} + +static void stbiw__jpg_calcBits(int val, unsigned short bits[2]) { + int tmp1 = val < 0 ? -val : val; + val = val < 0 ? val-1 : val; + bits[1] = 1; + while(tmp1 >>= 1) { + ++bits[1]; + } + bits[0] = val & ((1<0)&&(DU[end0pos]==0); --end0pos) { + } + // end0pos = first element in reverse order !=0 + if(end0pos == 0) { + stbiw__jpg_writeBits(s, bitBuf, bitCnt, EOB); + return DU[0]; + } + for(i = 1; i <= end0pos; ++i) { + int startpos = i; + int nrzeroes; + unsigned short bits[2]; + for (; DU[i]==0 && i<=end0pos; ++i) { + } + nrzeroes = i-startpos; + if ( nrzeroes >= 16 ) { + int lng = nrzeroes>>4; + int nrmarker; + for (nrmarker=1; nrmarker <= lng; ++nrmarker) + stbiw__jpg_writeBits(s, bitBuf, bitCnt, M16zeroes); + nrzeroes &= 15; + } + stbiw__jpg_calcBits(DU[i], bits); + stbiw__jpg_writeBits(s, bitBuf, bitCnt, HTAC[(nrzeroes<<4)+bits[1]]); + stbiw__jpg_writeBits(s, bitBuf, bitCnt, bits); + } + if(end0pos != 63) { + stbiw__jpg_writeBits(s, bitBuf, bitCnt, EOB); + } + return DU[0]; +} + +static int stbi_write_jpg_core(stbi__write_context *s, int width, int height, int comp, const void* data, int quality) { + // Constants that don't pollute global namespace + static const unsigned char std_dc_luminance_nrcodes[] = {0,0,1,5,1,1,1,1,1,1,0,0,0,0,0,0,0}; + static const unsigned char std_dc_luminance_values[] = {0,1,2,3,4,5,6,7,8,9,10,11}; + static const unsigned char std_ac_luminance_nrcodes[] = {0,0,2,1,3,3,2,4,3,5,5,4,4,0,0,1,0x7d}; + static const unsigned char std_ac_luminance_values[] = { + 0x01,0x02,0x03,0x00,0x04,0x11,0x05,0x12,0x21,0x31,0x41,0x06,0x13,0x51,0x61,0x07,0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x08, + 0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,0x24,0x33,0x62,0x72,0x82,0x09,0x0a,0x16,0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28, + 0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59, + 0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89, + 0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6, + 0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2, + 0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa + }; + static const unsigned char std_dc_chrominance_nrcodes[] = {0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0}; + static const unsigned char std_dc_chrominance_values[] = {0,1,2,3,4,5,6,7,8,9,10,11}; + static const unsigned char std_ac_chrominance_nrcodes[] = {0,0,2,1,2,4,4,3,4,7,5,4,4,0,1,2,0x77}; + static const unsigned char std_ac_chrominance_values[] = { + 0x00,0x01,0x02,0x03,0x11,0x04,0x05,0x21,0x31,0x06,0x12,0x41,0x51,0x07,0x61,0x71,0x13,0x22,0x32,0x81,0x08,0x14,0x42,0x91, + 0xa1,0xb1,0xc1,0x09,0x23,0x33,0x52,0xf0,0x15,0x62,0x72,0xd1,0x0a,0x16,0x24,0x34,0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26, + 0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58, + 0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87, + 0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4, + 0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda, + 0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa + }; + // Huffman tables + static const unsigned short YDC_HT[256][2] = { {0,2},{2,3},{3,3},{4,3},{5,3},{6,3},{14,4},{30,5},{62,6},{126,7},{254,8},{510,9}}; + static const unsigned short UVDC_HT[256][2] = { {0,2},{1,2},{2,2},{6,3},{14,4},{30,5},{62,6},{126,7},{254,8},{510,9},{1022,10},{2046,11}}; + static const unsigned short YAC_HT[256][2] = { + {10,4},{0,2},{1,2},{4,3},{11,4},{26,5},{120,7},{248,8},{1014,10},{65410,16},{65411,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {12,4},{27,5},{121,7},{502,9},{2038,11},{65412,16},{65413,16},{65414,16},{65415,16},{65416,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {28,5},{249,8},{1015,10},{4084,12},{65417,16},{65418,16},{65419,16},{65420,16},{65421,16},{65422,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {58,6},{503,9},{4085,12},{65423,16},{65424,16},{65425,16},{65426,16},{65427,16},{65428,16},{65429,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {59,6},{1016,10},{65430,16},{65431,16},{65432,16},{65433,16},{65434,16},{65435,16},{65436,16},{65437,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {122,7},{2039,11},{65438,16},{65439,16},{65440,16},{65441,16},{65442,16},{65443,16},{65444,16},{65445,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {123,7},{4086,12},{65446,16},{65447,16},{65448,16},{65449,16},{65450,16},{65451,16},{65452,16},{65453,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {250,8},{4087,12},{65454,16},{65455,16},{65456,16},{65457,16},{65458,16},{65459,16},{65460,16},{65461,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {504,9},{32704,15},{65462,16},{65463,16},{65464,16},{65465,16},{65466,16},{65467,16},{65468,16},{65469,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {505,9},{65470,16},{65471,16},{65472,16},{65473,16},{65474,16},{65475,16},{65476,16},{65477,16},{65478,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {506,9},{65479,16},{65480,16},{65481,16},{65482,16},{65483,16},{65484,16},{65485,16},{65486,16},{65487,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {1017,10},{65488,16},{65489,16},{65490,16},{65491,16},{65492,16},{65493,16},{65494,16},{65495,16},{65496,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {1018,10},{65497,16},{65498,16},{65499,16},{65500,16},{65501,16},{65502,16},{65503,16},{65504,16},{65505,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {2040,11},{65506,16},{65507,16},{65508,16},{65509,16},{65510,16},{65511,16},{65512,16},{65513,16},{65514,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {65515,16},{65516,16},{65517,16},{65518,16},{65519,16},{65520,16},{65521,16},{65522,16},{65523,16},{65524,16},{0,0},{0,0},{0,0},{0,0},{0,0}, + {2041,11},{65525,16},{65526,16},{65527,16},{65528,16},{65529,16},{65530,16},{65531,16},{65532,16},{65533,16},{65534,16},{0,0},{0,0},{0,0},{0,0},{0,0} + }; + static const unsigned short UVAC_HT[256][2] = { + {0,2},{1,2},{4,3},{10,4},{24,5},{25,5},{56,6},{120,7},{500,9},{1014,10},{4084,12},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {11,4},{57,6},{246,8},{501,9},{2038,11},{4085,12},{65416,16},{65417,16},{65418,16},{65419,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {26,5},{247,8},{1015,10},{4086,12},{32706,15},{65420,16},{65421,16},{65422,16},{65423,16},{65424,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {27,5},{248,8},{1016,10},{4087,12},{65425,16},{65426,16},{65427,16},{65428,16},{65429,16},{65430,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {58,6},{502,9},{65431,16},{65432,16},{65433,16},{65434,16},{65435,16},{65436,16},{65437,16},{65438,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {59,6},{1017,10},{65439,16},{65440,16},{65441,16},{65442,16},{65443,16},{65444,16},{65445,16},{65446,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {121,7},{2039,11},{65447,16},{65448,16},{65449,16},{65450,16},{65451,16},{65452,16},{65453,16},{65454,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {122,7},{2040,11},{65455,16},{65456,16},{65457,16},{65458,16},{65459,16},{65460,16},{65461,16},{65462,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {249,8},{65463,16},{65464,16},{65465,16},{65466,16},{65467,16},{65468,16},{65469,16},{65470,16},{65471,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {503,9},{65472,16},{65473,16},{65474,16},{65475,16},{65476,16},{65477,16},{65478,16},{65479,16},{65480,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {504,9},{65481,16},{65482,16},{65483,16},{65484,16},{65485,16},{65486,16},{65487,16},{65488,16},{65489,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {505,9},{65490,16},{65491,16},{65492,16},{65493,16},{65494,16},{65495,16},{65496,16},{65497,16},{65498,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {506,9},{65499,16},{65500,16},{65501,16},{65502,16},{65503,16},{65504,16},{65505,16},{65506,16},{65507,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {2041,11},{65508,16},{65509,16},{65510,16},{65511,16},{65512,16},{65513,16},{65514,16},{65515,16},{65516,16},{0,0},{0,0},{0,0},{0,0},{0,0},{0,0}, + {16352,14},{65517,16},{65518,16},{65519,16},{65520,16},{65521,16},{65522,16},{65523,16},{65524,16},{65525,16},{0,0},{0,0},{0,0},{0,0},{0,0}, + {1018,10},{32707,15},{65526,16},{65527,16},{65528,16},{65529,16},{65530,16},{65531,16},{65532,16},{65533,16},{65534,16},{0,0},{0,0},{0,0},{0,0},{0,0} + }; + static const int YQT[] = {16,11,10,16,24,40,51,61,12,12,14,19,26,58,60,55,14,13,16,24,40,57,69,56,14,17,22,29,51,87,80,62,18,22, + 37,56,68,109,103,77,24,35,55,64,81,104,113,92,49,64,78,87,103,121,120,101,72,92,95,98,112,100,103,99}; + static const int UVQT[] = {17,18,24,47,99,99,99,99,18,21,26,66,99,99,99,99,24,26,56,99,99,99,99,99,47,66,99,99,99,99,99,99, + 99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99,99}; + static const float aasf[] = { 1.0f * 2.828427125f, 1.387039845f * 2.828427125f, 1.306562965f * 2.828427125f, 1.175875602f * 2.828427125f, + 1.0f * 2.828427125f, 0.785694958f * 2.828427125f, 0.541196100f * 2.828427125f, 0.275899379f * 2.828427125f }; + + int row, col, i, k, subsample; + float fdtbl_Y[64], fdtbl_UV[64]; + unsigned char YTable[64], UVTable[64]; + + if(!data || !width || !height || comp > 4 || comp < 1) { + return 0; + } + + quality = quality ? quality : 90; + subsample = quality <= 90 ? 1 : 0; + quality = quality < 1 ? 1 : quality > 100 ? 100 : quality; + quality = quality < 50 ? 5000 / quality : 200 - quality * 2; + + for(i = 0; i < 64; ++i) { + int uvti, yti = (YQT[i]*quality+50)/100; + YTable[stbiw__jpg_ZigZag[i]] = (unsigned char) (yti < 1 ? 1 : yti > 255 ? 255 : yti); + uvti = (UVQT[i]*quality+50)/100; + UVTable[stbiw__jpg_ZigZag[i]] = (unsigned char) (uvti < 1 ? 1 : uvti > 255 ? 255 : uvti); + } + + for(row = 0, k = 0; row < 8; ++row) { + for(col = 0; col < 8; ++col, ++k) { + fdtbl_Y[k] = 1 / (YTable [stbiw__jpg_ZigZag[k]] * aasf[row] * aasf[col]); + fdtbl_UV[k] = 1 / (UVTable[stbiw__jpg_ZigZag[k]] * aasf[row] * aasf[col]); + } + } + + // Write Headers + { + static const unsigned char head0[] = { 0xFF,0xD8,0xFF,0xE0,0,0x10,'J','F','I','F',0,1,1,0,0,1,0,1,0,0,0xFF,0xDB,0,0x84,0 }; + static const unsigned char head2[] = { 0xFF,0xDA,0,0xC,3,1,0,2,0x11,3,0x11,0,0x3F,0 }; + const unsigned char head1[] = { 0xFF,0xC0,0,0x11,8,(unsigned char)(height>>8),STBIW_UCHAR(height),(unsigned char)(width>>8),STBIW_UCHAR(width), + 3,1,(unsigned char)(subsample?0x22:0x11),0,2,0x11,1,3,0x11,1,0xFF,0xC4,0x01,0xA2,0 }; + s->func(s->context, (void*)head0, sizeof(head0)); + s->func(s->context, (void*)YTable, sizeof(YTable)); + stbiw__putc(s, 1); + s->func(s->context, UVTable, sizeof(UVTable)); + s->func(s->context, (void*)head1, sizeof(head1)); + s->func(s->context, (void*)(std_dc_luminance_nrcodes+1), sizeof(std_dc_luminance_nrcodes)-1); + s->func(s->context, (void*)std_dc_luminance_values, sizeof(std_dc_luminance_values)); + stbiw__putc(s, 0x10); // HTYACinfo + s->func(s->context, (void*)(std_ac_luminance_nrcodes+1), sizeof(std_ac_luminance_nrcodes)-1); + s->func(s->context, (void*)std_ac_luminance_values, sizeof(std_ac_luminance_values)); + stbiw__putc(s, 1); // HTUDCinfo + s->func(s->context, (void*)(std_dc_chrominance_nrcodes+1), sizeof(std_dc_chrominance_nrcodes)-1); + s->func(s->context, (void*)std_dc_chrominance_values, sizeof(std_dc_chrominance_values)); + stbiw__putc(s, 0x11); // HTUACinfo + s->func(s->context, (void*)(std_ac_chrominance_nrcodes+1), sizeof(std_ac_chrominance_nrcodes)-1); + s->func(s->context, (void*)std_ac_chrominance_values, sizeof(std_ac_chrominance_values)); + s->func(s->context, (void*)head2, sizeof(head2)); + } + + // Encode 8x8 macroblocks + { + static const unsigned short fillBits[] = {0x7F, 7}; + int DCY=0, DCU=0, DCV=0; + int bitBuf=0, bitCnt=0; + // comp == 2 is grey+alpha (alpha is ignored) + int ofsG = comp > 2 ? 1 : 0, ofsB = comp > 2 ? 2 : 0; + const unsigned char *dataR = (const unsigned char *)data; + const unsigned char *dataG = dataR + ofsG; + const unsigned char *dataB = dataR + ofsB; + int x, y, pos; + if(subsample) { + for(y = 0; y < height; y += 16) { + for(x = 0; x < width; x += 16) { + float Y[256], U[256], V[256]; + for(row = y, pos = 0; row < y+16; ++row) { + // row >= height => use last input row + int clamped_row = (row < height) ? row : height - 1; + int base_p = (stbi__flip_vertically_on_write ? (height-1-clamped_row) : clamped_row)*width*comp; + for(col = x; col < x+16; ++col, ++pos) { + // if col >= width => use pixel from last input column + int p = base_p + ((col < width) ? col : (width-1))*comp; + float r = dataR[p], g = dataG[p], b = dataB[p]; + Y[pos]= +0.29900f*r + 0.58700f*g + 0.11400f*b - 128; + U[pos]= -0.16874f*r - 0.33126f*g + 0.50000f*b; + V[pos]= +0.50000f*r - 0.41869f*g - 0.08131f*b; + } + } + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+0, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+8, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+128, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y+136, 16, fdtbl_Y, DCY, YDC_HT, YAC_HT); + + // subsample U,V + { + float subU[64], subV[64]; + int yy, xx; + for(yy = 0, pos = 0; yy < 8; ++yy) { + for(xx = 0; xx < 8; ++xx, ++pos) { + int j = yy*32+xx*2; + subU[pos] = (U[j+0] + U[j+1] + U[j+16] + U[j+17]) * 0.25f; + subV[pos] = (V[j+0] + V[j+1] + V[j+16] + V[j+17]) * 0.25f; + } + } + DCU = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, subU, 8, fdtbl_UV, DCU, UVDC_HT, UVAC_HT); + DCV = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, subV, 8, fdtbl_UV, DCV, UVDC_HT, UVAC_HT); + } + } + } + } else { + for(y = 0; y < height; y += 8) { + for(x = 0; x < width; x += 8) { + float Y[64], U[64], V[64]; + for(row = y, pos = 0; row < y+8; ++row) { + // row >= height => use last input row + int clamped_row = (row < height) ? row : height - 1; + int base_p = (stbi__flip_vertically_on_write ? (height-1-clamped_row) : clamped_row)*width*comp; + for(col = x; col < x+8; ++col, ++pos) { + // if col >= width => use pixel from last input column + int p = base_p + ((col < width) ? col : (width-1))*comp; + float r = dataR[p], g = dataG[p], b = dataB[p]; + Y[pos]= +0.29900f*r + 0.58700f*g + 0.11400f*b - 128; + U[pos]= -0.16874f*r - 0.33126f*g + 0.50000f*b; + V[pos]= +0.50000f*r - 0.41869f*g - 0.08131f*b; + } + } + + DCY = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, Y, 8, fdtbl_Y, DCY, YDC_HT, YAC_HT); + DCU = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, U, 8, fdtbl_UV, DCU, UVDC_HT, UVAC_HT); + DCV = stbiw__jpg_processDU(s, &bitBuf, &bitCnt, V, 8, fdtbl_UV, DCV, UVDC_HT, UVAC_HT); + } + } + } + + // Do the bit alignment of the EOI marker + stbiw__jpg_writeBits(s, &bitBuf, &bitCnt, fillBits); + } + + // EOI + stbiw__putc(s, 0xFF); + stbiw__putc(s, 0xD9); + + return 1; +} + +STBIWDEF int stbi_write_jpg_to_func(stbi_write_func *func, void *context, int x, int y, int comp, const void *data, int quality) +{ + //stbi__write_context s = { 0 }; + stbi__write_context s = STBI_WRITE_CONTEXT_INIT(NULL, NULL); + stbi__start_write_callbacks(&s, func, context); + return stbi_write_jpg_core(&s, x, y, comp, (void *) data, quality); +} + + +#ifndef STBI_WRITE_NO_STDIO +STBIWDEF int stbi_write_jpg(char const *filename, int x, int y, int comp, const void *data, int quality) +{ +// stbi__write_context s = { 0 }; + stbi__write_context s = STBI_WRITE_CONTEXT_INIT(NULL, NULL); + + if (stbi__start_write_file(&s,filename)) { + int r = stbi_write_jpg_core(&s, x, y, comp, data, quality); + stbi__end_write_file(&s); + return r; + } else + return 0; +} +#endif + +#endif // STB_IMAGE_WRITE_IMPLEMENTATION + +/* Revision history + 1.16 (2021-07-11) + make Deflate code emit uncompressed blocks when it would otherwise expand + support writing BMPs with alpha channel + 1.15 (2020-07-13) unknown + 1.14 (2020-02-02) updated JPEG writer to downsample chroma channels + 1.13 + 1.12 + 1.11 (2019-08-11) + + 1.10 (2019-02-07) + support utf8 filenames in Windows; fix warnings and platform ifdefs + 1.09 (2018-02-11) + fix typo in zlib quality API, improve STB_I_W_STATIC in C++ + 1.08 (2018-01-29) + add stbi__flip_vertically_on_write, external zlib, zlib quality, choose PNG filter + 1.07 (2017-07-24) + doc fix + 1.06 (2017-07-23) + writing JPEG (using Jon Olick's code) + 1.05 ??? + 1.04 (2017-03-03) + monochrome BMP expansion + 1.03 ??? + 1.02 (2016-04-02) + avoid allocating large structures on the stack + 1.01 (2016-01-16) + STBIW_REALLOC_SIZED: support allocators with no realloc support + avoid race-condition in crc initialization + minor compile issues + 1.00 (2015-09-14) + installable file IO function + 0.99 (2015-09-13) + warning fixes; TGA rle support + 0.98 (2015-04-08) + added STBIW_MALLOC, STBIW_ASSERT etc + 0.97 (2015-01-18) + fixed HDR asserts, rewrote HDR rle logic + 0.96 (2015-01-17) + add HDR output + fix monochrome BMP + 0.95 (2014-08-17) + add monochrome TGA output + 0.94 (2014-05-31) + rename private functions to avoid conflicts with stb_image.h + 0.93 (2014-05-27) + warning fixes + 0.92 (2010-08-01) + casts to unsigned char to fix warnings + 0.91 (2010-07-17) + first public release + 0.90 first internal 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/lib/lv_gltf/data/lv_gltf_data.h b/lib/lv_gltf/data/lv_gltf_data.h new file mode 100644 index 0000000..7b56a91 --- /dev/null +++ b/lib/lv_gltf/data/lv_gltf_data.h @@ -0,0 +1,203 @@ +#ifndef LV_GLTFDATA_H +#define LV_GLTFDATA_H + +#include +#include +#include "../../lv_opengl_shader_cache/lv_opengl_shader_cache.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef struct lv_gltf_data_struct lv_gltf_data_t; + +/** + * @brief Create a summary of the mesh data. + * + * @param data Pointer to the GLTF data. + * @param dest_buffer Buffer to store the summary. + * @param dest_buffer_size Size of the destination buffer. + */ +void lv_gltf_data_make_mesh_summary(lv_gltf_data_t * data, char * dest_buffer, + uint32_t dest_buffer_size); + +/** + * @brief Create a summary of the material data. + * + * @param data Pointer to the GLTF data. + * @param dest_buffer Buffer to store the summary. + * @param dest_buffer_size Size of the destination buffer. + */ +void lv_gltf_data_make_material_summary(lv_gltf_data_t * data, char * dest_buffer, + uint32_t dest_buffer_size); + +/** + * @brief Create a summary of the scenes in the GLTF data. + * + * @param data Pointer to the GLTF data. + * @param dest_buffer Buffer to store the summary. + * @param dest_buffer_size Size of the destination buffer. + */ +void lv_gltf_data_make_scenes_summary(lv_gltf_data_t * data, char * dest_buffer, + uint32_t dest_buffer_size); + +/** + * @brief Create a summary of the images in the GLTF data. + * + * @param data Pointer to the GLTF data. + * @param dest_buffer Buffer to store the summary. + * @param dest_buffer_size Size of the destination buffer. + */ +void lv_gltf_data_make_images_summary(lv_gltf_data_t * data, char * dest_buffer, + uint32_t dest_buffer_size); + +/** + * @brief Create a summary of the animations in the GLTF data. + * + * @param data Pointer to the GLTF data. + * @param dest_buffer Buffer to store the summary. + * @param dest_buffer_size Size of the destination buffer. + */ +void lv_gltf_data_make_animations_summary(lv_gltf_data_t * data, + char * dest_buffer, + uint32_t dest_buffer_size); + +/** + * @brief Load the gltf file encoded within the supplied byte array + * + * @param gltf_path The gltf filename + * @param gltf_data_size if gltf_path is instead a byte array, pass the size of that array in through this variable (or 0 if it's a file path). + * @param ret_data Pointer to the data container that will be populated. + * @param shaders Pointer to the shader cache object this file uses. + */ +void lv_gltf_data_load_bytes(const void * gltf_bytes, size_t gltf_data_size, + lv_gltf_data_t * ret_data, + lv_opengl_shader_cache_t * shaders); + +/** + * @brief Load the gltf file at the specified filepath + * + * @param gltf_path The gltf filename + * @param ret_data Pointer to the data container that will be populated. + * @param shaders Pointer to the shader cache object this file uses. + */ +void lv_gltf_data_load_file(const char * gltf_path, lv_gltf_data_t * ret_data, + lv_opengl_shader_cache_t * shaders); + +/** + * @brief Set the callback function that is called when loading increments. + * + * @param load_progress_callback The callback function with these parameters (const char*, const char* , float, float, float, float) and no return value. + */ +bool lv_gltf_view_set_loadphase_callback(void (*load_progress_callback)( + const char *, const char *, float, float, float, float)); + +/** + * @brief Retrieve the radius of the GLTF data object. + * + * @param D Pointer to the lv_gltf_data_t object from which to get the radius. + * @return The radius of the GLTF data object. + */ +double lv_gltf_data_get_radius(lv_gltf_data_t * D); + +/** + * @brief Retrieve the center coordinates of the GLTF data object. + * + * @param D Pointer to the lv_gltf_data_t object from which to get the center. + * @return Pointer to an array containing the center coordinates (x, y, z). + */ +float * lv_gltf_data_get_center(lv_gltf_data_t * D); + +/** + * @brief Destroy a GLTF data object and free associated resources. + * + * @param _data Pointer to the lv_gltf_data_t object to be destroyed. + */ +void lv_gltf_data_destroy(lv_gltf_data_t * _data); + +/** + * @brief Retrieve the radius of the GLTF data object multiplied by 1000 as an integer. + * + * @param _data Pointer to the lv_gltf_data_t object from which to get the radius. + * @return The radius of the GLTF data object multiplied by 1000 as an int64_t. + */ +int64_t lv_gltf_data_get_int_radiusX1000(lv_gltf_data_t * _data); + +/** + * @brief Copy the bounds information from one GLTF data object to another. + * + * @param to Pointer to the destination lv_gltf_data_t object. + * @param from Pointer to the source lv_gltf_data_t object. + */ +void lv_gltf_data_copy_bounds_info(lv_gltf_data_t * to, lv_gltf_data_t * from); + +/** + * @brief Retrieve the size of the GLTF data structure. + * + * @return The size of the GLTF data structure in bytes. + */ +unsigned int lv_gltf_data_get_struct_size(void); + +/** + * @brief Retrieve information about a specific texture in a GLTF model. + * + * @param data_obj Pointer to the lv_gltf_data_t object containing the model data. + * @param model_texture_index The index of the texture in the model. + * @param mipmapnum The mipmap level to retrieve information for. + * @param byte_count Pointer to a size_t variable to store the byte count of the texture. + * @param width Pointer to a uint32_t variable to store the width of the texture. + * @param height Pointer to a uint32_t variable to store the height of the texture. + * @param has_alpha Pointer to a bool variable to indicate if the texture has an alpha channel. + * @return True if the texture information was successfully retrieved, false otherwise. + */ +bool lv_gltf_data_utils_get_texture_info(lv_gltf_data_t * data_obj, + uint32_t model_texture_index, + uint32_t mipmapnum, size_t * byte_count, + uint32_t * width, uint32_t * height, + bool * has_alpha); + +/** + * @brief Retrieve the pixel data for a specific texture in a GLTF model. + * + * @param pixels Pointer to the memory where the pixel data will be stored. + * @param data_obj Pointer to the lv_gltf_data_t object containing the model data. + * @param model_texture_index The index of the texture in the model. + * @param mipmapnum The mipmap level to retrieve pixel data for. + * @param width The width of the texture. + * @param height The height of the texture. + * @param has_alpha Flag indicating whether the texture includes an alpha channel. + * @return True if the pixel data was successfully retrieved, false otherwise. + */ +bool lv_gltf_data_utils_get_texture_pixels(void * pixels, + lv_gltf_data_t * data_obj, + uint32_t model_texture_index, + uint32_t mipmapnum, uint32_t width, + uint32_t height, bool has_alpha); + +/** + * @brief Swap the red and blue channels in a pixel buffer. + * + * @param pixel_buffer Pointer to the pixel buffer containing the image data. + * @param byte_total_count The total number of bytes in the pixel buffer. + * @param has_alpha Flag indicating whether the pixel buffer includes an alpha channel. + */ +void lv_gltf_data_utils_swap_pixels_red_blue(void * pixel_buffer, + size_t byte_total_count, + bool has_alpha); + +/** + * @brief Convert a texture from a GLTF model to an image descriptor. + * + * @param new_image_dsc Pointer to the lv_image_dsc_t structure to be populated with the image data. + * @param data_obj Pointer to the lv_gltf_data_t object containing the model data. + * @param model_texture_index The index of the texture in the model to convert. + */ +void lv_gltf_data_utils_texture_to_image_dsc(lv_image_dsc_t * new_image_dsc, + lv_gltf_data_t * data_obj, + uint32_t model_texture_index); + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*LV_GLTFVIEW_H*/ diff --git a/lib/lv_gltf/data/lv_gltf_data_internal.h b/lib/lv_gltf/data/lv_gltf_data_internal.h new file mode 100644 index 0000000..40b1f6e --- /dev/null +++ b/lib/lv_gltf/data/lv_gltf_data_internal.h @@ -0,0 +1,200 @@ +#ifndef LV_GLTFDATA_PRIVATE_H +#define LV_GLTFDATA_PRIVATE_H + +#include + +typedef struct lv_gltf_override_struct lv_gltf_override_t; +typedef uint32_t _GLENUM; +typedef uint32_t _GLUINT; +typedef int32_t _GLINT; + +typedef struct { + uint32_t imageCount; + uint32_t textureCount; + uint32_t materialCount; + uint32_t cameraCount; + uint32_t nodeCount; + uint32_t meshCount; + uint32_t sceneCount; + uint32_t animationCount; +} gltf_probe_info; + +typedef struct { + _GLUINT count; + _GLUINT instanceCount; + _GLUINT firstIndex; + _GLINT baseVertex; + _GLUINT baseInstance; +} IndirectDrawCommand; + +typedef struct { + IndirectDrawCommand draw; + _GLENUM primitiveType; + _GLENUM indexType; + _GLUINT vertexArray; + + _GLUINT vertexBuffer; + _GLUINT indexBuffer; + + _GLUINT materialUniformsIndex; + _GLUINT albedoTexture; + _GLUINT emissiveTexture; + _GLUINT metalRoughTexture; + _GLUINT occlusionTexture; + _GLUINT normalTexture; + _GLUINT diffuseTransmissionTexture; + _GLUINT diffuseTransmissionColorTexture; + _GLUINT transmissionTexture; + _GLUINT transmissionTexcoordIndex; + + _GLINT baseColorTexcoordIndex; + _GLINT emissiveTexcoordIndex; + + _GLINT metallicRoughnessTexcoordIndex; + _GLINT occlusionTexcoordIndex; + _GLINT normalTexcoordIndex; + _GLINT diffuseTransmissionTexcoordIndex; + _GLINT diffuseTransmissionColorTexcoordIndex; + + _GLINT clearcoatTexture; + _GLINT clearcoatRoughnessTexture; + _GLINT clearcoatNormalTexture; + _GLINT clearcoatTexcoordIndex; + _GLINT clearcoatRoughnessTexcoordIndex; + _GLINT clearcoatNormalTexcoordIndex; + + _GLUINT thicknessTexture; + _GLINT thicknessTexcoordIndex; + + _GLUINT diffuseTexture; + _GLINT diffuseTexcoordIndex; + + _GLUINT specularGlossinessTexture; + _GLINT specularGlossinessTexcoordIndex; + +} Primitive; + +typedef struct { + _GLUINT texture; +} Texture; + +typedef struct { + _GLINT camera; + _GLINT viewProjectionMatrixUniform; + _GLINT modelMatrixUniform; + _GLINT viewMatrixUniform; + _GLINT projectionMatrixUniform; + + _GLINT envIntensity; + _GLINT envDiffuseSampler; + _GLINT envSpecularSampler; + _GLINT envSheenSampler; + _GLINT envGgxLutSampler; + _GLINT envCharlieLutSampler; + _GLINT envMipCount; + + _GLINT exposure; + _GLINT roughnessFactor; + + _GLINT baseColorFactor; + _GLINT baseColorSampler; + _GLINT baseColorUVSet; + _GLINT baseColorUVTransform; + + _GLINT emissiveFactor; + _GLINT emissiveSampler; + _GLINT emissiveUVSet; + _GLINT emissiveUVTransform; + _GLINT emissiveStrength; + + _GLINT metallicFactor; + _GLINT metallicRoughnessSampler; + _GLINT metallicRoughnessUVSet; + _GLINT metallicRoughnessUVTransform; + + _GLINT occlusionStrength; + _GLINT occlusionSampler; + _GLINT occlusionUVSet; + _GLINT occlusionUVTransform; + + _GLINT normalScale; + _GLINT normalSampler; + _GLINT normalUVSet; + _GLINT normalUVTransform; + + _GLINT clearcoatFactor; + _GLINT clearcoatRoughnessFactor; + _GLINT clearcoatSampler; + _GLINT clearcoatUVSet; + _GLINT clearcoatUVTransform; + _GLINT clearcoatRoughnessSampler; + _GLINT clearcoatRoughnessUVSet; + _GLINT clearcoatRoughnessUVTransform; + _GLINT clearcoatNormalScale; + _GLINT clearcoatNormalSampler; + _GLINT clearcoatNormalUVSet; + _GLINT clearcoatNormalUVTransform; + + _GLINT thickness; + _GLINT thicknessSampler; + _GLINT thicknessUVSet; + _GLINT thicknessUVTransform; + + _GLINT diffuseTransmissionSampler; + _GLINT diffuseTransmissionUVSet; + _GLINT diffuseTransmissionUVTransform; + + _GLINT diffuseTransmissionColorSampler; + _GLINT diffuseTransmissionColorUVSet; + _GLINT diffuseTransmissionColorUVTransform; + + _GLINT sheenColorFactor; + _GLINT sheenRoughnessFactor; + + _GLINT specularColorFactor; + _GLINT specularFactor; + + _GLINT diffuseTransmissionColorFactor; + _GLINT diffuseTransmissionFactor; + + _GLINT ior; + _GLINT alphaCutoff; + + _GLINT dispersion; + _GLINT screenSize; + _GLINT transmissionFactor; + //_GLINT transmissionScale; + _GLINT transmissionSampler; + _GLINT transmissionUVSet; + _GLINT transmissionUVTransform; + _GLINT transmissionFramebufferSampler; + _GLINT transmissionFramebufferSize; + + _GLINT attenuationDistance; + _GLINT attenuationColor; + + _GLINT jointsSampler; + + _GLINT diffuseFactor; + //_GLINT specularFactor; + _GLINT glossinessFactor; + + _GLINT diffuseSampler; + _GLINT diffuseUVSet; + _GLINT diffuseUVTransform; + _GLINT specularGlossinessSampler; + _GLINT specularGlossinessUVSet; + _GLINT specularGlossinessUVTransform; + +} UniformLocs; + +typedef struct { + bool ready; + uint32_t program; + uint32_t bg_program; + uint32_t vert; + uint32_t frag; +} gl_renwin_shaderset_t; + +#endif /* LV_GLTFDATA_PRIVATE_H */ + diff --git a/lib/lv_gltf/data/lv_gltf_data_internal.hpp b/lib/lv_gltf/data/lv_gltf_data_internal.hpp new file mode 100644 index 0000000..5e10096 --- /dev/null +++ b/lib/lv_gltf/data/lv_gltf_data_internal.hpp @@ -0,0 +1,600 @@ +#ifndef LV_GLTFDATA_HPP +#define LV_GLTFDATA_HPP + +#include "lv_gltf_data.h" +#include "lv_gltf_data_internal.h" +#include "lv_gltf_override.h" + + +#include + + +#ifdef __cplusplus + +#include +#include +#include +#include + +#define FVEC2 fastgltf::math::fvec2 +#define FVEC3 fastgltf::math::fvec3 +#define FVEC4 fastgltf::math::fvec4 +#define FMAT3 fastgltf::math::fmat3x3 +#define FMAT4 fastgltf::math::fmat4x4 +#define ASSET fastgltf::Asset + +struct MeshData { + GLuint drawsBuffer; + std::vector primitives; +}; + +using UintVector = std::vector; // Vector of int32_t's +using IntVector = std::vector; // Vector of int32_t's +using LongVector = std::vector; // Vector of int64_t's +using NodePtr = fastgltf::Node *; // Pointer to fastgltf::Node +using Transform = fastgltf::math::fmat4x4; // A standard 4x4 transform matrix +using NodeIndexPair = + std::pair; // Pair of Node pointer and int32_t +using NodeIndexDistancePair = + std::pair; // Pair of float and Node/Index pair +using NodePairVector = std::vector; // Vector of NodeIndexPair +using NodeDistanceVector = + std::vector; // Vector of NodeIndexDistancePair +using MaterialIndexMap = + std::map; // Map of uint32_t to NodePairVector +using NodeTransformMap = + std::map; // Map of Node Pointers to Transforms +using MapofTransformMap = std::map< + int32_t, + NodeTransformMap>; // Map of 4x4 Transform Maps by int32_t index (skin) +using StringNodeMap = + std::map; // Map of Nodes by string (name) +using NodeIntMap = std::map; // Map of Nodes by string (name) +using NodeVector = std::vector; // Map of Nodes by string (name) +using NodePrimCenterMap = std::map< + uint32_t, + std::map >; // Map of Node Index to Map of Prim Index to CenterXYZ+RadiusW Vec4 +using NodeOverrideMap = + std::map; // Map of Overrides by Node +using OverrideVector = + std::vector; // Map of Overrides by Node + +typedef lv_gltf_data_t *_DATA; +typedef FVEC3 _VEC3; +typedef FVEC4 _VEC4; +typedef FMAT4 _MAT4; +typedef uint64_t _UINT; + +typedef MeshData _MESH; +typedef NodePtr _NODE; + +namespace fastgltf +{ +FASTGLTF_EXPORT template +#if FASTGLTF_HAS_CONCEPTS +requires std::same_as, Asset> && + std::is_invocable_v +#endif + void + findlight_iterateSceneNodes(AssetType &&asset, std::size_t sceneIndex, + math::fmat4x4 *initial, Callback callback) +{ + auto &scene = asset.scenes[sceneIndex]; + auto function = [&](std::size_t nodeIndex, + math::fmat4x4 &parentWorldMatrix, + auto &self) -> void { + assert(asset.nodes.size() > nodeIndex); + auto &node = asset.nodes[nodeIndex]; + auto _localMat = getTransformMatrix(node, math::fmat4x4()); + std::invoke(callback, node, parentWorldMatrix, _localMat); + for (auto &child : node.children) { + math::fmat4x4 _parentWorldTemp = + parentWorldMatrix * _localMat; + self(child, _parentWorldTemp, self); + } + }; + for (auto &sceneNode : scene.nodeIndices) { + auto tmat2 = FMAT4(*initial); + function(sceneNode, tmat2, function); + } +} +} +struct MeshData; + +struct lv_gltf_data_struct { + ASSET *asset; + bool load_success; + gltf_probe_info probe; + StringNodeMap *node_by_path; + StringNodeMap *node_by_ip; + NodeIntMap *index_by_node; + NodeVector *node_by_index; + NodeVector *node_by_light_index; + NodeTransformMap *node_transform_cache; + MaterialIndexMap *opaque_nodes_by_materialIndex; + MaterialIndexMap *blended_nodes_by_materialIndex; + NodeDistanceVector *distance_sort_nodes; + MapofTransformMap *ibmBySkinThenNode; + NodeOverrideMap *overrides; + OverrideVector *all_overrides; + LongVector *validated_skins; + IntVector *skin_tex; + NodePrimCenterMap *local_mesh_to_center_points_by_primitive; + + //std::vector<_GLUINT> bufferAllocations; + std::vector *meshes; + std::vector *textures; + std::vector *cameras; + std::vector<_GLUINT> *materialBuffers; + std::vector *shaderUniforms; + std::vector *shaderSets; + + size_t all_override_count; + + float vertex_max[3]; + float vertex_min[3]; + float vertex_cen[3]; + float bound_radius; + uint32_t vertex_count; + uint32_t index_count; + uint32_t __prim_type; + uint32_t ebo; + uint32_t vbo1; + uint32_t vbo2; + bool has_positions; + bool has_normals; + bool has_colors; + bool has_uv1; + bool has_uv2; + bool has_joints1; + bool has_joints2; + bool has_weights1; + bool has_weights2; + bool has_morphing; + bool has_skins; + int32_t color_bytes; + const char *filename; + + // --- + + //gl_viewer_desc_t _lastViewDesc; + bool has_any_cameras; + int32_t current_camera_index; + int32_t last_camera_index; + fastgltf::Node *selected_camera_node; + FMAT4 viewMat; + FVEC3 viewPos; + + int32_t last_anim_num; + float cur_anim_maxtime; + float local_timestamp; + + uint64_t _lastMaterialIndex; + bool _lastPassWasTransmission; + + bool _lastFrameWasAntialiased; + bool _lastFrameNoMotion; + bool __lastFrameNoMotion; + bool nodes_parsed; + + bool view_is_linked = false; + lv_gltf_data_t *linked_view_source; +}; + +typedef lv_gltf_data_t *_DATA; +typedef uint64_t _UINT; +typedef NodePtr _NODE; +typedef FMAT4 _MAT4; +/** + * @brief Retrieve the texture data set from the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Pointer to the texture data set. + */ +void *get_texdata_set(lv_gltf_data_t *D); + +/** + * @brief Retrieve a specific texture from the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the texture to retrieve. + * @return Pointer to the Texture object. + */ +Texture *get_texdata(lv_gltf_data_t *D, uint64_t I); + +/** + * @brief Retrieve the OpenGL ID of a specific texture from the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the texture whose OpenGL ID is to be retrieved. + * @return The OpenGL ID of the texture. + */ +uint64_t get_texdata_glid(lv_gltf_data_t *D, uint64_t I); + +/** + * @brief Retrieve the uniform location IDs for all textures from the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I Draw order index. + * @return Pointer to the UniformLocs structure containing the uniform location IDs. + */ +UniformLocs *get_uniform_ids(lv_gltf_data_t *D, uint64_t I); + +/** + * @brief Retrieve the shader program associated with a specific index from the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the shader program to retrieve. + * @return The shader program ID. + */ +uint64_t get_shader_program(lv_gltf_data_t *D, uint64_t I); + +/** + * @brief Retrieve the shader set associated with a specific index from the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the shader set to retrieve. + * @return Pointer to the gl_renwin_shaderset_t structure containing the shader set. + */ +gl_renwin_shaderset_t *get_shader_set(lv_gltf_data_t *D, uint64_t I); + +/** + * @brief Retrieve the minimum bounds (X/Y/Z) of the model from the GLTF data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Pointer to a 3-element float array representing the minimum bounds. + */ +float *get_bounds_min(lv_gltf_data_t *D); + +/** + * @brief Retrieve the maximum bounds (X/Y/Z) of the model from the GLTF data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Pointer to a 3-element float array representing the maximum bounds. + */ +float *get_bounds_max(lv_gltf_data_t *D); + +/** + * @brief Retrieve the center point of the model from the GLTF data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Pointer to a float array representing the center point (X/Y/Z). + */ +float *setup_get_center(lv_gltf_data_t *D); + +/** + * @brief Retrieve the radius of the model from the GLTF data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return The radius of the model. + */ +double get_radius(lv_gltf_data_t *D); + +/** + * @brief Retrieve the filename of the GLTF model. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Pointer to a constant character string representing the filename. + */ +const char *lv_gltf_get_filename(lv_gltf_data_t *D); + + +/** + * @brief Check if the centerpoint cache contains a specific entry. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the entry to check. + * @param P The specific parameter to check within the cache. + * @return True if the cache contains the entry, false otherwise. + */ +bool centerpoint_cache_contains(lv_gltf_data_t *D, uint64_t I, int32_t P); + +/** + * @brief Retrieve a specific primitive from a mesh. + * + * @param M Pointer to the MeshData structure containing the mesh data. + * @param I The index of the primitive to retrieve. + * @return Pointer to the primitive data. + */ +void *get_prim_from_mesh(MeshData *M, uint64_t I); + +/** + * @brief Retrieve the asset associated with the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Pointer to the asset data. + */ +void *get_asset(lv_gltf_data_t *D); + +#define GET_ASSET(d) ((ASSET *)get_asset(d)) +#define PROBE(d) ((gltf_probe_info *)lv_gltf_view_get_probe(d)) +#define TEXDSET(x) ((std::vector *)get_texdata_set(x)) +#define TEXD(x, y) ((Texture *)get_texdata(x, y)) +#define TEXDGLID(x, y) ((_UINT)get_texdata_glid(x, y)) +#define MATRIXSET(v) ((_MatrixSet *)get_matrix_set(v)) +#define SKINTEXS(d) ((IntVector *)get_skintex_set(d)) +#define GET_PRIM_FROM_MESH(m, i) ((Primitive *)get_prim_from_mesh(m, i)) + +/** + * @brief Set the probe information for the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param _probe The gltf_probe_info structure containing the probe information to set. + */ +void set_probe(lv_gltf_data_t *D, gltf_probe_info _probe); + +/** + * @brief Allocate an index for a specific entry in the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index to allocate. + */ +void allocate_index(lv_gltf_data_t *D, uint64_t I); + +/** + * @brief Recache the centerpoint for a specific entry in the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the entry to recache. + * @param P The specific parameter to recache. + */ +void recache_centerpoint(lv_gltf_data_t *D, uint64_t I, int32_t P); + +/** + * @brief Retrieve mesh data for a specific index from the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the mesh data to retrieve. + * @return Pointer to the MeshData structure containing the mesh data. + */ +MeshData *get_meshdata_num(lv_gltf_data_t *D, uint64_t I); + +/** + * @brief Retrieve the skin texture index for a specific entry in the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the entry for which to retrieve the skin texture index. + * @return The skin texture index. + */ +int32_t get_skintex_at(lv_gltf_data_t *D, uint64_t I); + +/** + * @brief Retrieve the set of skin textures associated with the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Pointer to the skin texture set. + */ +void *get_skintex_set(lv_gltf_data_t *D); + +/** + * @brief Check if the validated skins contain a specific entry. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the skin to check. + * @return True if the validated skins contain the entry, false otherwise. + */ +bool validated_skins_contains(lv_gltf_data_t *D, int64_t I); + +/** + * @brief Validate a specific skin in the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the skin to validate. + */ +void validate_skin(lv_gltf_data_t *D, int64_t I); + +/** + * @brief Add an opaque node primitive to the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the primitive to add. + * @param N Pointer to the NodePtr representing the node to add. + * @param P The specific parameter associated with the primitive. + */ +void add_opaque_node_prim(lv_gltf_data_t *D, uint64_t I, NodePtr N, int32_t P); + +/** + * @brief Retrieve an iterator to the beginning of the opaque material index map. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Iterator to the beginning of the MaterialIndexMap. + */ +MaterialIndexMap::iterator get_opaque_begin(lv_gltf_data_t *D); + +/** + * @brief Retrieve an iterator to the end of the opaque material index map. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Iterator to the end of the MaterialIndexMap. + */ +MaterialIndexMap::iterator get_opaque_end(lv_gltf_data_t *D); + +/** + * @brief Add a blended node primitive to the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the primitive to add. + * @param N Pointer to the NodePtr representing the node to add. + * @param P The specific parameter associated with the primitive. + */ +void add_blended_node_prim(lv_gltf_data_t *D, uint64_t I, NodePtr N, int32_t P); + +/** + * @brief Retrieve an iterator to the beginning of the blended material index map. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Iterator to the beginning of the MaterialIndexMap. + */ +MaterialIndexMap::iterator get_blended_begin(lv_gltf_data_t *D); + +/** + * @brief Retrieve an iterator to the end of the blended material index map. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Iterator to the end of the MaterialIndexMap. + */ +MaterialIndexMap::iterator get_blended_end(lv_gltf_data_t *D); + +/** + * @brief Clear the distance sorting data for the GLTF model. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + */ +void clear_distance_sort(lv_gltf_data_t *D); + +/** + * @brief Add a primitive to the distance sorting data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param P The NodeIndexDistancePair representing the primitive to add. + */ +void add_distance_sort_prim(lv_gltf_data_t *D, NodeIndexDistancePair P); + +/** + * @brief Retrieve an iterator to the beginning of the distance sorted node vector. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Iterator to the beginning of the NodeDistanceVector. + */ +NodeDistanceVector::iterator get_distance_sort_begin(lv_gltf_data_t *D); + +/** + * @brief Retrieve an iterator to the end of the distance sorted node vector. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return Iterator to the end of the NodeDistanceVector. + */ +NodeDistanceVector::iterator get_distance_sort_end(lv_gltf_data_t *D); + +/** + * @brief Set the cached transformation matrix for a specific node in the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param N Pointer to the NodePtr representing the node for which to set the transformation. + * @param M The transformation matrix to cache. + */ +void set_cached_transform(lv_gltf_data_t *D, NodePtr N, FMAT4 M); + +/** + * @brief Clear the transformation cache for the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + */ +void clear_transform_cache(lv_gltf_data_t *D); + +/** + * @brief Retrieve the cached transformation matrix for a specific node in the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param N Pointer to the NodePtr representing the node for which to retrieve the transformation. + * @return The cached transformation matrix. + */ +FMAT4 get_cached_transform(lv_gltf_data_t *D, NodePtr N); + +/** + * @brief Check if a cached transformation matrix exists for a given node. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param N Pointer to the NodePtr representing the node for which to retrieve the transformation. + * @return true if a cache item exists, false otherwise + */ +bool has_cached_transform(lv_gltf_data_t *D, NodePtr N); + +/** + * @brief Check if the transformation cache is empty. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return True if the transformation cache is empty, false otherwise. + */ +bool transform_cache_is_empty(lv_gltf_data_t *D); + +/** + * @brief Retrieve the size of the skins in the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @return The size of the skins. + */ +uint64_t get_skins_size(lv_gltf_data_t *D); + +/** + * @brief Retrieve a specific skin from the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param I The index of the skin to retrieve. + * @return The skin index. + */ +int32_t get_skin(lv_gltf_data_t *D, uint64_t I); + +/** + * @brief Ingest and discover defines for a specific node and primitive in the GLTF model data. + * + * @param data_obj Pointer to the lv_gltf_data_t object containing the model data. + * @param node Pointer to the node for which to ingest defines. + * @param prim Pointer to the primitive for which to ingest defines. + */ +void injest_discover_defines(lv_gltf_data_t *data_obj, void *node, void *prim); + +/** + * @brief Retrieve the center point of a specific mesh element from the GLTF model data. + * + * @param gltf_data Pointer to the lv_gltf_data_t object containing the model data. + * @param matrix The transformation matrix to apply when calculating the center point. + * @param meshIndex The index of the mesh from which to retrieve the center point. + * @param elem The specific element index within the mesh. + * @return The center point as a FVEC3 structure. + */ +FVEC3 lv_gltf_get_centerpoint(lv_gltf_data_t *gltf_data, FMAT4 matrix, + uint32_t meshIndex, int32_t elem); + +/** + * @brief Set the shader information for a specific index in the GLTF model data. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param _index The index of the shader to set. + * @param _uniforms The UniformLocs structure containing the uniform locations. + * @param _shaderset The gl_renwin_shaderset_t structure containing the shader set. + */ +void set_shader(lv_gltf_data_t *D, uint64_t _index, UniformLocs _uniforms, + gl_renwin_shaderset_t _shaderset); + +/** + * @brief Initialize shaders for the GLTF model data with a specified maximum index. + * + * @param D Pointer to the lv_gltf_data_t object containing the model data. + * @param _max_index The maximum index for the shaders to initialize. + */ +void init_shaders(lv_gltf_data_t *D, uint64_t _max_index); + +/** + * @brief Retrieve the size of the structure used in the GLTF data. + * + * @return The size of the structure in bytes. + */ +uint32_t lv_gltf_data_get_struct_size(void); + +/** + * @brief Retrieve the probe information for a GLTF view. + * + * @param _data Pointer to the lv_gltf_data_t object from which to get the probe information. + * @return Pointer to the gltf_probe_info structure containing the probe information. + */ +gltf_probe_info *lv_gltf_view_get_probe(lv_gltf_data_t *_data); + +void set_bounds_info(_DATA D, _VEC3 _vmin, _VEC3 _vmax, _VEC3 _vcen, + float _radius); + +MeshData *lv_gltf_get_new_meshdata(_DATA _data); + +void __free_data_struct(_DATA _data); + +void __init_gltf_datastruct(_DATA _DataStructMem, const char *gltf_path); + +void set_asset(_DATA D, ASSET A); +void set_node_at_path(_DATA D, std::string P, _NODE N); +void set_node_at_ip(_DATA D, std::string I, _NODE N); +void set_node_index(_DATA D, _UINT I, _NODE N); + +#endif + +#endif /*LV_GLTFVIEW_H*/ diff --git a/lib/lv_gltf/data/lv_gltf_override.cpp b/lib/lv_gltf/data/lv_gltf_override.cpp new file mode 100644 index 0000000..88af843 --- /dev/null +++ b/lib/lv_gltf/data/lv_gltf_override.cpp @@ -0,0 +1,150 @@ +#include +#include + +#include +#include +#include /* GL_CALL */ + +#include +#include +#include + +#include "lv_gltf_override.h" +#include "lv_gltf_data_internal.hpp" + +lv_gltf_override_t * add_by_node(lv_gltf_data_t * _data, _NODE node, OverrideProp whichProp, uint32_t dataMask) +{ + + if(node == nullptr) { + return nullptr; + } + + const auto _node = node; + + // Create a new override + lv_gltf_override_t _newOverride; + _newOverride.prop = whichProp; + _newOverride.dataMask = dataMask; + _newOverride.data1 = 0.f; + _newOverride.data2 = 0.f; + _newOverride.data3 = 0.f; + _newOverride.data4 = 0.f; + _newOverride.nextOverride = nullptr; // Initialize nextOverride to null + + // Check if an override already exists for this node + if(_data->overrides->find(_node) != _data->overrides->end()) { + + // Get the existing override + lv_gltf_override_t * existingOverride = (*_data->overrides)[_node]; + + // Traverse to the end of the linked list of overrides + while(existingOverride->nextOverride != nullptr) existingOverride = existingOverride->nextOverride; + + _data->all_override_count += 1; + (*_data->all_overrides)[_data->all_override_count - 1] = _newOverride; + existingOverride->nextOverride = &(*_data->all_overrides)[_data->all_override_count - 1]; + return existingOverride->nextOverride; + } + else { + // No existing override, insert the new one + _data->all_override_count += 1; + (*_data->all_overrides)[_data->all_override_count - 1] = _newOverride; + (*_data->overrides)[_node] = &(*_data->all_overrides)[_data->all_override_count - 1]; + return (*_data->overrides)[_node]; + } + return nullptr; +} + +lv_gltf_override_t * lv_gltf_data_override_add_by_index(lv_gltf_data_t * _data, uint64_t nodeIndex, + OverrideProp whichProp, uint32_t dataMask) +{ + return (nodeIndex < _data->node_by_index->size()) ? nullptr : add_by_node(_data, (*_data->node_by_index)[nodeIndex], + whichProp, dataMask); +} + +lv_gltf_override_t * lv_gltf_data_override_add_by_ip(lv_gltf_data_t * _data, const char * nodeIp, + OverrideProp whichProp, uint32_t dataMask) +{ + std::string sNodeIp = std::string(nodeIp); + return ((*_data->node_by_ip).find(sNodeIp) == (*_data->node_by_ip).end()) ? nullptr : add_by_node(_data, + (*_data->node_by_ip)[sNodeIp], whichProp, dataMask); +} + +lv_gltf_override_t * lv_gltf_data_override_add_by_id(lv_gltf_data_t * _data, const char * nodeId, + OverrideProp whichProp, uint32_t dataMask) +{ + std::string sNodeId = std::string(nodeId); + return ((*_data->node_by_path).find(sNodeId) == (*_data->node_by_path).end()) ? nullptr : add_by_node(_data, + (*_data->node_by_path)[sNodeId], whichProp, dataMask); +} + +// Custom comparison function to compare structs +bool compareOverrides(const lv_gltf_override_t & a, const lv_gltf_override_t & b) +{ + return (a.prop == b.prop) + && (a.dataMask == b.dataMask) + && (a.data1 == b.data1) + && (a.data2 == b.data2) + && (a.data3 == b.data3) + && (a.data4 == b.data4) + && (a.nextOverride == b.nextOverride); +} + +bool lv_gltf_data_override_remove(lv_gltf_data_t * _data, lv_gltf_override_t * overrideToRemove) +{ + for(auto pair : *_data->overrides) { + lv_gltf_override_t * currentOverride = pair.second; + lv_gltf_override_t * previousOverride = nullptr; + + while(currentOverride != nullptr) { + if(currentOverride == overrideToRemove) { + // Found the override to remove + if(previousOverride != nullptr) { + // Link the previous override to the next one + previousOverride->nextOverride = currentOverride->nextOverride; + } + else { + (*_data->overrides)[pair.first] = currentOverride->nextOverride; + } + _data->all_overrides->erase( + std::remove_if(_data->all_overrides->begin(), _data->all_overrides->end(), + [&overrideToRemove](const lv_gltf_override_t & item) { + return compareOverrides(item, *overrideToRemove); + }), + _data->all_overrides->end()); + return true; // Successfully removed + } + previousOverride = currentOverride; + if(currentOverride != nullptr) { + if(currentOverride->nextOverride != nullptr) { + currentOverride = currentOverride->nextOverride; + } + else { + currentOverride = nullptr; + } + } + } + } + return false; // Override not found +} + +/* +void lv_gltf_data_cleanup_overrides(lv_gltf_data_t * _data) { + for (auto& pair : *_data->overrides) { + lv_gltf_override_struct* currentOverride = pair.second.nextOverride; // Start with the first override + lv_gltf_override_struct* toDelete = nullptr; + + // Delete the first override if it exists + if (currentOverride != nullptr) { + toDelete = &pair.second; // Start with the top-most override + while (toDelete != nullptr) { + lv_gltf_override_struct* nextOverride = toDelete->nextOverride; // Store the next override + delete toDelete; // Delete the current override + toDelete = nextOverride; // Move to the next override + } + } + } + + // Clear the overrides map + _data->overrides->clear(); +}*/ diff --git a/lib/lv_gltf/data/lv_gltf_override.h b/lib/lv_gltf/data/lv_gltf_override.h new file mode 100644 index 0000000..0f6f591 --- /dev/null +++ b/lib/lv_gltf/data/lv_gltf_override.h @@ -0,0 +1,97 @@ +#ifndef LV_GLTFOVERRIDE_H +#define LV_GLTFOVERRIDE_H + +#include "lv_gltf_data.h" +#include "lv_gltf_data_internal.h" + +#ifdef __cplusplus +extern "C" { +#endif + +typedef enum { + OP_VISIBILITY, + OP_POSITION, + OP_ROTATION, + OP_SCALE, + OP_BASE_COLOR, + OP_ALPHA_FACTOR, + OP_EMIS_COLOR +} OverrideProp; + +typedef enum { + OMC_CHAN1 = 0x01, + OMC_CHAN2 = 0x02, + OMC_CHAN3 = 0x04, + OMC_CHAN4 = 0x08 +} OverrideMaskChannels; + +struct lv_gltf_override_struct { + OverrideProp prop; + uint32_t dataMask; + float data1; + float data2; + float data3; + float data4; + struct lv_gltf_override_struct * nextOverride; // Pointer to the next override +} ; + +/** + * @brief Add an override to a GLTF data object by node index. + * + * @param _data Pointer to the lv_gltf_data_t object to which the override will be added. + * @param nodeIndex The index of the node to override. + * @param whichProp The property to override. + * @param dataMask A mask indicating which data fields to override. + * @return Pointer to the newly created lv_gltf_override_t object, or NULL if the operation failed. + */ +lv_gltf_override_t * lv_gltf_data_override_add_by_index(lv_gltf_data_t * _data, uint64_t nodeIndex, + OverrideProp whichProp, uint32_t dataMask); + +/** + * @brief Add an override to a GLTF data object by node IP address. + * + * @param _data Pointer to the lv_gltf_data_t object to which the override will be added. + * @param nodeIp The IP address of the node to override. + * @param whichProp The property to override. + * @param dataMask A mask indicating which data fields to override. + * @return Pointer to the newly created lv_gltf_override_t object, or NULL if the operation failed. + */ +lv_gltf_override_t * lv_gltf_data_override_add_by_ip(lv_gltf_data_t * _data, const char * nodeIp, + OverrideProp whichProp, uint32_t dataMask); + +/** + * @brief Add an override to a GLTF data object by node ID. + * + * @param _data Pointer to the lv_gltf_data_t object to which the override will be added. + * @param nodeId The ID of the node to override. + * @param whichProp The property to override. + * @param dataMask A mask indicating which data fields to override. + * @return Pointer to the newly created lv_gltf_override_t object, or NULL if the operation failed. + */ +lv_gltf_override_t * lv_gltf_data_override_add_by_id(lv_gltf_data_t * _data, const char * nodeId, + OverrideProp whichProp, uint32_t dataMask); + +/** + * @brief Remove an override from a GLTF data object. + * + * @param _data Pointer to the lv_gltf_data_t object from which the override will be removed. + * @param override The override to be removed. + * @param whichProp The property to override. + * @param dataMask A mask indicating which data fields to override. + * @return True on success, False on failure. + */ +bool lv_gltf_data_override_remove(lv_gltf_data_t * _data, lv_gltf_override_t * override); + +/** + * @brief Retrieve the probe information from the GLTF view. + * + * @param _data Pointer to the lv_gltf_data_t object containing the model data. + * @return Pointer to the gltf_probe_info structure containing the probe information. + */ +gltf_probe_info * lv_gltf_view_get_probe(lv_gltf_data_t * _data); + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*LV_GLTFOVERRIDE_H*/ diff --git a/lib/lv_gltf/data/sup/datatypes.cpp b/lib/lv_gltf/data/sup/datatypes.cpp new file mode 100644 index 0000000..1088174 --- /dev/null +++ b/lib/lv_gltf/data/sup/datatypes.cpp @@ -0,0 +1,434 @@ + +#include "../lv_gltf_data_internal.hpp" +#include + +#include +#include + +#define MAX_OVERRIDES 10 +#define _RET return + + +gltf_probe_info * lv_gltf_view_get_probe(lv_gltf_data_t * D) +{ + return ((gltf_probe_info *)(&(D->probe))); +} +MeshData * lv_gltf_get_new_meshdata(_DATA _data) +{ + MeshData outMesh = {}; + _data->meshes->emplace_back(outMesh); + return &((*_data->meshes)[_data->meshes->size() - 1 ]); +} + +uint32_t lv_gltf_data_get_struct_size(void) +{ + return sizeof(lv_gltf_data_t); +} + +uint32_t get_primitive_datasize(void) +{ + return sizeof(Primitive); +} + +void __init_gltf_datastruct(_DATA _DataStructMem, const char * gltf_path) +{ + lv_gltf_data_t _newDataStruct; + _newDataStruct.filename = gltf_path; + _newDataStruct.load_success = false; + + _newDataStruct.has_any_cameras = false; + _newDataStruct.current_camera_index = -1; + _newDataStruct.last_camera_index = -5; + _newDataStruct.selected_camera_node = NULL; + + _newDataStruct.last_anim_num = -5; + _newDataStruct.cur_anim_maxtime = -1.f; + _newDataStruct.local_timestamp = 0.0f; + + _newDataStruct._lastMaterialIndex = 99999; + _newDataStruct._lastPassWasTransmission = false; + + _newDataStruct._lastFrameWasAntialiased = false; + _newDataStruct._lastFrameNoMotion = false; + _newDataStruct.__lastFrameNoMotion = false; + + _newDataStruct.nodes_parsed = false; + + _newDataStruct.view_is_linked = false; + _newDataStruct.linked_view_source = NULL; + + memcpy(_DataStructMem, &_newDataStruct, sizeof(lv_gltf_data_t)); + _DataStructMem->asset = new ASSET(); + + _DataStructMem->overrides = new NodeOverrideMap(); + _DataStructMem->all_overrides = new OverrideVector(); + _DataStructMem->all_overrides->reserve(MAX_OVERRIDES); + _DataStructMem->all_override_count = 0; + _DataStructMem->node_by_path = new StringNodeMap(); + _DataStructMem->node_by_ip = new StringNodeMap(); + _DataStructMem->index_by_node = new NodeIntMap(); + _DataStructMem->node_by_index = new NodeVector(); + _DataStructMem->node_transform_cache = new NodeTransformMap(); + _DataStructMem->opaque_nodes_by_materialIndex = new MaterialIndexMap(); + _DataStructMem->blended_nodes_by_materialIndex = new MaterialIndexMap(); + _DataStructMem->distance_sort_nodes = new NodeDistanceVector(); + _DataStructMem->ibmBySkinThenNode = new MapofTransformMap(); + _DataStructMem->validated_skins = new LongVector(); + _DataStructMem->skin_tex = new IntVector(); + _DataStructMem->local_mesh_to_center_points_by_primitive = new std::map>(); + _DataStructMem->node_by_light_index = new NodeVector(); + //_DataStructMem->bufferAllocations = new std::vector<_GLUINT>(); + _DataStructMem->meshes = new std::vector(); + _DataStructMem->textures = new std::vector(); + _DataStructMem->cameras = new std::vector(); + _DataStructMem->materialBuffers = new std::vector<_GLUINT>(); + _DataStructMem->shaderUniforms = new std::vector(); + _DataStructMem->shaderSets = new std::vector(); +} + +void lv_gltf_data_destroy(lv_gltf_data_t * _data) +{ + __free_data_struct(_data); +} + +void __free_data_struct(_DATA _data) +{ + // if (_data == NULL) return; + + _data->all_overrides->clear(); + delete _data->all_overrides; + _data->all_overrides = nullptr; + _data->overrides->clear(); + delete _data->overrides; + _data->overrides = nullptr; + _data->node_by_path->clear(); + delete _data->node_by_path; + _data->node_by_path = nullptr; + _data->node_by_ip->clear(); + delete _data->node_by_ip; + _data->node_by_ip = nullptr; + _data->index_by_node->clear(); + delete _data->index_by_node; + _data->index_by_node = nullptr; + _data->node_by_index->clear(); + delete _data->node_by_index; + _data->node_by_index = nullptr; + _data->node_transform_cache->clear(); + delete _data->node_transform_cache; + _data->node_transform_cache = nullptr; + _data->opaque_nodes_by_materialIndex->clear(); + delete _data->opaque_nodes_by_materialIndex; + _data->opaque_nodes_by_materialIndex = nullptr; + _data->blended_nodes_by_materialIndex->clear(); + delete _data->blended_nodes_by_materialIndex; + _data->blended_nodes_by_materialIndex = nullptr; + _data->distance_sort_nodes->clear(); + delete _data->distance_sort_nodes; + _data->distance_sort_nodes = nullptr; + _data->ibmBySkinThenNode->clear(); + delete _data->ibmBySkinThenNode; + _data->ibmBySkinThenNode = nullptr; + _data->validated_skins->clear(); + delete _data->validated_skins; + _data->validated_skins = nullptr; + _data->local_mesh_to_center_points_by_primitive->clear(); + delete _data->local_mesh_to_center_points_by_primitive; + _data->local_mesh_to_center_points_by_primitive = nullptr; + // --- + //_data->bufferAllocations->clear();delete _data->bufferAllocations; + _data->node_by_light_index->clear(); + delete _data->node_by_light_index; + _data->node_by_light_index = nullptr; + _data->meshes->clear(); + delete _data->meshes; + _data->meshes = nullptr; + _data->textures->clear(); + delete _data->textures; + _data->textures = nullptr; + _data->cameras->clear(); + delete _data->cameras; + _data->cameras = nullptr; + _data->materialBuffers->clear(); + delete _data->materialBuffers; + _data->materialBuffers = nullptr; + _data->shaderUniforms->clear(); + delete _data->shaderUniforms; + _data->shaderUniforms = nullptr; + _data->shaderSets->clear(); + delete _data->shaderSets; + _data->shaderSets = nullptr; + + glDeleteTextures(_data->skin_tex->size(), (const GLuint *)_data->skin_tex->data()); + _data->skin_tex->clear(); + delete _data->skin_tex; + _data->skin_tex = nullptr; // Avoid dangling pointer + + delete _data->asset; // Properly deallocate + _data->asset = nullptr; // Avoid dangling pointer +} + +FVEC4 lv_gltf_get_primitive_centerpoint(_DATA ret_data, fastgltf::Mesh & mesh, uint32_t prim_num); + +const char * lv_gltf_get_filename(_DATA D) +{ + _RET(D->filename); +} +void * get_asset(_DATA D) +{ + _RET(D->asset); +} +//void set_asset (_DATA D,ASSET A) {D->asset = std::move(A);} + +void set_asset(_DATA D, ASSET A) +{ + // Ensure D->asset is allocated before assignment + if(D->asset) { + delete D->asset; // Clean up existing asset if necessary + } + D->asset = new fastgltf::Asset(std::move(A)); // Use move constructor +} + +_MESH * get_meshdata_num(_DATA D, _UINT I) +{ + _RET &((*D->meshes)[I]); +} +void * get_texdata_set(_DATA D) +{ + _RET &(D->textures); +} +double lv_gltf_data_get_radius(_DATA D) +{ + _RET(double)D->bound_radius; +} +int64_t lv_gltf_data_get_int_radiusX1000(_DATA D) +{ + _RET(int64_t)(D->bound_radius * 1000); +} +float * lv_gltf_data_get_center(_DATA D) +{ + _RET D->vertex_cen; +} +float * get_bounds_min(_DATA D) +{ + _RET D->vertex_min; +} +float * get_bounds_max(_DATA D) +{ + _RET D->vertex_max; +} +void * get_skintex_set(_DATA D) +{ + _RET D->skin_tex; +} +int32_t get_skintex_at(_DATA D, _UINT I) +{ + _RET(*D->skin_tex)[I]; +} +uint64_t get_shader_program(_DATA D, _UINT I) +{ + _RET(*D->shaderSets)[I].program; +} +Texture * get_texdata(_DATA D, _UINT I) +{ + _RET &((*D->textures)[I]); +} +UniformLocs * get_uniform_ids(_DATA D, _UINT I) +{ + _RET &((*D->shaderUniforms)[I]); +} +uint64_t get_texdata_glid(_DATA D, _UINT I) +{ + _RET get_texdata(D, I)->texture; +} +void allocate_index(_DATA D, _UINT I) +{ + (*D->node_by_index).resize(I); +} +void set_probe(_DATA D, gltf_probe_info _probe) +{ + D->probe = std::move(_probe); +} +void set_node_at_path(_DATA D, std::string P, _NODE N) +{ + (*D->node_by_path)[P] = N; +} +void set_node_at_ip(_DATA D, std::string I, _NODE N) +{ + (*D->node_by_ip)[I] = N; +} +void set_node_index(_DATA D, _UINT I, _NODE N) +{ + (*D->node_by_index)[I] = N; + (*D->index_by_node)[N] = I; +} +void * get_prim_from_mesh(MeshData * M, uint64_t I) +{ + _RET &(M->primitives[I]); +} + +_MAT4 get_cached_transform(_DATA D, _NODE N) +{ + _RET((*D->node_transform_cache)[N]); +} +bool has_cached_transform(_DATA D, _NODE N) +{ + _RET(D->node_transform_cache->find(N) != D->node_transform_cache->end()); +} +void set_cached_transform(_DATA D, _NODE N, _MAT4 M) +{ + (*D->node_transform_cache)[N] = M; +} +void clear_transform_cache(_DATA D) +{ + D->node_transform_cache->clear(); +} +bool transform_cache_is_empty(_DATA D) +{ + _RET D->node_transform_cache->size() == 0; +} + +void recache_centerpoint(_DATA D, _UINT I, int32_t P) +{ + (*D->local_mesh_to_center_points_by_primitive)[I][P] = lv_gltf_get_primitive_centerpoint(D, D->asset->meshes[I], P); +} +bool centerpoint_cache_contains(_DATA D, _UINT I, int32_t P) +{ + _RET((D->local_mesh_to_center_points_by_primitive->find(I) == D->local_mesh_to_center_points_by_primitive->end()) || + ((*D->local_mesh_to_center_points_by_primitive)[I].find(P) == (*D->local_mesh_to_center_points_by_primitive)[I].end())) + ? false : true; +} +bool validated_skins_contains(_DATA D, int64_t I) +{ + _RET((std::find(D->validated_skins->begin(), D->validated_skins->end(), I) != D->validated_skins->end())); +} +void validate_skin(_DATA D, int64_t I) +{ + D->validated_skins->push_back(I); +} +_UINT get_skins_size(_DATA D) +{ + _RET D->validated_skins->size(); +} +int32_t get_skin(_DATA D, uint64_t I) +{ + _RET(*D->validated_skins)[I]; +} + +void add_opaque_node_prim(_DATA D, _UINT I, _NODE N, int32_t P) +{ + (*D->opaque_nodes_by_materialIndex)[I].push_back(std::make_pair(N, std::as_const(P))); +} +MaterialIndexMap::iterator get_opaque_begin(_DATA D) +{ + _RET D->opaque_nodes_by_materialIndex->begin(); +} +MaterialIndexMap::iterator get_opaque_end(_DATA D) +{ + _RET D->opaque_nodes_by_materialIndex->end(); +} + +void add_blended_node_prim(_DATA D, _UINT I, _NODE N, int32_t P) +{ + (*D->blended_nodes_by_materialIndex)[I].push_back(std::make_pair(N, std::as_const(P))); +} +MaterialIndexMap::iterator get_blended_begin(_DATA D) +{ + _RET D->blended_nodes_by_materialIndex->begin(); +} +MaterialIndexMap::iterator get_blended_end(_DATA D) +{ + _RET D->blended_nodes_by_materialIndex->end(); +} + +void clear_distance_sort(_DATA D) +{ + D->distance_sort_nodes->clear(); +} +void add_distance_sort_prim(_DATA D, NodeIndexDistancePair P) +{ + D->distance_sort_nodes->push_back(P); +} +NodeDistanceVector::iterator get_distance_sort_begin(_DATA D) +{ + _RET D->distance_sort_nodes->begin(); +} +NodeDistanceVector::iterator get_distance_sort_end(_DATA D) +{ + _RET D->distance_sort_nodes->end(); +} + +gl_renwin_shaderset_t * get_shader_set(_DATA D, _UINT I) +{ + _RET &((*D->shaderSets)[I]); +} + +_VEC3 get_cached_centerpoint(_DATA D, _UINT I, int32_t P, _MAT4 M) +{ + FVEC4 tv = FVEC4((*D->local_mesh_to_center_points_by_primitive)[I][P]); + tv[3] = 1.f; + tv = M * tv ; + return FVEC3(tv[0], tv[1], tv[2]); +} + +void set_shader(_DATA D, uint64_t _index, UniformLocs _uniforms, gl_renwin_shaderset_t _shaderset) +{ + (*D->shaderUniforms)[_index] = _uniforms; + (*D->shaderSets)[_index] = _shaderset; +} + +void init_shaders(_DATA D, uint64_t _max_index) +{ + auto _prevsize = D->shaderSets->size(); + D->shaderSets->resize(_max_index + 1); + D->shaderUniforms->resize(_max_index + 1); + if(_prevsize < _max_index) { + for(uint64_t _ii = _prevsize; _ii <= _max_index; _ii++) { + (*D->shaderSets)[_ii] = gl_renwin_shaderset_t(); + (*D->shaderSets)[_ii].ready = false; + } + } +} + +void set_bounds_info(_DATA D, _VEC3 _vmin, _VEC3 _vmax, _VEC3 _vcen, float _radius) +{ + { + auto _d = _vmin.data(); + D->vertex_min[0] = _d[0]; + D->vertex_min[1] = _d[1]; + D->vertex_min[2] = _d[2]; + } + { + auto _d = _vmax.data(); + D->vertex_max[0] = _d[0]; + D->vertex_max[1] = _d[1]; + D->vertex_max[2] = _d[2]; + } + { + auto _d = _vcen.data(); + D->vertex_cen[0] = _d[0]; + D->vertex_cen[1] = _d[1]; + D->vertex_cen[2] = _d[2]; + } + D->bound_radius = _radius; +} + +void lv_gltf_data_copy_bounds_info(_DATA to, _DATA from) +{ + { + to->vertex_min[0] = from->vertex_min[0]; + to->vertex_min[1] = from->vertex_min[1]; + to->vertex_min[2] = from->vertex_min[2]; + } + { + to->vertex_max[0] = from->vertex_max[0]; + to->vertex_max[1] = from->vertex_max[1]; + to->vertex_max[2] = from->vertex_max[2]; + } + { + to->vertex_cen[0] = from->vertex_cen[0]; + to->vertex_cen[1] = from->vertex_cen[1]; + to->vertex_cen[2] = from->vertex_cen[2]; + } + to->bound_radius = from->bound_radius ; +} + diff --git a/lib/lv_gltf/data/sup/injest.cpp b/lib/lv_gltf/data/sup/injest.cpp new file mode 100644 index 0000000..869a733 --- /dev/null +++ b/lib/lv_gltf/data/sup/injest.cpp @@ -0,0 +1,1212 @@ +#include "drivers/glfw/lv_opengles_debug.h" +#include "fastgltf/core.hpp" +#include +#include "../../view/sup/include/shader_includes.h" +#include "fastgltf/tools.hpp" +#include "../lv_gltf_data_internal.hpp" + +#include +#include +#include +#include +#include + +#include + +#include + +namespace fastgltf +{ +FASTGLTF_EXPORT template +#if FASTGLTF_HAS_CONCEPTS + requires std::same_as, Asset> + && std::is_invocable_v +#endif +void namegen_iterateSceneNodes(AssetType&& asset, std::size_t sceneIndex, Callback callback) +{ + auto & scene = asset.scenes[sceneIndex]; + + std::string _id = std::string(""); + std::string _ip = std::string(""); + if(asset.scenes.size() > 1) { + _id = "scene_" + std::to_string(sceneIndex); + _ip = std::to_string(sceneIndex); + } + auto function = [&](std::size_t nodeIndex, std::string & parentId, std::string & parentIp, std::size_t __child_index, + auto & self) -> void { + assert(asset.nodes.size() > nodeIndex); + auto & node = asset.nodes[nodeIndex]; + std::string _nodeId = parentId + std::string("/") + std::string(node.name); + std::string _nodeIp = parentIp + std::string(".") + std::to_string(__child_index); + std::cout << "Node: '" << _nodeId << "' (" << _nodeIp << ")\n"; + std::invoke(callback, node, _nodeId, _nodeIp, nodeIndex, __child_index); + std::size_t ____child_index = 0; + for(auto & child : node.children) { + self(child, _nodeId, _nodeIp, ____child_index, self); + ____child_index += 1; + } + }; + std::size_t child_index = 0; + for(auto & sceneNode : scene.nodeIndices) { + function(sceneNode, _id, _ip, child_index, function); + child_index += 1; + } +} +} + +struct Vertex { + FVEC3 position; + FVEC3 normal; + FVEC4 tangent; + FVEC2 uv; + FVEC2 uv2; + FVEC4 joints; + FVEC4 joints2; + FVEC4 weights; + FVEC4 weights2; +}; + +#define _MACRO_ADD_DEFINE_IF_EXISTS(ASSET_VAR, PRIMITIVE_VAR, ATTRIBUTE_ID, DEFINE_TO_ADD) { \ + auto* _it = PRIMITIVE_VAR->findAttribute(ATTRIBUTE_ID); \ + if (( _it != PRIMITIVE_VAR->attributes.end()) && (ASSET_VAR->accessors[_it->accessorIndex].bufferViewIndex.has_value())) addDefine(DEFINE_TO_ADD, NULL); } + +#define _MACRO_LOADMESH_TEXTURE(MATERIAL_PROP, PRIMITIVE_TEXPROP, PRIMITIVE_TEXUVID) { \ + const auto& _tex = MATERIAL_PROP; \ + if (_tex) { \ + auto& texture = asset->textures[_tex->textureIndex]; \ + if (injest_check_any_image_index_valid(texture)) { \ + PRIMITIVE_TEXPROP = TEXDGLID(data_obj, injest_get_any_image_index(texture) ); \ + PRIMITIVE_TEXUVID = _tex.value().transform ? _tex.value().transform->texCoordIndex.has_value() ? _tex.value().transform->texCoordIndex.value() : _tex.value().texCoordIndex : _tex.value().texCoordIndex; } } } + +#define _MACRO_ADD_TEXTURE_DEFINES(GLTF_MATERIAL_VAR, TEX_DEFINE_TO_ADD, TEXUV_DEFINE_TO_ADD) \ + if (GLTF_MATERIAL_VAR.has_value()) { \ + addDefine(TEX_DEFINE_TO_ADD, NULL); \ + if (GLTF_MATERIAL_VAR.value().transform) addDefine(TEXUV_DEFINE_TO_ADD, NULL); } + + +void (*lv_gltf_data_load_progress_callback)(const char *, const char *, float, float, float, float) = NULL; + +/** + * @brief Discover defines for the given GLTF data object and node. + * + * @param data_obj Pointer to the GLTF data object. + * @param node Pointer to the GLTF node. + * @param prim Pointer to the GLTF primitive. + */ +void injest_discover_defines(lv_gltf_data_t * data_obj, void * node, void * prim) +{ + const auto & asset = GET_ASSET(data_obj); + auto it = (fastgltf::Primitive *)prim; + clearDefines(); + //addDefine("LINEAR_OUTPUT", NULL ); + addDefine("_OPAQUE", "0"); + addDefine("_MASK", "1"); + addDefine("_BLEND", "2"); + + assert(it->findAttribute("POSITION") != + it->attributes.end()); // A mesh primitive is required to hold the POSITION attribute. + assert(it->indicesAccessor.has_value()); // We specify GenerateMeshIndices, so we should always have indices + if(it->materialIndex.has_value() == false) { + addDefine("ALPHAMODE", "_OPAQUE"); + } + else { + auto & material = asset->materials[it->materialIndex.value()]; + addDefine("TONEMAP_KHR_PBR_NEUTRAL", NULL); + if(material.unlit) { + addDefine("MATERIAL_UNLIT", NULL); + addDefine("LINEAR_OUTPUT", NULL); + + //addDefine("USE_IBL", NULL ); + //addDefine("LIGHT_COUNT", "0" ); + } + else { + addDefine("MATERIAL_METALLICROUGHNESS", NULL); + //addDefine("USE_IBL", NULL ); + //addDefine("LIGHT_COUNT", "0" ); + //addDefine("USE_PUNCTUAL", NULL ); + //addDefine("LIGHT_COUNT", "2" ); + } + + if(data_obj->node_by_light_index->size() > 0) { + addDefine("USE_PUNCTUAL", NULL); + addDefine("USE_IBL", NULL); + //addDefine("LIGHT_COUNT", "2" ); + //char _tbuffer[10]; + //snprintf(_tbuffer, 10, "%ld", data_obj->node_by_light_index->size()); + // addDefine("LIGHT_COUNT", std::to_string(data_obj->node_by_light_index->size()).c_str() ); + size_t lc = data_obj->node_by_light_index->size(); + if(lc == 1) addDefine("LIGHT_COUNT", "1"); + else if(lc == 2) addDefine("LIGHT_COUNT", "2"); + else if(lc == 3) addDefine("LIGHT_COUNT", "3"); + else if(lc == 4) addDefine("LIGHT_COUNT", "4"); + else if(lc == 5) addDefine("LIGHT_COUNT", "5"); + else if(lc == 6) addDefine("LIGHT_COUNT", "6"); + else if(lc == 7) addDefine("LIGHT_COUNT", "7"); + else if(lc == 8) addDefine("LIGHT_COUNT", "8"); + else if(lc == 9) addDefine("LIGHT_COUNT", "9"); + else if(lc == 10) addDefine("LIGHT_COUNT", "10"); + else std::cerr << "ERROR: Too many scene lights, max is 10\n"; + std::cout << "Added " << std::to_string(lc) << " lights to the shader\n"; + } + else { + addDefine("LIGHT_COUNT", "0"); + addDefine("USE_IBL", NULL); + } + + // only set cutoff value for mask material + if(material.alphaMode == fastgltf::AlphaMode::Mask) { + addDefine("ALPHAMODE", "_MASK"); + } + else if(material.alphaMode == fastgltf::AlphaMode::Opaque) { + addDefine("ALPHAMODE", "_OPAQUE"); + } + else { + addDefine("ALPHAMODE", "_BLEND"); + } + _MACRO_ADD_TEXTURE_DEFINES(material.pbrData.baseColorTexture, "HAS_BASE_COLOR_MAP", "HAS_BASECOLOR_UV_TRANSFORM"); + _MACRO_ADD_TEXTURE_DEFINES(material.pbrData.metallicRoughnessTexture, "HAS_METALLIC_ROUGHNESS_MAP", + "HAS_METALLICROUGHNESS_UV_TRANSFORM"); + _MACRO_ADD_TEXTURE_DEFINES(material.occlusionTexture, "HAS_OCCLUSION_MAP", "HAS_OCCLUSION_UV_TRANSFORM"); + _MACRO_ADD_TEXTURE_DEFINES(material.normalTexture, "HAS_NORMAL_MAP", "HAS_NORMAL_UV_TRANSFORM"); + _MACRO_ADD_TEXTURE_DEFINES(material.emissiveTexture, "HAS_EMISSIVE_MAP", "HAS_EMISSIVE_UV_TRANSFORM"); + addDefine("MATERIAL_EMISSIVE_STRENGTH", NULL); + if(material.sheen) addDefine("MATERIAL_SHEEN", NULL); + if(material.specular) addDefine("MATERIAL_SPECULAR", NULL); + if(material.specularGlossiness) { + addDefine("MATERIAL_SPECULARGLOSSINESS", NULL); + _MACRO_ADD_TEXTURE_DEFINES(material.specularGlossiness->diffuseTexture, "HAS_DIFFUSE_MAP", "HAS_DIFFUSE_UV_TRANSFORM"); + _MACRO_ADD_TEXTURE_DEFINES(material.specularGlossiness->specularGlossinessTexture, "HAS_SPECULARGLOSSINESS_MAP", + "HAS_SPECULARGLOSSINESS_UV_TRANSFORM"); + } + if(material.transmission) { + addDefine("MATERIAL_TRANSMISSION", NULL); + addDefine("MATERIAL_DISPERSION", NULL); + addDefine("MATERIAL_VOLUME", NULL); + if(material.transmission->transmissionTexture.has_value()) addDefine("HAS_TRANSMISSION_MAP", NULL); + if(material.volume) { + _MACRO_ADD_TEXTURE_DEFINES(material.volume->thicknessTexture, "HAS_THICKNESS_MAP", "HAS_THICKNESS_UV_TRANSFORM"); + } + } + if(material.clearcoat) { + addDefine("MATERIAL_CLEARCOAT", NULL); + _MACRO_ADD_TEXTURE_DEFINES(material.clearcoat->clearcoatTexture, "HAS_CLEARCOAT_MAP", "HAS_CLEARCOAT_UV_TRANSFORM"); + _MACRO_ADD_TEXTURE_DEFINES(material.clearcoat->clearcoatRoughnessTexture, "HAS_CLEARCOAT_ROUGHNESS_MAP", + "HAS_CLEARCOATROUGHNESS_UV_TRANSFORM"); + _MACRO_ADD_TEXTURE_DEFINES(material.clearcoat->clearcoatNormalTexture, "HAS_CLEARCOAT_NORMAL_MAP", + "HAS_CLEARCOATNORMAL_UV_TRANSFORM"); + } +#ifdef FASTGLTF_DIFFUSE_TRANSMISSION_SUPPORT + if(material.diffuseTransmission) { + addDefine("MATERIAL_DIFFUSE_TRANSMISSION", NULL); + if(material.diffuseTransmission->diffuseTransmissionTexture.has_value()) addDefine("HAS_DIFFUSE_TRANSMISSION_MAP", + NULL); + if(material.diffuseTransmission->diffuseTransmissionColorTexture.has_value()) + addDefine("HAS_DIFFUSE_TRANSMISSION_COLOR_MAP", NULL); + } +#endif + } + _MACRO_ADD_DEFINE_IF_EXISTS(asset, it, "NORMAL", "HAS_NORMAL_VEC3"); + _MACRO_ADD_DEFINE_IF_EXISTS(asset, it, "TANGENT", "HAS_TANGENT_VEC4"); + _MACRO_ADD_DEFINE_IF_EXISTS(asset, it, "TEXCOORD_0", "HAS_TEXCOORD_0_VEC2"); + _MACRO_ADD_DEFINE_IF_EXISTS(asset, it, "TEXCOORD_1", "HAS_TEXCOORD_1_VEC2"); + _MACRO_ADD_DEFINE_IF_EXISTS(asset, it, "JOINTS_0", "HAS_JOINTS_0_VEC4"); + _MACRO_ADD_DEFINE_IF_EXISTS(asset, it, "JOINTS_1", "HAS_JOINTS_1_VEC4"); + _MACRO_ADD_DEFINE_IF_EXISTS(asset, it, "WEIGHTS_0", "HAS_WEIGHTS_0_VEC4"); + _MACRO_ADD_DEFINE_IF_EXISTS(asset, it, "WEIGHTS_1", "HAS_WEIGHTS_1_VEC4"); + + auto * joints0it = it->findAttribute("JOINTS_0"); + auto * weights0it = it->findAttribute("WEIGHTS_0"); + auto _node = (fastgltf::Node *)node; + if((_node->skinIndex.has_value()) && (joints0it != it->attributes.end()) && (weights0it != it->attributes.end())) { + std::cout << "*** SKINNING ENABLED FOR THIS MESH: SKIN-INDEX = " << std::to_string(_node->skinIndex.value()) << + " ***\n"; + std::cout << "*** SKIN HAS " << std::to_string(asset->skins[_node->skinIndex.value()].joints.size()) << " JOINTS ***\n"; + addDefine("USE_SKINNING", NULL); + } +} + +/** + * @brief Set the initial bounds for the asset. + * + * @param ret_data Pointer to the GLTF data. + * @param asset Pointer to the GLTF asset. + * @param matrix The transformation matrix. + * @param mesh Reference to the mesh. + */ +void injest_set_initial_bounds(lv_gltf_data_t * ret_data, ASSET * asset, FMAT4 matrix, fastgltf::Mesh & mesh) +{ + FVEC3 _vmin, _vmax, _vcen; + float _bradius = 0.f; + if(mesh.primitives.size() > 0) { + auto it = mesh.primitives.begin(); + auto * positionIt = it->findAttribute("POSITION"); + auto & positionAccessor = asset->accessors[positionIt->accessorIndex]; + if(positionAccessor.bufferViewIndex.has_value()) { + if(positionAccessor.min.has_value() && positionAccessor.max.has_value()) { + FVEC4 _tmin = FVEC4( + (float)(positionAccessor.min.value().get((size_t)0)), + (float)(positionAccessor.min.value().get((size_t)1)), + (float)(positionAccessor.min.value().get((size_t)2)), + 1.f); + _tmin = matrix * _tmin; + + FVEC4 _tmax = FVEC4( + (float)(positionAccessor.max.value().get((size_t)0)), + (float)(positionAccessor.max.value().get((size_t)1)), + (float)(positionAccessor.max.value().get((size_t)2)), + 1.f); + _tmax = matrix * _tmax; + + _vmax[0] = std::max(_tmin.x(), _tmax.x()); + _vmax[1] = std::max(_tmin.y(), _tmax.y()); + _vmax[2] = std::max(_tmin.z(), _tmax.z()); + _vmin[0] = std::min(_tmin.x(), _tmax.x()); + _vmin[1] = std::min(_tmin.y(), _tmax.y()); + _vmin[2] = std::min(_tmin.z(), _tmax.z()); + _vcen[0] = (_vmax[0] + _vmin[0]) / 2.0f; + _vcen[1] = (_vmax[1] + _vmin[1]) / 2.0f; + _vcen[2] = (_vmax[2] + _vmin[2]) / 2.0f; + float size_x = _vmax[0] - _vmin[0]; + float size_y = _vmax[1] - _vmin[1]; + float size_z = _vmax[2] - _vmin[2]; + _bradius = std::sqrt((size_x * size_x) + (size_y * size_y) + (size_z * size_z)) / 2.0f; + + } + } + } + set_bounds_info(ret_data, _vmin, _vmax, _vcen, _bradius); +} + +/** + * @brief Grow the bounds to include the specified mesh. + * + * @param ret_data Pointer to the GLTF data. + * @param asset Pointer to the GLTF asset. + * @param matrix The transformation matrix. + * @param mesh Reference to the mesh. + */ +void injest_grow_bounds_to_include(lv_gltf_data_t * ret_data, ASSET * asset, FMAT4 matrix, fastgltf::Mesh & mesh) +{ + FVEC3 _vmin, _vmax, _vcen; + + { + const auto & _t = get_bounds_min(ret_data); + _vmin[0] = _t[0]; + _vmin[1] = _t[1]; + _vmin[2] = _t[2]; + } + { + const auto & _t = get_bounds_max(ret_data); + _vmax[0] = _t[0]; + _vmax[1] = _t[1]; + _vmax[2] = _t[2]; + } + { + const auto & _t = lv_gltf_data_get_center(ret_data); + _vcen[0] = _t[0]; + _vcen[1] = _t[1]; + _vcen[2] = _t[2]; + } + float _bradius = lv_gltf_data_get_radius(ret_data); + + if(mesh.primitives.size() > 0) { + auto it = mesh.primitives.begin(); + auto * positionIt = it->findAttribute("POSITION"); + auto & positionAccessor = asset->accessors[positionIt->accessorIndex]; + if(positionAccessor.bufferViewIndex.has_value()) { + if(positionAccessor.min.has_value() && positionAccessor.max.has_value()) { + FVEC4 _tmin = FVEC4( + (float)(positionAccessor.min.value().get((size_t)0)), + (float)(positionAccessor.min.value().get((size_t)1)), + (float)(positionAccessor.min.value().get((size_t)2)), + 1.f); + _tmin = matrix * _tmin; + FVEC4 _tmax = FVEC4( + (float)(positionAccessor.max.value().get((size_t)0)), + (float)(positionAccessor.max.value().get((size_t)1)), + (float)(positionAccessor.max.value().get((size_t)2)), + 1.f); + _tmax = matrix * _tmax; + _vmax[0] = std::max(std::max(_vmax[0], _tmin.x()), _tmax.x()); + _vmax[1] = std::max(std::max(_vmax[1], _tmin.y()), _tmax.y()); + _vmax[2] = std::max(std::max(_vmax[2], _tmin.z()), _tmax.z()); + _vmin[0] = std::min(std::min(_vmin[0], _tmin.x()), _tmax.x()); + _vmin[1] = std::min(std::min(_vmin[1], _tmin.y()), _tmax.y()); + _vmin[2] = std::min(std::min(_vmin[2], _tmin.z()), _tmax.z()); + _vcen[0] = (_vmax[0] + _vmin[0]) / 2.0f; + _vcen[1] = (_vmax[1] + _vmin[1]) / 2.0f; + _vcen[2] = (_vmax[2] + _vmin[2]) / 2.0f; + float size_x = _vmax[0] - _vmin[0]; + float size_y = _vmax[1] - _vmin[1]; + float size_z = _vmax[2] - _vmin[2]; + _bradius = std::sqrt((size_x * size_x) + (size_y * size_y) + (size_z * size_z)) / 2.0f; + } + } + } + set_bounds_info(ret_data, _vmin, _vmax, _vcen, _bradius); +} + +/** + * @brief Check if any image index in the texture is valid. + * + * @param tex Optional texture to check. + * @return true if any image index is valid, false otherwise. + */ +bool injest_check_any_image_index_valid(std::optional tex) +{ + if(tex->imageIndex.has_value()) return true; +#ifdef LVGL_ENABLE_WEBP_IMAGES +#if LVGL_ENABLE_WEBP_IMAGES + if(tex->webpImageIndex.has_value()) return true; +#endif /* LVGL_ENABLE_WEBP_IMAGES == true (or 1)*/ +#endif /* LVGL_ENABLE_WEBP_IMAGES */ + return false; +} + +/** + * @brief Get the first valid image index from the texture. + * + * @param tex Optional texture to check. + * @return The index of the first valid image, or -1 if none is valid. + */ +int32_t injest_get_any_image_index(std::optional tex) +{ + if(tex->imageIndex.has_value()) return tex->imageIndex.value(); + +#ifdef LVGL_ENABLE_WEBP_IMAGES +#if LVGL_ENABLE_WEBP_IMAGES + if(tex->webpImageIndex.has_value()) return tex->webpImageIndex.value(); +#endif /* LVGL_ENABLE_WEBP_IMAGES == true (or 1)*/ +#endif /* LVGL_ENABLE_WEBP_IMAGES */ + + return 0; +} + +/** + * @brief Ingest a vec2/vec3/vec4 attribute from the GLTF data. + * + * @param current_attrib_index The current attribute index. + * @param data Pointer to the GLTF data. + * @param prim Pointer to the GLTF primitive. + * @param attrib_id The attribute ID. + * @param vao Vertex Array Object identifier. + * @param primitive_vertex_buffer Vertex buffer identifier for the primitive. + * @param offset Offset for the attribute data. + * @param functor Functor to process the vec2 data. + * @return The number of attributes ingested. + */ + +std::size_t injest_vec2_attribute( + int32_t current_attrib_index, + lv_gltf_data_t * data, + fastgltf::Primitive * prim, + const char * attrib_id, + GLuint primitive_vertex_buffer, + std::size_t offset, + const std::function & functor) +{ + const auto & asset = GET_ASSET(data); + if(const auto * _attrib = prim->findAttribute(std::string(attrib_id)); _attrib != prim->attributes.end()) { + auto & _accessor = asset->accessors[_attrib->accessorIndex]; + if(_accessor.bufferViewIndex.has_value()) { + glBindBuffer(GL_ARRAY_BUFFER, primitive_vertex_buffer); + fastgltf::iterateAccessorWithIndex(*asset, _accessor, functor); + // Specify the layout of the vertex data + glVertexAttribPointer(current_attrib_index, // Attribute index + 2, // Number of components per vertex (e.g., 3 for vec3) + GL_FLOAT, // Data type + GL_FALSE, // Normalized + sizeof(Vertex), // Stride (size of one vertex) + (void *)offset); // Offset in the buffer + glEnableVertexAttribArray(current_attrib_index); + } + else { + glDisableVertexAttribArray(current_attrib_index); + } + current_attrib_index++; + } + return current_attrib_index; +} + +std::size_t injest_vec3_attribute( + int32_t current_attrib_index, + lv_gltf_data_t * data, + fastgltf::Primitive * prim, + const char * attrib_id, + GLuint primitive_vertex_buffer, + std::size_t offset, + const std::function & functor) +{ + const auto & asset = GET_ASSET(data); + if(const auto * _attrib = prim->findAttribute(std::string(attrib_id)); _attrib != prim->attributes.end()) { + auto & _accessor = asset->accessors[_attrib->accessorIndex]; + if(_accessor.bufferViewIndex.has_value()) { + fastgltf::iterateAccessorWithIndex(*asset, _accessor, functor); + glBindBuffer(GL_ARRAY_BUFFER, primitive_vertex_buffer); + // Specify the layout of the vertex data + glVertexAttribPointer(current_attrib_index, // Attribute index + 3, // Number of components per vertex (e.g., 3 for vec3) + GL_FLOAT, // Data type + GL_FALSE, // Normalized + sizeof(Vertex), // Stride (size of one vertex) + (void *)offset); // Offset in the buffer + glEnableVertexAttribArray(current_attrib_index); + } + else { + glDisableVertexAttribArray(current_attrib_index); + } + current_attrib_index++; + } + return current_attrib_index; +} + +std::size_t injest_vec4_attribute( + int32_t current_attrib_index, + lv_gltf_data_t * data, + fastgltf::Primitive * prim, + const char * attrib_id, + GLuint primitive_vertex_buffer, + std::size_t offset, + const std::function & functor) +{ + const auto & asset = GET_ASSET(data); + if(const auto * _attrib = prim->findAttribute(std::string(attrib_id)); _attrib != prim->attributes.end()) { + auto & _accessor = asset->accessors[_attrib->accessorIndex]; + if(_accessor.bufferViewIndex.has_value()) { + fastgltf::iterateAccessorWithIndex(*asset, _accessor, functor); + // Specify the layout of the vertex data + glBindBuffer(GL_ARRAY_BUFFER, primitive_vertex_buffer); + glVertexAttribPointer(current_attrib_index, // Attribute index + 4, // Number of components per vertex (e.g., 3 for vec3) + GL_FLOAT, // Data type + GL_FALSE, // Normalized + sizeof(Vertex), // Stride (size of one vertex) + (void *)offset); // Offset in the buffer + glEnableVertexAttribArray(current_attrib_index); + } + else { + glDisableVertexAttribArray(current_attrib_index); + } + current_attrib_index++; + } + return current_attrib_index; +} + +//GLint _get_texcoord_index(const fastgltf::Optional& _tex) { +// return _tex.value().transform ? _tex.value().transform->texCoordIndex.has_value() ? _tex.value().transform->texCoordIndex.value() : _tex.value().texCoordIndex : _tex.value().texCoordIndex; +//} + +/** + * @brief Load a light from the GLTF data. + * + * @param asset Pointer to the fastgltf asset object. + * @param data_obj Pointer to the GLTF data object. + * @param light_index The index number of the light param, within the GLTF asset's light collection + * @param light Reference to the light to load. + * @param sceneIndex Which scene to use. + */ +void injest_light(fastgltf::Asset * asset, lv_gltf_data_t * data_obj, uint32_t light_index, fastgltf::Light & light, + size_t sceneIndex) +{ + FMAT4 tmat; + LV_UNUSED( + light); // It would seem like we'd need this info but not really, just the index will do at the loading phase, the rest is pulled during frame updates. + + fastgltf::findlight_iterateSceneNodes(*asset, sceneIndex, &tmat, [&](fastgltf::Node & node, FMAT4 & parentworldmatrix, + FMAT4 & localmatrix) { + LV_UNUSED(parentworldmatrix); + LV_UNUSED(localmatrix); + if(node.lightIndex.has_value()) { + if(node.lightIndex.value() == light_index) { + printf("SCENE LIGHT BEING ADDED #%d\n", light_index); + data_obj->node_by_light_index->push_back(&node); + return; + } + } + }); +} + +/** + * @brief Load a mesh from the GLTF data. + * + * @param data_obj Pointer to the GLTF data object. + * @param mesh Reference to the mesh to load. + * @return true if the mesh was loaded successfully, false otherwise. + */ +bool injest_mesh(lv_gltf_data_t * data_obj, fastgltf::Mesh & mesh) +{ + const auto & asset = GET_ASSET(data_obj); + const auto & outMesh = lv_gltf_get_new_meshdata(data_obj); //outMesh = {}; + outMesh->primitives.resize(mesh.primitives.size()); + + for(auto it = mesh.primitives.begin(); it != mesh.primitives.end(); ++it) { + if(it->dracoCompression != NULL) std::cout << "***ALERT: UNHANDLED DRACO COMPRESSION ***\n"; + auto * positionIt = it->findAttribute("POSITION"); + assert(positionIt != it->attributes.end()); // A mesh primitive is required to hold the POSITION attribute. + assert(it->indicesAccessor.has_value()); // We specify GenerateMeshIndices, so we should always have indices + + auto index = std::distance(mesh.primitives.begin(), it); + auto & primitive = outMesh->primitives[index]; + + // Generate the VAO + GLuint vao; + glGenVertexArrays(1, &vao); + glBindVertexArray(vao); + primitive.primitiveType = fastgltf::to_underlying(it->type); + primitive.vertexArray = vao; + + if(it->materialIndex.has_value()) { + primitive.materialUniformsIndex = it->materialIndex.value() + 1; // Adjust for default material + auto & material = asset->materials[it->materialIndex.value()]; + _MACRO_LOADMESH_TEXTURE(material.pbrData.baseColorTexture, primitive.albedoTexture, primitive.baseColorTexcoordIndex); + _MACRO_LOADMESH_TEXTURE(material.pbrData.metallicRoughnessTexture, primitive.metalRoughTexture, + primitive.metallicRoughnessTexcoordIndex); + _MACRO_LOADMESH_TEXTURE(material.normalTexture, primitive.normalTexture, primitive.normalTexcoordIndex); + _MACRO_LOADMESH_TEXTURE(material.occlusionTexture, primitive.occlusionTexture, primitive.occlusionTexcoordIndex); + _MACRO_LOADMESH_TEXTURE(material.emissiveTexture, primitive.emissiveTexture, primitive.emissiveTexcoordIndex); + if(material.volume) _MACRO_LOADMESH_TEXTURE(material.volume->thicknessTexture, primitive.thicknessTexture, + primitive.thicknessTexcoordIndex); + if(material.transmission) _MACRO_LOADMESH_TEXTURE(material.transmission->transmissionTexture, + primitive.transmissionTexture, primitive.transmissionTexcoordIndex); + if(material.clearcoat) { + _MACRO_LOADMESH_TEXTURE(material.clearcoat->clearcoatTexture, primitive.clearcoatTexture, + primitive.clearcoatTexcoordIndex); + _MACRO_LOADMESH_TEXTURE(material.clearcoat->clearcoatRoughnessTexture, primitive.clearcoatRoughnessTexture, + primitive.clearcoatRoughnessTexcoordIndex); + _MACRO_LOADMESH_TEXTURE(material.clearcoat->clearcoatNormalTexture, primitive.clearcoatNormalTexture, + primitive.clearcoatNormalTexcoordIndex); + } +#ifdef FASTGLTF_DIFFUSE_TRANSMISSION_SUPPORT + if(material.diffuseTransmission) { + _MACRO_LOADMESH_TEXTURE(material.diffuseTransmission->diffuseTransmissionTexture, primitive.diffuseTransmissionTexture, + primitive.diffuseTransmissionTexcoordIndex); + _MACRO_LOADMESH_TEXTURE(material.diffuseTransmission->diffuseTransmissionColorTexture, + primitive.diffuseTransmissionColorTexture, primitive.diffuseTransmissionColorTexcoordIndex); + } +#endif + } + else { + primitive.materialUniformsIndex = 0; + } + + auto & positionAccessor = asset->accessors[positionIt->accessorIndex]; + if(!positionAccessor.bufferViewIndex.has_value()) + continue; + + // Create the vertex buffer for this primitive, and use the accessor tools to copy directly into the mapped buffer. + glGenBuffers(1, &primitive.vertexBuffer); // This works for both Desktop OpenGL and WebGL2 + glBindBuffer(GL_ARRAY_BUFFER, primitive.vertexBuffer); + std::vector vertices_vec(positionAccessor.count); + auto * vertices = static_cast(vertices_vec.data()); + glBufferData(GL_ARRAY_BUFFER, positionAccessor.count * sizeof(Vertex), nullptr, GL_STATIC_DRAW); + { + int32_t _AN = 0; + _AN = injest_vec3_attribute(_AN, data_obj, &(*it), "POSITION", primitive.vertexBuffer, offsetof(Vertex, + position), [&](FVEC3 V, std::size_t idx) { + vertices[idx].position = FVEC3(V.x(), V.y(), V.z()); + }); + _AN = injest_vec4_attribute(_AN, data_obj, &(*it), "JOINTS_0", primitive.vertexBuffer, offsetof(Vertex, + joints), [&](FVEC4 V, std::size_t idx) { + vertices[idx].joints = FVEC4(V.x(), V.y(), V.z(), V.w()); + }); + _AN = injest_vec4_attribute(_AN, data_obj, &(*it), "JOINTS_1", primitive.vertexBuffer, offsetof(Vertex, + joints2), [&](FVEC4 V, std::size_t idx) { + vertices[idx].joints2 = FVEC4(V.x(), V.y(), V.z(), V.w()); + }); + _AN = injest_vec4_attribute(_AN, data_obj, &(*it), "WEIGHTS_0", primitive.vertexBuffer, offsetof(Vertex, + weights), [&](FVEC4 V, std::size_t idx) { + vertices[idx].weights = FVEC4(V.x(), V.y(), V.z(), V.w()); + }); + _AN = injest_vec4_attribute(_AN, data_obj, &(*it), "WEIGHTS_1", primitive.vertexBuffer, offsetof(Vertex, + weights2), [&](FVEC4 V, std::size_t idx) { + vertices[idx].weights2 = FVEC4(V.x(), V.y(), V.z(), V.w()); + }); + _AN = injest_vec3_attribute(_AN, data_obj, &(*it), "NORMAL", primitive.vertexBuffer, offsetof(Vertex, + normal), [&](FVEC3 V, std::size_t idx) { + vertices[idx].normal = FVEC3(V.x(), V.y(), V.z()); + }); + _AN = injest_vec4_attribute(_AN, data_obj, &(*it), "TANGENT", primitive.vertexBuffer, offsetof(Vertex, + tangent), [&](FVEC4 V, std::size_t idx) { + vertices[idx].tangent = FVEC4(V.x(), V.y(), V.z(), V.w()); + }); + _AN = injest_vec2_attribute(_AN, data_obj, &(*it), "TEXCOORD_0", primitive.vertexBuffer, offsetof(Vertex, + uv), [&](FVEC2 V, std::size_t idx) { + vertices[idx].uv = FVEC2(V.x(), V.y()); + }); + _AN = injest_vec2_attribute(_AN, data_obj, &(*it), "TEXCOORD_1", primitive.vertexBuffer, offsetof(Vertex, + uv2), [&](FVEC2 V, std::size_t idx) { + vertices[idx].uv2 = FVEC2(V.x(), V.y()); + }); + } + glBindVertexArray(vao); + glBindBuffer(GL_ARRAY_BUFFER, primitive.vertexBuffer); + glBufferData(GL_ARRAY_BUFFER, positionAccessor.count * sizeof(Vertex), vertices_vec.data(), GL_STATIC_DRAW); + + // Generate the indirect draw command + auto & draw = primitive.draw; + draw.instanceCount = 1; + draw.baseInstance = 0; + draw.baseVertex = 0; + draw.firstIndex = 0; + + auto & indexAccessor = asset->accessors[it->indicesAccessor.value()]; + if(!indexAccessor.bufferViewIndex.has_value()) + return false; + draw.count = static_cast(indexAccessor.count); + + // Create the index buffer and copy the indices into it. + glGenBuffers(1, &primitive.indexBuffer); + glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, primitive.indexBuffer); + if(indexAccessor.componentType == fastgltf::ComponentType::UnsignedByte || + indexAccessor.componentType == fastgltf::ComponentType::UnsignedShort) { + primitive.indexType = GL_UNSIGNED_SHORT; + std::uint16_t * tempIndices = new std::uint16_t[indexAccessor.count]; + fastgltf::copyFromAccessor(*asset, indexAccessor, tempIndices); + glBufferData(GL_ELEMENT_ARRAY_BUFFER, static_cast(indexAccessor.count * sizeof(std::uint16_t)), tempIndices, + GL_STATIC_DRAW); + delete[] tempIndices; + } + else { + primitive.indexType = GL_UNSIGNED_INT; + //std::uint32_t tempIndices[indexAccessor.count]; + std::uint32_t * tempIndices = new std::uint32_t[indexAccessor.count]; + fastgltf::copyFromAccessor(*asset, indexAccessor, tempIndices); + glBufferData(GL_ELEMENT_ARRAY_BUFFER, static_cast(indexAccessor.count * sizeof(std::uint32_t)), tempIndices, + GL_STATIC_DRAW); + delete[] tempIndices; + } + } + + glBindVertexArray(0); + return true; +} + +void make_small_magenta_texture(uint32_t new_magenta_tex) +{ + GL_CALL(glBindTexture(GL_TEXTURE_2D, new_magenta_tex)); + unsigned char clearBytes[4] = {255, 0, 255, 255}; // RGBA format + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, clearBytes)); + // Set texture parameters (optional but recommended) + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); + GL_CALL(glGenerateMipmap(GL_TEXTURE_2D)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, 0)); + return; +} + + +/** + * @brief Load an image from the GLTF data. + * + * @param shaders Pointer to the shader cache. + * @param data_obj Pointer to the GLTF data object. + * @param image Reference to the image to load. + * @param index The index of the image to load. + * @return true if the image was loaded successfully, false otherwise. + */ +bool injest_image(lv_opengl_shader_cache_t * shaders, lv_gltf_data_t * data_obj, fastgltf::Image & image, + uint32_t index) +{ + const auto & asset = GET_ASSET(data_obj); + auto getLevelCount = [](int32_t width, int32_t height) -> GLsizei { + return static_cast(1 + floor(log2(width > height ? width : height))); + }; + std::string _tex_id = std::string(lv_gltf_get_filename(data_obj)) + "_IMG" + std::to_string(index); + uint64_t hash = c_stringHash(_tex_id.c_str(), 0); + + GLuint texture = shaders->getCachedTexture(shaders, hash); + if(texture == GL_NONE) { + std::cout << "Image: (" << image.name << ") [" << _tex_id << "] -> " << std::to_string(hash) << "\n"; + // ---- + glGenTextures(1, &texture); + glBindTexture(GL_TEXTURE_2D, texture); + + //GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)); + //GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)); + //GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + //GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); + GL_CALL(glPixelStorei(GL_UNPACK_ALIGNMENT, 1)); + bool image_invalidated = false; + std::visit(fastgltf::visitor { + [](auto & arg) + { + LV_UNUSED(arg); + }, + [&](fastgltf::sources::URI & filePath) + { + assert(filePath.fileByteOffset == 0); // We don't support offsets with stbi. + assert(filePath.uri.isLocalPath()); // We're only capable of loading local files. + int32_t width, height, nrChannels; + std::cout << "Loading image: " << image.name << "\n"; + const std::string path(filePath.uri.path().begin(), filePath.uri.path().end()); // Thanks C++. + unsigned char * data = stbi_load(path.c_str(), &width, &height, &nrChannels, 4); + glTexStorage2D(GL_TEXTURE_2D, getLevelCount(width, height), GL_RGBA8, width, height); + glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, data); + stbi_image_free(data); + }, + [&](fastgltf::sources::Array & vector) + { + int32_t width, height, nrChannels; + std::cout << "Unpacking image data: " << image.name << "\n"; + + //int32_t webpRes = WebPGetInfo(reinterpret_cast(vector.bytes.data()), static_cast(vector.bytes.size()), &width, &height); + //if (webpRes) { + // std::cout << " TO-DO: FIX THIS (EMBEDDED) WEBP IMAGE DETECTED || WEBP IMAGE DETECTED || WEBP IMAGE DETECTED || WEBP IMAGE DETECTED || WEBP IMAGE DETECTED\n"; + //} + unsigned char * data = stbi_load_from_memory(reinterpret_cast(vector.bytes.data()), + static_cast(vector.bytes.size()), &width, &height, &nrChannels, 4); + glTexStorage2D(GL_TEXTURE_2D, getLevelCount(width, height), GL_RGBA8, width, height); + glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, data); + stbi_image_free(data); + }, + [&](fastgltf::sources::BufferView & view) + { + auto & bufferView = asset->bufferViews[view.bufferViewIndex]; + auto & buffer = asset->buffers[bufferView.bufferIndex]; + // Yes, we've already loaded every buffer into some GL buffer. However, with GL it's simpler + // to just copy the buffer data again for the texture. Besides, this is just an example. + + std::cout << "Unpacking image bufferView: " << image.name << " from " << bufferView.byteLength << " bytes.\n"; + std::visit(fastgltf::visitor { + // We only care about VectorWithMime here, because we specify LoadExternalBuffers, meaning + // all buffers are already loaded into a vector. + [](auto & arg) { + LV_UNUSED(arg); + }, + [&](fastgltf::sources::Array & vector) + { + int32_t width, height, nrChannels; +#ifdef LVGL_ENABLE_WEBP_IMAGES +#if LVGL_ENABLE_WEBP_IMAGES + int32_t webpRes = WebPGetInfo(reinterpret_cast(vector.bytes.data() + bufferView.byteOffset), + static_cast(bufferView.byteLength), &width, &height); + if(webpRes) { + WebPBitstreamFeatures features = WebPBitstreamFeatures(); + auto statusCode = WebPGetFeatures(reinterpret_cast(vector.bytes.data() + bufferView.byteOffset), + static_cast(bufferView.byteLength), &features); + if(statusCode == VP8_STATUS_OK) { + if(features.has_alpha) { + uint8_t * unpacked = WebPDecodeRGBA(reinterpret_cast(vector.bytes.data() + bufferView.byteOffset), + static_cast(bufferView.byteLength), &width, &height); + glTexStorage2D(GL_TEXTURE_2D, getLevelCount(width, height), GL_RGBA8, width, height); + glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, unpacked); + WebPFree(unpacked); + } + else { + uint8_t * unpacked = WebPDecodeRGB(reinterpret_cast(vector.bytes.data() + bufferView.byteOffset), + static_cast(bufferView.byteLength), &width, &height); + glTexStorage2D(GL_TEXTURE_2D, getLevelCount(width, height), GL_RGB8, width, height); + glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, GL_RGB, GL_UNSIGNED_BYTE, unpacked); + WebPFree(unpacked); + } + std::cout << "[WEBP] width / height: " << width << ", " << height << "\n"; + } + else { + // Could not load this webp file for some reason + make_small_magenta_texture(texture); + image_invalidated = true; + } + } + else +#endif /* LVGL_ENABLE_WEBP_IMAGES == true (or 1)*/ +#endif /* LVGL_ENABLE_WEBP_IMAGES */ + { + unsigned char * data = stbi_load_from_memory(reinterpret_cast(vector.bytes.data() + + bufferView.byteOffset), + static_cast(bufferView.byteLength), &width, &height, &nrChannels, 4); + if((width <= 0) || (height <= 0)) { + make_small_magenta_texture(texture); + image_invalidated = true; + std::cout << "[Image format unsupported] To enable WEBP image decoding, rebuild with LVGL_ENABLE_WEBP_IMAGES 1\n"; + } + else { + std::cout << "width / height: " << width << ", " << height << "\n"; + glTexStorage2D(GL_TEXTURE_2D, getLevelCount(width, height), GL_RGBA8, width, height); + glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, data); + stbi_image_free(data); + } + } + } + }, buffer.data); + }, + }, image.data); + + if(!image_invalidated) { + glGenerateMipmap(GL_TEXTURE_2D); + } + shaders->set_texture_cache_item(shaders, hash, texture); + GL_CALL(glBindTexture(GL_TEXTURE_2D, 0)); + } + data_obj->textures->emplace_back(Texture { texture }); + return true; +} + +/** + * @brief Load a camera from the GLTF data. + * + * @param viewer Pointer to the viewer. + * @param camera Reference to the camera to load. + * @return true if the camera was loaded successfully, false otherwise. + */ +/* +bool injest_camera(lv_gltf_view_t * viewer, fastgltf::Camera& camera) { + return true; + // The following matrix math is for the projection matrices as defined by the glTF spec: + // https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#projection-matrices + const auto& metrics = get_viewer_metrics(viewer); + std::visit(fastgltf::visitor { + [&](fastgltf::Camera::Perspective& perspective) { + FMAT4 mat(0.0f); + + assert(metrics->windowWidth != 0 && metrics->windowHeight != 0); + auto aspectRatio = perspective.aspectRatio.value_or(metrics->fWindowWidth / metrics->fWindowHeight); + mat[0][0] = 1.f / (aspectRatio * tan(0.5f * perspective.yfov)); + mat[1][1] = 1.f / (tan(0.5f * perspective.yfov)); + mat[2][3] = -1; + + if (perspective.zfar.has_value()) { + // Finite projection matrix + mat[2][2] = (*perspective.zfar + perspective.znear) / (perspective.znear - *perspective.zfar); + mat[3][2] = (2 * *perspective.zfar * perspective.znear) / (perspective.znear - *perspective.zfar); + } else { + // Infinite projection matrix + mat[2][2] = -1; + mat[3][2] = -2 * perspective.znear; + } + //viewer->cameras.emplace_back(mat); + }, + [&](fastgltf::Camera::Orthographic& orthographic) { + FMAT4 mat(1.0f); + mat[0][0] = 1.f / orthographic.xmag; + mat[1][1] = 1.f / orthographic.ymag; + mat[2][2] = 2.f / (orthographic.znear - orthographic.zfar); + mat[3][2] = (orthographic.zfar + orthographic.znear) / (orthographic.znear - orthographic.zfar); + //viewer->cameras.emplace_back(mat); + }, + }, camera.camera); + return true; +} +*/ + +/** + * @brief Fill probe information from the GLTF data. + * + * @param p_probe_info Pointer to the probe information structure. + * @param data Pointer to the GLTF data. + */ +void injest_fill_probe_info(gltf_probe_info * p_probe_info, lv_gltf_data_t * data) +{ + const auto & asset = GET_ASSET(data); + p_probe_info->imageCount = asset->images.size(); + p_probe_info->textureCount = asset->textures.size(); + p_probe_info->materialCount = asset->materials.size(); + p_probe_info->cameraCount = asset->cameras.size(); + p_probe_info->nodeCount = asset->nodes.size(); + p_probe_info->meshCount = asset->meshes.size(); + p_probe_info->sceneCount = asset->scenes.size(); + p_probe_info->animationCount = asset->animations.size(); +} + +bool lv_gltf_view_set_loadphase_callback(void (*_load_progress_callback)(const char *, const char *, float, float, + float, float)) +{ + lv_gltf_data_load_progress_callback = _load_progress_callback; + return true; +} + +char * fallback_load_file_to_buffer(const char * filename, size_t * outSize) +{ + // Open the file in binary read mode + FILE * file = fopen(filename, "rb"); + if(!file) { + printf("Failed to open file: %s\n", filename); + return NULL; + } + + // Seek to the end of the file to determine its size + fseek(file, 0, SEEK_END); + size_t fileSize = ftell(file); + fseek(file, 0, SEEK_SET); // Reset to the beginning of the file + + // Allocate memory for the buffer + char * buffer = (char *)malloc(fileSize); + if(!buffer) { + printf("Failed to allocate memory for buffer\n"); + fclose(file); + return NULL; + } + + // Read the file into the buffer + size_t bytesRead = fread(buffer, 1, fileSize, file); + fclose(file); + + // Check if the entire file was read + if(bytesRead != fileSize) { + printf("Error reading file: %s\n", filename); + free(buffer); + return NULL; + } + + // Set the output size + *outSize = (size_t)fileSize; + return buffer; +} + +void data_load_file_or_bytes(const char * gltf_path_or_bytes, size_t size_if_path_is_data, lv_gltf_data_t * _retdata, + lv_opengl_shader_cache_t * shaders) +{ + + static constexpr auto supportedExtensions = + //fastgltf::Extensions::KHR_draco_mesh_compression | + //fastgltf::Extensions::EXT_meshopt_compression | + fastgltf::Extensions::KHR_mesh_quantization | + fastgltf::Extensions::KHR_texture_transform | + fastgltf::Extensions::KHR_lights_punctual | + fastgltf::Extensions::KHR_materials_anisotropy | + fastgltf::Extensions::KHR_materials_clearcoat | + fastgltf::Extensions::KHR_materials_dispersion | + fastgltf::Extensions::KHR_materials_emissive_strength | + fastgltf::Extensions::KHR_materials_ior | + fastgltf::Extensions::KHR_materials_iridescence | + fastgltf::Extensions::KHR_materials_sheen | + fastgltf::Extensions::KHR_materials_specular | + fastgltf::Extensions::KHR_materials_pbrSpecularGlossiness + | // Depreciated, to enable support make sure to define FASTGLTF_ENABLE_DEPRECATED_EXT + fastgltf::Extensions::KHR_materials_transmission | + fastgltf::Extensions::KHR_materials_volume | + fastgltf::Extensions::KHR_materials_unlit | + //#ifdef LVGL_ENABLE_WEBP_IMAGES + // #if LVGL_ENABLE_WEBP_IMAGES + fastgltf::Extensions::EXT_texture_webp | + // #endif + //#endif + //fastgltf::Extensions::KHR_materials_diffuse_transmission | + fastgltf::Extensions::KHR_materials_variants; + + fastgltf::Parser parser(supportedExtensions); + + if(lv_gltf_data_load_progress_callback != NULL) { + lv_gltf_data_load_progress_callback("Initializing...", "SUBTEST1234", 2.0f, 5.f, 23.0f, 100.f); + } + + constexpr auto gltfOptions = + fastgltf::Options::DontRequireValidAssetMember | + fastgltf::Options::AllowDouble | + fastgltf::Options::LoadExternalBuffers | + fastgltf::Options::LoadExternalImages | + fastgltf::Options::GenerateMeshIndices; + + //fastgltf::Expected __asset; + //fastgltf::Asset __asset; + + if(size_if_path_is_data > 0) { + auto gltfFile = fastgltf::GltfDataBuffer::FromBytes(reinterpret_cast(gltf_path_or_bytes), + size_if_path_is_data); + if(!bool(gltfFile)) { + std::cerr << "Failed to open glTF bytes -> " << fastgltf::getErrorMessage(gltfFile.error()) << '\n'; + return; + } + auto __asset = parser.loadGltf(gltfFile.get(), ".", gltfOptions); + if(__asset.error() != fastgltf::Error::None) { + std::cerr << "Failed to decode glTF bytes: " << fastgltf::getErrorMessage(__asset.error()) << '\n'; + return; + } + __init_gltf_datastruct(_retdata, "from_bytes"); + set_asset(_retdata, std::move(__asset.get())); + } + else { +#ifndef FASTGLTF_HAS_MEMORY_MAPPED_FILE +#if 1 + size_t dataSize; + char * dataBuffer = fallback_load_file_to_buffer(gltf_path_or_bytes, &dataSize); + if(dataBuffer) { + if(dataSize > 0) { + std::cout << + "[ This build does not have access to memory mapped file functions - trying to use fallback functions... ]\n"; + data_load_file_or_bytes(dataBuffer, dataSize, _retdata, shaders); + // Free the allocated buffer after use + } + free(dataBuffer); + return; + } +#else + std::cout << + "[ This build can not open GLTF files from filesystems, use GLB's encoded into .h files instead with 'xxd -i myModel.glb > myModel.h' and call this function with the const char * that creates for the filename parameter, and the size of the array it created below the array as the size parameter of this GLTF load function. ]\n"; + __init_gltf_datastruct(_retdata, "no_file"); + _retdata->load_success = false; + +#endif + return; +#else +#if FASTGLTF_HAS_MEMORY_MAPPED_FILE + std::filesystem::path gltfFilePath = std::string_view { gltf_path_or_bytes }; + auto gltfFile = fastgltf::MappedGltfFile::FromPath(gltfFilePath); + if(!bool(gltfFile)) { + std::cerr << "Failed to open glTF file: " << gltfFilePath << " -> " << fastgltf::getErrorMessage( + gltfFile.error()) << '\n'; + return; + } + auto __asset = parser.loadGltf(gltfFile.get(), gltfFilePath.parent_path(), gltfOptions); + if(__asset.error() != fastgltf::Error::None) { + std::cerr << "Failed to decode glTF file: " << fastgltf::getErrorMessage(__asset.error()) << '\n'; + return; + } + __init_gltf_datastruct(_retdata, gltf_path_or_bytes); + set_asset(_retdata, std::move(__asset.get())); + std::cout << "[ Opened glTF file: " << gltfFilePath << " ]\n"; +#else + std::cout << + "[ This build can not open GLTF files from filesystems, you should use GLB's encoded into .h files instead with 'xxd -i myModel.glb > myModel.h' and call this function with the const char * that creates for the filename parameter, and the size of the array it created below the array as the size parameter of this GLTF load function. ]\n"; + __init_gltf_datastruct(_retdata, "no_file"); + _retdata->load_success = false; + return; +#endif +#endif + } + + + + gltf_probe_info _probe; + injest_fill_probe_info(&_probe, _retdata); + set_probe(_retdata, _probe); + if(lv_gltf_data_load_progress_callback != NULL) { + lv_gltf_data_load_progress_callback("Loading glTF file...", "SUBTEST1234", 2.0f, 5.f, 23.0f, 100.f); + } + + // We load images first. + const auto & asset = GET_ASSET(_retdata); + //const auto& metrics = get_viewer_metrics(viewer); + //metrics->vertex_count = 0; + //if (_probe.meshCount > 0) { + // metrics->vertex_count = 0; + /* for (auto& mesh : asset->meshes) { + metrics->vertex_count += get_mesh_total_vertex_count(asset, mesh); + } */ //} + + // Parse the visible node structure to get a world transform matrix for each mesh component + // instance per node, and apply that matrix to the min/max of the untransformed mesh, then + // grow a bounding volume to include those transformed points + + int32_t _sceneIndex = 0; + bool _firstVisibleMesh = true; + fastgltf::iterateSceneNodes(*asset, _sceneIndex, FMAT4(), [&](fastgltf::Node & node, FMAT4 matrix) { + if(_firstVisibleMesh) { + if(node.meshIndex.has_value()) { + _firstVisibleMesh = false; + injest_set_initial_bounds(_retdata, asset, matrix, asset->meshes[node.meshIndex.value()]); + } + } + else { + if(node.meshIndex.has_value()) { + injest_grow_bounds_to_include(_retdata, asset, matrix, asset->meshes[node.meshIndex.value()]); + } + } + }); + + allocate_index(_retdata, asset->nodes.size()); + fastgltf::namegen_iterateSceneNodes(*asset, _sceneIndex, [&](fastgltf::Node & node, std::string & nodePath, + std::string & nodeIp, std::size_t nodeIndex, std::size_t childIndex) { + LV_UNUSED(childIndex); + set_node_at_path(_retdata, nodePath, &node); + set_node_at_ip(_retdata, nodeIp, &node); + set_node_index(_retdata, nodeIndex, &node); + }); + // --------- + + { + uint32_t i = 0; + for(auto & image : asset->images) { + injest_image(shaders, _retdata, image, i); + i++; + if(lv_gltf_data_load_progress_callback != NULL) { + lv_gltf_data_load_progress_callback("Loading Images", "SUBTEST1234", + 2.f + (((float)i / (float)(_probe.imageCount)) * 3.0f), 5.f, 23.0f, 100.f); + } + } + } + //for (auto& material : asset.materials) { loadMaterial(viewer, material); } + uint16_t lightnum = 0; + for(auto & light : asset->lights) { + injest_light(asset, _retdata, lightnum, light, 0); + lightnum += 1; + } + for(auto & mesh : asset->meshes) { + injest_mesh(_retdata, mesh); + } + + //for (auto& camera : asset->cameras) { injest_camera(viewer, camera); } // Loading the cameras (possibly) requires knowing the viewport size, which we get using glfwGetWindowSize above. + + if(lv_gltf_data_load_progress_callback != NULL) { + lv_gltf_data_load_progress_callback("Done.", "SUBTEST1234", 5.0, 5.f, 23.0f, 100.f); + } + + _retdata->load_success = true; + //get_viewer_state(viewer)->load_success = true; + + // ----------- + + //if (_retdata->probe.meshCount > 0) { + // std::cout << __make_mesh_summary( _retdata ); } + //if (_retdata->probe.materialCount > 0) { + // std::cout << __make_material_summary( _retdata ); } + /* + if (_probe.imageCount > 0) { + std::cout << " + Images: " << _probe.imageCount << "\n"; + for (auto& material : asset->images) { + std::cout << " | + " << material.name << "\n"; }} + if (_probe.textureCount > 0) { + std::cout << " + Textures: " << _probe.textureCount << "\n"; + for (auto& texture : asset->textures) { + if (texture.name != "") { std::cout << " | + " << texture.name << "\n"; }}} + if (_probe.cameraCount > 0) { + std::cout << " + Cameras: " << _probe.cameraCount << "\n"; + for (auto& camera : asset->cameras) { + std::cout << " + " << camera.name << "\n"; }} + if (_probe.sceneCount > 0) { + std::cout << " + Scenes: " << _probe.sceneCount << "\n"; + std::size_t snum = 1; + for (auto& scene : asset->scenes) { + std::cout << " : #" << snum << " Rootnode Indexs: [ "; + for (auto& rootnode : scene.nodeIndices) { + if (snum > 1) { + std::cout << ", "; + } + std::cout << rootnode ; + } + std::cout << " ]\n"; + snum++; + } + }*/ + + uint32_t _defaultScene = 0; + if(asset->defaultScene.has_value()) { + _defaultScene = asset->defaultScene.value(); + std::cout << " (Default Scene = #" << (_defaultScene + 1) << ") " << "\n"; + } + + /*if (_probe.nodeCount > 0) { + std::cout << " + Nodes: " << _probe.nodeCount << "\n"; + for (auto& node : asset->nodes) { + std::cout << " : '" << node.name << "'\n"; }} + + if (_probe.sceneCount > _defaultScene) { + std::cout << "Visible Heirarchy: \n"; + auto& scene = asset->scenes[_defaultScene]; + for (auto& rootnode : scene.nodeIndices) { + __debug_print_node(*asset, asset->nodes[rootnode], 1); } }*/ + + return; +} + +void lv_gltf_data_load_bytes(const void * gltf_bytes, size_t gltf_data_size, lv_gltf_data_t * ret_data, + lv_opengl_shader_cache_t * shaders) +{ + data_load_file_or_bytes((const char *)gltf_bytes, gltf_data_size, ret_data, shaders); +} + +void lv_gltf_data_load_file(const char * gltf_path, lv_gltf_data_t * ret_data, lv_opengl_shader_cache_t * shaders) +{ + data_load_file_or_bytes(gltf_path, 0, ret_data, shaders); +} diff --git a/lib/lv_gltf/data/sup/reports.cpp b/lib/lv_gltf/data/sup/reports.cpp new file mode 100644 index 0000000..ff6309c --- /dev/null +++ b/lib/lv_gltf/data/sup/reports.cpp @@ -0,0 +1,268 @@ + +#include "../lv_gltf_data_internal.h" +#include "../lv_gltf_data_internal.hpp" +#include "../lv_gltf_override.h" + +#include +#include + +static constexpr std::array componentTypeNames = { + "BYTE", + "UNSIGNED BYTE", + "SHORT", + "UNSIGNED SHORT", + "INT", + "uint32_t", + "FLOAT", + "INVALID", + "INVALID", + "INVALID", + "DOUBLE" +}; + +constexpr std::string_view reports_get_component_type_name(fastgltf::ComponentType componentType) noexcept +{ + static_assert(std::is_same_v, std::uint16_t>); + if(componentType == fastgltf::ComponentType::Invalid) + return ""; + auto udx = static_cast>(componentType) & 8191; + auto ldx = static_cast>(fastgltf::ComponentType::Byte); + auto idx = static_cast(udx - ldx); + //std::cout << "\nudx = " << std::to_string(udx) << " | ldx = " < 0) { + auto it = mesh.primitives.begin(); + auto * positionIt = it->findAttribute("POSITION"); + auto & positionAccessor = asset->accessors[positionIt->accessorIndex]; + if(positionAccessor.bufferViewIndex.has_value()) { + _outcount += positionAccessor.count; + } + } + return _outcount; +} + +std::string reports_make_mesh_summary(lv_gltf_data_t * data) +{ + LV_UNUSED(data); + return std::string("[Mesh reports being revised check back soon.]\n"); + /* + const auto& asset = GET_ASSET(data); + const auto& probe = PROBE(data); + std::string _out = ""; + _out += std::string(" + Meshes: ") + std::to_string(probe->meshCount) + "\n"; + for (auto& mesh : asset->meshes) { + _out += std::string(" | + '") + std::string(mesh.name) + "' (" + std::to_string(reports_get_mesh_total_vertex_count(asset, mesh)) + " vertices)" + "\n"; + auto _ptlbl = "(Unrecognized)"; + //if (data->__prim_type == 4) { + // _ptlbl = "Triangles"; + //} else if (data->__prim_type == 5) { + // _ptlbl = "Triangle Strip"; + //} else if (data->__prim_type == 6) { + // _ptlbl = "Triangle Fan"; + //} + //_out += std::string(" | Type: ") + std::string(_ptlbl) + " ( #" + std::to_string(data->__prim_type) + std::string(" )\n"); + _out += std::string(" | Type: ") + std::string(_ptlbl) + std::string("\n"); + } + return _out; */ +} + +void lv_gltf_data_make_mesh_summary(lv_gltf_data_t * data, char * dest_buffer, uint32_t dest_buffer_size) +{ + dest_buffer[0] = '\0'; + strncpy(dest_buffer, reports_make_mesh_summary(data).c_str(), dest_buffer_size); + dest_buffer[dest_buffer_size - 1] = '\0'; + +} + +std::string reports_make_material_summary(lv_gltf_data_t * data) +{ + LV_UNUSED(data); + return std::string("[Material reports being revised check back soon.]\n"); + /* + const auto& asset = GET_ASSET(data); + const auto& probe = PROBE(data); + std::string _out = ""; + _out += std::string(" + Materials: ") + std::to_string(probe->materialCount) + "\n"; + for (auto& material : asset->materials) { + _out += std::string(" | + '") + std::string(material.name) + "'\n"; } + return _out; + */ +} + +void lv_gltf_data_make_material_summary(lv_gltf_data_t * data, char * dest_buffer, uint32_t dest_buffer_size) +{ + dest_buffer[0] = '\0'; + strncpy(dest_buffer, reports_make_material_summary(data).c_str(), dest_buffer_size); + dest_buffer[dest_buffer_size - 1] = '\0'; +} + +std::string reports_make_images_summary(lv_gltf_data_t * data) +{ + LV_UNUSED(data); + return std::string("[Image reports being revised check back soon.]\n"); + /* + const auto& asset = GET_ASSET(data); + const auto& probe = PROBE(data); + int32_t _result; + _result = 0; + std::string _out = ""; + _out += std::string(" + Images: ") + std::to_string(probe->imageCount) + "\n"; + for (auto& image : asset->images) { + _out += std::string(" | + ") + ((image.name != "") ? (std::string("'") + std::string(image.name) + std::string("':") ) : std::string("")); + + + std::visit(fastgltf::visitor { + [](auto& arg) {}, + [&](fastgltf::sources::URI& filePath) { + _out += std::string("Filepath: ") + std::string(filePath.uri.path().begin(), filePath.uri.path().end()) + std::string("\n"); + //_out += std::string("Filepath: ") + std::string(uriString) + std::string("\n"); + //const std::string path(filePath.uri.path().begin(), filePath.uri.path().end()); // Thanks C++. + }, + [&](fastgltf::sources::Array& vector) { + int32_t width, height, nrChannels; + _result = stbi_info_from_memory(reinterpret_cast(vector.bytes.data()), static_cast(vector.bytes.size()), &width, &height, &nrChannels); + int32_t _fullbyteSize = width * height * nrChannels; + int32_t compRatio = 100 - ((vector.bytes.size() * 100) / _fullbyteSize ); + _out += + std::string("File [ ") + std::string(std::to_string(static_cast(vector.bytes.size()))) + std::string("b ]->") + + std::string("[ ") + std::to_string(width) + std::string(", ") + std::to_string(height) + std::string(" ") + + std::string( (nrChannels == 4) ? "RGBA" : (nrChannels == 3) ? "RGB" : (std::string("Channels: ") + std::to_string(nrChannels)) ) + + std::string(" ]") + std::string( compRatio > 0 ? ( std::string(", Compressed: ") + std::to_string(compRatio) + std::string("%") ) : "") + std::string("\n"); + }, + [&](fastgltf::sources::BufferView& view) { + auto& bufferView = asset->bufferViews[view.bufferViewIndex]; + auto& buffer = asset->buffers[bufferView.bufferIndex]; + std::visit(fastgltf::visitor { + // We only care about VectorWithMime here, because we specify LoadExternalBuffers, meaning + // all buffers are already loaded into a vector. + [](auto& arg) {}, + [&](fastgltf::sources::Array& vector) { + int32_t width, height, nrChannels; + _result = stbi_info_from_memory(reinterpret_cast(vector.bytes.data() + bufferView.byteOffset), static_cast(bufferView.byteLength), &width, &height, &nrChannels); + int32_t _fullbyteSize = width * height * nrChannels; + int32_t compRatio = 100 - ((static_cast(bufferView.byteLength) * 100) / _fullbyteSize ); + _out += + std::string("Buffer [ ") + std::string(std::to_string(static_cast(bufferView.byteLength))) + std::string(" ]->") + + std::string("[ ") + std::to_string(width) + std::string(", ") + std::to_string(height) + std::string(" ") + + std::string( (nrChannels == 4) ? "RGBA" : (nrChannels == 3) ? "RGB" : (std::string("Channels: ") + std::to_string(nrChannels)) ) + + std::string(" ]") + std::string( compRatio > 0 ? ( std::string(", Compressed: ") + std::to_string(compRatio) + std::string("%") ) : "") + std::string("\n"); + } + }, buffer.data); + }, + }, image.data); + + + } + return _out; + */ +} + +void lv_gltf_data_make_images_summary(lv_gltf_data_t * data, char * dest_buffer, uint32_t dest_buffer_size) +{ + dest_buffer[0] = '\0'; + strncpy(dest_buffer, reports_make_images_summary(data).c_str(), dest_buffer_size); + dest_buffer[dest_buffer_size - 1] = '\0'; + +} + +std::string reports_make_scenes_summary(lv_gltf_data_t * data) +{ + const auto & asset = GET_ASSET(data); + const auto & probe = PROBE(data); + std::string _out = ""; + _out += std::string(" + Scenes: ") + std::to_string(probe->sceneCount) + "\n"; + for(auto & scene : asset->scenes) { + _out += std::string(" | + '") + std::string(scene.name) + "'\n"; + } + return _out; +} + +void lv_gltf_data_make_scenes_summary(lv_gltf_data_t * data, char * dest_buffer, uint32_t dest_buffer_size) +{ + dest_buffer[0] = '\0'; + strncpy(dest_buffer, reports_make_scenes_summary(data).c_str(), dest_buffer_size); + dest_buffer[dest_buffer_size - 1] = '\0'; + +} + + +std::string reports_make_animations_summary(lv_gltf_data_t * data) +{ + LV_UNUSED(data); + return std::string("[Animations reports being revised check back soon.]\n"); + /* + //auto& asset = data->asset; + const auto& asset = GET_ASSET(data); + const auto& probe = PROBE(data); + std::string _out = ""; + _out += std::string(" + Animations: ") + std::to_string(probe->animationCount) + "\n"; + for (auto& animation : asset->animations) { + _out += std::string(" | + '") + std::string(animation.name) + "'\n"; + std::cout << "ANIMATION '" << animation.name << "': " << "\n"; + std::cout << "Channels: " << std::to_string(animation.channels.size()) << "\n"; + std::cout << "Samplers: " << std::to_string(animation.samplers.size()) << "\n"; + for (uint64_t i=0; i < animation.channels.size(); i++) { + auto& channel = animation.channels[i]; + auto& sampler = animation.samplers[i]; + std::cout << "Channel #" << std::to_string(i+1) << "\n"; + std::size_t samplerIndex = channel.samplerIndex; + //Optional nodeIndex; + fastgltf::AnimationPath path = channel.path; + std::cout << " Sampler Index #" << std::to_string(samplerIndex) << " | "; + if (path == fastgltf::AnimationPath::Translation) { + std::cout << " TRANSLATION | "; + } else if (path == fastgltf::AnimationPath::Rotation) { + std::cout << " ROTATION | "; + } else if (path == fastgltf::AnimationPath::Scale) { + std::cout << " SCALE | "; + } else if (path == fastgltf::AnimationPath::Weights) { + std::cout << " WEIGHTS | "; + } + if (channel.nodeIndex.has_value()) { + std::cout << "Node Index #" << std::to_string(channel.nodeIndex.value()) ; + std::cout << " | Name = " << asset->nodes[channel.nodeIndex.value()].name ; + + } + std::cout << "\n"; + std::cout << "Sampler #" << std::to_string(i+1) << "\n"; + std::cout << " Input Accessor #" << std::to_string(sampler.inputAccessor) << ", "; + auto& _inAcc = asset->accessors[sampler.inputAccessor]; + if (_inAcc.bufferViewIndex.has_value()) { + std::cout << " BufferViewIndex = " << std::to_string(_inAcc.bufferViewIndex.value()) << " | "; } + std::cout << " ByteOffset = " << std::to_string(_inAcc.byteOffset) << " | "; + std::cout << " Count = " << std::to_string(_inAcc.count) << " | "; + std::cout << " AccessorType = " << fastgltf::getAccessorTypeName(_inAcc.type) << " | "; + std::cout << " ComponentType = " << reports_get_component_type_name(_inAcc.componentType) << " | "; + //if (_inAcc.bufferViewIndex.has_value()) { + // for (size_t ii=0; ii < _inAcc.count; ii++) { + // float inval = fastgltf::getAccessorElement(asset, _inAcc, ii); + // std::cout << "ii: " << std::to_string(ii) << " = " << std::to_string(inval) << "\n"; + // } + //} + + std::cout << " Output Accessor #" << std::to_string(sampler.outputAccessor) << ", "; + auto& _outAcc = asset->accessors[sampler.outputAccessor]; + if (_outAcc.bufferViewIndex.has_value()) { + std::cout << " BufferViewIndex = " << std::to_string(_outAcc.bufferViewIndex.value()) << " | "; } + std::cout << " ByteOffset = " << std::to_string(_outAcc.byteOffset) << " | "; + std::cout << " Count = " << std::to_string(_outAcc.count) << " | "; + std::cout << " AccessorType = " << fastgltf::getAccessorTypeName(_outAcc.type) << " | "; + std::cout << " ComponentType = " << reports_get_component_type_name(_outAcc.componentType) << " | "; + + std::cout << "\n"; + } + } + return _out; + */ +} + +void lv_gltf_data_make_animations_summary(lv_gltf_data_t * data, char * dest_buffer, uint32_t dest_buffer_size) +{ + dest_buffer[0] = '\0'; + strncpy(dest_buffer, reports_make_animations_summary(data).c_str(), dest_buffer_size); +} diff --git a/lib/lv_gltf/data/sup/utils.cpp b/lib/lv_gltf/data/sup/utils.cpp new file mode 100644 index 0000000..c290edf --- /dev/null +++ b/lib/lv_gltf/data/sup/utils.cpp @@ -0,0 +1,207 @@ +#include +#include +#include + +#include +#include /* GL_CALL */ + +#include +#include +#include +#include "../lv_gltf_data_internal.hpp" + +_VEC3 get_cached_centerpoint(_DATA D, _UINT I, int32_t P, _MAT4 M); + +FVEC4 lv_gltf_get_primitive_centerpoint(lv_gltf_data_t * ret_data, fastgltf::Mesh & mesh, uint32_t prim_num) +{ + FVEC4 _retval = FVEC4(0.0f); + FVEC3 _vmin = FVEC3(999999999.f); + FVEC3 _vmax = FVEC3(-999999999.f); + FVEC3 _vcen = FVEC3(0.f); + float _vrad = 0.f; + + if(mesh.primitives.size() > prim_num) { + const auto & it = mesh.primitives[prim_num]; + const auto & asset = GET_ASSET(ret_data); + auto * positionIt = it.findAttribute("POSITION"); + auto & positionAccessor = asset->accessors[positionIt->accessorIndex]; + if(positionAccessor.bufferViewIndex.has_value()) { + if(positionAccessor.min.has_value() && positionAccessor.max.has_value()) { + FVEC4 _tmin = FVEC4( + (float)(positionAccessor.min.value().get((size_t)0)), + (float)(positionAccessor.min.value().get((size_t)1)), + (float)(positionAccessor.min.value().get((size_t)2)), + 0.f); + FVEC4 _tmax = FVEC4( + (float)(positionAccessor.max.value().get((size_t)0)), + (float)(positionAccessor.max.value().get((size_t)1)), + (float)(positionAccessor.max.value().get((size_t)2)), + 0.f); + + _vmax[0] = std::max(_tmin.x(), _tmax.x()); + _vmax[1] = std::max(_tmin.y(), _tmax.y()); + _vmax[2] = std::max(_tmin.z(), _tmax.z()); + _vmin[0] = std::min(_tmin.x(), _tmax.x()); + _vmin[1] = std::min(_tmin.y(), _tmax.y()); + _vmin[2] = std::min(_tmin.z(), _tmax.z()); + _vcen[0] = (_vmax[0] + _vmin[0]) / 2.0f; + _vcen[1] = (_vmax[1] + _vmin[1]) / 2.0f; + _vcen[2] = (_vmax[2] + _vmin[2]) / 2.0f; + float size_x = _vmax[0] - _vmin[0]; + float size_y = _vmax[1] - _vmin[1]; + float size_z = _vmax[2] - _vmin[2]; + _vrad = std::sqrt((size_x * size_x) + (size_y * size_y) + (size_z * size_z)) / 2.0f; + _retval[0] = _vcen[0]; + _retval[1] = _vcen[1]; + _retval[2] = _vcen[2]; + _retval[3] = _vrad; + } + else { + std::cout << "*** COULD NOT GET PRIMITIVE CENTER POINT - NO MIN/MAX DEFINED ***\n"; + } + } + } + return _retval; +} + +FVEC3 lv_gltf_get_centerpoint(lv_gltf_data_t * gltf_data, FMAT4 matrix, uint32_t meshIndex, int32_t elem) +{ + if(!centerpoint_cache_contains(gltf_data, meshIndex, elem)) recache_centerpoint(gltf_data, meshIndex, elem); + return get_cached_centerpoint(gltf_data, meshIndex, elem, matrix); +} + +bool lv_gltf_data_utils_get_texture_info(lv_gltf_data_t * data_obj, uint32_t model_texture_index, uint32_t mipmapnum, + size_t * byte_count, uint32_t * width, uint32_t * height, bool * has_alpha) +{ + *byte_count = 0; + if(model_texture_index < data_obj->textures->size()) { + uint32_t texid = (*data_obj->textures)[model_texture_index].texture; + // Bind the texture + GL_CALL(glBindTexture(GL_TEXTURE_2D, texid)); + int32_t internalFormat; + GL_CALL(glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_INTERNAL_FORMAT, &internalFormat)); + + // Determine if the texture has an alpha channel + *has_alpha = false; + bool not_valid = false; + + switch(internalFormat) { + case GL_RGBA: + case GL_BGRA: + case GL_RGBA8: + *has_alpha = true; + break; + case GL_RGB: + case GL_BGR: + case GL_RGB8: + *has_alpha = false; + break; + default: + // Handle other formats if necessary + not_valid = true; + break; + } + // even if the pixel format is invalid, we can still get the width and height + int _twidth; + GL_CALL(glGetTexLevelParameteriv(GL_TEXTURE_2D, mipmapnum, GL_TEXTURE_WIDTH, &_twidth)); + *width = (uint32_t)(_twidth); + int _theight; + GL_CALL(glGetTexLevelParameteriv(GL_TEXTURE_2D, mipmapnum, GL_TEXTURE_HEIGHT, &_theight)); + *height = (uint32_t)(_theight); + GL_CALL(glBindTexture(GL_TEXTURE_2D, 0)); + + if(!not_valid) { + *byte_count = _twidth * _theight * (*has_alpha ? 4 : 3); + return true; + } + else { + return false; + } + } + return false; +} + +bool lv_gltf_data_utils_get_texture_pixels(void * pixels, lv_gltf_data_t * data_obj, uint32_t model_texture_index, + uint32_t mipmapnum, uint32_t width, uint32_t height, bool has_alpha) +{ + LV_UNUSED( + width); // This parameter is specified because WebGL can't read a texture's width from the GPU, however this isn't yet implemented so for now it either uses the GPU or it fails. + LV_UNUSED( + height); // This parameter is specified because WebGL can't read a texture's width from the GPU, however this isn't yet implemented so for now it either uses the GPU or it fails. + if(model_texture_index < data_obj->textures->size()) { + uint32_t texid = (*data_obj->textures)[model_texture_index].texture; + // Bind the texture + GL_CALL(glBindTexture(GL_TEXTURE_2D, texid)); + glGetTexImage(GL_TEXTURE_2D, mipmapnum, (has_alpha) ? GL_RGBA : GL_RGB, GL_UNSIGNED_BYTE, pixels); + GL_CALL(glBindTexture(GL_TEXTURE_2D, 0)); + return true; + } + return false; +} + +void lv_gltf_data_utils_swap_pixels_red_blue(void * pixels, size_t byte_total_count, bool has_alpha) +{ + char * pixel_buffer = (char *) pixels; + size_t bytes_per_pixel = has_alpha ? 4 : 3; + size_t pixel_count = (byte_total_count / bytes_per_pixel); + if(bytes_per_pixel == 4) { + for(size_t p = 0; p < pixel_count; p++) { + size_t index = p << 2; + uint8_t r = pixel_buffer[index + 0]; + uint8_t g = pixel_buffer[index + 1]; + uint8_t b = pixel_buffer[index + 2]; + uint8_t a = pixel_buffer[index + 3]; + pixel_buffer[index + 0] = b; + pixel_buffer[index + 1] = g; + pixel_buffer[index + 2] = r; + pixel_buffer[index + 3] = a; + } + } + else { + for(size_t p = 0; p < pixel_count; p++) { + size_t index = p * 3; + uint8_t r = pixel_buffer[index + 0]; + uint8_t g = pixel_buffer[index + 1]; + uint8_t b = pixel_buffer[index + 2]; + pixel_buffer[index + 0] = b; + pixel_buffer[index + 1] = g; + pixel_buffer[index + 2] = r; + } + } +} + +/* Caller becomes responsible for freeing data of the result if data_size > 0, but if a new_image_dsc is passed to this function with a data_size > 0, it will free it's data first. */ +void lv_gltf_data_utils_texture_to_image_dsc(lv_image_dsc_t * new_image_dsc, lv_gltf_data_t * data_obj, + uint32_t model_texture_index) +{ + size_t byte_total_count = 0; + uint32_t source_pixel_width = 0; + uint32_t source_pixel_height = 0; + bool has_alpha = false; + uint8_t * pixel_buffer; + if(lv_gltf_data_utils_get_texture_info(data_obj, model_texture_index, 0, &byte_total_count, &source_pixel_width, + &source_pixel_height, &has_alpha)) { + pixel_buffer = (uint8_t *)lv_malloc(byte_total_count); + if(lv_gltf_data_utils_get_texture_pixels(pixel_buffer, data_obj, model_texture_index, 0, source_pixel_width, + source_pixel_height, has_alpha)) { + if(pixel_buffer == NULL || byte_total_count == 0 || source_pixel_width == 0) return; + + if(new_image_dsc->data_size > 0) { + lv_free((uint8_t *)new_image_dsc->data); + new_image_dsc->data = NULL; + new_image_dsc->data_size = 0; + } + + lv_gltf_data_utils_swap_pixels_red_blue(pixel_buffer, byte_total_count, has_alpha); + size_t bytes_per_pixel = has_alpha ? 4 : 3; + size_t pixel_count = (byte_total_count / bytes_per_pixel); + + new_image_dsc->data = (const uint8_t *)pixel_buffer; + new_image_dsc->data_size = byte_total_count; + new_image_dsc->header.w = source_pixel_width; + new_image_dsc->header.h = (uint16_t)(pixel_count / source_pixel_width); + new_image_dsc->header.cf = has_alpha ? LV_COLOR_FORMAT_ARGB8888 : LV_COLOR_FORMAT_RGB888; + } + } +} + diff --git a/lib/lv_gltf/view/lv_gltf_view.cpp b/lib/lv_gltf/view/lv_gltf_view.cpp new file mode 100644 index 0000000..60be81c --- /dev/null +++ b/lib/lv_gltf/view/lv_gltf_view.cpp @@ -0,0 +1,1460 @@ + +#include +#include + +#include "lv_gltf_view.h" +#include "../data/lv_gltf_override.h" +#include "lv_gltf_view_internal.hpp" +#include "sup/include/shader_includes.h" +#include +#include +#include +#include +#include + +#include +#include /* GL_CALL */ + +#include +#include +#include + +#define STB_IMAGE_IMPLEMENTATION +#include "stb_image/stb_image.h" +#define STB_IMAGE_WRITE_IMPLEMENTATION +#include "stb_image/stb_image_write.h" +#define STB_IMAGE_RESIZE_IMPLEMENTATION +#include "stb_image/stb_image_resize.h" + +#include "../data/lv_gltf_data.h" +#include "../data/lv_gltf_data_internal.hpp" +#include "../data/lv_gltf_data_internal.h" + +static MapofTransformMap _ibmBySkinThenNode; + + +namespace fastgltf +{ +FASTGLTF_EXPORT template +#if FASTGLTF_HAS_CONCEPTS + requires std::same_as, Asset> + && std::is_invocable_v +#endif +inline void custom_iterateSceneNodes(AssetType&& asset, std::size_t sceneIndex, math::fmat4x4 * initial, + Callback callback) +{ + auto & scene = asset.scenes[sceneIndex]; + auto & nodes = asset.nodes; + auto function = [&](std::size_t nodeIndex, math::fmat4x4 & parentWorldMatrix, auto & self) -> void { + //assert(asset.nodes.size() > nodeIndex); + auto & node = nodes[nodeIndex]; + auto _localMat = getTransformMatrix(node, math::fmat4x4()); + std::invoke(callback, node, parentWorldMatrix, _localMat); + uint32_t num_children = node.children.size(); + if(num_children > 0) { + math::fmat4x4 _parentWorldTemp = parentWorldMatrix * _localMat; + if(num_children > 1) { + math::fmat4x4 per_child_copy = math::fmat4x4(_parentWorldTemp); + for(auto & child : node.children) self(child, per_child_copy, self); + } + else { + self(node.children[0], _parentWorldTemp, self); + } + } + }; + // auto tempmat = FMAT4(*initial); + //for (auto& sceneNode : scene.nodeIndices) function(sceneNode, &tempmat, function); + for(auto & sceneNode : scene.nodeIndices) function(sceneNode, *initial, function); +} +} +// It's simpler here to just declare the functions as part of the fastgltf::math namespace. +namespace fastgltf::math +{ +/** Creates a right-handed view matrix */ +[[nodiscard]] _MAT4 lookAtRH(const fvec3 & eye, const fvec3 & center, const fvec3 & up) noexcept +{ + auto dir = normalize(center - eye); + auto lft = normalize(cross(dir, up)); + auto rup = cross(lft, dir); + + mat ret(1.f); + ret.col(0) = { lft.x(), rup.x(), -dir.x(), 0.f }; + ret.col(1) = { lft.y(), rup.y(), -dir.y(), 0.f }; + ret.col(2) = { lft.z(), rup.z(), -dir.z(), 0.f }; + ret.col(3) = { -dot(lft, eye), -dot(rup, eye), dot(dir, eye), 1.f }; + return ret; +} + +/** + * Creates a right-handed perspective matrix, with the near and far clips at -1 and +1, respectively. + * @param fov The FOV in radians + */ +[[nodiscard]] _MAT4 perspectiveRH(float fov, float ratio, float zNear, float zFar) noexcept +{ + mat ret(0.f); + auto tanHalfFov = std::tan(fov / 2.f); + ret.col(0).x() = 1.f / (ratio * tanHalfFov); + ret.col(1).y() = 1.f / tanHalfFov; + ret.col(2).z() = -(zFar + zNear) / (zFar - zNear); + ret.col(2).w() = -1.f; + ret.col(3).z() = -(2.f * zFar * zNear) / (zFar - zNear); + return ret; +} + +template +[[nodiscard]] fastgltf::math::quat eulerToQuaternion(T P, T Y, T R) +{ + // Convert degrees to radians if necessary + // roll = roll * (M_PI / 180.0); + // pitch = pitch * (M_PI / 180.0); + // yaw = yaw * (M_PI / 180.0); + T H = T(0.5); + Y *= H; + P *= H; + R *= H; + T cy = cos(Y), sy = sin(Y), cp = cos(P), sp = sin(P), cr = cos(R), sr = sin(R); + T cr_cp = cr * cp, sp_sy = sp * sy, sr_cp = sr * cp, sp_cy = sp * cy; + return fastgltf::math::quat( + sr_cp * cy - cr * sp_sy, // X + sr_cp * sy + cr * sp_cy, // Y + cr_cp * sy - sr * sp_cy, // Z + cr_cp * cy + sr * sp_sy // W + ); +} + +template +[[nodiscard]] fastgltf::math::vec quaternionToEuler(fastgltf::math::quat q) +{ + T Q11 = q[1] * q[1]; + // Roll (Z) + T sinr_cosp = T(2.0) * (q[3] * q[0] + q[1] * q[2]); + T cosr_cosp = T(1.0) - T(2.0) * (q[0] * q[0] + Q11); + // Pitch (X) + T sinp = T(2.0) * (q[3] * q[1] - q[2] * q[0]); + // Yaw (Y) + T siny_cosp = T(2.0) * (q[3] * q[2] + q[0] * q[1]); + T cosy_cosp = T(1.0) - T(2.0) * (Q11 + q[2] * q[2]); + + return fastgltf::math::vec( + (std::abs(sinp) >= T(1)) ? std::copysign(T(3.1415926) / T(2), sinp) : std::asin(sinp), + std::atan2(siny_cosp, cosy_cosp), + std::atan2(sinr_cosp, cosr_cosp) + ); +} + +} // namespace fastgltf::math + +gl_viewer_desc_t * lv_gltf_view_get_desc(lv_gltf_view_t * v) +{ + return &(v->desc); +} + +float absf(float v) +{ + return v > 0 ? v : -v; +} + +void lv_gltf_view_mark_dirty(lv_gltf_view_t * view) +{ + lv_gltf_view_get_desc(view)->dirty = true; +} +uint32_t lv_gltf_view_get_aa_mode(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->aa_mode; +} +uint32_t lv_gltf_view_get_bg_mode(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->bg_mode; +} +uint32_t lv_gltf_view_get_width(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->width; +} +uint32_t lv_gltf_view_get_height(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->height; +} +float lv_gltf_view_get_pitch(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->pitch; +} +float lv_gltf_view_get_yaw(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->yaw; +} +float lv_gltf_view_get_distance(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->distance; +} +float lv_gltf_view_get_fov(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->fov; +} +float lv_gltf_view_get_focal_x(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->focal_x; +} +float lv_gltf_view_get_focal_y(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->focal_y; +} +float lv_gltf_view_get_focal_z(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->focal_z; +} +float lv_gltf_view_get_spin_degree_offset(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->spin_degree_offset; +} + +void lv_gltf_view_set_pitch(lv_gltf_view_t * view, int pitch_degrees_x100) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + float _newval = pitch_degrees_x100 * 0.01f; + if(absf(desc->pitch - _newval) > 0.0001f) { + desc->pitch = _newval; + desc->dirty = true; + } +} + +void lv_gltf_view_set_yaw(lv_gltf_view_t * view, int yaw_degrees_x100) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + float _newval = yaw_degrees_x100 * 0.01f; + if(absf(desc->yaw - _newval) > 0.0001f) { + desc->yaw = _newval; + desc->dirty = true; + } +} + +void lv_gltf_view_set_distance(lv_gltf_view_t * view, int distance_units_x1000) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + float _newval = distance_units_x1000 * 0.001f; + if(absf(desc->distance - _newval) > 0.001f) { + desc->distance = _newval; + desc->dirty = true; + } +} + +void lv_gltf_view_set_focal_x(lv_gltf_view_t * view, float focal_x) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(desc->focal_x - focal_x) > 0.0001f) { + desc->focal_x = focal_x; + desc->dirty = true; + } +} + +void lv_gltf_view_set_focal_y(lv_gltf_view_t * view, float focal_y) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(desc->focal_y - focal_y) > 0.0001f) { + desc->focal_y = focal_y; + desc->dirty = true; + } +} + +void lv_gltf_view_set_focal_z(lv_gltf_view_t * view, float focal_z) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(desc->focal_z - focal_z) > 0.00001f) { + desc->focal_z = focal_z; + desc->dirty = true; + } +} + +void lv_gltf_view_set_fov(lv_gltf_view_t * view, float vertical_fov) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(desc->fov - vertical_fov) > 0.001f) { + desc->fov = vertical_fov; + desc->dirty = true; + } +} + +void lv_gltf_view_set_bg_r(lv_gltf_view_t * view, uint32_t r) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->bg_r != r) { + desc->bg_r = r; + desc->dirty = true; + } +} +void lv_gltf_view_set_bgcolor_red(lv_gltf_view_t * view, uint32_t r) +{ + lv_gltf_view_set_bg_r(view, r); +} + +void lv_gltf_view_set_bg_g(lv_gltf_view_t * view, uint32_t g) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->bg_g != g) { + desc->bg_g = g; + desc->dirty = true; + } +} +void lv_gltf_view_set_bgcolor_green(lv_gltf_view_t * view, uint32_t g) +{ + lv_gltf_view_set_bg_g(view, g); +} + +void lv_gltf_view_set_bg_b(lv_gltf_view_t * view, uint32_t b) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->bg_b != b) { + desc->bg_b = b; + desc->dirty = true; + } +} +void lv_gltf_view_set_bgcolor_blue(lv_gltf_view_t * view, uint32_t b) +{ + lv_gltf_view_set_bg_b(view, b); +} + +void lv_gltf_view_set_bg_a(lv_gltf_view_t * view, uint32_t a) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->bg_a != a) { + desc->bg_a = a; + desc->dirty = true; + } +} +void lv_gltf_view_set_bg_opa(lv_gltf_view_t * view, uint32_t a) +{ + lv_gltf_view_set_bg_a(view, a); +} + +void lv_gltf_view_set_bgcolor_RGB(lv_gltf_view_t * view, uint32_t r, uint32_t g, uint32_t b) +{ + lv_gltf_view_set_bgcolor_red(view, r); + lv_gltf_view_set_bgcolor_green(view, g); + lv_gltf_view_set_bgcolor_blue(view, b); +} + +void lv_gltf_view_set_bgcolor_RGBA(lv_gltf_view_t * view, uint32_t r, uint32_t g, uint32_t b, uint32_t a) +{ + lv_gltf_view_set_bgcolor_red(view, r); + lv_gltf_view_set_bgcolor_green(view, g); + lv_gltf_view_set_bgcolor_blue(view, b); + lv_gltf_view_set_bg_opa(view, a); +} + +void lv_gltf_view_inc_pitch(lv_gltf_view_t * view, float pitch_inc_degrees) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(pitch_inc_degrees) > 0.0001f) { + desc->pitch += pitch_inc_degrees; + if(desc->pitch > 89.0f) { + desc->pitch = 89.0f; + } + else if(desc->pitch < -89.0f) { + desc->pitch = -89.0f; + } + desc->dirty = true; + } +} + +void lv_gltf_view_inc_yaw(lv_gltf_view_t * view, float yaw_inc_degrees) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(yaw_inc_degrees) > 0.0001f) { + desc->yaw += yaw_inc_degrees; + desc->dirty = true; + } +} + +void lv_gltf_view_inc_distance(lv_gltf_view_t * view, float distance_inc_units) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(distance_inc_units) != 0.f) { + desc->distance += distance_inc_units; + if(desc->distance < 0.01f) { + desc->distance = 0.01f; + } + desc->dirty = true; + } +} + +void lv_gltf_view_inc_focal_x(lv_gltf_view_t * view, float focal_x_inc) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(focal_x_inc) > 0.0001f) { + desc->focal_x += focal_x_inc; + desc->dirty = true; + } +} + +void lv_gltf_view_inc_focal_y(lv_gltf_view_t * view, float focal_y_inc) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(focal_y_inc) > 0.0001f) { + desc->focal_y += focal_y_inc; + desc->dirty = true; + } +} + +void lv_gltf_view_inc_focal_z(lv_gltf_view_t * view, float focal_z_inc) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(focal_z_inc) > 0.0001f) { + desc->focal_z += focal_z_inc; + desc->dirty = true; + } +} + +void lv_gltf_view_inc_spin_degree_offset(lv_gltf_view_t * view, float spin_degree_inc) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(spin_degree_inc) > 0.0001f) { + desc->spin_degree_offset += spin_degree_inc; + desc->dirty = true; + } +} + +void lv_gltf_view_set_camera(lv_gltf_view_t * view, int camera_number) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->camera != camera_number) { + desc->camera = camera_number; + desc->dirty = true; + } +} + +void lv_gltf_view_set_timestep(lv_gltf_view_t * view, float timestep) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + desc->timestep = timestep; +} + +void lv_gltf_view_set_width(lv_gltf_view_t * view, uint32_t new_width) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->width != (int32_t)new_width) { + desc->width = (int32_t)new_width; + desc->dirty = true; + } +} + +void lv_gltf_view_set_height(lv_gltf_view_t * view, uint32_t new_height) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->height != (int32_t)new_height) { + desc->height = (int32_t)new_height; + desc->dirty = true; + } +} + +void lv_gltf_view_set_anim(lv_gltf_view_t * view, uint32_t anim_num) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->anim != (int32_t)anim_num) { + desc->anim = (int32_t)anim_num; + desc->dirty = true; + } +} + +void lv_gltf_view_set_bg_mode(lv_gltf_view_t * view, uint32_t bg_mode) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->bg_mode != (int32_t)bg_mode) { + desc->bg_mode = (int32_t)bg_mode; + desc->dirty = true; + } +} + +void lv_gltf_view_set_aa_mode(lv_gltf_view_t * view, uint32_t aa_mode) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(desc->aa_mode != (int32_t)aa_mode) { + desc->aa_mode = (int32_t)aa_mode; + desc->dirty = true; + } +} + +void lv_gltf_view_set_blur_bg(lv_gltf_view_t * view, float blur_bg_amount) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(desc->blur_bg - blur_bg_amount) > 0.0001f) { + desc->blur_bg = blur_bg_amount; + desc->dirty = true; + } +} + +void lv_gltf_view_set_env_pow(lv_gltf_view_t * view, float env_pow) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(desc->env_pow - env_pow) > 0.0001f) { + desc->env_pow = env_pow; + desc->dirty = true; + } +} + +void lv_gltf_view_set_exposure(lv_gltf_view_t * view, float exposure) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(desc->exposure - exposure) > 0.0001f) { + desc->exposure = exposure; + desc->dirty = true; + } +} + +void lv_gltf_view_set_spin_degree_offset(lv_gltf_view_t * view, float spin_degree_offset) +{ + gl_viewer_desc_t * desc = (gl_viewer_desc_t *)lv_gltf_view_get_desc(view); + if(absf(desc->spin_degree_offset - spin_degree_offset) > 0.0001f) { + desc->spin_degree_offset = spin_degree_offset; + desc->dirty = true; + } +} + +bool lv_gltf_view_check_frame_was_cached(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->frame_was_cached; +} + +bool lv_gltf_view_check_frame_was_antialiased(lv_gltf_view_t * view) +{ + return lv_gltf_view_get_desc(view)->frame_was_antialiased; +} +int64_t lv_gltf_view_get_node_handle_by_name(const char * nodename) +{ + LV_UNUSED(nodename); + return -1; +} + +void lv_gltf_view_destroy(lv_gltf_view_t * _viewer) +{ + __free_viewer_struct(_viewer); // Currently does nothing, this could be removed + clearDefines(); +} + +/** + * @brief Draw a primitive from the GLTF model. + * + * @param prim_num The index of the primitive to draw. + * @param view_desc Pointer to the viewer description structure. + * @param viewer Pointer to the lv_gltf_view instance used for rendering. + * @param gltf_data Pointer to the GLTF data containing the model information. + * @param node Reference to the node representing the primitive in the GLTF structure. + * @param mesh_index The index of the mesh within the GLTF model. + * @param matrix The transformation matrix to apply to the primitive. + * @param env_tex The environment textures to use for rendering. + * @param is_transmission_pass Flag indicating whether this is a transmission rendering pass. + */ +void draw_primitive(int32_t prim_num, + gl_viewer_desc_t * view_desc, + lv_gltf_view_t * viewer, + lv_gltf_data_t * gltf_data, + fastgltf::Node & node, + std::size_t mesh_index, + const FMAT4 & matrix, + gl_environment_textures env_tex, + bool is_transmission_pass) +{ + auto mesh = get_meshdata_num(gltf_data, mesh_index); + const auto & asset = GET_ASSET(gltf_data); + const auto & vopts = get_viewer_opts(viewer); + const auto & _prim_data = GET_PRIM_FROM_MESH(mesh, prim_num); + auto & _prim_gltf_data = asset->meshes[mesh_index].primitives[prim_num]; + auto & mappings = _prim_gltf_data.mappings; + std::size_t materialIndex = (!mappings.empty() && mappings[vopts->materialVariant].has_value()) + ? mappings[vopts->materialVariant].value() + 1 + : ((_prim_gltf_data.materialIndex.has_value()) ? (_prim_gltf_data.materialIndex.value() + 1) : 0); + + gltf_data->_lastMaterialIndex = 999999; + + GL_CALL(glBindVertexArray(_prim_data->vertexArray)); + if((gltf_data->_lastMaterialIndex == materialIndex) && (gltf_data->_lastPassWasTransmission == is_transmission_pass)) { + GL_CALL(glUniformMatrix4fv(get_uniform_ids(gltf_data, materialIndex)->modelMatrixUniform, 1, GL_FALSE, &matrix[0][0])); + } + else { + view_desc->error_frames += 1; + gltf_data->_lastMaterialIndex = materialIndex; + gltf_data->_lastPassWasTransmission = is_transmission_pass; + auto program = get_shader_program(gltf_data, materialIndex); + const auto & uniforms = get_uniform_ids(gltf_data, materialIndex); + GL_CALL(glUseProgram(program)); + + GL_CALL(glUniformMatrix4fv(uniforms->modelMatrixUniform, 1, GL_FALSE, &matrix[0][0])); + GL_CALL(glUniformMatrix4fv(uniforms->viewMatrixUniform, 1, false, GET_VIEW_MAT(viewer)->data())); + GL_CALL(glUniformMatrix4fv(uniforms->projectionMatrixUniform, 1, false, GET_PROJ_MAT(viewer)->data())); + GL_CALL(glUniformMatrix4fv(uniforms->viewProjectionMatrixUniform, 1, false, GET_VIEWPROJ_MAT(viewer)->data())); + const auto & _campos = get_cam_pos(viewer); + GL_CALL(glUniform3f(uniforms->camera, _campos[0], _campos[1], _campos[2])); + + GL_CALL(glUniform1f(uniforms->exposure, view_desc->exposure)); + GL_CALL(glUniform1f(uniforms->envIntensity, view_desc->env_pow)); + GL_CALL(glUniform1i(uniforms->envMipCount, (int32_t)env_tex.mipCount)); + setup_environment_rotation_matrix(viewer->envRotationAngle, program); + GL_CALL(glEnable(GL_CULL_FACE)); + GL_CALL(glDisable(GL_BLEND)); + GL_CALL(glEnable(GL_DEPTH_TEST)); + GL_CALL(glDepthMask(GL_TRUE)); + GL_CALL(glCullFace(GL_BACK)); + uint32_t _texnum = 0; + + bool has_material = asset->materials.size() > (materialIndex - 1); + if(!has_material) { + setup_uniform_color_alpha(uniforms->baseColorFactor, FVEC4(1.0f)); + GL_CALL(glUniform1f(uniforms->roughnessFactor, 0.5f)); + GL_CALL(glUniform1f(uniforms->metallicFactor, 0.5f)); + GL_CALL(glUniform1f(uniforms->ior, 1.5f)); + GL_CALL(glUniform1f(uniforms->dispersion, 0.0f)); + GL_CALL(glUniform1f(uniforms->thickness, 0.01847f)); + } + else { + auto & gltfMaterial = asset->materials[materialIndex - 1]; + if(is_transmission_pass && (gltfMaterial.transmission != NULL)) { + return; + } + if(gltfMaterial.doubleSided) GL_CALL(glDisable(GL_CULL_FACE)); + if(gltfMaterial.alphaMode == fastgltf::AlphaMode::Blend) { + GL_CALL(glEnable(GL_BLEND)); + //GL_CALL(glDisable(GL_DEPTH_TEST)); + //GL_CALL(glCullFace(GL_FRONT)); + GL_CALL(glDepthMask(GL_FALSE)); + GL_CALL(glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA)); + GL_CALL(glBlendEquation(GL_FUNC_ADD)); + GL_CALL(glEnable(GL_CULL_FACE)); + } + else { + if(gltfMaterial.alphaMode == fastgltf::AlphaMode::Mask) { + GL_CALL(glUniform1f(uniforms->alphaCutoff, gltfMaterial.alphaCutoff)); + GL_CALL(glDisable(GL_CULL_FACE)); + } + } + + // Update any scene lights present + + if(gltf_data->node_by_light_index->size() > 0) { + size_t max_light_nodes = gltf_data->node_by_light_index->size(); + size_t max_scene_lights = asset->lights.size(); + if(max_scene_lights != max_light_nodes) { + std::cerr << "ERROR: Scene light count != scene light node count\n"; + } + else { + // Scene contains lights and they may have just moved so update their position within the current shaders + // Update any lights present in the scene file + for(size_t ii = 0; ii < max_scene_lights; ii++) { + size_t i = ii + 1; + // Update each field of the light struct + std::string _prefix = "u_Lights[" + std::to_string(i) + "]."; + auto & lightNode = (*gltf_data->node_by_light_index)[ii]; + FMAT4 lightNodeMat = get_cached_transform(gltf_data, lightNode); + const auto & m = lightNodeMat.data(); + char _targ1[100]; + + strncpy(_targ1, (_prefix + "position").c_str(), sizeof(_targ1) - 1); + _targ1[sizeof(_targ1) - 1] = '\0'; + glUniform3fv(glGetUniformLocation(program, _targ1), 1, &lightNodeMat[3][0]); + + strncpy(_targ1, (_prefix + "direction").c_str(), sizeof(_targ1) - 1); + _targ1[sizeof(_targ1) - 1] = '\0'; + FVEC3 tlight_dir = FVEC3(-lightNodeMat[2][0], -lightNodeMat[2][1], -lightNodeMat[2][2]); + glUniform3fv(glGetUniformLocation(program, _targ1), 1, &tlight_dir[0]); + + strncpy(_targ1, (_prefix + "range").c_str(), sizeof(_targ1) - 1); + _targ1[sizeof(_targ1) - 1] = '\0'; + if(asset->lights[ii].range.has_value()) { + float light_scale = fastgltf::math::length(FVEC3(m[0], m[4], m[8])); + glUniform1f(glGetUniformLocation(program, _targ1), asset->lights[ii].range.value() * light_scale); + } + else glUniform1f(glGetUniformLocation(program, _targ1), 9999.f); + + strncpy(_targ1, (_prefix + "color").c_str(), sizeof(_targ1) - 1); + _targ1[sizeof(_targ1) - 1] = '\0'; + glUniform3fv(glGetUniformLocation(program, _targ1), 1, &(asset->lights[ii].color.data()[0])); + + strncpy(_targ1, (_prefix + "intensity").c_str(), sizeof(_targ1) - 1); + _targ1[sizeof(_targ1) - 1] = '\0'; + glUniform1f(glGetUniformLocation(program, _targ1), asset->lights[ii].intensity); + + strncpy(_targ1, (_prefix + "innerConeCos").c_str(), sizeof(_targ1) - 1); + _targ1[sizeof(_targ1) - 1] = '\0'; + glUniform1f(glGetUniformLocation(program, _targ1), + asset->lights[ii].innerConeAngle.has_value() ? std::cos(asset->lights[ii].innerConeAngle.value()) : -1.0f); + + strncpy(_targ1, (_prefix + "outerConeCos").c_str(), sizeof(_targ1) - 1); + _targ1[sizeof(_targ1) - 1] = '\0'; + glUniform1f(glGetUniformLocation(program, _targ1), + asset->lights[ii].outerConeAngle.has_value() ? std::cos(asset->lights[ii].outerConeAngle.value()) : -1.0f); + + strncpy(_targ1, (_prefix + "type").c_str(), sizeof(_targ1) - 1); + _targ1[sizeof(_targ1) - 1] = '\0'; + glUniform1i(glGetUniformLocation(program, _targ1), (int)asset->lights[ii].type); + } + } + } + + //if (viewer->overrideBaseColor){ + // GL_CALL(glUniform4f(uniforms->baseColorFactor, viewer->overrideBaseColorFactor[0], viewer->overrideBaseColorFactor[1], viewer->overrideBaseColorFactor[2], viewer->overrideBaseColorFactor[3])); + //} else { + setup_uniform_color_alpha(uniforms->baseColorFactor, gltfMaterial.pbrData.baseColorFactor); + setup_uniform_color(uniforms->emissiveFactor, gltfMaterial.emissiveFactor); + //} + GL_CALL(glUniform1f(uniforms->emissiveStrength, gltfMaterial.emissiveStrength)); + GL_CALL(glUniform1f(uniforms->roughnessFactor, gltfMaterial.pbrData.roughnessFactor)); + GL_CALL(glUniform1f(uniforms->metallicFactor, gltfMaterial.pbrData.metallicFactor)); + + GL_CALL(glUniform1f(uniforms->ior, gltfMaterial.ior)); + GL_CALL(glUniform1f(uniforms->dispersion, gltfMaterial.dispersion)); + + if(gltfMaterial.pbrData.baseColorTexture.has_value()) _texnum = setup_texture(_texnum, _prim_data->albedoTexture, + _prim_data->baseColorTexcoordIndex, gltfMaterial.pbrData.baseColorTexture->transform, uniforms->baseColorSampler, + uniforms->baseColorUVSet, uniforms->baseColorUVTransform); + if(gltfMaterial.emissiveTexture.has_value()) _texnum = setup_texture(_texnum, _prim_data->emissiveTexture, + _prim_data->emissiveTexcoordIndex, gltfMaterial.emissiveTexture->transform, uniforms->emissiveSampler, + uniforms->emissiveUVSet, uniforms->emissiveUVTransform); + if(gltfMaterial.pbrData.metallicRoughnessTexture.has_value()) _texnum = setup_texture(_texnum, + _prim_data->metalRoughTexture, _prim_data->metallicRoughnessTexcoordIndex, + gltfMaterial.pbrData.metallicRoughnessTexture->transform, uniforms->metallicRoughnessSampler, + uniforms->metallicRoughnessUVSet, uniforms->metallicRoughnessUVTransform); + if(gltfMaterial.occlusionTexture.has_value()) { + GL_CALL(glUniform1f(uniforms->occlusionStrength, static_cast(gltfMaterial.occlusionTexture->strength))); + _texnum = setup_texture(_texnum, _prim_data->occlusionTexture, _prim_data->occlusionTexcoordIndex, + gltfMaterial.occlusionTexture->transform, uniforms->occlusionSampler, uniforms->occlusionUVSet, + uniforms->occlusionUVTransform); + } + + if(gltfMaterial.normalTexture.has_value()) { + GL_CALL(glUniform1f(uniforms->normalScale, static_cast(gltfMaterial.normalTexture->scale))); + _texnum = setup_texture(_texnum, _prim_data->normalTexture, _prim_data->normalTexcoordIndex, + gltfMaterial.normalTexture->transform, uniforms->normalSampler, uniforms->normalUVSet, uniforms->normalUVTransform); + } + + if(gltfMaterial.clearcoat) { + GL_CALL(glUniform1f(uniforms->clearcoatFactor, static_cast(gltfMaterial.clearcoat->clearcoatFactor))); + GL_CALL(glUniform1f(uniforms->clearcoatRoughnessFactor, + static_cast(gltfMaterial.clearcoat->clearcoatRoughnessFactor))); + + if(gltfMaterial.clearcoat->clearcoatTexture.has_value()) _texnum = setup_texture(_texnum, _prim_data->clearcoatTexture, + _prim_data->clearcoatTexcoordIndex, gltfMaterial.clearcoat->clearcoatTexture->transform, uniforms->clearcoatSampler, + uniforms->clearcoatUVSet, uniforms->clearcoatUVTransform); + if(gltfMaterial.clearcoat->clearcoatRoughnessTexture.has_value()) _texnum = setup_texture(_texnum, + _prim_data->clearcoatRoughnessTexture, _prim_data->clearcoatRoughnessTexcoordIndex, + gltfMaterial.clearcoat->clearcoatRoughnessTexture->transform, uniforms->clearcoatRoughnessSampler, + uniforms->clearcoatRoughnessUVSet, uniforms->clearcoatRoughnessUVTransform); + if(gltfMaterial.clearcoat->clearcoatNormalTexture.has_value()) { + GL_CALL(glUniform1f(uniforms->clearcoatNormalScale, + static_cast(gltfMaterial.clearcoat->clearcoatNormalTexture->scale))); + _texnum = setup_texture(_texnum, _prim_data->clearcoatNormalTexture, _prim_data->clearcoatNormalTexcoordIndex, + gltfMaterial.clearcoat->clearcoatNormalTexture->transform, uniforms->clearcoatNormalSampler, + uniforms->clearcoatNormalUVSet, uniforms->clearcoatNormalUVTransform); + } + } + + if(gltfMaterial.volume) { + GL_CALL(glUniform1f(uniforms->attenuationDistance, gltfMaterial.volume->attenuationDistance)); + setup_uniform_color(uniforms->attenuationColor, gltfMaterial.volume->attenuationColor); + GL_CALL(glUniform1f(uniforms->thickness, gltfMaterial.volume->thicknessFactor)); + if(gltfMaterial.volume->thicknessTexture.has_value()) { + _texnum = setup_texture(_texnum, _prim_data->thicknessTexture, _prim_data->thicknessTexcoordIndex, + gltfMaterial.volume->thicknessTexture->transform, uniforms->thicknessSampler, uniforms->thicknessUVSet, + uniforms->thicknessUVTransform); + } + } + + if(gltfMaterial.transmission) { + GL_CALL(glUniform1f(uniforms->transmissionFactor, gltfMaterial.transmission->transmissionFactor)); + GL_CALL(glUniform2i(uniforms->screenSize, (int32_t)view_desc->render_width, (int32_t)view_desc->render_height)); + if(gltfMaterial.transmission->transmissionTexture.has_value()) _texnum = setup_texture(_texnum, + _prim_data->transmissionTexture, _prim_data->transmissionTexcoordIndex, + gltfMaterial.transmission->transmissionTexture->transform, uniforms->transmissionSampler, uniforms->transmissionUVSet, + uniforms->transmissionUVTransform); + } + + if(gltfMaterial.sheen) { + //std::cout << "*** SHEEN FACTORS : Roughness: " << gltfMaterial.sheen->sheenRoughnessFactor << " : R/G/B " << gltfMaterial.sheen->sheenColorFactor[0] << " / " << gltfMaterial.sheen->sheenColorFactor[1] << " / " << gltfMaterial.sheen->sheenColorFactor[2] << " ***\n"; + setup_uniform_color(uniforms->sheenColorFactor, gltfMaterial.sheen->sheenColorFactor); + GL_CALL(glUniform1f(uniforms->sheenRoughnessFactor, static_cast(gltfMaterial.sheen->sheenRoughnessFactor))); + if(gltfMaterial.sheen->sheenColorTexture.has_value()) { + std::cout << "***!!! MATERIAL HAS UNHANDLED SHEEN TEXTURE***\n"; + } + } + if(gltfMaterial.specular) { + //std::cout << "*** SPECULAR FACTORS : specularFactor: " << gltfMaterial.specular->specularFactor << " : R/G/B " << gltfMaterial.specular->specularColorFactor[0] << " / " << gltfMaterial.specular->specularColorFactor[1] << " / " << gltfMaterial.specular->specularColorFactor[2] << " ***\n"; + setup_uniform_color(uniforms->specularColorFactor, gltfMaterial.specular->specularColorFactor); + GL_CALL(glUniform1f(uniforms->specularFactor, static_cast(gltfMaterial.specular->specularFactor))); + if(gltfMaterial.specular->specularTexture.has_value()) { + std::cout << "***!!! MATERIAL HAS UNHANDLED SPECULAR TEXTURE***\n"; + } + if(gltfMaterial.specular->specularColorTexture.has_value()) { + std::cout << "***!!! MATERIAL HAS UNHANDLED SPECULAR COLOR TEXTURE***\n"; + } + } + + if(gltfMaterial.specularGlossiness) { + std::cout << + "*** WARNING: MODEL USES OUTDATED LEGACY MODE PBR_SPECULARGLOSS - PLEASE UPDATE THIS MODEL TO A NEW SHADING MODEL ***\n"; + setup_uniform_color_alpha(uniforms->diffuseFactor, gltfMaterial.specularGlossiness->diffuseFactor); + setup_uniform_color(uniforms->specularFactor, gltfMaterial.specularGlossiness->specularFactor); + GL_CALL(glUniform1f(uniforms->glossinessFactor, static_cast(gltfMaterial.specularGlossiness->glossinessFactor))); + if(gltfMaterial.specularGlossiness->diffuseTexture.has_value()) _texnum = setup_texture(_texnum, + _prim_data->diffuseTexture, _prim_data->diffuseTexcoordIndex, + gltfMaterial.specularGlossiness->diffuseTexture->transform, uniforms->diffuseSampler, uniforms->diffuseUVSet, + uniforms->diffuseUVTransform); + if(gltfMaterial.specularGlossiness->specularGlossinessTexture.has_value()) _texnum = setup_texture(_texnum, + _prim_data->specularGlossinessTexture, _prim_data->specularGlossinessTexcoordIndex, + gltfMaterial.specularGlossiness->specularGlossinessTexture->transform, uniforms->specularGlossinessSampler, + uniforms->specularGlossinessUVSet, uniforms->specularGlossinessUVTransform); + } + +#ifdef FASTGLTF_DIFFUSE_TRANSMISSION_SUPPORT + if(gltfMaterial.diffuseTransmission) { + std::cout << "*** DIFFUSE TRANSMISSION : factor : " << gltfMaterial.diffuseTransmission->diffuseTransmissionFactor << + " : R/G/B " << gltfMaterial.diffuseTransmission->diffuseTransmissionColorFactor[0] << " / " << + gltfMaterial.diffuseTransmission->diffuseTransmissionColorFactor[1] << " / " << + gltfMaterial.diffuseTransmission->diffuseTransmissionColorFactor[2] << " ***\n"; + setup_uniform_color(uniforms->diffuseTransmissionColorFactor, + gltfMaterial.diffuseTransmission->diffuseTransmissionColorFactor); + GL_CALL(glUniform1f(uniforms->diffuseTransmissionFactor, + static_cast(gltfMaterial.diffuseTransmission->diffuseTransmissionFactor))); + if(gltfMaterial.diffuseTransmission->diffuseTransmissionTexture.has_value()) _texnum = setup_texture(_texnum, + _prim_data->diffuseTransmissionTexture, _prim_data->diffuseTransmissionTexcoordIndex, + gltfMaterial.diffuseTransmission->diffuseTransmissionTexture->transform, uniforms->diffuseTransmissionSampler, + uniforms->diffuseTransmissionUVSet, uniforms->diffuseTransmissionUVTransform); + if(gltfMaterial.diffuseTransmission->diffuseTransmissionColorTexture.has_value()) _texnum = setup_texture(_texnum, + _prim_data->diffuseTransmissionColorTexture, _prim_data->diffuseTransmissionColorTexcoordIndex, + gltfMaterial.diffuseTransmission->diffuseTransmissionColorTexture->transform, uniforms->diffuseTransmissionColorSampler, + uniforms->diffuseTransmissionColorUVSet, uniforms->diffuseTransmissionColorUVTransform); + } +#endif + } + const auto & vstate = get_viewer_state(viewer); + if(!is_transmission_pass && vstate->renderOpaqueBuffer) { + GL_CALL(glActiveTexture(GL_TEXTURE0 + _texnum)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, vstate->opaque_render_state.texture)); + GL_CALL(glUniform1i(uniforms->transmissionFramebufferSampler, _texnum)); + GL_CALL(glUniform2i(uniforms->transmissionFramebufferSize, (int32_t)vstate->metrics.opaqueFramebufferWidth, + (int32_t)vstate->metrics.opaqueFramebufferHeight)); + _texnum++; + } + + if(node.skinIndex.has_value()) { + GL_CALL(glActiveTexture(GL_TEXTURE0 + _texnum)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, get_skintex_at(gltf_data, node.skinIndex.value()))); + GL_CALL(glUniform1i(uniforms->jointsSampler, _texnum)); + _texnum++; + } + if(env_tex.diffuse != GL_NONE) { + GL_CALL(glActiveTexture(GL_TEXTURE0 + _texnum)); + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, env_tex.diffuse)); + GL_CALL(glUniform1i(uniforms->envDiffuseSampler, _texnum++)); + } + if(env_tex.specular != GL_NONE) { + GL_CALL(glActiveTexture(GL_TEXTURE0 + _texnum)); + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, env_tex.specular)); + GL_CALL(glUniform1i(uniforms->envSpecularSampler, _texnum++)); + } + if(env_tex.sheen != GL_NONE) { + GL_CALL(glActiveTexture(GL_TEXTURE0 + _texnum)); + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, env_tex.sheen)); + GL_CALL(glUniform1i(uniforms->envSheenSampler, _texnum++)); + } + if(env_tex.ggxLut != GL_NONE) { + GL_CALL(glActiveTexture(GL_TEXTURE0 + _texnum)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, env_tex.ggxLut)); + GL_CALL(glUniform1i(uniforms->envGgxLutSampler, _texnum++)); + } + if(env_tex.charlieLut != GL_NONE) { + GL_CALL(glActiveTexture(GL_TEXTURE0 + _texnum)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, env_tex.charlieLut)); + GL_CALL(glUniform1i(uniforms->envCharlieLutSampler, _texnum++)); + } + + } + + std::size_t index_count = 0; + auto & indexAccessor = asset->accessors[asset->meshes[mesh_index].primitives[prim_num].indicesAccessor.value()]; + if(indexAccessor.bufferViewIndex.has_value()) { + index_count = (uint32_t)indexAccessor.count; + } + if(index_count > 0) { + GL_CALL(glDrawElements(_prim_data->primitiveType, index_count, _prim_data->indexType, 0)); + } +} + +void lv_gltf_view_reset_between_models(lv_gltf_view_t * viewer) +{ + const auto & vstate = get_viewer_state(viewer); + if(vstate->render_state_ready) { + setup_cleanup_opengl_output(&vstate->render_state); + vstate->render_state_ready = false; + } + vstate->renderOpaqueBuffer = false; + _ibmBySkinThenNode.clear(); +} + +uint32_t lv_gltf_view_render(lv_opengl_shader_cache_t * shaders, lv_gltf_view_t * viewer, lv_gltf_data_t * gltf_data, + bool prepare_bg, uint32_t crop_left, uint32_t crop_right, uint32_t crop_top, uint32_t crop_bottom) +{ + + const auto & asset = GET_ASSET(gltf_data); + const auto & probe = PROBE(gltf_data); + const auto & vstate = get_viewer_state(viewer); + const auto view_desc = lv_gltf_view_get_desc(viewer); + const auto & vopts = &(vstate->options); + const auto & vmetrics = &(vstate->metrics); + bool opt_draw_bg = prepare_bg && (view_desc->bg_mode == BG_ENVIRONMENT); + bool opt_aa_this_frame = (view_desc->aa_mode == ANTIALIAS_CONSTANT) || ((view_desc->aa_mode == ANTIALIAS_NOT_MOVING) && + (gltf_data->_lastFrameNoMotion == true)); //((_lastFrameNoMotion == true) && (_lastFrameWasAntialiased == false))); + lv_gltf_opengl_state_push(); + uint32_t sceneIndex = 0; + gl_renwin_state_t _output; + gl_renwin_state_t _opaque; + view_desc->frame_was_cached = true; + view_desc->render_width = view_desc->width * (opt_aa_this_frame ? 2 : 1); + view_desc->render_height = view_desc->height * (opt_aa_this_frame ? 2 : 1); + bool size_changed = false; + if(view_desc->width != viewer->_lastViewDesc.width) size_changed = true; + if(view_desc->height != viewer->_lastViewDesc.height) size_changed = true; + + if((opt_aa_this_frame != gltf_data->_lastFrameWasAntialiased) || size_changed) { + // Antialiasing state has changed since the last render + if(vstate->render_state_ready) { + setup_cleanup_opengl_output(&vstate->render_state); + vstate->render_state = setup_primary_output((uint32_t)view_desc->render_width, (uint32_t)view_desc->render_height, + opt_aa_this_frame); + } + gltf_data->_lastFrameWasAntialiased = opt_aa_this_frame; + } + + if(opt_aa_this_frame) { + crop_left = crop_left << 1; + crop_right = crop_right << 1; + crop_top = crop_top << 1; + crop_bottom = crop_bottom << 1; + } + view_desc->frame_was_antialiased = opt_aa_this_frame; + if(!vstate->render_state_ready) { + _output = setup_primary_output((uint32_t)view_desc->render_width, (uint32_t)view_desc->render_height, + opt_aa_this_frame); + setup_finish_frame(); + vstate->render_state = _output; + } + + if(!gltf_data->nodes_parsed) { + gltf_data->nodes_parsed = true; + std::vector _used = std::vector(); + int64_t _max_index = 0; + fastgltf::iterateSceneNodes(*asset, sceneIndex, FMAT4(), [&](fastgltf::Node & node, FMAT4 matrix) { + // TO-DO: replace this iterate with one that doesn't bother with any matrix math. Since this is a one time loop at start up, it's ok for now. + LV_UNUSED(matrix); + if(node.meshIndex) { + auto & mesh_index = node.meshIndex.value(); + if(node.skinIndex) { + auto skinIndex = node.skinIndex.value(); + if(!validated_skins_contains(gltf_data, skinIndex)) { + validate_skin(gltf_data, skinIndex); + auto skin = asset->skins[skinIndex]; + std::size_t num_joints = skin.joints.size(); + std::cout << "Skin #" << std::to_string(skinIndex) << ": Joints: " << std::to_string(num_joints) << "\n"; + if(skin.inverseBindMatrices) { + auto & _ibmVal = skin.inverseBindMatrices.value(); + auto & _ibmAccessor = asset->accessors[_ibmVal]; + if(_ibmAccessor.bufferViewIndex) { // To-do: test if this gets confused when bufferViewIndex == 0 + fastgltf::iterateAccessorWithIndex(*asset, _ibmAccessor, [&](FMAT4 _matrix, std::size_t idx) { + auto & _jointNode = asset->nodes[skin.joints[idx]]; + _ibmBySkinThenNode[skinIndex][&_jointNode] = _matrix; + }); + } + } + } + } + for(uint64_t mp = 0; mp < asset->meshes[mesh_index].primitives.size(); mp++) { + auto & _prim_gltf_data = asset->meshes[mesh_index].primitives[mp]; + auto & mappings = _prim_gltf_data.mappings; + int64_t materialIndex = (!mappings.empty() && + mappings[vopts->materialVariant]) ? mappings[vopts->materialVariant].value() + 1 : ((_prim_gltf_data.materialIndex) ? + (_prim_gltf_data.materialIndex.value() + 1) : 0); + if(materialIndex < 0) { + add_opaque_node_prim(gltf_data, 0, &node, mp); + } + else { + auto & material = asset->materials[materialIndex - 1]; + if(material.transmission) vstate->renderOpaqueBuffer = true; + if(material.alphaMode == fastgltf::AlphaMode::Blend || (material.transmission != NULL)) { + add_blended_node_prim(gltf_data, materialIndex + 1, &node, mp); + } + else { + add_opaque_node_prim(gltf_data, materialIndex + 1, &node, mp); + } + _max_index = std::max(_max_index, materialIndex); + } + } + } + }); + + init_shaders(gltf_data, _max_index); + setup_compile_and_load_bg_shader(shaders); + fastgltf::iterateSceneNodes(*asset, sceneIndex, FMAT4(), [&](fastgltf::Node & node, FMAT4 matrix) { + LV_UNUSED(matrix); + if(node.meshIndex) { + auto & mesh_index = node.meshIndex.value(); + for(uint64_t mp = 0; mp < asset->meshes[mesh_index].primitives.size(); mp++) { + auto & _prim_gltf_data = asset->meshes[mesh_index].primitives[mp]; + auto & mappings = _prim_gltf_data.mappings; + int64_t materialIndex = (!mappings.empty() && + mappings[vopts->materialVariant]) ? mappings[vopts->materialVariant].value() + 1 : ((_prim_gltf_data.materialIndex) ? + (_prim_gltf_data.materialIndex.value() + 1) : 0); + const auto & _ss = get_shader_set(gltf_data, materialIndex); + if(materialIndex > -1 && _ss->ready == false) { + injest_discover_defines(gltf_data, &node, &_prim_gltf_data); + auto _shaderset = setup_compile_and_load_shaders(shaders); + auto _unilocs = UniformLocs(); + setup_uniform_locations(&_unilocs, _shaderset.program); + set_shader(gltf_data, materialIndex, _unilocs, _shaderset); + } + } + } + }); + } + + if(!vstate->render_state_ready) { + vstate->render_state_ready = true; + if(vstate->renderOpaqueBuffer) { + std::cout << "**** CREATING OPAQUE RENDER BUFFER OBJECTS ****\n"; + _opaque = setup_opaque_output(vmetrics->opaqueFramebufferWidth, vmetrics->opaqueFramebufferHeight); + vstate->opaque_render_state = _opaque; + setup_finish_frame(); + } + } + bool _motionDirty = false; + if(gltf_data->view_is_linked) { + //std::cout << "LINKED VIEW TRIGGER WINDOW MOTION\n"; + _motionDirty = true; + } + if(view_desc->dirty) { + //std::cout << "DIRTY VIEW TRIGGER WINDOW MOTION\n"; + _motionDirty = true; + } + view_desc->dirty = false; + + _output = vstate->render_state; + int32_t anim_num = view_desc->anim; + if((anim_num >= 0) && ((int64_t)probe->animationCount > anim_num)) { + if(std::abs(view_desc->timestep) > 0.0001f) { + //std::cout << "ACTIVE ANIMATION TRIGGER WINDOW MOTION\n"; + gltf_data->local_timestamp += view_desc->timestep; + _motionDirty = true; + } + if(gltf_data->last_anim_num != anim_num) { + gltf_data->cur_anim_maxtime = lv_gltf_animation_get_total_time(gltf_data, anim_num); + gltf_data->last_anim_num = anim_num; + } + if(gltf_data->local_timestamp >= gltf_data->cur_anim_maxtime) gltf_data->local_timestamp = 0.05f; + else if(gltf_data->local_timestamp < 0.0f) gltf_data->local_timestamp = gltf_data->cur_anim_maxtime - 0.05f; + //std::cout << "Animation #" << std::to_string(anim_num) << " | Time = " << std::to_string(local_timestamp) << "\n"; + } + + // To-do: check if the override actually affects the transform and that the affected object is visible in the scene + if(gltf_data->overrides->size() > 0) { + //std::cout << "OVERRIDES TRIGGER WINDOW MOTION\n"; + _motionDirty = true; + } + + //if (lv_gltf_compare_viewer_desc(view_desc, &(gltf_data->_lastViewDesc))) { + // std::cout << "VIEWER DESC CHANGE TRIGGER WINDOW MOTION\n"; + // _motionDirty = true; + // lv_gltf_copy_viewer_desc(view_desc, &(gltf_data->_lastViewDesc)); + //} + lv_gltf_copy_viewer_desc(view_desc, &(viewer->_lastViewDesc)); + + bool ___lastFrameNoMotion = gltf_data->__lastFrameNoMotion; + gltf_data->__lastFrameNoMotion = gltf_data->_lastFrameNoMotion; + gltf_data->_lastFrameNoMotion = true; + int32_t PREF_CAM_NUM = std::min(view_desc->camera, (int32_t)probe->cameraCount - 1); + if(_motionDirty || (PREF_CAM_NUM != gltf_data->last_camera_index) || transform_cache_is_empty(gltf_data)) { + //printf("View info: focal x/y/z = %.2f/%.2f/%.2f | pitch/yaw/distance = %.2f/%.2f/%.2f\n", view_desc->focal_x, view_desc->focal_y, view_desc->focal_z, view_desc->pitch, view_desc->yaw, view_desc->distance ); + gltf_data->_lastFrameNoMotion = false; + clear_transform_cache(gltf_data); + gltf_data->last_camera_index = PREF_CAM_NUM; + gltf_data->current_camera_index = -1; + gltf_data->has_any_cameras = false; + gltf_data->selected_camera_node = NULL; + _motionDirty = false; + auto tmat = FMAT4(); + auto cammat = FMAT4(); + fastgltf::custom_iterateSceneNodes(*asset, sceneIndex, &tmat, [&](fastgltf::Node & node, FMAT4 & parentworldmatrix, + FMAT4 & localmatrix) { + bool made_changes = false; + if(animation_get_channel_set(anim_num, gltf_data, node)->size() > 0) { + animation_matrix_apply(gltf_data->local_timestamp, anim_num, gltf_data, node, localmatrix); + made_changes = true; + } + if(gltf_data->overrides->find(&node) != gltf_data->overrides->end()) { + lv_gltf_override_t * currentOverride = (*gltf_data->overrides)[&node]; + FVEC3 _pos; + fastgltf::math::fquat _quat; + FVEC3 _scale; + fastgltf::math::decomposeTransformMatrix(localmatrix, _scale, _quat, _pos); + FVEC3 _rot = quaternionToEuler(_quat); + + // Traverse through all linked overrides + while(currentOverride != nullptr) { + if(currentOverride->prop == OP_ROTATION) { + if(currentOverride->dataMask & OMC_CHAN1) _rot[0] = currentOverride->data1; + if(currentOverride->dataMask & OMC_CHAN2) _rot[1] = currentOverride->data2; + if(currentOverride->dataMask & OMC_CHAN3) _rot[2] = currentOverride->data3; + made_changes = true; + } + else if(currentOverride->prop == OP_POSITION) { + if(currentOverride->dataMask & OMC_CHAN1) _pos[0] = currentOverride->data1; + if(currentOverride->dataMask & OMC_CHAN2) _pos[1] = currentOverride->data2; + if(currentOverride->dataMask & OMC_CHAN3) _pos[2] = currentOverride->data3; + made_changes = true; + } + else if(currentOverride->prop == OP_SCALE) { + if(currentOverride->dataMask & OMC_CHAN1) _scale[0] = currentOverride->data1; + if(currentOverride->dataMask & OMC_CHAN2) _scale[1] = currentOverride->data2; + if(currentOverride->dataMask & OMC_CHAN3) _scale[2] = currentOverride->data3; + made_changes = true; + } + + // Move to the next override in the linked list + currentOverride = currentOverride->nextOverride; + } + + // Rebuild the local matrix after applying all overrides + localmatrix = + fastgltf::math::scale( + fastgltf::math::rotate( + fastgltf::math::translate( + FMAT4(), + _pos), + fastgltf::math::eulerToQuaternion(_rot[0], _rot[1], _rot[2])), + _scale); + } + + if(made_changes || !has_cached_transform(gltf_data, &node)) { + set_cached_transform(gltf_data, &node, parentworldmatrix * localmatrix); + } + if(node.cameraIndex.has_value() && (gltf_data->current_camera_index < PREF_CAM_NUM)) { + gltf_data->has_any_cameras = true; + gltf_data->current_camera_index += 1; + if(gltf_data->current_camera_index == PREF_CAM_NUM) { + gltf_data->selected_camera_node = &node; + cammat = (parentworldmatrix * localmatrix); + } + } + }); + if(gltf_data->has_any_cameras) { + gltf_data->viewPos[0] = cammat[3][0]; + gltf_data->viewPos[1] = cammat[3][1]; + gltf_data->viewPos[2] = cammat[3][2]; + gltf_data->viewMat = fastgltf::math::invert(cammat); + } + else gltf_data->current_camera_index = -1; + } + + if((gltf_data->_lastFrameNoMotion == true) && (gltf_data->__lastFrameNoMotion == true) && + (___lastFrameNoMotion == true)) { + // Nothing changed at all, return the previous output frame + setup_finish_frame(); + lv_gltf_opengl_state_pop(); + return _output.texture; + } + + uint32_t _ss = get_skins_size(gltf_data); + if(_ss > 0) { + glDeleteTextures(SKINTEXS(gltf_data)->size(), (const GLuint *)SKINTEXS(gltf_data)->data()); + SKINTEXS(gltf_data)->clear(); + uint64_t i = 0u; + uint32_t SIZEOF_16FLOATS = sizeof(float) * 16; + while(i < _ss) { + auto skinIndex = get_skin(gltf_data, i); + auto skin = asset->skins[skinIndex]; + auto _ibm = _ibmBySkinThenNode[skinIndex]; + + std::size_t num_joints = skin.joints.size(); + std::size_t _tex_width = std::ceil(std::sqrt((float)num_joints * 8.0f)); + + GLuint rtex; + GL_CALL(glGenTextures(1, &rtex)); + SKINTEXS(gltf_data)->push_back(rtex); + GL_CALL(glBindTexture(GL_TEXTURE_2D, rtex)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)); + /* TODO: perf: Avoid doing memory allocations inside loops */ + float * _data = new float[_tex_width * _tex_width * 4]; + std::size_t _dpos = 0; + for(uint64_t j = 0; j < num_joints; j++) { + auto & _jointNode = asset->nodes[skin.joints[j]]; + FMAT4 _finalJointMat = get_cached_transform(gltf_data, + &_jointNode) * _ibm[&_jointNode]; // _ibmBySkinThenNode[skinIndex][&_jointNode]; + std::memcpy(&_data[_dpos], _finalJointMat.data(), SIZEOF_16FLOATS); // Copy final joint matrix + std::memcpy(&_data[_dpos + 16], fastgltf::math::transpose(fastgltf::math::invert(_finalJointMat)).data(), + SIZEOF_16FLOATS); // Copy normal matrix + _dpos += 32; + } + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA32F, _tex_width, _tex_width, 0, GL_RGBA, GL_FLOAT, _data)); + GL_CALL(glPixelStorei(GL_UNPACK_ALIGNMENT, 1)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, GL_NONE)); + delete[] _data; + ++i; + } + } + clear_distance_sort(gltf_data); + for(MaterialIndexMap::iterator kv = get_blended_begin(gltf_data); kv != get_blended_end(gltf_data); kv++) { + for(NodePairVector::iterator nodeElem = kv->second.begin(); nodeElem != kv->second.end(); nodeElem++) { + auto node = nodeElem->first; + add_distance_sort_prim(gltf_data, NodeIndexDistancePair(fastgltf::math::length(gltf_data->viewPos - + lv_gltf_get_centerpoint(gltf_data, get_cached_transform(gltf_data, node), node->meshIndex.value(), nodeElem->second)), + NodeIndexPair(node, nodeElem->second))); + } + } + // Sort __distance_sort_nodes by the first member (distance) + std::sort(get_distance_sort_begin(gltf_data), get_distance_sort_end(gltf_data), + [](const NodeIndexDistancePair & a, const NodeIndexDistancePair & b) { + return a.first < b.first; + }); + + gltf_data->_lastMaterialIndex = 99999; // Reset the last material index to an unused value once per frame at the start + if(vstate->renderOpaqueBuffer) { + if(gltf_data->view_is_linked) { + //setup_view_proj_matrix_from_link(viewer, gltf_data->linked_view_source, true); + } + else { + if(gltf_data->has_any_cameras) setup_view_proj_matrix_from_camera(viewer, gltf_data->current_camera_index, view_desc, + gltf_data->viewMat, gltf_data->viewPos, gltf_data, true); + else setup_view_proj_matrix(viewer, view_desc, gltf_data, true); + } + _opaque = vstate->opaque_render_state; + if(setup_restore_opaque_output(view_desc, _opaque, vmetrics->opaqueFramebufferWidth, vmetrics->opaqueFramebufferHeight, + prepare_bg)) { + // Should drawing this frame be canceled due to GL_INVALID_OPERATION error from possibly conflicting update cycles? + view_desc->error_frames += 1; + std::cout << "CANCELED FRAME A\n"; + return _output.texture; + } + if(opt_draw_bg) setup_draw_environment_background(shaders, viewer, + view_desc->blur_bg * 0.4f); // GL_CALL(glUseProgram(_shader_prog.bg_program)); + + for(MaterialIndexMap::iterator kv = get_opaque_begin(gltf_data); kv != get_opaque_end(gltf_data); kv++) { + for(NodePairVector::iterator nodeElem = kv->second.begin(); nodeElem != kv->second.end(); nodeElem++) { + auto node = nodeElem->first; + draw_primitive(nodeElem->second, view_desc, viewer, gltf_data, *node, node->meshIndex.value(), + get_cached_transform(gltf_data, node), *(shaders->lastEnv), true); + } + } + for(NodeDistanceVector::iterator kv = get_distance_sort_begin(gltf_data); kv != get_distance_sort_end(gltf_data); + kv++) { + const auto & nodeDistancePair = *kv; // Dereference the iterator to get the pair + const auto & nodeElem = nodeDistancePair.second; // Access the second member (NodeIndexPair) + auto node = nodeElem.first; + draw_primitive(nodeElem.second, view_desc, viewer, gltf_data, *node, node->meshIndex.value(), + get_cached_transform(gltf_data, node), *(shaders->lastEnv), true); + } + + GL_CALL(glBindTexture(GL_TEXTURE_2D, _opaque.texture)); + GL_CALL(glGenerateMipmap(GL_TEXTURE_2D)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, GL_NONE)); + setup_finish_frame(); + // "blit" the multisampled opaque texture into the color buffer, which adds antialiasing + //GL_CALL(glBindFramebuffer(GL_READ_FRAMEBUFFER, viewer->opaqueFramebufferScratch)); + //GL_CALL(glBindFramebuffer(GL_DRAW_FRAMEBUFFER, viewer->opaqueFramebuffer)); + //GL_CALL(glBlitFramebuffer(0, 0, viewer->opaqueFramebufferWidth, viewer->opaqueFramebufferHeight, 0, 0, viewer->opaqueFramebufferWidth, viewer->opaqueFramebufferHeight, GL_COLOR_BUFFER_BIT, GL_NEAREST)); + } + + if(gltf_data->view_is_linked) { + //setup_view_proj_matrix_from_link(viewer, gltf_data->linked_view_source, false); + } + else { + if(gltf_data->has_any_cameras) setup_view_proj_matrix_from_camera(viewer, gltf_data->current_camera_index, view_desc, + gltf_data->viewMat, gltf_data->viewPos, gltf_data, false); + else setup_view_proj_matrix(viewer, view_desc, gltf_data, false); + } + viewer->envRotationAngle = shaders->lastEnv->angle; + + { + if(setup_restore_primary_output(view_desc, _output, (uint32_t)view_desc->render_width - (crop_left + crop_right), + (uint32_t)view_desc->render_height - (crop_top + crop_bottom), crop_left, crop_bottom, prepare_bg)) { + // Should drawing this frame be canceled due to GL_INVALID_OPERATION error from possibly conflicting update cycles? + view_desc->error_frames += 1; + std::cout << "CANCELED FRAME B\n"; + return _output.texture; + } + if(opt_draw_bg) setup_draw_environment_background(shaders, viewer, view_desc->blur_bg); + for(MaterialIndexMap::iterator kv = get_opaque_begin(gltf_data); kv != get_opaque_end(gltf_data); kv++) { + for(NodePairVector::iterator nodeElem = kv->second.begin(); nodeElem != kv->second.end(); nodeElem++) { + auto node = nodeElem->first; + draw_primitive(nodeElem->second, view_desc, viewer, gltf_data, *node, node->meshIndex.value(), + get_cached_transform(gltf_data, node), *(shaders->lastEnv), false); + } + } + for(NodeDistanceVector::iterator kv = get_distance_sort_begin(gltf_data); kv != get_distance_sort_end(gltf_data); + kv++) { + const auto & nodeDistancePair = *kv; // Dereference the iterator to get the pair + const auto & nodeElem = nodeDistancePair.second; // Access the second member (NodeIndexPair) + auto node = nodeElem.first; + draw_primitive(nodeElem.second, view_desc, viewer, gltf_data, *node, node->meshIndex.value(), + get_cached_transform(gltf_data, node), *(shaders->lastEnv), false); + } + if(opt_aa_this_frame) { + GL_CALL(glBindTexture(GL_TEXTURE_2D, _output.texture)); + GL_CALL(glGenerateMipmap(GL_TEXTURE_2D)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, GL_NONE)); + } + setup_finish_frame(); + } + lv_gltf_opengl_state_pop(); + view_desc->frame_was_cached = false; + return _output.texture; +} + +/* + + + // MORPH TARGETS + // this is a primitive + if (this.targets !== undefined && this.targets.length > 0) + { + const max2DTextureSize = Math.pow(webGlContext.getParameter(GL.MAX_TEXTURE_SIZE), 2); + const maxTextureArraySize = webGlContext.getParameter(GL.MAX_ARRAY_TEXTURE_LAYERS); + // Check which attributes are affected by morph targets and + // define offsets for the attributes in the morph target texture. + const attributeOffsets = {}; + let attributeOffset = 0; + + // Gather used attributes from all targets (some targets might + // use more attributes than others) + const attributes = Array.from(this.targets.reduce((acc, target) => { + Object.keys(target).map(val => acc.add(val)); + return acc; + }, new Set())); + + const vertexCount = gltf.accessors[this.attributes[attributes[0]]].count; + this.defines.push(`NUM_VERTICIES ${vertexCount}`); + let targetCount = this.targets.length; + if (targetCount * attributes.length > maxTextureArraySize) + { + targetCount = Math.floor(maxTextureArraySize / attributes.length); + console.warn(`Morph targets exceed texture size limit. Only ${targetCount} of ${this.targets.length} are used.`); + } + + for (const attribute of attributes) + { + // Add morph target defines + this.defines.push(`HAS_MORPH_TARGET_${attribute} 1`); + this.defines.push(`MORPH_TARGET_${attribute}_OFFSET ${attributeOffset}`); + // Store the attribute offset so that later the + // morph target texture can be assembled. + attributeOffsets[attribute] = attributeOffset; + attributeOffset += targetCount; + } + this.defines.push("HAS_MORPH_TARGETS 1"); + + if (vertexCount <= max2DTextureSize) { + // Allocate the texture buffer. Note that all target attributes must be vec3 types and + // all must have the same vertex count as the primitives other attributes. + const width = Math.ceil(Math.sqrt(vertexCount)); + const singleTextureSize = Math.pow(width, 2) * 4; + const morphTargetTextureArray = new Float32Array(singleTextureSize * targetCount * attributes.length); + + // Now assemble the texture from the accessors. + for (let i = 0; i < targetCount; ++i) + { + let target = this.targets[i]; + for (let [attributeName, offsetRef] of Object.entries(attributeOffsets)){ + if (target[attributeName] != undefined) { + const accessor = gltf.accessors[target[attributeName]]; + const offset = offsetRef * singleTextureSize; + if (accessor.componentType != GL.FLOAT && accessor.normalized == false){ + console.warn("Unsupported component type for morph targets"); + attributeOffsets[attributeName] = offsetRef + 1; + continue; + } + const data = accessor.getNormalizedDeinterlacedView(gltf); + switch(accessor.type) + { + case "VEC2": + case "VEC3": + { + // Add padding to fit vec2/vec3 into rgba + let paddingOffset = 0; + let accessorOffset = 0; + const componentCount = accessor.getComponentCount(accessor.type); + for (let j = 0; j < accessor.count; ++j) { + morphTargetTextureArray.set(data.subarray(accessorOffset, accessorOffset + componentCount), offset + paddingOffset); + paddingOffset += 4; + accessorOffset += componentCount; + } + break; + } + case "VEC4": + morphTargetTextureArray.set(data, offset); + break; + default: + console.warn("Unsupported attribute type for morph targets"); + break; + } + } + attributeOffsets[attributeName] = offsetRef + 1; + } + } + + + // Add the morph target texture. + // We have to create a WebGL2 texture as the format of the + // morph target texture has to be explicitly specified + // (gltf image would assume uint8). + let texture = webGlContext.createTexture(); + webGlContext.bindTexture( webGlContext.TEXTURE_2D_ARRAY, texture); + // Set texture format and upload data. + let internalFormat = webGlContext.RGBA32F; + let format = webGlContext.RGBA; + let type = webGlContext.FLOAT; + let data = morphTargetTextureArray; + webGlContext.texImage3D( + webGlContext.TEXTURE_2D_ARRAY, + 0, //level + internalFormat, + width, + width, + targetCount * attributes.length, //Layer count + 0, //border + format, + type, + data); + // Ensure mipmapping is disabled and the sampler is configured correctly. + webGlContext.texParameteri( GL.TEXTURE_2D_ARRAY, GL.TEXTURE_WRAP_S, GL.CLAMP_TO_EDGE); + webGlContext.texParameteri( GL.TEXTURE_2D_ARRAY, GL.TEXTURE_WRAP_T, GL.CLAMP_TO_EDGE); + webGlContext.texParameteri( GL.TEXTURE_2D_ARRAY, GL.TEXTURE_MIN_FILTER, GL.NEAREST); + webGlContext.texParameteri( GL.TEXTURE_2D_ARRAY, GL.TEXTURE_MAG_FILTER, GL.NEAREST); + + // Now we add the morph target texture as a gltf texture info resource, so that + // we can just call webGl.setTexture(..., gltfTextureInfo, ...) in the renderer. + const morphTargetImage = new gltfImage( + undefined, // uri + GL.TEXTURE_2D_ARRAY, // type + 0, // mip level + undefined, // buffer view + undefined, // name + ImageMimeType.GLTEXTURE, // mimeType + texture // image + ); + gltf.images.push(morphTargetImage); + + gltf.samplers.push(new gltfSampler(GL.NEAREST, GL.NEAREST, GL.CLAMP_TO_EDGE, GL.CLAMP_TO_EDGE, undefined)); + + const morphTargetTexture = new gltfTexture( + gltf.samplers.length - 1, + gltf.images.length - 1, + GL.TEXTURE_2D_ARRAY); + // The webgl texture is already initialized -> this flag informs + // webgl.setTexture about this. + morphTargetTexture.initialized = true; + + gltf.textures.push(morphTargetTexture); + + this.morphTargetTextureInfo = new gltfTextureInfo(gltf.textures.length - 1, 0, true); + this.morphTargetTextureInfo.samplerName = "u_MorphTargetsSampler"; + this.morphTargetTextureInfo.generateMips = false; + } else { + console.warn("Mesh of Morph targets too big. Cannot apply morphing."); + } + } +*/ diff --git a/lib/lv_gltf/view/lv_gltf_view.h b/lib/lv_gltf/view/lv_gltf_view.h new file mode 100644 index 0000000..55ce9ef --- /dev/null +++ b/lib/lv_gltf/view/lv_gltf_view.h @@ -0,0 +1,579 @@ +#ifndef LV_GLTFVIEW_H +#define LV_GLTFVIEW_H + +#include "../data/lv_gltf_data.h" + +#ifdef __cplusplus +extern "C" { +#endif + +#include + +#ifndef SHADER_CACHE_H +//////////////////////////////////////////////////////////////////////////////////////// +typedef struct lv_opengl_shader_cache_struct lv_opengl_shader_cache_t; +typedef struct lv_shader_program_struct lv_shader_program_t;//, *pProgram; +//////////////////////////////////////////////////////////////////////////////////////// +#endif + + +typedef struct lv_gltf_view_struct lv_gltf_view_t; +/** + * @brief Get the isolated filename from a full path. + * + * @param filename The full filename. + * @param out_buffer Buffer to store the isolated filename. + * @param max_out_length Maximum length of the output buffer. + */ +void lv_gltf_get_isolated_filename(const char * filename, char * out_buffer, uint32_t max_out_length); + +/** + * @brief Raycast to find the ground position based on mouse coordinates. + * + * @param viewer Pointer to the viewer. + * @param mouse_x The X coordinate of the mouse. + * @param mouse_y The Y coordinate of the mouse. + * @param win_width The width of the window. + * @param win_height The height of the window. + * @param ground_height The height of the ground. + * @param out_pos Pointer to store the output position. + * @return true if the raycast was successful, false otherwise. + */ +bool lv_gltf_view_raycast_ground_position(lv_gltf_view_t * viewer, int32_t mouse_x, int32_t mouse_y, int32_t win_width, + int32_t win_height, double ground_height, float * out_pos); + +/** + * @brief Get the viewing pitch angle (up/down). This is only valid when a scene camera is not enabled. + * + * @param view Pointer to the lv_gltf_view. + * @return The pitch angle in degrees. + */ +float lv_gltf_view_get_pitch(lv_gltf_view_t * view); + +/** + * @brief Get the viewing yaw angle (left/right). This is only valid when a scene camera is not enabled. + * + * @param view Pointer to the lv_gltf_view. + * @return The yaw angle in degrees. + */ +float lv_gltf_view_get_yaw(lv_gltf_view_t * view); + +/** + * @brief Get the viewing distance (in/out). This is only valid when a scene camera is not enabled. + * + * @param view Pointer to the lv_gltf_view. + * @return The viewing distance (in model bounding volume units, default 1.0). + */ +float lv_gltf_view_get_distance(lv_gltf_view_t * view); + +/** + * @brief Get the vertical field of view, in degrees. + * + * @param view Pointer to the lv_gltf_view. + * @return The vertical field of view, in degrees. + */ +float lv_gltf_view_get_fov(lv_gltf_view_t * view); + +/** + * @brief Get the focal position x component. This is only valid when a scene camera is not enabled. + * + * @param view Pointer to the lv_gltf_view. + * @return The focal position x component in scene units. + */ +float lv_gltf_view_get_focal_x(lv_gltf_view_t * view); + +/** + * @brief Get the focal position y component. This is only valid when a scene camera is not enabled. + * + * @param view Pointer to the lv_gltf_view. + * @return The focal position y component in scene units. + */ +float lv_gltf_view_get_focal_y(lv_gltf_view_t * view); + +/** + * @brief Get the focal position x component. This is only valid when a scene camera is not enabled. + * + * @param view Pointer to the lv_gltf_view. + * @return The focal position x component in scene units. + */ +float lv_gltf_view_get_focal_z(lv_gltf_view_t * view); + +/** + * @brief Get the yaw angle offset (for platter spin). This is only valid when a scene camera is not enabled. + * + * @param view Pointer to the lv_gltf_view. + * @return The yaw angle offset in degrees. + */ +float lv_gltf_view_get_spin_degree_offset(lv_gltf_view_t * view); + +/** + * @brief Get the anti-aliasing mode enum value as unsigned int. 0 = Off, 1 = Always On, 2 = Auto (Off during movement, otherwise on) + * + * @param view Pointer to the lv_gltf_view. + * @return The current anti-aliasing mode (defined in AntialiasingMode enum), as unsigned int. + */ +uint32_t lv_gltf_view_get_aa_mode(lv_gltf_view_t * view); + +/** + * @brief Get the background mode enum value as unsigned int. 0 = Clear, 1 = Solid Color, 2 = Environment + * + * @param view Pointer to the lv_gltf_view. + * @return The current background mode (defined in BackgroundMode enum), as unsigned int. + */ +uint32_t lv_gltf_view_get_bg_mode(lv_gltf_view_t * view); + +/** + * @brief Set the viewing angle pitch in degrees x 100 (36000 per full turn) + * + * @param view Pointer to the lv_gltf_view. + * @param pitch_degrees_x10 The view pitch in degrees times ten, as signed integer. + */ +void lv_gltf_view_set_pitch(lv_gltf_view_t * view, int pitch_degrees_x100); + +/** + * @brief Set the viewing angle yaw in degrees x 100 (36000 per full turn) + * + * @param view Pointer to the lv_gltf_view. + * @param yaw_degrees_x10 The yaw pitch in degrees times ten, as signed integer. + */ +void lv_gltf_view_set_yaw(lv_gltf_view_t * view, int yaw_degrees_x100); + +/** + * @brief Set the viewing distance in model bounding volume units x 1000 (1000 per standard distance which is 250% the bounding volume radius) + * + * @param view Pointer to the lv_gltf_view. + * @param distance_x1000 The viewing distance in model bounding volume units x 1000 as signed integer (note: negative numbers are valid but will probably not be useful, putting the model out of view). + */ +void lv_gltf_view_set_distance(lv_gltf_view_t * view, int distance_x1000); + +/** + * @brief Set the vertical field of view. If value is 0 or less, orthographic projection will be used, otherwise perspective projection will be used. + * + * @param view Pointer to the lv_gltf_view. + * @param fov_degrees The number of degrees visible from the bottom edge of the window to the top. Default: 45.0 + */ +void lv_gltf_view_set_fov(lv_gltf_view_t * view, float fov_degrees); + +/** + * @brief Set the viewing focal position x component + * + * @param view Pointer to the lv_gltf_view. + * @param focal_x The viewing position x component as float + */ +void lv_gltf_view_set_focal_x(lv_gltf_view_t * view, float focal_x); + +/** + * @brief Set the viewing focal position y component + * + * @param view Pointer to the lv_gltf_view. + * @param focal_y The viewing position y component as float + */ +void lv_gltf_view_set_focal_y(lv_gltf_view_t * view, float focal_y); + +/** + * @brief Set the viewing focal position z component + * + * @param view Pointer to the lv_gltf_view. + * @param focal_z The viewing position z component as float + */ +void lv_gltf_view_set_focal_z(lv_gltf_view_t * view, float focal_z); + +/** + * @brief Set the red component of the background color. + * + * @param view Pointer to the lv_gltf_view. + * @param r The red component value (0-255) as a uint32_t. + */ +void lv_gltf_view_set_bgcolor_red(lv_gltf_view_t * view, uint32_t r); +void lv_gltf_view_set_bg_r(lv_gltf_view_t * view, uint32_t r); + +/** + * @brief Set the green component of the background color. + * + * @param view Pointer to the lv_gltf_view. + * @param g The green component value (0-255) as a uint32_t. + */ +void lv_gltf_view_set_bgcolor_green(lv_gltf_view_t * view, uint32_t g); +void lv_gltf_view_set_bg_g(lv_gltf_view_t * view, uint32_t g); + +/** + * @brief Set the blue component of the background color. + * + * @param view Pointer to the lv_gltf_view. + * @param b The blue component value (0-255) as a uint32_t. + */ +void lv_gltf_view_set_bgcolor_blue(lv_gltf_view_t * view, uint32_t b); +void lv_gltf_view_set_bg_b(lv_gltf_view_t * view, uint32_t b); + +/** + * @brief Set the opacity of the background color. + * + * @param view Pointer to the lv_gltf_view. + * @param a The opacity value (0-255) as a uint32_t, where 0 is fully transparent and 255 is fully opaque. + */ +void lv_gltf_view_set_bg_opa(lv_gltf_view_t * view, uint32_t a); +void lv_gltf_view_set_bg_a(lv_gltf_view_t * view, uint32_t a); + +/** + * @brief Set the background color using RGB components. + * + * @param view Pointer to the lv_gltf_view. + * @param r The red component value (0-255) as a uint32_t. + * @param g The green component value (0-255) as a uint32_t. + * @param b The blue component value (0-255) as a uint32_t. + */ +void lv_gltf_view_set_bgcolor_RGB(lv_gltf_view_t * view, uint32_t r, uint32_t g, uint32_t b); + +/** + * @brief Set the background color using RGBA components. + * + * @param view Pointer to the lv_gltf_view. + * @param r The red component value (0-255) as a uint32_t. + * @param g The green component value (0-255) as a uint32_t. + * @param b The blue component value (0-255) as a uint32_t. + * @param a The opacity value (0-255) as a uint32_t, where 0 is fully transparent and 255 is fully opaque. + */ +void lv_gltf_view_set_bgcolor_RGBA(lv_gltf_view_t * view, uint32_t r, uint32_t g, uint32_t b, uint32_t a); + +/** + * @brief Increment the viewing angle pitch by a floating point number of degrees + * + * @param view Pointer to the lv_gltf_view. + * @param pitch_degrees The amount to change pitch in degrees, as a float. + */ +void lv_gltf_view_inc_pitch(lv_gltf_view_t * view, float pitch_inc_degrees); + +/** + * @brief Increment the viewing angle yaw by a floating point number of degrees + * + * @param view Pointer to the lv_gltf_view. + * @param yaw_degrees The amount to change yaw in degrees, as a float. + */ +void lv_gltf_view_inc_yaw(lv_gltf_view_t * view, float yaw_inc_degrees); + + + + +/** + * @brief Increment the viewing distance by a floating point number of standard distance units (each is 250% the bounding volume radius) + * + * @param view Pointer to the lv_gltf_view. + * @param distance The amount to change viewing distance in model bounding volume units as a floating point number. + */ +void lv_gltf_view_inc_distance(lv_gltf_view_t * view, float distance_inc_units); + +/** + * @brief Increment the focal point's X coordinate by a specified amount. + * + * @param view Pointer to the lv_gltf_view. + * @param focal_x_inc The amount to change the focal point's X coordinate. + */ +void lv_gltf_view_inc_focal_x(lv_gltf_view_t * view, float focal_x_inc); + +/** + * @brief Increment the focal point's Y coordinate by a specified amount. + * + * @param view Pointer to the lv_gltf_view. + * @param focal_y_inc The amount to change the focal point's Y coordinate. + */ +void lv_gltf_view_inc_focal_y(lv_gltf_view_t * view, float focal_y_inc); + +/** + * @brief Increment the focal point's Z coordinate by a specified amount. + * + * @param view Pointer to the lv_gltf_view. + * @param focal_z_inc The amount to change the focal point's Z coordinate. + */ +void lv_gltf_view_inc_focal_z(lv_gltf_view_t * view, float focal_z_inc); + +/** + * @brief Increment the spin degree offset by a specified amount. + * + * @param view Pointer to the lv_gltf_view. + * @param spin_degree_inc The amount to change the spin degree offset. + */ +void lv_gltf_view_inc_spin_degree_offset(lv_gltf_view_t * view, float spin_degree_inc); + +/** + * @brief Set the active camera by its number. + * + * @param view Pointer to the lv_gltf_view. + * @param camera_number The index of the camera to set as active. + */ +void lv_gltf_view_set_camera(lv_gltf_view_t * view, int camera_number); + +/** + * @brief Set the animation to be used in the viewer. + * + * @param view Pointer to the lv_gltf_view. + * @param anim_num The index of the animation to set. + */ +void lv_gltf_view_set_anim(lv_gltf_view_t * view, uint32_t anim_num); + +/** + * @brief Set the background mode for the viewer. + * + * @param view Pointer to the lv_gltf_view. + * @param bg_mode The mode to set for the background. + */ +void lv_gltf_view_set_bg_mode(lv_gltf_view_t * view, uint32_t bg_mode); + +/** + * @brief Set the anti-aliasing mode for rendering. + * + * @param view Pointer to the lv_gltf_view. + * @param aa_mode The anti-aliasing mode to set. + */ +void lv_gltf_view_set_aa_mode(lv_gltf_view_t * view, uint32_t aa_mode); +/** + * @brief Set the amount of blur to apply to the background. + * + * @param view Pointer to the lv_gltf_view. + * @param blur_bg_amount The amount of blur to apply to the background. + */ +void lv_gltf_view_set_blur_bg(lv_gltf_view_t * view, float blur_bg_amount); + +/** + * @brief Set the environmental power for lighting calculations. + * + * @param view Pointer to the lv_gltf_view. + * @param env_pow The power value to set for environmental lighting. + */ +void lv_gltf_view_set_env_pow(lv_gltf_view_t * view, float env_pow); + +/** + * @brief Set the exposure level for rendering. + * + * @param view Pointer to the lv_gltf_view. + * @param exposure The exposure level to set for rendering. + */ +void lv_gltf_view_set_exposure(lv_gltf_view_t * view, float exposure); +/** + * @brief Set the spin degree offset for the viewer. + * + * @param view Pointer to the lv_gltf_view. + * @param spin_degree_offset The degree offset to set for spinning. + */ +void lv_gltf_view_set_spin_degree_offset(lv_gltf_view_t * view, float spin_degree_offset); + +/** + * @brief Check if the current frame was cached. + * + * @param view Pointer to the lv_gltf_view. + * @return true if the frame was cached, false otherwise. + */ +bool lv_gltf_view_check_frame_was_cached(lv_gltf_view_t * view); + +/** + * @brief Check if the current frame was rendered with anti-aliasing. + * + * @param view Pointer to the lv_gltf_view. + * @return true if the frame was anti-aliased, false otherwise. + */ +bool lv_gltf_view_check_frame_was_antialiased(lv_gltf_view_t * view); +/** + * @brief Recenter the view on the specified model. + * + * @param viewer Pointer to the lv_gltf_view. + * @param gltf_data Pointer to the GLTF data for the model. + */ +void lv_gltf_view_recenter_view_on_model(lv_gltf_view_t * viewer, lv_gltf_data_t * gltf_data); + +/** + * @brief Reset the viewer settings between models. + * + * @param viewer Pointer to the lv_gltf_view. + */ +void lv_gltf_view_reset_between_models(lv_gltf_view_t * viewer); + + +/** + * @brief Set up the image-based lighting (IBL) sampler with the specified environment texture. + * + * @param _lastEnv Pointer to the last environment textures used. + * @param _env_filename The filename of the environment texture to load. + * @param _env_rotation_degreesX10 The rotation of the environment texture in tenths of degrees. + * @return The configured environment textures. + */ +gl_environment_textures lv_gltf_view_ibl_sampler_setup(gl_environment_textures * _lastEnv, const char * _env_filename, + int _env_rotation_degreesX10); + +/** + * @brief Set a callback function to report the loading phase of the IBL texture. + * + * @param _load_progress_callback The callback function to be called during the loading phase. + */ +void lv_gltf_view_ibl_set_loadphase_callback(void (*_load_progress_callback)(const char *, const char *, float, float, + float, float)); + +/** + * @brief Get the isolated filename from a given path. + * + * @param filename The input filename or path. + * @param out_buffer Buffer to store the isolated filename. + * @param max_out_length The maximum length of the output buffer. + */ +void lv_gltf_get_isolated_filename(const char * filename, char * out_buffer, uint32_t max_out_length); + +/** + * @brief Set a callback function to report the loading phase of the GLTF model. + * + * @param load_progress_callback The callback function to be called during the loading phase. + * @return true if the callback was set successfully, false otherwise. + */ +bool lv_gltf_view_set_loadphase_callback(void (*load_progress_callback)(const char *, const char *, float, float, float, + float)); +/** + * @brief Get the width of the viewer. + * + * @param view Pointer to the lv_gltf_view. + * @return The width of the viewer in pixels. + */ +uint32_t lv_gltf_view_get_width(lv_gltf_view_t * view); + +/** + * @brief Get the height of the viewer. + * + * @param view Pointer to the lv_gltf_view. + * @return The height of the viewer in pixels. + */ +uint32_t lv_gltf_view_get_height(lv_gltf_view_t * view); + +/** + * @brief Set the width of the viewer. + * + * @param view Pointer to the lv_gltf_view. + * @param new_width The new width to set for the viewer in pixels. + */ +void lv_gltf_view_set_width(lv_gltf_view_t * view, uint32_t new_width); + +/** + * @brief Set the height of the viewer. + * + * @param view Pointer to the lv_gltf_view. + * @param new_height The new height to set for the viewer in pixels. + */ +void lv_gltf_view_set_height(lv_gltf_view_t * view, uint32_t new_height); + +/** + * @brief Mark the viewer as needing an update. + * + * @param view Pointer to the lv_gltf_view. + */ +void lv_gltf_view_mark_dirty(lv_gltf_view_t * view); + +/** + * @brief Get the size of the viewer data structure in bytes. + * + * @return The size of the viewer data structure. + */ +unsigned int get_viewer_datasize(void); + +/** + * @brief Initialize the viewer structure with default values. + * + * @param _ViewerMem Pointer to the lv_gltf_view structure to initialize. + */ +void init_viewer_struct(lv_gltf_view_t * _ViewerMem); + +/** + * @brief Destroy the viewer and free associated resources. + * + * @param _viewer Pointer to the lv_gltf_view to destroy. + */ +void lv_gltf_view_destroy(lv_gltf_view_t * _viewer); + +/** + * @brief Perform a raycast to determine the ground position based on mouse coordinates. + * + * @param view Pointer to the lv_gltf_view. + * @param mouse_x The X coordinate of the mouse. + * @param mouse_y The Y coordinate of the mouse. + * @param win_width The width of the window. + * @param win_height The height of the window. + * @param ground_height The height of the ground plane. + * @param out_pos Pointer to store the resulting ground position. + * @return true if the raycast was successful, false otherwise. + */ +bool lv_gltf_view_raycast_ground_position(lv_gltf_view_t * view, int32_t mouse_x, int32_t mouse_y, int32_t win_width, + int32_t win_height, double ground_height, float * out_pos); + +/** + * @brief Render the GLTF model using the specified shaders and settings. + * + * @param shaders Pointer to the OpenGL shader cache. + * @param view Pointer to the lv_gltf_view. + * @param gltf_data Pointer to the GLTF data to render. + * @param prepare_bg Flag indicating whether to prepare the background. + * @param crop_left The amount to crop from the left. + * @param crop_right The amount to crop from the right. + * @param crop_top The amount to crop from the top. + * @param crop_bottom The amount to crop from the bottom. + * @return The result of the rendering operation. + */ +uint32_t lv_gltf_view_render(lv_opengl_shader_cache_t * shaders, lv_gltf_view_t * view, lv_gltf_data_t * gltf_data, + bool prepare_bg, uint32_t crop_left, uint32_t crop_right, uint32_t crop_top, uint32_t crop_bottom); + +/** + * @brief Save the current viewer output as a PNG file. + * + * @param viewer Pointer to the lv_gltf_view. + * @param filename The name of the file to save the PNG as. + * @param alpha_enabled Flag indicating whether to include alpha channel. + * @param compression_level The level of compression to apply. + */ +void lv_gltf_view_utils_save_png(lv_gltf_view_t * viewer, const char * filename, bool alpha_enabled, + uint32_t compression_level); + +/** + * @brief Get the pixels of any valid OpenGL texture id. + * + * @param pixels Buffer to store the pixel data. + * @param viewer Pointer to the lv_gltf_view. + * @param tex_id The texture ID to capture. + * @param alpha_enabled Flag indicating whether to include alpha channel. + * @param mipmapnum The mipmap level to capture. + * @param width The width of the capture. + * @param height The height of the capture. + */ +void lv_gltf_view_utils_get_texture_pixels(char * pixels, uint32_t tex_id, bool alpha_enabled, uint32_t mipmapnum, + uint32_t width, uint32_t height); + +/** + * @brief Save a pixel buffer to a PNG file. + * + * @param pixels The pixel data to save. + * @param filename The name of the file to save the PNG as. + * @param alpha_enabled Flag indicating whether to include alpha channel. + * @param compression_level The level of compression to apply. + * @param width The width of the pixel buffer. + * @param height The height of the pixel buffer. + */ +void lv_gltf_view_utils_save_pixelbuffer_to_png(char * pixels, const char * filename, bool alpha_enabled, + uint32_t compression_level, uint32_t width, uint32_t height); + +/** + * @brief Save a texture to a PNG file. + * + * @param tex_id The texture ID to save. + * @param filename The name of the file to save the PNG as. + * @param alpha_enabled Flag indicating whether to include alpha channel. + * @param compression_level The level of compression to apply. + * @param mipmapnum The mipmap level to save. + * @param width The width of the pixel buffer. + * @param height The height of the pixel buffer. + */ +void lv_gltf_view_utils_save_texture_to_png(uint32_t tex_id, const char * filename, bool alpha_enabled, + uint32_t compression_level, uint32_t mipmapnum, uint32_t width, uint32_t height); + + +// TO-DO: This should be in gltf_data, not view +void lv_gltf_view_set_timestep(lv_gltf_view_t * view, float timestep); + + + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*LV_GLTFVIEW_H*/ diff --git a/lib/lv_gltf/view/lv_gltf_view_internal.h b/lib/lv_gltf/view/lv_gltf_view_internal.h new file mode 100644 index 0000000..8b98efa --- /dev/null +++ b/lib/lv_gltf/view/lv_gltf_view_internal.h @@ -0,0 +1,101 @@ +#ifndef LV_GLTF_VIEW_INTERNAL_H +#define LV_GLTF_VIEW_INTERNAL_H + +#include "../data/lv_gltf_data.h" +#include "../data/lv_gltf_data_internal.h" +#include + +typedef enum { + ANTIALIAS_OFF = 0, + ANTIALIAS_CONSTANT = 1, + ANTIALIAS_NOT_MOVING = 2, + ANTIALIAS_UNKNOWN = 999 +} AntialiasingMode; + +typedef enum { + BG_CLEAR = 0, + BG_SOLID = 1, + BG_ENVIRONMENT = 2, + BG_UNKNOWN = 999 +} BackgroundMode; + +typedef struct { + bool overrideBaseColor; + uint32_t materialVariant; + uint64_t sceneIndex; +} _ViewerOpts; + +typedef struct { + uint64_t opaqueRenderTexture; + uint64_t opaqueFramebuffer; + uint64_t opaqueFramebufferScratch; + uint64_t opaqueDepthTexture; + uint64_t opaqueFramebufferWidth; + uint64_t opaqueFramebufferHeight; + uint64_t windowHeight; + uint64_t windowWidth; + float fWindowHeight; + float fWindowWidth; + uint64_t vertex_count; +} _ViewerMetrics; + +typedef struct { + bool init_success; + uint32_t texture; + uint32_t renderbuffer; + unsigned framebuffer; +} gl_renwin_state_t; + +typedef struct { + _ViewerOpts options; + _ViewerMetrics metrics; + gl_renwin_state_t render_state; + gl_renwin_state_t opaque_render_state; + bool render_state_ready; + bool renderOpaqueBuffer; +} _ViewerState; + +typedef struct { + float pitch; + float yaw; + float distance; + int32_t width; // The user specified width and height of this output + int32_t height; + int32_t render_width; // If anti-aliasing is not applied this frame, these are the same as width/height, if antialiasing + int32_t render_height; // is enabled, these are width/height * antialias upscale power (currently 2.0) + float fov; // The vertical FOV, in degrees. If this is zero, the view will be orthographic (non-perspective) + bool recenter_flag; + float spin_degree_offset; // This amount is added to the yaw and can be incremented overtime for a spinning platter effect + float focal_x; + float focal_y; + float focal_z; + uint8_t bg_r; // The background color r/g/b/a - note the rgb components have affect on antialiased edges that border on empty space, even when alpha is zero. + uint8_t bg_g; + uint8_t bg_b; + uint8_t bg_a; + bool frame_was_cached; + bool frame_was_antialiased; + bool dirty; + int32_t camera; // -1 for default (first scene camera if available or platter if not), 0 = platter, 1+ = Camera index in the order it appeared within the current scene render. Any value higher than the scene's camera count will be limited to the scene's camera count. + int32_t anim; // -1 for no animations, 0+ = Animation index. Any value higher than the scene's animation count will be limited to the scene's animation count. + float timestep; // How far to step the current animation in seconds + int32_t error_frames; // temporary counter of how many times the texture failed to update in the past second + int32_t aa_mode; // The anti-aliasing mode: 0 = None, 1 = Always, 2 = When Moving or Animated + int32_t bg_mode; // The background mode: 0 = Clear, 1 = Solid Color, 2 = The Environment + float blur_bg; // How much to blur the environment background, between 0.0 and 1.0 + float env_pow; // Environmental brightness, 1.0 default + float exposure; // Image exposure level, 1.0 default +} gl_viewer_desc_t; + +struct gl_shader_light_t { + float direction[3]; // Represents a vec3 + float range; // Float value + float color[3]; // Represents a vec3 + float intensity; // Float value + float position[3]; // Represents a vec3 + float innerConeCos; // Float value + float outerConeCos; // Float value + int type; // Integer value +}; + +#endif diff --git a/lib/lv_gltf/view/lv_gltf_view_internal.hpp b/lib/lv_gltf/view/lv_gltf_view_internal.hpp new file mode 100644 index 0000000..d13030c --- /dev/null +++ b/lib/lv_gltf/view/lv_gltf_view_internal.hpp @@ -0,0 +1,125 @@ +#ifndef LV_GLTFVIEW_PRIVATE_H +#define LV_GLTFVIEW_PRIVATE_H + +#include "lv_gltf_view.h" +#include "lv_gltf_view_internal.h" +#include +#include + +#include "../data/lv_gltf_data_internal.hpp" + +#ifdef __cplusplus + +#include + +struct _MatrixSet { + FMAT4 viewMatrix = FMAT4(1.0f); + FMAT4 projectionMatrix = FMAT4(1.0f); + FMAT4 viewProjectionMatrix = FMAT4(1.0f); +}; + + +struct lv_gltf_view_struct { + _ViewerState state; + _MatrixSet mats; + + FVEC4 overrideBaseColorFactor = FVEC4(1.0f); + FVEC3 direction = FVEC3(0.0f, 0.0f, -1.0f); + FVEC3 cameraPos = FVEC3(0.0f, 0.0f, 0.0f); + fastgltf::Optional cameraIndex = std::nullopt; + + float envRotationAngle = 0.f; + float bound_radius; + + gl_viewer_desc_t desc; + gl_viewer_desc_t _lastViewDesc; + +}; +typedef struct lv_gltf_view_struct * _VIEW; +typedef uint64_t _UINT; + +void* get_matrix_view(_VIEW V); +void* get_matrix_proj(_VIEW V); +void* get_matrix_viewproj(_VIEW V); +#define GET_VIEW_MAT(v) ((FMAT4*)get_matrix_view(v)) +#define GET_PROJ_MAT(v) ((FMAT4*)get_matrix_proj(v)) +#define GET_VIEWPROJ_MAT(v) ((FMAT4*)get_matrix_viewproj(v)) + +_ViewerState* get_viewer_state(_VIEW V); +gl_viewer_desc_t* lv_gltf_view_get_desc(_VIEW V); +_ViewerOpts* get_viewer_opts(_VIEW V); +_ViewerMetrics* get_viewer_metrics(_VIEW V); + +void set_shader (_VIEW V,_UINT I, UniformLocs _uniforms, gl_renwin_shaderset_t _shaderset); +void set_cam_pos (_VIEW V,float x,float y,float z); +void __free_viewer_struct(_VIEW V); +void setup_environment_rotation_matrix(float env_rotation_angle, uint32_t shader_program); +void setup_uniform_color_alpha(GLint uniform_loc, fastgltf::math::nvec4 color); +void setup_uniform_color(GLint uniform_loc, fastgltf::math::nvec3 color); +uint32_t setup_texture(uint32_t tex_unit, uint32_t tex_name, int32_t tex_coord_index, + std::unique_ptr& tex_transform, + GLint sampler, GLint uv_set, GLint uv_transform); + +void setup_cleanup_opengl_output(gl_renwin_state_t *state); + +void lv_gltf_opengl_state_push(void); +void lv_gltf_opengl_state_pop(void); +gl_renwin_state_t setup_primary_output(uint32_t texture_width, uint32_t texture_height, bool mipmaps_enabled); +void setup_finish_frame(void); +void setup_compile_and_load_bg_shader(lv_opengl_shader_cache_t * shaders); +gl_renwin_shaderset_t setup_compile_and_load_shaders(lv_opengl_shader_cache_t * shaders); +void setup_uniform_locations(UniformLocs* uniforms, uint32_t _shader_prog_program); +gl_renwin_state_t setup_opaque_output(uint32_t texture_width, uint32_t texture_height); +UintVector * animation_get_channel_set(std::size_t anim_num, lv_gltf_data_t * gltf_data, fastgltf::Node& node); +void animation_matrix_apply(float timestamp, std::size_t anim_num, lv_gltf_data_t * gltf_data, fastgltf::Node& node, FMAT4& matrix); + +void setup_view_proj_matrix_from_camera(lv_gltf_view_t *viewer, int32_t _cur_cam_num, + gl_viewer_desc_t *view_desc, const FMAT4 view_mat, + const FVEC3 view_pos, lv_gltf_data_t * gltf_data, + bool transmission_pass); + +void setup_view_proj_matrix(lv_gltf_view_t *viewer, gl_viewer_desc_t *view_desc, + lv_gltf_data_t * gltf_data, bool transmission_pass); +bool setup_restore_opaque_output( gl_viewer_desc_t *view_desc, gl_renwin_state_t _ret, uint32_t texture_w, uint32_t texture_h, bool prepare_bg); +void setup_draw_environment_background(lv_opengl_shader_cache_t * shaders, lv_gltf_view_t * viewer, float blur); + +bool setup_restore_primary_output( gl_viewer_desc_t *view_desc, gl_renwin_state_t _ret, uint32_t texture_w, uint32_t texture_h, + uint32_t texture_offset_w, uint32_t texture_offset_h, bool prepare_bg); +/** + * @brief Copy the viewer descriptor from one state to another. + * + * @param from_state Pointer to the source viewer descriptor. + * @param to_state Pointer to the destination viewer descriptor. + */ +void lv_gltf_copy_viewer_desc(gl_viewer_desc_t* from_state, gl_viewer_desc_t* to_state); + +/** + * @brief Compare two viewer descriptors for equality. + * + * @param from_state Pointer to the first viewer descriptor. + * @param to_state Pointer to the second viewer descriptor. + * @return true if the descriptors are equal, false otherwise. + */ +bool lv_gltf_compare_viewer_desc(gl_viewer_desc_t* from_state, gl_viewer_desc_t* to_state); + +/** + * @brief Get a description of the viewer. + * + * @param V Pointer to the lv_gltf_view. + * @return Pointer to the viewer description structure. + */ +gl_viewer_desc_t* lv_gltf_view_get_desc(lv_gltf_view_t * V); + +_VEC3 get_cam_pos(_VIEW V); +FVEC3 animation_get_vec3_at_timestamp(lv_gltf_data_t * _data, fastgltf::AnimationSampler * sampler, float _seconds); + +void set_matrix_view(_VIEW V,_MAT4 M); +void set_matrix_proj(_VIEW V,_MAT4 M); +void set_matrix_viewproj(_VIEW V,_MAT4 M); + +float lv_gltf_animation_get_total_time(lv_gltf_data_t * data, uint32_t animnum ); + +#endif +#endif /* LV_GLTFVIEW_PRIVATE_H */ + + diff --git a/lib/lv_gltf/view/sup/animation.cpp b/lib/lv_gltf/view/sup/animation.cpp new file mode 100644 index 0000000..e368c16 --- /dev/null +++ b/lib/lv_gltf/view/sup/animation.cpp @@ -0,0 +1,238 @@ +#include +#include /* GL_CALL */ +#include +#include +#include + +#include "stb_image/stb_image.h" +#include + +#include "../../data/lv_gltf_data_internal.hpp" + +#define TIME_LOC_PREPASS_COUNT 16 +std::map> __channel_set_cache; + +/** + * @brief Get a Vec3 value from the animation at a specific timestamp. + * + * @param _data Pointer to the GLTF data structure containing animation information. + * @param sampler Pointer to the animation sampler used for interpolation. + * @param _seconds The timestamp in seconds at which to retrieve the Vec3 value. + * @return The Vec3 value at the specified timestamp. + */ + +FVEC3 animation_get_vec3_at_timestamp(lv_gltf_data_t * _data, fastgltf::AnimationSampler * sampler, float _seconds) +{ + const auto & asset = GET_ASSET(_data); + auto & _inAcc = asset->accessors[sampler->inputAccessor]; + auto & _outAcc = asset->accessors[sampler->outputAccessor]; + std::size_t _inAccCount = _inAcc.count; + float _maxTime = fastgltf::getAccessorElement(*asset, _inAcc, _inAccCount - 1); + std::size_t _lowerIndex = 0; + float _lowerTimestamp = 0.0f; + + if(_seconds < 0.001f) { + _lowerIndex = 0; + } + else { + std::size_t _firstCheckOffset = 0; + std::size_t _lastCheckOffset = _inAccCount; + std::size_t _prepassLeft = TIME_LOC_PREPASS_COUNT; + while(_prepassLeft > 0) { + _prepassLeft -= 1; + if(_seconds >= fastgltf::getAccessorElement(*asset, _inAcc, (_firstCheckOffset + _lastCheckOffset) >> 1)) { + _firstCheckOffset = (_firstCheckOffset + _lastCheckOffset) >> 1; + } + else { + _lastCheckOffset = (_firstCheckOffset + _lastCheckOffset) >> 1; + if(_lastCheckOffset <= _firstCheckOffset + 1) { + _prepassLeft = 0; + } + } + } + for(uint64_t ii = _firstCheckOffset; ii < _inAccCount; ii++) { + float _stampTime = fastgltf::getAccessorElement(*asset, _inAcc, ii); + if(_stampTime > _seconds) { + _lowerIndex = ii - 1; + break; + } + _lowerTimestamp = _stampTime; + } + } + + FVEC3 _lowerValue = fastgltf::getAccessorElement(*asset, _outAcc, _lowerIndex); + if(_seconds >= _maxTime || _seconds <= 0.0f) { + return _lowerValue; + } + std::size_t _upperIndex = _lowerIndex + 1; + FVEC3 _upperValue = fastgltf::getAccessorElement(*asset, _outAcc, _upperIndex); + float _upperTimestamp = fastgltf::getAccessorElement(*asset, _inAcc, _upperIndex); + return fastgltf::math::lerp(_lowerValue, _upperValue, + (_seconds - _lowerTimestamp) / (_upperTimestamp - _lowerTimestamp)); +} + +/** + * @brief Get a Quaternion value from the animation at a specific timestamp. + * + * @param _data Pointer to the GLTF data structure containing animation information. + * @param sampler Pointer to the animation sampler used for interpolation. + * @param _seconds The timestamp in seconds at which to retrieve the Quaternion value. + * @return The Quaternion value at the specified timestamp. + */ +fastgltf::math::fquat animation_get_quat_at_timestamp(lv_gltf_data_t * _data, fastgltf::AnimationSampler * sampler, + float _seconds) +{ + const auto & asset = GET_ASSET(_data); + auto & _inAcc = asset->accessors[sampler->inputAccessor]; + auto & _outAcc = asset->accessors[sampler->outputAccessor]; + std::size_t _inAccCount = _inAcc.count; + float _maxTime = fastgltf::getAccessorElement(*asset, _inAcc, _inAccCount - 1); + std::size_t _lowerIndex = 0; + float _lowerTimestamp = 0.0f; + + if(_seconds < 0.001f) { + _lowerIndex = 0; + } + else { + std::size_t _firstCheckOffset = 0; + std::size_t _lastCheckOffset = _inAccCount; + std::size_t _prepassLeft = TIME_LOC_PREPASS_COUNT; + while(_prepassLeft > 0) { + _prepassLeft -= 1; + if(_seconds >= fastgltf::getAccessorElement(*asset, _inAcc, (_firstCheckOffset + _lastCheckOffset) >> 1)) { + _firstCheckOffset = (_firstCheckOffset + _lastCheckOffset) >> 1; + } + else { + _lastCheckOffset = (_firstCheckOffset + _lastCheckOffset) >> 1; + if(_lastCheckOffset <= _firstCheckOffset + 1) { + _prepassLeft = 0; + } + } + } + for(uint64_t ii = _firstCheckOffset; ii < _inAccCount; ii++) { + float _stampTime = fastgltf::getAccessorElement(*asset, _inAcc, ii); + if(_stampTime > _seconds) { + _lowerIndex = ii - 1; + break; + } + _lowerTimestamp = _stampTime; + } + } + + fastgltf::math::fquat _lowerValue = fastgltf::getAccessorElement(*asset, _outAcc, _lowerIndex); + if(_seconds >= _maxTime || _seconds <= 0.0f) { + return _lowerValue; + } + std::size_t _upperIndex = _lowerIndex + 1; + float _linDist = fastgltf::getAccessorElement(*asset, _inAcc, _upperIndex) - _lowerTimestamp; + return fastgltf::math::slerp(_lowerValue, fastgltf::getAccessorElement(*asset, _outAcc, + _upperIndex), (_seconds - _lowerTimestamp) / _linDist); +} + +/** + * @brief Get the total duration of the specified animation. + * + * @param _data Pointer to the GLTF data structure containing animation information. + * @param _animNum The index of the animation to query. + * @return The total duration of the animation in seconds. + */ +float lv_gltf_animation_get_total_time(lv_gltf_data_t * _data, uint32_t _animNum) +{ + const auto & asset = GET_ASSET(_data); + auto & animation = asset->animations[_animNum]; + float _maxTime = -1.0f; + for(uint64_t i = 0; i < animation.channels.size(); i++) { + auto & _inAcc = asset->accessors[animation.samplers[i].inputAccessor]; + _maxTime = std::max(_maxTime, fastgltf::getAccessorElement(*asset, _inAcc, _inAcc.count - 1)); + } + return _maxTime; +} + +/** + * @brief Get the set of channels for the specified animation. + * + * @param anim_num The index of the animation to query. + * @param gltf_data Pointer to the GLTF data structure containing animation information. + * @param node Reference to the node associated with the animation. + * @return Pointer to a UintVector containing the channel indices for the animation. + */ +UintVector * animation_get_channel_set(std::size_t anim_num, lv_gltf_data_t * gltf_data, fastgltf::Node & node) +{ + const auto & asset = GET_ASSET(gltf_data); + const auto & probe = PROBE(gltf_data); + if(__channel_set_cache.find(&node) == __channel_set_cache.end()) { + std::vector new_cache = std::vector(); + if(probe->animationCount > anim_num) { + auto & anim = asset->animations[anim_num]; + + for(uint64_t c = 0; c < anim.channels.size(); c++) { + auto & channel = anim.channels[c]; + if(&(asset->nodes[channel.nodeIndex.value()]) == &node) { + new_cache.push_back(c); + } + } + } + __channel_set_cache[&node] = new_cache; + } + return &__channel_set_cache[&node]; +} + +/** + * @brief Apply the transformation matrix for the specified animation at a given timestamp. + * + * @param timestamp The timestamp in seconds at which to apply the transformation. + * @param anim_num The index of the animation to apply. + * @param gltf_data Pointer to the GLTF data structure containing animation information. + * @param node Reference to the node to which the transformation will be applied. + * @param matrix Reference to the transformation matrix to update. + */ +void animation_matrix_apply(float timestamp, std::size_t anim_num, lv_gltf_data_t * gltf_data, fastgltf::Node & node, + FMAT4 & matrix) +{ + const auto & asset = GET_ASSET(gltf_data); + const auto & probe = PROBE(gltf_data); + auto _channel_set = animation_get_channel_set(anim_num, gltf_data, node); + if(_channel_set->size() == 0) { + return; + } + if(probe->animationCount > anim_num) { + auto & anim = asset->animations[anim_num]; + FVEC3 newPos, newScale; + FMAT3 rotmat; + for(const auto & c : (*_channel_set)) { + switch(anim.channels[c].path) { + case fastgltf::AnimationPath::Translation: + newPos = animation_get_vec3_at_timestamp(gltf_data, &anim.samplers[c], timestamp); + matrix[3][0] = newPos[0]; + matrix[3][1] = newPos[1]; + matrix[3][2] = newPos[2]; + break; + case fastgltf::AnimationPath::Rotation: + rotmat = fastgltf::math::asMatrix(animation_get_quat_at_timestamp(gltf_data, &anim.samplers[c], timestamp)); + matrix[0][0] = rotmat[0][0]; + matrix[0][1] = rotmat[0][1]; + matrix[0][2] = rotmat[0][2]; + + matrix[1][0] = rotmat[1][0]; + matrix[1][1] = rotmat[1][1]; + matrix[1][2] = rotmat[1][2]; + + matrix[2][0] = rotmat[2][0]; + matrix[2][1] = rotmat[2][1]; + matrix[2][2] = rotmat[2][2]; + break; + case fastgltf::AnimationPath::Scale: + newScale = animation_get_vec3_at_timestamp(gltf_data, &anim.samplers[c], timestamp); + for(int32_t rs = 0; rs < 3; ++rs) { + matrix[0][rs] *= newScale[0]; + matrix[1][rs] *= newScale[1]; + matrix[2][rs] *= newScale[2]; + } + break; + case fastgltf::AnimationPath::Weights: + std::cout << "| ALERT: UNHANDLED WEIGHTS ANIMATION |\n"; + break; + } + } + } +} diff --git a/lib/lv_gltf/view/sup/datatypes.cpp b/lib/lv_gltf/view/sup/datatypes.cpp new file mode 100644 index 0000000..1d92321 --- /dev/null +++ b/lib/lv_gltf/view/sup/datatypes.cpp @@ -0,0 +1,215 @@ + +#include "../lv_gltf_view_internal.hpp" +#include +#include "../../data/lv_gltf_data_internal.hpp" + +#define _RET return + +uint32_t get_viewer_datasize(void) +{ + return sizeof(lv_gltf_view_t); +} + +void init_viewer_struct(_VIEW _ViewerMem) +{ + lv_gltf_view_t _newViewer; + auto _newMetrics = &_newViewer.state.metrics; + _newMetrics->opaqueFramebufferWidth = 256; + _newMetrics->opaqueFramebufferHeight = 256; + _newMetrics->vertex_count = 0; + auto _newDesc = &_newViewer.desc; + _newDesc->pitch = 0.f; + _newDesc->yaw = 0.f; + _newDesc->distance = 1.f; + _newDesc->width = 768; + _newDesc->height = 592; + _newDesc->focal_x = 0.f; + _newDesc->focal_y = 0.f; + _newDesc->focal_z = 0.f; + _newDesc->exposure = 0.8f; + _newDesc->env_pow = 1.8f; + _newDesc->blur_bg = 0.2f; + _newDesc->bg_mode = 0; + _newDesc->aa_mode = 2; + _newDesc->camera = 0; + _newDesc->anim = 0; + _newDesc->spin_degree_offset = 0.f; + _newDesc->timestep = 0.f; + _newDesc->error_frames = 0; + _newDesc->dirty = true; + _newDesc->recenter_flag = true; + _newDesc->frame_was_cached = false; + _newDesc->frame_was_antialiased = false; + + _newViewer.state.options.sceneIndex = 0; + _newViewer.state.options.materialVariant = 0; + _newViewer.state.render_state_ready = false; + _newViewer.state.renderOpaqueBuffer = false; + _newViewer.cameraIndex = std::nullopt; + _newViewer.envRotationAngle = 0.0f; + *_ViewerMem = _newViewer; +} + +void __free_viewer_struct(_VIEW V) +{ + // Nothing to do here + LV_UNUSED(V); +} + +/** + * @brief Set the view matrix for the viewer. + * + * @param V Pointer to the viewer instance. + * @param M The matrix to set as the view matrix. + */ +void set_matrix_view(_VIEW V, _MAT4 M) +{ + V->mats.viewMatrix = M; +} + +/** + * @brief Set the projection matrix for the viewer. + * + * @param V Pointer to the viewer instance. + * @param M The matrix to set as the projection matrix. + */ +void set_matrix_proj(_VIEW V, _MAT4 M) +{ + V->mats.projectionMatrix = M; +} + +/** + * @brief Set the view-projection matrix for the viewer. + * + * @param V Pointer to the viewer instance. + * @param M The matrix to set as the view-projection matrix. + */ +void set_matrix_viewproj(_VIEW V, _MAT4 M) +{ + V->mats.viewProjectionMatrix = M; +} + +/** + * @brief Get the camera position from the viewer. + * + * @param V Pointer to the viewer instance. + * @return The camera position as a vector. + */ +_VEC3 get_cam_pos(_VIEW V) +{ + _RET(V->cameraPos); +} + +/** + * @brief Get the output framebuffer from the viewer. + * + * @param V Pointer to the viewer instance. + * @return The framebuffer ID or 0 if not ready. + */ +uint32_t get_output_framebuffer(_VIEW V) +{ + _RET !V->state.render_state_ready ? V->state.render_state.framebuffer : 0; +} + +/** + * @brief Get a pointer to the view matrix. + * + * @param V Pointer to the viewer instance. + * @return Pointer to the view matrix. + */ +void * get_matrix_view(_VIEW V) +{ + _RET &(V->mats.viewMatrix); +} + +/** + * @brief Get a pointer to the projection matrix. + * + * @param V Pointer to the viewer instance. + * @return Pointer to the projection matrix. + */ +void * get_matrix_proj(_VIEW V) +{ + _RET &(V->mats.projectionMatrix); +} + +/** + * @brief Get a pointer to the view-projection matrix. + * + * @param V Pointer to the viewer instance. + * @return Pointer to the view-projection matrix. + */ +void * get_matrix_viewproj(_VIEW V) +{ + _RET &(V->mats.viewProjectionMatrix); +} + +/** + * @brief Get a pointer to the viewer options. + * + * @param V Pointer to the viewer instance. + * @return Pointer to the viewer options structure. + */ +_ViewerOpts * get_viewer_opts(_VIEW V) +{ + _RET &(V->state.options); +} + +/** + * @brief Get a pointer to the viewer metrics. + * + * @param V Pointer to the viewer instance. + * @return Pointer to the viewer metrics structure. + */ +_ViewerMetrics * get_viewer_metrics(_VIEW V) +{ + _RET &(V->state.metrics); +} + +/** + * @brief Get a pointer to the viewer state. + * + * @param V Pointer to the viewer instance. + * @return Pointer to the viewer state structure. + */ +_ViewerState * get_viewer_state(_VIEW V) +{ + _RET &(V->state); +} + + +/** + * @brief Get a pointer to the matrix set. + * + * @param V Pointer to the viewer instance. + * @return Pointer to the matrix set structure. + */ +_MatrixSet * get_matrix_set(_VIEW V) +{ + _RET &(V->mats); +} +/** + * @brief Get the view radius from the viewer. + * + * @param V Pointer to the viewer instance. + * @return The view radius as a double. + */ +double get_view_radius(_VIEW V) +{ + _RET(double)V->bound_radius; +} + +/** + * @brief Set the camera position in the viewer. + * + * @param V Pointer to the viewer instance. + * @param x The X coordinate of the camera position. + * @param y The Y coordinate of the camera position. + * @param z The Z coordinate of the camera position. + */ +void set_cam_pos(_VIEW V, float x, float y, float z) +{ + V->cameraPos[0] = x; + V->cameraPos[1] = y; + V->cameraPos[2] = z; +} diff --git a/lib/lv_gltf/view/sup/ibl_sampler.cpp b/lib/lv_gltf/view/sup/ibl_sampler.cpp new file mode 100644 index 0000000..b4d777a --- /dev/null +++ b/lib/lv_gltf/view/sup/ibl_sampler.cpp @@ -0,0 +1,595 @@ + +#include "include/shader_includes.h" +#include +#include +#include /* GL_CALL */ + +#include +#include + + +#include "include/ibl_sampler.h" +#include "../../../lv_opengl_shader_cache/lv_opengl_shader_cache.h" + +#include /* usleep */ +#include +#include +#include +#include +#include /* floor */ + +#include "stb_image/stb_image.h" +#include "stb_image/stb_image_resize.h" + +void (*callback)(const char *, float, float); + +uint8_t min(uint8_t a, uint8_t b) +{ + return (a < b) ? a : b; +} + +#include "include/00_chromatic.h" + +iblSampler::iblSampler(void) +{ + //textureSize = 256; + textureSize = 128; + //ggxSampleCount = 1024; + ggxSampleCount = 128; + //lambertianSampleCount = 2048; + lambertianSampleCount = 256; + sheenSamplCount = 32; + lodBias = 0.0; + lowestMipLevel = 3; + //lowestMipLevel = 4; + lutResolution = 1024; + //lutSampleCount = 512; + lutSampleCount = 64; + //lutResolution = 512; + + scaleValue = 1.0; + + mipmapCount = GL_NONE; + mipmapLevels = 0; + + lambertianTextureID = GL_NONE; + ggxTextureID = GL_NONE; + sheenTextureID = GL_NONE; + ggxLutTextureID = GL_NONE; + charlieLutTextureID = GL_NONE; + inputTextureID = GL_NONE; + cubemapTextureID = GL_NONE; + framebuffer = GL_NONE; + + _shaderCache = lv_opengl_shader_cache_create(env_src_includes, sizeof(env_src_includes) / sizeof(lv_shader_key_value_t), + NULL, NULL); + shaderCache = &_shaderCache; + + callback = NULL; +} + +uint32_t iblSampler::internalFormat(void) +{ + return GL_RGBA8; +} + +uint32_t iblSampler::textureTargetType(void) +{ + return GL_UNSIGNED_BYTE; +} + +iblSampler::t_texture iblSampler::prepareTextureData(t_image * image) +{ + t_texture texture = { GL_RGB32F, GL_RGB, GL_FLOAT, NULL }; + // Reset scaling of hdrs + scaleValue = 1.0; + + { + texture.internalFormat = internalFormat(); + texture.format = GL_RGBA; + texture.type = GL_UNSIGNED_BYTE; + + uint64_t numPixels = image->dataFloatLength / 3; + + float max_value = 0.0; + float clamped_sum = 0.0; + float diff_sum = 0.0; + uint32_t src = 0; + uint32_t dst = 0; + for(uint32_t i = 0; i < numPixels; i++) { + float max_component = std::max(*(image->dataFloat + src + 0), *(image->dataFloat + src + 1)); + max_component = std::max(max_component, *(image->dataFloat + src + 2)); + if(max_component > 1.0) { + diff_sum += max_component - 1.0; + } + clamped_sum += std::min(max_component, 1.0f); + max_value = std::max(max_component, max_value); + src += 3; + dst += 4; + } + + float scaleFactor = 1.0; + if(clamped_sum > 1.0) { + // Apply global scale factor to compensate for intensity lost when clamping + scaleFactor = (clamped_sum + diff_sum) / clamped_sum; + std::cout << " +--> HDR Intensity Scale = " << std::to_string(scaleFactor) << " \n"; + } + + if(max_value > 1.0) { + std::cout << " [!]-> Environment light intensity cannot be displayed correctly on this device \n"; + } + + //texture.data = new Uint8Array(numPixels * 4); + texture.data = (uint8_t *)malloc(numPixels * 4); + src = 0; + dst = 0; + for(uint32_t i = 0; i < numPixels; ++i) { + // copy the pixels and pad the alpha channel + texture.data[dst + 0] = std::min(int((image->dataFloat[src + 0]) * 255), 255); + texture.data[dst + 1] = std::min(int((image->dataFloat[src + 1]) * 255), 255); + texture.data[dst + 2] = std::min(int((image->dataFloat[src + 2]) * 255), 255); + // unused + texture.data[dst + 3] = -1; + src += 3; + dst += 4; + } + + scaleValue = scaleFactor; + return texture; + } +} + +uint32_t iblSampler::loadTextureHDR(t_image * image) +{ + t_texture texture = prepareTextureData(image); + uint32_t textureID; + GL_CALL(glGenTextures(1, &textureID)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, textureID)); + GL_CALL(glTexImage2D( + GL_TEXTURE_2D, // target + 0, // level + texture.internalFormat, + image->width, + image->height, + 0, // border + texture.format, // format of the pixel data + texture.type, // type of the pixel data + texture.data)); + free(texture.data); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_MIRRORED_REPEAT)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_MIRRORED_REPEAT)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)); + return textureID; +} + +uint32_t iblSampler::createCubemapTexture(bool withMipmaps) +{ + uint32_t targetTexture; + GL_CALL(glGenTextures(1, &targetTexture)); + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, targetTexture)); + for(int32_t i = 0; i < 6; ++i) { + GL_CALL(glTexImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, internalFormat(), textureSize, textureSize, 0, GL_RGBA, + textureTargetType(), NULL)); + } + if(withMipmaps) { + GL_CALL(glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR)); + } + else { + GL_CALL(glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MIN_FILTER, GL_LINEAR)); + } + GL_CALL(glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_MAG_FILTER, GL_LINEAR)); + GL_CALL(glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_CUBE_MAP, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); + return targetTexture; +} + +uint32_t iblSampler::createLutTexture(void) +{ + uint32_t targetTexture; + GL_CALL(glGenTextures(1, &targetTexture)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, targetTexture)); + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, internalFormat(), lutResolution, lutResolution, 0, GL_RGBA, textureTargetType(), + NULL)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); + return targetTexture; +} + +bool getExtension(const char * _ext_name) +{ + int32_t NumberOfExtensions; + glGetIntegerv(GL_NUM_EXTENSIONS, &NumberOfExtensions); + for(uint32_t i = 0; i < (uint32_t)NumberOfExtensions; i++) { + const GLubyte * ccc = glGetStringi(GL_EXTENSIONS, i); + if(strcmp((const char *)ccc, _ext_name) == 0) { + return true; + } + } + return false; +} + +float * resizeImage(float * input, int inputWidth, int inputHeight, int newWidth, int newHeight) +{ + float * output = (float *)lv_malloc(inputWidth * inputHeight * + 3); //new float[newWidth * newHeight * 3]; // Assuming 3 channels (RGB) + stbir_resize_float(input, inputWidth, inputHeight, 0, output, newWidth, newHeight, 0, 3); + return output; +} + +void iblSampler::doinit(const char * env_filename) +{ + // vv -- WebGL Naming + if(getExtension("GL_NV_float") && + getExtension("GL_ARB_color_buffer_float")) { //&& getExtension("OES_texture_float_linear")) { + std::cout << "THIS DEVICE SUPPORTS FLOAT FORMAT TEXTURES\n"; + } + // Native naming #2 + if(getExtension("GL_ARB_color_buffer_float") || getExtension("GL_NV_half_float")) { + std::cout << "THIS DEVICE SUPPORTS HALF_FLOAT FORMAT TEXTURES\n"; + } + + int32_t src_width, src_height, src_nrChannels; + + float * data; + if(env_filename != NULL) { +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MIN) std::cout << "Loading Environment Panorama/Equirectangular HDR: " << + env_filename << "\n"; +#endif + data = stbi_loadf(env_filename, &src_width, &src_height, &src_nrChannels, 3); + } + else { +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MIN) std::cout << "Loading Fallback Environment HDR: " << env_filename << "\n"; +#endif + data = stbi_loadf_from_memory(chromatic_jpg, chromatic_jpg_len, &src_width, &src_height, &src_nrChannels, 3); + } + +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MED) std::cout << " +--> Width = " << src_width << " / Height = " << src_height + << " / Channels = " << src_nrChannels << "\n"; +#endif + t_image panoramaImage = t_image(); + panoramaImage.width = src_width; + panoramaImage.height = src_height; + panoramaImage.dataFloatLength = panoramaImage.width * panoramaImage.height * 3; + panoramaImage.dataFloat = (float *)calloc(panoramaImage.dataFloatLength, sizeof(float)); + for(uint64_t i = 0; i < panoramaImage.dataFloatLength; i++) { + panoramaImage.dataFloat[i] = data[i]; + } + stbi_image_free(data); + inputTextureID = loadTextureHDR(&panoramaImage); + free(panoramaImage.dataFloat); + + + GL_CALL(glGenFramebuffers(1, &framebuffer)); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, framebuffer)); + + cubemapTextureID = createCubemapTexture(true); + lambertianTextureID = createCubemapTexture(false); + ggxTextureID = createCubemapTexture(true); + sheenTextureID = createCubemapTexture(true); + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, ggxTextureID)); + GL_CALL(glGenerateMipmap(GL_TEXTURE_CUBE_MAP)); + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, sheenTextureID)); + GL_CALL(glGenerateMipmap(GL_TEXTURE_CUBE_MAP)); + mipmapLevels = std::floor(std::log2(textureSize)) + 1 - lowestMipLevel; +} + +void iblSampler::panoramaToCubeMap(void) +{ + for(int32_t i = 0; i < 6; ++i) { + //std::cout << "panoramaToCubeMap pass #" << i << "\n"; + if(callback != NULL) { + callback("Processing CubeMap filter...", i, 36); + } + + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, framebuffer)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, + cubemapTextureID, 0)); + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, cubemapTextureID)); + GLenum status = glCheckFramebufferStatus(GL_FRAMEBUFFER); + while(status != GL_FRAMEBUFFER_COMPLETE) { + status = glCheckFramebufferStatus(GL_FRAMEBUFFER); + std::cerr << "ENV RENDER ERROR: Framebuffer not complete - Delaying one cycle. Status is: " << status << " but " << + GL_FRAMEBUFFER_COMPLETE << " was expected." << std::endl; + } + GL_CALL(glViewport(0, 0, textureSize, textureSize)); + GL_CALL(glClearColor(1.0, 0.0, 0.0, 0.0)); + GL_CALL(glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)); + lv_shader_program_t * shader = shaderCache->get_shader_program(shaderCache, + shaderCache->select_shader(shaderCache, "panorama_to_cubemap.frag", nullptr, 0), + shaderCache->select_shader(shaderCache, "fullscreen.vert", nullptr, 0)); + GLint success; + //GL_CALL(glGetShaderiv(shader->program, GL_COMPILE_STATUS, &success)); + GL_CALL(glGetProgramiv(shader->program, GL_LINK_STATUS, &success)); + if(!success) { + // Handle shader compilation error + std::cout << "ENV RENDER ERROR: Some error compiling the cubemap shader, IBL will be corrupted.\n"; + } + GL_CALL(glUseProgram(shader->program)); + // TEXTURE0 = active. + GL_CALL(glActiveTexture(GL_TEXTURE0 + 0)); + // Bind texture ID to active texture + GL_CALL(glBindTexture(GL_TEXTURE_2D, inputTextureID)); + // map shader uniform to texture unit (TEXTURE0) + GLuint location; + GL_CALL(location = glGetUniformLocation(shader->program, "u_panorama")); + GL_CALL(glUniform1i(location, 0)); // texture unit 0 (TEXTURE0) + shader->update_uniform_1i(shader, "u_currentFace", i); + //fullscreen triangle + + GL_CALL(glDrawArrays(GL_TRIANGLES, 0, 3)); + } + + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, cubemapTextureID)); + GL_CALL(glGenerateMipmap(GL_TEXTURE_CUBE_MAP)); +} + +void iblSampler::applyFilter( + uint32_t distribution, + float roughness, + uint32_t targetMipLevel, + uint32_t targetTexture, + uint32_t sampleCount, + float _lodBias, + const char * _strProgress, + float _baseProgress) +{ + LV_UNUSED(_strProgress); + LV_UNUSED(_baseProgress); + + uint32_t currentTextureSize = textureSize >> targetMipLevel; + for(uint32_t i = 0; i < 6; ++i) { + //if (callback != NULL && (_baseProgress > 0.f)) { callback(_strProgress, i + _baseProgress, 36); } + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, framebuffer)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, targetTexture, + targetMipLevel)); + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, targetTexture)); + GL_CALL(glViewport(0, 0, currentTextureSize, currentTextureSize)); + GL_CALL(glClearColor(0.0, 1.0, 0.0, 0.0)); + GL_CALL(glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)); + lv_shader_program_t * shader = shaderCache->get_shader_program(shaderCache, + shaderCache->select_shader(shaderCache, "ibl_filtering.frag", nullptr, 0), + shaderCache->select_shader(shaderCache, "fullscreen.vert", nullptr, 0)); + GL_CALL(glUseProgram(shader->program)); + // TEXTURE0 = active. + GL_CALL(glActiveTexture(GL_TEXTURE0)); + // Bind texture ID to active texture + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, cubemapTextureID)); + // map shader uniform to texture unit (TEXTURE0) + uint32_t location = glGetUniformLocation(shader->program, "u_cubemapTexture"); + GL_CALL(glUniform1i(location, 0)); // texture unit 0 + shader->update_uniform_1f(shader, "u_roughness", roughness); + shader->update_uniform_1i(shader, "u_sampleCount", sampleCount); + //shader->update_uniform_1i(shader, "u_width", currentTextureSize); // Software rendered mode looks better with this and horrible with below + shader->update_uniform_1i(shader, "u_width", + textureSize); // Standard mode looks best with this and somewhat worse with above + shader->update_uniform_1f(shader, "u_lodBias", _lodBias); + shader->update_uniform_1i(shader, "u_distribution", distribution); + shader->update_uniform_1i(shader, "u_currentFace", i); + shader->update_uniform_1i(shader, "u_isGeneratingLUT", 0); + shader->update_uniform_1i(shader, "u_floatTexture", 0); + shader->update_uniform_1f(shader, "u_intensityScale", scaleValue); + //fullscreen triangle + GL_CALL(glDrawArrays(GL_TRIANGLES, 0, 3)); + // usleep(199000); + + } + + +} + +void iblSampler::cubeMapToLambertian(void) +{ + applyFilter( + 0, + 0.0, + 0, + lambertianTextureID, + lambertianSampleCount, + 0.0, + "Processing Lambertian filter...", + 6.f + ); +} + +void iblSampler::cubeMapToGGX(void) +{ + for(uint32_t currentMipLevel = 0; currentMipLevel <= mipmapLevels; ++currentMipLevel) { + float roughness = (float)(currentMipLevel) / (float)(mipmapLevels - 1); + applyFilter( + 1, + roughness, + currentMipLevel, + ggxTextureID, + ggxSampleCount, + 0.0, + "Processing GGX filter...", + (currentMipLevel == 0) ? 12.f : -1.f + ); + } +} + +void iblSampler::cubeMapToSheen(void) +{ + for(uint32_t currentMipLevel = 0; currentMipLevel <= mipmapLevels; ++currentMipLevel) { + float roughness = (float)(currentMipLevel) / (float)(mipmapLevels - 1); + applyFilter( + 2, + roughness, + currentMipLevel, + sheenTextureID, + sheenSamplCount, + 0.0, + "Processing Sheen filter...", + (currentMipLevel == 0) ? 18.f : -1.f + ); + } +} + +void iblSampler::sampleLut(uint32_t distribution, uint32_t targetTexture, uint32_t currentTextureSize) +{ + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, framebuffer)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, targetTexture, 0)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, targetTexture)); + GL_CALL(glViewport(0, 0, currentTextureSize, currentTextureSize)); + GL_CALL(glClearColor(0.0, 1.0, 1.0, 0.0)); + GL_CALL(glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)); + lv_shader_program_t * shader = shaderCache->get_shader_program(shaderCache, + shaderCache->select_shader(shaderCache, "ibl_filtering.frag", nullptr, 0), + shaderCache->select_shader(shaderCache, "fullscreen.vert", nullptr, 0)); + + GL_CALL(glUseProgram(shader->program)); + // TEXTURE0 = active. + GL_CALL(glActiveTexture(GL_TEXTURE0 + 0)); + // Bind texture ID to active texture + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, cubemapTextureID)); + // map shader uniform to texture unit (TEXTURE0) + uint32_t location = glGetUniformLocation(shader->program, "u_cubemapTexture"); + GL_CALL(glUniform1i(location, 0)); // texture unit 0 + shader->update_uniform_1f(shader, "u_roughness", 0.0); + shader->update_uniform_1i(shader, "u_sampleCount", lutSampleCount); + //shader->update_uniform_1i( shader, "u_sampleCount", 512); + shader->update_uniform_1i(shader, "u_width", 0.0); + shader->update_uniform_1f(shader, "u_lodBias", 0.0); + shader->update_uniform_1i(shader, "u_distribution", distribution); + shader->update_uniform_1i(shader, "u_currentFace", 0); + shader->update_uniform_1i(shader, "u_isGeneratingLUT", 1); + //fullscreen triangle + GL_CALL(glDrawArrays(GL_TRIANGLES, 0, 3)); + +} + +void iblSampler::sampleGGXLut(void) +{ + ggxLutTextureID = createLutTexture(); + sampleLut(1, ggxLutTextureID, lutResolution); +} + +void iblSampler::sampleCharlieLut(void) +{ + charlieLutTextureID = createLutTexture(); + sampleLut(2, charlieLutTextureID, lutResolution); +} + +void iblSampler::filterAll(void (*_callback)(const char *, float, float)) +{ + callback = _callback; + GLint previousFramebuffer; + GL_CALL(glGetIntegerv(GL_FRAMEBUFFER_BINDING, &previousFramebuffer)); + +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MIN) std::cout << "Processing Environment...\n"; +#endif + +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MAX) std::cout << " +--> panorama->CubeMap filter\n"; +#endif + panoramaToCubeMap(); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, previousFramebuffer)); + + //if (callback != NULL) { callback("Panorama To Cubemap...", 6, 36); } + +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MAX) std::cout << " +--> cubeMap->Lambertian filter\n"; +#endif + cubeMapToLambertian(); + + //GL_CALL(glClearDepth(1.0)); + //GL_CALL(glClearColor(0.8, 0.8, 0.8, 0.0)); + //GL_CALL(glClear(GL_COLOR_BUFFER_BIT| GL_DEPTH_BUFFER_BIT)); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, previousFramebuffer)); + if(callback != NULL) { + callback("Lambertian filter...", 12, 36); + } + +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MAX) std::cout << " +--> cubeMap->GGX filter\n"; +#endif + cubeMapToGGX(); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, previousFramebuffer)); + +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MAX) std::cout << " +--> cubeMap->Sheen filter\n"; +#endif + cubeMapToSheen(); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, previousFramebuffer)); + if(callback != NULL) { + callback("Sampling GGX LUT...", 27, 36); + } + +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MAX) std::cout << " +--> Sampling GGX Lut\n"; +#endif + sampleGGXLut(); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, previousFramebuffer)); + if(callback != NULL) { + callback("Sampling Charlie LUT...", 33, 36); + } + +#ifdef IBL_SAMPLER_VERBOSITY + if(IBL_SAMPLER_VERBOSITY >= VERBOSITY_MAX) std::cout << " +--> Sampling Charlie Lut\n"; +#endif + sampleCharlieLut(); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, previousFramebuffer)); +} + +void iblSampler::destroy_iblSampler(void) +{ + lv_opengl_shader_cache_destroy(shaderCache); +} + +// ------------------------------------------------------------ + +void (*ibl_load_progress_callback)(const char *, const char *, float, float, float, float) = NULL; + +void lv_gltf_view_ibl_set_loadphase_callback(void (*_ibl_load_progress_callback)(const char *, const char *, float, + float, float, float)) +{ + ibl_load_progress_callback = _ibl_load_progress_callback; +} + +void ibl_sampler_env_filter_callback(const char * phase_title, float phase_current, float phase_max) +{ + if(ibl_load_progress_callback != NULL) { + ibl_load_progress_callback(phase_title, "SUBTEST1234", 0.f + ((phase_current / phase_max) * 2.0f), 5.f, 0.f, 0.f); + } +} + +gl_environment_textures lv_gltf_view_ibl_sampler_setup(gl_environment_textures * _lastEnv, const char * _env_filename, + int32_t _env_rotation_degreesX10) +{ + gl_environment_textures _ret = gl_environment_textures(); + if((_lastEnv != NULL) && (_lastEnv->loaded == true)) { + _ret.loaded = true; + _ret.angle = _lastEnv->angle; + _ret.diffuse = _lastEnv->diffuse; + _ret.specular = _lastEnv->specular; + _ret.sheen = _lastEnv->sheen; + _ret.ggxLut = _lastEnv->ggxLut; + _ret.charlieLut = _lastEnv->charlieLut; + _ret.mipCount = _lastEnv->mipCount; + _ret.iblIntensityScale = _lastEnv->iblIntensityScale; + return _ret; + } + auto environmentFiltering = iblSampler(); + environmentFiltering.doinit(_env_filename); + environmentFiltering.filterAll(ibl_sampler_env_filter_callback); + + _ret.loaded = true; + _ret.angle = (float)_env_rotation_degreesX10 / 10.0f; + _ret.diffuse = environmentFiltering.lambertianTextureID; + _ret.specular = environmentFiltering.ggxTextureID; + _ret.sheen = environmentFiltering.sheenTextureID; + _ret.ggxLut = environmentFiltering.ggxLutTextureID; + _ret.charlieLut = environmentFiltering.charlieLutTextureID; + _ret.mipCount = environmentFiltering.mipmapLevels; + _ret.iblIntensityScale = environmentFiltering.scaleValue; + + environmentFiltering.destroy_iblSampler(); + return _ret; +} diff --git a/lib/lv_gltf/view/sup/include/00_chromatic.h b/lib/lv_gltf/view/sup/include/00_chromatic.h new file mode 100644 index 0000000..9d1b3d1 --- /dev/null +++ b/lib/lv_gltf/view/sup/include/00_chromatic.h @@ -0,0 +1,3283 @@ +unsigned char chromatic_jpg[] = { + 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, + 0x01, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x0c, + 0x4e, 0x65, 0x6f, 0x47, 0x65, 0x6f, 0x00, 0x00, 0x00, 0x4b, 0xff, 0xfe, + 0x00, 0x3f, 0x42, 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x69, + 0x6c, 0x65, 0x3a, 0x45, 0x3a, 0x5c, 0x4c, 0x56, 0x47, 0x4c, 0x5f, 0x4f, + 0x50, 0x45, 0x4e, 0x47, 0x4c, 0x5c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5c, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x61, + 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x68, 0x64, 0x72, 0x31, 0x2e, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0xff, 0xfe, 0x00, 0x22, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x44, 0x61, 0x74, 0x65, 0x3a, 0x32, 0x30, 0x32, 0x35, + 0x2f, 0x30, 0x36, 0x2f, 0x30, 0x36, 0x20, 0x30, 0x35, 0x3a, 0x30, 0x36, + 0x3a, 0x31, 0x30, 0xff, 0xfe, 0x00, 0x1a, 0x42, 0x6c, 0x65, 0x6e, 0x64, + 0x65, 0x72, 0x3a, 0x54, 0x69, 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, + 0x30, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x13, 0x42, + 0x6c, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x3a, 0x30, 0x30, 0x31, 0xff, 0xfe, 0x00, 0x17, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x43, 0x61, 0x6d, 0x65, 0x72, 0x61, 0x3a, 0x43, + 0x61, 0x6d, 0x65, 0x72, 0x61, 0xff, 0xfe, 0x00, 0x15, 0x42, 0x6c, 0x65, + 0x6e, 0x64, 0x65, 0x72, 0x3a, 0x53, 0x63, 0x65, 0x6e, 0x65, 0x3a, 0x53, + 0x63, 0x65, 0x6e, 0x65, 0xff, 0xfe, 0x00, 0x1d, 0x42, 0x6c, 0x65, 0x6e, + 0x64, 0x65, 0x72, 0x3a, 0x52, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x69, + 0x6d, 0x65, 0x3a, 0x30, 0x30, 0x3a, 0x30, 0x30, 0x2e, 0x31, 0x35, 0xff, + 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, + 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, + 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, + 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, + 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, + 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, + 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, + 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, + 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x02, 0x00, + 0x04, 0x00, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, + 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, + 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, + 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, + 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, + 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, + 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, + 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, + 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, + 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, + 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, + 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, + 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, + 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, + 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, + 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, + 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, + 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, + 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, + 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, + 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, + 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, + 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, + 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, + 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, + 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, + 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, + 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, + 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, + 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, + 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, + 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, + 0x3f, 0x00, 0xf2, 0xef, 0xca, 0x97, 0x8f, 0x4a, 0x66, 0xf5, 0x1c, 0x16, + 0x19, 0xa3, 0xcc, 0x4f, 0xef, 0x0a, 0x49, 0x33, 0x9d, 0xa6, 0x87, 0xf1, + 0xe8, 0x29, 0x38, 0xa6, 0xf9, 0xa9, 0xfd, 0xe1, 0x47, 0x9a, 0x9f, 0xde, + 0x14, 0xec, 0xc4, 0x3f, 0x8f, 0x4a, 0x38, 0xf4, 0xa6, 0x79, 0xa9, 0xfd, + 0xe1, 0x47, 0x9a, 0xbf, 0xde, 0x14, 0x59, 0x88, 0x76, 0x05, 0x18, 0xa6, + 0xf9, 0xab, 0xfd, 0xe1, 0x49, 0xe6, 0x2f, 0xa8, 0xa7, 0x66, 0x1a, 0x8f, + 0xfc, 0xa8, 0xe3, 0xd0, 0x53, 0x77, 0xaf, 0xa8, 0xa3, 0x78, 0xf5, 0xa5, + 0x60, 0x1f, 0xc7, 0xa5, 0x18, 0x1e, 0x94, 0xcd, 0xe3, 0xd6, 0x8d, 0xc3, + 0xd6, 0x8b, 0x00, 0xec, 0x0f, 0x4a, 0x38, 0xf4, 0xa6, 0xee, 0x14, 0x6e, + 0x14, 0x05, 0xc7, 0x71, 0xe9, 0x47, 0x1e, 0x94, 0xdd, 0xd4, 0x6e, 0xa0, + 0x2e, 0x3b, 0x8f, 0x4a, 0x38, 0xf4, 0x14, 0xdc, 0xd1, 0x9a, 0x04, 0x3b, + 0x8f, 0x6a, 0x38, 0xf4, 0x14, 0xdc, 0xd1, 0x9a, 0x43, 0xb8, 0xee, 0x28, + 0xe2, 0x9b, 0x9a, 0x28, 0x0b, 0x8e, 0xe3, 0xd2, 0x8e, 0x3d, 0x29, 0xb9, + 0xa2, 0x80, 0xb8, 0xee, 0x28, 0xe2, 0x9b, 0x45, 0x31, 0x5c, 0x77, 0x1e, + 0x94, 0x71, 0xe9, 0x4d, 0xa2, 0x80, 0xb8, 0xee, 0x3d, 0x28, 0xe3, 0xd2, + 0x92, 0x92, 0x80, 0xb8, 0xee, 0x28, 0xe3, 0xd2, 0x9b, 0x45, 0x01, 0x71, + 0xdc, 0x51, 0xc5, 0x36, 0x8a, 0x07, 0x71, 0xdc, 0x51, 0xc5, 0x36, 0x8a, + 0x42, 0xb8, 0xee, 0x3d, 0x28, 0xe3, 0xd2, 0x9b, 0x45, 0x3b, 0x05, 0xc5, + 0xe2, 0x8e, 0x29, 0x28, 0xa2, 0xc1, 0x71, 0x78, 0xa3, 0x8f, 0x4a, 0x4a, + 0x28, 0xb0, 0x5c, 0x5e, 0x3d, 0x28, 0xc8, 0xf4, 0x14, 0x94, 0x53, 0xb0, + 0x73, 0x0e, 0xe3, 0xd0, 0x52, 0x64, 0x7a, 0x0a, 0x4a, 0x28, 0xb0, 0xae, + 0x2e, 0x47, 0xa5, 0x1c, 0x7a, 0x52, 0x62, 0x8a, 0x2c, 0x17, 0x17, 0x8f, + 0x4a, 0x38, 0xf4, 0xa3, 0x14, 0x98, 0xa7, 0x61, 0x73, 0x0b, 0x91, 0xe9, + 0x47, 0x1e, 0x82, 0x93, 0x14, 0x51, 0x61, 0xf3, 0x31, 0x72, 0x3d, 0x28, + 0xc8, 0xf4, 0xa4, 0xa3, 0x14, 0x59, 0x0b, 0x99, 0x8b, 0x91, 0xe9, 0x46, + 0x47, 0xa5, 0x26, 0x28, 0xc5, 0x16, 0x41, 0xcc, 0xc5, 0xc8, 0xf4, 0xa3, + 0x23, 0xd0, 0x52, 0x62, 0x93, 0x14, 0x59, 0x07, 0x33, 0x17, 0x70, 0xf4, + 0xa3, 0x70, 0xf4, 0xa6, 0xe2, 0x92, 0x8b, 0x20, 0xbb, 0x1f, 0xbc, 0x7a, + 0x52, 0x6f, 0x1e, 0x95, 0x19, 0xcd, 0x34, 0x93, 0x4a, 0xc8, 0x77, 0x64, + 0xa6, 0x50, 0x3b, 0x55, 0xab, 0x5b, 0x67, 0xba, 0x19, 0x52, 0x07, 0xd6, + 0xb3, 0x19, 0x88, 0xa9, 0xf4, 0xe3, 0x33, 0xdd, 0x2a, 0xc4, 0xfb, 0x7d, + 0x6b, 0x1a, 0xcd, 0xc6, 0x0d, 0xc5, 0xd8, 0xd6, 0x95, 0x9c, 0xad, 0x24, + 0x6b, 0x7f, 0x63, 0x4d, 0xfd, 0xf4, 0xfc, 0xa8, 0xfe, 0xc6, 0x9f, 0xfb, + 0xe9, 0xf9, 0x56, 0xdc, 0x41, 0x82, 0x00, 0xc7, 0x26, 0xa4, 0xfc, 0x2b, + 0xc5, 0x78, 0xfa, 0xcb, 0xa9, 0xdf, 0xf5, 0x7a, 0x7d, 0x8c, 0x58, 0xf4, + 0x43, 0xfc, 0x72, 0xfe, 0x42, 0xa7, 0x5d, 0x16, 0x01, 0xd5, 0xdc, 0xd6, + 0x9f, 0x3e, 0x94, 0x6d, 0x35, 0x94, 0xb1, 0x95, 0x9f, 0xda, 0x29, 0x51, + 0x82, 0xe8, 0x50, 0x5d, 0x22, 0xd0, 0x75, 0x0c, 0x7f, 0x1a, 0x90, 0x69, + 0x96, 0x43, 0xfe, 0x59, 0x7e, 0x75, 0x6f, 0x06, 0x97, 0x15, 0x9b, 0xc4, + 0x55, 0x7f, 0x69, 0x96, 0xa9, 0xc5, 0x74, 0x2b, 0x0b, 0x0b, 0x21, 0xff, + 0x00, 0x2c, 0x45, 0x38, 0x59, 0x59, 0x8f, 0xf9, 0x60, 0xbf, 0x95, 0x4f, + 0xb6, 0x8c, 0x1a, 0x9f, 0x6d, 0x37, 0xf6, 0x9f, 0xde, 0x3e, 0x55, 0xd8, + 0x8b, 0xec, 0x76, 0x9f, 0xf3, 0xc1, 0x3f, 0x2a, 0x5f, 0xb2, 0xda, 0x8f, + 0xf9, 0x62, 0x9f, 0x95, 0x49, 0x83, 0x46, 0xd3, 0x4b, 0xda, 0x4f, 0xbb, + 0x1f, 0x2a, 0xec, 0x30, 0x5b, 0x5b, 0x7f, 0xcf, 0x14, 0xfc, 0xa9, 0x7e, + 0xcf, 0x6f, 0xff, 0x00, 0x3c, 0x53, 0xf2, 0xa7, 0x6d, 0xa5, 0xda, 0x69, + 0x73, 0xcb, 0xbb, 0x0b, 0x21, 0xbe, 0x44, 0x1f, 0xf3, 0xc9, 0x3f, 0x2a, + 0x5f, 0x26, 0x0f, 0xf9, 0xe4, 0x9f, 0x95, 0x2e, 0x0d, 0x18, 0x34, 0x73, + 0xcb, 0xb8, 0xec, 0x27, 0x93, 0x0f, 0xfc, 0xf3, 0x4f, 0xca, 0x97, 0xca, + 0x87, 0xfe, 0x79, 0xaf, 0xe5, 0x46, 0x3d, 0xe8, 0xa5, 0xcd, 0x2e, 0xe1, + 0xa0, 0x79, 0x51, 0x7f, 0xcf, 0x35, 0xfc, 0xa9, 0x7c, 0x98, 0xbf, 0xe7, + 0x9a, 0xfe, 0x54, 0x9c, 0xfa, 0xd2, 0xe4, 0xd1, 0xcd, 0x2e, 0xe1, 0xa0, + 0x79, 0x31, 0x7f, 0xcf, 0x35, 0xfc, 0xa8, 0xf2, 0x62, 0xff, 0x00, 0x9e, + 0x6b, 0xf9, 0x51, 0xcd, 0x2f, 0x34, 0xb9, 0xa5, 0xdc, 0x7a, 0x07, 0x95, + 0x17, 0xf7, 0x17, 0xf2, 0xa3, 0xc9, 0x8b, 0xfb, 0x8b, 0xf9, 0x51, 0x9a, + 0x33, 0x45, 0xe5, 0xdc, 0x34, 0x17, 0xca, 0x8f, 0xfb, 0x8b, 0xf9, 0x51, + 0xe5, 0x47, 0xfd, 0xc5, 0xfc, 0xa8, 0xcd, 0x19, 0xa5, 0x79, 0x77, 0x00, + 0xf2, 0xa3, 0xfe, 0xe2, 0xfe, 0x54, 0xbe, 0x54, 0x7f, 0xf3, 0xcd, 0x7f, + 0x2a, 0x33, 0x46, 0x68, 0xe6, 0x97, 0x70, 0xd0, 0x3c, 0xa8, 0xff, 0x00, + 0xb8, 0xbf, 0x95, 0x1e, 0x4c, 0x5f, 0xdc, 0x5f, 0xca, 0x97, 0x34, 0x66, + 0x97, 0x34, 0xbb, 0x8f, 0x40, 0xf2, 0xa2, 0xfe, 0xe2, 0xfe, 0x54, 0x79, + 0x31, 0x7f, 0x71, 0x7f, 0x2a, 0x5c, 0xd1, 0x45, 0xe5, 0xdc, 0x34, 0x13, + 0xc9, 0x8f, 0xfb, 0x8b, 0xf9, 0x51, 0xe4, 0xc7, 0xfd, 0xc5, 0xfc, 0xa9, + 0xc0, 0xd2, 0xe6, 0x8e, 0x69, 0x77, 0x0b, 0x21, 0x9e, 0x4c, 0x7f, 0xdc, + 0x5f, 0xca, 0x8f, 0x26, 0x3f, 0xee, 0x2f, 0xe5, 0x52, 0x51, 0x47, 0x34, + 0xbb, 0x85, 0x91, 0x1f, 0x93, 0x1f, 0xf7, 0x17, 0xf2, 0xa3, 0xc8, 0x8f, + 0xfe, 0x79, 0xaf, 0xe5, 0x52, 0x66, 0x96, 0x8e, 0x69, 0x05, 0x91, 0x1f, + 0x91, 0x1f, 0xf7, 0x17, 0xf2, 0xa3, 0xc8, 0x8f, 0xfb, 0x8b, 0xf9, 0x54, + 0x94, 0x51, 0xcd, 0x2e, 0xe1, 0x64, 0x47, 0xe4, 0x47, 0xfd, 0xc5, 0xfc, + 0xa8, 0xf2, 0x23, 0xff, 0x00, 0x9e, 0x6b, 0xf9, 0x54, 0x94, 0x51, 0xcc, + 0xfb, 0x85, 0x91, 0x1f, 0x91, 0x1f, 0xf7, 0x17, 0xf2, 0xa3, 0xc8, 0x8b, + 0xfb, 0x8b, 0xf9, 0x54, 0x94, 0x51, 0xcc, 0xfb, 0x85, 0x91, 0x1f, 0x91, + 0x1f, 0xf7, 0x17, 0xf2, 0xa4, 0xf2, 0x62, 0xff, 0x00, 0x9e, 0x6b, 0xf9, + 0x54, 0xb4, 0x51, 0xcc, 0xfb, 0x85, 0x91, 0x17, 0x91, 0x17, 0xfc, 0xf3, + 0x5f, 0xca, 0x8f, 0x22, 0x2f, 0xf9, 0xe6, 0xbf, 0x95, 0x4b, 0x45, 0x1c, + 0xcc, 0x2c, 0x88, 0xbe, 0xcf, 0x17, 0xfc, 0xf3, 0x5f, 0xca, 0x93, 0xec, + 0xf1, 0x7f, 0xcf, 0x35, 0xfc, 0xaa, 0x5e, 0x28, 0xa3, 0x99, 0xf7, 0x0b, + 0x22, 0x3f, 0xb3, 0xc3, 0xff, 0x00, 0x3c, 0xd3, 0xf2, 0xa4, 0xfb, 0x34, + 0x3f, 0xf3, 0xc9, 0x7f, 0x2a, 0x96, 0x92, 0x8e, 0x69, 0x77, 0x0b, 0x22, + 0x3f, 0xb3, 0x43, 0xff, 0x00, 0x3c, 0x97, 0xf2, 0xa3, 0xec, 0xb0, 0x7f, + 0xcf, 0x24, 0xfc, 0xaa, 0x5a, 0x4a, 0x39, 0xe5, 0xdc, 0x2c, 0x88, 0xbe, + 0xcb, 0x07, 0xfc, 0xf1, 0x4f, 0xca, 0x93, 0xec, 0x96, 0xff, 0x00, 0xf3, + 0xc5, 0x3f, 0xef, 0x9a, 0x9a, 0x8a, 0x7c, 0xf2, 0xee, 0x1c, 0xa8, 0x83, + 0xec, 0x76, 0xdf, 0xf3, 0xc6, 0x3f, 0xfb, 0xe6, 0x8f, 0xb1, 0x5b, 0x7f, + 0xcf, 0x08, 0xff, 0x00, 0xef, 0x9a, 0xb0, 0x05, 0x14, 0xfd, 0xac, 0xfb, + 0x8b, 0x95, 0x76, 0x2b, 0x7d, 0x82, 0xd4, 0xff, 0x00, 0xcb, 0x08, 0xff, + 0x00, 0x2a, 0x6f, 0xf6, 0x75, 0xa1, 0xff, 0x00, 0x96, 0x09, 0xf9, 0x55, + 0xac, 0x51, 0x4d, 0x55, 0xa9, 0xfc, 0xcc, 0x39, 0x23, 0xd8, 0xa6, 0x74, + 0xab, 0x23, 0xff, 0x00, 0x2c, 0x56, 0x98, 0xda, 0x35, 0x91, 0xff, 0x00, + 0x96, 0x78, 0xab, 0xf9, 0xa3, 0x23, 0xd6, 0x9a, 0xaf, 0x59, 0x7d, 0xa6, + 0x2f, 0x67, 0x1e, 0xc6, 0x5b, 0x68, 0x56, 0xa7, 0xa6, 0x45, 0x41, 0x27, + 0x87, 0xd3, 0x1f, 0x24, 0x9f, 0x98, 0xad, 0xac, 0x8f, 0x51, 0x49, 0xbd, + 0x7d, 0x45, 0x6a, 0xb1, 0x75, 0xd6, 0xd2, 0x25, 0xd0, 0x83, 0xe8, 0x72, + 0xf7, 0x1a, 0x4c, 0xf0, 0x73, 0xb4, 0x30, 0xf6, 0xaa, 0x05, 0x70, 0x70, + 0x46, 0x0d, 0x76, 0xc5, 0xd0, 0x8c, 0x1c, 0x1a, 0xc5, 0xd5, 0x2c, 0x51, + 0xd4, 0xc9, 0x16, 0x01, 0x1d, 0x85, 0x77, 0xe1, 0xb1, 0xf2, 0x93, 0xe5, + 0xa8, 0x73, 0xd5, 0xc2, 0xd9, 0x5e, 0x26, 0x4e, 0xa9, 0xa6, 0x6f, 0x53, + 0x34, 0x23, 0x0c, 0x3a, 0x81, 0xde, 0xb0, 0x83, 0x10, 0x70, 0x7a, 0xd7, + 0x6d, 0xd5, 0x79, 0x15, 0xcd, 0xeb, 0x36, 0x42, 0x09, 0x44, 0xc8, 0x3e, + 0x56, 0xeb, 0xec, 0x6b, 0xa7, 0x01, 0x8b, 0x6d, 0xfb, 0x29, 0xfc, 0x8e, + 0xcc, 0x66, 0x1d, 0x35, 0xcf, 0x13, 0x3f, 0x34, 0xb4, 0xd5, 0xe9, 0x4e, + 0xaf, 0x64, 0xf2, 0x45, 0xa2, 0x8a, 0x28, 0x10, 0x51, 0x45, 0x2d, 0x00, + 0x27, 0x34, 0x73, 0xeb, 0x4b, 0x45, 0x00, 0x19, 0x3e, 0xb4, 0x6e, 0x6f, + 0x53, 0x45, 0x14, 0x08, 0x5d, 0xcd, 0xea, 0x68, 0xde, 0xde, 0xa6, 0x92, + 0x8a, 0x2c, 0x80, 0x77, 0x98, 0xde, 0xb4, 0xbe, 0x6b, 0x7a, 0xd3, 0x28, + 0xa3, 0x95, 0x05, 0x91, 0x2f, 0x9c, 0xde, 0xb4, 0xa2, 0x76, 0xa8, 0x68, + 0xa5, 0xc8, 0x82, 0xc8, 0xb0, 0x27, 0xf6, 0xa5, 0x13, 0x0a, 0xad, 0x9a, + 0x33, 0x4b, 0xd9, 0xa1, 0x72, 0xa2, 0xd8, 0x95, 0x7d, 0x69, 0xe1, 0xc1, + 0xef, 0x54, 0x73, 0x46, 0xe3, 0x53, 0xec, 0x90, 0xb9, 0x0b, 0xf9, 0xa2, + 0xa9, 0x09, 0x18, 0x77, 0xa7, 0x8b, 0x86, 0x1d, 0x6a, 0x5d, 0x36, 0x4f, + 0x2b, 0x2d, 0xd1, 0x50, 0xad, 0xc2, 0x9e, 0xbc, 0x54, 0xa1, 0x81, 0xe8, + 0x6a, 0x5c, 0x5a, 0x13, 0x4d, 0x0b, 0x45, 0x14, 0x52, 0x10, 0x51, 0x45, + 0x14, 0x58, 0x2e, 0x14, 0xb4, 0x94, 0x51, 0x60, 0xb8, 0x52, 0xd2, 0x52, + 0xd1, 0x60, 0x0a, 0x28, 0xa2, 0x8b, 0x00, 0x51, 0x45, 0x14, 0xec, 0x20, + 0xa2, 0x8a, 0x5a, 0x00, 0x4a, 0x28, 0xa2, 0x80, 0x0a, 0x28, 0xa5, 0xa0, + 0x02, 0x8a, 0x28, 0xa6, 0x02, 0x62, 0x97, 0x14, 0x52, 0xd2, 0x01, 0x28, + 0xc5, 0x2d, 0x14, 0x00, 0x98, 0xa3, 0x14, 0xec, 0x51, 0x40, 0x58, 0x6e, + 0x28, 0xc5, 0x3b, 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x31, 0x4e, 0xc5, 0x2e, + 0xda, 0x00, 0x65, 0x18, 0xa7, 0x84, 0x34, 0xf1, 0x0b, 0xb7, 0x45, 0x27, + 0xf0, 0xa0, 0x64, 0x18, 0xa3, 0x6d, 0x5e, 0x8f, 0x4e, 0xb9, 0x94, 0xe1, + 0x20, 0x91, 0xbe, 0x8b, 0x57, 0x22, 0xf0, 0xd6, 0xab, 0x2f, 0xdd, 0xb1, + 0x98, 0xff, 0x00, 0xc0, 0x4d, 0x01, 0x66, 0x61, 0x95, 0xa6, 0x98, 0xeb, + 0xab, 0x8b, 0xc1, 0x3a, 0xd4, 0x9d, 0x2c, 0xd8, 0x7d, 0x4e, 0x2a, 0xe4, + 0x5f, 0x0f, 0x35, 0x99, 0x3e, 0xf4, 0x68, 0x9f, 0x56, 0xa2, 0xc3, 0xe5, + 0x67, 0x04, 0xe8, 0x45, 0x4b, 0xa7, 0xdb, 0x5d, 0x4b, 0x70, 0x1e, 0xde, + 0x32, 0xdb, 0x4f, 0x38, 0xaf, 0x42, 0x5f, 0x86, 0x3a, 0x83, 0x8f, 0x9a, + 0x68, 0x45, 0x6c, 0x69, 0x7e, 0x01, 0xb8, 0xd3, 0xe1, 0x31, 0xf9, 0xb1, + 0x12, 0x4e, 0x49, 0xe6, 0xb0, 0xaf, 0x19, 0xb8, 0x5a, 0x0a, 0xec, 0xde, + 0x8c, 0x6d, 0x2b, 0xcb, 0x43, 0x9d, 0x82, 0x26, 0x68, 0x94, 0xba, 0xe1, + 0xb1, 0xc8, 0xa9, 0x3c, 0x93, 0xe9, 0x5d, 0x8a, 0xf8, 0x4a, 0x4e, 0xf2, + 0xa5, 0x48, 0x3c, 0x25, 0xeb, 0x30, 0xfc, 0xab, 0xc7, 0xfe, 0xce, 0xac, + 0xfa, 0x1d, 0xfe, 0xda, 0x07, 0x17, 0xe4, 0x9a, 0x5f, 0x24, 0xd7, 0x6c, + 0x3c, 0x27, 0x1f, 0x79, 0x8f, 0xe5, 0x52, 0x2f, 0x85, 0x60, 0x1d, 0x64, + 0x63, 0xf8, 0x52, 0xfe, 0xcc, 0xac, 0x1e, 0xde, 0x07, 0x0b, 0xe5, 0x1f, + 0x4a, 0x3c, 0xa3, 0xe9, 0x5d, 0xdf, 0xfc, 0x22, 0xd6, 0xdf, 0xdf, 0x6a, + 0x4f, 0xf8, 0x45, 0xad, 0xff, 0x00, 0xbe, 0xdf, 0x95, 0x1f, 0xd9, 0x95, + 0x83, 0xdb, 0xc0, 0xe1, 0x7c, 0xa3, 0x47, 0x95, 0xed, 0x5d, 0xc9, 0xf0, + 0xb4, 0x1d, 0xa5, 0x6f, 0xca, 0x98, 0x7c, 0x2b, 0x17, 0x69, 0x4f, 0xe5, + 0x4b, 0xfb, 0x36, 0xb0, 0xfd, 0xb4, 0x0e, 0x24, 0xc6, 0x7d, 0x29, 0x3c, + 0xb3, 0x5d, 0xa3, 0x78, 0x55, 0x7b, 0x4b, 0xfa, 0x54, 0x6d, 0xe1, 0x56, + 0xed, 0x22, 0xd4, 0xbc, 0xbe, 0xb2, 0xe8, 0x1e, 0xda, 0x07, 0x1f, 0xe5, + 0xfb, 0x51, 0xe5, 0xd7, 0x56, 0xde, 0x17, 0x98, 0x74, 0x65, 0x35, 0x0b, + 0x78, 0x6a, 0xe4, 0x74, 0x50, 0x7f, 0x1a, 0xcd, 0xe0, 0x6b, 0xaf, 0xb2, + 0x57, 0xb5, 0x87, 0x73, 0x9a, 0xd9, 0x4d, 0xd9, 0x5d, 0x03, 0xe8, 0x17, + 0x4b, 0xff, 0x00, 0x2c, 0xc9, 0xa8, 0x1f, 0x48, 0xb8, 0x5e, 0xb0, 0xb7, + 0xe5, 0x50, 0xf0, 0xd5, 0x56, 0xe8, 0x7c, 0xf1, 0xee, 0x63, 0x6d, 0xa3, + 0x6d, 0x69, 0x35, 0x84, 0xab, 0xd5, 0x08, 0xfc, 0x2a, 0x26, 0xb5, 0x61, + 0xda, 0xa3, 0xd9, 0x49, 0x6e, 0x3b, 0xa2, 0x8e, 0xda, 0x36, 0xd5, 0xa3, + 0x01, 0x1d, 0xa9, 0xa6, 0x23, 0xe9, 0x47, 0x20, 0x15, 0xf1, 0x46, 0x2a, + 0x63, 0x19, 0xa6, 0x94, 0x34, 0xf9, 0x00, 0x8b, 0x14, 0x53, 0xca, 0xd2, + 0x62, 0x8e, 0x50, 0x1b, 0x4b, 0x46, 0x28, 0xa3, 0x95, 0x00, 0x51, 0x45, + 0x15, 0x36, 0x40, 0x2d, 0x14, 0x94, 0xb5, 0x2d, 0x0c, 0x29, 0x69, 0x28, + 0xa5, 0x60, 0x1d, 0x45, 0x25, 0x2d, 0x03, 0x16, 0x94, 0x52, 0x51, 0x45, + 0x80, 0x5a, 0x5a, 0x4a, 0x28, 0xb0, 0x0b, 0x46, 0x68, 0xa2, 0x93, 0x18, + 0x51, 0x46, 0x68, 0xcd, 0x2b, 0x00, 0xb4, 0x94, 0x66, 0x97, 0x34, 0x00, + 0x94, 0xb4, 0x53, 0x59, 0x95, 0x79, 0x27, 0x14, 0x80, 0x75, 0x26, 0x6a, + 0x07, 0xba, 0x8d, 0x7a, 0x64, 0xd4, 0x0d, 0x78, 0xc7, 0xee, 0x80, 0x2a, + 0xd4, 0x1b, 0x2d, 0x53, 0x93, 0x2e, 0xd2, 0x16, 0x03, 0xa9, 0x15, 0x9c, + 0xd3, 0xc8, 0xdf, 0xc4, 0x6a, 0x32, 0xcc, 0x7a, 0x93, 0x57, 0xec, 0xfb, + 0xb3, 0x45, 0x41, 0xf5, 0x66, 0x99, 0x9a, 0x31, 0xd5, 0x85, 0x30, 0xdc, + 0xc6, 0x3b, 0xe6, 0xb3, 0xb9, 0xa5, 0xa7, 0xec, 0xd1, 0x6a, 0x82, 0x2f, + 0x1b, 0xb4, 0xf4, 0x34, 0xc3, 0x7a, 0x3b, 0x2f, 0xeb, 0x55, 0x28, 0xa7, + 0xc9, 0x12, 0xbd, 0x8c, 0x0b, 0x5f, 0x6d, 0x6e, 0xca, 0x29, 0x0d, 0xe3, + 0xfb, 0x55, 0x5a, 0x4c, 0xd3, 0xe5, 0x5d, 0x87, 0xec, 0xe3, 0xd8, 0xb0, + 0x6e, 0xa4, 0x3f, 0xc5, 0x49, 0xf6, 0x97, 0x3f, 0xc5, 0x50, 0x51, 0x4e, + 0xc8, 0x7c, 0xb1, 0xec, 0x4a, 0x66, 0x73, 0xfc, 0x47, 0xf3, 0xa4, 0xf3, + 0x5b, 0xfb, 0xc7, 0xf3, 0xa8, 0xa8, 0xa6, 0x3b, 0x22, 0x5f, 0x35, 0xbd, + 0x4d, 0x27, 0x98, 0x4f, 0x7a, 0x8f, 0x34, 0x01, 0x40, 0x0f, 0xde, 0x7d, + 0x68, 0xdf, 0x4d, 0xa2, 0x81, 0x8b, 0xb8, 0xd2, 0x13, 0x95, 0x34, 0x94, + 0x1e, 0x86, 0x81, 0x08, 0x3a, 0x0a, 0x82, 0xf2, 0xdc, 0x5c, 0xdb, 0xbc, + 0x67, 0xb8, 0xe2, 0xac, 0x8e, 0x82, 0x8c, 0x55, 0x46, 0x4e, 0x2e, 0xe8, + 0x4d, 0x5d, 0x59, 0x9c, 0x51, 0x46, 0x8d, 0xd9, 0x1b, 0xaa, 0x9c, 0x52, + 0xd6, 0x86, 0xb1, 0x00, 0x8a, 0xec, 0x38, 0xe8, 0xe3, 0x35, 0x9f, 0x5f, + 0x55, 0x42, 0xa7, 0xb4, 0xa6, 0xa7, 0xdc, 0xf9, 0xfa, 0xf4, 0xfd, 0x9d, + 0x47, 0x10, 0xa2, 0x8a, 0x2b, 0x63, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, + 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, + 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x00, 0xa2, 0x8a, 0x28, 0x15, 0xc2, + 0x8a, 0x28, 0xc5, 0x3b, 0x05, 0xc4, 0xa2, 0x97, 0x14, 0x62, 0x8b, 0x05, + 0xc2, 0x94, 0x31, 0x07, 0x82, 0x68, 0x02, 0x8c, 0x51, 0x61, 0x5c, 0x99, + 0x2e, 0x08, 0xe1, 0xb9, 0xab, 0x0a, 0xc1, 0x86, 0x41, 0xaa, 0x58, 0xa7, + 0xa1, 0x2a, 0x78, 0xa8, 0x74, 0xd3, 0xd8, 0x86, 0xbb, 0x17, 0x28, 0xa5, + 0x8c, 0x17, 0x5c, 0x8a, 0x90, 0x42, 0xc7, 0xa2, 0x93, 0xf8, 0x56, 0x76, + 0x33, 0xd4, 0x8a, 0x8a, 0xb2, 0x2d, 0x25, 0x3d, 0x23, 0x6f, 0xca, 0x9e, + 0x34, 0xf9, 0xcf, 0x48, 0x9b, 0xf2, 0xa5, 0xa0, 0xf9, 0x64, 0xfa, 0x14, + 0xe9, 0x6a, 0xf0, 0xd2, 0xee, 0x4f, 0xfc, 0xb2, 0x34, 0xef, 0xec, 0xab, + 0x9f, 0xf9, 0xe6, 0x68, 0xba, 0x1f, 0x24, 0xfb, 0x19, 0xf8, 0xa5, 0xc5, + 0x5f, 0xfe, 0xcc, 0xb8, 0x1d, 0x63, 0x34, 0x7f, 0x67, 0x4e, 0x3f, 0xe5, + 0x9b, 0x7e, 0x54, 0x68, 0x1c, 0xb2, 0xec, 0x50, 0xc5, 0x18, 0xab, 0xdf, + 0xd9, 0xf3, 0xff, 0x00, 0xcf, 0x36, 0xfc, 0xa9, 0x0d, 0x8c, 0xc3, 0xfe, + 0x59, 0xb7, 0xe5, 0x46, 0x82, 0xe5, 0x97, 0x62, 0x96, 0x28, 0xc5, 0x5b, + 0x36, 0x72, 0x8f, 0xe0, 0x6f, 0xca, 0x9a, 0x6d, 0x9c, 0x7f, 0x09, 0xfc, + 0xa9, 0xe8, 0x1a, 0x95, 0xb1, 0x46, 0x2a, 0xc7, 0x90, 0xde, 0x94, 0x9e, + 0x51, 0xf4, 0xa2, 0xc2, 0xd4, 0x87, 0x14, 0x62, 0xa5, 0xf2, 0x8f, 0xa5, + 0x1e, 0x59, 0xf4, 0xa2, 0xc1, 0x72, 0x2c, 0x51, 0x8a, 0x97, 0xcb, 0xa3, + 0x65, 0x2b, 0x0e, 0xe4, 0x78, 0xa3, 0x15, 0x26, 0xc3, 0x46, 0xca, 0x2c, + 0x17, 0x19, 0x8a, 0x31, 0x52, 0xac, 0x2e, 0xe7, 0x0a, 0xa4, 0x9f, 0x61, + 0x5a, 0x76, 0x7e, 0x1a, 0xd5, 0x6f, 0x88, 0xf2, 0x6c, 0xe4, 0x20, 0xf7, + 0x23, 0x14, 0xac, 0x52, 0x57, 0x32, 0x31, 0x4a, 0x16, 0xbb, 0xab, 0x1f, + 0x86, 0x9a, 0x84, 0xd8, 0x37, 0x33, 0x24, 0x23, 0xd0, 0x72, 0x6b, 0xa5, + 0xb1, 0xf8, 0x6f, 0xa5, 0xdb, 0xe0, 0xdc, 0x33, 0xcc, 0xde, 0xe7, 0x02, + 0x82, 0xd4, 0x19, 0xe4, 0xb1, 0x5b, 0x4b, 0x29, 0xc2, 0x23, 0x31, 0xf6, + 0x15, 0xaf, 0x67, 0xe1, 0x3d, 0x5e, 0xf0, 0x8f, 0x2e, 0xd1, 0xc0, 0x3d, + 0xd8, 0x60, 0x57, 0xb4, 0x59, 0xe8, 0x5a, 0x7d, 0x8a, 0x81, 0x6f, 0x6b, + 0x1a, 0xe3, 0xbe, 0xde, 0x6b, 0x41, 0x62, 0x03, 0xa0, 0x02, 0x82, 0xd5, + 0x3e, 0xe7, 0x93, 0x5a, 0x7c, 0x34, 0xbf, 0x93, 0x06, 0x79, 0xa3, 0x8c, + 0x7a, 0x0e, 0x6b, 0x6e, 0xdb, 0xe1, 0x95, 0x9a, 0x60, 0xcf, 0x71, 0x23, + 0x9f, 0x41, 0xc5, 0x7a, 0x00, 0x4a, 0x70, 0x4a, 0x0a, 0xe4, 0x47, 0x2b, + 0x6d, 0xe0, 0x4d, 0x16, 0x0c, 0x1f, 0xb3, 0xef, 0x3f, 0xed, 0x1c, 0xd6, + 0xa4, 0x1e, 0x1f, 0xd3, 0x20, 0x03, 0xcb, 0xb2, 0x88, 0x63, 0xfd, 0x9a, + 0xd8, 0x09, 0x4b, 0xb2, 0x81, 0xd9, 0x14, 0x96, 0xce, 0x08, 0xc6, 0x16, + 0x14, 0x1f, 0x45, 0xa9, 0x04, 0x4a, 0x07, 0x0a, 0x05, 0x5a, 0xd9, 0x46, + 0xcf, 0x6a, 0x06, 0x57, 0xd8, 0x3d, 0x28, 0xd9, 0x56, 0x36, 0x52, 0xec, + 0xa0, 0x0a, 0xdb, 0x28, 0xdb, 0x56, 0x36, 0x52, 0x79, 0x74, 0x01, 0x5c, + 0xad, 0x1b, 0x2a, 0xc7, 0x97, 0x47, 0x97, 0x40, 0x15, 0x8a, 0x7b, 0x51, + 0xb6, 0xac, 0x6c, 0xa4, 0xd9, 0xed, 0x40, 0x15, 0xf6, 0xd1, 0xb2, 0xa7, + 0x29, 0x49, 0xb2, 0x90, 0x10, 0x6c, 0xa4, 0xdb, 0x53, 0x95, 0xa4, 0xdb, + 0x40, 0x10, 0x6c, 0xa4, 0x2b, 0x53, 0xed, 0xa6, 0x95, 0xa6, 0x04, 0x05, + 0x69, 0x36, 0xd4, 0xfb, 0x69, 0xbb, 0x69, 0x0c, 0x84, 0xad, 0x34, 0xa8, + 0xf4, 0xa9, 0x8a, 0xd3, 0x48, 0xa0, 0x08, 0x1a, 0x14, 0x6e, 0xaa, 0x0f, + 0xe1, 0x50, 0x3d, 0x8d, 0xbb, 0xfd, 0xe8, 0x97, 0xf2, 0xab, 0x84, 0x52, + 0x11, 0x52, 0xe2, 0x9e, 0xe8, 0x77, 0x32, 0xe4, 0xd1, 0xad, 0x1f, 0xf8, + 0x31, 0xf4, 0xaa, 0x72, 0xf8, 0x7a, 0x23, 0x9d, 0x8e, 0x47, 0xd6, 0xb7, + 0x88, 0xa6, 0x91, 0x59, 0x4b, 0x0f, 0x4e, 0x5b, 0xa2, 0x94, 0xe4, 0xba, + 0x9c, 0xa4, 0xde, 0x1f, 0x99, 0x72, 0x53, 0x0d, 0x59, 0xf3, 0x69, 0x73, + 0x45, 0xf7, 0xa3, 0x23, 0xf0, 0xae, 0xe4, 0x8a, 0x6b, 0x28, 0x6e, 0xa0, + 0x1a, 0xe7, 0x9e, 0x06, 0x9b, 0xdb, 0x43, 0x45, 0x5a, 0x5d, 0x4f, 0x3c, + 0x7b, 0x66, 0x1d, 0xaa, 0x26, 0x8b, 0x1d, 0xab, 0xbc, 0x9f, 0x4e, 0xb7, + 0x98, 0x1c, 0xc6, 0x01, 0xf5, 0x15, 0x95, 0x73, 0xa0, 0x9e, 0x4c, 0x4d, + 0x9f, 0x63, 0x5c, 0xb5, 0x30, 0x53, 0x5b, 0x6a, 0x69, 0x1a, 0xd1, 0x7b, + 0x9c, 0xa1, 0x4a, 0x69, 0x5a, 0xd5, 0xb8, 0xb0, 0x92, 0x13, 0x86, 0x42, + 0x3f, 0x0a, 0xa4, 0xd1, 0x11, 0xda, 0xb8, 0xa5, 0x4d, 0xc7, 0x73, 0x64, + 0xee, 0x55, 0xc5, 0x25, 0x4c, 0xc9, 0x4c, 0x2b, 0x59, 0xb8, 0x8c, 0x65, + 0x19, 0xa5, 0x2b, 0x49, 0x8a, 0x96, 0x80, 0x33, 0x4b, 0x9a, 0x6f, 0x4a, + 0x2a, 0x1a, 0x01, 0xd9, 0x34, 0xb4, 0xdc, 0xd3, 0x85, 0x21, 0x8e, 0xa5, + 0xa4, 0x14, 0xea, 0x1a, 0x01, 0x28, 0xa5, 0xa2, 0x90, 0x05, 0x14, 0x7e, + 0x34, 0x99, 0xa5, 0x70, 0x16, 0x8a, 0x6e, 0x68, 0xcd, 0x2b, 0x8c, 0x75, + 0x31, 0xe5, 0x48, 0xc7, 0xcc, 0x6a, 0x19, 0xae, 0x02, 0x70, 0xbd, 0x6a, + 0x8b, 0xb1, 0x63, 0x92, 0x72, 0x6a, 0xe3, 0x4e, 0xfb, 0x9a, 0xc2, 0x93, + 0x96, 0xac, 0xb3, 0x25, 0xe1, 0x3c, 0x20, 0xc0, 0xf5, 0xaa, 0xed, 0x23, + 0x31, 0xe4, 0x93, 0x4d, 0xc7, 0xbd, 0x19, 0xad, 0x92, 0x4b, 0x63, 0xa6, + 0x30, 0x51, 0xd8, 0x5a, 0x4a, 0x4a, 0x33, 0x41, 0x42, 0xd1, 0x9a, 0x4a, + 0x28, 0x01, 0x69, 0x33, 0x49, 0x40, 0xa6, 0x02, 0xe6, 0x8c, 0xd1, 0x45, + 0x00, 0x19, 0xa2, 0x8a, 0x4a, 0x00, 0x29, 0x3b, 0xd2, 0xd1, 0x8a, 0x04, + 0x18, 0xcd, 0x28, 0x14, 0x51, 0x40, 0xc3, 0x14, 0x52, 0x66, 0x8a, 0x04, + 0x2f, 0x4a, 0x4a, 0x28, 0xa0, 0x03, 0x34, 0x1e, 0x94, 0x62, 0x8c, 0x70, + 0x68, 0x01, 0x47, 0x4a, 0x33, 0x4a, 0x22, 0x97, 0x03, 0xf7, 0x6f, 0xf9, + 0x52, 0x14, 0x93, 0xfb, 0x8d, 0xf9, 0x56, 0xfe, 0xc2, 0x7d, 0x85, 0xcc, + 0x8c, 0x6d, 0x71, 0x73, 0xe5, 0x1f, 0xad, 0x63, 0x56, 0xfe, 0xb1, 0x13, + 0xb4, 0x29, 0xf2, 0xb7, 0x07, 0xd2, 0xb1, 0xbc, 0x96, 0x1f, 0xc2, 0x6b, + 0xdf, 0xc0, 0xa6, 0xa8, 0xa4, 0xcf, 0x17, 0x1d, 0xfc, 0x52, 0x1c, 0x51, + 0x8a, 0x97, 0xcb, 0x3e, 0x94, 0x9e, 0x59, 0xf4, 0xae, 0xc3, 0x88, 0x8e, + 0x8c, 0x53, 0xf6, 0x1a, 0x4d, 0xa6, 0x81, 0x0c, 0xa3, 0x14, 0xfd, 0xb4, + 0x98, 0xa0, 0x06, 0xe2, 0x8a, 0x76, 0x29, 0x31, 0x40, 0x0d, 0xa5, 0xa5, + 0xa4, 0xa0, 0x04, 0xa5, 0xa3, 0x14, 0x53, 0x15, 0xc4, 0xa5, 0xa3, 0x14, + 0xb8, 0xa0, 0x57, 0x12, 0x8a, 0x76, 0x29, 0x42, 0x93, 0x4c, 0x43, 0x31, + 0x4a, 0x05, 0x6a, 0x59, 0x68, 0x3a, 0x8d, 0xf9, 0x1e, 0x45, 0xac, 0x8c, + 0x0f, 0xf1, 0x11, 0x81, 0xf9, 0xd7, 0x4d, 0x65, 0xf0, 0xee, 0xea, 0x45, + 0x0d, 0x75, 0x70, 0xb1, 0x67, 0xb2, 0x8c, 0x9a, 0x97, 0x34, 0x8a, 0x51, + 0x6c, 0xe1, 0xb6, 0xd4, 0x89, 0x0b, 0xc8, 0x70, 0x8a, 0xcc, 0x7d, 0x00, + 0xaf, 0x52, 0xb1, 0xf0, 0x0e, 0x99, 0x6c, 0x43, 0x4e, 0xcf, 0x3b, 0x0f, + 0x5e, 0x05, 0x74, 0x36, 0xda, 0x5d, 0x85, 0xa2, 0x85, 0x86, 0xd6, 0x25, + 0x03, 0xfd, 0x9a, 0x97, 0x51, 0x74, 0x29, 0x53, 0xee, 0x78, 0xe5, 0xb7, + 0x87, 0xb5, 0x3b, 0xaf, 0xf5, 0x56, 0x72, 0x9f, 0xaa, 0xe3, 0xf9, 0xd6, + 0xbd, 0xbf, 0x80, 0xb5, 0x79, 0xb0, 0x5d, 0x12, 0x31, 0xfe, 0xd3, 0x57, + 0xac, 0x0c, 0x28, 0xc0, 0x00, 0x0f, 0x6a, 0x5c, 0xd4, 0x3a, 0x8c, 0xae, + 0x44, 0x79, 0xe5, 0xbf, 0xc3, 0x69, 0x08, 0x06, 0x7b, 0xc5, 0x1e, 0xca, + 0xb5, 0xa5, 0x0f, 0xc3, 0xad, 0x3d, 0x3f, 0xd6, 0x4f, 0x23, 0xfe, 0x95, + 0xd9, 0x66, 0x8c, 0xd4, 0xf3, 0x37, 0xd4, 0x7c, 0xa8, 0xc0, 0xb7, 0xf0, + 0x76, 0x95, 0x6e, 0x00, 0x11, 0x93, 0xf5, 0x35, 0x7a, 0x3d, 0x03, 0x4d, + 0x8f, 0xa5, 0xba, 0xd6, 0x8e, 0x69, 0x73, 0x53, 0x62, 0xae, 0x54, 0x5d, + 0x2e, 0xc9, 0x7a, 0x5b, 0xa7, 0xe5, 0x52, 0x0b, 0x0b, 0x51, 0xd2, 0xde, + 0x3f, 0xfb, 0xe4, 0x54, 0xf9, 0xa5, 0xa2, 0xc8, 0x2e, 0x42, 0x2d, 0x2d, + 0xfb, 0x43, 0x1f, 0xfd, 0xf2, 0x29, 0xdf, 0x63, 0x80, 0xf5, 0x89, 0x31, + 0xf4, 0xa9, 0x45, 0x2d, 0x3b, 0x01, 0x07, 0xf6, 0x65, 0x93, 0x75, 0x81, + 0x69, 0x3f, 0xb2, 0x2c, 0x0f, 0xfc, 0xbb, 0xad, 0x5a, 0x06, 0x97, 0x34, + 0xec, 0x17, 0x29, 0xff, 0x00, 0x63, 0x58, 0x1f, 0xf9, 0x77, 0x5a, 0x43, + 0xa1, 0x69, 0xe7, 0xfe, 0x5d, 0xc7, 0xe6, 0x6a, 0xf8, 0x34, 0xec, 0xd1, + 0x60, 0xbb, 0x33, 0x0f, 0x87, 0xb4, 0xf3, 0xff, 0x00, 0x2c, 0xb1, 0xf8, + 0xd4, 0x6d, 0xe1, 0x8d, 0x3d, 0xbb, 0x30, 0xfc, 0x6b, 0x64, 0x53, 0x85, + 0x2b, 0x21, 0x5d, 0x9c, 0xf3, 0x78, 0x42, 0xc9, 0xba, 0x33, 0x0f, 0xa8, + 0x15, 0x04, 0x9e, 0x09, 0xb7, 0x6f, 0xbb, 0x22, 0xfe, 0x2b, 0x5d, 0x50, + 0x14, 0xe0, 0x28, 0xb2, 0x0b, 0x9c, 0x44, 0xbe, 0x04, 0x24, 0x7c, 0x86, + 0x33, 0xfa, 0x55, 0x37, 0xf0, 0x2d, 0xc6, 0xec, 0x04, 0x1f, 0x50, 0xd5, + 0xe8, 0xc0, 0x53, 0x80, 0xa2, 0xc1, 0x64, 0xfa, 0x1c, 0x34, 0x5f, 0x0e, + 0xa0, 0x68, 0x7f, 0x79, 0x70, 0xc2, 0x4f, 0x61, 0xc5, 0x57, 0x97, 0xe1, + 0xb3, 0xe7, 0xf7, 0x77, 0x6a, 0x47, 0xba, 0xd7, 0xa2, 0x01, 0x4f, 0x0b, + 0x4e, 0xe4, 0x38, 0x44, 0xf3, 0xb8, 0x7e, 0x19, 0xf3, 0xfb, 0xdb, 0xce, + 0x3d, 0x15, 0x6b, 0x62, 0xd3, 0xe1, 0xe6, 0x91, 0x06, 0x0c, 0xa1, 0xe5, + 0x3f, 0xed, 0x1e, 0x2b, 0xaf, 0x0b, 0x4f, 0x0b, 0x45, 0xc1, 0x42, 0x2b, + 0xa1, 0x97, 0x69, 0xa0, 0x69, 0xb6, 0x60, 0x08, 0x6c, 0xe2, 0x5c, 0x77, + 0xdb, 0x5a, 0x49, 0x12, 0xa8, 0xc2, 0xa8, 0x03, 0xd8, 0x54, 0xc1, 0x69, + 0xe1, 0x68, 0x28, 0x88, 0x2d, 0x3c, 0x25, 0x48, 0x16, 0x9c, 0x16, 0x80, + 0x23, 0x09, 0x4e, 0x09, 0x52, 0x84, 0xa7, 0x84, 0xa0, 0x08, 0x42, 0x52, + 0x84, 0xab, 0x01, 0x29, 0x42, 0x52, 0x02, 0x00, 0x94, 0xe0, 0x95, 0x38, + 0x8e, 0x9c, 0x23, 0xa0, 0x0a, 0xfb, 0x29, 0x7c, 0xba, 0xb0, 0x12, 0x9d, + 0xe5, 0x8a, 0x00, 0xab, 0xe5, 0xd2, 0xf9, 0x75, 0x67, 0x65, 0x1b, 0x29, + 0x0c, 0xad, 0xe5, 0xd2, 0x18, 0xea, 0xd6, 0xca, 0x4d, 0x94, 0x08, 0xaa, + 0x63, 0xa4, 0x31, 0xd5, 0xb2, 0x94, 0x9b, 0x29, 0x81, 0x53, 0xcb, 0xa4, + 0x29, 0x56, 0x8a, 0x52, 0x14, 0xa4, 0x05, 0x4d, 0x94, 0x9b, 0x2a, 0xd1, + 0x8e, 0x9a, 0x52, 0x98, 0x15, 0x76, 0x52, 0x15, 0xab, 0x25, 0x29, 0xa5, + 0x28, 0x19, 0x58, 0xa7, 0xb5, 0x34, 0xad, 0x58, 0x29, 0x4d, 0x2b, 0x48, + 0x0a, 0xe5, 0x69, 0xa5, 0x6a, 0xc1, 0x5a, 0x61, 0x5a, 0x00, 0x80, 0xad, + 0x30, 0xad, 0x4e, 0x56, 0x98, 0x45, 0x00, 0x42, 0x56, 0x98, 0x45, 0x4e, + 0x45, 0x30, 0x8a, 0x00, 0x88, 0x8a, 0x69, 0x15, 0x21, 0x14, 0xd2, 0x28, + 0x19, 0x19, 0x14, 0xd2, 0x2a, 0x42, 0x29, 0xa4, 0x52, 0x02, 0x32, 0x29, + 0xa4, 0x54, 0x84, 0x53, 0x4d, 0x16, 0x02, 0x09, 0x21, 0x49, 0x17, 0x0e, + 0xa0, 0x8f, 0x7a, 0xc9, 0xbc, 0xd1, 0x63, 0x70, 0x5a, 0x1f, 0x94, 0xfa, + 0x56, 0xd1, 0xa6, 0x9a, 0xce, 0x74, 0xe3, 0x35, 0x69, 0x22, 0xa3, 0x26, + 0xb6, 0x38, 0x7b, 0x9b, 0x39, 0x20, 0x62, 0x1d, 0x08, 0xaa, 0x6c, 0x98, + 0xae, 0xf6, 0x68, 0x23, 0x99, 0x70, 0xea, 0x0d, 0x66, 0x49, 0xa1, 0xc0, + 0xec, 0x48, 0x62, 0x07, 0xa5, 0x79, 0xb5, 0xb0, 0x0e, 0xfe, 0xe1, 0xd1, + 0x1a, 0xeb, 0xed, 0x1c, 0x89, 0x14, 0xd2, 0xb5, 0xd6, 0xff, 0x00, 0x60, + 0x5b, 0x77, 0x66, 0x34, 0xa3, 0x42, 0xb3, 0x1d, 0x98, 0xfe, 0x35, 0x8f, + 0xf6, 0x7d, 0x5f, 0x22, 0xfd, 0xb4, 0x4e, 0x43, 0x6f, 0xb5, 0x26, 0xd3, + 0x5d, 0x90, 0xd1, 0xec, 0xc7, 0xfc, 0xb2, 0xcf, 0xd4, 0xd2, 0xff, 0x00, + 0x65, 0xd9, 0xff, 0x00, 0xcf, 0x15, 0xa3, 0xfb, 0x3a, 0xa3, 0xea, 0x85, + 0xed, 0xe2, 0x71, 0x7b, 0x4f, 0xa5, 0x38, 0x71, 0xda, 0xbb, 0x3f, 0xec, + 0xab, 0x2e, 0xf0, 0x8a, 0x5f, 0xec, 0x9b, 0x1f, 0xf9, 0xe0, 0xb4, 0x7f, + 0x65, 0xd4, 0x7f, 0x69, 0x07, 0xd6, 0x23, 0xd8, 0xe3, 0x73, 0x49, 0x93, + 0x5d, 0x97, 0xf6, 0x4d, 0x91, 0xff, 0x00, 0x96, 0x0b, 0x48, 0x74, 0x7b, + 0x13, 0xff, 0x00, 0x2c, 0x45, 0x3f, 0xec, 0xba, 0x9d, 0xd0, 0x7d, 0x62, + 0x27, 0x1b, 0xba, 0x93, 0x78, 0x15, 0xd7, 0xb6, 0x87, 0x62, 0xdf, 0xf2, + 0xcc, 0x8f, 0xc6, 0xab, 0x5c, 0x78, 0x7a, 0xd0, 0xc2, 0xe6, 0x30, 0xfb, + 0xf1, 0xc7, 0x34, 0x9e, 0x59, 0x55, 0x75, 0x41, 0xed, 0xe2, 0x72, 0xed, + 0x32, 0x20, 0xc9, 0x60, 0x2a, 0x06, 0xd4, 0x2d, 0xd7, 0xac, 0xaa, 0x3f, + 0x1a, 0xe4, 0x75, 0x99, 0x2e, 0x6d, 0xae, 0xa7, 0x8a, 0xe5, 0xd9, 0x5d, + 0x5b, 0x0a, 0xb9, 0xed, 0x58, 0x81, 0xa6, 0x95, 0xf8, 0x24, 0xd5, 0xc7, + 0x2a, 0xba, 0xd5, 0x83, 0xac, 0x7a, 0x5a, 0xde, 0xc0, 0xff, 0x00, 0x76, + 0x55, 0x3f, 0x8d, 0x32, 0x6b, 0xb5, 0x03, 0x6a, 0x1c, 0x9a, 0xf3, 0x36, + 0x96, 0x54, 0x7e, 0x18, 0xa9, 0x1e, 0x95, 0x76, 0xc2, 0xfe, 0xed, 0x66, + 0x0a, 0x1d, 0x9c, 0x1e, 0xc7, 0x9a, 0x99, 0x65, 0x9c, 0xba, 0xa6, 0x69, + 0x4a, 0xb2, 0xe6, 0xd5, 0x1d, 0xa9, 0x7c, 0xd2, 0x66, 0xaa, 0xc4, 0xec, + 0xc8, 0x09, 0xeb, 0x52, 0x82, 0x6b, 0x91, 0xc6, 0xc7, 0xa4, 0x99, 0x2f, + 0xe3, 0x4b, 0x51, 0x83, 0x4b, 0x9a, 0x9b, 0x0e, 0xe3, 0xe8, 0xa4, 0xcf, + 0x14, 0x66, 0x81, 0x8b, 0x45, 0x02, 0x8a, 0x00, 0x31, 0x45, 0x14, 0x50, + 0x01, 0x45, 0x14, 0x50, 0x01, 0x45, 0x21, 0x34, 0x99, 0xa7, 0x60, 0x1d, + 0xde, 0x90, 0xd2, 0x66, 0x8c, 0xd3, 0xe5, 0x60, 0x2f, 0x14, 0x99, 0xa4, + 0xcd, 0x2d, 0x57, 0x23, 0x10, 0x51, 0x45, 0x2e, 0x0d, 0x3f, 0x66, 0xc2, + 0xe2, 0x52, 0x8a, 0x4c, 0x7b, 0x52, 0xe0, 0xd1, 0xec, 0x98, 0x5c, 0x28, + 0x3d, 0x29, 0x42, 0xb1, 0x3c, 0x29, 0x3f, 0x41, 0x4a, 0x62, 0x97, 0x1f, + 0xea, 0xdb, 0xfe, 0xf9, 0xa6, 0xa8, 0x4f, 0xb0, 0xb9, 0x91, 0xf4, 0xd7, + 0xd9, 0xa0, 0xc6, 0x3c, 0xa4, 0xc7, 0xd2, 0x9a, 0x6c, 0xad, 0x8f, 0xfc, + 0xb0, 0x8c, 0xff, 0x00, 0xc0, 0x45, 0x4b, 0xda, 0x8a, 0xfa, 0x8d, 0x4f, + 0x9b, 0xbb, 0x2a, 0x49, 0xa4, 0xe9, 0xd2, 0x8f, 0xde, 0x59, 0x5b, 0xbf, + 0xd6, 0x30, 0x6a, 0xab, 0xf8, 0x6b, 0x44, 0x93, 0xef, 0xe9, 0x56, 0x67, + 0xfe, 0xd8, 0xaf, 0xf8, 0x56, 0xa5, 0x1d, 0xa9, 0xdd, 0xf7, 0x15, 0xcc, + 0x53, 0xe0, 0xff, 0x00, 0x0e, 0x90, 0x7f, 0xe2, 0x4f, 0x67, 0xcf, 0xfd, + 0x31, 0x5f, 0xf0, 0xaa, 0x57, 0x1f, 0x0f, 0x7c, 0x2f, 0x73, 0xf7, 0xf4, + 0x98, 0x57, 0xfd, 0xc1, 0xb7, 0xf9, 0x57, 0x4e, 0x4d, 0x21, 0x34, 0x73, + 0x48, 0x0e, 0x12, 0x7f, 0x84, 0xbe, 0x16, 0x94, 0x9d, 0xb6, 0xd2, 0xc7, + 0xfe, 0xec, 0xa6, 0xb2, 0xee, 0xfe, 0x0b, 0x68, 0xb2, 0x67, 0xec, 0xf7, + 0x77, 0x31, 0x7b, 0x1c, 0x35, 0x7a, 0x75, 0x14, 0xf9, 0x98, 0x1e, 0x29, + 0x75, 0xf0, 0x46, 0x70, 0xc7, 0xec, 0xda, 0x9a, 0x15, 0xff, 0x00, 0x6d, + 0x39, 0xac, 0x0b, 0xff, 0x00, 0x84, 0xbe, 0x20, 0xb4, 0xc9, 0x85, 0x62, + 0xb8, 0x51, 0xdd, 0x5b, 0x06, 0xbe, 0x88, 0x20, 0x1a, 0x63, 0x20, 0xc1, + 0xa7, 0x71, 0x68, 0x7c, 0xa5, 0x7d, 0xe1, 0x7d, 0x67, 0x4f, 0x27, 0xed, + 0x3a, 0x7c, 0xe8, 0x07, 0x7d, 0xa4, 0x8a, 0xc9, 0x68, 0x99, 0x0e, 0x19, + 0x48, 0x3e, 0x84, 0x57, 0xd7, 0x52, 0xdb, 0xa3, 0xa9, 0x0c, 0x8a, 0xc3, + 0xdc, 0x56, 0x0d, 0xf7, 0x85, 0xf4, 0x8b, 0xb2, 0x5a, 0x6d, 0x3e, 0x06, + 0x27, 0xbe, 0xc1, 0x45, 0xd0, 0x59, 0x1f, 0x30, 0x6d, 0xa4, 0xc5, 0x7b, + 0xae, 0xa7, 0xf0, 0xc7, 0x44, 0xb9, 0xdc, 0x61, 0x47, 0xb7, 0x63, 0xfd, + 0xc3, 0xc7, 0xe5, 0x5c, 0x86, 0xa3, 0xf0, 0xae, 0xf2, 0x12, 0xcd, 0x67, + 0x74, 0x92, 0x0e, 0xca, 0xe3, 0x06, 0x9d, 0xd0, 0x9c, 0x59, 0xe7, 0x38, + 0xa3, 0x15, 0xb1, 0xa8, 0x78, 0x6b, 0x55, 0xd3, 0x09, 0x17, 0x16, 0x92, + 0x05, 0x1f, 0xc4, 0x06, 0x45, 0x67, 0xc5, 0x6d, 0x2c, 0xf2, 0x88, 0xe2, + 0x8d, 0x99, 0xc9, 0xc0, 0x50, 0x39, 0xaa, 0x21, 0xa6, 0x41, 0x8a, 0x9e, + 0xde, 0xd2, 0x7b, 0xa9, 0x04, 0x70, 0x44, 0xd2, 0x39, 0xec, 0xa3, 0x35, + 0xd9, 0x68, 0xbe, 0x00, 0x9e, 0x70, 0xb3, 0x6a, 0x0d, 0xe5, 0x27, 0x5f, + 0x2c, 0x75, 0x35, 0xdc, 0xd8, 0xe9, 0x36, 0x5a, 0x64, 0x61, 0x2d, 0xa0, + 0x54, 0xf5, 0x38, 0xe4, 0xd6, 0x72, 0xa8, 0x96, 0xc5, 0x28, 0x5f, 0x73, + 0xcf, 0xf4, 0xbf, 0x01, 0x5e, 0x5c, 0xe1, 0xef, 0x18, 0x40, 0x9e, 0x9d, + 0x4d, 0x76, 0x3a, 0x7f, 0x84, 0xf4, 0xad, 0x3c, 0x02, 0xb0, 0x09, 0x1c, + 0x7f, 0x13, 0xf3, 0x5b, 0x79, 0xa4, 0xcd, 0x64, 0xe4, 0xd9, 0xa2, 0x8a, + 0x40, 0x88, 0x91, 0x8c, 0x22, 0x85, 0x1e, 0x80, 0x53, 0xb3, 0x4c, 0xcd, + 0x19, 0xa4, 0x50, 0xfc, 0xd1, 0x9a, 0x66, 0x69, 0x33, 0x40, 0x12, 0x6e, + 0xa5, 0xcd, 0x47, 0x9a, 0x33, 0x40, 0x89, 0x33, 0x4b, 0x9a, 0x8f, 0x75, + 0x1b, 0xa8, 0x02, 0x5c, 0xd1, 0x9a, 0x8f, 0x75, 0x2e, 0xea, 0x06, 0x49, + 0x9a, 0x50, 0x6a, 0x3d, 0xd4, 0xa1, 0xa8, 0x02, 0x50, 0x69, 0x73, 0x51, + 0x83, 0x4a, 0x0d, 0x00, 0x48, 0x0d, 0x28, 0xa6, 0x03, 0x4e, 0x06, 0x98, + 0x89, 0x05, 0x38, 0x54, 0x60, 0xd3, 0xc1, 0xa0, 0x07, 0x8a, 0x78, 0xa6, + 0x0a, 0x78, 0xa0, 0x07, 0x8a, 0x70, 0x14, 0xd1, 0x52, 0x28, 0xa0, 0x05, + 0x02, 0xa4, 0x02, 0x90, 0x0a, 0x90, 0x0a, 0x00, 0x55, 0x14, 0xf0, 0xb4, + 0x28, 0xa9, 0x14, 0x50, 0x20, 0x0b, 0x4f, 0x02, 0x80, 0x2a, 0x40, 0xb4, + 0x00, 0x80, 0x54, 0x81, 0x69, 0x55, 0x6a, 0x45, 0x5a, 0x00, 0x68, 0x5a, + 0x78, 0x4a, 0x90, 0x2d, 0x3c, 0x25, 0x20, 0x23, 0x09, 0x52, 0x04, 0xa9, + 0x02, 0xd3, 0x82, 0xd1, 0x70, 0x23, 0x0b, 0x4e, 0xdb, 0xed, 0x52, 0x6d, + 0xa5, 0xc5, 0x20, 0x23, 0xdb, 0x4a, 0x16, 0xa5, 0x0b, 0x4b, 0xb6, 0x81, + 0x8c, 0x09, 0x4a, 0x10, 0x53, 0xf6, 0xd2, 0x85, 0xa4, 0x21, 0x9b, 0x46, + 0x28, 0xda, 0x2a, 0x4d, 0xb4, 0x6d, 0xa0, 0x08, 0xb6, 0xd1, 0x8a, 0x97, + 0x6d, 0x1b, 0x68, 0x02, 0x1d, 0xb4, 0x6d, 0xa9, 0x76, 0xd2, 0x6d, 0xa0, + 0x08, 0xb6, 0xd2, 0x14, 0xa9, 0x76, 0xd2, 0x11, 0x40, 0x10, 0xec, 0xa6, + 0x94, 0xa9, 0xf1, 0x48, 0x45, 0x00, 0x56, 0x29, 0x4c, 0x29, 0x56, 0x8a, + 0xd3, 0x4a, 0x0a, 0x00, 0xa8, 0x52, 0x98, 0x52, 0xad, 0x94, 0xa8, 0xca, + 0x53, 0xb8, 0x15, 0x4a, 0xd3, 0x0a, 0xd5, 0xa6, 0x4a, 0x8c, 0xa5, 0x17, + 0x19, 0x58, 0xad, 0x30, 0xad, 0x58, 0x2b, 0x4c, 0x2b, 0x40, 0x15, 0x8a, + 0xd3, 0x08, 0xab, 0x0c, 0xb5, 0x19, 0x14, 0x01, 0x01, 0x14, 0xc3, 0x52, + 0xb0, 0xa8, 0xcd, 0x30, 0x18, 0x45, 0x34, 0x8a, 0x71, 0xa6, 0x9a, 0x43, + 0x18, 0x69, 0x86, 0xa4, 0x34, 0xc3, 0x40, 0x0c, 0x34, 0xc3, 0x4f, 0x3c, + 0x53, 0x0d, 0x00, 0x30, 0xd3, 0x0d, 0x3c, 0xd3, 0x0d, 0x20, 0x1a, 0x69, + 0xa6, 0x9c, 0x69, 0x84, 0xd2, 0xb0, 0xc0, 0xd2, 0x52, 0x1a, 0x42, 0x68, + 0x01, 0x73, 0x46, 0x69, 0xb9, 0xa4, 0xcd, 0x30, 0x1f, 0x9a, 0x33, 0x4c, + 0xcd, 0x19, 0xa6, 0x03, 0xf3, 0x48, 0x4f, 0x14, 0xcd, 0xd4, 0x6e, 0xa0, + 0x0f, 0x24, 0xf8, 0x84, 0xf2, 0x49, 0xaa, 0x0d, 0xfa, 0x7f, 0x96, 0xab, + 0xc0, 0x97, 0xfb, 0xf5, 0x4f, 0xc3, 0xba, 0x6a, 0x5d, 0x4a, 0x85, 0x37, + 0xc8, 0xbd, 0xd1, 0x57, 0x81, 0xf8, 0xd7, 0x49, 0xf1, 0x2a, 0x7c, 0x8b, + 0x68, 0x07, 0x52, 0x73, 0x5d, 0x17, 0x83, 0xec, 0x96, 0xcf, 0x41, 0x83, + 0x2a, 0x03, 0x30, 0xdc, 0x78, 0xa7, 0x07, 0x68, 0x8e, 0x5b, 0x19, 0xb6, + 0x9f, 0x0f, 0xf4, 0x99, 0xff, 0x00, 0x7d, 0x75, 0x04, 0x81, 0xc9, 0xce, + 0xdd, 0xd5, 0xbf, 0x67, 0xe1, 0x8d, 0x1e, 0xc9, 0x71, 0x0d, 0x8c, 0x43, + 0xdc, 0x8c, 0x9a, 0xd4, 0xcd, 0x2e, 0x69, 0x36, 0x24, 0x66, 0x4d, 0xe1, + 0xdd, 0x32, 0x6f, 0xf9, 0x76, 0x54, 0xf7, 0x4e, 0x2b, 0x3e, 0x7f, 0x07, + 0xdb, 0xb7, 0x30, 0xcc, 0xc9, 0xec, 0x46, 0x6b, 0xa4, 0xcd, 0x38, 0x56, + 0x32, 0xa1, 0x4e, 0x5b, 0xa3, 0x68, 0xd7, 0xa9, 0x1d, 0x99, 0xc3, 0xdc, + 0x78, 0x4e, 0xfa, 0x30, 0x4c, 0x7b, 0x25, 0x1e, 0xc7, 0x15, 0x97, 0x3e, + 0x9d, 0x77, 0x6c, 0x71, 0x2c, 0x0e, 0xa0, 0x77, 0x23, 0x8a, 0xf4, 0xf5, + 0x15, 0x20, 0x8d, 0x5c, 0x61, 0x94, 0x11, 0xee, 0x2b, 0x9e, 0x79, 0x7d, + 0x37, 0xf0, 0xe8, 0x74, 0x47, 0x1d, 0x35, 0xf1, 0x2b, 0x9e, 0x49, 0x82, + 0x28, 0xaf, 0x4f, 0xb9, 0xf0, 0xee, 0x9d, 0x78, 0x0e, 0xf8, 0x15, 0x58, + 0xff, 0x00, 0x12, 0x70, 0x6b, 0x06, 0xfb, 0xc0, 0xd2, 0xae, 0x5e, 0xca, + 0x50, 0xe3, 0xfb, 0xad, 0xc1, 0xae, 0x3a, 0x99, 0x7d, 0x58, 0xfc, 0x3a, + 0x9d, 0x50, 0xc6, 0x53, 0x96, 0x8f, 0x43, 0x8f, 0xa2, 0xad, 0xdd, 0xe9, + 0x97, 0x96, 0x0e, 0x56, 0xe2, 0x07, 0x4f, 0x72, 0x38, 0xaa, 0x86, 0xb8, + 0xa5, 0x09, 0x45, 0xd9, 0xa3, 0xa9, 0x34, 0xd5, 0xd0, 0x51, 0x49, 0x9a, + 0x33, 0x42, 0x8b, 0x63, 0x0a, 0x29, 0xf0, 0xdb, 0xcd, 0x70, 0xe1, 0x21, + 0x89, 0xe4, 0x63, 0xd9, 0x46, 0x6b, 0xa3, 0xd3, 0x3c, 0x05, 0xae, 0xea, + 0x2e, 0x37, 0x5b, 0xfd, 0x9e, 0x33, 0xfc, 0x72, 0xf1, 0xfa, 0x57, 0x45, + 0x3c, 0x2d, 0x49, 0xec, 0x8c, 0xe5, 0x56, 0x31, 0xf8, 0x99, 0xcc, 0x52, + 0x7e, 0x15, 0xea, 0xb6, 0x3f, 0x0a, 0x2d, 0x97, 0x06, 0xfa, 0xfe, 0x47, + 0x3d, 0xd6, 0x31, 0xb4, 0x57, 0x47, 0x67, 0xe0, 0x3f, 0x0f, 0x59, 0xe0, + 0x8b, 0x21, 0x2b, 0x0e, 0xf2, 0x31, 0x3f, 0xfd, 0x6a, 0xee, 0x86, 0x5d, + 0x2f, 0xb4, 0xce, 0x59, 0x63, 0xa9, 0x2d, 0xb5, 0x3c, 0x3e, 0xde, 0xca, + 0xea, 0xed, 0xb6, 0xdb, 0xdb, 0xc9, 0x2b, 0x7a, 0x2a, 0x93, 0x5b, 0x76, + 0x9e, 0x05, 0xf1, 0x05, 0xe6, 0x36, 0xd8, 0x3c, 0x63, 0xd6, 0x5f, 0x97, + 0xf9, 0xd7, 0xb9, 0xdb, 0x59, 0x5a, 0xd9, 0xa6, 0xcb, 0x6b, 0x78, 0xa2, + 0x5f, 0x44, 0x50, 0x2a, 0x7a, 0xea, 0x86, 0x02, 0x9a, 0xdf, 0x53, 0x9a, + 0x59, 0x84, 0xbe, 0xca, 0x3c, 0x8a, 0xcb, 0xe1, 0x4e, 0xa5, 0x21, 0x06, + 0xea, 0xea, 0x18, 0x57, 0xb8, 0x5f, 0x98, 0xd6, 0xfd, 0xb7, 0xc2, 0xad, + 0x32, 0x3c, 0x79, 0xf7, 0x73, 0xc8, 0x7d, 0xb0, 0x2b, 0xbf, 0xa0, 0x56, + 0xeb, 0x0f, 0x4a, 0x3b, 0x44, 0xc2, 0x58, 0xca, 0xb2, 0xea, 0x72, 0xd6, + 0xff, 0x00, 0x0e, 0xfc, 0x3b, 0x06, 0x33, 0x6a, 0xd2, 0x91, 0xfd, 0xf7, + 0x35, 0xa1, 0x1f, 0x84, 0x34, 0x08, 0xfe, 0xee, 0x97, 0x6f, 0xf8, 0xae, + 0x6b, 0x68, 0x51, 0x5a, 0x28, 0xa5, 0xb2, 0x32, 0x75, 0xaa, 0x3d, 0xdb, + 0x33, 0x57, 0xc3, 0x7a, 0x22, 0x8e, 0x34, 0xbb, 0x4f, 0xfb, 0xf2, 0xbf, + 0xe1, 0x4f, 0x5f, 0x0f, 0x68, 0xc0, 0xe4, 0x69, 0x96, 0x83, 0xfe, 0xd8, + 0xaf, 0xf8, 0x56, 0x85, 0x2d, 0x32, 0x79, 0xe4, 0xfa, 0x95, 0xa2, 0xd2, + 0xb4, 0xf8, 0x58, 0x34, 0x56, 0x56, 0xe8, 0x47, 0x42, 0xb1, 0x81, 0x53, + 0x9b, 0x68, 0x0f, 0x58, 0x93, 0xf2, 0xa7, 0xe6, 0x8a, 0x5a, 0x85, 0xd8, + 0xdc, 0xd1, 0x9a, 0x6e, 0x69, 0x0d, 0x32, 0x47, 0x66, 0x8c, 0xd3, 0x68, + 0xa6, 0x02, 0xd0, 0x4d, 0x26, 0x69, 0x33, 0x40, 0x85, 0xa4, 0xa3, 0x34, + 0x94, 0xc0, 0x5a, 0x43, 0xcd, 0x25, 0x14, 0x00, 0xd6, 0x02, 0xa1, 0x91, + 0x38, 0xa9, 0xe9, 0xa6, 0x80, 0x33, 0x66, 0x8a, 0xa8, 0x4a, 0x98, 0xad, + 0x99, 0x53, 0x22, 0xb3, 0x67, 0x4c, 0x66, 0x93, 0x43, 0x32, 0xa7, 0x89, + 0x1c, 0x15, 0x75, 0x0c, 0x3d, 0x08, 0xac, 0xb4, 0xd2, 0x2c, 0x2d, 0xae, + 0x1a, 0x78, 0xad, 0x63, 0x49, 0x0f, 0x56, 0x0b, 0x5b, 0x52, 0x8e, 0xb5, + 0x4e, 0x41, 0x52, 0x32, 0xb3, 0xd4, 0x0d, 0x53, 0xbd, 0x57, 0x73, 0x52, + 0xc6, 0x30, 0x9a, 0x4d, 0xd4, 0xd6, 0x34, 0xcd, 0xd4, 0x86, 0x49, 0x9a, + 0x4d, 0xd4, 0xcc, 0xd2, 0x66, 0x90, 0x12, 0x6e, 0xa3, 0x75, 0x47, 0x9a, + 0x33, 0x40, 0x12, 0x6e, 0xa3, 0x75, 0x47, 0x9a, 0x33, 0x40, 0x12, 0x6e, + 0xa5, 0xdd, 0x51, 0x66, 0x97, 0x75, 0x30, 0x25, 0xdd, 0x4b, 0xba, 0xa2, + 0xdd, 0x46, 0xea, 0x00, 0x98, 0x1a, 0x50, 0x6a, 0x20, 0xd4, 0xe0, 0x68, + 0x02, 0x50, 0x69, 0xc0, 0xd4, 0x40, 0xd3, 0x81, 0xa0, 0x09, 0x41, 0xa7, + 0x03, 0x51, 0x03, 0x4f, 0x06, 0x98, 0x89, 0x41, 0xa7, 0x8a, 0x8c, 0x1a, + 0x78, 0x34, 0x01, 0x28, 0xa9, 0x16, 0xa3, 0x5a, 0x91, 0x68, 0x02, 0x45, + 0xa9, 0x56, 0xa3, 0x5a, 0x90, 0x50, 0x04, 0x80, 0x54, 0x8a, 0x2a, 0x35, + 0xa9, 0x56, 0x81, 0x0f, 0x51, 0x52, 0xa8, 0xa6, 0x28, 0xa9, 0x94, 0x50, + 0x31, 0x55, 0x6a, 0x45, 0x5a, 0x14, 0x54, 0xaa, 0xb4, 0x00, 0x2a, 0xd4, + 0xaa, 0xb4, 0xaa, 0xb5, 0x22, 0xa0, 0xa4, 0x21, 0x02, 0xd3, 0xc2, 0xd3, + 0x80, 0xa7, 0x01, 0x48, 0x06, 0x81, 0x4f, 0xc5, 0x28, 0x14, 0xe0, 0x28, + 0x01, 0xa0, 0x53, 0x82, 0xd3, 0x80, 0xa5, 0xa4, 0x02, 0x01, 0x4e, 0xc5, + 0x2d, 0x14, 0x00, 0x62, 0x8c, 0x53, 0xa8, 0xa0, 0x04, 0xc5, 0x2e, 0x29, + 0x68, 0xa0, 0x06, 0xe2, 0x8c, 0x52, 0xd1, 0x40, 0x86, 0xe2, 0x90, 0x8a, + 0x7d, 0x25, 0x03, 0x18, 0x45, 0x37, 0x14, 0xfa, 0x29, 0x01, 0x19, 0x14, + 0x84, 0x53, 0xcd, 0x25, 0x03, 0x19, 0x8a, 0x6e, 0x2a, 0x4a, 0x4c, 0x53, + 0x02, 0x22, 0x29, 0xa5, 0x6a, 0x5c, 0x52, 0x11, 0x40, 0x15, 0xca, 0xd3, + 0x19, 0x6a, 0xc1, 0x5a, 0x8d, 0x96, 0x80, 0x2b, 0x32, 0xd4, 0x2c, 0xb5, + 0x69, 0x85, 0x42, 0xc2, 0x98, 0x15, 0xd8, 0x54, 0x6c, 0x2a, 0x76, 0x15, + 0x13, 0x0a, 0x00, 0x81, 0x85, 0x46, 0xc2, 0xa6, 0x61, 0x51, 0xb0, 0xa0, + 0x08, 0x08, 0xa6, 0x1a, 0x95, 0x85, 0x46, 0x69, 0x81, 0x19, 0xa6, 0x93, + 0x4e, 0x6a, 0x8c, 0x9a, 0x43, 0x03, 0x51, 0xb5, 0x3b, 0x34, 0xd2, 0x68, + 0x02, 0x33, 0x4c, 0x34, 0xf6, 0xa8, 0xcd, 0x00, 0x34, 0x9a, 0x69, 0x34, + 0xa6, 0x98, 0x69, 0x0c, 0x42, 0x69, 0x09, 0xa0, 0x9a, 0x69, 0x34, 0x08, + 0x33, 0x49, 0x9a, 0x42, 0x69, 0xa4, 0xd3, 0x18, 0xec, 0xd2, 0x66, 0x9b, + 0x9a, 0x4d, 0xd4, 0x00, 0xfd, 0xd4, 0x6e, 0xa8, 0xf3, 0x46, 0xea, 0x00, + 0xf3, 0x5f, 0x1b, 0x31, 0xbb, 0xf1, 0x3d, 0xb5, 0xb0, 0xe7, 0x18, 0x1f, + 0x99, 0xaf, 0x47, 0xb2, 0x8c, 0x43, 0x69, 0x14, 0x63, 0xf8, 0x54, 0x0a, + 0xf3, 0x9b, 0x91, 0xf6, 0xef, 0x88, 0xaa, 0xbd, 0x42, 0x37, 0xf2, 0xaf, + 0x4a, 0x53, 0x80, 0x05, 0x0b, 0xe1, 0x43, 0x64, 0xb9, 0xa5, 0xcd, 0x47, + 0x9a, 0x5c, 0xd0, 0x04, 0x80, 0xd3, 0xd6, 0xa2, 0x06, 0xa5, 0x5a, 0x00, + 0x99, 0x6a, 0x64, 0xa8, 0x16, 0xa7, 0x4a, 0x62, 0x27, 0x4a, 0xb1, 0x18, + 0xcd, 0x40, 0x82, 0xad, 0xc2, 0xb9, 0x22, 0xa9, 0x08, 0x79, 0xb2, 0x86, + 0xea, 0x33, 0x1c, 0xd1, 0x2c, 0x8a, 0x7b, 0x30, 0xcd, 0x73, 0xda, 0xaf, + 0xc3, 0x8b, 0x6b, 0xb5, 0x69, 0x2c, 0x24, 0xf2, 0x24, 0xeb, 0xb0, 0xf2, + 0xa6, 0xbb, 0x2b, 0x78, 0xf0, 0x33, 0x57, 0x14, 0x60, 0x52, 0x9d, 0x28, + 0x54, 0x56, 0x92, 0xb9, 0x70, 0xad, 0x3a, 0x6e, 0xf1, 0x67, 0x8e, 0x41, + 0xf0, 0xe3, 0x5c, 0x96, 0xe8, 0xc4, 0xeb, 0x1c, 0x51, 0x83, 0xfe, 0xb0, + 0xb6, 0x41, 0xfa, 0x57, 0x5d, 0xa4, 0xfc, 0x32, 0xd3, 0x2d, 0x70, 0xf7, + 0xd2, 0x3d, 0xd3, 0xff, 0x00, 0x77, 0xee, 0xad, 0x77, 0x00, 0xd2, 0xe6, + 0xa6, 0x9e, 0x16, 0x95, 0x3d, 0x91, 0xa4, 0xf1, 0x95, 0x67, 0xd6, 0xc5, + 0x5b, 0x3d, 0x2e, 0xc6, 0xc1, 0x02, 0x5a, 0xda, 0xc5, 0x10, 0x1f, 0xdd, + 0x51, 0x9a, 0xb9, 0x4d, 0xcd, 0x2d, 0x6e, 0x73, 0x36, 0xde, 0xe2, 0xd2, + 0xd3, 0x69, 0x68, 0x10, 0xea, 0x5a, 0x66, 0x68, 0xa0, 0x07, 0xe6, 0x8c, + 0xd3, 0x45, 0x14, 0x84, 0x3f, 0x34, 0xb9, 0xa6, 0x66, 0x97, 0x34, 0x00, + 0xec, 0xd2, 0xe6, 0x99, 0x9a, 0x5c, 0xd2, 0x18, 0xec, 0xd2, 0xe7, 0x8a, + 0x6d, 0x19, 0xe2, 0x80, 0x19, 0x9a, 0x33, 0x49, 0xda, 0x92, 0xaa, 0xc2, + 0x17, 0x34, 0x66, 0x9b, 0x9a, 0x33, 0x45, 0x80, 0x76, 0x69, 0x09, 0xa6, + 0xe6, 0x8c, 0xd0, 0x03, 0xb3, 0x49, 0x9a, 0x6e, 0x68, 0xcd, 0x30, 0x1f, + 0x9a, 0x4c, 0xd3, 0x73, 0x46, 0x68, 0x01, 0x69, 0x28, 0xcd, 0x21, 0xa0, + 0x43, 0x58, 0x55, 0x1b, 0xa4, 0xe3, 0x35, 0x78, 0xf4, 0xaa, 0xd3, 0x8c, + 0xa9, 0xa0, 0x68, 0xc4, 0x9f, 0x82, 0x6a, 0x8c, 0x86, 0xaf, 0x5c, 0xf0, + 0x4d, 0x67, 0x4a, 0x6b, 0x36, 0x51, 0x5e, 0x43, 0x55, 0xdc, 0xd4, 0xb2, + 0x1a, 0xac, 0xe6, 0xa4, 0x63, 0x18, 0xd4, 0x64, 0xd2, 0xb1, 0xa8, 0xc9, + 0xa9, 0x18, 0xfc, 0xd2, 0x6e, 0xa6, 0x6e, 0xa4, 0xdd, 0x40, 0x12, 0x66, + 0x8d, 0xd5, 0x1e, 0xea, 0x37, 0x50, 0x32, 0x5d, 0xd4, 0x66, 0xa2, 0xdd, + 0x4b, 0x9a, 0x00, 0x7e, 0xea, 0x5d, 0xd5, 0x16, 0xea, 0x5d, 0xd4, 0x08, + 0x97, 0x34, 0xb9, 0xa8, 0x83, 0x52, 0xe6, 0x80, 0x25, 0x06, 0x9c, 0x0d, + 0x44, 0x1a, 0x9c, 0x1a, 0x80, 0x26, 0x06, 0x9c, 0x0d, 0x42, 0x1a, 0x9e, + 0x0d, 0x30, 0x26, 0x06, 0x9e, 0x0d, 0x42, 0x0d, 0x48, 0xa6, 0x98, 0x89, + 0x81, 0xa9, 0x16, 0xa2, 0x53, 0x52, 0x2d, 0x00, 0x4c, 0xb5, 0x32, 0xd4, + 0x2a, 0x6a, 0x45, 0xa0, 0x09, 0x96, 0xa4, 0x5a, 0x89, 0x6a, 0x65, 0xa6, + 0x04, 0x8b, 0x53, 0x28, 0xa8, 0x96, 0xa6, 0x51, 0x48, 0x09, 0x16, 0xa5, + 0x5a, 0x62, 0x0a, 0x95, 0x45, 0x20, 0x24, 0x41, 0x53, 0xa8, 0xa8, 0x94, + 0x54, 0xe9, 0x40, 0x12, 0x28, 0xa9, 0x00, 0xa6, 0x8a, 0x70, 0xa4, 0x03, + 0x80, 0xa7, 0x0a, 0x68, 0xa5, 0xcd, 0x00, 0x38, 0x53, 0x85, 0x33, 0x34, + 0xb9, 0xa4, 0x21, 0xf9, 0xa5, 0x06, 0xa3, 0xcd, 0x2e, 0x69, 0xd8, 0x09, + 0x33, 0x4b, 0x51, 0xee, 0xa7, 0x6e, 0xa4, 0x03, 0xe9, 0x69, 0x81, 0xa8, + 0x2d, 0x40, 0x87, 0xe6, 0x93, 0x22, 0xa2, 0x2f, 0x4d, 0xdd, 0x40, 0xec, + 0x4f, 0x91, 0x46, 0x6a, 0x0d, 0xf4, 0xa1, 0xe8, 0x0b, 0x13, 0x1a, 0x4a, + 0x6e, 0xea, 0x42, 0xd4, 0x00, 0xe2, 0x69, 0xb9, 0xa6, 0x93, 0x49, 0x9a, + 0x00, 0x71, 0x34, 0x99, 0xa6, 0xee, 0xa3, 0x34, 0x0c, 0x5a, 0x33, 0x4d, + 0xcd, 0x19, 0xa0, 0x05, 0xa4, 0xa4, 0xcd, 0x21, 0x34, 0x00, 0x1a, 0x8d, + 0xa9, 0xc4, 0xd4, 0x64, 0xd0, 0x03, 0x18, 0x54, 0x4c, 0x2a, 0x52, 0x6a, + 0x33, 0x40, 0x10, 0xb0, 0xa8, 0x98, 0x54, 0xcd, 0x51, 0x35, 0x00, 0x42, + 0xc2, 0xa2, 0x61, 0x53, 0xb0, 0xa8, 0x5a, 0x98, 0x10, 0x35, 0x44, 0xd5, + 0x33, 0x54, 0x4d, 0x40, 0x11, 0x35, 0x44, 0xd5, 0x2b, 0x54, 0x6d, 0x40, + 0x11, 0x93, 0x8a, 0x69, 0x34, 0xad, 0x51, 0x93, 0x40, 0x03, 0x53, 0x0d, + 0x38, 0x9a, 0x63, 0x50, 0x31, 0x84, 0xd3, 0x09, 0xa7, 0x13, 0x51, 0x93, + 0x48, 0x04, 0x26, 0x98, 0x4d, 0x29, 0x6a, 0x8c, 0xb5, 0x30, 0x17, 0x34, + 0xd2, 0x69, 0x0b, 0x53, 0x4b, 0x50, 0x31, 0xd9, 0xa4, 0xcd, 0x30, 0xb5, + 0x21, 0x34, 0x00, 0xfc, 0xd2, 0x13, 0xf2, 0x93, 0x4c, 0xcd, 0x36, 0x56, + 0xc4, 0x4c, 0x7d, 0x01, 0xa4, 0xc0, 0xe1, 0x3c, 0x3e, 0x9f, 0x69, 0xf1, + 0xd5, 0xf4, 0xdd, 0x42, 0x67, 0xf9, 0xd7, 0xa1, 0x83, 0x5c, 0x1f, 0x81, + 0xd3, 0xcc, 0xd4, 0xf5, 0x3b, 0x93, 0xde, 0x4c, 0x03, 0x5d, 0xce, 0x6a, + 0x9e, 0xc9, 0x0d, 0xee, 0x49, 0x9a, 0x50, 0x6a, 0x2c, 0xd3, 0x81, 0xa4, + 0x04, 0xea, 0x6a, 0x55, 0x35, 0x5d, 0x4d, 0x4a, 0xa6, 0x81, 0x16, 0x10, + 0xd4, 0xe9, 0x55, 0x90, 0xd5, 0x88, 0xcd, 0x52, 0x02, 0xdc, 0x43, 0x35, + 0xa5, 0x6d, 0x1e, 0x48, 0xaa, 0x10, 0x0c, 0x91, 0x5b, 0x36, 0xc9, 0x85, + 0xcd, 0x52, 0x42, 0x65, 0xa8, 0xd7, 0x00, 0x54, 0xb9, 0xa8, 0xc5, 0x3a, + 0xac, 0x91, 0xf9, 0xa2, 0x9b, 0x4b, 0x9a, 0x62, 0x1d, 0x9a, 0x5c, 0xe2, + 0x99, 0x4a, 0x29, 0x00, 0xec, 0xd1, 0x49, 0x9a, 0x33, 0x40, 0x0e, 0xa2, + 0x9b, 0x9a, 0x33, 0x40, 0x0f, 0xa3, 0x34, 0xcc, 0xd2, 0x83, 0x40, 0x87, + 0x66, 0x97, 0x34, 0xcc, 0xd2, 0xd1, 0x60, 0x1d, 0x9a, 0x5c, 0xd3, 0x29, + 0x68, 0xb0, 0x0f, 0xcd, 0x21, 0x3c, 0x52, 0x50, 0x7a, 0x51, 0x60, 0x12, + 0x8a, 0x28, 0xa6, 0x02, 0x52, 0x52, 0xd2, 0x1a, 0x00, 0x4a, 0x28, 0x26, + 0x92, 0x98, 0x05, 0x25, 0x14, 0x99, 0xa4, 0x01, 0x9a, 0x33, 0x4d, 0xa4, + 0xdd, 0x40, 0x87, 0xe7, 0x14, 0x66, 0xa3, 0xdd, 0x4d, 0x2d, 0x40, 0xc9, + 0x09, 0xa8, 0x25, 0x3f, 0x29, 0xa7, 0x16, 0xa8, 0x25, 0x6f, 0x96, 0x80, + 0x32, 0xae, 0xcf, 0x26, 0xb2, 0xa5, 0x35, 0xa5, 0x78, 0x79, 0x35, 0x93, + 0x33, 0x72, 0x6a, 0x19, 0x48, 0x82, 0x43, 0x55, 0x9d, 0xaa, 0x49, 0x1a, + 0xab, 0x31, 0xa8, 0x63, 0x1a, 0xcd, 0x51, 0x93, 0x4a, 0xc6, 0xa2, 0x66, + 0xa9, 0x18, 0xed, 0xd4, 0x6e, 0xa8, 0xf7, 0x52, 0x6e, 0xa0, 0x64, 0xbb, + 0xa9, 0x37, 0x54, 0x5b, 0xa8, 0xdd, 0x40, 0x12, 0xee, 0xa5, 0xdd, 0x50, + 0xee, 0xa3, 0x75, 0x20, 0x26, 0xdd, 0x46, 0xea, 0x88, 0x35, 0x2e, 0xea, + 0x00, 0x94, 0x35, 0x38, 0x35, 0x43, 0xba, 0x94, 0x1a, 0x62, 0x26, 0x0d, + 0x4f, 0x0d, 0x50, 0x03, 0x4f, 0x06, 0x81, 0x93, 0x03, 0x52, 0x03, 0x50, + 0x03, 0x4f, 0x06, 0x80, 0x27, 0x06, 0xa4, 0x53, 0x50, 0x29, 0xa9, 0x14, + 0xd5, 0x08, 0xb2, 0xb5, 0x2a, 0xd4, 0x08, 0x6a, 0x65, 0x34, 0x01, 0x32, + 0xd4, 0xab, 0x50, 0xad, 0x4c, 0xb4, 0xc4, 0x4c, 0xb5, 0x32, 0xd4, 0x29, + 0x53, 0x2d, 0x20, 0x26, 0x41, 0x53, 0x28, 0xa8, 0x96, 0xa6, 0x4a, 0x40, + 0x4a, 0xb5, 0x32, 0xd4, 0x4b, 0x52, 0xa9, 0xa0, 0x09, 0x56, 0xa6, 0x53, + 0x50, 0x2b, 0x54, 0x8a, 0x68, 0x02, 0x70, 0x69, 0xe0, 0xd4, 0x20, 0xd3, + 0x83, 0x50, 0x04, 0xc0, 0xd2, 0xe6, 0xa1, 0xde, 0x3d, 0x68, 0xf3, 0x05, + 0x16, 0x11, 0x36, 0x68, 0xdd, 0x51, 0x6f, 0xf7, 0xa4, 0xde, 0xbe, 0xb4, + 0x01, 0x2e, 0xea, 0x37, 0xd4, 0x5b, 0xbd, 0x01, 0x34, 0x65, 0x89, 0xec, + 0x28, 0x02, 0x5d, 0xc4, 0xd2, 0xe4, 0xfa, 0xd4, 0x3c, 0xff, 0x00, 0x78, + 0xd1, 0x81, 0xdc, 0x9f, 0xce, 0x80, 0x26, 0xdd, 0xef, 0x49, 0xbd, 0x7f, + 0xbc, 0x2a, 0x02, 0x54, 0x76, 0x14, 0xd3, 0x38, 0x14, 0x05, 0x89, 0xcc, + 0xaa, 0x3b, 0xfe, 0x54, 0xdf, 0x39, 0x7f, 0xda, 0xfc, 0xaa, 0xb3, 0x5c, + 0x0a, 0x84, 0xdc, 0xd2, 0x1d, 0x8b, 0xfe, 0x70, 0xf4, 0x6f, 0xca, 0x97, + 0xcd, 0x07, 0xb3, 0x7e, 0x55, 0x9e, 0xb3, 0x93, 0xde, 0xac, 0x24, 0xb4, + 0x05, 0x8b, 0x62, 0x51, 0xe8, 0xdf, 0x95, 0x1e, 0x60, 0x3d, 0x8f, 0xe5, + 0x50, 0x87, 0xc9, 0xa7, 0xe7, 0x3c, 0x0a, 0x2c, 0x03, 0x8c, 0x83, 0xdf, + 0xf2, 0xa0, 0xc8, 0xbf, 0xde, 0x14, 0xdc, 0xf6, 0xa2, 0x8b, 0x00, 0xed, + 0xc0, 0xf7, 0x14, 0xb9, 0xa8, 0xf0, 0x3d, 0x05, 0x1b, 0x47, 0x6e, 0x3e, + 0x94, 0x58, 0x09, 0x33, 0x46, 0x6a, 0x3d, 0xa7, 0x3c, 0x31, 0xa0, 0xee, + 0x1d, 0xc1, 0xa2, 0xc0, 0x3f, 0x3c, 0x53, 0x4b, 0x54, 0x66, 0x46, 0xee, + 0xa7, 0xf0, 0xa6, 0xf9, 0x80, 0x9c, 0x67, 0x1f, 0x5a, 0x04, 0x48, 0x4d, + 0x31, 0x8d, 0x21, 0x6c, 0xf4, 0xa6, 0x93, 0x40, 0xc4, 0x26, 0x98, 0x4d, + 0x29, 0x34, 0xc2, 0x68, 0x01, 0xa4, 0xd4, 0x6c, 0x69, 0xc4, 0xd3, 0x0d, + 0x20, 0x18, 0xd5, 0x13, 0x54, 0x84, 0xd4, 0x6d, 0x40, 0xc8, 0x5a, 0xa2, + 0x61, 0x53, 0x35, 0x42, 0xc6, 0x80, 0x22, 0x61, 0x51, 0x35, 0x4a, 0xc6, + 0xa1, 0x6a, 0x00, 0x8d, 0x8d, 0x42, 0xd5, 0x23, 0x54, 0x4d, 0x40, 0x0d, + 0xce, 0x29, 0x09, 0xcd, 0x35, 0x8d, 0x37, 0x7d, 0x00, 0x23, 0x1a, 0x8d, + 0x8d, 0x39, 0x8d, 0x44, 0xc6, 0x81, 0x88, 0x4d, 0x30, 0x9a, 0x09, 0xa6, + 0x13, 0x40, 0x01, 0x34, 0xd2, 0x68, 0x26, 0x98, 0x5a, 0x80, 0x1c, 0x4d, + 0x37, 0x34, 0xc2, 0xd4, 0x85, 0xa9, 0x81, 0x20, 0x35, 0x0d, 0xe3, 0xec, + 0xb3, 0x99, 0xbd, 0x10, 0xd3, 0x81, 0xaa, 0x9a, 0xbc, 0x9b, 0x34, 0x9b, + 0xa6, 0xf4, 0x8d, 0xbf, 0x95, 0x27, 0xb0, 0xcc, 0x3f, 0x01, 0xa6, 0x34, + 0xeb, 0x89, 0x4f, 0xf1, 0xcc, 0x4d, 0x75, 0xbb, 0xab, 0x9a, 0xf0, 0x6a, + 0x79, 0x7e, 0x1e, 0x84, 0xff, 0x00, 0x78, 0x93, 0xfa, 0xd7, 0x41, 0xba, + 0xa9, 0xee, 0x04, 0xbb, 0xa9, 0xc1, 0xaa, 0x00, 0xd4, 0xe0, 0xd4, 0x80, + 0xb2, 0x1a, 0xa5, 0x46, 0xaa, 0x8a, 0xd5, 0x2a, 0xb5, 0x02, 0x2e, 0xa1, + 0xab, 0x31, 0x1e, 0x6a, 0x8c, 0x6f, 0x57, 0x21, 0x6e, 0x45, 0x52, 0x03, + 0x56, 0xd4, 0x72, 0x2b, 0x66, 0x1e, 0x16, 0xb2, 0x2d, 0x0e, 0x31, 0x5a, + 0x91, 0xbf, 0x15, 0xa2, 0x25, 0x96, 0x81, 0xa7, 0x66, 0xa0, 0x0e, 0x29, + 0x77, 0xe6, 0x99, 0x24, 0xdb, 0xa8, 0xcd, 0x44, 0x1a, 0x9d, 0xba, 0x80, + 0x25, 0xdd, 0x46, 0xea, 0x8b, 0x34, 0xa0, 0xd0, 0x04, 0xb9, 0xa2, 0x98, + 0x29, 0xd4, 0x00, 0xb4, 0xb4, 0xda, 0x75, 0x31, 0x0b, 0x45, 0x14, 0xb4, + 0xc0, 0x29, 0x68, 0xc5, 0x14, 0x00, 0x52, 0x8a, 0x29, 0x45, 0x20, 0x0a, + 0x0d, 0x2d, 0x21, 0xa0, 0x02, 0x94, 0xd2, 0xe3, 0x8a, 0x43, 0x40, 0xc6, + 0xd3, 0x4d, 0x38, 0xd3, 0x4d, 0x02, 0x10, 0xd3, 0x69, 0x69, 0xa6, 0x98, + 0x05, 0x26, 0x69, 0x09, 0xa6, 0x16, 0xa4, 0x21, 0x49, 0xa8, 0xcb, 0x52, + 0x33, 0xe2, 0xa1, 0x69, 0x47, 0xad, 0x03, 0x24, 0x2e, 0x05, 0x34, 0xc9, + 0x55, 0xda, 0x5a, 0x8c, 0xcb, 0xef, 0x45, 0xc0, 0xb4, 0x65, 0xa8, 0x64, + 0x93, 0x22, 0xab, 0x99, 0x7d, 0xea, 0x36, 0x97, 0x8a, 0x00, 0xad, 0x78, + 0x7a, 0xd6, 0x44, 0xc6, 0xb4, 0xae, 0x5b, 0x20, 0xd6, 0x44, 0xed, 0xcd, + 0x43, 0x29, 0x10, 0x48, 0xd5, 0x5d, 0xda, 0x96, 0x47, 0xaa, 0xee, 0xf5, + 0x0c, 0x60, 0xcd, 0x51, 0x96, 0xa4, 0x67, 0xa8, 0xcb, 0x54, 0x8c, 0x71, + 0x6a, 0x42, 0xf5, 0x11, 0x6a, 0x6e, 0xea, 0x06, 0x4d, 0xba, 0x8d, 0xd5, + 0x06, 0xfa, 0x37, 0xd2, 0x02, 0x7d, 0xd4, 0x6f, 0xa8, 0x37, 0xd2, 0x6f, + 0xa0, 0x0b, 0x3b, 0xe9, 0x43, 0xd5, 0x5f, 0x32, 0x98, 0xf7, 0x01, 0x14, + 0xb1, 0xce, 0x05, 0x00, 0x5e, 0xdf, 0x4a, 0x1c, 0x7a, 0xd6, 0x14, 0x9a, + 0xdc, 0x78, 0x28, 0x8a, 0xfb, 0x8f, 0xa2, 0xe6, 0x9f, 0x6e, 0xf3, 0x3f, + 0xcc, 0x77, 0x04, 0x3e, 0xa7, 0x9a, 0x4d, 0xd8, 0x69, 0x5c, 0xdd, 0x12, + 0x2f, 0xad, 0x3c, 0x4c, 0x83, 0xab, 0x0a, 0xc8, 0x0c, 0x07, 0x76, 0x3f, + 0x8d, 0x3c, 0x12, 0x7b, 0x7e, 0x74, 0xae, 0x3b, 0x1b, 0x0b, 0x2a, 0x37, + 0x46, 0x06, 0xa4, 0x56, 0x1e, 0xb5, 0x8a, 0x0f, 0xa7, 0x1f, 0x4a, 0x70, + 0x72, 0x3b, 0x9f, 0xce, 0x9d, 0xc2, 0xc6, 0xe0, 0x61, 0xea, 0x2a, 0x45, + 0x61, 0xea, 0x2b, 0x0d, 0x59, 0xf1, 0xd7, 0x15, 0x22, 0xb3, 0x72, 0x4b, + 0x11, 0x4e, 0xec, 0x2c, 0x8d, 0xe1, 0x22, 0xa8, 0xe5, 0x87, 0xe7, 0x52, + 0xc5, 0x22, 0xbf, 0x46, 0x07, 0xf1, 0xae, 0x75, 0x77, 0xb7, 0x73, 0x8f, + 0x53, 0x52, 0x46, 0x8e, 0x8c, 0x4a, 0x13, 0x93, 0xd4, 0xd1, 0x76, 0x2b, + 0x23, 0xa7, 0x5a, 0x99, 0x41, 0xae, 0x71, 0x27, 0x9d, 0x7f, 0xe5, 0xa7, + 0xe1, 0x53, 0xa5, 0xe5, 0xc2, 0xf4, 0x26, 0x9d, 0xd8, 0x59, 0x1d, 0x12, + 0xd4, 0xcb, 0x58, 0x11, 0xea, 0x57, 0x03, 0xa8, 0xcd, 0x58, 0x8f, 0x56, + 0x93, 0x3c, 0xc7, 0x9a, 0x39, 0x83, 0x94, 0xde, 0x4a, 0x99, 0x4d, 0x63, + 0x47, 0xab, 0x03, 0xf7, 0xa3, 0xab, 0x03, 0x57, 0xb7, 0x00, 0xee, 0x38, + 0x3f, 0x5a, 0x39, 0x85, 0xca, 0xcd, 0x65, 0x35, 0x20, 0x35, 0x4a, 0xd2, + 0xf2, 0x09, 0xc0, 0x58, 0xe5, 0x52, 0x40, 0xf5, 0xab, 0xbb, 0x48, 0xa1, + 0x31, 0x34, 0x48, 0x0d, 0x3c, 0x35, 0x56, 0x32, 0x62, 0x9b, 0xe7, 0x0e, + 0xdc, 0xfd, 0x2a, 0x84, 0x5b, 0xf3, 0x69, 0x0c, 0xbe, 0xf5, 0x58, 0x16, + 0x6f, 0x6a, 0x7a, 0x80, 0x4f, 0x3c, 0x9f, 0x7a, 0x00, 0x94, 0x4b, 0x9e, + 0x80, 0x9a, 0x70, 0x2c, 0x79, 0xc8, 0x03, 0xda, 0xa2, 0x5c, 0xab, 0x71, + 0xd2, 0xa5, 0x54, 0xcd, 0x00, 0x48, 0xa1, 0x41, 0xe7, 0x27, 0xeb, 0x53, + 0xae, 0x31, 0xc0, 0xa8, 0x95, 0x2a, 0x51, 0x45, 0x80, 0x39, 0xa4, 0x39, + 0xcd, 0x48, 0x06, 0x68, 0x22, 0x81, 0x11, 0x10, 0x69, 0xa5, 0x4d, 0x4d, + 0x8a, 0x4c, 0x50, 0x32, 0xbb, 0x29, 0xc5, 0x40, 0xea, 0x6a, 0xf3, 0x0a, + 0x82, 0x44, 0xa9, 0x63, 0x29, 0xb0, 0xa8, 0x89, 0x02, 0xa7, 0x71, 0x8a, + 0xac, 0xec, 0x01, 0xea, 0x29, 0x0c, 0x7a, 0xb8, 0x06, 0xa7, 0x49, 0x2b, + 0x22, 0xe6, 0xf9, 0x6d, 0xca, 0xe4, 0x8e, 0x7d, 0xea, 0x4b, 0x3d, 0x42, + 0x39, 0xe4, 0x2a, 0x08, 0x18, 0xf7, 0xa5, 0x71, 0xd8, 0xdb, 0x47, 0xef, + 0x53, 0x29, 0xe2, 0xa9, 0xc7, 0x22, 0x9f, 0xe2, 0x1f, 0x9d, 0x5a, 0x56, + 0x18, 0xe0, 0x8c, 0xd5, 0x5c, 0x9b, 0x12, 0x8a, 0x5a, 0x45, 0xa5, 0xa6, + 0x20, 0xa5, 0xa3, 0x14, 0x53, 0x01, 0x7a, 0x54, 0x6c, 0xd4, 0xac, 0x6a, + 0x33, 0xcd, 0x16, 0x10, 0x8c, 0xfd, 0x85, 0x37, 0x8c, 0x73, 0x4b, 0x8a, + 0x4d, 0xb4, 0x00, 0xc2, 0x06, 0x70, 0xb9, 0xcf, 0xb5, 0x21, 0x2c, 0x0e, + 0x33, 0x9a, 0x90, 0xf0, 0x38, 0xa8, 0x59, 0xb1, 0x48, 0x62, 0x19, 0x07, + 0x71, 0x8a, 0x69, 0x39, 0xe8, 0x69, 0xa4, 0xfa, 0xf4, 0xf4, 0xa8, 0xce, + 0x49, 0x24, 0x0c, 0x7a, 0x62, 0x8b, 0x00, 0xf2, 0x6a, 0x32, 0x68, 0x25, + 0x97, 0x96, 0x03, 0x15, 0x56, 0x5d, 0x46, 0xd6, 0x2c, 0x87, 0x9d, 0x14, + 0x8e, 0xc4, 0xd4, 0xb7, 0x6d, 0xc6, 0x93, 0x7b, 0x13, 0x93, 0x51, 0x31, + 0xac, 0xe9, 0x3c, 0x43, 0xa5, 0xa1, 0xc3, 0x5d, 0xa5, 0x56, 0x9b, 0xc4, + 0xfa, 0x5a, 0xa9, 0x2b, 0x71, 0xb8, 0xfa, 0x01, 0x50, 0xea, 0xc1, 0x75, + 0x34, 0x54, 0x6a, 0x7f, 0x2b, 0x35, 0x59, 0xaa, 0x26, 0x35, 0x84, 0x3c, + 0x4a, 0x93, 0x0c, 0x44, 0x8b, 0xbb, 0xdc, 0xd4, 0x72, 0x5f, 0xdd, 0xcc, + 0x08, 0xce, 0xdf, 0xa5, 0x0a, 0x49, 0xec, 0x27, 0x06, 0xb7, 0x36, 0x9d, + 0xd5, 0x7a, 0xb0, 0x1f, 0x8d, 0x40, 0xd7, 0x11, 0x7f, 0xcf, 0x45, 0xfc, + 0xeb, 0x02, 0x44, 0x9e, 0x5c, 0xee, 0x73, 0x9f, 0xad, 0x47, 0xe4, 0x1d, + 0xb9, 0xc9, 0xa2, 0xec, 0x2c, 0x8d, 0xa9, 0x2f, 0xad, 0xd7, 0xac, 0x82, + 0xaa, 0xbe, 0xa7, 0x6e, 0x3f, 0x88, 0xfe, 0x55, 0x9f, 0xf6, 0x75, 0x6e, + 0xbc, 0xd3, 0x7c, 0x84, 0xce, 0x31, 0x45, 0xd8, 0x59, 0x16, 0xdb, 0x54, + 0x83, 0xfd, 0xaf, 0xca, 0xa1, 0x93, 0x53, 0x89, 0x46, 0x70, 0xd5, 0x03, + 0x42, 0xb9, 0xc6, 0x39, 0xa4, 0x78, 0x97, 0x68, 0xe0, 0x71, 0x4e, 0xec, + 0x34, 0x26, 0x4d, 0x5a, 0x17, 0x40, 0x48, 0x61, 0xf5, 0x14, 0x7f, 0x68, + 0xc0, 0x7a, 0x13, 0x54, 0x42, 0x2a, 0xb9, 0xc8, 0xe0, 0xd4, 0x73, 0x40, + 0xaa, 0x43, 0x28, 0xa3, 0x50, 0xd0, 0xd0, 0x3a, 0x84, 0x1e, 0xa7, 0xf2, + 0xa6, 0x9b, 0xe8, 0x3f, 0xbf, 0x59, 0xfb, 0x15, 0x97, 0xdc, 0x54, 0x4f, + 0x12, 0xe3, 0x23, 0xa5, 0x2b, 0xb0, 0xd0, 0xd3, 0xfb, 0x5c, 0x4d, 0xd2, + 0x45, 0xa0, 0xcf, 0x19, 0xfe, 0x31, 0xf9, 0xd6, 0x39, 0x88, 0x15, 0x38, + 0x3d, 0x2a, 0x06, 0x8c, 0x9e, 0x8d, 0x83, 0x45, 0xd8, 0x59, 0x1b, 0xa6, + 0x55, 0xec, 0x45, 0x34, 0x48, 0x18, 0xf0, 0x73, 0x5c, 0xfb, 0x34, 0xa8, + 0x70, 0x1c, 0xe7, 0xeb, 0x59, 0x37, 0x5a, 0xb5, 0xfe, 0x99, 0x38, 0x92, + 0x24, 0x33, 0x2b, 0x7d, 0xe5, 0xf4, 0xa7, 0xce, 0x96, 0xe1, 0xcb, 0xd8, + 0xee, 0x37, 0xd6, 0x67, 0x88, 0x25, 0xdb, 0xa1, 0x5d, 0x9f, 0xfa, 0x66, + 0x6b, 0x13, 0x4d, 0xf1, 0x84, 0x57, 0xb2, 0x18, 0xa4, 0x81, 0xe3, 0x71, + 0xd6, 0xa5, 0xf1, 0x06, 0xa5, 0x14, 0xba, 0x1d, 0xc2, 0xa9, 0x39, 0x23, + 0x14, 0x39, 0x2d, 0x86, 0xa2, 0xde, 0xa6, 0xaf, 0x87, 0x57, 0xca, 0xd0, + 0xad, 0x17, 0xfd, 0x80, 0x6b, 0x53, 0x75, 0x64, 0x69, 0x57, 0x10, 0xae, + 0x9b, 0x6e, 0x82, 0x45, 0xe2, 0x30, 0x3f, 0x4a, 0xd0, 0x12, 0xa9, 0xe8, + 0xc0, 0xfe, 0x35, 0x4d, 0xa6, 0xc4, 0xd3, 0x2c, 0x6e, 0xa7, 0x06, 0xaa, + 0xe1, 0xa9, 0xc1, 0xa8, 0x11, 0x64, 0x35, 0x48, 0xad, 0x55, 0x43, 0x54, + 0x8a, 0xf4, 0xc4, 0x5e, 0x8d, 0xb9, 0xab, 0xd0, 0x1e, 0x45, 0x65, 0xc6, + 0xd5, 0x7e, 0x07, 0xaa, 0x42, 0x37, 0x2d, 0xdc, 0x00, 0x2a, 0xea, 0x4a, + 0x3d, 0x6b, 0x22, 0x29, 0x30, 0x2a, 0xc0, 0x9b, 0x03, 0xad, 0x5a, 0x62, + 0x35, 0x04, 0xbe, 0xf4, 0xf5, 0x7a, 0xc4, 0x7d, 0x46, 0x28, 0x8f, 0xcc, + 0xe3, 0x3e, 0xd5, 0x19, 0xd7, 0xe3, 0x51, 0xf2, 0xa3, 0x1a, 0xc2, 0xa6, + 0x32, 0x85, 0x3d, 0x25, 0x24, 0x52, 0xa7, 0x27, 0xb2, 0x3a, 0x30, 0xf4, + 0xe0, 0xf5, 0xcb, 0xff, 0x00, 0xc2, 0x46, 0x73, 0xc4, 0x3f, 0xad, 0x4b, + 0x17, 0x88, 0xd4, 0x9c, 0x3c, 0x44, 0x7d, 0x0d, 0x67, 0x1c, 0xc7, 0x0d, + 0x27, 0x65, 0x21, 0xba, 0x33, 0x5d, 0x0e, 0x98, 0x35, 0x3c, 0x1a, 0xcd, + 0xb4, 0xd4, 0x60, 0xba, 0xc7, 0x96, 0xfc, 0xfa, 0x1e, 0xb5, 0x7c, 0x1a, + 0xec, 0x8c, 0xa3, 0x25, 0x78, 0xbb, 0x99, 0xb4, 0xd6, 0xe4, 0xa2, 0x9c, + 0x29, 0x80, 0xd3, 0xc5, 0x50, 0x87, 0x0a, 0x5a, 0x41, 0x4b, 0x4c, 0x05, + 0x14, 0xec, 0x52, 0x01, 0x4e, 0x14, 0x08, 0x4c, 0x52, 0xe2, 0x94, 0x52, + 0xe2, 0x90, 0xc4, 0xc5, 0x38, 0x0a, 0x00, 0xa7, 0x01, 0x40, 0x09, 0x8a, + 0x69, 0x1c, 0x53, 0xf1, 0x48, 0x47, 0x14, 0x80, 0x76, 0x38, 0xa6, 0x9a, + 0x92, 0x26, 0x49, 0xd7, 0x28, 0x1c, 0x71, 0x9f, 0x99, 0x71, 0xfc, 0xe9, + 0xc6, 0x1f, 0x7f, 0xd2, 0xa2, 0x33, 0x4f, 0x62, 0x9c, 0x5a, 0xdc, 0xae, + 0x69, 0x8d, 0x56, 0x0c, 0x2d, 0x8e, 0xa2, 0xa3, 0x68, 0x9b, 0xdb, 0x1f, + 0x5a, 0xb4, 0xd1, 0x36, 0x64, 0x26, 0x9a, 0x69, 0xe5, 0x4f, 0xa5, 0x30, + 0xf1, 0xd6, 0x9d, 0xc5, 0x62, 0x36, 0xa8, 0x24, 0x7c, 0x54, 0x8e, 0xc6, + 0xaa, 0x4a, 0x68, 0x02, 0x39, 0x24, 0x35, 0x56, 0x49, 0x0f, 0xad, 0x3e, + 0x46, 0xaa, 0xae, 0xd5, 0x23, 0x11, 0xa6, 0x3e, 0xb5, 0x11, 0xb8, 0x3d, + 0xe9, 0x8e, 0xd5, 0x5d, 0x9e, 0x90, 0x16, 0x4d, 0xc5, 0x30, 0xdc, 0x7b, + 0xd5, 0x27, 0x99, 0x57, 0xbd, 0x42, 0x6e, 0x45, 0x17, 0x1d, 0x8b, 0x53, + 0x4d, 0x91, 0x59, 0x73, 0xc9, 0x92, 0x6a, 0x49, 0x2e, 0x41, 0x15, 0x4a, + 0x59, 0xd7, 0x9c, 0x9a, 0x4d, 0x81, 0x0c, 0x8f, 0x50, 0x33, 0xd3, 0x66, + 0xbb, 0x84, 0x1e, 0x64, 0x5f, 0xce, 0xab, 0x1b, 0xa8, 0x98, 0xf0, 0xea, + 0x7f, 0x1a, 0x86, 0x35, 0x24, 0x4e, 0xcf, 0x51, 0x96, 0xa8, 0xcc, 0x80, + 0xf4, 0x35, 0x1b, 0x4a, 0xaa, 0x39, 0x20, 0x52, 0x28, 0x94, 0xb5, 0x34, + 0xb7, 0xbd, 0x42, 0x24, 0x67, 0x1f, 0x24, 0x6c, 0xc3, 0xd7, 0x18, 0x15, + 0x4e, 0xe3, 0x50, 0x8a, 0x03, 0x89, 0x6e, 0x22, 0x43, 0xfd, 0xd5, 0x3b, + 0x8d, 0x4d, 0xc7, 0x63, 0x43, 0xcc, 0xa6, 0x34, 0xca, 0xbd, 0x58, 0x0f, + 0xc6, 0xb0, 0xe7, 0xd5, 0xe2, 0xce, 0x10, 0x4b, 0x27, 0xb9, 0x38, 0x15, + 0x07, 0xf6, 0xa4, 0xa4, 0x1d, 0x91, 0xc6, 0x9f, 0x86, 0x4d, 0x4b, 0x91, + 0x4a, 0x07, 0x40, 0x6e, 0x93, 0xb1, 0x2c, 0x7d, 0x85, 0x34, 0xdd, 0x10, + 0x3f, 0xd5, 0x91, 0xee, 0x4e, 0x2b, 0x9b, 0x92, 0xfa, 0xe9, 0x8e, 0x1a, + 0x76, 0xc1, 0xec, 0x38, 0xac, 0xf7, 0x79, 0x04, 0xd8, 0x79, 0x19, 0x95, + 0xbb, 0x93, 0x49, 0xcc, 0xa5, 0x03, 0xad, 0x7b, 0xf5, 0x5e, 0xb2, 0x42, + 0xbf, 0x57, 0xaa, 0x4f, 0xad, 0x6f, 0x9b, 0xc9, 0x03, 0x72, 0x74, 0x2e, + 0x07, 0x02, 0xb9, 0xe8, 0xd7, 0x64, 0xe4, 0x13, 0x90, 0xd4, 0x93, 0x5c, + 0x2c, 0x72, 0xac, 0x58, 0xf9, 0x98, 0x8e, 0x45, 0x09, 0xdd, 0x89, 0xab, + 0x23, 0xa1, 0x8e, 0xf1, 0x62, 0xbb, 0x11, 0x31, 0x28, 0xad, 0xdf, 0x1d, + 0x6b, 0x7b, 0x68, 0x58, 0xc0, 0x1c, 0x8a, 0xe3, 0xb5, 0x04, 0x79, 0xf5, + 0x58, 0x21, 0x55, 0x25, 0x41, 0x5c, 0x91, 0xda, 0xbb, 0x16, 0x00, 0x2a, + 0xae, 0x78, 0x02, 0x86, 0xb5, 0x04, 0xf4, 0x13, 0x20, 0x74, 0x14, 0xf0, + 0x09, 0xe4, 0xd4, 0x7b, 0x95, 0x05, 0x26, 0xe6, 0x73, 0xc7, 0x4a, 0xb2, + 0x49, 0xc6, 0x0f, 0x00, 0xd3, 0xb7, 0x2a, 0xf4, 0xe4, 0xd4, 0x01, 0x58, + 0x70, 0x2a, 0x54, 0x40, 0x3a, 0xf5, 0xa0, 0x09, 0x15, 0x99, 0xba, 0x55, + 0x85, 0x50, 0xaa, 0x33, 0xd6, 0xa2, 0x40, 0x49, 0x00, 0x0c, 0x0a, 0x97, + 0x70, 0xdd, 0xeb, 0x4c, 0x44, 0x8b, 0x52, 0xaf, 0x35, 0x0a, 0x9f, 0x5a, + 0x90, 0x49, 0x8a, 0x60, 0x4e, 0xab, 0x52, 0x02, 0xa3, 0xa9, 0xaa, 0xbe, + 0x61, 0x34, 0xe5, 0x0c, 0xd4, 0x01, 0x67, 0xce, 0x45, 0xa5, 0x17, 0x0c, + 0x78, 0x45, 0xc5, 0x46, 0x91, 0x0e, 0xf5, 0x91, 0xac, 0xf8, 0x8a, 0x1d, + 0x2d, 0xbc, 0x98, 0x93, 0xcc, 0x9f, 0x1d, 0x3b, 0x0a, 0x69, 0x37, 0xa2, + 0x13, 0x69, 0x6e, 0x6e, 0x85, 0x91, 0xfe, 0xf3, 0x60, 0x52, 0x33, 0x59, + 0xc3, 0xfe, 0xba, 0x64, 0x07, 0xfd, 0xa6, 0xaf, 0x39, 0xb9, 0xf1, 0x06, + 0xa1, 0x76, 0xc4, 0xb4, 0xec, 0xaa, 0x7f, 0x85, 0x78, 0x15, 0x45, 0xe6, + 0x91, 0xce, 0x5d, 0xd9, 0x8f, 0xb9, 0xad, 0x55, 0x07, 0xd5, 0x99, 0xba, + 0xcb, 0xa1, 0xea, 0x3f, 0xda, 0xfa, 0x62, 0x36, 0x05, 0xdc, 0x6a, 0x7d, + 0x8d, 0x5d, 0xb6, 0xf1, 0x04, 0x59, 0xdb, 0x06, 0xa0, 0x18, 0xfa, 0x6e, + 0xcd, 0x78, 0xe9, 0x34, 0xe8, 0x9d, 0x95, 0xb2, 0x09, 0x07, 0xd4, 0x53, + 0x74, 0x17, 0x71, 0x7b, 0x63, 0xdc, 0xa3, 0xd5, 0xa7, 0x63, 0x97, 0x45, + 0x91, 0x7f, 0x2a, 0xbd, 0x0e, 0xa5, 0x6e, 0xd8, 0xdc, 0x1a, 0x23, 0xee, + 0x38, 0xaf, 0x1e, 0xd3, 0x3c, 0x41, 0x7d, 0x64, 0xca, 0x04, 0xa5, 0xe3, + 0xee, 0xad, 0xcd, 0x77, 0xba, 0x46, 0xa1, 0x6f, 0xab, 0xc1, 0xb9, 0x5b, + 0x0e, 0x3e, 0xf2, 0x1e, 0xd5, 0x94, 0xa0, 0xe2, 0x69, 0x19, 0x29, 0x1d, + 0xa4, 0x4c, 0x93, 0x0c, 0xa4, 0x8a, 0xdf, 0x43, 0x56, 0x51, 0x3d, 0x6b, + 0x97, 0x11, 0x24, 0x7c, 0xab, 0x95, 0x3e, 0xc6, 0xa7, 0x8b, 0x57, 0x9e, + 0x06, 0xda, 0x5b, 0xcd, 0x5f, 0x7e, 0xb4, 0x94, 0x86, 0xe2, 0x74, 0xc1, + 0x05, 0x48, 0x05, 0x65, 0xda, 0x6b, 0x11, 0x4c, 0x76, 0xc8, 0x8d, 0x11, + 0xff, 0x00, 0x6b, 0xa5, 0x58, 0x93, 0x55, 0xb6, 0x88, 0x72, 0xf9, 0xfa, + 0x50, 0xe4, 0x96, 0xe2, 0x51, 0x6f, 0x62, 0xf6, 0x29, 0xe3, 0xd6, 0xb9, + 0xab, 0xcf, 0x16, 0x5a, 0xda, 0x83, 0x96, 0x8d, 0x3d, 0xd9, 0xab, 0x9b, + 0xbe, 0xf8, 0x85, 0x12, 0x92, 0x23, 0x99, 0x9b, 0xd9, 0x07, 0x15, 0x9c, + 0xab, 0xc6, 0x26, 0x8a, 0x8c, 0x99, 0xe9, 0x0d, 0x34, 0x71, 0x8c, 0xbb, + 0xaa, 0xfd, 0x4d, 0x56, 0x9b, 0x59, 0xb0, 0x85, 0xb6, 0xbd, 0xc2, 0xee, + 0xf4, 0x15, 0xe5, 0x23, 0xc5, 0x17, 0xba, 0x96, 0xe3, 0x6e, 0xaa, 0xaa, + 0x0f, 0x2c, 0xed, 0xd3, 0xf0, 0xa8, 0x5a, 0xe2, 0xe6, 0x41, 0x99, 0xaf, + 0x02, 0x9f, 0xf6, 0x05, 0x47, 0xb6, 0x94, 0xb6, 0x2b, 0xd9, 0x45, 0x6e, + 0x7a, 0x8c, 0xbe, 0x24, 0xb2, 0x8f, 0xa6, 0x48, 0xf7, 0xe2, 0xb3, 0x6e, + 0x3c, 0x65, 0x6b, 0x17, 0x43, 0x18, 0x3e, 0xed, 0x5e, 0x6d, 0x34, 0xb1, + 0xf4, 0xdf, 0x24, 0xcd, 0xee, 0xd5, 0x51, 0x8b, 0x12, 0x7e, 0x44, 0x41, + 0xee, 0x68, 0xbc, 0xdf, 0x50, 0xb4, 0x16, 0xc8, 0xf4, 0x69, 0xbc, 0x68, + 0x5a, 0x1f, 0x35, 0x19, 0x7c, 0xbc, 0xed, 0xca, 0xae, 0x79, 0xaa, 0x8f, + 0xe2, 0x6b, 0x99, 0xa2, 0x79, 0x14, 0xca, 0x42, 0xf6, 0xc6, 0x33, 0x5c, + 0x75, 0xa5, 0xdb, 0x5b, 0xa7, 0x94, 0xc1, 0x5e, 0x09, 0x0f, 0x4c, 0x70, + 0x0f, 0xad, 0x2c, 0xfa, 0x95, 0xdc, 0x84, 0x47, 0x10, 0x08, 0x83, 0xb0, + 0x14, 0xac, 0xde, 0xec, 0x39, 0xbb, 0x23, 0xa1, 0x5f, 0x11, 0x5c, 0x5c, + 0xae, 0x63, 0x8d, 0xce, 0x0e, 0x0e, 0x5a, 0x9a, 0xda, 0x85, 0xe3, 0x8e, + 0x8a, 0xbf, 0x56, 0xae, 0x3a, 0x19, 0xaf, 0xa1, 0xbc, 0x9a, 0x3d, 0xe0, + 0x2b, 0xfc, 0xe3, 0xfa, 0xd4, 0xea, 0xd7, 0x92, 0xc4, 0xd2, 0x6e, 0x24, + 0x0e, 0x80, 0x1e, 0xb4, 0x72, 0x0b, 0x9d, 0x9a, 0x57, 0x69, 0x7d, 0x2b, + 0xf9, 0x8f, 0x76, 0x06, 0xd3, 0x91, 0x8e, 0xd4, 0xd8, 0xef, 0x2f, 0xad, + 0x66, 0x45, 0x5b, 0x94, 0x70, 0xe3, 0x3d, 0x2a, 0xac, 0x51, 0xc9, 0x35, + 0xbe, 0xed, 0xfc, 0x1e, 0x9f, 0x35, 0x53, 0x96, 0xd6, 0x58, 0xe6, 0x4c, + 0x3e, 0x78, 0x3d, 0xe9, 0x7b, 0x34, 0x3f, 0x68, 0xee, 0x76, 0x6b, 0xaa, + 0xdc, 0x2a, 0x8c, 0xac, 0x79, 0xff, 0x00, 0x7a, 0x9d, 0xfd, 0xbb, 0x70, + 0x8c, 0x00, 0x51, 0x9f, 0x69, 0x2b, 0x8b, 0x02, 0xe2, 0x57, 0x64, 0x52, + 0x48, 0x5e, 0x09, 0xdd, 0x52, 0xa4, 0x53, 0x60, 0xa8, 0x98, 0xa9, 0x1d, + 0x72, 0x69, 0xf2, 0x21, 0x7b, 0x47, 0xdc, 0xec, 0x5b, 0xc5, 0x72, 0xda, + 0xa1, 0x79, 0x9d, 0x91, 0x7d, 0x77, 0x66, 0xa5, 0xb6, 0xf1, 0xd2, 0xc8, + 0x03, 0x0b, 0xa3, 0x8f, 0x7a, 0xf3, 0xbd, 0x4d, 0xa6, 0x86, 0x20, 0x24, + 0x97, 0x72, 0x9e, 0x95, 0x97, 0xf6, 0x82, 0xa1, 0x10, 0x64, 0x93, 0xcd, + 0x67, 0xf6, 0xf9, 0x51, 0xa7, 0x37, 0xbb, 0x76, 0x7b, 0x64, 0x3e, 0x33, + 0x0d, 0x81, 0xe6, 0x23, 0x67, 0xda, 0xad, 0x8f, 0x17, 0x28, 0xdb, 0x98, + 0x37, 0xe7, 0x8f, 0x94, 0xe3, 0x15, 0xe4, 0x1a, 0x4d, 0xf1, 0x86, 0x4d, + 0xd2, 0x44, 0x4f, 0x18, 0x04, 0xf6, 0xad, 0x51, 0xa9, 0x4a, 0x09, 0xc2, + 0xf3, 0xd7, 0xad, 0x6a, 0x93, 0x5d, 0x4c, 0xdc, 0x93, 0xdd, 0x1e, 0xb1, + 0x1f, 0x88, 0x6d, 0x24, 0xc6, 0x43, 0x2e, 0x7d, 0xf3, 0x56, 0xa3, 0xd4, + 0x6d, 0x66, 0xfb, 0xb2, 0x8f, 0xc7, 0x8a, 0xf2, 0x25, 0xd6, 0x5d, 0x71, + 0xe6, 0x64, 0x55, 0x84, 0xf1, 0x02, 0x02, 0x06, 0x48, 0xfa, 0x1c, 0x55, + 0x73, 0x4d, 0x75, 0x15, 0xa0, 0xfa, 0x1e, 0xba, 0xac, 0x8f, 0xf7, 0x5c, + 0x1f, 0xa1, 0xa7, 0x1e, 0x2b, 0xca, 0xe2, 0xf1, 0x42, 0xc6, 0xca, 0x82, + 0xe1, 0x95, 0xd8, 0xf0, 0xa6, 0xb6, 0xad, 0xfc, 0x4f, 0x70, 0x80, 0x65, + 0x83, 0x8f, 0x63, 0x9a, 0x7e, 0xd1, 0xf5, 0x42, 0xe4, 0x4f, 0x66, 0x76, + 0xac, 0x6a, 0x23, 0x5c, 0xfc, 0x1e, 0x29, 0x8e, 0x51, 0x82, 0xb9, 0x23, + 0xa8, 0x15, 0x6d, 0xb5, 0x7d, 0xca, 0x3c, 0xa8, 0x98, 0x93, 0xd7, 0x77, + 0x00, 0x53, 0x55, 0x22, 0xc4, 0xe9, 0xc9, 0x1a, 0x67, 0x0a, 0xa5, 0x8f, + 0x00, 0x75, 0x35, 0xcd, 0x6a, 0x7e, 0x2e, 0xb5, 0xb4, 0x2d, 0x1d, 0xb2, + 0xf9, 0xb2, 0x0e, 0xfd, 0xa9, 0x75, 0x2b, 0xbb, 0xa9, 0x74, 0xf9, 0xc3, + 0x49, 0xb4, 0x05, 0x3c, 0x2f, 0x15, 0xe7, 0xae, 0xdc, 0x9a, 0xe5, 0xc5, + 0xe2, 0x25, 0x4d, 0x25, 0x1e, 0xa7, 0x6e, 0x0f, 0x0d, 0x1a, 0x97, 0x94, + 0xba, 0x1a, 0x1a, 0x87, 0x88, 0x75, 0x0b, 0xd7, 0x25, 0xa7, 0x64, 0x5f, + 0xee, 0xa7, 0x15, 0x90, 0xf2, 0xbc, 0x87, 0x2e, 0xec, 0xc7, 0xdc, 0xe6, + 0x86, 0x35, 0x19, 0x6a, 0xf1, 0xea, 0x55, 0x94, 0x9e, 0xac, 0xf5, 0xa3, + 0x08, 0xc5, 0x5a, 0x28, 0x09, 0xa3, 0x34, 0xcc, 0xd1, 0xba, 0xb1, 0xb9, + 0x44, 0xa0, 0x91, 0xc8, 0x38, 0x35, 0x7e, 0xd7, 0x56, 0x96, 0x0c, 0x2b, + 0xfc, 0xeb, 0xfa, 0xd6, 0x68, 0x6a, 0x4c, 0xd6, 0xd0, 0xab, 0x2a, 0x6e, + 0xf1, 0x66, 0x73, 0xa7, 0x19, 0xab, 0x49, 0x1d, 0x75, 0xb5, 0xe4, 0x57, + 0x71, 0xef, 0x43, 0xf5, 0x1e, 0x95, 0x21, 0xc7, 0x23, 0xd6, 0xb9, 0xad, + 0x22, 0x56, 0x4b, 0xe0, 0xa0, 0xf0, 0xc3, 0x9a, 0xe8, 0xc9, 0xaf, 0x6b, + 0x0f, 0x57, 0xda, 0xc2, 0xec, 0xf1, 0xb1, 0x14, 0x95, 0x39, 0xd9, 0x0d, + 0x53, 0x4d, 0x3f, 0x78, 0x9a, 0x0a, 0xb6, 0x7d, 0xa8, 0x6d, 0xbd, 0xdb, + 0xf2, 0xad, 0x8c, 0x06, 0x31, 0xe6, 0x9a, 0x4e, 0x41, 0x1d, 0xf1, 0xc5, + 0x0c, 0xc3, 0xf8, 0x45, 0x34, 0x3f, 0x34, 0xc0, 0xae, 0x49, 0x64, 0xcf, + 0x7a, 0x55, 0x70, 0x57, 0x0d, 0x4c, 0x39, 0x59, 0x59, 0x0f, 0x4e, 0xa2, + 0xa2, 0xc9, 0x53, 0x40, 0x04, 0x8b, 0xe5, 0xb6, 0x41, 0xe0, 0xd3, 0x32, + 0x0e, 0x45, 0x4c, 0x18, 0x3a, 0xe0, 0xd5, 0x77, 0x52, 0x8d, 0x40, 0x0c, + 0xdd, 0xb1, 0xfa, 0x70, 0x69, 0xae, 0x9d, 0xc0, 0xa7, 0xba, 0xef, 0x5f, + 0x7a, 0x8b, 0x79, 0x5e, 0xb4, 0xec, 0x22, 0x29, 0x86, 0x57, 0x70, 0x1c, + 0x8e, 0xb5, 0x8b, 0xa9, 0x96, 0x82, 0x65, 0x7c, 0x8d, 0xac, 0xa7, 0x19, + 0x15, 0xbe, 0xcb, 0xb8, 0x64, 0x77, 0xeb, 0x59, 0x7a, 0xbc, 0x1e, 0x66, + 0x9a, 0xcd, 0x8e, 0x53, 0x9a, 0xce, 0xa4, 0x6e, 0x8b, 0x83, 0x38, 0x19, + 0xae, 0xda, 0x2d, 0x41, 0x66, 0x8c, 0x64, 0xee, 0xc9, 0x5e, 0x99, 0xa9, + 0xb5, 0x6d, 0x6e, 0x4b, 0xe8, 0x95, 0x16, 0x0f, 0x25, 0x7f, 0x8b, 0x0d, + 0xd6, 0xa3, 0xbb, 0xb7, 0x51, 0x7e, 0xca, 0xa4, 0xb6, 0x39, 0x06, 0xa0, + 0xb8, 0x45, 0xf2, 0xf2, 0x7a, 0xe6, 0xab, 0x95, 0x68, 0x2b, 0xb2, 0x68, + 0x35, 0x6b, 0xd4, 0x45, 0x45, 0x9d, 0x80, 0x1d, 0x2b, 0x56, 0x0f, 0x13, + 0x5c, 0x2a, 0xaa, 0xb1, 0x6c, 0x83, 0x82, 0xd8, 0xe2, 0xb1, 0x60, 0x76, + 0xb7, 0x72, 0xe8, 0xa9, 0x9f, 0xf6, 0x86, 0x68, 0x9e, 0x72, 0xf2, 0x96, + 0x31, 0x80, 0x4f, 0x65, 0x18, 0x14, 0x38, 0xdf, 0xa0, 0xd4, 0x9a, 0x7b, + 0x9e, 0x85, 0x6b, 0xa9, 0x99, 0x11, 0x4c, 0x77, 0xd0, 0xb1, 0xc7, 0x42, + 0xd8, 0xfe, 0x75, 0x7e, 0x3b, 0xfb, 0xb1, 0x8c, 0xc4, 0x24, 0x1e, 0xab, + 0xcf, 0xf2, 0xaf, 0x30, 0x4c, 0x30, 0x04, 0x13, 0x9e, 0xf5, 0x6a, 0x2b, + 0xbb, 0x88, 0x30, 0x62, 0x9a, 0x44, 0xc7, 0xa3, 0x54, 0xf2, 0xdb, 0x61, + 0xf3, 0x5f, 0x73, 0xd3, 0x06, 0xac, 0x88, 0x40, 0x99, 0x1a, 0x3c, 0xfa, + 0x8a, 0xbd, 0x05, 0xec, 0x12, 0xe3, 0x6c, 0xaa, 0x7f, 0x1a, 0xf3, 0x58, + 0x7c, 0x4d, 0xa8, 0x46, 0xb8, 0x92, 0x45, 0x95, 0x3a, 0x11, 0x22, 0xe7, + 0x35, 0x7e, 0xdb, 0xc4, 0xd6, 0x52, 0x60, 0x5c, 0x59, 0x34, 0x67, 0xfb, + 0xf0, 0xb7, 0xf4, 0xa6, 0x9c, 0x85, 0xee, 0x9e, 0x95, 0x1b, 0x67, 0xa1, + 0xab, 0xd6, 0xf9, 0xcd, 0x70, 0x76, 0x5a, 0xad, 0xb4, 0xb8, 0xfb, 0x1e, + 0xa8, 0xa1, 0xbf, 0xb9, 0x3f, 0xcb, 0x5d, 0x0d, 0xae, 0xab, 0x7d, 0x02, + 0xe6, 0x7b, 0x43, 0x22, 0x0f, 0xe3, 0x8f, 0x91, 0x56, 0xa7, 0x6d, 0xd1, + 0x3c, 0xb7, 0xd9, 0x9d, 0x3b, 0xce, 0x20, 0x8b, 0x79, 0xaa, 0x12, 0xde, + 0xcb, 0x2f, 0xf1, 0x60, 0x7a, 0x0a, 0xa8, 0xda, 0xc5, 0xb5, 0xfc, 0x21, + 0x22, 0x24, 0x3e, 0x79, 0x52, 0x39, 0xa0, 0x1e, 0x2b, 0xc2, 0xcd, 0xb1, + 0x73, 0x53, 0x54, 0xe0, 0xf4, 0xb1, 0xd3, 0x42, 0x9a, 0xb5, 0xda, 0xd4, + 0x93, 0x3c, 0xd1, 0x9a, 0x66, 0x69, 0x0b, 0x57, 0x87, 0x7b, 0xb3, 0xa0, + 0x71, 0x6a, 0x55, 0x6e, 0x6a, 0x22, 0xd4, 0x81, 0xb9, 0xad, 0xa9, 0xee, + 0x44, 0x8d, 0x5b, 0x49, 0x0a, 0xb0, 0x20, 0xe0, 0xd7, 0x4f, 0xa7, 0xdd, + 0xbc, 0x98, 0x47, 0x39, 0xf4, 0x35, 0xc8, 0x5b, 0x3f, 0xcc, 0x2b, 0xa5, + 0xd2, 0x9b, 0x33, 0x25, 0x7a, 0xf8, 0x5a, 0xd2, 0xa6, 0xd3, 0x8b, 0x39, + 0xa7, 0x14, 0xce, 0x81, 0x4d, 0x4a, 0xb5, 0x10, 0xeb, 0x52, 0xad, 0x7d, + 0x22, 0x39, 0x09, 0x05, 0x3b, 0x14, 0xd1, 0x4f, 0x02, 0x98, 0x0a, 0x05, + 0x28, 0x14, 0xa0, 0x7b, 0x53, 0xc4, 0x6c, 0x7a, 0x03, 0x45, 0xc2, 0xc2, + 0x01, 0x4b, 0x8a, 0x90, 0x44, 0xde, 0x94, 0xef, 0x28, 0xfb, 0x52, 0xe6, + 0x45, 0x58, 0x88, 0x0a, 0x70, 0x15, 0x27, 0x94, 0x69, 0xc2, 0x13, 0x49, + 0xc9, 0x05, 0x88, 0xb1, 0x4d, 0x23, 0x8a, 0xb3, 0xe4, 0x13, 0xde, 0xa1, + 0x98, 0x2c, 0x2a, 0x4b, 0xee, 0x20, 0x0c, 0xfc, 0xab, 0x9a, 0x9e, 0x74, + 0xb7, 0x1a, 0x8b, 0x7b, 0x13, 0x71, 0xed, 0x4d, 0x20, 0x7b, 0x56, 0x0d, + 0xbd, 0xd4, 0xf6, 0x90, 0x84, 0x5d, 0xac, 0xbd, 0x7e, 0x61, 0x9a, 0x56, + 0xd6, 0xa6, 0x4e, 0xb0, 0x46, 0x7f, 0x4a, 0x94, 0xc9, 0x69, 0x9b, 0x84, + 0x0a, 0x61, 0x51, 0xef, 0x58, 0x0d, 0xe2, 0x32, 0xbd, 0x6d, 0x47, 0xe0, + 0xff, 0x00, 0xfd, 0x6a, 0x84, 0xf8, 0xaa, 0x25, 0xfb, 0xf6, 0xb2, 0x0f, + 0xa3, 0xd5, 0x5d, 0x13, 0x66, 0x74, 0x2c, 0x99, 0x18, 0xcf, 0xe9, 0x54, + 0xe4, 0xb2, 0x56, 0x72, 0xc0, 0x81, 0x91, 0xe9, 0xfe, 0x15, 0x8b, 0x2f, + 0x8c, 0x2d, 0xd7, 0xa5, 0xbc, 0xff, 0x00, 0xf7, 0xd0, 0xac, 0xf7, 0xf1, + 0x9a, 0x29, 0x6f, 0xdd, 0xdc, 0x00, 0x7a, 0x60, 0xa9, 0xc7, 0xe9, 0x45, + 0xd0, 0x7b, 0xc6, 0xfc, 0xb6, 0x57, 0x2b, 0x9f, 0x2a, 0x4c, 0x8f, 0xf7, + 0x8f, 0xf5, 0xac, 0xdb, 0x8f, 0xb7, 0xc3, 0x9c, 0xc6, 0xe4, 0x7a, 0xed, + 0x07, 0xf9, 0x55, 0x05, 0xf1, 0x8d, 0xb9, 0xfb, 0xd7, 0x13, 0xa1, 0xff, + 0x00, 0x6a, 0x35, 0x3f, 0xd2, 0x9e, 0x3c, 0x57, 0x13, 0x7d, 0xdb, 0xd8, + 0x0f, 0xfb, 0xe8, 0x57, 0xfa, 0xd2, 0xd0, 0xab, 0xbe, 0xa4, 0x32, 0x6a, + 0x2c, 0xa7, 0x0e, 0x83, 0x3e, 0xff, 0x00, 0x2f, 0xf3, 0xa8, 0x24, 0xd4, + 0x17, 0x1c, 0xa3, 0x28, 0xf5, 0xeb, 0x56, 0xe4, 0xd7, 0x61, 0x9c, 0x61, + 0xe3, 0xb7, 0x94, 0x7f, 0xb2, 0xe0, 0xff, 0x00, 0x3a, 0xa1, 0x3c, 0xda, + 0x73, 0x9d, 0xdf, 0x67, 0x92, 0x32, 0x7a, 0x98, 0xdb, 0x1f, 0xd6, 0x8b, + 0xbe, 0xe1, 0x75, 0xd8, 0x85, 0xb5, 0x08, 0x5c, 0x7c, 0xb2, 0x29, 0xfc, + 0x6a, 0xac, 0xb7, 0x4c, 0xdd, 0x0f, 0x15, 0xe7, 0x9a, 0xee, 0xa2, 0xd6, + 0x5a, 0xcd, 0xc4, 0x51, 0x82, 0x63, 0x0d, 0x95, 0x39, 0xc3, 0x62, 0xaa, + 0x47, 0xe2, 0x29, 0xd7, 0xee, 0xdd, 0x48, 0x87, 0xd1, 0xf9, 0x14, 0xb9, + 0x99, 0x56, 0x47, 0xa2, 0x34, 0x84, 0xf7, 0xa8, 0xcc, 0x95, 0xc5, 0x47, + 0xe2, 0xab, 0xd4, 0xe5, 0x91, 0x26, 0x5f, 0x55, 0x35, 0x6a, 0x1f, 0x18, + 0xdb, 0x3b, 0x05, 0x96, 0x27, 0x46, 0xfa, 0x51, 0xcc, 0x83, 0x94, 0xea, + 0x37, 0x17, 0x38, 0xcd, 0x66, 0xde, 0xb1, 0x04, 0x8c, 0xf1, 0x4b, 0xa7, + 0x6a, 0xb0, 0x5f, 0xb9, 0xf2, 0x0b, 0x10, 0x07, 0x27, 0x1c, 0x54, 0x77, + 0xc7, 0x93, 0x5a, 0x46, 0xd6, 0x38, 0xeb, 0xc9, 0xf3, 0x58, 0xc8, 0x98, + 0xf2, 0x6a, 0x02, 0x6a, 0x49, 0x8f, 0x26, 0xab, 0x93, 0x43, 0x31, 0x44, + 0xcb, 0x3c, 0x88, 0x30, 0x18, 0xe2, 0x99, 0x75, 0xab, 0xc9, 0x69, 0x6d, + 0x98, 0x2d, 0xe2, 0x2e, 0x07, 0xcc, 0xef, 0xf3, 0x1f, 0xd6, 0xa3, 0x26, + 0xaa, 0xde, 0x73, 0x6d, 0x27, 0xd2, 0xa1, 0xc5, 0x33, 0x68, 0x54, 0x94, + 0x59, 0x91, 0x73, 0xad, 0xde, 0xdd, 0x31, 0xf3, 0x67, 0x76, 0x53, 0xfc, + 0x20, 0xe0, 0x0a, 0xa6, 0x6e, 0x0f, 0xa6, 0x7e, 0xb5, 0x01, 0x34, 0x99, + 0xa8, 0xe5, 0x47, 0x6f, 0x33, 0x2d, 0xfd, 0xba, 0x50, 0xb8, 0xc0, 0xab, + 0xb6, 0xb7, 0x3b, 0xe2, 0xdc, 0xdd, 0x7a, 0x56, 0x36, 0x6a, 0xe5, 0xb4, + 0x8e, 0x22, 0xc0, 0xc6, 0x33, 0x59, 0xd4, 0x49, 0x2b, 0xa3, 0x48, 0x49, + 0xb7, 0xa9, 0xa7, 0xb8, 0x35, 0x46, 0xf8, 0x65, 0xda, 0x7a, 0xf6, 0xa8, + 0x36, 0xc9, 0xfc, 0x4d, 0x8a, 0x53, 0x18, 0x03, 0x25, 0xeb, 0x0e, 0x63, + 0x7b, 0x0e, 0xce, 0x63, 0xce, 0x46, 0xe1, 0xc5, 0x4f, 0x19, 0x8d, 0xda, + 0x26, 0x21, 0x4b, 0xe4, 0x64, 0x55, 0x5d, 0xaa, 0xd8, 0x5c, 0xd4, 0x96, + 0xb2, 0x22, 0x5f, 0x24, 0x44, 0x82, 0x4b, 0x0c, 0x11, 0x42, 0x93, 0x6c, + 0x4d, 0x24, 0x8e, 0x8a, 0xc9, 0x43, 0xf8, 0x82, 0x54, 0x3c, 0xf0, 0x08, + 0xf6, 0xc5, 0x6f, 0x4c, 0x4e, 0xfc, 0x01, 0xcd, 0x65, 0xe9, 0x70, 0x2f, + 0xf6, 0xcd, 0xdc, 0xa0, 0x1c, 0x80, 0x06, 0x6b, 0x51, 0x89, 0x2e, 0x71, + 0x5b, 0x45, 0x7b, 0xcd, 0x98, 0xb7, 0xa1, 0x18, 0x8f, 0xbb, 0x1a, 0x91, + 0x46, 0x7a, 0x70, 0x29, 0xa4, 0xaa, 0x75, 0xf9, 0x9a, 0x93, 0xe7, 0x93, + 0xd8, 0x56, 0x84, 0x93, 0x01, 0xe8, 0x78, 0xf5, 0xa5, 0xdc, 0xab, 0xd3, + 0x93, 0x51, 0x79, 0x6d, 0xd3, 0x3c, 0x54, 0xab, 0x1e, 0x3b, 0x66, 0x98, + 0x89, 0x63, 0x62, 0x72, 0x69, 0xc0, 0x81, 0xf5, 0xa4, 0x03, 0x11, 0xf5, + 0xc6, 0x69, 0xca, 0xbe, 0x94, 0xc0, 0x70, 0x24, 0xd4, 0x8a, 0x99, 0xa1, + 0x40, 0x1d, 0x4d, 0x3f, 0xcc, 0xc7, 0x4a, 0x00, 0x91, 0x10, 0x0e, 0xb5, + 0x26, 0xf5, 0x5e, 0x95, 0x5f, 0x71, 0x34, 0xf5, 0xa0, 0x09, 0xbc, 0xc2, + 0x6b, 0xcd, 0xf5, 0xc7, 0xdf, 0xac, 0xdc, 0x1f, 0xf6, 0xab, 0xd1, 0xb2, + 0x00, 0x35, 0xe6, 0x3a, 0x8b, 0xef, 0xd4, 0xee, 0x1b, 0xfd, 0xb3, 0x5b, + 0x50, 0xdc, 0xca, 0xb6, 0xc4, 0x6b, 0x4e, 0xa6, 0x2d, 0x38, 0xd7, 0x49, + 0xce, 0x34, 0x9a, 0x72, 0x1e, 0x6a, 0x32, 0x69, 0xc8, 0x68, 0x1a, 0x2e, + 0x46, 0x6b, 0xa6, 0xf0, 0x8b, 0x49, 0xfd, 0xa9, 0x84, 0x27, 0xee, 0x9c, + 0xd7, 0x2b, 0x19, 0xae, 0xb7, 0xc1, 0x67, 0x1a, 0x9b, 0xb7, 0xa2, 0x56, + 0x75, 0x3e, 0x16, 0x69, 0x4f, 0xe2, 0x47, 0x7b, 0x1c, 0x2c, 0xdc, 0xbb, + 0x53, 0x91, 0x91, 0x25, 0xc0, 0x19, 0xc5, 0x31, 0xa5, 0x25, 0x78, 0xa8, + 0xa0, 0x6c, 0xca, 0x6b, 0x88, 0xe9, 0x34, 0x59, 0xb7, 0x8f, 0x9b, 0xa7, + 0xa5, 0x56, 0x6b, 0x38, 0xa7, 0xdc, 0xa5, 0x0e, 0x18, 0x63, 0x8a, 0x97, + 0x3c, 0x55, 0xdb, 0x39, 0x04, 0x6d, 0x92, 0xb9, 0xa4, 0x33, 0x92, 0xd5, + 0xbe, 0x1d, 0x9b, 0xb8, 0x8c, 0xd6, 0x77, 0x0e, 0x24, 0x3c, 0xec, 0x90, + 0xe7, 0x3f, 0x8d, 0x70, 0xda, 0x96, 0x8b, 0x7d, 0xa5, 0x3f, 0x95, 0x7b, + 0x6c, 0xf1, 0x11, 0xc2, 0xbe, 0x3e, 0x53, 0xf8, 0xd7, 0xd0, 0x09, 0xa8, + 0x90, 0xb8, 0x58, 0x05, 0x41, 0x75, 0x03, 0x6a, 0xd1, 0x18, 0xae, 0x6c, + 0x92, 0x48, 0xcf, 0x66, 0x1c, 0x56, 0x73, 0xc3, 0xc2, 0x7a, 0xad, 0x19, + 0x71, 0xab, 0x25, 0xbe, 0xa7, 0xcf, 0x16, 0xf7, 0x52, 0xd9, 0x4d, 0xbd, + 0x18, 0xe0, 0xf0, 0xcb, 0xd8, 0x8a, 0xdb, 0x8a, 0xf6, 0x19, 0x8f, 0x99, + 0x80, 0x50, 0xf4, 0xe7, 0x18, 0xf6, 0x35, 0xd9, 0x6b, 0x9f, 0x0a, 0xda, + 0x75, 0x79, 0x74, 0xe6, 0x11, 0x37, 0x51, 0x19, 0x3f, 0x2f, 0xd0, 0x57, + 0x9a, 0x4f, 0x65, 0x7f, 0xa1, 0x6a, 0x2d, 0x6f, 0x7d, 0x6d, 0x22, 0x60, + 0xe1, 0x94, 0x8e, 0x08, 0xf5, 0x06, 0xb2, 0x8c, 0x27, 0x4f, 0x7d, 0x8b, + 0x6e, 0x33, 0xdb, 0x73, 0xa5, 0x4b, 0xa8, 0x14, 0x63, 0x62, 0x81, 0x55, + 0x75, 0x2b, 0x9b, 0x71, 0x06, 0x23, 0x1f, 0x39, 0xee, 0x2b, 0x3c, 0x4b, + 0x0c, 0x67, 0x38, 0x05, 0x0f, 0xbf, 0x4a, 0x12, 0xfa, 0x34, 0x2d, 0x88, + 0xc1, 0x24, 0xf1, 0x5a, 0xf3, 0xc7, 0xb9, 0x97, 0x2b, 0x2d, 0x9b, 0xf3, + 0x25, 0xaf, 0x95, 0x1c, 0x6c, 0x0e, 0xdc, 0x70, 0xb4, 0x96, 0x97, 0x97, + 0x2f, 0x6e, 0x10, 0xc4, 0x4b, 0x8e, 0x09, 0xa8, 0x85, 0xdc, 0xed, 0x86, + 0x8e, 0x22, 0x01, 0xe2, 0xa2, 0x5b, 0x96, 0x8e, 0x66, 0x12, 0x3e, 0xc9, + 0x1c, 0xe5, 0x54, 0x7a, 0xd3, 0x52, 0x13, 0x88, 0x9a, 0x84, 0x93, 0x24, + 0x91, 0x31, 0x04, 0x1c, 0xe0, 0xe3, 0xd0, 0xd5, 0xe8, 0xee, 0x2e, 0x15, + 0x02, 0xa0, 0x18, 0xaa, 0x57, 0x0d, 0xe6, 0x23, 0xef, 0x50, 0x7f, 0xe0, + 0x54, 0xeb, 0x5b, 0x86, 0x96, 0xdc, 0x48, 0x90, 0x65, 0x07, 0x53, 0xc9, + 0xc5, 0x2e, 0x67, 0xd8, 0x39, 0x7c, 0xc9, 0x16, 0x6b, 0x98, 0x25, 0x60, + 0xc4, 0x05, 0x6e, 0x70, 0x3b, 0x54, 0x57, 0x57, 0x6e, 0x1d, 0x7a, 0x9e, + 0x0d, 0x3d, 0xae, 0xa3, 0x6c, 0xe1, 0x11, 0x88, 0xec, 0x41, 0xaa, 0xb2, + 0xdc, 0xfe, 0xfa, 0x3c, 0x24, 0x5f, 0x30, 0x3d, 0xa8, 0xe6, 0x7d, 0x83, + 0x95, 0x77, 0x2e, 0xdb, 0x9b, 0xa5, 0x8f, 0xe5, 0x00, 0x67, 0x92, 0x49, + 0xa7, 0x34, 0xb3, 0x21, 0xde, 0x71, 0xef, 0x83, 0x55, 0x7e, 0xd6, 0xe4, + 0x1c, 0xb2, 0x00, 0x0e, 0x32, 0x01, 0xa6, 0x3c, 0xb2, 0xe0, 0x90, 0x63, + 0x61, 0xf8, 0xd1, 0xcc, 0xfb, 0x07, 0x2a, 0xee, 0x57, 0xd4, 0xee, 0x1a, + 0x47, 0x08, 0x7b, 0x73, 0x54, 0xed, 0x96, 0x49, 0x6e, 0x06, 0x71, 0xc9, + 0xfd, 0x2a, 0x39, 0x2f, 0x23, 0x91, 0x8b, 0x34, 0x6a, 0x30, 0x71, 0x9c, + 0xf5, 0xab, 0x16, 0x73, 0xa8, 0x62, 0x63, 0x40, 0x71, 0xdc, 0x9a, 0x98, + 0xbd, 0x6f, 0x62, 0xda, 0xd2, 0xc7, 0x41, 0x13, 0xf9, 0x28, 0x0e, 0xdc, + 0x80, 0x30, 0x45, 0x4e, 0xba, 0x84, 0x41, 0x32, 0xe8, 0x47, 0xb9, 0x15, + 0x8e, 0xb7, 0x92, 0x46, 0x7e, 0xe6, 0x47, 0xa8, 0x39, 0xa8, 0xa4, 0xd4, + 0xc1, 0xf9, 0x4e, 0x40, 0x27, 0x9c, 0x8a, 0xd3, 0x9d, 0x11, 0xc8, 0xcd, + 0x43, 0x79, 0x04, 0xb3, 0x86, 0x2e, 0xa0, 0x0e, 0x81, 0xaa, 0x37, 0xb9, + 0x82, 0x07, 0x38, 0x90, 0x3e, 0xef, 0xba, 0x00, 0xef, 0x55, 0x6d, 0x8f, + 0xdb, 0xa7, 0x58, 0xed, 0xed, 0xbc, 0xe9, 0x4f, 0x01, 0x40, 0xae, 0xfb, + 0xc3, 0xdf, 0x0c, 0x7c, 0xf6, 0x5b, 0xcd, 0x5c, 0xa8, 0x07, 0x91, 0x14, + 0x67, 0xa5, 0x34, 0xd3, 0xd8, 0x4d, 0x34, 0x73, 0x3a, 0x56, 0x81, 0x7d, + 0xa8, 0xc9, 0xbe, 0xde, 0x36, 0x96, 0x56, 0xea, 0xc0, 0x70, 0xbf, 0x8d, + 0x76, 0xfa, 0x4f, 0x80, 0xfc, 0xbc, 0x4d, 0xa9, 0x4e, 0xce, 0xc3, 0x9f, + 0x2d, 0x0f, 0x03, 0xea, 0x6b, 0xba, 0xb4, 0xb4, 0xb4, 0xb0, 0xb3, 0x10, + 0x5a, 0x44, 0xb1, 0x46, 0xa3, 0x18, 0x02, 0x99, 0x3b, 0xaa, 0xc5, 0xb1, + 0x0e, 0x7b, 0x9a, 0x60, 0x73, 0xdf, 0x60, 0xb6, 0x86, 0x37, 0x48, 0xa2, + 0x0a, 0x33, 0xc7, 0x1c, 0xd4, 0x78, 0xc0, 0xad, 0x19, 0x57, 0x09, 0x9a, + 0xa3, 0x27, 0x5a, 0x4c, 0x65, 0x2b, 0xe6, 0xcd, 0x94, 0xfe, 0xea, 0x6b, + 0xcf, 0xdc, 0xf2, 0x6b, 0xbf, 0xbe, 0xe6, 0xce, 0x5f, 0xf7, 0x4d, 0x79, + 0xf3, 0x9e, 0x4d, 0x79, 0xd8, 0xff, 0x00, 0xb2, 0x7a, 0x78, 0x0f, 0x85, + 0x91, 0xb9, 0xa8, 0x89, 0xa7, 0xb1, 0xa8, 0xc9, 0xaf, 0x2d, 0xb3, 0xbc, + 0x29, 0x40, 0xa6, 0xe6, 0x94, 0x54, 0x20, 0x1d, 0x8a, 0x42, 0x3d, 0x29, + 0x73, 0x41, 0x35, 0x6d, 0x81, 0x36, 0x9c, 0xdb, 0x6f, 0xe3, 0xcf, 0xad, + 0x74, 0xe2, 0x50, 0x3a, 0x0c, 0x57, 0x2b, 0x6a, 0x71, 0x77, 0x19, 0xff, + 0x00, 0x6a, 0xba, 0x03, 0x9a, 0xf5, 0xf0, 0x0e, 0xf4, 0xd9, 0xe5, 0x63, + 0x97, 0xbe, 0x8b, 0x2d, 0x20, 0x3d, 0x4e, 0x6a, 0x33, 0xb7, 0xd6, 0xa1, + 0xc1, 0x34, 0x6d, 0x35, 0xde, 0x70, 0x92, 0x1c, 0x7a, 0xd2, 0x60, 0x53, + 0x76, 0xd2, 0x60, 0xfa, 0xd0, 0x03, 0x2e, 0x00, 0x59, 0x51, 0x80, 0xeb, + 0xc5, 0x44, 0xeb, 0xf3, 0x7b, 0x1a, 0x96, 0x75, 0x26, 0x0d, 0xd9, 0xfb, + 0xa6, 0x93, 0x19, 0x50, 0x68, 0x11, 0x58, 0x82, 0xa7, 0x22, 0x94, 0x90, + 0xc3, 0x06, 0xa5, 0x65, 0x15, 0x13, 0x28, 0x14, 0xc0, 0x8d, 0x86, 0x0d, + 0x30, 0xa8, 0x71, 0x82, 0x33, 0x4f, 0x6a, 0x61, 0xeb, 0x40, 0x10, 0x8d, + 0xd1, 0x9c, 0x76, 0xa2, 0x68, 0x84, 0xf6, 0x92, 0xa6, 0x3e, 0xf2, 0x9a, + 0x97, 0x39, 0xea, 0x32, 0x29, 0x50, 0x00, 0x7e, 0x5e, 0x87, 0xb5, 0x29, + 0x6c, 0x54, 0x77, 0x3c, 0xce, 0xfc, 0x34, 0x3a, 0xab, 0x79, 0x40, 0xe4, + 0x2e, 0x30, 0x6b, 0x36, 0x43, 0xf2, 0xf3, 0xd4, 0x9a, 0xe8, 0x35, 0x98, + 0x6d, 0xce, 0xbb, 0x70, 0xb7, 0x12, 0x98, 0x80, 0x1c, 0x63, 0xbd, 0x65, + 0x5d, 0x5b, 0x5a, 0xa4, 0x5b, 0xe1, 0xb8, 0x12, 0x1c, 0xf4, 0xa1, 0x09, + 0x95, 0xd1, 0x0c, 0x87, 0x1b, 0xb6, 0x8f, 0x5a, 0x74, 0xf0, 0xf9, 0x17, + 0x0e, 0x9e, 0x66, 0xf0, 0x3a, 0x1a, 0x48, 0x4f, 0x5a, 0x5b, 0x9e, 0x67, + 0x62, 0x39, 0x15, 0x7d, 0x09, 0x19, 0x9a, 0x5d, 0xc7, 0xd6, 0x99, 0x9a, + 0x5c, 0xd4, 0x8c, 0x79, 0x39, 0xc6, 0x69, 0xc0, 0x81, 0x51, 0x83, 0x4b, + 0x9a, 0x56, 0x41, 0x72, 0x50, 0x4b, 0x77, 0xc0, 0xf4, 0xad, 0x1b, 0x0d, + 0x77, 0x51, 0xd3, 0x18, 0x1b, 0x5b, 0xb9, 0x10, 0x7a, 0x67, 0x20, 0xfe, + 0x15, 0x96, 0x0d, 0x48, 0x0e, 0x40, 0x07, 0xa0, 0xa5, 0xcb, 0x6d, 0x87, + 0xcd, 0x7d, 0xcf, 0x44, 0xd0, 0x3c, 0x4b, 0x2e, 0xb5, 0x39, 0x8e, 0xe6, + 0xd6, 0x01, 0x32, 0x0c, 0xf9, 0xd1, 0xae, 0xd2, 0x7e, 0xb5, 0xd4, 0x29, + 0xe2, 0xbc, 0xf7, 0xc1, 0x88, 0xa9, 0x7d, 0x21, 0x1d, 0x76, 0xd7, 0x7e, + 0xa7, 0x8a, 0xf9, 0x9c, 0xd2, 0xfe, 0xdf, 0xe4, 0x76, 0x50, 0xf8, 0x09, + 0x73, 0x4d, 0x26, 0x9b, 0x9a, 0x69, 0x35, 0xe7, 0x1b, 0x0a, 0x4d, 0x01, + 0xa9, 0x84, 0xd2, 0x67, 0x9a, 0xd6, 0x04, 0x32, 0xf4, 0x0f, 0xc8, 0xae, + 0x97, 0x48, 0x7f, 0xde, 0xa5, 0x72, 0x70, 0xb6, 0x08, 0xae, 0x93, 0x49, + 0x7f, 0xde, 0x27, 0x35, 0xe8, 0xd1, 0x66, 0x12, 0x3a, 0x31, 0x7f, 0x0c, + 0x64, 0x89, 0x64, 0x55, 0xc1, 0xee, 0x6a, 0x78, 0xef, 0xe0, 0x62, 0x02, + 0x96, 0x62, 0x7d, 0x05, 0x40, 0x9a, 0x2e, 0x9c, 0x8e, 0x65, 0x9a, 0x4d, + 0xe4, 0xf3, 0xf3, 0x30, 0x02, 0xb4, 0x6d, 0xe5, 0xb2, 0x4e, 0x20, 0x0a, + 0x7f, 0xdd, 0x5c, 0xfe, 0xb5, 0xf4, 0xe9, 0xca, 0xc7, 0x1d, 0xe2, 0x3e, + 0x16, 0x79, 0x3a, 0x42, 0xc0, 0x7a, 0x93, 0x56, 0xd2, 0x36, 0xf4, 0x14, + 0xc1, 0x72, 0xaa, 0xb9, 0x61, 0xb0, 0x7f, 0xb4, 0x40, 0xa8, 0x9f, 0x56, + 0xb2, 0x8f, 0xef, 0xdd, 0xdb, 0x83, 0xe9, 0xbc, 0x1a, 0x7f, 0x31, 0x73, + 0x76, 0x45, 0xe0, 0x87, 0xb7, 0x14, 0xf0, 0xbc, 0xff, 0x00, 0x80, 0xac, + 0x96, 0xf1, 0x0e, 0x9e, 0x3a, 0x5c, 0x6e, 0x3f, 0xec, 0xa1, 0xa6, 0x7f, + 0xc2, 0x43, 0x6e, 0xdc, 0x24, 0x72, 0xb1, 0xf7, 0x00, 0x54, 0xe8, 0x3b, + 0xb6, 0x6d, 0x81, 0xeb, 0x9a, 0x5c, 0x0a, 0xc8, 0x4d, 0x63, 0x7f, 0x48, + 0x0f, 0xe2, 0xd5, 0x61, 0x2f, 0x8b, 0xff, 0x00, 0xcb, 0x20, 0x3f, 0x1a, + 0x2e, 0x16, 0x66, 0x86, 0x00, 0xa3, 0x8f, 0x6a, 0xa7, 0xf6, 0x93, 0xfd, + 0xc1, 0x47, 0xda, 0x1b, 0xd1, 0x7f, 0x2a, 0x43, 0xb3, 0x2e, 0x64, 0x7a, + 0xd2, 0x12, 0x0f, 0x04, 0x8a, 0xa6, 0x67, 0x93, 0xd1, 0x7f, 0x2a, 0xa9, + 0x77, 0x2c, 0xb2, 0xc0, 0xe8, 0x70, 0x01, 0x1d, 0x85, 0x17, 0x15, 0x99, + 0x03, 0xa0, 0xd8, 0x3e, 0x95, 0x46, 0x64, 0x15, 0x6c, 0xbf, 0xc8, 0x3e, + 0x95, 0x56, 0x56, 0xaa, 0xb0, 0xee, 0x67, 0x4d, 0x1d, 0x67, 0xcd, 0x1d, + 0x69, 0xcb, 0x54, 0xa5, 0x14, 0x58, 0x57, 0x32, 0xa5, 0x8b, 0x35, 0x46, + 0x58, 0x85, 0x6b, 0x4a, 0x2a, 0x8c, 0xab, 0x4a, 0xc0, 0x65, 0x49, 0x15, + 0x55, 0x92, 0x3a, 0xd4, 0x91, 0x6a, 0xa4, 0x8b, 0x4a, 0xc3, 0x33, 0x1d, + 0x48, 0xa8, 0xd5, 0x9c, 0x1c, 0x6e, 0x6f, 0xce, 0xae, 0x48, 0x95, 0x06, + 0xde, 0x69, 0x58, 0x0e, 0x33, 0xc5, 0xea, 0xd6, 0xf7, 0x91, 0x4d, 0xb9, + 0x80, 0x91, 0x70, 0x7e, 0xa2, 0xb9, 0xbf, 0xb5, 0x9f, 0xef, 0x0f, 0xc4, + 0x57, 0x6f, 0xe3, 0x5b, 0x5f, 0x33, 0x47, 0x49, 0x80, 0xe6, 0x27, 0xfe, + 0x75, 0xe7, 0x75, 0x49, 0x01, 0x7d, 0x6e, 0xd9, 0x4e, 0x41, 0xc1, 0xf5, + 0x06, 0x9e, 0xda, 0x9c, 0xbb, 0x30, 0x08, 0xdd, 0xd8, 0x91, 0xc8, 0xac, + 0xda, 0x29, 0xd8, 0x47, 0x75, 0xe0, 0x4b, 0x99, 0x65, 0xb9, 0xb9, 0x0d, + 0x21, 0x2a, 0x14, 0x1c, 0x76, 0xcd, 0x75, 0x17, 0xa7, 0xad, 0x72, 0x3e, + 0x00, 0xe2, 0x7b, 0xb3, 0xfe, 0xc8, 0xae, 0xaa, 0xf0, 0xf5, 0xab, 0x8e, + 0xc7, 0x0d, 0x5f, 0x8d, 0x99, 0x32, 0x9e, 0x6a, 0xb9, 0x35, 0x24, 0xc7, + 0x9a, 0x87, 0x34, 0x99, 0x08, 0x5c, 0xd5, 0x7b, 0xa3, 0x98, 0x1f, 0xe9, + 0x53, 0x13, 0x50, 0x4f, 0xcc, 0x4d, 0xf4, 0xa0, 0x67, 0x24, 0x5b, 0x93, + 0x49, 0xba, 0x91, 0xbe, 0xf1, 0xfa, 0xd2, 0x56, 0x6c, 0xf4, 0x10, 0xed, + 0xd5, 0x34, 0x53, 0x84, 0x5d, 0xac, 0x48, 0x19, 0xed, 0x55, 0xea, 0x19, + 0x7e, 0xf5, 0x27, 0x1e, 0x6d, 0x0a, 0x52, 0xe5, 0xd4, 0xda, 0x8e, 0x54, + 0x70, 0x01, 0x3f, 0x42, 0xcd, 0x51, 0x9b, 0xb8, 0x54, 0xe0, 0xba, 0x7e, + 0xa6, 0xb1, 0xa8, 0xa8, 0x54, 0x51, 0x7e, 0xd8, 0xd9, 0x5b, 0xfb, 0x75, + 0xfe, 0x3f, 0xc9, 0x6a, 0x7d, 0x3a, 0xe6, 0x1b, 0x8d, 0x56, 0xda, 0x34, + 0x56, 0xdc, 0xd2, 0x0e, 0xa2, 0xb0, 0x2b, 0x77, 0xc2, 0x56, 0xc9, 0x73, + 0xaf, 0x40, 0x1c, 0x65, 0x54, 0x83, 0x4f, 0xd9, 0xa5, 0xa8, 0xbd, 0xa3, + 0x7a, 0x1e, 0x8b, 0x61, 0x0f, 0x96, 0x6e, 0x5f, 0x1f, 0x79, 0xcd, 0x48, + 0x41, 0x3d, 0x4e, 0x07, 0xa0, 0xa2, 0x18, 0x36, 0x23, 0xb2, 0xb1, 0x23, + 0x24, 0x60, 0x9a, 0x5e, 0x47, 0xf0, 0xd2, 0x88, 0xd8, 0x81, 0x54, 0x76, + 0xa7, 0xe4, 0xf6, 0x14, 0x99, 0xf6, 0xa5, 0x06, 0xa8, 0x90, 0xde, 0x45, + 0x28, 0x25, 0x8f, 0x24, 0xd2, 0xd2, 0x80, 0x72, 0x2a, 0x80, 0x79, 0xc0, + 0xc0, 0xc7, 0x41, 0x4f, 0x0c, 0x7e, 0x94, 0x8c, 0x0e, 0xf3, 0x4a, 0x05, + 0x30, 0x1e, 0x33, 0xeb, 0x4e, 0x02, 0x9a, 0x29, 0xe2, 0x80, 0x1c, 0x38, + 0xa7, 0x83, 0x51, 0x8a, 0x70, 0x34, 0x08, 0x73, 0x9c, 0x46, 0xc7, 0xd0, + 0x57, 0x98, 0x5c, 0xb6, 0xeb, 0xb9, 0x4f, 0xab, 0x9f, 0xe7, 0x5e, 0x95, + 0x70, 0xdb, 0x6d, 0xa5, 0x3e, 0x8a, 0x6b, 0xcc, 0x5c, 0xe6, 0x66, 0x3e, + 0xa4, 0xd6, 0xf4, 0x3a, 0x98, 0xd6, 0x7b, 0x12, 0xaf, 0x4a, 0x18, 0xd2, + 0x2f, 0x4a, 0x46, 0x35, 0xb9, 0x88, 0xd2, 0x79, 0xa7, 0x29, 0xa8, 0xc9, + 0xa7, 0x29, 0xa0, 0x68, 0xb4, 0x86, 0xba, 0xdf, 0x06, 0x0f, 0xf4, 0xc9, + 0x4f, 0xfb, 0x35, 0xc7, 0xa1, 0xae, 0xc7, 0xc1, 0x7f, 0xf1, 0xf1, 0x31, + 0xff, 0x00, 0x64, 0x56, 0x55, 0x3e, 0x16, 0x6b, 0x4f, 0xe2, 0x3b, 0x49, + 0x5c, 0xaa, 0x71, 0x4d, 0xb4, 0x72, 0x5c, 0xd3, 0x66, 0x6c, 0x25, 0x16, + 0x5c, 0x92, 0x6b, 0x8c, 0xe9, 0x34, 0x94, 0xe4, 0xd6, 0x95, 0x99, 0xc1, + 0x1c, 0x02, 0x3d, 0xeb, 0x31, 0x3a, 0xd5, 0xe8, 0x3b, 0x63, 0x8a, 0x43, + 0x3a, 0x3b, 0x7b, 0x8b, 0x70, 0xa3, 0x2a, 0x01, 0xfa, 0x54, 0xed, 0xa8, + 0xc3, 0x18, 0xf9, 0x46, 0x7e, 0x95, 0x8d, 0x16, 0xe6, 0xc0, 0xcd, 0x5d, + 0x82, 0xde, 0x3e, 0xac, 0x73, 0x4c, 0x9b, 0x16, 0x16, 0xe6, 0xe6, 0xe5, + 0xbe, 0x40, 0x11, 0x3d, 0x4d, 0x56, 0xd4, 0x34, 0x3b, 0x1d, 0x52, 0x16, + 0x8e, 0xea, 0x25, 0x93, 0x70, 0xc1, 0x66, 0x19, 0x35, 0x7d, 0x48, 0x03, + 0x0a, 0x30, 0x29, 0x41, 0xa2, 0xe3, 0xb1, 0xe3, 0x7e, 0x26, 0xf8, 0x6b, + 0x7b, 0xa7, 0x99, 0x67, 0xd2, 0x73, 0x34, 0x07, 0x93, 0x19, 0xe4, 0xaf, + 0xd2, 0xbc, 0xff, 0x00, 0xed, 0xd2, 0xda, 0x5c, 0x49, 0x14, 0xd1, 0xf9, + 0x72, 0x29, 0xe4, 0x15, 0xe4, 0x57, 0xd4, 0xa4, 0xf1, 0x5c, 0x87, 0x8a, + 0x7c, 0x01, 0xa5, 0xf8, 0x8e, 0x26, 0x90, 0x20, 0x82, 0xef, 0x1f, 0x2c, + 0xa8, 0x3b, 0xfb, 0xd2, 0xb2, 0xe8, 0x3d, 0x7a, 0x9e, 0x11, 0x3e, 0xac, + 0x0a, 0x36, 0xdd, 0xc5, 0xbb, 0x55, 0x69, 0x2f, 0x5d, 0xe1, 0x50, 0x38, + 0x61, 0xdf, 0x35, 0x7f, 0xc4, 0xbe, 0x15, 0xbf, 0xf0, 0xcd, 0xdf, 0x95, + 0x78, 0x18, 0xc6, 0x7e, 0xec, 0xaa, 0x38, 0x35, 0xce, 0x93, 0x1a, 0x30, + 0xc9, 0x62, 0x0d, 0x66, 0xdd, 0x86, 0xa3, 0x73, 0x49, 0x75, 0x07, 0x68, + 0xc7, 0x23, 0xde, 0xa7, 0xd2, 0x35, 0x09, 0x02, 0xcf, 0x02, 0xc8, 0x42, + 0xe7, 0x38, 0xcd, 0x63, 0x87, 0x84, 0x36, 0x02, 0xb5, 0x4b, 0x6d, 0x3a, + 0x45, 0x76, 0x02, 0x2e, 0xdd, 0xe3, 0x19, 0xcd, 0x0a, 0x40, 0xe0, 0x5a, + 0x97, 0x50, 0x99, 0x66, 0x27, 0x70, 0xf4, 0x35, 0x51, 0xee, 0x64, 0x32, + 0x67, 0x7f, 0xd2, 0x9f, 0x34, 0xb1, 0xac, 0x8c, 0x19, 0x01, 0x24, 0xe7, + 0x35, 0x08, 0xb8, 0x8b, 0xa2, 0xc5, 0xcf, 0xd6, 0x93, 0x90, 0xd4, 0x49, + 0xd6, 0xf2, 0x65, 0x4d, 0x9e, 0x67, 0x1e, 0x94, 0xd3, 0x77, 0x20, 0x4d, + 0xbb, 0xcd, 0x47, 0xe7, 0xa7, 0x04, 0x46, 0xb9, 0xef, 0x51, 0xb4, 0xca, + 0x4f, 0x28, 0x39, 0xa4, 0xe4, 0xc6, 0xa2, 0x86, 0x48, 0xc4, 0x63, 0xad, + 0x4f, 0x05, 0xcb, 0x46, 0xa0, 0xaf, 0x51, 0xd6, 0xab, 0x99, 0x14, 0x75, + 0x5f, 0x7e, 0xb5, 0x66, 0xda, 0xda, 0x5b, 0xc9, 0xc4, 0x56, 0xf0, 0xb3, + 0xbb, 0x76, 0x5a, 0x51, 0x96, 0x83, 0x71, 0x27, 0x3a, 0x94, 0xb8, 0xe0, + 0x0a, 0xe9, 0xbc, 0x2f, 0xe0, 0xad, 0x5b, 0xc4, 0x8e, 0x24, 0x74, 0x68, + 0x6d, 0x89, 0xc9, 0x91, 0xc7, 0x5f, 0xa5, 0x75, 0x5e, 0x0b, 0xf8, 0x64, + 0x09, 0x4b, 0xdd, 0x59, 0x06, 0x47, 0x2b, 0x11, 0xe8, 0x2b, 0xd6, 0xa1, + 0x86, 0x3b, 0x78, 0x52, 0x38, 0x91, 0x51, 0x00, 0xc6, 0x00, 0xad, 0xd2, + 0xee, 0x64, 0xfc, 0x8c, 0x6d, 0x07, 0xc2, 0xba, 0x76, 0x81, 0x6c, 0xa2, + 0x08, 0x83, 0x4d, 0x8f, 0x9a, 0x46, 0x19, 0x26, 0xb7, 0xa1, 0x60, 0xa4, + 0xa9, 0xe0, 0x76, 0xa4, 0xee, 0x45, 0x34, 0x8e, 0x06, 0x7a, 0xfa, 0xd0, + 0xc4, 0x89, 0xe4, 0x08, 0x01, 0x2c, 0x2a, 0x93, 0x41, 0xb8, 0x7c, 0xbd, + 0x3a, 0x93, 0x56, 0x94, 0x7c, 0xa7, 0x82, 0xc6, 0xa2, 0x79, 0x59, 0x62, + 0xc0, 0x03, 0x38, 0xe8, 0x29, 0x5c, 0xab, 0x19, 0x17, 0x67, 0x0d, 0xb0, + 0x1c, 0xd5, 0x17, 0x15, 0xa0, 0xf0, 0x48, 0xcc, 0x59, 0xc6, 0x33, 0xde, + 0xa9, 0xca, 0x81, 0x78, 0x14, 0x01, 0x9d, 0x78, 0x3f, 0xd1, 0x65, 0xff, + 0x00, 0x74, 0xd7, 0x9d, 0x49, 0xf7, 0x8f, 0xd6, 0xbd, 0x22, 0xec, 0x7f, + 0xa3, 0xc9, 0xfe, 0xe9, 0xaf, 0x37, 0x97, 0xef, 0x37, 0xd6, 0xbc, 0xdc, + 0x7f, 0xd9, 0x3d, 0x2c, 0x06, 0xd2, 0x21, 0x63, 0x51, 0x93, 0x4e, 0x63, + 0x4c, 0xaf, 0x2e, 0x47, 0x78, 0xb9, 0xa5, 0x14, 0xda, 0x70, 0xa9, 0x40, + 0x3a, 0x8a, 0x4a, 0x2a, 0x98, 0x0f, 0x80, 0xe2, 0xe6, 0x33, 0xfe, 0xd0, + 0xae, 0x93, 0x77, 0x15, 0xcc, 0xa1, 0xc4, 0xaa, 0x7d, 0xc5, 0x74, 0x39, + 0xe0, 0x57, 0xab, 0x96, 0xbf, 0x75, 0xa3, 0xcc, 0xc7, 0xee, 0x87, 0x97, + 0xa4, 0xdf, 0x4c, 0xcd, 0x26, 0x6b, 0xd2, 0x3c, 0xf1, 0xfb, 0xa9, 0x33, + 0x4c, 0x2d, 0x48, 0x5a, 0x98, 0x89, 0x1c, 0xfe, 0xe2, 0x40, 0x7d, 0x2a, + 0x24, 0x6c, 0xc4, 0xbf, 0x4a, 0x71, 0x39, 0x8d, 0xb3, 0xe9, 0x51, 0xa1, + 0xfd, 0xd8, 0xa0, 0x05, 0x3c, 0xd3, 0x1a, 0x9d, 0x9a, 0x63, 0x1e, 0x28, + 0x02, 0x36, 0x14, 0xc2, 0x08, 0xa9, 0x28, 0xc5, 0x31, 0x10, 0x9c, 0x8e, + 0xd4, 0x09, 0x36, 0xf2, 0x41, 0xe2, 0x9f, 0xde, 0x95, 0x14, 0x16, 0xe9, + 0x4a, 0x5b, 0x15, 0x1d, 0xce, 0x07, 0xc5, 0xf6, 0x9f, 0x68, 0xbe, 0x6b, + 0x88, 0xd9, 0x54, 0xed, 0x19, 0x42, 0x70, 0x4d, 0x72, 0xd0, 0xe7, 0xe6, + 0x07, 0x35, 0xd3, 0xf8, 0xef, 0x29, 0xab, 0xae, 0xde, 0x3e, 0x41, 0x5c, + 0xbc, 0x24, 0xfc, 0xd4, 0x47, 0x60, 0x96, 0xe5, 0x94, 0x24, 0x29, 0x34, + 0xd1, 0x33, 0x90, 0x77, 0x01, 0xed, 0x4c, 0x25, 0xb6, 0x70, 0x69, 0xb9, + 0xe4, 0xf6, 0xf6, 0xa0, 0x69, 0xb5, 0xb1, 0x21, 0x6c, 0x9e, 0x98, 0xa4, + 0x06, 0x9b, 0x9a, 0x33, 0x41, 0x2c, 0x90, 0x1a, 0x76, 0x6a, 0x20, 0x69, + 0x72, 0x68, 0x02, 0x60, 0x6a, 0x45, 0x3c, 0xd5, 0x70, 0xd8, 0xea, 0x2a, + 0x44, 0x91, 0x49, 0xeb, 0x40, 0x8e, 0xcb, 0xc1, 0xff, 0x00, 0xf1, 0xfb, + 0x27, 0xfb, 0xb5, 0xdd, 0xa9, 0xe2, 0xb8, 0x2f, 0x07, 0xb0, 0x37, 0xb2, + 0x80, 0x73, 0xf2, 0x8a, 0xee, 0xd4, 0xf1, 0x5f, 0x2f, 0x9a, 0x7f, 0xbc, + 0x33, 0xba, 0x87, 0xc0, 0x3f, 0x34, 0xd2, 0x68, 0x26, 0x9a, 0x4d, 0x79, + 0xa6, 0xcc, 0x42, 0x69, 0x33, 0x48, 0x4d, 0x37, 0x35, 0xa4, 0x59, 0x0c, + 0xb1, 0x1b, 0x61, 0xab, 0x7b, 0x4b, 0x93, 0x0e, 0xb5, 0xce, 0xa1, 0xe6, + 0xb6, 0x74, 0xe7, 0xc3, 0x2d, 0x77, 0xd0, 0x66, 0x32, 0x23, 0xbf, 0xd7, + 0x6f, 0x05, 0xcc, 0xb1, 0x20, 0x45, 0x01, 0xb1, 0x9d, 0xb9, 0x3f, 0xad, + 0x57, 0x5d, 0x57, 0x51, 0x90, 0x60, 0xdd, 0xca, 0x07, 0xa2, 0xb6, 0x07, + 0xe9, 0x51, 0x5e, 0xae, 0x6f, 0xa5, 0x3f, 0xed, 0x52, 0xc2, 0x83, 0x35, + 0xf4, 0xd0, 0xd6, 0x28, 0xe4, 0xb2, 0x2c, 0xa1, 0x96, 0x43, 0x97, 0x76, + 0x63, 0xee, 0x73, 0x57, 0x60, 0x88, 0xd4, 0x31, 0x2d, 0x5f, 0x84, 0x0e, + 0x2a, 0xc0, 0xb5, 0x04, 0x5d, 0x2b, 0x4e, 0xde, 0x30, 0x2a, 0x94, 0x35, + 0x7e, 0x26, 0xa2, 0xc1, 0x72, 0xfc, 0x49, 0x57, 0x63, 0xc0, 0xaa, 0x11, + 0x3d, 0x5a, 0x49, 0x05, 0x3b, 0x05, 0xcb, 0x60, 0xd2, 0xe6, 0xa1, 0x0f, + 0x9a, 0x76, 0xea, 0x2c, 0x17, 0x24, 0x26, 0xa3, 0x93, 0x05, 0x1b, 0xe9, + 0x46, 0xea, 0x8e, 0x47, 0xf9, 0x1b, 0xe9, 0x45, 0x82, 0xe6, 0x69, 0x93, + 0xe4, 0x1f, 0x4a, 0x82, 0x49, 0x3d, 0xea, 0x2f, 0x37, 0xe4, 0x1f, 0x4a, + 0x89, 0xa4, 0xa6, 0x40, 0x92, 0x3d, 0x54, 0x91, 0xa9, 0xee, 0xf5, 0x5d, + 0xde, 0x80, 0x21, 0x90, 0xd5, 0x39, 0x6a, 0xcc, 0x8d, 0x55, 0x24, 0x34, + 0x01, 0x5e, 0x4a, 0xaa, 0xe2, 0xac, 0xb9, 0xaa, 0xcf, 0x48, 0x65, 0x59, + 0x00, 0xaa, 0xc4, 0x73, 0x56, 0x9c, 0x55, 0x77, 0xe0, 0xd2, 0x19, 0x4b, + 0x5a, 0xb6, 0xfb, 0x56, 0x89, 0x75, 0x16, 0x32, 0x4a, 0x12, 0x3e, 0xb5, + 0xe4, 0x67, 0x83, 0x8a, 0xf6, 0x90, 0x03, 0xc6, 0xc8, 0x7b, 0x82, 0x2b, + 0xc7, 0x6f, 0xe1, 0xfb, 0x3d, 0xfd, 0xc4, 0x3f, 0xdc, 0x90, 0x8f, 0xd6, + 0xa9, 0x08, 0xaf, 0x9a, 0x33, 0x45, 0x14, 0x01, 0xdb, 0x78, 0x08, 0x63, + 0xed, 0x4d, 0xec, 0x2b, 0xa6, 0xbc, 0x3c, 0x1a, 0xe6, 0xfc, 0x0d, 0xc4, + 0x17, 0x27, 0xdc, 0x0a, 0xe8, 0x6e, 0xcf, 0x06, 0xad, 0x6c, 0x70, 0x55, + 0xf8, 0xd9, 0x93, 0x31, 0xe4, 0xd4, 0x39, 0xa7, 0xca, 0x79, 0xa8, 0xb3, + 0x49, 0x92, 0x85, 0xcd, 0x45, 0x37, 0xdc, 0x6f, 0xa5, 0x3c, 0x9a, 0x8e, + 0x53, 0x95, 0x34, 0x01, 0xc8, 0xc8, 0x31, 0x23, 0x7d, 0x69, 0xb5, 0x24, + 0xdc, 0x4c, 0xff, 0x00, 0x53, 0x51, 0xd4, 0x1e, 0x8a, 0xd8, 0x33, 0x51, + 0x4b, 0xf7, 0xaa, 0x4a, 0x8e, 0x4e, 0xb4, 0x20, 0x64, 0x74, 0xb4, 0x51, + 0x4c, 0x42, 0xd7, 0x53, 0xe0, 0x38, 0x8c, 0x9a, 0xfc, 0x79, 0xe0, 0x71, + 0xfa, 0x57, 0x2b, 0x5b, 0x9e, 0x17, 0xb8, 0xb9, 0xb6, 0xd6, 0x63, 0x68, + 0x18, 0x06, 0x50, 0x48, 0x0d, 0xd3, 0xa5, 0x12, 0xd8, 0x11, 0xe9, 0xf6, + 0xe7, 0x74, 0x12, 0x11, 0xfd, 0xe3, 0xfc, 0xea, 0x32, 0xe4, 0x1e, 0x95, + 0x0e, 0x9b, 0x3b, 0x4b, 0x0c, 0x81, 0xd0, 0x03, 0xbb, 0xf8, 0x7a, 0x55, + 0xad, 0xa0, 0xf6, 0xac, 0xa2, 0x6b, 0x21, 0xa2, 0x45, 0x34, 0xe0, 0xc8, + 0x7b, 0xd3, 0x0c, 0x4a, 0x69, 0x3c, 0xac, 0x55, 0x08, 0x97, 0x6e, 0x7a, + 0x1a, 0x02, 0xb6, 0xe1, 0xcd, 0x45, 0xe5, 0xb7, 0x66, 0x35, 0x22, 0x02, + 0x18, 0x12, 0x49, 0xe6, 0x9a, 0x02, 0x46, 0x67, 0x2e, 0x78, 0xa7, 0xae, + 0xee, 0xf4, 0x85, 0xfe, 0x63, 0x4a, 0x32, 0x7b, 0xf1, 0x4c, 0x07, 0x83, + 0x4e, 0xcd, 0x36, 0x8c, 0xd0, 0x22, 0x40, 0x69, 0xc0, 0xd4, 0x60, 0xd3, + 0x81, 0xa0, 0x08, 0xaf, 0x9f, 0x6d, 0x84, 0xe7, 0xfd, 0x83, 0x5e, 0x66, + 0x0f, 0xcc, 0x6b, 0xd1, 0x75, 0x67, 0xdb, 0xa5, 0x5c, 0x1f, 0xf6, 0x0d, + 0x79, 0xca, 0xfd, 0xea, 0xe8, 0xa1, 0xb3, 0x30, 0xad, 0xba, 0x27, 0x1d, + 0x29, 0xac, 0x69, 0x7b, 0x54, 0x6c, 0x6b, 0x63, 0x21, 0x33, 0x4e, 0x53, + 0xcd, 0x47, 0x9a, 0x55, 0x34, 0x86, 0x8b, 0x48, 0x6b, 0xb3, 0xf0, 0x67, + 0xfa, 0xc9, 0xcf, 0xb0, 0xae, 0x29, 0x0d, 0x76, 0xde, 0x0d, 0xff, 0x00, + 0x96, 0xe7, 0xd8, 0x56, 0x55, 0x7e, 0x13, 0x5a, 0x7f, 0x11, 0xd5, 0x4e, + 0xdf, 0x2d, 0x4b, 0x65, 0xf7, 0x6a, 0xad, 0xc3, 0x71, 0x56, 0xac, 0xfe, + 0xe5, 0x72, 0x1d, 0x26, 0x84, 0x7d, 0x6a, 0xf4, 0x26, 0xa8, 0x46, 0x79, + 0xab, 0x91, 0x1a, 0x43, 0x35, 0x21, 0x35, 0xa1, 0x06, 0x2b, 0x2e, 0x13, + 0x5a, 0x56, 0xe6, 0x80, 0x2e, 0x0e, 0x94, 0xb4, 0x83, 0xa5, 0x28, 0xa5, + 0x71, 0x8b, 0x45, 0x14, 0x0a, 0x60, 0x52, 0xd4, 0xb4, 0x7b, 0x1d, 0x5a, + 0xd5, 0xad, 0xef, 0xa0, 0x49, 0x51, 0x87, 0xf1, 0x0e, 0x95, 0xe4, 0x5e, + 0x2d, 0xf8, 0x3d, 0x2c, 0x6a, 0xf7, 0x5a, 0x24, 0x9b, 0x94, 0x73, 0xe4, + 0x3f, 0xf4, 0x35, 0xed, 0x7d, 0x05, 0x32, 0x49, 0xd1, 0x14, 0xee, 0x19, + 0xf6, 0xa6, 0x2d, 0x8f, 0x90, 0xae, 0x74, 0xed, 0x42, 0xd2, 0x76, 0x86, + 0x7b, 0x59, 0x52, 0x45, 0x38, 0x20, 0xad, 0x37, 0xfb, 0x3e, 0xfc, 0xba, + 0x48, 0x96, 0xd2, 0x1c, 0x1a, 0xf6, 0xbf, 0x8a, 0x9e, 0x1e, 0x37, 0x9a, + 0x4b, 0xea, 0xb6, 0xac, 0xd6, 0xf3, 0xc4, 0x3e, 0xe8, 0x3c, 0x3f, 0x3d, + 0x2b, 0xc0, 0x24, 0xd4, 0x6f, 0x57, 0x31, 0x99, 0xdc, 0x60, 0xf3, 0xcd, + 0x47, 0x27, 0x61, 0xb9, 0x9b, 0xff, 0x00, 0xd8, 0xfa, 0x9d, 0xc7, 0xcc, + 0x96, 0xac, 0x47, 0xbe, 0x29, 0xe9, 0xe1, 0xcd, 0x59, 0x3e, 0x66, 0xb5, + 0xce, 0x7a, 0x65, 0x85, 0x73, 0x5f, 0xda, 0x57, 0xbb, 0x76, 0xfd, 0xa6, + 0x40, 0x3d, 0x37, 0x51, 0xfd, 0xa3, 0x78, 0x46, 0x0d, 0xcc, 0x98, 0xf4, + 0xdd, 0x47, 0xb3, 0xb8, 0xb9, 0xd9, 0xd2, 0x1d, 0x0f, 0x54, 0x5f, 0x98, + 0xdb, 0x71, 0xf5, 0x15, 0x55, 0xf4, 0xab, 0xec, 0x8c, 0xc2, 0x46, 0x3d, + 0x0d, 0x62, 0x8d, 0x46, 0xf3, 0x6e, 0xdf, 0xb4, 0x49, 0x8f, 0xad, 0x69, + 0xf8, 0x6b, 0x76, 0xa3, 0xe2, 0x3b, 0x0b, 0x4b, 0x99, 0x9c, 0xc5, 0x24, + 0xa0, 0x37, 0x3d, 0xa9, 0x38, 0x5b, 0x51, 0xa9, 0xb6, 0x6e, 0xe8, 0x9e, + 0x0c, 0xd5, 0xf5, 0x8b, 0x9d, 0xa9, 0x6e, 0xd1, 0xa6, 0x79, 0x77, 0x1c, + 0x62, 0xbd, 0xb3, 0xc2, 0xde, 0x07, 0xd3, 0xb4, 0x08, 0xa3, 0x1b, 0x04, + 0xb7, 0x04, 0x65, 0xa4, 0x61, 0xde, 0xb5, 0xb4, 0xfb, 0x58, 0xad, 0xe3, + 0x48, 0x61, 0x40, 0xa8, 0x00, 0x00, 0x01, 0xe9, 0x5a, 0xd6, 0xeb, 0x99, + 0x8b, 0x76, 0x1c, 0x0a, 0xa8, 0xa4, 0x95, 0xc5, 0x26, 0xdb, 0xb1, 0x3a, + 0x26, 0xdc, 0x81, 0xc6, 0x29, 0xe0, 0x70, 0x45, 0x28, 0x5e, 0x69, 0xd8, + 0xc1, 0xeb, 0x4e, 0xe2, 0xb0, 0xcc, 0x52, 0x6f, 0x44, 0xe5, 0xf3, 0x52, + 0x62, 0x9a, 0x00, 0x07, 0x3b, 0x46, 0x69, 0x0c, 0x72, 0xbb, 0x48, 0x32, + 0x01, 0x55, 0xa6, 0x2f, 0x0b, 0xd0, 0x67, 0xd6, 0xa5, 0x04, 0xb7, 0x5f, + 0xca, 0x9a, 0x14, 0x72, 0x3d, 0xea, 0x6e, 0x55, 0x8c, 0xcb, 0xc9, 0x0e, + 0x4a, 0x8c, 0x93, 0x59, 0xb2, 0x29, 0x35, 0xaf, 0x78, 0x00, 0x3e, 0xf5, + 0x9b, 0x20, 0xa6, 0x23, 0x36, 0xe9, 0x3f, 0x71, 0x27, 0xfb, 0xa6, 0xbc, + 0xca, 0x6f, 0xbe, 0xdf, 0x5a, 0xf5, 0x3b, 0x95, 0xcc, 0x2f, 0xfe, 0xe9, + 0xaf, 0x2c, 0xb8, 0xe2, 0x57, 0xfa, 0x9a, 0xf3, 0xf1, 0xfb, 0x23, 0xd0, + 0xc0, 0x7d, 0xa2, 0xb3, 0x53, 0x69, 0x5a, 0x9b, 0x5e, 0x4b, 0x3d, 0x01, + 0x45, 0x38, 0x53, 0x69, 0x45, 0x24, 0x21, 0xd4, 0xb4, 0xda, 0x5a, 0x6c, + 0x61, 0xd1, 0x85, 0x74, 0x4b, 0xca, 0x0f, 0xa5, 0x73, 0x86, 0xba, 0x18, + 0xce, 0x62, 0x53, 0xed, 0x5e, 0x9e, 0x5a, 0xfe, 0x24, 0x79, 0xd8, 0xf5, + 0xb0, 0x1a, 0x69, 0xa5, 0x26, 0x98, 0x72, 0x6b, 0xd5, 0x3c, 0xe1, 0x49, + 0xa4, 0xce, 0x29, 0x0e, 0x6a, 0x32, 0x68, 0x11, 0x29, 0x7f, 0x95, 0xbe, + 0x95, 0x0a, 0x36, 0x63, 0x1d, 0x29, 0xc0, 0x61, 0x18, 0xfb, 0x54, 0x4a, + 0x00, 0x41, 0x8a, 0x62, 0x25, 0xdd, 0xef, 0x41, 0x39, 0x15, 0x09, 0xa2, + 0x80, 0x1e, 0x68, 0xc8, 0xc5, 0x30, 0xfd, 0x69, 0x3a, 0x53, 0x10, 0xf0, + 0x32, 0x69, 0xf1, 0x9f, 0x9c, 0x81, 0x51, 0x02, 0x4f, 0x02, 0xa6, 0x8b, + 0x00, 0xe3, 0xbd, 0x12, 0xd8, 0xa8, 0xee, 0x70, 0x5f, 0x10, 0xa2, 0xdb, + 0x7f, 0x13, 0xe3, 0xaa, 0x0a, 0xe5, 0x2c, 0x16, 0x19, 0x2e, 0x04, 0x73, + 0xc8, 0x63, 0x56, 0xe3, 0x70, 0x1d, 0x2b, 0xb1, 0xf8, 0x8d, 0x73, 0x14, + 0x97, 0x76, 0xd0, 0xa2, 0xfc, 0xf1, 0xc6, 0x37, 0x9c, 0xd7, 0x17, 0x6c, + 0xe5, 0x0b, 0x10, 0x07, 0x4e, 0xe2, 0x85, 0xb0, 0x9e, 0xe6, 0xb7, 0xd9, + 0x12, 0xc3, 0x52, 0x85, 0x5a, 0x44, 0x91, 0x04, 0xa3, 0x91, 0xd0, 0x8f, + 0x5a, 0x83, 0x58, 0x68, 0xdf, 0x56, 0xb9, 0x68, 0x80, 0x08, 0x5c, 0xe3, + 0x15, 0x59, 0x24, 0x3b, 0xd5, 0xd8, 0x93, 0x86, 0x04, 0xd1, 0x70, 0xe1, + 0xee, 0x24, 0x61, 0xd0, 0xb1, 0x34, 0x25, 0xa0, 0x37, 0xa9, 0x15, 0x14, + 0x51, 0x40, 0x05, 0x1d, 0x28, 0xa2, 0x90, 0x00, 0x72, 0x29, 0xe1, 0xd4, + 0xfd, 0xe5, 0xa8, 0xe8, 0xa0, 0x0e, 0xd7, 0xc1, 0x4e, 0x1a, 0xf6, 0x6c, + 0x0c, 0x00, 0xa2, 0xbb, 0xf5, 0x3c, 0x57, 0x9e, 0x78, 0x1c, 0xff, 0x00, + 0xa6, 0xcd, 0xfe, 0xe8, 0xaf, 0x42, 0x5e, 0x95, 0xf2, 0xd9, 0xa7, 0xfb, + 0xc3, 0x3b, 0xa8, 0xfc, 0x23, 0x89, 0xa6, 0x13, 0x4a, 0x4d, 0x31, 0x8d, + 0x79, 0xc8, 0xd1, 0x88, 0x4d, 0x37, 0x34, 0x84, 0xd2, 0x66, 0xae, 0x24, + 0xb2, 0x55, 0x3c, 0xd6, 0xa5, 0x8b, 0xe1, 0xd6, 0xb2, 0x01, 0xad, 0x0b, + 0x27, 0xf9, 0xc5, 0x76, 0x51, 0x66, 0x52, 0x16, 0xf3, 0xfe, 0x3f, 0x64, + 0xfa, 0xd3, 0xe1, 0x14, 0xcb, 0xaf, 0xf8, 0xfc, 0x7f, 0xad, 0x3e, 0x3a, + 0xfa, 0xaa, 0x7f, 0x02, 0x38, 0xd9, 0x76, 0x2a, 0xbb, 0x11, 0xaa, 0x11, + 0xd5, 0xb8, 0xcd, 0x68, 0x23, 0x46, 0x36, 0xab, 0x71, 0xbd, 0x67, 0x46, + 0xd5, 0x65, 0x1e, 0x98, 0x1a, 0x51, 0xc9, 0x56, 0x12, 0x5a, 0xcc, 0x49, + 0x2a, 0x75, 0x96, 0x98, 0x8d, 0x25, 0x94, 0xd3, 0xc4, 0xd5, 0x9e, 0x25, + 0xf7, 0xa7, 0x09, 0xa8, 0x02, 0xe9, 0x9b, 0xde, 0xa3, 0x92, 0x5f, 0x91, + 0xbe, 0x95, 0x5b, 0xce, 0xa6, 0x49, 0x2f, 0xc8, 0xdf, 0x4a, 0x00, 0xcf, + 0xf3, 0x3e, 0x41, 0xf4, 0xa8, 0xd9, 0xea, 0x2d, 0xff, 0x00, 0x20, 0xfa, + 0x53, 0x19, 0xe9, 0x08, 0x57, 0x6a, 0x81, 0xda, 0x87, 0x7a, 0x85, 0x9e, + 0x80, 0x11, 0xcd, 0x55, 0x92, 0xa5, 0x76, 0xaa, 0xee, 0x68, 0x02, 0x17, + 0xaa, 0xee, 0x6a, 0x67, 0x39, 0xa8, 0x1e, 0x90, 0xc8, 0x1c, 0xd5, 0x77, + 0x35, 0x3b, 0xd4, 0x0f, 0x40, 0x08, 0x8d, 0x83, 0x5e, 0x67, 0xe2, 0xc8, + 0x3c, 0x8f, 0x10, 0x4f, 0xc7, 0x0f, 0x86, 0x15, 0xe8, 0xfb, 0xb0, 0xd5, + 0xc4, 0xf8, 0xea, 0x1c, 0x5d, 0x5b, 0x5c, 0x0f, 0xe2, 0x52, 0xa7, 0xf0, + 0xa1, 0x01, 0xc9, 0x52, 0xd3, 0x69, 0xd4, 0xc0, 0xee, 0x3c, 0x12, 0x31, + 0x65, 0x70, 0x7f, 0xdb, 0xad, 0xdb, 0xa3, 0xf2, 0x9a, 0xc3, 0xf0, 0x77, + 0x1a, 0x64, 0xc7, 0xd6, 0x4f, 0xe9, 0x5b, 0x37, 0x27, 0x28, 0x6a, 0xd6, + 0xc7, 0x9f, 0x53, 0xe3, 0x66, 0x54, 0xa7, 0x9a, 0x8b, 0x34, 0xe9, 0x4f, + 0xcc, 0x6a, 0x3c, 0xd2, 0x64, 0xa1, 0x49, 0xa6, 0x3f, 0xdd, 0x34, 0xec, + 0xd3, 0x1f, 0xee, 0xd0, 0x33, 0x95, 0xb8, 0xff, 0x00, 0x8f, 0x89, 0x3f, + 0xde, 0x35, 0x15, 0x4b, 0x73, 0xff, 0x00, 0x1f, 0x32, 0x7f, 0xbc, 0x6a, + 0x2a, 0x86, 0x7a, 0x11, 0xd8, 0x33, 0x51, 0xc9, 0xd6, 0x9f, 0x51, 0xc9, + 0xd6, 0x84, 0x36, 0x32, 0x8a, 0x28, 0xaa, 0x10, 0xaa, 0x70, 0x46, 0x6b, + 0xb8, 0xf0, 0x65, 0xe5, 0x8c, 0xb3, 0x5c, 0x2d, 0xcc, 0x71, 0x89, 0x4a, + 0x10, 0x99, 0x1c, 0x91, 0x8a, 0xe1, 0x6b, 0xae, 0xf8, 0x77, 0x60, 0x75, + 0x3f, 0x14, 0xc1, 0x68, 0x3a, 0xc9, 0xf2, 0xfe, 0x75, 0x2f, 0x61, 0xa3, + 0xb6, 0xd2, 0x14, 0x7d, 0x9a, 0x60, 0x98, 0xda, 0x1c, 0xe3, 0x15, 0x33, + 0x06, 0x15, 0x32, 0x59, 0x1b, 0x09, 0x2e, 0xed, 0xf3, 0xfe, 0xae, 0x52, + 0xb5, 0x16, 0xee, 0xc6, 0xb3, 0x89, 0xa4, 0x81, 0x5f, 0xd4, 0x54, 0x99, + 0xcd, 0x42, 0xdc, 0xf7, 0xa6, 0x87, 0x2b, 0xde, 0xa8, 0x44, 0xc6, 0x84, + 0xde, 0x5c, 0x64, 0x71, 0x9a, 0x60, 0x98, 0xfb, 0x53, 0xe3, 0x76, 0x69, + 0x17, 0x38, 0xc5, 0x50, 0x87, 0x6f, 0x00, 0x9c, 0xad, 0x38, 0x3e, 0x4d, + 0x37, 0xbf, 0xde, 0xa5, 0x00, 0x7b, 0x50, 0x31, 0xe0, 0xd3, 0xf3, 0x51, + 0xd2, 0x8a, 0x62, 0x24, 0x06, 0x9c, 0x0d, 0x47, 0x9a, 0x50, 0x69, 0x01, + 0x47, 0x5d, 0x6d, 0xba, 0x3d, 0xc1, 0xff, 0x00, 0x66, 0xbc, 0xfd, 0x7a, + 0xd7, 0x75, 0xe2, 0x26, 0xc6, 0x8f, 0x2f, 0xbe, 0x05, 0x70, 0xa9, 0xd6, + 0xba, 0x68, 0xec, 0x73, 0xd6, 0xdc, 0x98, 0x9e, 0x2a, 0x26, 0x34, 0xf2, + 0x78, 0xa8, 0x98, 0xd6, 0xa6, 0x62, 0x66, 0x9c, 0x0d, 0x47, 0x4e, 0x53, + 0x48, 0xa4, 0x5a, 0x8e, 0xbb, 0x6f, 0x07, 0x70, 0x93, 0x1f, 0xa5, 0x70, + 0xf1, 0x1a, 0xec, 0xfc, 0x2b, 0x2f, 0x97, 0x0c, 0xa6, 0xb2, 0xab, 0xf0, + 0x9a, 0xd2, 0xf8, 0x8e, 0x9a, 0x76, 0xe4, 0x0a, 0xbf, 0x6b, 0xfe, 0xac, + 0x56, 0x33, 0x4d, 0xbd, 0xc5, 0x6c, 0x5a, 0x9f, 0xdd, 0x8a, 0xe3, 0x3a, + 0x51, 0x7a, 0x3e, 0xb5, 0x72, 0x2a, 0xa5, 0x15, 0x5d, 0x87, 0xad, 0x03, + 0x2f, 0xc3, 0x5a, 0xb6, 0xc2, 0xb2, 0xe0, 0x19, 0x22, 0xb6, 0xad, 0x23, + 0xca, 0x8a, 0x43, 0x48, 0x98, 0x74, 0xa3, 0x35, 0x24, 0x89, 0xb4, 0x54, + 0x19, 0xa4, 0x31, 0xf9, 0xa7, 0x02, 0x0d, 0x30, 0x53, 0x86, 0x29, 0x8a, + 0xc3, 0xb6, 0xe6, 0x8f, 0x25, 0x07, 0xcc, 0xdf, 0xad, 0x1b, 0xb1, 0xd2, + 0xa3, 0x62, 0xd2, 0x71, 0xda, 0x98, 0xac, 0x79, 0xdf, 0xc6, 0x3b, 0x93, + 0x17, 0x82, 0x66, 0xda, 0x76, 0xef, 0x70, 0xa3, 0x1f, 0x5a, 0xf9, 0x99, + 0xb2, 0x4e, 0x4f, 0x26, 0xbe, 0x85, 0xf8, 0xeb, 0x3e, 0xcf, 0x0d, 0xdb, + 0x42, 0x0f, 0xde, 0x98, 0x7f, 0x23, 0x5f, 0x3d, 0x1a, 0xa8, 0xec, 0x44, + 0x84, 0xa4, 0xa5, 0xa2, 0x99, 0x22, 0x63, 0x8c, 0xd6, 0x96, 0x83, 0x3f, + 0xd9, 0xb5, 0xdb, 0x29, 0x81, 0xc6, 0xd9, 0x94, 0xfe, 0xb5, 0x9c, 0x3e, + 0xe1, 0xfa, 0xd4, 0x96, 0xcf, 0xe5, 0xdc, 0xc4, 0xff, 0x00, 0xdd, 0x60, + 0x7f, 0x5a, 0x4f, 0x54, 0xc6, 0xb7, 0x3e, 0xbe, 0xb2, 0x20, 0xa2, 0x3f, + 0x51, 0xb4, 0x56, 0x9d, 0xb2, 0xfc, 0xb9, 0xf5, 0xac, 0x1d, 0x0a, 0x7f, + 0xb5, 0x68, 0xd6, 0x4e, 0xbc, 0x99, 0x22, 0x56, 0x27, 0xf0, 0xae, 0x8e, + 0x25, 0xda, 0x80, 0x56, 0x71, 0x7a, 0x1a, 0x49, 0x6a, 0x49, 0x46, 0x29, + 0x71, 0x4e, 0xdb, 0x45, 0xc2, 0xc3, 0x28, 0xa7, 0xe2, 0x9b, 0x8a, 0x2e, + 0x16, 0x10, 0x1f, 0x53, 0x42, 0x72, 0xcd, 0xf5, 0xa4, 0x20, 0xf6, 0xa7, + 0x42, 0x99, 0x66, 0xfa, 0xd4, 0xb2, 0x91, 0x5e, 0xe9, 0x01, 0x53, 0xeb, + 0x59, 0x32, 0x2f, 0x26, 0xba, 0x66, 0xb7, 0x05, 0x2b, 0x1e, 0xe2, 0xd7, + 0x0e, 0xd8, 0xa3, 0x60, 0xdc, 0xc8, 0x9d, 0x7f, 0x72, 0xff, 0x00, 0x43, + 0x5e, 0x4d, 0x77, 0xc4, 0xf2, 0x0f, 0xf6, 0x8d, 0x7b, 0x44, 0x96, 0xdf, + 0xb9, 0x6f, 0xa1, 0xaf, 0x19, 0xd4, 0x06, 0xdb, 0xc9, 0x97, 0xd1, 0xcd, + 0x71, 0x63, 0xbe, 0x14, 0x77, 0x60, 0x77, 0x91, 0x49, 0x8f, 0x34, 0xda, + 0x56, 0x3c, 0xd3, 0x6b, 0xc8, 0x67, 0x78, 0xe1, 0x4a, 0x29, 0xa2, 0x96, + 0x90, 0x0e, 0xcd, 0x2e, 0x69, 0xb9, 0xa3, 0x34, 0x80, 0x52, 0x6b, 0xa0, + 0x80, 0xe6, 0xde, 0x33, 0xfe, 0xc8, 0xae, 0x74, 0x9a, 0xe8, 0x2d, 0x0e, + 0x6d, 0x22, 0xff, 0x00, 0x74, 0x57, 0xa5, 0x96, 0xbf, 0x7a, 0x47, 0x0e, + 0x39, 0x7b, 0xa8, 0x90, 0xae, 0x69, 0x38, 0x14, 0xe2, 0x70, 0x6a, 0x26, + 0x39, 0x24, 0x57, 0xae, 0x79, 0xa3, 0x5d, 0x89, 0xe0, 0x52, 0x6d, 0xa5, + 0x03, 0x14, 0x8c, 0xd8, 0xa6, 0x21, 0xae, 0x7e, 0x47, 0xfa, 0x54, 0x48, + 0x54, 0xa0, 0x22, 0xa5, 0xc6, 0x62, 0x7f, 0xa5, 0x57, 0x89, 0x41, 0x8c, + 0x61, 0xa8, 0x13, 0x24, 0x38, 0xa0, 0x9a, 0x69, 0x51, 0x48, 0x4f, 0x1d, + 0x69, 0x88, 0x09, 0xa3, 0xad, 0x34, 0x91, 0x4a, 0xa6, 0x98, 0x87, 0x83, + 0xb0, 0x53, 0xe2, 0x38, 0x3b, 0x8d, 0x42, 0x4e, 0x4f, 0x35, 0x20, 0xe5, + 0x40, 0xf7, 0xa5, 0x2d, 0x8a, 0x8e, 0xe7, 0x9d, 0x78, 0xdd, 0xb7, 0x6b, + 0x92, 0x60, 0xf4, 0x51, 0x5c, 0xe4, 0x3f, 0xc5, 0x5d, 0x2f, 0x8d, 0xa2, + 0x0b, 0xa9, 0x2c, 0x80, 0xf2, 0xc3, 0x06, 0xb9, 0xc8, 0x01, 0xd9, 0x27, + 0x1d, 0x85, 0x38, 0xec, 0x0f, 0x71, 0xcd, 0xfe, 0xa4, 0xd2, 0x0e, 0x94, + 0x3f, 0xfa, 0xa3, 0xf5, 0xa4, 0x5e, 0x94, 0x08, 0x75, 0x14, 0x51, 0x40, + 0x05, 0x25, 0x14, 0x50, 0x02, 0x52, 0x52, 0x9a, 0x4a, 0x04, 0x76, 0x1e, + 0x06, 0xff, 0x00, 0x8f, 0xe9, 0xbf, 0xdd, 0x15, 0xe8, 0x6b, 0xd2, 0xbc, + 0xeb, 0xc0, 0xff, 0x00, 0xf1, 0xfd, 0x2f, 0xfb, 0xa2, 0xbd, 0x11, 0x7a, + 0x57, 0xca, 0xe6, 0x9f, 0xef, 0x0c, 0xef, 0xa3, 0xf0, 0x8a, 0x6a, 0x36, + 0x34, 0xf6, 0x35, 0x13, 0x1a, 0xf3, 0x51, 0xa3, 0x10, 0xd2, 0x52, 0x1a, + 0x2a, 0xd1, 0x23, 0x81, 0xab, 0x96, 0x8d, 0x89, 0x05, 0x51, 0x06, 0xad, + 0x5b, 0x37, 0xef, 0x05, 0x75, 0x51, 0x7a, 0x99, 0xc8, 0xb7, 0x75, 0xff, + 0x00, 0x1f, 0x4d, 0x4e, 0x8e, 0x99, 0x70, 0x73, 0x70, 0x4d, 0x39, 0x0d, + 0x7d, 0x65, 0x1f, 0xe1, 0xaf, 0x43, 0x89, 0xee, 0x5a, 0x8c, 0xd5, 0xa8, + 0xda, 0xa9, 0xa1, 0xab, 0x08, 0xd5, 0xa8, 0x8b, 0xa8, 0xf5, 0x3a, 0x3d, + 0x52, 0x56, 0xa9, 0x95, 0xe8, 0x11, 0x75, 0x5e, 0xa5, 0x57, 0xf7, 0xaa, + 0x4a, 0xf5, 0x20, 0x7a, 0x60, 0x5c, 0x12, 0x7b, 0xd3, 0xfc, 0xca, 0xa4, + 0x1c, 0xd3, 0xb7, 0xd0, 0x05, 0xb3, 0x25, 0x31, 0xe4, 0xf9, 0x1b, 0xe9, + 0x55, 0xfc, 0xca, 0x6b, 0xbf, 0xc8, 0x7e, 0x94, 0x08, 0xaa, 0x1f, 0xe5, + 0x1f, 0x4a, 0x61, 0x7a, 0x8c, 0x1f, 0x94, 0x7d, 0x29, 0xa5, 0xa8, 0x01, + 0x59, 0xaa, 0x26, 0x6e, 0x28, 0x66, 0xa8, 0xd8, 0xd0, 0x03, 0x59, 0xaa, + 0x07, 0x6a, 0x91, 0x8d, 0x42, 0xd4, 0x01, 0x19, 0x35, 0x0b, 0x9a, 0x91, + 0x8d, 0x42, 0xe6, 0x90, 0xc8, 0x9a, 0xa0, 0x7a, 0x99, 0xaa, 0x27, 0xa0, + 0x0a, 0xce, 0x2b, 0x98, 0xf1, 0x9c, 0x7e, 0x66, 0x97, 0x1c, 0x98, 0xe5, + 0x1f, 0xf9, 0xd7, 0x52, 0xe2, 0xb2, 0xf5, 0x7b, 0x1f, 0xb7, 0xe9, 0xd3, + 0x42, 0x3e, 0xf1, 0x5c, 0x8f, 0xad, 0x00, 0x79, 0x7d, 0x28, 0xa4, 0x65, + 0x28, 0xe5, 0x58, 0x60, 0x83, 0x82, 0x29, 0x45, 0x30, 0x3b, 0xaf, 0x0a, + 0x1d, 0x9a, 0x4b, 0x1f, 0x57, 0xad, 0x69, 0x9f, 0x72, 0x1a, 0xca, 0xf0, + 0xcc, 0x6c, 0xda, 0x42, 0x00, 0x0e, 0x0b, 0x1a, 0xd7, 0xb8, 0x89, 0x61, + 0xb7, 0x67, 0x6e, 0xb8, 0xe2, 0xb4, 0x5b, 0x1e, 0x6c, 0xfe, 0x26, 0x62, + 0xc8, 0x7e, 0x63, 0x4c, 0xcd, 0x23, 0x36, 0x5a, 0x93, 0x35, 0x20, 0x87, + 0x66, 0x9a, 0xdd, 0x0d, 0x2e, 0x69, 0xad, 0xd0, 0xd0, 0x07, 0x2f, 0x77, + 0xff, 0x00, 0x1f, 0x52, 0x7d, 0x6a, 0x1a, 0x9e, 0xf7, 0xfe, 0x3e, 0xa4, + 0xfa, 0xd5, 0x7a, 0x86, 0x7a, 0x11, 0xd9, 0x06, 0x6a, 0x37, 0xeb, 0x52, + 0x66, 0xa3, 0x7e, 0xb4, 0x22, 0x86, 0xa8, 0xcb, 0x01, 0x4e, 0x72, 0xa0, + 0xe1, 0x47, 0x4e, 0xfe, 0xb4, 0x44, 0x0b, 0x4a, 0xa1, 0x7a, 0xd3, 0x18, + 0xfc, 0xc7, 0xeb, 0x4c, 0x40, 0x1b, 0x07, 0x38, 0x06, 0xbb, 0x3f, 0x87, + 0x77, 0x8b, 0xa7, 0xf8, 0xaa, 0xda, 0xf9, 0x46, 0x04, 0x67, 0x71, 0x15, + 0xc5, 0x57, 0x4b, 0xe1, 0x40, 0xe2, 0x69, 0x64, 0x03, 0xe5, 0x0b, 0xd6, + 0x94, 0xb6, 0x29, 0x6e, 0x7b, 0x37, 0x88, 0x6d, 0xa2, 0xb7, 0x9e, 0x29, + 0x23, 0x6d, 0xc6, 0xe6, 0x15, 0x9d, 0xb9, 0xee, 0xdc, 0x9a, 0xc0, 0x61, + 0xb8, 0x7a, 0x1a, 0x51, 0x7d, 0xf6, 0x8b, 0x28, 0x7c, 0xc9, 0x37, 0x3a, + 0x20, 0x5c, 0x7a, 0x01, 0x51, 0x0b, 0x85, 0xee, 0x2b, 0x38, 0x6c, 0x5c, + 0xdd, 0xd8, 0x10, 0xdd, 0x29, 0x8c, 0x8d, 0x52, 0xf9, 0xe9, 0x48, 0x67, + 0x5f, 0x4a, 0xb2, 0x48, 0x36, 0xb7, 0xae, 0x2a, 0x68, 0x54, 0x07, 0xce, + 0xf2, 0x70, 0x29, 0x7c, 0xc8, 0xcf, 0x24, 0xe2, 0x95, 0x19, 0x00, 0x62, + 0x09, 0xa6, 0x02, 0x8e, 0xbd, 0x4d, 0x48, 0xa4, 0x7b, 0xd3, 0x16, 0x44, + 0x3d, 0xe9, 0xfb, 0x96, 0x81, 0x8f, 0xcd, 0x2e, 0x69, 0x9b, 0xa9, 0x43, + 0x73, 0x4c, 0x44, 0x99, 0xa7, 0x54, 0x79, 0xa7, 0x03, 0x48, 0x0c, 0x8f, + 0x13, 0x36, 0x34, 0x92, 0x3d, 0x58, 0x57, 0x14, 0x9d, 0x6b, 0xb1, 0xf1, + 0x4b, 0x7f, 0xc4, 0xb1, 0x47, 0xab, 0x8a, 0xe3, 0x93, 0xad, 0x75, 0x51, + 0xf8, 0x4e, 0x6a, 0xbf, 0x10, 0xf6, 0x35, 0x11, 0x34, 0xf6, 0x35, 0x11, + 0x35, 0xa1, 0x08, 0x33, 0x4e, 0x5a, 0x66, 0x69, 0x41, 0xa4, 0x51, 0x6a, + 0x23, 0xcd, 0x76, 0x9e, 0x15, 0x8c, 0x3d, 0xb4, 0xa4, 0xfa, 0xd7, 0x13, + 0x11, 0xe6, 0xbb, 0x7f, 0x09, 0x9c, 0x5a, 0x4b, 0xf5, 0xac, 0x6b, 0x7c, + 0x26, 0xd4, 0xbe, 0x23, 0x64, 0x26, 0x25, 0xc0, 0xad, 0xbb, 0x61, 0x84, + 0x15, 0x8a, 0xa7, 0x33, 0x56, 0xc4, 0x2d, 0x85, 0x15, 0xc8, 0xce, 0x94, + 0x5e, 0x88, 0xf3, 0x57, 0x62, 0x6e, 0x6b, 0x3a, 0x36, 0xf9, 0xaa, 0xe4, + 0x47, 0x9a, 0x43, 0x35, 0x6d, 0xdb, 0x91, 0x5b, 0x36, 0xb2, 0x61, 0x45, + 0x60, 0x42, 0xd8, 0x22, 0xb5, 0x20, 0x93, 0x0b, 0x48, 0x68, 0xd0, 0x96, + 0x6c, 0xad, 0x55, 0x59, 0x77, 0x64, 0x54, 0x72, 0x4b, 0x95, 0xaa, 0xe9, + 0x26, 0x1c, 0xfd, 0x69, 0x88, 0xd1, 0x49, 0x37, 0x0f, 0x7a, 0x90, 0x35, + 0x51, 0x57, 0xc3, 0x7d, 0x6a, 0xc2, 0xc9, 0x40, 0x16, 0x37, 0x52, 0x96, + 0xc0, 0xa8, 0x83, 0x8a, 0x46, 0x7a, 0x00, 0xf1, 0xef, 0x8e, 0x72, 0xc6, + 0x6d, 0xac, 0xe2, 0x95, 0x98, 0x0c, 0x92, 0xb8, 0xee, 0xde, 0xf5, 0xe1, + 0x06, 0xbd, 0xe3, 0xe3, 0x84, 0x22, 0x4d, 0x1a, 0xda, 0xe3, 0x8f, 0x96, + 0x60, 0xbe, 0xfc, 0x83, 0x5e, 0x0e, 0x6a, 0xa1, 0xb1, 0x9c, 0xf7, 0x12, + 0x8a, 0x29, 0xc8, 0x37, 0x9d, 0xb8, 0xea, 0x7a, 0xfa, 0x55, 0x37, 0x62, + 0x46, 0x76, 0x3f, 0x5a, 0x72, 0x7d, 0xe1, 0x48, 0xeb, 0xb5, 0x99, 0x7d, + 0x0d, 0x2c, 0x7f, 0x7d, 0x7e, 0xb4, 0x01, 0xf5, 0x57, 0x80, 0xe4, 0x12, + 0x78, 0x4f, 0x4f, 0x20, 0xe7, 0x11, 0x81, 0x5d, 0x8a, 0x60, 0x0a, 0xe0, + 0xfe, 0x1c, 0x5c, 0x09, 0x7c, 0x21, 0x66, 0x54, 0x63, 0x68, 0xdb, 0xf9, + 0x57, 0x73, 0x1b, 0x71, 0xcd, 0x62, 0xb6, 0x36, 0x7b, 0x93, 0x03, 0x4b, + 0x9a, 0x66, 0xe1, 0x46, 0xfa, 0x00, 0x79, 0x34, 0x6e, 0xa8, 0x4c, 0x80, + 0x53, 0x0c, 0xd4, 0x58, 0x2e, 0x4c, 0x5a, 0xa4, 0xb7, 0x70, 0x18, 0xfd, + 0x6a, 0x8b, 0xca, 0x71, 0xc5, 0x32, 0x29, 0x88, 0x72, 0x33, 0x9c, 0x1a, + 0x4d, 0x0c, 0xdd, 0x69, 0x06, 0xda, 0xc9, 0xb9, 0x95, 0x55, 0xc8, 0xa9, + 0x44, 0xd9, 0x5a, 0xa3, 0x78, 0x3b, 0x8e, 0xa6, 0x95, 0xee, 0x34, 0xac, + 0x2b, 0xc8, 0x0c, 0x2d, 0xf4, 0x35, 0xe2, 0x7a, 0xa7, 0x1a, 0x85, 0xc7, + 0xfb, 0xe7, 0xf9, 0xd7, 0xaf, 0x34, 0x85, 0x62, 0x61, 0x9e, 0xd5, 0xe4, + 0x3a, 0xaf, 0xfc, 0x84, 0x2e, 0x3f, 0xdf, 0x35, 0xc7, 0x8e, 0xf8, 0x11, + 0xdb, 0x82, 0x7a, 0xb3, 0x35, 0xba, 0xd2, 0x66, 0x94, 0x9e, 0x69, 0x2b, + 0xc8, 0x67, 0x78, 0xa2, 0x97, 0x34, 0x94, 0x52, 0x01, 0xd9, 0xa4, 0x26, + 0x93, 0x38, 0xa6, 0x96, 0xa0, 0x42, 0x9a, 0xe8, 0x2c, 0x0e, 0x6c, 0xa3, + 0xfa, 0x57, 0x3d, 0x9c, 0xd6, 0xee, 0x9c, 0xe3, 0xec, 0x28, 0x3d, 0x09, + 0xae, 0xfc, 0xbd, 0xfe, 0xf1, 0xaf, 0x23, 0x8f, 0x19, 0xf0, 0x22, 0xd3, + 0x02, 0x4d, 0x33, 0x18, 0x34, 0x33, 0x7a, 0x53, 0x73, 0x5e, 0xc1, 0xe6, + 0x03, 0x12, 0x01, 0xa8, 0xb3, 0xce, 0x4d, 0x3d, 0x8e, 0x45, 0x46, 0x45, + 0x31, 0x31, 0xe8, 0x43, 0x12, 0x3b, 0x62, 0xa9, 0x84, 0x74, 0x5e, 0x08, + 0xab, 0x31, 0xb6, 0xd7, 0x15, 0x1b, 0x8f, 0x98, 0xe3, 0x8e, 0x69, 0x88, + 0x84, 0x48, 0xc7, 0x83, 0x4e, 0x0d, 0xd4, 0x1a, 0x46, 0x4a, 0x40, 0x08, + 0x34, 0x00, 0xa7, 0xd6, 0x95, 0x5a, 0x9b, 0xcd, 0x28, 0xaa, 0x10, 0xfc, + 0xe7, 0x8a, 0x96, 0x3f, 0xbc, 0x2a, 0x10, 0x3b, 0xd5, 0x9b, 0x49, 0xbc, + 0x9b, 0xa8, 0xdf, 0x6a, 0xb1, 0x52, 0x1b, 0x0c, 0x32, 0x0f, 0xd6, 0x94, + 0xb6, 0x1c, 0x77, 0x38, 0x3f, 0x1d, 0x5b, 0xfe, 0xfe, 0x39, 0x50, 0x31, + 0x23, 0x3b, 0xce, 0x38, 0x1e, 0x95, 0x8b, 0xe1, 0xf7, 0xb4, 0x06, 0xe9, + 0x2f, 0x18, 0x2a, 0x34, 0x78, 0x07, 0x1d, 0xeb, 0x73, 0xc7, 0xd7, 0x44, + 0xea, 0x6e, 0x98, 0x40, 0xae, 0x37, 0xe0, 0x0c, 0x60, 0x93, 0xda, 0xb8, + 0xd8, 0x9b, 0x01, 0xbd, 0xe8, 0x5b, 0x03, 0xdc, 0x9a, 0x70, 0xa1, 0x18, + 0x29, 0xc8, 0xdd, 0xc5, 0x31, 0x7a, 0x50, 0xff, 0x00, 0xea, 0xbf, 0x1a, + 0x45, 0xe9, 0x4c, 0x43, 0xa8, 0xa4, 0xa2, 0x98, 0x0b, 0x49, 0x9a, 0x4c, + 0xd2, 0x13, 0x40, 0x85, 0xa4, 0xa0, 0xd2, 0x66, 0x90, 0x1d, 0x7f, 0x82, + 0x0f, 0xfa, 0x74, 0xbf, 0xee, 0x8a, 0xf4, 0x45, 0xe9, 0x5e, 0x73, 0xe0, + 0x83, 0xfe, 0x9f, 0x27, 0xfb, 0xa2, 0xbd, 0x15, 0x7a, 0x57, 0xca, 0xe6, + 0xbf, 0xc7, 0x67, 0x7d, 0x1f, 0x84, 0x18, 0xd4, 0x64, 0xd3, 0xda, 0xa2, + 0x26, 0xbc, 0xe4, 0x68, 0xc4, 0xa2, 0x93, 0x34, 0x55, 0x90, 0x19, 0xab, + 0x10, 0x1c, 0x38, 0xaa, 0xd5, 0x2c, 0x27, 0x0e, 0x2b, 0x6a, 0x4f, 0x52, + 0x24, 0x68, 0x4e, 0x7f, 0x7b, 0x9f, 0x6a, 0x72, 0x1a, 0x64, 0xc7, 0xe7, + 0x1f, 0x4a, 0x14, 0xd7, 0xd7, 0x50, 0xfe, 0x1c, 0x7d, 0x0e, 0x29, 0x6e, + 0x5a, 0x43, 0x53, 0xa9, 0xaa, 0x88, 0x6a, 0x75, 0x6a, 0xd4, 0x45, 0xa5, + 0x6a, 0x95, 0x5a, 0xaa, 0xab, 0x54, 0x81, 0xa9, 0x81, 0x68, 0x3d, 0x3c, + 0x3d, 0x55, 0x0f, 0x4f, 0x0d, 0x40, 0x8b, 0x42, 0x4a, 0x76, 0xf1, 0x55, + 0x77, 0x52, 0x86, 0x34, 0xc0, 0xb0, 0x5e, 0x9a, 0xef, 0xf2, 0x9f, 0xa5, + 0x45, 0xb8, 0xd3, 0x5d, 0xbe, 0x43, 0xf4, 0xa0, 0x44, 0x21, 0x86, 0xd1, + 0xf4, 0xa6, 0x96, 0xa8, 0xc3, 0x7c, 0xa3, 0xe9, 0x48, 0x4d, 0x03, 0x14, + 0xb5, 0x30, 0x9a, 0x42, 0x69, 0x84, 0xd0, 0x21, 0x18, 0xd4, 0x6c, 0x69, + 0xc4, 0xd4, 0x4d, 0x40, 0x0c, 0x63, 0x51, 0x35, 0x48, 0xc6, 0xa2, 0x6a, + 0x43, 0x23, 0x6a, 0x85, 0x85, 0x4a, 0xd5, 0x13, 0x50, 0x04, 0x2f, 0x51, + 0x74, 0x35, 0x33, 0x54, 0x0d, 0x40, 0x1e, 0x73, 0xe2, 0x9b, 0x0f, 0xb1, + 0x6a, 0xee, 0xca, 0x31, 0x1c, 0xbf, 0x38, 0xfe, 0xb5, 0x8c, 0x2b, 0xbc, + 0xf1, 0x75, 0x9f, 0xda, 0x74, 0xb1, 0x3a, 0x8c, 0xbc, 0x27, 0x3f, 0x85, + 0x70, 0x62, 0x98, 0x1e, 0x8b, 0xe1, 0x36, 0xc6, 0x88, 0x83, 0xdc, 0xd5, + 0x8d, 0x4e, 0x6d, 0xcb, 0xb7, 0xb5, 0x52, 0xf0, 0xcb, 0x6d, 0xd1, 0x10, + 0xfb, 0x9a, 0x5b, 0xd9, 0x37, 0x13, 0x5a, 0x74, 0x3c, 0xd9, 0xfc, 0x4c, + 0xa2, 0x7a, 0xd2, 0x66, 0x90, 0x9e, 0x68, 0xa9, 0x10, 0xec, 0xd2, 0x1e, + 0x94, 0x66, 0x90, 0xf4, 0xa1, 0x0c, 0xe6, 0x6f, 0xbf, 0xe3, 0xee, 0x4f, + 0xad, 0x56, 0xcd, 0x58, 0xbf, 0xff, 0x00, 0x8f, 0xc9, 0x3e, 0xb5, 0x5a, + 0xa1, 0xee, 0x7a, 0x10, 0xf8, 0x50, 0xb9, 0xa6, 0x39, 0xe6, 0x9d, 0x4c, + 0x7e, 0xb4, 0x22, 0x8b, 0x1a, 0x7a, 0xef, 0xbb, 0x19, 0xe8, 0xa0, 0x93, + 0x55, 0x9f, 0xef, 0xb7, 0xd6, 0xad, 0x58, 0x12, 0xad, 0x29, 0x1d, 0x4a, + 0x15, 0xfc, 0xe9, 0x5a, 0xc0, 0x64, 0x9f, 0xb4, 0x47, 0x47, 0x50, 0xe8, + 0x52, 0xae, 0x97, 0xc3, 0x0c, 0x45, 0xbd, 0xce, 0x0e, 0x3f, 0xfd, 0x55, + 0x8d, 0xf6, 0x10, 0x7a, 0x5c, 0x47, 0x5b, 0xda, 0x34, 0x5f, 0x66, 0xb5, + 0x91, 0x32, 0x09, 0x60, 0x4e, 0x45, 0x29, 0x6c, 0x35, 0xb9, 0xda, 0x69, + 0x6c, 0x8f, 0x69, 0xbd, 0x46, 0x59, 0x78, 0x6a, 0xb2, 0xe1, 0x71, 0x90, + 0x2b, 0x07, 0xc2, 0xf7, 0x8a, 0x75, 0x1b, 0xcb, 0x56, 0x3c, 0x10, 0x19, + 0x45, 0x6d, 0xb3, 0x18, 0xe5, 0x65, 0xfe, 0x12, 0x78, 0xa8, 0x89, 0x72, + 0x1a, 0x59, 0x7d, 0x29, 0x37, 0x2f, 0xa5, 0x3c, 0xe0, 0xfa, 0x53, 0x5a, + 0x3f, 0x4a, 0xb2, 0x46, 0xed, 0xc9, 0xe0, 0xd4, 0xe8, 0x08, 0x8c, 0xe4, + 0xf7, 0xaa, 0xfb, 0x48, 0x3c, 0xe6, 0xa4, 0x52, 0xbe, 0x5f, 0x2c, 0x47, + 0x34, 0xc0, 0x93, 0x6d, 0x3c, 0x71, 0x51, 0xa9, 0xff, 0x00, 0x6b, 0x34, + 0xbb, 0xb3, 0x40, 0x12, 0xe6, 0x94, 0x1a, 0x8c, 0x1a, 0x76, 0x69, 0x81, + 0x28, 0x34, 0xa0, 0xd4, 0x60, 0xd3, 0x81, 0xa0, 0x0c, 0x4f, 0x14, 0x9f, + 0xf4, 0x18, 0xc7, 0xfb, 0x55, 0xc9, 0xa5, 0x75, 0x1e, 0x2a, 0x6f, 0xf4, + 0x68, 0x47, 0xfb, 0x55, 0xcb, 0xa7, 0x4a, 0xe9, 0xa5, 0xf0, 0x9c, 0xd5, + 0x7e, 0x20, 0x63, 0x51, 0xe6, 0x9c, 0xc6, 0x99, 0x56, 0x4a, 0x0a, 0x50, + 0x69, 0xb4, 0xb4, 0x14, 0x58, 0x88, 0xf3, 0x5d, 0xbf, 0x85, 0xb8, 0xb2, + 0x97, 0xfd, 0xea, 0xe1, 0xa2, 0x3c, 0xd7, 0x6d, 0xe1, 0x83, 0x8b, 0x19, + 0x3f, 0xde, 0xac, 0x6b, 0x7c, 0x26, 0xb4, 0xbe, 0x23, 0x76, 0x23, 0x99, + 0xab, 0x5e, 0x23, 0xc0, 0xac, 0x78, 0x0e, 0x65, 0xad, 0x68, 0xcf, 0x02, + 0xb9, 0x19, 0xd2, 0x8b, 0x71, 0x1f, 0x9b, 0xf0, 0xab, 0xb1, 0x1e, 0x6b, + 0x3e, 0x36, 0xf9, 0xaa, 0xe4, 0x6d, 0x48, 0x66, 0x8c, 0x4d, 0xcd, 0x5e, + 0x8a, 0x4f, 0x92, 0xb2, 0xa3, 0x7e, 0x6a, 0xe2, 0x3f, 0xcb, 0x48, 0x0b, + 0x85, 0xfe, 0x53, 0x50, 0x07, 0xc4, 0x94, 0xdd, 0xfc, 0x54, 0x45, 0xbe, + 0x60, 0x69, 0xa1, 0x32, 0xf8, 0x7c, 0x8a, 0x99, 0x24, 0xe2, 0xa8, 0xab, + 0xd4, 0xaa, 0xf4, 0xc0, 0xbb, 0xe6, 0x53, 0x1a, 0x5e, 0xbe, 0xd5, 0x5c, + 0xc9, 0x51, 0x3c, 0xbc, 0x62, 0x80, 0x3c, 0x9b, 0xe3, 0x55, 0xcb, 0xf9, + 0x16, 0xb0, 0x67, 0xe4, 0x2f, 0xbb, 0xf4, 0xaf, 0x18, 0x35, 0xeb, 0xdf, + 0x19, 0x33, 0x20, 0xb6, 0x7c, 0x80, 0x15, 0xb6, 0x90, 0x7a, 0xe6, 0xbc, + 0x84, 0xd5, 0x43, 0x62, 0x27, 0xb8, 0x95, 0x24, 0x6c, 0xa8, 0x32, 0x6a, + 0x3a, 0x71, 0xff, 0x00, 0x51, 0xee, 0x1a, 0x89, 0x09, 0x16, 0x6f, 0x27, + 0x82, 0xe1, 0x50, 0xc3, 0x0f, 0x96, 0x54, 0x61, 0x8e, 0x7e, 0xf1, 0xaa, + 0x82, 0x93, 0x3c, 0x62, 0x81, 0x4d, 0x2b, 0x68, 0x23, 0xe9, 0x4f, 0x85, + 0xf2, 0x8f, 0xf8, 0x42, 0xed, 0x30, 0x7d, 0x7f, 0x9d, 0x77, 0x51, 0xcb, + 0x8e, 0xf5, 0xe6, 0x9f, 0x0a, 0xe4, 0x27, 0xc2, 0x10, 0x0c, 0xf4, 0x27, + 0xf9, 0xd7, 0xa0, 0x46, 0xe4, 0xd6, 0x51, 0xd8, 0xd6, 0x4f, 0x53, 0x43, + 0xcd, 0xf7, 0xa3, 0xcc, 0xaa, 0xc0, 0x9c, 0x53, 0x81, 0x34, 0xc5, 0x72, + 0x52, 0xf9, 0xa6, 0x34, 0x98, 0xa6, 0x13, 0x51, 0x97, 0xa0, 0x64, 0x8c, + 0xfc, 0x72, 0x6a, 0x18, 0x26, 0x2b, 0x24, 0x80, 0x1f, 0xe2, 0xa6, 0xb4, + 0xbe, 0x95, 0x04, 0x52, 0x1f, 0xb4, 0xc9, 0x83, 0xd4, 0x03, 0x48, 0x66, + 0xba, 0x4d, 0x9e, 0xb4, 0x93, 0x90, 0xcb, 0x54, 0xc4, 0xa4, 0x0e, 0x6a, + 0x4f, 0x30, 0x11, 0xef, 0x50, 0xca, 0x46, 0x7d, 0xc3, 0xed, 0x2c, 0x3d, + 0x6b, 0xca, 0x75, 0x5f, 0xf9, 0x08, 0xdc, 0x7f, 0xbe, 0x6b, 0xd4, 0xaf, + 0x0f, 0xcc, 0x6b, 0xcb, 0x75, 0x6f, 0xf9, 0x08, 0xcf, 0xfe, 0xf9, 0xae, + 0x4c, 0x77, 0xf0, 0xd1, 0xd9, 0x82, 0xf8, 0x99, 0x9a, 0x7a, 0xd2, 0x50, + 0x68, 0xaf, 0x1c, 0xf4, 0x05, 0xa3, 0x34, 0x52, 0x52, 0x10, 0x86, 0x93, + 0x69, 0x34, 0xec, 0x52, 0x8e, 0xb4, 0x20, 0x19, 0xb1, 0x85, 0x6d, 0x69, + 0xa4, 0x9b, 0x40, 0x3d, 0xcd, 0x65, 0x93, 0x81, 0x5a, 0x7a, 0x77, 0xfc, + 0x7a, 0x0f, 0xa9, 0xae, 0xec, 0x07, 0xf1, 0x5f, 0xa1, 0xc9, 0x8c, 0xfe, + 0x19, 0x70, 0x8c, 0x77, 0x14, 0xd3, 0xd6, 0x92, 0x83, 0xd6, 0xbd, 0x93, + 0xcc, 0x10, 0xd2, 0x11, 0x9a, 0x53, 0x4d, 0x90, 0xec, 0x43, 0x4c, 0x43, + 0x23, 0x3b, 0xa6, 0x1e, 0x80, 0xd2, 0x4d, 0xb9, 0x5c, 0x90, 0x32, 0xa4, + 0xd4, 0xb6, 0xe9, 0x82, 0xa3, 0xf3, 0xa4, 0x98, 0x91, 0x2b, 0x63, 0xa1, + 0x34, 0xc4, 0x57, 0x0f, 0x9e, 0xd4, 0x31, 0xf4, 0xa5, 0xc6, 0x7b, 0x54, + 0x6c, 0x08, 0x34, 0x08, 0x0b, 0x73, 0x49, 0x9e, 0x69, 0x0d, 0x00, 0x73, + 0x9a, 0x62, 0x1f, 0xbb, 0x02, 0x9f, 0x6e, 0x49, 0x94, 0x67, 0xa5, 0x57, + 0xea, 0xd5, 0x62, 0x11, 0xdf, 0xa5, 0x12, 0xd8, 0x71, 0xdc, 0xf3, 0xef, + 0x1b, 0x3e, 0xfd, 0x5f, 0x39, 0xfe, 0x1a, 0xe6, 0xe2, 0x3d, 0x45, 0x6e, + 0xf8, 0xb4, 0xe7, 0x54, 0xeb, 0x9f, 0x96, 0xb0, 0x63, 0xea, 0x68, 0x5b, + 0x09, 0xee, 0x48, 0xff, 0x00, 0x72, 0x90, 0x74, 0xa1, 0xfe, 0xe8, 0xa0, + 0x74, 0xa6, 0x0c, 0x5a, 0x29, 0x28, 0xa6, 0x20, 0xcd, 0x26, 0x68, 0xa4, + 0xa4, 0x00, 0x68, 0xef, 0x49, 0x49, 0x40, 0x1d, 0x77, 0x82, 0x4f, 0xfc, + 0x4c, 0x5f, 0xfd, 0xda, 0xf4, 0x65, 0xe9, 0x5e, 0x6d, 0xe0, 0xa3, 0x8d, + 0x49, 0xbf, 0xdd, 0xaf, 0x49, 0x5f, 0xbb, 0x5f, 0x2d, 0x9a, 0xff, 0x00, + 0x1c, 0xef, 0xa1, 0xf0, 0x88, 0xc6, 0xa2, 0x3d, 0x69, 0xec, 0x6a, 0x32, + 0x6b, 0xce, 0x45, 0xb1, 0x28, 0xa3, 0x34, 0x95, 0x44, 0x85, 0x49, 0x19, + 0xf9, 0x85, 0x45, 0x4e, 0x43, 0xf3, 0x0a, 0xd6, 0x9e, 0xe4, 0xc8, 0xd2, + 0x94, 0xfc, 0xcb, 0xfe, 0xed, 0x0a, 0x69, 0x92, 0x1c, 0xed, 0xff, 0x00, + 0x76, 0x95, 0x6b, 0xeb, 0x70, 0xff, 0x00, 0xc2, 0x8f, 0xa1, 0xc5, 0x2d, + 0xcb, 0x0a, 0x6a, 0x55, 0x35, 0x59, 0x4d, 0x4a, 0xad, 0x5b, 0x92, 0x58, + 0x06, 0xa4, 0x0d, 0x50, 0x03, 0x4f, 0x0d, 0x40, 0x16, 0x03, 0x53, 0xc3, + 0x55, 0x60, 0xd4, 0xf0, 0xd4, 0xc4, 0x58, 0xdd, 0x4b, 0xba, 0xab, 0xee, + 0x34, 0xed, 0xc6, 0x80, 0x25, 0xdd, 0x48, 0xef, 0xf2, 0x9f, 0xa5, 0x47, + 0xbb, 0x34, 0xd6, 0x3f, 0x29, 0xfa, 0x50, 0x03, 0x01, 0xf9, 0x47, 0xd2, + 0x90, 0x9a, 0x60, 0x6f, 0x94, 0x7d, 0x29, 0x09, 0xa0, 0x05, 0x26, 0x98, + 0x4d, 0x04, 0xd3, 0x49, 0xa0, 0x42, 0x13, 0x51, 0x93, 0x4e, 0x63, 0x51, + 0x93, 0x4c, 0x06, 0x9a, 0x8d, 0xa9, 0xec, 0x6a, 0x33, 0x48, 0x06, 0x35, + 0x44, 0xd5, 0x23, 0x54, 0x4c, 0x68, 0x19, 0x13, 0x54, 0x0f, 0x53, 0xb5, + 0x42, 0xc2, 0x80, 0x2a, 0x5c, 0xc4, 0x27, 0x82, 0x48, 0x98, 0x64, 0x3a, + 0x90, 0x6b, 0xcc, 0x2e, 0xad, 0xde, 0xd6, 0xea, 0x48, 0x5c, 0x61, 0x91, + 0xb1, 0x5e, 0xaa, 0xc2, 0xb9, 0x3f, 0x17, 0x69, 0xbb, 0xa3, 0x5b, 0xf8, + 0x97, 0x95, 0xf9, 0x64, 0xc7, 0xa7, 0xad, 0x08, 0x0b, 0x9a, 0x01, 0xc6, + 0x83, 0x1e, 0x3b, 0x93, 0xfc, 0xe9, 0x2e, 0x5b, 0x9e, 0xb4, 0xcd, 0x15, + 0xb6, 0xe8, 0x50, 0xfe, 0x3f, 0xce, 0x99, 0x33, 0x65, 0xab, 0x4e, 0x87, + 0x99, 0x3f, 0x89, 0x91, 0xd1, 0x49, 0x45, 0x48, 0x0a, 0x0d, 0x07, 0xa1, + 0xa4, 0xa0, 0x9e, 0x29, 0xa0, 0x39, 0xab, 0xff, 0x00, 0xf8, 0xfc, 0x93, + 0xeb, 0x55, 0xaa, 0xc5, 0xff, 0x00, 0xfc, 0x7e, 0x3f, 0xd6, 0xab, 0x54, + 0x3d, 0xcf, 0x46, 0x1f, 0x0a, 0x16, 0xa3, 0x6e, 0xb4, 0xfa, 0x63, 0x75, + 0xa1, 0x14, 0x4f, 0x0f, 0xcb, 0x6b, 0x2b, 0x77, 0x24, 0x0a, 0xac, 0xc4, + 0xe4, 0xf3, 0xde, 0xac, 0x67, 0x6d, 0x90, 0x1f, 0xde, 0x7a, 0x4c, 0xdb, + 0xff, 0x00, 0x12, 0xbe, 0x7b, 0xd3, 0x02, 0xbe, 0x48, 0xef, 0x5b, 0xda, + 0x14, 0xcf, 0x2b, 0x4b, 0xbc, 0xf0, 0xa8, 0x14, 0x56, 0x47, 0xfa, 0x37, + 0xa3, 0xd6, 0xbe, 0x8b, 0xe5, 0x62, 0x63, 0x1e, 0x7a, 0x73, 0x9a, 0x89, + 0x6c, 0x35, 0xb9, 0x6f, 0x48, 0xbc, 0xfb, 0x27, 0x8b, 0xe3, 0x24, 0xe1, + 0x5f, 0xe4, 0x3f, 0x8d, 0x77, 0xd7, 0x24, 0x3b, 0x63, 0xa1, 0xea, 0x2b, + 0xca, 0x6f, 0xe4, 0x30, 0x6a, 0xe2, 0x41, 0xd5, 0x48, 0x35, 0xea, 0x22, + 0x51, 0x71, 0x61, 0x0c, 0xe8, 0xbd, 0x54, 0x1c, 0xd4, 0x2e, 0x86, 0x8f, + 0xa8, 0xc5, 0x6c, 0x8f, 0xe7, 0x41, 0x2c, 0x39, 0x04, 0xd2, 0x1e, 0x46, + 0xf1, 0xd0, 0xf5, 0xa4, 0xce, 0xda, 0xd0, 0x80, 0xfb, 0x41, 0xe8, 0x46, + 0x6a, 0x54, 0x3b, 0xe2, 0x3c, 0x77, 0xa8, 0xba, 0x73, 0xda, 0xa5, 0x89, + 0xd4, 0x21, 0x22, 0x98, 0x0a, 0x16, 0x9e, 0x01, 0xa0, 0x30, 0x3d, 0x05, + 0x29, 0x20, 0x0e, 0xb4, 0x00, 0xb9, 0xa7, 0x03, 0x51, 0xe7, 0x26, 0x9c, + 0x0d, 0x30, 0x24, 0xcd, 0x38, 0x54, 0x79, 0xa7, 0x66, 0x90, 0x18, 0x1e, + 0x2a, 0x3f, 0xba, 0x80, 0x7b, 0x9a, 0xe6, 0x97, 0xa5, 0x74, 0x5e, 0x28, + 0x39, 0x8e, 0x0f, 0xa9, 0xae, 0x74, 0x7d, 0xda, 0xea, 0xa5, 0xf0, 0x9c, + 0xb5, 0x3e, 0x21, 0x8c, 0x79, 0xa6, 0xd2, 0x9e, 0xb4, 0xda, 0xb1, 0x21, + 0x68, 0xa4, 0xa2, 0x91, 0x44, 0xf1, 0x1e, 0x6b, 0xb5, 0xf0, 0xd1, 0xff, + 0x00, 0x41, 0x93, 0xfd, 0xea, 0xe2, 0x22, 0x3c, 0xd7, 0x6b, 0xe1, 0xb3, + 0xfe, 0x82, 0xff, 0x00, 0xef, 0x56, 0x55, 0xbe, 0x13, 0x5a, 0x7f, 0x11, + 0xbd, 0x6d, 0xfe, 0xb2, 0xb5, 0x10, 0xf0, 0x2b, 0x2e, 0xdb, 0xef, 0x56, + 0x8a, 0x1e, 0x95, 0xc8, 0x74, 0x16, 0x90, 0xf3, 0x56, 0xe3, 0x6e, 0x2a, + 0x8c, 0x66, 0xac, 0xa3, 0x71, 0x48, 0x65, 0xf8, 0xdb, 0x91, 0x56, 0x91, + 0xf8, 0xaa, 0x11, 0xb7, 0x4a, 0xb0, 0xad, 0xf2, 0x9a, 0x00, 0xb5, 0xbf, + 0x8e, 0xb4, 0xc2, 0xdd, 0x7e, 0xb5, 0x1e, 0xea, 0x09, 0xe4, 0x8f, 0x6a, + 0x62, 0x2c, 0xa3, 0xf1, 0x52, 0x07, 0xaa, 0x68, 0xd5, 0x20, 0x6a, 0x00, + 0xb3, 0xe6, 0x71, 0x4c, 0x2f, 0xce, 0x6a, 0x2d, 0xfe, 0xf4, 0xcf, 0x33, + 0x2e, 0x3d, 0x07, 0x34, 0xc5, 0x73, 0xc8, 0x7e, 0x31, 0x5c, 0x99, 0x2f, + 0xad, 0xe2, 0xec, 0xbf, 0xce, 0xbc, 0xb2, 0xbb, 0xff, 0x00, 0x89, 0xd7, + 0x1e, 0x7e, 0xaa, 0x79, 0xfb, 0xb2, 0xb2, 0xfe, 0x82, 0xb8, 0x0a, 0xa8, + 0xec, 0x4c, 0xb7, 0x0a, 0x70, 0xff, 0x00, 0x52, 0xdf, 0x51, 0x4c, 0xa7, + 0xff, 0x00, 0xcb, 0x13, 0xec, 0x69, 0x30, 0x44, 0x74, 0x51, 0x40, 0xa6, + 0x23, 0xdf, 0x3e, 0x13, 0x4c, 0x92, 0x78, 0x60, 0x0e, 0xe8, 0xc4, 0x11, + 0x5e, 0x88, 0x8e, 0x31, 0x5e, 0x47, 0xf0, 0x72, 0xe7, 0x36, 0x37, 0x96, + 0xf9, 0xe5, 0x58, 0x36, 0x2b, 0xd4, 0x91, 0xeb, 0x38, 0xa3, 0x46, 0x68, + 0x09, 0x78, 0xa5, 0xf3, 0x6a, 0xa0, 0x7f, 0x94, 0x52, 0xef, 0xa7, 0x60, + 0x27, 0x69, 0x3d, 0xea, 0x32, 0xf5, 0x11, 0x7a, 0x8d, 0x9e, 0x90, 0x12, + 0x33, 0xd4, 0x2b, 0x28, 0x5b, 0xa3, 0x9c, 0xfd, 0xda, 0x69, 0x7e, 0x4d, + 0x46, 0x8d, 0x99, 0xfe, 0x61, 0xfc, 0x34, 0x98, 0xcb, 0xfe, 0x68, 0x61, + 0x47, 0x9b, 0xef, 0x55, 0x0b, 0x05, 0xe8, 0x69, 0x3c, 0xce, 0x07, 0x35, + 0x2c, 0xa4, 0x2d, 0xd3, 0x66, 0xbc, 0xcb, 0x58, 0xe3, 0x52, 0x9f, 0xfd, + 0xe3, 0x5e, 0x8f, 0x2b, 0x64, 0x1a, 0xf3, 0x8d, 0x6f, 0x8d, 0x4a, 0x7f, + 0xf7, 0xab, 0x8f, 0x1b, 0xfc, 0x33, 0xb7, 0x05, 0xf1, 0xb3, 0x2c, 0xd1, + 0x41, 0xa2, 0xbc, 0x63, 0xbc, 0x5a, 0x31, 0x45, 0x14, 0x80, 0x28, 0x14, + 0x51, 0x4c, 0x05, 0x63, 0xf2, 0xd6, 0xae, 0x9f, 0xff, 0x00, 0x1e, 0x6b, + 0xf5, 0x35, 0x90, 0xdd, 0x2b, 0x5a, 0xcb, 0x8b, 0x44, 0x15, 0xe8, 0x65, + 0xff, 0x00, 0x1b, 0x39, 0x31, 0x9f, 0x02, 0x2c, 0xd2, 0x67, 0xa5, 0x21, + 0x34, 0x57, 0xae, 0x79, 0x83, 0x8f, 0x4a, 0x86, 0x73, 0x9c, 0x01, 0x52, + 0x92, 0x36, 0x9a, 0x8a, 0x25, 0xf3, 0x25, 0xdd, 0xda, 0x98, 0x8b, 0x0b, + 0xfb, 0xb4, 0x5f, 0xef, 0x31, 0xc5, 0x24, 0xa0, 0x09, 0x0a, 0x91, 0x49, + 0xbb, 0xcc, 0xbb, 0x45, 0x1d, 0x16, 0x9d, 0x76, 0x0a, 0xca, 0xc5, 0x7a, + 0x53, 0x11, 0x03, 0xa6, 0x33, 0x8a, 0x61, 0x5c, 0x9a, 0x77, 0x98, 0x48, + 0xc1, 0xa3, 0x19, 0x34, 0x08, 0x88, 0xaf, 0x5a, 0x8d, 0xce, 0xd1, 0x8e, + 0xf5, 0x3c, 0x84, 0x28, 0x35, 0x4b, 0x26, 0x47, 0xa6, 0x22, 0x54, 0x1d, + 0xbd, 0x7a, 0xd4, 0x93, 0xc9, 0xe5, 0x5a, 0x48, 0xfe, 0x9c, 0x53, 0x57, + 0xe5, 0x1e, 0xf5, 0x47, 0x5b, 0xb8, 0xfb, 0x36, 0x96, 0x46, 0x79, 0x77, + 0x55, 0xfd, 0x69, 0x4b, 0x62, 0x91, 0xc3, 0xf8, 0xa0, 0xe7, 0x51, 0x07, + 0xfd, 0x81, 0x58, 0x91, 0xf7, 0xad, 0x7f, 0x12, 0x1c, 0xdf, 0xaf, 0xfb, + 0x82, 0xb1, 0xd3, 0xbd, 0x35, 0xb1, 0x2f, 0x71, 0xed, 0xf7, 0x45, 0x03, + 0xa5, 0x0d, 0xf7, 0x45, 0x20, 0xe9, 0x4c, 0x18, 0xb4, 0x66, 0x92, 0x8a, + 0x04, 0x19, 0xa4, 0xa2, 0x92, 0x80, 0x0a, 0x28, 0xa4, 0xa0, 0x0e, 0xa7, + 0xc1, 0x87, 0x1a, 0xae, 0x3f, 0xd9, 0xaf, 0x4a, 0x5f, 0xbb, 0x5e, 0x63, + 0xe0, 0xe3, 0x8d, 0x5d, 0x7f, 0xdd, 0x35, 0xe9, 0xcb, 0xf7, 0x45, 0x7c, + 0xc6, 0x6d, 0xfc, 0x6f, 0x91, 0xdd, 0x43, 0xe1, 0x1a, 0xe6, 0xa3, 0x34, + 0xe7, 0x35, 0x1d, 0x79, 0xa8, 0xb6, 0x2d, 0x25, 0x14, 0x95, 0x42, 0x03, + 0x4e, 0x53, 0xf3, 0x0a, 0x6d, 0x00, 0xf3, 0x57, 0x0d, 0xc9, 0x66, 0x83, + 0x1e, 0x13, 0xe9, 0x4a, 0xb4, 0xc2, 0x7e, 0x54, 0xfa, 0x53, 0x81, 0xaf, + 0xad, 0xc3, 0x7f, 0x06, 0x3e, 0x87, 0x14, 0xb7, 0x26, 0x5a, 0x90, 0x1a, + 0x84, 0x54, 0x82, 0xb7, 0x24, 0x98, 0x35, 0x38, 0x35, 0x44, 0x0d, 0x38, + 0x1a, 0x62, 0x26, 0x06, 0x9e, 0x0d, 0x42, 0x0d, 0x38, 0x1a, 0x00, 0x97, + 0x34, 0xb9, 0xa8, 0x83, 0x52, 0xee, 0xa0, 0x09, 0x33, 0x48, 0xc7, 0xe5, + 0x3f, 0x4a, 0x6e, 0xea, 0x46, 0x3f, 0x29, 0xfa, 0x53, 0x01, 0x83, 0xee, + 0x8f, 0xa5, 0x06, 0x9a, 0x0f, 0xca, 0x3e, 0x94, 0x13, 0x40, 0x01, 0xa6, + 0x9a, 0x0b, 0x53, 0x49, 0xa0, 0x42, 0x1a, 0x61, 0xa5, 0x26, 0x9a, 0x69, + 0x80, 0xc3, 0x51, 0x9a, 0x91, 0x8d, 0x46, 0x69, 0x00, 0xc6, 0xa8, 0x9a, + 0xa5, 0x35, 0x19, 0xa6, 0x04, 0x4d, 0x51, 0x35, 0x4c, 0x6a, 0x26, 0x14, + 0x80, 0x81, 0xaa, 0xbc, 0xf1, 0x24, 0xf0, 0x3c, 0x32, 0x0c, 0xab, 0x8c, + 0x1a, 0xb2, 0xc2, 0xa2, 0x65, 0xa0, 0x66, 0x0c, 0x30, 0x1b, 0x1b, 0x05, + 0xb7, 0x6e, 0xaa, 0x48, 0xfc, 0x33, 0x55, 0x58, 0xe4, 0xd5, 0xfd, 0x4d, + 0x8f, 0x9d, 0xb4, 0x7a, 0x56, 0x76, 0x0d, 0x59, 0xe6, 0x4f, 0x49, 0x30, + 0xcd, 0x19, 0xa4, 0xc5, 0x18, 0xa0, 0x91, 0x68, 0x3d, 0x29, 0x33, 0x41, + 0xe9, 0x40, 0xce, 0x6a, 0xfc, 0xff, 0x00, 0xa6, 0x3f, 0xd6, 0xaa, 0xe6, + 0xac, 0xea, 0x1f, 0xf1, 0xfa, 0xf5, 0x57, 0x35, 0x0f, 0x73, 0xd2, 0x87, + 0xc2, 0x87, 0x66, 0x93, 0x61, 0x6e, 0x94, 0x95, 0x34, 0x38, 0xda, 0x6a, + 0x64, 0xec, 0x8d, 0x12, 0x16, 0x44, 0x61, 0x04, 0x43, 0xea, 0x4d, 0x46, + 0x6d, 0xe5, 0x6e, 0x44, 0x6c, 0x47, 0xa8, 0x15, 0x6a, 0x4c, 0x70, 0x3d, + 0x16, 0x9f, 0x15, 0xcc, 0xd1, 0xa0, 0x09, 0x21, 0x02, 0xa7, 0x9e, 0xc1, + 0xca, 0x50, 0x36, 0xf3, 0x7f, 0xcf, 0x36, 0xfc, 0xab, 0x67, 0x44, 0x8d, + 0xe3, 0x86, 0x72, 0xcb, 0x8e, 0x95, 0x08, 0xbd, 0xb8, 0xfe, 0xff, 0x00, + 0xe9, 0x57, 0xad, 0x2e, 0x64, 0x7b, 0x79, 0x37, 0xf2, 0x49, 0x00, 0x1a, + 0x4e, 0x57, 0xd1, 0x0d, 0x2b, 0x6e, 0x65, 0xea, 0x5c, 0x6a, 0x6c, 0xc5, + 0x49, 0x03, 0x15, 0xe8, 0xde, 0x1b, 0xb9, 0xfb, 0x46, 0x86, 0x88, 0xdc, + 0x6c, 0xe3, 0x07, 0xd2, 0xbc, 0xfa, 0xf1, 0xc9, 0xb9, 0x76, 0x7c, 0x0a, + 0xe8, 0x3c, 0x15, 0x7c, 0x24, 0xb9, 0x92, 0xd1, 0xdc, 0x8d, 0xcb, 0x91, + 0xf8, 0x52, 0x57, 0xb6, 0xa5, 0x75, 0x3a, 0x8e, 0x11, 0x8f, 0xf7, 0x4f, + 0x5a, 0x42, 0x31, 0xf2, 0x9f, 0xc0, 0xd3, 0xe4, 0x50, 0x92, 0xb2, 0x76, + 0xa8, 0xcf, 0x4d, 0xad, 0xd4, 0x74, 0x35, 0xaa, 0x24, 0x60, 0x7c, 0x70, + 0x6a, 0x54, 0x21, 0x90, 0xe0, 0x62, 0xa1, 0x65, 0xee, 0x3a, 0x53, 0xe1, + 0x3f, 0x2b, 0x66, 0x98, 0x89, 0x46, 0x45, 0x29, 0x34, 0x80, 0x8a, 0x33, + 0xcd, 0x30, 0x1e, 0x0d, 0x3c, 0x54, 0x42, 0xa4, 0x5a, 0x00, 0x7f, 0x7a, + 0x52, 0x71, 0x4d, 0xef, 0x4a, 0x4d, 0x20, 0x30, 0x3c, 0x50, 0x7e, 0x48, + 0x3f, 0x1a, 0xe7, 0x7a, 0x2d, 0x74, 0x1e, 0x27, 0x3c, 0x5b, 0xfe, 0x35, + 0xcf, 0x31, 0xe2, 0xba, 0xa9, 0xfc, 0x27, 0x2d, 0x4f, 0x8c, 0x61, 0xa4, + 0xa2, 0x93, 0x35, 0x60, 0x85, 0xa2, 0x92, 0x8a, 0x43, 0x44, 0xb1, 0xf5, + 0xae, 0xd3, 0xc3, 0x7f, 0xf1, 0xe2, 0xdf, 0xef, 0x57, 0x12, 0x9d, 0x6b, + 0xb6, 0xf0, 0xe7, 0xfc, 0x78, 0x1f, 0xf7, 0xab, 0x2a, 0xdf, 0x09, 0xb5, + 0x2d, 0xcd, 0xfb, 0x6f, 0xbd, 0x57, 0xd0, 0xf4, 0xac, 0xfb, 0x7e, 0xa6, + 0xaf, 0x21, 0xe9, 0x5c, 0x87, 0x41, 0x65, 0x0f, 0x26, 0xac, 0xc6, 0x78, + 0xaa, 0x8a, 0x7e, 0x63, 0x56, 0x10, 0xf1, 0x48, 0x0b, 0x91, 0x9e, 0x2a, + 0x74, 0x6e, 0xb5, 0x55, 0x0f, 0x02, 0xa6, 0x43, 0xcd, 0x30, 0x2c, 0x6e, + 0xe2, 0x86, 0x6f, 0x9c, 0x7d, 0x2a, 0x30, 0x78, 0xa5, 0x63, 0xd0, 0xd0, + 0x21, 0xc1, 0xb0, 0x71, 0x52, 0x6e, 0xa8, 0xbb, 0xd3, 0xb3, 0xc5, 0x31, + 0x0e, 0x2d, 0x4d, 0x0d, 0x84, 0x66, 0x34, 0xd3, 0xcf, 0x14, 0xcb, 0xa6, + 0xd9, 0x6f, 0x26, 0x3f, 0x85, 0x09, 0xfd, 0x28, 0x06, 0x78, 0x37, 0x8c, + 0xe6, 0x6b, 0x9b, 0xa6, 0x93, 0x04, 0xe6, 0xe2, 0x4f, 0xd0, 0x81, 0x5c, + 0x9e, 0xd3, 0xe8, 0x6b, 0xd0, 0x6f, 0xad, 0x21, 0x92, 0xea, 0x18, 0xde, + 0x4f, 0x95, 0xe5, 0x6c, 0x9f, 0x73, 0xcd, 0x58, 0x7f, 0x0d, 0x5a, 0xb4, + 0x78, 0x8f, 0xcc, 0x0f, 0xea, 0xd8, 0xc5, 0x17, 0x64, 0xb3, 0xcd, 0x70, + 0x7d, 0x0d, 0x38, 0x64, 0x23, 0x0c, 0x1f, 0x5a, 0xee, 0xe5, 0xf0, 0xab, + 0xba, 0x10, 0x92, 0x85, 0x3e, 0xbb, 0x6a, 0xb1, 0xf0, 0x65, 0xc3, 0x0c, + 0x1b, 0xac, 0x8f, 0x75, 0xa2, 0xed, 0x86, 0x88, 0xe3, 0x02, 0x13, 0x19, + 0x6c, 0x8e, 0x0f, 0x4a, 0x6d, 0x75, 0x17, 0xfe, 0x15, 0x92, 0xca, 0x2d, + 0xe6, 0x65, 0x6e, 0xa7, 0x18, 0xec, 0x2b, 0x11, 0x56, 0x05, 0x53, 0xe6, + 0x29, 0x39, 0xe8, 0x47, 0x6a, 0x77, 0x12, 0xd4, 0xee, 0xfe, 0x11, 0x5d, + 0x18, 0xf5, 0xe9, 0xe0, 0xcf, 0x12, 0x45, 0x9c, 0x7d, 0x2b, 0xda, 0xb3, + 0x83, 0x5e, 0x23, 0xf0, 0xde, 0x16, 0x83, 0x5e, 0x8e, 0xe5, 0x47, 0xee, + 0xc8, 0x31, 0x92, 0x4f, 0xad, 0x7b, 0x60, 0xe5, 0x6a, 0x51, 0x57, 0x26, + 0x53, 0xf2, 0x51, 0xba, 0x9a, 0xa7, 0xe4, 0x14, 0xd2, 0x69, 0x80, 0xf2, + 0xdc, 0xd3, 0x09, 0xa6, 0x96, 0xa6, 0x16, 0xa4, 0x31, 0x59, 0xb9, 0xc5, + 0x30, 0x30, 0xfb, 0x40, 0xf4, 0xc7, 0x5a, 0x61, 0x6f, 0x9b, 0x9a, 0x72, + 0x15, 0x66, 0x20, 0xfa, 0x52, 0x29, 0x0f, 0x76, 0x19, 0xc5, 0x46, 0x5f, + 0x8a, 0x6b, 0x65, 0x4f, 0x3c, 0x8a, 0x85, 0x9e, 0xa4, 0x64, 0xcc, 0xd9, + 0xcf, 0x35, 0xc0, 0x6b, 0xbc, 0x6a, 0x73, 0x7d, 0x6b, 0xb6, 0xdd, 0xfb, + 0xc3, 0x5c, 0x56, 0xbc, 0x31, 0xa9, 0xcb, 0x5c, 0x58, 0xef, 0xe1, 0x1d, + 0x98, 0x2f, 0x8d, 0x99, 0x07, 0xad, 0x03, 0xa5, 0x25, 0x28, 0xaf, 0x18, + 0xf4, 0x45, 0xa5, 0xa2, 0x96, 0x90, 0xc4, 0xa2, 0x8a, 0x4a, 0x60, 0x23, + 0x74, 0xad, 0x7b, 0x61, 0x8b, 0x68, 0xfe, 0x95, 0x90, 0x7a, 0x56, 0xc4, + 0x3c, 0x41, 0x18, 0xff, 0x00, 0x64, 0x57, 0xa3, 0x97, 0x7c, 0x52, 0x38, + 0x71, 0x9f, 0x0a, 0x1f, 0x9a, 0x5a, 0x6d, 0x19, 0xe2, 0xbd, 0x63, 0xce, + 0x11, 0xdb, 0x27, 0x14, 0xf8, 0xff, 0x00, 0x75, 0x06, 0x7b, 0xd4, 0x4b, + 0xf3, 0x37, 0xe3, 0x4b, 0x33, 0xe4, 0x85, 0x1d, 0x05, 0x31, 0x13, 0xd8, + 0x2e, 0xe9, 0x8b, 0x9a, 0x7d, 0xc1, 0x61, 0x3b, 0x67, 0x90, 0x4d, 0x3a, + 0xd1, 0x36, 0x47, 0xfc, 0xe9, 0xb2, 0x1d, 0xf2, 0x33, 0x0f, 0x5a, 0x04, + 0x57, 0x74, 0x1b, 0x96, 0x97, 0x38, 0xcd, 0x3d, 0xbe, 0x7e, 0x6a, 0x09, + 0x0f, 0x51, 0x40, 0x15, 0xe7, 0x72, 0xc7, 0x68, 0xa6, 0x8f, 0x90, 0x7b, + 0xd3, 0xb0, 0x06, 0x58, 0xd3, 0x54, 0x6e, 0x39, 0x34, 0xc4, 0x39, 0x0e, + 0xe7, 0x15, 0xce, 0xf8, 0xc6, 0xe0, 0xab, 0xd9, 0x5b, 0x83, 0xd6, 0x4d, + 0xc6, 0xba, 0x68, 0x13, 0x9c, 0xd7, 0x13, 0xe2, 0xb9, 0x84, 0x9e, 0x25, + 0xb7, 0x8f, 0x3c, 0x47, 0xb4, 0x1f, 0xae, 0x68, 0x63, 0x46, 0x3f, 0x88, + 0x79, 0xbd, 0x5f, 0xf7, 0x05, 0x64, 0xa7, 0x7a, 0xd9, 0xd7, 0xa3, 0xdd, + 0xa8, 0xaa, 0xfa, 0xa8, 0xac, 0xd9, 0x2d, 0xc4, 0x4a, 0x48, 0x24, 0xd0, + 0x98, 0x9a, 0x22, 0x6e, 0x82, 0x92, 0x94, 0xf4, 0x14, 0x94, 0xc4, 0xc2, + 0x8a, 0x29, 0x29, 0x88, 0x28, 0xa2, 0x92, 0x80, 0x0a, 0x4a, 0x5a, 0x4a, + 0x40, 0x74, 0x7e, 0x11, 0x38, 0xd6, 0x53, 0xfd, 0xd3, 0x5e, 0xa0, 0xa7, + 0xe4, 0x15, 0xe5, 0x9e, 0x14, 0x38, 0xd6, 0x62, 0xfa, 0x1a, 0xf5, 0x15, + 0x3f, 0x20, 0xaf, 0x9a, 0xcd, 0xff, 0x00, 0x8c, 0xbd, 0x0e, 0xda, 0x1f, + 0x08, 0xd6, 0x35, 0x1e, 0x69, 0xc4, 0xe6, 0x93, 0x15, 0xe6, 0xa2, 0xd8, + 0xda, 0x0d, 0x2e, 0x29, 0x31, 0x4c, 0x41, 0x40, 0x3c, 0xd2, 0x52, 0x77, + 0xab, 0x44, 0xb2, 0xf8, 0xe6, 0x34, 0xfa, 0x53, 0xc5, 0x44, 0x87, 0xf7, + 0x6b, 0x52, 0x29, 0xaf, 0xac, 0xc2, 0x7f, 0x06, 0x27, 0x1c, 0xb7, 0x25, + 0x14, 0xf0, 0x6a, 0x30, 0x69, 0xe2, 0xba, 0x09, 0x24, 0x14, 0xe1, 0x51, + 0x83, 0x4e, 0x06, 0x81, 0x12, 0x8a, 0x70, 0x35, 0x18, 0x6a, 0x70, 0x6a, + 0x60, 0x49, 0x4b, 0x51, 0xee, 0xa5, 0xdd, 0x40, 0x0f, 0xc5, 0x23, 0x7d, + 0xd3, 0xf4, 0xa4, 0xdd, 0x48, 0xc7, 0xe5, 0x3f, 0x4a, 0x00, 0x68, 0xfb, + 0xa3, 0xe9, 0x49, 0x48, 0xa7, 0xe5, 0x1f, 0x4a, 0x09, 0xa6, 0x20, 0x34, + 0xd3, 0x4b, 0x9a, 0x69, 0x34, 0xc0, 0x43, 0x4c, 0x34, 0xe3, 0x4d, 0x34, + 0x00, 0xc3, 0x4c, 0x34, 0xf3, 0x4c, 0x34, 0x80, 0x61, 0xa6, 0x35, 0x48, + 0x69, 0x84, 0x53, 0x02, 0x22, 0x2a, 0x36, 0xa9, 0x48, 0xa6, 0x30, 0xa0, + 0x08, 0x1a, 0xa2, 0x61, 0x53, 0xb0, 0xa8, 0xd8, 0x50, 0x06, 0x16, 0xa3, + 0xc5, 0xc9, 0xfa, 0x55, 0x32, 0x01, 0xab, 0xba, 0x97, 0xfc, 0x7c, 0x1a, + 0xa3, 0x9a, 0xb3, 0xcd, 0xa9, 0xf1, 0xb1, 0x0a, 0xd3, 0x4a, 0x53, 0xf3, + 0x46, 0x68, 0x20, 0x8f, 0x65, 0x23, 0x26, 0xd0, 0x4e, 0x6a, 0x4c, 0xd4, + 0x6e, 0x72, 0x28, 0x19, 0xcd, 0xdf, 0xdb, 0xc8, 0xf7, 0x4e, 0xca, 0xb9, + 0x15, 0x50, 0xdb, 0xcb, 0xfd, 0xd3, 0x5d, 0x03, 0xa6, 0x5c, 0xf1, 0x49, + 0xe4, 0x8e, 0x37, 0x10, 0x33, 0xd2, 0xb0, 0x6d, 0xdc, 0xf5, 0x21, 0x6e, + 0x54, 0x60, 0x79, 0x12, 0xff, 0x00, 0x70, 0xd5, 0xdb, 0x3d, 0x3a, 0xee, + 0xe1, 0x4f, 0x95, 0x09, 0x60, 0xbc, 0xb1, 0xf4, 0xab, 0xde, 0x43, 0x33, + 0x60, 0x77, 0xe9, 0x53, 0xc9, 0x2b, 0xc7, 0x11, 0x86, 0x16, 0x2a, 0x9f, + 0xc5, 0x8f, 0xe2, 0xa5, 0x7b, 0xee, 0x5d, 0xfb, 0x10, 0x36, 0x8f, 0x72, + 0xc7, 0x98, 0xfb, 0x7f, 0x78, 0x53, 0x7f, 0xb1, 0xee, 0x50, 0x8d, 0xb0, + 0x16, 0x1f, 0xef, 0x0a, 0xa9, 0x22, 0x5d, 0x2c, 0xaa, 0xa9, 0x70, 0x1f, + 0x70, 0xce, 0x41, 0xe9, 0xed, 0x46, 0xcb, 0xf1, 0xff, 0x00, 0x2d, 0xff, + 0x00, 0x5a, 0x1d, 0x81, 0x36, 0x5f, 0x1a, 0x75, 0xd8, 0xce, 0x6d, 0x80, + 0xfa, 0x53, 0xbc, 0xa9, 0x23, 0xb3, 0x75, 0x93, 0x82, 0x58, 0x63, 0xe9, + 0x59, 0xb9, 0xd4, 0x07, 0xfc, 0xbc, 0x37, 0xfd, 0xf5, 0x57, 0x20, 0x2d, + 0x1d, 0x8b, 0x1b, 0x8d, 0xcd, 0x93, 0x80, 0xc0, 0xd1, 0x1b, 0x5c, 0x24, + 0xdb, 0x32, 0x6f, 0x15, 0xc3, 0xfc, 0xf9, 0xc7, 0x63, 0x53, 0xe8, 0x97, + 0x66, 0xc7, 0x56, 0x82, 0x7c, 0xe0, 0x06, 0xc1, 0xfa, 0x54, 0x33, 0xaf, + 0x98, 0x46, 0xc9, 0x37, 0x63, 0xb3, 0x75, 0xa8, 0xa3, 0x46, 0x59, 0x57, + 0x2a, 0x7a, 0x8a, 0xa5, 0xb0, 0xcf, 0x57, 0x92, 0x54, 0x95, 0xb7, 0x23, + 0x06, 0xe3, 0x9c, 0x50, 0x1c, 0x30, 0xf9, 0xbe, 0xf0, 0xac, 0x8d, 0x03, + 0x52, 0x8a, 0xf2, 0xc9, 0xe0, 0xe0, 0x5c, 0x44, 0x70, 0x73, 0xd5, 0x85, + 0x68, 0x09, 0x17, 0x77, 0x3d, 0xa8, 0x8b, 0xe8, 0x39, 0x2e, 0xa4, 0x87, + 0x03, 0xfd, 0xd3, 0xfa, 0x52, 0xa7, 0x04, 0x8a, 0x52, 0x30, 0x32, 0x39, + 0x53, 0x4c, 0x07, 0xcb, 0x3c, 0xf2, 0xbe, 0xbe, 0x94, 0xc4, 0x49, 0x9a, + 0x70, 0x34, 0xcc, 0x7b, 0xf1, 0x4e, 0x00, 0xd5, 0x21, 0x0f, 0x15, 0x20, + 0xa8, 0xd7, 0x34, 0xf1, 0x9f, 0x4a, 0x00, 0x7e, 0x68, 0x3f, 0x7b, 0x14, + 0xd1, 0x9f, 0x4a, 0x5f, 0xe2, 0xe9, 0x40, 0x18, 0x3e, 0x27, 0x1f, 0xea, + 0x3f, 0x1a, 0xe7, 0x18, 0xd7, 0x47, 0xe2, 0x66, 0xf9, 0x60, 0x18, 0xe7, + 0x26, 0xb9, 0xb6, 0x19, 0x35, 0xd3, 0x4f, 0xe1, 0x39, 0xaa, 0x7c, 0x43, + 0x68, 0xa4, 0xc5, 0x15, 0x64, 0x85, 0x14, 0x94, 0x66, 0x91, 0x48, 0x95, + 0x3a, 0xd7, 0x6b, 0xe1, 0xcf, 0xf9, 0x07, 0xe7, 0xde, 0xb8, 0x84, 0x3c, + 0x8a, 0xed, 0xbc, 0x3b, 0xff, 0x00, 0x20, 0xdf, 0xf8, 0x15, 0x65, 0x5b, + 0xe1, 0x36, 0xa5, 0xb9, 0xd0, 0x5b, 0xf5, 0x35, 0x75, 0x4f, 0x4a, 0xa7, + 0x08, 0xab, 0x8a, 0x33, 0x81, 0x5c, 0x87, 0x41, 0x32, 0xfd, 0xea, 0xb2, + 0x95, 0x5d, 0x06, 0x0d, 0x59, 0x8e, 0x81, 0x13, 0xa5, 0x4c, 0x95, 0x0a, + 0xd4, 0xcb, 0x40, 0x12, 0x76, 0xa7, 0x1e, 0x56, 0x9a, 0x29, 0xd8, 0xa0, + 0x05, 0x1c, 0x8c, 0xd3, 0xc0, 0xa5, 0x58, 0xf2, 0x38, 0xa7, 0xac, 0x47, + 0xb8, 0xaa, 0x15, 0xc6, 0x00, 0x33, 0xef, 0x59, 0xda, 0xcc, 0xde, 0x4d, + 0x8b, 0x20, 0x3f, 0x3c, 0x9c, 0x0a, 0xd6, 0x70, 0x22, 0x52, 0xcd, 0xc0, + 0xac, 0x1b, 0xbb, 0x79, 0x2f, 0xae, 0xbc, 0xd7, 0xe1, 0x17, 0x85, 0x14, + 0x32, 0x6e, 0x79, 0x99, 0xb6, 0x37, 0x3e, 0x20, 0xb4, 0x86, 0x58, 0xe4, + 0xf2, 0xcc, 0xa4, 0xb3, 0xe3, 0xee, 0x1e, 0xd5, 0xdb, 0x8b, 0x0e, 0xc1, + 0x49, 0xc7, 0x7a, 0xbe, 0xfa, 0x62, 0xfd, 0xe5, 0x45, 0x0e, 0x3a, 0x1c, + 0x54, 0xab, 0x1b, 0x8e, 0x59, 0x40, 0x34, 0xac, 0x26, 0xcc, 0xc1, 0xa7, + 0xe0, 0x7c, 0xc2, 0x8f, 0xb1, 0x20, 0xea, 0x3f, 0x4a, 0xd6, 0xf9, 0x87, + 0xf0, 0x8a, 0x4e, 0x4f, 0x55, 0x14, 0x08, 0xe2, 0xfc, 0x45, 0xa6, 0x4f, + 0x36, 0x9d, 0x77, 0xe4, 0x2e, 0xe9, 0x19, 0x42, 0xa0, 0x1e, 0x9d, 0xeb, + 0xcc, 0xff, 0x00, 0xb2, 0xef, 0x52, 0x50, 0xb2, 0xda, 0xc8, 0x00, 0x3c, + 0xe5, 0x4e, 0x2b, 0xdf, 0x5a, 0x3d, 0xc7, 0xee, 0x0a, 0xab, 0xa8, 0x59, + 0xb4, 0xf6, 0x8d, 0x1c, 0x50, 0xa6, 0xe2, 0x47, 0x6a, 0x63, 0x4e, 0xc7, + 0x0f, 0xe1, 0x0d, 0x3a, 0x5b, 0x35, 0x2f, 0x71, 0x6d, 0x22, 0xcb, 0xe6, + 0x64, 0x1c, 0xe0, 0x01, 0x5e, 0xbb, 0x6b, 0x22, 0xcf, 0x6e, 0x92, 0x29, + 0xc8, 0x23, 0x9f, 0xad, 0x61, 0x47, 0x6e, 0xe1, 0x30, 0x55, 0x73, 0x8e, + 0x78, 0xab, 0x56, 0x12, 0x4b, 0x67, 0x23, 0x2c, 0xbc, 0xc2, 0xdd, 0x0f, + 0xa1, 0xa9, 0xd8, 0x66, 0xd8, 0x1f, 0x25, 0x46, 0xdd, 0x6a, 0x48, 0xd9, + 0x5b, 0x8c, 0x8c, 0x1e, 0x41, 0xa4, 0x91, 0x30, 0x69, 0x81, 0x09, 0xa8, + 0x9c, 0xd4, 0xac, 0x0d, 0x44, 0xd9, 0xa4, 0x51, 0x19, 0x3d, 0xe9, 0xa8, + 0x72, 0x4e, 0x3a, 0xf5, 0x14, 0xaf, 0xd2, 0x98, 0x32, 0xad, 0xb8, 0x76, + 0xa4, 0x32, 0x42, 0xfb, 0x97, 0xde, 0xab, 0x37, 0x5a, 0x9d, 0xf9, 0x1b, + 0x85, 0x40, 0xc7, 0x26, 0xa4, 0xa1, 0xa0, 0xfe, 0xf4, 0xfd, 0x2b, 0x8f, + 0xf1, 0x0f, 0x1a, 0x93, 0x9f, 0x50, 0x2b, 0xae, 0x04, 0x6f, 0x27, 0xf0, + 0xae, 0x47, 0xc4, 0x63, 0xfe, 0x26, 0x1f, 0x55, 0x15, 0xc9, 0x8d, 0xfe, + 0x11, 0xd7, 0x83, 0xfe, 0x21, 0x90, 0xb8, 0x34, 0xe0, 0xa0, 0x54, 0x78, + 0xc5, 0x38, 0x1a, 0xf1, 0x0f, 0x4c, 0x7e, 0x00, 0xa2, 0x99, 0x9a, 0x33, + 0x48, 0x2e, 0x3b, 0x34, 0xda, 0x28, 0xa0, 0x42, 0x56, 0xcc, 0x78, 0x11, + 0xa8, 0xf6, 0xac, 0x63, 0x5b, 0x2b, 0xfe, 0xad, 0x7e, 0x95, 0xe9, 0xe5, + 0xdb, 0xc8, 0xe1, 0xc6, 0x6c, 0x83, 0xbd, 0x23, 0x1e, 0xb4, 0xb4, 0xc3, + 0xc9, 0xaf, 0x50, 0xe0, 0x14, 0x1d, 0xa0, 0xfa, 0x9a, 0x58, 0x93, 0x7c, + 0xa0, 0x7e, 0x74, 0xd2, 0x71, 0xcf, 0x7e, 0xd5, 0x7a, 0xd2, 0x1d, 0x88, + 0x64, 0x61, 0xef, 0x4c, 0x43, 0x9c, 0xed, 0xdb, 0x18, 0xeb, 0xde, 0xab, + 0xb6, 0x44, 0x8d, 0xf5, 0xa4, 0x96, 0x60, 0x8e, 0x18, 0xfd, 0xf6, 0x3c, + 0x0a, 0x6b, 0x82, 0x49, 0x22, 0x81, 0x0a, 0x5b, 0xda, 0xab, 0x3b, 0x0c, + 0xd3, 0x9d, 0xca, 0xf1, 0x50, 0xf2, 0xc7, 0x9a, 0x62, 0x10, 0xfc, 0xc7, + 0xda, 0x87, 0x6d, 0xa3, 0x02, 0xa5, 0x0b, 0xb4, 0x64, 0xf1, 0x51, 0x63, + 0x71, 0xc8, 0x1f, 0x8d, 0x30, 0x2c, 0xa4, 0x89, 0x0d, 0xb9, 0x91, 0xbf, + 0x85, 0x73, 0x5e, 0x6d, 0x31, 0x17, 0x7a, 0xa4, 0x97, 0x73, 0xb6, 0x5d, + 0xa4, 0xca, 0xa8, 0x35, 0xb9, 0xaf, 0x6a, 0x92, 0x3c, 0x8b, 0x6d, 0x11, + 0x60, 0xaa, 0x72, 0xf8, 0xef, 0x5c, 0xd2, 0x5b, 0xca, 0x93, 0x99, 0xc2, + 0x31, 0x39, 0xc8, 0xf4, 0xa9, 0xb8, 0xec, 0x4b, 0xab, 0x49, 0x1d, 0xc5, + 0xe4, 0x64, 0xe6, 0x3f, 0x97, 0x04, 0x9a, 0x82, 0x3b, 0x56, 0xbd, 0x88, + 0xac, 0x4e, 0xa5, 0x81, 0xef, 0xc6, 0x6a, 0x2b, 0xb9, 0x1e, 0x6b, 0x80, + 0x26, 0x1b, 0x4f, 0x7a, 0xb5, 0x02, 0xda, 0x44, 0xbf, 0xeb, 0x98, 0x7b, + 0x83, 0x51, 0x39, 0x72, 0xa2, 0xa0, 0x93, 0x7a, 0x99, 0xb7, 0x16, 0xf2, + 0x5b, 0x48, 0x23, 0x90, 0x61, 0x85, 0x43, 0x57, 0xef, 0x59, 0x1e, 0xf1, + 0x0a, 0xbb, 0x3a, 0xe4, 0x72, 0x6b, 0x56, 0x43, 0x6d, 0x3c, 0x6a, 0x0c, + 0x19, 0x38, 0xeb, 0x80, 0x29, 0xfb, 0x4b, 0x25, 0xa6, 0xe2, 0x70, 0x4d, + 0xbb, 0x33, 0x9a, 0xa2, 0xb6, 0xff, 0x00, 0xb2, 0xad, 0xdd, 0x97, 0xe6, + 0x75, 0x07, 0xaf, 0xb5, 0x48, 0xfe, 0x1c, 0x5d, 0xea, 0x22, 0xba, 0x57, + 0x0d, 0xf9, 0xd5, 0x7b, 0x58, 0xf5, 0x23, 0x95, 0x98, 0x14, 0x95, 0xd1, + 0x1f, 0x0d, 0xc8, 0x9f, 0x79, 0x5d, 0xbe, 0x94, 0x9f, 0xd9, 0x51, 0x45, + 0xf7, 0xa1, 0x3f, 0xf0, 0x21, 0x4f, 0xda, 0x45, 0xec, 0x2b, 0x1c, 0xf0, + 0x04, 0xf4, 0x19, 0xa7, 0xad, 0xbc, 0xaf, 0xd1, 0x0f, 0xe5, 0x5d, 0x12, + 0xdb, 0x44, 0xbd, 0x10, 0x0f, 0xc2, 0x9e, 0x23, 0x1e, 0x94, 0xb9, 0x82, + 0xc4, 0x1e, 0x1c, 0x82, 0x48, 0x75, 0x88, 0x4b, 0xae, 0x01, 0xaf, 0x4d, + 0x07, 0xf7, 0x62, 0xb8, 0x6d, 0x39, 0x7f, 0xe2, 0x63, 0x11, 0x0a, 0x07, + 0x3d, 0xab, 0xb6, 0x1c, 0xa0, 0xaf, 0x9f, 0xcd, 0x97, 0xef, 0x13, 0xf2, + 0x3a, 0xe8, 0xbf, 0x74, 0x42, 0x68, 0xcd, 0x1b, 0x69, 0x08, 0xaf, 0x30, + 0xd0, 0x5c, 0xd2, 0x16, 0xa6, 0x93, 0x8a, 0x69, 0xcd, 0x52, 0x44, 0xb6, + 0x29, 0x6a, 0x33, 0x49, 0x8a, 0x36, 0xd5, 0x24, 0x4d, 0xcb, 0x90, 0x9c, + 0xc6, 0x2a, 0x75, 0xaa, 0xf0, 0x7f, 0xaa, 0x1f, 0x5a, 0x9c, 0x57, 0xd5, + 0x61, 0x3f, 0x81, 0x1f, 0x43, 0x92, 0x7f, 0x13, 0x24, 0x14, 0xf1, 0x51, + 0x8a, 0x78, 0xae, 0x92, 0x47, 0x8a, 0x70, 0xa6, 0x03, 0x4e, 0x06, 0x80, + 0x1e, 0x29, 0xc2, 0x98, 0x0d, 0x3b, 0x34, 0x08, 0x70, 0x34, 0xea, 0x66, + 0x69, 0x73, 0x4c, 0x07, 0x52, 0x31, 0xf9, 0x4f, 0xd2, 0x93, 0x34, 0x8c, + 0x7e, 0x53, 0xf4, 0xa0, 0x08, 0x44, 0xf1, 0xed, 0x1f, 0x38, 0xe9, 0xeb, + 0x4f, 0x0e, 0x18, 0x70, 0x41, 0xae, 0x7c, 0xb6, 0x50, 0x7d, 0x29, 0xb0, + 0xcf, 0x2c, 0x57, 0x0b, 0xb0, 0x92, 0x09, 0xe4, 0x56, 0x9c, 0xa7, 0x22, + 0xc4, 0xeb, 0x66, 0x8e, 0x8a, 0x92, 0x9a, 0x93, 0x47, 0x27, 0x46, 0x19, + 0xf4, 0xa9, 0x31, 0x52, 0x74, 0xa6, 0x9e, 0xc4, 0x66, 0x93, 0x15, 0x26, + 0x29, 0x31, 0x40, 0xc8, 0x88, 0xa6, 0x91, 0x52, 0x91, 0x4d, 0x22, 0x80, + 0x22, 0x22, 0x98, 0x45, 0x4a, 0x45, 0x30, 0xd0, 0x22, 0x32, 0x2a, 0x36, + 0x15, 0x29, 0xa6, 0x35, 0x00, 0x40, 0xc2, 0xa2, 0x61, 0x53, 0xb0, 0xa8, + 0x98, 0x50, 0x07, 0x3f, 0xa9, 0xff, 0x00, 0xc7, 0xc1, 0xaa, 0x06, 0xb4, + 0x35, 0x3f, 0xf8, 0xf9, 0x35, 0x9e, 0x6a, 0xcf, 0x32, 0x7f, 0x1b, 0x12, + 0x8a, 0x29, 0x28, 0x24, 0x0d, 0x46, 0xf4, 0xf3, 0x4c, 0x6a, 0x06, 0x56, + 0x38, 0xc9, 0xcd, 0x3d, 0xee, 0x8c, 0x91, 0x47, 0x14, 0xbd, 0x53, 0xee, + 0x9c, 0x76, 0xa7, 0x08, 0x04, 0x8b, 0x93, 0x9a, 0xad, 0x35, 0xa4, 0xc4, + 0xe1, 0x18, 0x63, 0x15, 0xcc, 0xdd, 0x9b, 0x3d, 0x58, 0x7c, 0x28, 0x97, + 0x78, 0x55, 0x3e, 0xa7, 0xa1, 0xf6, 0xa8, 0x58, 0x8f, 0x5a, 0x16, 0xd6, + 0x50, 0x7e, 0x63, 0x9a, 0x98, 0x43, 0xc7, 0x4a, 0x9d, 0xf6, 0x2f, 0x45, + 0xab, 0x28, 0x7d, 0x9f, 0x12, 0x17, 0x0e, 0x79, 0xa5, 0x28, 0x7d, 0x4d, + 0x5f, 0xf2, 0x97, 0xbe, 0x69, 0xeb, 0x66, 0xce, 0xb9, 0x54, 0x62, 0x3d, + 0x40, 0xa3, 0x51, 0xa6, 0xba, 0x19, 0x7e, 0x5b, 0x1e, 0xe6, 0x91, 0x91, + 0xf6, 0x15, 0xc9, 0xc5, 0x6a, 0x9b, 0x09, 0x3f, 0xe7, 0x9b, 0x7e, 0x55, + 0x13, 0xda, 0xba, 0x7d, 0xe5, 0x23, 0xeb, 0x46, 0xa0, 0x73, 0xf2, 0x5a, + 0x30, 0x62, 0x43, 0x73, 0xef, 0x4f, 0xb1, 0xb9, 0x92, 0xd2, 0xed, 0x19, + 0x95, 0x5c, 0x03, 0xd1, 0x86, 0x41, 0xad, 0x66, 0xb7, 0xcf, 0x04, 0x55, + 0x67, 0xb4, 0x40, 0xc0, 0xe3, 0x1c, 0xd5, 0x26, 0xf6, 0x0d, 0x19, 0x76, + 0xfe, 0x4b, 0x70, 0xf6, 0xda, 0xb6, 0x9a, 0xa6, 0x06, 0x63, 0x89, 0x63, + 0x1d, 0x01, 0xad, 0xfb, 0x6b, 0xb5, 0xbc, 0xb5, 0x13, 0x81, 0x87, 0xee, + 0x2b, 0x9d, 0xb7, 0x45, 0xf2, 0x64, 0xb7, 0x63, 0xf2, 0xb9, 0x24, 0x7d, + 0x6a, 0xc6, 0x93, 0x2b, 0xdb, 0xc8, 0x61, 0x73, 0x95, 0x27, 0xb7, 0x6a, + 0x27, 0x26, 0xb5, 0xb1, 0x51, 0x49, 0xab, 0x1d, 0x2d, 0xad, 0xda, 0xe7, + 0x6b, 0x74, 0xab, 0x8d, 0x18, 0x2b, 0xb9, 0x79, 0x53, 0x59, 0x8d, 0x6f, + 0xb8, 0x06, 0x43, 0xf8, 0x8a, 0x7c, 0x37, 0x33, 0x5b, 0x36, 0x1c, 0x65, + 0x6b, 0x44, 0x49, 0x75, 0x4f, 0x97, 0xc7, 0x55, 0xf4, 0xf4, 0xa9, 0x80, + 0xc8, 0xc8, 0xe4, 0x52, 0x45, 0x24, 0x17, 0x4b, 0x95, 0x60, 0x1b, 0xd2, + 0xa5, 0x10, 0x32, 0x64, 0xa8, 0xff, 0x00, 0xeb, 0xd5, 0x08, 0x66, 0x29, + 0xc2, 0x9d, 0x80, 0x7d, 0x8f, 0xa5, 0x2e, 0xde, 0x69, 0x5c, 0x2c, 0x1d, + 0x07, 0x5a, 0x4f, 0xe2, 0xa3, 0x70, 0x2c, 0x40, 0xed, 0x4a, 0xa3, 0xbd, + 0x00, 0x73, 0x5e, 0x24, 0x6f, 0xf4, 0x88, 0x57, 0xd0, 0x13, 0x58, 0x47, + 0xad, 0x6c, 0x78, 0x89, 0xb3, 0xa8, 0xa8, 0xf4, 0x41, 0x58, 0xe6, 0xba, + 0xe1, 0xf0, 0xa3, 0x96, 0x7f, 0x13, 0x13, 0x14, 0xd2, 0x0d, 0x3a, 0x8a, + 0xa1, 0x0c, 0xc5, 0x1b, 0x69, 0xd4, 0x50, 0x31, 0x14, 0x10, 0x6b, 0xb8, + 0xf0, 0xe0, 0xff, 0x00, 0x89, 0x72, 0xff, 0x00, 0xbd, 0x5c, 0x40, 0xeb, + 0x5d, 0xdf, 0x86, 0x57, 0x3a, 0x6a, 0x9f, 0xf6, 0x8d, 0x63, 0x5b, 0xe1, + 0x37, 0xa5, 0xb9, 0xbf, 0x18, 0xf9, 0x7d, 0xea, 0xc2, 0x9e, 0x56, 0x99, + 0x1a, 0xd4, 0x98, 0xc1, 0x15, 0xca, 0x6e, 0x59, 0x41, 0x96, 0xab, 0x48, + 0xbd, 0x2a, 0x18, 0x87, 0x4a, 0xb9, 0x12, 0x16, 0xed, 0x40, 0xae, 0x39, + 0x56, 0xa5, 0x55, 0xa9, 0x23, 0xb7, 0x63, 0xda, 0xac, 0x25, 0xbe, 0x3a, + 0xd1, 0x60, 0xb9, 0x02, 0xa5, 0x48, 0x23, 0x27, 0xb5, 0x58, 0x0b, 0x1c, + 0x63, 0x2e, 0xc0, 0x0a, 0x86, 0x4d, 0x42, 0x24, 0x18, 0x89, 0x77, 0x1f, + 0x5a, 0x76, 0x15, 0xc7, 0x2c, 0x2e, 0x7b, 0x11, 0xef, 0x4a, 0xf7, 0x09, + 0x6c, 0x36, 0x86, 0xf3, 0x1f, 0xdb, 0xb5, 0x52, 0x7b, 0x99, 0x65, 0xfb, + 0xee, 0x71, 0xe8, 0x2a, 0x3c, 0xd0, 0x4b, 0x64, 0xae, 0xed, 0x2b, 0x6e, + 0x90, 0xe7, 0xda, 0x9a, 0x71, 0x4d, 0xdd, 0x48, 0x5a, 0x81, 0x01, 0xa6, + 0x91, 0x4b, 0x9a, 0x4a, 0x40, 0x26, 0x07, 0xa5, 0x26, 0xd1, 0xe9, 0x4b, + 0x4b, 0x4c, 0x06, 0xed, 0x1e, 0x94, 0xbb, 0x47, 0xa5, 0x2d, 0x2d, 0x20, + 0x00, 0xa3, 0xd2, 0x9d, 0xb4, 0x63, 0xa5, 0x26, 0x69, 0x73, 0x40, 0x0e, + 0x52, 0xc9, 0xf7, 0x4f, 0x1e, 0x95, 0x3a, 0x5e, 0x2e, 0x36, 0xc9, 0xc7, + 0xbd, 0x56, 0xdd, 0x48, 0x48, 0x34, 0x0c, 0xbb, 0xb9, 0x5f, 0xee, 0x9c, + 0xfd, 0x2a, 0x37, 0x15, 0x4c, 0xe0, 0x1c, 0x8e, 0x0f, 0xb5, 0x31, 0xe4, + 0x93, 0x1c, 0x48, 0x7f, 0x1a, 0x07, 0x72, 0xc3, 0x72, 0x69, 0xb9, 0x02, + 0x4c, 0x1e, 0x84, 0x55, 0x4f, 0xb4, 0xce, 0x87, 0xe6, 0x40, 0xe3, 0xd4, + 0x51, 0xf6, 0xa4, 0x76, 0x19, 0xca, 0x9f, 0x7a, 0x96, 0x52, 0x65, 0xa3, + 0x94, 0x3e, 0xd5, 0x0c, 0xa7, 0x1d, 0x29, 0xc2, 0x50, 0xc3, 0x9a, 0x89, + 0xcf, 0x34, 0x8a, 0x19, 0xd8, 0xd7, 0x2d, 0xe2, 0x31, 0xfe, 0x9a, 0xa7, + 0xfd, 0x9a, 0xea, 0x77, 0x70, 0xd5, 0xcb, 0xf8, 0x8f, 0xfe, 0x3e, 0xa3, + 0x3f, 0xec, 0x57, 0x26, 0x35, 0x7e, 0xe5, 0x9d, 0x78, 0x4f, 0xe2, 0x18, + 0x94, 0x51, 0x45, 0x78, 0x67, 0xa6, 0x14, 0xb4, 0x94, 0x52, 0x01, 0x68, + 0xa4, 0xa2, 0x80, 0x03, 0xd2, 0xb6, 0x63, 0xe6, 0x25, 0xfa, 0x56, 0x31, + 0xad, 0xa8, 0x7f, 0xe3, 0xde, 0x3f, 0x75, 0x15, 0xe9, 0xe5, 0xdb, 0xc8, + 0xe1, 0xc6, 0x6c, 0x80, 0xd2, 0x6d, 0xc7, 0x26, 0xa4, 0x29, 0xb4, 0x6e, + 0x73, 0x8f, 0x6a, 0x6a, 0xc6, 0x66, 0x3b, 0x9b, 0x84, 0x15, 0xea, 0x9c, + 0x02, 0xc1, 0x11, 0x99, 0xf7, 0x11, 0xf2, 0xd5, 0xab, 0xa9, 0xd6, 0x08, + 0x82, 0x0e, 0xbe, 0x95, 0x19, 0x9c, 0x22, 0xed, 0x88, 0x67, 0xde, 0xa0, + 0xf2, 0x8b, 0xb6, 0xf7, 0x39, 0x34, 0x08, 0xac, 0xaa, 0xf2, 0xcc, 0x24, + 0x6f, 0xc2, 0xac, 0x13, 0xb5, 0x4f, 0xa9, 0xed, 0x4a, 0xa5, 0x77, 0xf1, + 0xce, 0x3b, 0x0a, 0x40, 0xac, 0xc7, 0x91, 0x8a, 0xa4, 0x89, 0x65, 0x76, + 0x42, 0xc6, 0x9c, 0x10, 0x01, 0x52, 0xb2, 0xe0, 0xd3, 0x4a, 0x16, 0xf6, + 0x14, 0x01, 0x09, 0xcc, 0x8d, 0x81, 0xd2, 0xa7, 0x28, 0xb1, 0xc4, 0x7e, + 0x94, 0x2a, 0xac, 0x62, 0xaa, 0x4f, 0x76, 0xac, 0xe5, 0x77, 0x70, 0x3a, + 0xd4, 0xb7, 0x61, 0xa5, 0x73, 0x92, 0xd4, 0x87, 0xfc, 0x4c, 0xc8, 0x1d, + 0x0b, 0x55, 0x09, 0x67, 0x68, 0xdd, 0x93, 0x07, 0x83, 0x57, 0x6f, 0xb3, + 0x3d, 0xc3, 0xb8, 0xfe, 0xf7, 0x15, 0x54, 0xdb, 0x93, 0xc9, 0x1c, 0xd2, + 0x11, 0x9b, 0x34, 0x4f, 0x3d, 0xc2, 0xbe, 0xde, 0x07, 0x5a, 0xb6, 0xb6, + 0xd0, 0x91, 0xfe, 0xac, 0x55, 0x81, 0x6f, 0xed, 0x4f, 0x58, 0x0d, 0x17, + 0x03, 0x16, 0xea, 0x35, 0x5b, 0x9d, 0xaa, 0x30, 0x32, 0x2b, 0x45, 0x6c, + 0xd0, 0xa8, 0x21, 0x98, 0x7e, 0x35, 0x4a, 0xf1, 0x7f, 0xd3, 0x71, 0xee, + 0x2b, 0x69, 0x63, 0x21, 0x45, 0x00, 0xc7, 0xa4, 0x0a, 0xd6, 0xaa, 0x23, + 0x46, 0x2e, 0x83, 0x2e, 0xc4, 0xd3, 0x02, 0x11, 0xc8, 0xa8, 0x9e, 0xe6, + 0x14, 0x99, 0x63, 0x76, 0x3d, 0x79, 0x55, 0x3d, 0x6a, 0xc9, 0x04, 0xe1, + 0xd5, 0x76, 0xab, 0x72, 0xa3, 0x39, 0xe2, 0xb2, 0x8b, 0xe5, 0x97, 0x2b, + 0x0f, 0x31, 0xd1, 0xcf, 0x34, 0x7f, 0x76, 0x56, 0x1f, 0x8d, 0x5e, 0xb7, + 0xd4, 0x37, 0x41, 0x27, 0x98, 0xdb, 0xa6, 0x5e, 0x8a, 0x54, 0x60, 0xd6, + 0x5b, 0xbb, 0x2f, 0x55, 0xa8, 0x12, 0x63, 0xe7, 0xe4, 0x12, 0xa4, 0xf1, + 0xc7, 0x7a, 0xae, 0x48, 0x3d, 0xd0, 0x6a, 0x6c, 0xfd, 0xb2, 0xdd, 0xff, + 0x00, 0xd6, 0xd9, 0xa1, 0x3e, 0xa2, 0xa9, 0xca, 0xa8, 0xd2, 0x93, 0x12, + 0x6d, 0x4e, 0xc0, 0xd2, 0xa2, 0x39, 0x19, 0x22, 0xa5, 0x08, 0x68, 0x51, + 0x51, 0xd8, 0x57, 0x16, 0xc1, 0x3f, 0xd3, 0x63, 0x38, 0xef, 0x5d, 0x82, + 0xfd, 0xc1, 0x5c, 0xcd, 0x9c, 0x2f, 0xf6, 0x84, 0x6d, 0xa7, 0x00, 0xf5, + 0xc5, 0x74, 0xc3, 0xfd, 0x58, 0xaf, 0x13, 0x35, 0xf8, 0xe2, 0x74, 0xd1, + 0xd9, 0x8c, 0x2d, 0x4d, 0x2d, 0x4e, 0xa4, 0x22, 0xbc, 0xd4, 0x58, 0xca, + 0x33, 0x4b, 0x8a, 0x36, 0xd5, 0x08, 0x4d, 0xc6, 0x97, 0x39, 0xa3, 0x6d, + 0x14, 0x21, 0x17, 0x20, 0x1f, 0xbb, 0x1f, 0x5a, 0x98, 0x0a, 0x8a, 0xd8, + 0x7e, 0xeb, 0xf1, 0xab, 0x00, 0x57, 0xd5, 0x60, 0xff, 0x00, 0x81, 0x13, + 0x92, 0x7f, 0x10, 0x0a, 0x70, 0xa0, 0x0a, 0x70, 0x15, 0xd2, 0x48, 0x0a, + 0x70, 0xa0, 0x0a, 0x78, 0x14, 0x08, 0x41, 0x4b, 0x9a, 0x50, 0xb4, 0xcb, + 0x87, 0x10, 0xc0, 0xf2, 0x1f, 0xe1, 0x19, 0xa0, 0x2e, 0x3b, 0x70, 0x1d, + 0xe9, 0x3c, 0xc5, 0xf5, 0x15, 0xcc, 0x9b, 0xc9, 0xe6, 0x62, 0x5a, 0x43, + 0x83, 0xda, 0x9e, 0xb2, 0xb7, 0x76, 0x35, 0xa2, 0x89, 0xcc, 0xf1, 0x2b, + 0xa2, 0x3a, 0x3f, 0x35, 0x7f, 0xbc, 0x29, 0xad, 0x3a, 0x6d, 0x3f, 0x30, + 0xe9, 0x58, 0x82, 0x50, 0x7f, 0x8a, 0x94, 0xb8, 0xd8, 0x70, 0x69, 0xf2, + 0x93, 0xf5, 0x9f, 0x22, 0x6d, 0x2a, 0xc5, 0xb5, 0x27, 0x28, 0xad, 0xb4, + 0x01, 0xc9, 0xab, 0x97, 0x5a, 0x2b, 0xe9, 0xa8, 0x24, 0x79, 0x15, 0x8b, + 0x1c, 0x00, 0x2b, 0x2f, 0x4c, 0x92, 0x68, 0x22, 0x25, 0x25, 0x2b, 0xbb, + 0xb0, 0xab, 0xb2, 0xcf, 0x2c, 0xd8, 0xf3, 0x1d, 0x9b, 0x1d, 0x32, 0x69, + 0xab, 0xdc, 0xc6, 0xf0, 0xe5, 0xdb, 0x52, 0x3a, 0x72, 0xdc, 0x4b, 0x1f, + 0xdd, 0x73, 0xf4, 0x34, 0xc2, 0x69, 0xb5, 0x44, 0x29, 0x35, 0xb1, 0x6d, + 0x75, 0x1c, 0x7f, 0xac, 0x4f, 0xc4, 0x54, 0xc9, 0x79, 0x0b, 0xf4, 0x7c, + 0x1f, 0x7a, 0xcc, 0x38, 0xc5, 0x57, 0x7f, 0xbd, 0xc5, 0x2e, 0x54, 0x68, + 0xb1, 0x12, 0x5b, 0x9d, 0x06, 0xe5, 0x3d, 0x08, 0x34, 0x86, 0xb9, 0xf1, + 0x2b, 0xa7, 0xdd, 0x62, 0x3f, 0x1a, 0x95, 0x75, 0x09, 0xd3, 0xf8, 0xb3, + 0xf5, 0xa5, 0xc8, 0x6b, 0x1c, 0x4c, 0x7a, 0x9b, 0x26, 0x98, 0x45, 0x67, + 0x2e, 0xac, 0x7f, 0x8e, 0x3f, 0xca, 0xa5, 0x5d, 0x52, 0x06, 0xeb, 0x91, + 0x53, 0xca, 0xcd, 0x15, 0x68, 0x3e, 0xa5, 0x92, 0x29, 0x84, 0x53, 0x45, + 0xed, 0xbb, 0x74, 0x90, 0x53, 0xbc, 0xd8, 0xdb, 0xa3, 0xaf, 0xe7, 0x45, + 0x8b, 0x52, 0x4f, 0x66, 0x31, 0x85, 0x42, 0xcb, 0x56, 0x4e, 0xd3, 0xd0, + 0x8a, 0x89, 0x80, 0xa0, 0x67, 0x35, 0xaa, 0x7f, 0xc7, 0xcb, 0x56, 0x71, + 0xad, 0x1d, 0x57, 0xfe, 0x3e, 0x9e, 0xb3, 0x8d, 0x59, 0xe6, 0x4d, 0xfb, + 0xec, 0x4a, 0x4a, 0x28, 0x34, 0x08, 0x69, 0xa6, 0x35, 0x3c, 0xd3, 0x1a, + 0x80, 0x37, 0x34, 0xc0, 0xad, 0x60, 0xa1, 0x94, 0x1e, 0x4f, 0x51, 0x4e, + 0x9a, 0xda, 0xd3, 0xab, 0x2a, 0xaf, 0xd0, 0xd6, 0x3c, 0x37, 0x32, 0x24, + 0x5b, 0x15, 0xc8, 0x1e, 0x82, 0x90, 0xc8, 0x58, 0xe4, 0x92, 0x7e, 0xb5, + 0x1c, 0x97, 0x3b, 0x16, 0x21, 0x28, 0xa4, 0x91, 0x6e, 0x48, 0x6d, 0x09, + 0xc2, 0x4a, 0x47, 0xe1, 0x55, 0x1d, 0x42, 0x39, 0x50, 0x77, 0x01, 0xde, + 0x93, 0x78, 0xa6, 0x96, 0xcd, 0x35, 0x04, 0x9d, 0xcc, 0xa7, 0x5e, 0x53, + 0x56, 0x60, 0x40, 0xa9, 0x52, 0xe6, 0x78, 0x93, 0x6c, 0x72, 0x32, 0xaf, + 0xa0, 0x35, 0x69, 0x34, 0xa9, 0xe4, 0xb6, 0x13, 0x29, 0x4c, 0x11, 0x9c, + 0x67, 0x9a, 0xa2, 0x46, 0x0e, 0x0d, 0x3d, 0x19, 0x36, 0x94, 0x35, 0xd8, + 0x90, 0xdd, 0xdc, 0x9e, 0xb3, 0x3f, 0xe7, 0x51, 0x3b, 0xb3, 0x9c, 0xb3, + 0x12, 0x7d, 0xe9, 0x0d, 0x2a, 0x23, 0x48, 0xe1, 0x54, 0x64, 0x9e, 0x82, + 0x8b, 0x21, 0x73, 0x49, 0xf5, 0x21, 0x91, 0x41, 0x15, 0x5f, 0xa9, 0xe7, + 0x9a, 0xd2, 0xbd, 0xb0, 0xb9, 0xb5, 0x81, 0x65, 0x92, 0x3c, 0x21, 0xef, + 0xe9, 0x59, 0xb5, 0xa4, 0x20, 0x9b, 0xe6, 0x37, 0x87, 0x34, 0x55, 0x98, + 0xb8, 0xa7, 0xc2, 0xfe, 0x4c, 0xa2, 0x45, 0x03, 0x22, 0x98, 0x29, 0x6b, + 0x49, 0x42, 0x33, 0x5c, 0xb2, 0x5a, 0x1a, 0x46, 0x4e, 0x2e, 0xe8, 0xba, + 0x75, 0x59, 0xd4, 0xe5, 0x10, 0x03, 0xe9, 0x9e, 0x2a, 0x58, 0xf5, 0x8d, + 0xff, 0x00, 0xeb, 0xa2, 0x2a, 0x7d, 0x47, 0x22, 0xb3, 0xa9, 0x6b, 0x28, + 0xe1, 0xa1, 0x05, 0x68, 0xec, 0x5b, 0xaf, 0x26, 0xee, 0xcd, 0x5f, 0xed, + 0x2b, 0x70, 0x72, 0x37, 0x83, 0xec, 0x2a, 0xcc, 0x1e, 0x23, 0xf2, 0xb8, + 0x39, 0x61, 0xee, 0x2b, 0x06, 0x96, 0x87, 0x43, 0xb3, 0x1a, 0xad, 0xdd, + 0x1d, 0x6c, 0x1a, 0xed, 0x95, 0xcf, 0x0c, 0x0a, 0xb7, 0xd2, 0xae, 0xac, + 0xb1, 0xb8, 0xca, 0x49, 0x91, 0xef, 0x5c, 0x5c, 0x77, 0x32, 0xc5, 0xf7, + 0x1b, 0x1f, 0x85, 0x58, 0x5d, 0x56, 0xed, 0x7f, 0x8c, 0x1f, 0xc2, 0xa7, + 0xd8, 0x48, 0xaf, 0x6c, 0x8e, 0xa1, 0xa4, 0x54, 0x7d, 0xdf, 0xca, 0x8f, + 0xb5, 0xc6, 0x0f, 0x2a, 0x40, 0xf5, 0xc5, 0x73, 0x63, 0x59, 0xb8, 0x1d, + 0x42, 0x9f, 0xc2, 0x9e, 0x35, 0xa9, 0x7b, 0xc6, 0x86, 0x97, 0xb1, 0x90, + 0xfd, 0xac, 0x4a, 0x7a, 0xd4, 0xa2, 0x6d, 0x52, 0x42, 0xa7, 0x20, 0x60, + 0x0a, 0xcf, 0x35, 0x24, 0xf2, 0x99, 0xee, 0x5e, 0x42, 0x00, 0x2c, 0x7b, + 0x54, 0x66, 0xba, 0x52, 0xb2, 0x48, 0xe5, 0x6e, 0xed, 0xb1, 0xa6, 0x92, + 0x94, 0xd2, 0x50, 0x50, 0x52, 0x51, 0x45, 0x03, 0x1c, 0xbd, 0x6b, 0xbd, + 0xf0, 0xc4, 0x8a, 0x34, 0xc5, 0x52, 0x79, 0xc9, 0xae, 0x09, 0x6b, 0x5e, + 0xd2, 0xea, 0x68, 0xa0, 0x0a, 0x92, 0x15, 0x1e, 0xd5, 0x9d, 0x48, 0xb9, + 0x2b, 0x23, 0x48, 0x49, 0x47, 0x73, 0xd1, 0xd2, 0x45, 0x1d, 0xc5, 0x48, + 0x5d, 0x4e, 0x3e, 0x61, 0x5c, 0x86, 0x9d, 0xab, 0x42, 0x13, 0x6d, 0xd3, + 0x31, 0x6c, 0xf5, 0xad, 0xa8, 0x6f, 0xec, 0x9f, 0x1b, 0x65, 0x4f, 0xc6, + 0xb9, 0x5c, 0x24, 0x8d, 0x94, 0xd3, 0x3a, 0x1b, 0x4b, 0xa8, 0x58, 0x9d, + 0xcc, 0x3e, 0x5e, 0x2a, 0xe8, 0xd4, 0x62, 0x4e, 0x11, 0x49, 0xfc, 0x2b, + 0x8a, 0xd4, 0x75, 0xaf, 0xb1, 0x48, 0x91, 0xc0, 0x11, 0x89, 0x19, 0x26, + 0xa2, 0x8f, 0xc4, 0x93, 0x8c, 0x6e, 0x8d, 0x0d, 0x52, 0xa7, 0x26, 0xae, + 0x27, 0x51, 0x6c, 0x77, 0x07, 0x53, 0x99, 0xbe, 0xea, 0x85, 0xfa, 0xd0, + 0xd7, 0xeb, 0xb3, 0x33, 0x5d, 0x14, 0x3e, 0x82, 0xb9, 0xb8, 0xbc, 0x4b, + 0x63, 0xe5, 0x0f, 0x35, 0x64, 0x0f, 0x8e, 0x71, 0x58, 0x72, 0xeb, 0x4b, + 0x71, 0x77, 0x23, 0x06, 0xe3, 0x77, 0x00, 0xfa, 0x57, 0x26, 0x2e, 0xac, + 0xe8, 0xc2, 0xe9, 0x6a, 0x74, 0xe1, 0x69, 0x46, 0xb4, 0xac, 0xde, 0x87, + 0x68, 0x2f, 0xe3, 0x67, 0x39, 0x76, 0x61, 0xea, 0x4d, 0x58, 0x4b, 0x88, + 0xdb, 0xa3, 0x0a, 0xe3, 0x62, 0xd4, 0x01, 0xef, 0x57, 0x23, 0xbe, 0x07, + 0xbd, 0x79, 0x51, 0xcc, 0xea, 0xc7, 0xe2, 0x57, 0x3d, 0x39, 0x65, 0xf4, + 0x65, 0xf0, 0xbb, 0x1d, 0x58, 0x70, 0x69, 0x77, 0x57, 0x3b, 0x1d, 0xe9, + 0x1d, 0x1c, 0xfe, 0x75, 0x65, 0x2f, 0xdf, 0xfb, 0xc0, 0xd7, 0x4c, 0x33, + 0x4a, 0x6f, 0xe2, 0x4d, 0x1c, 0xf2, 0xcb, 0x27, 0xf6, 0x5d, 0xcb, 0xcb, + 0xa8, 0x44, 0x2f, 0xe5, 0x86, 0x57, 0xda, 0xa8, 0x80, 0xf1, 0xeb, 0x58, + 0x83, 0xc4, 0x93, 0x8b, 0xa6, 0x46, 0x44, 0xf2, 0xb2, 0x42, 0x91, 0xd7, + 0x15, 0x15, 0xd5, 0x99, 0xb8, 0xb9, 0x79, 0xd6, 0x66, 0x46, 0x7e, 0xa3, + 0xb5, 0x2c, 0xf6, 0x62, 0xe1, 0x63, 0x47, 0xc2, 0xaa, 0xf7, 0x4e, 0x09, + 0xab, 0x96, 0x63, 0x4b, 0xec, 0xbd, 0x3a, 0xf7, 0xf9, 0x19, 0xac, 0x05, + 0x45, 0xac, 0x91, 0x6e, 0x3f, 0x10, 0xca, 0xd2, 0x2e, 0xe8, 0xe3, 0x11, + 0x97, 0x0b, 0x9c, 0xf3, 0xf9, 0x56, 0xf8, 0x6c, 0x8c, 0xd7, 0x11, 0x2e, + 0x96, 0x23, 0x46, 0xf2, 0xf7, 0x33, 0x6e, 0xca, 0xf3, 0x5d, 0x5c, 0x17, + 0x0a, 0x61, 0x4d, 0xcc, 0x03, 0x63, 0x9a, 0xea, 0x85, 0x7a, 0x72, 0x49, + 0xc6, 0x47, 0x34, 0xe8, 0xd4, 0x4f, 0xe1, 0x68, 0xd0, 0x8b, 0xcb, 0x2f, + 0xfb, 0xc3, 0x81, 0xed, 0x56, 0x7c, 0xbb, 0x56, 0xe9, 0x26, 0x3f, 0x1a, + 0xc4, 0xb8, 0xba, 0x28, 0x40, 0x42, 0x2a, 0x21, 0x77, 0x2f, 0xa8, 0xae, + 0x7a, 0xb9, 0x8d, 0x1a, 0x53, 0xe4, 0x91, 0xd1, 0x4f, 0x2f, 0xab, 0x52, + 0x0a, 0x4a, 0xc6, 0xb4, 0x9b, 0x43, 0x90, 0x87, 0x23, 0xd6, 0x9b, 0xba, + 0xb3, 0x05, 0xe4, 0x9e, 0xd5, 0x66, 0x3d, 0x46, 0x25, 0x40, 0x1a, 0x1c, + 0xb7, 0x73, 0x9a, 0x98, 0xe6, 0x78, 0x79, 0x75, 0xb0, 0xe5, 0x96, 0xd7, + 0x5d, 0x2e, 0x5a, 0xdd, 0x4b, 0xba, 0xaa, 0x9d, 0x4a, 0x2c, 0x71, 0x6f, + 0xf9, 0x9a, 0xaa, 0x6e, 0xe4, 0x24, 0xe0, 0x81, 0x4e, 0x59, 0x95, 0x08, + 0xec, 0xee, 0x11, 0xcb, 0x6b, 0x3d, 0xf4, 0x34, 0xcb, 0x53, 0x77, 0x8f, + 0x5a, 0xca, 0x69, 0xe4, 0x27, 0xef, 0x9a, 0x61, 0x91, 0x98, 0x63, 0x71, + 0xfc, 0xeb, 0x07, 0x9b, 0x42, 0xf6, 0x51, 0x37, 0x59, 0x5c, 0xad, 0xac, + 0x8d, 0x62, 0xfe, 0xf4, 0xc2, 0xd5, 0x5a, 0xd9, 0x97, 0xc9, 0x00, 0x7e, + 0x39, 0x35, 0x23, 0x30, 0xf5, 0xaf, 0x4e, 0x13, 0x52, 0x8a, 0x97, 0x73, + 0xcd, 0x9d, 0x37, 0x19, 0x38, 0xf6, 0x14, 0xb5, 0x44, 0xd8, 0x3d, 0x69, + 0x19, 0xc7, 0xad, 0x46, 0xd2, 0xa0, 0xfe, 0x21, 0x43, 0x9c, 0x56, 0xec, + 0x15, 0x39, 0xbd, 0x90, 0xec, 0x95, 0xfb, 0xac, 0x45, 0x28, 0xb9, 0x71, + 0xc3, 0x00, 0xd5, 0x01, 0x9d, 0x09, 0xc0, 0x39, 0x3e, 0xd4, 0x36, 0x40, + 0xe4, 0x11, 0xf5, 0xa5, 0x19, 0xc2, 0x5f, 0x0b, 0xb8, 0xe5, 0x4e, 0x70, + 0xf8, 0x95, 0x8b, 0x22, 0xe6, 0x33, 0xc1, 0xe0, 0xfb, 0xd7, 0x3f, 0xe2, + 0x12, 0x1a, 0x78, 0x88, 0x20, 0xfc, 0xbd, 0xab, 0x4c, 0xb5, 0x63, 0x6b, + 0x1f, 0x7a, 0x3c, 0x7a, 0x1a, 0xe7, 0xc6, 0xaf, 0xdc, 0xb3, 0xa3, 0x06, + 0xff, 0x00, 0x7a, 0x8c, 0x9a, 0x31, 0x4b, 0x4b, 0x5e, 0x01, 0xeb, 0x8d, + 0xa3, 0x14, 0xea, 0x28, 0x10, 0xda, 0x29, 0x68, 0xa0, 0x03, 0xb5, 0x6c, + 0xdb, 0xcc, 0x89, 0x6b, 0x1e, 0x39, 0x6d, 0xa2, 0xb1, 0xaa, 0xdd, 0xb3, + 0xed, 0x88, 0x66, 0x26, 0x6f, 0x70, 0x6b, 0xd1, 0xcb, 0x9f, 0xbe, 0xd1, + 0xc5, 0x8c, 0xf8, 0x51, 0x7f, 0xcc, 0x0c, 0xd9, 0x6f, 0x98, 0xfa, 0x76, + 0xa7, 0x16, 0x2f, 0xfe, 0x15, 0x5c, 0x5e, 0x44, 0xbd, 0x61, 0x71, 0xf8, + 0x53, 0xbf, 0xb4, 0x60, 0x1f, 0xc2, 0x47, 0xd4, 0x57, 0xae, 0x79, 0xc5, + 0x95, 0x43, 0x4e, 0xd8, 0xc4, 0x7a, 0x55, 0x61, 0xaa, 0x43, 0xd8, 0x8a, + 0x43, 0xa9, 0x46, 0x7f, 0x88, 0x7e, 0x74, 0xee, 0x16, 0x2c, 0xc7, 0x02, + 0x47, 0x93, 0x8e, 0x69, 0x5b, 0x00, 0x55, 0x33, 0xa8, 0x47, 0xb4, 0xfc, + 0xc3, 0x3f, 0x5a, 0xaf, 0x25, 0xf6, 0x47, 0x06, 0x93, 0x60, 0xa2, 0x5f, + 0x20, 0x1e, 0xf5, 0x1b, 0x38, 0x51, 0xd6, 0xb2, 0xda, 0xf5, 0xb3, 0xf7, + 0xaa, 0x29, 0x6f, 0x95, 0x10, 0xb4, 0x92, 0x71, 0x53, 0x76, 0x55, 0x91, + 0x6a, 0xee, 0xf1, 0x21, 0x89, 0x9d, 0xdb, 0x00, 0x56, 0x09, 0xd4, 0x14, + 0xbf, 0xee, 0xc8, 0x6f, 0x5c, 0xd4, 0x57, 0x77, 0x6d, 0x78, 0x42, 0x2a, + 0x9d, 0x80, 0xf7, 0xef, 0x4d, 0x8e, 0xd5, 0xdb, 0xa2, 0x1f, 0xca, 0xa6, + 0x52, 0x4b, 0x70, 0x49, 0xbd, 0x10, 0x86, 0x44, 0x2c, 0xe4, 0xc7, 0xd7, + 0xa6, 0x0d, 0x48, 0x10, 0x11, 0x56, 0x62, 0xd3, 0x1d, 0xfe, 0xf1, 0xda, + 0x2a, 0x69, 0x34, 0xdd, 0x91, 0x16, 0x56, 0x25, 0x85, 0x61, 0xf5, 0xba, + 0x5c, 0xdc, 0xb7, 0x35, 0x58, 0x5a, 0xad, 0x5e, 0xc5, 0x21, 0x12, 0xd5, + 0xc8, 0x74, 0x99, 0x26, 0x80, 0xca, 0xb8, 0x03, 0x19, 0x19, 0xef, 0x4e, + 0xd3, 0xb4, 0xe6, 0xb8, 0x98, 0x17, 0x04, 0x20, 0xeb, 0x9e, 0xf5, 0xd3, + 0x2c, 0x6a, 0x91, 0xed, 0x03, 0x80, 0x2b, 0x97, 0x19, 0x8e, 0xf6, 0x4f, + 0x92, 0x9e, 0xe6, 0x71, 0x85, 0xf7, 0x3c, 0x92, 0xed, 0xf3, 0x78, 0xcc, + 0xc3, 0x04, 0x37, 0x23, 0xe9, 0x5a, 0xb7, 0x12, 0xcb, 0xba, 0x3b, 0x7b, + 0x65, 0xf3, 0x27, 0x90, 0x0c, 0x05, 0xe7, 0x19, 0xaa, 0x7a, 0xb4, 0x68, + 0xda, 0xb5, 0xca, 0x28, 0xe4, 0xc8, 0x40, 0xc5, 0x69, 0x69, 0x49, 0x7d, + 0xe1, 0xf7, 0x17, 0x32, 0xd9, 0x79, 0xb1, 0xb8, 0x1f, 0x30, 0xe4, 0x81, + 0x5d, 0xae, 0xaa, 0x50, 0x4f, 0xab, 0xe8, 0x43, 0x8e, 0xa0, 0xbe, 0x1d, + 0xbd, 0xb5, 0x81, 0xe7, 0x9a, 0x26, 0x2e, 0x46, 0x59, 0x8f, 0x6a, 0x6d, + 0xad, 0x95, 0xd3, 0x48, 0x97, 0x08, 0xa7, 0xcb, 0x23, 0x0c, 0x2b, 0xae, + 0xb4, 0xf1, 0x15, 0x8e, 0xa2, 0x9e, 0x5e, 0x70, 0xec, 0x30, 0x51, 0xb8, + 0xab, 0x7a, 0x75, 0xaf, 0xd9, 0x11, 0xd3, 0x19, 0x8d, 0x8e, 0x54, 0x7a, + 0x57, 0x0c, 0xf3, 0x07, 0x06, 0xef, 0x1b, 0x32, 0x95, 0x3b, 0xf5, 0x39, + 0x53, 0x06, 0xf3, 0x82, 0x84, 0x9f, 0x4c, 0x54, 0xf0, 0xe9, 0x4e, 0xe4, + 0x11, 0x0e, 0x3d, 0xcd, 0x75, 0xa6, 0x18, 0x99, 0xb3, 0xe5, 0xa8, 0x3e, + 0xb8, 0xa3, 0xec, 0xb9, 0xe9, 0x5a, 0xd2, 0xcc, 0x68, 0x4b, 0xe3, 0xd0, + 0x97, 0x4e, 0x4b, 0x63, 0x0e, 0x1d, 0x1b, 0xbc, 0xb2, 0x63, 0xd8, 0x55, + 0xe8, 0xb4, 0xfb, 0x58, 0xba, 0x47, 0xb8, 0xfa, 0x9a, 0xbb, 0xf6, 0x67, + 0x1d, 0xa8, 0xf2, 0x98, 0x75, 0x06, 0xbb, 0xe9, 0xd7, 0xa3, 0x2f, 0x86, + 0x48, 0xcd, 0xa9, 0x22, 0x17, 0x45, 0x58, 0x88, 0x55, 0x00, 0x63, 0xb5, + 0x28, 0xfb, 0x82, 0x9f, 0x22, 0x91, 0x19, 0xe2, 0xa3, 0xfe, 0x11, 0x5e, + 0x36, 0x71, 0xf1, 0xc4, 0xe8, 0xc3, 0xec, 0xc6, 0x9a, 0x29, 0x0d, 0x19, + 0xaf, 0x29, 0x1a, 0x30, 0xa2, 0x92, 0x8a, 0x04, 0x29, 0x34, 0x94, 0x50, + 0x29, 0x88, 0xbd, 0x6c, 0x3f, 0x75, 0xf8, 0xd5, 0x80, 0x2a, 0x1b, 0x61, + 0xfb, 0xaf, 0xc6, 0xac, 0x01, 0x5f, 0x53, 0x83, 0xfe, 0x04, 0x7d, 0x0e, + 0x59, 0xfc, 0x4c, 0x50, 0x29, 0xc0, 0x50, 0x05, 0x38, 0x0a, 0xea, 0x20, + 0x00, 0xa7, 0x01, 0x4e, 0x58, 0x9d, 0xba, 0x29, 0xab, 0x09, 0x67, 0x23, + 0x75, 0xc0, 0x15, 0x94, 0xeb, 0x53, 0xa7, 0xf1, 0x4a, 0xc3, 0x51, 0x6f, + 0x62, 0xb0, 0x15, 0x97, 0xae, 0xcf, 0xe5, 0xdb, 0x08, 0xc1, 0xe5, 0xcd, + 0x74, 0xd1, 0xda, 0x46, 0xbf, 0x78, 0xe6, 0x99, 0x77, 0xa7, 0x59, 0xde, + 0x28, 0x59, 0x62, 0x07, 0x1d, 0x08, 0xed, 0x5c, 0x52, 0xcd, 0x68, 0x46, + 0x56, 0x5a, 0x8e, 0x54, 0x27, 0x28, 0xb4, 0x8f, 0x3e, 0x53, 0x81, 0x4e, + 0xdf, 0x57, 0x75, 0xad, 0x3f, 0xfb, 0x3a, 0xe8, 0x2a, 0x67, 0xca, 0x61, + 0x95, 0x26, 0xb3, 0x37, 0x57, 0xa9, 0x4e, 0xa4, 0x6a, 0x45, 0x4e, 0x3b, + 0x33, 0xcb, 0x9c, 0x1c, 0x1f, 0x2b, 0x2c, 0x09, 0x31, 0x4e, 0xf3, 0x86, + 0x0d, 0x55, 0xdd, 0x48, 0x5b, 0x83, 0x5a, 0x12, 0x36, 0xde, 0xff, 0x00, + 0x00, 0x73, 0x5a, 0x31, 0x5f, 0x06, 0xea, 0x6b, 0x96, 0x65, 0x96, 0x0f, + 0xbc, 0x0f, 0x15, 0x24, 0x57, 0x64, 0x77, 0xa2, 0xec, 0x9b, 0x9d, 0x72, + 0xcc, 0xad, 0xd0, 0xd3, 0xb3, 0x5c, 0xec, 0x57, 0xe4, 0x77, 0xab, 0xb1, + 0x5f, 0x82, 0x39, 0x34, 0xd3, 0x03, 0x48, 0xd4, 0x4e, 0x2a, 0x34, 0xb9, + 0x56, 0x1d, 0x6a, 0x4d, 0xe0, 0x8e, 0xb5, 0x40, 0xc8, 0x4d, 0x21, 0xa9, + 0x08, 0xcd, 0x46, 0x45, 0x04, 0x0c, 0x35, 0x19, 0xa9, 0x0d, 0x46, 0xd4, + 0xc4, 0x30, 0xd3, 0x4b, 0x11, 0xd0, 0xd3, 0xba, 0xd3, 0x48, 0xa0, 0x57, + 0x10, 0xcb, 0x20, 0xe8, 0xed, 0xf9, 0xd3, 0x0c, 0xd3, 0x7f, 0xcf, 0x46, + 0xfc, 0xe9, 0xc6, 0x80, 0xb4, 0x58, 0x39, 0xa5, 0xdc, 0xa9, 0x39, 0x24, + 0xfc, 0xc7, 0x26, 0xab, 0x1a, 0xbd, 0x34, 0x0c, 0xdc, 0xaf, 0x3e, 0xd5, + 0x4d, 0xe2, 0x90, 0x75, 0x43, 0x49, 0xa1, 0x26, 0x33, 0x34, 0xdc, 0xd2, + 0x1c, 0x8e, 0xa0, 0xd2, 0x6e, 0xa4, 0x55, 0xc5, 0xa6, 0xb5, 0x19, 0xa4, + 0x39, 0x3d, 0xa9, 0x0e, 0xe4, 0x05, 0xc8, 0x6c, 0x0a, 0x70, 0x72, 0x69, + 0xe2, 0xdd, 0xd8, 0xe7, 0x15, 0x20, 0xb7, 0x22, 0x8b, 0x15, 0xcc, 0x88, + 0xc1, 0x26, 0x9c, 0x01, 0xa9, 0x96, 0x0a, 0x78, 0x8c, 0x0a, 0x76, 0x0b, + 0x8c, 0x57, 0x94, 0x29, 0x50, 0xec, 0x01, 0xed, 0x9a, 0x69, 0x1b, 0x47, + 0x26, 0xa6, 0x22, 0xa1, 0x92, 0x16, 0x61, 0xf2, 0x9a, 0x12, 0x29, 0x3b, + 0xee, 0x57, 0x79, 0x5b, 0xf8, 0x45, 0x43, 0xe6, 0xcc, 0x1b, 0x21, 0xc8, + 0x23, 0xd2, 0xa7, 0x31, 0x3a, 0xf5, 0x5f, 0xca, 0x9b, 0xb4, 0x1a, 0xdd, + 0x46, 0x26, 0xf1, 0x51, 0xe8, 0x36, 0x6b, 0xcb, 0xab, 0x85, 0x0b, 0x2c, + 0xce, 0xca, 0x3b, 0x13, 0x50, 0x8a, 0x98, 0xc7, 0x4d, 0x31, 0xd3, 0x4a, + 0xdb, 0x17, 0x76, 0xc6, 0x83, 0x4e, 0x06, 0x8d, 0xb4, 0x80, 0x62, 0x98, + 0x0e, 0xa5, 0xa4, 0xa2, 0x81, 0x0e, 0xa2, 0x92, 0x8c, 0xd0, 0x31, 0x68, + 0xa4, 0xcd, 0x19, 0xa0, 0x05, 0xa4, 0xcd, 0x25, 0x21, 0x3c, 0x50, 0x04, + 0x43, 0x96, 0x34, 0xa6, 0x91, 0x69, 0x4d, 0x0c, 0x48, 0x4a, 0x4a, 0x5a, + 0x43, 0x48, 0xa1, 0x0d, 0x25, 0x2d, 0x25, 0x03, 0x15, 0x6a, 0xfc, 0x07, + 0xf7, 0x62, 0xa8, 0x0a, 0xbd, 0x01, 0xfd, 0xd8, 0xa4, 0x32, 0xc0, 0x34, + 0xf0, 0xd5, 0x08, 0x34, 0xf1, 0x40, 0x8b, 0x56, 0xe0, 0x4b, 0x3a, 0x2c, + 0x8f, 0xb5, 0x49, 0xc1, 0x63, 0xda, 0xba, 0x99, 0x7c, 0x2a, 0xc2, 0xcb, + 0xcf, 0xb6, 0x9f, 0xce, 0x38, 0xce, 0x31, 0xd6, 0xb9, 0x15, 0xe2, 0xb4, + 0xed, 0x75, 0xdb, 0xfb, 0x38, 0x3c, 0x98, 0x66, 0x21, 0x3b, 0x67, 0xb5, + 0x44, 0xd4, 0xbe, 0xc9, 0x71, 0x71, 0xea, 0x41, 0x2a, 0xb2, 0x31, 0x46, + 0x04, 0x30, 0xe0, 0x83, 0x54, 0xa4, 0xb7, 0x2c, 0xd9, 0x04, 0x83, 0xed, + 0x56, 0xe6, 0xba, 0x92, 0xe6, 0x53, 0x24, 0xad, 0xb9, 0xcf, 0x53, 0x4d, + 0xcd, 0x53, 0x8a, 0x6a, 0xcc, 0x14, 0x9c, 0x5d, 0xd3, 0x2a, 0xab, 0x5c, + 0xc3, 0xd1, 0xb7, 0x0a, 0x99, 0x35, 0x73, 0x11, 0x02, 0x50, 0x53, 0xdc, + 0xf4, 0xa9, 0x38, 0x35, 0x0d, 0xc4, 0x0b, 0x22, 0x10, 0x46, 0x6b, 0x8a, + 0xb6, 0x5d, 0x42, 0xa7, 0x4b, 0x1d, 0x94, 0xb1, 0xf5, 0x63, 0xbe, 0xa6, + 0xac, 0x1a, 0x90, 0x70, 0x08, 0x6c, 0xfe, 0x35, 0x76, 0x3b, 0xf3, 0xeb, + 0x50, 0xc1, 0xa0, 0xdb, 0xdc, 0x59, 0x45, 0x22, 0x02, 0xa4, 0xa8, 0xe9, + 0x51, 0xc9, 0xa1, 0xdd, 0x45, 0xfe, 0xaa, 0x72, 0x7d, 0x8d, 0x78, 0xb5, + 0x32, 0xb7, 0xf6, 0x59, 0xe9, 0xc3, 0x30, 0x8f, 0x53, 0x4d, 0x2f, 0xbd, + 0xea, 0x75, 0xbc, 0x07, 0xbd, 0x73, 0xad, 0x6f, 0xa9, 0x41, 0xd6, 0x20, + 0xe3, 0xda, 0x90, 0x5e, 0x4b, 0x1f, 0x12, 0xc3, 0x22, 0x7e, 0x19, 0xae, + 0x39, 0xe0, 0x2b, 0x47, 0xa1, 0xd5, 0x0c, 0x5d, 0x39, 0x75, 0x3a, 0x85, + 0xb9, 0x53, 0xde, 0xa4, 0x13, 0x29, 0xef, 0x5c, 0xca, 0x6a, 0x51, 0x9e, + 0x37, 0xe0, 0xfa, 0x1e, 0x2a, 0xd2, 0x5e, 0x03, 0xd1, 0x81, 0xfc, 0x6b, + 0x96, 0x54, 0x65, 0x1d, 0xd1, 0xd1, 0x1a, 0x89, 0xec, 0x6e, 0xf9, 0x83, + 0xd6, 0x9c, 0x1c, 0x7a, 0xd6, 0x32, 0xdd, 0x1f, 0x5a, 0x94, 0x5d, 0x1a, + 0xcd, 0xc4, 0xbe, 0x63, 0x57, 0x7f, 0xbd, 0x1b, 0xbd, 0xeb, 0x34, 0x5d, + 0xd3, 0x85, 0xd5, 0x2b, 0x0f, 0x98, 0xd1, 0xdf, 0xef, 0x46, 0xfa, 0xa0, + 0x2e, 0x85, 0x2f, 0xda, 0x45, 0x3b, 0x85, 0xcb, 0xdb, 0xe8, 0xdf, 0x54, + 0xbe, 0xd2, 0x28, 0xfb, 0x40, 0xf5, 0xa7, 0xcc, 0x05, 0xd1, 0x21, 0x1d, + 0x0d, 0x34, 0xca, 0x7f, 0xbc, 0x6a, 0x9f, 0x9f, 0x48, 0x67, 0xaa, 0xf6, + 0xb2, 0xd8, 0x56, 0x45, 0xa2, 0xf9, 0xef, 0x4c, 0x2d, 0xef, 0x55, 0x4d, + 0xc7, 0xbd, 0x31, 0xae, 0x29, 0x73, 0xb0, 0x2d, 0x6f, 0xc1, 0x04, 0x1c, + 0x11, 0x57, 0x17, 0x53, 0x43, 0x16, 0xd9, 0xd7, 0x71, 0x1d, 0x08, 0xac, + 0x17, 0xb9, 0x3e, 0xb5, 0x09, 0x92, 0x57, 0xe8, 0xa6, 0xb7, 0xa3, 0x88, + 0xa9, 0x4b, 0x58, 0x98, 0xd5, 0xa5, 0x0a, 0x8a, 0xd2, 0x46, 0x9b, 0x5f, + 0x92, 0xed, 0x85, 0xc0, 0xcf, 0x00, 0x9c, 0xd5, 0x3b, 0xe9, 0x7c, 0xe0, + 0xa4, 0xe3, 0x8a, 0x8e, 0x28, 0xe5, 0x2d, 0x97, 0x18, 0x14, 0xb7, 0x2b, + 0xb5, 0x05, 0x39, 0xe2, 0xaa, 0xcf, 0xdd, 0x72, 0xd1, 0x92, 0xa8, 0x53, + 0x8b, 0xba, 0x5a, 0x94, 0xe9, 0x68, 0xa2, 0xb3, 0x18, 0x52, 0x52, 0xd1, + 0x40, 0x84, 0xa2, 0x8a, 0x29, 0x88, 0x2b, 0x42, 0xd7, 0x1f, 0x67, 0x5a, + 0xcf, 0xab, 0x30, 0x9f, 0xdd, 0x8a, 0xe8, 0xc3, 0x62, 0x15, 0x09, 0x73, + 0x35, 0x73, 0x1a, 0xd4, 0x7d, 0xaa, 0xe5, 0xbd, 0x8b, 0x84, 0x0a, 0x69, + 0x54, 0x3d, 0x40, 0xa8, 0x09, 0xf7, 0xa6, 0x13, 0x5d, 0x9f, 0xda, 0x8b, + 0xa4, 0x4e, 0x7f, 0xec, 0xfe, 0xf2, 0x27, 0x31, 0xc4, 0x7a, 0x85, 0xa6, + 0x18, 0xa0, 0xee, 0x16, 0x99, 0x91, 0x45, 0x4b, 0xcd, 0x1f, 0x48, 0x94, + 0xb2, 0xf8, 0xf5, 0x90, 0x18, 0x6d, 0xf3, 0xf7, 0x47, 0xe5, 0x4d, 0x31, + 0xc3, 0xd9, 0x29, 0x68, 0xac, 0xa5, 0x99, 0x55, 0x7b, 0x24, 0x5a, 0xc0, + 0xd3, 0x5b, 0x8c, 0x31, 0x46, 0x7f, 0x80, 0x52, 0x18, 0x23, 0x3d, 0x55, + 0x7f, 0x2a, 0x7e, 0x69, 0x0b, 0xe0, 0x64, 0x9e, 0x2b, 0x19, 0x63, 0x2b, + 0xcb, 0xed, 0x1a, 0xc7, 0x0d, 0x4a, 0x3d, 0x08, 0xde, 0x38, 0x62, 0x42, + 0xec, 0xaa, 0x00, 0xe7, 0x35, 0x8c, 0x26, 0xb9, 0xd5, 0x67, 0x64, 0xb7, + 0x6f, 0x26, 0xdd, 0x4e, 0x37, 0x01, 0xc9, 0xa2, 0xfa, 0xe5, 0xf5, 0x2b, + 0x9f, 0xb1, 0xdb, 0x9f, 0xdd, 0x83, 0xf3, 0xb0, 0xad, 0x6b, 0x68, 0xa3, + 0xb5, 0x81, 0x63, 0x8c, 0x60, 0x01, 0x4d, 0xc9, 0xc1, 0x73, 0x4b, 0x59, + 0x3f, 0xc0, 0x2c, 0xa4, 0xec, 0xb4, 0x46, 0x73, 0x69, 0xda, 0x8c, 0x3c, + 0x5b, 0x5e, 0x65, 0x7f, 0xdb, 0x19, 0xa6, 0xed, 0xd6, 0xd3, 0xfe, 0x5a, + 0xc4, 0xdf, 0x85, 0x6b, 0x19, 0x40, 0xa6, 0x19, 0x33, 0x52, 0xab, 0x4f, + 0xaa, 0x5f, 0x70, 0xfd, 0x94, 0x7a, 0x37, 0xf7, 0x94, 0x23, 0xbc, 0xd7, + 0x60, 0x5f, 0x96, 0x38, 0x08, 0xfa, 0xd4, 0x37, 0x1a, 0xb7, 0x88, 0x49, + 0xf9, 0x63, 0x55, 0x18, 0xfe, 0x11, 0x9a, 0xd4, 0x04, 0x13, 0x53, 0x2d, + 0x54, 0xab, 0xc6, 0xf7, 0x70, 0x46, 0x3f, 0x54, 0x8b, 0xea, 0xce, 0x0d, + 0xbe, 0xd2, 0xf7, 0x79, 0x90, 0x1f, 0x35, 0x9f, 0x27, 0x8e, 0xf5, 0xea, + 0x16, 0x71, 0x19, 0x2c, 0x22, 0x13, 0x28, 0xdd, 0xb0, 0x64, 0x55, 0x18, + 0x2c, 0xa2, 0x79, 0xc4, 0xa6, 0x31, 0xb8, 0x77, 0xc5, 0x6a, 0x47, 0xb9, + 0x78, 0xea, 0x2b, 0x0c, 0x5e, 0x25, 0x55, 0xb2, 0x4a, 0xd6, 0x39, 0x5d, + 0x25, 0x09, 0x35, 0x7b, 0x98, 0xfa, 0x87, 0x85, 0xec, 0xee, 0xc9, 0x78, + 0xd7, 0xc9, 0x97, 0xfb, 0xc9, 0xc5, 0x65, 0x18, 0x75, 0xed, 0x14, 0xe6, + 0x37, 0x37, 0x30, 0x0e, 0xc7, 0x93, 0x5d, 0xa0, 0x39, 0xa5, 0x2a, 0x08, + 0xe9, 0x59, 0xc3, 0x17, 0x34, 0xb9, 0x65, 0xef, 0x2f, 0x33, 0x37, 0x0e, + 0xc7, 0x35, 0x61, 0xe2, 0xfb, 0x57, 0x61, 0x1d, 0xe4, 0x4d, 0x04, 0x9d, + 0xf2, 0x38, 0xae, 0x8e, 0xde, 0xea, 0xde, 0xed, 0x43, 0xc3, 0x2a, 0xba, + 0xfb, 0x1a, 0xa3, 0x7b, 0xa2, 0xd9, 0x5f, 0x29, 0x12, 0xc0, 0xb9, 0xfe, + 0xf0, 0x1c, 0xd7, 0x35, 0x7b, 0xa1, 0x5e, 0x68, 0x8d, 0xf6, 0xbd, 0x36, + 0x67, 0x31, 0xaf, 0x25, 0x33, 0x5a, 0x28, 0x50, 0xac, 0xed, 0x17, 0xca, + 0xfc, 0xf6, 0x15, 0xda, 0xdc, 0xee, 0xc2, 0x8a, 0x7e, 0xd1, 0x5c, 0xf6, + 0x81, 0xaf, 0xa6, 0xa9, 0x0e, 0xc7, 0x21, 0x67, 0x4f, 0xbc, 0xbe, 0xb5, + 0xb8, 0x1c, 0xd7, 0x25, 0x4a, 0x72, 0xa7, 0x2e, 0x59, 0x6e, 0x52, 0x69, + 0x8b, 0x3a, 0x2f, 0x90, 0xe7, 0x1d, 0xab, 0x28, 0xf4, 0xad, 0x59, 0x49, + 0xf2, 0x1f, 0xe9, 0x59, 0x24, 0xd2, 0x4d, 0xbd, 0xca, 0x43, 0x4d, 0x25, + 0x19, 0xa2, 0xb4, 0x44, 0x85, 0x14, 0xb4, 0x62, 0x98, 0x83, 0x14, 0xa0, + 0x50, 0x05, 0x3d, 0x45, 0x43, 0x60, 0x6b, 0x69, 0xd6, 0xbe, 0x74, 0x19, + 0xce, 0x30, 0x6b, 0x45, 0x34, 0xe5, 0xee, 0xc6, 0xa1, 0xd2, 0x38, 0xb7, + 0x3f, 0x5a, 0xd3, 0x06, 0xba, 0x21, 0x8f, 0xad, 0x18, 0x28, 0xc6, 0x5a, + 0x22, 0x1d, 0x38, 0xde, 0xe5, 0x57, 0xb4, 0x8e, 0x30, 0x08, 0x19, 0xfa, + 0xd0, 0xa8, 0x8b, 0xd1, 0x45, 0x5a, 0xeb, 0xc1, 0xa4, 0xf2, 0xd4, 0xd6, + 0x55, 0x31, 0x35, 0xe7, 0xf6, 0x99, 0x4a, 0x31, 0x5d, 0x08, 0x81, 0xc7, + 0x4a, 0x37, 0x35, 0x4c, 0x23, 0x14, 0xe1, 0x18, 0xae, 0x7f, 0x79, 0xee, + 0xca, 0xba, 0x20, 0xc9, 0xa3, 0x26, 0xac, 0x79, 0x62, 0x97, 0xcb, 0x15, + 0x4a, 0x2c, 0x2e, 0x64, 0x6a, 0xd6, 0x2b, 0x7f, 0x64, 0xc9, 0x8f, 0x9d, + 0x79, 0x53, 0xef, 0x5c, 0x5b, 0x5a, 0x14, 0x24, 0x15, 0x20, 0x8a, 0xf4, + 0xc5, 0x8d, 0x01, 0xe4, 0x55, 0x2d, 0x53, 0x4e, 0xb3, 0x92, 0xd5, 0x8e, + 0x02, 0x30, 0xe4, 0x30, 0x15, 0xf4, 0x39, 0x45, 0x5e, 0x58, 0x38, 0xc9, + 0x9e, 0x7e, 0x32, 0x8f, 0x3b, 0xe6, 0x5b, 0x9e, 0x7a, 0x60, 0xf6, 0xaa, + 0xf7, 0x23, 0xca, 0x8c, 0xb1, 0xe9, 0x5b, 0x6d, 0x18, 0xc9, 0x15, 0x4e, + 0xfa, 0xdc, 0x3d, 0xb3, 0x80, 0x32, 0x71, 0xc5, 0x7b, 0xd6, 0x3c, 0xb1, + 0xd2, 0x5a, 0x47, 0x2a, 0xfc, 0xca, 0x0d, 0x67, 0xcd, 0xa2, 0x44, 0xe7, + 0x2b, 0x95, 0x3e, 0xd5, 0xb4, 0x07, 0x02, 0x8c, 0x53, 0x26, 0xc7, 0x38, + 0xda, 0x2c, 0xc9, 0xf7, 0x24, 0xcf, 0xd6, 0xa2, 0x6b, 0x3b, 0xa8, 0x79, + 0x2b, 0x90, 0x3d, 0x2b, 0xa7, 0xc5, 0x31, 0xd4, 0x11, 0x45, 0x90, 0xac, + 0x73, 0x09, 0x76, 0xc8, 0xdb, 0x49, 0xc1, 0xf4, 0x35, 0x6a, 0x3b, 0xe3, + 0xeb, 0x56, 0xae, 0x2c, 0xa0, 0x92, 0x65, 0x32, 0xa6, 0x57, 0x3c, 0xd5, + 0xd6, 0xf0, 0x9c, 0x12, 0x20, 0x7b, 0x79, 0xdd, 0x41, 0x19, 0x1c, 0xe4, + 0x52, 0x7a, 0x1a, 0xd3, 0xa6, 0xe6, 0xb4, 0x65, 0x24, 0xbc, 0x06, 0xa5, + 0x13, 0xab, 0x77, 0xa1, 0xfc, 0x31, 0x79, 0x1f, 0xfa, 0xb9, 0x91, 0xfe, + 0xa3, 0x15, 0x09, 0xd1, 0xb5, 0x28, 0xff, 0x00, 0xe5, 0x90, 0x6f, 0xf7, + 0x5a, 0x92, 0x90, 0xdd, 0x19, 0xf6, 0x2c, 0x6e, 0x07, 0xa1, 0xa6, 0x30, + 0xcd, 0x41, 0xf6, 0x4b, 0xf4, 0xeb, 0x6e, 0xf4, 0xb8, 0xb9, 0x5f, 0xbd, + 0x0b, 0xfe, 0x55, 0x5c, 0xc6, 0x6e, 0x9b, 0xec, 0x38, 0x82, 0x29, 0x86, + 0x9c, 0x1a, 0x4e, 0xf1, 0x3f, 0xfd, 0xf2, 0x69, 0x76, 0x96, 0xfe, 0x06, + 0xfc, 0x8d, 0x3e, 0x64, 0x4b, 0xa7, 0x2e, 0xc4, 0x54, 0xf5, 0x14, 0xa2, + 0x09, 0x09, 0xe1, 0x18, 0xfe, 0x15, 0x65, 0x2d, 0x26, 0x23, 0x88, 0xdb, + 0xf2, 0xa7, 0x74, 0x4f, 0x24, 0xbb, 0x10, 0x54, 0x6c, 0xb9, 0xab, 0xe3, + 0x4e, 0xb9, 0x3f, 0xc1, 0x8f, 0xad, 0x3c, 0x69, 0x33, 0x9e, 0xbb, 0x47, + 0xe3, 0x4b, 0x99, 0x15, 0xec, 0x66, 0xfa, 0x19, 0x26, 0x31, 0xe9, 0x4c, + 0x31, 0x0f, 0x4a, 0xdc, 0x1a, 0x39, 0xfe, 0x29, 0x07, 0xe5, 0x52, 0x2e, + 0x91, 0x10, 0xfb, 0xcc, 0xc6, 0x97, 0x3a, 0x29, 0x61, 0x66, 0xce, 0x74, + 0xc2, 0x3d, 0x28, 0x16, 0xe5, 0xba, 0x2e, 0x7f, 0x0a, 0xe9, 0xd7, 0x4f, + 0xb7, 0x4f, 0xf9, 0x66, 0x0f, 0xd6, 0x89, 0x9a, 0x1b, 0x68, 0xcb, 0x10, + 0x07, 0xa0, 0x14, 0xb9, 0xfb, 0x1a, 0xac, 0x2d, 0xb5, 0x93, 0x39, 0x89, + 0x2d, 0x65, 0x89, 0x37, 0x14, 0x20, 0x7b, 0xd4, 0x7b, 0x72, 0x39, 0xab, + 0xd7, 0x33, 0xb5, 0xc4, 0x9b, 0x9b, 0xa7, 0x61, 0x55, 0x88, 0xaa, 0x5e, + 0x67, 0x3c, 0xb9, 0x6f, 0xee, 0x91, 0x6d, 0xa4, 0xdb, 0x52, 0x62, 0x90, + 0x8a, 0x00, 0x66, 0x29, 0x36, 0xd3, 0xf1, 0x46, 0x28, 0x01, 0x9b, 0x69, + 0xa6, 0x24, 0x6e, 0xaa, 0x2a, 0x5c, 0x51, 0x8a, 0x06, 0x99, 0x58, 0xda, + 0xaf, 0xf0, 0x92, 0x2a, 0x33, 0x6e, 0xe3, 0xd0, 0xd5, 0xdc, 0x51, 0x8a, + 0xa5, 0x36, 0x68, 0xa7, 0x24, 0x67, 0x34, 0x44, 0x75, 0x04, 0x54, 0x65, + 0x6b, 0x54, 0xa8, 0x23, 0x91, 0x56, 0x5f, 0x4d, 0x5b, 0xb8, 0x11, 0xe2, + 0x0a, 0x8d, 0xdf, 0x8e, 0xb5, 0x5e, 0xd7, 0xb9, 0xbc, 0x1b, 0x99, 0xcf, + 0xed, 0xa4, 0xdb, 0x5a, 0xd2, 0x68, 0xf7, 0x49, 0xff, 0x00, 0x2c, 0xc3, + 0x7d, 0x0d, 0x54, 0x92, 0xd2, 0x58, 0xf8, 0x68, 0xd8, 0x7e, 0x15, 0x6a, + 0x49, 0xec, 0x57, 0x2b, 0x45, 0x4c, 0x51, 0x52, 0x98, 0xcd, 0x34, 0xa1, + 0xaa, 0x11, 0x1d, 0x21, 0xa9, 0x0a, 0xd3, 0x4a, 0xd2, 0x19, 0x19, 0x34, + 0xc6, 0x6e, 0x29, 0xe5, 0x6a, 0x27, 0x53, 0x40, 0x5c, 0x54, 0xa7, 0x54, + 0x6a, 0xd4, 0xfc, 0xd0, 0x4a, 0x0a, 0x4a, 0x33, 0x49, 0x91, 0x48, 0xa1, + 0x69, 0xa6, 0x82, 0xc3, 0xd6, 0x9a, 0x58, 0x7a, 0xd0, 0x03, 0x85, 0x5c, + 0x88, 0xfc, 0x82, 0xa9, 0xa8, 0x66, 0x3c, 0x03, 0x57, 0x23, 0x52, 0x8a, + 0x33, 0x45, 0x87, 0x72, 0x65, 0xa9, 0x54, 0x8a, 0x89, 0x79, 0xa9, 0x55, + 0x68, 0x01, 0xe0, 0xd3, 0x85, 0x20, 0x14, 0xb8, 0xf7, 0xa0, 0x05, 0xdc, + 0x05, 0x39, 0x58, 0x93, 0x4d, 0x00, 0x0a, 0x78, 0x34, 0x00, 0xf0, 0x69, + 0x4f, 0x22, 0x98, 0x0d, 0x3b, 0x3c, 0x52, 0x28, 0xe9, 0xfc, 0x3f, 0x70, + 0x25, 0xb2, 0xf2, 0x8f, 0xde, 0x8c, 0xe3, 0xf0, 0xad, 0x6d, 0x80, 0xd7, + 0x25, 0xa1, 0xcc, 0xd1, 0xea, 0x2a, 0xa0, 0xf0, 0xfc, 0x11, 0x5d, 0x7e, + 0x6b, 0x8e, 0xac, 0x6d, 0x23, 0xa6, 0x0e, 0xe8, 0x61, 0x88, 0x1e, 0xd5, + 0x13, 0x5b, 0x46, 0xdd, 0x54, 0x55, 0x8c, 0xd1, 0x59, 0x14, 0x67, 0xc9, + 0xa5, 0xdb, 0x49, 0xf7, 0xa2, 0x53, 0xf8, 0x55, 0x29, 0xf4, 0x3b, 0x44, + 0x5d, 0xea, 0x85, 0x4e, 0x78, 0xc1, 0xad, 0xda, 0xa7, 0x76, 0xd9, 0x75, + 0x41, 0xdb, 0x9a, 0xe7, 0xc5, 0xcd, 0x42, 0x8c, 0x99, 0xd5, 0x85, 0x8b, + 0x95, 0x54, 0x8a, 0x49, 0x63, 0x12, 0xae, 0x31, 0xfa, 0xd0, 0xd6, 0x2a, + 0x7e, 0xe9, 0x22, 0xad, 0x03, 0x4b, 0x5f, 0x26, 0xdc, 0x8f, 0xa1, 0x49, + 0x19, 0xed, 0x65, 0x20, 0xfb, 0xaf, 0xf9, 0x8a, 0x61, 0xb5, 0xb8, 0x1d, + 0x0a, 0xd6, 0x9d, 0x14, 0xf9, 0xa4, 0x16, 0x33, 0x3e, 0xcf, 0x70, 0x3f, + 0xbb, 0x47, 0x93, 0x72, 0x3f, 0x84, 0x7e, 0x75, 0xa7, 0x49, 0x8a, 0x7c, + 0xcc, 0x2c, 0x66, 0x18, 0xee, 0x47, 0xf0, 0x0f, 0xce, 0x81, 0x1d, 0xd1, + 0xfe, 0x05, 0x1f, 0x8d, 0x69, 0xd2, 0xe2, 0x8e, 0x67, 0xd8, 0x2c, 0x51, + 0x4b, 0x79, 0x8f, 0xde, 0x20, 0x7d, 0x2a, 0x61, 0x6d, 0xea, 0xc6, 0xac, + 0x51, 0x53, 0xab, 0x19, 0x46, 0x5b, 0x20, 0xe7, 0x89, 0x59, 0x47, 0xb5, + 0x49, 0x1d, 0xac, 0x51, 0xae, 0x39, 0x6f, 0x72, 0x6a, 0xc9, 0xe4, 0x54, + 0x52, 0x06, 0x03, 0x29, 0xd7, 0xd2, 0xaa, 0xee, 0xd6, 0x15, 0x96, 0xe2, + 0x79, 0x08, 0x3a, 0x28, 0xa4, 0xd8, 0x05, 0x2a, 0x19, 0x19, 0x72, 0x50, + 0xfe, 0x14, 0xa4, 0xe6, 0xaa, 0x74, 0xa7, 0x0f, 0x89, 0x13, 0x19, 0xc6, + 0x5b, 0x32, 0x32, 0x2a, 0xbd, 0xd7, 0xfa, 0xba, 0xb0, 0xd5, 0x5e, 0xe3, + 0xfd, 0x5d, 0x28, 0xbd, 0x46, 0xf6, 0x29, 0x52, 0x52, 0x9a, 0x4a, 0xd8, + 0xc5, 0x89, 0x45, 0x14, 0x53, 0x10, 0x51, 0x49, 0x45, 0x02, 0x0a, 0x9a, + 0x37, 0xc2, 0xe2, 0xa1, 0xa5, 0x06, 0x86, 0x86, 0x89, 0xf7, 0x51, 0x9a, + 0x8c, 0x52, 0x8c, 0xd4, 0x94, 0x3e, 0x96, 0x90, 0x52, 0xd0, 0x01, 0x45, + 0x14, 0xb4, 0x80, 0x6d, 0x32, 0x48, 0x84, 0xb1, 0x94, 0x6e, 0x87, 0x8a, + 0x97, 0x14, 0x62, 0x84, 0xed, 0xb0, 0xac, 0x50, 0xb6, 0xd3, 0x62, 0xb5, + 0xc8, 0x88, 0x11, 0x9e, 0xbc, 0xd5, 0xa1, 0x15, 0x4b, 0xc0, 0xa6, 0x34, + 0xf1, 0xaf, 0x05, 0x86, 0x7d, 0x05, 0x5d, 0xe7, 0x37, 0xdd, 0x93, 0x68, + 0xc5, 0x11, 0x34, 0x78, 0x34, 0xe5, 0x81, 0xdf, 0xa2, 0x93, 0x57, 0xad, + 0x42, 0x4a, 0x37, 0x18, 0xcf, 0xb6, 0xe1, 0x57, 0x02, 0x80, 0x38, 0x15, + 0x33, 0x72, 0x8e, 0x8d, 0x6a, 0x73, 0xcb, 0x12, 0x96, 0x91, 0x33, 0x23, + 0xb0, 0x72, 0x7e, 0x6e, 0x2a, 0xe4, 0x76, 0xb1, 0xa7, 0x6c, 0x9f, 0x7a, + 0xb1, 0x8a, 0x31, 0x58, 0xca, 0x4d, 0x98, 0x4a, 0xb4, 0x98, 0x83, 0x81, + 0x8a, 0x78, 0x34, 0xca, 0x4a, 0x8b, 0x19, 0x32, 0x60, 0xd4, 0x92, 0xcc, + 0x63, 0x8c, 0xb2, 0x8c, 0xe3, 0xb5, 0x45, 0xba, 0xa0, 0xba, 0x90, 0x84, + 0xc5, 0x6b, 0x87, 0xa2, 0xaa, 0x55, 0x8c, 0x5f, 0x52, 0x64, 0xec, 0xae, + 0x58, 0x8e, 0xfa, 0x39, 0x38, 0x3f, 0x2b, 0x7a, 0x1a, 0x99, 0x99, 0x5d, + 0x48, 0xe0, 0x83, 0x58, 0x65, 0xa8, 0x13, 0xc8, 0x9f, 0x75, 0x88, 0xaf, + 0x56, 0xae, 0x53, 0xd6, 0x9c, 0xbe, 0xf3, 0x25, 0x5b, 0xba, 0x39, 0xdd, + 0x5e, 0x19, 0x34, 0x0d, 0x6d, 0x2f, 0x6d, 0xc1, 0x11, 0x33, 0x64, 0x81, + 0xfa, 0x8a, 0xec, 0xed, 0x35, 0x24, 0xba, 0xb5, 0x49, 0xa3, 0x20, 0x86, + 0x19, 0xac, 0x4d, 0x57, 0xfe, 0x26, 0x16, 0x2f, 0x0c, 0x88, 0x0b, 0x63, + 0x2a, 0x7d, 0xeb, 0x13, 0xc3, 0x3a, 0x91, 0xb3, 0xba, 0x6d, 0x3e, 0xe1, + 0xb0, 0xa4, 0xfc, 0x84, 0xf6, 0xa8, 0xc4, 0x61, 0x6a, 0x4a, 0x8a, 0x73, + 0x5e, 0xf4, 0x7f, 0x14, 0x38, 0xc9, 0x5e, 0xc8, 0xee, 0x9e, 0xf1, 0x99, + 0x4a, 0xe3, 0x83, 0x55, 0xf3, 0x91, 0x4d, 0x38, 0xc7, 0x04, 0x1a, 0x6e, + 0x78, 0xaf, 0x29, 0x44, 0xd8, 0x75, 0x28, 0xa6, 0x83, 0x4e, 0x15, 0xa1, + 0x02, 0x81, 0x4e, 0x02, 0x80, 0x33, 0x52, 0x2a, 0xd6, 0x72, 0x95, 0x86, + 0x20, 0x5c, 0xd4, 0x8a, 0x94, 0xe5, 0x41, 0x53, 0xc7, 0x1e, 0x4f, 0x1c, + 0xd6, 0x32, 0x98, 0xec, 0x6b, 0xe9, 0x4b, 0xfe, 0x8e, 0x7e, 0xb5, 0x7b, + 0xa5, 0x56, 0xb1, 0x43, 0x14, 0x38, 0x3c, 0x66, 0xac, 0xe6, 0xb1, 0x8c, + 0x9b, 0x06, 0x85, 0x14, 0xe1, 0x4d, 0xa7, 0x0a, 0xda, 0x22, 0x16, 0x8a, + 0x05, 0x2e, 0x57, 0xd6, 0xad, 0x45, 0x88, 0x06, 0x69, 0x70, 0x69, 0x3c, + 0xc4, 0x1d, 0xc5, 0x35, 0xa7, 0x55, 0xee, 0x2a, 0x94, 0x04, 0x3f, 0x69, + 0xa1, 0x91, 0x48, 0xc3, 0x1e, 0x2a, 0x94, 0xda, 0x94, 0x69, 0xfc, 0x43, + 0xf3, 0xac, 0xe9, 0xb5, 0x95, 0xc9, 0x0b, 0x92, 0x6b, 0xa2, 0x9d, 0x0a, + 0xb2, 0xf8, 0x22, 0xd9, 0x12, 0x9c, 0x16, 0xec, 0x5d, 0x5f, 0x4f, 0x89, + 0x53, 0xce, 0x80, 0x00, 0x47, 0xde, 0x02, 0xb9, 0xf7, 0x19, 0x53, 0xf4, + 0xad, 0x37, 0xd4, 0xcb, 0x1f, 0x9e, 0x32, 0xcb, 0xdc, 0x66, 0xa8, 0xce, + 0x63, 0x2c, 0xc6, 0x30, 0x42, 0x91, 0xd0, 0xf6, 0xaf, 0xa5, 0xcb, 0xdd, + 0x75, 0x1e, 0x4a, 0xcb, 0xd0, 0xf2, 0xb1, 0x4a, 0x9b, 0x7c, 0xd4, 0xd9, + 0x18, 0xfb, 0xa3, 0xe9, 0x45, 0x35, 0x7a, 0x0a, 0x5c, 0xd7, 0xa2, 0x72, + 0x0b, 0x48, 0x68, 0xcd, 0x25, 0x00, 0x56, 0x99, 0x72, 0x0d, 0x5d, 0xd2, + 0x2f, 0xb6, 0x37, 0xd9, 0xa5, 0x3c, 0x1f, 0xba, 0x4d, 0x56, 0x71, 0x9a, + 0xa9, 0x20, 0x2a, 0xc1, 0x87, 0x04, 0x74, 0xa1, 0xab, 0x84, 0x26, 0xe1, + 0x2b, 0xa3, 0xb0, 0xa4, 0xc5, 0x52, 0xd3, 0x2f, 0x05, 0xd5, 0xb0, 0xc9, + 0xfd, 0xe2, 0xf0, 0x6a, 0xed, 0x66, 0x7a, 0x51, 0x69, 0xab, 0xa1, 0x08, + 0xa4, 0x20, 0x7a, 0x52, 0xd2, 0x52, 0x18, 0xd2, 0xa3, 0xd0, 0x52, 0x6c, + 0x5f, 0x41, 0x4e, 0xa4, 0x34, 0xc6, 0x37, 0x68, 0xf4, 0x14, 0x62, 0x96, + 0x92, 0x81, 0x08, 0x69, 0xa6, 0x9d, 0x4d, 0x34, 0x00, 0xd3, 0x4d, 0x34, + 0xfa, 0x8a, 0x59, 0x56, 0x14, 0x2c, 0xe7, 0x02, 0x80, 0xd8, 0x64, 0xd2, + 0x2c, 0x28, 0x5d, 0x8e, 0x00, 0xae, 0x7e, 0xea, 0x76, 0xb8, 0x94, 0xb1, + 0x3c, 0x76, 0x15, 0x35, 0xe5, 0xdb, 0x5c, 0x3f, 0xa2, 0x0e, 0x82, 0xa9, + 0x9a, 0xd2, 0x2a, 0xc7, 0x05, 0x7a, 0xdc, 0xfa, 0x2d, 0x86, 0x1a, 0x69, + 0x14, 0xf3, 0x4d, 0x35, 0x47, 0x38, 0xca, 0x4a, 0x7d, 0x25, 0x21, 0x8c, + 0xc5, 0x18, 0xa7, 0x52, 0x50, 0x02, 0x62, 0x8a, 0x5a, 0x28, 0x18, 0x94, + 0xb8, 0xa5, 0xc5, 0x2e, 0x28, 0x29, 0x09, 0x8a, 0xd1, 0xd3, 0x89, 0x00, + 0x8e, 0xd5, 0x44, 0x2d, 0x68, 0xd9, 0x2e, 0x05, 0x4c, 0xb6, 0x37, 0xa3, + 0xf1, 0x1a, 0x02, 0x82, 0x8a, 0xc3, 0x90, 0x0d, 0x02, 0x9d, 0x59, 0x9d, + 0xc8, 0xaf, 0x25, 0x8d, 0xb4, 0x9f, 0x7a, 0x25, 0xfc, 0xaa, 0xac, 0x9a, + 0x25, 0xa3, 0xf4, 0x52, 0xbf, 0x43, 0x5a, 0x74, 0x62, 0xa9, 0x49, 0xad, + 0x82, 0xc9, 0x98, 0x72, 0x78, 0x79, 0x0f, 0xdc, 0x94, 0x8f, 0xa8, 0xaa, + 0xb2, 0x78, 0x7a, 0x61, 0xf7, 0x24, 0x53, 0xf5, 0xae, 0x9b, 0x14, 0x62, + 0xa9, 0x55, 0x92, 0x27, 0xd9, 0xc4, 0xe4, 0x5f, 0x41, 0xbb, 0x1d, 0x15, + 0x4f, 0xd0, 0xd5, 0x77, 0xd1, 0xaf, 0x07, 0xfc, 0xb1, 0x27, 0xe8, 0x6b, + 0xb5, 0xc5, 0x26, 0x2a, 0xbd, 0xb4, 0x89, 0xf6, 0x48, 0xe1, 0x5b, 0x47, + 0xba, 0xef, 0x03, 0x54, 0x7f, 0xd8, 0xf7, 0x5f, 0xf3, 0xc5, 0xeb, 0xbd, + 0xdb, 0x46, 0xca, 0x3d, 0xb3, 0xec, 0x1e, 0xc9, 0x1c, 0x18, 0xd1, 0xae, + 0xcf, 0xfc, 0xb1, 0x7a, 0x7a, 0xe8, 0x57, 0x6d, 0xff, 0x00, 0x2c, 0x5b, + 0xf3, 0xae, 0xe7, 0x65, 0x2e, 0xca, 0x3d, 0xb3, 0xec, 0x1e, 0xc9, 0x1c, + 0x5a, 0x78, 0x76, 0xe4, 0xf5, 0x8c, 0x0f, 0xa9, 0xab, 0x71, 0x78, 0x66, + 0x63, 0xf7, 0x8a, 0x0a, 0xea, 0xc2, 0x53, 0xc2, 0xe2, 0x97, 0xb5, 0x90, + 0xfd, 0x94, 0x4e, 0x7a, 0x3f, 0x0c, 0x00, 0x3e, 0x69, 0xbf, 0x21, 0x59, + 0x7a, 0x9d, 0xbc, 0x36, 0xd3, 0x08, 0x61, 0x94, 0xbb, 0x0f, 0xbc, 0x7d, + 0x2b, 0x67, 0x5a, 0xd6, 0xbc, 0x80, 0x6d, 0xed, 0xce, 0x64, 0x3f, 0x79, + 0x87, 0x6a, 0xe6, 0x97, 0x2c, 0xdb, 0x98, 0xe4, 0x9e, 0xa4, 0xd6, 0xb4, + 0xf9, 0x9e, 0xb2, 0x33, 0x9f, 0x2a, 0xd1, 0x12, 0xc6, 0x30, 0x2a, 0x61, + 0x51, 0xaf, 0x14, 0xf1, 0x5a, 0x10, 0x3a, 0x96, 0x9b, 0x9a, 0x51, 0x40, + 0xc7, 0x0a, 0x5c, 0xd3, 0x68, 0xa4, 0x03, 0xc1, 0xa7, 0x66, 0xa3, 0x06, + 0x9c, 0x0d, 0x03, 0x2c, 0xd8, 0x4b, 0xe4, 0xdf, 0x44, 0xfe, 0x8d, 0x5d, + 0xb8, 0x39, 0x00, 0xd7, 0x00, 0xad, 0x86, 0x07, 0xd2, 0xbb, 0x7b, 0x39, + 0x84, 0xd6, 0x91, 0x38, 0x3d, 0x54, 0x57, 0x35, 0x75, 0xaa, 0x66, 0xf4, + 0xde, 0x85, 0x9c, 0xd1, 0x9a, 0x6e, 0x68, 0xcd, 0x73, 0x9a, 0x8e, 0x26, + 0xb3, 0x99, 0xfc, 0xc9, 0x99, 0xaa, 0xd5, 0xc4, 0x9b, 0x20, 0x63, 0xf8, + 0x55, 0x28, 0xfa, 0x57, 0x91, 0x9a, 0x54, 0xb2, 0x50, 0x3d, 0x5c, 0xb6, + 0x1b, 0xcc, 0x94, 0x1a, 0x76, 0x69, 0x82, 0x97, 0x35, 0xe1, 0xb3, 0xd6, + 0x1d, 0x46, 0x69, 0x33, 0x45, 0x00, 0x2e, 0x69, 0x33, 0x49, 0x9a, 0x33, + 0x40, 0x0e, 0xa3, 0x34, 0xdc, 0xd1, 0x9a, 0x56, 0x01, 0xd9, 0xa4, 0xa4, + 0xa3, 0x34, 0xc0, 0x5c, 0xd0, 0x69, 0x33, 0x49, 0x9a, 0x00, 0x55, 0x73, + 0x1b, 0x64, 0x74, 0xee, 0x2a, 0x71, 0xe5, 0xca, 0xb9, 0xc0, 0xaa, 0xf4, + 0xcc, 0x95, 0x39, 0x53, 0x83, 0x5d, 0xb8, 0x5c, 0x6b, 0xa5, 0xee, 0x4f, + 0x58, 0x9c, 0xb5, 0xf0, 0xca, 0xa7, 0xbd, 0x1d, 0x24, 0x4e, 0xf6, 0xea, + 0x7a, 0x12, 0x2a, 0x85, 0xe4, 0x4d, 0x1c, 0x64, 0xe7, 0x22, 0xaf, 0x47, + 0x38, 0x6e, 0x1b, 0x86, 0xfe, 0x74, 0xb2, 0xaa, 0xc8, 0x85, 0x58, 0x64, + 0x1a, 0xf5, 0xbe, 0xaf, 0x87, 0xaf, 0x1e, 0x68, 0x24, 0x79, 0xff, 0x00, + 0x58, 0xaf, 0x46, 0x5c, 0xb3, 0x39, 0xf2, 0x69, 0xb9, 0xad, 0x09, 0x2c, + 0x63, 0xcf, 0x00, 0x8f, 0xc6, 0xa1, 0x36, 0x49, 0xfe, 0xd7, 0xe7, 0x5c, + 0xbf, 0xd9, 0xd3, 0xee, 0x8d, 0xbe, 0xbb, 0x07, 0xd0, 0xab, 0x9a, 0x4c, + 0xd5, 0x93, 0x66, 0x9e, 0xff, 0x00, 0x9d, 0x27, 0xd8, 0xd3, 0xd0, 0xfe, + 0x74, 0x7f, 0x67, 0x4f, 0xb8, 0x7d, 0x72, 0x1d, 0x8a, 0xf9, 0x14, 0x55, + 0x81, 0x6a, 0x83, 0xb5, 0x38, 0x40, 0xa3, 0xb5, 0x0f, 0x2e, 0x9f, 0x46, + 0x81, 0x62, 0xe1, 0xd4, 0xac, 0x01, 0x34, 0xf5, 0x43, 0x56, 0x04, 0x42, + 0x94, 0x44, 0x3d, 0xea, 0x7f, 0xb3, 0xaa, 0xf7, 0x43, 0xfa, 0xe5, 0x25, + 0xdc, 0x84, 0x2d, 0x3a, 0xa4, 0xf2, 0x46, 0x73, 0x93, 0xf9, 0xd3, 0xfc, + 0xa5, 0xf4, 0xa3, 0xfb, 0x32, 0xaf, 0x74, 0x1f, 0x5e, 0xa7, 0xd9, 0x90, + 0x81, 0x41, 0x20, 0x0f, 0x98, 0x81, 0xf5, 0xa9, 0xfc, 0xb5, 0xf4, 0xa6, + 0xb4, 0x11, 0xbf, 0xde, 0x50, 0x6a, 0x96, 0x57, 0x2e, 0xb2, 0x25, 0xe6, + 0x10, 0xb6, 0x88, 0xae, 0x67, 0x88, 0x7f, 0x18, 0x3f, 0x4a, 0x4f, 0xb4, + 0x2f, 0xf0, 0xab, 0x37, 0xd0, 0x55, 0x95, 0xb7, 0x8d, 0x7a, 0x20, 0x1f, + 0x85, 0x48, 0x10, 0x0e, 0xd5, 0xbc, 0x72, 0xca, 0x6b, 0x76, 0xd9, 0x8b, + 0xcc, 0x25, 0xd1, 0x14, 0x7c, 0xd9, 0x5b, 0xee, 0xc2, 0x7f, 0x13, 0x8a, + 0x50, 0x97, 0x2f, 0xd4, 0xaa, 0x8f, 0x6e, 0x6a, 0xee, 0xda, 0x5c, 0x56, + 0xd1, 0xc1, 0x50, 0x8f, 0x43, 0x19, 0x63, 0x2a, 0xbe, 0xa5, 0x31, 0x67, + 0xbb, 0xfd, 0x63, 0xb3, 0x7e, 0x35, 0x66, 0x0b, 0x34, 0x07, 0x0a, 0x83, + 0xf2, 0xa9, 0xd2, 0x32, 0xe7, 0x15, 0x76, 0x38, 0x82, 0x8a, 0xc7, 0x15, + 0x89, 0xa7, 0x86, 0x8d, 0xa0, 0xb5, 0x22, 0x2a, 0x55, 0x1d, 0xe4, 0xc6, + 0x08, 0x82, 0xa0, 0x00, 0x50, 0x05, 0x4c, 0x45, 0x37, 0x6d, 0x7c, 0xfb, + 0x9b, 0x93, 0x6d, 0x9b, 0x11, 0xed, 0xa3, 0x14, 0xfc, 0x52, 0xe2, 0xa1, + 0x81, 0x16, 0x29, 0x31, 0x52, 0xed, 0xa4, 0x2b, 0x4a, 0xe0, 0x42, 0x45, + 0x53, 0xba, 0xfb, 0xa2, 0xaf, 0x30, 0xaa, 0x57, 0x7c, 0x90, 0x2b, 0xb7, + 0x2f, 0x5c, 0xd5, 0xe2, 0x45, 0x47, 0xee, 0x94, 0xfa, 0xd0, 0x56, 0x97, + 0x18, 0xa2, 0xbe, 0xa4, 0xe5, 0x18, 0x52, 0xb9, 0x9f, 0x11, 0x69, 0x8c, + 0x98, 0xbc, 0x84, 0x10, 0x47, 0x5c, 0x76, 0xf7, 0xae, 0xac, 0x52, 0x49, + 0x12, 0x4d, 0x1b, 0x23, 0x80, 0x55, 0x86, 0x08, 0xa4, 0xd0, 0x18, 0x5a, + 0x16, 0xa2, 0x6f, 0xed, 0x76, 0x17, 0x22, 0x64, 0xe0, 0x8c, 0xf5, 0xad, + 0xe8, 0xdd, 0xc2, 0x80, 0xc3, 0x27, 0xd6, 0xb8, 0x7b, 0xcb, 0x69, 0xfc, + 0x3f, 0xab, 0x09, 0xa2, 0xcf, 0x94, 0x4e, 0x47, 0xb8, 0xf4, 0xae, 0xcf, + 0x4f, 0xbb, 0x8a, 0xfa, 0xd9, 0x26, 0x88, 0xe4, 0x11, 0xc8, 0xf4, 0xac, + 0x2a, 0xe1, 0x69, 0xd5, 0x5e, 0xf2, 0x29, 0x4d, 0xa2, 0xc6, 0xe7, 0xec, + 0x9f, 0xad, 0x49, 0x19, 0x72, 0x7e, 0x60, 0x00, 0xa9, 0x11, 0x2a, 0x55, + 0x4a, 0xc3, 0xfb, 0x3e, 0x8d, 0xad, 0x61, 0xfb, 0x46, 0x2c, 0x7b, 0x3b, + 0x93, 0xf8, 0x0a, 0xb2, 0x89, 0x09, 0xea, 0xcd, 0x51, 0x2c, 0x75, 0x32, + 0x26, 0x2b, 0x19, 0x65, 0x34, 0x65, 0xd5, 0x95, 0xed, 0xa4, 0x8b, 0x51, + 0xc5, 0x07, 0xa8, 0xfc, 0x6a, 0xec, 0x5e, 0x4a, 0x74, 0x2b, 0x59, 0xca, + 0xb5, 0x2a, 0xd6, 0x5f, 0xd8, 0x74, 0x5e, 0xf2, 0x61, 0xed, 0xdf, 0x63, + 0x50, 0x5c, 0x46, 0x3f, 0x8a, 0x8f, 0xb5, 0x20, 0xac, 0xe0, 0x69, 0xc0, + 0xd6, 0x91, 0xc9, 0x68, 0xae, 0xac, 0x4e, 0xbb, 0x2f, 0x1b, 0xbf, 0x41, + 0x4c, 0x37, 0x8f, 0xd9, 0x6a, 0xae, 0x69, 0xd9, 0xad, 0x56, 0x53, 0x41, + 0x6e, 0xd9, 0x3e, 0xda, 0x44, 0x8d, 0x73, 0x39, 0xe8, 0x07, 0xe7, 0x51, + 0x34, 0x97, 0x4d, 0xd1, 0xd4, 0x7e, 0x19, 0xa5, 0xcd, 0x45, 0x75, 0x70, + 0x2d, 0xe0, 0x69, 0x09, 0xe9, 0xd3, 0xeb, 0x5b, 0x47, 0x2d, 0xc3, 0xaf, + 0xb2, 0x4b, 0xad, 0x2b, 0x5e, 0xe6, 0x65, 0xdd, 0xf5, 0xd2, 0x5c, 0x98, + 0xc4, 0xf9, 0x03, 0xae, 0x05, 0x47, 0xf6, 0x99, 0x9c, 0x7c, 0xd2, 0x31, + 0xfc, 0x6a, 0x9a, 0xb1, 0x92, 0x42, 0xed, 0xd4, 0x9c, 0xd4, 0xe0, 0xf1, + 0x5d, 0xb4, 0xb0, 0xd4, 0xa9, 0xfc, 0x31, 0x48, 0xf3, 0x2a, 0x56, 0x9c, + 0xde, 0xac, 0x79, 0x62, 0x7b, 0xd2, 0x66, 0x9b, 0x9a, 0x33, 0x5b, 0xd8, + 0xc8, 0x52, 0x69, 0xac, 0x78, 0x3f, 0x4a, 0x29, 0x18, 0xfc, 0xa6, 0x98, + 0x84, 0x07, 0x81, 0xf4, 0xa3, 0x34, 0xd1, 0xd0, 0x50, 0x68, 0x18, 0xec, + 0xd1, 0x4d, 0xcd, 0x19, 0xa0, 0x04, 0x6a, 0x82, 0x41, 0x53, 0x93, 0x51, + 0xb0, 0xa6, 0x4b, 0x44, 0x56, 0x97, 0x2d, 0x67, 0x74, 0x1c, 0x7d, 0xd3, + 0xc3, 0x0f, 0x6a, 0xea, 0x63, 0x91, 0x65, 0x8d, 0x5d, 0x4e, 0x41, 0x19, + 0xae, 0x4a, 0x55, 0xab, 0xfa, 0x45, 0xff, 0x00, 0x94, 0xff, 0x00, 0x67, + 0x90, 0xfc, 0xa7, 0xee, 0x93, 0xd8, 0xd4, 0xc9, 0x75, 0x37, 0xc3, 0xd4, + 0xe5, 0x7c, 0xac, 0xdf, 0xa4, 0xa2, 0x92, 0xa0, 0xee, 0x0a, 0x4a, 0x29, + 0x28, 0x00, 0x34, 0x94, 0x1a, 0x4c, 0xd2, 0x00, 0x34, 0x86, 0x94, 0xd5, + 0x6b, 0x9b, 0xb8, 0xe0, 0x53, 0x93, 0x96, 0xec, 0x29, 0x89, 0xb4, 0x95, + 0xd8, 0xf9, 0x65, 0x58, 0x90, 0xb3, 0x1c, 0x01, 0x58, 0x77, 0x77, 0x4d, + 0x70, 0xfe, 0x8a, 0x3a, 0x0a, 0x4b, 0x8b, 0x97, 0x9d, 0xb2, 0xc7, 0x8e, + 0xc2, 0xab, 0x13, 0x5a, 0x28, 0xd8, 0xe0, 0xad, 0x5b, 0x9f, 0x45, 0xb0, + 0x84, 0xd3, 0x0d, 0x38, 0xd3, 0x4d, 0x51, 0xce, 0x36, 0x92, 0x9c, 0x45, + 0x26, 0x28, 0x01, 0xa4, 0x52, 0x62, 0x9d, 0x46, 0x28, 0x01, 0x94, 0x94, + 0xfa, 0x4c, 0x50, 0x31, 0x98, 0xa3, 0x06, 0x9f, 0x45, 0x21, 0x8d, 0x14, + 0xf1, 0x49, 0x4b, 0x8a, 0x0a, 0x43, 0x96, 0xb5, 0x6c, 0xd7, 0x31, 0xe4, + 0x56, 0x5a, 0x8a, 0xbd, 0xa7, 0x3f, 0xef, 0x59, 0x09, 0xed, 0x91, 0x52, + 0xce, 0x8a, 0x3a, 0x48, 0xd2, 0x14, 0xb4, 0x62, 0x97, 0x15, 0x07, 0x60, + 0x52, 0xd1, 0x8a, 0x5c, 0x52, 0x18, 0x98, 0xa3, 0x14, 0xec, 0x51, 0x40, + 0xc6, 0xe2, 0x8c, 0x53, 0xb1, 0x4b, 0x8a, 0x00, 0x66, 0x28, 0xc5, 0x3b, + 0x14, 0x62, 0x80, 0x1b, 0x8a, 0x00, 0xa7, 0x01, 0x4b, 0xd2, 0x80, 0x00, + 0x2b, 0x1b, 0x5a, 0xd5, 0xd6, 0xd1, 0x0c, 0x30, 0x9c, 0xcc, 0xdf, 0xf8, + 0xed, 0x3b, 0x56, 0xd6, 0x52, 0xd1, 0x0c, 0x50, 0x90, 0xd3, 0x1f, 0x4e, + 0xd5, 0xc9, 0xb3, 0x34, 0xb2, 0x17, 0x72, 0x4b, 0x13, 0x92, 0x4d, 0x6d, + 0x4e, 0x9d, 0xf5, 0x66, 0x55, 0x2a, 0x5b, 0x44, 0x27, 0x2e, 0xc5, 0x98, + 0xe4, 0x9e, 0x49, 0xa9, 0x54, 0x53, 0x54, 0x53, 0xc5, 0x74, 0x98, 0x0e, + 0x14, 0xe1, 0x4d, 0xa5, 0x14, 0x86, 0x3a, 0x94, 0x52, 0x51, 0x40, 0xc7, + 0x52, 0xd3, 0x41, 0xa5, 0xa4, 0x02, 0xe6, 0x97, 0x34, 0xda, 0x33, 0x40, + 0x0f, 0xcd, 0x74, 0xbe, 0x1f, 0xba, 0xdf, 0x03, 0x40, 0x4f, 0x2a, 0x72, + 0x3e, 0x95, 0xcc, 0x55, 0xed, 0x26, 0x63, 0x0e, 0xa1, 0x19, 0x0d, 0x80, + 0x4e, 0x0d, 0x67, 0x56, 0x37, 0x89, 0xa5, 0x37, 0x66, 0x76, 0x54, 0x66, + 0x93, 0x34, 0x66, 0xb8, 0x8e, 0x82, 0xa5, 0xf3, 0xfd, 0xd4, 0xf5, 0xe4, + 0xd4, 0x49, 0xd2, 0xa3, 0x95, 0xfc, 0xcb, 0x86, 0x3d, 0x87, 0x02, 0xa4, + 0x5a, 0xf9, 0xac, 0x75, 0x4f, 0x69, 0x55, 0xf9, 0x1f, 0x45, 0x84, 0xa7, + 0xc9, 0x49, 0x22, 0x41, 0x4b, 0x4d, 0xa5, 0xae, 0x13, 0xa8, 0x5a, 0x29, + 0x28, 0xcd, 0x00, 0x2d, 0x14, 0x94, 0x50, 0x02, 0xd2, 0x51, 0x45, 0x00, + 0x14, 0x51, 0x49, 0x40, 0x0b, 0x45, 0x25, 0x19, 0xa2, 0xc0, 0x14, 0x1a, + 0x4a, 0x29, 0x00, 0xd6, 0x19, 0xa1, 0x66, 0x78, 0xf8, 0x3f, 0x32, 0xd2, + 0xd3, 0x48, 0xad, 0x29, 0x56, 0xa9, 0x46, 0x5c, 0xd0, 0x66, 0x75, 0x29, + 0xc6, 0xa2, 0xb4, 0x91, 0x28, 0x65, 0x90, 0x65, 0x4d, 0x46, 0xcb, 0x51, + 0x15, 0xc1, 0xca, 0x9c, 0x1a, 0x55, 0x9c, 0x8e, 0x1c, 0x7e, 0x22, 0xbd, + 0xdc, 0x3e, 0x63, 0x4e, 0xa6, 0x93, 0xd1, 0x9e, 0x4d, 0x6c, 0x0c, 0xa1, + 0xac, 0x35, 0x42, 0x95, 0xa6, 0x95, 0xa9, 0x86, 0x18, 0x65, 0x4e, 0x69, + 0x0a, 0xd7, 0xa2, 0xac, 0xce, 0x17, 0x75, 0xb9, 0x0e, 0xda, 0x36, 0xd4, + 0xbb, 0x69, 0x31, 0x4e, 0xc2, 0xb9, 0x1e, 0xda, 0x36, 0xd3, 0xf1, 0x4b, + 0x8a, 0x61, 0x71, 0x9b, 0x68, 0xc5, 0x3f, 0x14, 0x62, 0x81, 0x0c, 0xc5, + 0x18, 0xa7, 0xe2, 0x8c, 0x50, 0x21, 0xb8, 0xa3, 0x14, 0xec, 0x50, 0x17, + 0x34, 0x9b, 0x49, 0x6a, 0x03, 0x71, 0x52, 0xa4, 0x25, 0xb9, 0x3d, 0x2a, + 0x48, 0xe1, 0x3d, 0x4d, 0x59, 0x58, 0xf1, 0x5e, 0x46, 0x2f, 0x32, 0x51, + 0xf7, 0x69, 0xef, 0xdc, 0xde, 0x14, 0xba, 0xc8, 0x64, 0x71, 0xed, 0x1d, + 0x2a, 0x50, 0x31, 0x4f, 0x0b, 0x46, 0x2b, 0xc1, 0x9d, 0x47, 0x27, 0x76, + 0x6e, 0x30, 0x8a, 0x4c, 0x54, 0x98, 0xa4, 0xc5, 0x4d, 0xc0, 0x8f, 0x14, + 0x62, 0xa4, 0xc5, 0x1b, 0x69, 0x73, 0x00, 0xcc, 0x52, 0x6d, 0xa9, 0x76, + 0xd1, 0xb6, 0x95, 0xc4, 0x57, 0x75, 0xe2, 0xb3, 0x65, 0x5c, 0xc8, 0x6b, + 0x52, 0x6e, 0x14, 0xd5, 0x02, 0xb9, 0x35, 0xef, 0x65, 0x14, 0xbe, 0x2a, + 0x8f, 0xd0, 0xc2, 0xb3, 0xe8, 0x55, 0x31, 0x9a, 0x69, 0x8c, 0xd5, 0xcd, + 0xb4, 0x6c, 0xaf, 0x72, 0xc6, 0x05, 0x12, 0xa7, 0xd2, 0x90, 0xee, 0x1d, + 0x01, 0xad, 0x0d, 0x83, 0xd2, 0x94, 0x46, 0x3d, 0x28, 0xb0, 0x5c, 0xc0, + 0xd4, 0xed, 0xc5, 0xed, 0xa3, 0x43, 0x24, 0x64, 0xfa, 0x1f, 0x43, 0x5c, + 0xfe, 0x8a, 0xd7, 0xba, 0x55, 0xf9, 0x89, 0xa3, 0x63, 0x0b, 0x1c, 0x11, + 0x8f, 0xd4, 0x57, 0xa0, 0x08, 0x97, 0xd0, 0x53, 0xd6, 0x24, 0xfe, 0xe8, + 0xfc, 0xa9, 0xa5, 0x61, 0x0c, 0x88, 0x6e, 0x40, 0x71, 0xd4, 0x66, 0xa6, + 0x55, 0xa7, 0x05, 0xa7, 0x81, 0x4a, 0xc0, 0x00, 0x53, 0xc0, 0xa4, 0x02, + 0x9c, 0x29, 0xd8, 0x07, 0x8a, 0x70, 0xa6, 0x0a, 0x70, 0xa0, 0x43, 0xc1, + 0xa7, 0x03, 0x51, 0x83, 0x4e, 0xa6, 0x03, 0xc1, 0xa7, 0x66, 0xa3, 0xcd, + 0x2e, 0x68, 0x01, 0xf9, 0xac, 0x1d, 0x4a, 0xef, 0xed, 0x13, 0xf9, 0x6a, + 0x7e, 0x45, 0xfd, 0x4d, 0x5d, 0xd4, 0xef, 0x3c, 0x88, 0x76, 0x29, 0xf9, + 0xdb, 0xf4, 0xac, 0x34, 0xeb, 0x93, 0x57, 0x14, 0x72, 0x62, 0x2a, 0x7d, + 0x94, 0x4e, 0x9c, 0x0a, 0x97, 0x35, 0x1a, 0xf0, 0x29, 0x73, 0x56, 0x72, + 0x8f, 0xcd, 0x26, 0x69, 0xb9, 0xa3, 0x34, 0xc0, 0x76, 0x69, 0x09, 0xe0, + 0xfd, 0x29, 0x33, 0x41, 0x3f, 0x29, 0xfa, 0x50, 0x03, 0x41, 0xe0, 0x51, + 0x9a, 0x60, 0x3c, 0x0a, 0x33, 0x40, 0x0f, 0xa3, 0x34, 0xdc, 0xd2, 0x66, + 0x81, 0x0e, 0xcd, 0x25, 0x26, 0x69, 0x33, 0x40, 0x0c, 0x75, 0xc8, 0xaa, + 0xce, 0xa4, 0x1c, 0x8e, 0xb5, 0x6c, 0xd4, 0x6e, 0xb9, 0xa6, 0x4b, 0x45, + 0xfd, 0x3b, 0x56, 0xce, 0x21, 0xb8, 0x3c, 0xf4, 0x0d, 0x5b, 0x20, 0x82, + 0x32, 0x2b, 0x8e, 0x74, 0x20, 0xe6, 0xaf, 0x59, 0x6a, 0xb2, 0x5b, 0x10, + 0x92, 0x65, 0xe3, 0xfd, 0x45, 0x4b, 0x8f, 0x63, 0xaa, 0x96, 0x23, 0xa4, + 0xce, 0x8e, 0x92, 0xa2, 0x86, 0xe2, 0x39, 0xd0, 0x34, 0x6c, 0x08, 0xa7, + 0x93, 0x50, 0x76, 0x01, 0xa6, 0xb3, 0xaa, 0x2e, 0x58, 0x80, 0x2a, 0xad, + 0xc5, 0xfc, 0x70, 0xf0, 0x3e, 0x66, 0xf6, 0xac, 0xb9, 0xee, 0xa4, 0x9c, + 0xfc, 0xcd, 0xc7, 0xa5, 0x35, 0x16, 0xcc, 0x6a, 0x57, 0x8c, 0x34, 0xea, + 0x5c, 0xba, 0xd4, 0xba, 0xac, 0x3f, 0x9d, 0x66, 0x3b, 0x96, 0x24, 0xb1, + 0xc9, 0x3e, 0xb4, 0xd2, 0x69, 0xa4, 0xd6, 0x89, 0x24, 0x71, 0x4e, 0xa4, + 0xa6, 0xf5, 0x02, 0x69, 0xa6, 0x82, 0x69, 0x0d, 0x33, 0x31, 0x0d, 0x25, + 0x14, 0x50, 0x01, 0x49, 0x45, 0x14, 0x00, 0x94, 0x86, 0x96, 0x92, 0x80, + 0x12, 0x8c, 0x53, 0xa9, 0x28, 0x01, 0xa4, 0x51, 0x8a, 0x5a, 0x5c, 0x50, + 0x31, 0x31, 0x4e, 0x14, 0x98, 0xa7, 0x0a, 0x45, 0x21, 0xc2, 0x9f, 0x69, + 0x27, 0x97, 0x7a, 0x87, 0xd7, 0x8a, 0x60, 0xa8, 0xd8, 0x95, 0x70, 0xc3, + 0xb1, 0xcd, 0x05, 0xa7, 0x66, 0x99, 0xd2, 0xe3, 0x8a, 0x5a, 0x8e, 0xde, + 0x51, 0x34, 0x0a, 0xe3, 0xb8, 0xa9, 0x6b, 0x23, 0xd0, 0x4e, 0xe2, 0x52, + 0xe2, 0x8a, 0x5a, 0x0a, 0x0c, 0x52, 0xd1, 0x45, 0x20, 0x0a, 0x29, 0x68, + 0xc5, 0x00, 0x25, 0x00, 0x53, 0xb1, 0x55, 0xee, 0xae, 0xe1, 0xb4, 0x8c, + 0xbc, 0xae, 0x14, 0x51, 0xb8, 0x12, 0x48, 0xe9, 0x12, 0x16, 0x76, 0x00, + 0x0e, 0xe6, 0xb9, 0xbd, 0x4f, 0x5f, 0x69, 0x33, 0x15, 0xa9, 0xc2, 0xf4, + 0x2f, 0x54, 0xb5, 0x3d, 0x5e, 0x5b, 0xe7, 0x28, 0xb9, 0x58, 0x87, 0x6f, + 0x5a, 0xcf, 0x0b, 0x9a, 0xe9, 0xa7, 0x4a, 0xda, 0xc8, 0xc2, 0x75, 0x2f, + 0xa2, 0x1a, 0x49, 0x66, 0x24, 0x92, 0x49, 0xee, 0x69, 0xea, 0xb4, 0xa1, + 0x69, 0xd5, 0xb1, 0x98, 0x01, 0x4b, 0x49, 0x4b, 0x40, 0x0b, 0x9a, 0x51, + 0x4d, 0xa5, 0xa0, 0x63, 0xa8, 0xa4, 0xcd, 0x14, 0x80, 0x75, 0x19, 0xa4, + 0xa3, 0x34, 0x0c, 0x76, 0x68, 0xcd, 0x37, 0x34, 0x66, 0x90, 0x0e, 0xcd, + 0x39, 0x5b, 0x6b, 0x02, 0x3a, 0x8a, 0x8f, 0x34, 0x66, 0x90, 0xd1, 0xdb, + 0x69, 0xd7, 0x6b, 0x75, 0x6a, 0xac, 0x0f, 0xcc, 0x06, 0x08, 0xa9, 0xae, + 0x65, 0xf2, 0xa2, 0x27, 0xb9, 0xe0, 0x57, 0x29, 0xa4, 0x5e, 0x9b, 0x6b, + 0xb0, 0x09, 0xf9, 0x1b, 0x83, 0x5b, 0x73, 0x4d, 0xe7, 0xcd, 0xc7, 0xdd, + 0x1d, 0x2b, 0xca, 0xc7, 0x54, 0x58, 0x78, 0x37, 0xf7, 0x1e, 0x96, 0x0e, + 0x9f, 0xb6, 0x9a, 0xec, 0x82, 0x31, 0x81, 0x53, 0x8a, 0x8d, 0x47, 0x14, + 0xf1, 0x5f, 0x2a, 0xdd, 0xcf, 0xa3, 0x43, 0xe8, 0xcd, 0x25, 0x15, 0x03, + 0x16, 0x8a, 0x4c, 0xd1, 0x9a, 0x40, 0x3b, 0x34, 0x66, 0x9b, 0x45, 0x00, + 0x3a, 0x8c, 0xd3, 0x73, 0x46, 0x68, 0x01, 0xd9, 0xa4, 0xcd, 0x26, 0x68, + 0xa0, 0x05, 0xcd, 0x26, 0x68, 0xa4, 0xa6, 0x02, 0xd2, 0x51, 0x45, 0x20, + 0x0a, 0x4a, 0x28, 0xa2, 0xc0, 0x21, 0xe6, 0x9a, 0x57, 0x34, 0xea, 0x0d, + 0x2b, 0x01, 0x0e, 0x0a, 0x9c, 0xa9, 0x20, 0xd3, 0xd6, 0x72, 0x38, 0x75, + 0xfc, 0x45, 0x2e, 0x29, 0xa5, 0x73, 0x5d, 0x54, 0x71, 0x75, 0x68, 0xfc, + 0x2f, 0x43, 0x0a, 0xb8, 0x7a, 0x75, 0x3e, 0x24, 0x4c, 0xae, 0xaf, 0xf7, + 0x48, 0x34, 0xb8, 0xaa, 0xa5, 0x3b, 0xf7, 0xa7, 0x09, 0x24, 0x5e, 0xf9, + 0x1e, 0xf5, 0xea, 0xd1, 0xcd, 0x61, 0x2d, 0x2a, 0x2b, 0x1e, 0x75, 0x4c, + 0xbe, 0x4b, 0xe0, 0x77, 0x27, 0xc5, 0x18, 0xa8, 0xc5, 0xc0, 0xfe, 0x25, + 0x22, 0xa4, 0x0e, 0x8d, 0xd1, 0x85, 0x7a, 0x14, 0xeb, 0xd3, 0xa9, 0xf0, + 0xbb, 0x9c, 0x53, 0xa3, 0x52, 0x1f, 0x12, 0x0c, 0x51, 0x8a, 0x5c, 0x8a, + 0x50, 0xac, 0xdd, 0x14, 0xd5, 0xca, 0x71, 0x8a, 0xbc, 0x9d, 0x8c, 0xd2, + 0x6f, 0x61, 0xb8, 0xa5, 0xc5, 0x4c, 0xb6, 0xec, 0x7a, 0xf1, 0x53, 0xa5, + 0xb8, 0x5a, 0xf3, 0xab, 0xe6, 0x94, 0x69, 0xe9, 0x1d, 0x59, 0xac, 0x68, + 0xb7, 0xb9, 0x55, 0x62, 0x66, 0xed, 0x53, 0xa4, 0x20, 0x55, 0x81, 0x18, + 0x14, 0xfd, 0xb5, 0xe3, 0x62, 0x31, 0xf5, 0x6b, 0x68, 0xdd, 0x91, 0xb4, + 0x60, 0xa3, 0xb1, 0x1a, 0xa6, 0x29, 0xe0, 0x53, 0xb1, 0x45, 0x71, 0x5e, + 0xe5, 0x09, 0x8a, 0x31, 0x4b, 0x8a, 0x3b, 0x50, 0x02, 0x62, 0x93, 0x6d, + 0x3e, 0x8c, 0x52, 0x01, 0x9b, 0x69, 0x42, 0xd3, 0xf1, 0x4a, 0x05, 0x20, + 0x1b, 0xb6, 0x82, 0x38, 0xa9, 0x31, 0x4d, 0x61, 0x81, 0x4d, 0x21, 0x32, + 0x95, 0xcf, 0xdd, 0xc5, 0x54, 0xdb, 0x56, 0xae, 0x0e, 0x5b, 0x15, 0x06, + 0x2b, 0xeb, 0xf0, 0x14, 0xf9, 0x28, 0x45, 0x1c, 0x75, 0x1d, 0xe4, 0x34, + 0x0a, 0x5d, 0xb4, 0xb8, 0xa7, 0x01, 0x5d, 0xa4, 0x0d, 0x0b, 0x4a, 0x05, + 0x3b, 0x14, 0xb8, 0xa0, 0x04, 0x02, 0x9c, 0x05, 0x02, 0x96, 0x80, 0x14, + 0x52, 0x8a, 0x05, 0x2d, 0x02, 0x14, 0x53, 0xa9, 0xb4, 0xa2, 0x80, 0x1c, + 0x29, 0xd4, 0xdc, 0xd2, 0x83, 0x40, 0x0e, 0xa5, 0xa6, 0xd2, 0xe6, 0x98, + 0x0e, 0xa8, 0xe7, 0x9d, 0x6d, 0xe1, 0x69, 0x1c, 0xf0, 0x29, 0x5e, 0x45, + 0x8d, 0x0b, 0x31, 0xc0, 0x1d, 0xeb, 0x9c, 0xbe, 0xbd, 0x6b, 0xc9, 0x70, + 0x38, 0x8c, 0x1e, 0x05, 0x34, 0xae, 0x65, 0x56, 0xa2, 0x82, 0x19, 0x2c, + 0xed, 0x73, 0x3b, 0x48, 0xfd, 0xfa, 0x7b, 0x53, 0xd0, 0x54, 0x48, 0xb5, + 0x3a, 0xd6, 0x88, 0xf3, 0xdb, 0x6d, 0xdd, 0x8e, 0xa3, 0x34, 0xdc, 0xd2, + 0x64, 0xd3, 0x01, 0xdb, 0xa8, 0xcd, 0x37, 0x34, 0xb9, 0xa0, 0x07, 0x66, + 0x82, 0x7e, 0x53, 0x4d, 0xcd, 0x04, 0x9d, 0xa6, 0x80, 0x18, 0x0f, 0x02, + 0x97, 0x34, 0xc0, 0x78, 0x14, 0x6e, 0xa0, 0x07, 0xe6, 0x8c, 0xd3, 0x37, + 0x51, 0xba, 0x81, 0x0e, 0xcd, 0x19, 0xa6, 0xe6, 0x8c, 0xd0, 0x03, 0xb3, + 0x48, 0x4d, 0x26, 0x69, 0x33, 0x4c, 0x06, 0xb0, 0xcd, 0x42, 0xc9, 0x53, + 0x9a, 0x61, 0x19, 0xa0, 0x96, 0x86, 0x45, 0x2c, 0xb6, 0xcf, 0xba, 0x36, + 0x22, 0xad, 0xbe, 0xab, 0x2c, 0xaa, 0x15, 0xbe, 0x5f, 0x5c, 0x55, 0x52, + 0x38, 0xa8, 0xca, 0xd1, 0x64, 0x35, 0x39, 0x45, 0x59, 0x32, 0xc6, 0xec, + 0x8c, 0xe7, 0x34, 0xd2, 0x6a, 0x0c, 0x95, 0xe9, 0x49, 0xe6, 0xfa, 0xd3, + 0x26, 0xe4, 0xa4, 0xd3, 0x73, 0x48, 0x0e, 0xee, 0x86, 0x97, 0xa5, 0x21, + 0x81, 0x34, 0x94, 0x52, 0x50, 0x01, 0x45, 0x25, 0x2d, 0x31, 0x09, 0x45, + 0x14, 0x50, 0x02, 0x51, 0x45, 0x14, 0x0c, 0x28, 0xa2, 0x92, 0x80, 0x16, + 0x8a, 0x4a, 0x5c, 0xd0, 0x31, 0x69, 0x69, 0xb4, 0xb4, 0x86, 0x04, 0xd4, + 0x6d, 0x52, 0x53, 0x48, 0xa0, 0x4d, 0x9a, 0x1a, 0x45, 0xc6, 0x18, 0xc2, + 0xc7, 0xaf, 0x22, 0xb6, 0x2b, 0x96, 0x47, 0x68, 0xa4, 0x57, 0x5e, 0xa0, + 0xd7, 0x49, 0x6b, 0x70, 0xb7, 0x10, 0x86, 0x07, 0x9e, 0xe2, 0xa2, 0x4b, + 0xa9, 0xd9, 0x87, 0x9d, 0xd7, 0x29, 0x2e, 0x29, 0x69, 0x68, 0xc5, 0x41, + 0xd2, 0x14, 0x51, 0x55, 0xae, 0x35, 0x0b, 0x6b, 0x51, 0xfb, 0xd9, 0x54, + 0x1f, 0x4e, 0xf4, 0xed, 0x7d, 0x82, 0xf6, 0x2c, 0xd4, 0x73, 0x5c, 0x45, + 0x02, 0x16, 0x91, 0xc2, 0x81, 0xea, 0x6b, 0x9f, 0xbb, 0xf1, 0x23, 0x1c, + 0xad, 0xb2, 0x60, 0x7f, 0x79, 0xab, 0x0e, 0x7b, 0x99, 0xae, 0x5b, 0x74, + 0xb2, 0x33, 0x1f, 0x73, 0x5a, 0xc6, 0x8b, 0x7b, 0x91, 0x2a, 0xa9, 0x6c, + 0x6f, 0xde, 0xf8, 0x95, 0x57, 0x29, 0x6a, 0xb9, 0x3f, 0xde, 0x35, 0xcf, + 0xcf, 0x71, 0x35, 0xd4, 0x9b, 0xe6, 0x72, 0xc7, 0xde, 0xa3, 0x03, 0x34, + 0xf0, 0xb5, 0xbc, 0x60, 0xa3, 0xb1, 0x8b, 0x93, 0x96, 0xe2, 0x2a, 0xd3, + 0xc0, 0xa3, 0x14, 0x55, 0x08, 0x5a, 0x4a, 0x28, 0xa0, 0x02, 0x96, 0x8a, + 0x28, 0x01, 0x68, 0xa4, 0xa3, 0x34, 0x86, 0x2d, 0x14, 0x94, 0x50, 0x02, + 0xd1, 0x49, 0x45, 0x21, 0x8b, 0x45, 0x25, 0x2d, 0x00, 0x14, 0x51, 0x4f, + 0x8d, 0x0c, 0x8e, 0x14, 0x77, 0xa5, 0x26, 0x92, 0xbb, 0x2a, 0x31, 0x72, + 0x76, 0x45, 0x9b, 0x0b, 0x7f, 0x36, 0x5d, 0xc4, 0x7c, 0xa2, 0xba, 0x08, + 0xd7, 0x02, 0xaa, 0xda, 0xc0, 0x22, 0x8c, 0x28, 0x15, 0x71, 0x45, 0x7c, + 0x6e, 0x3f, 0x14, 0xf1, 0x15, 0x6e, 0xb6, 0x5b, 0x1f, 0x53, 0x84, 0xc3, + 0xaa, 0x34, 0xd4, 0x7a, 0x92, 0x0a, 0x70, 0xa6, 0x8a, 0x75, 0x70, 0x33, + 0xac, 0x5a, 0x29, 0x33, 0x46, 0x69, 0x0c, 0x5a, 0x29, 0x28, 0xa4, 0x02, + 0xd2, 0x66, 0x92, 0x8a, 0x00, 0x5a, 0x33, 0x49, 0x45, 0x00, 0x3b, 0x34, + 0x66, 0x9b, 0x9a, 0x33, 0x4c, 0x05, 0xa2, 0x8c, 0xd1, 0x48, 0x02, 0x8a, + 0x4a, 0x28, 0x01, 0x69, 0x29, 0x69, 0x28, 0xb8, 0x05, 0x14, 0x51, 0x40, + 0x09, 0x45, 0x04, 0xe2, 0xae, 0x41, 0xa7, 0xbc, 0xa0, 0x33, 0x30, 0x0a, + 0x7d, 0x29, 0x36, 0x96, 0xe4, 0x4e, 0x71, 0x82, 0xbb, 0x29, 0xe3, 0x27, + 0x8a, 0x55, 0x81, 0xdf, 0x85, 0x43, 0x5b, 0x70, 0xda, 0x45, 0x08, 0xf9, + 0x57, 0x27, 0xd4, 0xd4, 0xc1, 0x40, 0xe8, 0x2a, 0x1c, 0xfb, 0x1c, 0xb2, + 0xc5, 0xff, 0x00, 0x2a, 0x31, 0x13, 0x4e, 0x91, 0xbe, 0xf7, 0x15, 0x32, + 0xe9, 0x91, 0xff, 0x00, 0x16, 0x4d, 0x6a, 0xe0, 0x52, 0x60, 0x54, 0xf3, + 0xcb, 0xa1, 0x84, 0xb1, 0x13, 0x91, 0x49, 0x2d, 0x23, 0x4e, 0x8b, 0x52, + 0x88, 0x80, 0xe8, 0x2a, 0xc6, 0x05, 0x26, 0x28, 0x94, 0xe7, 0x2d, 0xdd, + 0xcc, 0x48, 0xb6, 0xd2, 0xed, 0xa7, 0xe2, 0x93, 0x15, 0x22, 0x19, 0x8a, + 0x29, 0xd8, 0xa3, 0x14, 0xec, 0x21, 0xb4, 0x94, 0xea, 0x2a, 0x80, 0x4a, + 0x31, 0x4b, 0x4a, 0x05, 0x02, 0x00, 0x29, 0x71, 0x40, 0x14, 0xec, 0x54, + 0xb1, 0x88, 0x05, 0x2e, 0x29, 0xd8, 0xa5, 0xc5, 0x20, 0x1b, 0x8a, 0x63, + 0xf0, 0x2a, 0x43, 0xc5, 0x55, 0xb8, 0x7d, 0xaa, 0x47, 0x73, 0x5d, 0x18, + 0x7a, 0x4e, 0xad, 0x45, 0x04, 0x44, 0x9d, 0x95, 0xca, 0x72, 0x1d, 0xce, + 0x4d, 0x37, 0x14, 0xb4, 0x57, 0xd9, 0x45, 0x59, 0x58, 0xe3, 0x62, 0x62, + 0x96, 0x8a, 0x5a, 0xa1, 0x05, 0x2d, 0x14, 0x53, 0x01, 0x69, 0x69, 0x29, + 0x45, 0x00, 0x2d, 0x2d, 0x25, 0x2d, 0x00, 0x28, 0xa5, 0xa6, 0xd2, 0xd3, + 0x10, 0xb4, 0xb4, 0x94, 0x50, 0x03, 0x81, 0xa1, 0x9d, 0x51, 0x4b, 0x31, + 0xc0, 0x1d, 0xcd, 0x46, 0xf2, 0x2c, 0x68, 0x59, 0xc8, 0x00, 0x7a, 0xd6, + 0x06, 0xa1, 0xa9, 0x35, 0xc9, 0x31, 0xc7, 0x91, 0x18, 0xfd, 0x68, 0x4a, + 0xe6, 0x75, 0x2a, 0x28, 0x2d, 0x47, 0xea, 0x1a, 0x89, 0xba, 0x7f, 0x2e, + 0x33, 0x88, 0xc7, 0xeb, 0x55, 0x23, 0x15, 0x1a, 0x2d, 0x4e, 0xa3, 0x15, + 0xa2, 0x47, 0x9f, 0x29, 0x39, 0x3b, 0xb2, 0x40, 0x29, 0xe0, 0xd3, 0x01, + 0xa3, 0x35, 0x42, 0x1f, 0xba, 0x93, 0x34, 0xc2, 0x68, 0xcd, 0x02, 0x1d, + 0x9a, 0x50, 0x69, 0x99, 0xa5, 0xcd, 0x00, 0x3f, 0x34, 0x87, 0xa1, 0xfa, + 0x53, 0x73, 0x41, 0x3c, 0x1a, 0x06, 0x30, 0x1e, 0x05, 0x2e, 0x6b, 0x1b, + 0xfb, 0x7e, 0xd5, 0x70, 0x1c, 0x38, 0xfa, 0xad, 0x59, 0x8b, 0x55, 0xb5, + 0x98, 0x02, 0xae, 0x40, 0x3e, 0xa2, 0x8b, 0x94, 0xe1, 0x25, 0xd0, 0xbe, + 0x4d, 0x19, 0xa8, 0x92, 0x55, 0x71, 0x95, 0x60, 0x47, 0xb5, 0x3b, 0x75, + 0x04, 0x8f, 0xcd, 0x19, 0xa6, 0x66, 0x8c, 0xd0, 0x21, 0xf9, 0xa3, 0x34, + 0xcc, 0xd1, 0x9a, 0x60, 0x38, 0x9a, 0x4a, 0x6e, 0x68, 0xcd, 0x00, 0x2d, + 0x34, 0x8a, 0x5c, 0xd2, 0x50, 0x21, 0xa5, 0x69, 0x8c, 0xb9, 0xa9, 0x29, + 0x31, 0x40, 0xac, 0x41, 0x82, 0xa7, 0x83, 0x4a, 0x25, 0x23, 0xef, 0x0a, + 0x90, 0xad, 0x30, 0xa5, 0x31, 0x58, 0x70, 0x75, 0x6e, 0xf4, 0xb5, 0x09, + 0x4a, 0x4c, 0xba, 0xf4, 0x34, 0x05, 0xc9, 0xe8, 0x35, 0x0f, 0x9a, 0x7b, + 0x8a, 0x70, 0x95, 0x4f, 0xb5, 0x01, 0x71, 0xe6, 0x9b, 0x46, 0xe0, 0x7b, + 0xd2, 0x66, 0x81, 0x8e, 0xcd, 0x14, 0xda, 0x5c, 0xd0, 0x31, 0x69, 0x33, + 0x4d, 0xcd, 0x26, 0x68, 0x1d, 0x87, 0x51, 0x9a, 0x6e, 0xea, 0x4d, 0xd4, + 0x01, 0x26, 0x69, 0x41, 0xa8, 0x77, 0xd2, 0x07, 0x24, 0xe0, 0x02, 0x4f, + 0xb5, 0x00, 0x58, 0xa2, 0x9e, 0x96, 0xb3, 0xec, 0xde, 0xe9, 0xb4, 0x7b, + 0xd0, 0x53, 0x1d, 0x69, 0x5c, 0x4d, 0x35, 0xb9, 0x11, 0x15, 0x35, 0xa5, + 0xcb, 0x5a, 0xcb, 0x91, 0xf7, 0x4f, 0x51, 0x4c, 0x3b, 0x47, 0x56, 0x1f, + 0x9d, 0x46, 0xd2, 0x46, 0x3a, 0xb8, 0xa0, 0x51, 0x93, 0x8b, 0xba, 0x37, + 0xdb, 0x54, 0xb4, 0x48, 0xc3, 0x3c, 0xca, 0x3d, 0xbb, 0xd6, 0x7d, 0xc7, + 0x89, 0x21, 0x5c, 0x88, 0x63, 0x67, 0x3e, 0xa7, 0x81, 0x59, 0x32, 0x98, + 0x24, 0x1c, 0xb0, 0xcd, 0x53, 0x28, 0x01, 0xe3, 0x9a, 0xa8, 0x53, 0x8b, + 0xdc, 0xec, 0x55, 0xe5, 0x24, 0x5c, 0xb9, 0xd6, 0xaf, 0x2e, 0x32, 0x37, + 0xf9, 0x6b, 0xe8, 0xb5, 0x9e, 0xc5, 0x98, 0xe5, 0x89, 0x27, 0xde, 0x9f, + 0xb6, 0x8d, 0xb5, 0xb2, 0x49, 0x6c, 0x26, 0xdb, 0xdc, 0x8f, 0x69, 0xa5, + 0x09, 0x4f, 0xc5, 0x2d, 0x30, 0xb0, 0xd0, 0xb8, 0xa5, 0xa3, 0x22, 0x93, + 0x22, 0x81, 0x8b, 0x45, 0x34, 0xb0, 0xa4, 0xde, 0x29, 0x0c, 0x75, 0x14, + 0xcd, 0xd4, 0x66, 0x80, 0x1f, 0x9a, 0x33, 0x4c, 0xcd, 0x2e, 0x68, 0x01, + 0xd9, 0xa2, 0x92, 0x8c, 0xd0, 0x02, 0xd1, 0x9a, 0x4a, 0x29, 0x00, 0xb9, + 0xa5, 0xa6, 0xe6, 0x8a, 0x06, 0x3a, 0x8c, 0xd2, 0x50, 0x01, 0x27, 0x00, + 0x50, 0x34, 0xae, 0x2d, 0x6b, 0x69, 0xf6, 0xbb, 0x57, 0x7b, 0x0e, 0x4d, + 0x43, 0x67, 0x60, 0x59, 0x83, 0xc8, 0x38, 0xec, 0x2b, 0x66, 0x38, 0xf0, + 0x00, 0xaf, 0x9f, 0xcd, 0x31, 0xf1, 0x6b, 0xd9, 0x53, 0x7e, 0xa7, 0xb9, + 0x97, 0xe0, 0xdc, 0x3f, 0x79, 0x35, 0xaf, 0x41, 0xc8, 0x2a, 0x65, 0x18, + 0xa6, 0x81, 0x4f, 0x15, 0xf3, 0xc7, 0xb0, 0x85, 0xa5, 0xa4, 0xa2, 0x90, + 0xc5, 0xcd, 0x14, 0x94, 0x52, 0x18, 0xb9, 0xa2, 0x92, 0x8a, 0x40, 0x2d, + 0x25, 0x19, 0xa2, 0x80, 0x0a, 0x28, 0xa2, 0x80, 0x0a, 0x29, 0x28, 0xa6, + 0x21, 0x73, 0x46, 0x69, 0xb4, 0x51, 0x60, 0x1d, 0x9a, 0x33, 0x4c, 0xa2, + 0x8b, 0x00, 0xfc, 0xd1, 0x4c, 0xcd, 0x1b, 0xa8, 0xb0, 0x0f, 0xcd, 0x14, + 0xcd, 0xd4, 0x6e, 0xf7, 0xa5, 0x60, 0x1f, 0x9a, 0x9e, 0xda, 0xf1, 0xed, + 0x5b, 0x1c, 0xb4, 0x7e, 0x9e, 0x95, 0x57, 0x7d, 0x26, 0xfa, 0x39, 0x6f, + 0xb9, 0x32, 0x8c, 0x64, 0xac, 0xce, 0x8e, 0x29, 0xa3, 0x99, 0x03, 0x23, + 0x02, 0x2a, 0x4a, 0xe6, 0xe3, 0x9d, 0xa1, 0x7d, 0xd1, 0xb6, 0x0f, 0xf3, + 0xad, 0x4b, 0x7d, 0x4e, 0x39, 0x30, 0xb2, 0x7c, 0xad, 0xfa, 0x56, 0x52, + 0x83, 0x47, 0x05, 0x5c, 0x3c, 0xa3, 0xaa, 0xd5, 0x1a, 0x14, 0x94, 0xd1, + 0x22, 0x91, 0x90, 0x68, 0xde, 0x3d, 0x6a, 0x2c, 0x73, 0x0e, 0xc5, 0x25, + 0x05, 0x87, 0xad, 0x34, 0xc8, 0x9f, 0xde, 0x1f, 0x9d, 0x5d, 0x9a, 0xdc, + 0x41, 0x46, 0x69, 0x37, 0x03, 0xd0, 0x8a, 0x33, 0x40, 0x05, 0x14, 0x99, + 0xa4, 0xcd, 0x31, 0x0b, 0xc5, 0x18, 0x14, 0x99, 0xa4, 0xcd, 0x00, 0x3f, + 0x14, 0xb8, 0xa4, 0x53, 0x4e, 0xa7, 0x61, 0x00, 0x14, 0xe0, 0x29, 0x05, + 0x38, 0x52, 0x68, 0x62, 0x81, 0x4b, 0x49, 0x9a, 0x6b, 0x36, 0x2a, 0x6c, + 0x02, 0x39, 0xc0, 0xac, 0xd9, 0x64, 0xde, 0xc7, 0xd2, 0xa5, 0xb8, 0x9f, + 0x77, 0xca, 0xa7, 0x8e, 0xf5, 0x56, 0xbe, 0x8b, 0x2d, 0xc2, 0x3a, 0x51, + 0xe7, 0x9e, 0xec, 0xe7, 0xa9, 0x2b, 0xe8, 0x85, 0xa2, 0x92, 0x8a, 0xf5, + 0x8c, 0x47, 0x51, 0x49, 0x4b, 0x54, 0x21, 0x69, 0x69, 0xb9, 0xa5, 0xa6, + 0x02, 0xd2, 0xd2, 0x52, 0xd0, 0x02, 0xd1, 0x45, 0x14, 0x08, 0x5a, 0x33, + 0x8e, 0x69, 0x2a, 0x0b, 0xb9, 0x23, 0x4b, 0x77, 0x0f, 0x20, 0x4c, 0x8c, + 0x67, 0x34, 0x01, 0x14, 0xfa, 0xbd, 0x8d, 0xb3, 0x15, 0x92, 0xe1, 0x43, + 0x0e, 0xc0, 0xe4, 0xd4, 0x07, 0xc4, 0x16, 0x25, 0x09, 0x49, 0x37, 0x1e, + 0xc3, 0x15, 0xe7, 0x8e, 0x4c, 0x57, 0x92, 0x23, 0x31, 0x3f, 0x31, 0xe4, + 0xf7, 0xa9, 0x83, 0x63, 0xa1, 0xa1, 0x31, 0xb4, 0x75, 0x37, 0x37, 0xf2, + 0xde, 0x36, 0x4b, 0x61, 0x3b, 0x28, 0xa8, 0x95, 0x6b, 0x0a, 0x3b, 0xb9, + 0x23, 0x3c, 0x1a, 0xbf, 0x0e, 0xa6, 0x3a, 0x38, 0xad, 0x13, 0x47, 0x0d, + 0x4a, 0x13, 0x6e, 0xfb, 0x9a, 0x6a, 0x31, 0x52, 0x0a, 0xad, 0x1d, 0xdc, + 0x4f, 0xd1, 0xbf, 0x3a, 0x9c, 0x36, 0x7a, 0x1c, 0xd5, 0x23, 0x07, 0x16, + 0xb7, 0x24, 0xcd, 0x04, 0xd4, 0x7b, 0xa8, 0xdd, 0x4c, 0x43, 0xc9, 0xa4, + 0xcd, 0x37, 0x34, 0x6e, 0xa0, 0x43, 0xb3, 0x4a, 0x0d, 0x47, 0xba, 0x93, + 0x76, 0x28, 0x02, 0x5c, 0xd0, 0x4f, 0x06, 0xaa, 0xc9, 0x77, 0x0c, 0x5c, + 0xbc, 0xaa, 0xbf, 0x8d, 0x54, 0x7d, 0x6e, 0xd1, 0x72, 0x03, 0x96, 0x3f, + 0xec, 0x8c, 0xd1, 0x72, 0x94, 0x5b, 0x24, 0x97, 0xc1, 0x6b, 0x22, 0xee, + 0x37, 0x33, 0x71, 0xfd, 0xe5, 0xce, 0x2a, 0x8f, 0xf6, 0x25, 0xe5, 0xa3, + 0x2f, 0xd9, 0xae, 0x04, 0xa8, 0xa7, 0x94, 0x61, 0x83, 0x5a, 0xa3, 0xc5, + 0x20, 0x8c, 0x15, 0x60, 0x3e, 0xb4, 0xc1, 0xae, 0xda, 0xff, 0x00, 0x75, + 0xab, 0x33, 0xd0, 0x71, 0x4d, 0x5a, 0xc2, 0xc6, 0xad, 0x1a, 0xfc, 0xd1, + 0x6c, 0x27, 0xaf, 0x15, 0x20, 0x6a, 0x68, 0xd6, 0xed, 0x08, 0xe7, 0x77, + 0xe5, 0x41, 0xd4, 0x74, 0xf7, 0xea, 0xc5, 0x4f, 0xd2, 0xa9, 0x48, 0xe6, + 0x95, 0x07, 0xd0, 0x93, 0x34, 0x66, 0xb3, 0x2f, 0x75, 0x34, 0xb7, 0xf9, + 0xa0, 0x71, 0x2a, 0xfa, 0x63, 0x9a, 0x86, 0x1d, 0x7e, 0x37, 0xe1, 0xe3, + 0x65, 0xa7, 0x74, 0x66, 0xe8, 0xcd, 0x74, 0x36, 0xb3, 0x49, 0x9a, 0xa7, + 0x1e, 0xa3, 0x6d, 0x2f, 0x49, 0x00, 0x3e, 0xf5, 0x61, 0x65, 0x46, 0xfb, + 0xac, 0x0f, 0xd0, 0xd3, 0x33, 0x69, 0xad, 0xc9, 0x28, 0xcd, 0x37, 0x34, + 0x66, 0x98, 0x87, 0xe6, 0x92, 0x9b, 0x9a, 0x33, 0x40, 0x0b, 0x46, 0x69, + 0x33, 0x49, 0x9a, 0x00, 0x5a, 0x4a, 0x33, 0x49, 0x9a, 0x00, 0x0d, 0x34, + 0x8a, 0x75, 0x26, 0x68, 0x15, 0x86, 0x15, 0xa6, 0x95, 0xa7, 0x93, 0x48, + 0x69, 0x85, 0x88, 0xf6, 0xd2, 0x63, 0xd0, 0xd4, 0x86, 0x9b, 0x40, 0x58, + 0x40, 0xec, 0x3b, 0xd2, 0xf9, 0xad, 0xfd, 0xd5, 0x34, 0x94, 0xd3, 0x48, + 0x6a, 0xe8, 0x79, 0x97, 0xfd, 0x85, 0xa3, 0xcc, 0x5e, 0xe9, 0xfa, 0xd3, + 0x0d, 0x34, 0xd0, 0x3b, 0xb1, 0xfe, 0x62, 0x7f, 0x74, 0xfe, 0x74, 0xd2, + 0xe0, 0xf4, 0x04, 0x7d, 0x4d, 0x30, 0x9a, 0x61, 0x34, 0x05, 0xd9, 0xb5, + 0xa7, 0xe9, 0x51, 0x5d, 0xa8, 0x77, 0xb9, 0x40, 0x3f, 0xba, 0xa7, 0x9a, + 0xdb, 0x8a, 0xc2, 0xd6, 0xd1, 0x7f, 0x77, 0x18, 0x27, 0xfb, 0xc7, 0x93, + 0x5c, 0x3f, 0x9a, 0xc8, 0x72, 0xac, 0x54, 0xfa, 0x83, 0x53, 0x26, 0xb5, + 0x7d, 0x08, 0xc0, 0x97, 0x70, 0xf4, 0x6e, 0x6a, 0x1c, 0x59, 0xd1, 0x4e, + 0xad, 0x35, 0xa5, 0x8e, 0x9a, 0xee, 0xda, 0x7b, 0x82, 0x76, 0x06, 0xdb, + 0xea, 0x2b, 0x31, 0xf4, 0xb7, 0x24, 0xee, 0x94, 0x8a, 0xc8, 0x7d, 0x6a, + 0xf9, 0x5f, 0x7c, 0x77, 0x0e, 0x87, 0xd0, 0x74, 0xa0, 0x78, 0x9e, 0xfd, + 0x0f, 0xce, 0xc9, 0x27, 0xfb, 0xcb, 0x54, 0xa4, 0xd1, 0xab, 0x51, 0x7a, + 0x9a, 0x47, 0x49, 0xf5, 0x93, 0x3f, 0x85, 0x2a, 0xe9, 0x31, 0x77, 0x73, + 0xf9, 0x55, 0x15, 0xf1, 0x69, 0xff, 0x00, 0x96, 0xb6, 0x71, 0x37, 0xfb, + 0xa7, 0x15, 0x2a, 0xf8, 0xaa, 0xc5, 0xbe, 0xfd, 0xa4, 0x8b, 0xfe, 0xeb, + 0x66, 0x8e, 0x79, 0x77, 0x1a, 0x8c, 0x4b, 0xf1, 0xe9, 0x76, 0xc1, 0xc0, + 0x66, 0x66, 0x1f, 0x5a, 0xbb, 0xfd, 0x9b, 0xa6, 0xe3, 0x88, 0xcf, 0xe7, + 0x58, 0xa3, 0xc4, 0x5a, 0x53, 0x7f, 0xcf, 0x65, 0xfa, 0x8a, 0x7a, 0xeb, + 0x9a, 0x63, 0x74, 0xbb, 0x65, 0xfa, 0xa9, 0xa5, 0xcd, 0x2e, 0xe5, 0x24, + 0xbb, 0x1a, 0x8d, 0xa5, 0xd8, 0x1e, 0x8a, 0x47, 0xe3, 0x55, 0xa6, 0xd1, + 0x6d, 0x19, 0x49, 0x5b, 0x86, 0x8f, 0xf5, 0xa8, 0x06, 0xad, 0x62, 0xdf, + 0x76, 0xfe, 0x3f, 0xc6, 0x86, 0xbd, 0xb6, 0x90, 0x7f, 0xc7, 0xd4, 0x4c, + 0x3f, 0xde, 0xa5, 0xcd, 0x2e, 0xe3, 0xe5, 0x5d, 0x8c, 0x7b, 0xcd, 0x2e, + 0xed, 0x32, 0xd6, 0xf7, 0x1e, 0x6a, 0x8e, 0xc4, 0x60, 0xd6, 0x24, 0xd7, + 0x37, 0x30, 0x12, 0x1f, 0x78, 0x61, 0xd8, 0xd7, 0x66, 0xb7, 0x10, 0x63, + 0xfd, 0x7c, 0x58, 0xff, 0x00, 0x7c, 0x55, 0x2d, 0x4a, 0x4d, 0x31, 0xa3, + 0x3f, 0x68, 0x96, 0x22, 0x71, 0xfc, 0x2c, 0x09, 0xa3, 0x99, 0xf7, 0x0e, + 0x53, 0x99, 0x86, 0xfe, 0x56, 0xea, 0xfc, 0xfb, 0xd5, 0xc4, 0x9e, 0x43, + 0xf7, 0x80, 0xfc, 0x2b, 0x35, 0x5e, 0xd4, 0xcc, 0x76, 0x16, 0xda, 0x0f, + 0x15, 0xa7, 0x13, 0x46, 0xe3, 0xe5, 0x23, 0x35, 0xad, 0x36, 0xde, 0xec, + 0x89, 0xa4, 0xb6, 0x1f, 0xbc, 0x9a, 0x50, 0x4d, 0x3c, 0x25, 0x2e, 0xda, + 0xd4, 0xcc, 0x68, 0xcd, 0x3a, 0x9c, 0x05, 0x18, 0xa6, 0x02, 0x52, 0xd1, + 0x8a, 0x5a, 0x00, 0x28, 0xa2, 0x8a, 0x00, 0x5a, 0x4a, 0x29, 0x42, 0x96, + 0x38, 0x03, 0x3f, 0x4a, 0x5b, 0x0d, 0x26, 0xf4, 0x42, 0x51, 0x56, 0x62, + 0xb1, 0x9a, 0x4c, 0x7c, 0xb8, 0x1e, 0xf5, 0x7e, 0x0d, 0x2d, 0x13, 0x97, + 0xf9, 0x8d, 0x70, 0xd7, 0xcc, 0x68, 0x51, 0xdd, 0xdd, 0xf9, 0x1d, 0xb4, + 0x70, 0x15, 0xaa, 0x74, 0xb2, 0xf3, 0x33, 0xa1, 0xb6, 0x92, 0x63, 0xf2, + 0x83, 0x8f, 0x5a, 0xd6, 0xb6, 0xb0, 0x48, 0xb0, 0x48, 0xcb, 0x7b, 0xd5, + 0xb8, 0xe2, 0x0a, 0x30, 0x00, 0x15, 0x30, 0x5a, 0xf0, 0x31, 0x79, 0xa5, + 0x5a, 0xde, 0xec, 0x74, 0x47, 0xb3, 0x87, 0xc0, 0xd3, 0xa3, 0xae, 0xec, + 0x6a, 0x26, 0x3b, 0x54, 0xa0, 0x50, 0x05, 0x2d, 0x79, 0x7b, 0x9d, 0xf6, + 0x14, 0x52, 0xd2, 0x66, 0x8a, 0x06, 0x3a, 0x8a, 0x6d, 0x19, 0xa4, 0x02, + 0xe6, 0x97, 0x38, 0xa6, 0xd2, 0xe6, 0x93, 0x01, 0x73, 0x45, 0x36, 0x8c, + 0xd2, 0x01, 0xd9, 0xa3, 0x34, 0xda, 0x5a, 0x00, 0x5a, 0x29, 0x28, 0xcd, + 0x34, 0x02, 0xd1, 0x45, 0x25, 0x00, 0x2d, 0x25, 0x2e, 0x69, 0x29, 0x80, + 0x51, 0x8a, 0x28, 0xa0, 0x06, 0xe2, 0x8c, 0x53, 0xa8, 0xa2, 0xe0, 0x46, + 0x41, 0xa4, 0x20, 0xd4, 0x94, 0x98, 0xa6, 0x22, 0x2e, 0x69, 0x09, 0x35, + 0x2e, 0xda, 0x42, 0xa2, 0x8b, 0x8a, 0xc4, 0x25, 0xa9, 0xbb, 0xfd, 0x4d, + 0x4c, 0x50, 0x54, 0x6c, 0xa0, 0x0c, 0x9c, 0x01, 0xea, 0x6b, 0x6a, 0x70, + 0x94, 0xdf, 0xba, 0xae, 0x44, 0x9a, 0x8a, 0xbb, 0x63, 0xe5, 0xd4, 0x1a, + 0xc2, 0x1d, 0xe8, 0x65, 0x9f, 0x8c, 0xed, 0x51, 0xc5, 0x73, 0x93, 0xf8, + 0xc3, 0x53, 0xb8, 0x72, 0xb6, 0xb0, 0x08, 0x87, 0xa9, 0xe4, 0xd6, 0x84, + 0xf3, 0x4b, 0x23, 0x98, 0x6d, 0x9f, 0xe5, 0x3c, 0x31, 0x1d, 0x29, 0x2d, + 0xb4, 0xc8, 0xa1, 0x19, 0x60, 0x1d, 0xbf, 0x4a, 0xf6, 0xa9, 0x52, 0x84, + 0x57, 0xc0, 0x93, 0x3c, 0x8a, 0xdb, 0xde, 0xf7, 0x32, 0xd6, 0xef, 0x5f, + 0xba, 0x39, 0x69, 0x24, 0x60, 0x7b, 0x29, 0xc5, 0x4b, 0x25, 0x96, 0xb7, + 0x34, 0x63, 0xcb, 0xf3, 0x91, 0xfd, 0x4c, 0xdc, 0x56, 0xd2, 0xc7, 0x24, + 0x6c, 0x1a, 0x36, 0x0b, 0x8f, 0x7a, 0x9f, 0xed, 0x32, 0x63, 0xe6, 0x61, + 0x9f, 0x6a, 0xeb, 0x51, 0x83, 0xdc, 0xe4, 0x7c, 0xdd, 0x0c, 0x8d, 0x3e, + 0xcf, 0x5c, 0x84, 0xe6, 0xe2, 0x69, 0x1b, 0xd3, 0x13, 0x57, 0x43, 0x6a, + 0xd7, 0x88, 0x01, 0x79, 0x1c, 0xff, 0x00, 0xb2, 0xc4, 0x1a, 0xad, 0xf6, + 0x83, 0xfd, 0xea, 0x41, 0x72, 0x47, 0xf1, 0x1a, 0xca, 0xae, 0x0e, 0x85, + 0x4d, 0xd0, 0x29, 0x4d, 0x1a, 0xa2, 0xf4, 0x67, 0x0c, 0x70, 0x6a, 0x65, + 0xb9, 0x53, 0xfc, 0x42, 0xb0, 0x4c, 0xb9, 0x6c, 0xf3, 0x4e, 0x12, 0x1e, + 0xc1, 0xab, 0x8a, 0x79, 0x4d, 0x37, 0xf0, 0xb6, 0x68, 0xaa, 0xbe, 0xa7, + 0x40, 0x24, 0x07, 0xa1, 0xa7, 0x86, 0xae, 0x78, 0x4b, 0x28, 0xe9, 0xb8, + 0x52, 0x9b, 0xd9, 0xa3, 0x19, 0x32, 0x6d, 0xfa, 0x9a, 0xc5, 0xe4, 0xf3, + 0xe9, 0x22, 0xbd, 0xaa, 0x3a, 0x40, 0x69, 0xe0, 0xd7, 0x25, 0x2e, 0xba, + 0x22, 0x42, 0x5e, 0xfa, 0x34, 0xc7, 0xfb, 0x40, 0xd7, 0x3f, 0x3f, 0x8e, + 0xef, 0x6d, 0xae, 0x0a, 0xc5, 0x24, 0x77, 0x11, 0xf6, 0x3b, 0x48, 0xa9, + 0x96, 0x51, 0x5d, 0x6a, 0xac, 0x25, 0x56, 0x2c, 0xf4, 0xec, 0xd1, 0xbf, + 0x15, 0xe7, 0x96, 0xff, 0x00, 0x11, 0xa4, 0x38, 0xf3, 0xad, 0x47, 0xe1, + 0x5a, 0x31, 0x78, 0xee, 0xd6, 0x7c, 0x03, 0x11, 0x52, 0x7d, 0xeb, 0x07, + 0x80, 0xad, 0xb7, 0x29, 0x5c, 0xc8, 0xec, 0x5a, 0x50, 0x07, 0x5a, 0xa7, + 0x3d, 0xd6, 0xef, 0x95, 0x7a, 0x7a, 0xd6, 0x14, 0x9e, 0x22, 0x85, 0xe3, + 0xdc, 0x5c, 0x22, 0x7a, 0x93, 0x59, 0x17, 0x3e, 0x32, 0xb3, 0x84, 0x91, + 0x1a, 0x34, 0x84, 0x7a, 0x70, 0x2b, 0xd1, 0xc2, 0x65, 0xca, 0x97, 0xbf, + 0x57, 0x72, 0x25, 0x27, 0x2d, 0x11, 0xd5, 0xee, 0xa3, 0x35, 0xc3, 0x9f, + 0x1d, 0x9c, 0xfc, 0xb6, 0x7c, 0x7f, 0xbf, 0x40, 0xf1, 0xe3, 0xff, 0x00, + 0xcf, 0x98, 0xff, 0x00, 0xbe, 0xff, 0x00, 0xfa, 0xd5, 0xea, 0x68, 0x67, + 0xca, 0xce, 0xe3, 0x34, 0x57, 0x12, 0x3c, 0x76, 0xff, 0x00, 0xf3, 0xe4, + 0x3f, 0xef, 0xbf, 0xfe, 0xb5, 0x38, 0x78, 0xe8, 0xf7, 0xb3, 0x1f, 0xf7, + 0xdd, 0x17, 0x41, 0xc8, 0xce, 0xd6, 0x96, 0xb8, 0xe8, 0xbc, 0x70, 0x1c, + 0xf3, 0x66, 0x47, 0xfc, 0x0a, 0xb6, 0xb4, 0xcd, 0x7a, 0xdf, 0x52, 0x62, + 0x8a, 0x0a, 0x38, 0xfe, 0x13, 0x55, 0x62, 0x1e, 0x86, 0xbd, 0x2e, 0x6a, + 0x32, 0xea, 0x3a, 0x90, 0x2a, 0x37, 0xbc, 0xb7, 0x8f, 0xef, 0x4a, 0xbf, + 0x9d, 0x31, 0x36, 0x91, 0x67, 0x34, 0xb9, 0xac, 0xb9, 0x35, 0x9b, 0x74, + 0xfb, 0xbb, 0x9b, 0xe8, 0x2a, 0xa4, 0xba, 0xdc, 0x8d, 0xc4, 0x71, 0x85, + 0xf7, 0x34, 0xec, 0xcc, 0xe5, 0x5a, 0x0b, 0xa9, 0xbf, 0xb8, 0x01, 0xc9, + 0xc5, 0x56, 0x9b, 0x51, 0xb7, 0x80, 0x7c, 0xd2, 0x02, 0x7d, 0x05, 0x73, + 0x92, 0xde, 0x5c, 0x4d, 0xf7, 0xe5, 0x38, 0xf4, 0x15, 0x08, 0x04, 0xd5, + 0x28, 0x98, 0x4b, 0x13, 0xfc, 0xa8, 0xd6, 0xb8, 0xd6, 0xdd, 0xf2, 0x21, + 0x5d, 0xa3, 0xd4, 0xd6, 0x6b, 0xc9, 0x24, 0xcd, 0x99, 0x18, 0xb1, 0xf7, + 0xa4, 0x0b, 0x4f, 0x02, 0xa9, 0x23, 0x9e, 0x55, 0x25, 0x2d, 0xcc, 0x4d, + 0x62, 0xd0, 0x8c, 0x5c, 0x20, 0xe9, 0xd6, 0xa8, 0x45, 0x26, 0xe5, 0xae, + 0xa9, 0xe3, 0x59, 0x10, 0xa9, 0x1c, 0x11, 0x5c, 0xb5, 0xf5, 0xa3, 0xd8, + 0xdc, 0x1c, 0x64, 0xa1, 0xef, 0x8a, 0xcd, 0xab, 0x33, 0xb3, 0x0f, 0x53, + 0x99, 0x72, 0xbd, 0xc9, 0x01, 0xa5, 0x0d, 0x8a, 0x81, 0x24, 0x0c, 0x29, + 0xe1, 0xa8, 0x37, 0x27, 0x59, 0x08, 0xe8, 0x4d, 0x4c, 0x97, 0xb2, 0xc7, + 0xd1, 0x8d, 0x53, 0xcd, 0x2e, 0x69, 0x89, 0xa4, 0xf7, 0x35, 0x23, 0xd5, + 0x9c, 0x7d, 0xe1, 0x9a, 0xb2, 0x9a, 0xa4, 0x4d, 0xf7, 0x86, 0x2b, 0x07, + 0x34, 0x6e, 0xa7, 0xcc, 0xcc, 0x9d, 0x08, 0x3e, 0x87, 0x4a, 0xb7, 0x90, + 0xbf, 0x47, 0x15, 0x20, 0x95, 0x4f, 0x46, 0x07, 0xf1, 0xae, 0x58, 0x39, + 0x1d, 0x0d, 0x3c, 0x4c, 0xe3, 0xa3, 0x1a, 0x7c, 0xc6, 0x6f, 0x0c, 0xba, + 0x33, 0xa7, 0x19, 0x6f, 0xba, 0x33, 0x55, 0x27, 0xb1, 0xbe, 0xb9, 0x38, + 0xfb, 0x42, 0x40, 0x84, 0xf6, 0xe4, 0xd6, 0x4c, 0x77, 0xf3, 0xc7, 0xf7, + 0x64, 0x35, 0x3a, 0x6b, 0x17, 0x0b, 0xd5, 0x81, 0xfa, 0xd0, 0xe5, 0x71, + 0xc3, 0x0f, 0xca, 0xee, 0xf5, 0x34, 0x63, 0xf0, 0x60, 0x7f, 0x9a, 0x6b, + 0xa9, 0x64, 0xcf, 0xa2, 0xd4, 0xbf, 0xf0, 0x85, 0xc0, 0xa0, 0x95, 0x7b, + 0x81, 0xf4, 0xa8, 0x23, 0xf1, 0x55, 0xda, 0x28, 0x53, 0x8c, 0x0a, 0xb0, + 0xbe, 0x2e, 0x9b, 0x18, 0x65, 0x27, 0xe8, 0x69, 0x1b, 0x72, 0x9c, 0xae, + 0x68, 0xcd, 0x47, 0xba, 0x8c, 0xd2, 0x2c, 0x93, 0x34, 0x6e, 0x35, 0x1e, + 0x68, 0xdd, 0x40, 0x58, 0x7e, 0xea, 0x4c, 0x83, 0x4d, 0xdd, 0x49, 0xba, + 0x80, 0xb0, 0xfc, 0x0e, 0xdc, 0x50, 0x24, 0x95, 0x3e, 0xe4, 0x84, 0x53, + 0x37, 0x52, 0x6e, 0xa0, 0x4e, 0x29, 0x96, 0x17, 0x53, 0xbb, 0x8b, 0xf8, + 0x89, 0x15, 0x2a, 0xf8, 0x8a, 0x54, 0xfb, 0xe8, 0x0d, 0x51, 0x2d, 0x50, + 0x4a, 0xcb, 0x8c, 0x9a, 0x77, 0x64, 0x3a, 0x31, 0x7d, 0x0d, 0xb4, 0xf1, + 0x34, 0x24, 0xfc, 0xf1, 0x91, 0xf4, 0xab, 0xb0, 0xeb, 0x76, 0x53, 0x70, + 0x25, 0x0a, 0x7d, 0x0d, 0x71, 0x6e, 0x54, 0xfd, 0x6a, 0x3c, 0x7a, 0x1a, + 0x7c, 0xcc, 0xc9, 0xe1, 0xa2, 0xcf, 0x46, 0x49, 0x52, 0x41, 0x94, 0x70, + 0x47, 0xb1, 0xa7, 0x66, 0xbc, 0xf2, 0x3b, 0x99, 0xe1, 0x39, 0x49, 0x19, + 0x7f, 0x1a, 0xd0, 0x83, 0xc4, 0x37, 0x91, 0x70, 0xc4, 0x38, 0xf7, 0xa7, + 0xce, 0x65, 0x2c, 0x34, 0x96, 0xc7, 0x67, 0x9a, 0x33, 0x5c, 0xec, 0x3e, + 0x28, 0x8c, 0xf1, 0x2c, 0x44, 0x7b, 0x8a, 0xbf, 0x0e, 0xb7, 0x65, 0x37, + 0xfc, 0xb5, 0xda, 0x7d, 0x0d, 0x57, 0x32, 0x33, 0x74, 0xa6, 0xb7, 0x46, + 0x9d, 0x25, 0x44, 0x97, 0x11, 0x49, 0xca, 0x48, 0xad, 0xf4, 0x34, 0xe6, + 0x70, 0x06, 0x49, 0xc0, 0xa0, 0x8b, 0x0e, 0xcd, 0x25, 0x52, 0x9f, 0x53, + 0xb7, 0x88, 0x1f, 0xde, 0x02, 0x7d, 0x01, 0xac, 0x9b, 0x8d, 0x6e, 0x66, + 0x63, 0xe5, 0x61, 0x45, 0x0d, 0x97, 0x1a, 0x72, 0x96, 0xc7, 0x45, 0x48, + 0x6b, 0x94, 0x3a, 0x9d, 0xd3, 0x75, 0x9c, 0x8f, 0xa5, 0x44, 0xda, 0x85, + 0xc3, 0x1c, 0x09, 0x9d, 0x8f, 0xd6, 0x97, 0x31, 0xaa, 0xc3, 0x48, 0xeb, + 0x89, 0x1e, 0xb4, 0x85, 0xd4, 0x77, 0x15, 0xc8, 0x86, 0xba, 0x90, 0xe5, + 0xa5, 0x60, 0x3e, 0xb5, 0x32, 0x6e, 0x5f, 0xe2, 0x62, 0x7d, 0xcd, 0x4b, + 0x9a, 0x1f, 0xd5, 0x9f, 0x73, 0xa5, 0x32, 0x20, 0xea, 0xe3, 0xf3, 0xa8, + 0xde, 0xe2, 0x15, 0x1c, 0xc8, 0xbf, 0x9d, 0x73, 0xaf, 0x2e, 0xdf, 0xbc, + 0xe6, 0xaa, 0x4b, 0x74, 0x58, 0xe1, 0x69, 0xf3, 0x14, 0xb0, 0xbe, 0x67, + 0x50, 0xd7, 0xb6, 0xdf, 0xf3, 0xd5, 0x7f, 0x3a, 0x85, 0xb5, 0x1b, 0x51, + 0xff, 0x00, 0x2d, 0x01, 0xfa, 0x57, 0x2c, 0x5d, 0x8f, 0x56, 0x34, 0x9b, + 0x8f, 0xa9, 0xa5, 0xce, 0x57, 0xd5, 0x63, 0xdc, 0xe9, 0x1b, 0x52, 0xb6, + 0xec, 0x58, 0xfd, 0x05, 0x35, 0x6e, 0x16, 0x63, 0x88, 0xd1, 0xbf, 0x1e, + 0x2b, 0x9f, 0x57, 0x6f, 0x53, 0x53, 0x24, 0xaf, 0xd9, 0xc8, 0xa3, 0x9d, + 0x8b, 0xea, 0xd0, 0x47, 0x42, 0x2c, 0xae, 0x25, 0xfb, 0xa2, 0x31, 0xf5, + 0x71, 0x4d, 0x7d, 0x26, 0xef, 0xfe, 0x99, 0xe7, 0xfd, 0xfa, 0xc4, 0x86, + 0xf6, 0x51, 0x26, 0xdd, 0xd9, 0x15, 0xa4, 0x35, 0x19, 0xad, 0xd7, 0x74, + 0x78, 0x27, 0xfd, 0xa1, 0x9a, 0x4d, 0xad, 0xd9, 0x7c, 0x96, 0x24, 0x7d, + 0x1b, 0x50, 0x51, 0x9f, 0xb3, 0xe4, 0x7f, 0xb2, 0x73, 0x54, 0xa5, 0xb6, + 0x92, 0x13, 0x89, 0x51, 0xa3, 0x3f, 0xed, 0x0c, 0x54, 0xe3, 0xc4, 0x97, + 0xa8, 0x78, 0x7c, 0x7f, 0xc0, 0x6a, 0x1b, 0xad, 0x7a, 0xe2, 0xed, 0x36, + 0x4c, 0xc0, 0x8f, 0xf7, 0x69, 0x5c, 0x7c, 0xa4, 0x0d, 0x19, 0x1f, 0x4f, + 0x6a, 0x8c, 0xad, 0x44, 0x2e, 0x23, 0x1c, 0x64, 0xd3, 0xd6, 0x54, 0x6e, + 0x86, 0x98, 0x59, 0x81, 0x4a, 0x69, 0x4a, 0x93, 0x20, 0xd1, 0x8a, 0x40, + 0x44, 0x63, 0xcd, 0x47, 0x2a, 0x2a, 0xc7, 0x93, 0xd7, 0xb5, 0x59, 0xa0, + 0xaa, 0x38, 0xf9, 0x80, 0xa0, 0xa4, 0x53, 0x80, 0xe0, 0xd5, 0xe5, 0x62, + 0x3a, 0x53, 0x04, 0x6a, 0x87, 0x20, 0x52, 0x91, 0xe9, 0x4e, 0xf6, 0xd8, + 0xab, 0x5c, 0xb7, 0x1d, 0xec, 0x89, 0xc1, 0x39, 0x1e, 0xf5, 0x6e, 0x2b, + 0xf8, 0xdf, 0x86, 0xf9, 0x4d, 0x63, 0xe0, 0x8f, 0x5a, 0x39, 0xf5, 0xab, + 0x55, 0x9a, 0x21, 0xd2, 0x4c, 0xe8, 0xd4, 0xab, 0x0c, 0xa9, 0xc8, 0xa5, + 0xc5, 0x62, 0xda, 0xdc, 0x34, 0x4c, 0x39, 0xe2, 0xb6, 0x23, 0x90, 0x48, + 0x81, 0x81, 0xad, 0xe1, 0x35, 0x23, 0x39, 0xd3, 0x71, 0xd4, 0x76, 0x28, + 0xa2, 0x8a, 0xb3, 0x21, 0x29, 0xd1, 0x88, 0x99, 0xb0, 0xd2, 0x85, 0xfa, + 0xd3, 0x4d, 0x46, 0xca, 0x0f, 0x5a, 0x89, 0xc5, 0xb5, 0x64, 0xec, 0x6b, + 0x4e, 0x51, 0x8b, 0xbc, 0x95, 0xcd, 0x88, 0x2c, 0xad, 0x18, 0x0f, 0xdf, + 0x2b, 0x9f, 0x63, 0x57, 0xe2, 0xb5, 0x89, 0x07, 0xca, 0xa2, 0xb9, 0x43, + 0x1a, 0xf6, 0x38, 0xfa, 0x1a, 0x04, 0xb3, 0x47, 0xf7, 0x2e, 0x1d, 0x7f, + 0xe0, 0x55, 0xe4, 0xe2, 0x32, 0xea, 0xf5, 0x7f, 0xe5, 0xed, 0xcf, 0x52, + 0x8e, 0x3e, 0x84, 0x3e, 0xc5, 0xbd, 0x0e, 0xcd, 0x50, 0x0a, 0x78, 0x5a, + 0xe3, 0x97, 0x58, 0xbd, 0x8b, 0xfe, 0x5e, 0x54, 0x8f, 0xf6, 0x85, 0x4c, + 0xbe, 0x28, 0xb8, 0x8f, 0xef, 0x88, 0x9b, 0xf1, 0xaf, 0x32, 0x79, 0x46, + 0x21, 0x6c, 0xd3, 0x3b, 0xa1, 0x98, 0xd0, 0x7f, 0xf0, 0xc7, 0x5a, 0x05, + 0x2f, 0x4a, 0xe5, 0xd3, 0xc5, 0xf1, 0x83, 0xfb, 0xc8, 0x3f, 0x23, 0x53, + 0x8f, 0x18, 0x59, 0x6d, 0xc9, 0x8d, 0xf3, 0xe9, 0x5c, 0xb2, 0xcb, 0xf1, + 0x11, 0xfb, 0x27, 0x42, 0xc5, 0x51, 0x7f, 0x68, 0xe8, 0x85, 0x15, 0xca, + 0xcb, 0xe3, 0x38, 0x87, 0xfa, 0xab, 0x76, 0x3f, 0xef, 0x1a, 0xa6, 0xfe, + 0x31, 0xba, 0x6f, 0xb9, 0x0a, 0x8f, 0xd6, 0xaa, 0x39, 0x7d, 0x77, 0xd2, + 0xc4, 0xbc, 0x65, 0x15, 0xd4, 0xed, 0xb3, 0x45, 0x70, 0x4d, 0xe2, 0x8d, + 0x49, 0xba, 0x6d, 0x1f, 0x85, 0x30, 0xf8, 0x8f, 0x53, 0x3f, 0xf2, 0xd0, + 0x0a, 0xd3, 0xfb, 0x2e, 0xab, 0xea, 0x8c, 0xde, 0x61, 0x48, 0xf4, 0x0c, + 0xd0, 0x2b, 0xcf, 0x7f, 0xe1, 0x20, 0xd4, 0xff, 0x00, 0xe7, 0xad, 0x28, + 0xf1, 0x0e, 0xa6, 0x3f, 0xe5, 0xa8, 0xa7, 0xfd, 0x97, 0x57, 0xba, 0x0f, + 0xed, 0x0a, 0x47, 0xa0, 0xd1, 0x5c, 0x07, 0xfc, 0x24, 0x9a, 0x90, 0xff, + 0x00, 0x96, 0x8b, 0x47, 0xfc, 0x24, 0xfa, 0x8f, 0xf7, 0xd7, 0xf2, 0xa9, + 0xfe, 0xcb, 0xab, 0xdd, 0x0f, 0xeb, 0xf4, 0x8e, 0xfe, 0x8a, 0xe0, 0x47, + 0x8a, 0x75, 0x0f, 0xef, 0x27, 0xe5, 0x4b, 0xff, 0x00, 0x09, 0x56, 0xa1, + 0xfd, 0xe4, 0xfc, 0xa9, 0x7f, 0x65, 0xd6, 0xee, 0x87, 0xf5, 0xfa, 0x47, + 0x7b, 0x9a, 0x5c, 0xd7, 0x04, 0x3c, 0x53, 0xa8, 0x7f, 0x79, 0x3f, 0x2a, + 0x5f, 0xf8, 0x4a, 0x75, 0x1f, 0x54, 0xfc, 0xa8, 0xfe, 0xcb, 0xad, 0xe4, + 0x1f, 0x5f, 0xa4, 0x77, 0x94, 0x57, 0x14, 0x3c, 0x63, 0xa9, 0x00, 0x06, + 0xc8, 0x3f, 0xef, 0x81, 0x47, 0xfc, 0x26, 0x5a, 0x97, 0xfc, 0xf3, 0x83, + 0xfe, 0xf8, 0x15, 0xaf, 0xf6, 0x4c, 0xbf, 0x98, 0xcf, 0xfb, 0x46, 0x1d, + 0x8e, 0xd6, 0x96, 0xb8, 0xd4, 0xf1, 0xbe, 0xa0, 0xa7, 0x98, 0x60, 0x3f, + 0xf0, 0x0a, 0xb3, 0x1f, 0x8f, 0xee, 0x93, 0xef, 0xd9, 0x40, 0xdf, 0x86, + 0x2a, 0xbf, 0xb2, 0x5f, 0xf3, 0x07, 0xf6, 0x8c, 0x7b, 0x1d, 0x4f, 0x7a, + 0x33, 0x58, 0x70, 0x7c, 0x47, 0x40, 0x40, 0x97, 0x4e, 0x4f, 0xf8, 0x09, + 0xa4, 0x93, 0xc6, 0x7a, 0x75, 0xc4, 0xc5, 0xc4, 0x4f, 0x10, 0x3d, 0x45, + 0x67, 0x57, 0x2c, 0x94, 0x23, 0x78, 0xbb, 0x97, 0x4b, 0x1d, 0x19, 0xbb, + 0x49, 0x58, 0xdd, 0xeb, 0x45, 0x64, 0x47, 0xe2, 0x4d, 0x36, 0x4c, 0x7e, + 0xff, 0x00, 0x1f, 0x51, 0x57, 0x22, 0xd4, 0xec, 0x25, 0xfb, 0xb7, 0x90, + 0xff, 0x00, 0xdf, 0x55, 0xcb, 0x1c, 0x15, 0x79, 0x6d, 0x13, 0x79, 0x62, + 0x69, 0x47, 0x79, 0x16, 0xfb, 0x53, 0x4e, 0x71, 0xc5, 0x2a, 0x3c, 0x0f, + 0xf7, 0x6e, 0x10, 0xfd, 0x0d, 0x4c, 0x12, 0x23, 0xfc, 0x40, 0xfe, 0x35, + 0xd3, 0x4f, 0x2d, 0xaf, 0xd6, 0xc6, 0x12, 0xc7, 0xd1, 0x44, 0x3f, 0x5a, + 0x3a, 0xf4, 0xe6, 0x92, 0xee, 0xf2, 0xd2, 0xc6, 0x32, 0xf2, 0xba, 0x8f, + 0x6a, 0xe6, 0xef, 0x3c, 0x62, 0x01, 0x2b, 0x6d, 0x10, 0x03, 0xfb, 0xc6, + 0xb7, 0x8e, 0x53, 0xd6, 0x52, 0x32, 0x79, 0x85, 0xfe, 0x18, 0xfd, 0xe7, + 0x4d, 0xb4, 0x81, 0x93, 0x85, 0x1e, 0xe6, 0xaa, 0x4f, 0x7f, 0x69, 0x6e, + 0x0e, 0xf9, 0xd4, 0x9f, 0x45, 0xe6, 0xb8, 0x9b, 0x8d, 0x7a, 0xe2, 0xe4, + 0xe6, 0x47, 0x63, 0xed, 0xda, 0xaa, 0x35, 0xf9, 0x3e, 0xb5, 0xd1, 0x1c, + 0x0d, 0x28, 0x6d, 0x1b, 0xfa, 0x99, 0x4b, 0x19, 0x27, 0xbc, 0xbe, 0xe3, + 0xab, 0xb9, 0xf1, 0x00, 0x19, 0x10, 0x47, 0x8f, 0xf6, 0x9a, 0xb9, 0xbd, + 0x47, 0x58, 0xb9, 0x91, 0x8e, 0x66, 0x63, 0xed, 0x55, 0x0d, 0xd1, 0x6f, + 0x5a, 0xa5, 0x3b, 0x12, 0xc6, 0xba, 0xa1, 0x4d, 0xa3, 0x9e, 0x75, 0x93, + 0x34, 0xf4, 0xdf, 0x10, 0x5d, 0xd9, 0xe5, 0x76, 0x09, 0x53, 0x3c, 0xe6, + 0xb5, 0x3f, 0xe1, 0x2e, 0x1f, 0xc5, 0x62, 0xd9, 0xf6, 0x6a, 0xe5, 0xed, + 0xcb, 0x12, 0x50, 0x03, 0xcd, 0x4f, 0xf6, 0x69, 0x4f, 0xf0, 0x9a, 0xad, + 0x13, 0x33, 0xbb, 0x67, 0x43, 0xff, 0x00, 0x09, 0x72, 0x7f, 0xcf, 0xa3, + 0xff, 0x00, 0xdf, 0x54, 0x87, 0xc5, 0xc3, 0xb5, 0x97, 0xe6, 0xf5, 0xce, + 0x98, 0x19, 0x7a, 0xe3, 0xf3, 0xa6, 0x14, 0x3e, 0x95, 0x68, 0x86, 0xed, + 0xb9, 0xd1, 0x1f, 0x17, 0x49, 0xfc, 0x36, 0x71, 0x8f, 0xab, 0x53, 0x0f, + 0x8b, 0xae, 0xbf, 0x86, 0x08, 0x56, 0xb0, 0x36, 0x9f, 0x4a, 0x02, 0xd5, + 0x6a, 0x43, 0x68, 0xdb, 0x6f, 0x16, 0x6a, 0x27, 0xa1, 0x8d, 0x7e, 0x8b, + 0x50, 0xbf, 0x89, 0x75, 0x37, 0xff, 0x00, 0x96, 0xfb, 0x7f, 0xdd, 0x15, + 0x98, 0x11, 0x40, 0xc9, 0x35, 0x66, 0xd6, 0xd0, 0x5c, 0x9c, 0x2b, 0xc6, + 0x9e, 0xee, 0xd8, 0xa7, 0x72, 0x74, 0xec, 0x2b, 0xeb, 0x1a, 0x84, 0xbf, + 0x7a, 0xe6, 0x4f, 0xce, 0xab, 0xb5, 0xc4, 0xf2, 0x7d, 0xe9, 0x5c, 0xfd, + 0x58, 0xd6, 0xec, 0x5e, 0x1e, 0x81, 0x97, 0x2f, 0xa8, 0xc2, 0x3d, 0x96, + 0x97, 0xfb, 0x1f, 0x4f, 0x53, 0xb4, 0xdd, 0xbb, 0x1f, 0x60, 0x29, 0xde, + 0xe2, 0xb9, 0xce, 0xe0, 0x9e, 0xbc, 0xd0, 0x06, 0x3a, 0x57, 0x44, 0x9a, + 0x4d, 0x83, 0x36, 0x04, 0xf2, 0x0f, 0x73, 0x8a, 0x8a, 0xeb, 0x4c, 0xb3, + 0x84, 0x7c, 0x97, 0x0c, 0xcd, 0xe9, 0x81, 0x46, 0xe1, 0x76, 0x61, 0xf3, + 0x4d, 0xce, 0x0d, 0x5c, 0x68, 0x15, 0x4f, 0x2c, 0x2a, 0x33, 0x14, 0x67, + 0xb9, 0xa4, 0xd0, 0xd4, 0x88, 0x1e, 0xe2, 0x46, 0x1b, 0x4b, 0x1c, 0x54, + 0x59, 0xab, 0x0d, 0x04, 0x7f, 0xed, 0x7e, 0x55, 0x19, 0x8e, 0x21, 0xd9, + 0xaa, 0x39, 0x52, 0x36, 0x55, 0x1b, 0x19, 0x9a, 0x32, 0x29, 0xe1, 0x21, + 0xef, 0xba, 0xa5, 0x4b, 0x68, 0x1f, 0xf8, 0x88, 0xfc, 0x69, 0x72, 0x8f, + 0x9c, 0xaf, 0xe6, 0x28, 0xa6, 0x99, 0xbd, 0x2a, 0xf8, 0xd3, 0x61, 0x23, + 0xef, 0xb5, 0x2a, 0xe9, 0x70, 0xee, 0xe6, 0x56, 0xdb, 0xf4, 0xa4, 0xad, + 0x71, 0x4a, 0x6e, 0xc6, 0x70, 0x9a, 0x41, 0xd0, 0xe2, 0xb6, 0xf4, 0x34, + 0xb9, 0xf3, 0xbc, 0xe0, 0xec, 0xa0, 0x77, 0x14, 0xfb, 0x6d, 0x2b, 0x4f, + 0xdc, 0x37, 0x48, 0xec, 0x7d, 0x0d, 0x6f, 0xc1, 0x04, 0x50, 0xc6, 0x16, + 0x31, 0x81, 0x5b, 0xc5, 0x1c, 0x35, 0xab, 0x3d, 0x90, 0xf3, 0x24, 0xad, + 0xf7, 0x9d, 0x8f, 0xe3, 0x48, 0x01, 0xa9, 0x02, 0x8f, 0x5a, 0x5d, 0xb5, + 0x56, 0x39, 0x75, 0x7b, 0x91, 0xed, 0xa7, 0x05, 0xa7, 0x62, 0x96, 0x81, + 0x58, 0x40, 0x29, 0xc0, 0x0a, 0x4c, 0xd1, 0xb8, 0x0e, 0xa6, 0x98, 0x58, + 0x75, 0x2e, 0x6a, 0xac, 0xb7, 0xd6, 0xf0, 0x8f, 0xde, 0x4c, 0x8b, 0xf8, + 0xd6, 0x74, 0xfe, 0x24, 0xb4, 0x8b, 0x21, 0x37, 0x48, 0x7d, 0x85, 0x2b, + 0xa4, 0x52, 0x84, 0xa5, 0xb2, 0x36, 0xf3, 0x55, 0xef, 0x23, 0x8e, 0x78, + 0x0a, 0x48, 0x40, 0x1e, 0xf5, 0xcc, 0x5c, 0x78, 0x92, 0xe6, 0x4c, 0x88, + 0x90, 0x20, 0xf5, 0xea, 0x6a, 0x8b, 0x4d, 0x73, 0x74, 0x77, 0x4d, 0x3b, + 0xe3, 0xd3, 0x35, 0x12, 0x9a, 0xb1, 0xbc, 0x30, 0xd3, 0xbd, 0xf6, 0x2d, + 0xcd, 0x19, 0xb7, 0x95, 0x82, 0xb0, 0x65, 0x1e, 0x86, 0x9c, 0x92, 0x6e, + 0x15, 0x5a, 0x34, 0xc7, 0x0b, 0xc0, 0x3d, 0x7d, 0xea, 0x75, 0x01, 0x7a, + 0x54, 0x45, 0xb3, 0xb6, 0xda, 0x6a, 0x4d, 0xba, 0x8d, 0xd5, 0x1e, 0x69, + 0x77, 0x55, 0x0a, 0xc3, 0xf3, 0x46, 0x69, 0x99, 0xa3, 0x34, 0xc0, 0x7e, + 0x69, 0x73, 0x51, 0xe6, 0x8d, 0xd4, 0x05, 0x89, 0x33, 0x46, 0x6a, 0x3d, + 0xd4, 0x6e, 0xa0, 0x44, 0x9b, 0xa8, 0xdd, 0x51, 0xee, 0xa3, 0x34, 0x01, + 0x1e, 0x68, 0xcd, 0x37, 0x34, 0x6e, 0x14, 0xae, 0x55, 0x87, 0x66, 0x8c, + 0xd3, 0x37, 0x51, 0xba, 0x8b, 0x85, 0x87, 0xe6, 0x8c, 0xd3, 0x37, 0x8f, + 0x5a, 0x69, 0x91, 0x47, 0x7a, 0x2e, 0x16, 0x24, 0xcd, 0x21, 0x6a, 0xae, + 0xd3, 0xa8, 0xef, 0x50, 0xbd, 0xc6, 0x7a, 0x50, 0x05, 0x87, 0x98, 0x01, + 0xd6, 0xaa, 0x49, 0x29, 0x63, 0xed, 0x51, 0xb3, 0x96, 0xa4, 0xa2, 0xe0, + 0x14, 0xe1, 0x49, 0x4a, 0x01, 0xf4, 0xa9, 0xb8, 0xec, 0x3a, 0x8c, 0x0a, + 0x02, 0xb7, 0xa1, 0xa7, 0x08, 0xdc, 0xf4, 0x53, 0x47, 0x30, 0xf9, 0x44, + 0xda, 0x28, 0xda, 0x2a, 0x41, 0x04, 0x9f, 0xdd, 0x3f, 0x95, 0x3c, 0x5a, + 0xb9, 0xed, 0xf9, 0xd1, 0xcc, 0x1c, 0xa4, 0x68, 0xed, 0x19, 0xca, 0x31, + 0x07, 0xd8, 0xd4, 0xe6, 0xfa, 0xe9, 0x93, 0x69, 0x99, 0xc8, 0xfa, 0xd2, + 0x8b, 0x52, 0x3a, 0x95, 0x1f, 0x53, 0x4a, 0x22, 0x8d, 0x7e, 0xf4, 0xaa, + 0x3e, 0x94, 0xd3, 0x7d, 0x08, 0x71, 0x8f, 0x52, 0xbe, 0x1c, 0x9c, 0xf3, + 0x9a, 0x78, 0x89, 0xdb, 0xa9, 0xa9, 0xb7, 0xdb, 0xaf, 0x57, 0x27, 0xe9, + 0x4d, 0x37, 0x51, 0x2f, 0xdd, 0x4c, 0xfd, 0x69, 0xfb, 0xc3, 0xd3, 0xa0, + 0xa9, 0x6e, 0xbd, 0xf2, 0x6a, 0x75, 0x40, 0xa3, 0x80, 0x05, 0x54, 0x6b, + 0xc7, 0x3f, 0x74, 0x01, 0x50, 0xb4, 0xd2, 0x3f, 0x56, 0x34, 0xbd, 0x58, + 0xac, 0xd9, 0xa0, 0xd2, 0xc6, 0x9d, 0x5b, 0x3f, 0x4a, 0x82, 0x4b, 0xde, + 0xc8, 0x31, 0x54, 0xfa, 0xf5, 0x34, 0x94, 0x5f, 0xb0, 0x58, 0x7b, 0x48, + 0xcf, 0xd4, 0xd3, 0x73, 0x49, 0xc5, 0x2e, 0x28, 0xd5, 0x8e, 0xe1, 0x9a, + 0x33, 0x47, 0xd2, 0x94, 0x2e, 0x69, 0xd8, 0x4d, 0x80, 0xe7, 0xa5, 0x4b, + 0x9d, 0xa9, 0x48, 0x00, 0x41, 0x4c, 0x77, 0x2c, 0x71, 0xda, 0x93, 0xd7, + 0x44, 0x4e, 0xe3, 0xe1, 0xe6, 0x4c, 0xd5, 0xe7, 0x6c, 0x28, 0xaa, 0x96, + 0xe9, 0xce, 0x6a, 0xcc, 0xbf, 0x77, 0x15, 0x55, 0x34, 0xb2, 0x17, 0x52, + 0x36, 0x71, 0x50, 0xbb, 0x0a, 0x46, 0xe3, 0xae, 0x6a, 0x22, 0xe3, 0xde, + 0xb3, 0x5a, 0x8d, 0x83, 0x01, 0x51, 0xe7, 0x69, 0xe0, 0xd3, 0xfa, 0xd3, + 0x7c, 0xa2, 0x7b, 0x8a, 0xa4, 0x9a, 0x02, 0x45, 0x9c, 0x8e, 0xb5, 0x28, + 0x94, 0x9e, 0x98, 0xa8, 0x04, 0x0d, 0xea, 0x29, 0xc2, 0x16, 0x1d, 0xea, + 0xc9, 0xd0, 0x9f, 0x73, 0x11, 0xd4, 0x51, 0x86, 0x3f, 0xc5, 0x51, 0xaa, + 0x30, 0xef, 0x52, 0x00, 0x47, 0x7a, 0x04, 0x28, 0x53, 0xdd, 0xcd, 0x39, + 0x54, 0x0e, 0x84, 0x9a, 0x4c, 0x13, 0x4d, 0x2d, 0x8e, 0xa0, 0xd2, 0x1a, + 0x64, 0xe0, 0x8e, 0xf4, 0x6c, 0x46, 0xef, 0x55, 0xfc, 0xdc, 0x76, 0x34, + 0xdf, 0x3f, 0xfd, 0x93, 0x50, 0xd7, 0x99, 0xb2, 0x93, 0xea, 0x8b, 0x3e, + 0x41, 0xfe, 0x16, 0xa7, 0xc7, 0x2d, 0xd4, 0x1c, 0x29, 0x04, 0x55, 0x3f, + 0xb4, 0xb0, 0xe8, 0xa7, 0xf3, 0xa5, 0x17, 0x92, 0x0f, 0xe1, 0xcd, 0x24, + 0xe5, 0x1d, 0x8a, 0xf7, 0x24, 0xac, 0xcb, 0x8d, 0xa8, 0x5d, 0x7a, 0x11, + 0xf8, 0x53, 0x3f, 0xb4, 0x2e, 0x7b, 0xb7, 0xe9, 0x55, 0xfe, 0xdb, 0x27, + 0xf7, 0x05, 0x21, 0xba, 0x27, 0xac, 0x63, 0xf2, 0xab, 0xf6, 0xb5, 0x08, + 0x74, 0xa9, 0xf4, 0x64, 0xe6, 0xf6, 0xe4, 0x9f, 0xbe, 0x69, 0x86, 0xea, + 0x73, 0xff, 0x00, 0x2d, 0x48, 0xfc, 0x6a, 0x35, 0x9d, 0x03, 0x64, 0xc2, + 0xa6, 0xb5, 0x2d, 0xb5, 0xd5, 0xb7, 0x00, 0x7f, 0x67, 0xc0, 0xdf, 0x51, + 0x51, 0x3a, 0xb5, 0x12, 0xd1, 0x5f, 0xe6, 0x2f, 0x67, 0x1e, 0xe6, 0x69, + 0x9e, 0x53, 0xd6, 0x5f, 0xd6, 0x98, 0x5d, 0xbb, 0xc9, 0x5b, 0xb2, 0x78, + 0xa1, 0xdd, 0x71, 0x1d, 0x8d, 0xbc, 0x7e, 0xe1, 0x33, 0x59, 0x37, 0x77, + 0x33, 0x5e, 0xb6, 0x64, 0x61, 0xf4, 0x0a, 0x05, 0x4c, 0x2a, 0x55, 0x97, + 0xc5, 0x1b, 0x7c, 0xc1, 0xc5, 0x2d, 0x8a, 0xc5, 0xd7, 0xbc, 0x94, 0x9b, + 0xd3, 0xfb, 0xc6, 0x8f, 0xb3, 0xfb, 0xfe, 0x94, 0x9f, 0x66, 0x3e, 0xb5, + 0xa5, 0xc4, 0x06, 0x44, 0xf4, 0x27, 0xf1, 0xa4, 0xf3, 0x80, 0xe8, 0x9f, + 0x9d, 0x2f, 0xd9, 0x8f, 0xad, 0x1f, 0x67, 0x6a, 0x57, 0x1e, 0x82, 0x09, + 0x5d, 0x8f, 0xca, 0xa3, 0xf2, 0xa9, 0x53, 0xcd, 0xef, 0x8c, 0x52, 0x24, + 0x65, 0x0e, 0x6a, 0x5c, 0xd3, 0x15, 0xc5, 0x0a, 0x49, 0xc6, 0x72, 0x4f, + 0x61, 0x53, 0x8b, 0x67, 0x03, 0xe6, 0xc2, 0xfe, 0xa6, 0xa1, 0x49, 0x0c, + 0x6e, 0x19, 0x7a, 0x8f, 0x6a, 0xb4, 0x2f, 0xd4, 0xfd, 0xf8, 0xf9, 0xf5, + 0x15, 0x2f, 0x9a, 0xe3, 0x5b, 0x0b, 0x15, 0x8b, 0xc8, 0x70, 0xa1, 0x8d, + 0x5b, 0x4d, 0x12, 0x46, 0xe5, 0xb0, 0x3e, 0xbc, 0xd2, 0x5b, 0xea, 0xb1, + 0x44, 0x78, 0xc8, 0xfa, 0x8a, 0xbe, 0x9a, 0xe5, 0xb9, 0x1f, 0x31, 0x15, + 0x8c, 0xf9, 0xfa, 0x09, 0xdf, 0xa1, 0x4b, 0xfb, 0x32, 0xdd, 0x5f, 0x61, + 0x7c, 0xb0, 0xea, 0x14, 0x54, 0xab, 0xa5, 0x44, 0x7b, 0x1f, 0xce, 0xac, + 0x1b, 0xed, 0x36, 0x46, 0xdc, 0xc7, 0x0d, 0xea, 0x29, 0xeb, 0x77, 0x63, + 0xda, 0xe1, 0x80, 0xfa, 0xd6, 0x6f, 0x9c, 0x5e, 0xf1, 0x5f, 0xfb, 0x2a, + 0x1e, 0xe3, 0xf5, 0xa3, 0xfb, 0x1e, 0x23, 0xd0, 0x67, 0xf1, 0xab, 0x62, + 0xea, 0xcb, 0xfe, 0x7e, 0x0f, 0xe3, 0x4a, 0x2f, 0x6c, 0xd7, 0xa4, 0xf5, + 0x2d, 0xcf, 0xa0, 0xb5, 0x28, 0xb6, 0x8a, 0x83, 0xf8, 0x5b, 0xf0, 0x39, + 0xa8, 0x3f, 0xb2, 0x61, 0x67, 0xd8, 0xaf, 0xb5, 0xfd, 0x08, 0xad, 0x63, + 0xa8, 0xd9, 0xf7, 0xb8, 0x6a, 0x8f, 0xfb, 0x47, 0x4e, 0x46, 0xdc, 0x08, + 0x2d, 0xea, 0x69, 0xa7, 0x53, 0xb0, 0x6a, 0x65, 0xbe, 0x87, 0x2a, 0x72, + 0xb8, 0x3f, 0x8d, 0x53, 0x92, 0xc6, 0x68, 0xdb, 0x9e, 0x3e, 0xa2, 0xb7, + 0x9f, 0x5c, 0xb5, 0x1f, 0x74, 0xe6, 0xb3, 0xee, 0x35, 0x68, 0x65, 0xea, + 0x09, 0xfd, 0x2b, 0x68, 0x73, 0xf5, 0x43, 0xf7, 0x8c, 0xc9, 0x2d, 0xa5, + 0x8d, 0x37, 0x91, 0xc7, 0xb5, 0x41, 0x96, 0xab, 0xb3, 0x5f, 0xef, 0x42, + 0x8a, 0xa1, 0x56, 0xaa, 0x6f, 0x15, 0xaa, 0x4f, 0xa9, 0x5a, 0x91, 0xe5, + 0xd9, 0xb1, 0x81, 0xcf, 0x73, 0x56, 0x3f, 0xb3, 0xee, 0x8a, 0x6f, 0x10, + 0x87, 0x5f, 0x55, 0x35, 0x09, 0x61, 0x8e, 0x08, 0xfc, 0xeb, 0x5b, 0x41, + 0xd5, 0x63, 0xd3, 0xe7, 0xcd, 0xc1, 0x0d, 0x1f, 0xa6, 0x33, 0x53, 0x52, + 0x4e, 0x31, 0xba, 0x57, 0xf2, 0x29, 0x26, 0xcc, 0xa3, 0x04, 0xab, 0xd6, + 0x19, 0x05, 0x33, 0x0e, 0x3f, 0xbe, 0x3e, 0xa2, 0xbd, 0x10, 0xf8, 0xbf, + 0x41, 0x55, 0xe2, 0x0c, 0x9f, 0xf7, 0x2b, 0x27, 0x56, 0xf1, 0x1e, 0x97, + 0x7d, 0x01, 0x48, 0x2d, 0x95, 0x1b, 0xb3, 0x62, 0xb9, 0xe1, 0x89, 0x94, + 0x9d, 0x9d, 0x36, 0x8a, 0xe4, 0x7d, 0xce, 0x48, 0x4b, 0x20, 0xe9, 0x21, + 0xa9, 0x56, 0xf6, 0xed, 0x3e, 0xed, 0xc3, 0x8f, 0xa3, 0x11, 0x48, 0xcb, + 0x14, 0xac, 0x49, 0x90, 0x7e, 0x1c, 0x53, 0x96, 0x28, 0x07, 0xf1, 0x93, + 0xf8, 0xd7, 0x4b, 0x9a, 0x5b, 0x0f, 0xd9, 0xbe, 0xe3, 0x24, 0xba, 0xb9, + 0x98, 0xe6, 0x49, 0x19, 0xfe, 0xad, 0x9a, 0x8c, 0xb3, 0x9e, 0xc6, 0xad, + 0x8f, 0x20, 0x76, 0x06, 0x9c, 0x25, 0x89, 0x7a, 0x27, 0xe9, 0x4b, 0xda, + 0x37, 0xd0, 0x39, 0x17, 0x59, 0x14, 0xc0, 0x91, 0xba, 0x23, 0x7e, 0x55, + 0x32, 0x5a, 0xce, 0xff, 0x00, 0xc3, 0x8f, 0xad, 0x4f, 0xf6, 0xa0, 0x3a, + 0x2d, 0x21, 0xbc, 0x7e, 0xd8, 0x14, 0x9b, 0xa8, 0xf6, 0x41, 0x6a, 0x4b, + 0x76, 0x2a, 0x58, 0x3f, 0x56, 0x70, 0x29, 0x5e, 0x0b, 0x78, 0x87, 0xcf, + 0x96, 0xa8, 0x8d, 0xcc, 0x8d, 0xfc, 0x55, 0x1b, 0x48, 0xcd, 0xd4, 0x9f, + 0xce, 0x92, 0x85, 0x47, 0xbb, 0x0f, 0x69, 0x4d, 0x6c, 0x89, 0xbe, 0xdb, + 0x1c, 0x43, 0x11, 0xc6, 0x17, 0xdf, 0x15, 0x1b, 0x5d, 0x99, 0x3a, 0xbd, + 0x44, 0x71, 0xdc, 0x53, 0x70, 0x9e, 0x82, 0xb4, 0x8d, 0x28, 0xae, 0x86, + 0x72, 0xad, 0x26, 0x3f, 0x70, 0x3d, 0xc5, 0x28, 0xe7, 0xb8, 0xa8, 0x4f, + 0x96, 0x29, 0x85, 0xd2, 0xb4, 0xb1, 0x99, 0x64, 0x7d, 0x68, 0x27, 0x15, + 0x4c, 0xc9, 0xe9, 0x9a, 0x69, 0x76, 0x3d, 0xcd, 0x01, 0x62, 0xd3, 0x4a, + 0x16, 0xa2, 0x37, 0x0d, 0x9e, 0x05, 0x40, 0x49, 0x3d, 0xe9, 0xcb, 0x49, + 0xc8, 0x7c, 0xb6, 0x27, 0x59, 0x65, 0x6f, 0x4a, 0x90, 0x34, 0x87, 0xb8, + 0xa8, 0x43, 0x62, 0xa5, 0x59, 0x3d, 0xaa, 0x39, 0x98, 0x59, 0x12, 0x00, + 0xff, 0x00, 0xde, 0xab, 0x51, 0x12, 0x13, 0xad, 0x55, 0xf3, 0x05, 0x4f, + 0x11, 0xca, 0xd1, 0x7e, 0xe0, 0xd6, 0x85, 0x79, 0xdd, 0x83, 0xe6, 0x85, + 0x94, 0x91, 0xd6, 0x8b, 0x85, 0xef, 0x55, 0xd5, 0xf6, 0x9a, 0xd6, 0x4b, + 0x4b, 0xa2, 0x52, 0xba, 0x26, 0x66, 0x39, 0xa6, 0x13, 0x4e, 0xfb, 0xc2, + 0xa3, 0x61, 0x8a, 0x4b, 0x51, 0xa1, 0x37, 0x11, 0x48, 0x09, 0x1c, 0x83, + 0x8a, 0x32, 0x69, 0xbc, 0xd2, 0xb1, 0x69, 0x96, 0x63, 0xba, 0x74, 0x3d, + 0x6a, 0xd4, 0x77, 0xb1, 0xbf, 0x0d, 0xc1, 0xac, 0xce, 0x68, 0xcd, 0x27, + 0xae, 0xe0, 0x6d, 0x09, 0x14, 0xf2, 0x8e, 0x2a, 0x55, 0xb9, 0x99, 0x3e, + 0xec, 0x8c, 0x3f, 0x1a, 0xc1, 0x0e, 0xcb, 0xd0, 0x91, 0x52, 0xad, 0xd4, + 0xab, 0xde, 0x97, 0x2f, 0x66, 0x0e, 0x29, 0xee, 0x6f, 0xa6, 0xab, 0x3a, + 0x0c, 0x1d, 0xad, 0xf5, 0xa7, 0x1d, 0x72, 0x55, 0xff, 0x00, 0x96, 0x00, + 0xfd, 0x0d, 0x61, 0xad, 0xe9, 0xfe, 0x25, 0x06, 0xa4, 0x17, 0x51, 0x1e, + 0xa0, 0x8a, 0x77, 0x99, 0x9f, 0xb1, 0x87, 0x63, 0x53, 0xfe, 0x12, 0x29, + 0x47, 0x58, 0x00, 0xa5, 0x1e, 0x24, 0x1d, 0xe2, 0xac, 0xb3, 0x24, 0x4d, + 0xd2, 0x4f, 0xcc, 0x53, 0x4c, 0x48, 0xfd, 0x19, 0x0d, 0x2e, 0x79, 0x75, + 0x43, 0xf6, 0x14, 0xcb, 0xf3, 0xeb, 0xf3, 0xb8, 0xfd, 0xd6, 0xd5, 0xfc, + 0x2b, 0x36, 0x6b, 0xfb, 0xc9, 0xbe, 0xfd, 0xc1, 0xc7, 0xb1, 0xc5, 0x23, + 0x5b, 0x1e, 0xdf, 0xce, 0xa3, 0x36, 0xf2, 0x76, 0x06, 0xa6, 0xfd, 0xcd, + 0x23, 0x4a, 0x0b, 0x64, 0x44, 0x41, 0x27, 0x2c, 0xd9, 0x3f, 0x5a, 0x30, + 0xbe, 0xb4, 0xe3, 0x0c, 0x83, 0xf8, 0x4d, 0x30, 0xa3, 0x0e, 0xa0, 0xd2, + 0xd0, 0xd0, 0x72, 0xb2, 0x83, 0x92, 0x33, 0x53, 0xa3, 0x86, 0x35, 0x53, + 0x04, 0x76, 0x34, 0xa1, 0x88, 0xa7, 0x61, 0x5c, 0xd3, 0x56, 0xa7, 0x66, + 0xb3, 0x56, 0x76, 0x15, 0x28, 0xbb, 0xf5, 0x15, 0x42, 0x2f, 0x66, 0x8c, + 0xd5, 0x41, 0x76, 0xbd, 0xe9, 0xe2, 0xe5, 0x0f, 0x7a, 0x62, 0x2c, 0x66, + 0x8c, 0xd4, 0x3e, 0x7a, 0x1e, 0xf4, 0xbe, 0x6a, 0x9e, 0xe2, 0x8b, 0x81, + 0x36, 0x69, 0x33, 0x51, 0xef, 0x5f, 0x5a, 0x5d, 0xc3, 0xd4, 0x53, 0xb8, + 0x58, 0x93, 0x34, 0x99, 0xa6, 0xe4, 0x7a, 0xd1, 0x9a, 0x2e, 0x03, 0xb3, + 0x46, 0x69, 0xb9, 0xa3, 0x34, 0x5c, 0x56, 0x29, 0x16, 0x8f, 0x3f, 0xeb, + 0x5f, 0xf2, 0xa4, 0xdf, 0x1f, 0xfc, 0xf4, 0x7f, 0xca, 0x99, 0xe4, 0x36, + 0x7e, 0xeb, 0x7e, 0x54, 0x79, 0x0d, 0xfd, 0xd6, 0xfc, 0xa9, 0x0b, 0x98, + 0x7e, 0xe8, 0xbf, 0xe7, 0xa3, 0xd2, 0xee, 0x87, 0xfb, 0xef, 0x51, 0x79, + 0x0d, 0xfd, 0xd6, 0xfc, 0xa8, 0xfb, 0x3b, 0xff, 0x00, 0x75, 0xbf, 0x2a, + 0x03, 0x98, 0x93, 0x74, 0x1f, 0xde, 0x7a, 0x37, 0x5b, 0xff, 0x00, 0xb7, + 0xf9, 0xd4, 0x7e, 0x43, 0x7f, 0x75, 0xbf, 0x2a, 0x3c, 0x87, 0xfe, 0xeb, + 0x7e, 0x54, 0x58, 0x39, 0x89, 0x37, 0x5b, 0x7f, 0x75, 0xbf, 0x3a, 0x37, + 0x5b, 0xff, 0x00, 0xcf, 0x33, 0xf9, 0xd4, 0x7e, 0x43, 0xff, 0x00, 0x74, + 0xfe, 0x54, 0x79, 0x0d, 0xfd, 0xd6, 0xfc, 0xa8, 0xb0, 0x73, 0x12, 0xf9, + 0x90, 0x7f, 0xcf, 0x2f, 0xd6, 0x94, 0x4d, 0x10, 0xe9, 0x0a, 0xfe, 0x75, + 0x17, 0x90, 0xdf, 0xdd, 0x6f, 0xca, 0x8f, 0x21, 0xbf, 0xba, 0xdf, 0x95, + 0x16, 0x0e, 0x62, 0x6f, 0x3d, 0x7b, 0x45, 0x1d, 0x38, 0x5c, 0x91, 0xd1, + 0x23, 0x15, 0x5f, 0xc8, 0x7f, 0xee, 0xb7, 0xe5, 0x47, 0x90, 0xff, 0x00, + 0xdd, 0x6f, 0xca, 0x8b, 0x07, 0x31, 0x63, 0xed, 0x32, 0x1e, 0x9b, 0x05, + 0x27, 0x9d, 0x31, 0xfe, 0x35, 0xa8, 0x3c, 0x87, 0xfe, 0xe3, 0x7e, 0x54, + 0x79, 0x0f, 0xfd, 0xc6, 0xa0, 0x39, 0x91, 0x36, 0xf9, 0x4f, 0xfc, 0xb5, + 0xa6, 0x91, 0x29, 0xfe, 0x32, 0x7f, 0x1a, 0x8f, 0xc8, 0x93, 0xfb, 0xad, + 0x4b, 0xe4, 0x49, 0xfd, 0xd6, 0xa7, 0xaf, 0x70, 0xe6, 0x43, 0x8c, 0x6e, + 0x7b, 0xfe, 0xb4, 0xdf, 0x2d, 0xbd, 0x28, 0xf2, 0x24, 0xfe, 0xeb, 0x53, + 0x84, 0x72, 0x8f, 0xe1, 0x6a, 0x2d, 0xe6, 0x2e, 0x61, 0xbb, 0x1b, 0xd2, + 0x93, 0x63, 0x7a, 0x1a, 0x94, 0x2c, 0xbf, 0xdd, 0x34, 0xb8, 0x9b, 0xfb, + 0x86, 0x8b, 0x07, 0x31, 0x0e, 0xd6, 0xf4, 0xa3, 0x63, 0x7a, 0x1a, 0x9b, + 0x6c, 0xdf, 0xdc, 0xa3, 0x6c, 0xdf, 0xdd, 0xa4, 0x2e, 0x62, 0x1d, 0x8d, + 0xe8, 0x69, 0x76, 0x37, 0xa5, 0x4b, 0xb2, 0x7f, 0x4a, 0x3c, 0xb9, 0xcd, + 0x1a, 0x85, 0xc8, 0xb6, 0x1a, 0x50, 0x94, 0xff, 0x00, 0x26, 0x63, 0xde, + 0x8f, 0xb3, 0x48, 0x7a, 0x9a, 0x7a, 0x80, 0xdc, 0x28, 0xea, 0x69, 0x0c, + 0x80, 0x74, 0xa7, 0xfd, 0x95, 0xbb, 0xd3, 0x85, 0xb5, 0x1a, 0x75, 0x62, + 0xd0, 0x80, 0xb1, 0x6a, 0x74, 0x71, 0x92, 0x7a, 0x55, 0x85, 0x80, 0x0e, + 0xd5, 0x20, 0x5c, 0x76, 0xa7, 0xcf, 0x18, 0xec, 0x17, 0xec, 0x11, 0xa6, + 0x05, 0x2b, 0xd2, 0xf3, 0xe9, 0x48, 0x41, 0xf4, 0xac, 0xa5, 0x2b, 0x82, + 0x44, 0x0c, 0x2a, 0xbb, 0xc7, 0xdc, 0x55, 0xd2, 0x99, 0xa6, 0x98, 0x8d, + 0x4a, 0x76, 0x28, 0xa3, 0x92, 0x29, 0x43, 0xd5, 0xa3, 0x0e, 0x7b, 0x53, + 0x0d, 0xb6, 0x7b, 0x56, 0x8a, 0xa0, 0xac, 0x46, 0x25, 0xc5, 0x38, 0x4b, + 0x47, 0xd9, 0x4f, 0xbd, 0x27, 0xd9, 0x9f, 0xde, 0xab, 0xda, 0x21, 0x72, + 0x8f, 0x12, 0x0a, 0x76, 0xf5, 0xa8, 0xbe, 0xcf, 0x25, 0x27, 0x91, 0x2f, + 0xa5, 0x1c, 0xf1, 0x0e, 0x52, 0x60, 0x47, 0x63, 0x4e, 0xdf, 0xee, 0x2a, + 0xbf, 0x93, 0x2f, 0xa5, 0x1e, 0x5c, 0xc3, 0xf8, 0x68, 0xe6, 0x88, 0x72, + 0x93, 0xe4, 0x1e, 0xc2, 0x8c, 0x2f, 0x71, 0x50, 0xec, 0x9b, 0xfb, 0xa6, + 0x8d, 0xb3, 0x7f, 0x70, 0xd1, 0x78, 0x85, 0x99, 0x36, 0xd5, 0xa4, 0xd8, + 0xbe, 0xb5, 0x1e, 0x26, 0xfe, 0xe1, 0xa3, 0xf7, 0xdf, 0xdc, 0x34, 0xbd, + 0xd1, 0xde, 0x44, 0x9b, 0x17, 0xda, 0x8d, 0x82, 0xa3, 0xcc, 0xbf, 0xf3, + 0xcc, 0xd2, 0xee, 0x97, 0xfe, 0x79, 0x9a, 0x2d, 0x1e, 0xe3, 0xe6, 0x90, + 0xed, 0x94, 0xbb, 0x0f, 0xad, 0x33, 0x74, 0x9f, 0xf3, 0xcc, 0xd1, 0xba, + 0x4f, 0xf9, 0xe6, 0x68, 0xd3, 0xb8, 0x5d, 0xf6, 0x1f, 0xb5, 0xc7, 0x7a, + 0x3e, 0x7f, 0x5f, 0xd2, 0x99, 0xba, 0x4f, 0xf9, 0xe6, 0xdf, 0x95, 0x1b, + 0xa4, 0xfe, 0xe3, 0x7e, 0x54, 0x7c, 0xc2, 0xfe, 0x44, 0x9b, 0x9f, 0xda, + 0x8d, 0xcf, 0xe8, 0x2a, 0x3d, 0xef, 0xfd, 0xc6, 0xfc, 0xa8, 0xde, 0xff, + 0x00, 0xdc, 0x6f, 0xca, 0x8f, 0x98, 0xaf, 0xe4, 0x49, 0xbd, 0xbd, 0x05, + 0x1b, 0xdb, 0xd0, 0x7e, 0x75, 0x1e, 0xf7, 0xfe, 0xe3, 0x7e, 0x54, 0x6f, + 0x7f, 0xee, 0x37, 0xe5, 0x47, 0xcc, 0x34, 0xec, 0x49, 0xbc, 0xff, 0x00, + 0x74, 0x7e, 0x74, 0x6f, 0x3f, 0xdd, 0xfd, 0x6a, 0x3d, 0xef, 0xfd, 0xc6, + 0xfc, 0xa9, 0x77, 0xbf, 0xf7, 0x1b, 0xf2, 0xa3, 0xe6, 0x1a, 0x76, 0x1f, + 0xbc, 0xff, 0x00, 0x77, 0xf5, 0xa4, 0xde, 0x7f, 0xbb, 0xfa, 0xd3, 0x77, + 0xb7, 0xf7, 0x1b, 0xf2, 0xa3, 0x7b, 0x7f, 0x71, 0xbf, 0x2a, 0x3e, 0x61, + 0xa7, 0x61, 0xfb, 0xbf, 0xd9, 0xa3, 0x7f, 0xfb, 0x26, 0x99, 0xe6, 0x37, + 0xf7, 0x1b, 0xf2, 0xa3, 0x7b, 0x7f, 0x71, 0xbf, 0x2a, 0x3e, 0x61, 0xa7, + 0x61, 0xfb, 0xff, 0x00, 0xd9, 0xa3, 0x7f, 0xfb, 0x26, 0x99, 0xbd, 0xbf, + 0xe7, 0x9b, 0x7e, 0x54, 0x9b, 0xdb, 0xfe, 0x79, 0xb7, 0xe5, 0x47, 0xcc, + 0x34, 0xec, 0x49, 0xbf, 0xfd, 0x9a, 0x5d, 0xff, 0x00, 0xec, 0x9a, 0x8b, + 0x7b, 0x7f, 0x71, 0xbf, 0x2a, 0x37, 0x37, 0xf7, 0x1b, 0xf2, 0xa0, 0x2e, + 0xbb, 0x12, 0xef, 0xff, 0x00, 0x66, 0x93, 0xcc, 0xff, 0x00, 0x66, 0x99, + 0xbd, 0xbf, 0xb8, 0xdf, 0x95, 0x1b, 0xdb, 0xfb, 0x8d, 0xf9, 0x50, 0x1a, + 0x76, 0x1f, 0xbf, 0xfd, 0x9f, 0xd6, 0x93, 0x24, 0xff, 0x00, 0x0f, 0xeb, + 0x4d, 0xde, 0xdf, 0xdc, 0x6f, 0xca, 0x8d, 0xef, 0xfd, 0xc6, 0xfc, 0xa8, + 0xf9, 0x86, 0x9d, 0x85, 0xeb, 0xdb, 0xf5, 0xa6, 0xed, 0xf6, 0xfd, 0x69, + 0x77, 0xbf, 0xf7, 0x1b, 0xf2, 0xa3, 0x7b, 0xff, 0x00, 0xcf, 0x36, 0xfc, + 0xa9, 0xdf, 0xcc, 0x34, 0xec, 0x37, 0x67, 0xb0, 0xfc, 0xe8, 0xd9, 0xed, + 0x4e, 0xde, 0xff, 0x00, 0xf3, 0xcd, 0xbf, 0x2a, 0x37, 0xc9, 0xff, 0x00, + 0x3c, 0xdb, 0xf2, 0xa5, 0xf3, 0x0f, 0x90, 0xdf, 0x2c, 0xd2, 0x79, 0x46, + 0x9f, 0xba, 0x4f, 0xf9, 0xe6, 0xdf, 0x95, 0x1b, 0xa4, 0xff, 0x00, 0x9e, + 0x4d, 0xf9, 0x51, 0xf3, 0x0b, 0xf9, 0x0c, 0xf2, 0x5a, 0x97, 0xc9, 0x6f, + 0x5a, 0x76, 0x65, 0xff, 0x00, 0x9e, 0x4d, 0xf9, 0x51, 0x99, 0xbf, 0xe7, + 0x93, 0x7e, 0x54, 0x69, 0xdc, 0x35, 0xec, 0x37, 0xcb, 0x90, 0x77, 0xa7, + 0x04, 0x93, 0xfb, 0xf4, 0x9f, 0xbf, 0xff, 0x00, 0x9e, 0x4d, 0xf9, 0x52, + 0xe2, 0x7f, 0xf9, 0xe4, 0xdf, 0x95, 0x17, 0x5d, 0xc3, 0x5e, 0xc3, 0x82, + 0xb7, 0x77, 0x14, 0xb8, 0xf7, 0xa6, 0x62, 0x7f, 0xf9, 0xe4, 0xdf, 0x95, + 0x1b, 0x67, 0xff, 0x00, 0x9e, 0x4d, 0xf9, 0x53, 0xba, 0xee, 0x2b, 0x32, + 0x4e, 0x3d, 0x69, 0x38, 0xa8, 0xca, 0x5c, 0x7f, 0xcf, 0x26, 0xa4, 0xf2, + 0xee, 0x3f, 0xe7, 0x9b, 0x7e, 0x54, 0x73, 0x47, 0xb8, 0xb9, 0x59, 0x21, + 0xc5, 0x37, 0x62, 0x9a, 0x4f, 0x2a, 0xe3, 0xfe, 0x79, 0x9f, 0xca, 0x93, + 0xca, 0xb9, 0xfe, 0xe1, 0xfc, 0xa8, 0xe7, 0x8f, 0x71, 0xf2, 0xb1, 0x7c, + 0xb5, 0xa4, 0x31, 0x25, 0x1e, 0x45, 0xc1, 0xfe, 0x03, 0xf9, 0x51, 0xf6, + 0x69, 0xcf, 0xf0, 0x9f, 0xca, 0x8e, 0x78, 0xf7, 0x0e, 0x56, 0x30, 0xc6, + 0x9e, 0xb4, 0x9b, 0x12, 0xa4, 0xfb, 0x24, 0xff, 0x00, 0xdd, 0x3f, 0x95, + 0x1f, 0x63, 0x9b, 0xd1, 0xbf, 0x2a, 0x5c, 0xf1, 0x1d, 0x99, 0x09, 0x54, + 0xa4, 0xc8, 0x15, 0x60, 0x59, 0x49, 0xdd, 0x5b, 0xf2, 0xa7, 0x0b, 0x26, + 0xfe, 0xeb, 0x7e, 0x54, 0x9d, 0x48, 0x8e, 0xc5, 0x5d, 0xc6, 0xa4, 0x4d, + 0xc6, 0xac, 0x8b, 0x56, 0x1f, 0xc0, 0x7f, 0x2a, 0x78, 0x81, 0x87, 0xf0, + 0x1f, 0xca, 0xa1, 0xcc, 0x2c, 0x42, 0xab, 0x56, 0x23, 0xe0, 0x50, 0x22, + 0x71, 0xfc, 0x2d, 0xf9, 0x53, 0xb6, 0x3f, 0xf7, 0x5b, 0xf2, 0xa9, 0xb8, + 0x9a, 0x19, 0x22, 0xee, 0x15, 0x51, 0xe2, 0x20, 0xf4, 0xab, 0xfb, 0x1b, + 0xfb, 0xad, 0xf9, 0x52, 0x18, 0x98, 0xff, 0x00, 0x03, 0x7e, 0x55, 0xb4, + 0x6a, 0x25, 0xa3, 0x25, 0x5d, 0x19, 0xc0, 0xb2, 0xd3, 0x84, 0x83, 0xbd, + 0x5b, 0x36, 0xc4, 0xff, 0x00, 0x0b, 0x7e, 0x54, 0xc3, 0x66, 0xc7, 0xf8, + 0x5b, 0xf2, 0xa7, 0xee, 0x3d, 0x99, 0x44, 0x39, 0x07, 0xd2, 0x93, 0x68, + 0x3d, 0xea, 0x53, 0x64, 0xfd, 0x81, 0xfc, 0xa9, 0x3e, 0xc7, 0x28, 0xe8, + 0x0f, 0xe5, 0x45, 0xfc, 0xc5, 0x62, 0x2d, 0x94, 0x9b, 0x6a, 0x6f, 0xb2, + 0xcf, 0xe8, 0x7f, 0x2a, 0x3e, 0xcd, 0x3f, 0xf7, 0x4f, 0xe5, 0x45, 0xc0, + 0x83, 0x6d, 0x18, 0xa9, 0xbe, 0xcf, 0x3f, 0xf7, 0x0f, 0xe5, 0x47, 0x91, + 0x3f, 0xfc, 0xf3, 0x3f, 0x95, 0x17, 0x1e, 0xa4, 0x18, 0x34, 0x60, 0xd4, + 0xfe, 0x44, 0xdf, 0xf3, 0xc8, 0xd1, 0xe4, 0xcd, 0xff, 0x00, 0x3c, 0x8d, + 0x17, 0x43, 0xbb, 0x20, 0xe6, 0x8e, 0x6a, 0x6f, 0x22, 0x5f, 0xf9, 0xe4, + 0xd4, 0x79, 0x32, 0xff, 0x00, 0xcf, 0x26, 0xa2, 0xe8, 0x2e, 0xc8, 0xf7, + 0x30, 0xe8, 0x4d, 0x2f, 0x9b, 0x20, 0xfe, 0x23, 0x4f, 0xf2, 0x24, 0xff, + 0x00, 0x9e, 0x4d, 0xf9, 0x51, 0xe4, 0x3f, 0xfc, 0xf2, 0x7f, 0xca, 0x8b, + 0x85, 0xc4, 0x17, 0x12, 0x8f, 0xe2, 0xa5, 0xfb, 0x54, 0xbd, 0xc8, 0x3f, + 0x85, 0x1e, 0x4b, 0xff, 0x00, 0xcf, 0x37, 0xfc, 0xa8, 0xf2, 0x5f, 0xfe, + 0x79, 0xbf, 0xe5, 0x46, 0x81, 0x71, 0x7e, 0xd2, 0xdd, 0xd5, 0x4f, 0xe1, + 0x49, 0xe7, 0x8e, 0xf1, 0x27, 0xe5, 0x47, 0x92, 0xff, 0x00, 0xdc, 0x7f, + 0xca, 0x8f, 0x25, 0xbf, 0xb8, 0xff, 0x00, 0x95, 0x2d, 0x03, 0x99, 0x87, + 0x9c, 0x87, 0xac, 0x2b, 0x49, 0xbe, 0x23, 0xd6, 0x2f, 0xd6, 0x8f, 0x25, + 0xbf, 0xb8, 0xdf, 0x95, 0x2f, 0x94, 0x7f, 0xb8, 0xdf, 0x95, 0x16, 0x43, + 0xe6, 0x62, 0x66, 0x1f, 0xf9, 0xe6, 0x7f, 0x3a, 0x4c, 0xc1, 0xff, 0x00, + 0x3c, 0xdb, 0xf3, 0xa7, 0x79, 0x47, 0xfb, 0x8d, 0xf9, 0x51, 0xe5, 0xff, + 0x00, 0xb0, 0xdf, 0x95, 0x16, 0x41, 0xcc, 0x27, 0xee, 0x3f, 0xba, 0xdf, + 0x9d, 0x18, 0x87, 0xd1, 0xe9, 0xde, 0x59, 0xfe, 0xe3, 0x7e, 0x54, 0x9b, + 0x0f, 0xf7, 0x5b, 0xf2, 0xa0, 0x39, 0x84, 0xc4, 0x5e, 0xaf, 0x46, 0x23, + 0xfe, 0xf3, 0xfe, 0x54, 0xbe, 0x5b, 0x7f, 0x75, 0xbf, 0x2a, 0x4f, 0x29, + 0xbd, 0x1b, 0xf2, 0xa0, 0x39, 0x85, 0xfd, 0xdf, 0xf7, 0xdf, 0xf2, 0xa3, + 0x31, 0xff, 0x00, 0xcf, 0x47, 0xfc, 0xa9, 0xbe, 0x4b, 0x7a, 0x37, 0xe5, + 0x49, 0xe4, 0xb7, 0xa3, 0x7e, 0x54, 0x07, 0x30, 0xfd, 0xd1, 0xff, 0x00, + 0xcf, 0x57, 0xfc, 0xa8, 0xdd, 0x1e, 0x7f, 0xd6, 0xbf, 0xe5, 0x51, 0xf9, + 0x0d, 0xe8, 0xdf, 0x95, 0x02, 0x06, 0xcf, 0xdd, 0x6f, 0xca, 0x80, 0xe6, + 0x3f, 0xff, 0xd9 +}; +unsigned int chromatic_jpg_len = 39351; diff --git a/lib/lv_gltf/view/sup/include/ibl_sampler.h b/lib/lv_gltf/view/sup/include/ibl_sampler.h new file mode 100644 index 0000000..73c7970 --- /dev/null +++ b/lib/lv_gltf/view/sup/include/ibl_sampler.h @@ -0,0 +1,94 @@ +#ifndef IBL_SAMPLER_H +#define IBL_SAMPLER_H + +#ifndef VERBOSITY_MIN + #define VERBOSITY_MIN 1 + #define VERBOSITY_MED 2 + #define VERBOSITY_MAX 3 +#endif +#define IBL_SAMPLER_VERBOSITY VERBOSITY_MAX + + +#include "../../../../lv_opengl_shader_cache/lv_opengl_shader_cache.h" + +#include + +#ifdef __cplusplus +class iblSampler +{ + uint32_t textureSize; + uint32_t ggxSampleCount; + uint32_t lambertianSampleCount; + uint32_t sheenSamplCount; + uint32_t lutSampleCount; + + float lodBias; + uint32_t lowestMipLevel; + uint32_t lutResolution; + + uint32_t inputTextureID; + uint32_t cubemapTextureID; + uint32_t framebuffer; + uint32_t mipmapCount; + + lv_opengl_shader_cache_t _shaderCache; + lv_opengl_shader_cache_t * shaderCache; + + struct t_texture { + uint32_t internalFormat; + uint32_t format; + uint32_t type; + uint8_t * data; + }; + + struct t_image { + uint32_t width; + uint32_t height; + float * dataFloat; + uint64_t dataFloatLength; + }; + + uint32_t internalFormat(void); + uint32_t textureTargetType(void); + t_texture prepareTextureData(t_image * image); + uint32_t loadTextureHDR(t_image * image); + uint32_t createCubemapTexture(bool withMipmaps); + uint32_t createLutTexture(void); + void panoramaToCubeMap(void); + void applyFilter(uint32_t distribution, float roughness, uint32_t targetMipLevel, uint32_t targetTexture, + uint32_t sampleCount, float lodBias, const char * _strProgress, float _baseProgress); + void cubeMapToLambertian(void); + void cubeMapToGGX(void); + void cubeMapToSheen(void); + void sampleLut(uint32_t distribution, uint32_t targetTexture, uint32_t currentTextureSize); + void sampleGGXLut(void); + void sampleCharlieLut(void); + + public: + + uint32_t lambertianTextureID; + uint32_t ggxTextureID; + uint32_t sheenTextureID; + uint32_t ggxLutTextureID; + uint32_t charlieLutTextureID; + float scaleValue; + uint32_t mipmapLevels; + iblSampler(void); + void doinit(const char * env_filename); + void filterAll(void (*callback)(const char *, float, float)); + void destroy_iblSampler(void); +}; + +extern "C" { +#endif + +void lv_gltf_view_ibl_set_loadphase_callback(void (*_load_progress_callback)(const char *, const char *, float, float, + float, float)); +gl_environment_textures lv_gltf_view_ibl_sampler_setup(gl_environment_textures * _lastEnv, const char * _env_filename, + int _env_rotation_degreesX10); + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*IBL_SAMPLER_H*/ diff --git a/lib/lv_gltf/view/sup/include/shader_includes.h b/lib/lv_gltf/view/sup/include/shader_includes.h new file mode 100644 index 0000000..b33d027 --- /dev/null +++ b/lib/lv_gltf/view/sup/include/shader_includes.h @@ -0,0 +1,3452 @@ +#ifndef GL_SHADERINCLUDES_H +#define GL_SHADERINCLUDES_H + +#ifdef __cplusplus +extern "C" { +#endif +#include +#include +#include + +#ifndef LV_SHADER_CACHE_KEYVAL +#define LV_SHADER_CACHE_KEYVAL +typedef struct { + const char * key; + const char * value; +} lv_shader_key_value_t; +#endif /* LV_SHADER_CACHE_KEYVAL */ + +bool shader_fragment_is_overridden(void); +const char * get_shader_fragment_override(void); +bool shader_vertex_is_overridden(void); +const char * get_shader_vertex_override(void); +void lv_gltf_view_shader_fragment_override(const char * override_fragment_code); +void lv_gltf_view_shader_vertex_override(const char * override_vertex_code); + +char * process_includes(const char * src, const char * _defines); +char * process_defines(const lv_shader_key_value_t * __define_set, size_t _num_items); +char * get_defines_str(void); +lv_shader_key_value_t * all_defines(void); +uint32_t all_defines_count(void); + +size_t lineCount(const char * str); +void addDefine(const char * defsymbol, const char * defvalue_or_null); +void clearDefines(void); +char * getDefineId(void); + +#define _STRINGIFY(x) #x +#define GLSL_VERSION_PREFIX _STRINGIFY(#version 300 es) + +char * PREPROCESS(const char * x); + +static lv_shader_key_value_t src_includes[] = { + { + "tonemapping.glsl", R"( + + uniform float u_Exposure; + + + const float STANDARD_GAMMA = 2.2; + const float GAMMA = STANDARD_GAMMA; + const float INV_GAMMA = 1.0 / GAMMA; + + + // sRGB => XYZ => D65_2_D60 => AP1 => RRT_SAT + const mat3 ACESInputMat = mat3 + ( + 0.59719, 0.07600, 0.02840, + 0.35458, 0.90834, 0.13383, + 0.04823, 0.01566, 0.83777 + ); + + + // ODT_SAT => XYZ => D60_2_D65 => sRGB + const mat3 ACESOutputMat = mat3 + ( + 1.60475, -0.10208, -0.00327, + -0.53108, 1.10813, -0.07276, + -0.07367, -0.00605, 1.07602 + ); + + + // linear to sRGB approximation + // see http://chilliant.blogspot.com/2012/08/srgb-approximations-for-hlsl.html + vec3 linearTosRGB(vec3 color) + { + return pow(color, vec3(INV_GAMMA)); + } + + + // sRGB to linear approximation + // see http://chilliant.blogspot.com/2012/08/srgb-approximations-for-hlsl.html + vec3 sRGBToLinear(vec3 srgbIn) + { + return vec3(pow(srgbIn.xyz, vec3(GAMMA))); + } + + + vec4 sRGBToLinear(vec4 srgbIn) + { + return vec4(sRGBToLinear(srgbIn.xyz), srgbIn.w); + } + + + // ACES tone map (faster approximation) + // see: https://knarkowicz.wordpress.com/2016/01/06/aces-filmic-tone-mapping-curve/ + vec3 toneMapACES_Narkowicz(vec3 color) + { + const float A = 2.51; + const float B = 0.03; + const float C = 2.43; + const float D = 0.59; + const float E = 0.14; + return clamp((color * (A * color + B)) / (color * (C * color + D) + E), 0.0, 1.0); + } + + + // ACES filmic tone map approximation + // see https://github.com/TheRealMJP/BakingLab/blob/master/BakingLab/ACES.hlsl + vec3 RRTAndODTFit(vec3 color) + { + vec3 a = color * (color + 0.0245786) - 0.000090537; + vec3 b = color * (0.983729 * color + 0.4329510) + 0.238081; + return a / b; + } + + + // tone mapping + vec3 toneMapACES_Hill(vec3 color) + { + color = ACESInputMat * color; + + // Apply RRT and ODT + color = RRTAndODTFit(color); + + color = ACESOutputMat * color; + + // Clamp to [0, 1] + color = clamp(color, 0.0, 1.0); + + return color; + } + + // Khronos PBR neutral tone mapping + #ifdef TONEMAP_KHR_PBR_NEUTRAL + vec3 toneMap_KhronosPbrNeutral( vec3 color ) + { + const float startCompression = 0.8 - 0.04; + const float desaturation = 0.15; + + float x = min(color.r, min(color.g, color.b)); + float offset = x < 0.08 ? x - 6.25 * x * x : 0.04; + color -= offset; + + float peak = max(color.r, max(color.g, color.b)); + if (peak < startCompression) return color; + + const float d = 1. - startCompression; + float newPeak = 1. - d * d / (peak + d - startCompression); + color *= newPeak / peak; + + float g = 1. - 1. / (desaturation * (peak - newPeak) + 1.); + return mix(color, newPeak * vec3(1, 1, 1), g); + } + #endif + + vec3 toneMap(vec3 color) + { + color *= u_Exposure; + + #ifdef TONEMAP_ACES_NARKOWICZ + color = toneMapACES_Narkowicz(color); + #endif + + #ifdef TONEMAP_ACES_HILL + color = toneMapACES_Hill(color); + #endif + + #ifdef TONEMAP_ACES_HILL_EXPOSURE_BOOST + // boost exposure as discussed in https://github.com/mrdoob/three.js/pull/19621 + // this factor is based on the exposure correction of Krzysztof Narkowicz in his + // implemetation of ACES tone mapping + color /= 0.6; + color = toneMapACES_Hill(color); + #endif + + #ifdef TONEMAP_KHR_PBR_NEUTRAL + color = toneMap_KhronosPbrNeutral(color); + #endif + + return linearTosRGB(color); + } + + )" + }, + { + "textures1.glsl", R"( + + // IBL + + uniform int u_MipCount; + uniform samplerCube u_LambertianEnvSampler; + uniform samplerCube u_GGXEnvSampler; + uniform sampler2D u_GGXLUT; + uniform samplerCube u_CharlieEnvSampler; + uniform sampler2D u_CharlieLUT; + uniform sampler2D u_SheenELUT; + uniform mat3 u_EnvRotation; + + + // General Material + + + uniform sampler2D u_NormalSampler; + uniform float u_NormalScale; + uniform int u_NormalUVSet; + uniform mat3 u_NormalUVTransform; + + uniform vec3 u_EmissiveFactor; + uniform sampler2D u_EmissiveSampler; + uniform int u_EmissiveUVSet; + uniform mat3 u_EmissiveUVTransform; + + uniform sampler2D u_OcclusionSampler; + uniform int u_OcclusionUVSet; + uniform float u_OcclusionStrength; + uniform mat3 u_OcclusionUVTransform; + + + in vec2 v_texcoord_0; + in vec2 v_texcoord_1; + + + vec2 getNormalUV() + { + vec3 uv = vec3(u_NormalUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + + #ifdef HAS_NORMAL_UV_TRANSFORM + uv = u_NormalUVTransform * uv; + #endif + + return uv.xy; + } + + + vec2 getEmissiveUV() + { + vec3 uv = vec3(u_EmissiveUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + + #ifdef HAS_EMISSIVE_UV_TRANSFORM + uv = u_EmissiveUVTransform * uv; + #endif + + return uv.xy; + } + + + vec2 getOcclusionUV() + { + vec3 uv = vec3(u_OcclusionUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + + #ifdef HAS_OCCLUSION_UV_TRANSFORM + uv = u_OcclusionUVTransform * uv; + #endif + + return uv.xy; + } + + + // MK TEMP - Added special optimized handling for unlit materials + #ifdef MATERIAL_UNLIT + uniform sampler2D u_BaseColorSampler; + uniform int u_BaseColorUVSet; + uniform mat3 u_BaseColorUVTransform; + + vec2 getBaseColorUV() + { + vec3 uv = vec3(u_BaseColorUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + + #ifdef HAS_BASECOLOR_UV_TRANSFORM + uv = u_BaseColorUVTransform * uv; + #endif + + return uv.xy; + } + #else + // Metallic Roughness Material + #ifdef MATERIAL_METALLICROUGHNESS + + uniform sampler2D u_BaseColorSampler; + uniform int u_BaseColorUVSet; + uniform mat3 u_BaseColorUVTransform; + + uniform sampler2D u_MetallicRoughnessSampler; + uniform int u_MetallicRoughnessUVSet; + uniform mat3 u_MetallicRoughnessUVTransform; + + vec2 getBaseColorUV() + { + vec3 uv = vec3(u_BaseColorUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + + #ifdef HAS_BASECOLOR_UV_TRANSFORM + uv = u_BaseColorUVTransform * uv; + #endif + + return uv.xy; + } + + vec2 getMetallicRoughnessUV() + { + vec3 uv = vec3(u_MetallicRoughnessUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + + #ifdef HAS_METALLICROUGHNESS_UV_TRANSFORM + uv = u_MetallicRoughnessUVTransform * uv; + #endif + + return uv.xy; + } + + #endif + #endif + + )" + }, + { + "textures2.glsl", R"( + // Specular Glossiness Material + + + #ifdef MATERIAL_SPECULARGLOSSINESS + + uniform sampler2D u_DiffuseSampler; + uniform int u_DiffuseUVSet; + uniform mat3 u_DiffuseUVTransform; + + uniform sampler2D u_SpecularGlossinessSampler; + uniform int u_SpecularGlossinessUVSet; + uniform mat3 u_SpecularGlossinessUVTransform; + + + vec2 getSpecularGlossinessUV() + { + vec3 uv = vec3(u_SpecularGlossinessUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + + #ifdef HAS_SPECULARGLOSSINESS_UV_TRANSFORM + uv = u_SpecularGlossinessUVTransform * uv; + #endif + + return uv.xy; + } + + vec2 getDiffuseUV() + { + vec3 uv = vec3(u_DiffuseUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + + #ifdef HAS_DIFFUSE_UV_TRANSFORM + uv = u_DiffuseUVTransform * uv; + #endif + + return uv.xy; + } + + #endif + + + // Clearcoat Material + + + #ifdef MATERIAL_CLEARCOAT + + uniform sampler2D u_ClearcoatSampler; + uniform int u_ClearcoatUVSet; + uniform mat3 u_ClearcoatUVTransform; + + uniform sampler2D u_ClearcoatRoughnessSampler; + uniform int u_ClearcoatRoughnessUVSet; + uniform mat3 u_ClearcoatRoughnessUVTransform; + + uniform sampler2D u_ClearcoatNormalSampler; + uniform int u_ClearcoatNormalUVSet; + uniform mat3 u_ClearcoatNormalUVTransform; + uniform float u_ClearcoatNormalScale; + + + vec2 getClearcoatUV() + { + vec3 uv = vec3(u_ClearcoatUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_CLEARCOAT_UV_TRANSFORM + uv = u_ClearcoatUVTransform * uv; + #endif + return uv.xy; + } + + vec2 getClearcoatRoughnessUV() + { + vec3 uv = vec3(u_ClearcoatRoughnessUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_CLEARCOATROUGHNESS_UV_TRANSFORM + uv = u_ClearcoatRoughnessUVTransform * uv; + #endif + return uv.xy; + } + + vec2 getClearcoatNormalUV() + { + vec3 uv = vec3(u_ClearcoatNormalUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_CLEARCOATNORMAL_UV_TRANSFORM + uv = u_ClearcoatNormalUVTransform * uv; + #endif + return uv.xy; + } + + #endif + + + // Sheen Material + + + #ifdef MATERIAL_SHEEN + + uniform sampler2D u_SheenColorSampler; + uniform int u_SheenColorUVSet; + uniform mat3 u_SheenColorUVTransform; + uniform sampler2D u_SheenRoughnessSampler; + uniform int u_SheenRoughnessUVSet; + uniform mat3 u_SheenRoughnessUVTransform; + + )" + }, + { + "textures3.glsl", R"( + vec2 getSheenColorUV() + { + vec3 uv = vec3(u_SheenColorUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_SHEENCOLOR_UV_TRANSFORM + uv = u_SheenColorUVTransform * uv; + #endif + return uv.xy; + } + + vec2 getSheenRoughnessUV() + { + vec3 uv = vec3(u_SheenRoughnessUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_SHEENROUGHNESS_UV_TRANSFORM + uv = u_SheenRoughnessUVTransform * uv; + #endif + return uv.xy; + } + + #endif + + + // Specular Material + + + #ifdef MATERIAL_SPECULAR + + uniform sampler2D u_SpecularSampler; + uniform int u_SpecularUVSet; + uniform mat3 u_SpecularUVTransform; + uniform sampler2D u_SpecularColorSampler; + uniform int u_SpecularColorUVSet; + uniform mat3 u_SpecularColorUVTransform; + + + vec2 getSpecularUV() + { + vec3 uv = vec3(u_SpecularUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_SPECULAR_UV_TRANSFORM + uv = u_SpecularUVTransform * uv; + #endif + return uv.xy; + } + + vec2 getSpecularColorUV() + { + vec3 uv = vec3(u_SpecularColorUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_SPECULARCOLOR_UV_TRANSFORM + uv = u_SpecularColorUVTransform * uv; + #endif + return uv.xy; + } + + #endif + + + // Transmission Material + + + #ifdef MATERIAL_TRANSMISSION + + uniform sampler2D u_TransmissionSampler; + uniform int u_TransmissionUVSet; + uniform mat3 u_TransmissionUVTransform; + uniform sampler2D u_TransmissionFramebufferSampler; + uniform ivec2 u_TransmissionFramebufferSize; + + + vec2 getTransmissionUV() + { + vec3 uv = vec3(u_TransmissionUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_TRANSMISSION_UV_TRANSFORM + uv = u_TransmissionUVTransform * uv; + #endif + return uv.xy; + } + + #endif + + + // Volume Material + + + #ifdef MATERIAL_VOLUME + + uniform sampler2D u_ThicknessSampler; + uniform int u_ThicknessUVSet; + uniform mat3 u_ThicknessUVTransform; + + + )" + }, + { + "textures4.glsl", R"( + vec2 getThicknessUV() + { + vec3 uv = vec3(u_ThicknessUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_THICKNESS_UV_TRANSFORM + uv = u_ThicknessUVTransform * uv; + #endif + return uv.xy; + } + + #endif + + + // Iridescence + + + #ifdef MATERIAL_IRIDESCENCE + + uniform sampler2D u_IridescenceSampler; + uniform int u_IridescenceUVSet; + uniform mat3 u_IridescenceUVTransform; + + uniform sampler2D u_IridescenceThicknessSampler; + uniform int u_IridescenceThicknessUVSet; + uniform mat3 u_IridescenceThicknessUVTransform; + + + vec2 getIridescenceUV() + { + vec3 uv = vec3(u_IridescenceUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_IRIDESCENCE_UV_TRANSFORM + uv = u_IridescenceUVTransform * uv; + #endif + return uv.xy; + } + + vec2 getIridescenceThicknessUV() + { + vec3 uv = vec3(u_IridescenceThicknessUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_IRIDESCENCETHICKNESS_UV_TRANSFORM + uv = u_IridescenceThicknessUVTransform * uv; + #endif + return uv.xy; + } + + #endif + + + // Diffuse Transmission + + #ifdef MATERIAL_DIFFUSE_TRANSMISSION + + uniform sampler2D u_DiffuseTransmissionSampler; + uniform int u_DiffuseTransmissionUVSet; + uniform mat3 u_DiffuseTransmissionUVTransform; + + uniform sampler2D u_DiffuseTransmissionColorSampler; + uniform int u_DiffuseTransmissionColorUVSet; + uniform mat3 u_DiffuseTransmissionColorUVTransform; + + + vec2 getDiffuseTransmissionUV() + { + vec3 uv = vec3(u_DiffuseTransmissionUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_DIFFUSETRANSMISSION_UV_TRANSFORM + uv = u_DiffuseTransmissionUVTransform * uv; + #endif + return uv.xy; + } + + vec2 getDiffuseTransmissionColorUV() + { + vec3 uv = vec3(u_DiffuseTransmissionColorUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_DIFFUSETRANSMISSIONCOLOR_UV_TRANSFORM + uv = u_DiffuseTransmissionColorUVTransform * uv; + #endif + return uv.xy; + } + + #endif + + // Anisotropy + + #ifdef MATERIAL_ANISOTROPY + + uniform sampler2D u_AnisotropySampler; + uniform int u_AnisotropyUVSet; + uniform mat3 u_AnisotropyUVTransform; + + vec2 getAnisotropyUV() + { + vec3 uv = vec3(u_AnisotropyUVSet < 1 ? v_texcoord_0 : v_texcoord_1, 1.0); + #ifdef HAS_ANISOTROPY_UV_TRANSFORM + uv = u_AnisotropyUVTransform * uv; + #endif + return uv.xy; + } + + #endif + + )" + }, + { + "functions.glsl", R"( + + const float M_PI = 3.141592653589793; + + + in vec3 v_Position; + + + #ifdef HAS_NORMAL_VEC3 + #ifdef HAS_TANGENT_VEC4 + in mat3 v_TBN; + #else + in vec3 v_Normal; + #endif + #endif + + + #ifdef HAS_COLOR_0_VEC3 + in vec3 v_Color; + #endif + #ifdef HAS_COLOR_0_VEC4 + in vec4 v_Color; + #endif + + + vec4 getVertexColor() + { + vec4 color = vec4(1.0); + + #ifdef HAS_COLOR_0_VEC3 + color.rgb = v_Color.rgb; + #endif + #ifdef HAS_COLOR_0_VEC4 + color = v_Color; + #endif + + return color; + } + + + struct NormalInfo { + vec3 ng; // Geometry normal + vec3 t; // Geometry tangent + vec3 b; // Geometry bitangent + vec3 n; // Shading normal + vec3 ntex; // Normal from texture, scaling is accounted for. + }; + + + float clampedDot(vec3 x, vec3 y) + { + return clamp(dot(x, y), 0.0, 1.0); + } + + + float max3(vec3 v) + { + return max(max(v.x, v.y), v.z); + } + + + float sq(float t) + { + return t * t; + } + + vec2 sq(vec2 t) + { + return t * t; + } + + vec3 sq(vec3 t) + { + return t * t; + } + + vec4 sq(vec4 t) + { + return t * t; + } + + + float applyIorToRoughness(float roughness, float ior) + { + // Scale roughness with IOR so that an IOR of 1.0 results in no microfacet refraction and + // an IOR of 1.5 results in the default amount of microfacet refraction. + return roughness * clamp(ior * 2.0 - 2.0, 0.0, 1.0); + } + + vec3 rgb_mix(vec3 base, vec3 layer, vec3 rgb_alpha) + { + float rgb_alpha_max = max(rgb_alpha.r, max(rgb_alpha.g, rgb_alpha.b)); + return (1.0 - rgb_alpha_max) * base + rgb_alpha * layer; + } + + + )" + }, + { + "brdf1.glsl", R"( + // + // Fresnel + // + // http://graphicrants.blogspot.com/2013/08/specular-brdf-reference.html + // https://github.com/wdas/brdf/tree/master/src/brdfs + // https://google.github.io/filament/Filament.md.html + // + + // The following equation models the Fresnel reflectance term of the spec equation (aka F()) + // Implementation of fresnel from [4], Equation 15 + vec3 F_Schlick(vec3 f0, vec3 f90, float VdotH) + { + return f0 + (f90 - f0) * pow(clamp(1.0 - VdotH, 0.0, 1.0), 5.0); + } + + float F_Schlick(float f0, float f90, float VdotH) + { + float x = clamp(1.0 - VdotH, 0.0, 1.0); + float x2 = x * x; + float x5 = x * x2 * x2; + return f0 + (f90 - f0) * x5; + } + + float F_Schlick(float f0, float VdotH) + { + float f90 = 1.0; //clamp(50.0 * f0, 0.0, 1.0); + return F_Schlick(f0, f90, VdotH); + } + + vec3 F_Schlick(vec3 f0, float f90, float VdotH) + { + float x = clamp(1.0 - VdotH, 0.0, 1.0); + float x2 = x * x; + float x5 = x * x2 * x2; + return f0 + (f90 - f0) * x5; + } + + vec3 F_Schlick(vec3 f0, float VdotH) + { + float f90 = 1.0; //clamp(dot(f0, vec3(50.0 * 0.33)), 0.0, 1.0); + return F_Schlick(f0, f90, VdotH); + } + + vec3 Schlick_to_F0(vec3 f, vec3 f90, float VdotH) { + float x = clamp(1.0 - VdotH, 0.0, 1.0); + float x2 = x * x; + float x5 = clamp(x * x2 * x2, 0.0, 0.9999); + + return (f - f90 * x5) / (1.0 - x5); + } + + float Schlick_to_F0(float f, float f90, float VdotH) { + float x = clamp(1.0 - VdotH, 0.0, 1.0); + float x2 = x * x; + float x5 = clamp(x * x2 * x2, 0.0, 0.9999); + + return (f - f90 * x5) / (1.0 - x5); + } + + vec3 Schlick_to_F0(vec3 f, float VdotH) { + return Schlick_to_F0(f, vec3(1.0), VdotH); + } + + float Schlick_to_F0(float f, float VdotH) { + return Schlick_to_F0(f, 1.0, VdotH); + } + + )" + }, + { + "brdf2.glsl", R"( + // Smith Joint GGX + // Note: Vis = G / (4 * NdotL * NdotV) + // see Eric Heitz. 2014. Understanding the Masking-Shadowing Function in Microfacet-Based BRDFs. Journal of Computer Graphics Techniques, 3 + // see Real-Time Rendering. Page 331 to 336. + // see https://google.github.io/filament/Filament.md.html#materialsystem/specularbrdf/geometricshadowing(specularg) + float V_GGX(float NdotL, float NdotV, float alphaRoughness) + { + float alphaRoughnessSq = alphaRoughness * alphaRoughness; + + float GGXV = NdotL * sqrt(NdotV * NdotV * (1.0 - alphaRoughnessSq) + alphaRoughnessSq); + float GGXL = NdotV * sqrt(NdotL * NdotL * (1.0 - alphaRoughnessSq) + alphaRoughnessSq); + + float GGX = GGXV + GGXL; + if (GGX > 0.0) + { + return 0.5 / GGX; + } + return 0.0; + } + + + // The following equation(s) model the distribution of microfacet normals across the area being drawn (aka D()) + // Implementation from "Average Irregularity Representation of a Roughened Surface for Ray Reflection" by T. S. Trowbridge, and K. P. Reitz + // Follows the distribution function recommended in the SIGGRAPH 2013 course notes from EPIC Games [1], Equation 3. + float D_GGX(float NdotH, float alphaRoughness) + { + float alphaRoughnessSq = alphaRoughness * alphaRoughness; + float f = (NdotH * NdotH) * (alphaRoughnessSq - 1.0) + 1.0; + return alphaRoughnessSq / (M_PI * f * f); + } + + + float lambdaSheenNumericHelper(float x, float alphaG) + { + float oneMinusAlphaSq = (1.0 - alphaG) * (1.0 - alphaG); + float a = mix(21.5473, 25.3245, oneMinusAlphaSq); + float b = mix(3.82987, 3.32435, oneMinusAlphaSq); + float c = mix(0.19823, 0.16801, oneMinusAlphaSq); + float d = mix(-1.97760, -1.27393, oneMinusAlphaSq); + float e = mix(-4.32054, -4.85967, oneMinusAlphaSq); + return a / (1.0 + b * pow(x, c)) + d * x + e; + } + + + float lambdaSheen(float cosTheta, float alphaG) + { + if (abs(cosTheta) < 0.5) + { + return exp(lambdaSheenNumericHelper(cosTheta, alphaG)); + } + else + { + return exp(2.0 * lambdaSheenNumericHelper(0.5, alphaG) - lambdaSheenNumericHelper(1.0 - cosTheta, alphaG)); + } + } + + + float V_Sheen(float NdotL, float NdotV, float sheenRoughness) + { + sheenRoughness = max(sheenRoughness, 0.000001); //clamp (0,1] + float alphaG = sheenRoughness * sheenRoughness; + + return clamp(1.0 / ((1.0 + lambdaSheen(NdotV, alphaG) + lambdaSheen(NdotL, alphaG)) * + (4.0 * NdotV * NdotL)), 0.0, 1.0); + } + + + //Sheen implementation------------------------------------------------------------------------------------- + // See https://github.com/sebavan/glTF/tree/KHR_materials_sheen/extensions/2.0/Khronos/KHR_materials_sheen + + // Estevez and Kulla http://www.aconty.com/pdf/s2017_pbs_imageworks_sheen.pdf + float D_Charlie(float sheenRoughness, float NdotH) + { + sheenRoughness = max(sheenRoughness, 0.000001); //clamp (0,1] + float alphaG = sheenRoughness * sheenRoughness; + float invR = 1.0 / alphaG; + float cos2h = NdotH * NdotH; + float sin2h = 1.0 - cos2h; + return (2.0 + invR) * pow(sin2h, invR * 0.5) / (2.0 * M_PI); + } + )" + }, + { + "brdf3.glsl", R"( + + //https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#acknowledgments AppendixB + vec3 BRDF_lambertian(vec3 diffuseColor) + { + // see https://seblagarde.wordpress.com/2012/01/08/pi-or-not-to-pi-in-game-lighting-equation/ + return (diffuseColor / M_PI); + } + + // https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#acknowledgments AppendixB + vec3 BRDF_specularGGX(float alphaRoughness, float NdotL, float NdotV, float NdotH) + { + float Vis = V_GGX(NdotL, NdotV, alphaRoughness); + float D = D_GGX(NdotH, alphaRoughness); + + return vec3(Vis * D); + } + + + #ifdef MATERIAL_ANISOTROPY + // GGX Distribution Anisotropic (Same as Babylon.js) + // https://blog.selfshadow.com/publications/s2012-shading-course/burley/s2012_pbs_disney_brdf_notes_v3.pdf Addenda + float D_GGX_anisotropic(float NdotH, float TdotH, float BdotH, float anisotropy, float at, float ab) + { + float a2 = at * ab; + vec3 f = vec3(ab * TdotH, at * BdotH, a2 * NdotH); + float w2 = a2 / dot(f, f); + return a2 * w2 * w2 / M_PI; + } + + // GGX Mask/Shadowing Anisotropic (Same as Babylon.js - smithVisibility_GGXCorrelated_Anisotropic) + // Heitz http://jcgt.org/published/0003/02/03/paper.pdf + float V_GGX_anisotropic(float NdotL, float NdotV, float BdotV, float TdotV, float TdotL, float BdotL, float at, float ab) + { + float GGXV = NdotL * length(vec3(at * TdotV, ab * BdotV, NdotV)); + float GGXL = NdotV * length(vec3(at * TdotL, ab * BdotL, NdotL)); + float v = 0.5 / (GGXV + GGXL); + return clamp(v, 0.0, 1.0); + } + + vec3 BRDF_specularGGXAnisotropy(float alphaRoughness, float anisotropy, vec3 n, vec3 v, vec3 l, vec3 h, vec3 t, vec3 b) + { + // Roughness along the anisotropy bitangent is the material roughness, while the tangent roughness increases with anisotropy. + float at = mix(alphaRoughness, 1.0, anisotropy * anisotropy); + float ab = clamp(alphaRoughness, 0.001, 1.0); + + float NdotL = clamp(dot(n, l), 0.0, 1.0); + float NdotH = clamp(dot(n, h), 0.001, 1.0); + float NdotV = dot(n, v); + + float V = V_GGX_anisotropic(NdotL, NdotV, dot(b, v), dot(t, v), dot(t, l), dot(b, l), at, ab); + float D = D_GGX_anisotropic(NdotH, dot(t, h), dot(b, h), anisotropy, at, ab); + + return vec3(V * D); + } + #endif + + + // f_sheen + vec3 BRDF_specularSheen(vec3 sheenColor, float sheenRoughness, float NdotL, float NdotV, float NdotH) + { + float sheenDistribution = D_Charlie(sheenRoughness, NdotH); + float sheenVisibility = V_Sheen(NdotL, NdotV, sheenRoughness); + return sheenColor * sheenDistribution * sheenVisibility; + } + )" + }, + { + "punctual1.glsl", R"( + struct Light + { + vec3 direction; + float range; + + vec3 color; + float intensity; + + vec3 position; + float innerConeCos; + + float outerConeCos; + int type; + }; + + const int LightType_Directional = 0; + const int LightType_Point = 1; + const int LightType_Spot = 2; + + + #ifdef USE_PUNCTUAL + //Light u_Lights[LIGHT_COUNT + 1]; //Array [0] is not allowed + uniform Light u_Lights[LIGHT_COUNT + 1]; //Array [0] is not allowed + #endif + + float getRangeAttenuation(float range, float distance) + { + if (range <= 0.0) + { + // negative range means unlimited + return 1.0 / pow(distance, 2.0); + } + return max(min(1.0 - pow(distance / range, 4.0), 1.0), 0.0) / pow(distance, 2.0); + } + float getSpotAttenuation(vec3 pointToLight, vec3 spotDirection, float outerConeCos, float innerConeCos) + { + float actualCos = dot(normalize(spotDirection), normalize(-pointToLight)); + if (actualCos > outerConeCos) + { + if (actualCos < innerConeCos) + { + float angularAttenuation = (actualCos - outerConeCos) / (innerConeCos - outerConeCos); + return angularAttenuation * angularAttenuation; + } + return 1.0; + } + return 0.0; + } + vec3 getLighIntensity(Light light, vec3 pointToLight) + { + float rangeAttenuation = 1.0; + float spotAttenuation = 1.0; + + if (light.type != LightType_Directional) + { + rangeAttenuation = getRangeAttenuation(light.range, length(pointToLight)); + } + if (light.type == LightType_Spot) + { + spotAttenuation = getSpotAttenuation(pointToLight, light.direction, light.outerConeCos, light.innerConeCos); + } + + return rangeAttenuation * spotAttenuation * light.intensity * light.color; + } + + )" + }, + { + "punctual2.glsl", R"( + vec3 getPunctualRadianceTransmission(vec3 normal, vec3 view, vec3 pointToLight, float alphaRoughness, + vec3 baseColor, float ior) + { + float transmissionRougness = applyIorToRoughness(alphaRoughness, ior); + + vec3 n = normalize(normal); + vec3 v = normalize(view); + vec3 l = normalize(pointToLight); + vec3 l_mirror = normalize(l + 2.0*n*dot(-l, n)); + vec3 h = normalize(l_mirror + v); + + float D = D_GGX(clamp(dot(n, h), 0.0, 1.0), transmissionRougness); + float Vis = V_GGX(clamp(dot(n, l_mirror), 0.0, 1.0), clamp(dot(n, v), 0.0, 1.0), transmissionRougness); + + // Transmission BTDF + return baseColor * D * Vis; + } + + + vec3 getPunctualRadianceClearCoat(vec3 clearcoatNormal, vec3 v, vec3 l, vec3 h, float VdotH, vec3 f0, vec3 f90, float clearcoatRoughness) + { + float NdotL = clampedDot(clearcoatNormal, l); + float NdotV = clampedDot(clearcoatNormal, v); + float NdotH = clampedDot(clearcoatNormal, h); + return NdotL * BRDF_specularGGX(clearcoatRoughness * clearcoatRoughness, NdotL, NdotV, NdotH); + } + + + vec3 getPunctualRadianceSheen(vec3 sheenColor, float sheenRoughness, float NdotL, float NdotV, float NdotH) + { + return NdotL * BRDF_specularSheen(sheenColor, sheenRoughness, NdotL, NdotV, NdotH); + } + + + vec3 applyVolumeAttenuation(vec3 radiance, float transmissionDistance, vec3 attenuationColor, float attenuationDistance) + { + if (attenuationDistance == 0.0) + { + // Attenuation distance is +∞ (which we indicate by zero), i.e. the transmitted color is not attenuated at all. + return radiance; + } + else + { + vec3 transmittance = pow(attenuationColor, vec3(transmissionDistance / attenuationDistance)); + return transmittance * radiance; + } + } + + + vec3 getVolumeTransmissionRay(vec3 n, vec3 v, float thickness, float ior, mat4 modelMatrix) + { + vec3 refractionVector = refract(-v, normalize(n), 1.0 / ior); + vec3 modelScale; + modelScale.x = length(vec3(modelMatrix[0].xyz)); + modelScale.y = length(vec3(modelMatrix[1].xyz)); + modelScale.z = length(vec3(modelMatrix[2].xyz)); + return normalize(refractionVector) * thickness * modelScale; + } + + )" + }, + { + "ibl1.glsl", R"( + + uniform float u_EnvIntensity; + + vec3 getDiffuseLight(vec3 n) + { + // MK TEMP (for some reason, this one still seems to have positive effect - check for inverted Y at IBL diffuse generation phase) + // n.y *= -1.0; + vec4 textureSample = texture(u_LambertianEnvSampler, u_EnvRotation * n); + textureSample.rgb *= u_EnvIntensity; + return textureSample.rgb; + } + + vec4 getSpecularSample(vec3 reflection, float lod) + { + vec4 textureSample = textureLod(u_GGXEnvSampler, u_EnvRotation * reflection, lod); + textureSample.rgb *= u_EnvIntensity; + return textureSample; + } + + vec4 getSheenSample(vec3 reflection, float lod) + { + vec4 textureSample = textureLod(u_CharlieEnvSampler, u_EnvRotation * reflection, lod); + textureSample.rgb *= u_EnvIntensity; + return textureSample; + } + + vec3 getIBLGGXFresnel(vec3 n, vec3 v, float roughness, vec3 F0, float specularWeight) + { + // see https://bruop.github.io/ibl/#single_scattering_results at Single Scattering Results + // Roughness dependent fresnel, from Fdez-Aguera + float NdotV = clampedDot(n, v); + vec2 brdfSamplePoint = clamp(vec2(NdotV, roughness), vec2(0.0, 0.0), vec2(1.0, 1.0)); + vec2 f_ab = texture(u_GGXLUT, brdfSamplePoint).rg; + vec3 Fr = max(vec3(1.0 - roughness), F0) - F0; + vec3 k_S = F0 + Fr * pow(1.0 - NdotV, 5.0); + vec3 FssEss = specularWeight * (k_S * f_ab.x + f_ab.y); + + // Multiple scattering, from Fdez-Aguera + float Ems = (1.0 - (f_ab.x + f_ab.y)); + vec3 F_avg = specularWeight * (F0 + (1.0 - F0) / 21.0); + vec3 FmsEms = Ems * FssEss * F_avg / (1.0 - F_avg * Ems); + + return FssEss + FmsEms; + } + + vec3 getIBLRadianceGGX(vec3 n, vec3 v, float roughness) + { + float NdotV = clampedDot(n, v); + float lod = roughness * float(u_MipCount - 1); + + vec3 reflection = normalize(reflect(-v, n)); + vec4 specularSample = getSpecularSample(reflection, lod); + + vec3 specularLight = specularSample.rgb; + + return specularLight; + } + + + #ifdef MATERIAL_TRANSMISSION + vec3 getTransmissionSample(vec2 fragCoord, float roughness, float ior) + { + float framebufferLod = log2(float(u_TransmissionFramebufferSize.x)) * applyIorToRoughness(roughness, ior); + vec3 transmittedLight = textureLod(u_TransmissionFramebufferSampler, fragCoord.xy, framebufferLod).rgb; + + return transmittedLight; + } + #endif + + #ifdef MATERIAL_TRANSMISSION + vec3 getIBLVolumeRefraction(vec3 n, vec3 v, float perceptualRoughness, vec3 baseColor, vec3 position, mat4 modelMatrix, + mat4 viewMatrix, mat4 projMatrix, float ior, float thickness, vec3 attenuationColor, float attenuationDistance, float dispersion) + { + )" + }, + { + "ibl2.glsl", R"( + + #ifdef MATERIAL_DISPERSION + // Dispersion will spread out the ior values for each r,g,b channel + float halfSpread = (ior - 1.0) * 0.025 * dispersion; + vec3 iors = vec3(ior - halfSpread, ior, ior + halfSpread); + + vec3 transmittedLight; + float transmissionRayLength; + for (int i = 0; i < 3; i++) + { + vec3 transmissionRay = getVolumeTransmissionRay(n, v, thickness, iors[i], modelMatrix); + // TODO: taking length of blue ray, ideally we would take the length of the green ray. For now overwriting seems ok + transmissionRayLength = length(transmissionRay); + vec3 refractedRayExit = position + transmissionRay; + + // Project refracted vector on the framebuffer, while mapping to normalized device coordinates. + vec4 ndcPos = projMatrix * viewMatrix * vec4(refractedRayExit, 1.0); + vec2 refractionCoords = ndcPos.xy / ndcPos.w; + refractionCoords += 1.0; + refractionCoords /= 2.0; + + // Sample framebuffer to get pixel the refracted ray hits for this color channel. + transmittedLight[i] = getTransmissionSample(refractionCoords, perceptualRoughness, iors[i])[i]; + } + #else + vec3 transmissionRay = getVolumeTransmissionRay(n, v, thickness, ior, modelMatrix); + float transmissionRayLength = length(transmissionRay); + vec3 refractedRayExit = position + transmissionRay; + + // Project refracted vector on the framebuffer, while mapping to normalized device coordinates. + vec4 ndcPos = projMatrix * viewMatrix * vec4(refractedRayExit, 1.0); + vec2 refractionCoords = ndcPos.xy / ndcPos.w; + refractionCoords += 1.0; + refractionCoords /= 2.0; + + // Sample framebuffer to get pixel the refracted ray hits. + vec3 transmittedLight = getTransmissionSample(refractionCoords, perceptualRoughness, ior); + + #endif // MATERIAL_DISPERSION + vec3 attenuatedColor = applyVolumeAttenuation(transmittedLight, transmissionRayLength, attenuationColor, attenuationDistance); + + return attenuatedColor * baseColor; + } + #endif + + + #ifdef MATERIAL_ANISOTROPY + vec3 getIBLRadianceAnisotropy(vec3 n, vec3 v, float roughness, float anisotropy, vec3 anisotropyDirection) + { + float NdotV = clampedDot(n, v); + + float tangentRoughness = mix(roughness, 1.0, anisotropy * anisotropy); + vec3 anisotropicTangent = cross(anisotropyDirection, v); + vec3 anisotropicNormal = cross(anisotropicTangent, anisotropyDirection); + float bendFactor = 1.0 - anisotropy * (1.0 - roughness); + float bendFactorPow4 = bendFactor * bendFactor * bendFactor * bendFactor; + vec3 bentNormal = normalize(mix(anisotropicNormal, n, bendFactorPow4)); + + float lod = roughness * float(u_MipCount - 1); + vec3 reflection = normalize(reflect(-v, bentNormal)); + + vec4 specularSample = getSpecularSample(reflection, lod); + + vec3 specularLight = specularSample.rgb; + + return specularLight; + } + #endif + + + vec3 getIBLRadianceCharlie(vec3 n, vec3 v, float sheenRoughness, vec3 sheenColor) + { + float NdotV = clampedDot(n, v); + float lod = sheenRoughness * float(u_MipCount - 1); + vec3 reflection = normalize(reflect(-v, n)); + + vec2 brdfSamplePoint = clamp(vec2(NdotV, sheenRoughness), vec2(0.0, 0.0), vec2(1.0, 1.0)); + float brdf = texture(u_CharlieLUT, brdfSamplePoint).b; + vec4 sheenSample = getSheenSample(reflection, lod); + + vec3 sheenLight = sheenSample.rgb; + return sheenLight * sheenColor * brdf; + } + + )" + }, + { + "material_info1.glsl", R"( + + // Metallic Roughness + uniform float u_MetallicFactor; + uniform float u_RoughnessFactor; + uniform vec4 u_BaseColorFactor; + + // Sheen + uniform float u_SheenRoughnessFactor; + uniform vec3 u_SheenColorFactor; + + // Clearcoat + uniform float u_ClearcoatFactor; + uniform float u_ClearcoatRoughnessFactor; + + // Specular + uniform vec3 u_KHR_materials_specular_specularColorFactor; + uniform float u_KHR_materials_specular_specularFactor; + + // Transmission + uniform float u_TransmissionFactor; + + // Volume + uniform float u_ThicknessFactor; + uniform vec3 u_AttenuationColor; + uniform float u_AttenuationDistance; + + // Iridescence + uniform float u_IridescenceFactor; + uniform float u_IridescenceIor; + uniform float u_IridescenceThicknessMinimum; + uniform float u_IridescenceThicknessMaximum; + + // Diffuse Transmission + uniform float u_DiffuseTransmissionFactor; + uniform vec3 u_DiffuseTransmissionColorFactor; + + // Emissive Strength + uniform float u_EmissiveStrength; + + // IOR + uniform float u_Ior; + + // Anisotropy + uniform vec3 u_Anisotropy; + + // Dispersion + uniform float u_Dispersion; + + // Alpha mode + uniform float u_AlphaCutoff; + + uniform vec3 u_Camera; + + #ifdef MATERIAL_TRANSMISSION + uniform ivec2 u_ScreenSize; + #endif + + uniform mat4 u_ModelMatrix; + uniform mat4 u_ViewMatrix; + uniform mat4 u_ProjectionMatrix; + + + struct MaterialInfo + { + vec4 baseColorFactor; + float alphaCutoff; + int flags; + vec2 padding; // Above props temporary from earlier shader version -mk + + float occlusionStrength; + float normalScale; + + float ior; + float perceptualRoughness; // roughness value, as authored by the model creator (input to shader) + vec3 f0_dielectric; + + float alphaRoughness; // roughness mapped to a more linear change in the roughness (proposed by [2]) + + float fresnel_w; + + vec3 f90; // reflectance color at grazing angle + vec3 f90_dielectric; + float metallic; + + vec3 baseColor; + + float sheenRoughnessFactor; + vec3 sheenColorFactor; + + vec3 clearcoatF0; + vec3 clearcoatF90; + float clearcoatFactor; + vec3 clearcoatNormal; + float clearcoatRoughness; + + // KHR_materials_specular + float specularWeight; // product of specularFactor and specularTexture.a + + float transmissionFactor; + )" + }, + { + "material_info2.glsl", R"( + float thickness; + vec3 attenuationColor; + float attenuationDistance; + + // KHR_materials_iridescence + float iridescenceFactor; + float iridescenceIor; + float iridescenceThickness; + + float diffuseTransmissionFactor; + vec3 diffuseTransmissionColorFactor; + + // KHR_materials_anisotropy + vec3 anisotropicT; + vec3 anisotropicB; + float anisotropyStrength; + + // KHR_materials_dispersion + float dispersion; + }; + + + // Get normal, tangent and bitangent vectors. + NormalInfo getNormalInfo(vec3 v) + { + vec2 UV = getNormalUV(); + vec2 uv_dx = dFdx(UV); + vec2 uv_dy = dFdy(UV); + + if (length(uv_dx) <= 1e-2) { + uv_dx = vec2(1.0, 0.0); + } + + if (length(uv_dy) <= 1e-2) { + uv_dy = vec2(0.0, 1.0); + } + + vec3 t_ = (uv_dy.t * dFdx(v_Position) - uv_dx.t * dFdy(v_Position)) / + (uv_dx.s * uv_dy.t - uv_dy.s * uv_dx.t); + + vec3 n, t, b, ng; + + // Compute geometrical TBN: + #ifdef HAS_NORMAL_VEC3 + #ifdef HAS_TANGENT_VEC4 + // Trivial TBN computation, present as vertex attribute. + // Normalize eigenvectors as matrix is linearly interpolated. + t = normalize(v_TBN[0]); + b = normalize(v_TBN[1]); + ng = normalize(v_TBN[2]); + #else + // Normals are either present as vertex attributes or approximated. + ng = normalize(v_Normal); + t = normalize(t_ - ng * dot(ng, t_)); + b = cross(ng, t); + #endif + #else + ng = normalize(cross(dFdx(v_Position), dFdy(v_Position))); + t = normalize(t_ - ng * dot(ng, t_)); + b = cross(ng, t); + #endif + + #ifndef NOT_TRIANGLE + // For a back-facing surface, the tangential basis vectors are negated. + if (gl_FrontFacing == false) + { + t *= -1.0; + b *= -1.0; + ng *= -1.0; + } + #endif + + // Compute normals: + NormalInfo info; + info.ng = ng; + #ifdef HAS_NORMAL_MAP + info.ntex = texture(u_NormalSampler, UV).rgb * 2.0 - vec3(1.0); + info.ntex *= vec3(u_NormalScale, u_NormalScale, 1.0); + info.ntex = normalize(info.ntex); + info.n = normalize(mat3(t, b, ng) * info.ntex); + #else + info.n = ng; + #endif + info.t = t; + info.b = b; + return info; + } + + + #ifdef MATERIAL_CLEARCOAT + vec3 getClearcoatNormal(NormalInfo normalInfo) + { + #ifdef HAS_CLEARCOAT_NORMAL_MAP + vec3 n = texture(u_ClearcoatNormalSampler, getClearcoatNormalUV()).rgb * 2.0 - vec3(1.0); + n *= vec3(u_ClearcoatNormalScale, u_ClearcoatNormalScale, 1.0); + n = mat3(normalInfo.t, normalInfo.b, normalInfo.ng) * normalize(n); + return n; + #else + return normalInfo.ng; + #endif + } + #endif + + )" + }, + { + "material_info3.glsl", R"( + vec4 getBaseColor() + { + vec4 baseColor = u_BaseColorFactor; + + #ifdef MATERIAL_UNLIT + #if defined(HAS_BASE_COLOR_MAP) + baseColor *= texture(u_BaseColorSampler, getBaseColorUV()); + #endif + return baseColor; + #else + #ifdef MATERIAL_METALLICROUGHNESS + #if defined(HAS_BASE_COLOR_MAP) + baseColor *= texture(u_BaseColorSampler, getBaseColorUV()); + #endif + #endif + return baseColor * getVertexColor(); + #endif + + } + + + #ifdef MATERIAL_METALLICROUGHNESS + MaterialInfo getMetallicRoughnessInfo(MaterialInfo info) + { + info.metallic = u_MetallicFactor; + info.perceptualRoughness = u_RoughnessFactor; + + #ifdef HAS_METALLIC_ROUGHNESS_MAP + // Roughness is stored in the 'g' channel, metallic is stored in the 'b' channel. + // This layout intentionally reserves the 'r' channel for (optional) occlusion map data + vec4 mrSample = texture(u_MetallicRoughnessSampler, getMetallicRoughnessUV()); + info.perceptualRoughness *= mrSample.g; + info.metallic *= mrSample.b; + #endif + + return info; + } + #endif + + + #ifdef MATERIAL_SHEEN + MaterialInfo getSheenInfo(MaterialInfo info) + { + info.sheenColorFactor = u_SheenColorFactor; + info.sheenRoughnessFactor = u_SheenRoughnessFactor; + + #ifdef HAS_SHEEN_COLOR_MAP + vec4 sheenColorSample = texture(u_SheenColorSampler, getSheenColorUV()); + info.sheenColorFactor *= sheenColorSample.rgb; + #endif + + #ifdef HAS_SHEEN_ROUGHNESS_MAP + vec4 sheenRoughnessSample = texture(u_SheenRoughnessSampler, getSheenRoughnessUV()); + info.sheenRoughnessFactor *= sheenRoughnessSample.a; + #endif + return info; + } + #endif + + + #ifdef MATERIAL_SPECULAR + MaterialInfo getSpecularInfo(MaterialInfo info) + { + vec4 specularTexture = vec4(1.0); + #ifdef HAS_SPECULAR_MAP + specularTexture.a = texture(u_SpecularSampler, getSpecularUV()).a; + #endif + #ifdef HAS_SPECULAR_COLOR_MAP + specularTexture.rgb = texture(u_SpecularColorSampler, getSpecularColorUV()).rgb; + #endif + + info.f0_dielectric = min(info.f0_dielectric * u_KHR_materials_specular_specularColorFactor * specularTexture.rgb, vec3(1.0)); + info.specularWeight = u_KHR_materials_specular_specularFactor * specularTexture.a; + info.f90_dielectric = vec3(info.specularWeight); + return info; + } + #endif + + + #ifdef MATERIAL_TRANSMISSION + MaterialInfo getTransmissionInfo(MaterialInfo info) + { + info.transmissionFactor = u_TransmissionFactor; + + #ifdef HAS_TRANSMISSION_MAP + vec4 transmissionSample = texture(u_TransmissionSampler, getTransmissionUV()); + info.transmissionFactor *= transmissionSample.r; + #endif + + #ifdef MATERIAL_DISPERSION + info.dispersion = u_Dispersion; + #else + info.dispersion = 0.0; + #endif + return info; + } + #endif + )" + }, + { + "material_info4.glsl", R"( + #ifdef MATERIAL_VOLUME + MaterialInfo getVolumeInfo(MaterialInfo info) + { + info.thickness = u_ThicknessFactor; + info.attenuationColor = u_AttenuationColor; + info.attenuationDistance = u_AttenuationDistance; + + #ifdef HAS_THICKNESS_MAP + vec4 thicknessSample = texture(u_ThicknessSampler, getThicknessUV()); + info.thickness *= thicknessSample.g; + #endif + return info; + } + #endif + + + #ifdef MATERIAL_IRIDESCENCE + MaterialInfo getIridescenceInfo(MaterialInfo info) + { + info.iridescenceFactor = u_IridescenceFactor; + info.iridescenceIor = u_IridescenceIor; + info.iridescenceThickness = u_IridescenceThicknessMaximum; + + #ifdef HAS_IRIDESCENCE_MAP + info.iridescenceFactor *= texture(u_IridescenceSampler, getIridescenceUV()).r; + #endif + + #ifdef HAS_IRIDESCENCE_THICKNESS_MAP + float thicknessSampled = texture(u_IridescenceThicknessSampler, getIridescenceThicknessUV()).g; + float thickness = mix(u_IridescenceThicknessMinimum, u_IridescenceThicknessMaximum, thicknessSampled); + info.iridescenceThickness = thickness; + #endif + + return info; + } + #endif + + + #ifdef MATERIAL_DIFFUSE_TRANSMISSION + MaterialInfo getDiffuseTransmissionInfo(MaterialInfo info) + { + info.diffuseTransmissionFactor = u_DiffuseTransmissionFactor; + info.diffuseTransmissionColorFactor = u_DiffuseTransmissionColorFactor; + + #ifdef HAS_DIFFUSE_TRANSMISSION_MAP + info.diffuseTransmissionFactor *= texture(u_DiffuseTransmissionSampler, getDiffuseTransmissionUV()).a; + #endif + + #ifdef HAS_DIFFUSE_TRANSMISSION_COLOR_MAP + info.diffuseTransmissionColorFactor *= texture(u_DiffuseTransmissionColorSampler, getDiffuseTransmissionColorUV()).rgb; + #endif + + return info; + } + #endif + )" + }, + { + "material_info5.glsl", R"( + + #ifdef MATERIAL_CLEARCOAT + MaterialInfo getClearCoatInfo(MaterialInfo info, NormalInfo normalInfo) + { + info.clearcoatFactor = u_ClearcoatFactor; + info.clearcoatRoughness = u_ClearcoatRoughnessFactor; + info.clearcoatF0 = vec3(pow((info.ior - 1.0) / (info.ior + 1.0), 2.0)); + info.clearcoatF90 = vec3(1.0); + + #ifdef HAS_CLEARCOAT_MAP + vec4 clearcoatSample = texture(u_ClearcoatSampler, getClearcoatUV()); + info.clearcoatFactor *= clearcoatSample.r; + #endif + + #ifdef HAS_CLEARCOAT_ROUGHNESS_MAP + vec4 clearcoatSampleRoughness = texture(u_ClearcoatRoughnessSampler, getClearcoatRoughnessUV()); + info.clearcoatRoughness *= clearcoatSampleRoughness.g; + #endif + + info.clearcoatNormal = getClearcoatNormal(normalInfo); + info.clearcoatRoughness = clamp(info.clearcoatRoughness, 0.0, 1.0); + return info; + } + #endif + + + #ifdef MATERIAL_IOR + MaterialInfo getIorInfo(MaterialInfo info) + { + info.f0_dielectric = vec3(pow(( u_Ior - 1.0) / (u_Ior + 1.0), 2.0)); + info.ior = u_Ior; + return info; + } + #endif + + #ifdef MATERIAL_ANISOTROPY + MaterialInfo getAnisotropyInfo(MaterialInfo info, NormalInfo normalInfo) + { + vec2 direction = vec2(1.0, 0.0); + float strengthFactor = 1.0; + #ifdef HAS_ANISOTROPY_MAP + vec3 anisotropySample = texture(u_AnisotropySampler, getAnisotropyUV()).xyz; + direction = anisotropySample.xy * 2.0 - vec2(1.0); + strengthFactor = anisotropySample.z; + #endif + vec2 directionRotation = u_Anisotropy.xy; // cos(theta), sin(theta) + mat2 rotationMatrix = mat2(directionRotation.x, directionRotation.y, -directionRotation.y, directionRotation.x); + direction = rotationMatrix * direction.xy; + + info.anisotropicT = mat3(normalInfo.t, normalInfo.b, normalInfo.n) * normalize(vec3(direction, 0.0)); + info.anisotropicB = cross(normalInfo.ng, info.anisotropicT); + info.anisotropyStrength = clamp(u_Anisotropy.z * strengthFactor, 0.0, 1.0); + return info; + } + #endif + + + float albedoSheenScalingLUT(float NdotV, float sheenRoughnessFactor) + { + //return NdotV; + return texture(u_SheenELUT, vec2(NdotV, sheenRoughnessFactor)).r; + } + + )" + }, + { + "iridescence.glsl", R"( + const mat3 XYZ_TO_REC709 = mat3( + 3.2404542, -0.9692660, 0.0556434, + -1.5371385, 1.8760108, -0.2040259, + -0.4985314, 0.0415560, 1.0572252 + ); + + vec3 Fresnel0ToIor(vec3 fresnel0) { + vec3 sqrtF0 = sqrt(fresnel0); + return (vec3(1.0) + sqrtF0) / (vec3(1.0) - sqrtF0); + } + + vec3 IorToFresnel0(vec3 transmittedIor, float incidentIor) { + return sq((transmittedIor - vec3(incidentIor)) / (transmittedIor + vec3(incidentIor))); + } + + float IorToFresnel0(float transmittedIor, float incidentIor) { + return sq((transmittedIor - incidentIor) / (transmittedIor + incidentIor)); + } + + vec3 evalSensitivity(float OPD, vec3 shift) { + float phase = 2.0 * M_PI * OPD * 1.0e-9; + vec3 val = vec3(5.4856e-13, 4.4201e-13, 5.2481e-13); + vec3 pos = vec3(1.6810e+06, 1.7953e+06, 2.2084e+06); + vec3 var = vec3(4.3278e+09, 9.3046e+09, 6.6121e+09); + + vec3 xyz = val * sqrt(2.0 * M_PI * var) * cos(pos * phase + shift) * exp(-sq(phase) * var); + xyz.x += 9.7470e-14 * sqrt(2.0 * M_PI * 4.5282e+09) * cos(2.2399e+06 * phase + shift[0]) * exp(-4.5282e+09 * sq(phase)); + xyz /= 1.0685e-7; + + vec3 srgb = XYZ_TO_REC709 * xyz; + return srgb; + } + + vec3 evalIridescence(float outsideIOR, float eta2, float cosTheta1, float thinFilmThickness, vec3 baseF0) { + vec3 I; + + // Force iridescenceIor -> outsideIOR when thinFilmThickness -> 0.0 + float iridescenceIor = mix(outsideIOR, eta2, smoothstep(0.0, 0.03, thinFilmThickness)); + // Evaluate the cosTheta on the base layer (Snell law) + float sinTheta2Sq = sq(outsideIOR / iridescenceIor) * (1.0 - sq(cosTheta1)); + + // Handle TIR: + float cosTheta2Sq = 1.0 - sinTheta2Sq; + if (cosTheta2Sq < 0.0) { + return vec3(1.0); + } + + float cosTheta2 = sqrt(cosTheta2Sq); + + // First interface + float R0 = IorToFresnel0(iridescenceIor, outsideIOR); + float R12 = F_Schlick(R0, cosTheta1); + float R21 = R12; + float T121 = 1.0 - R12; + float phi12 = 0.0; + if (iridescenceIor < outsideIOR) phi12 = M_PI; + float phi21 = M_PI - phi12; + + // Second interface + vec3 baseIOR = Fresnel0ToIor(clamp(baseF0, 0.0, 0.9999)); // guard against 1.0 + vec3 R1 = IorToFresnel0(baseIOR, iridescenceIor); + vec3 R23 = F_Schlick(R1, cosTheta2); + vec3 phi23 = vec3(0.0); + if (baseIOR[0] < iridescenceIor) phi23[0] = M_PI; + if (baseIOR[1] < iridescenceIor) phi23[1] = M_PI; + if (baseIOR[2] < iridescenceIor) phi23[2] = M_PI; + + // Phase shift + float OPD = 2.0 * iridescenceIor * thinFilmThickness * cosTheta2; + vec3 phi = vec3(phi21) + phi23; + + // Compound terms + vec3 R123 = clamp(R12 * R23, 1e-5, 0.9999); + vec3 r123 = sqrt(R123); + vec3 Rs = sq(T121) * R23 / (vec3(1.0) - R123); + + // Reflectance term for m = 0 (DC term amplitude) + vec3 C0 = R12 + Rs; + I = C0; + + // Reflectance term for m > 0 (pairs of diracs) + vec3 Cm = Rs - T121; + for (int m = 1; m <= 2; ++m) + { + Cm *= r123; + vec3 Sm = 2.0 * evalSensitivity(float(m) * OPD, float(m) * phi); + I += Cm * Sm; + } + + // Since out of gamut colors might be produced, negative color values are clamped to 0. + return max(I, vec3(0.0)); + } + )" + }, + { + "animation1.glsl", R"( + + #ifdef HAS_MORPH_TARGETS + uniform highp sampler2DArray u_MorphTargetsSampler; + #endif + + #ifdef USE_MORPHING + uniform float u_morphWeights[WEIGHT_COUNT]; + #endif + + #ifdef HAS_JOINTS_0_VEC4 + in vec4 a_joints_0; + #endif + + #ifdef HAS_JOINTS_1_VEC4 + in vec4 a_joints_1; + #endif + + #ifdef HAS_WEIGHTS_0_VEC4 + in vec4 a_weights_0; + #endif + + #ifdef HAS_WEIGHTS_1_VEC4 + in vec4 a_weights_1; + #endif + + #ifdef USE_SKINNING + uniform sampler2D u_jointsSampler; + #endif + + #ifdef USE_SKINNING + + mat4 getMatrixFromTexture(sampler2D s, int index) + { + mat4 result = mat4(1); + int texSize = textureSize(s, 0)[0]; + int pixelIndex = index * 4; + for (int i = 0; i < 4; ++i) + { + int x = (pixelIndex + i) % texSize; + //Rounding mode of integers is undefined: + //https://www.khronos.org/registry/OpenGL/specs/es/3.0/GLSL_ES_Specification_3.00.pdf (section 12.33) + int y = (pixelIndex + i - x) / texSize; + result[i] = texelFetch(s, ivec2(x,y), 0); + } + return result; + } + + mat4 getSkinningMatrix() + { + mat4 skin = mat4(0); + + #if defined(HAS_WEIGHTS_0_VEC4) && defined(HAS_JOINTS_0_VEC4) + skin += + a_weights_0.x * getMatrixFromTexture(u_jointsSampler, int(a_joints_0.x) * 2) + + a_weights_0.y * getMatrixFromTexture(u_jointsSampler, int(a_joints_0.y) * 2) + + a_weights_0.z * getMatrixFromTexture(u_jointsSampler, int(a_joints_0.z) * 2) + + a_weights_0.w * getMatrixFromTexture(u_jointsSampler, int(a_joints_0.w) * 2); + #endif + + #if defined(HAS_WEIGHTS_1_VEC4) && defined(HAS_JOINTS_1_VEC4) + skin += + a_weights_1.x * getMatrixFromTexture(u_jointsSampler, int(a_joints_1.x) * 2) + + a_weights_1.y * getMatrixFromTexture(u_jointsSampler, int(a_joints_1.y) * 2) + + a_weights_1.z * getMatrixFromTexture(u_jointsSampler, int(a_joints_1.z) * 2) + + a_weights_1.w * getMatrixFromTexture(u_jointsSampler, int(a_joints_1.w) * 2); + #endif + if (skin == mat4(0)) { + return mat4(1); + } + return skin; + } + + + mat4 getSkinningNormalMatrix() + { + mat4 skin = mat4(0); + + #if defined(HAS_WEIGHTS_0_VEC4) && defined(HAS_JOINTS_0_VEC4) + skin += + a_weights_0.x * getMatrixFromTexture(u_jointsSampler, int(a_joints_0.x) * 2 + 1) + + a_weights_0.y * getMatrixFromTexture(u_jointsSampler, int(a_joints_0.y) * 2 + 1) + + a_weights_0.z * getMatrixFromTexture(u_jointsSampler, int(a_joints_0.z) * 2 + 1) + + a_weights_0.w * getMatrixFromTexture(u_jointsSampler, int(a_joints_0.w) * 2 + 1); + #endif + + #if defined(HAS_WEIGHTS_1_VEC4) && defined(HAS_JOINTS_1_VEC4) + skin += + a_weights_1.x * getMatrixFromTexture(u_jointsSampler, int(a_joints_1.x) * 2 + 1) + + a_weights_1.y * getMatrixFromTexture(u_jointsSampler, int(a_joints_1.y) * 2 + 1) + + a_weights_1.z * getMatrixFromTexture(u_jointsSampler, int(a_joints_1.z) * 2 + 1) + + a_weights_1.w * getMatrixFromTexture(u_jointsSampler, int(a_joints_1.w) * 2 + 1); + #endif + if (skin == mat4(0)) { + return mat4(1); + } + return skin; + } + + #endif // !USE_SKINNING + + )" + }, + { + "animation2.glsl", R"( + #ifdef USE_MORPHING + + #ifdef HAS_MORPH_TARGETS + vec4 getDisplacement(int vertexID, int targetIndex, int texSize) + { + int x = vertexID % texSize; + //Rounding mode of integers is undefined: + //https://www.khronos.org/registry/OpenGL/specs/es/3.0/GLSL_ES_Specification_3.00.pdf (section 12.33) + int y = (vertexID - x) / texSize; + return texelFetch(u_MorphTargetsSampler, ivec3(x, y, targetIndex), 0); + } + #endif + + + vec4 getTargetPosition(int vertexID) + { + vec4 pos = vec4(0); + #ifdef HAS_MORPH_TARGET_POSITION + int texSize = textureSize(u_MorphTargetsSampler, 0)[0]; + for(int i = 0; i < WEIGHT_COUNT; i++) + { + vec4 displacement = getDisplacement(vertexID, MORPH_TARGET_POSITION_OFFSET + i, texSize); + pos += u_morphWeights[i] * displacement; + } + #endif + + return pos; + } + + vec3 getTargetNormal(int vertexID) + { + vec3 normal = vec3(0); + + #ifdef HAS_MORPH_TARGET_NORMAL + int texSize = textureSize(u_MorphTargetsSampler, 0)[0]; + for(int i = 0; i < WEIGHT_COUNT; i++) + { + vec3 displacement = getDisplacement(vertexID, MORPH_TARGET_NORMAL_OFFSET + i, texSize).xyz; + normal += u_morphWeights[i] * displacement; + } + #endif + + return normal; + } + + + vec3 getTargetTangent(int vertexID) + { + vec3 tangent = vec3(0); + + #ifdef HAS_MORPH_TARGET_TANGENT + int texSize = textureSize(u_MorphTargetsSampler, 0)[0]; + for(int i = 0; i < WEIGHT_COUNT; i++) + { + vec3 displacement = getDisplacement(vertexID, MORPH_TARGET_TANGENT_OFFSET + i, texSize).xyz; + tangent += u_morphWeights[i] * displacement; + } + #endif + + return tangent; + } + + vec2 getTargetTexCoord0(int vertexID) + { + vec2 uv = vec2(0); + + #ifdef HAS_MORPH_TARGET_TEXCOORD_0 + int texSize = textureSize(u_MorphTargetsSampler, 0)[0]; + for(int i = 0; i < WEIGHT_COUNT; i++) + { + vec2 displacement = getDisplacement(vertexID, MORPH_TARGET_TEXCOORD_0_OFFSET + i, texSize).xy; + uv += u_morphWeights[i] * displacement; + } + #endif + + return uv; + } + + vec2 getTargetTexCoord1(int vertexID) + { + vec2 uv = vec2(0); + + #ifdef HAS_MORPH_TARGET_TEXCOORD_1 + int texSize = textureSize(u_MorphTargetsSampler, 0)[0]; + for(int i = 0; i < WEIGHT_COUNT; i++) + { + vec2 displacement = getDisplacement(vertexID, MORPH_TARGET_TEXCOORD_1_OFFSET + i, texSize).xy; + uv += u_morphWeights[i] * displacement; + } + #endif + + return uv; + } + + vec4 getTargetColor0(int vertexID) + { + vec4 color = vec4(0); + + #ifdef HAS_MORPH_TARGET_COLOR_0 + int texSize = textureSize(u_MorphTargetsSampler, 0)[0]; + for(int i = 0; i < WEIGHT_COUNT; i++) + { + vec4 displacement = getDisplacement(vertexID, MORPH_TARGET_COLOR_0_OFFSET + i, texSize); + color += u_morphWeights[i] * displacement; + } + #endif + + return color; + } + + #endif // !USE_MORPHING + )" + }, + { + "vert_v1_chunk_00.glsl", R"( + + #ifdef HAS_NORMAL_VEC3 + in vec3 a_normal; + #endif + + #ifdef HAS_NORMAL_VEC3 + #ifdef HAS_TANGENT_VEC4 + in vec4 a_tangent; + out mat3 v_TBN; + #else + out vec3 v_Normal; + #endif + #endif + + #ifdef HAS_TEXCOORD_0_VEC2 + in vec2 a_texcoord_0; + #endif + + #ifdef HAS_TEXCOORD_1_VEC2 + in vec2 a_texcoord_1; + #endif + + out vec2 v_texcoord_0; + out vec2 v_texcoord_1; + + #ifdef HAS_COLOR_0_VEC3 + in vec3 a_color_0; + out vec3 v_Color; + #endif + + #ifdef HAS_COLOR_0_VEC4 + in vec4 a_color_0; + out vec4 v_Color; + #endif + + #ifdef USE_INSTANCING + in mat4 a_instance_model_matrix; + #endif + + #ifdef HAS_VERT_NORMAL_UV_TRANSFORM + uniform mat3 u_vertNormalUVTransform; + #endif + + vec4 getPosition() + { + vec4 pos = vec4(a_position, 1.0); + + #ifdef USE_MORPHING + pos += getTargetPosition(gl_VertexID); + #endif + + #ifdef USE_SKINNING + pos = getSkinningMatrix() * pos; + #endif + + return pos; + } + + + #ifdef HAS_NORMAL_VEC3 + vec3 getNormal() + { + vec3 normal = a_normal; + + #ifdef USE_MORPHING + normal += getTargetNormal(gl_VertexID); + #endif + + #ifdef USE_SKINNING + normal = mat3(getSkinningNormalMatrix()) * normal; + #endif + + return normalize(normal); + } + #endif + + #ifdef HAS_NORMAL_VEC3 + #ifdef HAS_TANGENT_VEC4 + vec3 getTangent() + { + vec3 tangent = a_tangent.xyz; + + #ifdef USE_MORPHING + tangent += getTargetTangent(gl_VertexID); + #endif + + )" + }, + { + "vert_v1_chunk_01.glsl", R"( + #ifdef USE_SKINNING + tangent = mat3(getSkinningMatrix()) * tangent; + #endif + + return normalize(tangent); + } + #endif + #endif + + mat4 temp_makeNormalMatrixFromViewProj(mat4 _viewProjModelMatrix) { + mat4 normMat = _viewProjModelMatrix ; + normMat[0][0] = 1.0; + normMat[0][1] = 0.0; + normMat[0][2] = 0.0; + normMat[0][3] = 0.0; + normMat[1][0] = 0.0; + normMat[1][3] = 0.0; + normMat[2][0] = 0.0; + normMat[2][3] = 0.0; + normMat[3][0] = 0.0; + normMat[3][1] = 0.0; + normMat[3][2] = 0.0; + normMat[3][3] = 1.0; + return normMat; + } + + void main() + { + gl_PointSize = 1.0f; + #ifdef USE_INSTANCING + mat4 modelMatrix = a_instance_model_matrix; + mat4 normalMatrix = transpose(inverse(modelMatrix)); + #else + mat4 modelMatrix = u_ModelMatrix; + //mat4 normalMatrix = u_NormalMatrix; + mat4 normalMatrix = transpose(inverse(modelMatrix)); + + #endif + vec4 pos = modelMatrix * getPosition(); + v_Position = vec3(pos.xyz) / pos.w; + + #ifdef HAS_NORMAL_VEC3 + #ifdef HAS_TANGENT_VEC4 + vec3 tangent = getTangent(); + vec3 normalW = normalize(vec3(normalMatrix * vec4(getNormal(), 0.0))); + vec3 tangentW = vec3(modelMatrix * vec4(tangent, 0.0)); + vec3 bitangentW = cross(normalW, tangentW) * a_tangent.w; + + #ifdef HAS_VERT_NORMAL_UV_TRANSFORM + tangentW = u_vertNormalUVTransform * tangentW; + bitangentW = u_vertNormalUVTransform * bitangentW; + #endif + + bitangentW = normalize(bitangentW); + tangentW = normalize(tangentW); + + v_TBN = mat3(tangentW, bitangentW, normalW); + #else + v_Normal = normalize(vec3(normalMatrix * vec4(getNormal(), 0.0))); + #endif + #endif + + v_texcoord_0 = vec2(0.0, 0.0); + v_texcoord_1 = vec2(0.0, 0.0); + + #ifdef HAS_TEXCOORD_0_VEC2 + v_texcoord_0 = a_texcoord_0; + #endif + + #ifdef HAS_TEXCOORD_1_VEC2 + v_texcoord_1 = a_texcoord_1; + #endif + + #ifdef USE_MORPHING + v_texcoord_0 += getTargetTexCoord0(gl_VertexID); + v_texcoord_1 += getTargetTexCoord1(gl_VertexID); + #endif + + + #if defined(HAS_COLOR_0_VEC3) + v_Color = a_color_0; + #if defined(USE_MORPHING) + v_Color = clamp(v_Color + getTargetColor0(gl_VertexID).xyz, 0.0f, 1.0f); + #endif + #endif + + #if defined(HAS_COLOR_0_VEC4) + v_Color = a_color_0; + #if defined(USE_MORPHING) + v_Color = clamp(v_Color + getTargetColor0(gl_VertexID), 0.0f, 1.0f); + #endif + #endif + + gl_Position = u_ViewProjectionMatrix * pos; + } + )" + }, + { + "frag_v1_chunk_00.glsl", R"( + out vec4 g_finalColor; + void main() + { + + vec4 baseColor = getBaseColor(); + + #if ALPHAMODE == _OPAQUE + baseColor.a = 1.0; + #endif + + vec4 temp_origBaseColor = baseColor; + + vec3 color = vec3(0); + + vec3 v = normalize(u_Camera - v_Position); + + NormalInfo normalInfo = getNormalInfo(v); + vec3 n = normalInfo.n; + vec3 t = normalInfo.t; + vec3 b = normalInfo.b; + + float NdotV = clampedDot(n, v); + float TdotV = clampedDot(t, v); + float BdotV = clampedDot(b, v); + + MaterialInfo materialInfo; + materialInfo.baseColor = baseColor.rgb; + + // The default index of refraction of 1.5 yields a dielectric normal incidence reflectance of 0.04. + materialInfo.ior = 1.5; + materialInfo.f0_dielectric = vec3(0.04); + materialInfo.specularWeight = 1.0; + + // Anything less than 2% is physically impossible and is instead considered to be shadowing. Compare to "Real-Time-Rendering" 4th editon on page 325. + materialInfo.f90 = vec3(1.0); + materialInfo.f90_dielectric = materialInfo.f90; + + #ifdef MATERIAL_IOR + materialInfo = getIorInfo(materialInfo); + #endif + + #ifdef MATERIAL_METALLICROUGHNESS + materialInfo = getMetallicRoughnessInfo(materialInfo); + #endif + + #ifdef MATERIAL_SHEEN + materialInfo = getSheenInfo(materialInfo); + #endif + )" + }, + { + "frag_v1_chunk_01a.glsl", R"( + + #ifdef MATERIAL_CLEARCOAT + materialInfo = getClearCoatInfo(materialInfo, normalInfo); + #endif + + #ifdef MATERIAL_SPECULAR + materialInfo = getSpecularInfo(materialInfo); + #endif + + #ifdef MATERIAL_TRANSMISSION + materialInfo = getTransmissionInfo(materialInfo); + #endif + + #ifdef MATERIAL_VOLUME + materialInfo = getVolumeInfo(materialInfo); + #endif + + #ifdef MATERIAL_IRIDESCENCE + materialInfo = getIridescenceInfo(materialInfo); + #endif + + #ifdef MATERIAL_DIFFUSE_TRANSMISSION + materialInfo = getDiffuseTransmissionInfo(materialInfo); + #endif + + #ifdef MATERIAL_ANISOTROPY + materialInfo = getAnisotropyInfo(materialInfo, normalInfo); + #endif + + materialInfo.perceptualRoughness = clamp(materialInfo.perceptualRoughness, 0.0, 1.0); + materialInfo.metallic = clamp(materialInfo.metallic, 0.0, 1.0); + + // Roughness is authored as perceptual roughness; as is convention, + // convert to material roughness by squaring the perceptual roughness. + materialInfo.alphaRoughness = materialInfo.perceptualRoughness * materialInfo.perceptualRoughness; + + + // LIGHTING + vec3 f_specular_dielectric = vec3(0.0); + vec3 f_specular_metal = vec3(0.0); + vec3 f_diffuse = vec3(0.0); + vec3 f_dielectric_brdf_ibl = vec3(0.0); + vec3 f_metal_brdf_ibl = vec3(0.0); + vec3 f_emissive = vec3(0.0); + vec3 clearcoat_brdf = vec3(0.0); + vec3 f_sheen = vec3(0.0); + vec3 f_specular_transmission = vec3(0.0); + vec3 f_diffuse_transmission = vec3(0.0); + + float clearcoatFactor = 0.0; + vec3 clearcoatFresnel = vec3(0); + )" + }, + { + "frag_v1_chunk_01b.glsl", R"( + float albedoSheenScaling = 1.0; + float diffuseTransmissionThickness = 1.0; + + #ifdef MATERIAL_IRIDESCENCE + vec3 iridescenceFresnel_dielectric = evalIridescence(1.0, materialInfo.iridescenceIor, NdotV, materialInfo.iridescenceThickness, materialInfo.f0_dielectric); + vec3 iridescenceFresnel_metallic = evalIridescence(1.0, materialInfo.iridescenceIor, NdotV, materialInfo.iridescenceThickness, baseColor.rgb); + + if (materialInfo.iridescenceThickness == 0.0) { + materialInfo.iridescenceFactor = 0.0; + } + #endif + + #ifdef MATERIAL_DIFFUSE_TRANSMISSION + #ifdef MATERIAL_VOLUME + diffuseTransmissionThickness = materialInfo.thickness * + (length(vec3(u_ModelMatrix[0].xyz)) + length(vec3(u_ModelMatrix[1].xyz)) + length(vec3(u_ModelMatrix[2].xyz))) / 3.0; + #endif + #endif + + #ifdef MATERIAL_CLEARCOAT + clearcoatFactor = materialInfo.clearcoatFactor; + clearcoatFresnel = F_Schlick(materialInfo.clearcoatF0, materialInfo.clearcoatF90, clampedDot(materialInfo.clearcoatNormal, v)); + #endif + + // Calculate lighting contribution from image based lighting source (IBL) + + #if defined(USE_IBL) || defined(MATERIAL_TRANSMISSION) + + f_diffuse = getDiffuseLight(n) * baseColor.rgb ; + + #ifdef MATERIAL_DIFFUSE_TRANSMISSION + vec3 diffuseTransmissionIBL = getDiffuseLight(-n) * materialInfo.diffuseTransmissionColorFactor; + #ifdef MATERIAL_VOLUME + diffuseTransmissionIBL = applyVolumeAttenuation(diffuseTransmissionIBL, diffuseTransmissionThickness, materialInfo.attenuationColor, materialInfo.attenuationDistance); + #endif + f_diffuse = mix(f_diffuse, diffuseTransmissionIBL, materialInfo.diffuseTransmissionFactor); + #endif + + + #if defined(MATERIAL_TRANSMISSION) + f_specular_transmission = getIBLVolumeRefraction( + n, v, + materialInfo.perceptualRoughness, + baseColor.rgb, v_Position, u_ModelMatrix, u_ViewMatrix, u_ProjectionMatrix, + materialInfo.ior, materialInfo.thickness, materialInfo.attenuationColor, materialInfo.attenuationDistance, materialInfo.dispersion); + f_diffuse = mix(f_diffuse, f_specular_transmission, materialInfo.transmissionFactor); + #endif + )" + }, + { + "frag_v1_chunk_02a.glsl", R"( + + #ifdef MATERIAL_ANISOTROPY + f_specular_metal = getIBLRadianceAnisotropy(n, v, materialInfo.perceptualRoughness, materialInfo.anisotropyStrength, materialInfo.anisotropicB); + f_specular_dielectric = f_specular_metal; + #else + f_specular_metal = getIBLRadianceGGX(n, v, materialInfo.perceptualRoughness); + f_specular_dielectric = f_specular_metal; + #endif + + // Calculate fresnel mix for IBL + + vec3 f_metal_fresnel_ibl = getIBLGGXFresnel(n, v, materialInfo.perceptualRoughness, baseColor.rgb, 1.0); + f_metal_brdf_ibl = f_metal_fresnel_ibl * f_specular_metal; + + vec3 f_dielectric_fresnel_ibl = getIBLGGXFresnel(n, v, materialInfo.perceptualRoughness, materialInfo.f0_dielectric, materialInfo.specularWeight); + f_dielectric_brdf_ibl = mix(f_diffuse, f_specular_dielectric, f_dielectric_fresnel_ibl); + + #ifdef MATERIAL_IRIDESCENCE + f_metal_brdf_ibl = mix(f_metal_brdf_ibl, f_specular_metal * iridescenceFresnel_metallic, materialInfo.iridescenceFactor); + f_dielectric_brdf_ibl = mix(f_dielectric_brdf_ibl, rgb_mix(f_diffuse, f_specular_dielectric, iridescenceFresnel_dielectric), materialInfo.iridescenceFactor); + #endif + + #ifdef MATERIAL_CLEARCOAT + clearcoat_brdf = getIBLRadianceGGX(materialInfo.clearcoatNormal, v, materialInfo.clearcoatRoughness); + #endif + + #ifdef MATERIAL_SHEEN + f_sheen = getIBLRadianceCharlie(n, v, materialInfo.sheenRoughnessFactor, materialInfo.sheenColorFactor); + albedoSheenScaling = 1.0 - max3(materialInfo.sheenColorFactor) * albedoSheenScalingLUT(NdotV, materialInfo.sheenRoughnessFactor); + #endif + + color = mix(f_dielectric_brdf_ibl, f_metal_brdf_ibl, materialInfo.metallic); + color = f_sheen + color * albedoSheenScaling; + color = mix(color, clearcoat_brdf, clearcoatFactor * clearcoatFresnel); + + #ifdef HAS_OCCLUSION_MAP + float ao = 1.0; + ao = texture(u_OcclusionSampler, getOcclusionUV()).r; + color = color * (1.0 + u_OcclusionStrength * (ao - 1.0)); + //temp_origBaseColor.rgb *= (1.0 + u_OcclusionStrength * (ao - 1.0)); + + //color = vec4(1.0, 0.0, 0.5, 1.0); + #endif + + //#else // Temporary addition to enable occlusion maps in non-IBL mode, which isn't physically accurate and should eventually be removed. + //#ifdef HAS_OCCLUSION_MAP + // float ao = 1.0; + // ao = texture(u_OcclusionSampler, getOcclusionUV()).r; + // //color = vec3(1.0, 0.0, 0.5); + // color = color * (1.0 + u_OcclusionStrength * (ao - 1.0)); + //#endif + #endif //end USE_IBL + + + f_diffuse = vec3(0.0); + + )" + }, + { + "frag_v1_chunk_02b.glsl", R"( + + f_specular_dielectric = vec3(0.0); + f_specular_metal = vec3(0.0); + vec3 f_dielectric_brdf = vec3(0.0); + vec3 f_metal_brdf = vec3(0.0); + + #ifdef USE_PUNCTUAL + /* + Light temp_keylight = Light( + normalize(vec3(-0.1, -0.75, -0.45)), //vec3 direction + -1.0, //float range + vec3(1.0, 1.0, 1.0), //vec3 color + 1.0, //float intensity + vec3(0.0, 0.0, 0.0), //vec3 position + 0.0, //float innerConeCos + 0.0, //float outerConeCos + 0 //int type; + // const Type_Directional = 0; + // const Type_Point = 1; + // const Type_Spot = 2; + ); + Light temp_filllight = Light( + normalize(-vec3(-0.2, -0.65, -0.35)), //vec3 direction + -1.0, //float range + vec3(1.0, 1.0, 1.0), //vec3 color + 0.5, //float intensity + vec3(0.0, 0.0, 0.0), //vec3 position + 0.0, //float innerConeCos + 0.0, //float outerConeCos + 0 //int type; + // const Type_Directional = 0; + // const Type_Point = 1; + // const Type_Spot = 2; + ); + )" + }, + { + "frag_v1_chunk_03a.glsl", R"( + + u_Lights[1] = temp_keylight; + u_Lights[2] = temp_filllight; + */ + for (int i = 0; i < LIGHT_COUNT; ++i) + { + Light light = u_Lights[i+1]; + + vec3 pointToLight; + if (light.type != LightType_Directional) + { + pointToLight = light.position - v_Position; + } + else + { + pointToLight = -light.direction; + } + + // BSTF + + vec3 l = normalize(pointToLight); // Direction from surface point to light + vec3 h = normalize(l + v); // Direction of the vector between l and v, called halfway vector + float NdotL = clampedDot(n, l); + float NdotV = clampedDot(n, v); + float NdotH = clampedDot(n, h); + float LdotH = clampedDot(l, h); + float VdotH = clampedDot(v, h); + + vec3 dielectric_fresnel = F_Schlick(materialInfo.f0_dielectric * materialInfo.specularWeight, materialInfo.f90_dielectric, abs(VdotH)); + vec3 metal_fresnel = F_Schlick(baseColor.rgb, vec3(1.0), abs(VdotH)); + + vec3 lightIntensity = getLighIntensity(light, pointToLight); + + vec3 l_diffuse = lightIntensity * NdotL * BRDF_lambertian(baseColor.rgb); + vec3 l_specular_dielectric = vec3(0.0); + vec3 l_specular_metal = vec3(0.0); + vec3 l_dielectric_brdf = vec3(0.0); + vec3 l_metal_brdf = vec3(0.0); + vec3 l_clearcoat_brdf = vec3(0.0); + vec3 l_sheen = vec3(0.0); + float l_albedoSheenScaling = 1.0; + + #ifdef MATERIAL_DIFFUSE_TRANSMISSION + l_diffuse = l_diffuse * (1.0 - materialInfo.diffuseTransmissionFactor); + if (dot(n, l) < 0.0) { + float diffuseNdotL = clampedDot(-n, l); + vec3 diffuse_btdf = lightIntensity * diffuseNdotL * BRDF_lambertian(materialInfo.diffuseTransmissionColorFactor); + + vec3 l_mirror = normalize(l + 2.0 * n * dot(-l, n)); // Mirror light reflection vector on surface + float diffuseVdotH = clampedDot(v, normalize(l_mirror + v)); + dielectric_fresnel = F_Schlick(materialInfo.f0_dielectric * materialInfo.specularWeight, materialInfo.f90_dielectric, abs(diffuseVdotH)); + + #ifdef MATERIAL_VOLUME + diffuse_btdf = applyVolumeAttenuation(diffuse_btdf, diffuseTransmissionThickness, materialInfo.attenuationColor, materialInfo.attenuationDistance); + #endif + l_diffuse += diffuse_btdf * materialInfo.diffuseTransmissionFactor; + } + #endif // MATERIAL_DIFFUSE_TRANSMISSION + + //temp_origBaseColor.rgb = vec3(l_diffuse); + )" + }, + { + "frag_v1_chunk_03b.glsl", R"( + // BTDF (Bidirectional Transmittance Distribution Function) + #ifdef MATERIAL_TRANSMISSION + // If the light ray travels through the geometry, use the point it exits the geometry again. + // That will change the angle to the light source, if the material refracts the light ray. + vec3 transmissionRay = getVolumeTransmissionRay(n, v, materialInfo.thickness, materialInfo.ior, u_ModelMatrix); + pointToLight -= transmissionRay; + l = normalize(pointToLight); + + vec3 transmittedLight = lightIntensity * getPunctualRadianceTransmission(n, v, l, materialInfo.alphaRoughness, baseColor.rgb, materialInfo.ior); + + #ifdef MATERIAL_VOLUME + transmittedLight = applyVolumeAttenuation(transmittedLight, length(transmissionRay), materialInfo.attenuationColor, materialInfo.attenuationDistance); + #endif + l_diffuse = mix(l_diffuse, transmittedLight, materialInfo.transmissionFactor); + #endif + // Calculation of analytical light + // https://github.com/KhronosGroup/glTF/tree/master/specification/2.0#acknowledgments AppendixB + vec3 intensity = getLighIntensity(light, pointToLight); + + #ifdef MATERIAL_ANISOTROPY + l_specular_metal = intensity * NdotL * BRDF_specularGGXAnisotropy(materialInfo.alphaRoughness, materialInfo.anisotropyStrength, n, v, l, h, materialInfo.anisotropicT, materialInfo.anisotropicB); + l_specular_dielectric = l_specular_metal; + #else + l_specular_metal = intensity * NdotL * BRDF_specularGGX(materialInfo.alphaRoughness, NdotL, NdotV, NdotH); + l_specular_dielectric = l_specular_metal; + #endif + + l_metal_brdf = metal_fresnel * l_specular_metal; + l_dielectric_brdf = mix(l_diffuse, l_specular_dielectric, dielectric_fresnel); // Do we need to handle vec3 fresnel here? + + + #ifdef MATERIAL_IRIDESCENCE + l_metal_brdf = mix(l_metal_brdf, l_specular_metal * iridescenceFresnel_metallic, materialInfo.iridescenceFactor); + l_dielectric_brdf = mix(l_dielectric_brdf, rgb_mix(l_diffuse, l_specular_dielectric, iridescenceFresnel_dielectric), materialInfo.iridescenceFactor); + #endif + + #ifdef MATERIAL_CLEARCOAT + l_clearcoat_brdf = intensity * getPunctualRadianceClearCoat(materialInfo.clearcoatNormal, v, l, h, VdotH, + materialInfo.clearcoatF0, materialInfo.clearcoatF90, materialInfo.clearcoatRoughness); + #endif + + #ifdef MATERIAL_SHEEN + l_sheen = intensity * getPunctualRadianceSheen(materialInfo.sheenColorFactor, materialInfo.sheenRoughnessFactor, NdotL, NdotV, NdotH); + l_albedoSheenScaling = min(1.0 - max3(materialInfo.sheenColorFactor) * albedoSheenScalingLUT(NdotV, materialInfo.sheenRoughnessFactor), + 1.0 - max3(materialInfo.sheenColorFactor) * albedoSheenScalingLUT(NdotL, materialInfo.sheenRoughnessFactor)); + #endif + + //temp_origBaseColor.rgb = (l_metal_brdf + l_dielectric_brdf).xyz; + + vec3 l_color = mix(l_dielectric_brdf, l_metal_brdf, materialInfo.metallic); + l_color = l_sheen + l_color * l_albedoSheenScaling; + l_color = mix(l_color, l_clearcoat_brdf, clearcoatFactor * clearcoatFresnel); + color += l_color; + } + #endif // USE_PUNCTUAL + )" + }, + { + "frag_v1_chunk_04.glsl", R"( + f_emissive = u_EmissiveFactor; + #ifdef MATERIAL_EMISSIVE_STRENGTH + f_emissive *= u_EmissiveStrength; + #endif + #ifdef HAS_EMISSIVE_MAP + f_emissive *= texture(u_EmissiveSampler, getEmissiveUV()).rgb; + #endif + + + #ifdef MATERIAL_UNLIT + //#ifdef HAS_EMISSIVE_MAP + // color = texture(u_EmissiveSampler, getEmissiveUV()).rgb; + //#else + color = baseColor.rgb; + //#endif + #elif defined(NOT_TRIANGLE) && !defined(HAS_NORMAL_VEC3) + //Points or Lines with no NORMAL attribute SHOULD be rendered without lighting and instead use the sum of the base color value and the emissive value. + color = f_emissive + baseColor.rgb; + #else + color = f_emissive * (1.0 - clearcoatFactor * clearcoatFresnel) + color; + #endif + + //#if DEBUG == DEBUG_NONE + + #if ALPHAMODE == _MASK + // Late discard to avoid sampling artifacts. See https://github.com/KhronosGroup/glTF-Sample-Viewer/issues/267 + if (baseColor.a < u_AlphaCutoff) + { + discard; + } + baseColor.a = 1.0; + #endif + + #ifdef LINEAR_OUTPUT + g_finalColor = vec4(color.rgb, baseColor.a); + #else + g_finalColor = vec4(toneMap(color), baseColor.a); + #endif + + + /* + #else + // In case of missing data for a debug view, render a checkerboard. + g_finalColor = vec4(1.0); + { + float frequency = 0.02; + float gray = 0.9; + + vec2 v1 = step(0.5, fract(frequency * gl_FragCoord.xy)); + vec2 v2 = step(0.5, vec2(1.0) - fract(frequency * gl_FragCoord.xy)); + g_finalColor.rgb *= gray + v1.x * v1.y + v2.x * v2.y; + } + #endif + + + + // Debug views: + + // Generic: + + #if DEBUG == DEBUG_UV_0 && defined(HAS_TEXCOORD_0_VEC2) + g_finalColor.rgb = vec3(v_texcoord_0, 0); + #endif + #if DEBUG == DEBUG_UV_1 && defined(HAS_TEXCOORD_1_VEC2) + g_finalColor.rgb = vec3(v_texcoord_1, 0); + #endif + #if DEBUG == DEBUG_NORMAL_TEXTURE && defined(HAS_NORMAL_MAP) + g_finalColor.rgb = (normalInfo.ntex + 1.0) / 2.0; + #endif + #if DEBUG == DEBUG_NORMAL_SHADING + g_finalColor.rgb = (n + 1.0) / 2.0; + #endif + #if DEBUG == DEBUG_NORMAL_GEOMETRY + g_finalColor.rgb = (normalInfo.ng + 1.0) / 2.0; + #endif + #if DEBUG == DEBUG_TANGENT + g_finalColor.rgb = (normalInfo.t + 1.0) / 2.0; + #endif + #if DEBUG == DEBUG_BITANGENT + g_finalColor.rgb = (normalInfo.b + 1.0) / 2.0; + #endif + #if DEBUG == DEBUG_ALPHA + g_finalColor.rgb = vec3(baseColor.a); + #endif + #if DEBUG == DEBUG_OCCLUSION && defined(HAS_OCCLUSION_MAP) + g_finalColor.rgb = vec3(ao); + #endif + #if DEBUG == DEBUG_EMISSIVE + g_finalColor.rgb = linearTosRGB(f_emissive); + #endif + + + #if DEBUG == DEBUG_METALLIC + g_finalColor.rgb = vec3(materialInfo.metallic); + #endif + #if DEBUG == DEBUG_ROUGHNESS + g_finalColor.rgb = vec3(materialInfo.perceptualRoughness); + #endif + #if DEBUG == DEBUG_BASE_COLOR + g_finalColor.rgb = linearTosRGB(materialInfo.baseColor); + #endif + )" + }, + { + "frag_v1_chunk_05.glsl", R"( + // Clearcoat: + #ifdef MATERIAL_CLEARCOAT + #if DEBUG == DEBUG_CLEARCOAT_FACTOR + g_finalColor.rgb = vec3(materialInfo.clearcoatFactor); + #endif + #if DEBUG == DEBUG_CLEARCOAT_ROUGHNESS + g_finalColor.rgb = vec3(materialInfo.clearcoatRoughness); + #endif + #if DEBUG == DEBUG_CLEARCOAT_NORMAL + g_finalColor.rgb = (materialInfo.clearcoatNormal + vec3(1)) / 2.0; + #endif + #endif + + // Sheen: + #ifdef MATERIAL_SHEEN + #if DEBUG == DEBUG_SHEEN_COLOR + g_finalColor.rgb = materialInfo.sheenColorFactor; + #endif + #if DEBUG == DEBUG_SHEEN_ROUGHNESS + g_finalColor.rgb = vec3(materialInfo.sheenRoughnessFactor); + #endif + #endif + + // Specular: + #ifdef MATERIAL_SPECULAR + #if DEBUG == DEBUG_SPECULAR_FACTOR + g_finalColor.rgb = vec3(materialInfo.specularWeight); + #endif + + #if DEBUG == DEBUG_SPECULAR_COLOR + vec3 specularTexture = vec3(1.0); + #ifdef HAS_SPECULAR_COLOR_MAP + specularTexture.rgb = texture(u_SpecularColorSampler, getSpecularColorUV()).rgb; + #endif + g_finalColor.rgb = u_KHR_materials_specular_specularColorFactor * specularTexture.rgb; + #endif + #endif + + // Transmission, Volume: + #ifdef MATERIAL_TRANSMISSION + #if DEBUG == DEBUG_TRANSMISSION_FACTOR + g_finalColor.rgb = vec3(materialInfo.transmissionFactor); + #endif + #endif + #ifdef MATERIAL_VOLUME + #if DEBUG == DEBUG_VOLUME_THICKNESS + g_finalColor.rgb = vec3(materialInfo.thickness / u_ThicknessFactor); + #endif + #endif + + // Iridescence: + #ifdef MATERIAL_IRIDESCENCE + #if DEBUG == DEBUG_IRIDESCENCE_FACTOR + g_finalColor.rgb = vec3(materialInfo.iridescenceFactor); + #endif + #if DEBUG == DEBUG_IRIDESCENCE_THICKNESS + g_finalColor.rgb = vec3(materialInfo.iridescenceThickness / 1200.0); + #endif + #endif + + // Anisotropy: + #ifdef MATERIAL_ANISOTROPY + #if DEBUG == DEBUG_ANISOTROPIC_STRENGTH + g_finalColor.rgb = vec3(materialInfo.anisotropyStrength); + #endif + #if DEBUG == DEBUG_ANISOTROPIC_DIRECTION + vec2 direction = vec2(1.0, 0.0); + #ifdef HAS_ANISOTROPY_MAP + direction = texture(u_AnisotropySampler, getAnisotropyUV()).xy; + direction = direction * 2.0 - vec2(1.0); // [0, 1] -> [-1, 1] + #endif + vec2 directionRotation = u_Anisotropy.xy; // cos(theta), sin(theta) + mat2 rotationMatrix = mat2(directionRotation.x, directionRotation.y, -directionRotation.y, directionRotation.x); + direction = (direction + vec2(1.0)) * 0.5; // [-1, 1] -> [0, 1] + + g_finalColor.rgb = vec3(direction, 0.0); + #endif + #endif + + // Diffuse Transmission: + #ifdef MATERIAL_DIFFUSE_TRANSMISSION + #if DEBUG == DEBUG_DIFFUSE_TRANSMISSION_FACTOR + g_finalColor.rgb = linearTosRGB(vec3(materialInfo.diffuseTransmissionFactor)); + #endif + #if DEBUG == DEBUG_DIFFUSE_TRANSMISSION_COLOR_FACTOR + g_finalColor.rgb = linearTosRGB(materialInfo.diffuseTransmissionColorFactor); + #endif + #endif + */ + } + )" + }, + + { + "cubemap.vert", R"( + uniform mat4 u_ViewProjectionMatrix; + uniform mat3 u_EnvRotation; + + in vec3 a_position; + out vec3 v_TexCoords; + + void main() + { + v_TexCoords = u_EnvRotation * a_position; + mat4 mat = u_ViewProjectionMatrix; + mat[3] = vec4(0.0, 0.0, 0.0, 0.1); + vec4 pos = mat * vec4(a_position, 1.0); + gl_Position = pos.xyww; + } + )" + }, + { + "cubemap.frag", R"( + precision highp float; +#include + uniform float u_EnvIntensity; + uniform float u_EnvBlurNormalized; + uniform int u_MipCount; + uniform samplerCube u_GGXEnvSampler; + + out vec4 FragColor; + in vec3 v_TexCoords; + + + void main() + { + vec4 color = textureLod(u_GGXEnvSampler, v_TexCoords, u_EnvBlurNormalized * float(u_MipCount - 1)); + color.rgb *= u_EnvIntensity; + color.a = 1.0; + + #ifdef LINEAR_OUTPUT + FragColor = color.rgba; + #else + FragColor = vec4(toneMap(color.rgb), color.a); + #endif + } + + )" + }, +}; + +static lv_shader_key_value_t env_src_includes[] = { + { + "fullscreen.vert", R"( + precision highp float; + + out vec2 texCoord; + + void main(void) + { + float x = float((gl_VertexID & 1) << 2); + float y = float((gl_VertexID & 2) << 1); + texCoord.x = x * 0.5; + texCoord.y = y * 0.5; + gl_Position = vec4(x - 1.0, y - 1.0, 0, 1); + } + )" + }, + { + "panorama_to_cubemap.frag", R"( + #define MATH_PI 3.1415926535897932384626433832795 + #define MATH_INV_PI (1.0 / MATH_PI) + + precision highp float; + + in vec2 texCoord; + out vec4 fragmentColor; + + uniform int u_currentFace; + uniform sampler2D u_panorama; + + vec3 uvToXYZ(int face, vec2 uv) + { + if(face == 0) + return vec3( 1.f, uv.y, -uv.x); + + else if(face == 1) + return vec3( -1.f, uv.y, uv.x); + + else if(face == 2) + return vec3( +uv.x, -1.f, +uv.y); + + else if(face == 3) + return vec3( +uv.x, 1.f, -uv.y); + + else if(face == 4) + return vec3( +uv.x, uv.y, 1.f); + + else //if(face == 5) + { return vec3( -uv.x, +uv.y, -1.f);} + } + + vec2 dirToUV(vec3 dir) + { + return vec2( + 0.5f + 0.5f * atan(dir.z, dir.x) / MATH_PI, + 1.f - acos(dir.y) / MATH_PI); + } + + vec3 panoramaToCubeMap(int face, vec2 texCoord) + { + vec2 texCoordNew = texCoord*2.0-1.0; + vec3 scan = uvToXYZ(face, texCoordNew); + vec3 direction = normalize(scan); + vec2 src = dirToUV(direction); + + return texture(u_panorama, src).rgb; + } + + void main(void) + { + fragmentColor = vec4(0.0, 0.0, 0.0, 1.0); + + fragmentColor.rgb = panoramaToCubeMap(u_currentFace, texCoord); + } + + )" + }, + { + "ibl_filtering.frag", R"( +#include +#include +#include +#include +#include +#include + )" + }, + { + "ibl_filtering1.glsl", R"( + + //#version 450 + //#extension GL_ARB_separate_shader_objects : enable + + precision highp float; + #define MATH_PI 3.1415926535897932384626433832795 + //#define MATH_INV_PI (1.0 / MATH_PI) + + uniform samplerCube u_cubemapTexture; + + // enum + const int cLambertian = 0; + const int cGGX = 1; + const int cCharlie = 2; + + + //layout(push_constant) uniform FilterParameters { + uniform float u_roughness; + uniform int u_sampleCount; + uniform int u_width; + uniform float u_lodBias; + uniform int u_distribution; // enum + uniform int u_currentFace; + uniform int u_isGeneratingLUT; + + // 0: Byte Target Texture (normalized) + // 1: Float Target Texture + uniform int u_floatTexture; + + uniform float u_intensityScale; + + //layout (location = 0) in vec2 inUV; + in vec2 texCoord; + + + out vec4 fragmentColor; + + //layout(location = 6) out vec3 outLUT; + + + vec3 uvToXYZ(int face, vec2 uv) + { + if(face == 0) + return vec3( 1.f, uv.y, -uv.x); + + else if(face == 1) + return vec3( -1.f, uv.y, uv.x); + + else if(face == 2) + return vec3( +uv.x, -1.f, +uv.y); + + else if(face == 3) + return vec3( +uv.x, 1.f, -uv.y); + + else if(face == 4) + return vec3( +uv.x, uv.y, 1.f); + + else {//if(face == 5) + return vec3( -uv.x, +uv.y, -1.f);} + } + + vec2 dirToUV(vec3 dir) + { + return vec2( + 0.5f + 0.5f * atan(dir.z, dir.x) / MATH_PI, + 1.f - acos(dir.y) / MATH_PI); + } + + float saturate(float v) + { + return clamp(v, 0.0f, 1.0f); + } + + // Hammersley Points on the Hemisphere + // CC BY 3.0 (Holger Dammertz) + // http://holger.dammertz.org/stuff/notes_HammersleyOnHemisphere.html + // with adapted interface + float radicalInverse_VdC(uint bits) + { + bits = (bits << 16u) | (bits >> 16u); + bits = ((bits & 0x55555555u) << 1u) | ((bits & 0xAAAAAAAAu) >> 1u); + bits = ((bits & 0x33333333u) << 2u) | ((bits & 0xCCCCCCCCu) >> 2u); + bits = ((bits & 0x0F0F0F0Fu) << 4u) | ((bits & 0xF0F0F0F0u) >> 4u); + bits = ((bits & 0x00FF00FFu) << 8u) | ((bits & 0xFF00FF00u) >> 8u); + return float(bits) * 2.3283064365386963e-10; // / 0x100000000 + } + )" + }, + { + "ibl_filtering2.glsl", R"( + // hammersley2d describes a sequence of points in the 2d unit square [0,1)^2 + // that can be used for quasi Monte Carlo integration + vec2 hammersley2d(int i, int N) { + return vec2(float(i)/float(N), radicalInverse_VdC(uint(i))); + } + + // Hemisphere Sample + + // TBN generates a tangent bitangent normal coordinate frame from the normal + // (the normal must be normalized) + mat3 generateTBN(vec3 normal) + { + vec3 bitangent = vec3(0.0, 1.0, 0.0); + + float NdotUp = dot(normal, vec3(0.0, 1.0, 0.0)); + float epsilon = 0.0000001; + if (1.0 - abs(NdotUp) <= epsilon) + { + // Sampling +Y or -Y, so we need a more robust bitangent. + if (NdotUp > 0.0) + { + bitangent = vec3(0.0, 0.0, 1.0); + } + else + { + bitangent = vec3(0.0, 0.0, -1.0); + } + } + + vec3 tangent = normalize(cross(bitangent, normal)); + bitangent = cross(normal, tangent); + + return mat3(tangent, bitangent, normal); + } + + struct MicrofacetDistributionSample + { + float pdf; + float cosTheta; + float sinTheta; + float phi; + }; + + float D_GGX(float NdotH, float roughness) { + float a = NdotH * roughness; + float k = roughness / (1.0 - NdotH * NdotH + a * a); + return k * k * (1.0 / MATH_PI); + } + + // GGX microfacet distribution + // https://www.cs.cornell.edu/~srm/publications/EGSR07-btdf.html + // This implementation is based on https://bruop.github.io/ibl/, + // https://www.tobias-franke.eu/log/2014/03/30/notes_on_importance_sampling.html + // and https://developer.nvidia.com/gpugems/GPUGems3/gpugems3_ch20.html + MicrofacetDistributionSample GGX(vec2 xi, float roughness) + { + MicrofacetDistributionSample ggx; + + // evaluate sampling equations + float alpha = roughness * roughness; + ggx.cosTheta = saturate(sqrt((1.0 - xi.y) / (1.0 + (alpha * alpha - 1.0) * xi.y))); + ggx.sinTheta = sqrt(1.0 - ggx.cosTheta * ggx.cosTheta); + ggx.phi = 2.0 * MATH_PI * xi.x; + + // evaluate GGX pdf (for half vector) + ggx.pdf = D_GGX(ggx.cosTheta, alpha); + + // Apply the Jacobian to obtain a pdf that is parameterized by l + // see https://bruop.github.io/ibl/ + // Typically you'd have the following: + // float pdf = D_GGX(NoH, roughness) * NoH / (4.0 * VoH); + // but since V = N => VoH == NoH + ggx.pdf /= 4.0; + + return ggx; + } + + // NDF + float D_Ashikhmin(float NdotH, float roughness) + { + float alpha = roughness * roughness; + // Ashikhmin 2007, "Distribution-based BRDFs" + float a2 = alpha * alpha; + float cos2h = NdotH * NdotH; + float sin2h = 1.0 - cos2h; + float sin4h = sin2h * sin2h; + float cot2 = -cos2h / (a2 * sin2h); + return 1.0 / (MATH_PI * (4.0 * a2 + 1.0) * sin4h) * (4.0 * exp(cot2) + sin4h); + } + )" + }, + { + "ibl_filtering3.glsl", R"( + // NDF + float D_Charlie(float sheenRoughness, float NdotH) + { + sheenRoughness = max(sheenRoughness, 0.000001); //clamp (0,1] + float invR = 1.0 / sheenRoughness; + float cos2h = NdotH * NdotH; + float sin2h = 1.0 - cos2h; + return (2.0 + invR) * pow(sin2h, invR * 0.5) / (2.0 * MATH_PI); + } + + + MicrofacetDistributionSample Charlie(vec2 xi, float roughness) + { + MicrofacetDistributionSample charlie; + + float alpha = roughness * roughness; + charlie.sinTheta = pow(xi.y, alpha / (2.0*alpha + 1.0)); + charlie.cosTheta = sqrt(1.0 - charlie.sinTheta * charlie.sinTheta); + charlie.phi = 2.0 * MATH_PI * xi.x; + + // evaluate Charlie pdf (for half vector) + charlie.pdf = D_Charlie(alpha, charlie.cosTheta); + + // Apply the Jacobian to obtain a pdf that is parameterized by l + charlie.pdf /= 4.0; + + return charlie; + } + + MicrofacetDistributionSample Lambertian(vec2 xi, float roughness) + { + MicrofacetDistributionSample lambertian; + + // Cosine weighted hemisphere sampling + // http://www.pbr-book.org/3ed-2018/Monte_Carlo_Integration/2D_Sampling_with_Multidimensional_Transformations.html#Cosine-WeightedHemisphereSampling + lambertian.cosTheta = sqrt(1.0 - xi.y); + lambertian.sinTheta = sqrt(xi.y); // equivalent to `sqrt(1.0 - cosTheta*cosTheta)`; + lambertian.phi = 2.0 * MATH_PI * xi.x; + + lambertian.pdf = lambertian.cosTheta / MATH_PI; // evaluation for solid angle, therefore drop the sinTheta + + return lambertian; + } + + + // getImportanceSample returns an importance sample direction with pdf in the .w component + vec4 getImportanceSample(int sampleIndex, vec3 N, float roughness) + { + // generate a quasi monte carlo point in the unit square [0.1)^2 + vec2 xi = hammersley2d(sampleIndex, u_sampleCount); + + MicrofacetDistributionSample importanceSample; + + // generate the points on the hemisphere with a fitting mapping for + // the distribution (e.g. lambertian uses a cosine importance) + if(u_distribution == cLambertian) + { + importanceSample = Lambertian(xi, roughness); + } + else if(u_distribution == cGGX) + { + // Trowbridge-Reitz / GGX microfacet model (Walter et al) + // https://www.cs.cornell.edu/~srm/publications/EGSR07-btdf.html + importanceSample = GGX(xi, roughness); + } + else if(u_distribution == cCharlie) + { + importanceSample = Charlie(xi, roughness); + } + + // transform the hemisphere sample to the normal coordinate frame + // i.e. rotate the hemisphere to the normal direction + vec3 localSpaceDirection = normalize(vec3( + importanceSample.sinTheta * cos(importanceSample.phi), + importanceSample.sinTheta * sin(importanceSample.phi), + importanceSample.cosTheta + )); + mat3 TBN = generateTBN(N); + vec3 direction = TBN * localSpaceDirection; + + return vec4(direction, importanceSample.pdf); + } + )" + }, + { + "ibl_filtering4.glsl", R"( + // Mipmap Filtered Samples (GPU Gems 3, 20.4) + // https://developer.nvidia.com/gpugems/gpugems3/part-iii-rendering/chapter-20-gpu-based-importance-sampling + // https://cgg.mff.cuni.cz/~jaroslav/papers/2007-sketch-fis/Final_sap_0073.pdf + float computeLod(float pdf) + { + // // Solid angle of current sample -- bigger for less likely samples + //float omegaS = 1.0 / (float(u_sampleCount) * pdf); + // // Solid angle of texel + // // note: the factor of 4.0 * MATH_PI + //float omegaP = 4.0 * MATH_PI / (6.0 * float(u_width) * float(u_width)); + // // Mip level is determined by the ratio of our sample's solid angle to a texel's solid angle + // // note that 0.5 * log2 is equivalent to log4 + //float lod = 0.5 * log2(omegaS / omegaP); + + // babylon introduces a factor of K (=4) to the solid angle ratio + // this helps to avoid undersampling the environment map + // this does not appear in the original formulation by Jaroslav Krivanek and Mark Colbert + // log4(4) == 1 + // lod += 1.0; + + // We achieved good results by using the original formulation from Krivanek & Colbert adapted to cubemaps + + // https://cgg.mff.cuni.cz/~jaroslav/papers/2007-sketch-fis/Final_sap_0073.pdf + float lod = 0.5 * log2( 6.0 * float(u_width) * float(u_width) / (float(u_sampleCount) * pdf)); + //float lod = 0.5 * log2( 3.0 * float(u_width) * float(u_width) / (float(u_sampleCount) * pdf)); + + + return lod; + } + + vec3 filterColor(vec3 N) + { + //return textureLod(u_cubemapTexture, N, 3.0).rgb; + vec3 color = vec3(0.f); + float weight = 0.0f; + + for(int i = 0; i < u_sampleCount; ++i) + { + vec4 importanceSample = getImportanceSample(i, N, u_roughness); + + vec3 H = vec3(importanceSample.xyz); + float pdf = importanceSample.w; + + // mipmap filtered samples (GPU Gems 3, 20.4) + float lod = computeLod(pdf); + + // apply the bias to the lod + lod += u_lodBias; + + if(u_distribution == cLambertian) + { + // sample lambertian at a lower resolution to avoid fireflies + vec3 lambertian = textureLod(u_cubemapTexture, H, lod).rgb * u_intensityScale; + + //// the below operations cancel each other out + // lambertian *= NdotH; // lamberts law + // lambertian /= pdf; // invert bias from importance sampling + // lambertian /= MATH_PI; // convert irradiance to radiance https://seblagarde.wordpress.com/2012/01/08/pi-or-not-to-pi-in-game-lighting-equation/ + + color += lambertian; + } + else if(u_distribution == cGGX || u_distribution == cCharlie) + { + // Note: reflect takes incident vector. + vec3 V = N; + vec3 L = normalize(reflect(-V, H)); + + float NdotL = dot(N, L); + + if (NdotL > 0.0) + { + if(u_roughness == 0.0) + { + // without this the roughness=0 lod is too high + lod = u_lodBias; + } + vec3 sampleColor = textureLod(u_cubemapTexture, L, lod).rgb * u_intensityScale; + color += sampleColor * NdotL; + weight += NdotL; + } + } + } + + if(weight != 0.0f) + { + color /= weight; + } + else + { + color /= float(u_sampleCount); + } + + return color.rgb ; + } + )" + }, + { + "ibl_filtering5.glsl", R"( + // From the filament docs. Geometric Shadowing function + // https://google.github.io/filament/Filament.html#toc4.4.2 + float V_SmithGGXCorrelated(float NoV, float NoL, float roughness) { + float a2 = pow(roughness, 4.0); + float GGXV = NoL * sqrt(NoV * NoV * (1.0 - a2) + a2); + float GGXL = NoV * sqrt(NoL * NoL * (1.0 - a2) + a2); + return 0.5 / (GGXV + GGXL); + } + + // https://github.com/google/filament/blob/master/shaders/src/brdf.fs#L136 + float V_Ashikhmin(float NdotL, float NdotV) + { + return clamp(1.0 / (4.0 * (NdotL + NdotV - NdotL * NdotV)), 0.0, 1.0); + } + + // Compute LUT for GGX distribution. + // See https://blog.selfshadow.com/publications/s2013-shading-course/karis/s2013_pbs_epic_notes_v2.pdf + vec3 LUT(float NdotV, float roughness) + { + // Compute spherical view vector: (sin(phi), 0, cos(phi)) + vec3 V = vec3(sqrt(1.0 - NdotV * NdotV), 0.0, NdotV); + + // The macro surface normal just points up. + vec3 N = vec3(0.0, 0.0, 1.0); + + // To make the LUT independant from the material's F0, which is part of the Fresnel term + // when substituted by Schlick's approximation, we factor it out of the integral, + // yielding to the form: F0 * I1 + I2 + // I1 and I2 are slighlty different in the Fresnel term, but both only depend on + // NoL and roughness, so they are both numerically integrated and written into two channels. + float A = 0.0; + float B = 0.0; + float C = 0.0; + + for(int i = 0; i < u_sampleCount; ++i) + { + // Importance sampling, depending on the distribution. + vec4 importanceSample = getImportanceSample(i, N, roughness); + vec3 H = importanceSample.xyz; + // float pdf = importanceSample.w; + vec3 L = normalize(reflect(-V, H)); + + float NdotL = saturate(L.z); + float NdotH = saturate(H.z); + float VdotH = saturate(dot(V, H)); + if (NdotL > 0.0) + { + if (u_distribution == cGGX) + { + // LUT for GGX distribution. + + // Taken from: https://bruop.github.io/ibl + // Shadertoy: https://www.shadertoy.com/view/3lXXDB + // Terms besides V are from the GGX PDF we're dividing by. + float V_pdf = V_SmithGGXCorrelated(NdotV, NdotL, roughness) * VdotH * NdotL / NdotH; + float Fc = pow(1.0 - VdotH, 5.0); + A += (1.0 - Fc) * V_pdf; + B += Fc * V_pdf; + C += 0.0; + } + + if (u_distribution == cCharlie) + { + // LUT for Charlie distribution. + float sheenDistribution = D_Charlie(roughness, NdotH); + float sheenVisibility = V_Ashikhmin(NdotL, NdotV); + + A += 0.0; + B += 0.0; + C += sheenVisibility * sheenDistribution * NdotL * VdotH; + } + } + } + + // The PDF is simply pdf(v, h) -> NDF * . + // To parametrize the PDF over l, use the Jacobian transform, yielding to: pdf(v, l) -> NDF * / 4 + // Since the BRDF divide through the PDF to be normalized, the 4 can be pulled out of the integral. + return vec3(4.0 * A, 4.0 * B, 4.0 * 2.0 * MATH_PI * C) / float(u_sampleCount); + } + )" + }, + { + "ibl_filtering6.glsl", R"( + + + // entry point + void main() + { + vec3 color = vec3(0); + + if(u_isGeneratingLUT == 0) + { + vec2 newUV = texCoord ; + + newUV = newUV*2.0-1.0; + + vec3 scan = uvToXYZ(u_currentFace, newUV); + + vec3 direction = normalize(scan); + + color = filterColor(direction); + } + else + { + color = LUT(texCoord.x, texCoord.y); + fragmentColor.rgb = color; + fragmentColor.a = 1.0; + return; + } + + fragmentColor.a = 1.0; + + if(u_floatTexture == 0) + { + float maxV = max(max(color.r,color.g),color.b); + color /= u_intensityScale; + color = clamp(color, 0.0f, 1.0f); + } + + fragmentColor.rgb = color; + } + )" + }, + { + "debug.frag", R"( + + precision highp float; + + in vec2 texCoord; + out vec4 fragmentColor; + + uniform int u_currentFace; + uniform samplerCube u_inputTexture; + + vec3 uvToXYZ(int face, vec2 uv) + { + if(face == 0) + return vec3( 1.f, uv.y, -uv.x); + + else if(face == 1) + return vec3( -1.f, uv.y, uv.x); + + else if(face == 2) + return vec3( +uv.x, -1.f, +uv.y); + + else if(face == 3) + return vec3( +uv.x, 1.f, -uv.y); + + else if(face == 4) + return vec3( +uv.x, uv.y, 1.f); + + else //if(face == 5) + { return vec3( -uv.x, +uv.y, -1.f);} + } + + + void main(void) + { + fragmentColor = vec4(texCoord.x*10.0, 0.0, texCoord.y*10.0, 1.0); + vec2 newUV =texCoord; + newUV = newUV*2.0-1.0; + + vec4 textureColor = vec4(0.0, 0.0, 0.0, 1.0); + + vec3 direction = normalize(uvToXYZ(u_currentFace, newUV.xy)); + + textureColor = textureLod(u_inputTexture, direction,1.0); + //textureColor = texture(u_inputTexture, texCoord); + + if(texCoord.x>0.1) + { + fragmentColor = textureColor; + } + + if(texCoord.y>0.1) + { + fragmentColor = textureColor; + } + + } + )" + }, +}; + +// Suppress unused variable warning +static inline void suppressUnusedWarning() +{ + (void)env_src_includes; + (void)src_includes; +} + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*GL_SHADERINCLUDES_H*/ diff --git a/lib/lv_gltf/view/sup/include/shader_v1.h b/lib/lv_gltf/view/sup/include/shader_v1.h new file mode 100644 index 0000000..81c4a27 --- /dev/null +++ b/lib/lv_gltf/view/sup/include/shader_v1.h @@ -0,0 +1,115 @@ +#ifndef GL_SHADERDEF_H +#define GL_SHADERDEF_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include "shader_includes.h" + +static const char * src_vertexShader = R"( + uniform mat4 u_ViewProjectionMatrix; + uniform mat4 u_ModelMatrix; + uniform mat4 u_NormalMatrix; + + + in vec3 a_position; + out vec3 v_Position; + +#include +#include +#include +// CHUNK 00 -> 01 +#include +)"; + +static const char *src_fragmentShader = R"( + + //#define LIGHT_COUNT 0 + + // + // This fragment shader defines a reference implementation for Physically Based Shading of + // a microfacet surface material defined by a glTF model. + // + // References: + // [1] Real Shading in Unreal Engine 4 + // http://blog.selfshadow.com/publications/s2013-shading-course/karis/s2013_pbs_epic_notes_v2.pdf + // [2] Physically Based Shading at Disney + // http://blog.selfshadow.com/publications/s2012-shading-course/burley/s2012_pbs_disney_brdf_notes_v3.pdf + // [3] README.md - Environment Maps + // https://github.com/KhronosGroup/glTF-WebGL-PBR/#environment-maps + // [4] "An Inexpensive BRDF Model for Physically based Rendering" by Christophe Schlick + // https://www.cs.virginia.edu/~jdl/bib/appearance/analytic%20models/schlick94b.pdf + // [5] "KHR_materials_clearcoat" + // https://github.com/KhronosGroup/glTF/tree/master/extensions/2.0/Khronos/KHR_materials_clearcoat + + precision highp float; + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + #ifdef MATERIAL_IRIDESCENCE +#include + #endif + +#include + +// CHUNK 00 -> 01 + +#include +#include + +// CHUNK 01 -> 02 + +#include +#include + +// CHUNK 02 -> 03 + +#include +#include + +// CHUNK 03 -> 04 + +#include + +// CHUNK 04 -> 05 + +#include + +)"; + +#include +inline static char* src_vertex(void) { + printf("Requesting vertex shader. Override: %s\n", shader_vertex_is_overridden() ? "true" : "false"); + return PREPROCESS(shader_vertex_is_overridden() ? get_shader_vertex_override() : src_vertexShader); +} + +inline static char* src_frag(void) { + printf("Requesting fragment shader. Override: %s\n", shader_fragment_is_overridden() ? "true" : "false"); + return PREPROCESS(shader_fragment_is_overridden() ? get_shader_fragment_override() : src_fragmentShader); +} + +//#pragma GCC diagnostic pop + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*GL_SHADERDEF_H*/ diff --git a/lib/lv_gltf/view/sup/setup.cpp b/lib/lv_gltf/view/sup/setup.cpp new file mode 100644 index 0000000..f614419 --- /dev/null +++ b/lib/lv_gltf/view/sup/setup.cpp @@ -0,0 +1,969 @@ +#include "include/shader_includes.h" +#include + +#ifdef __EMSCRIPTEN__ + #include + #include +#else + #include +#endif + +#include /* GL_CALL */ + +#include +#include +#include + +#ifndef STB_HAS_BEEN_INCLUDED + #define STB_HAS_BEEN_INCLUDED + #include "stb_image/stb_image.h" +#endif + +#include +#include "../../data/lv_gltf_data_internal.hpp" +#include "../lv_gltf_view_internal.hpp" +#include "../../../lv_opengl_shader_cache/lv_opengl_shader_cache.h" +#include "../lv_gltf_view_internal.hpp" + +/** + * @brief Retrieve uniform locations from a shader program. + * + * This function sets up the uniform locations for the specified shader program, + * allowing for easy access to the shader's uniform variables. + * + * @param uniforms Pointer to a UniformLocs structure where the uniform locations will be stored. + * @param _shader_prog_program The shader program from which to retrieve the uniform locations. + */ +void setup_uniform_locations(UniformLocs * uniforms, uint32_t _shader_prog_program) +{ + auto _u = [&](const char * _uniform) -> GLint { return glGetUniformLocation(_shader_prog_program, _uniform); }; + // *** IMAGE QUALITY UNIFORMS *********************************************************************** + uniforms->exposure = _u("u_Exposure"); + // *** CAMERA/VIEW/PROJECTION/MODEL MATRIX UNIFORMS ************************************************* + uniforms->camera = _u("u_Camera"); + uniforms->modelMatrixUniform = _u("u_ModelMatrix"); + uniforms->viewProjectionMatrixUniform = _u("u_ViewProjectionMatrix"); + uniforms->viewMatrixUniform = _u("u_ViewMatrix"); + uniforms->projectionMatrixUniform = _u("u_ProjectionMatrix"); + // *** IMAGE BASED LIGHTING (IBL) UNIFORMS ********************************************************** + uniforms->envIntensity = _u("u_EnvIntensity"); + uniforms->envDiffuseSampler = _u("u_LambertianEnvSampler"); + uniforms->envSpecularSampler = _u("u_GGXEnvSampler"); + uniforms->envSheenSampler = _u("u_CharlieEnvSampler"); + uniforms->envGgxLutSampler = _u("u_GGXLUT"); + uniforms->envCharlieLutSampler = _u("u_CharlieLUT"); + uniforms->envMipCount = _u("u_MipCount"); + // *** BASE COLOR / TEXTURE UNIFORMS **************************************************************** + uniforms->baseColorFactor = _u("u_BaseColorFactor"); + uniforms->baseColorSampler = _u("u_BaseColorSampler"); + uniforms->baseColorUVSet = _u("u_BaseColorUVSet"); + uniforms->baseColorUVTransform = _u("u_BaseColorUVTransform"); + // *** CUTOFF / IOR / DISPERSION UNIFORMS *********************************************************** + uniforms->alphaCutoff = _u("u_AlphaCutoff"); + uniforms->ior = _u("u_Ior"); + uniforms->dispersion = _u("u_Dispersion"); + // *** METALLIC / ROUGHNESS UNIFORMS **************************************************************** + uniforms->metallicFactor = _u("u_MetallicFactor"); + uniforms->roughnessFactor = _u("u_RoughnessFactor"); + uniforms->metallicRoughnessSampler = _u("u_MetallicRoughnessSampler"); + uniforms->metallicRoughnessUVSet = _u("u_MetallicRoughnessUVSet"); + uniforms->metallicRoughnessUVTransform = _u("u_MetallicRoughnessUVTransform"); + // *** EMISSION UNIFORMS **************************************************************************** + uniforms->emissiveFactor = _u("u_EmissiveFactor"); + uniforms->emissiveSampler = _u("u_EmissiveSampler"); + uniforms->emissiveUVSet = _u("u_EmissiveUVSet"); + uniforms->emissiveUVTransform = _u("u_EmissiveUVTransform"); + uniforms->emissiveStrength = _u("u_EmissiveStrength"); + // *** OCCLUSION UNIFORMS *************************************************************************** + uniforms->occlusionStrength = _u("u_OcclusionStrength"); + uniforms->occlusionSampler = _u("u_OcclusionSampler"); + uniforms->occlusionUVSet = _u("u_OcclusionUVSet"); + uniforms->occlusionUVTransform = _u("u_OcclusionUVTransform"); + // *** NORMAL MAP UNIFORMS ************************************************************************** + uniforms->normalSampler = _u("u_NormalSampler"); + uniforms->normalScale = _u("u_NormalScale"); + uniforms->normalUVSet = _u("u_NormalUVSet"); + uniforms->normalUVTransform = _u("u_NormalUVTransform"); + // *** VOLUME / TRANSMISSION UNIFORMS *************************************************************** + uniforms->attenuationDistance = _u("u_AttenuationDistance"); + uniforms->attenuationColor = _u("u_AttenuationColor"); + uniforms->transmissionFactor = _u("u_TransmissionFactor"); + uniforms->transmissionSampler = _u("u_TransmissionSampler"); + uniforms->transmissionUVSet = _u("u_TransmissionUVSet"); + uniforms->transmissionUVTransform = _u("u_TransmissionUVTransform"); + uniforms->transmissionFramebufferSampler = _u("u_TransmissionFramebufferSampler"); + uniforms->transmissionFramebufferSize = _u("u_TransmissionFramebufferSize"); + uniforms->screenSize = _u("u_ScreenSize"); + uniforms->thickness = _u("u_ThicknessFactor"); + uniforms->thicknessSampler = _u("u_ThicknessSampler"); + uniforms->thicknessUVSet = _u("u_ThicknessUVSet"); + uniforms->thicknessUVTransform = _u("u_ThicknessUVTransform"); + // *** CLEARCOAT UNIFORMS *************************************************************************** + uniforms->clearcoatFactor = _u("u_ClearcoatFactor"); + uniforms->clearcoatRoughnessFactor = _u("u_ClearcoatRoughnessFactor"); + uniforms->clearcoatSampler = _u("u_ClearcoatSampler"); + uniforms->clearcoatUVSet = _u("u_ClearcoatUVSet"); + uniforms->clearcoatUVTransform = _u("u_ClearcoatUVTransform"); + uniforms->clearcoatRoughnessSampler = _u("u_ClearcoatRoughnessSampler"); + uniforms->clearcoatRoughnessUVSet = _u("u_ClearcoatRoughnessUVSet"); + uniforms->clearcoatRoughnessUVTransform = _u("u_ClearcoatRoughnessUVTransform"); + uniforms->clearcoatNormalScale = _u("u_ClearcoatNormalScale"); + uniforms->clearcoatNormalSampler = _u("u_ClearcoatNormalSampler"); + uniforms->clearcoatNormalUVSet = _u("u_ClearcoatNormalUVSet"); + uniforms->clearcoatNormalUVTransform = _u("u_ClearcoatNormalUVTransform"); + // *** DIFFUSE TRANSMISSION UNIFORMS **************************************************************** + uniforms->diffuseTransmissionFactor = _u("u_DiffuseTransmissionFactor"); + uniforms->diffuseTransmissionSampler = _u("u_DiffuseTransmissionSampler"); + uniforms->diffuseTransmissionUVSet = _u("u_DiffuseTransmissionUVSet"); + uniforms->diffuseTransmissionUVTransform = _u("u_DiffuseTransmissionUVTransform"); + uniforms->diffuseTransmissionColorFactor = _u("u_DiffuseTransmissionColorFactor"); + uniforms->diffuseTransmissionColorSampler = _u("u_DiffuseTransmissionColorSampler"); + uniforms->diffuseTransmissionColorUVSet = _u("u_DiffuseTransmissionColorUVSet"); + uniforms->diffuseTransmissionColorUVTransform = _u("u_DiffuseTransmissionColorUVTransform"); + // *** LEGACY SUPPORT - PBR_SPECULARGLOSS *********************************************************** + uniforms->diffuseFactor = _u("u_DiffuseFactor"); + uniforms->specularFactor = _u("u_SpecularFactor"); + uniforms->glossinessFactor = _u("u_GlossinessFactor"); + uniforms->diffuseSampler = _u("u_DiffuseSampler"); + uniforms->diffuseUVSet = _u("u_DiffuseUVSet"); + uniforms->diffuseUVTransform = _u("u_DiffuseUVTransform"); + uniforms->specularGlossinessSampler = _u("u_SpecularGlossinessSampler"); + uniforms->specularGlossinessUVSet = _u("u_SpecularGlossinessUVSet"); + uniforms->specularGlossinessUVTransform = _u("u_SpecularGlossinessUVTransform"); + // *** [PARTIALLY SUPPORTED / IN DEVELOPMENT] UNIFORMS ********************************************** + uniforms->sheenColorFactor = _u("u_SheenColorFactor"); + uniforms->sheenRoughnessFactor = _u("u_SheenRoughnessFactor"); + // + uniforms->specularColorFactor = _u("u_KHR_materials_specular_specularColorFactor"); + uniforms->specularFactor = _u("u_KHR_materials_specular_specularFactor"); + // + uniforms->jointsSampler = _u("u_jointsSampler"); + +} + +/** + * @brief Construct a texture transformation matrix. + * + * This function creates a transformation matrix based on the provided texture transform + * parameters, which can be used for texture mapping in rendering. + * + * @param transform The texture transform parameters to be used for constructing the matrix. + * @return A FMAT3 matrix representing the texture transformation. + */ +FMAT3 setup_texture_transform_matrix(fastgltf::TextureTransform transform) +{ + FMAT3 rotation = FMAT3(0.f); + FMAT3 scale = FMAT3(0.f); + FMAT3 translation = FMAT3(0.f); + FMAT3 result = FMAT3(0.f); + + float s = std::sin(transform.rotation); + float c = std::cos(transform.rotation); + rotation[0][0] = c; + rotation[1][1] = c; + rotation[0][1] = s; + rotation[1][0] = -s; + rotation[2][2] = 1.0f; + + scale[0][0] = transform.uvScale[0]; + scale[1][1] = transform.uvScale[1]; + scale[2][2] = 1.0f; + + translation[0][0] = 1.0f; + translation[1][1] = 1.0f; + translation[0][2] = transform.uvOffset[0]; + translation[1][2] = transform.uvOffset[1]; + translation[2][2] = 1.0f; + + result = translation * rotation; + result = result * scale; + return result; +} + +/** + * @brief Set up the background environment for rendering. + * + * This function initializes the background environment by setting up the necessary + * vertex array object (VAO), index buffer, and vertex buffer for rendering. + * + * @param program The shader program to be used for rendering the background. + * @param vao Pointer to a GLuint where the vertex array object ID will be stored. + * @param indexBuffer Pointer to a GLuint where the index buffer ID will be stored. + * @param vertexBuffer Pointer to a GLuint where the vertex buffer ID will be stored. + */ +void setup_background_environment(GLuint program, GLuint * vao, GLuint * indexBuffer, GLuint * vertexBuffer) +{ + int32_t indices[] = { + 1, 2, 0, + 2, 3, 0, + 6, 2, 1, + 1, 5, 6, + 6, 5, 4, + 4, 7, 6, + 6, 3, 2, + 7, 3, 6, + 3, 7, 0, + 7, 4, 0, + 5, 1, 0, + 4, 5, 0 + }; + float verts[] = { + -1.0f, -1.0f, -1.0f, + 1.0f, -1.0f, -1.0f, + 1.0f, 1.0f, -1.0f, + -1.0f, 1.0f, -1.0f, + -1.0f, -1.0f, 1.0f, + 1.0f, -1.0f, 1.0f, + 1.0f, 1.0f, 1.0f, + -1.0f, 1.0f, 1.0f + }; + GL_CALL(glUseProgram(program)); + GL_CALL(glGenVertexArrays(1, vao)); + GL_CALL(glBindVertexArray(*vao)); + GL_CALL(glGenBuffers(1, indexBuffer)); + GL_CALL(glGenBuffers(1, vertexBuffer)); + + GL_CALL(glBindBuffer(GL_ARRAY_BUFFER, *vertexBuffer)); + GL_CALL(glBufferData(GL_ARRAY_BUFFER, sizeof(verts), verts, GL_STATIC_DRAW)); + GL_CALL(glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, *indexBuffer)); + GL_CALL(glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(indices), indices, GL_STATIC_DRAW)); + + GLint positionAttributeLocation = glGetAttribLocation(program, "a_position"); + + // Specify the layout of the vertex data + glVertexAttribPointer(positionAttributeLocation, 3, GL_FLOAT, GL_FALSE, 0, (void *)0); + glEnableVertexAttribArray(positionAttributeLocation); + + GL_CALL(glBindVertexArray(0)); + GL_CALL(glUseProgram(0)); + +} + +/** + * @brief Set up the tangent, bitangent, and normal matrix. + * + * This function constructs a matrix that combines the normal, tangent, and bitangent vectors. + * Currently unused (handled on the GPU), but may be utilized in the future for optimization. + * + * @param normal The normal vector (FVEC3) to be used in the matrix. + * @param tangent_and_w The tangent vector and its w component (FVEC4) to be included in the matrix. + * @return A FMAT3 matrix representing the tangent, bitangent, and normal transformation. + */ +FMAT3 setup_tangent_bitangent_normal_matrix(FVEC3 normal, FVEC4 tangent_and_w) +{ + FVEC3 bitangent = fastgltf::math::cross(normal, FVEC3(tangent_and_w[0], tangent_and_w[1], tangent_and_w[2])); + FMAT3 r = FMAT3(0.f); + r[0][0] = tangent_and_w[0]; + r[0][1] = tangent_and_w[1]; + r[0][2] = tangent_and_w[2]; + r[1][0] = bitangent[0]; + r[1][1] = bitangent[1]; + r[1][2] = bitangent[2]; + r[2][0] = normal[0]; + r[2][1] = normal[1]; + r[2][2] = normal[2]; + return r; +} + +/** + * @brief Set the environment rotation matrix. + * + * This function initializes the rotation matrix for the environment based on the specified angle, + * which can be used in rendering to adjust the orientation of the environment. + * + * @param env_rotation_angle The angle of rotation for the environment in radians. + * @param shader_program The shader program to which the rotation matrix will be applied. + */ + +namespace fastgltf::math +{ +template +[[nodiscard]] fastgltf::math::quat eulerToQuaternion(T P, T Y, T R); +} + +void setup_environment_rotation_matrix(float env_rotation_angle, uint32_t shader_program) +{ + + fastgltf::math::fmat3x3 rotmat = fastgltf::math::asMatrix(fastgltf::math::eulerToQuaternion(env_rotation_angle, 0.f, + 3.14159f)); + + // Get the uniform location and set the uniform + int32_t u_loc; + GL_CALL(u_loc = glGetUniformLocation(shader_program, "u_EnvRotation")); + GL_CALL(glUniformMatrix3fv(u_loc, 1, GL_FALSE, (const GLfloat *)rotmat.data())); +} +/* +void old_mathc_based_setup_environment_rotation_matrix(float env_rotation_angle, uint32_t shader_program) { + _MAT4 fgrot; + + mfloat_t rot[MAT4_SIZE]; + mat4_identity(rot); + mat4_rotation_z(rot, to_radians(180.0)); + mat4_rotation_y(rot, to_radians(env_rotation_angle)); + + mfloat_t ret[MAT3_SIZE]; + uint32_t _sz = 3 * sizeof(mfloat_t); + memcpy(ret, &rot[0], _sz); // Copy first three elements + memcpy(&ret[3], &rot[4], _sz); // Copy next three elements + memcpy(&ret[6], &rot[8], _sz); // Copy last three elements + + int32_t u_loc; + GL_CALL(u_loc = glGetUniformLocation(shader_program, "u_EnvRotation")); + GL_CALL(glUniformMatrix3fv(u_loc, 1, false, ret )); +} +*/ + +/** + * @brief Set a uniform color in the shader. + * + * This function sets a uniform color value in the specified shader program, allowing for + * consistent color rendering in the graphics pipeline. + * + * @param uniform_loc The location of the uniform variable in the shader program. + * @param color The color value to be set, represented as a nvec3. + */ +void setup_uniform_color(GLint uniform_loc, fastgltf::math::nvec3 color) +{ + GL_CALL(glUniform3f(uniform_loc, static_cast(color[0]), static_cast(color[1]), + static_cast(color[2]))); +} + +/** + * @brief Set a uniform color with alpha in the shader. + * + * This function sets a uniform color value with an alpha component in the specified shader program, + * enabling transparency effects in rendering. + * + * @param uniform_loc The location of the uniform variable in the shader program. + * @param color The color value to be set, represented as a nvec4, including the alpha component. + */ +void setup_uniform_color_alpha(GLint uniform_loc, fastgltf::math::nvec4 color) +{ + GL_CALL(glUniform4f(uniform_loc, static_cast(color[0]), static_cast(color[1]), + static_cast(color[2]), static_cast(color[3]))); +} + + +/** + * @brief Set up a texture for rendering. + * + * This function initializes a texture based on the provided parameters, including texture number, + * texture unit, texture coordinate index, and transformation settings. It prepares the texture for + * use in rendering operations. + * + * @param tex_unit The texture unit to which the texture will be bound. + * @param tex_num The texture number to be set up. + * @param tex_coord_index The index of the texture coordinates to be used. + * @param tex_transform A unique pointer to a TextureTransform object that defines the texture transformation. + * @param sampler The sampler object to be used for sampling the texture. + * @param uv_set The UV set index for the texture coordinates. + * @param uv_transform The transformation to be applied to the UV coordinates. + * @return The texture ID generated for the setup texture. + */ +uint32_t setup_texture(uint32_t tex_unit, uint32_t tex_name, int32_t tex_coord_index, + std::unique_ptr & tex_transform, + GLint sampler, GLint uv_set, GLint uv_transform) +{ + GL_CALL(glActiveTexture(GL_TEXTURE0 + tex_unit)); // Activate the texture unit + GL_CALL(glBindTexture(GL_TEXTURE_2D, tex_name)); // Bind the texture (assuming 2D texture) + GL_CALL(glUniform1i(sampler, tex_unit)); // Set the sampler to use the texture unit + GL_CALL(glUniform1i(uv_set, tex_coord_index)); // Set the UV set index + if(tex_transform != NULL) GL_CALL(glUniformMatrix3fv(uv_transform, 1, GL_FALSE, + &(setup_texture_transform_matrix(*tex_transform)[0][0]))); + tex_unit++; + return tex_unit; +} + +/** + * @brief OpenGL message callback function. + * + * This function is called when an OpenGL error or notification occurs. It provides information + * about the source, type, severity, and message of the OpenGL event, which can be useful for debugging. + * + * @param source The source of the OpenGL message. + * @param type The type of the OpenGL message. + * @param id The identifier for the message. + * @param severity The severity level of the message. + * @param length The length of the message string. + * @param message The message string containing the details of the OpenGL event. + * @param userParam User-defined parameter passed to the callback. + */ +void glMessageCallback(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar * message, + const void * userParam) +{ + LV_UNUSED(source); + LV_UNUSED(type); + LV_UNUSED(id); + LV_UNUSED(length); + LV_UNUSED(userParam); + if(severity == GL_DEBUG_SEVERITY_HIGH) { + std::cerr << message << '\n'; + } + else { + std::cout << message << '\n'; + } +} + + +/** + * @brief Clean up OpenGL output resources. + * + * This function performs cleanup operations for the OpenGL output, releasing any resources + * associated with the rendering window state. + * + * @param state Pointer to the rendering window state structure that holds OpenGL output information. + */ +void setup_cleanup_opengl_output(gl_renwin_state_t * state) +{ + if(state) { + // Delete the framebuffer + if(state->framebuffer) { + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, 0)); // Unbind the framebuffer + GL_CALL(glDeleteFramebuffers(1, &state->framebuffer)); + state->framebuffer = 0; // Reset to avoid dangling pointer + } + + // Delete the color texture + if(state->texture) { + GL_CALL(glDeleteTextures(1, &state->texture)); + state->texture = 0; // Reset to avoid dangling pointer + } + + // Delete the depth texture + if(state->renderbuffer) { + GL_CALL(glDeleteTextures(1, &state->renderbuffer)); + state->renderbuffer = 0; // Reset to avoid dangling pointer + } + } +} + +/** + * @brief Set up the opaque output for rendering. + * + * This function initializes the opaque output buffer, which is used to render the portions of the + * scene that are opaque and may distort due to refractive elements in front of them. It prepares + * the buffer for rendering operations based on the specified texture dimensions. + * + * @param texture_width The width of the texture for the opaque output. + * @param texture_height The height of the texture for the opaque output. + * @return A gl_renwin_state_t structure containing the state of the opaque output. + */ +gl_renwin_state_t setup_opaque_output(uint32_t texture_width, uint32_t texture_height) +{ + + gl_renwin_state_t _ret; + + GLuint rtex; + GL_CALL(glGenTextures(1, &rtex)); + _ret.texture = rtex; + //const auto& metrics = get_viewer_metrics(viewer); + + GL_CALL(glBindTexture(GL_TEXTURE_2D, _ret.texture)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, texture_width, texture_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, GL_NONE)); + GL_CALL(glPixelStorei(GL_UNPACK_ALIGNMENT, 1)); + + GLuint rdepth; + GL_CALL(glGenTextures(1, &rdepth)); + _ret.renderbuffer = rdepth; + GL_CALL(glBindTexture(GL_TEXTURE_2D, _ret.renderbuffer)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); +#ifdef __EMSCRIPTEN__ // Check if compiling for Emscripten (WebGL) + // For WebGL2 + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, texture_width, texture_height, 0, GL_DEPTH_COMPONENT, + GL_UNSIGNED_INT, NULL)); +#else + // For Desktop OpenGL + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, texture_width, texture_height, 0, GL_DEPTH_COMPONENT, + GL_UNSIGNED_SHORT, NULL)); +#endif + GL_CALL(glBindTexture(GL_TEXTURE_2D, GL_NONE)); + + GL_CALL(glGenFramebuffers(1, &_ret.framebuffer)); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, _ret.framebuffer)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, _ret.texture, 0)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, _ret.renderbuffer, 0)); + + return _ret; +} + +/** + * @brief Prepare OpenGL output for rendering. + * + * This function initializes the primary OpenGL output buffer based on the specified texture dimensions + * and whether mipmaps are enabled. It sets up the necessary resources for rendering the primary scene. + * + * @param texture_width The width of the texture for the OpenGL output. + * @param texture_height The height of the texture for the OpenGL output. + * @param mipmaps_enabled A boolean indicating whether mipmaps should be generated for the texture. + * @return A gl_renwin_state_t structure containing the state of the primary output. + */ +gl_renwin_state_t setup_primary_output(uint32_t texture_width, uint32_t texture_height, bool mipmaps_enabled) +{ + + gl_renwin_state_t _ret; + + GLuint rtex; + GL_CALL(glGenTextures(1, &rtex)); + _ret.texture = rtex; + GL_CALL(glBindTexture(GL_TEXTURE_2D, _ret.texture)); + //GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, mipmaps_enabled ? GL_LINEAR_MIPMAP_LINEAR : GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, + mipmaps_enabled ? GL_NEAREST_MIPMAP_NEAREST : GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 1)); + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, texture_width, texture_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, NULL)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, GL_NONE)); + GL_CALL(glPixelStorei(GL_UNPACK_ALIGNMENT, 1)); + + GLuint rdepth; + GL_CALL(glGenTextures(1, &rdepth)); + _ret.renderbuffer = rdepth; + GL_CALL(glBindTexture(GL_TEXTURE_2D, _ret.renderbuffer)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 1)); +#ifdef __EMSCRIPTEN__ // Check if compiling for Emscripten (WebGL) + // For WebGL2 + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, texture_width, texture_height, 0, GL_DEPTH_COMPONENT, + GL_UNSIGNED_INT, NULL)); +#else + // For Desktop OpenGL + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_DEPTH_COMPONENT24, texture_width, texture_height, 0, GL_DEPTH_COMPONENT, + GL_UNSIGNED_SHORT, NULL)); +#endif + GL_CALL(glBindTexture(GL_TEXTURE_2D, GL_NONE)); + + GL_CALL(glGenFramebuffers(1, &_ret.framebuffer)); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, _ret.framebuffer)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, _ret.texture, 0)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, _ret.renderbuffer, 0)); + + return _ret; +} + +/** + * @brief Restore the opaque output for rendering. + * + * This function attempts to restore the opaque output buffer, reinitializing it based on the provided + * dimensions and background preparation flag. If an error occurs during the restoration process, + * rendering for the current frame should be canceled. + * + * @param view_desc Pointer to the gl_viewer_desc_t structure containing view description parameters. + * @param _ret The current state of the opaque output to be restored. + * @param texture_w The width of the texture for the opaque output. + * @param texture_h The height of the texture for the opaque output. + * @param prepare_bg A boolean indicating whether to prepare the background during restoration. + * @return A boolean indicating whether rendering should be canceled due to an error. + */ +bool setup_restore_opaque_output(gl_viewer_desc_t * view_desc, gl_renwin_state_t _ret, uint32_t texture_w, + uint32_t texture_h, bool prepare_bg) +{ + + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, _ret.framebuffer)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, _ret.texture, 0)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, _ret.renderbuffer, 0)); + GL_CALL(glViewport(0, 0, texture_w, texture_h)); + if(prepare_bg) { + GL_CALL(glClearColor(view_desc->bg_r / 255.0f, view_desc->bg_g / 255.0f, view_desc->bg_b / 255.0f, + view_desc->bg_a / 255.0f)); + //GL_CALL(glClearColor(208.0/255.0, 220.0/255.0, 230.0/255.0, 0.0f)); + GL_CALL(glClearDepth(1.0f)); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + } + if(glGetError() != GL_NO_ERROR) return true; + return false; +} + +/** + * @brief Check for OpenGL errors. + * + * This function checks for any OpenGL errors that may have occurred during rendering or setup. + * It returns true if an error is detected, allowing for appropriate error handling. + * + * @return A boolean indicating whether an OpenGL error has occurred. + */ +bool checkOpenGLError() +{ + bool had_error = false; + GLenum error = glGetError(); + while(error != GL_NO_ERROR) { + had_error = true; + switch(error) { + case GL_INVALID_ENUM: + printf("OpenGL Error: GL_INVALID_ENUM\n"); + break; + case GL_INVALID_VALUE: + printf("OpenGL Error: GL_INVALID_VALUE\n"); + break; + case GL_INVALID_OPERATION: + printf("OpenGL Error: GL_INVALID_OPERATION\n"); + break; + case GL_OUT_OF_MEMORY: + printf("OpenGL Error: GL_OUT_OF_MEMORY\n"); + break; + default: + printf("OpenGL Error: Unknown error\n"); + break; + } + error = glGetError(); // Check for more errors + } + return had_error; +} + +/** + * @brief Restore the primary output for rendering. + * + * This function rebinds any necessary buffers and performs any preparation work required for + * repeat draws to an already existing OpenGL output. If an error occurs during the restoration, + * rendering for the current frame should be canceled. + * + * @param view_desc Pointer to the gl_viewer_desc_t structure containing view description parameters. + * @param _ret The current state of the primary output to be restored. + * @param texture_w The width of the texture for the primary output. + * @param texture_h The height of the texture for the primary output. + * @param texture_offset_w The horizontal offset for the texture. + * @param texture_offset_h The vertical offset for the texture. + * @param prepare_bg A boolean indicating whether to prepare the background during restoration. + * @return A boolean indicating whether rendering should be canceled due to an error. + */ +bool setup_restore_primary_output(gl_viewer_desc_t * view_desc, gl_renwin_state_t _ret, uint32_t texture_w, + uint32_t texture_h, + uint32_t texture_offset_w, uint32_t texture_offset_h, bool prepare_bg) +{ + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, _ret.framebuffer)); + if(checkOpenGLError()) { + std::cout << "AAA "; + return true; + } + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, _ret.texture, 0)); + GL_CALL(glFramebufferTexture2D(GL_FRAMEBUFFER, GL_DEPTH_ATTACHMENT, GL_TEXTURE_2D, _ret.renderbuffer, 0)); + GL_CALL(glViewport(texture_offset_w, texture_offset_h, texture_w, texture_h)); + if(prepare_bg) { + GL_CALL(glClearColor(view_desc->bg_r / 255.0f, view_desc->bg_g / 255.0f, view_desc->bg_b / 255.0f, + view_desc->bg_a / 255.0f)); + GL_CALL(glClearDepth(1.0f)); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); + } + + if(glGetError() != GL_NO_ERROR) return true; + return false; + +} + +/** + * @brief Finish the OpenGL frame. + * + * This function finalizes the current OpenGL frame, performing any necessary operations + * to complete rendering before presenting the frame to the display. + */ +void setup_finish_frame(void) +{ + GL_CALL(glDisable(GL_DEPTH_TEST)); + GL_CALL(glBindFramebuffer(GL_FRAMEBUFFER, 0)); + GL_CALL(glBindRenderbuffer(GL_RENDERBUFFER, 0)); + GL_CALL(glUseProgram(0)); +} + +//void setup_view_proj_matrix_from_link(lv_gltf_view_t * viewer, lv_gltf_data_t * link_data){ +// { auto _t = view; set_matrix_view(viewer, FMAT4(_t[0], _t[1], _t[2], _t[3], _t[4], _t[5], _t[6], _t[7], _t[8], _t[9], _t[10], _t[11], _t[12], _t[13], _t[14], _t[15] ) ); } +// { auto _t = perspective; set_matrix_proj(viewer, FMAT4(_t[0], _t[1], _t[2], _t[3], _t[4], _t[5], _t[6], _t[7], _t[8], _t[9], _t[10], _t[11], _t[12], _t[13], _t[14], _t[15] ) ); } +// { auto _t = viewProj; set_matrix_viewproj(viewer, FMAT4(_t[0], _t[1], _t[2], _t[3], _t[4], _t[5], _t[6], _t[7], _t[8], _t[9], _t[10], _t[11], _t[12], _t[13], _t[14], _t[15] ) ); } +// set_cam_pos(viewer, view_pos[0], view_pos[1], view_pos[2]); +//} + + +/** + * @brief Create a view-projection matrix from the camera. + * + * This function constructs a view-projection matrix based on the specified camera parameters, + * allowing for proper rendering of the scene from the camera's perspective. The transmission + * pass flag indicates whether the matrix is being set up for the opaque render buffer. + * + * @param viewer Pointer to the lv_gltf_view_t structure representing the viewer. + * @param _cur_cam_num The current camera number to be used for the view-projection matrix. + * @param view_desc Pointer to the gl_viewer_desc_t structure containing view description parameters. + * @param view_mat The current view matrix (FMAT4) to be used in the calculation. + * @param view_pos The position of the viewer in the scene (FVEC3). + * @param gltf_data Pointer to the GLTF data structure containing scene information. + * @param transmission_pass A boolean indicating whether this setup is for the transmission pass. + */ +void setup_view_proj_matrix_from_camera(lv_gltf_view_t * viewer, int32_t _cur_cam_num, + gl_viewer_desc_t * view_desc, const FMAT4 view_mat, + const FVEC3 view_pos, lv_gltf_data_t * gltf_data, + bool transmission_pass) +{ + // The following matrix math is for the projection matrices as defined by the glTF spec: + // https://registry.khronos.org/glTF/specs/2.0/glTF-2.0.html#projection-matrices + + _MAT4 projection; + const auto & asset = GET_ASSET(gltf_data); + auto width = view_desc->render_width; + auto height = view_desc->render_height; + // It's possible the transmission pass should simply use the regular passes aspect despite having different metrics itself. Testing both ways to see which has less distortion + float aspect = (float)width / (float)height; + if(transmission_pass) { + width = 256; + height = 256; + } + + std::visit(fastgltf::visitor { + [&](fastgltf::Camera::Perspective & perspective) + { + projection = _MAT4(0.0f); + projection[0][0] = 1.f / (aspect * tan(0.5f * perspective.yfov)); + projection[1][1] = 1.f / (tan(0.5f * perspective.yfov)); + projection[2][3] = -1; + + if(perspective.zfar.has_value()) { + // Finite projection matrix + projection[2][2] = (*perspective.zfar + perspective.znear) / (perspective.znear - *perspective.zfar); + projection[3][2] = (2 * *perspective.zfar * perspective.znear) / (perspective.znear - *perspective.zfar); + } + else { + // Infinite projection matrix + projection[2][2] = -1; + projection[3][2] = -2 * perspective.znear; + } + }, + [&](fastgltf::Camera::Orthographic & orthographic) + { + projection = _MAT4(1.0f); + projection[0][0] = (1.f / orthographic.xmag) * aspect; + projection[1][1] = 1.f / orthographic.ymag; + projection[2][2] = 2.f / (orthographic.znear - orthographic.zfar); + projection[3][2] = (orthographic.zfar + orthographic.znear) / (orthographic.znear - orthographic.zfar); + }, + }, asset->cameras[_cur_cam_num].camera); + + set_matrix_view(viewer, view_mat); + set_matrix_proj(viewer, projection); + set_matrix_viewproj(viewer, projection * view_mat); + set_cam_pos(viewer, view_pos[0], view_pos[1], view_pos[2]); + +} + +/** + * @brief Create a view-projection matrix from pitch/yaw/distance. + * + * This function constructs a view-projection matrix based on the pitch, yaw, and distance + * described within the view_desc parameter. It allows for flexible camera positioning and + * orientation in the scene. The transmission pass flag indicates whether the matrix is being + * set up for the opaque render buffer. + * + * @param viewer Pointer to the lv_gltf_view_t structure representing the viewer. + * @param view_desc Pointer to the gl_viewer_desc_t structure containing view description parameters. + * @param gltf_data Pointer to the GLTF data structure containing scene information. + * @param transmission_pass A boolean indicating whether this setup is for the transmission pass. + */ + +namespace fastgltf::math +{ +/** Creates a right-handed view matrix */ +[[nodiscard]] _MAT4 lookAtRH(const fvec3 & eye, const fvec3 & center, const fvec3 & up) noexcept; +} + +void setup_view_proj_matrix(lv_gltf_view_t * viewer, gl_viewer_desc_t * view_desc, + lv_gltf_data_t * gltf_data, bool transmission_pass) +{ + // Create Look-At Matrix + + if(view_desc->recenter_flag) { + view_desc->recenter_flag = false; + const auto & _autocenpos = lv_gltf_data_get_center(gltf_data); + view_desc->focal_x = _autocenpos[0]; + view_desc->focal_y = _autocenpos[1]; + view_desc->focal_z = _autocenpos[2]; + } + + + auto _bradius = lv_gltf_data_get_radius(gltf_data); + float radius = _bradius * 2.5; + radius *= view_desc->distance; + + _VEC3 rcam_dir = _VEC3(0.0f, 0.0f, 1.0f); + + // Note because we switched over to fastgltf math and it's right-hand focused, z axis is actually pitch (instead of x-axis), and x axis is yaw, instead of y-axis + fastgltf::math::fmat3x3 rotation1 = fastgltf::math::asMatrix(fastgltf::math::eulerToQuaternion(0.f, 0.f, + fastgltf::math::radians(view_desc->pitch))); + fastgltf::math::fmat3x3 rotation2 = fastgltf::math::asMatrix(fastgltf::math::eulerToQuaternion(fastgltf::math::radians( + view_desc->yaw + view_desc->spin_degree_offset), 0.f, 0.f)); + + rcam_dir = rotation1 * rcam_dir; + rcam_dir = rotation2 * rcam_dir; + + _VEC3 ncam_dir = fastgltf::math::normalize(rcam_dir); + _VEC3 cam_target = _VEC3(view_desc->focal_x, view_desc->focal_y, view_desc->focal_z); + _VEC3 cam_position = _VEC3(cam_target[0] + (ncam_dir[0] * radius), cam_target[1] + (ncam_dir[1] * radius), + cam_target[2] + (ncam_dir[2] * radius)); + + _MAT4 view_mat = fastgltf::math::lookAtRH(cam_position, cam_target, _VEC3(0.0f, 1.0f, 0.0f)); + + // Create Projection Matrix + _MAT4 projection; + float fov = view_desc->fov; + + float znear = _bradius * 0.05f; + float zfar = _bradius * std::max(4.0, 8.0 * view_desc->distance); + auto width = view_desc->render_width; + auto height = view_desc->render_height; + // It's possible the transmission pass should simply use the regular passes aspect despite having different metrics itself. Testing both ways to see which has less distortion + float aspect = (float)width / (float)height; + if(transmission_pass) { + width = 256; + height = 256; + } + + if(fov <= 0.0f) { + // Isometric view: create an orthographic projection + float orthoSize = view_desc->distance * _bradius; // Adjust as needed + + projection = _MAT4(1.0f); + projection[0][0] = -(orthoSize * aspect); + projection[1][1] = (orthoSize); + projection[2][2] = 2.f / (znear - zfar); + projection[3][2] = (zfar + znear) / (znear - zfar); + + } + else { + // Perspective view + projection = _MAT4(0.0f); + assert(width != 0 && height != 0); + projection[0][0] = 1.f / (aspect * tan(0.5f * fastgltf::math::radians(fov))); + projection[1][1] = 1.f / (tan(0.5f * fastgltf::math::radians(fov))); + projection[2][3] = -1; + + //if (perspective.zfar.has_value()) { + // Finite projection matrix + projection[2][2] = (zfar + znear) / (znear - zfar); + projection[3][2] = (2.f * zfar * znear) / (znear - zfar); + //} else { + // // Infinite projection matrix + // projection[2][2] = -1.f; + // projection[3][2] = -2.f * znear; + //} + + } + + set_matrix_view(viewer, view_mat); + set_matrix_proj(viewer, projection); + set_matrix_viewproj(viewer, projection * view_mat); + set_cam_pos(viewer, cam_position[0], cam_position[1], cam_position[2]); +} + +/** + * @brief Compile and load shaders. + * + * This function compiles and loads the shaders from the specified shader cache, preparing them + * for use in rendering operations. It returns a structure containing the shader set information. + * + * @param shaders Pointer to the lv_opengl_shader_cache_t structure containing the shader cache. + * @return A gl_renwin_shaderset_t structure representing the compiled and loaded shaders. + */ +gl_renwin_shaderset_t setup_compile_and_load_shaders(lv_opengl_shader_cache_t * shaders) +{ + lv_shader_key_value_t * all_defs = all_defines(); + auto _program = shaders->get_shader_program(shaders, + shaders->select_shader(shaders, "__MAIN__.frag", all_defs, all_defines_count()), + shaders->select_shader(shaders, "__MAIN__.vert", all_defs, all_defines_count())); + GL_CALL(glUseProgram(_program->program)); + gl_renwin_shaderset_t _shader_prog; + _shader_prog.program = _program->program; + _shader_prog.ready = true; + + return _shader_prog; +} + +/** + * @brief Compile and load the background shader. + * + * This function compiles and loads the background shader from the specified shader cache, + * preparing it for rendering the environment background. + * + * @param shaders Pointer to the lv_opengl_shader_cache_t structure containing the shader cache. + */ +void setup_compile_and_load_bg_shader(lv_opengl_shader_cache_t * shaders) +{ + lv_shader_key_value_t * empty_defs = nullptr;//{}; + //lv_shader_key_value_t empty_defs[0] = {}; + lv_shader_key_value_t frag_defs[1] = {{"TONEMAP_KHR_PBR_NEUTRAL", NULL}}; + auto bg_program = shaders->get_shader_program(shaders, + shaders->select_shader(shaders, "cubemap.frag", frag_defs, 1), + shaders->select_shader(shaders, "cubemap.vert", empty_defs, 0)); + shaders->bg_program = bg_program->program; + setup_background_environment(shaders->bg_program, &shaders->bg_vao, &shaders->bg_indexBuf, &shaders->bg_vertexBuf); +} + +/** + * @brief Draw the environment background. + * + * This function renders the environment background using the specified shaders and viewer parameters. + * It allows for optional blurring effects to be applied to the background rendering. + * + * @param shaders Pointer to the lv_opengl_shader_cache_t structure containing the shader cache. + * @param viewer Pointer to the lv_gltf_view_t structure representing the viewer. + * @param blur The amount of blur to be applied to the background rendering. + */ +void setup_draw_environment_background(lv_opengl_shader_cache_t * shaders, lv_gltf_view_t * viewer, float blur) +{ + GL_CALL(glBindVertexArray(shaders->bg_vao)); + GL_CALL(glUseProgram(shaders->bg_program)); + GL_CALL(glEnable(GL_CULL_FACE)); + GL_CALL(glDisable(GL_BLEND)); + GL_CALL(glDisable(GL_DEPTH_TEST)); + GL_CALL(glUniformMatrix4fv(glGetUniformLocation(shaders->bg_program, "u_ViewProjectionMatrix"), 1, false, + GET_VIEWPROJ_MAT(viewer)->data())); + //GL_CALL(glBindTextureUnit(0, shaders->lastEnv->specular)); + + // Bind the texture to the specified texture unit + GL_CALL(glActiveTexture(GL_TEXTURE0 + 0)); // Activate the texture unit + GL_CALL(glBindTexture(GL_TEXTURE_CUBE_MAP, shaders->lastEnv->specular)); // Bind the texture (assuming 2D texture) + + GL_CALL(glUniform1i(glGetUniformLocation(shaders->bg_program, "u_GGXEnvSampler"), 0)); + + GL_CALL(glUniform1i(glGetUniformLocation(shaders->bg_program, "u_MipCount"), shaders->lastEnv->mipCount)); + GL_CALL(glUniform1f(glGetUniformLocation(shaders->bg_program, "u_EnvBlurNormalized"), blur)); + GL_CALL(glUniform1f(glGetUniformLocation(shaders->bg_program, "u_EnvIntensity"), 1.0f)); + GL_CALL(glUniform1f(glGetUniformLocation(shaders->bg_program, "u_Exposure"), 1.0f)); + + setup_environment_rotation_matrix(shaders->lastEnv->angle, shaders->bg_program); + + // Bind the index buffer + glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, shaders->bg_indexBuf); + + // Bind the vertex buffer + glBindBuffer(GL_ARRAY_BUFFER, shaders->bg_vertexBuf); + + // Draw the elements + glDrawElements(GL_TRIANGLES, 36, GL_UNSIGNED_INT, (void *)0); + + GL_CALL(glBindVertexArray(0)); + return; + +} + +/** + * @brief Link a view to GLTF data. + * + * This function links a target GLTF data structure to a source GLTF data structure, allowing for + * shared access and manipulation of the linked data. + * + * @param link_target Pointer to the lv_gltf_data_t structure that will be linked to the source. + * @param link_source Pointer to the lv_gltf_data_t structure that serves as the source for linking. + */ +void lv_gltf_data_link_view_to(lv_gltf_data_t * link_target, lv_gltf_data_t * link_source) +{ + link_target->view_is_linked = true; + link_target->linked_view_source = link_source; +} diff --git a/lib/lv_gltf/view/sup/shader_includes.cpp b/lib/lv_gltf/view/sup/shader_includes.cpp new file mode 100644 index 0000000..771accf --- /dev/null +++ b/lib/lv_gltf/view/sup/shader_includes.cpp @@ -0,0 +1,214 @@ +#include +#include +#include /* strlen, strcpy: for replaceWord and lineCount */ + +#include "include/shader_includes.h" + +#include /* for replaceWord */ +#include /* for addDefine, clearDefines */ +#include +#include + +//using namespace std; +bool _vdefines_initialized = false; +std::vector v_defines; + +const char * src_fragmentShader_override; +bool src_fragmentShader_has_override = false; +void lv_gltf_view_shader_fragment_override(const char * override_fragment_code) +{ + src_fragmentShader_has_override = true; + src_fragmentShader_override = override_fragment_code; + printf("Establishing fragment shader override. Override: %s\n", src_fragmentShader_has_override ? "true" : "false"); +} + +const char * src_vertexShader_override; +bool src_vertexShader_has_override = false; +void lv_gltf_view_shader_vertex_override(const char * override_vertex_code) +{ + src_vertexShader_has_override = true; + src_vertexShader_override = override_vertex_code; + printf("Establishing vertex shader override. Override: %s\n", src_vertexShader_has_override ? "true" : "false"); +} + +bool shader_fragment_is_overridden(void) +{ + return src_fragmentShader_has_override; +} +const char * get_shader_fragment_override(void) +{ + return src_fragmentShader_override; +} + +bool shader_vertex_is_overridden(void) +{ + return src_vertexShader_has_override; +} +const char * get_shader_vertex_override(void) +{ + return src_vertexShader_override; +} + +void __init_vdefines(void) +{ + if(_vdefines_initialized) return; + _vdefines_initialized = true; + v_defines = std::vector(); +} + +lv_shader_key_value_t * all_defines(void) +{ + return &v_defines[0]; +} +uint32_t all_defines_count(void) +{ + return v_defines.size(); +} + +void clearDefines(void) +{ + __init_vdefines(); + v_defines.erase(v_defines.begin(), v_defines.end()); + v_defines.clear(); + v_defines.shrink_to_fit(); +} + +void addDefine(const char * defsymbol, const char * defvalue_or_null) +{ + __init_vdefines(); + for(auto & _kv : v_defines) { + if(strcmp(_kv.key, defsymbol) == 0) { + return; + } + } + lv_shader_key_value_t _newkv = lv_shader_key_value_t({defsymbol, defvalue_or_null}); + v_defines.push_back(_newkv); +} + +char * getDefineId(void) +{ + char * _tretstr = (char *)malloc(1024); + _tretstr[0] = '\0'; + bool _firstpass = true; + for(auto & _kv : v_defines) { + if(!_firstpass) { + strcat(_tretstr, "|"); + } + _firstpass = false; + strcat(_tretstr, _kv.key); + if(_kv.value) { + strcat(_tretstr, _kv.value); + } + } + return _tretstr; +} + +std::string replaceWord(std::string s, const char * c_f, const char * c_r) +{ + //std::string s = std::string(c_s); + std::string f = std::string(c_f); + std::string r = std::string(c_r); + + if(s.empty() || f.empty() || f == r || s.find(f) == std::string::npos) { + return (s); + } + + std::ostringstream build_it; + size_t i = 0; + for(size_t pos; (pos = s.find(f, i)) != std::string::npos;) { + build_it.write(&s[i], pos - i); + build_it << r; + i = pos + f.size(); + } + if(i != s.size()) { + build_it.write(&s[i], s.size() - i); + } + return build_it.str(); +} + +size_t lineCount(const char * str) +{ + size_t count = 0; + while(*str) { + if(*str == '\n') { + count++; + } + str++; + } + return count; +} + +char * PREPROCESS(const char * x) +{ + char * _def = get_defines_str(); + char * _ret = process_includes(x, _def); + free(_def); + return _ret; +} + +char * get_defines_str(void) +{ + __init_vdefines(); + std::string _ret = std::string(GLSL_VERSION_PREFIX) + std::string("\n"); + + for(auto & _kv : v_defines) { + _ret += "#define " + std::string(_kv.key); + if(_kv.value != NULL) { + _ret += " " + std::string(_kv.value); + } + _ret += "\n"; + } + char * _retcstr = (char *)malloc(_ret.length() + 1); + _retcstr[0] = '\0'; + strcpy(_retcstr, _ret.c_str()); + return _retcstr; +} + +char * process_defines(const lv_shader_key_value_t * __define_set, size_t _num_items) +{ + uint32_t _reqlength = strlen(GLSL_VERSION_PREFIX) + 1; + for(size_t i = 0; i < _num_items; i++) { + _reqlength += strlen("#define "); + _reqlength += strlen(__define_set[i].key); + if(__define_set[i].value != NULL) { + _reqlength += strlen(" "); + _reqlength += strlen(__define_set[i].value); + } + _reqlength += strlen("\n"); + } + char * ret = (char *)malloc(_reqlength + 1); + ret[0] = '\0'; + strcat(ret, GLSL_VERSION_PREFIX); + strcat(ret, "\n"); + for(size_t i = 0; i < _num_items; i++) { + strcat(ret, "#define "); + strcat(ret, __define_set[i].key); + if(__define_set[i].value != NULL) { + strcat(ret, " "); + strcat(ret, __define_set[i].value); + } + strcat(ret, "\n"); + } + //std::cout << "SHADER DEFINES:\n==============\n" << ret << "==============\n"; + return ret; +} + +char * process_includes(const char * c_src, const char * _defines) +{ + std::string _src = std::string(c_src); + std::string rep = replaceWord(_src, GLSL_VERSION_PREFIX, _defines); + size_t num_items = sizeof(src_includes) / sizeof(lv_shader_key_value_t); + char * _srch = (char *)malloc(255); + for(size_t i = 0; i < num_items; i++) { + _srch[0] = '\0'; + strcat(_srch, "\n#include <"); + strcat(_srch, src_includes[i].key); + strcat(_srch, ">"); + rep = replaceWord(rep, _srch, src_includes[i].value); + } + free(_srch); + char * retval = (char *)malloc(rep.length() + 1); + retval[0] = '\0'; + strcat(retval, rep.c_str()); + return retval; +} diff --git a/lib/lv_gltf/view/sup/utils.cpp b/lib/lv_gltf/view/sup/utils.cpp new file mode 100644 index 0000000..e4d51d0 --- /dev/null +++ b/lib/lv_gltf/view/sup/utils.cpp @@ -0,0 +1,423 @@ +#include +#include +#include +#include +#include + +#include "../lv_gltf_view_internal.h" +#include "../lv_gltf_view_internal.hpp" +#include "../lv_gltf_view.h" + +#include "../../data/lv_gltf_data_internal.hpp" + +#include +#include /* GL_CALL */ + +#include "stb_image/stb_image.h" +#include "stb_image/stb_image_write.h" + +#include +#include "../lv_gltf_view_internal.h" + +GLboolean blendEnabled; +GLint blendSrc; +GLint blendDst; +GLint blendEquation; +GLfloat clearDepth; +GLfloat clearColor[4]; + + +void lv_gltf_opengl_state_push(void) +{ + // retain state of blend enabled + GL_CALL(glGetBooleanv(GL_BLEND, &blendEnabled)); + // retain src / dst blend functions + GL_CALL(glGetIntegerv(GL_BLEND_SRC_ALPHA, &blendSrc)); + GL_CALL(glGetIntegerv(GL_BLEND_DST_ALPHA, &blendDst)); + // retain blend equation + GL_CALL(glGetIntegerv(GL_BLEND_EQUATION, &blendEquation)); + // retain clear color + GL_CALL(glGetFloatv(GL_COLOR_CLEAR_VALUE, clearColor)); + // retain clear depth + GL_CALL(glGetFloatv(GL_DEPTH_CLEAR_VALUE, &clearDepth)); +} + +void lv_gltf_opengl_state_pop(void) +{ + GL_CALL(glDisable(GL_CULL_FACE)); + if(blendEnabled) { + GL_CALL(glEnable(GL_BLEND)); + } + else { + GL_CALL(glDisable(GL_BLEND)); + } + GL_CALL(glBlendFunc(blendSrc, blendDst)); + GL_CALL(glBlendEquation(blendEquation)); + GL_CALL(glDepthMask(GL_TRUE)); + GL_CALL(glClearColor(clearColor[0], clearColor[1], clearColor[2], clearColor[3])); + GL_CALL(glClearDepth(clearDepth)); +} + +/* +FVEC4 lv_gltf_get_primitive_centerpoint(lv_gltf_data_t * ret_data, fastgltf::Mesh& mesh, uint32_t prim_num){ + FVEC4 _retval = FVEC4(0.0f); + FVEC3 _vmin = FVEC3(999999999.f); + FVEC3 _vmax = FVEC3(-999999999.f); + FVEC3 _vcen = FVEC3(0.f); + float _vrad = 0.f; + + if (mesh.primitives.size() > prim_num) { + const auto& it = mesh.primitives[prim_num]; + const auto& asset = GET_ASSET(ret_data); + auto* positionIt = it.findAttribute("POSITION"); + auto& positionAccessor = asset->accessors[positionIt->accessorIndex]; + if (positionAccessor.bufferViewIndex.has_value()) { + if (positionAccessor.min.has_value() && positionAccessor.max.has_value()) { + FVEC4 _tmin = FVEC4( + (float)(positionAccessor.min.value().get((size_t)0)), + (float)(positionAccessor.min.value().get((size_t)1)), + (float)(positionAccessor.min.value().get((size_t)2)), + 0.f); + FVEC4 _tmax = FVEC4( + (float)(positionAccessor.max.value().get((size_t)0)), + (float)(positionAccessor.max.value().get((size_t)1)), + (float)(positionAccessor.max.value().get((size_t)2)), + 0.f); + + _vmax[0] = std::max(_tmin.x(), _tmax.x()); + _vmax[1] = std::max(_tmin.y(), _tmax.y()); + _vmax[2] = std::max(_tmin.z(), _tmax.z()); + _vmin[0] = std::min(_tmin.x(), _tmax.x()); + _vmin[1] = std::min(_tmin.y(), _tmax.y()); + _vmin[2] = std::min(_tmin.z(), _tmax.z()); + _vcen[0] = (_vmax[0] + _vmin[0]) / 2.0f; + _vcen[1] = (_vmax[1] + _vmin[1]) / 2.0f; + _vcen[2] = (_vmax[2] + _vmin[2]) / 2.0f; + float size_x = _vmax[0] - _vmin[0]; + float size_y = _vmax[1] - _vmin[1]; + float size_z = _vmax[2] - _vmin[2]; + _vrad = std::sqrt((size_x * size_x) + (size_y * size_y) + (size_z * size_z)) / 2.0f; + _retval[0] = _vcen[0]; + _retval[1] = _vcen[1]; + _retval[2] = _vcen[2]; + _retval[3] = _vrad; + } else { + std::cout << "*** COULD NOT GET PRIMITIVE CENTER POINT - NO MIN/MAX DEFINED ***\n"; + } + } + } + return _retval; +} +*/ +void lv_gltf_print_matrix_summary(FMAT4 matrix) +{ + const auto & m = matrix.data(); + std::cout << std::to_string(m[0]) << ", " << std::to_string(m[1]) << ", " << std::to_string( + m[2]) << ", " << std::to_string(m[3]) << "\n"; + std::cout << std::to_string(m[4]) << ", " << std::to_string(m[5]) << ", " << std::to_string( + m[6]) << ", " << std::to_string(m[7]) << "\n"; + std::cout << std::to_string(m[8]) << ", " << std::to_string(m[9]) << ", " << std::to_string( + m[10]) << ", " << std::to_string(m[11]) << "\n"; + std::cout << std::to_string(m[12]) << ", " << std::to_string(m[13]) << ", " << std::to_string( + m[14]) << ", " << std::to_string(m[15]) << "\n"; +} + +void lv_gltf_get_isolated_filename(const char * filename, char * out_buffer, uint32_t max_out_length) +{ + std::string _filenamestr = filename; + int32_t beginIdx = _filenamestr.rfind('/'); + std::string isofilename = _filenamestr.substr(beginIdx + 1); + strncpy(out_buffer, isofilename.c_str(), max_out_length); + out_buffer[max_out_length - 1] = '\0'; +} + +void lv_gltf_debug_print_node(ASSET & asset, fastgltf::Node node, std::size_t depth) +{ + std::size_t _tabwidth = 4; + std::size_t _insetspaces = _tabwidth * depth; + char * _tabstr = new char[_insetspaces + 1]; + memset(_tabstr, ' ', _insetspaces); + _tabstr[_insetspaces] = '\0'; + + if(depth == 1) { + std::cout << _tabstr << "+ '" << node.name << "' (Root Node)\n"; + } + else { + std::cout << _tabstr << "+ '" << node.name << "'\n"; + } + + if(node.meshIndex.has_value()) { + std::cout << _tabstr << ": Mesh Index: " << node.meshIndex.value() << " '" << asset.meshes[node.meshIndex.value()].name + << "'\n"; + } + else { + std::cout << _tabstr << ": (this node does not render)\n"; + } + + if(const auto * pTRS = std::get_if(&node.transform)) { + std::cout << _tabstr << ": Translation X/Y/Z: " << pTRS->translation.x() << " / " << pTRS->translation.y() << " / " << + pTRS->translation.z() << "\n"; + std::cout << _tabstr << ": Rotation X/Y/Z/W: " << pTRS->rotation.x() << " / " << pTRS->rotation.y() << " / " << + pTRS->rotation.z() << " / " << pTRS->rotation.w() << "\n"; + std::cout << _tabstr << ": Scale X/Y/Z/W: " << pTRS->scale.x() << " / " << pTRS->scale.y() << " / " << pTRS->scale.z() + << "\n"; + } + else if(const auto * pMat4 = std::get_if(&node.transform)) { + std::cout << _tabstr << ": 4x4 Matrix [ " << pMat4->col(0)[0] << ", " << pMat4->col(0)[1] << ", " << pMat4->col( + 0)[2] << ", " << pMat4->col(0)[3] << " ]\n"; + std::cout << _tabstr << ": [ " << pMat4->col(1)[0] << ", " << pMat4->col(1)[1] << ", " << pMat4->col( + 1)[2] << ", " << pMat4->col(1)[3] << " ]\n"; + std::cout << _tabstr << ": [ " << pMat4->col(2)[0] << ", " << pMat4->col(2)[1] << ", " << pMat4->col( + 2)[2] << ", " << pMat4->col(2)[3] << " ]\n"; + std::cout << _tabstr << ": [ " << pMat4->col(3)[0] << ", " << pMat4->col(3)[1] << ", " << pMat4->col( + 3)[2] << ", " << pMat4->col(3)[3] << " ]\n"; + } + if(node.children.size() > 0) { + std::cout << _tabstr << "+ (" << node.children.size() << ") children\n"; + for(auto & child : node.children) { + lv_gltf_debug_print_node(asset, asset.nodes[child], depth + 1); + } + } + delete[] _tabstr; +} + +void lv_gltf_copy_viewer_desc(gl_viewer_desc_t * from, gl_viewer_desc_t * to) +{ + to->pitch = from->pitch; + to->yaw = from->yaw; + to->distance = from->distance; + to->recenter_flag = from->recenter_flag; + to->focal_x = from->focal_x; + to->focal_y = from->focal_y; + to->focal_z = from->focal_z; + to->width = from->width; + to->height = from->height; + to->camera = from->camera; + to->anim = from->anim; + to->timestep = from->timestep; + to->error_frames = from->error_frames; + to->aa_mode = from->aa_mode; + to->bg_mode = from->bg_mode; + to->blur_bg = from->blur_bg; + to->exposure = from->exposure; + to->fov = from->fov; + to->env_pow = from->env_pow; + to->bg_r = from->bg_r; + to->bg_g = from->bg_g; + to->bg_b = from->bg_b; + to->bg_a = from->bg_a; + to->spin_degree_offset = from->spin_degree_offset; +} + +bool lv_gltf_compare_viewer_desc(gl_viewer_desc_t * from, gl_viewer_desc_t * to) +{ + if((to->pitch != from->pitch) || + (to->yaw != from->yaw) || + (to->distance != from->distance) || + (to->recenter_flag != from->recenter_flag) || + (to->focal_x != from->focal_x) || + (to->focal_y != from->focal_y) || + (to->focal_z != from->focal_z) || + (to->camera != from->camera) || + (to->anim != from->anim) || + (to->aa_mode != from->aa_mode) || + (to->bg_mode != from->bg_mode) || + (to->blur_bg != from->blur_bg) || + (to->exposure != from->exposure) || + (to->fov != from->fov) || + (to->bg_r != from->bg_r) || + (to->bg_g != from->bg_g) || + (to->bg_b != from->bg_b) || + (to->bg_a != from->bg_a) || + (to->spin_degree_offset != from->spin_degree_offset) || + (to->env_pow != from->env_pow)) { + return true; + } + // These will be handled elsewhere + //if (to->width != from->width) { printf("width diff\n"); return true; } + //if (to->height != from->height) { printf("height diff\n"); return true; } + // These are intentionally not compared + //if (to->timestep != from->timestep) return true; + //if (to->error_frames != from->error_frames) return true; + //if (to->frame_was_cached != from->frame_was_cached) return true; + return false; +} + +/** + * @brief Multiply a matrix by a vector. + * + * This function performs matrix-vector multiplication, taking a 4x4 matrix and a 3D vector + * as inputs, and returning the resulting 3D vector. + * + * @param mat The 4x4 matrix (FMAT4) to be multiplied. + * @param vec The 3D vector (FVEC3) to be multiplied by the matrix. + * @return The resulting 3D vector (FVEC3) after multiplication. + */ +FVEC3 __multiplyMatrixByVector(const FMAT4 mat, const FVEC3 vec) +{ + return FVEC3( + mat[0][0] * vec[0] + mat[0][1] * vec[1] + mat[0][2] * vec[2] + mat[0][3], + mat[1][0] * vec[0] + mat[1][1] * vec[1] + mat[1][2] * vec[2] + mat[1][3], + mat[2][0] * vec[0] + mat[2][1] * vec[1] + mat[2][2] * vec[2] + mat[2][3]); +} + +/** + * @brief Compute the ray from the camera through the mouse position. + * + * This function calculates a ray originating from the camera and passing through the specified + * mouse position on the screen. It can be used for picking or collision detection with the ground. + * + * @param viewer Pointer to the lv_gltf_view_t structure representing the viewer. + * @param norm_mouseX The normalized X coordinate of the mouse position. + * @param norm_mouseY The normalized Y coordinate of the mouse position. + * @param groundHeight The height of the ground plane for collision detection. + * @param aspectRatio The aspect ratio of the viewport. + * @param collisionPoint Pointer to an FVEC3 where the collision point will be stored if a collision occurs. + * @return A boolean indicating whether the ray successfully intersects the ground. + */ +bool __computeRayToGround(lv_gltf_view_t * viewer, float norm_mouseX, float norm_mouseY, double groundHeight, + float aspectRatio, FVEC3 * collisionPoint) +{ + const auto & _viewmat = GET_VIEW_MAT(viewer); + //const auto& _desc = lv_gltf_view_get_desc(viewer); + _MAT4 __projmat; + //float aspectRatio = 256.0f / 192.0f; + float nearPlane = 0.1f; + float farPlane = 100.0f; + float fov = 3.14159263 * 0.25f; // vertical fov 45 degrees + float f = 1.0f / std::tan(fov / 2.0f); + float nf = 1.0f / (nearPlane - farPlane); + + __projmat[0][0] = f / aspectRatio; + __projmat[1][1] = f; + __projmat[2][2] = (farPlane + nearPlane) * nf; + __projmat[2][3] = (2.0f * farPlane * nearPlane) * nf; + __projmat[3][2] = -1.0f; + __projmat[3][3] = 0.0f; + + // mfloat_t _projmat[MAT4_SIZE]; + // for (int32_t i=0; i<16; i++) { + // _projmat[i] = __projmat.data()[i]; + // } + // mfloat_t _invprojmat[MAT4_SIZE]; + //mat4_inverse(_invprojmat, _projmat); + __projmat = fastgltf::math::invert(_MAT4(__projmat)); + // __projmat = FMAT4( + // _invprojmat[0], _invprojmat[1], _invprojmat[2], _invprojmat[3], + // _invprojmat[4], _invprojmat[5], _invprojmat[6], _invprojmat[7], + // _invprojmat[8], _invprojmat[9], _invprojmat[10], _invprojmat[11], + // _invprojmat[12], _invprojmat[13], _invprojmat[14], _invprojmat[15]); + + // Step 1: Convert mouse coordinates to normalized device coordinates (NDC) + float _x = norm_mouseX * 2.0f - 1.0f; + float _y = 1.0f - (norm_mouseY * 2.0f); + float _z = -1.0f; // Clip space z + FVEC4 clipSpacePos = FVEC4(_x, _y, _z, 1.f); + auto rayEye = (__projmat) * clipSpacePos ; + rayEye[2] = -1.0f; + rayEye[3] = 0.0f; + FVEC4 t_rayWorld = fastgltf::math::invert(*_viewmat) * rayEye; + FVEC3 rayDirection = fastgltf::math::normalize(FVEC3(t_rayWorld[0], t_rayWorld[1], t_rayWorld[2])); + + FVEC3 _tpos = get_cam_pos(viewer); + FVEC3 rayOrigin = FVEC3(_tpos[0], _tpos[1], _tpos[2]); + float t = ((float)groundHeight - rayOrigin[1]) / rayDirection[1]; + + if(t < 0.f) { + return false; // The ray is pointing away from the ground + } + + // Calculate the collision point + (*collisionPoint)[0] = (rayOrigin[0] + t * rayDirection[0]); + (*collisionPoint)[1] = groundHeight; // y is the ground height + (*collisionPoint)[2] = (rayOrigin[2] + t * rayDirection[2]); + + return true; // Collision point found +} + +bool lv_gltf_view_raycast_ground_position(lv_gltf_view_t * viewer, int32_t _mouseX, int32_t _mouseY, int32_t _winWidth, + int32_t _winHeight, double groundHeight, float * outPos) +{ + float norm_mouseX = (float)_mouseX / (float)(_winWidth); + float norm_mouseY = (float)_mouseY / (float)(_winHeight); + FVEC3 _rayres; + float aspect = (float)viewer->desc.width / (float)viewer->desc.height; + bool validres = __computeRayToGround(viewer, norm_mouseX, norm_mouseY, groundHeight, aspect, &_rayres); + if(validres) { + outPos[0] = _rayres[0]; + outPos[1] = _rayres[1]; + outPos[2] = _rayres[2]; + } + return validres; +} + +void lv_gltf_view_recenter_view_on_model(lv_gltf_view_t * viewer, lv_gltf_data_t * gltf_data) +{ + const auto & _autocenpos = lv_gltf_data_get_center(gltf_data); + lv_gltf_view_set_focal_x(viewer, _autocenpos[0]); + lv_gltf_view_set_focal_y(viewer, _autocenpos[1]); + lv_gltf_view_set_focal_z(viewer, _autocenpos[2]); +} + +void lv_gltf_view_utils_save_pixelbuffer_to_png(char * pixels, const char * filename, bool alpha_enabled, + uint32_t compression_level, uint32_t width, uint32_t height) +{ + stbi_write_png_compression_level = compression_level; + stbi_flip_vertically_on_write(true); + stbi_write_png(filename, width, height, (alpha_enabled ? 4 : 3), pixels, width * (alpha_enabled ? 4 : 3)); +} + +void es3_compat_get_texture_data(uint32_t tex_num, uint32_t mipmapnum, bool alpha_enabled, char * pixels, + uint32_t width, uint32_t height) +{ + GLuint framebuffer; + glGenFramebuffers(1, &framebuffer); + glBindFramebuffer(GL_FRAMEBUFFER, framebuffer); + + // Attach the texture to the framebuffer + glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, tex_num, mipmapnum); + + // Check if the framebuffer is complete + if(glCheckFramebufferStatus(GL_FRAMEBUFFER) != GL_FRAMEBUFFER_COMPLETE) { + // Handle framebuffer not complete error + } + + // Read the pixels from the framebuffer + glReadPixels(0, 0, width, height, alpha_enabled ? GL_RGBA : GL_RGB, GL_UNSIGNED_BYTE, pixels); + + // Unbind the framebuffer + glBindFramebuffer(GL_FRAMEBUFFER, 0); + + // Delete the framebuffer + glDeleteFramebuffers(1, &framebuffer); +} + +void lv_gltf_view_utils_get_texture_pixels(char * pixels, uint32_t tex_id, bool alpha_enabled, uint32_t mipmapnum, + uint32_t width, uint32_t height) +{ + GL_CALL(glBindTexture(GL_TEXTURE_2D, tex_id)); + LV_UNUSED(width); + LV_UNUSED(height); +#ifdef __EMSCRIPTEN__ + es3_compat_get_texture_data(tex_id, mipmapnum, alpha_enabled, pixels, width, height); +#else + glGetTexImage(GL_TEXTURE_2D, mipmapnum, alpha_enabled ? GL_RGBA : GL_RGB, GL_UNSIGNED_BYTE, pixels); +#endif +} +void lv_gltf_view_utils_save_texture_to_png(uint32_t tex_id, const char * filename, bool alpha_enabled, + uint32_t compression_level, uint32_t mipmapnum, uint32_t width, uint32_t height) +{ + char * pixels = (char *)lv_malloc(height * width * 4); + lv_gltf_view_utils_get_texture_pixels(pixels, tex_id, alpha_enabled, mipmapnum, width, height); + lv_gltf_view_utils_save_pixelbuffer_to_png(pixels, filename, alpha_enabled, compression_level, width, height); + lv_free(pixels); +} + +void lv_gltf_view_utils_save_png(lv_gltf_view_t * viewer, const char * filename, bool alpha_enabled, + uint32_t compression_level) +{ + const auto & vstate = get_viewer_state(viewer); + const auto & vdesc = lv_gltf_view_get_desc(viewer); + lv_gltf_view_utils_save_texture_to_png(vstate->render_state.texture, filename, alpha_enabled, compression_level, + lv_gltf_view_check_frame_was_antialiased(viewer) ? 1 : 0, vdesc->width, vdesc->height); +} diff --git a/lib/lv_opengl_shader_cache/lv_opengl_shader_cache.cpp b/lib/lv_opengl_shader_cache/lv_opengl_shader_cache.cpp new file mode 100644 index 0000000..ae80fe5 --- /dev/null +++ b/lib/lv_opengl_shader_cache/lv_opengl_shader_cache.cpp @@ -0,0 +1,309 @@ +#include +#include +#include + +#include /* GL_CALL */ +#include "lv_opengl_shader_cache.h" + +#include +#include +#include +#include +#include /* cout */ +#define HASH_SEED 0 +// [ Utilities ] /////////////////////////////////////////////////////////////////////// + +std::map * _getSetAsMap(lv_shader_key_value_t * _set, unsigned int _count) +{ + std::map * _ret = new std::map(); + if(_set != nullptr) { + for(unsigned int i = 0; i < _count; i++) { + auto _kv = *(_set + i); + (*_ret)[std::string(_kv.key)] = std::string(_kv.value); + } + } + return _ret; +} + +unsigned long int stringHash(std::string str, unsigned long int seed) +{ + unsigned long int hash = seed; + if(str.length() == 0) return hash; + for(unsigned int i = 0; i < str.length(); i++) { + char chr = str[i]; + hash = ((hash << 5) - hash) + chr; + hash |= 0; // Convert to 32bit integer + } + return hash; +} + +unsigned long int c_stringHash(const char * c_str, unsigned long int seed) +{ + return stringHash(std::string(c_str), seed); +} + +bool string_ends_with(std::string const & fullString, std::string const & ending) +{ + if(fullString.length() >= ending.length()) { + return (0 == fullString.compare(fullString.length() - ending.length(), ending.length(), ending)); + } + else { + return false; + } +} + +// [ Program Class ] /////////////////////////////////////////////////////////////////// + +void __update_uniform_1i(lv_shader_program_t * This, const char * _propStr, int _newValue) +{ + unsigned int location = glGetUniformLocation(This->program, _propStr); + GL_CALL(glUniform1i(location, _newValue)); +} + +void __update_uniform_1f(lv_shader_program_t * This, const char * _propStr, float _newValue) +{ + unsigned int location = glGetUniformLocation(This->program, _propStr); + GL_CALL(glUniform1f(location, _newValue)); +} + +lv_shader_program_t Program(GLuint _program, char * _hash) +{ + lv_shader_program_t aProgram; + aProgram.update_uniform_1i = &__update_uniform_1i; + aProgram.update_uniform_1f = &__update_uniform_1f; + aProgram.program = _program; + strcpy(aProgram.hash, _hash); + aProgram.map_uniforms = new std::map(); + aProgram.map_attributes = new std::map(); + return aProgram; +} + +void destroy_Program(lv_shader_program_t * This) +{ +#ifndef __EMSCRIPTEN__ + GLuint shader_names[10]; + GLsizei shader_count; + GL_CALL(glGetAttachedShaders(This->program, 10, &shader_count, shader_names)); + + // Detach and delete each shader + for(GLsizei i = 0; i < shader_count; ++i) { + if(shader_names[i] != 0) GL_CALL(glDetachShader(This->program, shader_names[i])); + } +#endif + + // Delete the program + GL_CALL(glDeleteProgram(This->program)); + delete(std::map *)This->map_uniforms; + delete(std::map *)This->map_attributes; +} + +// [ lv_opengl_shader_cache Class ] /////////////////////////////////////////////////////////////// + + +long unsigned int __select_shader(lv_opengl_shader_cache_t * This, const char * shaderIdentifier_cstr, + lv_shader_key_value_t * permutationDefines_kvs, unsigned int permutationDefinesCount) +{ + // first check shaders for the exact permutation + // if not present, check sources and compile it + // if not present, return null object + + std::vector permutationDefines = std::vector(); + for(unsigned int i = 0; i < permutationDefinesCount; i++) { + std::string tstr = std::string(""); + tstr += &(*(permutationDefines_kvs + i)->key); + if(&(*(permutationDefines_kvs + i)->value) != NULL) { + tstr += " "; + tstr += &(*(permutationDefines_kvs + i)->value); + } + permutationDefines.push_back(tstr); + } + std::string shaderIdentifier = shaderIdentifier_cstr; + std::string src; + auto sources = (std::map *)(This->map_sources); + + if(sources->count(shaderIdentifier) == 0) { + std::cout << "Shader source for " << shaderIdentifier << " not found\n"; + return 0; + } + src = (*sources)[shaderIdentifier]; + + bool isVert = string_ends_with(shaderIdentifier, ".vert"); + unsigned long int hash = stringHash(shaderIdentifier, HASH_SEED); + + std::string defines("#version 300 es\n"); + for(auto & define : permutationDefines) { + hash ^= stringHash(define, HASH_SEED); + defines += std::string("#define ") + define + std::string("\n"); + } + auto shaders = (std::map *)(This->map_shaders); + if(shaders->count(hash) == 0) { + //std::cout << "__select_shader -> Creating new shader for hash: " << hash << "\n"; + GLuint shader; + + if(isVert) { + GL_CALL(shader = glCreateShader(GL_VERTEX_SHADER)); + } + else { + GL_CALL(shader = glCreateShader(GL_FRAGMENT_SHADER)); + } + + std::string _fullsrcStr = (defines + src); + char * _fullsrc = (char *)calloc(_fullsrcStr.length() + 1, 1); + strcpy(_fullsrc, _fullsrcStr.c_str()); + + GL_CALL(glShaderSource(shader, 1, &_fullsrc, NULL)); + GL_CALL(glCompileShader(shader)); + free(_fullsrc); + + int shader_compiled; + GL_CALL(glGetShaderiv(shader, GL_COMPILE_STATUS, &shader_compiled)); + if(!shader_compiled) { + GLchar InfoLog[512]; + GL_CALL(glGetShaderInfoLog(shader, sizeof(InfoLog), NULL, InfoLog)); + LV_LOG_ERROR("GLSL ERROR: %s", InfoLog); + exit(1); + } + (*shaders)[hash] = shader; + }// else { + // std::cout << "__select_shader -> Reusing shader hash: " << hash << "\n"; + //} + return hash; +} + +lv_shader_program_t * __get_shader_program(lv_opengl_shader_cache_t * This, unsigned long int vertexShaderHash, + unsigned long int fragmentShaderHash) +{ + auto programs = (std::map *)(This->map_programs); + auto shaders = (std::map *)(This->map_shaders); + std::string hash = std::string(std::to_string(vertexShaderHash)) + "," + std::string(std::to_string( + fragmentShaderHash)); + if(programs->count(hash)) { // program already linked + return &((*programs)[hash]); + } + GLuint linkedProg; + GL_CALL(linkedProg = glCreateProgram()); + GL_CALL(glAttachShader(linkedProg, (GLuint)((*shaders)[vertexShaderHash]))); + GL_CALL(glAttachShader(linkedProg, (GLuint)((*shaders)[fragmentShaderHash]))); + GL_CALL(glLinkProgram(linkedProg)); + (*programs)[hash] = Program(linkedProg, hash.data()); + return &((*programs)[hash]); +} + +void __set_texture_cache_item(lv_opengl_shader_cache_t * This, long unsigned int _tex_id_hash, + unsigned int _texture_gl_id) +{ + auto textures = (std::map *)This->map_textures; + (*textures)[_tex_id_hash] = _texture_gl_id; +} + +unsigned int __getCachedTexture(lv_opengl_shader_cache_t * This, long unsigned int _tex_id_hash) +{ + auto textures = (std::map *)This->map_textures; + for(const auto& [hash, texture_id] : (*textures)) { + if(hash == _tex_id_hash) { + return texture_id; + } + } + return GL_NONE; +} + +void __ShaderCache_initCommon(lv_opengl_shader_cache_t * This) +{ + This->map_textures = new std::map(); // texture_id hashed -> loaded texture id + This->map_shaders = new + std::map(); // name & permutations hashed -> compiled shader + This->map_programs = new + std::map(); // (vertex shader, fragment shader) -> program + auto sources = (std::map *)(This->map_sources); + std::map::iterator it; + for(it = sources->begin(); it != sources->end(); it++) { + std::string _src = it->second; + bool changed = false; + for(const auto& [includeName, includeSource] : (*sources)) { + if(includeName.empty() || includeSource.empty()) { + continue; // Skip empty names or sources + } + std::string pattern = "#include <" + includeName + ">"; + std::regex regexPattern(pattern); // Create regex once + + if(_src.find(pattern) != std::string::npos) { + // only replace the first occurance + _src = std::regex_replace(_src, regexPattern, includeSource); + while(_src.find(pattern) != std::string::npos) { + _src = std::regex_replace(_src, regexPattern, std::string()); + } + changed = true; + } + } + if(changed) { + (*sources)[it->first] = _src.c_str(); + } + } + This->map_sources = sources; + This->bg_indexBuf = 0; + This->bg_vertexBuf = 0; + This->bg_program = 0; +} + +lv_opengl_shader_cache_t lv_opengl_shader_cache_create(lv_shader_key_value_t * _sources, unsigned int _count, + char * _vertSrc, char * _fragSrc) +{ + lv_opengl_shader_cache_t aShaderCache; + aShaderCache.select_shader = &__select_shader; + aShaderCache.get_shader_program = &__get_shader_program; + aShaderCache.set_texture_cache_item = &__set_texture_cache_item; + aShaderCache.getCachedTexture = &__getCachedTexture; + aShaderCache.kvcount = _count; + aShaderCache.lastEnv = NULL; + auto sources = _getSetAsMap(_sources, _count); + if(_vertSrc != NULL) { + (*sources)["__MAIN__.vert"] = std::string(_vertSrc); + free(_vertSrc); + } + if(_fragSrc != NULL) { + (*sources)["__MAIN__.frag"] = std::string(_fragSrc); + free(_fragSrc); + } + aShaderCache.map_sources = sources; + __ShaderCache_initCommon(&aShaderCache); + return aShaderCache; +} + +void destroy_environment(gl_environment_textures * _env) +{ + std::cout << "Freeing environment resources\n"; + const unsigned int d[3] = {_env->diffuse, _env->specular, _env->sheen}; + GL_CALL(glDeleteTextures(3, d)); +} + +void lv_opengl_shader_cache_destroy(lv_opengl_shader_cache_t * This) +{ + std::cout << "Shader cache freeing resources...\n"; + + delete(std::map *)This->map_textures; + This->map_textures = nullptr; + + auto shaders = (std::map *)This->map_shaders; + for(const auto& [hash, shader_id] : (*shaders)) { + glDeleteShader( + shader_id); // Note this only flags the shader for deletion, it won't actually delete until there are no references to it anymore + } + delete(std::map *)This->map_shaders; + This->map_shaders = nullptr; + delete(std::map *)This->map_sources; + This->map_sources = nullptr; + + auto programs = (std::map *)This->map_programs; + for(const auto& [hashstr, program] : (*programs)) { + destroy_Program(&((*programs)[hashstr])); + } + programs->clear(); + delete(std::map *)This->map_programs; + This->map_programs = nullptr; + programs = nullptr; + if(This->lastEnv && (This->lastEnv->loaded)) { + destroy_environment(This->lastEnv); + } + This->lastEnv = nullptr; +} +//////////////////////////////////////////////////////////////////////////////////////// diff --git a/lib/lv_opengl_shader_cache/lv_opengl_shader_cache.h b/lib/lv_opengl_shader_cache/lv_opengl_shader_cache.h new file mode 100644 index 0000000..93f6c5c --- /dev/null +++ b/lib/lv_opengl_shader_cache/lv_opengl_shader_cache.h @@ -0,0 +1,100 @@ +#ifndef SHADER_CACHE_H +#define SHADER_CACHE_H + +#ifdef __cplusplus +extern "C" { +#endif + +#ifndef LV_SHADER_CACHE_KEYVAL +#define LV_SHADER_CACHE_KEYVAL +typedef struct { + const char * key; + const char * value; +} lv_shader_key_value_t; +#endif /* LV_SHADER_CACHE_KEYVAL */ + +//////////////////////////////////////////////////////////////////////////////////////// +//typedef struct lv_opengl_shader_cache_struct lv_opengl_shader_cache_t;//, *pShaderCache; +//typedef struct lv_shader_program_struct lv_shader_program_t;//, *lv_shader_program_t *; +//////////////////////////////////////////////////////////////////////////////////////// + +typedef struct { + bool loaded; + unsigned int diffuse; + unsigned int specular; + unsigned int sheen; + unsigned int ggxLut; + unsigned int charlieLut; + unsigned int mipCount; + float iblIntensityScale; + float angle; + +} gl_environment_textures; + +//////////////////////////////////////////////////////////////////////////////////////// + +typedef struct lv_shader_program_struct { + // Methods: + // update_uniform_1f ( myProgram, "u_MyShaderFloatProp", 1.23 ) + void (*update_uniform_1f)(struct lv_shader_program_struct *, const char *, float); + // --> returns nothing + // update_uniform_1i ( myProgram, "u_MyShaderIntProp", 123 ) + void (*update_uniform_1i)(struct lv_shader_program_struct *, const char *, int); + // --> returns nothing + unsigned int program; + char hash[128]; + void * map_uniforms; // -> (std::map*) + void * map_attributes; // -> (std::map*) +} lv_shader_program_t; +lv_shader_program_t Program(unsigned int _program, const char * _hash); +void destroy_Program(lv_shader_program_t * This); + +//////////////////////////////////////////////////////////////////////////////////////// + +typedef struct lv_opengl_shader_cache_struct { + // Methods: + // select_shader ( myCache, identifier, defines[key_val] array, defines[key_val] array count ) + // --> (possibly compiles a new shader) + long unsigned int (*select_shader)(struct lv_opengl_shader_cache_struct *, const char *, lv_shader_key_value_t *, + unsigned int); + // --> returns the unique shader ID hash + + // get_shader_program ( myCache, unique vertex shader hash, unique fragment shader hash ) + lv_shader_program_t * (*get_shader_program)(struct lv_opengl_shader_cache_struct *, unsigned long int, + unsigned long int); + // --> returns a Program struct holding the shader information + + // set_texture_cache_item ( myCache, unique texture id hash, opengl texture id ) + // --> (sets internal cache of loaded textures at element hash to texture id ) + void (*set_texture_cache_item)(struct lv_opengl_shader_cache_struct *, long unsigned int, unsigned int); + // --> returns nothing + + // getCachedTexture ( myCache, unique texture id hash ) + unsigned int (*getCachedTexture)(struct lv_opengl_shader_cache_struct *, long unsigned int); + // --> returns the texture id of requested cache resource or GL_NONE if not found + + lv_shader_key_value_t * kvsources; + unsigned int kvcount; + unsigned int bg_indexBuf; + unsigned int bg_vertexBuf; + unsigned int bg_program; + unsigned int bg_vao; + gl_environment_textures * lastEnv; // The last displayed environment, it gets reused if not null and loaded. + void * map_sources; // -> (std::map*) + void * map_shaders; // -> (std::map*) + void * map_programs; // -> (std::map*) + void * map_textures; // -> (std::map*) +} lv_opengl_shader_cache_t;//, *pShaderCache; +lv_opengl_shader_cache_t lv_opengl_shader_cache_create(lv_shader_key_value_t * _sources, unsigned int _count, + char * _vertSrc, char * _fragSrc); +void lv_opengl_shader_cache_destroy(lv_opengl_shader_cache_t * This); + +//////////////////////////////////////////////////////////////////////////////////////// + +unsigned long int c_stringHash(const char * c_str, unsigned long int seed); + +#ifdef __cplusplus +} /*extern "C"*/ +#endif + +#endif /*SHADER_CACHE*/ \ No newline at end of file diff --git a/lvgl b/lvgl index 8d90287..1b6db8f 160000 --- a/lvgl +++ b/lvgl @@ -1 +1 @@ -Subproject commit 8d90287e203ad732087d87d01f80490fb7caa5aa +Subproject commit 1b6db8f80dfc627123228665f9bba0b65ed09ffc diff --git a/main.c b/main.c deleted file mode 100644 index aeb21e3..0000000 --- a/main.c +++ /dev/null @@ -1,109 +0,0 @@ -#include "lvgl/lvgl.h" -#include "lvgl/demos/lv_demos.h" -#include "lvgl/examples/lv_examples.h" - -#include "gltf_loader.h" - -#include /* usleep */ - -#define WINDOW_WIDTH 640 -#define WINDOW_HEIGHT 480 - -#define LIST_WIDTH 450 -#define LIST_HEIGHT 325 - -#define TEXTURE_WIDTH 100 -#define TEXTURE_HEIGHT 100 - -static lv_obj_t * lv_3dtexture_from_gltf_model(lv_obj_t * parent, const char * path, uint32_t w, uint32_t h, - lv_color_t color, lv_opa_t opa) -{ - lv_obj_t * tex = lv_3dtexture_create(parent); - lv_3dtexture_id_t gltf_texture = render_gltf_model_to_opengl_texture(path, w, h, color); - lv_3dtexture_set_src(tex, gltf_texture); - lv_obj_set_size(tex, w, h); - lv_obj_set_style_opa(tex, opa, 0); - return tex; -} - -static lv_obj_t * create_list_item(lv_obj_t * parent, const char * path, lv_color_t color, lv_opa_t opa, const char * name, - const char * category, const char * status) -{ - static int32_t grid_col_dsc[] = {LV_GRID_CONTENT, 5, LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST}; - static int32_t grid_row_dsc[] = {LV_GRID_FR(1), LV_GRID_FR(1), LV_GRID_TEMPLATE_LAST}; - - lv_obj_t * cont = lv_obj_create(parent); - lv_obj_remove_style_all(cont); - lv_obj_set_size(cont, LV_PCT(100), LV_SIZE_CONTENT); - lv_obj_set_grid_dsc_array(cont, grid_col_dsc, grid_row_dsc); - - lv_obj_t * tex = lv_3dtexture_from_gltf_model(cont, path, TEXTURE_WIDTH, TEXTURE_HEIGHT, color, opa); - lv_obj_set_grid_cell(tex, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 0, 2); - - lv_obj_t * label; - label = lv_label_create(cont); - lv_label_set_text_static(label, name); - lv_obj_set_grid_cell(label, LV_GRID_ALIGN_START, 2, 1, LV_GRID_ALIGN_END, 0, 1); - - label = lv_label_create(cont); - lv_label_set_text_static(label, category); - lv_obj_set_grid_cell(label, LV_GRID_ALIGN_START, 2, 1, LV_GRID_ALIGN_START, 1, 1); - lv_obj_set_style_text_opa(label, LV_OPA_50, 0); - - label = lv_label_create(cont); - lv_label_set_text_static(label, status); - lv_obj_set_grid_cell(label, LV_GRID_ALIGN_END, 3, 1, LV_GRID_ALIGN_END, 0, 1); - - return cont; -} - -int main() -{ - lv_init(); - - /* create a window and initialize OpenGL */ - lv_glfw_window_t * window = lv_glfw_window_create(WINDOW_WIDTH, WINDOW_HEIGHT, true); - - /* create a display that flushes to a texture */ - lv_display_t * texture = lv_opengles_texture_create(WINDOW_WIDTH, WINDOW_HEIGHT); - lv_display_set_default(texture); - - /* add the texture to the window */ - unsigned int display_texture = lv_opengles_texture_get_texture_id(texture); - lv_glfw_texture_t * window_texture = lv_glfw_window_add_texture(window, display_texture, WINDOW_WIDTH, WINDOW_HEIGHT); - - /* get the mouse indev of the window texture */ - lv_indev_t * mouse = lv_glfw_texture_get_mouse_indev(window_texture); - - /* add a cursor to the mouse indev */ - LV_IMAGE_DECLARE(mouse_cursor_icon); - lv_obj_t * cursor_obj = lv_image_create(lv_screen_active()); - lv_image_set_src(cursor_obj, &mouse_cursor_icon); - lv_indev_set_cursor(mouse, cursor_obj); - - - lv_obj_t * list = lv_obj_create(lv_screen_active()); - lv_obj_set_size(list, LIST_WIDTH, LIST_HEIGHT); - lv_obj_center(list); - - lv_obj_set_flex_flow(list, LV_FLEX_FLOW_COLUMN); - lv_obj_add_flag(list, LV_OBJ_FLAG_FLEX_IN_NEW_TRACK); - - lv_obj_t * title = lv_label_create(list); - lv_label_set_text(title, "3D Models"); - - create_list_item(list, "gltfs/teapot.gltf", lv_color_hex(0xffff00), LV_OPA_100, "big yellow teapot", "yellow", "active"); - create_list_item(list, "gltfs/torusknot.gltf", lv_color_hex(0xff007f), LV_OPA_100, "torus knot", "pink", "inactive"); - create_list_item(list, "gltfs/teapot.gltf", lv_color_hex(0x00ff00), LV_OPA_100, "witch's teapot", "green", "inactive"); - create_list_item(list, "gltfs/torusknot.gltf", lv_color_hex(0x7f7f7f), LV_OPA_20, "translucent torus knot", "translucent", "active"); - - lv_obj_t * scroll_down_label = lv_label_create(lv_screen_active()); - lv_label_set_text_static(scroll_down_label, "scroll down"); - lv_obj_update_layout(lv_screen_active()); - lv_obj_align_to(scroll_down_label, list, LV_ALIGN_OUT_BOTTOM_MID, 0, 0); - - while(true) { - uint32_t ms_delay = lv_timer_handler(); - usleep(ms_delay * 1000); - } -} diff --git a/media/readme/readme_image.png b/media/readme/readme_image.png new file mode 100644 index 0000000..2ecf5d8 Binary files /dev/null and b/media/readme/readme_image.png differ diff --git a/media/readme/screenshot_image1.png b/media/readme/screenshot_image1.png new file mode 100644 index 0000000..3e8394c Binary files /dev/null and b/media/readme/screenshot_image1.png differ diff --git a/media/readme/screenshot_image2.png b/media/readme/screenshot_image2.png new file mode 100644 index 0000000..c41d8bc Binary files /dev/null and b/media/readme/screenshot_image2.png differ diff --git a/readme_image.png b/readme_image.png deleted file mode 100644 index 06a42ec..0000000 Binary files a/readme_image.png and /dev/null differ diff --git a/src/demo.cpp b/src/demo.cpp new file mode 100644 index 0000000..29026b5 --- /dev/null +++ b/src/demo.cpp @@ -0,0 +1,495 @@ +#include "demo.h" +#include +#include +#include +#include "lib/lv_gltf/data/lv_gltf_data_internal.h" +#include "lib/lv_gltf/data/lv_gltf_override.h" +#include "lib/lv_gltf/data/lv_gltf_data.h" +#include "lib/lv_gltf/view/lv_gltf_view.h" +#include "lib/lv_gltf/view/lv_gltf_view_internal.hpp" + +#define SYSTEM_ASSETS_FILENAME "./gltfs/support_assets.glb" + +float TIME_SCALE = 1.0f; +unsigned int _current_tab = 0; +lv_obj_t * tab_pages[MAX_TABS]; + +float spin_counter_degrees = 0.f; +float spin_rate = 0.f; +float anim_rate = 1.f; +int camera = -1; +int anim = -1; +bool use_scenecam = false; +bool anim_enabled = true; +bool animate_spin = true; +bool show_grid = true; +bool needs_system_gltfdata = false; +bool frame_grab_ui = false; +bool enable_intro_zoom = true; +bool reapply_layout_flag = true; +bool stub_mode = false; +uint32_t cycle_frames = 1; + +#ifdef ENABLE_DESKTOP_MODE + float desktop_ratio = 0.5f; + bool desktop_mode = false; +#endif + +lv_indev_t * mouse; +lv_glfw_window_t * window; +lv_display_t * display_texture; +lv_glfw_texture_t * window_texture; + +lv_obj_t * gltfview_3dtex; +lv_gltf_view_t * demo_gltfview; +lv_opengl_shader_cache_t * shader_cache = NULL; +lv_gltf_data_t * system_gltfdata = NULL; +lv_gltf_data_t * demo_gltfdata = NULL; +lv_gltf_override_t * ov_boom; +lv_gltf_override_t * ov_stick; +lv_gltf_override_t * ov_bucket; +lv_gltf_override_t * ov_swing; +lv_gltf_override_t * ov_cursor; +lv_gltf_override_t * ov_cursor_scale; +lv_gltf_override_t * ov_ground_scale; +//lv_gltf_override_t * ov_ground_rot; + +//static lv_image_dsc_t img_dsc = {0}; + + +// Note: it's very important that the #include lines start at the beginning +// of the line they're on, with no whitespace in front. Also, if you decide to +// comment out any line with an #include in it, you should apply the // at the +// beginning of the line like normal, but also put an underscore or something +// inside the #include, so it doesn't create any matches during the preparse phase. + +const char * src_fragOverride = R"( +precision highp float; + +#include +#include +#include + +out vec4 g_finalColor; +void main() { + float edgeFactor = 1.0; + g_finalColor = vec4(0.0, 0.0, 0.0, 1.0); + float gridSpacing = 0.500; + edgeFactor = min((mod(v_Position.x, gridSpacing) / gridSpacing), edgeFactor); + edgeFactor = min((mod(v_Position.y, gridSpacing) / gridSpacing), edgeFactor); + edgeFactor = min((mod(v_Position.z, gridSpacing) / gridSpacing), edgeFactor); + if (edgeFactor < 0.01) g_finalColor = vec4(0.0, 1.0, 0.0, 1.0); +} +)"; + +void reload(char * _filename, const char * _hdr_filename) { + printf("Loading %s...\n", _filename); + + if (!stub_mode) { + lv_obj_clear_flag(grp_loading, LV_OBJ_FLAG_HIDDEN); + lv_obj_add_flag(gltfview_3dtex, LV_OBJ_FLAG_HIDDEN); + } + + const long unsigned int _MAX_FILENAME_SIZE = 64; + char * FILENAME_BUFF = (char*)lv_malloc(_MAX_FILENAME_SIZE); + char buffer[255]; + lv_gltf_get_isolated_filename(_filename, FILENAME_BUFF, _MAX_FILENAME_SIZE); + lv_label_set_text(titleText, FILENAME_BUFF); + sprintf(buffer, "Loading: %s | %s", FILENAME_BUFF, MY_WINDOW_TITLE); + lv_glfw_window_set_title(window, buffer); + lv_free(FILENAME_BUFF); + + lv_obj_clear_flag(grp_loading, LV_OBJ_FLAG_HIDDEN); + + demo_gltfdata = (lv_gltf_data_t*)lv_malloc(lv_gltf_data_get_struct_size() ); + + if (shader_cache == NULL) setup_shadercache(_hdr_filename, 1800); + lv_gltf_data_load_file(_filename, demo_gltfdata, shader_cache); + + if (lv_gltf_view_get_probe(demo_gltfdata)->cameraCount == 0) { + use_scenecam = false; + camera = -1; + } else { + use_scenecam = true; + camera = 0; + } + if (lv_gltf_view_get_probe(demo_gltfdata)->animationCount == 0) { + anim_enabled = false; + //anim = 0; + } else { + anim_enabled = true; + anim = 0; + } + needs_system_gltfdata = show_grid; + #ifdef EXPERIMENTAL_GROUNDCAST + needs_system_gltfdata = true; + #endif + + if (needs_system_gltfdata) { + system_gltfdata = (lv_gltf_data_t*) lv_malloc(lv_gltf_data_get_struct_size() ); + lv_gltf_data_load_file(SYSTEM_ASSETS_FILENAME, system_gltfdata, shader_cache); + //lv_gltf_data_link_view_to(system_gltfdata, demo_gltfdata); // this doesn't actually do anything yet, it was not necessary. Just draw the next object into the same buffer, the view will be linked. + lv_gltf_data_copy_bounds_info(system_gltfdata, demo_gltfdata); + float newradius = lv_gltf_data_get_int_radiusX1000(demo_gltfdata) / 1000.f; + ov_ground_scale = lv_gltf_data_override_add_by_id(system_gltfdata, "/grid", OP_SCALE, OMC_CHAN1 | OMC_CHAN2 | OMC_CHAN3); + //ov_ground_rot = lv_gltf_data_override_add_by_id(system_gltfdata, "/grid", OP_ROTATION, OMC_CHAN1 | OMC_CHAN2 | OMC_CHAN3); + //lv_gltf_data_override_remove(system_gltfdata, ov_ground_rot); + + float unitscale = newradius * ((1.f / 2.f) * 3.f); + float tscale = unitscale; + if (!show_grid) { + tscale = 0.f; + } + ov_ground_scale->data1 = tscale; + ov_ground_scale->data2 = tscale; + ov_ground_scale->data3 = tscale; + + tscale = unitscale / 8.f; + ov_cursor_scale = lv_gltf_data_override_add_by_id(system_gltfdata, "/cursor/visible", OP_SCALE, OMC_CHAN1 | OMC_CHAN2 | OMC_CHAN3); + #ifndef EXPERIMENTAL_GROUNDCAST + tscale = 0.f; + #endif + ov_cursor_scale->data1 = tscale; + ov_cursor_scale->data2 = tscale; + ov_cursor_scale->data3 = tscale; + } + lv_obj_add_flag(grp_loading, LV_OBJ_FLAG_HIDDEN); + if (!stub_mode) lv_obj_clear_flag(gltfview_3dtex, LV_OBJ_FLAG_HIDDEN); + demo_os_integrate_window_standard_title(_filename); + demo_file_load_dialog_set_directory_from_filepath(_filename); + demo_ui_set_tab(TAB_VIEW); +} + +int main(int argc, char *argv[]) { + demo_gltfview = (lv_gltf_view_t * ) lv_malloc(get_viewer_datasize() ); + init_viewer_struct(demo_gltfview); + char gltfFilePath[MAX_PATH_LENGTH] = {0}; + char hdrFilePath[MAX_PATH_LENGTH] = "assets/hdr/directional.jpg"; + int lastMouseX = 0, lastMouseY = 0; + int frameCount = 0; + bool softwareOnly = false; + bool startMaximized = false; + anim_rate = 1.0f; + camera = 0; + use_scenecam = true; + + if ( demo_cli_apply_commandline_options(demo_gltfview, gltfFilePath, hdrFilePath, &frameCount, &softwareOnly, &startMaximized, &stub_mode, &anim_rate, argc, argv) ) { + + //lv_gltf_view_shader_fragment_override(src_fragOverride); + + if (softwareOnly) setenv("LIBGL_ALWAYS_SOFTWARE", "1", 1); + glfwWindowHint(GLFW_VISIBLE, GLFW_FALSE); + lv_init(); + glfwInit(); + + uint32_t max_window_width; + uint32_t max_window_height; + int maxFrames = frameCount; + if (!demo_os_integrate_get_maximum_window_framebuffer_size(&max_window_width, &max_window_height)) startMaximized = false; + + #ifdef ENABLE_DESKTOP_MODE + // Create the thread pool container + pthread_t desktop_mode_worker_threads[MAX_THREADS]; + if (desktop_mode){ + for (int i = 0; i < MAX_THREADS; i++) pthread_create(&desktop_mode_worker_threads[i], NULL, demo_os_integrate_save_desktop_png_thread, NULL); // Start the thread pool + startMaximized = false; + lv_gltf_view_set_width(demo_gltfview, ui_max( (INNER_BG_CROP_LEFT + INNER_BG_CROP_RIGHT) + 128, (int)((float)max_window_width * desktop_ratio) - (INNER_BG_CROP_LEFT + INNER_BG_CROP_RIGHT))); + lv_gltf_view_set_height(demo_gltfview, ui_max( (INNER_BG_CROP_TOP + INNER_BG_CROP_BOTTOM) + 128, (int)((float)max_window_height * desktop_ratio) - (INNER_BG_CROP_TOP + INNER_BG_CROP_BOTTOM))); + } else + #endif + { + if (startMaximized) { + lv_gltf_view_set_width(demo_gltfview, max_window_width - (INNER_BG_CROP_LEFT + INNER_BG_CROP_RIGHT)); + lv_gltf_view_set_height(demo_gltfview, max_window_height - (INNER_BG_CROP_TOP + INNER_BG_CROP_BOTTOM)); + } else { + lv_gltf_view_set_width(demo_gltfview, (int)(max_window_width * 0.6f) - (INNER_BG_CROP_LEFT + INNER_BG_CROP_RIGHT)); + lv_gltf_view_set_height(demo_gltfview, (int)(max_window_height * 0.8f) - (INNER_BG_CROP_TOP + INNER_BG_CROP_BOTTOM)); + } + } + + /* create a window and initialize OpenGL */ + window = lv_glfw_window_create_ex( stub_mode ? STUB_WINDOW_WIDTH : max_window_width, stub_mode ? STUB_WINDOW_HEIGHT : max_window_height, true, false, false, MY_WINDOW_TITLE, "gltf-view-new"); + glfwHideWindow((GLFWwindow *)lv_glfw_window_get_glfw_window(window)); + + /* create a display that flushes to a texture */ + display_texture = lv_opengles_texture_create(max_window_width, max_window_height); + lv_display_set_default(display_texture); + + demo_os_integrate_setup_glfw_window(window, stub_mode, startMaximized); + + /* add the texture to the window */ + window_texture = lv_glfw_window_add_texture(window, lv_opengles_texture_get_texture_id(display_texture), max_window_width, max_window_height); + + /* get the mouse indev of the window texture */ + mouse = lv_glfw_texture_get_mouse_indev(window_texture); + + demo_ui_make_underlayer(); + + gltfview_3dtex = lv_3dtexture_create(tab_pages[TAB_VIEW]); + lv_3dtexture_set_src(gltfview_3dtex, demo_make_small_clear_texture()); + lv_obj_set_size(gltfview_3dtex, max_window_width - (INNER_BG_CROP_LEFT + INNER_BG_CROP_RIGHT), max_window_height - (INNER_BG_CROP_TOP + INNER_BG_CROP_BOTTOM)); + lv_obj_add_flag(gltfview_3dtex, LV_OBJ_FLAG_HIDDEN); + lv_obj_align(gltfview_3dtex, LV_ALIGN_TOP_LEFT, INNER_BG_CROP_LEFT, INNER_BG_CROP_TOP); + lv_obj_clear_flag(gltfview_3dtex, LV_OBJ_FLAG_CLICKABLE ); + lv_3dtexture_set_src_flip(gltfview_3dtex, false, false); + demo_ui_make_overlayer(); + lv_refr_now(NULL); + + glfwShowWindow(glfw_window); + if (startMaximized) glfwMaximizeWindow(glfw_window); + + reload(gltfFilePath, hdrFilePath); + demo_set_overrides(); + + /* + // Example of how to convert a GLTF file texture into an lv_image_dsc_t, for use with lv_image_t's + // + static lv_image_dsc_t img_dsc = {0}; + lv_gltf_data_utils_texture_to_image_dsc(&img_dsc, demo_gltfdata, 0); + if (img_dsc.data_size > 0) lv_image_set_src(lv_image_create(lv_scr_act()), &img_dsc); + // ... (do things)... // + if (img_dsc.data_size > 0) lv_free((void*)img_dsc.data); // and then free it later + */ + + if (lv_gltf_view_get_probe(demo_gltfdata)->animationCount > 0) anim = 0; + if (lv_gltf_view_get_probe(demo_gltfdata)->cameraCount == 0) { + use_scenecam = false; + camera = -1; + } + + demo_refocus(demo_gltfview, true); + demo_os_integrate_window_standard_title(gltfFilePath); + + if (!stub_mode) { + lv_obj_clear_flag(gltfview_3dtex, LV_OBJ_FLAG_HIDDEN); + lv_obj_invalidate(gltfview_3dtex); + } + + struct timeval start; + float ROLLING_FPS = -1.0f; + long unsigned int frames_this_second = 0; + long unsigned int frames_rendered_this_second = 0; + unsigned long int usec_span = 0; + unsigned long int usec_per_frame_optimal = 0; + float seconds_this_second = 0.f; + float total_seconds = 0.f; + float goal_fps = 15.0f; + float goal_fps_span = 1.0f / goal_fps; + time_t last_poll = time(0); + #ifdef EXPERIMENTAL_GROUNDCAST + float _groundpos[3] = {0.f, 0.f, 0.f}; + #endif /* EXPERIMENTAL_GROUNDCAST */ + float cycle_seconds = fabs(spin_rate) > 0 ? 360.f / fabs(spin_rate) : 0.f; + if (lv_gltf_view_get_probe(demo_gltfdata)->animationCount > 0) { + if (anim_enabled && (anim < (int32_t)lv_gltf_view_get_probe(demo_gltfdata)->animationCount)){ + printf("USING ANIMATION FOR CYCLE TIMING\n"); + float anim_total_time = lv_gltf_animation_get_total_time(demo_gltfdata, anim); + cycle_seconds = anim_total_time / anim_rate; + } + } + cycle_frames = ui_max(1, (uint32_t)(cycle_seconds * goal_fps)); + printf("CYCLE TIMING: Cycle Seconds = %.2f :: Frames = %d\n", cycle_seconds, cycle_frames); + //printf ("With a spin rate of %.2f degrees per second, and an FPS of %.2f, it would take %d frames to complete one cycle.\n", spin_rate, goal_fps, cycle_frames); + + bool _timing_break_flag = false; + while (!_timing_break_flag) { + time_t this_poll = time(0); + #ifdef ENABLE_DESKTOP_MODE + if (!desktop_mode) _timing_break_flag = true; + #else + _timing_break_flag = true; + #endif + if (this_poll != last_poll) { _timing_break_flag = true; usleep(1000); } + lv_refr_now(NULL); + last_poll = this_poll; + } + + demo_ui_apply_camera_button_visibility(demo_gltfdata); + demo_ui_apply_anim_button_visibility(demo_gltfdata); + + gettimeofday(&start, NULL); + uint32_t totalframenum = 0; + lv_point_t _mousepoint; + lv_indev_get_point(mouse, &_mousepoint); + struct pollfd fds[1]; + fds[0].fd = -1; // No file descriptors to monitor + fds[0].events = 0; // No events to monitor + while(!demo_os_integrate_window_should_close()) { + + poll(fds, 0, lv_timer_handler()); + lv_task_handler(); + float sec_span; + + if (frameCount > 0) { + sec_span = 1.f / 30.f; + } else { + struct timeval stop; + gettimeofday(&stop, NULL); + usec_span = (stop.tv_sec - start.tv_sec) * 1000000 + stop.tv_usec - start.tv_usec; + start = stop; + #ifdef ENABLE_DESKTOP_MODE + if (desktop_mode) { + long int thread_timing_delay = (usec_per_frame_optimal - usec_span)-1000; + long int fpslock_timing_delay = ((long unsigned int)(goal_fps_span * 1000000.f) - usec_span); + if (thread_timing_delay < fpslock_timing_delay) thread_timing_delay = fpslock_timing_delay; + if (thread_timing_delay > 1000) { + // Wait for events with a timeout (e.g., 1000 ms) + poll(fds, 0, thread_timing_delay / 1000); + gettimeofday(&start, NULL); + } + } + #endif + sec_span = (float)usec_span / 1000000.0f; + } + seconds_this_second += sec_span; + total_seconds += sec_span; + + //float windowed_seconds = cycle_seconds != 0.f ? total_seconds - ((int)(total_seconds / cycle_seconds) * cycle_seconds) : 0.f; + uint32_t framenum = totalframenum % cycle_frames; + + demo_nav_gradual_to_goals( ); + + #ifdef ENABLE_DESKTOP_MODE + if (animate_spin) { + spin_counter_degrees += (spin_rate * (desktop_mode?goal_fps_span:sec_span)); + lv_gltf_view_set_spin_degree_offset(demo_gltfview, spin_counter_degrees); + } + lv_gltf_view_set_timestep(demo_gltfview, anim_enabled ? anim_rate * (desktop_mode?goal_fps_span:sec_span): 0.f ); + #else + if (animate_spin) { + spin_counter_degrees += (spin_rate * sec_span); + lv_gltf_view_set_spin_degree_offset(demo_gltfview, spin_counter_degrees); + } + lv_gltf_view_set_timestep(demo_gltfview, anim_enabled ? anim_rate * sec_span : 0.f ); + #endif + + lv_indev_get_point(mouse, &_mousepoint); + int mouse_delta_x = (_mousepoint.x - lastMouseX); mouse_delta_x *= mouse_delta_x; + int mouse_delta_y = (_mousepoint.y - lastMouseY); mouse_delta_y *= mouse_delta_y; + const int TOUCH_MOUSEJUMP_THRESH = 50*50; + + if (mouse_delta_x + mouse_delta_y > TOUCH_MOUSEJUMP_THRESH ) { + // Mouse point jumped drastically indicating a touch screen mouse driver + // just updated the last touch position, so this update should be skipped + // to avoid big weird jumps in movement + + /* Do nothing here, let lastMouseX/Y update below and next time through it will be valid */ + } else { + int WINDOW_WIDTH_MINUS_MARGIN = ui_get_window_width()-WINDOW_CONTROL_MARGIN; + int WINDOW_HEIGHT_MINUS_MARGIN = ui_get_window_height()-WINDOW_CONTROL_MARGIN; + bool mouse_in_window = ((_mousepoint.x >= WINDOW_CONTROL_MARGIN) && (_mousepoint.x <= (WINDOW_WIDTH_MINUS_MARGIN)) && (_mousepoint.y >= WINDOW_CONTROL_MARGIN) && (_mousepoint.y <= (WINDOW_HEIGHT_MINUS_MARGIN)) ); + if (mouse_in_window) { + lv_indev_state_t mouse_state = lv_indev_get_state(mouse); + double subjectRadius = lv_gltf_data_get_int_radiusX1000(demo_gltfdata) / 1000.f; + double movePow = d_min(subjectRadius, pow(subjectRadius, 0.5)); + if ((mouse_state & 0x0F) == LV_INDEV_STATE_PR) demo_nav_process_drag(movePow, (mouse_state & 0xF0), _mousepoint.x, _mousepoint.y, lastMouseX, lastMouseY); + } + #ifdef EXPERIMENTAL_GROUNDCAST + if ((lastMouseX != _mousepoint.x) || (lastMouseY != _mousepoint.y)) lv_gltf_view_mark_dirty(demo_gltfview); + if (mouse_in_window) { + bool _res = lv_gltf_view_raycast_ground_position(demo_gltfview, _mousepoint.x - INNER_BG_CROP_LEFT, _mousepoint.y - INNER_BG_CROP_TOP, ui_get_window_width() - (INNER_BG_CROP_LEFT + INNER_BG_CROP_RIGHT), ui_get_window_height() - (INNER_BG_CROP_TOP + INNER_BG_CROP_BOTTOM), 0.0, _groundpos); + if (_res && (ov_cursor != NULL)) { + ov_cursor->data1 = _groundpos[0]; + ov_cursor->data2 = _groundpos[1]; + ov_cursor->data3 = _groundpos[2]; + } + } + + #endif /* EXPERIMENTAL_GROUNDCAST */ + } + lastMouseX = _mousepoint.x; + lastMouseY = _mousepoint.y; + + lv_gltf_view_set_camera(demo_gltfview, use_scenecam ? camera : -1); + lv_gltf_view_set_anim(demo_gltfview, anim_enabled ? anim : -1); + + time_t this_poll = time(0); + frames_this_second += 1; + bool seconds_changed = difftime(this_poll, last_poll) > 0; + last_poll = this_poll; + + if (seconds_changed) { + ROLLING_FPS = (ROLLING_FPS > 0) ? ((ROLLING_FPS * 3.0f) + ((float)frames_this_second / (float)seconds_this_second) ) / 4.0f : ((float)frames_this_second / (float)seconds_this_second); + seconds_this_second = 0.f; + if (frames_rendered_this_second > 0) { + #ifndef NDEBUG + printf("[DEBUG BUILD] "); + #endif + printf("Frames Drawn: %ld | Average FPS: %2.1f\n", frames_rendered_this_second, ROLLING_FPS); + } + frames_this_second = 0; + frames_rendered_this_second = 0; + usec_per_frame_optimal = (int)(1000000.f / ROLLING_FPS); + } + + lv_3dtexture_id_t gltf_texture = 0; + #ifdef ENABLE_DESKTOP_MODE + if (desktop_mode && (totalframenum != framenum)) { /* Do nothing, frame is cached */ } else + #endif + { + gltf_texture = lv_gltf_view_render( shader_cache, demo_gltfview, demo_gltfdata, true, 0, 0, 0, 0 ); + if (needs_system_gltfdata && (use_scenecam == false)) { + if (!lv_gltf_view_check_frame_was_cached(demo_gltfview)) + gltf_texture = lv_gltf_view_render( shader_cache, demo_gltfview, system_gltfdata, false, 0,0,0,0); + } + } + if (reapply_layout_flag) demo_ui_reposition_all(); + if (!lv_gltf_view_check_frame_was_cached(demo_gltfview)) { + frames_rendered_this_second += 1; + if (!stub_mode) { + lv_3dtexture_set_src(gltfview_3dtex, gltf_texture); + lv_obj_invalidate(gltfview_3dtex); + lv_refr_now(NULL); + } + glfwPollEvents(); + bool file_alpha = lv_gltf_view_get_bg_mode(demo_gltfview) != BG_ENVIRONMENT; + #ifdef ENABLE_DESKTOP_MODE + if (desktop_mode ){ + if (totalframenum != framenum) { + demo_os_integrate_save_png_from_new_thread(framenum, desktop_mode, maxFrames, file_alpha, NULL); + } else { + char * pixels =(char *)lv_malloc(ui_get_primary_texture_height() * ui_get_primary_texture_width() * 4); + lv_gltf_view_utils_get_texture_pixels( pixels, gltf_texture, file_alpha, lv_gltf_view_check_frame_was_antialiased(demo_gltfview) ? 1 : 0, ui_get_primary_texture_width(), ui_get_primary_texture_height() ); + demo_os_integrate_save_png_from_new_thread(framenum, desktop_mode, maxFrames, file_alpha, pixels); + } + } else + #endif + { + if (frameCount > 0) { + char _buffer[100]; + snprintf(_buffer, sizeof(_buffer), "/home/pi/Desktop/lv_gltf_viewer/render_frames/frame%03d.png", (maxFrames - frameCount)); + if (frame_grab_ui) { + lv_gltf_view_utils_save_texture_to_png( lv_opengles_texture_get_texture_id(display_texture), _buffer, false, 10, 0, ui_get_window_width(), ui_get_window_height() ); + } else { + lv_gltf_view_utils_save_png(demo_gltfview, _buffer, file_alpha, 10); + } + } + } + } else { + glfwPollEvents(); + usleep(33000); + } + totalframenum += 1; + if (frameCount > 0) { + frameCount -= 1; + if (frameCount == 0) demo_os_integrate_signal_window_close(); + } + } + if (needs_system_gltfdata) lv_gltf_data_destroy(system_gltfdata); + lv_gltf_data_destroy(demo_gltfdata); + lv_gltf_view_destroy(demo_gltfview); + lv_opengl_shader_cache_destroy(shader_cache); + #ifdef ENABLE_DESKTOP_MODE + if (desktop_mode) { + running = false; + for (int i = 0; i < MAX_THREADS; i++) pthread_join(desktop_mode_worker_threads[i], NULL); + } + #endif + //if (img_dsc.data_size > 0) lv_free((void*)img_dsc.data); + } + lv_free(demo_gltfview); + #ifndef NDEBUG + printf("Note: Because this is a debug build, it is normal for there to be a significant delay when closing the application. To avoid this in the future, rebuild in release mode by running the switch_release.sh script in the project's /ex folder.\n"); + #endif + exit(0); +} diff --git a/src/demo.h b/src/demo.h new file mode 100644 index 0000000..8728e6c --- /dev/null +++ b/src/demo.h @@ -0,0 +1,203 @@ +#ifndef MAINUI_SHARED_H +#define MAINUI_SHARED_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include "data/lv_gltf_data_internal.h" +#include "view/lv_gltf_view_internal.h" +#include +#include "lib/lv_gltf/view/lv_gltf_view.h" +#include /* usleep */ +#include /* For window size restrictions */ +#include /* For window size / title */ + +#include +#include + +#define ENABLE_DESKTOP_MODE + +#ifdef ENABLE_DESKTOP_MODE +#include +#include /* stat() */ +#define MAX_THREADS 4 +#define DESKTOP_OUTPUT_RAMTEMP_PATH "ramtemp" +#define DESKTOP_OUTPUT_RAMTEMP_SIZE_TEMPLATE "%dM" +#define DESKTOP_OUTPUT_FILEPATH "/var/ramtemp/background.png" +#define DESKTOP_OUTPUT_FILEPATH_TEMPLATE "/var/ramtemp/background%05d.png" +#define DESKTOP_APPLY_COMMAND "pcmanfm --set-wallpaper /var/ramtemp/background.png&" +#define DESKTOP_APPLY_COMMAND_TEMPLATE "pcmanfm --set-wallpaper /var/ramtemp/background%05d.png&" +#define RESIZE_RAMDRIVE_COMMAND_TEMPLATE "sudo ./ex/__resize_ramdrive.sh %s %dM > /dev/null" +extern bool desktop_mode; +extern float desktop_ratio; +#endif + +#define MY_WINDOW_TITLE "glTF Viewer [ LVGL.io ]" + +#define BIG_TEXTURE_WIDTH 256 * 4 +#define BIG_TEXTURE_HEIGHT 192 * 4 + +//#define WINDOW_WIDTH BIG_TEXTURE_WIDTH +//#define WINDOW_HEIGHT BIG_TEXTURE_HEIGHT + +#define STUB_WINDOW_WIDTH 200 +#define STUB_WINDOW_HEIGHT 60 + +#define INNER_BG_CROP_LEFT 60 +#define INNER_BG_CROP_RIGHT 60 +#define INNER_BG_CROP_TOP 32 +#define INNER_BG_CROP_BOTTOM 55 + + +#define LVGL_BLUE 0x2196f3 +#define LVGL_COOLGRAY 0xe4f1fb +#define LVGL_COOLGRAY_DARKER 0xbbd9f1 + +#define TAB_VIEW 0 +#define TAB_LOAD 1 +#define TAB_INFO 2 +#define MAX_TABS 3 + +#define MAX_SPRITES 7 + +#define MAX_PATH_LENGTH 1024 +#define MAX_OPTION_LENGTH 50 + +#define PI_TO_RAD 0.01745329238f +#define WINDOW_CONTROL_MARGIN 80 + +extern bool animate_spin; +extern float spin_rate; +extern float anim_rate; +extern int camera; +extern int anim; +extern unsigned int _current_tab; +extern bool use_scenecam; +extern bool anim_enabled; +extern bool stub_mode; +extern bool show_grid; +extern bool needs_system_gltfdata; +extern float goal_pitch; +extern float goal_yaw; +extern float goal_distance; +extern float goal_focal_x; +extern float goal_focal_y; +extern float goal_focal_z; +extern bool frame_grab_ui; +extern bool running; +extern bool enable_intro_zoom; +extern float spin_counter_degrees; +extern bool reapply_layout_flag; +extern uint32_t cycle_frames; + +extern lv_obj_t * last_dragged_control; +extern lv_display_t * display_texture; +extern lv_glfw_texture_t * window_texture; +extern lv_glfw_window_t * window; +extern lv_indev_t * mouse; +extern gl_viewer_desc_t goal_state; + +extern lv_obj_t * grp_loading; +extern lv_obj_t * spin_checkbox; +extern lv_obj_t * spin_slider; +extern lv_obj_t * progText1; +extern lv_obj_t * tabview; +extern lv_obj_t * titleText; +extern lv_obj_t * tab_pages[MAX_TABS]; +extern lv_obj_t * progbar1; +extern lv_obj_t * progbar2; +extern lv_obj_t * anim_checkbox; + +extern lv_obj_t * pitch_slider; +extern lv_obj_t * yaw_slider; +extern lv_obj_t * distance_slider; + +extern lv_gltf_data_t * temp_teapot_gltfdata; +extern lv_gltf_data_t * system_gltfdata; +extern lv_gltf_data_t * demo_gltfdata; +extern lv_gltf_view_t * demo_gltfview; +extern lv_obj_t * gltfview_3dtex; + +extern lv_gltf_override_t * ov_boom; +extern lv_gltf_override_t * ov_stick; +extern lv_gltf_override_t * ov_bucket; +extern lv_gltf_override_t * ov_swing; +extern lv_gltf_override_t * ov_cursor; +extern lv_gltf_override_t * ov_ground_scale; + +extern GLFWwindow * glfw_window; + +extern lv_style_t style_file_button; +extern lv_style_t style_folder_button; +extern bool __styles_ready; + +extern lv_opengl_shader_cache_t * shader_cache; + +LV_IMAGE_DECLARE(lvgl_icon_40px); +LV_IMAGE_DECLARE(sprites1_32x32x7); + +void demo_ui_loading_info_objects(void); +void demo_ui_pitch_yaw_distance_sliders(lv_obj_t * container); +void demo_ui_camera_select(lv_obj_t * container); +void demo_ui_animation_select(lv_obj_t * container); +void demo_ui_fill_in_InfoTab(lv_gltf_data_t * _data); +void demo_ui_add_override_controls(lv_obj_t * container); +void demo_ui_apply_camera_button_visibility(lv_gltf_data_t * _data); +void demo_ui_apply_anim_button_visibility(lv_gltf_data_t * _data); +void demo_ui_set_tab(unsigned int _tabnum); +void demo_ui_make_underlayer(void); +void demo_ui_make_overlayer(void); +void demo_ui_load_progress_callback(const char * phase_title, const char * sub_phase_title, float phase_progress, + float phase_progress_max, float sub_phase_progress, float sub_phase_progress_max); +bool demo_cli_apply_commandline_options(lv_gltf_view_t * viewer, char * gltfFile, char * hdrFile, int * frame_count, + bool * software_only, bool * start_maximized, bool * stub_mode, float * _anim_rate, int argc, char * argv[]); +void demo_nav_process_drag(float movement_power, uint32_t mouse_state_ex, int mouse_x, int mouse_y, int last_mouse_x, + int last_mouse_y); +void demo_os_integrate_setup_glfw_window(lv_glfw_window_t * lv_window, bool lock_window_size, bool start_maximized); +bool demo_os_integrate_get_maximum_window_framebuffer_size(uint32_t * _max_window_width, uint32_t * _max_window_height); +bool demo_os_integrate_window_should_close(void); +void demo_os_integrate_signal_window_close(void); +bool demo_os_integrate_confirm_desktop_mode_ok(void); +#ifdef ENABLE_DESKTOP_MODE +void demo_os_integrate_save_png_from_new_thread(int _frameCount, bool _desktop_mode, int _maxFrames, bool _file_alpha, + char * _pixels); +void * demo_os_integrate_save_desktop_png_thread(void * arg); +#endif +void os_integrate_window_resize_callback(GLFWwindow * window, int width, int height); +uint32_t ui_get_window_width(void); +uint32_t ui_get_window_height(void); +uint32_t ui_get_primary_texture_width(void); +uint32_t ui_get_primary_texture_height(void); +uint32_t ui_get_max_window_width(void); +uint32_t ui_get_max_window_height(void); +void demo_ui_set_slider_value_without_event(lv_obj_t * slider, int value); +void demo_ui_set_checkbox_value_without_event(lv_obj_t * checkbox, bool value); +void demo_ui_apply_pitch_value(float visual_pitch); +bool demo_ui_apply_yaw_value(float visual_yaw); +void demo_ui_apply_distance_value(float visual_distance); +void demo_ui_reposition_all(void); +void reload(char * _filename, const char * _hdr_filename); +void demo_refocus(lv_gltf_view_t * gltfview, bool first_call); +void create_file_open_dialog(lv_obj_t * container); +void __make_styles(void); +void ui_resize_all_file_open_dialog_widgets(lv_obj_t * parent); +void demo_os_integrate_window_standard_title(const char * file_path); +void demo_file_load_dialog_set_directory_from_filepath(char * current_filename); +uint32_t ui_max(uint32_t a, uint32_t b); +void demo_ui_apply_spin_rate_value(float visual_spin_rate); +void demo_ui_apply_spin_enabled_value(bool visual_animate_spin); +void demo_nav_gradual_to_goals(void); +double d_min(double a, double b); +uint32_t ui_max(uint32_t a, uint32_t b); +float lerp_towards(float start, float end, float t, float min_change); +void setup_shadercache(const char * hdr_filepath, int degrees_x10); +void demo_set_overrides(void); +void demo_refocus(lv_gltf_view_t * gltfview, bool first_call); +uint32_t demo_make_small_clear_texture(void); + +#ifdef __cplusplus +} +#endif + +#endif // MAINUI_SHARED_H diff --git a/src/demo_cli.c b/src/demo_cli.c new file mode 100644 index 0000000..a88856f --- /dev/null +++ b/src/demo_cli.c @@ -0,0 +1,384 @@ +#include "demo.h" +#include "view/lv_gltf_view_internal.h" +#include +#include +#include + +void cli_print_usage(void) +{ + printf("Usage: gltf_view [path_to_gltf_file] (one or more options from below)\n");//[-in input_file] [-env hdr_file] [-aa ANTIALIAS_MODE] [-bg BACKGROUND_MODE]\n"); + printf("Options:\n"); + printf(" -in Specify the input file path.\n"); + printf(" -env Specify the environmental lighting / reflections HDR file path.\n"); + printf(" -env Specify the environmental lighting / reflections HDR preset number.\n"); + printf(" [1] = Footprint Court [2] = Helipad [3] = Field \n"); + printf(" [4] = Papermill [5] = Pisa [6] = Doge2 \n"); + printf(" [7] = Ennis [8] = Directional [9] = Chromatic \n"); + printf(" [10] = Neutral\n"); + printf(" -env_pow The environmental lighting brightness, default = 160 (160%% normal)\n"); + printf(" -expo The exposure level, default = 80 (80%% normal)\n"); + printf(" -aa Set antialiasing mode (ANTIALIAS_OFF [0], ANTIALIAS_CONSTANT [1], ANTIALIAS_NOT_MOVING [2]).\n"); + printf(" -bg Set background mode (BG_CLEAR [0], BG_SOLID [1], BG_ENVIRONMENT [2]).\n"); + printf(" -bg_r Set background color red component.\n"); + printf(" -bg_g Set background color green component.\n"); + printf(" -bg_b Set background color blue component.\n"); + printf(" -bg_a Set background color opacity / alpha component.\n"); + printf(" -blur_bg How much to blur the background between 0 and 1000.\n"); + printf(" -pitch Viewing angle pitch in degrees x 100.\n"); + printf(" -yaw Viewing angle yaw in degrees x 100.\n"); + printf(" -distance Viewing distance where the default of 1000 = 1x the model bounding size.\n"); + printf(" -fov The vertical fov, in degrees * 100. If value is zero or less, the view is orthographic (non-perspective).\n"); + printf(" -cam Which camera to use, or 0 to explicitly select the default platter camera even if the scene defines others.\n"); + printf(" -anim Which animation number to play, or -1 to explicitly disable animation.\n"); + printf(" -anim_rate How fast to play back the animation where 1000 is 1x normal rate.\n"); + printf(" -frame_count If this is specified and greater than zero, that many frames will be output as png files into\n"); + printf(" the render_frames subdirectory, and then the program will shutdown. See the __compile_clip.sh\n"); + printf(" script for more information and an example of using ffmpeg to turn the frames into an mp4.\n"); + printf(" -frame_grab_ui Capture the window UI too when taking frame grabs (off by default).\n"); + printf(" -sw Software Rendering mode (this is more compatible but far slower than using the GPU).\n"); + printf(" -grid Show or hide the ground grid (0 = hide, 1 = show (default)).\n"); + printf(" -intro_zoom Enable or disable the short zooming in intro effect (0 = disable, 1 = enable (default)).\n"); + printf(" -maximized Start the window in maximized mode (off by default).\n"); +#ifdef ENABLE_DESKTOP_MODE + printf(" -desktop Experimental feature that puts the rendered image on your desktop with pcmanfm.\n"); + printf(" -ratio Used with -desktop to limit the rendered size to a portion of the display resolution where 1000 = the full display.\n"); +#endif + +} + +bool demo_cli_apply_commandline_options(lv_gltf_view_t * viewer, char * gltfFile, char * hdrFile, int * frame_count, + bool * software_only, bool * start_maximized, bool * _stub_mode, float * _anim_rate, int argc, char * argv[]) +{ + + /* First apply the defaults */ + lv_gltf_view_set_env_pow(viewer, 1.8f); + lv_gltf_view_set_exposure(viewer, 0.8f); + lv_gltf_view_set_fov(viewer, 45.f); + lv_gltf_view_set_distance(viewer, 1000); + lv_gltf_view_set_yaw(viewer, 4200); + lv_gltf_view_set_pitch(viewer, -2000); + lv_gltf_view_set_blur_bg(viewer, 0.25f); + lv_gltf_view_set_aa_mode(viewer, ANTIALIAS_NOT_MOVING); + lv_gltf_view_set_bg_mode(viewer, BG_CLEAR); + lv_gltf_view_set_width(viewer, BIG_TEXTURE_WIDTH); + lv_gltf_view_set_height(viewer, BIG_TEXTURE_HEIGHT); + lv_gltf_view_set_bgcolor_RGBA(viewer, 230, 230, 230, 0); + + bool gotFilenameInput = false; + bool passedParamChecks = true; + + //desktop_mode = false; + + gltfFile[0] = '\0'; + + // Check if at least one argument is provided + if(argc < 2) { + cli_print_usage(); + passedParamChecks = false; + } + else { + // Get the glTF file path (first argument) + int _first_param = 1; + if(argc > 1) { + if(argv[1][0] != '-') { + strncpy(gltfFile, argv[1], MAX_PATH_LENGTH - 1); + gltfFile[MAX_PATH_LENGTH - 1] = '\0'; // Ensure null-termination + _first_param = 2; + gotFilenameInput = true; + } + } + + // Parse additional arguments + for(int i = _first_param; i < argc; i++) { + if(strcmp(argv[i], "-in") == 0 && (i + 1) < argc) { + strncpy(gltfFile, argv[i + 1], MAX_PATH_LENGTH - 1); + gltfFile[MAX_PATH_LENGTH - 1] = '\0'; // Ensure null-termination + gotFilenameInput = true; + i++; // Skip the next argument + } + else if(strcmp(argv[i], "-env") == 0 && (i + 1) < argc) { + int p = atoi(argv[i + 1]); + if(p == 0) { + strncpy(hdrFile, argv[i + 1], MAX_PATH_LENGTH - 1); + } + else { + if(p == 1) strncpy(hdrFile, "assets/hdr/footprint_court.jpg", MAX_PATH_LENGTH - 1); + else if(p == 2) strncpy(hdrFile, "assets/hdr/helipad.jpg", MAX_PATH_LENGTH - 1); + else if(p == 3) strncpy(hdrFile, "assets/hdr/field.jpg", MAX_PATH_LENGTH - 1); + else if(p == 4) strncpy(hdrFile, "assets/hdr/papermill.jpg", MAX_PATH_LENGTH - 1); + else if(p == 5) strncpy(hdrFile, "assets/hdr/pisa.jpg", MAX_PATH_LENGTH - 1); + else if(p == 6) strncpy(hdrFile, "assets/hdr/doge2.jpg", MAX_PATH_LENGTH - 1); + else if(p == 7) strncpy(hdrFile, "assets/hdr/ennis.jpg", MAX_PATH_LENGTH - 1); + else if(p == 8) strncpy(hdrFile, "assets/hdr/directional.jpg", MAX_PATH_LENGTH - 1); + else if(p == 9) strncpy(hdrFile, "assets/hdr/chromatic.jpg", MAX_PATH_LENGTH - 1); + else if(p == 10) strncpy(hdrFile, "assets/hdr/neutral.jpg", MAX_PATH_LENGTH - 1); + } + hdrFile[MAX_PATH_LENGTH - 1] = '\0'; + i++; + } + else if(strcmp(argv[i], "-aa") == 0 && (i + 1) < argc) { + if((strcmp(argv[i + 1], "ANTIALIAS_OFF") == 0) || (strcmp(argv[i + 1], "0") == 0)) { + lv_gltf_view_set_aa_mode(viewer, ANTIALIAS_OFF); + } + else if((strcmp(argv[i + 1], "ANTIALIAS_CONSTANT") == 0) || (strcmp(argv[i + 1], "1") == 0)) { + lv_gltf_view_set_aa_mode(viewer, ANTIALIAS_CONSTANT); + } + else if((strcmp(argv[i + 1], "ANTIALIAS_NOT_MOVING") == 0) || (strcmp(argv[i + 1], "2") == 0)) { + lv_gltf_view_set_aa_mode(viewer, ANTIALIAS_NOT_MOVING); + } + else { + lv_gltf_view_set_aa_mode(viewer, ANTIALIAS_NOT_MOVING); + } + i++; + } + else if(strcmp(argv[i], "-bg") == 0 && (i + 1) < argc) { + if((strcmp(argv[i + 1], "BG_CLEAR") == 0) || (strcmp(argv[i + 1], "0") == 0)) { + lv_gltf_view_set_bg_mode(viewer, BG_CLEAR); + } + else if((strcmp(argv[i + 1], "BG_SOLID") == 0) || (strcmp(argv[i + 1], "1") == 0)) { + lv_gltf_view_set_bg_mode(viewer, BG_SOLID); + } + else if((strcmp(argv[i + 1], "BG_ENVIRONMENT") == 0) || (strcmp(argv[i + 1], "2") == 0)) { + lv_gltf_view_set_bg_mode(viewer, BG_ENVIRONMENT); + } + else { + lv_gltf_view_set_bg_mode(viewer, BG_CLEAR); + } + i++; + } + else if(strcmp(argv[i], "-bg_r") == 0 && (i + 1) < argc) { + lv_gltf_view_set_bgcolor_red(viewer, (uint8_t)atoi(argv[i + 1])); + i++; + } + else if(strcmp(argv[i], "-bg_g") == 0 && (i + 1) < argc) { + lv_gltf_view_set_bgcolor_green(viewer, (uint8_t)atoi(argv[i + 1])); + i++; + } + else if(strcmp(argv[i], "-bg_b") == 0 && (i + 1) < argc) { + lv_gltf_view_set_bgcolor_blue(viewer, (uint8_t)atoi(argv[i + 1])); + i++; + } + else if(strcmp(argv[i], "-bg_a") == 0 && (i + 1) < argc) { + lv_gltf_view_set_bg_opa(viewer, (uint8_t)atoi(argv[i + 1])); + i++; + } + else if(strcmp(argv[i], "-blur_bg") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + lv_gltf_view_set_blur_bg(viewer, (float)(atoi(argv[i + 1])) / 1000.f); + i++; + } + else { + printf("Error: -blur_bg option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-cam") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + camera = atoi(argv[i + 1]); + i++; + } + else { + printf("Error: -cam option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-env_pow") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + lv_gltf_view_set_env_pow(viewer, atoi(argv[i + 1]) / 100.0f); + i++; + } + else { + printf("Error: -env_pow option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-expo") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + lv_gltf_view_set_exposure(viewer, atoi(argv[i + 1]) / 100.0f); + i++; + } + else { + printf("Error: -expo option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-fov") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + lv_gltf_view_set_fov(viewer, atoi(argv[i + 1]) / 100.0f); + i++; + } + else { + printf("Error: -fov option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-sw") == 0) { + *software_only = true; + } + else if(strcmp(argv[i], "-maximized") == 0) { + *start_maximized = true; + } + else if(strcmp(argv[i], "-frame_grab_ui") == 0) { + frame_grab_ui = true; + } + else if(strcmp(argv[i], "-grid") == 0) { + if(i + 1 < argc) { + show_grid = atoi(argv[i + 1]) > 0; // Convert string to int + i++; + } + else { + printf("Error: -grid option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-intro_zoom") == 0) { + if(i + 1 < argc) { + enable_intro_zoom = atoi(argv[i + 1]) > 0; // Convert string to int + i++; + } + else { + printf("Error: -intro_zoom option requires an integer value.\n"); + } + +#ifdef ENABLE_DESKTOP_MODE + } + else if(strcmp(argv[i], "-desktop") == 0) { + if(demo_os_integrate_confirm_desktop_mode_ok()) { + desktop_mode = true; + } + else { + printf("Error: -desktop option requires an additional setup step, see below:\n"); + printf("To avoid excessive wear and tear on the SD card or storage medium, the \n"); + printf("desktop output mode saves it's temporary files to a ram drive. That \n"); + printf("ramdrive was not detected at this time. To create it, run the following\n"); + printf("script from the application root directory:\n\n"); + char command[256]; + snprintf(command, sizeof(command), "./ex/__create_ramdrive.sh %s 1M\n", DESKTOP_OUTPUT_RAMTEMP_PATH); + printf("%s", command); + passedParamChecks = false; + } + } + else if(strcmp(argv[i], "-ratio") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + desktop_ratio = atoi(argv[i + 1]) / 1000.0f; + i++; + } + else { + printf("Error: -ratio option requires an integer value.\n"); + } +#endif + } + else if(strcmp(argv[i], "-anim") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + anim = atoi(argv[i + 1]); // Convert string to int + if(anim < 0) { + anim_enabled = false; + anim = 0; + } + i++; + } + else { + printf("Error: -expo option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-frame_count") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + *frame_count = atoi(argv[i + 1]); + i++; + } + else { + printf("Error: -frame_count option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-pitch") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + lv_gltf_view_set_pitch(viewer, atoi(argv[i + 1])); + i++; + } + else { + printf("Error: -pitch option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-yaw") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + lv_gltf_view_set_yaw(viewer, atoi(argv[i + 1])); + i++; + } + else { + printf("Error: -yaw option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-spin_rate") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + spin_rate = atoi(argv[i + 1]) / 10.0f; + i++; + } + else { + printf("Error: -spin_rate option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-anim_rate") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + *_anim_rate = atoi(argv[i + 1]) / 1000.0f; + i++; + } + else { + printf("Error: -anim_rate option requires an integer value.\n"); + } + } + else if(strcmp(argv[i], "-distance") == 0 && (i + 1) < argc) { + if(i + 1 < argc) { + lv_gltf_view_set_distance(viewer, atoi(argv[i + 1])); + i++; + } + else { + printf("Error: -distance option requires an integer value.\n"); + } + + } + else { + printf("Unknown option: %s\n", argv[i]); + cli_print_usage(); + passedParamChecks = false; + } + } + } + + passedParamChecks &= gotFilenameInput; + + if(passedParamChecks) { + goal_focal_x = lv_gltf_view_get_focal_x(viewer); + goal_focal_y = lv_gltf_view_get_focal_y(viewer); + goal_focal_z = lv_gltf_view_get_focal_z(viewer); + goal_pitch = lv_gltf_view_get_pitch(viewer); + goal_yaw = lv_gltf_view_get_yaw(viewer); + goal_distance = lv_gltf_view_get_distance(viewer); + if(enable_intro_zoom) { + int _zoomdist = (int)((goal_distance * 1.25f + 0.1f) * 1000.f); + lv_gltf_view_set_distance(viewer, _zoomdist); + printf("goal distance before: %0.4f, and as x1000 int after: %d\n", goal_distance, _zoomdist); + printf("goal distance as float after confirm: %0.4f\n", lv_gltf_view_get_distance(viewer)); + } + + *_stub_mode = false; + *_stub_mode |= ((*frame_count > 0) && (frame_grab_ui == false)); + + if(spin_rate == 0.f) { + spin_rate = 5.0f; + animate_spin = false; + } + + // Output the parsed parameters + printf("glTF File Path: %s\n", gltfFile[0] ? gltfFile : "None provided"); + printf("HDR File Path: %s\n", hdrFile[0] ? hdrFile : "None provided"); + printf("Antialiasing Mode: %d\n", lv_gltf_view_get_aa_mode(demo_gltfview)); + printf("Background Mode: %d\n", lv_gltf_view_get_bg_mode(demo_gltfview)); + printf("Pitch: %.2f\n", lv_gltf_view_get_pitch(demo_gltfview)); + printf("Yaw: %.2f\n", lv_gltf_view_get_yaw(demo_gltfview)); + printf("Frame Count: %d\n", *frame_count); + printf("Spin Rate (degrees per sec): %.3f\n", spin_rate); + printf("Software Only: %s\n", *software_only ? "true" : "false"); +#ifdef ENABLE_DESKTOP_MODE + printf("Desktop Mode: %s\n", desktop_mode ? "true" : "false"); + if(desktop_mode) *_stub_mode = true; // Enable stub mode for a small window presentation +#endif + printf("Stub Mode: %s\n", *_stub_mode ? "true" : "false"); + + } + return passedParamChecks; +} + diff --git a/src/demo_file_load_dialog.c b/src/demo_file_load_dialog.c new file mode 100644 index 0000000..38cd8f1 --- /dev/null +++ b/src/demo_file_load_dialog.c @@ -0,0 +1,370 @@ + +#include "demo.h" +#include "lib/lv_gltf/data/lv_gltf_data.h" +#include // For directory operations +#include +#include +#include + +// Function prototypes +void create_file_open_dialog(lv_obj_t * parent); +void update_file_list(const char * path); +void folder_button_event_handler(lv_event_t * e); +void parent_folder_event_handler(lv_event_t * e); +void file_button_event_handler(lv_event_t * e); +void ok_button_event_handler(lv_event_t * e); +void cancel_button_event_handler(lv_event_t * e); +void path_input_event_handler(lv_event_t * e); +void get_parent_directory(const char * path, char * parent_path); + +// Global variables +lv_obj_t * dialog; +lv_obj_t * path_input; +lv_obj_t * file_list; +lv_obj_t * folder_list; +lv_obj_t * selected_file_label; +lv_obj_t * selected_file_input; +lv_obj_t * ok_button; +lv_obj_t * cancel_button; +lv_style_t list_style; + +char base_path[MAX_PATH_LENGTH] = ""; +char selected_file[MAX_PATH_LENGTH] = ""; + +bool show_hidden_files_and_folders = false; +const char * valid_extensions[] = { "glb", "gltf" }; +uint32_t valid_extension_count = 2; + +void demo_file_load_dialog_set_directory_from_filepath(char * current_filename) +{ + char parent_path[MAX_PATH_LENGTH]; + get_parent_directory(current_filename, parent_path); + if(parent_path[0] == '\0') { + parent_path[0] = '/'; + parent_path[1] = '\0'; + } + + if(parent_path[0] == '.') { + char absolute_path[MAX_PATH_LENGTH]; + if(realpath(parent_path, absolute_path) == 0) { + perror("Error resolving absolute path"); + return; + } + update_file_list(absolute_path); + } + else { + update_file_list(parent_path); + } + + //strncpy(base_path, parent_path, MAX_PATH_LENGTH); + //base_path[MAX_PATH_LENGTH - 1] = '\0'; +} + +void get_parent_directory(const char * path, char * parent_path) +{ + // Check if the path is valid + if(path == NULL || parent_path == NULL) return; + + // Find the last occurrence of the directory separator + char * last_slash = strrchr(path, '/'); + if(last_slash == NULL) { + // No directory separator found, return empty string + parent_path[0] = '\0'; + return; + } + + last_slash[0] = '\0'; + // Copy the parent directory path into the output variable + size_t length = last_slash - path + 1; // Include the slash + strncpy(parent_path, path, length); + parent_path[length] = '\0'; // Null-terminate the string + last_slash[0] = '/'; + +} + +void get_file_extension(const char * path, char * extension) +{ + // Check if the path is valid + if(path == NULL || extension == NULL) return; + + // Find the last occurrence of the directory separator + char * last_period = strrchr(path, '.'); + if(last_period == NULL) { + // No directory separator found, return empty string + extension[0] = '\0'; + return; + } + strncpy(extension, last_period + 1, MAX_PATH_LENGTH - 1); + extension[MAX_PATH_LENGTH - 1] = '\0'; // Null-terminate the string +} + + +void ui_resize_all_file_open_dialog_widgets(lv_obj_t * parent) +{ + uint32_t ww = lv_obj_get_width(parent) - 60; + uint32_t wh = lv_obj_get_height(parent); + uint32_t mv = wh > 600 ? 20 : wh > 380 ? 12 : 0; + uint32_t mh = ww > 500 ? 20 : ww > 380 ? 12 : 0; + uint32_t hmh = mh >> 1; + uint32_t hmv = mv >> 1; + lv_obj_set_size(dialog, ww, wh); + const uint32_t FOLDER_LIST_WIDTH = ui_max(100, (unsigned int)((float)ww * 0.25f)); + lv_obj_set_size(path_input, ww - (mh * 2), 30); + lv_obj_set_size(folder_list, FOLDER_LIST_WIDTH, wh - 100 - (mv * 3)); + lv_obj_set_size(file_list, ww - FOLDER_LIST_WIDTH - (mh * 3), wh - 100 - (mv * 3)); + lv_obj_set_size(selected_file_label, 60, 30); + lv_obj_set_size(selected_file_input, ww - (mh * 2) - 60, 30); + lv_obj_align(path_input, LV_ALIGN_TOP_LEFT, mh, mv + hmv); + lv_obj_align(folder_list, LV_ALIGN_TOP_LEFT, mh, 30 + (2 * mv)); + lv_obj_align(file_list, LV_ALIGN_TOP_RIGHT, -mh, 30 + (2 * mv)); + lv_obj_align(selected_file_label, LV_ALIGN_BOTTOM_LEFT, mh + 10, -25 - mv); + lv_obj_align(selected_file_input, LV_ALIGN_BOTTOM_RIGHT, -mh, -30 - mv); + lv_obj_align(ok_button, LV_ALIGN_BOTTOM_RIGHT, -80 - mh - hmh - 5, -hmv - 3); + lv_obj_align(cancel_button, LV_ALIGN_BOTTOM_RIGHT, -mh, -hmv - 3); +} + +void create_file_open_dialog(lv_obj_t * parent) +{ + if(!__styles_ready) { + __make_styles(); + } + + // Create a container for the dialog + dialog = lv_obj_create(parent); + uint32_t ww = lv_obj_get_width(parent); + uint32_t wh = lv_obj_get_height(parent); + + lv_obj_set_size(dialog, ww, wh); + lv_obj_align(dialog, LV_ALIGN_LEFT_MID, 60, 0); + lv_obj_set_style_pad_left(dialog, 0, 0); + lv_obj_set_style_pad_right(dialog, 0, 0); + lv_obj_set_style_pad_top(dialog, 0, 0); + lv_obj_set_style_pad_bottom(dialog, 0, 0); + lv_obj_clear_flag(dialog, LV_OBJ_FLAG_SCROLLABLE); + lv_obj_clear_flag(dialog, LV_OBJ_FLAG_CLICKABLE); + + // Create a text input for the current folder path + path_input = lv_textarea_create(dialog); + lv_textarea_set_placeholder_text(path_input, "Enter folder path..."); + lv_obj_clear_flag(path_input, LV_OBJ_FLAG_SCROLLABLE); + lv_obj_set_style_pad_left(path_input, 6, 0); + lv_obj_set_style_pad_top(path_input, 5, 0); + lv_obj_set_style_pad_bottom(path_input, 4, 0); + lv_obj_set_style_pad_right(path_input, 6, 0); + lv_textarea_set_one_line(path_input, true); + lv_obj_add_event_cb(path_input, path_input_event_handler, LV_EVENT_INSERT, NULL); + + lv_style_init(&list_style); + lv_style_set_pad_top(&list_style, 0); + lv_style_set_pad_bottom(&list_style, 0); + lv_style_set_pad_left(&list_style, 0); + lv_style_set_pad_right(&list_style, 0); + lv_style_set_margin_top(&list_style, 0); + lv_style_set_margin_bottom(&list_style, 0); + lv_style_set_margin_left(&list_style, 0); + lv_style_set_margin_right(&list_style, 0); + lv_style_set_radius(&list_style, 0); + + // Create a list for folders + folder_list = lv_list_create(dialog); + lv_obj_add_style(folder_list, &list_style, LV_PART_ANY); + lv_obj_set_style_pad_row(folder_list, -3, LV_PART_ANY); + lv_obj_set_style_radius(folder_list, 0, 0); + lv_obj_set_style_clip_corner(folder_list, false, 0); + + // Create a list for files + file_list = lv_list_create(dialog); + lv_obj_add_style(file_list, &list_style, LV_PART_ANY); + lv_obj_set_style_pad_row(file_list, -3, LV_PART_ANY); + lv_obj_set_style_radius(file_list, 0, 0); + lv_obj_set_style_clip_corner(file_list, false, 0); + + // Create a label for the selected file + selected_file_label = lv_label_create(dialog); + lv_label_set_text(selected_file_label, "File: "); + lv_obj_set_style_opa(selected_file_label, LV_OPA_80, 0); + + // Create a text input for the current folder path + selected_file_input = lv_textarea_create(dialog); + lv_textarea_set_placeholder_text(selected_file_input, "Select a file..."); + lv_obj_clear_flag(selected_file_input, LV_OBJ_FLAG_SCROLLABLE); + lv_obj_set_style_pad_left(selected_file_input, 6, 0); + lv_obj_set_style_pad_top(selected_file_input, 5, 0); + lv_obj_set_style_pad_bottom(selected_file_input, 4, 0); + lv_obj_set_style_pad_right(selected_file_input, 6, 0); + lv_textarea_set_one_line(selected_file_input, true); + + // Create OK and Cancel buttons + ok_button = lv_btn_create(dialog); + lv_obj_set_size(ok_button, 80, 24); + lv_obj_set_style_pad_left(ok_button, 20, 0); + lv_obj_set_style_pad_top(ok_button, 5, 0); + lv_obj_set_style_radius(ok_button, 12, 0); + lv_obj_add_event_cb(ok_button, ok_button_event_handler, LV_EVENT_CLICKED, NULL); + lv_obj_t * ok_label = lv_label_create(ok_button); + lv_label_set_text(ok_label, "Open"); + + cancel_button = lv_btn_create(dialog); + lv_obj_set_size(cancel_button, 80, 24); + lv_obj_set_style_pad_left(cancel_button, 13, 0); + lv_obj_set_style_pad_top(cancel_button, 5, 0); + lv_obj_set_style_radius(cancel_button, 12, 0); + lv_obj_add_event_cb(cancel_button, cancel_button_event_handler, LV_EVENT_CLICKED, NULL); + lv_obj_t * cancel_label = lv_label_create(cancel_button); + lv_label_set_text(cancel_label, "Cancel"); + + ui_resize_all_file_open_dialog_widgets(parent); + + // Initialize the file and folder lists + update_file_list("/"); // Start with the root directory +} + +void update_file_list(const char * path) +{ + // Clear existing lists + lv_obj_clean(folder_list); + lv_obj_clean(file_list); + + // Update the path input + lv_textarea_set_text(path_input, path); + strncpy(base_path, path, MAX_PATH_LENGTH - 1); + + struct dirent ** fileListTemp; + int noOfFiles = scandir(path, &fileListTemp, NULL, alphasort); + //printf("total: %d files\n",noOfFiles); + //for(uint32_t fi = 0; fi < noOfFiles; fi++){ + // printf("%s\n",fileListTemp[fi]->d_name); + //} + + // Open the directory + DIR * dir = opendir(path); + if(dir != NULL) { + if(base_path[1] != '\0') { + lv_obj_t * btn = lv_list_add_btn(folder_list, NULL, "[ Up ]"); + lv_obj_add_style(btn, &style_folder_button, 0); + lv_obj_set_size(btn, LV_PCT(100), 24); + lv_obj_set_style_opa(btn, LV_OPA_80, 0); + lv_obj_set_style_text_color(btn, lv_color_hex(LVGL_BLUE), 0); + lv_obj_add_event_cb(btn, parent_folder_event_handler, LV_EVENT_CLICKED, NULL); + } + struct dirent * entry; + for(int32_t de = 0; de < noOfFiles; de++) { + entry = fileListTemp[de]; + //while ((entry = readdir(dir)) != NULL) { + // Skip the current and parent directory entries and any files that start with a '.' (unless show_hidden_files_and_folders is true) + if(strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0 || (entry->d_name[0] == '.' && + !show_hidden_files_and_folders)) continue; + // Check if the entry is a directory + if(entry->d_type == DT_DIR) { + // Add folder button + lv_obj_t * btn = lv_list_add_btn(folder_list, NULL, entry->d_name); + lv_obj_add_style(btn, &style_folder_button, 0); + lv_obj_set_size(btn, LV_PCT(100), 24); + lv_obj_add_event_cb(btn, folder_button_event_handler, LV_EVENT_CLICKED, NULL); + lv_obj_t * txt = lv_obj_get_child(btn, -1); + lv_label_set_long_mode(txt, LV_LABEL_LONG_DOT); + } + else { + // Add file button + char extension[MAX_PATH_LENGTH]; + bool add_this_file = valid_extension_count == 0; + get_file_extension(entry->d_name, extension); + for(uint32_t i = 0; i < valid_extension_count; i++) { + if(strcasecmp(extension, valid_extensions[i]) == 0) { + add_this_file = true; + } + } + if(add_this_file) { + lv_obj_t * btn = lv_list_add_btn(file_list, NULL, entry->d_name); + lv_obj_add_style(btn, &style_file_button, 0); + lv_obj_set_size(btn, LV_PCT(100), 24); + lv_obj_add_event_cb(btn, file_button_event_handler, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(btn, ok_button_event_handler, LV_EVENT_DOUBLE_CLICKED, NULL); + lv_obj_t * txt = lv_obj_get_child(btn, -1); + lv_label_set_long_mode(txt, LV_LABEL_LONG_DOT); + } + } + } + closedir(dir); + } + + { + for(int32_t i = 0; i < noOfFiles; i++) lv_free(fileListTemp[i]); + lv_free(fileListTemp); + } + +} +void folder_button_event_handler(lv_event_t * e) +{ + lv_obj_t * btn = lv_event_get_target(e); + const char * folder_name = lv_list_get_button_text(folder_list, btn); + char new_path[MAX_PATH_LENGTH * 2 + 1]; + if(base_path[1] != '\0') { + snprintf(new_path, sizeof(new_path), "%s/%s", base_path, folder_name); + } + else { + snprintf(new_path, sizeof(new_path), "/%s", folder_name); + } + update_file_list(new_path); // Update the file list for the new path + strncpy(selected_file, "", MAX_PATH_LENGTH); + lv_textarea_set_text(selected_file_input, ""); + lv_refr_now(NULL); +} + +void parent_folder_event_handler(lv_event_t * e) +{ + LV_UNUSED(e); + char parent_path[MAX_PATH_LENGTH]; + get_parent_directory(base_path, parent_path); + if(parent_path[0] == '\0') { + parent_path[0] = '/'; + parent_path[1] = '\0'; + } + update_file_list(parent_path); // Update the file list for the new path + strncpy(selected_file, "", MAX_PATH_LENGTH); + lv_textarea_set_text(selected_file_input, ""); + lv_refr_now(NULL); + +} + +void file_button_event_handler(lv_event_t * e) +{ + lv_obj_t * btn = lv_event_get_target(e); + const char * file_name = lv_list_get_button_text(file_list, btn); + char full_file_path[MAX_PATH_LENGTH + 1]; + snprintf(full_file_path, sizeof(full_file_path), "%s/%s", base_path, file_name); + strncpy(selected_file, full_file_path, MAX_PATH_LENGTH); + selected_file[MAX_PATH_LENGTH - 1] = '\0'; + lv_textarea_set_text(selected_file_input, file_name); +} + +void ok_button_event_handler(lv_event_t * e) +{ + LV_UNUSED(e); + lv_gltf_data_destroy(demo_gltfdata); + lv_free(demo_gltfdata); + demo_gltfdata = NULL; + if(needs_system_gltfdata) { + lv_gltf_data_destroy(system_gltfdata); + lv_free(system_gltfdata); + system_gltfdata = NULL; + } + + reload(selected_file, ""); + demo_refocus(demo_gltfview, false); + demo_ui_set_tab(TAB_VIEW); + demo_ui_reposition_all(); +} + +void path_input_event_handler(lv_event_t * e) +{ + LV_UNUSED(e); + const char * new_text = lv_textarea_get_text(selected_file_input); + printf("New path text = '%s'\n", new_text); +} + +void cancel_button_event_handler(lv_event_t * e) +{ + LV_UNUSED(e); + demo_ui_set_tab(TAB_VIEW); +} diff --git a/src/demo_misc_utils.c b/src/demo_misc_utils.c new file mode 100644 index 0000000..ad34e32 --- /dev/null +++ b/src/demo_misc_utils.c @@ -0,0 +1,114 @@ +#include "data/lv_gltf_override.h" +#include "demo.h" +#include "lib/lv_gltf/view/sup/include/shader_includes.h" +#include +#include "lib/lv_gltf/view/sup/include/shader_v1.h" + +lv_opengl_shader_cache_t _shader_cache; +gl_environment_textures _environment; +static uint32_t cached_clear_tex = 0; + +double d_min(double a, double b) +{ + return (a < b) ? a : b; +} +uint32_t ui_max(uint32_t a, uint32_t b) +{ + return (a > b) ? a : b; +} +float lerp_towards(float start, float end, float t, float min_change) +{ + float newval = start + (end - start) * t; + if(start < end) { + if((end - start) < min_change) return end; + if((newval - start) < min_change) { + newval = start + min_change; + } + return newval; + } + else if(start > end) { + if((start - end) < min_change) return end; + if((start - newval) < min_change) { + newval = start - min_change; + } + return newval; + } + else { + return end; + } +} + +void setup_shadercache(const char * hdr_filepath, int degrees_x10) +{ + _shader_cache = lv_opengl_shader_cache_create(src_includes, sizeof(src_includes) / sizeof(lv_shader_key_value_t), + src_vertex(), src_frag()); + shader_cache = &_shader_cache; + lv_timer_handler(); + lv_task_handler(); + lv_refr_now(NULL); + _environment = lv_gltf_view_ibl_sampler_setup(NULL, hdr_filepath, degrees_x10); + _shader_cache.lastEnv = &_environment; +} + +void demo_set_overrides(void) +{ + ov_boom = lv_gltf_data_override_add_by_id(demo_gltfdata, "/root_base/base_platform/cab_pivot/proximal_armlink", + OP_ROTATION, OMC_CHAN2); + ov_stick = lv_gltf_data_override_add_by_id(demo_gltfdata, + "/root_base/base_platform/cab_pivot/proximal_armlink/distal_armlink", OP_ROTATION, OMC_CHAN2); + ov_bucket = lv_gltf_data_override_add_by_id(demo_gltfdata, + "/root_base/base_platform/cab_pivot/proximal_armlink/distal_armlink/bucket", OP_ROTATION, + OMC_CHAN2); // Not currently valid even with the right model loaded + ov_swing = lv_gltf_data_override_add_by_id(demo_gltfdata, "/root_base/base_platform/cab_pivot", OP_ROTATION, + OMC_CHAN1 | OMC_CHAN2 | OMC_CHAN3); + if(needs_system_gltfdata) ov_cursor = lv_gltf_data_override_add_by_id(system_gltfdata, "/cursor", OP_POSITION, + OMC_CHAN1 | OMC_CHAN2 | OMC_CHAN3); + if((ov_boom != NULL) && (ov_stick != NULL) && (ov_swing != NULL) && + (ov_cursor != NULL)) demo_ui_add_override_controls(tab_pages[TAB_VIEW]); +} + +void demo_refocus(lv_gltf_view_t * gltfview, bool first_call) +{ + demo_ui_fill_in_InfoTab(demo_gltfdata); + lv_gltf_view_set_camera(gltfview, use_scenecam ? camera : -1); + lv_gltf_view_reset_between_models(gltfview); + lv_gltf_view_recenter_view_on_model(demo_gltfview, demo_gltfdata); + lv_gltf_view_set_anim(gltfview, anim_enabled ? anim : -1); + + if(!first_call) { + lv_gltf_view_set_distance(gltfview, 1000); + lv_gltf_view_set_yaw(gltfview, 4200); + lv_gltf_view_set_pitch(gltfview, -2000); + } + + goal_pitch = lv_gltf_view_get_pitch(gltfview); + goal_yaw = lv_gltf_view_get_yaw(gltfview); + goal_distance = lv_gltf_view_get_distance(gltfview); + goal_focal_x = lv_gltf_view_get_focal_x(gltfview); + goal_focal_y = lv_gltf_view_get_focal_y(gltfview); + goal_focal_z = lv_gltf_view_get_focal_z(gltfview); + spin_counter_degrees = 0.f; + if(enable_intro_zoom) lv_gltf_view_set_distance(gltfview, (int)((goal_distance * 1.25f + 0.1f) * 1000.f)); + demo_ui_apply_camera_button_visibility(demo_gltfdata); + demo_ui_apply_anim_button_visibility(demo_gltfdata); + demo_ui_apply_spin_rate_value(spin_rate); + demo_ui_apply_spin_enabled_value(animate_spin); + demo_ui_reposition_all(); + demo_set_overrides(); +} + +uint32_t demo_make_small_clear_texture(void) +{ + if(cached_clear_tex > 0) return cached_clear_tex; + GL_CALL(glCreateTextures(GL_TEXTURE_2D, 1, &cached_clear_tex)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, cached_clear_tex)); + unsigned char clearBytes[4] = {255, 0, 255, 0}; // RGBA format + GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 1, 1, 0, GL_RGBA, GL_UNSIGNED_BYTE, clearBytes)); + // Set texture parameters (optional but recommended) + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE)); + GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE)); + GL_CALL(glBindTexture(GL_TEXTURE_2D, 0)); + return cached_clear_tex; +} diff --git a/src/demo_nav.c b/src/demo_nav.c new file mode 100644 index 0000000..07174b8 --- /dev/null +++ b/src/demo_nav.c @@ -0,0 +1,186 @@ +#include "demo.h" +#include +#include + +float goal_pitch; +float goal_yaw; +float goal_distance; +float goal_focal_x; +float goal_focal_y; +float goal_focal_z; + +void nav_turn(int mouse_x, int mouse_y, int last_mouse_x, int last_mouse_y) +{ + // Calculate the change in mouse position + float deltaX = (float)(mouse_x - last_mouse_x); + float deltaY = (float)(mouse_y - last_mouse_y); + // Sensitivity factor for rotation + float sensitivity = 0.195f; + // Calculate pitch and yaw changes + float pitchChange = deltaY * -sensitivity; + float yawChange = deltaX * -sensitivity; + //bool viewChanged = false; + // Update camera rotation + if(fabs(pitchChange) > 0.001f) { + goal_pitch += pitchChange; + if(goal_pitch > 89.9f) { + goal_pitch = 89.9f; + } + else if(goal_pitch < -89.9f) { + goal_pitch = -89.9f; + } + //viewChanged = true; + } + if(fabs(yawChange) > 0.001f) { + goal_yaw += yawChange; + //viewChanged = true; + } + // if (viewChanged) printf("Pitch Change: %f, Yaw Change: %f\n", pitchChange, yawChange); +} +void nav_drag_xz(float unit_distance, int mouse_x, int mouse_y, int last_mouse_x, int last_mouse_y) +{ + + // Calculate the change in mouse position + float deltaX = (float)(mouse_x - last_mouse_x); + float deltaY = (float)(mouse_y - last_mouse_y); + + // Sensitivity factor for movement + float sensitivity = 0.005f * unit_distance; + // Calculate strafing and forward/backward motion + float offset_yaw = lv_gltf_view_get_yaw(demo_gltfview) + lv_gltf_view_get_spin_degree_offset( + demo_gltfview); //spin_counter_degrees; // The yaw in the view description will not represent the actual visible yaw if the platter has spun the orientation off base 0 + //bool viewChanged = false; + if(fabs(deltaY) > 0.001f) { + //viewChanged = true; + // Calculate the direction based on the current yaw angle + // Update camera position based on strafing and forward/backward motion + float forwardBackwardAmount = deltaY * sensitivity; + float forwardRadians = offset_yaw * PI_TO_RAD; // Convert forward yaw to radians + goal_focal_x += (-sinf(forwardRadians) * forwardBackwardAmount); + goal_focal_z += (-cosf(forwardRadians) * forwardBackwardAmount); + } + if(fabs(deltaX) > 0.001f) { + //viewChanged = true; + float strafeAmount = deltaX * sensitivity; + float strafeRadians = (offset_yaw + 90.0f) * PI_TO_RAD; // Convert right yaw to radians + goal_focal_x += (-sinf(strafeRadians) * strafeAmount); + goal_focal_z += (-cosf(strafeRadians) * strafeAmount); + } + // if ( viewChanged ) printf("Camera Position: (%.2f, %.2f, %.2f)\n", lv_gltf_view_get_focal_x(demo_gltfview), lv_gltf_view_get_focal_y(demo_gltfview), lv_gltf_view_get_focal_z(demo_gltfview)); +} +void nav_drag_y(float unit_distance, int mouse_y, int last_mouse_y) +{ + // Calculate the change in mouse position + float deltaY = (float)(mouse_y - last_mouse_y); + // Sensitivity factor for movement + float sensitivity = 0.0025f * unit_distance; + if(fabs(deltaY) > 0.001f) { + goal_focal_y += deltaY * sensitivity; + } +} +void nav_zoom(int mouse_y, int last_mouse_y) +{ + // Calculate the change in mouse position + float deltaY = (float)(mouse_y - last_mouse_y); + + // Sensitivity factor for movement + float sensitivity = 0.0025f; + if(fabs(deltaY) > 0.001f) { + float inOutAmount = deltaY * sensitivity; + goal_distance += inOutAmount; + if(goal_distance < 0.f) { + goal_distance = 0.f; + } + } +} + +void demo_nav_process_drag(float movement_power, uint32_t mouse_state_ex, int mouse_x, int mouse_y, int last_mouse_x, + int last_mouse_y) +{ + if(mouse_state_ex == LV_INDEV_STATE_EX_MOUSE_LEFT) nav_turn(mouse_x, mouse_y, last_mouse_x, last_mouse_y); + else if(mouse_state_ex == LV_INDEV_STATE_EX_MOUSE_RIGHT) nav_drag_xz(movement_power, mouse_x, mouse_y, last_mouse_x, + last_mouse_y); + else if(mouse_state_ex == LV_INDEV_STATE_EX_MOUSE_MIDDLE) nav_drag_y(movement_power, mouse_y, last_mouse_y); + else if(mouse_state_ex == LV_INDEV_STATE_EX_MOUSE_4) nav_zoom(mouse_y, last_mouse_y); + else if(mouse_state_ex == LV_INDEV_STATE_EX_MOUSE_5) printf("Mouse Button #5 Pressed\n"); +} + +void demo_nav_gradual_to_goals(void) +{ + float EASE_POWER_1 = 1.f / 16.f; + float EASE_POWER_2 = 1.f / 56.f; + //float EASE_CLOSE_ENOUGH = 0.001f; + float MIN_ANGLE_CHANGE = 0.02f; + float MIN_DISTANCE_CHANGE = 0.001f; + float MIN_POSITION_CHANGE = 0.001f; + float tfx = lv_gltf_view_get_focal_x(demo_gltfview); + if(tfx != goal_focal_x) { + tfx = lerp_towards(tfx, goal_focal_x, EASE_POWER_1, MIN_POSITION_CHANGE); + if(tfx == goal_focal_x) { + goal_focal_x = lv_gltf_view_get_focal_x(demo_gltfview); + } + lv_gltf_view_set_focal_x(demo_gltfview, tfx); + } + + float tfy = lv_gltf_view_get_focal_y(demo_gltfview); + if(tfy != goal_focal_y) { + tfy = lerp_towards(tfy, goal_focal_y, EASE_POWER_1, MIN_POSITION_CHANGE); + if(tfy == goal_focal_y) { + goal_focal_y = lv_gltf_view_get_focal_y(demo_gltfview); + } + lv_gltf_view_set_focal_y(demo_gltfview, tfy); + } + + float tfz = lv_gltf_view_get_focal_z(demo_gltfview); + if(tfz != goal_focal_z) { + tfz = lerp_towards(tfz, goal_focal_z, EASE_POWER_1, MIN_POSITION_CHANGE); + if(tfz == goal_focal_z) { + goal_focal_z = lv_gltf_view_get_focal_z(demo_gltfview); + } + lv_gltf_view_set_focal_z(demo_gltfview, tfz); + } + + float tyaw = lv_gltf_view_get_yaw(demo_gltfview); + if(tyaw != goal_yaw) { + tyaw = lerp_towards(tyaw, goal_yaw, EASE_POWER_2, MIN_ANGLE_CHANGE); + bool looped = demo_ui_apply_yaw_value(tyaw); + if(looped) { + // Move the goal and lerp_towardsed yaw back into the -180 <-> +180 degree range + while(goal_yaw < -180.f) goal_yaw += 360.f; + while(goal_yaw > 180.f) goal_yaw -= 360.f; + while(tyaw < -180.f) tyaw += 360.f; + while(tyaw > 180.f) tyaw -= 360.f; + } + lv_gltf_view_set_yaw(demo_gltfview, (int)(tyaw * 100.f)); + if(tyaw == goal_yaw) { + goal_yaw = lv_gltf_view_get_yaw(demo_gltfview); + } + + } + else if(last_dragged_control == yaw_slider) last_dragged_control = NULL; + + float tpitch = lv_gltf_view_get_pitch(demo_gltfview); + if(tpitch != goal_pitch) { + tpitch = lerp_towards(tpitch, goal_pitch, EASE_POWER_2, MIN_ANGLE_CHANGE); + lv_gltf_view_set_pitch(demo_gltfview, (int)(tpitch * 100.f)); + demo_ui_apply_pitch_value(tpitch); + if(tpitch == goal_pitch) { + goal_pitch = lv_gltf_view_get_pitch(demo_gltfview); + } + } + else if(last_dragged_control == pitch_slider) last_dragged_control = NULL; + + + float tdistance = lv_gltf_view_get_distance(demo_gltfview); + if(tdistance != goal_distance) { + tdistance = lerp_towards(tdistance, goal_distance, EASE_POWER_1, MIN_DISTANCE_CHANGE); + lv_gltf_view_set_distance(demo_gltfview, (int)(tdistance * 1000.f)); + demo_ui_apply_distance_value(tdistance); + if(tdistance == goal_distance) { + goal_distance = lv_gltf_view_get_distance(demo_gltfview); + } + } + else if(last_dragged_control == distance_slider) last_dragged_control = NULL; + +} + diff --git a/src/demo_os_integrate.c b/src/demo_os_integrate.c new file mode 100644 index 0000000..6678711 --- /dev/null +++ b/src/demo_os_integrate.c @@ -0,0 +1,340 @@ + + +#include "demo.h" +#include /* to trap ctrl-break */ +#include +#include /* to check drive space */ + +#include +#include +#include +#include + +typedef struct { + unsigned int texture_id; + uint8_t * fb1; +} lv_opengles_texture_t; + +GLFWwindow * glfw_window; + +lv_display_t * temp_display = NULL; +uint32_t ramtemp_drive_size = 0; + +bool demo_os_integrate_window_should_close(void) +{ + return glfwWindowShouldClose(glfw_window); +} + +void demo_os_integrate_signal_window_close(void) +{ + glfwSetWindowShouldClose(glfw_window, GLFW_TRUE); +} + +int os_integrate_increase_ramdrive_size(unsigned long increase_byte_count) +{ + unsigned long increase_megabytes = increase_byte_count / (1024 * 1024); + if(increase_megabytes < 1) { + increase_megabytes = 1; + } + ramtemp_drive_size += increase_megabytes; + + // Construct the command + char command[256]; + snprintf(command, sizeof(command), RESIZE_RAMDRIVE_COMMAND_TEMPLATE, DESKTOP_OUTPUT_RAMTEMP_PATH, ramtemp_drive_size); + // Call the script + int result = system(command); + printf("RAM drive /var/ramtemp resized to: %d mB\n", ramtemp_drive_size); + return (result == 0) ? 0 : -1; +} + +unsigned long os_integrate_get_available_drive_bytes(char * path) +{ + struct statvfs stat; + // Get filesystem statistics + if(statvfs(path, &stat) == 0) { + // Calculate available space + return stat.f_bsize * stat.f_bavail; + } + return 0; // Error occurred +} + +int os_integrate_check_drive_space(int32_t current_frame_num) //const char *path, unsigned long limit) { +{ + // Check if available space is below the limit + const unsigned long limit = 1 * 1024 * 1024; + float norm_ratio = 0.99f; + if(cycle_frames > 0) { + norm_ratio = ((float)current_frame_num) / ((float)cycle_frames); + } + float bytes_total_estimate = ((float)(ramtemp_drive_size * 1024 * 1024) / norm_ratio) - + (ramtemp_drive_size * 1024 * 1024) + (1024 * 1024); + unsigned long newbytes = 10 * limit; + + // Construct the path + char path[MAX_PATH_LENGTH]; + snprintf(path, sizeof(path), "/var/%s", DESKTOP_OUTPUT_RAMTEMP_PATH); + if(os_integrate_get_available_drive_bytes(&path[0]) < limit) { + if(norm_ratio > 0.04f) { + newbytes = (unsigned long)(bytes_total_estimate); + printf("estimated required megabytes to complete job: %.2f\n", (bytes_total_estimate / (float)(1024 * 1024))); + } + return os_integrate_increase_ramdrive_size(newbytes); + } + return 0; // Success +} + +void os_integrate_filedrop_callback(GLFWwindow * _window, int count, const char ** paths) +{ + LV_UNUSED(_window); + int i; + for(i = 0; i < count; i++) { + printf("file dropped into window: %s\n", paths[i]); + } + if(count > 0) { + lv_gltf_data_destroy(demo_gltfdata); + lv_free(demo_gltfdata); + demo_gltfdata = NULL; + if(needs_system_gltfdata) { + lv_gltf_data_destroy(system_gltfdata); + lv_free(system_gltfdata); + system_gltfdata = NULL; + } + reload((char *)paths[0], ""); + demo_refocus(demo_gltfview, false); + } +} + +void os_integrate_handle_sigint(int sig) +{ + LV_UNUSED(sig); + printf("\nShutting down app (from ctrl-c)...\n"); + demo_os_integrate_signal_window_close(); +} + +void os_integrate_window_close_callback(GLFWwindow * _window) +{ + LV_UNUSED(_window); + printf("\nShutting down app (from window close)...\n"); + demo_os_integrate_signal_window_close(); +} + +void os_integrate_window_resize_callback(GLFWwindow * _glfw_window, int width, int height) +{ + printf("Window is resizing: New size: %d,%d\n", width, height); + lv_gltf_view_set_width(demo_gltfview, width - (INNER_BG_CROP_LEFT + INNER_BG_CROP_RIGHT)); + lv_gltf_view_set_height(demo_gltfview, height - (INNER_BG_CROP_TOP + INNER_BG_CROP_BOTTOM)); + lv_display_set_resolution(display_texture, width, height); + //glViewport(0, 0, width, height); + glfwSwapBuffers(_glfw_window); + demo_ui_reposition_all(); + lv_refr_now(NULL); + reapply_layout_flag = true; // Signal that the layout should update one more time next frame; +} + +void demo_os_integrate_window_standard_title(const char * file_path) +{ + char buffer[255]; + const unsigned int _MAX_FILENAME_SIZE = 64; + char * FILENAME_BUFF = lv_malloc(_MAX_FILENAME_SIZE); + lv_gltf_get_isolated_filename(file_path, FILENAME_BUFF, _MAX_FILENAME_SIZE); + sprintf(buffer, "%s | %s", FILENAME_BUFF, MY_WINDOW_TITLE); + buffer[254] = '\0'; + lv_glfw_window_set_title(window, buffer); + lv_free(FILENAME_BUFF); +} + +void demo_os_integrate_setup_glfw_window(lv_glfw_window_t * lv_window, bool lock_window_size, bool start_maximized) +{ + glfw_window = (GLFWwindow *)lv_glfw_window_get_glfw_window(lv_window); + glfwSetWindowCloseCallback(glfw_window, os_integrate_window_close_callback); + if(lock_window_size) { + glfwSetWindowSizeLimits(glfw_window, ui_get_window_width(), ui_get_window_height(), ui_get_window_width(), + ui_get_window_height()); + glfwSetWindowAttrib(glfw_window, GLFW_RESIZABLE, false); + } + else { + if(!start_maximized) { + glfwSetWindowSize(glfw_window, ui_get_window_width(), ui_get_window_height()); + } + else { + glfwSetWindowSize(glfw_window, ui_get_window_width() * 0.6f, ui_get_window_height() * 0.8f); + glfwMaximizeWindow(glfw_window); + } + glfwSetFramebufferSizeCallback(glfw_window, os_integrate_window_resize_callback); + glfwSetWindowSizeLimits(glfw_window, 300, 300, ui_get_max_window_width(), ui_get_max_window_height()); + glfwSetWindowAttrib(glfw_window, GLFW_RESIZABLE, true); + } + glfwSetDropCallback(glfw_window, os_integrate_filedrop_callback); + + GLFWimage images[1]; + int width, height, channel; + stbi_uc * img = stbi_load("./assets/window_icon_32px.png", &width, &height, &channel, 0); //rgba channels + if(img == NULL) printf("Icon Can Not Be Loaded\n"); + images[0].height = 32; + images[0].width = 32; + images[0].pixels = img; + glfwSetWindowIcon(glfw_window, 1, images); + stbi_image_free(images[0].pixels); + + /* Capture ctrl-c keystrokes in a multi-threaded compatible way */ + struct sigaction sa; + sa.sa_handler = os_integrate_handle_sigint; + sa.sa_flags = 0; + sigemptyset(&sa.sa_mask); + if(sigaction(SIGINT, &sa, NULL) == -1) { + perror("sigaction"); + exit(EXIT_FAILURE); + } +} + +bool demo_os_integrate_get_maximum_window_framebuffer_size(uint32_t * _max_window_width, uint32_t * _max_window_height) +{ + *_max_window_width = ui_get_max_window_width(); + *_max_window_height = ui_get_max_window_height(); + int window_top_trim = 28; + int window_side_trim = 0; + { + // Create a hidden window to get the title bar height + glfwWindowHint(GLFW_VISIBLE, GLFW_FALSE); + glfwWindowHint(GLFW_MAXIMIZED, GLFW_TRUE); + glfwWindowHint(GLFW_DECORATED, GLFW_TRUE); + GLFWwindow * hidden_window = glfwCreateWindow(800, 600, "Hidden Window", NULL, NULL); + if(hidden_window) { + int _left, _top, _right, _bottom; + glfwGetWindowFrameSize(hidden_window, &_left, &_top, &_right, &_bottom); + glfwDestroyWindow(hidden_window); + window_top_trim = _top; + window_side_trim = _left; + } + glfwWindowHint(GLFW_VISIBLE, GLFW_TRUE); + glfwWindowHint(GLFW_MAXIMIZED, GLFW_FALSE); + glfwWindowHint(GLFW_VISIBLE, GLFW_TRUE); + } + + // Is session 1 an X11 session? + int window_type_detected = system("./ex/__detect_x11.sh") >> 8; + if(window_type_detected == 0) { + // X11 + printf("Runtime info: X11.\n"); + } + else if(window_type_detected == 1) { + // Wayland running Wayfire compositor + printf("Runtime info: Wayland running Wayfire.\n"); + window_top_trim += 68; + } + else if(window_type_detected == 2) { + // Wayland running labwc compositor + // If not, for now that means it's Wayland, so we'll need some window metric size adjustments since + // it seems Wayland does not report monitor work area the same way as X11 + printf("Runtime info: Wayland running labwc.\n"); + window_top_trim += 62; + } + else { + printf("Runtime info: Unknown, response = %d.\n", window_type_detected); + } + + // Get the primary monitor + GLFWmonitor * monitor = glfwGetPrimaryMonitor(); + if(monitor) { + // Get the work area of the monitor + int xpos, ypos, work_width, work_height; + glfwGetMonitorWorkarea(monitor, &xpos, &ypos, &work_width, &work_height); + *_max_window_width = work_width - window_side_trim; + *_max_window_height = work_height - window_top_trim; + //printf ("Monitor work area: xpos=%d ypos=%d width=%d height=%d\n", xpos, ypos, work_width, work_height); + //printf("Maximum framebuffer size: %dx%d\n", max_window_width, max_window_height); + return true; + } + else { + return false; + } +} + +#ifdef ENABLE_DESKTOP_MODE + +typedef struct { + int frameCount; + bool desktop_mode; + bool file_has_alpha; + int maxFrames; + int suffix; + char * pixels; +} RenderTask; + +pthread_mutex_t task_mutex = PTHREAD_MUTEX_INITIALIZER; +pthread_cond_t task_cond = PTHREAD_COND_INITIALIZER; +RenderTask * task_queue[MAX_THREADS]; +int task_count = 0; +int suffixCount = 0; +bool running = true; + +bool demo_os_integrate_confirm_desktop_mode_ok(void) +{ + // Construct the command + char command[256]; + snprintf(command, sizeof(command), "sudo ./ex/__confirm_ramdrive.sh %s", DESKTOP_OUTPUT_RAMTEMP_PATH); + // Call the script + int result = system(command); + return (result == 0) ? true : false; +} + +void * demo_os_integrate_save_desktop_png_thread(void * arg) +{ + LV_UNUSED(arg); + + while(running) { + RenderTask * task = NULL; + // Lock the mutex to access the task queue + pthread_mutex_lock(&task_mutex); + if(task_count > 0) task = task_queue[--task_count]; // Get a task from the queue + pthread_mutex_unlock(&task_mutex); + if(task) { + // If the file does not already exist, save it to disk. Either way, then make the file the current desktop + if(task->desktop_mode) { + char _buffer[500]; + snprintf(_buffer, sizeof(_buffer), DESKTOP_OUTPUT_FILEPATH_TEMPLATE, task->suffix); + struct stat file_stat; + if(stat(_buffer, &file_stat) != 0) { + os_integrate_check_drive_space(task->suffix); + lv_gltf_view_utils_save_pixelbuffer_to_png(task->pixels, _buffer, task->file_has_alpha, 0, + ui_get_primary_texture_width(), ui_get_primary_texture_height()); + } + lv_free(task->pixels); + snprintf(_buffer, sizeof(_buffer), DESKTOP_APPLY_COMMAND_TEMPLATE, task->suffix); + system(_buffer); + } + free(task); // Free the task after processing + } + else { + // No task available, sleep for a short time + usleep(10000); // Sleep for 10 ms + } + } + return NULL; +} + +void demo_os_integrate_save_png_from_new_thread(int _frameCount, bool _desktop_mode, int _maxFrames, bool _file_alpha, + char * _pixels) +{ + // Create a new render task + suffixCount += 1; + RenderTask * task = malloc(sizeof(RenderTask)); + task->frameCount = _frameCount; + task->desktop_mode = _desktop_mode; + task->maxFrames = _maxFrames; + task->file_has_alpha = _file_alpha; + task->pixels = _pixels; + task->suffix = _frameCount; //suffixCount % MAX_THREADS; + // Lock the mutex to add the task to the queue + pthread_mutex_lock(&task_mutex); + if(task_count < MAX_THREADS) { + task_queue[task_count++] = task; // Add task to the queue + pthread_cond_signal(&task_cond); // Signal a thread that a task is available + } + else { + free(task); // If the queue is full, free the task + } + pthread_mutex_unlock(&task_mutex); +} + +#endif diff --git a/src/demo_ui.c b/src/demo_ui.c new file mode 100644 index 0000000..7548951 --- /dev/null +++ b/src/demo_ui.c @@ -0,0 +1,1335 @@ +#include +#include +#include +#include +#include +#include "demo.h" +#include "lib/lv_gltf/data/lv_gltf_override.h" +#include "lib/lv_gltf/data/lv_gltf_data.h" +#include "lib/lv_gltf/data/lv_gltf_data_internal.h" + +lv_obj_t * grp_loading; +lv_obj_t * spin_checkbox; +lv_obj_t * spin_slider; +//lv_glfw_window_t * window; +//GLFWwindow * glfw_window; +lv_obj_t * progbar1; +lv_obj_t * progbar2; +lv_obj_t * progText1; +lv_obj_t * tabview; +lv_obj_t * viewTab; +lv_obj_t * loadTab; +lv_obj_t * titleText; +lv_obj_t * anim_checkbox; + +lv_obj_t * infotab_white_bg; +lv_obj_t * infotab_inner_background; +lv_obj_t * viewtab_white_bg; +lv_obj_t * viewtab_inner_background; + +lv_obj_t * pitch_slider; +lv_obj_t * yaw_slider; +lv_obj_t * distance_slider; + +lv_obj_t * infoTab; +lv_obj_t * bottomBlankTab; +lv_obj_t * lbl_filename; +lv_obj_t * lbl_mesh_summary; +lv_obj_t * lbl_treesummary; + +lv_obj_t * window_bevel_1; +lv_obj_t * window_bevel_2; +lv_obj_t * window_bevel_3; +lv_obj_t * window_bevel_4; + +lv_style_t style_knob; +lv_style_t style_bg_vert; +lv_style_t style_bg_horiz; +lv_style_t style_file_button; +lv_style_t style_folder_button; + +bool __styles_ready = false; +bool ignore_event = false; +lv_obj_t * last_dragged_control = NULL; + +#define MAX_CAM_BUTTONS 16 +lv_obj_t * use_scenecam_checkbox; +lv_obj_t * cam_buttons[MAX_CAM_BUTTONS]; +#define MAX_ANIM_BUTTONS 16 +lv_obj_t * anim_buttons[MAX_ANIM_BUTTONS]; + +uint32_t ui_get_window_width(void) +{ + + return lv_gltf_view_get_width(demo_gltfview) + (INNER_BG_CROP_LEFT + INNER_BG_CROP_RIGHT); + //return WINDOW_WIDTH; +} + + +uint32_t ui_get_window_height(void) +{ + return lv_gltf_view_get_height(demo_gltfview) + (INNER_BG_CROP_TOP + INNER_BG_CROP_BOTTOM); + //return WINDOW_HEIGHT; +} +uint32_t ui_get_primary_texture_width(void) +{ + return lv_gltf_view_get_width(demo_gltfview); +} +uint32_t ui_get_primary_texture_height(void) +{ + return lv_gltf_view_get_height(demo_gltfview); +} + +uint32_t ui_get_max_window_width(void) +{ + return 1920; +} +uint32_t ui_get_max_window_height(void) +{ + return 1080; +} + +void __make_styles(void) +{ + __styles_ready = true; + //static lv_style_t style_knob; + lv_style_init(&style_knob); + lv_style_set_bg_opa(&style_knob, LV_OPA_COVER); + lv_style_set_bg_color(&style_knob, lv_color_hex(LVGL_COOLGRAY)); + lv_style_set_bg_grad_color(&style_knob, lv_color_hex(LVGL_BLUE)); + lv_style_set_bg_grad_dir(&style_knob, LV_GRAD_DIR_VER); + lv_style_set_border_color(&style_knob, lv_color_hex(LVGL_BLUE)); + lv_style_set_border_opa(&style_knob, LV_OPA_50); + lv_style_set_border_width(&style_knob, 2); + lv_style_set_bg_img_src(&style_knob, &sprites1_32x32x7); + + //static lv_style_t style_bg_vert; + lv_style_init(&style_bg_vert); + lv_style_set_bg_opa(&style_bg_vert, LV_OPA_60); + lv_style_set_bg_color(&style_bg_vert, lv_color_hex(0x9ca2a7)); + lv_style_set_bg_grad_color(&style_bg_vert, lv_color_hex(LVGL_COOLGRAY)); + lv_style_set_bg_grad_dir(&style_bg_vert, LV_GRAD_DIR_HOR); + lv_style_set_border_color(&style_bg_vert, lv_color_hex(LVGL_BLUE)); + lv_style_set_border_opa(&style_bg_vert, LV_OPA_50); + lv_style_set_border_width(&style_bg_vert, 2); + lv_style_set_bg_grad_stop(&style_bg_vert, 64); + lv_style_set_bg_main_stop(&style_bg_vert, 16); + + //static lv_style_t style_bg_horiz; + lv_style_init(&style_bg_horiz); + lv_style_set_bg_opa(&style_bg_horiz, LV_OPA_60); + lv_style_set_bg_color(&style_bg_horiz, lv_color_hex(0x9ca2a7)); + lv_style_set_bg_grad_color(&style_bg_horiz, lv_color_hex(LVGL_COOLGRAY)); + lv_style_set_bg_grad_dir(&style_bg_horiz, LV_GRAD_DIR_VER); + lv_style_set_border_color(&style_bg_horiz, lv_color_hex(LVGL_BLUE)); + lv_style_set_border_opa(&style_bg_horiz, LV_OPA_50); + lv_style_set_border_width(&style_bg_horiz, 2); + lv_style_set_bg_grad_stop(&style_bg_horiz, 64); + lv_style_set_bg_main_stop(&style_bg_horiz, 16); + + + lv_style_init(&style_file_button); + lv_style_set_pad_top(&style_file_button, 6); + lv_style_set_pad_bottom(&style_file_button, 0); + lv_style_set_pad_left(&style_file_button, 0); + lv_style_set_pad_right(&style_file_button, 0); + lv_style_set_margin_top(&style_file_button, 0); + lv_style_set_margin_bottom(&style_file_button, 0); + lv_style_set_margin_left(&style_file_button, 0); + lv_style_set_margin_right(&style_file_button, 0); + + + lv_style_init(&style_folder_button); + lv_style_set_pad_top(&style_folder_button, 6); + lv_style_set_pad_bottom(&style_folder_button, 0); + lv_style_set_pad_left(&style_folder_button, 0); + lv_style_set_pad_right(&style_folder_button, 0); + lv_style_set_margin_top(&style_folder_button, 0); + lv_style_set_margin_bottom(&style_folder_button, 0); + lv_style_set_margin_left(&style_folder_button, 0); + lv_style_set_margin_right(&style_folder_button, 0); + + +} + +lv_obj_t * __make_sprite(unsigned int _spriteNum, lv_obj_t * _parent) +{ + const int SPRITE_SIZE = 32; + lv_obj_t * img1 = lv_image_create(_parent); + lv_image_set_src(img1, &sprites1_32x32x7); + lv_obj_set_size(img1, SPRITE_SIZE, SPRITE_SIZE); + lv_img_set_offset_y(img1, (SPRITE_SIZE * MAX_SPRITES) - (SPRITE_SIZE * (_spriteNum + 4))); + return img1; +} + +void demo_ui_set_tab(unsigned int _tabnum) +{ + _current_tab = _tabnum; + lv_tabview_set_active(tabview, _current_tab + 1, LV_ANIM_OFF); + for(unsigned int i = 0; i < MAX_TABS; i++) { + if(_current_tab == i) { + lv_obj_clear_flag(tab_pages[i], LV_OBJ_FLAG_HIDDEN); + } + else { + lv_obj_add_flag(tab_pages[i], LV_OBJ_FLAG_HIDDEN); + } + } +} + +// Function to set the slider value without triggering events +void demo_ui_set_slider_value_without_event(lv_obj_t * slider, int value) +{ + + if(slider == last_dragged_control) { + // Cancel this operation if the current is either being dragged currently, or was + // just dragged to a new position and is gradually changing towards it's next goal still. + //printf ("Confirm: Cancelling this slider update because it is being dragged or was recently dragged\n"); + return; + } + // Set the flag to ignore events + ignore_event = true; + + // Set the slider value + lv_slider_set_value(slider, value, LV_ANIM_OFF); + + // Reset the flag after setting the value + ignore_event = false; +} + +// Function to set the slider value without triggering events +void demo_ui_set_checkbox_value_without_event(lv_obj_t * checkbox, bool value) +{ + // Set the flag to ignore events + ignore_event = true; + + // Set the slider value + if(value) { + lv_obj_add_state(checkbox, LV_STATE_CHECKED); + } + else { + lv_obj_remove_state(checkbox, LV_STATE_CHECKED); + } + + // Reset the flag after setting the value + ignore_event = false; +} + +bool demo_ui_apply_yaw_value(float visual_yaw) +{ + float norm_val = (visual_yaw / 360.f) + 0.5f; + bool looped = false; + if(norm_val < 0.f) { + looped = true; + while(norm_val < 0.f) { + norm_val += 1.0f; + } + } + else if(norm_val > 1.0f) { + looped = true; + while(norm_val > 1.f) { + norm_val -= 1.0f; + } + } + //norm_val -= (int)(norm_val); + norm_val -= 0.5f; + //printf ("Norm yaw val = %.3f\n", norm_val); + demo_ui_set_slider_value_without_event(yaw_slider, norm_val * 1000.f); + return looped; +} + +static void yaw_slider_event_cb(lv_event_t * e) +{ + if(ignore_event) { + return; + } + if(animate_spin) { + animate_spin = false; + lv_obj_remove_state(spin_checkbox, LV_STATE_CHECKED); + lv_obj_add_flag(spin_slider, LV_OBJ_FLAG_HIDDEN); + } + lv_obj_t * slider = lv_event_get_target_obj(e); + last_dragged_control = slider; + goal_yaw = ((float)lv_slider_get_value(slider) / 1000.0f) * 360.f; + lv_refr_now( + NULL); // This forced update here helps reduce any screen flashing effects that occur during windowed operation while we're figuring out that bug +} + +void demo_ui_apply_pitch_value(float visual_pitch) +{ + demo_ui_set_slider_value_without_event(pitch_slider, (visual_pitch / 180.f) * 100.0f); +} + +static void pitch_slider_event_cb(lv_event_t * e) +{ + if(ignore_event) { + return; + } + lv_obj_t * slider = lv_event_get_target_obj(e); + last_dragged_control = slider; + goal_pitch = ((float)lv_slider_get_value(slider) / 100.0f) * 180.f; + //lv_gltf_view_set_pitch(demo_gltfview, (int)(((float)lv_slider_get_value(slider) / 100.0f ) * 1800.f)); + lv_refr_now(NULL); +} + +void demo_ui_apply_spin_rate_value(float visual_spin_rate) +{ + demo_ui_set_slider_value_without_event(spin_slider, (int)((visual_spin_rate / 40.f) * 100.0f)); +} + +void demo_ui_apply_spin_enabled_value(bool visual_animate_spin) +{ + demo_ui_set_checkbox_value_without_event(spin_checkbox, visual_animate_spin); + if(visual_animate_spin) { + lv_obj_remove_flag(spin_slider, LV_OBJ_FLAG_HIDDEN); + } + else { + lv_obj_add_flag(spin_slider, LV_OBJ_FLAG_HIDDEN); + } +} + +static void spin_slider_event_cb(lv_event_t * e) +{ + if(ignore_event) { + return; + } + lv_obj_t * slider = lv_event_get_target_obj(e); + spin_rate = ((float)lv_slider_get_value(slider) / 100.0f) * 4.f * 10.0f; + lv_refr_now(NULL); +} + +void demo_ui_apply_distance_value(float visual_distance) +{ + visual_distance = pow(visual_distance, (visual_distance < 1.0f) ? 0.25 : 0.5); + visual_distance /= 2.0f; + visual_distance = -(visual_distance - 1.0f); + visual_distance *= 100.0f; + demo_ui_set_slider_value_without_event(distance_slider, visual_distance); +} + +static void distance_slider_event_cb(lv_event_t * e) +{ + if(ignore_event) { + return; + } + lv_obj_t * slider = lv_event_get_target_obj(e); + last_dragged_control = slider; + float _distance = (1.f - ((float)lv_slider_get_value(slider) / 100.0f)) * 2.0f; + if(_distance < 1.0f) { + _distance = pow(_distance, 4.0); + } + else { + _distance = pow(_distance, 2.0); + } + goal_distance = _distance; + //lv_gltf_view_set_distance(demo_gltfview, (int)(_distance * 1000.0f)); + lv_refr_now(NULL); +} + +/* +static void elev_slider_event_cb(lv_event_t * e){ + lv_obj_t * slider = lv_event_get_target_obj(e); + elevation = ((float)lv_slider_get_value(slider) / 100.0f ) * 0.5f; +} */ + +static void spin_checkbox_event_cb(lv_event_t * e) +{ + if(ignore_event) { + return; + } + LV_UNUSED(e); + animate_spin = (lv_obj_get_state(spin_checkbox) & LV_STATE_CHECKED); + if(animate_spin) { + lv_obj_clear_flag(spin_slider, LV_OBJ_FLAG_HIDDEN); + } + else { + lv_obj_add_flag(spin_slider, LV_OBJ_FLAG_HIDDEN); + } + //lv_refr_now(NULL); +} + +static void tab_clicked_event_cb(lv_event_t * e) +{ + lv_obj_t * button = lv_event_get_current_target(e); + int32_t idx = lv_obj_get_index_by_type(button, &lv_button_class); + demo_ui_set_tab(idx - 1); + demo_ui_reposition_all(); + +} + +void demo_ui_apply_camera_button_visibility(lv_gltf_data_t * _data) +{ + gltf_probe_info * probe = lv_gltf_view_get_probe(_data); + for(unsigned int i = 0; i < MAX_CAM_BUTTONS; i++) + if(use_scenecam && (i < probe->cameraCount)) lv_obj_clear_flag(cam_buttons[i], LV_OBJ_FLAG_HIDDEN); + else lv_obj_add_flag(cam_buttons[i], LV_OBJ_FLAG_HIDDEN); + if(probe->cameraCount > 0) lv_obj_clear_flag(use_scenecam_checkbox, LV_OBJ_FLAG_HIDDEN); + else lv_obj_add_flag(use_scenecam_checkbox, LV_OBJ_FLAG_HIDDEN); +} + +void demo_ui_apply_anim_button_visibility(lv_gltf_data_t * _data) +{ + gltf_probe_info * probe = lv_gltf_view_get_probe(_data); + for(unsigned int i = 0; i < MAX_ANIM_BUTTONS; i++) + if(anim_enabled && i < probe->animationCount) lv_obj_clear_flag(anim_buttons[i], LV_OBJ_FLAG_HIDDEN); + else lv_obj_add_flag(anim_buttons[i], LV_OBJ_FLAG_HIDDEN); + if(probe->animationCount > 0) lv_obj_clear_flag(anim_checkbox, LV_OBJ_FLAG_HIDDEN); + else lv_obj_add_flag(anim_checkbox, LV_OBJ_FLAG_HIDDEN); +} + +static void use_scenecam_checkbox_event_cb(lv_event_t * e) +{ + LV_UNUSED(e); + use_scenecam = (lv_obj_get_state(use_scenecam_checkbox) & LV_STATE_CHECKED); + demo_ui_apply_camera_button_visibility(demo_gltfdata); + demo_ui_reposition_all(); +} + +static void anim_checkbox_event_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim_enabled = (lv_obj_get_state(anim_checkbox) & LV_STATE_CHECKED); + demo_ui_apply_anim_button_visibility(demo_gltfdata); +} + +// default value means no preference, it will use the first available scene camera if defined, otherwise the generated platter camera +void __select_camera_default_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = -2; + demo_ui_reposition_all(); +} +// this explictly selects the platter camera even if a scene camera exists +void __select_camera_0_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = -1; + demo_ui_reposition_all(); +} +// these select scene cameras #1->#16 (base 0 internally) +void __select_camera_1_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 0; + demo_ui_reposition_all(); +} +void __select_camera_2_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 1; + demo_ui_reposition_all(); +} +void __select_camera_3_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 2; + demo_ui_reposition_all(); +} +void __select_camera_4_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 3; + demo_ui_reposition_all(); +} +void __select_camera_5_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 4; + demo_ui_reposition_all(); +} +void __select_camera_6_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 5; + demo_ui_reposition_all(); +} +void __select_camera_7_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 6; + demo_ui_reposition_all(); +} +void __select_camera_8_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 7; + demo_ui_reposition_all(); +} +void __select_camera_9_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 8; + demo_ui_reposition_all(); +} +void __select_camera_10_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 9; + demo_ui_reposition_all(); +} +void __select_camera_11_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 10; + demo_ui_reposition_all(); +} +void __select_camera_12_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 11; + demo_ui_reposition_all(); +} +void __select_camera_13_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 12; + demo_ui_reposition_all(); +} +void __select_camera_14_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 13; + demo_ui_reposition_all(); +} +void __select_camera_15_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 14; + demo_ui_reposition_all(); +} +void __select_camera_16_cb(lv_event_t * e) +{ + LV_UNUSED(e); + camera = 15; + demo_ui_reposition_all(); +} + + +void __select_anim_1_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 0; +} +void __select_anim_2_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 1; +} +void __select_anim_3_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 2; +} +void __select_anim_4_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 3; +} +void __select_anim_5_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 4; +} +void __select_anim_6_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 5; +} +void __select_anim_7_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 6; +} +void __select_anim_8_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 7; +} +void __select_anim_9_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 8; +} +void __select_anim_10_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 9; +} +void __select_anim_11_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 10; +} +void __select_anim_12_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 11; +} +void __select_anim_13_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 12; +} +void __select_anim_14_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 13; +} +void __select_anim_15_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 14; +} +void __select_anim_16_cb(lv_event_t * e) +{ + LV_UNUSED(e); + anim = 15; +} + + +static void ov_swing_slider_event_cb(lv_event_t * e) +{ + const float MIN_SWING = -180.0f * PI_TO_RAD; + const float MAX_SWING = 180.0f * PI_TO_RAD; + lv_obj_t * slider = lv_event_get_target_obj(e); + float normval = ((float)lv_slider_get_value(slider) / 1000.0f); + ov_swing->data1 = (normval * (MAX_SWING - MIN_SWING)) + MIN_SWING; + ov_swing->data2 = 0.f; + ov_swing->data3 = 0.f; +} + +static void ov_boom_slider_event_cb(lv_event_t * e) +{ + const float MAX_BOOM = 100.0f * PI_TO_RAD; + const float MIN_BOOM = -25.0f * PI_TO_RAD; + lv_obj_t * slider = lv_event_get_target_obj(e); + float normval = ((float)lv_slider_get_value(slider) / 1000.0f) ; + ov_boom->data2 = (normval * (MAX_BOOM - MIN_BOOM)) + MIN_BOOM; +} + +static void ov_stick_slider_event_cb(lv_event_t * e) +{ + const float MAX_STICK = 20.0f * PI_TO_RAD; + const float MIN_STICK = 160.0f * PI_TO_RAD; + lv_obj_t * slider = lv_event_get_target_obj(e); + float normval = ((float)lv_slider_get_value(slider) / 1000.0f) ; + ov_stick->data2 = (normval * (MAX_STICK - MIN_STICK)) + MIN_STICK; +} +/* +static void ov_bucket_slider_event_cb(lv_event_t * e){ + const float MIN_BUCKET = -70.0f; + const float MAX_BUCKET = 30.0f; + lv_obj_t * slider = lv_event_get_target_obj(e); + float normval = ((float)lv_slider_get_value(slider) / 1000.0f ) ; + ov_bucket->data2 = ( normval * (MAX_BUCKET - MIN_BUCKET) ) + MIN_BUCKET; +}*/ + +static void ext_draw_size_event_cb(lv_event_t * e) +{ + lv_coord_t * cur_size = (lv_coord_t *)lv_event_get_param(e); + *cur_size = LV_MAX(*cur_size, LV_HOR_RES); +} + +void demo_ui_loading_info_objects(void) +{ + grp_loading = lv_obj_create(lv_screen_active()); + lv_obj_set_size(grp_loading, 320, 60); + + lv_obj_center(grp_loading); + lv_obj_align(grp_loading, LV_ALIGN_CENTER, 0, -15); + lv_obj_set_style_bg_color(grp_loading, lv_color_hex(0x000000), LV_PART_MAIN); + lv_obj_set_style_bg_opa(grp_loading, LV_OPA_80, LV_PART_MAIN); + lv_obj_set_style_radius(grp_loading, 100, LV_PART_MAIN); + lv_obj_set_style_border_width(grp_loading, 0, LV_PART_MAIN); + lv_obj_clear_flag(grp_loading, LV_OBJ_FLAG_CLICKABLE); + lv_obj_add_flag(grp_loading, LV_OBJ_FLAG_OVERFLOW_VISIBLE); + lv_obj_clear_flag(grp_loading, LV_OBJ_FLAG_SCROLLABLE); + lv_obj_add_event_cb(grp_loading, ext_draw_size_event_cb, LV_EVENT_REFR_EXT_DRAW_SIZE, NULL); + + lv_obj_t * loading_bg = lv_obj_create(grp_loading); + lv_obj_set_size(loading_bg, 320, 60); + lv_obj_center(loading_bg); + lv_obj_align(loading_bg, LV_ALIGN_CENTER, -1, -2); + lv_obj_set_style_bg_color(loading_bg, lv_color_hex(0xd0dce6), LV_PART_MAIN); + lv_obj_set_style_bg_opa(loading_bg, LV_OPA_100, LV_PART_MAIN); + lv_obj_set_style_radius(loading_bg, 100, LV_PART_MAIN); + lv_obj_set_style_border_color(loading_bg, lv_color_hex(LVGL_BLUE), LV_PART_MAIN); + lv_obj_set_style_border_width(loading_bg, 2, LV_PART_MAIN); + lv_obj_clear_flag(loading_bg, LV_OBJ_FLAG_CLICKABLE); + lv_obj_set_style_bg_grad_color(loading_bg, lv_color_hex(LVGL_BLUE), LV_PART_MAIN); + lv_obj_set_style_bg_grad_dir(loading_bg, LV_GRAD_DIR_VER, LV_PART_MAIN); + + lv_obj_clear_flag(loading_bg, LV_OBJ_FLAG_SCROLLABLE); + + lv_obj_t * spinner = lv_spinner_create(loading_bg); + lv_spinner_set_anim_params(spinner, 4000.0, 30.0f); + lv_obj_align(spinner, LV_ALIGN_LEFT_MID, -15, 0); + lv_obj_set_size(spinner, 46, 46); + lv_obj_set_style_radius(spinner, 2, LV_PART_ANY); + lv_obj_add_flag(spinner, LV_OBJ_FLAG_HIDDEN); + + progbar1 = lv_bar_create(loading_bg); + lv_obj_set_size(progbar1, 240, 8); + lv_obj_align(progbar1, LV_ALIGN_BOTTOM_RIGHT, -20, 8); + lv_obj_set_style_bg_color(progbar1, lv_color_hex(0xd0dce6), LV_PART_INDICATOR); + lv_obj_set_style_bg_color(progbar1, lv_color_hex(0x000000), LV_PART_MAIN); + + progbar2 = lv_bar_create(loading_bg); + lv_obj_set_size(progbar2, 240, 4); + lv_obj_align(progbar2, LV_ALIGN_BOTTOM_RIGHT, -20, 14); + lv_obj_set_style_bg_color(progbar2, lv_color_hex(0xd0dce6), LV_PART_INDICATOR); + lv_obj_set_style_bg_color(progbar2, lv_color_hex(0x000000), LV_PART_MAIN); + lv_obj_add_flag(progbar2, LV_OBJ_FLAG_HIDDEN); + + progText1 = lv_label_create(loading_bg); + lv_obj_align(progText1, LV_ALIGN_TOP_LEFT, 20, -10); + lv_obj_set_style_text_color(progText1, lv_color_hex(0xFFFFFF), LV_PART_MAIN); + lv_label_set_text(progText1, "Loading..."); + + /* Set the loading info update callbacks */ + lv_gltf_view_ibl_set_loadphase_callback(demo_ui_load_progress_callback); + lv_gltf_view_set_loadphase_callback(demo_ui_load_progress_callback); +} + +#define TBUF_SIZE 32768 +void demo_ui_fill_in_InfoTab(lv_gltf_data_t * _data) +{ + int _cury = 40; + const int LABEL_HEIGHT = 16; + int _ll = 0; + char * _c = calloc(16384 * 16, 1); + strcat(_c, "Filename: "); + strcat(_c, "asdf.asdf"); + strcat(_c, "\n"); + _ll++; + strcat(_c, "Directory: "); + strcat(_c, "folder_path"); + strcat(_c, "\n"); + _ll++; + strcat(_c, "File Size: "); + strcat(_c, "0000kB"); + strcat(_c, "\n"); + _ll++; + strcat(_c, "\n"); + _ll++; + lv_label_set_text(lbl_filename, _c); + lv_obj_align(lbl_filename, LV_ALIGN_TOP_LEFT, 70, _cury); + _cury += (LABEL_HEIGHT * _ll); + + _c[0] = '\0'; + _ll = 0; + strcat(_c, "Vertices (File / Displayed): "); + strcat(_c, "12345"); + strcat(_c, " / "); + strcat(_c, "1234567"); + strcat(_c, "\n"); + _ll++; + strcat(_c, "Triangles (File / Displayed): "); + strcat(_c, "2345"); + strcat(_c, " / "); + strcat(_c, "234567"); + strcat(_c, "\n"); + _ll++; + strcat(_c, "\n"); + _ll++; + lv_label_set_text(lbl_mesh_summary, _c); + lv_obj_align(lbl_mesh_summary, LV_ALIGN_TOP_LEFT, 70, _cury); + _cury += (LABEL_HEIGHT * _ll); + _c[0] = '\0'; + _ll = 0; + + + char * _tbuf; + _tbuf = (char *)malloc(TBUF_SIZE); + + lv_gltf_data_make_scenes_summary(_data, _tbuf, TBUF_SIZE); + strcat(_c, _tbuf); + lv_gltf_data_make_mesh_summary(_data, _tbuf, TBUF_SIZE); + strcat(_c, _tbuf); + lv_gltf_data_make_material_summary(_data, _tbuf, TBUF_SIZE); + strcat(_c, _tbuf); + lv_gltf_data_make_images_summary(_data, _tbuf, TBUF_SIZE); + strcat(_c, _tbuf); + strcat(_c, "Nodes: "); + strcat(_c, "13"); + strcat(_c, "\n"); + _ll++; + //make_animations_summary( _data, _tbuf, TBUF_SIZE ); + //strcat(_c, _tbuf); + //strcat(_c, "\n"); _ll++; + lv_label_set_text(lbl_treesummary, _c); + lv_obj_align(lbl_treesummary, LV_ALIGN_TOP_LEFT, 70, _cury); + _cury += (LABEL_HEIGHT * _ll); + _c[0] = '\0'; + _ll = 0; + + free(_c); + free(_tbuf); +} + +void __make_LoadTab(void) +{ + create_file_open_dialog(tab_pages[TAB_LOAD]); +} +void __make_InfoTab(void) +{ + lv_obj_t * background = tab_pages[TAB_INFO]; + infotab_white_bg = lv_obj_create(background); + lv_obj_remove_style_all(infotab_white_bg); + lv_obj_set_size(infotab_white_bg, ui_get_window_width() - 60, ui_get_window_height()); + lv_obj_set_style_bg_color(infotab_white_bg, lv_color_hex(0xFFFFFF), LV_PART_MAIN); + lv_obj_set_style_bg_opa(infotab_white_bg, LV_OPA_100, LV_PART_MAIN); + lv_obj_align(infotab_white_bg, LV_ALIGN_TOP_RIGHT, 0, 0); + + infotab_inner_background = lv_obj_create(background); + lv_obj_set_size(infotab_inner_background, ui_get_window_width() - 74, ui_get_window_height() - 44); + lv_obj_align(infotab_inner_background, LV_ALIGN_TOP_LEFT, 60, 30); + lv_obj_set_style_bg_color(infotab_inner_background, lv_color_hex(0xf0faff), LV_PART_MAIN); + //lv_obj_set_style_bg_color(inner_background, lv_color_hex(0x303a3f), LV_PART_MAIN); + lv_obj_set_style_border_color(infotab_inner_background, lv_color_hex(LVGL_BLUE), LV_PART_MAIN); + lv_obj_set_style_border_width(infotab_inner_background, 1, LV_PART_MAIN); + //lv_obj_clear_flag(inner_background, LV_OBJ_FLAG_CLICKABLE ); + //lv_obj_clear_flag(inner_background, LV_OBJ_FLAG_CLICKABLE ); + lv_obj_set_style_bg_grad_color(infotab_inner_background, lv_color_hex(0xd0dce6), LV_PART_MAIN); + lv_obj_set_style_bg_grad_dir(infotab_inner_background, LV_GRAD_DIR_VER, LV_PART_MAIN); + + //lv_obj_t * spinImg = __make_sprite(5, background); + //lv_obj_align(spinImg, LV_ALIGN_BOTTOM_RIGHT, -15, -15); + lbl_filename = lv_label_create(infotab_inner_background); + lbl_mesh_summary = lv_label_create(infotab_inner_background); + lbl_treesummary = lv_label_create(infotab_inner_background); + + //__fill_in_InfoTab() +} + +void __make_ViewTab(void) +{ + lv_obj_t * background = tab_pages[TAB_VIEW]; + viewtab_white_bg = lv_obj_create(background); + lv_obj_remove_style_all(viewtab_white_bg); + lv_obj_set_size(viewtab_white_bg, ui_get_window_width() - 60, ui_get_window_height()); + lv_obj_set_style_bg_color(viewtab_white_bg, lv_color_hex(0xFFFFFF), LV_PART_MAIN); + lv_obj_set_style_bg_opa(viewtab_white_bg, LV_OPA_100, LV_PART_MAIN); + lv_obj_align(viewtab_white_bg, LV_ALIGN_TOP_RIGHT, 0, 0); + + viewtab_inner_background = lv_obj_create(background); + lv_obj_set_size(viewtab_inner_background, ui_get_window_width() - 114, ui_get_window_height() - 84); + lv_obj_align(viewtab_inner_background, LV_ALIGN_TOP_LEFT, 60, 30); + lv_obj_set_style_bg_color(viewtab_inner_background, lv_color_hex(0x303a3f), LV_PART_MAIN); + //lv_obj_set_style_bg_color(inner_background, lv_color_hex(0xf0faff), LV_PART_MAIN); + lv_obj_set_style_border_color(viewtab_inner_background, lv_color_hex(LVGL_BLUE), LV_PART_MAIN); + lv_obj_set_style_border_width(viewtab_inner_background, 1, LV_PART_MAIN); + lv_obj_clear_flag(viewtab_inner_background, LV_OBJ_FLAG_CLICKABLE); + lv_obj_set_style_bg_grad_color(viewtab_inner_background, lv_color_hex(0xd0dce6), LV_PART_MAIN); + lv_obj_set_style_bg_grad_dir(viewtab_inner_background, LV_GRAD_DIR_VER, LV_PART_MAIN); + + //lv_obj_t * spinImg = __make_sprite(5, background); + //lv_obj_align(spinImg, LV_ALIGN_BOTTOM_RIGHT, -15, -15); + + + +} + +void __make_WindowBevelsAndIcon(void) +{ + { + lv_obj_t * tbev = lv_obj_create(lv_screen_active()); + lv_obj_remove_style_all(tbev); + lv_obj_set_size(tbev, ui_get_window_width(), 2); + lv_obj_set_style_bg_color(tbev, lv_color_hex(0x595f66), LV_PART_MAIN); + lv_obj_set_style_bg_opa(tbev, LV_OPA_80, LV_PART_MAIN); + lv_obj_align(tbev, LV_ALIGN_TOP_MID, 0, 0); + lv_obj_clear_flag(tbev, LV_OBJ_FLAG_CLICKABLE); + window_bevel_1 = tbev; + } + { + lv_obj_t * tbev = lv_obj_create(lv_screen_active()); + lv_obj_remove_style_all(tbev); + lv_obj_set_size(tbev, ui_get_window_width(), 1); + lv_obj_set_style_bg_color(tbev, lv_color_hex(0x595f66), LV_PART_MAIN); + lv_obj_set_style_bg_opa(tbev, LV_OPA_50, LV_PART_MAIN); + lv_obj_align(tbev, LV_ALIGN_BOTTOM_MID, 0, -1); + lv_obj_clear_flag(tbev, LV_OBJ_FLAG_CLICKABLE); + window_bevel_2 = tbev; + } + { + lv_obj_t * tbev = lv_obj_create(lv_screen_active()); + lv_obj_remove_style_all(tbev); + lv_obj_set_size(tbev, ui_get_window_width(), 1); + lv_obj_set_style_bg_color(tbev, lv_color_hex(0x000000), LV_PART_MAIN); + lv_obj_set_style_bg_opa(tbev, LV_OPA_80, LV_PART_MAIN); + lv_obj_align(tbev, LV_ALIGN_BOTTOM_MID, 0, 0); + lv_obj_clear_flag(tbev, LV_OBJ_FLAG_CLICKABLE); + window_bevel_3 = tbev; + } + { + lv_obj_t * tbev = lv_obj_create(lv_screen_active()); + lv_obj_remove_style_all(tbev); + lv_obj_set_size(tbev, 1, ui_get_window_height()); + lv_obj_set_style_bg_color(tbev, lv_color_hex(0x595f66), LV_PART_MAIN); + lv_obj_set_style_bg_opa(tbev, LV_OPA_50, LV_PART_MAIN); + lv_obj_align(tbev, LV_ALIGN_BOTTOM_RIGHT, 0, 0); + lv_obj_clear_flag(tbev, LV_OBJ_FLAG_CLICKABLE); + window_bevel_4 = tbev; + } + lv_obj_t * img1 = lv_image_create(lv_screen_active()); + lv_image_set_src(img1, &lvgl_icon_40px); + lv_obj_align(img1, LV_ALIGN_TOP_LEFT, 10, 9); +} + +lv_obj_t * __add_blanktab_px(lv_obj_t * _tabview, unsigned int _px_length) +{ + lv_obj_t * _tabs = lv_tabview_get_tab_bar(_tabview); + lv_obj_t * _blankTabContents = lv_tabview_add_tab(_tabview, ""); + LV_UNUSED(_blankTabContents); + uint32_t _count = lv_obj_get_child_count_by_type(_tabs, &lv_button_class); + + uint32_t i = 0; + lv_obj_t * button = lv_obj_get_child_by_type(_tabs, i, &lv_button_class); + while(button) { + if(i == _count - 1) { + lv_obj_t * _newTab = button; + lv_obj_clear_flag(_newTab, LV_OBJ_FLAG_CLICKABLE); + lv_obj_set_flex_grow(_newTab, 0); + lv_obj_set_style_bg_opa(_newTab, LV_OPA_0, LV_PART_ANY); + lv_obj_set_size(button, lv_pct(100), lv_dpx(_px_length)); + return button; + } + i++; + button = lv_obj_get_child_by_type(_tabs, (int32_t)i, &lv_button_class); + } + return NULL; +} + +void __customize_last_tab(lv_obj_t * _tabview, lv_obj_t * _tabContents) +{ + if(_tabContents != NULL) { + lv_obj_set_style_bg_color(_tabContents, lv_color_hex(0xFFFFFF), LV_PART_MAIN); + } + lv_obj_t * _tabs = lv_tabview_get_tab_bar(_tabview); + uint32_t _count = lv_obj_get_child_count_by_type(_tabs, &lv_button_class); + uint32_t i = 0; + lv_obj_t * button = lv_obj_get_child_by_type(_tabs, i, &lv_button_class); + while(button) { + if(i == _count - 1) { + lv_obj_t * _label = lv_obj_get_child_by_type(button, 0, &lv_label_class); + lv_obj_align(_label, LV_ALIGN_BOTTOM_MID, 0, -10); + lv_obj_t * _img = __make_sprite(i - 1, _label); + lv_obj_align(_img, LV_ALIGN_TOP_MID, 0, 21); + lv_obj_add_event_cb(button, tab_clicked_event_cb, LV_EVENT_CLICKED, NULL); + } + i++; + button = lv_obj_get_child_by_type(_tabs, (int32_t)i, &lv_button_class); + } + +} + +void __make_main_tabview(void) +{ + tabview = lv_tabview_create(lv_screen_active()); + lv_tabview_set_tab_bar_position(tabview, LV_DIR_LEFT); + lv_tabview_set_tab_bar_size(tabview, 60); + __add_blanktab_px(tabview, 80); //, -1, -1); + viewTab = lv_tabview_add_tab(tabview, "View"); + __customize_last_tab(tabview, viewTab); + loadTab = lv_tabview_add_tab(tabview, "Load"); + __customize_last_tab(tabview, loadTab); + infoTab = lv_tabview_add_tab(tabview, "Info"); + __customize_last_tab(tabview, infoTab); + bottomBlankTab = __add_blanktab_px(tabview, 360);//, -1, -1); + + lv_tabview_set_active(tabview, 1, LV_ANIM_OFF); + for(int i = 0; i < MAX_TABS; i++) { + tab_pages[i] = lv_obj_create(lv_screen_active()); + lv_obj_add_flag(tab_pages[i], LV_OBJ_FLAG_HIDDEN); + lv_obj_clear_flag(tab_pages[i], LV_OBJ_FLAG_CLICKABLE); + lv_obj_clear_flag(tab_pages[i], LV_OBJ_FLAG_SCROLLABLE); + lv_obj_remove_style_all(tab_pages[i]); + lv_obj_set_size(tab_pages[i], ui_get_window_width(), ui_get_window_height()); + lv_obj_center(tab_pages[i]); + + } +} + +void demo_ui_pitch_yaw_distance_sliders(lv_obj_t * _cont) +{ + if(!__styles_ready) { + __make_styles(); + } + + + { + // Yaw (bottom) + lv_obj_t * slider = lv_slider_create(_cont); + lv_obj_set_size(slider, ui_get_window_width() - 140, 24); + lv_obj_align(slider, LV_ALIGN_BOTTOM_MID, 0, -16); + lv_obj_add_event_cb(slider, yaw_slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_flag(slider, LV_OBJ_FLAG_ADV_HITTEST); + lv_obj_set_style_anim(slider, LV_ANIM_OFF, LV_PART_ANY); + lv_obj_set_style_anim_duration(slider, 0, 0); + //lv_obj_set_style_anim_duration(slider, 2000, 0); + lv_obj_set_style_bg_opa(slider, LV_OPA_40, LV_PART_INDICATOR); + lv_slider_set_range(slider, -500, 500); + lv_slider_set_mode(slider, LV_SLIDER_MODE_SYMMETRICAL); + lv_slider_set_value(slider, 0.f, 0); + lv_obj_add_style(slider, &style_knob, LV_PART_KNOB); + lv_obj_add_style(slider, &style_bg_horiz, LV_PART_MAIN); + yaw_slider = slider; + } + { + // Pitch (lower right) + lv_obj_t * slider = lv_slider_create(_cont); + lv_obj_set_size(slider, 24, ((ui_get_window_height() - 90) / 2)); + lv_obj_align(slider, LV_ALIGN_BOTTOM_RIGHT, -15, -70); + lv_obj_add_event_cb(slider, pitch_slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_flag(slider, LV_OBJ_FLAG_ADV_HITTEST); + lv_obj_set_style_anim(slider, LV_ANIM_OFF, LV_PART_ANY); + lv_obj_set_style_anim_duration(slider, 0, 0); + lv_obj_set_style_bg_opa(slider, LV_OPA_40, LV_PART_INDICATOR); + lv_slider_set_range(slider, -50, 50); + lv_slider_set_mode(slider, LV_SLIDER_MODE_SYMMETRICAL); + lv_slider_set_value(slider, 0.f, 0); + lv_obj_add_style(slider, &style_knob, LV_PART_KNOB); + lv_obj_add_style(slider, &style_bg_vert, LV_PART_MAIN); + pitch_slider = slider; + } + { + // Distance (upper right) + lv_obj_t * slider = lv_slider_create(_cont); + lv_obj_set_size(slider, 24, ((ui_get_window_height() - 90) / 2) - 20); + lv_obj_align(slider, LV_ALIGN_TOP_RIGHT, -15, 30); + lv_obj_add_event_cb(slider, distance_slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_flag(slider, LV_OBJ_FLAG_ADV_HITTEST); + lv_obj_set_style_anim(slider, LV_ANIM_OFF, LV_PART_ANY); + lv_obj_set_style_anim_duration(slider, 0, 0); + lv_obj_set_style_bg_opa(slider, LV_OPA_40, LV_PART_INDICATOR); + lv_obj_set_style_width(slider, 10, LV_PART_INDICATOR); + lv_slider_set_value(slider, 50.f, 0); + lv_obj_add_style(slider, &style_knob, LV_PART_KNOB); + lv_obj_add_style(slider, &style_bg_vert, LV_PART_MAIN); + distance_slider = slider; + } + { + // Spin enable/disable (upper right) + spin_checkbox = lv_checkbox_create(_cont); + lv_obj_set_size(spin_checkbox, 65, 40); + lv_obj_align(spin_checkbox, LV_ALIGN_TOP_RIGHT, -62, 5); + lv_obj_add_event_cb(spin_checkbox, spin_checkbox_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + //lv_obj_set_style_anim(spin_checkbox, LV_ANIM_OFF, LV_PART_ANY); + lv_obj_set_style_anim(spin_checkbox, false, LV_PART_ANY); + lv_obj_set_style_anim_duration(spin_checkbox, 0, 0); + lv_obj_add_state(spin_checkbox, LV_STATE_CHECKED); + lv_checkbox_set_text(spin_checkbox, "Spin"); + lv_obj_set_style_text_opa(spin_checkbox, LV_OPA_50, LV_PART_MAIN); + lv_obj_set_style_text_color(spin_checkbox, lv_color_hex(LVGL_BLUE), LV_PART_MAIN); + } + { + // Spin rate (upper right) + spin_slider = lv_slider_create(_cont); + lv_obj_set_size(spin_slider, 200, 10); + lv_obj_align(spin_slider, LV_ALIGN_TOP_RIGHT, -140, 10); + lv_obj_add_event_cb(spin_slider, spin_slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_flag(spin_slider, LV_OBJ_FLAG_ADV_HITTEST); + lv_obj_set_style_anim(spin_slider, LV_ANIM_OFF, LV_PART_ANY); + lv_obj_set_style_anim_duration(spin_slider, 0, 0); + lv_obj_set_style_bg_opa(spin_slider, LV_OPA_40, LV_PART_INDICATOR); + lv_obj_set_style_border_width(spin_slider, 1, LV_PART_MAIN); + lv_obj_set_style_border_color(spin_slider, lv_color_hex(0x9ca2a7), LV_PART_MAIN); + lv_obj_set_style_border_opa(spin_slider, LV_OPA_40, LV_PART_MAIN); + lv_slider_set_range(spin_slider, -50, 50); + lv_slider_set_value(spin_slider, 25.f, 0); + lv_slider_set_mode(spin_slider, LV_SLIDER_MODE_SYMMETRICAL); + lv_obj_add_style(spin_slider, &style_bg_horiz, LV_PART_MAIN); + } + /*{ + // Elevation nudge (lower left) + lv_obj_t * elev_slider = lv_slider_create(_cont); + lv_obj_set_size(elev_slider, 10, 200); + lv_obj_align(elev_slider, LV_ALIGN_BOTTOM_LEFT, -3, -70); + lv_obj_add_event_cb(elev_slider, elev_slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_flag(elev_slider, LV_OBJ_FLAG_ADV_HITTEST ); + lv_obj_set_style_anim_duration(elev_slider, 2000, 0); + lv_obj_set_style_border_width(elev_slider, 1, LV_PART_MAIN ); + lv_obj_set_style_border_opa(elev_slider, LV_OPA_40, LV_PART_MAIN ); + lv_slider_set_range(elev_slider, -50, 50); + lv_slider_set_value(elev_slider, 0.f, 0); + lv_slider_set_mode(elev_slider, LV_SLIDER_MODE_SYMMETRICAL); + lv_obj_add_style(elev_slider, &style_bg_vert, LV_PART_MAIN); + }*/ +} + +void demo_ui_camera_select(lv_obj_t * _cont) +{ + if(!__styles_ready) { + __make_styles(); + } + + { + // Scene camera enable/disable (upper left) + use_scenecam_checkbox = lv_checkbox_create(_cont); + lv_obj_set_size(use_scenecam_checkbox, 85, 40); + lv_obj_align(use_scenecam_checkbox, LV_ALIGN_TOP_LEFT, 62, 36); + lv_obj_add_event_cb(use_scenecam_checkbox, use_scenecam_checkbox_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_set_style_anim(use_scenecam_checkbox, 0, LV_ANIM_OFF); + lv_obj_set_style_anim_duration(use_scenecam_checkbox, 0, 0); + lv_obj_add_state(use_scenecam_checkbox, LV_STATE_CHECKED); + lv_checkbox_set_text(use_scenecam_checkbox, "Camera"); + lv_obj_set_style_text_opa(use_scenecam_checkbox, LV_OPA_50, LV_PART_MAIN); + lv_obj_set_style_text_color(use_scenecam_checkbox, lv_color_hex(LVGL_BLUE), LV_PART_MAIN); + lv_obj_add_flag(use_scenecam_checkbox, LV_OBJ_FLAG_HIDDEN); + } + + unsigned int _rx = 150; + unsigned int _xspacing = 34; + char buffer[255]; + for(int i = 0; i < MAX_CAM_BUTTONS; i++) { + // Camera X Selector + lv_obj_t * button = lv_button_create(_cont); + lv_obj_set_size(button, 24, 24); + lv_obj_align(button, LV_ALIGN_TOP_LEFT, _rx, 36); + lv_obj_set_style_anim(button, 0, LV_ANIM_OFF); + lv_obj_set_style_anim_duration(button, 0, 0); + lv_obj_t * label = lv_label_create(button); + sprintf(buffer, "%d", i + 1); + lv_label_set_text(label, buffer); + lv_obj_center(label); + lv_obj_add_style(button, &style_bg_horiz, LV_PART_MAIN); + lv_obj_add_flag(button, LV_OBJ_FLAG_HIDDEN); + cam_buttons[i] = button; + _rx += _xspacing; + } + lv_obj_add_event_cb(cam_buttons[0], __select_camera_1_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[1], __select_camera_2_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[2], __select_camera_3_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[3], __select_camera_4_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[4], __select_camera_5_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[5], __select_camera_6_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[6], __select_camera_7_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[7], __select_camera_8_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[8], __select_camera_9_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[9], __select_camera_10_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[10], __select_camera_11_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[11], __select_camera_12_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[12], __select_camera_13_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[13], __select_camera_14_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[14], __select_camera_15_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(cam_buttons[15], __select_camera_16_cb, LV_EVENT_CLICKED, NULL); +} + +void demo_ui_add_override_controls(lv_obj_t * _cont) +{ + if(!__styles_ready) { + __make_styles(); + } + { + // Boom (lower left) + lv_obj_t * slider = lv_slider_create(_cont); + lv_obj_set_size(slider, 24, ((ui_get_window_height() - 90) / 2)); + lv_obj_align(slider, LV_ALIGN_BOTTOM_LEFT, 75, -70); + lv_obj_add_event_cb(slider, ov_boom_slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_flag(slider, LV_OBJ_FLAG_ADV_HITTEST); + lv_obj_set_style_anim(slider, 0, LV_ANIM_OFF); + lv_obj_set_style_anim_duration(slider, 0, 0); + lv_obj_set_style_bg_opa(slider, LV_OPA_40, LV_PART_INDICATOR); + lv_slider_set_range(slider, 0, 1000); + lv_slider_set_mode(slider, LV_SLIDER_MODE_SYMMETRICAL); + lv_slider_set_value(slider, 0.f, 0); + lv_obj_add_style(slider, &style_knob, LV_PART_KNOB); + lv_obj_add_style(slider, &style_bg_vert, LV_PART_MAIN); + } + { + // Stick (lower left + 1) + lv_obj_t * slider = lv_slider_create(_cont); + lv_obj_set_size(slider, 24, ((ui_get_window_height() - 90) / 2)); + lv_obj_align(slider, LV_ALIGN_BOTTOM_LEFT, 105, -70); + lv_obj_add_event_cb(slider, ov_stick_slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_flag(slider, LV_OBJ_FLAG_ADV_HITTEST); + lv_obj_set_style_anim(slider, 0, LV_ANIM_OFF); + lv_obj_set_style_anim_duration(slider, 0, 0); + lv_obj_set_style_bg_opa(slider, LV_OPA_40, LV_PART_INDICATOR); + lv_slider_set_range(slider, 0, 1000); + lv_slider_set_mode(slider, LV_SLIDER_MODE_SYMMETRICAL); + lv_slider_set_value(slider, 0.f, 0); + lv_obj_add_style(slider, &style_knob, LV_PART_KNOB); + lv_obj_add_style(slider, &style_bg_vert, LV_PART_MAIN); + } + { + // Swing (bottom) + lv_obj_t * slider = lv_slider_create(_cont); + lv_obj_set_size(slider, ui_get_window_width() - 280, 24); + lv_obj_align(slider, LV_ALIGN_BOTTOM_MID, 20, -76); + lv_obj_add_event_cb(slider, ov_swing_slider_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_add_flag(slider, LV_OBJ_FLAG_ADV_HITTEST); + lv_obj_set_style_anim(slider, 0, LV_ANIM_OFF); + lv_obj_set_style_anim_duration(slider, 0, 0); + lv_obj_set_style_bg_opa(slider, LV_OPA_40, LV_PART_INDICATOR); + lv_slider_set_range(slider, 0, 1000); + lv_slider_set_mode(slider, LV_SLIDER_MODE_SYMMETRICAL); + lv_slider_set_value(slider, 0.f, 0); + lv_obj_add_style(slider, &style_knob, LV_PART_KNOB); + lv_obj_add_style(slider, &style_bg_horiz, LV_PART_MAIN); + } +} + +void demo_ui_animation_select(lv_obj_t * _cont) +{ + if(!__styles_ready) { + __make_styles(); + } + + { + // Scene camera enable/disable (upper left) + anim_checkbox = lv_checkbox_create(_cont); + lv_obj_set_size(anim_checkbox, 85, 40); + lv_obj_align(anim_checkbox, LV_ALIGN_BOTTOM_LEFT, 62, -45); + lv_obj_add_event_cb(anim_checkbox, anim_checkbox_event_cb, LV_EVENT_VALUE_CHANGED, NULL); + lv_obj_set_style_anim(anim_checkbox, 0, LV_ANIM_OFF); + lv_obj_set_style_anim_duration(anim_checkbox, 0, 0); + lv_obj_add_state(anim_checkbox, LV_STATE_CHECKED); + lv_checkbox_set_text(anim_checkbox, "Anim"); + lv_obj_set_style_text_opa(anim_checkbox, LV_OPA_50, LV_PART_MAIN); + lv_obj_set_style_text_color(anim_checkbox, lv_color_hex(LVGL_BLUE), LV_PART_MAIN); + lv_obj_add_flag(anim_checkbox, LV_OBJ_FLAG_HIDDEN); + } + + unsigned int _rx = 150; + unsigned int _xspacing = 34; + char buffer[255]; + for(int i = 0; i < MAX_ANIM_BUTTONS; i++) { + // Animation X Selector + lv_obj_t * button = lv_button_create(_cont); + lv_obj_set_size(button, 24, 24); + lv_obj_align(button, LV_ALIGN_BOTTOM_LEFT, _rx, -65); + lv_obj_set_style_anim(button, 0, LV_ANIM_OFF); + lv_obj_set_style_anim_duration(button, 0, 0); + lv_obj_t * label = lv_label_create(button); + sprintf(buffer, "%d", i + 1); + lv_label_set_text(label, buffer); + lv_obj_center(label); + lv_obj_add_style(button, &style_bg_horiz, LV_PART_MAIN); + lv_obj_add_flag(button, LV_OBJ_FLAG_HIDDEN); + anim_buttons[i] = button; + _rx += _xspacing; + } + lv_obj_add_event_cb(anim_buttons[0], __select_anim_1_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[1], __select_anim_2_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[2], __select_anim_3_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[3], __select_anim_4_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[4], __select_anim_5_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[5], __select_anim_6_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[6], __select_anim_7_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[7], __select_anim_8_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[8], __select_anim_9_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[9], __select_anim_10_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[10], __select_anim_11_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[11], __select_anim_12_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[12], __select_anim_13_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[13], __select_anim_14_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[14], __select_anim_15_cb, LV_EVENT_CLICKED, NULL); + lv_obj_add_event_cb(anim_buttons[15], __select_anim_16_cb, LV_EVENT_CLICKED, NULL); + //animselection_changed=true; +} + + + +void demo_ui_load_progress_callback(const char * phase_title, const char * sub_phase_title, float phase_progress, + float phase_progress_max, float sub_phase_progress, float sub_phase_progress_max) +{ + LV_UNUSED(sub_phase_title); + LV_UNUSED(sub_phase_progress); + LV_UNUSED(sub_phase_progress_max); + + lv_label_set_text(progText1, phase_title); + lv_obj_add_flag(progbar2, LV_OBJ_FLAG_HIDDEN); + if(phase_progress_max != 0.f) { + lv_obj_clear_flag(progbar1, LV_OBJ_FLAG_HIDDEN); + lv_bar_set_value(progbar1, (int)((phase_progress / phase_progress_max) * 100.0f), LV_ANIM_OFF); + } + else { + lv_obj_add_flag(progbar1, LV_OBJ_FLAG_HIDDEN); + } + lv_timer_handler(); + lv_obj_invalidate(grp_loading); + lv_refr_now(NULL); + usleep(1000); +} + +void demo_ui_make_overlayer(void) +{ + /* Create the loading info ui objects */ + demo_ui_loading_info_objects(); + demo_ui_pitch_yaw_distance_sliders(tab_pages[TAB_VIEW]); + demo_ui_camera_select(tab_pages[TAB_VIEW]); + demo_ui_animation_select(tab_pages[TAB_VIEW]); +} + +void demo_ui_make_underlayer(void) +{ + __make_main_tabview(); + demo_ui_set_tab(TAB_VIEW); + __make_ViewTab(); + __make_LoadTab(); + __make_InfoTab(); + __make_WindowBevelsAndIcon(); + + titleText = lv_label_create(tab_pages[TAB_VIEW]); + lv_obj_align(titleText, LV_ALIGN_TOP_LEFT, 70, 10); + lv_obj_set_style_text_opa(titleText, LV_OPA_80, LV_PART_MAIN); + lv_obj_set_style_text_color(titleText, lv_color_hex(LVGL_BLUE), LV_PART_MAIN); + lv_label_set_text(titleText, ""); +} + +void demo_ui_reposition_all(void) +{ + reapply_layout_flag = false; + + lv_obj_set_size(tabview, ui_get_window_width(), ui_get_window_height()); + lv_obj_align(tabview, LV_ALIGN_TOP_LEFT, 0, 0); + + for(int i = 0; i < MAX_TABS; i++) { + lv_obj_set_size(tab_pages[i], ui_get_window_width(), ui_get_window_height()); + lv_obj_align(tab_pages[i], LV_ALIGN_TOP_LEFT, 0, 0); + } + lv_obj_set_size(infotab_white_bg, ui_get_window_width() - 60, ui_get_window_height()); + lv_obj_set_size(infotab_inner_background, ui_get_window_width() - 74, ui_get_window_height() - 44); + lv_obj_set_size(viewtab_white_bg, ui_get_window_width() - 60, ui_get_window_height()); + lv_obj_set_size(viewtab_inner_background, ui_get_window_width() - 114, ui_get_window_height() - 84); + + if(use_scenecam && (camera > -1)) { + lv_obj_add_flag(yaw_slider, LV_OBJ_FLAG_HIDDEN); + lv_obj_add_flag(pitch_slider, LV_OBJ_FLAG_HIDDEN); + lv_obj_add_flag(distance_slider, LV_OBJ_FLAG_HIDDEN); + } + else { + lv_obj_remove_flag(yaw_slider, LV_OBJ_FLAG_HIDDEN); + lv_obj_remove_flag(pitch_slider, LV_OBJ_FLAG_HIDDEN); + lv_obj_remove_flag(distance_slider, LV_OBJ_FLAG_HIDDEN); + lv_obj_set_size(yaw_slider, ui_get_window_width() - 140, 24); + lv_obj_set_size(pitch_slider, 24, ((ui_get_window_height() - 90) / 2)); + lv_obj_set_size(distance_slider, 24, ((ui_get_window_height() - 90) / 2) - 20); + } + lv_obj_set_size(gltfview_3dtex, ui_get_primary_texture_width(), ui_get_primary_texture_height()); + lv_obj_align(use_scenecam_checkbox, LV_ALIGN_TOP_LEFT, 62, 36); + lv_obj_align(anim_checkbox, LV_ALIGN_BOTTOM_LEFT, 62, -45); + + unsigned int _rx = 150; + unsigned int _xspacing = 34; + for(unsigned int i = 0; i < MAX_CAM_BUTTONS; i++) { + lv_obj_align(cam_buttons[i], LV_ALIGN_TOP_LEFT, _rx, 36); + _rx += _xspacing; + } + + _rx = 150; + for(unsigned int i = 0; i < MAX_ANIM_BUTTONS; i++) { + lv_obj_align(anim_buttons[i], LV_ALIGN_BOTTOM_LEFT, _rx, -65); + _rx += _xspacing; + } + + // Update little window trim elements + lv_obj_set_size(window_bevel_1, ui_get_window_width(), 2); + lv_obj_set_size(window_bevel_2, ui_get_window_width(), 1); + lv_obj_set_size(window_bevel_3, ui_get_window_width(), 1); + lv_obj_set_size(window_bevel_4, 1, ui_get_window_height()); + + lv_obj_set_size(bottomBlankTab, 60, ui_get_window_height() - 300); + ui_resize_all_file_open_dialog_widgets(tab_pages[TAB_LOAD]); +} diff --git a/src/lvgl_icon_40px_ARGB888.c b/src/lvgl_icon_40px_ARGB888.c new file mode 100644 index 0000000..5a2fe6d --- /dev/null +++ b/src/lvgl_icon_40px_ARGB888.c @@ -0,0 +1,74 @@ +#ifdef __has_include + #if __has_include("lvgl.h") + #ifndef LV_LVGL_H_INCLUDE_SIMPLE + #define LV_LVGL_H_INCLUDE_SIMPLE + #endif + #endif +#endif + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) + #include "lvgl.h" +#else + #include "lvgl/lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN + #define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_IMAGE_LVGL_ICON_40PX + #define LV_ATTRIBUTE_IMAGE_LVGL_ICON_40PX +#endif + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMAGE_LVGL_ICON_40PX uint8_t lvgl_icon_40px_map[] = { + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0xe2, 0xe1, 0xe0, 0xff, 0xbc, 0xbc, 0xbb, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xaf, 0xad, 0xad, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xaf, 0xac, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xae, 0xad, 0xac, 0xff, 0xb4, 0xb4, 0xb3, 0xff, 0xd5, 0xd5, 0xd4, 0xff, 0xf5, 0xf5, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xee, 0xee, 0xee, 0xff, 0x8f, 0x8e, 0x8c, 0xff, 0x4b, 0x4b, 0x47, 0xff, 0x34, 0x32, 0x2e, 0xff, 0x31, 0x30, 0x2d, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2d, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x31, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x32, 0x31, 0x2c, 0xff, 0x40, 0x3f, 0x3b, 0xff, 0x6f, 0x6e, 0x6a, 0xff, 0xd6, 0xd7, 0xd6, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0xfb, 0xfb, 0xff, 0x8f, 0x8f, 0x8d, 0xff, 0x39, 0x38, 0x34, 0xff, 0x37, 0x36, 0x32, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x36, 0x35, 0x31, 0xff, 0x33, 0x32, 0x2e, 0xff, 0x36, 0x34, 0x31, 0xff, 0x38, 0x37, 0x33, 0xff, 0x35, 0x34, 0x30, 0xff, 0x5d, 0x5c, 0x59, 0xff, 0xe2, 0xe2, 0xe1, 0xff, + 0xe2, 0xe2, 0xe2, 0xff, 0x4b, 0x4b, 0x47, 0xff, 0x37, 0x36, 0x32, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x39, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x37, 0x35, 0x31, 0xff, 0x60, 0x5f, 0x5c, 0xff, 0x7c, 0x7d, 0x7a, 0xff, 0x5d, 0x5c, 0x59, 0xff, 0x3a, 0x39, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x3d, 0x3c, 0x38, 0xff, 0xa7, 0xa7, 0xa5, 0xff, + 0xbc, 0xbc, 0xbb, 0xff, 0x34, 0x32, 0x2e, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x37, 0x36, 0x32, 0xff, 0x7d, 0x7c, 0x7a, 0xff, 0xf4, 0xf3, 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xef, 0xef, 0xff, 0x71, 0x70, 0x6d, 0xff, 0x3a, 0x39, 0x35, 0xff, 0x38, 0x37, 0x33, 0xff, 0x7f, 0x7f, 0x7c, 0xff, + 0xae, 0xae, 0xac, 0xff, 0x31, 0x30, 0x2d, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x42, 0x41, 0x3c, 0xff, 0xc3, 0xc2, 0xc0, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xad, 0xac, 0xaa, 0xff, 0x3c, 0x3b, 0x37, 0xff, 0x37, 0x36, 0x32, 0xff, 0x75, 0x74, 0x71, 0xff, + 0xaf, 0xaf, 0xac, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x3f, 0x3e, 0x3a, 0xff, 0xb4, 0xb4, 0xb2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xa2, 0xa1, 0xff, 0x3c, 0x3a, 0x36, 0xff, 0x38, 0x36, 0x33, 0xff, 0x75, 0x75, 0x72, 0xff, + 0xaf, 0xae, 0xac, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x37, 0x35, 0x31, 0xff, 0x61, 0x60, 0x5d, 0xff, 0xd4, 0xd3, 0xd3, 0xff, 0xf9, 0xf9, 0xf9, 0xff, 0xd1, 0xd1, 0xd1, 0xff, 0x57, 0x57, 0x53, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xaf, 0xae, 0xac, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x34, 0x33, 0x2f, 0xff, 0x46, 0x45, 0x41, 0xff, 0x59, 0x58, 0x54, 0xff, 0x43, 0x42, 0x3e, 0xff, 0x36, 0x35, 0x31, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x73, 0xff, + 0xaf, 0xae, 0xac, 0xff, 0x31, 0x30, 0x2c, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x37, 0x36, 0x32, 0xff, 0x36, 0x35, 0x31, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xae, 0xac, 0xab, 0xff, 0x31, 0x31, 0x2c, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xc0, 0xc0, 0xbf, 0xff, 0x37, 0x36, 0x32, 0xff, 0x39, 0x38, 0x34, 0xff, 0x3a, 0x38, 0x35, 0xff, 0x3a, 0x39, 0x35, 0xff, 0x3a, 0x39, 0x35, 0xff, 0x3a, 0x39, 0x34, 0xff, 0x3a, 0x39, 0x35, 0xff, 0x3a, 0x39, 0x35, 0xff, 0x3a, 0x39, 0x35, 0xff, 0x3a, 0x38, 0x35, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xf8, 0xf8, 0xf8, 0xff, 0xa3, 0xa3, 0xa0, 0xff, 0x85, 0x83, 0x80, 0xff, 0x85, 0x84, 0x81, 0xff, 0x85, 0x84, 0x81, 0xff, 0x85, 0x84, 0x81, 0xff, 0x85, 0x84, 0x81, 0xff, 0x85, 0x84, 0x81, 0xff, 0x85, 0x84, 0x81, 0xff, 0x85, 0x84, 0x81, 0xff, 0x86, 0x84, 0x81, 0xff, 0x7c, 0x7b, 0x78, 0xff, 0x54, 0x53, 0x50, 0xff, 0x3c, 0x3b, 0x36, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x73, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfe, 0xff, 0xff, 0xf1, 0xf5, 0xfe, 0xff, 0xf1, 0xf5, 0xfe, 0xff, 0xf1, 0xf5, 0xfe, 0xff, 0xf1, 0xf5, 0xfe, 0xff, 0xf1, 0xf5, 0xfe, 0xff, 0xf1, 0xf5, 0xfe, 0xff, 0xf1, 0xf5, 0xfe, 0xff, 0xf1, 0xf5, 0xfe, 0xff, 0xf1, 0xf5, 0xff, 0xff, 0xf2, 0xf5, 0xfb, 0xff, 0xdf, 0xdd, 0xd9, 0xff, 0x76, 0x75, 0x73, 0xff, 0x3b, 0x3a, 0x36, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xee, 0xf3, 0xfe, 0xff, 0x69, 0x93, 0xf6, 0xff, 0x41, 0x77, 0xf4, 0xff, 0x43, 0x78, 0xf4, 0xff, 0x43, 0x78, 0xf4, 0xff, 0x43, 0x78, 0xf4, 0xff, 0x43, 0x78, 0xf4, 0xff, 0x43, 0x78, 0xf4, 0xff, 0x43, 0x78, 0xf4, 0xff, 0x43, 0x78, 0xf5, 0xff, 0x42, 0x78, 0xf4, 0xff, 0x51, 0x82, 0xf6, 0xff, 0xcb, 0xda, 0xfe, 0xff, 0xd5, 0xd3, 0xcf, 0xff, 0x47, 0x46, 0x42, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xae, 0xc5, 0xfb, 0xff, 0x16, 0x58, 0xf2, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x1f, 0x5f, 0xf3, 0xff, 0x1f, 0x5f, 0xf3, 0xff, 0x1f, 0x5f, 0xf3, 0xff, 0x1f, 0x5f, 0xf3, 0xff, 0x1f, 0x5f, 0xf3, 0xff, 0x1f, 0x5f, 0xf3, 0xff, 0x1f, 0x5f, 0xf2, 0xff, 0x1f, 0x5f, 0xf3, 0xff, 0x21, 0x5f, 0xf3, 0xff, 0x7c, 0xa2, 0xf8, 0xff, 0xf1, 0xf1, 0xef, 0xff, 0x58, 0x57, 0x53, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xa3, 0xbd, 0xfa, 0xff, 0x18, 0x59, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x5e, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5e, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x60, 0xf3, 0xff, 0x74, 0x9c, 0xf8, 0xff, 0xf3, 0xf3, 0xf2, 0xff, 0x59, 0x57, 0x54, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xa4, 0xbe, 0xfa, 0xff, 0x18, 0x59, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5e, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x60, 0xf3, 0xff, 0x75, 0x9c, 0xf9, 0xff, 0xf3, 0xf3, 0xf2, 0xff, 0x58, 0x57, 0x54, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x39, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x38, 0x36, 0x32, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xa4, 0xbe, 0xfa, 0xff, 0x18, 0x59, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x60, 0xf3, 0xff, 0x75, 0x9c, 0xf8, 0xff, 0xf3, 0xf3, 0xf2, 0xff, 0x58, 0x57, 0x54, 0xff, 0x39, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xa4, 0xbe, 0xfa, 0xff, 0x18, 0x59, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x60, 0xf3, 0xff, 0x75, 0x9c, 0xf8, 0xff, 0xf3, 0xf3, 0xf2, 0xff, 0x58, 0x57, 0x54, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x74, 0x74, 0x72, 0xff, + 0xa4, 0xbe, 0xfa, 0xff, 0x18, 0x59, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x60, 0xf3, 0xff, 0x75, 0x9c, 0xf8, 0xff, 0xf3, 0xf3, 0xf2, 0xff, 0x58, 0x57, 0x54, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xa4, 0xbe, 0xfa, 0xff, 0x18, 0x59, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5e, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x60, 0xf3, 0xff, 0x75, 0x9c, 0xf8, 0xff, 0xf3, 0xf3, 0xf2, 0xff, 0x58, 0x57, 0x55, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x73, 0xff, + 0xa4, 0xbe, 0xfa, 0xff, 0x18, 0x59, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x60, 0xf3, 0xff, 0x75, 0x9c, 0xf8, 0xff, 0xf3, 0xf2, 0xf2, 0xff, 0x58, 0x57, 0x54, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x35, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xa5, 0xbe, 0xfa, 0xff, 0x18, 0x59, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x21, 0x60, 0xf3, 0xff, 0x75, 0x9c, 0xf8, 0xff, 0xf3, 0xf3, 0xf2, 0xff, 0x58, 0x57, 0x54, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xa7, 0xc0, 0xfa, 0xff, 0x14, 0x57, 0xf2, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x1f, 0x5e, 0xf2, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x1f, 0x5e, 0xf3, 0xff, 0x76, 0x9d, 0xf8, 0xff, 0xf3, 0xf3, 0xf2, 0xff, 0x56, 0x55, 0x52, 0xff, 0x37, 0x36, 0x32, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x36, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xdb, 0xe5, 0xfd, 0xff, 0x3e, 0x74, 0xf5, 0xff, 0x1e, 0x5e, 0xf2, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf3, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x20, 0x5f, 0xf2, 0xff, 0x2b, 0x67, 0xf3, 0xff, 0xac, 0xc2, 0xfa, 0xff, 0xff, 0xff, 0xff, 0xff, 0x91, 0x90, 0x8e, 0xff, 0x3a, 0x39, 0x35, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x35, 0xff, 0x34, 0x33, 0x2f, 0xff, 0x36, 0x35, 0x30, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x36, 0x32, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe6, 0xed, 0xfc, 0xff, 0xd3, 0xdf, 0xfc, 0xff, 0xd4, 0xe0, 0xfc, 0xff, 0xd4, 0xe0, 0xfc, 0xff, 0xd4, 0xe0, 0xfc, 0xff, 0xd4, 0xe0, 0xfc, 0xff, 0xd4, 0xe0, 0xfc, 0xff, 0xd4, 0xe0, 0xfc, 0xff, 0xd4, 0xe0, 0xfc, 0xff, 0xd3, 0xdf, 0xfd, 0xff, 0xdd, 0xe6, 0xfc, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfd, 0xfd, 0xfc, 0xff, 0xdb, 0xdb, 0xda, 0xff, 0xd8, 0xd8, 0xd7, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xd9, 0xd9, 0xd9, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xd9, 0xd8, 0xd8, 0xff, 0xd9, 0xd9, 0xd8, 0xff, 0xbc, 0xbb, 0xba, 0xff, 0x6a, 0x69, 0x66, 0xff, 0x36, 0x35, 0x31, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xfe, 0xff, 0xfe, 0xff, 0xe6, 0xf8, 0xe3, 0xff, 0xda, 0xf6, 0xd7, 0xff, 0xda, 0xf6, 0xd7, 0xff, 0xda, 0xf7, 0xd6, 0xff, 0xda, 0xf6, 0xd7, 0xff, 0xda, 0xf6, 0xd7, 0xff, 0xda, 0xf6, 0xd7, 0xff, 0xda, 0xf6, 0xd7, 0xff, 0xda, 0xf6, 0xd7, 0xff, 0xda, 0xf6, 0xd7, 0xff, 0xe0, 0xf6, 0xdd, 0xff, 0xf8, 0xfc, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xf4, 0xf1, 0xff, 0xff, 0xdb, 0xd2, 0xff, 0xff, 0xd9, 0xd0, 0xff, 0xff, 0xda, 0xd0, 0xff, 0xff, 0xda, 0xd0, 0xff, 0xff, 0xdb, 0xd0, 0xff, 0xff, 0xda, 0xd0, 0xff, 0xff, 0xda, 0xd0, 0xff, 0xff, 0xda, 0xd0, 0xff, 0xff, 0xd9, 0xd0, 0xff, 0xff, 0xda, 0xd0, 0xff, 0xff, 0xf2, 0xed, 0xff, 0xea, 0xe9, 0xea, 0xff, 0x6c, 0x6b, 0x68, 0xff, 0x35, 0x34, 0x30, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x32, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xe0, 0xf6, 0xdf, 0xff, 0x78, 0xd8, 0x74, 0xff, 0x6c, 0xd4, 0x67, 0xff, 0x6d, 0xd4, 0x68, 0xff, 0x6c, 0xd4, 0x68, 0xff, 0x6c, 0xd4, 0x68, 0xff, 0x6c, 0xd4, 0x68, 0xff, 0x6c, 0xd5, 0x68, 0xff, 0x6c, 0xd4, 0x68, 0xff, 0x6c, 0xd4, 0x68, 0xff, 0x6c, 0xd4, 0x67, 0xff, 0x74, 0xd6, 0x6f, 0xff, 0xbf, 0xec, 0xbd, 0xff, 0xff, 0xfd, 0xfe, 0xff, 0xfa, 0x9f, 0x86, 0xff, 0xf8, 0x6d, 0x46, 0xff, 0xf8, 0x6a, 0x43, 0xff, 0xf8, 0x6a, 0x43, 0xff, 0xf8, 0x6a, 0x43, 0xff, 0xf8, 0x6a, 0x43, 0xff, 0xf8, 0x6a, 0x43, 0xff, 0xf8, 0x6a, 0x43, 0xff, 0xf8, 0x6a, 0x43, 0xff, 0xf9, 0x6b, 0x43, 0xff, 0xf8, 0x6a, 0x42, 0xff, 0xf9, 0x84, 0x63, 0xff, 0xff, 0xf3, 0xef, 0xff, 0xb2, 0xb3, 0xb1, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xc3, 0xee, 0xc0, 0xff, 0x61, 0xd1, 0x5c, 0xff, 0x66, 0xd3, 0x61, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0xa1, 0xe4, 0x9f, 0xff, 0xfe, 0xf5, 0xf2, 0xff, 0xf8, 0x7d, 0x5b, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf9, 0x65, 0x3b, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf9, 0x65, 0x3b, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf9, 0x65, 0x3b, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xfd, 0xe0, 0xd9, 0xff, 0xcc, 0xcd, 0xcd, 0xff, 0x40, 0x3f, 0x3b, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x32, 0xff, 0x74, 0x74, 0x72, 0xff, + 0xc1, 0xed, 0xbf, 0xff, 0x61, 0xd1, 0x5c, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x63, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x63, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x68, 0xd3, 0x63, 0xff, 0xa0, 0xe4, 0x9e, 0xff, 0xfe, 0xf5, 0xf2, 0xff, 0xf9, 0x7d, 0x5a, 0xff, 0xf8, 0x65, 0x3a, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf9, 0x65, 0x3c, 0xff, 0xfd, 0xe1, 0xd9, 0xff, 0xcc, 0xcd, 0xcc, 0xff, 0x40, 0x3f, 0x3b, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xc1, 0xed, 0xbf, 0xff, 0x61, 0xd1, 0x5c, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x63, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x63, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x68, 0xd3, 0x63, 0xff, 0xa0, 0xe4, 0x9e, 0xff, 0xfe, 0xf5, 0xf2, 0xff, 0xf9, 0x7d, 0x5a, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf8, 0x65, 0x3d, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xfd, 0xe1, 0xd9, 0xff, 0xcc, 0xcd, 0xcd, 0xff, 0x40, 0x3f, 0x3b, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x35, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xc1, 0xed, 0xbf, 0xff, 0x61, 0xd1, 0x5c, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x63, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x66, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x68, 0xd3, 0x63, 0xff, 0xa0, 0xe4, 0x9e, 0xff, 0xfe, 0xf5, 0xf2, 0xff, 0xf8, 0x7d, 0x5a, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x64, 0x3c, 0xff, 0xfd, 0xe1, 0xd9, 0xff, 0xcc, 0xcd, 0xcd, 0xff, 0x40, 0x3e, 0x3b, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xc1, 0xec, 0xbf, 0xff, 0x61, 0xd0, 0x5c, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd2, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x68, 0xd3, 0x63, 0xff, 0xa0, 0xe4, 0x9e, 0xff, 0xfe, 0xf5, 0xf2, 0xff, 0xf8, 0x7d, 0x5a, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf8, 0x64, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf9, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x64, 0x3a, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xfd, 0xe1, 0xd9, 0xff, 0xcc, 0xcd, 0xcd, 0xff, 0x40, 0x3f, 0x3b, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x32, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xc1, 0xed, 0xbf, 0xff, 0x61, 0xd1, 0x5c, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x63, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd2, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x68, 0xd3, 0x63, 0xff, 0xa0, 0xe4, 0x9e, 0xff, 0xfe, 0xf5, 0xf2, 0xff, 0xf9, 0x7c, 0x5a, 0xff, 0xf8, 0x64, 0x3a, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3d, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x64, 0x3a, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xfd, 0xe1, 0xd9, 0xff, 0xcc, 0xcc, 0xcd, 0xff, 0x40, 0x3f, 0x3b, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x75, 0x74, 0x72, 0xff, + 0xc6, 0xee, 0xc4, 0xff, 0x62, 0xd0, 0x5c, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd2, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x68, 0xd3, 0x63, 0xff, 0xa1, 0xe4, 0x9e, 0xff, 0xfe, 0xf5, 0xf2, 0xff, 0xf9, 0x7d, 0x5a, 0xff, 0xf8, 0x65, 0x3a, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x64, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xfd, 0xe1, 0xd9, 0xff, 0xcd, 0xcd, 0xcd, 0xff, 0x40, 0x3f, 0x3b, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x35, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x38, 0x37, 0x33, 0xff, 0x79, 0x79, 0x76, 0xff, + 0xe0, 0xf6, 0xde, 0xff, 0x6d, 0xd5, 0x68, 0xff, 0x66, 0xd3, 0x61, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd2, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x68, 0xd3, 0x63, 0xff, 0xa0, 0xe4, 0x9f, 0xff, 0xfe, 0xf4, 0xf2, 0xff, 0xf9, 0x7d, 0x5a, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x64, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf9, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf9, 0x65, 0x3c, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf9, 0x65, 0x3c, 0xff, 0xfd, 0xe1, 0xd9, 0xff, 0xcc, 0xcd, 0xcd, 0xff, 0x40, 0x3f, 0x3b, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x3b, 0x3b, 0x36, 0xff, 0x97, 0x97, 0x94, 0xff, + 0xf8, 0xfd, 0xf8, 0xff, 0x90, 0xde, 0x8c, 0xff, 0x64, 0xd2, 0x5f, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x66, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x67, 0xd3, 0x62, 0xff, 0x68, 0xd3, 0x63, 0xff, 0xa0, 0xe4, 0x9e, 0xff, 0xfe, 0xf5, 0xf2, 0xff, 0xf9, 0x7d, 0x5a, 0xff, 0xf8, 0x65, 0x3b, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x65, 0x3c, 0xff, 0xfd, 0xe0, 0xd9, 0xff, 0xcc, 0xcd, 0xcd, 0xff, 0x40, 0x3f, 0x3b, 0xff, 0x38, 0x37, 0x33, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x38, 0x39, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x39, 0x38, 0x34, 0xff, 0x43, 0x42, 0x3e, 0xff, 0xce, 0xce, 0xcd, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xe1, 0xf6, 0xdf, 0xff, 0x83, 0xdb, 0x7f, 0xff, 0x6a, 0xd4, 0x65, 0xff, 0x66, 0xd3, 0x61, 0xff, 0x66, 0xd3, 0x61, 0xff, 0x66, 0xd3, 0x61, 0xff, 0x66, 0xd3, 0x61, 0xff, 0x66, 0xd3, 0x61, 0xff, 0x66, 0xd3, 0x60, 0xff, 0x66, 0xd3, 0x61, 0xff, 0x66, 0xd3, 0x62, 0xff, 0xa8, 0xe6, 0xa6, 0xff, 0xff, 0xf7, 0xf6, 0xff, 0xf9, 0x84, 0x64, 0xff, 0xf8, 0x63, 0x3a, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf9, 0x64, 0x3b, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x64, 0x3a, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x64, 0x3b, 0xff, 0xf8, 0x63, 0x39, 0xff, 0xf8, 0x6b, 0x43, 0xff, 0xfc, 0xe4, 0xdf, 0xff, 0xd1, 0xd3, 0xd2, 0xff, 0x46, 0x45, 0x41, 0xff, 0x37, 0x36, 0x32, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x38, 0x37, 0x33, 0xff, 0x3a, 0x3a, 0x36, 0xff, 0x43, 0x42, 0x3e, 0xff, 0xab, 0xac, 0xa9, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe9, 0xf8, 0xe9, 0xff, 0xbb, 0xeb, 0xb9, 0xff, 0x9d, 0xe3, 0x9a, 0xff, 0x95, 0xe0, 0x91, 0xff, 0x96, 0xe0, 0x92, 0xff, 0x96, 0xe0, 0x92, 0xff, 0x96, 0xe0, 0x92, 0xff, 0x96, 0xe0, 0x92, 0xff, 0x95, 0xe0, 0x91, 0xff, 0xa1, 0xe3, 0x9d, 0xff, 0xe4, 0xf7, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xd3, 0xc8, 0xff, 0xfa, 0x97, 0x7c, 0xff, 0xfa, 0x94, 0x77, 0xff, 0xfa, 0x94, 0x77, 0xff, 0xfa, 0x94, 0x77, 0xff, 0xfa, 0x94, 0x77, 0xff, 0xfa, 0x94, 0x77, 0xff, 0xfa, 0x94, 0x77, 0xff, 0xfa, 0x94, 0x77, 0xff, 0xfa, 0x94, 0x77, 0xff, 0xfa, 0x94, 0x77, 0xff, 0xfb, 0xbd, 0xac, 0xff, 0xff, 0xfa, 0xfa, 0xff, 0xf5, 0xf4, 0xf4, 0xff, 0xa0, 0xa0, 0x9e, 0xff, 0x76, 0x75, 0x73, 0xff, 0x75, 0x74, 0x72, 0xff, 0x75, 0x74, 0x72, 0xff, 0x75, 0x74, 0x72, 0xff, 0x74, 0x74, 0x72, 0xff, 0x75, 0x75, 0x72, 0xff, 0x79, 0x79, 0x76, 0xff, 0x97, 0x96, 0x94, 0xff, 0xce, 0xce, 0xcd, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, +}; + +const lv_image_dsc_t lvgl_icon_40px = { + .header.cf = LV_COLOR_FORMAT_ARGB8888, + .header.magic = LV_IMAGE_HEADER_MAGIC, + .header.w = 40, + .header.h = 40, + .data_size = 1600 * 4, + .data = lvgl_icon_40px_map, +}; diff --git a/mouse_cursor_icon.c b/src/mouse_cursor_icon.c similarity index 100% rename from mouse_cursor_icon.c rename to src/mouse_cursor_icon.c diff --git a/src/simple_demo.c b/src/simple_demo.c new file mode 100644 index 0000000..0dd875f --- /dev/null +++ b/src/simple_demo.c @@ -0,0 +1,80 @@ +#include "display/lv_display.h" +#include "misc/lv_timer.h" +#include "view/lv_gltf_view.h" +#include "view/sup/include/shader_includes.h" +#include "lib/lv_opengl_shader_cache/lv_opengl_shader_cache.h" +#include "view/sup/include/shader_v1.h" +#include "widgets/3dtexture/lv_3dtexture.h" +#include /* For window size restrictions */ +#include /* For window size / title */ +#include +#include "demo.h" +#include +#include +#include + +#define WINDOW_WIDTH 1024 +#define WINDOW_HEIGHT 768 +#define WINDOW_TITLE "LVGL 3D Demo" + +int main(void) +{ + /* initialize lvgl */ + lv_init(); + + /* create a window and initialize OpenGL */ + lv_glfw_window_t *window = + lv_glfw_window_create(WINDOW_WIDTH, WINDOW_HEIGHT, true); + + /* create a display that flushes to a texture */ + lv_display_t *texture = + lv_opengles_texture_create(WINDOW_WIDTH, WINDOW_HEIGHT); + lv_display_set_default(texture); + + /* add the texture to the window */ + unsigned int texture_id = lv_opengles_texture_get_texture_id(texture); + lv_glfw_window_add_texture(window, texture_id, WINDOW_WIDTH, + WINDOW_HEIGHT); + + lv_opengl_shader_cache_t shader_cache = lv_opengl_shader_cache_create( + src_includes, + sizeof(src_includes) / sizeof(lv_shader_key_value_t), + src_vertex(), src_frag()); + + lv_gltf_view_t *demo_gltfview = + (lv_gltf_view_t *)lv_malloc(get_viewer_datasize()); + init_viewer_struct(demo_gltfview); + lv_gltf_view_set_width(demo_gltfview, WINDOW_WIDTH); + lv_gltf_view_set_height(demo_gltfview, WINDOW_HEIGHT); + + gl_environment_textures env = + lv_gltf_view_ibl_sampler_setup(NULL, NULL, 0); + shader_cache.lastEnv = &env; + + lv_gltf_data_t *demo_gltfdata = + (lv_gltf_data_t *)lv_malloc(lv_gltf_data_get_struct_size()); + lv_gltf_data_load_file("gltfs/logo1.glb", demo_gltfdata, &shader_cache); + + lv_3dtexture_id_t gltf_texture = lv_gltf_view_render( + &shader_cache, demo_gltfview, demo_gltfdata, true, 0, 0, 0, 0); + + lv_obj_t *gltfview_3dtex = lv_3dtexture_create(lv_screen_active()); + lv_3dtexture_set_src(gltfview_3dtex, gltf_texture); + lv_obj_set_size(gltfview_3dtex, WINDOW_WIDTH, WINDOW_HEIGHT); + lv_obj_align(gltfview_3dtex, LV_ALIGN_RIGHT_MID, 0, 0); + + while (1) { + uint32_t time_until_next = lv_timer_handler(); + if (time_until_next == LV_NO_TIMER_READY) { + time_until_next = LV_DEF_REFR_PERIOD; + } + lv_delay_ms(time_until_next); + } + + // Cleanup + lv_gltf_data_destroy(demo_gltfdata); + lv_gltf_view_destroy(demo_gltfview); + lv_opengl_shader_cache_destroy(&shader_cache); + + return 0; +} diff --git a/src/sprites1_32x32x7.c b/src/sprites1_32x32x7.c new file mode 100644 index 0000000..059d8b8 --- /dev/null +++ b/src/sprites1_32x32x7.c @@ -0,0 +1,259 @@ +#ifdef __has_include + #if __has_include("lvgl.h") + #ifndef LV_LVGL_H_INCLUDE_SIMPLE + #define LV_LVGL_H_INCLUDE_SIMPLE + #endif + #endif +#endif + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) + #include "lvgl.h" +#else + #include "lvgl/lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN + #define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_IMAGE_SPRITES1_32X32X7 + #define LV_ATTRIBUTE_IMAGE_SPRITES1_32X32X7 +#endif + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMAGE_SPRITES1_32X32X7 uint8_t sprites1_32x32x7_map[] += { + 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x00, 0x00, 0x00, 0x35, 0x00, 0x01, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 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, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x87, 0x22, 0x22, 0x22, 0x9e, 0x30, 0x30, 0x30, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 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, 0x0a, 0x0a, 0x98, 0x89, 0x89, 0x89, 0xc5, 0x90, 0x90, 0x90, 0xc6, 0x4f, 0x4f, 0x4e, 0xc1, 0x36, 0x36, 0x36, 0xa2, 0x2b, 0x2b, 0x2b, 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, 0x01, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 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, 0x04, 0x04, 0x46, 0x23, 0x23, 0x23, 0x60, 0x31, 0x31, 0x31, 0xb2, 0xf2, 0xf2, 0xf2, 0xae, 0xff, 0xff, 0xff, 0xab, 0xf5, 0xf5, 0xf5, 0xad, 0x96, 0x96, 0x96, 0xc3, 0x45, 0x45, 0x45, 0xbc, 0x26, 0x26, 0x26, 0x7e, 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, 0x01, 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, 0x0c, 0x0c, 0x0c, 0x96, 0xff, 0xff, 0xff, 0x24, 0x8a, 0x8a, 0x8a, 0x3d, 0x5c, 0x5c, 0x5c, 0xc1, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xd3, 0xd3, 0xd3, 0xb5, 0x57, 0x57, 0x57, 0xbc, 0x2c, 0x2c, 0x2c, 0x90, 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, 0x06, 0x06, 0x06, 0x55, 0x9e, 0x9e, 0x9e, 0x7b, 0xff, 0xff, 0xff, 0x62, 0xff, 0xff, 0xff, 0x32, 0x45, 0x45, 0x45, 0x9f, 0xda, 0xda, 0xda, 0xb4, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xdd, 0xdd, 0xdd, 0xb3, 0x59, 0x59, 0x59, 0xc6, 0x2b, 0x2b, 0x2b, 0x83, 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, 0x07, 0x07, 0x07, 0xb2, 0xf5, 0xf5, 0xf5, 0xe1, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0x51, 0xc2, 0xc2, 0xc2, 0x4f, 0x68, 0x68, 0x68, 0xc5, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xc8, 0xc8, 0xc8, 0xb6, 0x35, 0x35, 0x35, 0xba, 0x15, 0x15, 0x15, 0x31, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x04, 0x04, 0x04, 0xcb, 0xdb, 0xdb, 0xdb, 0xf6, 0xff, 0xff, 0xff, 0xe5, 0xff, 0xff, 0xff, 0x60, 0xff, 0xff, 0xff, 0x4f, 0x49, 0x49, 0x49, 0xb9, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xfb, 0xfb, 0xfb, 0xac, 0x6d, 0x6d, 0x6d, 0xbd, 0x25, 0x25, 0x25, 0x8b, 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, 0x33, 0x00, 0x00, 0x00, 0xd8, 0x36, 0x36, 0x36, 0xff, 0xd5, 0xd5, 0xd5, 0x98, 0xff, 0xff, 0xff, 0x5d, 0xff, 0xff, 0xff, 0x5d, 0x4e, 0x4e, 0x4e, 0xa6, 0xe9, 0xe9, 0xe9, 0xb0, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xfe, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xd1, 0xd1, 0xd1, 0xb5, 0x19, 0x19, 0x19, 0xe1, 0x0d, 0x0d, 0x0d, 0x8a, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x00, 0x00, 0xff, 0x60, 0x60, 0x60, 0xa2, 0xff, 0xff, 0xff, 0x6c, 0xff, 0xff, 0xff, 0x6c, 0x80, 0x80, 0x80, 0x96, 0xb6, 0xb6, 0xb6, 0xb8, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xfe, 0xfe, 0xfe, 0xab, 0x46, 0x46, 0x46, 0xc9, 0x02, 0x02, 0x02, 0x7c, 0x00, 0x00, 0x00, 0x8b, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0x55, 0x55, 0x55, 0xac, 0xff, 0xff, 0xff, 0x7a, 0xff, 0xff, 0xff, 0x7a, 0xa2, 0xa2, 0xa2, 0x97, 0x9d, 0x9d, 0x9d, 0xbe, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xf2, 0xf2, 0xf2, 0xae, 0x25, 0x25, 0x25, 0x90, 0x00, 0x01, 0x00, 0x18, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0x6e, 0x6e, 0x6e, 0xac, 0xff, 0xff, 0xff, 0x88, 0xff, 0xff, 0xff, 0x88, 0xa4, 0xa4, 0xa4, 0xa3, 0xa3, 0xa3, 0xa3, 0xc1, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xdd, 0xdd, 0xdd, 0xb2, 0x18, 0x18, 0x18, 0x77, 0x00, 0x00, 0x00, 0x4f, 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, 0x72, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0xff, 0xc6, 0xc6, 0xc6, 0xa6, 0xff, 0xff, 0xff, 0x97, 0xff, 0xff, 0xff, 0x97, 0x93, 0x93, 0x93, 0xb6, 0xbb, 0xbb, 0xbb, 0xbb, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0x3d, 0x3d, 0x3d, 0xc0, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0xf8, 0x1b, 0x1b, 0x1b, 0xce, 0xff, 0xff, 0xff, 0xa5, 0xff, 0xff, 0xff, 0xa5, 0xff, 0xff, 0xff, 0xa5, 0x65, 0x65, 0x65, 0xc7, 0xf0, 0xf0, 0xf0, 0xae, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xce, 0xce, 0xce, 0xac, 0x28, 0x28, 0x28, 0xca, 0x0b, 0x0a, 0x0a, 0x93, 0x00, 0x00, 0x00, 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, 0x0e, 0x05, 0x05, 0x05, 0xdc, 0xc7, 0xc7, 0xc7, 0xba, 0xff, 0xff, 0xff, 0xb4, 0xff, 0xff, 0xff, 0xb4, 0xff, 0xff, 0xff, 0xb4, 0x5a, 0x5a, 0x5a, 0xcd, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xee, 0xee, 0xee, 0xaf, 0x54, 0x54, 0x54, 0xbc, 0x15, 0x15, 0x15, 0x78, 0x00, 0x00, 0x00, 0x09, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x3e, 0x3e, 0xb8, 0xff, 0xff, 0xff, 0xc2, 0xff, 0xff, 0xff, 0xc2, 0xff, 0xff, 0xff, 0xc2, 0xda, 0xda, 0xda, 0xc9, 0x75, 0x75, 0x75, 0xc7, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xbb, 0xbb, 0xbb, 0xb8, 0x2f, 0x2f, 0x2f, 0xaf, 0x0b, 0x0b, 0x0b, 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, 0x2d, 0x2d, 0x2d, 0x83, 0xdc, 0xdc, 0xdc, 0xd5, 0xff, 0xff, 0xff, 0xd0, 0xff, 0xff, 0xff, 0xd0, 0x65, 0x65, 0x65, 0xd2, 0xe8, 0xe8, 0xe8, 0xaf, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0x8c, 0x8c, 0x8c, 0xbd, 0x29, 0x29, 0x29, 0x89, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x60, 0x60, 0x60, 0xd1, 0xff, 0xff, 0xff, 0xdf, 0xcc, 0xcc, 0xcc, 0xe5, 0x75, 0x75, 0x75, 0xc4, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xec, 0xec, 0xec, 0xaf, 0x55, 0x55, 0x55, 0xc3, 0x26, 0x26, 0x26, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 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, 0x30, 0x30, 0x86, 0xcd, 0xcd, 0xcd, 0xee, 0x57, 0x57, 0x57, 0xde, 0xfc, 0xfc, 0xfc, 0xac, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xff, 0xff, 0xff, 0xab, 0xe4, 0xe4, 0xe4, 0xb1, 0x6a, 0x6a, 0x6a, 0xbc, 0x2a, 0x2a, 0x2a, 0x9d, 0x0a, 0x0a, 0x0a, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 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, 0x2a, 0x2a, 0x2a, 0xca, 0xd2, 0xd2, 0xd2, 0xb6, 0xe2, 0xe2, 0xe2, 0xb2, 0xa9, 0xa9, 0xa9, 0xc0, 0x6a, 0x6a, 0x6a, 0xbc, 0x3f, 0x3f, 0x3f, 0xb1, 0x2b, 0x2b, 0x2b, 0x8d, 0x09, 0x09, 0x09, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x69, 0x20, 0x20, 0x20, 0x9f, 0x23, 0x23, 0x23, 0x7c, 0x19, 0x19, 0x19, 0x48, 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, 0x09, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 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, 0x94, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x61, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xbb, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0xc2, 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, 0x03, 0x00, 0x00, 0x00, 0xdb, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x75, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x01, 0x00, 0xbc, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xca, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x00, 0xc7, 0x00, 0x00, 0x00, 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, 0x03, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x01, 0x00, 0x48, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x01, 0x00, 0x80, 0x00, 0x00, 0x00, 0x8a, 0x05, 0x05, 0x05, 0x99, 0x08, 0x08, 0x08, 0xa8, 0x0d, 0x0d, 0x0d, 0xb2, 0x0d, 0x0d, 0x0d, 0xc1, 0x08, 0x08, 0x08, 0xdc, 0x26, 0x26, 0x26, 0x8c, 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, 0x03, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x01, 0x3d, 0x0a, 0x0a, 0x0a, 0xcf, 0x13, 0x13, 0x13, 0xd6, 0x13, 0x13, 0x13, 0xdc, 0x17, 0x17, 0x17, 0xda, 0x19, 0x19, 0x19, 0xdd, 0x1b, 0x1b, 0x1b, 0xe0, 0x20, 0x20, 0x20, 0xe0, 0x21, 0x21, 0x21, 0xe3, 0x25, 0x25, 0x25, 0xe5, 0x27, 0x27, 0x27, 0xe7, 0x2d, 0x2d, 0x2d, 0xe6, 0x39, 0x39, 0x39, 0xe6, 0x46, 0x46, 0x46, 0xe5, 0x57, 0x57, 0x57, 0xe4, 0x64, 0x64, 0x64, 0xe6, 0x7c, 0x7c, 0x7c, 0xe8, 0x8b, 0x8b, 0x8b, 0xe7, 0x99, 0x99, 0x99, 0xe5, 0xb5, 0xb5, 0xb5, 0xe0, 0xc2, 0xc2, 0xc2, 0xde, 0xe0, 0xe0, 0xe0, 0xdb, 0x52, 0x52, 0x52, 0xc9, 0x00, 0x00, 0x00, 0x14, 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, 0x03, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x3d, 0x22, 0x22, 0x22, 0xe3, 0xff, 0xfe, 0xff, 0xd6, 0xd7, 0xd7, 0xd7, 0xdb, 0xca, 0xca, 0xca, 0xdd, 0xbe, 0xbe, 0xbe, 0xdf, 0xb2, 0xb2, 0xb2, 0xe1, 0xa1, 0xa1, 0xa1, 0xe4, 0x96, 0x96, 0x96, 0xe5, 0x8b, 0x8b, 0x8b, 0xe7, 0x7d, 0x7d, 0x7d, 0xe9, 0x71, 0x71, 0x71, 0xeb, 0x77, 0x77, 0x77, 0xea, 0x77, 0x77, 0x77, 0xea, 0x71, 0x71, 0x71, 0xeb, 0x73, 0x73, 0x73, 0xeb, 0x78, 0x78, 0x78, 0xea, 0x74, 0x74, 0x74, 0xeb, 0x71, 0x71, 0x71, 0xeb, 0x76, 0x76, 0x76, 0xea, 0x78, 0x78, 0x78, 0xea, 0x71, 0x71, 0x71, 0xeb, 0x70, 0x70, 0x70, 0xe8, 0x33, 0x33, 0x33, 0xe1, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x45, 0x29, 0x29, 0x29, 0xe4, 0xe6, 0xe6, 0xe6, 0xd9, 0x5a, 0x5a, 0x5a, 0xef, 0xa1, 0xa1, 0xa1, 0xe4, 0xb2, 0xb2, 0xb2, 0xe1, 0xbe, 0xbe, 0xbe, 0xdf, 0xc9, 0xc9, 0xc9, 0xde, 0x91, 0x91, 0x91, 0xe3, 0x58, 0x58, 0x58, 0xe8, 0x4c, 0x4c, 0x4c, 0xe5, 0x41, 0x41, 0x41, 0xe5, 0x33, 0x33, 0x33, 0xe8, 0x28, 0x28, 0x28, 0xe8, 0x27, 0x27, 0x27, 0xe7, 0x23, 0x23, 0x23, 0xe6, 0x22, 0x22, 0x22, 0xe2, 0x1e, 0x1e, 0x1e, 0xe2, 0x1b, 0x1b, 0x1b, 0xe1, 0x1b, 0x1b, 0x1b, 0xdd, 0x18, 0x18, 0x18, 0xde, 0x14, 0x14, 0x14, 0xde, 0x14, 0x14, 0x14, 0xd8, 0x08, 0x08, 0x08, 0xd9, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x57, 0x37, 0x37, 0x37, 0xe3, 0xc2, 0xc2, 0xc2, 0xdf, 0xac, 0xac, 0xac, 0xe2, 0xff, 0xff, 0xff, 0xd6, 0xff, 0xff, 0xff, 0xd6, 0xff, 0xff, 0xff, 0xd6, 0x4a, 0x4a, 0x4a, 0xe0, 0x0b, 0x0b, 0x0b, 0xbf, 0x00, 0x00, 0x00, 0x7b, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x01, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x53, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x71, 0x51, 0x51, 0x51, 0xe0, 0x9f, 0x9f, 0x9f, 0xe4, 0xcf, 0xcf, 0xcf, 0xdd, 0xff, 0xff, 0xfe, 0xd6, 0xff, 0xff, 0xff, 0xd6, 0xfd, 0xfd, 0xfd, 0xd6, 0x11, 0x11, 0x11, 0xdb, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x01, 0x01, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x88, 0x70, 0x70, 0x70, 0xe0, 0x7e, 0x7e, 0x7e, 0xe9, 0xf2, 0xf2, 0xf2, 0xd8, 0xff, 0xff, 0xff, 0xd6, 0xff, 0xff, 0xff, 0xd6, 0x81, 0x81, 0x81, 0xe0, 0x05, 0x05, 0x05, 0x9d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x9b, 0x91, 0x91, 0x91, 0xe3, 0x74, 0x74, 0x74, 0xeb, 0xff, 0xff, 0xff, 0xd6, 0xff, 0xff, 0xff, 0xd6, 0xff, 0xff, 0xff, 0xd6, 0x1d, 0x1d, 0x1d, 0xe4, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0xc7, 0x04, 0x04, 0x04, 0xb1, 0xb3, 0xb3, 0xb3, 0xe1, 0x75, 0x75, 0x75, 0xea, 0xff, 0xff, 0xff, 0xd6, 0xff, 0xff, 0xff, 0xd6, 0xe6, 0xe6, 0xe6, 0xd9, 0x0c, 0x0c, 0x0c, 0xd1, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x01, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xcd, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xc7, 0x09, 0x09, 0x09, 0xc4, 0xd7, 0xd7, 0xd7, 0xdb, 0x75, 0x75, 0x75, 0xea, 0xff, 0xff, 0xff, 0xd6, 0xff, 0xff, 0xff, 0xd6, 0x4e, 0x4e, 0x4e, 0xe2, 0x00, 0x01, 0x00, 0x77, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xc6, 0x0b, 0x0b, 0x0b, 0xce, 0xed, 0xed, 0xed, 0xd8, 0x76, 0x76, 0x76, 0xea, 0xff, 0xff, 0xff, 0xd6, 0xff, 0xff, 0xff, 0xd6, 0x14, 0x14, 0x14, 0xe1, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x01, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 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, 0xc5, 0x0e, 0x0e, 0x0e, 0xd5, 0xe2, 0xe2, 0xe2, 0xda, 0x8d, 0x8d, 0x8d, 0xe7, 0xff, 0xff, 0xff, 0xd6, 0xba, 0xba, 0xba, 0xde, 0x08, 0x08, 0x08, 0xbd, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xcf, 0x00, 0x00, 0x00, 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, 0xc4, 0x12, 0x12, 0x12, 0xd7, 0xbe, 0xbe, 0xbe, 0xdf, 0xaf, 0xaf, 0xaf, 0xe1, 0xff, 0xff, 0xff, 0xd6, 0x2c, 0x2c, 0x2c, 0xe3, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x73, 0x00, 0x00, 0x00, 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, 0x15, 0x00, 0x00, 0x00, 0xc3, 0x16, 0x16, 0x16, 0xda, 0x9b, 0x9b, 0x9b, 0xe4, 0xd2, 0xd2, 0xd2, 0xdc, 0xfd, 0xfd, 0xfd, 0xd6, 0x0f, 0x0f, 0x0f, 0xdb, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 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, 0x17, 0x00, 0x00, 0x00, 0xc3, 0x1b, 0x1b, 0x1b, 0xdd, 0x7c, 0x7c, 0x7c, 0xe9, 0xf6, 0xf6, 0xf6, 0xd7, 0x7e, 0x7e, 0x7e, 0xdf, 0x05, 0x05, 0x05, 0x9d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0xc2, 0x1f, 0x1f, 0x1f, 0xdf, 0x74, 0x74, 0x74, 0xeb, 0xff, 0xff, 0xff, 0xd6, 0x1c, 0x1c, 0x1c, 0xe4, 0x00, 0x00, 0x00, 0x43, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0xc6, 0x27, 0x27, 0x27, 0xe0, 0x74, 0x74, 0x74, 0xeb, 0xe3, 0xe3, 0xe3, 0xda, 0x0b, 0x0b, 0x0b, 0xd0, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 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, 0x1e, 0x00, 0x00, 0x00, 0xcd, 0x32, 0x32, 0x32, 0xdf, 0x74, 0x74, 0x74, 0xeb, 0x49, 0x49, 0x49, 0xe2, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 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, 0x1f, 0x00, 0x00, 0x00, 0xd6, 0x25, 0x25, 0x25, 0xeb, 0x67, 0x67, 0x67, 0xed, 0x14, 0x14, 0x14, 0xe0, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x01, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xc5, 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, 0x21, 0x00, 0x00, 0x00, 0xc6, 0x04, 0x04, 0x04, 0xb7, 0x13, 0x13, 0x13, 0xf5, 0x07, 0x07, 0x07, 0xba, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x01, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 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, 0x0a, 0x00, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0xbb, 0x00, 0x01, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0xbe, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x00, 0x00, 0xca, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x01, 0x00, 0xc7, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0xb3, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0xc7, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0x6b, 0x00, 0x00, 0x00, 0x48, 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, 0x0b, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x70, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x32, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00, 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, 0x97, 0x00, 0x00, 0x00, 0x62, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x61, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0xb6, 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, 0x1e, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x81, 0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x4d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0xbc, 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, 0x16, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x5e, 0x00, 0x00, 0x00, 0xaf, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x69, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x67, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0xb1, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0xd9, 0x00, 0x00, 0x00, 0xb5, 0x00, 0x00, 0x00, 0xb5, 0x00, 0x00, 0x00, 0xc4, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x01, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x01, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xa8, 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, 0xa3, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x94, 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, 0xa4, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x8b, 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, 0xa3, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa1, 0x01, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xaf, 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, 0x8c, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xb5, 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, 0x38, 0x00, 0x00, 0x00, 0x84, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x95, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0xad, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0xa5, 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, 0x58, 0x00, 0x00, 0x00, 0x78, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0xab, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x01, 0xc5, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x84, 0x01, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 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, 0xb4, 0x00, 0x00, 0x00, 0x45, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x9a, 0x00, 0x00, 0x01, 0x7f, 0x00, 0x00, 0x00, 0x02, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xbf, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x61, 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, 0x14, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x00, 0x00, 0x52, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0xa4, 0x00, 0x00, 0x00, 0xb5, 0x00, 0x00, 0x00, 0x9d, 0x00, 0x00, 0x00, 0x82, 0x00, 0x00, 0x00, 0x6d, 0x01, 0x01, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x94, 0x00, 0x00, 0x00, 0xb5, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0x46, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 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, 0x00, 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, 0x0f, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x03, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x14, 0x00, 0x00, 0x00, 0x15, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x1c, 0x00, 0x00, 0x00, 0x1a, 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, 0xd7, 0xd7, 0xd7, 0x3a, 0xdf, 0xdf, 0xdf, 0x98, 0xd6, 0xd6, 0xd6, 0x90, 0xc2, 0xc2, 0xc2, 0x2e, 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, 0xd8, 0xd8, 0xd8, 0x41, 0xe0, 0xe0, 0xe0, 0x9b, 0xd4, 0xd4, 0xd4, 0x8d, 0xbe, 0xbe, 0xbe, 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, 0x07, 0x00, 0x00, 0x00, 0x25, 0x01, 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, 0xdc, 0xdc, 0xdc, 0x3a, 0xf7, 0xf7, 0xf7, 0xdb, 0xe9, 0xe9, 0xe9, 0x51, 0xcd, 0xcd, 0xcd, 0x52, 0xb2, 0xb2, 0xb2, 0xbf, 0x94, 0x94, 0x94, 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, 0xdf, 0xdf, 0xdf, 0x48, 0xf9, 0xf9, 0xf9, 0xd5, 0xe8, 0xe8, 0xe8, 0x4c, 0xca, 0xca, 0xca, 0x57, 0xb0, 0xb0, 0xb0, 0xbf, 0x95, 0x95, 0x95, 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, 0x16, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd5, 0xd5, 0xd5, 0x93, 0xd3, 0xd3, 0xd3, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x96, 0x96, 0x50, 0x7d, 0x7d, 0x7d, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0xd3, 0xd3, 0xa3, 0xd2, 0xd2, 0xd2, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x96, 0x96, 0x5c, 0x7a, 0x7a, 0x7a, 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, 0x01, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb2, 0xb2, 0xb2, 0x85, 0xac, 0xac, 0xac, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x74, 0x74, 0x74, 0x4d, 0x5d, 0x5d, 0x5d, 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, 0xb2, 0xb2, 0xb2, 0x92, 0xab, 0xab, 0xab, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x71, 0x71, 0x71, 0x58, 0x59, 0x59, 0x59, 0x53, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 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, 0x3c, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x8c, 0x8c, 0x28, 0x81, 0x81, 0x81, 0xa8, 0x71, 0x71, 0x71, 0x48, 0x63, 0x63, 0x63, 0x48, 0x4e, 0x4e, 0x4e, 0x8f, 0x35, 0x35, 0x35, 0x18, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x02, 0xd0, 0xd0, 0xd0, 0x26, 0xc9, 0xc9, 0xc9, 0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x8a, 0x8a, 0x32, 0x81, 0x81, 0x81, 0xa4, 0x71, 0x71, 0x71, 0x44, 0x61, 0x61, 0x61, 0x4c, 0x4d, 0x4d, 0x4d, 0x8f, 0x3c, 0x3c, 0x3c, 0x11, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0xaa, 0x03, 0xcd, 0xcd, 0xcd, 0x29, 0xc3, 0xc3, 0xc3, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x22, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x5a, 0x5a, 0x1f, 0x4c, 0x4c, 0x4c, 0x5b, 0x3a, 0x3a, 0x3a, 0x54, 0x23, 0x23, 0x23, 0x16, 0x00, 0x00, 0x00, 0x00, 0xd8, 0xd8, 0xd8, 0x0d, 0xec, 0xec, 0xec, 0xbc, 0xed, 0xed, 0xed, 0xc4, 0xd5, 0xd5, 0xd5, 0xc2, 0xbb, 0xbb, 0xbb, 0x99, 0x99, 0x99, 0x99, 0x05, 0x00, 0x00, 0x00, 0x00, 0x5a, 0x5a, 0x5a, 0x25, 0x4b, 0x4b, 0x4b, 0x5c, 0x39, 0x39, 0x39, 0x51, 0x2b, 0x2a, 0x2b, 0x12, 0x00, 0x00, 0x00, 0x00, 0xd7, 0xd7, 0xd7, 0x13, 0xed, 0xed, 0xed, 0xc5, 0xec, 0xec, 0xec, 0xbf, 0xd3, 0xd3, 0xd3, 0xc5, 0xb8, 0xb8, 0xb8, 0x8d, 0x80, 0x80, 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 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, 0xde, 0xde, 0xde, 0x7c, 0xe6, 0xe6, 0xe6, 0x84, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x01, 0xa4, 0xa4, 0xa5, 0x84, 0x8b, 0x8b, 0x8b, 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, 0xe0, 0xe0, 0xe0, 0x8c, 0xe5, 0xe5, 0xe5, 0x75, 0x00, 0x00, 0x00, 0x00, 0xaa, 0xaa, 0xaa, 0x03, 0xa1, 0xa1, 0xa1, 0x90, 0x89, 0x89, 0x89, 0x45, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x00, 0x4e, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0xc4, 0xc4, 0x9b, 0xbf, 0xbf, 0xbf, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x85, 0x85, 0x85, 0x43, 0x6a, 0x6a, 0x6a, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc4, 0xc4, 0xc4, 0xa8, 0xbc, 0xbc, 0xbc, 0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x81, 0x81, 0x81, 0x4f, 0x6a, 0x6a, 0x6a, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x58, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd3, 0xd3, 0xd3, 0x17, 0xd9, 0xd9, 0xd9, 0x64, 0xd3, 0xd2, 0xd2, 0x60, 0xbf, 0xbf, 0xbf, 0x10, 0x00, 0x00, 0x00, 0x00, 0x9d, 0x9d, 0x9d, 0x60, 0x94, 0x94, 0x94, 0x7e, 0x80, 0x80, 0x80, 0x02, 0x80, 0x80, 0x80, 0x06, 0x61, 0x61, 0x61, 0x79, 0x49, 0x49, 0x49, 0x3b, 0x00, 0x00, 0x00, 0x00, 0xd1, 0xd1, 0xd1, 0x1c, 0xda, 0xda, 0xda, 0x67, 0xd3, 0xd3, 0xd3, 0x5c, 0xc4, 0xc4, 0xc4, 0x0d, 0x01, 0x00, 0x00, 0x00, 0x9e, 0x9e, 0x9e, 0x6c, 0x94, 0x94, 0x94, 0x72, 0x00, 0x00, 0x00, 0x01, 0x80, 0x80, 0x80, 0x08, 0x5f, 0x5f, 0x5f, 0x81, 0x45, 0x45, 0x45, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x60, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0xe0, 0xe0, 0xe0, 0x21, 0xf5, 0xf5, 0xf5, 0xde, 0xec, 0xec, 0xec, 0x85, 0xd2, 0xd2, 0xd2, 0x82, 0xb7, 0xb7, 0xb7, 0xbe, 0x9e, 0x9e, 0x9e, 0x15, 0x66, 0x66, 0x66, 0x05, 0x6d, 0x6d, 0x6d, 0x73, 0x5d, 0x5d, 0x5d, 0x99, 0x4c, 0x4c, 0x4c, 0x93, 0x38, 0x38, 0x38, 0x56, 0x00, 0x00, 0x00, 0x01, 0xe1, 0xe1, 0xe1, 0x2b, 0xf7, 0xf7, 0xf7, 0xdf, 0xeb, 0xeb, 0xeb, 0x81, 0xd2, 0xd2, 0xd2, 0x87, 0xb5, 0xb5, 0xb5, 0xb9, 0xa4, 0xa4, 0xa4, 0x0e, 0x71, 0x71, 0x71, 0x09, 0x6b, 0x6b, 0x6b, 0x79, 0x5d, 0x5d, 0x5d, 0x97, 0x4b, 0x4b, 0x4b, 0x93, 0x37, 0x37, 0x37, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x21, 0x00, 0x00, 0x00, 0x67, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xda, 0xda, 0xda, 0x8a, 0xdc, 0xdc, 0xdc, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9c, 0x9c, 0x9c, 0x62, 0x83, 0x83, 0x83, 0x63, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x40, 0x40, 0x08, 0x33, 0x33, 0x33, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd9, 0xd9, 0xd9, 0x9a, 0xdc, 0xdc, 0xdc, 0x51, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9d, 0x9d, 0x9d, 0x6d, 0x82, 0x82, 0x82, 0x56, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x39, 0x39, 0x39, 0x09, 0x40, 0x40, 0x40, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2b, 0x00, 0x00, 0x00, 0x6e, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb9, 0xb9, 0xb9, 0x8f, 0xb2, 0xb2, 0xb2, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x7a, 0x7a, 0x7a, 0x43, 0x64, 0x64, 0x64, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xba, 0xba, 0xba, 0x9c, 0xb2, 0xb2, 0xb2, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7b, 0x7b, 0x7b, 0x4f, 0x5f, 0x5f, 0x5f, 0x5b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x71, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x96, 0x96, 0x3f, 0x8b, 0x8b, 0x8b, 0x9c, 0x7c, 0x7c, 0x7c, 0x23, 0x6b, 0x6b, 0x6b, 0x26, 0x56, 0x56, 0x56, 0x8b, 0x41, 0x41, 0x41, 0x27, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x92, 0x92, 0x4b, 0x8a, 0x8a, 0x8a, 0x94, 0x7b, 0x7b, 0x7b, 0x1f, 0x67, 0x67, 0x67, 0x2a, 0x54, 0x54, 0x54, 0x8f, 0x3a, 0x3a, 0x3a, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x80, 0x80, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x62, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x64, 0x64, 0x40, 0x54, 0x54, 0x54, 0x7f, 0x41, 0x41, 0x41, 0x76, 0x31, 0x31, 0x31, 0x2f, 0x00, 0x00, 0x00, 0x00, 0xbf, 0xbe, 0xbf, 0x04, 0xe7, 0xe7, 0xe7, 0x89, 0xe9, 0xe9, 0xe9, 0xe1, 0xd7, 0xd7, 0xd7, 0xd7, 0xbd, 0xbd, 0xbd, 0x6d, 0xff, 0xfe, 0xff, 0x01, 0x80, 0x80, 0x80, 0x02, 0x65, 0x65, 0x65, 0x47, 0x55, 0x55, 0x55, 0x81, 0x41, 0x41, 0x41, 0x75, 0x31, 0x31, 0x31, 0x2a, 0x00, 0x00, 0x00, 0x00, 0xd5, 0xd5, 0xd5, 0x06, 0xe5, 0xe5, 0xe5, 0x93, 0xe8, 0xe8, 0xe8, 0xe2, 0xd5, 0xd5, 0xd5, 0xd4, 0xbb, 0xbb, 0xbb, 0x61, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x45, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xe2, 0xe2, 0xe2, 0x69, 0xf0, 0xf0, 0xf0, 0xaa, 0xed, 0xed, 0xed, 0x0e, 0xd9, 0xd9, 0xd9, 0x14, 0xaf, 0xaf, 0xaf, 0xa3, 0x9c, 0x9c, 0x9c, 0x48, 0xff, 0xff, 0xff, 0x09, 0xff, 0xff, 0xff, 0x09, 0xff, 0xff, 0xff, 0x07, 0xff, 0xff, 0xff, 0x05, 0xff, 0xff, 0xff, 0x04, 0xff, 0xff, 0xff, 0x02, 0xe1, 0xe1, 0xe1, 0x78, 0xef, 0xef, 0xef, 0x9c, 0xcc, 0xcc, 0xcc, 0x05, 0xc3, 0xc3, 0xc3, 0x11, 0xa8, 0xa8, 0xa8, 0xa8, 0x8c, 0x8c, 0x8c, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x1b, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x04, 0xff, 0xff, 0xff, 0x07, 0xcd, 0xcd, 0xcd, 0xa2, 0xd4, 0xd4, 0xd4, 0x47, 0xff, 0xff, 0xff, 0x17, 0xff, 0xff, 0xff, 0x1c, 0xb2, 0xb2, 0xb2, 0x5d, 0x99, 0x99, 0x99, 0x7f, 0xff, 0xff, 0xff, 0x23, 0xff, 0xff, 0xff, 0x20, 0xff, 0xff, 0xff, 0x1b, 0xff, 0xff, 0xff, 0x16, 0xff, 0xff, 0xff, 0x10, 0xff, 0xff, 0xff, 0x0a, 0xcd, 0xcd, 0xcd, 0xad, 0xcd, 0xcd, 0xcd, 0x2e, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0x8b, 0x8b, 0x8b, 0x51, 0x71, 0x71, 0x71, 0x5f, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x15, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x06, 0xff, 0xff, 0xff, 0x0c, 0xff, 0xff, 0xff, 0x14, 0xbc, 0xbc, 0xbc, 0x85, 0xc1, 0xc1, 0xc1, 0x7f, 0xff, 0xff, 0xff, 0x3a, 0xff, 0xff, 0xff, 0x45, 0xb5, 0xb5, 0xb5, 0x94, 0xbc, 0xbc, 0xbc, 0x81, 0xff, 0xff, 0xff, 0x4f, 0xff, 0xff, 0xff, 0x4b, 0xff, 0xff, 0xff, 0x42, 0xff, 0xff, 0xff, 0x37, 0xff, 0xff, 0xff, 0x2a, 0xff, 0xff, 0xff, 0x1d, 0xb2, 0xb2, 0xb2, 0x88, 0xa5, 0xa5, 0xa5, 0x5e, 0xff, 0xff, 0xff, 0x05, 0xff, 0xff, 0xff, 0x02, 0x67, 0x67, 0x67, 0x72, 0x4d, 0x4d, 0x4d, 0x3f, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x2d, 0x1a, 0x1a, 0x1a, 0x0a, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x07, 0xff, 0xff, 0xff, 0x0e, 0xff, 0xff, 0xff, 0x1a, 0xff, 0xff, 0xff, 0x2b, 0xea, 0xea, 0xea, 0x49, 0xb3, 0xb3, 0xb3, 0xb9, 0xbd, 0xbd, 0xbd, 0xaf, 0xc0, 0xc0, 0xc0, 0xb7, 0xc1, 0xc1, 0xc1, 0xb8, 0xf9, 0xf9, 0xf9, 0x83, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0x7a, 0xff, 0xff, 0xff, 0x70, 0xff, 0xff, 0xff, 0x61, 0xfe, 0xff, 0xff, 0x4e, 0xff, 0xff, 0xff, 0x3a, 0xd2, 0xd2, 0xd2, 0x39, 0x88, 0x88, 0x88, 0xa3, 0x74, 0x74, 0x74, 0x7f, 0x5a, 0x5a, 0x5a, 0x82, 0x44, 0x44, 0x44, 0x71, 0x08, 0x08, 0x08, 0x21, 0x00, 0x00, 0x00, 0xa0, 0x00, 0x00, 0x00, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x06, 0x06, 0x06, 0x2c, 0x09, 0x09, 0x09, 0x36, 0x74, 0x74, 0x74, 0x0b, 0xff, 0xff, 0xff, 0x0c, 0xff, 0xff, 0xff, 0x17, 0xff, 0xff, 0xff, 0x29, 0xff, 0xff, 0xff, 0x41, 0xff, 0xff, 0xff, 0x5b, 0xfd, 0xfd, 0xfd, 0x75, 0xe8, 0xe8, 0xe8, 0x98, 0xee, 0xee, 0xee, 0xa1, 0xfd, 0xfd, 0xfd, 0x9c, 0xff, 0xff, 0xff, 0x9e, 0xff, 0xff, 0xff, 0x9d, 0xff, 0xff, 0xff, 0x99, 0xff, 0xff, 0xff, 0x91, 0xff, 0xff, 0xff, 0x82, 0xff, 0xff, 0xff, 0x6e, 0xff, 0xff, 0xff, 0x55, 0xff, 0xff, 0xff, 0x3c, 0xed, 0xed, 0xed, 0x2a, 0x7d, 0x7d, 0x7d, 0x39, 0x5c, 0x5c, 0x5c, 0x27, 0x39, 0x39, 0x39, 0x12, 0x00, 0x00, 0x00, 0x9a, 0x01, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x17, 0x17, 0x17, 0x0b, 0x09, 0x09, 0x09, 0x3a, 0x16, 0x16, 0x16, 0x3b, 0xae, 0xae, 0xae, 0x16, 0xff, 0xff, 0xff, 0x1e, 0xff, 0xff, 0xff, 0x34, 0xff, 0xff, 0xff, 0x4e, 0xff, 0xff, 0xff, 0x6a, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0x95, 0xff, 0xff, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xa6, 0xff, 0xff, 0xff, 0xa9, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa6, 0xff, 0xff, 0xff, 0x9e, 0xff, 0xff, 0xff, 0x91, 0xff, 0xff, 0xff, 0x7e, 0xff, 0xff, 0xff, 0x64, 0xff, 0xff, 0xff, 0x48, 0xff, 0xff, 0xff, 0x2e, 0xff, 0xff, 0xff, 0x1a, 0x61, 0x61, 0x61, 0x1d, 0x03, 0x03, 0x03, 0x94, 0x02, 0x02, 0x02, 0xaa, 0x08, 0x08, 0x08, 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, 0xff, 0xff, 0xff, 0x01, 0x1b, 0x1b, 0x1b, 0x13, 0x0f, 0x0f, 0x0f, 0x45, 0x20, 0x20, 0x20, 0x50, 0x9c, 0x9c, 0x9c, 0x2c, 0xff, 0xff, 0xff, 0x32, 0xff, 0xff, 0xff, 0x4d, 0xff, 0xff, 0xff, 0x68, 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0x93, 0xff, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xa6, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa8, 0xff, 0xff, 0xff, 0xa4, 0xff, 0xff, 0xff, 0x9d, 0xff, 0xff, 0xff, 0x90, 0xff, 0xff, 0xff, 0x7c, 0xff, 0xff, 0xff, 0x62, 0xff, 0xff, 0xff, 0x47, 0xff, 0xff, 0xff, 0x2d, 0x58, 0x58, 0x58, 0x3d, 0x06, 0x06, 0x06, 0xad, 0x03, 0x03, 0x03, 0xaf, 0x0a, 0x0a, 0x0a, 0x33, 0xff, 0xff, 0xff, 0x01, 0x00, 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, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0x44, 0x44, 0x44, 0x0f, 0x1b, 0x1b, 0x1b, 0x4b, 0x26, 0x26, 0x26, 0x64, 0x5d, 0x5d, 0x5d, 0x55, 0xe1, 0xe1, 0xe1, 0x44, 0xff, 0xff, 0xff, 0x56, 0xff, 0xff, 0xff, 0x6e, 0xff, 0xff, 0xff, 0x82, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, 0xff, 0x97, 0xff, 0xff, 0xff, 0x9b, 0xff, 0xff, 0xff, 0x9a, 0xff, 0xff, 0xff, 0x95, 0xff, 0xff, 0xff, 0x8c, 0xff, 0xff, 0xff, 0x7e, 0xff, 0xff, 0xff, 0x69, 0xff, 0xff, 0xff, 0x51, 0xc7, 0xc7, 0xc7, 0x44, 0x28, 0x28, 0x28, 0x81, 0x07, 0x07, 0x07, 0xc0, 0x05, 0x05, 0x05, 0xa1, 0x16, 0x17, 0x17, 0x21, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0xff, 0x01, 0xff, 0xff, 0xff, 0x02, 0x80, 0x80, 0x80, 0x0a, 0x2a, 0x2a, 0x2a, 0x3c, 0x23, 0x23, 0x23, 0x6d, 0x32, 0x32, 0x32, 0x7b, 0x69, 0x69, 0x69, 0x68, 0xc6, 0xc6, 0xc6, 0x5a, 0xff, 0xff, 0xff, 0x5e, 0xff, 0xff, 0xff, 0x6b, 0xff, 0xff, 0xff, 0x74, 0xff, 0xff, 0xff, 0x78, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff, 0x72, 0xfe, 0xff, 0xff, 0x68, 0xff, 0xff, 0xff, 0x5a, 0xa9, 0xa9, 0xa9, 0x5f, 0x3c, 0x3c, 0x3c, 0x84, 0x0d, 0x0d, 0x0d, 0xbe, 0x08, 0x08, 0x08, 0xbe, 0x0e, 0x0e, 0x0e, 0x71, 0x4b, 0x4b, 0x4b, 0x11, 0xff, 0xff, 0xff, 0x02, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0xff, 0x01, 0xff, 0xff, 0xff, 0x02, 0xff, 0xff, 0xff, 0x05, 0x64, 0x64, 0x64, 0x17, 0x29, 0x29, 0x29, 0x50, 0x1f, 0x1f, 0x1f, 0x7c, 0x24, 0x24, 0x24, 0x8d, 0x30, 0x30, 0x30, 0x8f, 0x49, 0x49, 0x49, 0x85, 0x5a, 0x5a, 0x5a, 0x7f, 0x69, 0x69, 0x69, 0x7c, 0x63, 0x63, 0x63, 0x7e, 0x4d, 0x4d, 0x4d, 0x87, 0x35, 0x35, 0x35, 0x96, 0x1a, 0x1a, 0x1a, 0xb2, 0x0d, 0x0d, 0x0d, 0xc0, 0x0b, 0x0b, 0x0b, 0xba, 0x12, 0x12, 0x12, 0x80, 0x36, 0x36, 0x36, 0x21, 0xff, 0xff, 0xff, 0x04, 0xff, 0xff, 0xff, 0x02, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 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, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x05, 0x80, 0x80, 0x80, 0x12, 0x36, 0x36, 0x36, 0x39, 0x22, 0x22, 0x22, 0x5b, 0x1b, 0x1b, 0x1b, 0x79, 0x15, 0x15, 0x15, 0x91, 0x13, 0x13, 0x13, 0xa0, 0x11, 0x11, 0x10, 0xa6, 0x10, 0x10, 0x10, 0xa3, 0x12, 0x12, 0x12, 0x91, 0x16, 0x16, 0x16, 0x76, 0x1f, 0x1f, 0x1f, 0x4b, 0x61, 0x61, 0x61, 0x15, 0xff, 0xff, 0xff, 0x05, 0xff, 0xff, 0xfe, 0x03, 0xff, 0xff, 0xff, 0x01, 0xff, 0xfe, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x02, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xff, 0x04, 0xff, 0xff, 0xff, 0x05, 0xff, 0xff, 0xff, 0x07, 0xdf, 0xdf, 0xdf, 0x08, 0xdf, 0xdf, 0xdf, 0x08, 0xff, 0xff, 0xff, 0x07, 0xff, 0xff, 0xff, 0x05, 0xff, 0xff, 0xff, 0x04, 0xff, 0xff, 0xff, 0x03, 0xff, 0xff, 0xfe, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x35, 0x35, 0x35, 0xb7, 0x56, 0x56, 0x56, 0xc0, 0x57, 0x57, 0x57, 0xbf, 0x37, 0x37, 0x37, 0xb9, 0x00, 0x00, 0x00, 0x0a, 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, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x0a, 0x0a, 0x35, 0xa7, 0xa7, 0xa7, 0xe9, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xbb, 0xbb, 0xbb, 0xf0, 0x18, 0x18, 0x18, 0x4b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x30, 0x30, 0x8b, 0xeb, 0xeb, 0xeb, 0xf2, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xfe, 0xf1, 0xf8, 0xf8, 0xf8, 0xf1, 0x35, 0x35, 0x35, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x3f, 0x3f, 0x3f, 0xc5, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x48, 0x48, 0x48, 0xc9, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x2b, 0x2b, 0x2b, 0x65, 0x53, 0x53, 0x53, 0xd1, 0xdf, 0xdf, 0xdf, 0xf2, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xfe, 0xff, 0xf1, 0xec, 0xec, 0xec, 0xf2, 0x69, 0x69, 0x69, 0xd8, 0x2d, 0x2d, 0x2d, 0x82, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x32, 0x32, 0x7b, 0x44, 0x44, 0x44, 0xb7, 0x2b, 0x2b, 0x2b, 0x7d, 0x00, 0x00, 0x00, 0x1f, 0x1c, 0x1c, 0x1c, 0x3f, 0x43, 0x43, 0x43, 0xc6, 0xc5, 0xc5, 0xc5, 0xed, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xcd, 0xcd, 0xcd, 0xef, 0x47, 0x47, 0x47, 0xc9, 0x22, 0x22, 0x22, 0x4c, 0x00, 0x00, 0x00, 0x1b, 0x29, 0x29, 0x29, 0x76, 0x3b, 0x3b, 0x3b, 0xb9, 0x25, 0x25, 0x25, 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, 0x15, 0x15, 0x15, 0x24, 0x77, 0x77, 0x77, 0xdb, 0xff, 0xff, 0xff, 0xf1, 0xde, 0xde, 0xde, 0xf3, 0x8a, 0x8a, 0x8a, 0xe3, 0x9a, 0x9a, 0x9a, 0xe5, 0xfe, 0xfe, 0xfe, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xfe, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xa3, 0xa3, 0xa3, 0xe7, 0x86, 0x86, 0x86, 0xe1, 0xda, 0xda, 0xda, 0xf3, 0xff, 0xff, 0xff, 0xf1, 0x4c, 0x4c, 0x4c, 0xcc, 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, 0x3b, 0x3b, 0x3b, 0xaa, 0xf7, 0xf7, 0xf7, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xd5, 0xd4, 0xd4, 0xf1, 0x2b, 0x2b, 0x2b, 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, 0x02, 0x40, 0x41, 0x40, 0xd3, 0xfd, 0xfd, 0xfd, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xfe, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xfe, 0xfe, 0xfe, 0xf1, 0x3c, 0x3c, 0x3c, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x1b, 0x1b, 0x2f, 0x59, 0x59, 0x59, 0xd6, 0xfb, 0xfb, 0xfb, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xcf, 0xcf, 0xcf, 0xf1, 0x72, 0x72, 0x72, 0xdc, 0x70, 0x70, 0x70, 0xda, 0xcb, 0xcb, 0xcb, 0xef, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xfe, 0xfe, 0xfe, 0xf1, 0x65, 0x65, 0x65, 0xd9, 0x1e, 0x1e, 0x1e, 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, 0x13, 0x13, 0x13, 0x28, 0x62, 0x62, 0x62, 0xd5, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x85, 0x85, 0x85, 0xde, 0x27, 0x27, 0x27, 0x77, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x05, 0x28, 0x28, 0x28, 0x6d, 0x76, 0x76, 0x76, 0xd9, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x6e, 0x6e, 0x6e, 0xd7, 0x21, 0x21, 0x21, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x4d, 0x4d, 0xb7, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xd3, 0xd3, 0xd3, 0xf0, 0x2a, 0x2a, 0x2a, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x23, 0x23, 0x5f, 0xba, 0xba, 0xba, 0xed, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x52, 0x52, 0x52, 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, 0x4d, 0x4d, 0x4d, 0xb7, 0xfe, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x72, 0x72, 0x72, 0xdb, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x64, 0x64, 0x64, 0xd3, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x51, 0x51, 0x51, 0xbc, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x4d, 0x4d, 0xb7, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x6d, 0x6d, 0x6d, 0xd9, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x64, 0x64, 0xd1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x52, 0x52, 0x52, 0xbd, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x4d, 0x4d, 0xb7, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xc4, 0xc4, 0xc4, 0xef, 0x21, 0x21, 0x21, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x20, 0x20, 0x50, 0xb2, 0xb2, 0xb2, 0xea, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xfe, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x53, 0x53, 0x53, 0xbe, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x45, 0x45, 0x45, 0xbf, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xfe, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x70, 0x70, 0x70, 0xd9, 0x24, 0x24, 0x24, 0x5c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x18, 0x18, 0x18, 0x4a, 0x61, 0x61, 0x61, 0xd6, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x4c, 0x4c, 0x4c, 0xc6, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x31, 0x31, 0x31, 0x9b, 0xbe, 0xbe, 0xbe, 0xea, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xfe, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xbb, 0xbb, 0xbb, 0xec, 0x61, 0x61, 0x61, 0xd2, 0x65, 0x65, 0x65, 0xcf, 0xac, 0xac, 0xac, 0xea, 0xfe, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xca, 0xca, 0xca, 0xec, 0x32, 0x32, 0x32, 0xa7, 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, 0x33, 0x33, 0x33, 0x9b, 0xc5, 0xc5, 0xc5, 0xec, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xd0, 0xd0, 0xd0, 0xee, 0x2d, 0x2d, 0x2d, 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, 0x34, 0x34, 0x34, 0x98, 0xea, 0xea, 0xea, 0xf2, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xbc, 0xbc, 0xbc, 0xed, 0x26, 0x26, 0x26, 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, 0x13, 0x61, 0x61, 0x61, 0xd7, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xfe, 0xfe, 0xfe, 0xf1, 0xfc, 0xfc, 0xfc, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xfe, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xfd, 0xfd, 0xfd, 0xf1, 0xfd, 0xfd, 0xfd, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xfb, 0xfb, 0xfb, 0xf1, 0x42, 0x42, 0x42, 0xc4, 0x00, 0x00, 0x00, 0x01, 0x00, 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, 0x00, 0x00, 0x2b, 0x2b, 0x2b, 0x5f, 0x74, 0x74, 0x74, 0xe4, 0x5c, 0x5c, 0x5c, 0xd0, 0x3d, 0x3d, 0x3d, 0xaf, 0x3d, 0x3d, 0x3d, 0xbd, 0xaf, 0xaf, 0xaf, 0xe9, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xbb, 0xbb, 0xbb, 0xeb, 0x40, 0x40, 0x40, 0xc2, 0x3b, 0x3b, 0x3b, 0xad, 0x5a, 0x5a, 0x5a, 0xce, 0x52, 0x52, 0x52, 0xdc, 0x14, 0x14, 0x14, 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, 0x26, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x21, 0x21, 0x56, 0x49, 0x49, 0x49, 0xc8, 0xd3, 0xd3, 0xd3, 0xee, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xfe, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xdd, 0xdd, 0xdd, 0xf2, 0x57, 0x57, 0x57, 0xd5, 0x2c, 0x2c, 0x2c, 0x68, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x2d, 0x2d, 0x2d, 0x82, 0x7d, 0x7d, 0x7d, 0xda, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x8e, 0x8e, 0x8e, 0xdd, 0x30, 0x30, 0x30, 0x90, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x38, 0x38, 0xa8, 0xfc, 0xfc, 0xfc, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0x42, 0x42, 0x42, 0xaf, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x1e, 0x1e, 0x5e, 0xcb, 0xcb, 0xcb, 0xf2, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xf1, 0xdc, 0xdc, 0xdc, 0xf3, 0x29, 0x29, 0x29, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x35, 0x35, 0x35, 0xa4, 0x44, 0x44, 0x44, 0xad, 0x41, 0x41, 0x41, 0xad, 0x39, 0x38, 0x38, 0xa0, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x01, 0x2a, 0x0e, 0x0e, 0x0e, 0x48, 0x23, 0x23, 0x23, 0x5f, 0x2f, 0x2f, 0x2f, 0x73, 0x2f, 0x2f, 0x2f, 0x68, 0x22, 0x22, 0x22, 0x5a, 0x0b, 0x0b, 0x0b, 0x47, 0x00, 0x00, 0x00, 0x31, 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, 0x01, 0x03, 0x19, 0x18, 0x19, 0x47, 0x3f, 0x3f, 0x3f, 0xa2, 0x60, 0x60, 0x60, 0xc7, 0x76, 0x76, 0x76, 0xdd, 0xa9, 0xa9, 0xa9, 0xf2, 0xc9, 0xc9, 0xc9, 0xff, 0xd6, 0xd6, 0xd6, 0xff, 0xdf, 0xdf, 0xdf, 0xff, 0xdd, 0xdd, 0xdd, 0xff, 0xd0, 0xd1, 0xd1, 0xff, 0xca, 0xca, 0xca, 0xff, 0xb2, 0xb2, 0xb2, 0xf7, 0x82, 0x82, 0x82, 0xe3, 0x6b, 0x6b, 0x6b, 0xd2, 0x53, 0x53, 0x53, 0xb9, 0x32, 0x33, 0x33, 0x82, 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, 0x08, 0x32, 0x32, 0x32, 0x7f, 0x5f, 0x5f, 0x5f, 0xcf, 0xbe, 0xbe, 0xbe, 0xf8, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xe3, 0xe3, 0xff, 0xcc, 0xcc, 0xcc, 0xff, 0xbd, 0xbd, 0xbd, 0xfe, 0xc0, 0xc0, 0xc0, 0xfd, 0xd2, 0xd2, 0xd2, 0xff, 0xe4, 0xe4, 0xe4, 0xff, 0xf6, 0xf6, 0xf6, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xea, 0xea, 0xea, 0xff, 0x93, 0x93, 0x93, 0xe9, 0x44, 0x44, 0x44, 0xb3, 0x13, 0x13, 0x13, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x24, 0x24, 0x40, 0x57, 0x57, 0x57, 0xce, 0xe0, 0xe0, 0xe0, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xe0, 0xe0, 0xfe, 0x7b, 0x7b, 0x7b, 0xde, 0x56, 0x56, 0x56, 0xbe, 0x3b, 0x3b, 0x3b, 0xa0, 0x2e, 0x2e, 0x2e, 0x75, 0x15, 0x15, 0x15, 0x4a, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x3a, 0x20, 0x20, 0x20, 0x57, 0x2f, 0x2f, 0x2f, 0x73, 0x34, 0x34, 0x34, 0x8d, 0x47, 0x47, 0x47, 0xaa, 0x5e, 0x5e, 0x5e, 0xc7, 0x9b, 0x9b, 0x9b, 0xec, 0xf4, 0xf5, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfb, 0xfb, 0xfb, 0xff, 0x82, 0x82, 0x82, 0xe2, 0x30, 0x30, 0x30, 0x60, 0x00, 0x00, 0x00, 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, 0x31, 0x31, 0x31, 0x5e, 0x91, 0x91, 0x91, 0xe7, 0xff, 0xff, 0xff, 0xff, 0xe4, 0xe4, 0xe4, 0xfd, 0x5e, 0x5e, 0x5e, 0xd1, 0x30, 0x30, 0x30, 0x7a, 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, 0x07, 0x07, 0x07, 0x25, 0x40, 0x40, 0x40, 0xa8, 0xaa, 0xaa, 0xaa, 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x96, 0x96, 0x96, 0xe9, 0x26, 0x26, 0x26, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x22, 0x22, 0x35, 0x8c, 0x8c, 0x8c, 0xe6, 0xff, 0xff, 0xff, 0xff, 0xd3, 0xd3, 0xd3, 0xf8, 0x3a, 0x3a, 0x3a, 0xa7, 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, 0x2d, 0x2d, 0x2c, 0x65, 0xb0, 0xb0, 0xb0, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x55, 0x55, 0x55, 0xca, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x4c, 0x4c, 0xbd, 0xfd, 0xfd, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xff, 0x49, 0x49, 0x49, 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, 0x59, 0x59, 0x59, 0xbe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xab, 0xab, 0xab, 0xf1, 0x0f, 0x0f, 0x0f, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x07, 0x7d, 0x7d, 0x7d, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xe9, 0xe9, 0xe9, 0xff, 0x31, 0x31, 0x31, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x56, 0x56, 0xb8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe2, 0xe2, 0xe2, 0xff, 0x2d, 0x2d, 0x2d, 0x72, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x7e, 0x7e, 0x7e, 0xf1, 0x97, 0x97, 0x97, 0xea, 0x65, 0x65, 0x65, 0xd5, 0x27, 0x27, 0x27, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 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, 0x0b, 0x0b, 0x18, 0x81, 0x81, 0x81, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xed, 0xed, 0xed, 0xff, 0x31, 0x31, 0x31, 0x81, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x1a, 0x1a, 0x1a, 0x59, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x18, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x33, 0x0e, 0x0e, 0x0e, 0x48, 0x25, 0x25, 0x25, 0x60, 0x2e, 0x2e, 0x2e, 0x75, 0x34, 0x34, 0x34, 0x8a, 0x36, 0x36, 0x36, 0x9b, 0x41, 0x41, 0x41, 0xa1, 0x48, 0x48, 0x48, 0xa9, 0x4f, 0x4f, 0x4f, 0xb1, 0x52, 0x52, 0x52, 0xbb, 0x27, 0x27, 0x27, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x4a, 0x4a, 0x4a, 0xc8, 0xf5, 0xf5, 0xf5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbe, 0xbe, 0xbe, 0xfa, 0x14, 0x14, 0x14, 0x41, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x11, 0x11, 0x59, 0x36, 0x36, 0x36, 0xea, 0xa5, 0xa5, 0xa5, 0xf0, 0xb9, 0xb9, 0xb9, 0xf9, 0xc9, 0xc9, 0xc9, 0xff, 0xd7, 0xd7, 0xd7, 0xff, 0xe5, 0xe5, 0xe5, 0xff, 0xf2, 0xf2, 0xf2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa3, 0xa3, 0xa3, 0xee, 0x14, 0x14, 0x14, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x37, 0x37, 0x37, 0x8c, 0x70, 0x70, 0x70, 0xd9, 0xf4, 0xf4, 0xf4, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x57, 0x57, 0x57, 0xcb, 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, 0x2f, 0x2f, 0x2f, 0x56, 0x87, 0x87, 0x87, 0xe2, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3a, 0x3a, 0x3a, 0xe1, 0x33, 0x33, 0x33, 0x95, 0x3c, 0x3c, 0x3c, 0xa1, 0x4e, 0x4e, 0x4e, 0xb1, 0x62, 0x62, 0x62, 0xc9, 0x8d, 0x8d, 0x8d, 0xe7, 0xeb, 0xeb, 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0x8f, 0x8f, 0xe4, 0x2d, 0x2d, 0x2d, 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, 0x2b, 0x2b, 0x2b, 0x48, 0x79, 0x79, 0x79, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xf7, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfa, 0xfa, 0xfb, 0xff, 0x7b, 0x7b, 0x7b, 0xe0, 0x2f, 0x2f, 0x2f, 0x56, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, 0x27, 0x27, 0x3b, 0x6c, 0x6c, 0x6c, 0xdb, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xff, 0xb3, 0xb3, 0xb3, 0xf2, 0x48, 0x48, 0x48, 0xc0, 0x16, 0x16, 0x16, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x1c, 0x1c, 0x2d, 0x61, 0x61, 0x60, 0xd7, 0xfb, 0xfb, 0xfb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd2, 0xd2, 0xd2, 0xfd, 0x7e, 0x7e, 0x7e, 0xdf, 0x49, 0x49, 0x49, 0xb8, 0x21, 0x21, 0x21, 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, 0x16, 0x16, 0x16, 0x23, 0x58, 0x58, 0x58, 0xd3, 0xf8, 0xf8, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb8, 0xb8, 0xb8, 0xee, 0x7b, 0x7b, 0x7b, 0xe4, 0x8c, 0x8c, 0x8c, 0xe3, 0x7d, 0x7d, 0x7d, 0xe2, 0x70, 0x70, 0x70, 0xdc, 0x69, 0x69, 0x69, 0xd1, 0x58, 0x58, 0x58, 0xbc, 0x41, 0x41, 0x41, 0xa5, 0x25, 0x25, 0x25, 0x60, 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, 0x0a, 0x0a, 0x0a, 0x19, 0x4f, 0x4f, 0x4f, 0xcc, 0xf4, 0xf4, 0xf4, 0xff, 0xfd, 0xfd, 0xfd, 0xff, 0x46, 0x46, 0x46, 0xb3, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x11, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x44, 0x44, 0x44, 0xc4, 0x9e, 0x9e, 0x9e, 0xf4, 0x1f, 0x1f, 0x1f, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x21, 0x21, 0x21, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 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, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 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, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x50, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x8b, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x01, 0x22, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x22, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x99, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x99, 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, 0x14, 0x00, 0x00, 0x01, 0x55, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x01, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x46, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x01, 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, 0x04, 0x00, 0x00, 0x00, 0xd6, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x7f, 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, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0xff, 0x00, 0x00, 0x01, 0xc8, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0xfb, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xcc, 0x00, 0x00, 0x00, 0xe8, 0x00, 0x00, 0x00, 0x0c, 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, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x01, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0xec, 0x00, 0x00, 0x00, 0xf5, 0x00, 0x00, 0x00, 0x1d, 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, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x01, 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, 0x59, 0x01, 0x00, 0x00, 0xff, 0x00, 0x00, 0x00, 0x6a, 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, 0x00, 0x00, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0xa5, 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, 0xc5, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xdd, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 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, 0x0f, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0x3e, 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, 0x00, 0x00, 0x91, 0x01, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x01, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x44, 0x00, 0x00, 0x00, 0x90, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x47, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x01, 0x26, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x91, 0x00, 0x00, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0xd7, 0x00, 0x00, 0x00, 0x34, 0x00, 0x00, 0x00, 0xa6, 0x00, 0x00, 0x00, 0x35, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x00, 0x00, 0xb7, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x4d, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0xd3, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0xae, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x01, 0x00, 0xdf, 0x00, 0x00, 0x00, 0x89, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x97, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xc9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x72, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x6f, 0x00, 0x00, 0x00, 0xa5, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0xd2, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x76, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa2, 0x00, 0x00, 0x00, 0xbd, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x87, 0x01, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, 0x8e, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x65, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x39, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0xd5, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x2f, 0x00, 0x00, 0x00, 0x9e, 0x00, 0x00, 0x00, 0x92, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x00, 0xe2, 0x00, 0x00, 0x00, 0x41, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0xd4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa7, 0x00, 0x00, 0x00, 0x87, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0xc6, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x00, 0x00, 0xe3, 0x00, 0x00, 0x00, 0x6d, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0xc9, 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, 0x09, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x49, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00, 0x4b, 0x00, 0x00, 0x00, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x54, 0x00, 0x00, 0x00, 0x83, 0x00, 0x01, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x56, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x00, 0x00, 0x77, 0x00, 0x00, 0x00, 0x88, 0x00, 0x00, 0x00, 0x42, 0x00, 0x00, 0x00, 0x5a, 0x00, 0x00, 0x00, 0x83, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5c, 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, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 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, 0x94, +}; + +const lv_image_dsc_t sprites1_32x32x7 = { + .header.cf = LV_COLOR_FORMAT_ARGB8888, + .header.magic = LV_IMAGE_HEADER_MAGIC, + .header.w = 32, + .header.h = 224, + .data_size = 7168 * 4, + .data = sprites1_32x32x7_map, +};